diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..33ede9ca1f2bdb9882d48f9b514ae2b31942930c --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*.pyc +*39.pyc +myenv/ +build/ +dist/ \ No newline at end of file diff --git a/Kubernetes/responsible-ai-moderation-model.yaml b/Kubernetes/responsible-ai-moderation-model.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e00d71505b85e5a807b2cf88475e371c243488fa --- /dev/null +++ b/Kubernetes/responsible-ai-moderation-model.yaml @@ -0,0 +1,62 @@ +apiVersion: v1 +kind: Service +metadata: + name: responsible-ai-moderation-model + namespace: irai-toolkit-test + labels: + app: responsible-ai-moderation-model +spec: + type: ClusterIP + ports: + - port: 8000 + selector: + app: responsible-ai-moderation-model +--- +apiVersion: apps/v1 +kind: Deployment +seccompProfile: +type: "RuntimeDefault" +automountServiceAccountToken: false +metadata: + name: responsible-ai-moderation-model + namespace: irai-toolkit-test + labels: + app: responsible-ai-moderation-model + version: v1 +spec: + replicas: 1 + selector: + matchLabels: + app: responsible-ai-moderation-model + version: v1 + template: + metadata: + labels: + app: responsible-ai-moderation-model + version: v1 + spec: + automountServiceAccountToken: false # Disable token mounting + imagePullSecrets: + - name: docker-secret + containers: + - envFrom: + - configMapRef: + name: privacy-config + image: + imagePullPolicy: Always + name: responsible-ai-privacy + ports: + - containerPort: 8000 + securityContext: + runAsUser: 1000 # Non-root user + runAsGroup: 1000 + capabilities: + drop: + - ALL # Drop all capabilities + seccompProfile: + type: RuntimeDefault + resources: + limits: + #cpu: '2' + memory: '8Gi' + nvidia.com/gpu: 1 diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f80721e7484c7a0fbff363b8f888d5c91294cd5 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,9 @@ +The MIT License (MIT) + +Copyright 2024-2025 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..5b0a86c284ce259d8e982b9407f9a954c40e303c --- /dev/null +++ b/README.md @@ -0,0 +1,166 @@ +# Responsible-AI-Moderation Model + +## Table of Contents + +- [Introduction](#introduction) +- [Features](#features) +- [Installation](#installation) +- [Set Configuration Variables](#set-configuration-variables) +- [Models Required](#models-required) +- [Running the Application](#running-the-application) +- [Docker Image](#Docker-Image) +- [License](#license) +- [Contact](#contact) + +## Introduction +The **Moderation Model** module acts as a central hub for machine learning models for prompt injection, toxicity, jailbreak, restricted topic, custom theme and refusal checks. It provides the endpoints to utilize the response generated by these models. + +## Features +The **Moderation Model** module acts as a wrapper for the traditional AI models we are using for various checks like prompt injection, jailbreak, toxicity etc. + +## Installation +To run the application, first we need to install Python and the necessary packages: + +1. Install Python (version 3.11.x) from the [official website](https://www.python.org/downloads/) and ensure it is added to your system PATH. + +2. Clone the repository : responsible-ai-mm-flask: + ```sh + git clone + ``` + +3. Navigate to the `responsible-ai-mm-flask` directory: + ```sh + cd responsible-ai-mm-flask + ``` + +4. Create a virtual environment: + ```sh + python -m venv venv + ``` + +5. Activate the virtual environment: + - On Windows: + ```sh + .\venv\Scripts\activate + ``` + +6. Go to the `requirements` directory where the `requirement.txt` file is present. + In the `requirement.txt` file comment the + ```sh + lib/torch-2.2.0+cu118-cp39-cp39-linux_x86_64.whl + ``` + **Note:** Download appropriate torch version supporting python version which is installed [i.e if Python version is 3.10 use torch-2.2.0+cu118-**cp310**-**cp310**-**linux**_x86_64.whl, where cp310 denotes python version 3.10 and linux denotes OS which can be linux/win and **_not applicable for Mac_**] + + **Note:** If working in windows as this is for linux and replace + ```sh + lib/ + ``` + with + ```sh + ../lib/ + ``` + **Note:** If working in Mac Os, run the below command after running requirement.txt + ```sh + pip install --pre torch torchvision torchaudio \--extra-index-url https://download.pytorch.org/whl/nightly/cpu + ``` + + Download and place the en_core_web_lg-3.5.0-py3-none-any.whl inside the lib folder. + [en_core_web_lg](https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.5.0/en_core_web_lg-3.5.0-py3-none-any.whl) and install the requirements: + + ```sh + pip install -r requirement.txt + ``` + + **Note:** when running requirement.txt, if getting error related to "cuda-python" then comment cuda-python from + requirement.txt file and run pip install again + Install the fastapi library as well, use the following command: + ```sh + pip install fastapi + ``` +## Set Configuration Variables +After installing all the required packages, configure the variables necessary to run the APIs. + +1. Navigate to the `src` directory: + ```sh + cd .. + ``` + +2. Locate the `.env` file, which contains keys like the following: + + ```sh + workers=1 + WORKERS="${workers}" + # DB_NAME="${dbname}" + # DB_USERNAME="${username}" + # DB_PWD="${password}" + # DB_IP="${ipaddress}" + # DB_PORT="${port}" + # MONGO_PATH="mongodb://${DB_USERNAME}:${DB_PWD}@${DB_IP}:${DB_PORT}/" + # MONGO_PATH= "mongodb://localhost:27017/" + ``` + +3. Replace the placeholders with your actual values. + +## Models Required +The following models are required to run the application. Download all the model files from the links provided, and place it in the folder name provided. + +1. [Prompt Injection](https://huggingface.co/deepset/deberta-v3-base-injection/tree/main) +Files required to download here are : model.safetensors, config.json, tokenizer_config.json, tokenizer.json, special_tokens_map.json. +Name the folder as 'dbertaInjection'. + +2. [Restricted Topic](https://huggingface.co/MoritzLaurer/deberta-v3-base-zeroshot-v2.0/tree/main) +Files required to download here are : model.safetensors, added_tokens.json, config.json, special_tokens_map.json, spm.model, tokenizer.json, tokenizer_config.json. +Name the folder as 'restricted-dberta-base-zeroshot-v2'. + +3. [Sentence Transformer Model](https://huggingface.co/sentence-transformers/multi-qa-mpnet-base-dot-v1/tree/main) +Files required to download here are : 1_Pooling folder, pytorch_model.bin, vocab.txt, tokenizer.json, tokenizer_config.json, special_tokens_map.json, sentence_bert_config.json, modules.json, config.json, config_sentence_transformers.json. +Name the folder as 'multi-qa-mpnet-base-dot-v1'. + +4. [Detoxify](https://huggingface.co/FacebookAI/roberta-base/tree/main) +Files required to download here are : vocab.json, tokenizer.json, merges.txt, config.json. +Now download the model checkpoint file from this url and keep it under this folder - +[toxic_model_ckpt_file](https://github.com/unitaryai/detoxify/releases/download/v0.3-alpha/toxic_debiased-c7548aa0.ckpt) +Name the folder as 'detoxify'. + +5. [Gibberish](https://huggingface.co/madhurjindal/autonlp-Gibberish-Detector-492513457) +Files required to download here are : vocab.json, tokenizer.json,config.json,pytorch_model.bin, tokenizer_config.json,special_tokens_map.json. +Name the folder as 'gibberish'. + +6. [Bancode](https://huggingface.co/vishnun/codenlbert-tiny) +Files required to download here are : vocab.txt, tokenizer.json,config.json,pytorch_model.bin, tokenizer_config.json,special_tokens_map.json. +Name the folder as 'bancode'. + +7. [Restricted Topic](https://huggingface.co/cross-encoder/nli-MiniLM2-L6-H768) +Files required to download here are : vocab.json, tokenizer.json,config.json,merges.txt,pytorch_model.bin, tokenizer_config.json,special_tokens_map.json. +Name the folder as 'nli-MiniLM2-L6-H768'. + +Place the above folders in a folder named 'models' in the following way: 'responsible-ai-mm-flask/models'. + +## Running the Application +Once we have completed all the aforementioned steps, we can start the service. + +1. Navigate to the `src` directory: + +2. Run `main_MM.py` file: + ```sh + python main_MM.py + ``` + +3. PORT_NO : Use the Port No that is configured in .env file. + + Open the following URL in your browser: + `http://localhost:8000/rai/v1/raimoderationmodels/docs` + +**Note:** : +1. To address the issue where the Passport Number is not recognized in Privacy, modify the "piiEntitiesToBeRedacted" field in the privacy() under service.py file (line no: 98) from None to an empty list []. This adjustment ensures that the Passport Number is correctly identified. + +2. Do not use this Moderation Model repository as a standalone repository. It serves as the base or dependency for the Moderation Layer repository, which provides the 'Guardrail' functionality, so access this repository APIs through Moderation layer. + +## Docker Image +The Docker image for the ModerationModel module has been published on Docker Hub. You can access it here: [ModerationModel image](https://hub.docker.com/repository/docker/infosysresponsibleaitoolkit/responsible-ai-moderationmodel) + +## License +The source code for the project is licensed under the MIT license, which you can find in the [LICENSE.txt](LICENSE.txt) file. + +## Contact +If you have more questions or need further insights please feel free to connect with us @ Infosysraitoolkit@infosys.com diff --git a/execreation.bat b/execreation.bat new file mode 100644 index 0000000000000000000000000000000000000000..3dc057d4620ed8654be0a3b62ebe4552b2c70a59 --- /dev/null +++ b/execreation.bat @@ -0,0 +1,12 @@ +@echo off +echo started exe creation!! Please wait....It might take an hour depending on computation speed +set /p site_packages="Enter the path to the site-packages directory: " +cd %~dp0 +echo %~dp0 +powershell -Command "(Get-Content src\main.py) | ForEach-Object { if ($_ -match 'from routing\.safety_router import img_router|app\.register_blueprint\(img_router,url_prefix=''\/rai\/v1\/raimoderationmodels''\)') { '#'+ $_ } else { $_ } } | Set-Content src\main.py" +pyinstaller --add-data "src\logger.ini;." --add-data "models;models" --add-data "src\static;src" --add-data "%site_packages%;." --add-data "data;." --hidden-import=transformers src\main.py +if ERRORLEVEL 1 ( + echo PyInstaller encountered an error. Check the output above for details. +) else ( + echo Exe creation was successful! +) \ No newline at end of file diff --git a/lib/privacy-2.0.8-py3-none-any.whl b/lib/privacy-2.0.8-py3-none-any.whl new file mode 100644 index 0000000000000000000000000000000000000000..69052ada4e18b2266572ae0cfe00462fccc21720 --- /dev/null +++ b/lib/privacy-2.0.8-py3-none-any.whl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c22356831d15244ed329527f3b2a0683e134c90796b74bf20a0151fcdb3705d +size 129207 diff --git a/models/bancode/config.json b/models/bancode/config.json new file mode 100644 index 0000000000000000000000000000000000000000..8511c914c49209b337eca92e364cba12b3c13010 --- /dev/null +++ b/models/bancode/config.json @@ -0,0 +1,34 @@ +{ + "_name_or_path": "prajjwal1/bert-tiny", + "architectures": [ + "BertForSequenceClassification" + ], + "attention_probs_dropout_prob": 0.1, + "classifier_dropout": null, + "hidden_act": "gelu", + "hidden_dropout_prob": 0.1, + "hidden_size": 128, + "id2label": { + "0": "CODE", + "1": "NL" + }, + "initializer_range": 0.02, + "intermediate_size": 512, + "label2id": { + "CODE": 0, + "NL": 1 + }, + "layer_norm_eps": 1e-12, + "max_position_embeddings": 512, + "model_type": "bert", + "num_attention_heads": 2, + "num_hidden_layers": 2, + "pad_token_id": 0, + "position_embedding_type": "absolute", + "problem_type": "single_label_classification", + "torch_dtype": "float32", + "transformers_version": "4.30.2", + "type_vocab_size": 2, + "use_cache": true, + "vocab_size": 30522 +} diff --git a/models/bancode/special_tokens_map.json b/models/bancode/special_tokens_map.json new file mode 100644 index 0000000000000000000000000000000000000000..a8b3208c2884c4efb86e49300fdd3dc877220cdf --- /dev/null +++ b/models/bancode/special_tokens_map.json @@ -0,0 +1,7 @@ +{ + "cls_token": "[CLS]", + "mask_token": "[MASK]", + "pad_token": "[PAD]", + "sep_token": "[SEP]", + "unk_token": "[UNK]" +} diff --git a/models/bancode/tokenizer.json b/models/bancode/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..688882a79f44442ddc1f60d70334a7ff5df0fb47 --- /dev/null +++ b/models/bancode/tokenizer.json @@ -0,0 +1,30672 @@ +{ + "version": "1.0", + "truncation": null, + "padding": null, + "added_tokens": [ + { + "id": 0, + "content": "[PAD]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 100, + "content": "[UNK]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 101, + "content": "[CLS]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 102, + "content": "[SEP]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 103, + "content": "[MASK]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "BertNormalizer", + "clean_text": true, + "handle_chinese_chars": true, + "strip_accents": null, + "lowercase": true + }, + "pre_tokenizer": { + "type": "BertPreTokenizer" + }, + "post_processor": { + "type": "TemplateProcessing", + "single": [ + { + "SpecialToken": { + "id": "[CLS]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 0 + } + } + ], + "pair": [ + { + "SpecialToken": { + "id": "[CLS]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "B", + "type_id": 1 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 1 + } + } + ], + "special_tokens": { + "[CLS]": { + "id": "[CLS]", + "ids": [ + 101 + ], + "tokens": [ + "[CLS]" + ] + }, + "[SEP]": { + "id": "[SEP]", + "ids": [ + 102 + ], + "tokens": [ + "[SEP]" + ] + } + } + }, + "decoder": { + "type": "WordPiece", + "prefix": "##", + "cleanup": true + }, + "model": { + "type": "WordPiece", + "unk_token": "[UNK]", + "continuing_subword_prefix": "##", + "max_input_chars_per_word": 100, + "vocab": { + "[PAD]": 0, + "[unused0]": 1, + "[unused1]": 2, + "[unused2]": 3, + "[unused3]": 4, + "[unused4]": 5, + "[unused5]": 6, + "[unused6]": 7, + "[unused7]": 8, + "[unused8]": 9, + "[unused9]": 10, + "[unused10]": 11, + "[unused11]": 12, + "[unused12]": 13, + "[unused13]": 14, + "[unused14]": 15, + "[unused15]": 16, + "[unused16]": 17, + "[unused17]": 18, + "[unused18]": 19, + "[unused19]": 20, + "[unused20]": 21, + "[unused21]": 22, + "[unused22]": 23, + "[unused23]": 24, + "[unused24]": 25, + "[unused25]": 26, + "[unused26]": 27, + "[unused27]": 28, + "[unused28]": 29, + "[unused29]": 30, + "[unused30]": 31, + "[unused31]": 32, + "[unused32]": 33, + "[unused33]": 34, + "[unused34]": 35, + "[unused35]": 36, + "[unused36]": 37, + "[unused37]": 38, + "[unused38]": 39, + "[unused39]": 40, + "[unused40]": 41, + "[unused41]": 42, + "[unused42]": 43, + "[unused43]": 44, + "[unused44]": 45, + "[unused45]": 46, + "[unused46]": 47, + "[unused47]": 48, + "[unused48]": 49, + "[unused49]": 50, + "[unused50]": 51, + "[unused51]": 52, + "[unused52]": 53, + "[unused53]": 54, + "[unused54]": 55, + "[unused55]": 56, + "[unused56]": 57, + "[unused57]": 58, + "[unused58]": 59, + "[unused59]": 60, + "[unused60]": 61, + "[unused61]": 62, + "[unused62]": 63, + "[unused63]": 64, + "[unused64]": 65, + "[unused65]": 66, + "[unused66]": 67, + "[unused67]": 68, + "[unused68]": 69, + "[unused69]": 70, + "[unused70]": 71, + "[unused71]": 72, + "[unused72]": 73, + "[unused73]": 74, + "[unused74]": 75, + "[unused75]": 76, + "[unused76]": 77, + "[unused77]": 78, + "[unused78]": 79, + "[unused79]": 80, + "[unused80]": 81, + "[unused81]": 82, + "[unused82]": 83, + "[unused83]": 84, + "[unused84]": 85, + "[unused85]": 86, + "[unused86]": 87, + "[unused87]": 88, + "[unused88]": 89, + "[unused89]": 90, + "[unused90]": 91, + "[unused91]": 92, + "[unused92]": 93, + "[unused93]": 94, + "[unused94]": 95, + "[unused95]": 96, + "[unused96]": 97, + "[unused97]": 98, + "[unused98]": 99, + "[UNK]": 100, + "[CLS]": 101, + "[SEP]": 102, + "[MASK]": 103, + "[unused99]": 104, + "[unused100]": 105, + "[unused101]": 106, + "[unused102]": 107, + "[unused103]": 108, + "[unused104]": 109, + "[unused105]": 110, + "[unused106]": 111, + "[unused107]": 112, + "[unused108]": 113, + "[unused109]": 114, + "[unused110]": 115, + "[unused111]": 116, + "[unused112]": 117, + "[unused113]": 118, + "[unused114]": 119, + "[unused115]": 120, + "[unused116]": 121, + "[unused117]": 122, + "[unused118]": 123, + "[unused119]": 124, + "[unused120]": 125, + "[unused121]": 126, + "[unused122]": 127, + "[unused123]": 128, + "[unused124]": 129, + "[unused125]": 130, + "[unused126]": 131, + "[unused127]": 132, + "[unused128]": 133, + "[unused129]": 134, + "[unused130]": 135, + "[unused131]": 136, + "[unused132]": 137, + "[unused133]": 138, + "[unused134]": 139, + "[unused135]": 140, + "[unused136]": 141, + "[unused137]": 142, + "[unused138]": 143, + "[unused139]": 144, + "[unused140]": 145, + "[unused141]": 146, + "[unused142]": 147, + "[unused143]": 148, + "[unused144]": 149, + "[unused145]": 150, + "[unused146]": 151, + "[unused147]": 152, + "[unused148]": 153, + "[unused149]": 154, + "[unused150]": 155, + "[unused151]": 156, + "[unused152]": 157, + "[unused153]": 158, + "[unused154]": 159, + "[unused155]": 160, + "[unused156]": 161, + "[unused157]": 162, + "[unused158]": 163, + "[unused159]": 164, + "[unused160]": 165, + "[unused161]": 166, + "[unused162]": 167, + "[unused163]": 168, + "[unused164]": 169, + "[unused165]": 170, + "[unused166]": 171, + "[unused167]": 172, + "[unused168]": 173, + "[unused169]": 174, + "[unused170]": 175, + "[unused171]": 176, + "[unused172]": 177, + "[unused173]": 178, + "[unused174]": 179, + "[unused175]": 180, + "[unused176]": 181, + "[unused177]": 182, + "[unused178]": 183, + "[unused179]": 184, + "[unused180]": 185, + "[unused181]": 186, + "[unused182]": 187, + "[unused183]": 188, + "[unused184]": 189, + "[unused185]": 190, + "[unused186]": 191, + "[unused187]": 192, + "[unused188]": 193, + "[unused189]": 194, + "[unused190]": 195, + "[unused191]": 196, + "[unused192]": 197, + "[unused193]": 198, + "[unused194]": 199, + "[unused195]": 200, + "[unused196]": 201, + "[unused197]": 202, + "[unused198]": 203, + "[unused199]": 204, + "[unused200]": 205, + "[unused201]": 206, + "[unused202]": 207, + "[unused203]": 208, + "[unused204]": 209, + "[unused205]": 210, + "[unused206]": 211, + "[unused207]": 212, + "[unused208]": 213, + "[unused209]": 214, + "[unused210]": 215, + "[unused211]": 216, + "[unused212]": 217, + "[unused213]": 218, + "[unused214]": 219, + "[unused215]": 220, + "[unused216]": 221, + "[unused217]": 222, + "[unused218]": 223, + "[unused219]": 224, + "[unused220]": 225, + "[unused221]": 226, + "[unused222]": 227, + "[unused223]": 228, + "[unused224]": 229, + "[unused225]": 230, + "[unused226]": 231, + "[unused227]": 232, + "[unused228]": 233, + "[unused229]": 234, + "[unused230]": 235, + "[unused231]": 236, + "[unused232]": 237, + "[unused233]": 238, + "[unused234]": 239, + "[unused235]": 240, + "[unused236]": 241, + "[unused237]": 242, + "[unused238]": 243, + "[unused239]": 244, + "[unused240]": 245, + "[unused241]": 246, + "[unused242]": 247, + "[unused243]": 248, + "[unused244]": 249, + "[unused245]": 250, + "[unused246]": 251, + "[unused247]": 252, + "[unused248]": 253, + "[unused249]": 254, + "[unused250]": 255, + "[unused251]": 256, + "[unused252]": 257, + "[unused253]": 258, + "[unused254]": 259, + "[unused255]": 260, + "[unused256]": 261, + "[unused257]": 262, + "[unused258]": 263, + "[unused259]": 264, + "[unused260]": 265, + "[unused261]": 266, + "[unused262]": 267, + "[unused263]": 268, + "[unused264]": 269, + "[unused265]": 270, + "[unused266]": 271, + "[unused267]": 272, + "[unused268]": 273, + "[unused269]": 274, + "[unused270]": 275, + "[unused271]": 276, + "[unused272]": 277, + "[unused273]": 278, + "[unused274]": 279, + "[unused275]": 280, + "[unused276]": 281, + "[unused277]": 282, + "[unused278]": 283, + "[unused279]": 284, + "[unused280]": 285, + "[unused281]": 286, + "[unused282]": 287, + "[unused283]": 288, + "[unused284]": 289, + "[unused285]": 290, + "[unused286]": 291, + "[unused287]": 292, + "[unused288]": 293, + "[unused289]": 294, + "[unused290]": 295, + "[unused291]": 296, + "[unused292]": 297, + "[unused293]": 298, + "[unused294]": 299, + "[unused295]": 300, + "[unused296]": 301, + "[unused297]": 302, + "[unused298]": 303, + "[unused299]": 304, + "[unused300]": 305, + "[unused301]": 306, + "[unused302]": 307, + "[unused303]": 308, + "[unused304]": 309, + "[unused305]": 310, + "[unused306]": 311, + "[unused307]": 312, + "[unused308]": 313, + "[unused309]": 314, + "[unused310]": 315, + "[unused311]": 316, + "[unused312]": 317, + "[unused313]": 318, + "[unused314]": 319, + "[unused315]": 320, + "[unused316]": 321, + "[unused317]": 322, + "[unused318]": 323, + "[unused319]": 324, + "[unused320]": 325, + "[unused321]": 326, + "[unused322]": 327, + "[unused323]": 328, + "[unused324]": 329, + "[unused325]": 330, + "[unused326]": 331, + "[unused327]": 332, + "[unused328]": 333, + "[unused329]": 334, + "[unused330]": 335, + "[unused331]": 336, + "[unused332]": 337, + "[unused333]": 338, + "[unused334]": 339, + "[unused335]": 340, + "[unused336]": 341, + "[unused337]": 342, + "[unused338]": 343, + "[unused339]": 344, + "[unused340]": 345, + "[unused341]": 346, + "[unused342]": 347, + "[unused343]": 348, + "[unused344]": 349, + "[unused345]": 350, + "[unused346]": 351, + "[unused347]": 352, + "[unused348]": 353, + "[unused349]": 354, + "[unused350]": 355, + "[unused351]": 356, + "[unused352]": 357, + "[unused353]": 358, + "[unused354]": 359, + "[unused355]": 360, + "[unused356]": 361, + "[unused357]": 362, + "[unused358]": 363, + "[unused359]": 364, + "[unused360]": 365, + "[unused361]": 366, + "[unused362]": 367, + "[unused363]": 368, + "[unused364]": 369, + "[unused365]": 370, + "[unused366]": 371, + "[unused367]": 372, + "[unused368]": 373, + "[unused369]": 374, + "[unused370]": 375, + "[unused371]": 376, + "[unused372]": 377, + "[unused373]": 378, + "[unused374]": 379, + "[unused375]": 380, + "[unused376]": 381, + "[unused377]": 382, + "[unused378]": 383, + "[unused379]": 384, + "[unused380]": 385, + "[unused381]": 386, + "[unused382]": 387, + "[unused383]": 388, + "[unused384]": 389, + "[unused385]": 390, + "[unused386]": 391, + "[unused387]": 392, + "[unused388]": 393, + "[unused389]": 394, + "[unused390]": 395, + "[unused391]": 396, + "[unused392]": 397, + "[unused393]": 398, + "[unused394]": 399, + "[unused395]": 400, + "[unused396]": 401, + "[unused397]": 402, + "[unused398]": 403, + "[unused399]": 404, + "[unused400]": 405, + "[unused401]": 406, + "[unused402]": 407, + "[unused403]": 408, + "[unused404]": 409, + "[unused405]": 410, + "[unused406]": 411, + "[unused407]": 412, + "[unused408]": 413, + "[unused409]": 414, + "[unused410]": 415, + "[unused411]": 416, + "[unused412]": 417, + "[unused413]": 418, + "[unused414]": 419, + "[unused415]": 420, + "[unused416]": 421, + "[unused417]": 422, + "[unused418]": 423, + "[unused419]": 424, + "[unused420]": 425, + "[unused421]": 426, + "[unused422]": 427, + "[unused423]": 428, + "[unused424]": 429, + "[unused425]": 430, + "[unused426]": 431, + "[unused427]": 432, + "[unused428]": 433, + "[unused429]": 434, + "[unused430]": 435, + "[unused431]": 436, + "[unused432]": 437, + "[unused433]": 438, + "[unused434]": 439, + "[unused435]": 440, + "[unused436]": 441, + "[unused437]": 442, + "[unused438]": 443, + "[unused439]": 444, + "[unused440]": 445, + "[unused441]": 446, + "[unused442]": 447, + "[unused443]": 448, + "[unused444]": 449, + "[unused445]": 450, + "[unused446]": 451, + "[unused447]": 452, + "[unused448]": 453, + "[unused449]": 454, + "[unused450]": 455, + "[unused451]": 456, + "[unused452]": 457, + "[unused453]": 458, + "[unused454]": 459, + "[unused455]": 460, + "[unused456]": 461, + "[unused457]": 462, + "[unused458]": 463, + "[unused459]": 464, + "[unused460]": 465, + "[unused461]": 466, + "[unused462]": 467, + "[unused463]": 468, + "[unused464]": 469, + "[unused465]": 470, + "[unused466]": 471, + "[unused467]": 472, + "[unused468]": 473, + "[unused469]": 474, + "[unused470]": 475, + "[unused471]": 476, + "[unused472]": 477, + "[unused473]": 478, + "[unused474]": 479, + "[unused475]": 480, + "[unused476]": 481, + "[unused477]": 482, + "[unused478]": 483, + "[unused479]": 484, + "[unused480]": 485, + "[unused481]": 486, + "[unused482]": 487, + "[unused483]": 488, + "[unused484]": 489, + "[unused485]": 490, + "[unused486]": 491, + "[unused487]": 492, + "[unused488]": 493, + "[unused489]": 494, + "[unused490]": 495, + "[unused491]": 496, + "[unused492]": 497, + "[unused493]": 498, + "[unused494]": 499, + "[unused495]": 500, + "[unused496]": 501, + "[unused497]": 502, + "[unused498]": 503, + "[unused499]": 504, + "[unused500]": 505, + "[unused501]": 506, + "[unused502]": 507, + "[unused503]": 508, + "[unused504]": 509, + "[unused505]": 510, + "[unused506]": 511, + "[unused507]": 512, + "[unused508]": 513, + "[unused509]": 514, + "[unused510]": 515, + "[unused511]": 516, + "[unused512]": 517, + "[unused513]": 518, + "[unused514]": 519, + "[unused515]": 520, + "[unused516]": 521, + "[unused517]": 522, + "[unused518]": 523, + "[unused519]": 524, + "[unused520]": 525, + "[unused521]": 526, + "[unused522]": 527, + "[unused523]": 528, + "[unused524]": 529, + "[unused525]": 530, + "[unused526]": 531, + "[unused527]": 532, + "[unused528]": 533, + "[unused529]": 534, + "[unused530]": 535, + "[unused531]": 536, + "[unused532]": 537, + "[unused533]": 538, + "[unused534]": 539, + "[unused535]": 540, + "[unused536]": 541, + "[unused537]": 542, + "[unused538]": 543, + "[unused539]": 544, + "[unused540]": 545, + "[unused541]": 546, + "[unused542]": 547, + "[unused543]": 548, + "[unused544]": 549, + "[unused545]": 550, + "[unused546]": 551, + "[unused547]": 552, + "[unused548]": 553, + "[unused549]": 554, + "[unused550]": 555, + "[unused551]": 556, + "[unused552]": 557, + "[unused553]": 558, + "[unused554]": 559, + "[unused555]": 560, + "[unused556]": 561, + "[unused557]": 562, + "[unused558]": 563, + "[unused559]": 564, + "[unused560]": 565, + "[unused561]": 566, + "[unused562]": 567, + "[unused563]": 568, + "[unused564]": 569, + "[unused565]": 570, + "[unused566]": 571, + "[unused567]": 572, + "[unused568]": 573, + "[unused569]": 574, + "[unused570]": 575, + "[unused571]": 576, + "[unused572]": 577, + "[unused573]": 578, + "[unused574]": 579, + "[unused575]": 580, + "[unused576]": 581, + "[unused577]": 582, + "[unused578]": 583, + "[unused579]": 584, + "[unused580]": 585, + "[unused581]": 586, + "[unused582]": 587, + "[unused583]": 588, + "[unused584]": 589, + "[unused585]": 590, + "[unused586]": 591, + "[unused587]": 592, + "[unused588]": 593, + "[unused589]": 594, + "[unused590]": 595, + "[unused591]": 596, + "[unused592]": 597, + "[unused593]": 598, + "[unused594]": 599, + "[unused595]": 600, + "[unused596]": 601, + "[unused597]": 602, + "[unused598]": 603, + "[unused599]": 604, + "[unused600]": 605, + "[unused601]": 606, + "[unused602]": 607, + "[unused603]": 608, + "[unused604]": 609, + "[unused605]": 610, + "[unused606]": 611, + "[unused607]": 612, + "[unused608]": 613, + "[unused609]": 614, + "[unused610]": 615, + "[unused611]": 616, + "[unused612]": 617, + "[unused613]": 618, + "[unused614]": 619, + "[unused615]": 620, + "[unused616]": 621, + "[unused617]": 622, + "[unused618]": 623, + "[unused619]": 624, + "[unused620]": 625, + "[unused621]": 626, + "[unused622]": 627, + "[unused623]": 628, + "[unused624]": 629, + "[unused625]": 630, + "[unused626]": 631, + "[unused627]": 632, + "[unused628]": 633, + "[unused629]": 634, + "[unused630]": 635, + "[unused631]": 636, + "[unused632]": 637, + "[unused633]": 638, + "[unused634]": 639, + "[unused635]": 640, + "[unused636]": 641, + "[unused637]": 642, + "[unused638]": 643, + "[unused639]": 644, + "[unused640]": 645, + "[unused641]": 646, + "[unused642]": 647, + "[unused643]": 648, + "[unused644]": 649, + "[unused645]": 650, + "[unused646]": 651, + "[unused647]": 652, + "[unused648]": 653, + "[unused649]": 654, + "[unused650]": 655, + "[unused651]": 656, + "[unused652]": 657, + "[unused653]": 658, + "[unused654]": 659, + "[unused655]": 660, + "[unused656]": 661, + "[unused657]": 662, + "[unused658]": 663, + "[unused659]": 664, + "[unused660]": 665, + "[unused661]": 666, + "[unused662]": 667, + "[unused663]": 668, + "[unused664]": 669, + "[unused665]": 670, + "[unused666]": 671, + "[unused667]": 672, + "[unused668]": 673, + "[unused669]": 674, + "[unused670]": 675, + "[unused671]": 676, + "[unused672]": 677, + "[unused673]": 678, + "[unused674]": 679, + "[unused675]": 680, + "[unused676]": 681, + "[unused677]": 682, + "[unused678]": 683, + "[unused679]": 684, + "[unused680]": 685, + "[unused681]": 686, + "[unused682]": 687, + "[unused683]": 688, + "[unused684]": 689, + "[unused685]": 690, + "[unused686]": 691, + "[unused687]": 692, + "[unused688]": 693, + "[unused689]": 694, + "[unused690]": 695, + "[unused691]": 696, + "[unused692]": 697, + "[unused693]": 698, + "[unused694]": 699, + "[unused695]": 700, + "[unused696]": 701, + "[unused697]": 702, + "[unused698]": 703, + "[unused699]": 704, + "[unused700]": 705, + "[unused701]": 706, + "[unused702]": 707, + "[unused703]": 708, + "[unused704]": 709, + "[unused705]": 710, + "[unused706]": 711, + "[unused707]": 712, + "[unused708]": 713, + "[unused709]": 714, + "[unused710]": 715, + "[unused711]": 716, + "[unused712]": 717, + "[unused713]": 718, + "[unused714]": 719, + "[unused715]": 720, + "[unused716]": 721, + "[unused717]": 722, + "[unused718]": 723, + "[unused719]": 724, + "[unused720]": 725, + "[unused721]": 726, + "[unused722]": 727, + "[unused723]": 728, + "[unused724]": 729, + "[unused725]": 730, + "[unused726]": 731, + "[unused727]": 732, + "[unused728]": 733, + "[unused729]": 734, + "[unused730]": 735, + "[unused731]": 736, + "[unused732]": 737, + "[unused733]": 738, + "[unused734]": 739, + "[unused735]": 740, + "[unused736]": 741, + "[unused737]": 742, + "[unused738]": 743, + "[unused739]": 744, + "[unused740]": 745, + "[unused741]": 746, + "[unused742]": 747, + "[unused743]": 748, + "[unused744]": 749, + "[unused745]": 750, + "[unused746]": 751, + "[unused747]": 752, + "[unused748]": 753, + "[unused749]": 754, + "[unused750]": 755, + "[unused751]": 756, + "[unused752]": 757, + "[unused753]": 758, + "[unused754]": 759, + "[unused755]": 760, + "[unused756]": 761, + "[unused757]": 762, + "[unused758]": 763, + "[unused759]": 764, + "[unused760]": 765, + "[unused761]": 766, + "[unused762]": 767, + "[unused763]": 768, + "[unused764]": 769, + "[unused765]": 770, + "[unused766]": 771, + "[unused767]": 772, + "[unused768]": 773, + "[unused769]": 774, + "[unused770]": 775, + "[unused771]": 776, + "[unused772]": 777, + "[unused773]": 778, + "[unused774]": 779, + "[unused775]": 780, + "[unused776]": 781, + "[unused777]": 782, + "[unused778]": 783, + "[unused779]": 784, + "[unused780]": 785, + "[unused781]": 786, + "[unused782]": 787, + "[unused783]": 788, + "[unused784]": 789, + "[unused785]": 790, + "[unused786]": 791, + "[unused787]": 792, + "[unused788]": 793, + "[unused789]": 794, + "[unused790]": 795, + "[unused791]": 796, + "[unused792]": 797, + "[unused793]": 798, + "[unused794]": 799, + "[unused795]": 800, + "[unused796]": 801, + "[unused797]": 802, + "[unused798]": 803, + "[unused799]": 804, + "[unused800]": 805, + "[unused801]": 806, + "[unused802]": 807, + "[unused803]": 808, + "[unused804]": 809, + "[unused805]": 810, + "[unused806]": 811, + "[unused807]": 812, + "[unused808]": 813, + "[unused809]": 814, + "[unused810]": 815, + "[unused811]": 816, + "[unused812]": 817, + "[unused813]": 818, + "[unused814]": 819, + "[unused815]": 820, + "[unused816]": 821, + "[unused817]": 822, + "[unused818]": 823, + "[unused819]": 824, + "[unused820]": 825, + "[unused821]": 826, + "[unused822]": 827, + "[unused823]": 828, + "[unused824]": 829, + "[unused825]": 830, + "[unused826]": 831, + "[unused827]": 832, + "[unused828]": 833, + "[unused829]": 834, + "[unused830]": 835, + "[unused831]": 836, + "[unused832]": 837, + "[unused833]": 838, + "[unused834]": 839, + "[unused835]": 840, + "[unused836]": 841, + "[unused837]": 842, + "[unused838]": 843, + "[unused839]": 844, + "[unused840]": 845, + "[unused841]": 846, + "[unused842]": 847, + "[unused843]": 848, + "[unused844]": 849, + "[unused845]": 850, + "[unused846]": 851, + "[unused847]": 852, + "[unused848]": 853, + "[unused849]": 854, + "[unused850]": 855, + "[unused851]": 856, + "[unused852]": 857, + "[unused853]": 858, + "[unused854]": 859, + "[unused855]": 860, + "[unused856]": 861, + "[unused857]": 862, + "[unused858]": 863, + "[unused859]": 864, + "[unused860]": 865, + "[unused861]": 866, + "[unused862]": 867, + "[unused863]": 868, + "[unused864]": 869, + "[unused865]": 870, + "[unused866]": 871, + "[unused867]": 872, + "[unused868]": 873, + "[unused869]": 874, + "[unused870]": 875, + "[unused871]": 876, + "[unused872]": 877, + "[unused873]": 878, + "[unused874]": 879, + "[unused875]": 880, + "[unused876]": 881, + "[unused877]": 882, + "[unused878]": 883, + "[unused879]": 884, + "[unused880]": 885, + "[unused881]": 886, + "[unused882]": 887, + "[unused883]": 888, + "[unused884]": 889, + "[unused885]": 890, + "[unused886]": 891, + "[unused887]": 892, + "[unused888]": 893, + "[unused889]": 894, + "[unused890]": 895, + "[unused891]": 896, + "[unused892]": 897, + "[unused893]": 898, + "[unused894]": 899, + "[unused895]": 900, + "[unused896]": 901, + "[unused897]": 902, + "[unused898]": 903, + "[unused899]": 904, + "[unused900]": 905, + "[unused901]": 906, + "[unused902]": 907, + "[unused903]": 908, + "[unused904]": 909, + "[unused905]": 910, + "[unused906]": 911, + "[unused907]": 912, + "[unused908]": 913, + "[unused909]": 914, + "[unused910]": 915, + "[unused911]": 916, + "[unused912]": 917, + "[unused913]": 918, + "[unused914]": 919, + "[unused915]": 920, + "[unused916]": 921, + "[unused917]": 922, + "[unused918]": 923, + "[unused919]": 924, + "[unused920]": 925, + "[unused921]": 926, + "[unused922]": 927, + "[unused923]": 928, + "[unused924]": 929, + "[unused925]": 930, + "[unused926]": 931, + "[unused927]": 932, + "[unused928]": 933, + "[unused929]": 934, + "[unused930]": 935, + "[unused931]": 936, + "[unused932]": 937, + "[unused933]": 938, + "[unused934]": 939, + "[unused935]": 940, + "[unused936]": 941, + "[unused937]": 942, + "[unused938]": 943, + "[unused939]": 944, + "[unused940]": 945, + "[unused941]": 946, + "[unused942]": 947, + "[unused943]": 948, + "[unused944]": 949, + "[unused945]": 950, + "[unused946]": 951, + "[unused947]": 952, + "[unused948]": 953, + "[unused949]": 954, + "[unused950]": 955, + "[unused951]": 956, + "[unused952]": 957, + "[unused953]": 958, + "[unused954]": 959, + "[unused955]": 960, + "[unused956]": 961, + "[unused957]": 962, + "[unused958]": 963, + "[unused959]": 964, + "[unused960]": 965, + "[unused961]": 966, + "[unused962]": 967, + "[unused963]": 968, + "[unused964]": 969, + "[unused965]": 970, + "[unused966]": 971, + "[unused967]": 972, + "[unused968]": 973, + "[unused969]": 974, + "[unused970]": 975, + "[unused971]": 976, + "[unused972]": 977, + "[unused973]": 978, + "[unused974]": 979, + "[unused975]": 980, + "[unused976]": 981, + "[unused977]": 982, + "[unused978]": 983, + "[unused979]": 984, + "[unused980]": 985, + "[unused981]": 986, + "[unused982]": 987, + "[unused983]": 988, + "[unused984]": 989, + "[unused985]": 990, + "[unused986]": 991, + "[unused987]": 992, + "[unused988]": 993, + "[unused989]": 994, + "[unused990]": 995, + "[unused991]": 996, + "[unused992]": 997, + "[unused993]": 998, + "!": 999, + "\"": 1000, + "#": 1001, + "$": 1002, + "%": 1003, + "&": 1004, + "'": 1005, + "(": 1006, + ")": 1007, + "*": 1008, + "+": 1009, + ",": 1010, + "-": 1011, + ".": 1012, + "/": 1013, + "0": 1014, + "1": 1015, + "2": 1016, + "3": 1017, + "4": 1018, + "5": 1019, + "6": 1020, + "7": 1021, + "8": 1022, + "9": 1023, + ":": 1024, + ";": 1025, + "<": 1026, + "=": 1027, + ">": 1028, + "?": 1029, + "@": 1030, + "[": 1031, + "\\": 1032, + "]": 1033, + "^": 1034, + "_": 1035, + "`": 1036, + "a": 1037, + "b": 1038, + "c": 1039, + "d": 1040, + "e": 1041, + "f": 1042, + "g": 1043, + "h": 1044, + "i": 1045, + "j": 1046, + "k": 1047, + "l": 1048, + "m": 1049, + "n": 1050, + "o": 1051, + "p": 1052, + "q": 1053, + "r": 1054, + "s": 1055, + "t": 1056, + "u": 1057, + "v": 1058, + "w": 1059, + "x": 1060, + "y": 1061, + "z": 1062, + "{": 1063, + "|": 1064, + "}": 1065, + "~": 1066, + "¡": 1067, + "¢": 1068, + "£": 1069, + "¤": 1070, + "¥": 1071, + "¦": 1072, + "§": 1073, + "¨": 1074, + "©": 1075, + "ª": 1076, + "«": 1077, + "¬": 1078, + "®": 1079, + "°": 1080, + "±": 1081, + "²": 1082, + "³": 1083, + "´": 1084, + "µ": 1085, + "¶": 1086, + "·": 1087, + "¹": 1088, + "º": 1089, + "»": 1090, + "¼": 1091, + "½": 1092, + "¾": 1093, + "¿": 1094, + "×": 1095, + "ß": 1096, + "æ": 1097, + "ð": 1098, + "÷": 1099, + "ø": 1100, + "þ": 1101, + "đ": 1102, + "ħ": 1103, + "ı": 1104, + "ł": 1105, + "ŋ": 1106, + "œ": 1107, + "ƒ": 1108, + "ɐ": 1109, + "ɑ": 1110, + "ɒ": 1111, + "ɔ": 1112, + "ɕ": 1113, + "ə": 1114, + "ɛ": 1115, + "ɡ": 1116, + "ɣ": 1117, + "ɨ": 1118, + "ɪ": 1119, + "ɫ": 1120, + "ɬ": 1121, + "ɯ": 1122, + "ɲ": 1123, + "ɴ": 1124, + "ɹ": 1125, + "ɾ": 1126, + "ʀ": 1127, + "ʁ": 1128, + "ʂ": 1129, + "ʃ": 1130, + "ʉ": 1131, + "ʊ": 1132, + "ʋ": 1133, + "ʌ": 1134, + "ʎ": 1135, + "ʐ": 1136, + "ʑ": 1137, + "ʒ": 1138, + "ʔ": 1139, + "ʰ": 1140, + "ʲ": 1141, + "ʳ": 1142, + "ʷ": 1143, + "ʸ": 1144, + "ʻ": 1145, + "ʼ": 1146, + "ʾ": 1147, + "ʿ": 1148, + "ˈ": 1149, + "ː": 1150, + "ˡ": 1151, + "ˢ": 1152, + "ˣ": 1153, + "ˤ": 1154, + "α": 1155, + "β": 1156, + "γ": 1157, + "δ": 1158, + "ε": 1159, + "ζ": 1160, + "η": 1161, + "θ": 1162, + "ι": 1163, + "κ": 1164, + "λ": 1165, + "μ": 1166, + "ν": 1167, + "ξ": 1168, + "ο": 1169, + "π": 1170, + "ρ": 1171, + "ς": 1172, + "σ": 1173, + "τ": 1174, + "υ": 1175, + "φ": 1176, + "χ": 1177, + "ψ": 1178, + "ω": 1179, + "а": 1180, + "б": 1181, + "в": 1182, + "г": 1183, + "д": 1184, + "е": 1185, + "ж": 1186, + "з": 1187, + "и": 1188, + "к": 1189, + "л": 1190, + "м": 1191, + "н": 1192, + "о": 1193, + "п": 1194, + "р": 1195, + "с": 1196, + "т": 1197, + "у": 1198, + "ф": 1199, + "х": 1200, + "ц": 1201, + "ч": 1202, + "ш": 1203, + "щ": 1204, + "ъ": 1205, + "ы": 1206, + "ь": 1207, + "э": 1208, + "ю": 1209, + "я": 1210, + "ђ": 1211, + "є": 1212, + "і": 1213, + "ј": 1214, + "љ": 1215, + "њ": 1216, + "ћ": 1217, + "ӏ": 1218, + "ա": 1219, + "բ": 1220, + "գ": 1221, + "դ": 1222, + "ե": 1223, + "թ": 1224, + "ի": 1225, + "լ": 1226, + "կ": 1227, + "հ": 1228, + "մ": 1229, + "յ": 1230, + "ն": 1231, + "ո": 1232, + "պ": 1233, + "ս": 1234, + "վ": 1235, + "տ": 1236, + "ր": 1237, + "ւ": 1238, + "ք": 1239, + "־": 1240, + "א": 1241, + "ב": 1242, + "ג": 1243, + "ד": 1244, + "ה": 1245, + "ו": 1246, + "ז": 1247, + "ח": 1248, + "ט": 1249, + "י": 1250, + "ך": 1251, + "כ": 1252, + "ל": 1253, + "ם": 1254, + "מ": 1255, + "ן": 1256, + "נ": 1257, + "ס": 1258, + "ע": 1259, + "ף": 1260, + "פ": 1261, + "ץ": 1262, + "צ": 1263, + "ק": 1264, + "ר": 1265, + "ש": 1266, + "ת": 1267, + "،": 1268, + "ء": 1269, + "ا": 1270, + "ب": 1271, + "ة": 1272, + "ت": 1273, + "ث": 1274, + "ج": 1275, + "ح": 1276, + "خ": 1277, + "د": 1278, + "ذ": 1279, + "ر": 1280, + "ز": 1281, + "س": 1282, + "ش": 1283, + "ص": 1284, + "ض": 1285, + "ط": 1286, + "ظ": 1287, + "ع": 1288, + "غ": 1289, + "ـ": 1290, + "ف": 1291, + "ق": 1292, + "ك": 1293, + "ل": 1294, + "م": 1295, + "ن": 1296, + "ه": 1297, + "و": 1298, + "ى": 1299, + "ي": 1300, + "ٹ": 1301, + "پ": 1302, + "چ": 1303, + "ک": 1304, + "گ": 1305, + "ں": 1306, + "ھ": 1307, + "ہ": 1308, + "ی": 1309, + "ے": 1310, + "अ": 1311, + "आ": 1312, + "उ": 1313, + "ए": 1314, + "क": 1315, + "ख": 1316, + "ग": 1317, + "च": 1318, + "ज": 1319, + "ट": 1320, + "ड": 1321, + "ण": 1322, + "त": 1323, + "थ": 1324, + "द": 1325, + "ध": 1326, + "न": 1327, + "प": 1328, + "ब": 1329, + "भ": 1330, + "म": 1331, + "य": 1332, + "र": 1333, + "ल": 1334, + "व": 1335, + "श": 1336, + "ष": 1337, + "स": 1338, + "ह": 1339, + "ा": 1340, + "ि": 1341, + "ी": 1342, + "ो": 1343, + "।": 1344, + "॥": 1345, + "ং": 1346, + "অ": 1347, + "আ": 1348, + "ই": 1349, + "উ": 1350, + "এ": 1351, + "ও": 1352, + "ক": 1353, + "খ": 1354, + "গ": 1355, + "চ": 1356, + "ছ": 1357, + "জ": 1358, + "ট": 1359, + "ড": 1360, + "ণ": 1361, + "ত": 1362, + "থ": 1363, + "দ": 1364, + "ধ": 1365, + "ন": 1366, + "প": 1367, + "ব": 1368, + "ভ": 1369, + "ম": 1370, + "য": 1371, + "র": 1372, + "ল": 1373, + "শ": 1374, + "ষ": 1375, + "স": 1376, + "হ": 1377, + "া": 1378, + "ি": 1379, + "ী": 1380, + "ে": 1381, + "க": 1382, + "ச": 1383, + "ட": 1384, + "த": 1385, + "ந": 1386, + "ன": 1387, + "ப": 1388, + "ம": 1389, + "ய": 1390, + "ர": 1391, + "ல": 1392, + "ள": 1393, + "வ": 1394, + "ா": 1395, + "ி": 1396, + "ு": 1397, + "ே": 1398, + "ை": 1399, + "ನ": 1400, + "ರ": 1401, + "ಾ": 1402, + "ක": 1403, + "ය": 1404, + "ර": 1405, + "ල": 1406, + "ව": 1407, + "ා": 1408, + "ก": 1409, + "ง": 1410, + "ต": 1411, + "ท": 1412, + "น": 1413, + "พ": 1414, + "ม": 1415, + "ย": 1416, + "ร": 1417, + "ล": 1418, + "ว": 1419, + "ส": 1420, + "อ": 1421, + "า": 1422, + "เ": 1423, + "་": 1424, + "།": 1425, + "ག": 1426, + "ང": 1427, + "ད": 1428, + "ན": 1429, + "པ": 1430, + "བ": 1431, + "མ": 1432, + "འ": 1433, + "ར": 1434, + "ལ": 1435, + "ས": 1436, + "မ": 1437, + "ა": 1438, + "ბ": 1439, + "გ": 1440, + "დ": 1441, + "ე": 1442, + "ვ": 1443, + "თ": 1444, + "ი": 1445, + "კ": 1446, + "ლ": 1447, + "მ": 1448, + "ნ": 1449, + "ო": 1450, + "რ": 1451, + "ს": 1452, + "ტ": 1453, + "უ": 1454, + "ᄀ": 1455, + "ᄂ": 1456, + "ᄃ": 1457, + "ᄅ": 1458, + "ᄆ": 1459, + "ᄇ": 1460, + "ᄉ": 1461, + "ᄊ": 1462, + "ᄋ": 1463, + "ᄌ": 1464, + "ᄎ": 1465, + "ᄏ": 1466, + "ᄐ": 1467, + "ᄑ": 1468, + "ᄒ": 1469, + "ᅡ": 1470, + "ᅢ": 1471, + "ᅥ": 1472, + "ᅦ": 1473, + "ᅧ": 1474, + "ᅩ": 1475, + "ᅪ": 1476, + "ᅭ": 1477, + "ᅮ": 1478, + "ᅯ": 1479, + "ᅲ": 1480, + "ᅳ": 1481, + "ᅴ": 1482, + "ᅵ": 1483, + "ᆨ": 1484, + "ᆫ": 1485, + "ᆯ": 1486, + "ᆷ": 1487, + "ᆸ": 1488, + "ᆼ": 1489, + "ᴬ": 1490, + "ᴮ": 1491, + "ᴰ": 1492, + "ᴵ": 1493, + "ᴺ": 1494, + "ᵀ": 1495, + "ᵃ": 1496, + "ᵇ": 1497, + "ᵈ": 1498, + "ᵉ": 1499, + "ᵍ": 1500, + "ᵏ": 1501, + "ᵐ": 1502, + "ᵒ": 1503, + "ᵖ": 1504, + "ᵗ": 1505, + "ᵘ": 1506, + "ᵢ": 1507, + "ᵣ": 1508, + "ᵤ": 1509, + "ᵥ": 1510, + "ᶜ": 1511, + "ᶠ": 1512, + "‐": 1513, + "‑": 1514, + "‒": 1515, + "–": 1516, + "—": 1517, + "―": 1518, + "‖": 1519, + "‘": 1520, + "’": 1521, + "‚": 1522, + "“": 1523, + "”": 1524, + "„": 1525, + "†": 1526, + "‡": 1527, + "•": 1528, + "…": 1529, + "‰": 1530, + "′": 1531, + "″": 1532, + "›": 1533, + "‿": 1534, + "⁄": 1535, + "⁰": 1536, + "ⁱ": 1537, + "⁴": 1538, + "⁵": 1539, + "⁶": 1540, + "⁷": 1541, + "⁸": 1542, + "⁹": 1543, + "⁺": 1544, + "⁻": 1545, + "ⁿ": 1546, + "₀": 1547, + "₁": 1548, + "₂": 1549, + "₃": 1550, + "₄": 1551, + "₅": 1552, + "₆": 1553, + "₇": 1554, + "₈": 1555, + "₉": 1556, + "₊": 1557, + "₍": 1558, + "₎": 1559, + "ₐ": 1560, + "ₑ": 1561, + "ₒ": 1562, + "ₓ": 1563, + "ₕ": 1564, + "ₖ": 1565, + "ₗ": 1566, + "ₘ": 1567, + "ₙ": 1568, + "ₚ": 1569, + "ₛ": 1570, + "ₜ": 1571, + "₤": 1572, + "₩": 1573, + "€": 1574, + "₱": 1575, + "₹": 1576, + "ℓ": 1577, + "№": 1578, + "ℝ": 1579, + "™": 1580, + "⅓": 1581, + "⅔": 1582, + "←": 1583, + "↑": 1584, + "→": 1585, + "↓": 1586, + "↔": 1587, + "↦": 1588, + "⇄": 1589, + "⇌": 1590, + "⇒": 1591, + "∂": 1592, + "∅": 1593, + "∆": 1594, + "∇": 1595, + "∈": 1596, + "−": 1597, + "∗": 1598, + "∘": 1599, + "√": 1600, + "∞": 1601, + "∧": 1602, + "∨": 1603, + "∩": 1604, + "∪": 1605, + "≈": 1606, + "≡": 1607, + "≤": 1608, + "≥": 1609, + "⊂": 1610, + "⊆": 1611, + "⊕": 1612, + "⊗": 1613, + "⋅": 1614, + "─": 1615, + "│": 1616, + "■": 1617, + "▪": 1618, + "●": 1619, + "★": 1620, + "☆": 1621, + "☉": 1622, + "♠": 1623, + "♣": 1624, + "♥": 1625, + "♦": 1626, + "♭": 1627, + "♯": 1628, + "⟨": 1629, + "⟩": 1630, + "ⱼ": 1631, + "⺩": 1632, + "⺼": 1633, + "⽥": 1634, + "、": 1635, + "。": 1636, + "〈": 1637, + "〉": 1638, + "《": 1639, + "》": 1640, + "「": 1641, + "」": 1642, + "『": 1643, + "』": 1644, + "〜": 1645, + "あ": 1646, + "い": 1647, + "う": 1648, + "え": 1649, + "お": 1650, + "か": 1651, + "き": 1652, + "く": 1653, + "け": 1654, + "こ": 1655, + "さ": 1656, + "し": 1657, + "す": 1658, + "せ": 1659, + "そ": 1660, + "た": 1661, + "ち": 1662, + "っ": 1663, + "つ": 1664, + "て": 1665, + "と": 1666, + "な": 1667, + "に": 1668, + "ぬ": 1669, + "ね": 1670, + "の": 1671, + "は": 1672, + "ひ": 1673, + "ふ": 1674, + "へ": 1675, + "ほ": 1676, + "ま": 1677, + "み": 1678, + "む": 1679, + "め": 1680, + "も": 1681, + "や": 1682, + "ゆ": 1683, + "よ": 1684, + "ら": 1685, + "り": 1686, + "る": 1687, + "れ": 1688, + "ろ": 1689, + "を": 1690, + "ん": 1691, + "ァ": 1692, + "ア": 1693, + "ィ": 1694, + "イ": 1695, + "ウ": 1696, + "ェ": 1697, + "エ": 1698, + "オ": 1699, + "カ": 1700, + "キ": 1701, + "ク": 1702, + "ケ": 1703, + "コ": 1704, + "サ": 1705, + "シ": 1706, + "ス": 1707, + "セ": 1708, + "タ": 1709, + "チ": 1710, + "ッ": 1711, + "ツ": 1712, + "テ": 1713, + "ト": 1714, + "ナ": 1715, + "ニ": 1716, + "ノ": 1717, + "ハ": 1718, + "ヒ": 1719, + "フ": 1720, + "ヘ": 1721, + "ホ": 1722, + "マ": 1723, + "ミ": 1724, + "ム": 1725, + "メ": 1726, + "モ": 1727, + "ャ": 1728, + "ュ": 1729, + "ョ": 1730, + "ラ": 1731, + "リ": 1732, + "ル": 1733, + "レ": 1734, + "ロ": 1735, + "ワ": 1736, + "ン": 1737, + "・": 1738, + "ー": 1739, + "一": 1740, + "三": 1741, + "上": 1742, + "下": 1743, + "不": 1744, + "世": 1745, + "中": 1746, + "主": 1747, + "久": 1748, + "之": 1749, + "也": 1750, + "事": 1751, + "二": 1752, + "五": 1753, + "井": 1754, + "京": 1755, + "人": 1756, + "亻": 1757, + "仁": 1758, + "介": 1759, + "代": 1760, + "仮": 1761, + "伊": 1762, + "会": 1763, + "佐": 1764, + "侍": 1765, + "保": 1766, + "信": 1767, + "健": 1768, + "元": 1769, + "光": 1770, + "八": 1771, + "公": 1772, + "内": 1773, + "出": 1774, + "分": 1775, + "前": 1776, + "劉": 1777, + "力": 1778, + "加": 1779, + "勝": 1780, + "北": 1781, + "区": 1782, + "十": 1783, + "千": 1784, + "南": 1785, + "博": 1786, + "原": 1787, + "口": 1788, + "古": 1789, + "史": 1790, + "司": 1791, + "合": 1792, + "吉": 1793, + "同": 1794, + "名": 1795, + "和": 1796, + "囗": 1797, + "四": 1798, + "国": 1799, + "國": 1800, + "土": 1801, + "地": 1802, + "坂": 1803, + "城": 1804, + "堂": 1805, + "場": 1806, + "士": 1807, + "夏": 1808, + "外": 1809, + "大": 1810, + "天": 1811, + "太": 1812, + "夫": 1813, + "奈": 1814, + "女": 1815, + "子": 1816, + "学": 1817, + "宀": 1818, + "宇": 1819, + "安": 1820, + "宗": 1821, + "定": 1822, + "宣": 1823, + "宮": 1824, + "家": 1825, + "宿": 1826, + "寺": 1827, + "將": 1828, + "小": 1829, + "尚": 1830, + "山": 1831, + "岡": 1832, + "島": 1833, + "崎": 1834, + "川": 1835, + "州": 1836, + "巿": 1837, + "帝": 1838, + "平": 1839, + "年": 1840, + "幸": 1841, + "广": 1842, + "弘": 1843, + "張": 1844, + "彳": 1845, + "後": 1846, + "御": 1847, + "德": 1848, + "心": 1849, + "忄": 1850, + "志": 1851, + "忠": 1852, + "愛": 1853, + "成": 1854, + "我": 1855, + "戦": 1856, + "戸": 1857, + "手": 1858, + "扌": 1859, + "政": 1860, + "文": 1861, + "新": 1862, + "方": 1863, + "日": 1864, + "明": 1865, + "星": 1866, + "春": 1867, + "昭": 1868, + "智": 1869, + "曲": 1870, + "書": 1871, + "月": 1872, + "有": 1873, + "朝": 1874, + "木": 1875, + "本": 1876, + "李": 1877, + "村": 1878, + "東": 1879, + "松": 1880, + "林": 1881, + "森": 1882, + "楊": 1883, + "樹": 1884, + "橋": 1885, + "歌": 1886, + "止": 1887, + "正": 1888, + "武": 1889, + "比": 1890, + "氏": 1891, + "民": 1892, + "水": 1893, + "氵": 1894, + "氷": 1895, + "永": 1896, + "江": 1897, + "沢": 1898, + "河": 1899, + "治": 1900, + "法": 1901, + "海": 1902, + "清": 1903, + "漢": 1904, + "瀬": 1905, + "火": 1906, + "版": 1907, + "犬": 1908, + "王": 1909, + "生": 1910, + "田": 1911, + "男": 1912, + "疒": 1913, + "発": 1914, + "白": 1915, + "的": 1916, + "皇": 1917, + "目": 1918, + "相": 1919, + "省": 1920, + "真": 1921, + "石": 1922, + "示": 1923, + "社": 1924, + "神": 1925, + "福": 1926, + "禾": 1927, + "秀": 1928, + "秋": 1929, + "空": 1930, + "立": 1931, + "章": 1932, + "竹": 1933, + "糹": 1934, + "美": 1935, + "義": 1936, + "耳": 1937, + "良": 1938, + "艹": 1939, + "花": 1940, + "英": 1941, + "華": 1942, + "葉": 1943, + "藤": 1944, + "行": 1945, + "街": 1946, + "西": 1947, + "見": 1948, + "訁": 1949, + "語": 1950, + "谷": 1951, + "貝": 1952, + "貴": 1953, + "車": 1954, + "軍": 1955, + "辶": 1956, + "道": 1957, + "郎": 1958, + "郡": 1959, + "部": 1960, + "都": 1961, + "里": 1962, + "野": 1963, + "金": 1964, + "鈴": 1965, + "镇": 1966, + "長": 1967, + "門": 1968, + "間": 1969, + "阝": 1970, + "阿": 1971, + "陳": 1972, + "陽": 1973, + "雄": 1974, + "青": 1975, + "面": 1976, + "風": 1977, + "食": 1978, + "香": 1979, + "馬": 1980, + "高": 1981, + "龍": 1982, + "龸": 1983, + "fi": 1984, + "fl": 1985, + "!": 1986, + "(": 1987, + ")": 1988, + ",": 1989, + "-": 1990, + ".": 1991, + "/": 1992, + ":": 1993, + "?": 1994, + "~": 1995, + "the": 1996, + "of": 1997, + "and": 1998, + "in": 1999, + "to": 2000, + "was": 2001, + "he": 2002, + "is": 2003, + "as": 2004, + "for": 2005, + "on": 2006, + "with": 2007, + "that": 2008, + "it": 2009, + "his": 2010, + "by": 2011, + "at": 2012, + "from": 2013, + "her": 2014, + "##s": 2015, + "she": 2016, + "you": 2017, + "had": 2018, + "an": 2019, + "were": 2020, + "but": 2021, + "be": 2022, + "this": 2023, + "are": 2024, + "not": 2025, + "my": 2026, + "they": 2027, + "one": 2028, + "which": 2029, + "or": 2030, + "have": 2031, + "him": 2032, + "me": 2033, + "first": 2034, + "all": 2035, + "also": 2036, + "their": 2037, + "has": 2038, + "up": 2039, + "who": 2040, + "out": 2041, + "been": 2042, + "when": 2043, + "after": 2044, + "there": 2045, + "into": 2046, + "new": 2047, + "two": 2048, + "its": 2049, + "##a": 2050, + "time": 2051, + "would": 2052, + "no": 2053, + "what": 2054, + "about": 2055, + "said": 2056, + "we": 2057, + "over": 2058, + "then": 2059, + "other": 2060, + "so": 2061, + "more": 2062, + "##e": 2063, + "can": 2064, + "if": 2065, + "like": 2066, + "back": 2067, + "them": 2068, + "only": 2069, + "some": 2070, + "could": 2071, + "##i": 2072, + "where": 2073, + "just": 2074, + "##ing": 2075, + "during": 2076, + "before": 2077, + "##n": 2078, + "do": 2079, + "##o": 2080, + "made": 2081, + "school": 2082, + "through": 2083, + "than": 2084, + "now": 2085, + "years": 2086, + "most": 2087, + "world": 2088, + "may": 2089, + "between": 2090, + "down": 2091, + "well": 2092, + "three": 2093, + "##d": 2094, + "year": 2095, + "while": 2096, + "will": 2097, + "##ed": 2098, + "##r": 2099, + "##y": 2100, + "later": 2101, + "##t": 2102, + "city": 2103, + "under": 2104, + "around": 2105, + "did": 2106, + "such": 2107, + "being": 2108, + "used": 2109, + "state": 2110, + "people": 2111, + "part": 2112, + "know": 2113, + "against": 2114, + "your": 2115, + "many": 2116, + "second": 2117, + "university": 2118, + "both": 2119, + "national": 2120, + "##er": 2121, + "these": 2122, + "don": 2123, + "known": 2124, + "off": 2125, + "way": 2126, + "until": 2127, + "re": 2128, + "how": 2129, + "even": 2130, + "get": 2131, + "head": 2132, + "...": 2133, + "didn": 2134, + "##ly": 2135, + "team": 2136, + "american": 2137, + "because": 2138, + "de": 2139, + "##l": 2140, + "born": 2141, + "united": 2142, + "film": 2143, + "since": 2144, + "still": 2145, + "long": 2146, + "work": 2147, + "south": 2148, + "us": 2149, + "became": 2150, + "any": 2151, + "high": 2152, + "again": 2153, + "day": 2154, + "family": 2155, + "see": 2156, + "right": 2157, + "man": 2158, + "eyes": 2159, + "house": 2160, + "season": 2161, + "war": 2162, + "states": 2163, + "including": 2164, + "took": 2165, + "life": 2166, + "north": 2167, + "same": 2168, + "each": 2169, + "called": 2170, + "name": 2171, + "much": 2172, + "place": 2173, + "however": 2174, + "go": 2175, + "four": 2176, + "group": 2177, + "another": 2178, + "found": 2179, + "won": 2180, + "area": 2181, + "here": 2182, + "going": 2183, + "10": 2184, + "away": 2185, + "series": 2186, + "left": 2187, + "home": 2188, + "music": 2189, + "best": 2190, + "make": 2191, + "hand": 2192, + "number": 2193, + "company": 2194, + "several": 2195, + "never": 2196, + "last": 2197, + "john": 2198, + "000": 2199, + "very": 2200, + "album": 2201, + "take": 2202, + "end": 2203, + "good": 2204, + "too": 2205, + "following": 2206, + "released": 2207, + "game": 2208, + "played": 2209, + "little": 2210, + "began": 2211, + "district": 2212, + "##m": 2213, + "old": 2214, + "want": 2215, + "those": 2216, + "side": 2217, + "held": 2218, + "own": 2219, + "early": 2220, + "county": 2221, + "ll": 2222, + "league": 2223, + "use": 2224, + "west": 2225, + "##u": 2226, + "face": 2227, + "think": 2228, + "##es": 2229, + "2010": 2230, + "government": 2231, + "##h": 2232, + "march": 2233, + "came": 2234, + "small": 2235, + "general": 2236, + "town": 2237, + "june": 2238, + "##on": 2239, + "line": 2240, + "based": 2241, + "something": 2242, + "##k": 2243, + "september": 2244, + "thought": 2245, + "looked": 2246, + "along": 2247, + "international": 2248, + "2011": 2249, + "air": 2250, + "july": 2251, + "club": 2252, + "went": 2253, + "january": 2254, + "october": 2255, + "our": 2256, + "august": 2257, + "april": 2258, + "york": 2259, + "12": 2260, + "few": 2261, + "2012": 2262, + "2008": 2263, + "east": 2264, + "show": 2265, + "member": 2266, + "college": 2267, + "2009": 2268, + "father": 2269, + "public": 2270, + "##us": 2271, + "come": 2272, + "men": 2273, + "five": 2274, + "set": 2275, + "station": 2276, + "church": 2277, + "##c": 2278, + "next": 2279, + "former": 2280, + "november": 2281, + "room": 2282, + "party": 2283, + "located": 2284, + "december": 2285, + "2013": 2286, + "age": 2287, + "got": 2288, + "2007": 2289, + "##g": 2290, + "system": 2291, + "let": 2292, + "love": 2293, + "2006": 2294, + "though": 2295, + "every": 2296, + "2014": 2297, + "look": 2298, + "song": 2299, + "water": 2300, + "century": 2301, + "without": 2302, + "body": 2303, + "black": 2304, + "night": 2305, + "within": 2306, + "great": 2307, + "women": 2308, + "single": 2309, + "ve": 2310, + "building": 2311, + "large": 2312, + "population": 2313, + "river": 2314, + "named": 2315, + "band": 2316, + "white": 2317, + "started": 2318, + "##an": 2319, + "once": 2320, + "15": 2321, + "20": 2322, + "should": 2323, + "18": 2324, + "2015": 2325, + "service": 2326, + "top": 2327, + "built": 2328, + "british": 2329, + "open": 2330, + "death": 2331, + "king": 2332, + "moved": 2333, + "local": 2334, + "times": 2335, + "children": 2336, + "february": 2337, + "book": 2338, + "why": 2339, + "11": 2340, + "door": 2341, + "need": 2342, + "president": 2343, + "order": 2344, + "final": 2345, + "road": 2346, + "wasn": 2347, + "although": 2348, + "due": 2349, + "major": 2350, + "died": 2351, + "village": 2352, + "third": 2353, + "knew": 2354, + "2016": 2355, + "asked": 2356, + "turned": 2357, + "st": 2358, + "wanted": 2359, + "say": 2360, + "##p": 2361, + "together": 2362, + "received": 2363, + "main": 2364, + "son": 2365, + "served": 2366, + "different": 2367, + "##en": 2368, + "behind": 2369, + "himself": 2370, + "felt": 2371, + "members": 2372, + "power": 2373, + "football": 2374, + "law": 2375, + "voice": 2376, + "play": 2377, + "##in": 2378, + "near": 2379, + "park": 2380, + "history": 2381, + "30": 2382, + "having": 2383, + "2005": 2384, + "16": 2385, + "##man": 2386, + "saw": 2387, + "mother": 2388, + "##al": 2389, + "army": 2390, + "point": 2391, + "front": 2392, + "help": 2393, + "english": 2394, + "street": 2395, + "art": 2396, + "late": 2397, + "hands": 2398, + "games": 2399, + "award": 2400, + "##ia": 2401, + "young": 2402, + "14": 2403, + "put": 2404, + "published": 2405, + "country": 2406, + "division": 2407, + "across": 2408, + "told": 2409, + "13": 2410, + "often": 2411, + "ever": 2412, + "french": 2413, + "london": 2414, + "center": 2415, + "six": 2416, + "red": 2417, + "2017": 2418, + "led": 2419, + "days": 2420, + "include": 2421, + "light": 2422, + "25": 2423, + "find": 2424, + "tell": 2425, + "among": 2426, + "species": 2427, + "really": 2428, + "according": 2429, + "central": 2430, + "half": 2431, + "2004": 2432, + "form": 2433, + "original": 2434, + "gave": 2435, + "office": 2436, + "making": 2437, + "enough": 2438, + "lost": 2439, + "full": 2440, + "opened": 2441, + "must": 2442, + "included": 2443, + "live": 2444, + "given": 2445, + "german": 2446, + "player": 2447, + "run": 2448, + "business": 2449, + "woman": 2450, + "community": 2451, + "cup": 2452, + "might": 2453, + "million": 2454, + "land": 2455, + "2000": 2456, + "court": 2457, + "development": 2458, + "17": 2459, + "short": 2460, + "round": 2461, + "ii": 2462, + "km": 2463, + "seen": 2464, + "class": 2465, + "story": 2466, + "always": 2467, + "become": 2468, + "sure": 2469, + "research": 2470, + "almost": 2471, + "director": 2472, + "council": 2473, + "la": 2474, + "##2": 2475, + "career": 2476, + "things": 2477, + "using": 2478, + "island": 2479, + "##z": 2480, + "couldn": 2481, + "car": 2482, + "##is": 2483, + "24": 2484, + "close": 2485, + "force": 2486, + "##1": 2487, + "better": 2488, + "free": 2489, + "support": 2490, + "control": 2491, + "field": 2492, + "students": 2493, + "2003": 2494, + "education": 2495, + "married": 2496, + "##b": 2497, + "nothing": 2498, + "worked": 2499, + "others": 2500, + "record": 2501, + "big": 2502, + "inside": 2503, + "level": 2504, + "anything": 2505, + "continued": 2506, + "give": 2507, + "james": 2508, + "##3": 2509, + "military": 2510, + "established": 2511, + "non": 2512, + "returned": 2513, + "feel": 2514, + "does": 2515, + "title": 2516, + "written": 2517, + "thing": 2518, + "feet": 2519, + "william": 2520, + "far": 2521, + "co": 2522, + "association": 2523, + "hard": 2524, + "already": 2525, + "2002": 2526, + "##ra": 2527, + "championship": 2528, + "human": 2529, + "western": 2530, + "100": 2531, + "##na": 2532, + "department": 2533, + "hall": 2534, + "role": 2535, + "various": 2536, + "production": 2537, + "21": 2538, + "19": 2539, + "heart": 2540, + "2001": 2541, + "living": 2542, + "fire": 2543, + "version": 2544, + "##ers": 2545, + "##f": 2546, + "television": 2547, + "royal": 2548, + "##4": 2549, + "produced": 2550, + "working": 2551, + "act": 2552, + "case": 2553, + "society": 2554, + "region": 2555, + "present": 2556, + "radio": 2557, + "period": 2558, + "looking": 2559, + "least": 2560, + "total": 2561, + "keep": 2562, + "england": 2563, + "wife": 2564, + "program": 2565, + "per": 2566, + "brother": 2567, + "mind": 2568, + "special": 2569, + "22": 2570, + "##le": 2571, + "am": 2572, + "works": 2573, + "soon": 2574, + "##6": 2575, + "political": 2576, + "george": 2577, + "services": 2578, + "taken": 2579, + "created": 2580, + "##7": 2581, + "further": 2582, + "able": 2583, + "reached": 2584, + "david": 2585, + "union": 2586, + "joined": 2587, + "upon": 2588, + "done": 2589, + "important": 2590, + "social": 2591, + "information": 2592, + "either": 2593, + "##ic": 2594, + "##x": 2595, + "appeared": 2596, + "position": 2597, + "ground": 2598, + "lead": 2599, + "rock": 2600, + "dark": 2601, + "election": 2602, + "23": 2603, + "board": 2604, + "france": 2605, + "hair": 2606, + "course": 2607, + "arms": 2608, + "site": 2609, + "police": 2610, + "girl": 2611, + "instead": 2612, + "real": 2613, + "sound": 2614, + "##v": 2615, + "words": 2616, + "moment": 2617, + "##te": 2618, + "someone": 2619, + "##8": 2620, + "summer": 2621, + "project": 2622, + "announced": 2623, + "san": 2624, + "less": 2625, + "wrote": 2626, + "past": 2627, + "followed": 2628, + "##5": 2629, + "blue": 2630, + "founded": 2631, + "al": 2632, + "finally": 2633, + "india": 2634, + "taking": 2635, + "records": 2636, + "america": 2637, + "##ne": 2638, + "1999": 2639, + "design": 2640, + "considered": 2641, + "northern": 2642, + "god": 2643, + "stop": 2644, + "battle": 2645, + "toward": 2646, + "european": 2647, + "outside": 2648, + "described": 2649, + "track": 2650, + "today": 2651, + "playing": 2652, + "language": 2653, + "28": 2654, + "call": 2655, + "26": 2656, + "heard": 2657, + "professional": 2658, + "low": 2659, + "australia": 2660, + "miles": 2661, + "california": 2662, + "win": 2663, + "yet": 2664, + "green": 2665, + "##ie": 2666, + "trying": 2667, + "blood": 2668, + "##ton": 2669, + "southern": 2670, + "science": 2671, + "maybe": 2672, + "everything": 2673, + "match": 2674, + "square": 2675, + "27": 2676, + "mouth": 2677, + "video": 2678, + "race": 2679, + "recorded": 2680, + "leave": 2681, + "above": 2682, + "##9": 2683, + "daughter": 2684, + "points": 2685, + "space": 2686, + "1998": 2687, + "museum": 2688, + "change": 2689, + "middle": 2690, + "common": 2691, + "##0": 2692, + "move": 2693, + "tv": 2694, + "post": 2695, + "##ta": 2696, + "lake": 2697, + "seven": 2698, + "tried": 2699, + "elected": 2700, + "closed": 2701, + "ten": 2702, + "paul": 2703, + "minister": 2704, + "##th": 2705, + "months": 2706, + "start": 2707, + "chief": 2708, + "return": 2709, + "canada": 2710, + "person": 2711, + "sea": 2712, + "release": 2713, + "similar": 2714, + "modern": 2715, + "brought": 2716, + "rest": 2717, + "hit": 2718, + "formed": 2719, + "mr": 2720, + "##la": 2721, + "1997": 2722, + "floor": 2723, + "event": 2724, + "doing": 2725, + "thomas": 2726, + "1996": 2727, + "robert": 2728, + "care": 2729, + "killed": 2730, + "training": 2731, + "star": 2732, + "week": 2733, + "needed": 2734, + "turn": 2735, + "finished": 2736, + "railway": 2737, + "rather": 2738, + "news": 2739, + "health": 2740, + "sent": 2741, + "example": 2742, + "ran": 2743, + "term": 2744, + "michael": 2745, + "coming": 2746, + "currently": 2747, + "yes": 2748, + "forces": 2749, + "despite": 2750, + "gold": 2751, + "areas": 2752, + "50": 2753, + "stage": 2754, + "fact": 2755, + "29": 2756, + "dead": 2757, + "says": 2758, + "popular": 2759, + "2018": 2760, + "originally": 2761, + "germany": 2762, + "probably": 2763, + "developed": 2764, + "result": 2765, + "pulled": 2766, + "friend": 2767, + "stood": 2768, + "money": 2769, + "running": 2770, + "mi": 2771, + "signed": 2772, + "word": 2773, + "songs": 2774, + "child": 2775, + "eventually": 2776, + "met": 2777, + "tour": 2778, + "average": 2779, + "teams": 2780, + "minutes": 2781, + "festival": 2782, + "current": 2783, + "deep": 2784, + "kind": 2785, + "1995": 2786, + "decided": 2787, + "usually": 2788, + "eastern": 2789, + "seemed": 2790, + "##ness": 2791, + "episode": 2792, + "bed": 2793, + "added": 2794, + "table": 2795, + "indian": 2796, + "private": 2797, + "charles": 2798, + "route": 2799, + "available": 2800, + "idea": 2801, + "throughout": 2802, + "centre": 2803, + "addition": 2804, + "appointed": 2805, + "style": 2806, + "1994": 2807, + "books": 2808, + "eight": 2809, + "construction": 2810, + "press": 2811, + "mean": 2812, + "wall": 2813, + "friends": 2814, + "remained": 2815, + "schools": 2816, + "study": 2817, + "##ch": 2818, + "##um": 2819, + "institute": 2820, + "oh": 2821, + "chinese": 2822, + "sometimes": 2823, + "events": 2824, + "possible": 2825, + "1992": 2826, + "australian": 2827, + "type": 2828, + "brown": 2829, + "forward": 2830, + "talk": 2831, + "process": 2832, + "food": 2833, + "debut": 2834, + "seat": 2835, + "performance": 2836, + "committee": 2837, + "features": 2838, + "character": 2839, + "arts": 2840, + "herself": 2841, + "else": 2842, + "lot": 2843, + "strong": 2844, + "russian": 2845, + "range": 2846, + "hours": 2847, + "peter": 2848, + "arm": 2849, + "##da": 2850, + "morning": 2851, + "dr": 2852, + "sold": 2853, + "##ry": 2854, + "quickly": 2855, + "directed": 2856, + "1993": 2857, + "guitar": 2858, + "china": 2859, + "##w": 2860, + "31": 2861, + "list": 2862, + "##ma": 2863, + "performed": 2864, + "media": 2865, + "uk": 2866, + "players": 2867, + "smile": 2868, + "##rs": 2869, + "myself": 2870, + "40": 2871, + "placed": 2872, + "coach": 2873, + "province": 2874, + "towards": 2875, + "wouldn": 2876, + "leading": 2877, + "whole": 2878, + "boy": 2879, + "official": 2880, + "designed": 2881, + "grand": 2882, + "census": 2883, + "##el": 2884, + "europe": 2885, + "attack": 2886, + "japanese": 2887, + "henry": 2888, + "1991": 2889, + "##re": 2890, + "##os": 2891, + "cross": 2892, + "getting": 2893, + "alone": 2894, + "action": 2895, + "lower": 2896, + "network": 2897, + "wide": 2898, + "washington": 2899, + "japan": 2900, + "1990": 2901, + "hospital": 2902, + "believe": 2903, + "changed": 2904, + "sister": 2905, + "##ar": 2906, + "hold": 2907, + "gone": 2908, + "sir": 2909, + "hadn": 2910, + "ship": 2911, + "##ka": 2912, + "studies": 2913, + "academy": 2914, + "shot": 2915, + "rights": 2916, + "below": 2917, + "base": 2918, + "bad": 2919, + "involved": 2920, + "kept": 2921, + "largest": 2922, + "##ist": 2923, + "bank": 2924, + "future": 2925, + "especially": 2926, + "beginning": 2927, + "mark": 2928, + "movement": 2929, + "section": 2930, + "female": 2931, + "magazine": 2932, + "plan": 2933, + "professor": 2934, + "lord": 2935, + "longer": 2936, + "##ian": 2937, + "sat": 2938, + "walked": 2939, + "hill": 2940, + "actually": 2941, + "civil": 2942, + "energy": 2943, + "model": 2944, + "families": 2945, + "size": 2946, + "thus": 2947, + "aircraft": 2948, + "completed": 2949, + "includes": 2950, + "data": 2951, + "captain": 2952, + "##or": 2953, + "fight": 2954, + "vocals": 2955, + "featured": 2956, + "richard": 2957, + "bridge": 2958, + "fourth": 2959, + "1989": 2960, + "officer": 2961, + "stone": 2962, + "hear": 2963, + "##ism": 2964, + "means": 2965, + "medical": 2966, + "groups": 2967, + "management": 2968, + "self": 2969, + "lips": 2970, + "competition": 2971, + "entire": 2972, + "lived": 2973, + "technology": 2974, + "leaving": 2975, + "federal": 2976, + "tournament": 2977, + "bit": 2978, + "passed": 2979, + "hot": 2980, + "independent": 2981, + "awards": 2982, + "kingdom": 2983, + "mary": 2984, + "spent": 2985, + "fine": 2986, + "doesn": 2987, + "reported": 2988, + "##ling": 2989, + "jack": 2990, + "fall": 2991, + "raised": 2992, + "itself": 2993, + "stay": 2994, + "true": 2995, + "studio": 2996, + "1988": 2997, + "sports": 2998, + "replaced": 2999, + "paris": 3000, + "systems": 3001, + "saint": 3002, + "leader": 3003, + "theatre": 3004, + "whose": 3005, + "market": 3006, + "capital": 3007, + "parents": 3008, + "spanish": 3009, + "canadian": 3010, + "earth": 3011, + "##ity": 3012, + "cut": 3013, + "degree": 3014, + "writing": 3015, + "bay": 3016, + "christian": 3017, + "awarded": 3018, + "natural": 3019, + "higher": 3020, + "bill": 3021, + "##as": 3022, + "coast": 3023, + "provided": 3024, + "previous": 3025, + "senior": 3026, + "ft": 3027, + "valley": 3028, + "organization": 3029, + "stopped": 3030, + "onto": 3031, + "countries": 3032, + "parts": 3033, + "conference": 3034, + "queen": 3035, + "security": 3036, + "interest": 3037, + "saying": 3038, + "allowed": 3039, + "master": 3040, + "earlier": 3041, + "phone": 3042, + "matter": 3043, + "smith": 3044, + "winning": 3045, + "try": 3046, + "happened": 3047, + "moving": 3048, + "campaign": 3049, + "los": 3050, + "##ley": 3051, + "breath": 3052, + "nearly": 3053, + "mid": 3054, + "1987": 3055, + "certain": 3056, + "girls": 3057, + "date": 3058, + "italian": 3059, + "african": 3060, + "standing": 3061, + "fell": 3062, + "artist": 3063, + "##ted": 3064, + "shows": 3065, + "deal": 3066, + "mine": 3067, + "industry": 3068, + "1986": 3069, + "##ng": 3070, + "everyone": 3071, + "republic": 3072, + "provide": 3073, + "collection": 3074, + "library": 3075, + "student": 3076, + "##ville": 3077, + "primary": 3078, + "owned": 3079, + "older": 3080, + "via": 3081, + "heavy": 3082, + "1st": 3083, + "makes": 3084, + "##able": 3085, + "attention": 3086, + "anyone": 3087, + "africa": 3088, + "##ri": 3089, + "stated": 3090, + "length": 3091, + "ended": 3092, + "fingers": 3093, + "command": 3094, + "staff": 3095, + "skin": 3096, + "foreign": 3097, + "opening": 3098, + "governor": 3099, + "okay": 3100, + "medal": 3101, + "kill": 3102, + "sun": 3103, + "cover": 3104, + "job": 3105, + "1985": 3106, + "introduced": 3107, + "chest": 3108, + "hell": 3109, + "feeling": 3110, + "##ies": 3111, + "success": 3112, + "meet": 3113, + "reason": 3114, + "standard": 3115, + "meeting": 3116, + "novel": 3117, + "1984": 3118, + "trade": 3119, + "source": 3120, + "buildings": 3121, + "##land": 3122, + "rose": 3123, + "guy": 3124, + "goal": 3125, + "##ur": 3126, + "chapter": 3127, + "native": 3128, + "husband": 3129, + "previously": 3130, + "unit": 3131, + "limited": 3132, + "entered": 3133, + "weeks": 3134, + "producer": 3135, + "operations": 3136, + "mountain": 3137, + "takes": 3138, + "covered": 3139, + "forced": 3140, + "related": 3141, + "roman": 3142, + "complete": 3143, + "successful": 3144, + "key": 3145, + "texas": 3146, + "cold": 3147, + "##ya": 3148, + "channel": 3149, + "1980": 3150, + "traditional": 3151, + "films": 3152, + "dance": 3153, + "clear": 3154, + "approximately": 3155, + "500": 3156, + "nine": 3157, + "van": 3158, + "prince": 3159, + "question": 3160, + "active": 3161, + "tracks": 3162, + "ireland": 3163, + "regional": 3164, + "silver": 3165, + "author": 3166, + "personal": 3167, + "sense": 3168, + "operation": 3169, + "##ine": 3170, + "economic": 3171, + "1983": 3172, + "holding": 3173, + "twenty": 3174, + "isbn": 3175, + "additional": 3176, + "speed": 3177, + "hour": 3178, + "edition": 3179, + "regular": 3180, + "historic": 3181, + "places": 3182, + "whom": 3183, + "shook": 3184, + "movie": 3185, + "km²": 3186, + "secretary": 3187, + "prior": 3188, + "report": 3189, + "chicago": 3190, + "read": 3191, + "foundation": 3192, + "view": 3193, + "engine": 3194, + "scored": 3195, + "1982": 3196, + "units": 3197, + "ask": 3198, + "airport": 3199, + "property": 3200, + "ready": 3201, + "immediately": 3202, + "lady": 3203, + "month": 3204, + "listed": 3205, + "contract": 3206, + "##de": 3207, + "manager": 3208, + "themselves": 3209, + "lines": 3210, + "##ki": 3211, + "navy": 3212, + "writer": 3213, + "meant": 3214, + "##ts": 3215, + "runs": 3216, + "##ro": 3217, + "practice": 3218, + "championships": 3219, + "singer": 3220, + "glass": 3221, + "commission": 3222, + "required": 3223, + "forest": 3224, + "starting": 3225, + "culture": 3226, + "generally": 3227, + "giving": 3228, + "access": 3229, + "attended": 3230, + "test": 3231, + "couple": 3232, + "stand": 3233, + "catholic": 3234, + "martin": 3235, + "caught": 3236, + "executive": 3237, + "##less": 3238, + "eye": 3239, + "##ey": 3240, + "thinking": 3241, + "chair": 3242, + "quite": 3243, + "shoulder": 3244, + "1979": 3245, + "hope": 3246, + "decision": 3247, + "plays": 3248, + "defeated": 3249, + "municipality": 3250, + "whether": 3251, + "structure": 3252, + "offered": 3253, + "slowly": 3254, + "pain": 3255, + "ice": 3256, + "direction": 3257, + "##ion": 3258, + "paper": 3259, + "mission": 3260, + "1981": 3261, + "mostly": 3262, + "200": 3263, + "noted": 3264, + "individual": 3265, + "managed": 3266, + "nature": 3267, + "lives": 3268, + "plant": 3269, + "##ha": 3270, + "helped": 3271, + "except": 3272, + "studied": 3273, + "computer": 3274, + "figure": 3275, + "relationship": 3276, + "issue": 3277, + "significant": 3278, + "loss": 3279, + "die": 3280, + "smiled": 3281, + "gun": 3282, + "ago": 3283, + "highest": 3284, + "1972": 3285, + "##am": 3286, + "male": 3287, + "bring": 3288, + "goals": 3289, + "mexico": 3290, + "problem": 3291, + "distance": 3292, + "commercial": 3293, + "completely": 3294, + "location": 3295, + "annual": 3296, + "famous": 3297, + "drive": 3298, + "1976": 3299, + "neck": 3300, + "1978": 3301, + "surface": 3302, + "caused": 3303, + "italy": 3304, + "understand": 3305, + "greek": 3306, + "highway": 3307, + "wrong": 3308, + "hotel": 3309, + "comes": 3310, + "appearance": 3311, + "joseph": 3312, + "double": 3313, + "issues": 3314, + "musical": 3315, + "companies": 3316, + "castle": 3317, + "income": 3318, + "review": 3319, + "assembly": 3320, + "bass": 3321, + "initially": 3322, + "parliament": 3323, + "artists": 3324, + "experience": 3325, + "1974": 3326, + "particular": 3327, + "walk": 3328, + "foot": 3329, + "engineering": 3330, + "talking": 3331, + "window": 3332, + "dropped": 3333, + "##ter": 3334, + "miss": 3335, + "baby": 3336, + "boys": 3337, + "break": 3338, + "1975": 3339, + "stars": 3340, + "edge": 3341, + "remember": 3342, + "policy": 3343, + "carried": 3344, + "train": 3345, + "stadium": 3346, + "bar": 3347, + "sex": 3348, + "angeles": 3349, + "evidence": 3350, + "##ge": 3351, + "becoming": 3352, + "assistant": 3353, + "soviet": 3354, + "1977": 3355, + "upper": 3356, + "step": 3357, + "wing": 3358, + "1970": 3359, + "youth": 3360, + "financial": 3361, + "reach": 3362, + "##ll": 3363, + "actor": 3364, + "numerous": 3365, + "##se": 3366, + "##st": 3367, + "nodded": 3368, + "arrived": 3369, + "##ation": 3370, + "minute": 3371, + "##nt": 3372, + "believed": 3373, + "sorry": 3374, + "complex": 3375, + "beautiful": 3376, + "victory": 3377, + "associated": 3378, + "temple": 3379, + "1968": 3380, + "1973": 3381, + "chance": 3382, + "perhaps": 3383, + "metal": 3384, + "##son": 3385, + "1945": 3386, + "bishop": 3387, + "##et": 3388, + "lee": 3389, + "launched": 3390, + "particularly": 3391, + "tree": 3392, + "le": 3393, + "retired": 3394, + "subject": 3395, + "prize": 3396, + "contains": 3397, + "yeah": 3398, + "theory": 3399, + "empire": 3400, + "##ce": 3401, + "suddenly": 3402, + "waiting": 3403, + "trust": 3404, + "recording": 3405, + "##to": 3406, + "happy": 3407, + "terms": 3408, + "camp": 3409, + "champion": 3410, + "1971": 3411, + "religious": 3412, + "pass": 3413, + "zealand": 3414, + "names": 3415, + "2nd": 3416, + "port": 3417, + "ancient": 3418, + "tom": 3419, + "corner": 3420, + "represented": 3421, + "watch": 3422, + "legal": 3423, + "anti": 3424, + "justice": 3425, + "cause": 3426, + "watched": 3427, + "brothers": 3428, + "45": 3429, + "material": 3430, + "changes": 3431, + "simply": 3432, + "response": 3433, + "louis": 3434, + "fast": 3435, + "##ting": 3436, + "answer": 3437, + "60": 3438, + "historical": 3439, + "1969": 3440, + "stories": 3441, + "straight": 3442, + "create": 3443, + "feature": 3444, + "increased": 3445, + "rate": 3446, + "administration": 3447, + "virginia": 3448, + "el": 3449, + "activities": 3450, + "cultural": 3451, + "overall": 3452, + "winner": 3453, + "programs": 3454, + "basketball": 3455, + "legs": 3456, + "guard": 3457, + "beyond": 3458, + "cast": 3459, + "doctor": 3460, + "mm": 3461, + "flight": 3462, + "results": 3463, + "remains": 3464, + "cost": 3465, + "effect": 3466, + "winter": 3467, + "##ble": 3468, + "larger": 3469, + "islands": 3470, + "problems": 3471, + "chairman": 3472, + "grew": 3473, + "commander": 3474, + "isn": 3475, + "1967": 3476, + "pay": 3477, + "failed": 3478, + "selected": 3479, + "hurt": 3480, + "fort": 3481, + "box": 3482, + "regiment": 3483, + "majority": 3484, + "journal": 3485, + "35": 3486, + "edward": 3487, + "plans": 3488, + "##ke": 3489, + "##ni": 3490, + "shown": 3491, + "pretty": 3492, + "irish": 3493, + "characters": 3494, + "directly": 3495, + "scene": 3496, + "likely": 3497, + "operated": 3498, + "allow": 3499, + "spring": 3500, + "##j": 3501, + "junior": 3502, + "matches": 3503, + "looks": 3504, + "mike": 3505, + "houses": 3506, + "fellow": 3507, + "##tion": 3508, + "beach": 3509, + "marriage": 3510, + "##ham": 3511, + "##ive": 3512, + "rules": 3513, + "oil": 3514, + "65": 3515, + "florida": 3516, + "expected": 3517, + "nearby": 3518, + "congress": 3519, + "sam": 3520, + "peace": 3521, + "recent": 3522, + "iii": 3523, + "wait": 3524, + "subsequently": 3525, + "cell": 3526, + "##do": 3527, + "variety": 3528, + "serving": 3529, + "agreed": 3530, + "please": 3531, + "poor": 3532, + "joe": 3533, + "pacific": 3534, + "attempt": 3535, + "wood": 3536, + "democratic": 3537, + "piece": 3538, + "prime": 3539, + "##ca": 3540, + "rural": 3541, + "mile": 3542, + "touch": 3543, + "appears": 3544, + "township": 3545, + "1964": 3546, + "1966": 3547, + "soldiers": 3548, + "##men": 3549, + "##ized": 3550, + "1965": 3551, + "pennsylvania": 3552, + "closer": 3553, + "fighting": 3554, + "claimed": 3555, + "score": 3556, + "jones": 3557, + "physical": 3558, + "editor": 3559, + "##ous": 3560, + "filled": 3561, + "genus": 3562, + "specific": 3563, + "sitting": 3564, + "super": 3565, + "mom": 3566, + "##va": 3567, + "therefore": 3568, + "supported": 3569, + "status": 3570, + "fear": 3571, + "cases": 3572, + "store": 3573, + "meaning": 3574, + "wales": 3575, + "minor": 3576, + "spain": 3577, + "tower": 3578, + "focus": 3579, + "vice": 3580, + "frank": 3581, + "follow": 3582, + "parish": 3583, + "separate": 3584, + "golden": 3585, + "horse": 3586, + "fifth": 3587, + "remaining": 3588, + "branch": 3589, + "32": 3590, + "presented": 3591, + "stared": 3592, + "##id": 3593, + "uses": 3594, + "secret": 3595, + "forms": 3596, + "##co": 3597, + "baseball": 3598, + "exactly": 3599, + "##ck": 3600, + "choice": 3601, + "note": 3602, + "discovered": 3603, + "travel": 3604, + "composed": 3605, + "truth": 3606, + "russia": 3607, + "ball": 3608, + "color": 3609, + "kiss": 3610, + "dad": 3611, + "wind": 3612, + "continue": 3613, + "ring": 3614, + "referred": 3615, + "numbers": 3616, + "digital": 3617, + "greater": 3618, + "##ns": 3619, + "metres": 3620, + "slightly": 3621, + "direct": 3622, + "increase": 3623, + "1960": 3624, + "responsible": 3625, + "crew": 3626, + "rule": 3627, + "trees": 3628, + "troops": 3629, + "##no": 3630, + "broke": 3631, + "goes": 3632, + "individuals": 3633, + "hundred": 3634, + "weight": 3635, + "creek": 3636, + "sleep": 3637, + "memory": 3638, + "defense": 3639, + "provides": 3640, + "ordered": 3641, + "code": 3642, + "value": 3643, + "jewish": 3644, + "windows": 3645, + "1944": 3646, + "safe": 3647, + "judge": 3648, + "whatever": 3649, + "corps": 3650, + "realized": 3651, + "growing": 3652, + "pre": 3653, + "##ga": 3654, + "cities": 3655, + "alexander": 3656, + "gaze": 3657, + "lies": 3658, + "spread": 3659, + "scott": 3660, + "letter": 3661, + "showed": 3662, + "situation": 3663, + "mayor": 3664, + "transport": 3665, + "watching": 3666, + "workers": 3667, + "extended": 3668, + "##li": 3669, + "expression": 3670, + "normal": 3671, + "##ment": 3672, + "chart": 3673, + "multiple": 3674, + "border": 3675, + "##ba": 3676, + "host": 3677, + "##ner": 3678, + "daily": 3679, + "mrs": 3680, + "walls": 3681, + "piano": 3682, + "##ko": 3683, + "heat": 3684, + "cannot": 3685, + "##ate": 3686, + "earned": 3687, + "products": 3688, + "drama": 3689, + "era": 3690, + "authority": 3691, + "seasons": 3692, + "join": 3693, + "grade": 3694, + "##io": 3695, + "sign": 3696, + "difficult": 3697, + "machine": 3698, + "1963": 3699, + "territory": 3700, + "mainly": 3701, + "##wood": 3702, + "stations": 3703, + "squadron": 3704, + "1962": 3705, + "stepped": 3706, + "iron": 3707, + "19th": 3708, + "##led": 3709, + "serve": 3710, + "appear": 3711, + "sky": 3712, + "speak": 3713, + "broken": 3714, + "charge": 3715, + "knowledge": 3716, + "kilometres": 3717, + "removed": 3718, + "ships": 3719, + "article": 3720, + "campus": 3721, + "simple": 3722, + "##ty": 3723, + "pushed": 3724, + "britain": 3725, + "##ve": 3726, + "leaves": 3727, + "recently": 3728, + "cd": 3729, + "soft": 3730, + "boston": 3731, + "latter": 3732, + "easy": 3733, + "acquired": 3734, + "poland": 3735, + "##sa": 3736, + "quality": 3737, + "officers": 3738, + "presence": 3739, + "planned": 3740, + "nations": 3741, + "mass": 3742, + "broadcast": 3743, + "jean": 3744, + "share": 3745, + "image": 3746, + "influence": 3747, + "wild": 3748, + "offer": 3749, + "emperor": 3750, + "electric": 3751, + "reading": 3752, + "headed": 3753, + "ability": 3754, + "promoted": 3755, + "yellow": 3756, + "ministry": 3757, + "1942": 3758, + "throat": 3759, + "smaller": 3760, + "politician": 3761, + "##by": 3762, + "latin": 3763, + "spoke": 3764, + "cars": 3765, + "williams": 3766, + "males": 3767, + "lack": 3768, + "pop": 3769, + "80": 3770, + "##ier": 3771, + "acting": 3772, + "seeing": 3773, + "consists": 3774, + "##ti": 3775, + "estate": 3776, + "1961": 3777, + "pressure": 3778, + "johnson": 3779, + "newspaper": 3780, + "jr": 3781, + "chris": 3782, + "olympics": 3783, + "online": 3784, + "conditions": 3785, + "beat": 3786, + "elements": 3787, + "walking": 3788, + "vote": 3789, + "##field": 3790, + "needs": 3791, + "carolina": 3792, + "text": 3793, + "featuring": 3794, + "global": 3795, + "block": 3796, + "shirt": 3797, + "levels": 3798, + "francisco": 3799, + "purpose": 3800, + "females": 3801, + "et": 3802, + "dutch": 3803, + "duke": 3804, + "ahead": 3805, + "gas": 3806, + "twice": 3807, + "safety": 3808, + "serious": 3809, + "turning": 3810, + "highly": 3811, + "lieutenant": 3812, + "firm": 3813, + "maria": 3814, + "amount": 3815, + "mixed": 3816, + "daniel": 3817, + "proposed": 3818, + "perfect": 3819, + "agreement": 3820, + "affairs": 3821, + "3rd": 3822, + "seconds": 3823, + "contemporary": 3824, + "paid": 3825, + "1943": 3826, + "prison": 3827, + "save": 3828, + "kitchen": 3829, + "label": 3830, + "administrative": 3831, + "intended": 3832, + "constructed": 3833, + "academic": 3834, + "nice": 3835, + "teacher": 3836, + "races": 3837, + "1956": 3838, + "formerly": 3839, + "corporation": 3840, + "ben": 3841, + "nation": 3842, + "issued": 3843, + "shut": 3844, + "1958": 3845, + "drums": 3846, + "housing": 3847, + "victoria": 3848, + "seems": 3849, + "opera": 3850, + "1959": 3851, + "graduated": 3852, + "function": 3853, + "von": 3854, + "mentioned": 3855, + "picked": 3856, + "build": 3857, + "recognized": 3858, + "shortly": 3859, + "protection": 3860, + "picture": 3861, + "notable": 3862, + "exchange": 3863, + "elections": 3864, + "1980s": 3865, + "loved": 3866, + "percent": 3867, + "racing": 3868, + "fish": 3869, + "elizabeth": 3870, + "garden": 3871, + "volume": 3872, + "hockey": 3873, + "1941": 3874, + "beside": 3875, + "settled": 3876, + "##ford": 3877, + "1940": 3878, + "competed": 3879, + "replied": 3880, + "drew": 3881, + "1948": 3882, + "actress": 3883, + "marine": 3884, + "scotland": 3885, + "steel": 3886, + "glanced": 3887, + "farm": 3888, + "steve": 3889, + "1957": 3890, + "risk": 3891, + "tonight": 3892, + "positive": 3893, + "magic": 3894, + "singles": 3895, + "effects": 3896, + "gray": 3897, + "screen": 3898, + "dog": 3899, + "##ja": 3900, + "residents": 3901, + "bus": 3902, + "sides": 3903, + "none": 3904, + "secondary": 3905, + "literature": 3906, + "polish": 3907, + "destroyed": 3908, + "flying": 3909, + "founder": 3910, + "households": 3911, + "1939": 3912, + "lay": 3913, + "reserve": 3914, + "usa": 3915, + "gallery": 3916, + "##ler": 3917, + "1946": 3918, + "industrial": 3919, + "younger": 3920, + "approach": 3921, + "appearances": 3922, + "urban": 3923, + "ones": 3924, + "1950": 3925, + "finish": 3926, + "avenue": 3927, + "powerful": 3928, + "fully": 3929, + "growth": 3930, + "page": 3931, + "honor": 3932, + "jersey": 3933, + "projects": 3934, + "advanced": 3935, + "revealed": 3936, + "basic": 3937, + "90": 3938, + "infantry": 3939, + "pair": 3940, + "equipment": 3941, + "visit": 3942, + "33": 3943, + "evening": 3944, + "search": 3945, + "grant": 3946, + "effort": 3947, + "solo": 3948, + "treatment": 3949, + "buried": 3950, + "republican": 3951, + "primarily": 3952, + "bottom": 3953, + "owner": 3954, + "1970s": 3955, + "israel": 3956, + "gives": 3957, + "jim": 3958, + "dream": 3959, + "bob": 3960, + "remain": 3961, + "spot": 3962, + "70": 3963, + "notes": 3964, + "produce": 3965, + "champions": 3966, + "contact": 3967, + "ed": 3968, + "soul": 3969, + "accepted": 3970, + "ways": 3971, + "del": 3972, + "##ally": 3973, + "losing": 3974, + "split": 3975, + "price": 3976, + "capacity": 3977, + "basis": 3978, + "trial": 3979, + "questions": 3980, + "##ina": 3981, + "1955": 3982, + "20th": 3983, + "guess": 3984, + "officially": 3985, + "memorial": 3986, + "naval": 3987, + "initial": 3988, + "##ization": 3989, + "whispered": 3990, + "median": 3991, + "engineer": 3992, + "##ful": 3993, + "sydney": 3994, + "##go": 3995, + "columbia": 3996, + "strength": 3997, + "300": 3998, + "1952": 3999, + "tears": 4000, + "senate": 4001, + "00": 4002, + "card": 4003, + "asian": 4004, + "agent": 4005, + "1947": 4006, + "software": 4007, + "44": 4008, + "draw": 4009, + "warm": 4010, + "supposed": 4011, + "com": 4012, + "pro": 4013, + "##il": 4014, + "transferred": 4015, + "leaned": 4016, + "##at": 4017, + "candidate": 4018, + "escape": 4019, + "mountains": 4020, + "asia": 4021, + "potential": 4022, + "activity": 4023, + "entertainment": 4024, + "seem": 4025, + "traffic": 4026, + "jackson": 4027, + "murder": 4028, + "36": 4029, + "slow": 4030, + "product": 4031, + "orchestra": 4032, + "haven": 4033, + "agency": 4034, + "bbc": 4035, + "taught": 4036, + "website": 4037, + "comedy": 4038, + "unable": 4039, + "storm": 4040, + "planning": 4041, + "albums": 4042, + "rugby": 4043, + "environment": 4044, + "scientific": 4045, + "grabbed": 4046, + "protect": 4047, + "##hi": 4048, + "boat": 4049, + "typically": 4050, + "1954": 4051, + "1953": 4052, + "damage": 4053, + "principal": 4054, + "divided": 4055, + "dedicated": 4056, + "mount": 4057, + "ohio": 4058, + "##berg": 4059, + "pick": 4060, + "fought": 4061, + "driver": 4062, + "##der": 4063, + "empty": 4064, + "shoulders": 4065, + "sort": 4066, + "thank": 4067, + "berlin": 4068, + "prominent": 4069, + "account": 4070, + "freedom": 4071, + "necessary": 4072, + "efforts": 4073, + "alex": 4074, + "headquarters": 4075, + "follows": 4076, + "alongside": 4077, + "des": 4078, + "simon": 4079, + "andrew": 4080, + "suggested": 4081, + "operating": 4082, + "learning": 4083, + "steps": 4084, + "1949": 4085, + "sweet": 4086, + "technical": 4087, + "begin": 4088, + "easily": 4089, + "34": 4090, + "teeth": 4091, + "speaking": 4092, + "settlement": 4093, + "scale": 4094, + "##sh": 4095, + "renamed": 4096, + "ray": 4097, + "max": 4098, + "enemy": 4099, + "semi": 4100, + "joint": 4101, + "compared": 4102, + "##rd": 4103, + "scottish": 4104, + "leadership": 4105, + "analysis": 4106, + "offers": 4107, + "georgia": 4108, + "pieces": 4109, + "captured": 4110, + "animal": 4111, + "deputy": 4112, + "guest": 4113, + "organized": 4114, + "##lin": 4115, + "tony": 4116, + "combined": 4117, + "method": 4118, + "challenge": 4119, + "1960s": 4120, + "huge": 4121, + "wants": 4122, + "battalion": 4123, + "sons": 4124, + "rise": 4125, + "crime": 4126, + "types": 4127, + "facilities": 4128, + "telling": 4129, + "path": 4130, + "1951": 4131, + "platform": 4132, + "sit": 4133, + "1990s": 4134, + "##lo": 4135, + "tells": 4136, + "assigned": 4137, + "rich": 4138, + "pull": 4139, + "##ot": 4140, + "commonly": 4141, + "alive": 4142, + "##za": 4143, + "letters": 4144, + "concept": 4145, + "conducted": 4146, + "wearing": 4147, + "happen": 4148, + "bought": 4149, + "becomes": 4150, + "holy": 4151, + "gets": 4152, + "ocean": 4153, + "defeat": 4154, + "languages": 4155, + "purchased": 4156, + "coffee": 4157, + "occurred": 4158, + "titled": 4159, + "##q": 4160, + "declared": 4161, + "applied": 4162, + "sciences": 4163, + "concert": 4164, + "sounds": 4165, + "jazz": 4166, + "brain": 4167, + "##me": 4168, + "painting": 4169, + "fleet": 4170, + "tax": 4171, + "nick": 4172, + "##ius": 4173, + "michigan": 4174, + "count": 4175, + "animals": 4176, + "leaders": 4177, + "episodes": 4178, + "##line": 4179, + "content": 4180, + "##den": 4181, + "birth": 4182, + "##it": 4183, + "clubs": 4184, + "64": 4185, + "palace": 4186, + "critical": 4187, + "refused": 4188, + "fair": 4189, + "leg": 4190, + "laughed": 4191, + "returning": 4192, + "surrounding": 4193, + "participated": 4194, + "formation": 4195, + "lifted": 4196, + "pointed": 4197, + "connected": 4198, + "rome": 4199, + "medicine": 4200, + "laid": 4201, + "taylor": 4202, + "santa": 4203, + "powers": 4204, + "adam": 4205, + "tall": 4206, + "shared": 4207, + "focused": 4208, + "knowing": 4209, + "yards": 4210, + "entrance": 4211, + "falls": 4212, + "##wa": 4213, + "calling": 4214, + "##ad": 4215, + "sources": 4216, + "chosen": 4217, + "beneath": 4218, + "resources": 4219, + "yard": 4220, + "##ite": 4221, + "nominated": 4222, + "silence": 4223, + "zone": 4224, + "defined": 4225, + "##que": 4226, + "gained": 4227, + "thirty": 4228, + "38": 4229, + "bodies": 4230, + "moon": 4231, + "##ard": 4232, + "adopted": 4233, + "christmas": 4234, + "widely": 4235, + "register": 4236, + "apart": 4237, + "iran": 4238, + "premier": 4239, + "serves": 4240, + "du": 4241, + "unknown": 4242, + "parties": 4243, + "##les": 4244, + "generation": 4245, + "##ff": 4246, + "continues": 4247, + "quick": 4248, + "fields": 4249, + "brigade": 4250, + "quiet": 4251, + "teaching": 4252, + "clothes": 4253, + "impact": 4254, + "weapons": 4255, + "partner": 4256, + "flat": 4257, + "theater": 4258, + "supreme": 4259, + "1938": 4260, + "37": 4261, + "relations": 4262, + "##tor": 4263, + "plants": 4264, + "suffered": 4265, + "1936": 4266, + "wilson": 4267, + "kids": 4268, + "begins": 4269, + "##age": 4270, + "1918": 4271, + "seats": 4272, + "armed": 4273, + "internet": 4274, + "models": 4275, + "worth": 4276, + "laws": 4277, + "400": 4278, + "communities": 4279, + "classes": 4280, + "background": 4281, + "knows": 4282, + "thanks": 4283, + "quarter": 4284, + "reaching": 4285, + "humans": 4286, + "carry": 4287, + "killing": 4288, + "format": 4289, + "kong": 4290, + "hong": 4291, + "setting": 4292, + "75": 4293, + "architecture": 4294, + "disease": 4295, + "railroad": 4296, + "inc": 4297, + "possibly": 4298, + "wish": 4299, + "arthur": 4300, + "thoughts": 4301, + "harry": 4302, + "doors": 4303, + "density": 4304, + "##di": 4305, + "crowd": 4306, + "illinois": 4307, + "stomach": 4308, + "tone": 4309, + "unique": 4310, + "reports": 4311, + "anyway": 4312, + "##ir": 4313, + "liberal": 4314, + "der": 4315, + "vehicle": 4316, + "thick": 4317, + "dry": 4318, + "drug": 4319, + "faced": 4320, + "largely": 4321, + "facility": 4322, + "theme": 4323, + "holds": 4324, + "creation": 4325, + "strange": 4326, + "colonel": 4327, + "##mi": 4328, + "revolution": 4329, + "bell": 4330, + "politics": 4331, + "turns": 4332, + "silent": 4333, + "rail": 4334, + "relief": 4335, + "independence": 4336, + "combat": 4337, + "shape": 4338, + "write": 4339, + "determined": 4340, + "sales": 4341, + "learned": 4342, + "4th": 4343, + "finger": 4344, + "oxford": 4345, + "providing": 4346, + "1937": 4347, + "heritage": 4348, + "fiction": 4349, + "situated": 4350, + "designated": 4351, + "allowing": 4352, + "distribution": 4353, + "hosted": 4354, + "##est": 4355, + "sight": 4356, + "interview": 4357, + "estimated": 4358, + "reduced": 4359, + "##ria": 4360, + "toronto": 4361, + "footballer": 4362, + "keeping": 4363, + "guys": 4364, + "damn": 4365, + "claim": 4366, + "motion": 4367, + "sport": 4368, + "sixth": 4369, + "stayed": 4370, + "##ze": 4371, + "en": 4372, + "rear": 4373, + "receive": 4374, + "handed": 4375, + "twelve": 4376, + "dress": 4377, + "audience": 4378, + "granted": 4379, + "brazil": 4380, + "##well": 4381, + "spirit": 4382, + "##ated": 4383, + "noticed": 4384, + "etc": 4385, + "olympic": 4386, + "representative": 4387, + "eric": 4388, + "tight": 4389, + "trouble": 4390, + "reviews": 4391, + "drink": 4392, + "vampire": 4393, + "missing": 4394, + "roles": 4395, + "ranked": 4396, + "newly": 4397, + "household": 4398, + "finals": 4399, + "wave": 4400, + "critics": 4401, + "##ee": 4402, + "phase": 4403, + "massachusetts": 4404, + "pilot": 4405, + "unlike": 4406, + "philadelphia": 4407, + "bright": 4408, + "guns": 4409, + "crown": 4410, + "organizations": 4411, + "roof": 4412, + "42": 4413, + "respectively": 4414, + "clearly": 4415, + "tongue": 4416, + "marked": 4417, + "circle": 4418, + "fox": 4419, + "korea": 4420, + "bronze": 4421, + "brian": 4422, + "expanded": 4423, + "sexual": 4424, + "supply": 4425, + "yourself": 4426, + "inspired": 4427, + "labour": 4428, + "fc": 4429, + "##ah": 4430, + "reference": 4431, + "vision": 4432, + "draft": 4433, + "connection": 4434, + "brand": 4435, + "reasons": 4436, + "1935": 4437, + "classic": 4438, + "driving": 4439, + "trip": 4440, + "jesus": 4441, + "cells": 4442, + "entry": 4443, + "1920": 4444, + "neither": 4445, + "trail": 4446, + "claims": 4447, + "atlantic": 4448, + "orders": 4449, + "labor": 4450, + "nose": 4451, + "afraid": 4452, + "identified": 4453, + "intelligence": 4454, + "calls": 4455, + "cancer": 4456, + "attacked": 4457, + "passing": 4458, + "stephen": 4459, + "positions": 4460, + "imperial": 4461, + "grey": 4462, + "jason": 4463, + "39": 4464, + "sunday": 4465, + "48": 4466, + "swedish": 4467, + "avoid": 4468, + "extra": 4469, + "uncle": 4470, + "message": 4471, + "covers": 4472, + "allows": 4473, + "surprise": 4474, + "materials": 4475, + "fame": 4476, + "hunter": 4477, + "##ji": 4478, + "1930": 4479, + "citizens": 4480, + "figures": 4481, + "davis": 4482, + "environmental": 4483, + "confirmed": 4484, + "shit": 4485, + "titles": 4486, + "di": 4487, + "performing": 4488, + "difference": 4489, + "acts": 4490, + "attacks": 4491, + "##ov": 4492, + "existing": 4493, + "votes": 4494, + "opportunity": 4495, + "nor": 4496, + "shop": 4497, + "entirely": 4498, + "trains": 4499, + "opposite": 4500, + "pakistan": 4501, + "##pa": 4502, + "develop": 4503, + "resulted": 4504, + "representatives": 4505, + "actions": 4506, + "reality": 4507, + "pressed": 4508, + "##ish": 4509, + "barely": 4510, + "wine": 4511, + "conversation": 4512, + "faculty": 4513, + "northwest": 4514, + "ends": 4515, + "documentary": 4516, + "nuclear": 4517, + "stock": 4518, + "grace": 4519, + "sets": 4520, + "eat": 4521, + "alternative": 4522, + "##ps": 4523, + "bag": 4524, + "resulting": 4525, + "creating": 4526, + "surprised": 4527, + "cemetery": 4528, + "1919": 4529, + "drop": 4530, + "finding": 4531, + "sarah": 4532, + "cricket": 4533, + "streets": 4534, + "tradition": 4535, + "ride": 4536, + "1933": 4537, + "exhibition": 4538, + "target": 4539, + "ear": 4540, + "explained": 4541, + "rain": 4542, + "composer": 4543, + "injury": 4544, + "apartment": 4545, + "municipal": 4546, + "educational": 4547, + "occupied": 4548, + "netherlands": 4549, + "clean": 4550, + "billion": 4551, + "constitution": 4552, + "learn": 4553, + "1914": 4554, + "maximum": 4555, + "classical": 4556, + "francis": 4557, + "lose": 4558, + "opposition": 4559, + "jose": 4560, + "ontario": 4561, + "bear": 4562, + "core": 4563, + "hills": 4564, + "rolled": 4565, + "ending": 4566, + "drawn": 4567, + "permanent": 4568, + "fun": 4569, + "##tes": 4570, + "##lla": 4571, + "lewis": 4572, + "sites": 4573, + "chamber": 4574, + "ryan": 4575, + "##way": 4576, + "scoring": 4577, + "height": 4578, + "1934": 4579, + "##house": 4580, + "lyrics": 4581, + "staring": 4582, + "55": 4583, + "officials": 4584, + "1917": 4585, + "snow": 4586, + "oldest": 4587, + "##tic": 4588, + "orange": 4589, + "##ger": 4590, + "qualified": 4591, + "interior": 4592, + "apparently": 4593, + "succeeded": 4594, + "thousand": 4595, + "dinner": 4596, + "lights": 4597, + "existence": 4598, + "fans": 4599, + "heavily": 4600, + "41": 4601, + "greatest": 4602, + "conservative": 4603, + "send": 4604, + "bowl": 4605, + "plus": 4606, + "enter": 4607, + "catch": 4608, + "##un": 4609, + "economy": 4610, + "duty": 4611, + "1929": 4612, + "speech": 4613, + "authorities": 4614, + "princess": 4615, + "performances": 4616, + "versions": 4617, + "shall": 4618, + "graduate": 4619, + "pictures": 4620, + "effective": 4621, + "remembered": 4622, + "poetry": 4623, + "desk": 4624, + "crossed": 4625, + "starring": 4626, + "starts": 4627, + "passenger": 4628, + "sharp": 4629, + "##ant": 4630, + "acres": 4631, + "ass": 4632, + "weather": 4633, + "falling": 4634, + "rank": 4635, + "fund": 4636, + "supporting": 4637, + "check": 4638, + "adult": 4639, + "publishing": 4640, + "heads": 4641, + "cm": 4642, + "southeast": 4643, + "lane": 4644, + "##burg": 4645, + "application": 4646, + "bc": 4647, + "##ura": 4648, + "les": 4649, + "condition": 4650, + "transfer": 4651, + "prevent": 4652, + "display": 4653, + "ex": 4654, + "regions": 4655, + "earl": 4656, + "federation": 4657, + "cool": 4658, + "relatively": 4659, + "answered": 4660, + "besides": 4661, + "1928": 4662, + "obtained": 4663, + "portion": 4664, + "##town": 4665, + "mix": 4666, + "##ding": 4667, + "reaction": 4668, + "liked": 4669, + "dean": 4670, + "express": 4671, + "peak": 4672, + "1932": 4673, + "##tte": 4674, + "counter": 4675, + "religion": 4676, + "chain": 4677, + "rare": 4678, + "miller": 4679, + "convention": 4680, + "aid": 4681, + "lie": 4682, + "vehicles": 4683, + "mobile": 4684, + "perform": 4685, + "squad": 4686, + "wonder": 4687, + "lying": 4688, + "crazy": 4689, + "sword": 4690, + "##ping": 4691, + "attempted": 4692, + "centuries": 4693, + "weren": 4694, + "philosophy": 4695, + "category": 4696, + "##ize": 4697, + "anna": 4698, + "interested": 4699, + "47": 4700, + "sweden": 4701, + "wolf": 4702, + "frequently": 4703, + "abandoned": 4704, + "kg": 4705, + "literary": 4706, + "alliance": 4707, + "task": 4708, + "entitled": 4709, + "##ay": 4710, + "threw": 4711, + "promotion": 4712, + "factory": 4713, + "tiny": 4714, + "soccer": 4715, + "visited": 4716, + "matt": 4717, + "fm": 4718, + "achieved": 4719, + "52": 4720, + "defence": 4721, + "internal": 4722, + "persian": 4723, + "43": 4724, + "methods": 4725, + "##ging": 4726, + "arrested": 4727, + "otherwise": 4728, + "cambridge": 4729, + "programming": 4730, + "villages": 4731, + "elementary": 4732, + "districts": 4733, + "rooms": 4734, + "criminal": 4735, + "conflict": 4736, + "worry": 4737, + "trained": 4738, + "1931": 4739, + "attempts": 4740, + "waited": 4741, + "signal": 4742, + "bird": 4743, + "truck": 4744, + "subsequent": 4745, + "programme": 4746, + "##ol": 4747, + "ad": 4748, + "49": 4749, + "communist": 4750, + "details": 4751, + "faith": 4752, + "sector": 4753, + "patrick": 4754, + "carrying": 4755, + "laugh": 4756, + "##ss": 4757, + "controlled": 4758, + "korean": 4759, + "showing": 4760, + "origin": 4761, + "fuel": 4762, + "evil": 4763, + "1927": 4764, + "##ent": 4765, + "brief": 4766, + "identity": 4767, + "darkness": 4768, + "address": 4769, + "pool": 4770, + "missed": 4771, + "publication": 4772, + "web": 4773, + "planet": 4774, + "ian": 4775, + "anne": 4776, + "wings": 4777, + "invited": 4778, + "##tt": 4779, + "briefly": 4780, + "standards": 4781, + "kissed": 4782, + "##be": 4783, + "ideas": 4784, + "climate": 4785, + "causing": 4786, + "walter": 4787, + "worse": 4788, + "albert": 4789, + "articles": 4790, + "winners": 4791, + "desire": 4792, + "aged": 4793, + "northeast": 4794, + "dangerous": 4795, + "gate": 4796, + "doubt": 4797, + "1922": 4798, + "wooden": 4799, + "multi": 4800, + "##ky": 4801, + "poet": 4802, + "rising": 4803, + "funding": 4804, + "46": 4805, + "communications": 4806, + "communication": 4807, + "violence": 4808, + "copies": 4809, + "prepared": 4810, + "ford": 4811, + "investigation": 4812, + "skills": 4813, + "1924": 4814, + "pulling": 4815, + "electronic": 4816, + "##ak": 4817, + "##ial": 4818, + "##han": 4819, + "containing": 4820, + "ultimately": 4821, + "offices": 4822, + "singing": 4823, + "understanding": 4824, + "restaurant": 4825, + "tomorrow": 4826, + "fashion": 4827, + "christ": 4828, + "ward": 4829, + "da": 4830, + "pope": 4831, + "stands": 4832, + "5th": 4833, + "flow": 4834, + "studios": 4835, + "aired": 4836, + "commissioned": 4837, + "contained": 4838, + "exist": 4839, + "fresh": 4840, + "americans": 4841, + "##per": 4842, + "wrestling": 4843, + "approved": 4844, + "kid": 4845, + "employed": 4846, + "respect": 4847, + "suit": 4848, + "1925": 4849, + "angel": 4850, + "asking": 4851, + "increasing": 4852, + "frame": 4853, + "angry": 4854, + "selling": 4855, + "1950s": 4856, + "thin": 4857, + "finds": 4858, + "##nd": 4859, + "temperature": 4860, + "statement": 4861, + "ali": 4862, + "explain": 4863, + "inhabitants": 4864, + "towns": 4865, + "extensive": 4866, + "narrow": 4867, + "51": 4868, + "jane": 4869, + "flowers": 4870, + "images": 4871, + "promise": 4872, + "somewhere": 4873, + "object": 4874, + "fly": 4875, + "closely": 4876, + "##ls": 4877, + "1912": 4878, + "bureau": 4879, + "cape": 4880, + "1926": 4881, + "weekly": 4882, + "presidential": 4883, + "legislative": 4884, + "1921": 4885, + "##ai": 4886, + "##au": 4887, + "launch": 4888, + "founding": 4889, + "##ny": 4890, + "978": 4891, + "##ring": 4892, + "artillery": 4893, + "strike": 4894, + "un": 4895, + "institutions": 4896, + "roll": 4897, + "writers": 4898, + "landing": 4899, + "chose": 4900, + "kevin": 4901, + "anymore": 4902, + "pp": 4903, + "##ut": 4904, + "attorney": 4905, + "fit": 4906, + "dan": 4907, + "billboard": 4908, + "receiving": 4909, + "agricultural": 4910, + "breaking": 4911, + "sought": 4912, + "dave": 4913, + "admitted": 4914, + "lands": 4915, + "mexican": 4916, + "##bury": 4917, + "charlie": 4918, + "specifically": 4919, + "hole": 4920, + "iv": 4921, + "howard": 4922, + "credit": 4923, + "moscow": 4924, + "roads": 4925, + "accident": 4926, + "1923": 4927, + "proved": 4928, + "wear": 4929, + "struck": 4930, + "hey": 4931, + "guards": 4932, + "stuff": 4933, + "slid": 4934, + "expansion": 4935, + "1915": 4936, + "cat": 4937, + "anthony": 4938, + "##kin": 4939, + "melbourne": 4940, + "opposed": 4941, + "sub": 4942, + "southwest": 4943, + "architect": 4944, + "failure": 4945, + "plane": 4946, + "1916": 4947, + "##ron": 4948, + "map": 4949, + "camera": 4950, + "tank": 4951, + "listen": 4952, + "regarding": 4953, + "wet": 4954, + "introduction": 4955, + "metropolitan": 4956, + "link": 4957, + "ep": 4958, + "fighter": 4959, + "inch": 4960, + "grown": 4961, + "gene": 4962, + "anger": 4963, + "fixed": 4964, + "buy": 4965, + "dvd": 4966, + "khan": 4967, + "domestic": 4968, + "worldwide": 4969, + "chapel": 4970, + "mill": 4971, + "functions": 4972, + "examples": 4973, + "##head": 4974, + "developing": 4975, + "1910": 4976, + "turkey": 4977, + "hits": 4978, + "pocket": 4979, + "antonio": 4980, + "papers": 4981, + "grow": 4982, + "unless": 4983, + "circuit": 4984, + "18th": 4985, + "concerned": 4986, + "attached": 4987, + "journalist": 4988, + "selection": 4989, + "journey": 4990, + "converted": 4991, + "provincial": 4992, + "painted": 4993, + "hearing": 4994, + "aren": 4995, + "bands": 4996, + "negative": 4997, + "aside": 4998, + "wondered": 4999, + "knight": 5000, + "lap": 5001, + "survey": 5002, + "ma": 5003, + "##ow": 5004, + "noise": 5005, + "billy": 5006, + "##ium": 5007, + "shooting": 5008, + "guide": 5009, + "bedroom": 5010, + "priest": 5011, + "resistance": 5012, + "motor": 5013, + "homes": 5014, + "sounded": 5015, + "giant": 5016, + "##mer": 5017, + "150": 5018, + "scenes": 5019, + "equal": 5020, + "comic": 5021, + "patients": 5022, + "hidden": 5023, + "solid": 5024, + "actual": 5025, + "bringing": 5026, + "afternoon": 5027, + "touched": 5028, + "funds": 5029, + "wedding": 5030, + "consisted": 5031, + "marie": 5032, + "canal": 5033, + "sr": 5034, + "kim": 5035, + "treaty": 5036, + "turkish": 5037, + "recognition": 5038, + "residence": 5039, + "cathedral": 5040, + "broad": 5041, + "knees": 5042, + "incident": 5043, + "shaped": 5044, + "fired": 5045, + "norwegian": 5046, + "handle": 5047, + "cheek": 5048, + "contest": 5049, + "represent": 5050, + "##pe": 5051, + "representing": 5052, + "beauty": 5053, + "##sen": 5054, + "birds": 5055, + "advantage": 5056, + "emergency": 5057, + "wrapped": 5058, + "drawing": 5059, + "notice": 5060, + "pink": 5061, + "broadcasting": 5062, + "##ong": 5063, + "somehow": 5064, + "bachelor": 5065, + "seventh": 5066, + "collected": 5067, + "registered": 5068, + "establishment": 5069, + "alan": 5070, + "assumed": 5071, + "chemical": 5072, + "personnel": 5073, + "roger": 5074, + "retirement": 5075, + "jeff": 5076, + "portuguese": 5077, + "wore": 5078, + "tied": 5079, + "device": 5080, + "threat": 5081, + "progress": 5082, + "advance": 5083, + "##ised": 5084, + "banks": 5085, + "hired": 5086, + "manchester": 5087, + "nfl": 5088, + "teachers": 5089, + "structures": 5090, + "forever": 5091, + "##bo": 5092, + "tennis": 5093, + "helping": 5094, + "saturday": 5095, + "sale": 5096, + "applications": 5097, + "junction": 5098, + "hip": 5099, + "incorporated": 5100, + "neighborhood": 5101, + "dressed": 5102, + "ceremony": 5103, + "##ds": 5104, + "influenced": 5105, + "hers": 5106, + "visual": 5107, + "stairs": 5108, + "decades": 5109, + "inner": 5110, + "kansas": 5111, + "hung": 5112, + "hoped": 5113, + "gain": 5114, + "scheduled": 5115, + "downtown": 5116, + "engaged": 5117, + "austria": 5118, + "clock": 5119, + "norway": 5120, + "certainly": 5121, + "pale": 5122, + "protected": 5123, + "1913": 5124, + "victor": 5125, + "employees": 5126, + "plate": 5127, + "putting": 5128, + "surrounded": 5129, + "##ists": 5130, + "finishing": 5131, + "blues": 5132, + "tropical": 5133, + "##ries": 5134, + "minnesota": 5135, + "consider": 5136, + "philippines": 5137, + "accept": 5138, + "54": 5139, + "retrieved": 5140, + "1900": 5141, + "concern": 5142, + "anderson": 5143, + "properties": 5144, + "institution": 5145, + "gordon": 5146, + "successfully": 5147, + "vietnam": 5148, + "##dy": 5149, + "backing": 5150, + "outstanding": 5151, + "muslim": 5152, + "crossing": 5153, + "folk": 5154, + "producing": 5155, + "usual": 5156, + "demand": 5157, + "occurs": 5158, + "observed": 5159, + "lawyer": 5160, + "educated": 5161, + "##ana": 5162, + "kelly": 5163, + "string": 5164, + "pleasure": 5165, + "budget": 5166, + "items": 5167, + "quietly": 5168, + "colorado": 5169, + "philip": 5170, + "typical": 5171, + "##worth": 5172, + "derived": 5173, + "600": 5174, + "survived": 5175, + "asks": 5176, + "mental": 5177, + "##ide": 5178, + "56": 5179, + "jake": 5180, + "jews": 5181, + "distinguished": 5182, + "ltd": 5183, + "1911": 5184, + "sri": 5185, + "extremely": 5186, + "53": 5187, + "athletic": 5188, + "loud": 5189, + "thousands": 5190, + "worried": 5191, + "shadow": 5192, + "transportation": 5193, + "horses": 5194, + "weapon": 5195, + "arena": 5196, + "importance": 5197, + "users": 5198, + "tim": 5199, + "objects": 5200, + "contributed": 5201, + "dragon": 5202, + "douglas": 5203, + "aware": 5204, + "senator": 5205, + "johnny": 5206, + "jordan": 5207, + "sisters": 5208, + "engines": 5209, + "flag": 5210, + "investment": 5211, + "samuel": 5212, + "shock": 5213, + "capable": 5214, + "clark": 5215, + "row": 5216, + "wheel": 5217, + "refers": 5218, + "session": 5219, + "familiar": 5220, + "biggest": 5221, + "wins": 5222, + "hate": 5223, + "maintained": 5224, + "drove": 5225, + "hamilton": 5226, + "request": 5227, + "expressed": 5228, + "injured": 5229, + "underground": 5230, + "churches": 5231, + "walker": 5232, + "wars": 5233, + "tunnel": 5234, + "passes": 5235, + "stupid": 5236, + "agriculture": 5237, + "softly": 5238, + "cabinet": 5239, + "regarded": 5240, + "joining": 5241, + "indiana": 5242, + "##ea": 5243, + "##ms": 5244, + "push": 5245, + "dates": 5246, + "spend": 5247, + "behavior": 5248, + "woods": 5249, + "protein": 5250, + "gently": 5251, + "chase": 5252, + "morgan": 5253, + "mention": 5254, + "burning": 5255, + "wake": 5256, + "combination": 5257, + "occur": 5258, + "mirror": 5259, + "leads": 5260, + "jimmy": 5261, + "indeed": 5262, + "impossible": 5263, + "singapore": 5264, + "paintings": 5265, + "covering": 5266, + "##nes": 5267, + "soldier": 5268, + "locations": 5269, + "attendance": 5270, + "sell": 5271, + "historian": 5272, + "wisconsin": 5273, + "invasion": 5274, + "argued": 5275, + "painter": 5276, + "diego": 5277, + "changing": 5278, + "egypt": 5279, + "##don": 5280, + "experienced": 5281, + "inches": 5282, + "##ku": 5283, + "missouri": 5284, + "vol": 5285, + "grounds": 5286, + "spoken": 5287, + "switzerland": 5288, + "##gan": 5289, + "reform": 5290, + "rolling": 5291, + "ha": 5292, + "forget": 5293, + "massive": 5294, + "resigned": 5295, + "burned": 5296, + "allen": 5297, + "tennessee": 5298, + "locked": 5299, + "values": 5300, + "improved": 5301, + "##mo": 5302, + "wounded": 5303, + "universe": 5304, + "sick": 5305, + "dating": 5306, + "facing": 5307, + "pack": 5308, + "purchase": 5309, + "user": 5310, + "##pur": 5311, + "moments": 5312, + "##ul": 5313, + "merged": 5314, + "anniversary": 5315, + "1908": 5316, + "coal": 5317, + "brick": 5318, + "understood": 5319, + "causes": 5320, + "dynasty": 5321, + "queensland": 5322, + "establish": 5323, + "stores": 5324, + "crisis": 5325, + "promote": 5326, + "hoping": 5327, + "views": 5328, + "cards": 5329, + "referee": 5330, + "extension": 5331, + "##si": 5332, + "raise": 5333, + "arizona": 5334, + "improve": 5335, + "colonial": 5336, + "formal": 5337, + "charged": 5338, + "##rt": 5339, + "palm": 5340, + "lucky": 5341, + "hide": 5342, + "rescue": 5343, + "faces": 5344, + "95": 5345, + "feelings": 5346, + "candidates": 5347, + "juan": 5348, + "##ell": 5349, + "goods": 5350, + "6th": 5351, + "courses": 5352, + "weekend": 5353, + "59": 5354, + "luke": 5355, + "cash": 5356, + "fallen": 5357, + "##om": 5358, + "delivered": 5359, + "affected": 5360, + "installed": 5361, + "carefully": 5362, + "tries": 5363, + "swiss": 5364, + "hollywood": 5365, + "costs": 5366, + "lincoln": 5367, + "responsibility": 5368, + "##he": 5369, + "shore": 5370, + "file": 5371, + "proper": 5372, + "normally": 5373, + "maryland": 5374, + "assistance": 5375, + "jump": 5376, + "constant": 5377, + "offering": 5378, + "friendly": 5379, + "waters": 5380, + "persons": 5381, + "realize": 5382, + "contain": 5383, + "trophy": 5384, + "800": 5385, + "partnership": 5386, + "factor": 5387, + "58": 5388, + "musicians": 5389, + "cry": 5390, + "bound": 5391, + "oregon": 5392, + "indicated": 5393, + "hero": 5394, + "houston": 5395, + "medium": 5396, + "##ure": 5397, + "consisting": 5398, + "somewhat": 5399, + "##ara": 5400, + "57": 5401, + "cycle": 5402, + "##che": 5403, + "beer": 5404, + "moore": 5405, + "frederick": 5406, + "gotten": 5407, + "eleven": 5408, + "worst": 5409, + "weak": 5410, + "approached": 5411, + "arranged": 5412, + "chin": 5413, + "loan": 5414, + "universal": 5415, + "bond": 5416, + "fifteen": 5417, + "pattern": 5418, + "disappeared": 5419, + "##ney": 5420, + "translated": 5421, + "##zed": 5422, + "lip": 5423, + "arab": 5424, + "capture": 5425, + "interests": 5426, + "insurance": 5427, + "##chi": 5428, + "shifted": 5429, + "cave": 5430, + "prix": 5431, + "warning": 5432, + "sections": 5433, + "courts": 5434, + "coat": 5435, + "plot": 5436, + "smell": 5437, + "feed": 5438, + "golf": 5439, + "favorite": 5440, + "maintain": 5441, + "knife": 5442, + "vs": 5443, + "voted": 5444, + "degrees": 5445, + "finance": 5446, + "quebec": 5447, + "opinion": 5448, + "translation": 5449, + "manner": 5450, + "ruled": 5451, + "operate": 5452, + "productions": 5453, + "choose": 5454, + "musician": 5455, + "discovery": 5456, + "confused": 5457, + "tired": 5458, + "separated": 5459, + "stream": 5460, + "techniques": 5461, + "committed": 5462, + "attend": 5463, + "ranking": 5464, + "kings": 5465, + "throw": 5466, + "passengers": 5467, + "measure": 5468, + "horror": 5469, + "fan": 5470, + "mining": 5471, + "sand": 5472, + "danger": 5473, + "salt": 5474, + "calm": 5475, + "decade": 5476, + "dam": 5477, + "require": 5478, + "runner": 5479, + "##ik": 5480, + "rush": 5481, + "associate": 5482, + "greece": 5483, + "##ker": 5484, + "rivers": 5485, + "consecutive": 5486, + "matthew": 5487, + "##ski": 5488, + "sighed": 5489, + "sq": 5490, + "documents": 5491, + "steam": 5492, + "edited": 5493, + "closing": 5494, + "tie": 5495, + "accused": 5496, + "1905": 5497, + "##ini": 5498, + "islamic": 5499, + "distributed": 5500, + "directors": 5501, + "organisation": 5502, + "bruce": 5503, + "7th": 5504, + "breathing": 5505, + "mad": 5506, + "lit": 5507, + "arrival": 5508, + "concrete": 5509, + "taste": 5510, + "08": 5511, + "composition": 5512, + "shaking": 5513, + "faster": 5514, + "amateur": 5515, + "adjacent": 5516, + "stating": 5517, + "1906": 5518, + "twin": 5519, + "flew": 5520, + "##ran": 5521, + "tokyo": 5522, + "publications": 5523, + "##tone": 5524, + "obviously": 5525, + "ridge": 5526, + "storage": 5527, + "1907": 5528, + "carl": 5529, + "pages": 5530, + "concluded": 5531, + "desert": 5532, + "driven": 5533, + "universities": 5534, + "ages": 5535, + "terminal": 5536, + "sequence": 5537, + "borough": 5538, + "250": 5539, + "constituency": 5540, + "creative": 5541, + "cousin": 5542, + "economics": 5543, + "dreams": 5544, + "margaret": 5545, + "notably": 5546, + "reduce": 5547, + "montreal": 5548, + "mode": 5549, + "17th": 5550, + "ears": 5551, + "saved": 5552, + "jan": 5553, + "vocal": 5554, + "##ica": 5555, + "1909": 5556, + "andy": 5557, + "##jo": 5558, + "riding": 5559, + "roughly": 5560, + "threatened": 5561, + "##ise": 5562, + "meters": 5563, + "meanwhile": 5564, + "landed": 5565, + "compete": 5566, + "repeated": 5567, + "grass": 5568, + "czech": 5569, + "regularly": 5570, + "charges": 5571, + "tea": 5572, + "sudden": 5573, + "appeal": 5574, + "##ung": 5575, + "solution": 5576, + "describes": 5577, + "pierre": 5578, + "classification": 5579, + "glad": 5580, + "parking": 5581, + "##ning": 5582, + "belt": 5583, + "physics": 5584, + "99": 5585, + "rachel": 5586, + "add": 5587, + "hungarian": 5588, + "participate": 5589, + "expedition": 5590, + "damaged": 5591, + "gift": 5592, + "childhood": 5593, + "85": 5594, + "fifty": 5595, + "##red": 5596, + "mathematics": 5597, + "jumped": 5598, + "letting": 5599, + "defensive": 5600, + "mph": 5601, + "##ux": 5602, + "##gh": 5603, + "testing": 5604, + "##hip": 5605, + "hundreds": 5606, + "shoot": 5607, + "owners": 5608, + "matters": 5609, + "smoke": 5610, + "israeli": 5611, + "kentucky": 5612, + "dancing": 5613, + "mounted": 5614, + "grandfather": 5615, + "emma": 5616, + "designs": 5617, + "profit": 5618, + "argentina": 5619, + "##gs": 5620, + "truly": 5621, + "li": 5622, + "lawrence": 5623, + "cole": 5624, + "begun": 5625, + "detroit": 5626, + "willing": 5627, + "branches": 5628, + "smiling": 5629, + "decide": 5630, + "miami": 5631, + "enjoyed": 5632, + "recordings": 5633, + "##dale": 5634, + "poverty": 5635, + "ethnic": 5636, + "gay": 5637, + "##bi": 5638, + "gary": 5639, + "arabic": 5640, + "09": 5641, + "accompanied": 5642, + "##one": 5643, + "##ons": 5644, + "fishing": 5645, + "determine": 5646, + "residential": 5647, + "acid": 5648, + "##ary": 5649, + "alice": 5650, + "returns": 5651, + "starred": 5652, + "mail": 5653, + "##ang": 5654, + "jonathan": 5655, + "strategy": 5656, + "##ue": 5657, + "net": 5658, + "forty": 5659, + "cook": 5660, + "businesses": 5661, + "equivalent": 5662, + "commonwealth": 5663, + "distinct": 5664, + "ill": 5665, + "##cy": 5666, + "seriously": 5667, + "##ors": 5668, + "##ped": 5669, + "shift": 5670, + "harris": 5671, + "replace": 5672, + "rio": 5673, + "imagine": 5674, + "formula": 5675, + "ensure": 5676, + "##ber": 5677, + "additionally": 5678, + "scheme": 5679, + "conservation": 5680, + "occasionally": 5681, + "purposes": 5682, + "feels": 5683, + "favor": 5684, + "##and": 5685, + "##ore": 5686, + "1930s": 5687, + "contrast": 5688, + "hanging": 5689, + "hunt": 5690, + "movies": 5691, + "1904": 5692, + "instruments": 5693, + "victims": 5694, + "danish": 5695, + "christopher": 5696, + "busy": 5697, + "demon": 5698, + "sugar": 5699, + "earliest": 5700, + "colony": 5701, + "studying": 5702, + "balance": 5703, + "duties": 5704, + "##ks": 5705, + "belgium": 5706, + "slipped": 5707, + "carter": 5708, + "05": 5709, + "visible": 5710, + "stages": 5711, + "iraq": 5712, + "fifa": 5713, + "##im": 5714, + "commune": 5715, + "forming": 5716, + "zero": 5717, + "07": 5718, + "continuing": 5719, + "talked": 5720, + "counties": 5721, + "legend": 5722, + "bathroom": 5723, + "option": 5724, + "tail": 5725, + "clay": 5726, + "daughters": 5727, + "afterwards": 5728, + "severe": 5729, + "jaw": 5730, + "visitors": 5731, + "##ded": 5732, + "devices": 5733, + "aviation": 5734, + "russell": 5735, + "kate": 5736, + "##vi": 5737, + "entering": 5738, + "subjects": 5739, + "##ino": 5740, + "temporary": 5741, + "swimming": 5742, + "forth": 5743, + "smooth": 5744, + "ghost": 5745, + "audio": 5746, + "bush": 5747, + "operates": 5748, + "rocks": 5749, + "movements": 5750, + "signs": 5751, + "eddie": 5752, + "##tz": 5753, + "ann": 5754, + "voices": 5755, + "honorary": 5756, + "06": 5757, + "memories": 5758, + "dallas": 5759, + "pure": 5760, + "measures": 5761, + "racial": 5762, + "promised": 5763, + "66": 5764, + "harvard": 5765, + "ceo": 5766, + "16th": 5767, + "parliamentary": 5768, + "indicate": 5769, + "benefit": 5770, + "flesh": 5771, + "dublin": 5772, + "louisiana": 5773, + "1902": 5774, + "1901": 5775, + "patient": 5776, + "sleeping": 5777, + "1903": 5778, + "membership": 5779, + "coastal": 5780, + "medieval": 5781, + "wanting": 5782, + "element": 5783, + "scholars": 5784, + "rice": 5785, + "62": 5786, + "limit": 5787, + "survive": 5788, + "makeup": 5789, + "rating": 5790, + "definitely": 5791, + "collaboration": 5792, + "obvious": 5793, + "##tan": 5794, + "boss": 5795, + "ms": 5796, + "baron": 5797, + "birthday": 5798, + "linked": 5799, + "soil": 5800, + "diocese": 5801, + "##lan": 5802, + "ncaa": 5803, + "##mann": 5804, + "offensive": 5805, + "shell": 5806, + "shouldn": 5807, + "waist": 5808, + "##tus": 5809, + "plain": 5810, + "ross": 5811, + "organ": 5812, + "resolution": 5813, + "manufacturing": 5814, + "adding": 5815, + "relative": 5816, + "kennedy": 5817, + "98": 5818, + "whilst": 5819, + "moth": 5820, + "marketing": 5821, + "gardens": 5822, + "crash": 5823, + "72": 5824, + "heading": 5825, + "partners": 5826, + "credited": 5827, + "carlos": 5828, + "moves": 5829, + "cable": 5830, + "##zi": 5831, + "marshall": 5832, + "##out": 5833, + "depending": 5834, + "bottle": 5835, + "represents": 5836, + "rejected": 5837, + "responded": 5838, + "existed": 5839, + "04": 5840, + "jobs": 5841, + "denmark": 5842, + "lock": 5843, + "##ating": 5844, + "treated": 5845, + "graham": 5846, + "routes": 5847, + "talent": 5848, + "commissioner": 5849, + "drugs": 5850, + "secure": 5851, + "tests": 5852, + "reign": 5853, + "restored": 5854, + "photography": 5855, + "##gi": 5856, + "contributions": 5857, + "oklahoma": 5858, + "designer": 5859, + "disc": 5860, + "grin": 5861, + "seattle": 5862, + "robin": 5863, + "paused": 5864, + "atlanta": 5865, + "unusual": 5866, + "##gate": 5867, + "praised": 5868, + "las": 5869, + "laughing": 5870, + "satellite": 5871, + "hungary": 5872, + "visiting": 5873, + "##sky": 5874, + "interesting": 5875, + "factors": 5876, + "deck": 5877, + "poems": 5878, + "norman": 5879, + "##water": 5880, + "stuck": 5881, + "speaker": 5882, + "rifle": 5883, + "domain": 5884, + "premiered": 5885, + "##her": 5886, + "dc": 5887, + "comics": 5888, + "actors": 5889, + "01": 5890, + "reputation": 5891, + "eliminated": 5892, + "8th": 5893, + "ceiling": 5894, + "prisoners": 5895, + "script": 5896, + "##nce": 5897, + "leather": 5898, + "austin": 5899, + "mississippi": 5900, + "rapidly": 5901, + "admiral": 5902, + "parallel": 5903, + "charlotte": 5904, + "guilty": 5905, + "tools": 5906, + "gender": 5907, + "divisions": 5908, + "fruit": 5909, + "##bs": 5910, + "laboratory": 5911, + "nelson": 5912, + "fantasy": 5913, + "marry": 5914, + "rapid": 5915, + "aunt": 5916, + "tribe": 5917, + "requirements": 5918, + "aspects": 5919, + "suicide": 5920, + "amongst": 5921, + "adams": 5922, + "bone": 5923, + "ukraine": 5924, + "abc": 5925, + "kick": 5926, + "sees": 5927, + "edinburgh": 5928, + "clothing": 5929, + "column": 5930, + "rough": 5931, + "gods": 5932, + "hunting": 5933, + "broadway": 5934, + "gathered": 5935, + "concerns": 5936, + "##ek": 5937, + "spending": 5938, + "ty": 5939, + "12th": 5940, + "snapped": 5941, + "requires": 5942, + "solar": 5943, + "bones": 5944, + "cavalry": 5945, + "##tta": 5946, + "iowa": 5947, + "drinking": 5948, + "waste": 5949, + "index": 5950, + "franklin": 5951, + "charity": 5952, + "thompson": 5953, + "stewart": 5954, + "tip": 5955, + "flash": 5956, + "landscape": 5957, + "friday": 5958, + "enjoy": 5959, + "singh": 5960, + "poem": 5961, + "listening": 5962, + "##back": 5963, + "eighth": 5964, + "fred": 5965, + "differences": 5966, + "adapted": 5967, + "bomb": 5968, + "ukrainian": 5969, + "surgery": 5970, + "corporate": 5971, + "masters": 5972, + "anywhere": 5973, + "##more": 5974, + "waves": 5975, + "odd": 5976, + "sean": 5977, + "portugal": 5978, + "orleans": 5979, + "dick": 5980, + "debate": 5981, + "kent": 5982, + "eating": 5983, + "puerto": 5984, + "cleared": 5985, + "96": 5986, + "expect": 5987, + "cinema": 5988, + "97": 5989, + "guitarist": 5990, + "blocks": 5991, + "electrical": 5992, + "agree": 5993, + "involving": 5994, + "depth": 5995, + "dying": 5996, + "panel": 5997, + "struggle": 5998, + "##ged": 5999, + "peninsula": 6000, + "adults": 6001, + "novels": 6002, + "emerged": 6003, + "vienna": 6004, + "metro": 6005, + "debuted": 6006, + "shoes": 6007, + "tamil": 6008, + "songwriter": 6009, + "meets": 6010, + "prove": 6011, + "beating": 6012, + "instance": 6013, + "heaven": 6014, + "scared": 6015, + "sending": 6016, + "marks": 6017, + "artistic": 6018, + "passage": 6019, + "superior": 6020, + "03": 6021, + "significantly": 6022, + "shopping": 6023, + "##tive": 6024, + "retained": 6025, + "##izing": 6026, + "malaysia": 6027, + "technique": 6028, + "cheeks": 6029, + "##ola": 6030, + "warren": 6031, + "maintenance": 6032, + "destroy": 6033, + "extreme": 6034, + "allied": 6035, + "120": 6036, + "appearing": 6037, + "##yn": 6038, + "fill": 6039, + "advice": 6040, + "alabama": 6041, + "qualifying": 6042, + "policies": 6043, + "cleveland": 6044, + "hat": 6045, + "battery": 6046, + "smart": 6047, + "authors": 6048, + "10th": 6049, + "soundtrack": 6050, + "acted": 6051, + "dated": 6052, + "lb": 6053, + "glance": 6054, + "equipped": 6055, + "coalition": 6056, + "funny": 6057, + "outer": 6058, + "ambassador": 6059, + "roy": 6060, + "possibility": 6061, + "couples": 6062, + "campbell": 6063, + "dna": 6064, + "loose": 6065, + "ethan": 6066, + "supplies": 6067, + "1898": 6068, + "gonna": 6069, + "88": 6070, + "monster": 6071, + "##res": 6072, + "shake": 6073, + "agents": 6074, + "frequency": 6075, + "springs": 6076, + "dogs": 6077, + "practices": 6078, + "61": 6079, + "gang": 6080, + "plastic": 6081, + "easier": 6082, + "suggests": 6083, + "gulf": 6084, + "blade": 6085, + "exposed": 6086, + "colors": 6087, + "industries": 6088, + "markets": 6089, + "pan": 6090, + "nervous": 6091, + "electoral": 6092, + "charts": 6093, + "legislation": 6094, + "ownership": 6095, + "##idae": 6096, + "mac": 6097, + "appointment": 6098, + "shield": 6099, + "copy": 6100, + "assault": 6101, + "socialist": 6102, + "abbey": 6103, + "monument": 6104, + "license": 6105, + "throne": 6106, + "employment": 6107, + "jay": 6108, + "93": 6109, + "replacement": 6110, + "charter": 6111, + "cloud": 6112, + "powered": 6113, + "suffering": 6114, + "accounts": 6115, + "oak": 6116, + "connecticut": 6117, + "strongly": 6118, + "wright": 6119, + "colour": 6120, + "crystal": 6121, + "13th": 6122, + "context": 6123, + "welsh": 6124, + "networks": 6125, + "voiced": 6126, + "gabriel": 6127, + "jerry": 6128, + "##cing": 6129, + "forehead": 6130, + "mp": 6131, + "##ens": 6132, + "manage": 6133, + "schedule": 6134, + "totally": 6135, + "remix": 6136, + "##ii": 6137, + "forests": 6138, + "occupation": 6139, + "print": 6140, + "nicholas": 6141, + "brazilian": 6142, + "strategic": 6143, + "vampires": 6144, + "engineers": 6145, + "76": 6146, + "roots": 6147, + "seek": 6148, + "correct": 6149, + "instrumental": 6150, + "und": 6151, + "alfred": 6152, + "backed": 6153, + "hop": 6154, + "##des": 6155, + "stanley": 6156, + "robinson": 6157, + "traveled": 6158, + "wayne": 6159, + "welcome": 6160, + "austrian": 6161, + "achieve": 6162, + "67": 6163, + "exit": 6164, + "rates": 6165, + "1899": 6166, + "strip": 6167, + "whereas": 6168, + "##cs": 6169, + "sing": 6170, + "deeply": 6171, + "adventure": 6172, + "bobby": 6173, + "rick": 6174, + "jamie": 6175, + "careful": 6176, + "components": 6177, + "cap": 6178, + "useful": 6179, + "personality": 6180, + "knee": 6181, + "##shi": 6182, + "pushing": 6183, + "hosts": 6184, + "02": 6185, + "protest": 6186, + "ca": 6187, + "ottoman": 6188, + "symphony": 6189, + "##sis": 6190, + "63": 6191, + "boundary": 6192, + "1890": 6193, + "processes": 6194, + "considering": 6195, + "considerable": 6196, + "tons": 6197, + "##work": 6198, + "##ft": 6199, + "##nia": 6200, + "cooper": 6201, + "trading": 6202, + "dear": 6203, + "conduct": 6204, + "91": 6205, + "illegal": 6206, + "apple": 6207, + "revolutionary": 6208, + "holiday": 6209, + "definition": 6210, + "harder": 6211, + "##van": 6212, + "jacob": 6213, + "circumstances": 6214, + "destruction": 6215, + "##lle": 6216, + "popularity": 6217, + "grip": 6218, + "classified": 6219, + "liverpool": 6220, + "donald": 6221, + "baltimore": 6222, + "flows": 6223, + "seeking": 6224, + "honour": 6225, + "approval": 6226, + "92": 6227, + "mechanical": 6228, + "till": 6229, + "happening": 6230, + "statue": 6231, + "critic": 6232, + "increasingly": 6233, + "immediate": 6234, + "describe": 6235, + "commerce": 6236, + "stare": 6237, + "##ster": 6238, + "indonesia": 6239, + "meat": 6240, + "rounds": 6241, + "boats": 6242, + "baker": 6243, + "orthodox": 6244, + "depression": 6245, + "formally": 6246, + "worn": 6247, + "naked": 6248, + "claire": 6249, + "muttered": 6250, + "sentence": 6251, + "11th": 6252, + "emily": 6253, + "document": 6254, + "77": 6255, + "criticism": 6256, + "wished": 6257, + "vessel": 6258, + "spiritual": 6259, + "bent": 6260, + "virgin": 6261, + "parker": 6262, + "minimum": 6263, + "murray": 6264, + "lunch": 6265, + "danny": 6266, + "printed": 6267, + "compilation": 6268, + "keyboards": 6269, + "false": 6270, + "blow": 6271, + "belonged": 6272, + "68": 6273, + "raising": 6274, + "78": 6275, + "cutting": 6276, + "##board": 6277, + "pittsburgh": 6278, + "##up": 6279, + "9th": 6280, + "shadows": 6281, + "81": 6282, + "hated": 6283, + "indigenous": 6284, + "jon": 6285, + "15th": 6286, + "barry": 6287, + "scholar": 6288, + "ah": 6289, + "##zer": 6290, + "oliver": 6291, + "##gy": 6292, + "stick": 6293, + "susan": 6294, + "meetings": 6295, + "attracted": 6296, + "spell": 6297, + "romantic": 6298, + "##ver": 6299, + "ye": 6300, + "1895": 6301, + "photo": 6302, + "demanded": 6303, + "customers": 6304, + "##ac": 6305, + "1896": 6306, + "logan": 6307, + "revival": 6308, + "keys": 6309, + "modified": 6310, + "commanded": 6311, + "jeans": 6312, + "##ious": 6313, + "upset": 6314, + "raw": 6315, + "phil": 6316, + "detective": 6317, + "hiding": 6318, + "resident": 6319, + "vincent": 6320, + "##bly": 6321, + "experiences": 6322, + "diamond": 6323, + "defeating": 6324, + "coverage": 6325, + "lucas": 6326, + "external": 6327, + "parks": 6328, + "franchise": 6329, + "helen": 6330, + "bible": 6331, + "successor": 6332, + "percussion": 6333, + "celebrated": 6334, + "il": 6335, + "lift": 6336, + "profile": 6337, + "clan": 6338, + "romania": 6339, + "##ied": 6340, + "mills": 6341, + "##su": 6342, + "nobody": 6343, + "achievement": 6344, + "shrugged": 6345, + "fault": 6346, + "1897": 6347, + "rhythm": 6348, + "initiative": 6349, + "breakfast": 6350, + "carbon": 6351, + "700": 6352, + "69": 6353, + "lasted": 6354, + "violent": 6355, + "74": 6356, + "wound": 6357, + "ken": 6358, + "killer": 6359, + "gradually": 6360, + "filmed": 6361, + "°c": 6362, + "dollars": 6363, + "processing": 6364, + "94": 6365, + "remove": 6366, + "criticized": 6367, + "guests": 6368, + "sang": 6369, + "chemistry": 6370, + "##vin": 6371, + "legislature": 6372, + "disney": 6373, + "##bridge": 6374, + "uniform": 6375, + "escaped": 6376, + "integrated": 6377, + "proposal": 6378, + "purple": 6379, + "denied": 6380, + "liquid": 6381, + "karl": 6382, + "influential": 6383, + "morris": 6384, + "nights": 6385, + "stones": 6386, + "intense": 6387, + "experimental": 6388, + "twisted": 6389, + "71": 6390, + "84": 6391, + "##ld": 6392, + "pace": 6393, + "nazi": 6394, + "mitchell": 6395, + "ny": 6396, + "blind": 6397, + "reporter": 6398, + "newspapers": 6399, + "14th": 6400, + "centers": 6401, + "burn": 6402, + "basin": 6403, + "forgotten": 6404, + "surviving": 6405, + "filed": 6406, + "collections": 6407, + "monastery": 6408, + "losses": 6409, + "manual": 6410, + "couch": 6411, + "description": 6412, + "appropriate": 6413, + "merely": 6414, + "tag": 6415, + "missions": 6416, + "sebastian": 6417, + "restoration": 6418, + "replacing": 6419, + "triple": 6420, + "73": 6421, + "elder": 6422, + "julia": 6423, + "warriors": 6424, + "benjamin": 6425, + "julian": 6426, + "convinced": 6427, + "stronger": 6428, + "amazing": 6429, + "declined": 6430, + "versus": 6431, + "merchant": 6432, + "happens": 6433, + "output": 6434, + "finland": 6435, + "bare": 6436, + "barbara": 6437, + "absence": 6438, + "ignored": 6439, + "dawn": 6440, + "injuries": 6441, + "##port": 6442, + "producers": 6443, + "##ram": 6444, + "82": 6445, + "luis": 6446, + "##ities": 6447, + "kw": 6448, + "admit": 6449, + "expensive": 6450, + "electricity": 6451, + "nba": 6452, + "exception": 6453, + "symbol": 6454, + "##ving": 6455, + "ladies": 6456, + "shower": 6457, + "sheriff": 6458, + "characteristics": 6459, + "##je": 6460, + "aimed": 6461, + "button": 6462, + "ratio": 6463, + "effectively": 6464, + "summit": 6465, + "angle": 6466, + "jury": 6467, + "bears": 6468, + "foster": 6469, + "vessels": 6470, + "pants": 6471, + "executed": 6472, + "evans": 6473, + "dozen": 6474, + "advertising": 6475, + "kicked": 6476, + "patrol": 6477, + "1889": 6478, + "competitions": 6479, + "lifetime": 6480, + "principles": 6481, + "athletics": 6482, + "##logy": 6483, + "birmingham": 6484, + "sponsored": 6485, + "89": 6486, + "rob": 6487, + "nomination": 6488, + "1893": 6489, + "acoustic": 6490, + "##sm": 6491, + "creature": 6492, + "longest": 6493, + "##tra": 6494, + "credits": 6495, + "harbor": 6496, + "dust": 6497, + "josh": 6498, + "##so": 6499, + "territories": 6500, + "milk": 6501, + "infrastructure": 6502, + "completion": 6503, + "thailand": 6504, + "indians": 6505, + "leon": 6506, + "archbishop": 6507, + "##sy": 6508, + "assist": 6509, + "pitch": 6510, + "blake": 6511, + "arrangement": 6512, + "girlfriend": 6513, + "serbian": 6514, + "operational": 6515, + "hence": 6516, + "sad": 6517, + "scent": 6518, + "fur": 6519, + "dj": 6520, + "sessions": 6521, + "hp": 6522, + "refer": 6523, + "rarely": 6524, + "##ora": 6525, + "exists": 6526, + "1892": 6527, + "##ten": 6528, + "scientists": 6529, + "dirty": 6530, + "penalty": 6531, + "burst": 6532, + "portrait": 6533, + "seed": 6534, + "79": 6535, + "pole": 6536, + "limits": 6537, + "rival": 6538, + "1894": 6539, + "stable": 6540, + "alpha": 6541, + "grave": 6542, + "constitutional": 6543, + "alcohol": 6544, + "arrest": 6545, + "flower": 6546, + "mystery": 6547, + "devil": 6548, + "architectural": 6549, + "relationships": 6550, + "greatly": 6551, + "habitat": 6552, + "##istic": 6553, + "larry": 6554, + "progressive": 6555, + "remote": 6556, + "cotton": 6557, + "##ics": 6558, + "##ok": 6559, + "preserved": 6560, + "reaches": 6561, + "##ming": 6562, + "cited": 6563, + "86": 6564, + "vast": 6565, + "scholarship": 6566, + "decisions": 6567, + "cbs": 6568, + "joy": 6569, + "teach": 6570, + "1885": 6571, + "editions": 6572, + "knocked": 6573, + "eve": 6574, + "searching": 6575, + "partly": 6576, + "participation": 6577, + "gap": 6578, + "animated": 6579, + "fate": 6580, + "excellent": 6581, + "##ett": 6582, + "na": 6583, + "87": 6584, + "alternate": 6585, + "saints": 6586, + "youngest": 6587, + "##ily": 6588, + "climbed": 6589, + "##ita": 6590, + "##tors": 6591, + "suggest": 6592, + "##ct": 6593, + "discussion": 6594, + "staying": 6595, + "choir": 6596, + "lakes": 6597, + "jacket": 6598, + "revenue": 6599, + "nevertheless": 6600, + "peaked": 6601, + "instrument": 6602, + "wondering": 6603, + "annually": 6604, + "managing": 6605, + "neil": 6606, + "1891": 6607, + "signing": 6608, + "terry": 6609, + "##ice": 6610, + "apply": 6611, + "clinical": 6612, + "brooklyn": 6613, + "aim": 6614, + "catherine": 6615, + "fuck": 6616, + "farmers": 6617, + "figured": 6618, + "ninth": 6619, + "pride": 6620, + "hugh": 6621, + "evolution": 6622, + "ordinary": 6623, + "involvement": 6624, + "comfortable": 6625, + "shouted": 6626, + "tech": 6627, + "encouraged": 6628, + "taiwan": 6629, + "representation": 6630, + "sharing": 6631, + "##lia": 6632, + "##em": 6633, + "panic": 6634, + "exact": 6635, + "cargo": 6636, + "competing": 6637, + "fat": 6638, + "cried": 6639, + "83": 6640, + "1920s": 6641, + "occasions": 6642, + "pa": 6643, + "cabin": 6644, + "borders": 6645, + "utah": 6646, + "marcus": 6647, + "##isation": 6648, + "badly": 6649, + "muscles": 6650, + "##ance": 6651, + "victorian": 6652, + "transition": 6653, + "warner": 6654, + "bet": 6655, + "permission": 6656, + "##rin": 6657, + "slave": 6658, + "terrible": 6659, + "similarly": 6660, + "shares": 6661, + "seth": 6662, + "uefa": 6663, + "possession": 6664, + "medals": 6665, + "benefits": 6666, + "colleges": 6667, + "lowered": 6668, + "perfectly": 6669, + "mall": 6670, + "transit": 6671, + "##ye": 6672, + "##kar": 6673, + "publisher": 6674, + "##ened": 6675, + "harrison": 6676, + "deaths": 6677, + "elevation": 6678, + "##ae": 6679, + "asleep": 6680, + "machines": 6681, + "sigh": 6682, + "ash": 6683, + "hardly": 6684, + "argument": 6685, + "occasion": 6686, + "parent": 6687, + "leo": 6688, + "decline": 6689, + "1888": 6690, + "contribution": 6691, + "##ua": 6692, + "concentration": 6693, + "1000": 6694, + "opportunities": 6695, + "hispanic": 6696, + "guardian": 6697, + "extent": 6698, + "emotions": 6699, + "hips": 6700, + "mason": 6701, + "volumes": 6702, + "bloody": 6703, + "controversy": 6704, + "diameter": 6705, + "steady": 6706, + "mistake": 6707, + "phoenix": 6708, + "identify": 6709, + "violin": 6710, + "##sk": 6711, + "departure": 6712, + "richmond": 6713, + "spin": 6714, + "funeral": 6715, + "enemies": 6716, + "1864": 6717, + "gear": 6718, + "literally": 6719, + "connor": 6720, + "random": 6721, + "sergeant": 6722, + "grab": 6723, + "confusion": 6724, + "1865": 6725, + "transmission": 6726, + "informed": 6727, + "op": 6728, + "leaning": 6729, + "sacred": 6730, + "suspended": 6731, + "thinks": 6732, + "gates": 6733, + "portland": 6734, + "luck": 6735, + "agencies": 6736, + "yours": 6737, + "hull": 6738, + "expert": 6739, + "muscle": 6740, + "layer": 6741, + "practical": 6742, + "sculpture": 6743, + "jerusalem": 6744, + "latest": 6745, + "lloyd": 6746, + "statistics": 6747, + "deeper": 6748, + "recommended": 6749, + "warrior": 6750, + "arkansas": 6751, + "mess": 6752, + "supports": 6753, + "greg": 6754, + "eagle": 6755, + "1880": 6756, + "recovered": 6757, + "rated": 6758, + "concerts": 6759, + "rushed": 6760, + "##ano": 6761, + "stops": 6762, + "eggs": 6763, + "files": 6764, + "premiere": 6765, + "keith": 6766, + "##vo": 6767, + "delhi": 6768, + "turner": 6769, + "pit": 6770, + "affair": 6771, + "belief": 6772, + "paint": 6773, + "##zing": 6774, + "mate": 6775, + "##ach": 6776, + "##ev": 6777, + "victim": 6778, + "##ology": 6779, + "withdrew": 6780, + "bonus": 6781, + "styles": 6782, + "fled": 6783, + "##ud": 6784, + "glasgow": 6785, + "technologies": 6786, + "funded": 6787, + "nbc": 6788, + "adaptation": 6789, + "##ata": 6790, + "portrayed": 6791, + "cooperation": 6792, + "supporters": 6793, + "judges": 6794, + "bernard": 6795, + "justin": 6796, + "hallway": 6797, + "ralph": 6798, + "##ick": 6799, + "graduating": 6800, + "controversial": 6801, + "distant": 6802, + "continental": 6803, + "spider": 6804, + "bite": 6805, + "##ho": 6806, + "recognize": 6807, + "intention": 6808, + "mixing": 6809, + "##ese": 6810, + "egyptian": 6811, + "bow": 6812, + "tourism": 6813, + "suppose": 6814, + "claiming": 6815, + "tiger": 6816, + "dominated": 6817, + "participants": 6818, + "vi": 6819, + "##ru": 6820, + "nurse": 6821, + "partially": 6822, + "tape": 6823, + "##rum": 6824, + "psychology": 6825, + "##rn": 6826, + "essential": 6827, + "touring": 6828, + "duo": 6829, + "voting": 6830, + "civilian": 6831, + "emotional": 6832, + "channels": 6833, + "##king": 6834, + "apparent": 6835, + "hebrew": 6836, + "1887": 6837, + "tommy": 6838, + "carrier": 6839, + "intersection": 6840, + "beast": 6841, + "hudson": 6842, + "##gar": 6843, + "##zo": 6844, + "lab": 6845, + "nova": 6846, + "bench": 6847, + "discuss": 6848, + "costa": 6849, + "##ered": 6850, + "detailed": 6851, + "behalf": 6852, + "drivers": 6853, + "unfortunately": 6854, + "obtain": 6855, + "##lis": 6856, + "rocky": 6857, + "##dae": 6858, + "siege": 6859, + "friendship": 6860, + "honey": 6861, + "##rian": 6862, + "1861": 6863, + "amy": 6864, + "hang": 6865, + "posted": 6866, + "governments": 6867, + "collins": 6868, + "respond": 6869, + "wildlife": 6870, + "preferred": 6871, + "operator": 6872, + "##po": 6873, + "laura": 6874, + "pregnant": 6875, + "videos": 6876, + "dennis": 6877, + "suspected": 6878, + "boots": 6879, + "instantly": 6880, + "weird": 6881, + "automatic": 6882, + "businessman": 6883, + "alleged": 6884, + "placing": 6885, + "throwing": 6886, + "ph": 6887, + "mood": 6888, + "1862": 6889, + "perry": 6890, + "venue": 6891, + "jet": 6892, + "remainder": 6893, + "##lli": 6894, + "##ci": 6895, + "passion": 6896, + "biological": 6897, + "boyfriend": 6898, + "1863": 6899, + "dirt": 6900, + "buffalo": 6901, + "ron": 6902, + "segment": 6903, + "fa": 6904, + "abuse": 6905, + "##era": 6906, + "genre": 6907, + "thrown": 6908, + "stroke": 6909, + "colored": 6910, + "stress": 6911, + "exercise": 6912, + "displayed": 6913, + "##gen": 6914, + "struggled": 6915, + "##tti": 6916, + "abroad": 6917, + "dramatic": 6918, + "wonderful": 6919, + "thereafter": 6920, + "madrid": 6921, + "component": 6922, + "widespread": 6923, + "##sed": 6924, + "tale": 6925, + "citizen": 6926, + "todd": 6927, + "monday": 6928, + "1886": 6929, + "vancouver": 6930, + "overseas": 6931, + "forcing": 6932, + "crying": 6933, + "descent": 6934, + "##ris": 6935, + "discussed": 6936, + "substantial": 6937, + "ranks": 6938, + "regime": 6939, + "1870": 6940, + "provinces": 6941, + "switch": 6942, + "drum": 6943, + "zane": 6944, + "ted": 6945, + "tribes": 6946, + "proof": 6947, + "lp": 6948, + "cream": 6949, + "researchers": 6950, + "volunteer": 6951, + "manor": 6952, + "silk": 6953, + "milan": 6954, + "donated": 6955, + "allies": 6956, + "venture": 6957, + "principle": 6958, + "delivery": 6959, + "enterprise": 6960, + "##ves": 6961, + "##ans": 6962, + "bars": 6963, + "traditionally": 6964, + "witch": 6965, + "reminded": 6966, + "copper": 6967, + "##uk": 6968, + "pete": 6969, + "inter": 6970, + "links": 6971, + "colin": 6972, + "grinned": 6973, + "elsewhere": 6974, + "competitive": 6975, + "frequent": 6976, + "##oy": 6977, + "scream": 6978, + "##hu": 6979, + "tension": 6980, + "texts": 6981, + "submarine": 6982, + "finnish": 6983, + "defending": 6984, + "defend": 6985, + "pat": 6986, + "detail": 6987, + "1884": 6988, + "affiliated": 6989, + "stuart": 6990, + "themes": 6991, + "villa": 6992, + "periods": 6993, + "tool": 6994, + "belgian": 6995, + "ruling": 6996, + "crimes": 6997, + "answers": 6998, + "folded": 6999, + "licensed": 7000, + "resort": 7001, + "demolished": 7002, + "hans": 7003, + "lucy": 7004, + "1881": 7005, + "lion": 7006, + "traded": 7007, + "photographs": 7008, + "writes": 7009, + "craig": 7010, + "##fa": 7011, + "trials": 7012, + "generated": 7013, + "beth": 7014, + "noble": 7015, + "debt": 7016, + "percentage": 7017, + "yorkshire": 7018, + "erected": 7019, + "ss": 7020, + "viewed": 7021, + "grades": 7022, + "confidence": 7023, + "ceased": 7024, + "islam": 7025, + "telephone": 7026, + "retail": 7027, + "##ible": 7028, + "chile": 7029, + "m²": 7030, + "roberts": 7031, + "sixteen": 7032, + "##ich": 7033, + "commented": 7034, + "hampshire": 7035, + "innocent": 7036, + "dual": 7037, + "pounds": 7038, + "checked": 7039, + "regulations": 7040, + "afghanistan": 7041, + "sung": 7042, + "rico": 7043, + "liberty": 7044, + "assets": 7045, + "bigger": 7046, + "options": 7047, + "angels": 7048, + "relegated": 7049, + "tribute": 7050, + "wells": 7051, + "attending": 7052, + "leaf": 7053, + "##yan": 7054, + "butler": 7055, + "romanian": 7056, + "forum": 7057, + "monthly": 7058, + "lisa": 7059, + "patterns": 7060, + "gmina": 7061, + "##tory": 7062, + "madison": 7063, + "hurricane": 7064, + "rev": 7065, + "##ians": 7066, + "bristol": 7067, + "##ula": 7068, + "elite": 7069, + "valuable": 7070, + "disaster": 7071, + "democracy": 7072, + "awareness": 7073, + "germans": 7074, + "freyja": 7075, + "##ins": 7076, + "loop": 7077, + "absolutely": 7078, + "paying": 7079, + "populations": 7080, + "maine": 7081, + "sole": 7082, + "prayer": 7083, + "spencer": 7084, + "releases": 7085, + "doorway": 7086, + "bull": 7087, + "##ani": 7088, + "lover": 7089, + "midnight": 7090, + "conclusion": 7091, + "##sson": 7092, + "thirteen": 7093, + "lily": 7094, + "mediterranean": 7095, + "##lt": 7096, + "nhl": 7097, + "proud": 7098, + "sample": 7099, + "##hill": 7100, + "drummer": 7101, + "guinea": 7102, + "##ova": 7103, + "murphy": 7104, + "climb": 7105, + "##ston": 7106, + "instant": 7107, + "attributed": 7108, + "horn": 7109, + "ain": 7110, + "railways": 7111, + "steven": 7112, + "##ao": 7113, + "autumn": 7114, + "ferry": 7115, + "opponent": 7116, + "root": 7117, + "traveling": 7118, + "secured": 7119, + "corridor": 7120, + "stretched": 7121, + "tales": 7122, + "sheet": 7123, + "trinity": 7124, + "cattle": 7125, + "helps": 7126, + "indicates": 7127, + "manhattan": 7128, + "murdered": 7129, + "fitted": 7130, + "1882": 7131, + "gentle": 7132, + "grandmother": 7133, + "mines": 7134, + "shocked": 7135, + "vegas": 7136, + "produces": 7137, + "##light": 7138, + "caribbean": 7139, + "##ou": 7140, + "belong": 7141, + "continuous": 7142, + "desperate": 7143, + "drunk": 7144, + "historically": 7145, + "trio": 7146, + "waved": 7147, + "raf": 7148, + "dealing": 7149, + "nathan": 7150, + "bat": 7151, + "murmured": 7152, + "interrupted": 7153, + "residing": 7154, + "scientist": 7155, + "pioneer": 7156, + "harold": 7157, + "aaron": 7158, + "##net": 7159, + "delta": 7160, + "attempting": 7161, + "minority": 7162, + "mini": 7163, + "believes": 7164, + "chorus": 7165, + "tend": 7166, + "lots": 7167, + "eyed": 7168, + "indoor": 7169, + "load": 7170, + "shots": 7171, + "updated": 7172, + "jail": 7173, + "##llo": 7174, + "concerning": 7175, + "connecting": 7176, + "wealth": 7177, + "##ved": 7178, + "slaves": 7179, + "arrive": 7180, + "rangers": 7181, + "sufficient": 7182, + "rebuilt": 7183, + "##wick": 7184, + "cardinal": 7185, + "flood": 7186, + "muhammad": 7187, + "whenever": 7188, + "relation": 7189, + "runners": 7190, + "moral": 7191, + "repair": 7192, + "viewers": 7193, + "arriving": 7194, + "revenge": 7195, + "punk": 7196, + "assisted": 7197, + "bath": 7198, + "fairly": 7199, + "breathe": 7200, + "lists": 7201, + "innings": 7202, + "illustrated": 7203, + "whisper": 7204, + "nearest": 7205, + "voters": 7206, + "clinton": 7207, + "ties": 7208, + "ultimate": 7209, + "screamed": 7210, + "beijing": 7211, + "lions": 7212, + "andre": 7213, + "fictional": 7214, + "gathering": 7215, + "comfort": 7216, + "radar": 7217, + "suitable": 7218, + "dismissed": 7219, + "hms": 7220, + "ban": 7221, + "pine": 7222, + "wrist": 7223, + "atmosphere": 7224, + "voivodeship": 7225, + "bid": 7226, + "timber": 7227, + "##ned": 7228, + "##nan": 7229, + "giants": 7230, + "##ane": 7231, + "cameron": 7232, + "recovery": 7233, + "uss": 7234, + "identical": 7235, + "categories": 7236, + "switched": 7237, + "serbia": 7238, + "laughter": 7239, + "noah": 7240, + "ensemble": 7241, + "therapy": 7242, + "peoples": 7243, + "touching": 7244, + "##off": 7245, + "locally": 7246, + "pearl": 7247, + "platforms": 7248, + "everywhere": 7249, + "ballet": 7250, + "tables": 7251, + "lanka": 7252, + "herbert": 7253, + "outdoor": 7254, + "toured": 7255, + "derek": 7256, + "1883": 7257, + "spaces": 7258, + "contested": 7259, + "swept": 7260, + "1878": 7261, + "exclusive": 7262, + "slight": 7263, + "connections": 7264, + "##dra": 7265, + "winds": 7266, + "prisoner": 7267, + "collective": 7268, + "bangladesh": 7269, + "tube": 7270, + "publicly": 7271, + "wealthy": 7272, + "thai": 7273, + "##ys": 7274, + "isolated": 7275, + "select": 7276, + "##ric": 7277, + "insisted": 7278, + "pen": 7279, + "fortune": 7280, + "ticket": 7281, + "spotted": 7282, + "reportedly": 7283, + "animation": 7284, + "enforcement": 7285, + "tanks": 7286, + "110": 7287, + "decides": 7288, + "wider": 7289, + "lowest": 7290, + "owen": 7291, + "##time": 7292, + "nod": 7293, + "hitting": 7294, + "##hn": 7295, + "gregory": 7296, + "furthermore": 7297, + "magazines": 7298, + "fighters": 7299, + "solutions": 7300, + "##ery": 7301, + "pointing": 7302, + "requested": 7303, + "peru": 7304, + "reed": 7305, + "chancellor": 7306, + "knights": 7307, + "mask": 7308, + "worker": 7309, + "eldest": 7310, + "flames": 7311, + "reduction": 7312, + "1860": 7313, + "volunteers": 7314, + "##tis": 7315, + "reporting": 7316, + "##hl": 7317, + "wire": 7318, + "advisory": 7319, + "endemic": 7320, + "origins": 7321, + "settlers": 7322, + "pursue": 7323, + "knock": 7324, + "consumer": 7325, + "1876": 7326, + "eu": 7327, + "compound": 7328, + "creatures": 7329, + "mansion": 7330, + "sentenced": 7331, + "ivan": 7332, + "deployed": 7333, + "guitars": 7334, + "frowned": 7335, + "involves": 7336, + "mechanism": 7337, + "kilometers": 7338, + "perspective": 7339, + "shops": 7340, + "maps": 7341, + "terminus": 7342, + "duncan": 7343, + "alien": 7344, + "fist": 7345, + "bridges": 7346, + "##pers": 7347, + "heroes": 7348, + "fed": 7349, + "derby": 7350, + "swallowed": 7351, + "##ros": 7352, + "patent": 7353, + "sara": 7354, + "illness": 7355, + "characterized": 7356, + "adventures": 7357, + "slide": 7358, + "hawaii": 7359, + "jurisdiction": 7360, + "##op": 7361, + "organised": 7362, + "##side": 7363, + "adelaide": 7364, + "walks": 7365, + "biology": 7366, + "se": 7367, + "##ties": 7368, + "rogers": 7369, + "swing": 7370, + "tightly": 7371, + "boundaries": 7372, + "##rie": 7373, + "prepare": 7374, + "implementation": 7375, + "stolen": 7376, + "##sha": 7377, + "certified": 7378, + "colombia": 7379, + "edwards": 7380, + "garage": 7381, + "##mm": 7382, + "recalled": 7383, + "##ball": 7384, + "rage": 7385, + "harm": 7386, + "nigeria": 7387, + "breast": 7388, + "##ren": 7389, + "furniture": 7390, + "pupils": 7391, + "settle": 7392, + "##lus": 7393, + "cuba": 7394, + "balls": 7395, + "client": 7396, + "alaska": 7397, + "21st": 7398, + "linear": 7399, + "thrust": 7400, + "celebration": 7401, + "latino": 7402, + "genetic": 7403, + "terror": 7404, + "##cia": 7405, + "##ening": 7406, + "lightning": 7407, + "fee": 7408, + "witness": 7409, + "lodge": 7410, + "establishing": 7411, + "skull": 7412, + "##ique": 7413, + "earning": 7414, + "hood": 7415, + "##ei": 7416, + "rebellion": 7417, + "wang": 7418, + "sporting": 7419, + "warned": 7420, + "missile": 7421, + "devoted": 7422, + "activist": 7423, + "porch": 7424, + "worship": 7425, + "fourteen": 7426, + "package": 7427, + "1871": 7428, + "decorated": 7429, + "##shire": 7430, + "housed": 7431, + "##ock": 7432, + "chess": 7433, + "sailed": 7434, + "doctors": 7435, + "oscar": 7436, + "joan": 7437, + "treat": 7438, + "garcia": 7439, + "harbour": 7440, + "jeremy": 7441, + "##ire": 7442, + "traditions": 7443, + "dominant": 7444, + "jacques": 7445, + "##gon": 7446, + "##wan": 7447, + "relocated": 7448, + "1879": 7449, + "amendment": 7450, + "sized": 7451, + "companion": 7452, + "simultaneously": 7453, + "volleyball": 7454, + "spun": 7455, + "acre": 7456, + "increases": 7457, + "stopping": 7458, + "loves": 7459, + "belongs": 7460, + "affect": 7461, + "drafted": 7462, + "tossed": 7463, + "scout": 7464, + "battles": 7465, + "1875": 7466, + "filming": 7467, + "shoved": 7468, + "munich": 7469, + "tenure": 7470, + "vertical": 7471, + "romance": 7472, + "pc": 7473, + "##cher": 7474, + "argue": 7475, + "##ical": 7476, + "craft": 7477, + "ranging": 7478, + "www": 7479, + "opens": 7480, + "honest": 7481, + "tyler": 7482, + "yesterday": 7483, + "virtual": 7484, + "##let": 7485, + "muslims": 7486, + "reveal": 7487, + "snake": 7488, + "immigrants": 7489, + "radical": 7490, + "screaming": 7491, + "speakers": 7492, + "firing": 7493, + "saving": 7494, + "belonging": 7495, + "ease": 7496, + "lighting": 7497, + "prefecture": 7498, + "blame": 7499, + "farmer": 7500, + "hungry": 7501, + "grows": 7502, + "rubbed": 7503, + "beam": 7504, + "sur": 7505, + "subsidiary": 7506, + "##cha": 7507, + "armenian": 7508, + "sao": 7509, + "dropping": 7510, + "conventional": 7511, + "##fer": 7512, + "microsoft": 7513, + "reply": 7514, + "qualify": 7515, + "spots": 7516, + "1867": 7517, + "sweat": 7518, + "festivals": 7519, + "##ken": 7520, + "immigration": 7521, + "physician": 7522, + "discover": 7523, + "exposure": 7524, + "sandy": 7525, + "explanation": 7526, + "isaac": 7527, + "implemented": 7528, + "##fish": 7529, + "hart": 7530, + "initiated": 7531, + "connect": 7532, + "stakes": 7533, + "presents": 7534, + "heights": 7535, + "householder": 7536, + "pleased": 7537, + "tourist": 7538, + "regardless": 7539, + "slip": 7540, + "closest": 7541, + "##ction": 7542, + "surely": 7543, + "sultan": 7544, + "brings": 7545, + "riley": 7546, + "preparation": 7547, + "aboard": 7548, + "slammed": 7549, + "baptist": 7550, + "experiment": 7551, + "ongoing": 7552, + "interstate": 7553, + "organic": 7554, + "playoffs": 7555, + "##ika": 7556, + "1877": 7557, + "130": 7558, + "##tar": 7559, + "hindu": 7560, + "error": 7561, + "tours": 7562, + "tier": 7563, + "plenty": 7564, + "arrangements": 7565, + "talks": 7566, + "trapped": 7567, + "excited": 7568, + "sank": 7569, + "ho": 7570, + "athens": 7571, + "1872": 7572, + "denver": 7573, + "welfare": 7574, + "suburb": 7575, + "athletes": 7576, + "trick": 7577, + "diverse": 7578, + "belly": 7579, + "exclusively": 7580, + "yelled": 7581, + "1868": 7582, + "##med": 7583, + "conversion": 7584, + "##ette": 7585, + "1874": 7586, + "internationally": 7587, + "computers": 7588, + "conductor": 7589, + "abilities": 7590, + "sensitive": 7591, + "hello": 7592, + "dispute": 7593, + "measured": 7594, + "globe": 7595, + "rocket": 7596, + "prices": 7597, + "amsterdam": 7598, + "flights": 7599, + "tigers": 7600, + "inn": 7601, + "municipalities": 7602, + "emotion": 7603, + "references": 7604, + "3d": 7605, + "##mus": 7606, + "explains": 7607, + "airlines": 7608, + "manufactured": 7609, + "pm": 7610, + "archaeological": 7611, + "1873": 7612, + "interpretation": 7613, + "devon": 7614, + "comment": 7615, + "##ites": 7616, + "settlements": 7617, + "kissing": 7618, + "absolute": 7619, + "improvement": 7620, + "suite": 7621, + "impressed": 7622, + "barcelona": 7623, + "sullivan": 7624, + "jefferson": 7625, + "towers": 7626, + "jesse": 7627, + "julie": 7628, + "##tin": 7629, + "##lu": 7630, + "grandson": 7631, + "hi": 7632, + "gauge": 7633, + "regard": 7634, + "rings": 7635, + "interviews": 7636, + "trace": 7637, + "raymond": 7638, + "thumb": 7639, + "departments": 7640, + "burns": 7641, + "serial": 7642, + "bulgarian": 7643, + "scores": 7644, + "demonstrated": 7645, + "##ix": 7646, + "1866": 7647, + "kyle": 7648, + "alberta": 7649, + "underneath": 7650, + "romanized": 7651, + "##ward": 7652, + "relieved": 7653, + "acquisition": 7654, + "phrase": 7655, + "cliff": 7656, + "reveals": 7657, + "han": 7658, + "cuts": 7659, + "merger": 7660, + "custom": 7661, + "##dar": 7662, + "nee": 7663, + "gilbert": 7664, + "graduation": 7665, + "##nts": 7666, + "assessment": 7667, + "cafe": 7668, + "difficulty": 7669, + "demands": 7670, + "swung": 7671, + "democrat": 7672, + "jennifer": 7673, + "commons": 7674, + "1940s": 7675, + "grove": 7676, + "##yo": 7677, + "completing": 7678, + "focuses": 7679, + "sum": 7680, + "substitute": 7681, + "bearing": 7682, + "stretch": 7683, + "reception": 7684, + "##py": 7685, + "reflected": 7686, + "essentially": 7687, + "destination": 7688, + "pairs": 7689, + "##ched": 7690, + "survival": 7691, + "resource": 7692, + "##bach": 7693, + "promoting": 7694, + "doubles": 7695, + "messages": 7696, + "tear": 7697, + "##down": 7698, + "##fully": 7699, + "parade": 7700, + "florence": 7701, + "harvey": 7702, + "incumbent": 7703, + "partial": 7704, + "framework": 7705, + "900": 7706, + "pedro": 7707, + "frozen": 7708, + "procedure": 7709, + "olivia": 7710, + "controls": 7711, + "##mic": 7712, + "shelter": 7713, + "personally": 7714, + "temperatures": 7715, + "##od": 7716, + "brisbane": 7717, + "tested": 7718, + "sits": 7719, + "marble": 7720, + "comprehensive": 7721, + "oxygen": 7722, + "leonard": 7723, + "##kov": 7724, + "inaugural": 7725, + "iranian": 7726, + "referring": 7727, + "quarters": 7728, + "attitude": 7729, + "##ivity": 7730, + "mainstream": 7731, + "lined": 7732, + "mars": 7733, + "dakota": 7734, + "norfolk": 7735, + "unsuccessful": 7736, + "##°": 7737, + "explosion": 7738, + "helicopter": 7739, + "congressional": 7740, + "##sing": 7741, + "inspector": 7742, + "bitch": 7743, + "seal": 7744, + "departed": 7745, + "divine": 7746, + "##ters": 7747, + "coaching": 7748, + "examination": 7749, + "punishment": 7750, + "manufacturer": 7751, + "sink": 7752, + "columns": 7753, + "unincorporated": 7754, + "signals": 7755, + "nevada": 7756, + "squeezed": 7757, + "dylan": 7758, + "dining": 7759, + "photos": 7760, + "martial": 7761, + "manuel": 7762, + "eighteen": 7763, + "elevator": 7764, + "brushed": 7765, + "plates": 7766, + "ministers": 7767, + "ivy": 7768, + "congregation": 7769, + "##len": 7770, + "slept": 7771, + "specialized": 7772, + "taxes": 7773, + "curve": 7774, + "restricted": 7775, + "negotiations": 7776, + "likes": 7777, + "statistical": 7778, + "arnold": 7779, + "inspiration": 7780, + "execution": 7781, + "bold": 7782, + "intermediate": 7783, + "significance": 7784, + "margin": 7785, + "ruler": 7786, + "wheels": 7787, + "gothic": 7788, + "intellectual": 7789, + "dependent": 7790, + "listened": 7791, + "eligible": 7792, + "buses": 7793, + "widow": 7794, + "syria": 7795, + "earn": 7796, + "cincinnati": 7797, + "collapsed": 7798, + "recipient": 7799, + "secrets": 7800, + "accessible": 7801, + "philippine": 7802, + "maritime": 7803, + "goddess": 7804, + "clerk": 7805, + "surrender": 7806, + "breaks": 7807, + "playoff": 7808, + "database": 7809, + "##ified": 7810, + "##lon": 7811, + "ideal": 7812, + "beetle": 7813, + "aspect": 7814, + "soap": 7815, + "regulation": 7816, + "strings": 7817, + "expand": 7818, + "anglo": 7819, + "shorter": 7820, + "crosses": 7821, + "retreat": 7822, + "tough": 7823, + "coins": 7824, + "wallace": 7825, + "directions": 7826, + "pressing": 7827, + "##oon": 7828, + "shipping": 7829, + "locomotives": 7830, + "comparison": 7831, + "topics": 7832, + "nephew": 7833, + "##mes": 7834, + "distinction": 7835, + "honors": 7836, + "travelled": 7837, + "sierra": 7838, + "ibn": 7839, + "##over": 7840, + "fortress": 7841, + "sa": 7842, + "recognised": 7843, + "carved": 7844, + "1869": 7845, + "clients": 7846, + "##dan": 7847, + "intent": 7848, + "##mar": 7849, + "coaches": 7850, + "describing": 7851, + "bread": 7852, + "##ington": 7853, + "beaten": 7854, + "northwestern": 7855, + "##ona": 7856, + "merit": 7857, + "youtube": 7858, + "collapse": 7859, + "challenges": 7860, + "em": 7861, + "historians": 7862, + "objective": 7863, + "submitted": 7864, + "virus": 7865, + "attacking": 7866, + "drake": 7867, + "assume": 7868, + "##ere": 7869, + "diseases": 7870, + "marc": 7871, + "stem": 7872, + "leeds": 7873, + "##cus": 7874, + "##ab": 7875, + "farming": 7876, + "glasses": 7877, + "##lock": 7878, + "visits": 7879, + "nowhere": 7880, + "fellowship": 7881, + "relevant": 7882, + "carries": 7883, + "restaurants": 7884, + "experiments": 7885, + "101": 7886, + "constantly": 7887, + "bases": 7888, + "targets": 7889, + "shah": 7890, + "tenth": 7891, + "opponents": 7892, + "verse": 7893, + "territorial": 7894, + "##ira": 7895, + "writings": 7896, + "corruption": 7897, + "##hs": 7898, + "instruction": 7899, + "inherited": 7900, + "reverse": 7901, + "emphasis": 7902, + "##vic": 7903, + "employee": 7904, + "arch": 7905, + "keeps": 7906, + "rabbi": 7907, + "watson": 7908, + "payment": 7909, + "uh": 7910, + "##ala": 7911, + "nancy": 7912, + "##tre": 7913, + "venice": 7914, + "fastest": 7915, + "sexy": 7916, + "banned": 7917, + "adrian": 7918, + "properly": 7919, + "ruth": 7920, + "touchdown": 7921, + "dollar": 7922, + "boards": 7923, + "metre": 7924, + "circles": 7925, + "edges": 7926, + "favour": 7927, + "comments": 7928, + "ok": 7929, + "travels": 7930, + "liberation": 7931, + "scattered": 7932, + "firmly": 7933, + "##ular": 7934, + "holland": 7935, + "permitted": 7936, + "diesel": 7937, + "kenya": 7938, + "den": 7939, + "originated": 7940, + "##ral": 7941, + "demons": 7942, + "resumed": 7943, + "dragged": 7944, + "rider": 7945, + "##rus": 7946, + "servant": 7947, + "blinked": 7948, + "extend": 7949, + "torn": 7950, + "##ias": 7951, + "##sey": 7952, + "input": 7953, + "meal": 7954, + "everybody": 7955, + "cylinder": 7956, + "kinds": 7957, + "camps": 7958, + "##fe": 7959, + "bullet": 7960, + "logic": 7961, + "##wn": 7962, + "croatian": 7963, + "evolved": 7964, + "healthy": 7965, + "fool": 7966, + "chocolate": 7967, + "wise": 7968, + "preserve": 7969, + "pradesh": 7970, + "##ess": 7971, + "respective": 7972, + "1850": 7973, + "##ew": 7974, + "chicken": 7975, + "artificial": 7976, + "gross": 7977, + "corresponding": 7978, + "convicted": 7979, + "cage": 7980, + "caroline": 7981, + "dialogue": 7982, + "##dor": 7983, + "narrative": 7984, + "stranger": 7985, + "mario": 7986, + "br": 7987, + "christianity": 7988, + "failing": 7989, + "trent": 7990, + "commanding": 7991, + "buddhist": 7992, + "1848": 7993, + "maurice": 7994, + "focusing": 7995, + "yale": 7996, + "bike": 7997, + "altitude": 7998, + "##ering": 7999, + "mouse": 8000, + "revised": 8001, + "##sley": 8002, + "veteran": 8003, + "##ig": 8004, + "pulls": 8005, + "theology": 8006, + "crashed": 8007, + "campaigns": 8008, + "legion": 8009, + "##ability": 8010, + "drag": 8011, + "excellence": 8012, + "customer": 8013, + "cancelled": 8014, + "intensity": 8015, + "excuse": 8016, + "##lar": 8017, + "liga": 8018, + "participating": 8019, + "contributing": 8020, + "printing": 8021, + "##burn": 8022, + "variable": 8023, + "##rk": 8024, + "curious": 8025, + "bin": 8026, + "legacy": 8027, + "renaissance": 8028, + "##my": 8029, + "symptoms": 8030, + "binding": 8031, + "vocalist": 8032, + "dancer": 8033, + "##nie": 8034, + "grammar": 8035, + "gospel": 8036, + "democrats": 8037, + "ya": 8038, + "enters": 8039, + "sc": 8040, + "diplomatic": 8041, + "hitler": 8042, + "##ser": 8043, + "clouds": 8044, + "mathematical": 8045, + "quit": 8046, + "defended": 8047, + "oriented": 8048, + "##heim": 8049, + "fundamental": 8050, + "hardware": 8051, + "impressive": 8052, + "equally": 8053, + "convince": 8054, + "confederate": 8055, + "guilt": 8056, + "chuck": 8057, + "sliding": 8058, + "##ware": 8059, + "magnetic": 8060, + "narrowed": 8061, + "petersburg": 8062, + "bulgaria": 8063, + "otto": 8064, + "phd": 8065, + "skill": 8066, + "##ama": 8067, + "reader": 8068, + "hopes": 8069, + "pitcher": 8070, + "reservoir": 8071, + "hearts": 8072, + "automatically": 8073, + "expecting": 8074, + "mysterious": 8075, + "bennett": 8076, + "extensively": 8077, + "imagined": 8078, + "seeds": 8079, + "monitor": 8080, + "fix": 8081, + "##ative": 8082, + "journalism": 8083, + "struggling": 8084, + "signature": 8085, + "ranch": 8086, + "encounter": 8087, + "photographer": 8088, + "observation": 8089, + "protests": 8090, + "##pin": 8091, + "influences": 8092, + "##hr": 8093, + "calendar": 8094, + "##all": 8095, + "cruz": 8096, + "croatia": 8097, + "locomotive": 8098, + "hughes": 8099, + "naturally": 8100, + "shakespeare": 8101, + "basement": 8102, + "hook": 8103, + "uncredited": 8104, + "faded": 8105, + "theories": 8106, + "approaches": 8107, + "dare": 8108, + "phillips": 8109, + "filling": 8110, + "fury": 8111, + "obama": 8112, + "##ain": 8113, + "efficient": 8114, + "arc": 8115, + "deliver": 8116, + "min": 8117, + "raid": 8118, + "breeding": 8119, + "inducted": 8120, + "leagues": 8121, + "efficiency": 8122, + "axis": 8123, + "montana": 8124, + "eagles": 8125, + "##ked": 8126, + "supplied": 8127, + "instructions": 8128, + "karen": 8129, + "picking": 8130, + "indicating": 8131, + "trap": 8132, + "anchor": 8133, + "practically": 8134, + "christians": 8135, + "tomb": 8136, + "vary": 8137, + "occasional": 8138, + "electronics": 8139, + "lords": 8140, + "readers": 8141, + "newcastle": 8142, + "faint": 8143, + "innovation": 8144, + "collect": 8145, + "situations": 8146, + "engagement": 8147, + "160": 8148, + "claude": 8149, + "mixture": 8150, + "##feld": 8151, + "peer": 8152, + "tissue": 8153, + "logo": 8154, + "lean": 8155, + "##ration": 8156, + "°f": 8157, + "floors": 8158, + "##ven": 8159, + "architects": 8160, + "reducing": 8161, + "##our": 8162, + "##ments": 8163, + "rope": 8164, + "1859": 8165, + "ottawa": 8166, + "##har": 8167, + "samples": 8168, + "banking": 8169, + "declaration": 8170, + "proteins": 8171, + "resignation": 8172, + "francois": 8173, + "saudi": 8174, + "advocate": 8175, + "exhibited": 8176, + "armor": 8177, + "twins": 8178, + "divorce": 8179, + "##ras": 8180, + "abraham": 8181, + "reviewed": 8182, + "jo": 8183, + "temporarily": 8184, + "matrix": 8185, + "physically": 8186, + "pulse": 8187, + "curled": 8188, + "##ena": 8189, + "difficulties": 8190, + "bengal": 8191, + "usage": 8192, + "##ban": 8193, + "annie": 8194, + "riders": 8195, + "certificate": 8196, + "##pi": 8197, + "holes": 8198, + "warsaw": 8199, + "distinctive": 8200, + "jessica": 8201, + "##mon": 8202, + "mutual": 8203, + "1857": 8204, + "customs": 8205, + "circular": 8206, + "eugene": 8207, + "removal": 8208, + "loaded": 8209, + "mere": 8210, + "vulnerable": 8211, + "depicted": 8212, + "generations": 8213, + "dame": 8214, + "heir": 8215, + "enormous": 8216, + "lightly": 8217, + "climbing": 8218, + "pitched": 8219, + "lessons": 8220, + "pilots": 8221, + "nepal": 8222, + "ram": 8223, + "google": 8224, + "preparing": 8225, + "brad": 8226, + "louise": 8227, + "renowned": 8228, + "##₂": 8229, + "liam": 8230, + "##ably": 8231, + "plaza": 8232, + "shaw": 8233, + "sophie": 8234, + "brilliant": 8235, + "bills": 8236, + "##bar": 8237, + "##nik": 8238, + "fucking": 8239, + "mainland": 8240, + "server": 8241, + "pleasant": 8242, + "seized": 8243, + "veterans": 8244, + "jerked": 8245, + "fail": 8246, + "beta": 8247, + "brush": 8248, + "radiation": 8249, + "stored": 8250, + "warmth": 8251, + "southeastern": 8252, + "nate": 8253, + "sin": 8254, + "raced": 8255, + "berkeley": 8256, + "joke": 8257, + "athlete": 8258, + "designation": 8259, + "trunk": 8260, + "##low": 8261, + "roland": 8262, + "qualification": 8263, + "archives": 8264, + "heels": 8265, + "artwork": 8266, + "receives": 8267, + "judicial": 8268, + "reserves": 8269, + "##bed": 8270, + "woke": 8271, + "installation": 8272, + "abu": 8273, + "floating": 8274, + "fake": 8275, + "lesser": 8276, + "excitement": 8277, + "interface": 8278, + "concentrated": 8279, + "addressed": 8280, + "characteristic": 8281, + "amanda": 8282, + "saxophone": 8283, + "monk": 8284, + "auto": 8285, + "##bus": 8286, + "releasing": 8287, + "egg": 8288, + "dies": 8289, + "interaction": 8290, + "defender": 8291, + "ce": 8292, + "outbreak": 8293, + "glory": 8294, + "loving": 8295, + "##bert": 8296, + "sequel": 8297, + "consciousness": 8298, + "http": 8299, + "awake": 8300, + "ski": 8301, + "enrolled": 8302, + "##ress": 8303, + "handling": 8304, + "rookie": 8305, + "brow": 8306, + "somebody": 8307, + "biography": 8308, + "warfare": 8309, + "amounts": 8310, + "contracts": 8311, + "presentation": 8312, + "fabric": 8313, + "dissolved": 8314, + "challenged": 8315, + "meter": 8316, + "psychological": 8317, + "lt": 8318, + "elevated": 8319, + "rally": 8320, + "accurate": 8321, + "##tha": 8322, + "hospitals": 8323, + "undergraduate": 8324, + "specialist": 8325, + "venezuela": 8326, + "exhibit": 8327, + "shed": 8328, + "nursing": 8329, + "protestant": 8330, + "fluid": 8331, + "structural": 8332, + "footage": 8333, + "jared": 8334, + "consistent": 8335, + "prey": 8336, + "##ska": 8337, + "succession": 8338, + "reflect": 8339, + "exile": 8340, + "lebanon": 8341, + "wiped": 8342, + "suspect": 8343, + "shanghai": 8344, + "resting": 8345, + "integration": 8346, + "preservation": 8347, + "marvel": 8348, + "variant": 8349, + "pirates": 8350, + "sheep": 8351, + "rounded": 8352, + "capita": 8353, + "sailing": 8354, + "colonies": 8355, + "manuscript": 8356, + "deemed": 8357, + "variations": 8358, + "clarke": 8359, + "functional": 8360, + "emerging": 8361, + "boxing": 8362, + "relaxed": 8363, + "curse": 8364, + "azerbaijan": 8365, + "heavyweight": 8366, + "nickname": 8367, + "editorial": 8368, + "rang": 8369, + "grid": 8370, + "tightened": 8371, + "earthquake": 8372, + "flashed": 8373, + "miguel": 8374, + "rushing": 8375, + "##ches": 8376, + "improvements": 8377, + "boxes": 8378, + "brooks": 8379, + "180": 8380, + "consumption": 8381, + "molecular": 8382, + "felix": 8383, + "societies": 8384, + "repeatedly": 8385, + "variation": 8386, + "aids": 8387, + "civic": 8388, + "graphics": 8389, + "professionals": 8390, + "realm": 8391, + "autonomous": 8392, + "receiver": 8393, + "delayed": 8394, + "workshop": 8395, + "militia": 8396, + "chairs": 8397, + "trump": 8398, + "canyon": 8399, + "##point": 8400, + "harsh": 8401, + "extending": 8402, + "lovely": 8403, + "happiness": 8404, + "##jan": 8405, + "stake": 8406, + "eyebrows": 8407, + "embassy": 8408, + "wellington": 8409, + "hannah": 8410, + "##ella": 8411, + "sony": 8412, + "corners": 8413, + "bishops": 8414, + "swear": 8415, + "cloth": 8416, + "contents": 8417, + "xi": 8418, + "namely": 8419, + "commenced": 8420, + "1854": 8421, + "stanford": 8422, + "nashville": 8423, + "courage": 8424, + "graphic": 8425, + "commitment": 8426, + "garrison": 8427, + "##bin": 8428, + "hamlet": 8429, + "clearing": 8430, + "rebels": 8431, + "attraction": 8432, + "literacy": 8433, + "cooking": 8434, + "ruins": 8435, + "temples": 8436, + "jenny": 8437, + "humanity": 8438, + "celebrate": 8439, + "hasn": 8440, + "freight": 8441, + "sixty": 8442, + "rebel": 8443, + "bastard": 8444, + "##art": 8445, + "newton": 8446, + "##ada": 8447, + "deer": 8448, + "##ges": 8449, + "##ching": 8450, + "smiles": 8451, + "delaware": 8452, + "singers": 8453, + "##ets": 8454, + "approaching": 8455, + "assists": 8456, + "flame": 8457, + "##ph": 8458, + "boulevard": 8459, + "barrel": 8460, + "planted": 8461, + "##ome": 8462, + "pursuit": 8463, + "##sia": 8464, + "consequences": 8465, + "posts": 8466, + "shallow": 8467, + "invitation": 8468, + "rode": 8469, + "depot": 8470, + "ernest": 8471, + "kane": 8472, + "rod": 8473, + "concepts": 8474, + "preston": 8475, + "topic": 8476, + "chambers": 8477, + "striking": 8478, + "blast": 8479, + "arrives": 8480, + "descendants": 8481, + "montgomery": 8482, + "ranges": 8483, + "worlds": 8484, + "##lay": 8485, + "##ari": 8486, + "span": 8487, + "chaos": 8488, + "praise": 8489, + "##ag": 8490, + "fewer": 8491, + "1855": 8492, + "sanctuary": 8493, + "mud": 8494, + "fbi": 8495, + "##ions": 8496, + "programmes": 8497, + "maintaining": 8498, + "unity": 8499, + "harper": 8500, + "bore": 8501, + "handsome": 8502, + "closure": 8503, + "tournaments": 8504, + "thunder": 8505, + "nebraska": 8506, + "linda": 8507, + "facade": 8508, + "puts": 8509, + "satisfied": 8510, + "argentine": 8511, + "dale": 8512, + "cork": 8513, + "dome": 8514, + "panama": 8515, + "##yl": 8516, + "1858": 8517, + "tasks": 8518, + "experts": 8519, + "##ates": 8520, + "feeding": 8521, + "equation": 8522, + "##las": 8523, + "##ida": 8524, + "##tu": 8525, + "engage": 8526, + "bryan": 8527, + "##ax": 8528, + "um": 8529, + "quartet": 8530, + "melody": 8531, + "disbanded": 8532, + "sheffield": 8533, + "blocked": 8534, + "gasped": 8535, + "delay": 8536, + "kisses": 8537, + "maggie": 8538, + "connects": 8539, + "##non": 8540, + "sts": 8541, + "poured": 8542, + "creator": 8543, + "publishers": 8544, + "##we": 8545, + "guided": 8546, + "ellis": 8547, + "extinct": 8548, + "hug": 8549, + "gaining": 8550, + "##ord": 8551, + "complicated": 8552, + "##bility": 8553, + "poll": 8554, + "clenched": 8555, + "investigate": 8556, + "##use": 8557, + "thereby": 8558, + "quantum": 8559, + "spine": 8560, + "cdp": 8561, + "humor": 8562, + "kills": 8563, + "administered": 8564, + "semifinals": 8565, + "##du": 8566, + "encountered": 8567, + "ignore": 8568, + "##bu": 8569, + "commentary": 8570, + "##maker": 8571, + "bother": 8572, + "roosevelt": 8573, + "140": 8574, + "plains": 8575, + "halfway": 8576, + "flowing": 8577, + "cultures": 8578, + "crack": 8579, + "imprisoned": 8580, + "neighboring": 8581, + "airline": 8582, + "##ses": 8583, + "##view": 8584, + "##mate": 8585, + "##ec": 8586, + "gather": 8587, + "wolves": 8588, + "marathon": 8589, + "transformed": 8590, + "##ill": 8591, + "cruise": 8592, + "organisations": 8593, + "carol": 8594, + "punch": 8595, + "exhibitions": 8596, + "numbered": 8597, + "alarm": 8598, + "ratings": 8599, + "daddy": 8600, + "silently": 8601, + "##stein": 8602, + "queens": 8603, + "colours": 8604, + "impression": 8605, + "guidance": 8606, + "liu": 8607, + "tactical": 8608, + "##rat": 8609, + "marshal": 8610, + "della": 8611, + "arrow": 8612, + "##ings": 8613, + "rested": 8614, + "feared": 8615, + "tender": 8616, + "owns": 8617, + "bitter": 8618, + "advisor": 8619, + "escort": 8620, + "##ides": 8621, + "spare": 8622, + "farms": 8623, + "grants": 8624, + "##ene": 8625, + "dragons": 8626, + "encourage": 8627, + "colleagues": 8628, + "cameras": 8629, + "##und": 8630, + "sucked": 8631, + "pile": 8632, + "spirits": 8633, + "prague": 8634, + "statements": 8635, + "suspension": 8636, + "landmark": 8637, + "fence": 8638, + "torture": 8639, + "recreation": 8640, + "bags": 8641, + "permanently": 8642, + "survivors": 8643, + "pond": 8644, + "spy": 8645, + "predecessor": 8646, + "bombing": 8647, + "coup": 8648, + "##og": 8649, + "protecting": 8650, + "transformation": 8651, + "glow": 8652, + "##lands": 8653, + "##book": 8654, + "dug": 8655, + "priests": 8656, + "andrea": 8657, + "feat": 8658, + "barn": 8659, + "jumping": 8660, + "##chen": 8661, + "##ologist": 8662, + "##con": 8663, + "casualties": 8664, + "stern": 8665, + "auckland": 8666, + "pipe": 8667, + "serie": 8668, + "revealing": 8669, + "ba": 8670, + "##bel": 8671, + "trevor": 8672, + "mercy": 8673, + "spectrum": 8674, + "yang": 8675, + "consist": 8676, + "governing": 8677, + "collaborated": 8678, + "possessed": 8679, + "epic": 8680, + "comprises": 8681, + "blew": 8682, + "shane": 8683, + "##ack": 8684, + "lopez": 8685, + "honored": 8686, + "magical": 8687, + "sacrifice": 8688, + "judgment": 8689, + "perceived": 8690, + "hammer": 8691, + "mtv": 8692, + "baronet": 8693, + "tune": 8694, + "das": 8695, + "missionary": 8696, + "sheets": 8697, + "350": 8698, + "neutral": 8699, + "oral": 8700, + "threatening": 8701, + "attractive": 8702, + "shade": 8703, + "aims": 8704, + "seminary": 8705, + "##master": 8706, + "estates": 8707, + "1856": 8708, + "michel": 8709, + "wounds": 8710, + "refugees": 8711, + "manufacturers": 8712, + "##nic": 8713, + "mercury": 8714, + "syndrome": 8715, + "porter": 8716, + "##iya": 8717, + "##din": 8718, + "hamburg": 8719, + "identification": 8720, + "upstairs": 8721, + "purse": 8722, + "widened": 8723, + "pause": 8724, + "cared": 8725, + "breathed": 8726, + "affiliate": 8727, + "santiago": 8728, + "prevented": 8729, + "celtic": 8730, + "fisher": 8731, + "125": 8732, + "recruited": 8733, + "byzantine": 8734, + "reconstruction": 8735, + "farther": 8736, + "##mp": 8737, + "diet": 8738, + "sake": 8739, + "au": 8740, + "spite": 8741, + "sensation": 8742, + "##ert": 8743, + "blank": 8744, + "separation": 8745, + "105": 8746, + "##hon": 8747, + "vladimir": 8748, + "armies": 8749, + "anime": 8750, + "##lie": 8751, + "accommodate": 8752, + "orbit": 8753, + "cult": 8754, + "sofia": 8755, + "archive": 8756, + "##ify": 8757, + "##box": 8758, + "founders": 8759, + "sustained": 8760, + "disorder": 8761, + "honours": 8762, + "northeastern": 8763, + "mia": 8764, + "crops": 8765, + "violet": 8766, + "threats": 8767, + "blanket": 8768, + "fires": 8769, + "canton": 8770, + "followers": 8771, + "southwestern": 8772, + "prototype": 8773, + "voyage": 8774, + "assignment": 8775, + "altered": 8776, + "moderate": 8777, + "protocol": 8778, + "pistol": 8779, + "##eo": 8780, + "questioned": 8781, + "brass": 8782, + "lifting": 8783, + "1852": 8784, + "math": 8785, + "authored": 8786, + "##ual": 8787, + "doug": 8788, + "dimensional": 8789, + "dynamic": 8790, + "##san": 8791, + "1851": 8792, + "pronounced": 8793, + "grateful": 8794, + "quest": 8795, + "uncomfortable": 8796, + "boom": 8797, + "presidency": 8798, + "stevens": 8799, + "relating": 8800, + "politicians": 8801, + "chen": 8802, + "barrier": 8803, + "quinn": 8804, + "diana": 8805, + "mosque": 8806, + "tribal": 8807, + "cheese": 8808, + "palmer": 8809, + "portions": 8810, + "sometime": 8811, + "chester": 8812, + "treasure": 8813, + "wu": 8814, + "bend": 8815, + "download": 8816, + "millions": 8817, + "reforms": 8818, + "registration": 8819, + "##osa": 8820, + "consequently": 8821, + "monitoring": 8822, + "ate": 8823, + "preliminary": 8824, + "brandon": 8825, + "invented": 8826, + "ps": 8827, + "eaten": 8828, + "exterior": 8829, + "intervention": 8830, + "ports": 8831, + "documented": 8832, + "log": 8833, + "displays": 8834, + "lecture": 8835, + "sally": 8836, + "favourite": 8837, + "##itz": 8838, + "vermont": 8839, + "lo": 8840, + "invisible": 8841, + "isle": 8842, + "breed": 8843, + "##ator": 8844, + "journalists": 8845, + "relay": 8846, + "speaks": 8847, + "backward": 8848, + "explore": 8849, + "midfielder": 8850, + "actively": 8851, + "stefan": 8852, + "procedures": 8853, + "cannon": 8854, + "blond": 8855, + "kenneth": 8856, + "centered": 8857, + "servants": 8858, + "chains": 8859, + "libraries": 8860, + "malcolm": 8861, + "essex": 8862, + "henri": 8863, + "slavery": 8864, + "##hal": 8865, + "facts": 8866, + "fairy": 8867, + "coached": 8868, + "cassie": 8869, + "cats": 8870, + "washed": 8871, + "cop": 8872, + "##fi": 8873, + "announcement": 8874, + "item": 8875, + "2000s": 8876, + "vinyl": 8877, + "activated": 8878, + "marco": 8879, + "frontier": 8880, + "growled": 8881, + "curriculum": 8882, + "##das": 8883, + "loyal": 8884, + "accomplished": 8885, + "leslie": 8886, + "ritual": 8887, + "kenny": 8888, + "##00": 8889, + "vii": 8890, + "napoleon": 8891, + "hollow": 8892, + "hybrid": 8893, + "jungle": 8894, + "stationed": 8895, + "friedrich": 8896, + "counted": 8897, + "##ulated": 8898, + "platinum": 8899, + "theatrical": 8900, + "seated": 8901, + "col": 8902, + "rubber": 8903, + "glen": 8904, + "1840": 8905, + "diversity": 8906, + "healing": 8907, + "extends": 8908, + "id": 8909, + "provisions": 8910, + "administrator": 8911, + "columbus": 8912, + "##oe": 8913, + "tributary": 8914, + "te": 8915, + "assured": 8916, + "org": 8917, + "##uous": 8918, + "prestigious": 8919, + "examined": 8920, + "lectures": 8921, + "grammy": 8922, + "ronald": 8923, + "associations": 8924, + "bailey": 8925, + "allan": 8926, + "essays": 8927, + "flute": 8928, + "believing": 8929, + "consultant": 8930, + "proceedings": 8931, + "travelling": 8932, + "1853": 8933, + "kit": 8934, + "kerala": 8935, + "yugoslavia": 8936, + "buddy": 8937, + "methodist": 8938, + "##ith": 8939, + "burial": 8940, + "centres": 8941, + "batman": 8942, + "##nda": 8943, + "discontinued": 8944, + "bo": 8945, + "dock": 8946, + "stockholm": 8947, + "lungs": 8948, + "severely": 8949, + "##nk": 8950, + "citing": 8951, + "manga": 8952, + "##ugh": 8953, + "steal": 8954, + "mumbai": 8955, + "iraqi": 8956, + "robot": 8957, + "celebrity": 8958, + "bride": 8959, + "broadcasts": 8960, + "abolished": 8961, + "pot": 8962, + "joel": 8963, + "overhead": 8964, + "franz": 8965, + "packed": 8966, + "reconnaissance": 8967, + "johann": 8968, + "acknowledged": 8969, + "introduce": 8970, + "handled": 8971, + "doctorate": 8972, + "developments": 8973, + "drinks": 8974, + "alley": 8975, + "palestine": 8976, + "##nis": 8977, + "##aki": 8978, + "proceeded": 8979, + "recover": 8980, + "bradley": 8981, + "grain": 8982, + "patch": 8983, + "afford": 8984, + "infection": 8985, + "nationalist": 8986, + "legendary": 8987, + "##ath": 8988, + "interchange": 8989, + "virtually": 8990, + "gen": 8991, + "gravity": 8992, + "exploration": 8993, + "amber": 8994, + "vital": 8995, + "wishes": 8996, + "powell": 8997, + "doctrine": 8998, + "elbow": 8999, + "screenplay": 9000, + "##bird": 9001, + "contribute": 9002, + "indonesian": 9003, + "pet": 9004, + "creates": 9005, + "##com": 9006, + "enzyme": 9007, + "kylie": 9008, + "discipline": 9009, + "drops": 9010, + "manila": 9011, + "hunger": 9012, + "##ien": 9013, + "layers": 9014, + "suffer": 9015, + "fever": 9016, + "bits": 9017, + "monica": 9018, + "keyboard": 9019, + "manages": 9020, + "##hood": 9021, + "searched": 9022, + "appeals": 9023, + "##bad": 9024, + "testament": 9025, + "grande": 9026, + "reid": 9027, + "##war": 9028, + "beliefs": 9029, + "congo": 9030, + "##ification": 9031, + "##dia": 9032, + "si": 9033, + "requiring": 9034, + "##via": 9035, + "casey": 9036, + "1849": 9037, + "regret": 9038, + "streak": 9039, + "rape": 9040, + "depends": 9041, + "syrian": 9042, + "sprint": 9043, + "pound": 9044, + "tourists": 9045, + "upcoming": 9046, + "pub": 9047, + "##xi": 9048, + "tense": 9049, + "##els": 9050, + "practiced": 9051, + "echo": 9052, + "nationwide": 9053, + "guild": 9054, + "motorcycle": 9055, + "liz": 9056, + "##zar": 9057, + "chiefs": 9058, + "desired": 9059, + "elena": 9060, + "bye": 9061, + "precious": 9062, + "absorbed": 9063, + "relatives": 9064, + "booth": 9065, + "pianist": 9066, + "##mal": 9067, + "citizenship": 9068, + "exhausted": 9069, + "wilhelm": 9070, + "##ceae": 9071, + "##hed": 9072, + "noting": 9073, + "quarterback": 9074, + "urge": 9075, + "hectares": 9076, + "##gue": 9077, + "ace": 9078, + "holly": 9079, + "##tal": 9080, + "blonde": 9081, + "davies": 9082, + "parked": 9083, + "sustainable": 9084, + "stepping": 9085, + "twentieth": 9086, + "airfield": 9087, + "galaxy": 9088, + "nest": 9089, + "chip": 9090, + "##nell": 9091, + "tan": 9092, + "shaft": 9093, + "paulo": 9094, + "requirement": 9095, + "##zy": 9096, + "paradise": 9097, + "tobacco": 9098, + "trans": 9099, + "renewed": 9100, + "vietnamese": 9101, + "##cker": 9102, + "##ju": 9103, + "suggesting": 9104, + "catching": 9105, + "holmes": 9106, + "enjoying": 9107, + "md": 9108, + "trips": 9109, + "colt": 9110, + "holder": 9111, + "butterfly": 9112, + "nerve": 9113, + "reformed": 9114, + "cherry": 9115, + "bowling": 9116, + "trailer": 9117, + "carriage": 9118, + "goodbye": 9119, + "appreciate": 9120, + "toy": 9121, + "joshua": 9122, + "interactive": 9123, + "enabled": 9124, + "involve": 9125, + "##kan": 9126, + "collar": 9127, + "determination": 9128, + "bunch": 9129, + "facebook": 9130, + "recall": 9131, + "shorts": 9132, + "superintendent": 9133, + "episcopal": 9134, + "frustration": 9135, + "giovanni": 9136, + "nineteenth": 9137, + "laser": 9138, + "privately": 9139, + "array": 9140, + "circulation": 9141, + "##ovic": 9142, + "armstrong": 9143, + "deals": 9144, + "painful": 9145, + "permit": 9146, + "discrimination": 9147, + "##wi": 9148, + "aires": 9149, + "retiring": 9150, + "cottage": 9151, + "ni": 9152, + "##sta": 9153, + "horizon": 9154, + "ellen": 9155, + "jamaica": 9156, + "ripped": 9157, + "fernando": 9158, + "chapters": 9159, + "playstation": 9160, + "patron": 9161, + "lecturer": 9162, + "navigation": 9163, + "behaviour": 9164, + "genes": 9165, + "georgian": 9166, + "export": 9167, + "solomon": 9168, + "rivals": 9169, + "swift": 9170, + "seventeen": 9171, + "rodriguez": 9172, + "princeton": 9173, + "independently": 9174, + "sox": 9175, + "1847": 9176, + "arguing": 9177, + "entity": 9178, + "casting": 9179, + "hank": 9180, + "criteria": 9181, + "oakland": 9182, + "geographic": 9183, + "milwaukee": 9184, + "reflection": 9185, + "expanding": 9186, + "conquest": 9187, + "dubbed": 9188, + "##tv": 9189, + "halt": 9190, + "brave": 9191, + "brunswick": 9192, + "doi": 9193, + "arched": 9194, + "curtis": 9195, + "divorced": 9196, + "predominantly": 9197, + "somerset": 9198, + "streams": 9199, + "ugly": 9200, + "zoo": 9201, + "horrible": 9202, + "curved": 9203, + "buenos": 9204, + "fierce": 9205, + "dictionary": 9206, + "vector": 9207, + "theological": 9208, + "unions": 9209, + "handful": 9210, + "stability": 9211, + "chan": 9212, + "punjab": 9213, + "segments": 9214, + "##lly": 9215, + "altar": 9216, + "ignoring": 9217, + "gesture": 9218, + "monsters": 9219, + "pastor": 9220, + "##stone": 9221, + "thighs": 9222, + "unexpected": 9223, + "operators": 9224, + "abruptly": 9225, + "coin": 9226, + "compiled": 9227, + "associates": 9228, + "improving": 9229, + "migration": 9230, + "pin": 9231, + "##ose": 9232, + "compact": 9233, + "collegiate": 9234, + "reserved": 9235, + "##urs": 9236, + "quarterfinals": 9237, + "roster": 9238, + "restore": 9239, + "assembled": 9240, + "hurry": 9241, + "oval": 9242, + "##cies": 9243, + "1846": 9244, + "flags": 9245, + "martha": 9246, + "##del": 9247, + "victories": 9248, + "sharply": 9249, + "##rated": 9250, + "argues": 9251, + "deadly": 9252, + "neo": 9253, + "drawings": 9254, + "symbols": 9255, + "performer": 9256, + "##iel": 9257, + "griffin": 9258, + "restrictions": 9259, + "editing": 9260, + "andrews": 9261, + "java": 9262, + "journals": 9263, + "arabia": 9264, + "compositions": 9265, + "dee": 9266, + "pierce": 9267, + "removing": 9268, + "hindi": 9269, + "casino": 9270, + "runway": 9271, + "civilians": 9272, + "minds": 9273, + "nasa": 9274, + "hotels": 9275, + "##zation": 9276, + "refuge": 9277, + "rent": 9278, + "retain": 9279, + "potentially": 9280, + "conferences": 9281, + "suburban": 9282, + "conducting": 9283, + "##tto": 9284, + "##tions": 9285, + "##tle": 9286, + "descended": 9287, + "massacre": 9288, + "##cal": 9289, + "ammunition": 9290, + "terrain": 9291, + "fork": 9292, + "souls": 9293, + "counts": 9294, + "chelsea": 9295, + "durham": 9296, + "drives": 9297, + "cab": 9298, + "##bank": 9299, + "perth": 9300, + "realizing": 9301, + "palestinian": 9302, + "finn": 9303, + "simpson": 9304, + "##dal": 9305, + "betty": 9306, + "##ule": 9307, + "moreover": 9308, + "particles": 9309, + "cardinals": 9310, + "tent": 9311, + "evaluation": 9312, + "extraordinary": 9313, + "##oid": 9314, + "inscription": 9315, + "##works": 9316, + "wednesday": 9317, + "chloe": 9318, + "maintains": 9319, + "panels": 9320, + "ashley": 9321, + "trucks": 9322, + "##nation": 9323, + "cluster": 9324, + "sunlight": 9325, + "strikes": 9326, + "zhang": 9327, + "##wing": 9328, + "dialect": 9329, + "canon": 9330, + "##ap": 9331, + "tucked": 9332, + "##ws": 9333, + "collecting": 9334, + "##mas": 9335, + "##can": 9336, + "##sville": 9337, + "maker": 9338, + "quoted": 9339, + "evan": 9340, + "franco": 9341, + "aria": 9342, + "buying": 9343, + "cleaning": 9344, + "eva": 9345, + "closet": 9346, + "provision": 9347, + "apollo": 9348, + "clinic": 9349, + "rat": 9350, + "##ez": 9351, + "necessarily": 9352, + "ac": 9353, + "##gle": 9354, + "##ising": 9355, + "venues": 9356, + "flipped": 9357, + "cent": 9358, + "spreading": 9359, + "trustees": 9360, + "checking": 9361, + "authorized": 9362, + "##sco": 9363, + "disappointed": 9364, + "##ado": 9365, + "notion": 9366, + "duration": 9367, + "trumpet": 9368, + "hesitated": 9369, + "topped": 9370, + "brussels": 9371, + "rolls": 9372, + "theoretical": 9373, + "hint": 9374, + "define": 9375, + "aggressive": 9376, + "repeat": 9377, + "wash": 9378, + "peaceful": 9379, + "optical": 9380, + "width": 9381, + "allegedly": 9382, + "mcdonald": 9383, + "strict": 9384, + "copyright": 9385, + "##illa": 9386, + "investors": 9387, + "mar": 9388, + "jam": 9389, + "witnesses": 9390, + "sounding": 9391, + "miranda": 9392, + "michelle": 9393, + "privacy": 9394, + "hugo": 9395, + "harmony": 9396, + "##pp": 9397, + "valid": 9398, + "lynn": 9399, + "glared": 9400, + "nina": 9401, + "102": 9402, + "headquartered": 9403, + "diving": 9404, + "boarding": 9405, + "gibson": 9406, + "##ncy": 9407, + "albanian": 9408, + "marsh": 9409, + "routine": 9410, + "dealt": 9411, + "enhanced": 9412, + "er": 9413, + "intelligent": 9414, + "substance": 9415, + "targeted": 9416, + "enlisted": 9417, + "discovers": 9418, + "spinning": 9419, + "observations": 9420, + "pissed": 9421, + "smoking": 9422, + "rebecca": 9423, + "capitol": 9424, + "visa": 9425, + "varied": 9426, + "costume": 9427, + "seemingly": 9428, + "indies": 9429, + "compensation": 9430, + "surgeon": 9431, + "thursday": 9432, + "arsenal": 9433, + "westminster": 9434, + "suburbs": 9435, + "rid": 9436, + "anglican": 9437, + "##ridge": 9438, + "knots": 9439, + "foods": 9440, + "alumni": 9441, + "lighter": 9442, + "fraser": 9443, + "whoever": 9444, + "portal": 9445, + "scandal": 9446, + "##ray": 9447, + "gavin": 9448, + "advised": 9449, + "instructor": 9450, + "flooding": 9451, + "terrorist": 9452, + "##ale": 9453, + "teenage": 9454, + "interim": 9455, + "senses": 9456, + "duck": 9457, + "teen": 9458, + "thesis": 9459, + "abby": 9460, + "eager": 9461, + "overcome": 9462, + "##ile": 9463, + "newport": 9464, + "glenn": 9465, + "rises": 9466, + "shame": 9467, + "##cc": 9468, + "prompted": 9469, + "priority": 9470, + "forgot": 9471, + "bomber": 9472, + "nicolas": 9473, + "protective": 9474, + "360": 9475, + "cartoon": 9476, + "katherine": 9477, + "breeze": 9478, + "lonely": 9479, + "trusted": 9480, + "henderson": 9481, + "richardson": 9482, + "relax": 9483, + "banner": 9484, + "candy": 9485, + "palms": 9486, + "remarkable": 9487, + "##rio": 9488, + "legends": 9489, + "cricketer": 9490, + "essay": 9491, + "ordained": 9492, + "edmund": 9493, + "rifles": 9494, + "trigger": 9495, + "##uri": 9496, + "##away": 9497, + "sail": 9498, + "alert": 9499, + "1830": 9500, + "audiences": 9501, + "penn": 9502, + "sussex": 9503, + "siblings": 9504, + "pursued": 9505, + "indianapolis": 9506, + "resist": 9507, + "rosa": 9508, + "consequence": 9509, + "succeed": 9510, + "avoided": 9511, + "1845": 9512, + "##ulation": 9513, + "inland": 9514, + "##tie": 9515, + "##nna": 9516, + "counsel": 9517, + "profession": 9518, + "chronicle": 9519, + "hurried": 9520, + "##una": 9521, + "eyebrow": 9522, + "eventual": 9523, + "bleeding": 9524, + "innovative": 9525, + "cure": 9526, + "##dom": 9527, + "committees": 9528, + "accounting": 9529, + "con": 9530, + "scope": 9531, + "hardy": 9532, + "heather": 9533, + "tenor": 9534, + "gut": 9535, + "herald": 9536, + "codes": 9537, + "tore": 9538, + "scales": 9539, + "wagon": 9540, + "##oo": 9541, + "luxury": 9542, + "tin": 9543, + "prefer": 9544, + "fountain": 9545, + "triangle": 9546, + "bonds": 9547, + "darling": 9548, + "convoy": 9549, + "dried": 9550, + "traced": 9551, + "beings": 9552, + "troy": 9553, + "accidentally": 9554, + "slam": 9555, + "findings": 9556, + "smelled": 9557, + "joey": 9558, + "lawyers": 9559, + "outcome": 9560, + "steep": 9561, + "bosnia": 9562, + "configuration": 9563, + "shifting": 9564, + "toll": 9565, + "brook": 9566, + "performers": 9567, + "lobby": 9568, + "philosophical": 9569, + "construct": 9570, + "shrine": 9571, + "aggregate": 9572, + "boot": 9573, + "cox": 9574, + "phenomenon": 9575, + "savage": 9576, + "insane": 9577, + "solely": 9578, + "reynolds": 9579, + "lifestyle": 9580, + "##ima": 9581, + "nationally": 9582, + "holdings": 9583, + "consideration": 9584, + "enable": 9585, + "edgar": 9586, + "mo": 9587, + "mama": 9588, + "##tein": 9589, + "fights": 9590, + "relegation": 9591, + "chances": 9592, + "atomic": 9593, + "hub": 9594, + "conjunction": 9595, + "awkward": 9596, + "reactions": 9597, + "currency": 9598, + "finale": 9599, + "kumar": 9600, + "underwent": 9601, + "steering": 9602, + "elaborate": 9603, + "gifts": 9604, + "comprising": 9605, + "melissa": 9606, + "veins": 9607, + "reasonable": 9608, + "sunshine": 9609, + "chi": 9610, + "solve": 9611, + "trails": 9612, + "inhabited": 9613, + "elimination": 9614, + "ethics": 9615, + "huh": 9616, + "ana": 9617, + "molly": 9618, + "consent": 9619, + "apartments": 9620, + "layout": 9621, + "marines": 9622, + "##ces": 9623, + "hunters": 9624, + "bulk": 9625, + "##oma": 9626, + "hometown": 9627, + "##wall": 9628, + "##mont": 9629, + "cracked": 9630, + "reads": 9631, + "neighbouring": 9632, + "withdrawn": 9633, + "admission": 9634, + "wingspan": 9635, + "damned": 9636, + "anthology": 9637, + "lancashire": 9638, + "brands": 9639, + "batting": 9640, + "forgive": 9641, + "cuban": 9642, + "awful": 9643, + "##lyn": 9644, + "104": 9645, + "dimensions": 9646, + "imagination": 9647, + "##ade": 9648, + "dante": 9649, + "##ship": 9650, + "tracking": 9651, + "desperately": 9652, + "goalkeeper": 9653, + "##yne": 9654, + "groaned": 9655, + "workshops": 9656, + "confident": 9657, + "burton": 9658, + "gerald": 9659, + "milton": 9660, + "circus": 9661, + "uncertain": 9662, + "slope": 9663, + "copenhagen": 9664, + "sophia": 9665, + "fog": 9666, + "philosopher": 9667, + "portraits": 9668, + "accent": 9669, + "cycling": 9670, + "varying": 9671, + "gripped": 9672, + "larvae": 9673, + "garrett": 9674, + "specified": 9675, + "scotia": 9676, + "mature": 9677, + "luther": 9678, + "kurt": 9679, + "rap": 9680, + "##kes": 9681, + "aerial": 9682, + "750": 9683, + "ferdinand": 9684, + "heated": 9685, + "es": 9686, + "transported": 9687, + "##shan": 9688, + "safely": 9689, + "nonetheless": 9690, + "##orn": 9691, + "##gal": 9692, + "motors": 9693, + "demanding": 9694, + "##sburg": 9695, + "startled": 9696, + "##brook": 9697, + "ally": 9698, + "generate": 9699, + "caps": 9700, + "ghana": 9701, + "stained": 9702, + "demo": 9703, + "mentions": 9704, + "beds": 9705, + "ap": 9706, + "afterward": 9707, + "diary": 9708, + "##bling": 9709, + "utility": 9710, + "##iro": 9711, + "richards": 9712, + "1837": 9713, + "conspiracy": 9714, + "conscious": 9715, + "shining": 9716, + "footsteps": 9717, + "observer": 9718, + "cyprus": 9719, + "urged": 9720, + "loyalty": 9721, + "developer": 9722, + "probability": 9723, + "olive": 9724, + "upgraded": 9725, + "gym": 9726, + "miracle": 9727, + "insects": 9728, + "graves": 9729, + "1844": 9730, + "ourselves": 9731, + "hydrogen": 9732, + "amazon": 9733, + "katie": 9734, + "tickets": 9735, + "poets": 9736, + "##pm": 9737, + "planes": 9738, + "##pan": 9739, + "prevention": 9740, + "witnessed": 9741, + "dense": 9742, + "jin": 9743, + "randy": 9744, + "tang": 9745, + "warehouse": 9746, + "monroe": 9747, + "bang": 9748, + "archived": 9749, + "elderly": 9750, + "investigations": 9751, + "alec": 9752, + "granite": 9753, + "mineral": 9754, + "conflicts": 9755, + "controlling": 9756, + "aboriginal": 9757, + "carlo": 9758, + "##zu": 9759, + "mechanics": 9760, + "stan": 9761, + "stark": 9762, + "rhode": 9763, + "skirt": 9764, + "est": 9765, + "##berry": 9766, + "bombs": 9767, + "respected": 9768, + "##horn": 9769, + "imposed": 9770, + "limestone": 9771, + "deny": 9772, + "nominee": 9773, + "memphis": 9774, + "grabbing": 9775, + "disabled": 9776, + "##als": 9777, + "amusement": 9778, + "aa": 9779, + "frankfurt": 9780, + "corn": 9781, + "referendum": 9782, + "varies": 9783, + "slowed": 9784, + "disk": 9785, + "firms": 9786, + "unconscious": 9787, + "incredible": 9788, + "clue": 9789, + "sue": 9790, + "##zhou": 9791, + "twist": 9792, + "##cio": 9793, + "joins": 9794, + "idaho": 9795, + "chad": 9796, + "developers": 9797, + "computing": 9798, + "destroyer": 9799, + "103": 9800, + "mortal": 9801, + "tucker": 9802, + "kingston": 9803, + "choices": 9804, + "yu": 9805, + "carson": 9806, + "1800": 9807, + "os": 9808, + "whitney": 9809, + "geneva": 9810, + "pretend": 9811, + "dimension": 9812, + "staged": 9813, + "plateau": 9814, + "maya": 9815, + "##une": 9816, + "freestyle": 9817, + "##bc": 9818, + "rovers": 9819, + "hiv": 9820, + "##ids": 9821, + "tristan": 9822, + "classroom": 9823, + "prospect": 9824, + "##hus": 9825, + "honestly": 9826, + "diploma": 9827, + "lied": 9828, + "thermal": 9829, + "auxiliary": 9830, + "feast": 9831, + "unlikely": 9832, + "iata": 9833, + "##tel": 9834, + "morocco": 9835, + "pounding": 9836, + "treasury": 9837, + "lithuania": 9838, + "considerably": 9839, + "1841": 9840, + "dish": 9841, + "1812": 9842, + "geological": 9843, + "matching": 9844, + "stumbled": 9845, + "destroying": 9846, + "marched": 9847, + "brien": 9848, + "advances": 9849, + "cake": 9850, + "nicole": 9851, + "belle": 9852, + "settling": 9853, + "measuring": 9854, + "directing": 9855, + "##mie": 9856, + "tuesday": 9857, + "bassist": 9858, + "capabilities": 9859, + "stunned": 9860, + "fraud": 9861, + "torpedo": 9862, + "##list": 9863, + "##phone": 9864, + "anton": 9865, + "wisdom": 9866, + "surveillance": 9867, + "ruined": 9868, + "##ulate": 9869, + "lawsuit": 9870, + "healthcare": 9871, + "theorem": 9872, + "halls": 9873, + "trend": 9874, + "aka": 9875, + "horizontal": 9876, + "dozens": 9877, + "acquire": 9878, + "lasting": 9879, + "swim": 9880, + "hawk": 9881, + "gorgeous": 9882, + "fees": 9883, + "vicinity": 9884, + "decrease": 9885, + "adoption": 9886, + "tactics": 9887, + "##ography": 9888, + "pakistani": 9889, + "##ole": 9890, + "draws": 9891, + "##hall": 9892, + "willie": 9893, + "burke": 9894, + "heath": 9895, + "algorithm": 9896, + "integral": 9897, + "powder": 9898, + "elliott": 9899, + "brigadier": 9900, + "jackie": 9901, + "tate": 9902, + "varieties": 9903, + "darker": 9904, + "##cho": 9905, + "lately": 9906, + "cigarette": 9907, + "specimens": 9908, + "adds": 9909, + "##ree": 9910, + "##ensis": 9911, + "##inger": 9912, + "exploded": 9913, + "finalist": 9914, + "cia": 9915, + "murders": 9916, + "wilderness": 9917, + "arguments": 9918, + "nicknamed": 9919, + "acceptance": 9920, + "onwards": 9921, + "manufacture": 9922, + "robertson": 9923, + "jets": 9924, + "tampa": 9925, + "enterprises": 9926, + "blog": 9927, + "loudly": 9928, + "composers": 9929, + "nominations": 9930, + "1838": 9931, + "ai": 9932, + "malta": 9933, + "inquiry": 9934, + "automobile": 9935, + "hosting": 9936, + "viii": 9937, + "rays": 9938, + "tilted": 9939, + "grief": 9940, + "museums": 9941, + "strategies": 9942, + "furious": 9943, + "euro": 9944, + "equality": 9945, + "cohen": 9946, + "poison": 9947, + "surrey": 9948, + "wireless": 9949, + "governed": 9950, + "ridiculous": 9951, + "moses": 9952, + "##esh": 9953, + "##room": 9954, + "vanished": 9955, + "##ito": 9956, + "barnes": 9957, + "attract": 9958, + "morrison": 9959, + "istanbul": 9960, + "##iness": 9961, + "absent": 9962, + "rotation": 9963, + "petition": 9964, + "janet": 9965, + "##logical": 9966, + "satisfaction": 9967, + "custody": 9968, + "deliberately": 9969, + "observatory": 9970, + "comedian": 9971, + "surfaces": 9972, + "pinyin": 9973, + "novelist": 9974, + "strictly": 9975, + "canterbury": 9976, + "oslo": 9977, + "monks": 9978, + "embrace": 9979, + "ibm": 9980, + "jealous": 9981, + "photograph": 9982, + "continent": 9983, + "dorothy": 9984, + "marina": 9985, + "doc": 9986, + "excess": 9987, + "holden": 9988, + "allegations": 9989, + "explaining": 9990, + "stack": 9991, + "avoiding": 9992, + "lance": 9993, + "storyline": 9994, + "majesty": 9995, + "poorly": 9996, + "spike": 9997, + "dos": 9998, + "bradford": 9999, + "raven": 10000, + "travis": 10001, + "classics": 10002, + "proven": 10003, + "voltage": 10004, + "pillow": 10005, + "fists": 10006, + "butt": 10007, + "1842": 10008, + "interpreted": 10009, + "##car": 10010, + "1839": 10011, + "gage": 10012, + "telegraph": 10013, + "lens": 10014, + "promising": 10015, + "expelled": 10016, + "casual": 10017, + "collector": 10018, + "zones": 10019, + "##min": 10020, + "silly": 10021, + "nintendo": 10022, + "##kh": 10023, + "##bra": 10024, + "downstairs": 10025, + "chef": 10026, + "suspicious": 10027, + "afl": 10028, + "flies": 10029, + "vacant": 10030, + "uganda": 10031, + "pregnancy": 10032, + "condemned": 10033, + "lutheran": 10034, + "estimates": 10035, + "cheap": 10036, + "decree": 10037, + "saxon": 10038, + "proximity": 10039, + "stripped": 10040, + "idiot": 10041, + "deposits": 10042, + "contrary": 10043, + "presenter": 10044, + "magnus": 10045, + "glacier": 10046, + "im": 10047, + "offense": 10048, + "edwin": 10049, + "##ori": 10050, + "upright": 10051, + "##long": 10052, + "bolt": 10053, + "##ois": 10054, + "toss": 10055, + "geographical": 10056, + "##izes": 10057, + "environments": 10058, + "delicate": 10059, + "marking": 10060, + "abstract": 10061, + "xavier": 10062, + "nails": 10063, + "windsor": 10064, + "plantation": 10065, + "occurring": 10066, + "equity": 10067, + "saskatchewan": 10068, + "fears": 10069, + "drifted": 10070, + "sequences": 10071, + "vegetation": 10072, + "revolt": 10073, + "##stic": 10074, + "1843": 10075, + "sooner": 10076, + "fusion": 10077, + "opposing": 10078, + "nato": 10079, + "skating": 10080, + "1836": 10081, + "secretly": 10082, + "ruin": 10083, + "lease": 10084, + "##oc": 10085, + "edit": 10086, + "##nne": 10087, + "flora": 10088, + "anxiety": 10089, + "ruby": 10090, + "##ological": 10091, + "##mia": 10092, + "tel": 10093, + "bout": 10094, + "taxi": 10095, + "emmy": 10096, + "frost": 10097, + "rainbow": 10098, + "compounds": 10099, + "foundations": 10100, + "rainfall": 10101, + "assassination": 10102, + "nightmare": 10103, + "dominican": 10104, + "##win": 10105, + "achievements": 10106, + "deserve": 10107, + "orlando": 10108, + "intact": 10109, + "armenia": 10110, + "##nte": 10111, + "calgary": 10112, + "valentine": 10113, + "106": 10114, + "marion": 10115, + "proclaimed": 10116, + "theodore": 10117, + "bells": 10118, + "courtyard": 10119, + "thigh": 10120, + "gonzalez": 10121, + "console": 10122, + "troop": 10123, + "minimal": 10124, + "monte": 10125, + "everyday": 10126, + "##ence": 10127, + "##if": 10128, + "supporter": 10129, + "terrorism": 10130, + "buck": 10131, + "openly": 10132, + "presbyterian": 10133, + "activists": 10134, + "carpet": 10135, + "##iers": 10136, + "rubbing": 10137, + "uprising": 10138, + "##yi": 10139, + "cute": 10140, + "conceived": 10141, + "legally": 10142, + "##cht": 10143, + "millennium": 10144, + "cello": 10145, + "velocity": 10146, + "ji": 10147, + "rescued": 10148, + "cardiff": 10149, + "1835": 10150, + "rex": 10151, + "concentrate": 10152, + "senators": 10153, + "beard": 10154, + "rendered": 10155, + "glowing": 10156, + "battalions": 10157, + "scouts": 10158, + "competitors": 10159, + "sculptor": 10160, + "catalogue": 10161, + "arctic": 10162, + "ion": 10163, + "raja": 10164, + "bicycle": 10165, + "wow": 10166, + "glancing": 10167, + "lawn": 10168, + "##woman": 10169, + "gentleman": 10170, + "lighthouse": 10171, + "publish": 10172, + "predicted": 10173, + "calculated": 10174, + "##val": 10175, + "variants": 10176, + "##gne": 10177, + "strain": 10178, + "##ui": 10179, + "winston": 10180, + "deceased": 10181, + "##nus": 10182, + "touchdowns": 10183, + "brady": 10184, + "caleb": 10185, + "sinking": 10186, + "echoed": 10187, + "crush": 10188, + "hon": 10189, + "blessed": 10190, + "protagonist": 10191, + "hayes": 10192, + "endangered": 10193, + "magnitude": 10194, + "editors": 10195, + "##tine": 10196, + "estimate": 10197, + "responsibilities": 10198, + "##mel": 10199, + "backup": 10200, + "laying": 10201, + "consumed": 10202, + "sealed": 10203, + "zurich": 10204, + "lovers": 10205, + "frustrated": 10206, + "##eau": 10207, + "ahmed": 10208, + "kicking": 10209, + "mit": 10210, + "treasurer": 10211, + "1832": 10212, + "biblical": 10213, + "refuse": 10214, + "terrified": 10215, + "pump": 10216, + "agrees": 10217, + "genuine": 10218, + "imprisonment": 10219, + "refuses": 10220, + "plymouth": 10221, + "##hen": 10222, + "lou": 10223, + "##nen": 10224, + "tara": 10225, + "trembling": 10226, + "antarctic": 10227, + "ton": 10228, + "learns": 10229, + "##tas": 10230, + "crap": 10231, + "crucial": 10232, + "faction": 10233, + "atop": 10234, + "##borough": 10235, + "wrap": 10236, + "lancaster": 10237, + "odds": 10238, + "hopkins": 10239, + "erik": 10240, + "lyon": 10241, + "##eon": 10242, + "bros": 10243, + "##ode": 10244, + "snap": 10245, + "locality": 10246, + "tips": 10247, + "empress": 10248, + "crowned": 10249, + "cal": 10250, + "acclaimed": 10251, + "chuckled": 10252, + "##ory": 10253, + "clara": 10254, + "sends": 10255, + "mild": 10256, + "towel": 10257, + "##fl": 10258, + "##day": 10259, + "##а": 10260, + "wishing": 10261, + "assuming": 10262, + "interviewed": 10263, + "##bal": 10264, + "##die": 10265, + "interactions": 10266, + "eden": 10267, + "cups": 10268, + "helena": 10269, + "##lf": 10270, + "indie": 10271, + "beck": 10272, + "##fire": 10273, + "batteries": 10274, + "filipino": 10275, + "wizard": 10276, + "parted": 10277, + "##lam": 10278, + "traces": 10279, + "##born": 10280, + "rows": 10281, + "idol": 10282, + "albany": 10283, + "delegates": 10284, + "##ees": 10285, + "##sar": 10286, + "discussions": 10287, + "##ex": 10288, + "notre": 10289, + "instructed": 10290, + "belgrade": 10291, + "highways": 10292, + "suggestion": 10293, + "lauren": 10294, + "possess": 10295, + "orientation": 10296, + "alexandria": 10297, + "abdul": 10298, + "beats": 10299, + "salary": 10300, + "reunion": 10301, + "ludwig": 10302, + "alright": 10303, + "wagner": 10304, + "intimate": 10305, + "pockets": 10306, + "slovenia": 10307, + "hugged": 10308, + "brighton": 10309, + "merchants": 10310, + "cruel": 10311, + "stole": 10312, + "trek": 10313, + "slopes": 10314, + "repairs": 10315, + "enrollment": 10316, + "politically": 10317, + "underlying": 10318, + "promotional": 10319, + "counting": 10320, + "boeing": 10321, + "##bb": 10322, + "isabella": 10323, + "naming": 10324, + "##и": 10325, + "keen": 10326, + "bacteria": 10327, + "listing": 10328, + "separately": 10329, + "belfast": 10330, + "ussr": 10331, + "450": 10332, + "lithuanian": 10333, + "anybody": 10334, + "ribs": 10335, + "sphere": 10336, + "martinez": 10337, + "cock": 10338, + "embarrassed": 10339, + "proposals": 10340, + "fragments": 10341, + "nationals": 10342, + "##fs": 10343, + "##wski": 10344, + "premises": 10345, + "fin": 10346, + "1500": 10347, + "alpine": 10348, + "matched": 10349, + "freely": 10350, + "bounded": 10351, + "jace": 10352, + "sleeve": 10353, + "##af": 10354, + "gaming": 10355, + "pier": 10356, + "populated": 10357, + "evident": 10358, + "##like": 10359, + "frances": 10360, + "flooded": 10361, + "##dle": 10362, + "frightened": 10363, + "pour": 10364, + "trainer": 10365, + "framed": 10366, + "visitor": 10367, + "challenging": 10368, + "pig": 10369, + "wickets": 10370, + "##fold": 10371, + "infected": 10372, + "email": 10373, + "##pes": 10374, + "arose": 10375, + "##aw": 10376, + "reward": 10377, + "ecuador": 10378, + "oblast": 10379, + "vale": 10380, + "ch": 10381, + "shuttle": 10382, + "##usa": 10383, + "bach": 10384, + "rankings": 10385, + "forbidden": 10386, + "cornwall": 10387, + "accordance": 10388, + "salem": 10389, + "consumers": 10390, + "bruno": 10391, + "fantastic": 10392, + "toes": 10393, + "machinery": 10394, + "resolved": 10395, + "julius": 10396, + "remembering": 10397, + "propaganda": 10398, + "iceland": 10399, + "bombardment": 10400, + "tide": 10401, + "contacts": 10402, + "wives": 10403, + "##rah": 10404, + "concerto": 10405, + "macdonald": 10406, + "albania": 10407, + "implement": 10408, + "daisy": 10409, + "tapped": 10410, + "sudan": 10411, + "helmet": 10412, + "angela": 10413, + "mistress": 10414, + "##lic": 10415, + "crop": 10416, + "sunk": 10417, + "finest": 10418, + "##craft": 10419, + "hostile": 10420, + "##ute": 10421, + "##tsu": 10422, + "boxer": 10423, + "fr": 10424, + "paths": 10425, + "adjusted": 10426, + "habit": 10427, + "ballot": 10428, + "supervision": 10429, + "soprano": 10430, + "##zen": 10431, + "bullets": 10432, + "wicked": 10433, + "sunset": 10434, + "regiments": 10435, + "disappear": 10436, + "lamp": 10437, + "performs": 10438, + "app": 10439, + "##gia": 10440, + "##oa": 10441, + "rabbit": 10442, + "digging": 10443, + "incidents": 10444, + "entries": 10445, + "##cion": 10446, + "dishes": 10447, + "##oi": 10448, + "introducing": 10449, + "##ati": 10450, + "##fied": 10451, + "freshman": 10452, + "slot": 10453, + "jill": 10454, + "tackles": 10455, + "baroque": 10456, + "backs": 10457, + "##iest": 10458, + "lone": 10459, + "sponsor": 10460, + "destiny": 10461, + "altogether": 10462, + "convert": 10463, + "##aro": 10464, + "consensus": 10465, + "shapes": 10466, + "demonstration": 10467, + "basically": 10468, + "feminist": 10469, + "auction": 10470, + "artifacts": 10471, + "##bing": 10472, + "strongest": 10473, + "twitter": 10474, + "halifax": 10475, + "2019": 10476, + "allmusic": 10477, + "mighty": 10478, + "smallest": 10479, + "precise": 10480, + "alexandra": 10481, + "viola": 10482, + "##los": 10483, + "##ille": 10484, + "manuscripts": 10485, + "##illo": 10486, + "dancers": 10487, + "ari": 10488, + "managers": 10489, + "monuments": 10490, + "blades": 10491, + "barracks": 10492, + "springfield": 10493, + "maiden": 10494, + "consolidated": 10495, + "electron": 10496, + "##end": 10497, + "berry": 10498, + "airing": 10499, + "wheat": 10500, + "nobel": 10501, + "inclusion": 10502, + "blair": 10503, + "payments": 10504, + "geography": 10505, + "bee": 10506, + "cc": 10507, + "eleanor": 10508, + "react": 10509, + "##hurst": 10510, + "afc": 10511, + "manitoba": 10512, + "##yu": 10513, + "su": 10514, + "lineup": 10515, + "fitness": 10516, + "recreational": 10517, + "investments": 10518, + "airborne": 10519, + "disappointment": 10520, + "##dis": 10521, + "edmonton": 10522, + "viewing": 10523, + "##row": 10524, + "renovation": 10525, + "##cast": 10526, + "infant": 10527, + "bankruptcy": 10528, + "roses": 10529, + "aftermath": 10530, + "pavilion": 10531, + "##yer": 10532, + "carpenter": 10533, + "withdrawal": 10534, + "ladder": 10535, + "##hy": 10536, + "discussing": 10537, + "popped": 10538, + "reliable": 10539, + "agreements": 10540, + "rochester": 10541, + "##abad": 10542, + "curves": 10543, + "bombers": 10544, + "220": 10545, + "rao": 10546, + "reverend": 10547, + "decreased": 10548, + "choosing": 10549, + "107": 10550, + "stiff": 10551, + "consulting": 10552, + "naples": 10553, + "crawford": 10554, + "tracy": 10555, + "ka": 10556, + "ribbon": 10557, + "cops": 10558, + "##lee": 10559, + "crushed": 10560, + "deciding": 10561, + "unified": 10562, + "teenager": 10563, + "accepting": 10564, + "flagship": 10565, + "explorer": 10566, + "poles": 10567, + "sanchez": 10568, + "inspection": 10569, + "revived": 10570, + "skilled": 10571, + "induced": 10572, + "exchanged": 10573, + "flee": 10574, + "locals": 10575, + "tragedy": 10576, + "swallow": 10577, + "loading": 10578, + "hanna": 10579, + "demonstrate": 10580, + "##ela": 10581, + "salvador": 10582, + "flown": 10583, + "contestants": 10584, + "civilization": 10585, + "##ines": 10586, + "wanna": 10587, + "rhodes": 10588, + "fletcher": 10589, + "hector": 10590, + "knocking": 10591, + "considers": 10592, + "##ough": 10593, + "nash": 10594, + "mechanisms": 10595, + "sensed": 10596, + "mentally": 10597, + "walt": 10598, + "unclear": 10599, + "##eus": 10600, + "renovated": 10601, + "madame": 10602, + "##cks": 10603, + "crews": 10604, + "governmental": 10605, + "##hin": 10606, + "undertaken": 10607, + "monkey": 10608, + "##ben": 10609, + "##ato": 10610, + "fatal": 10611, + "armored": 10612, + "copa": 10613, + "caves": 10614, + "governance": 10615, + "grasp": 10616, + "perception": 10617, + "certification": 10618, + "froze": 10619, + "damp": 10620, + "tugged": 10621, + "wyoming": 10622, + "##rg": 10623, + "##ero": 10624, + "newman": 10625, + "##lor": 10626, + "nerves": 10627, + "curiosity": 10628, + "graph": 10629, + "115": 10630, + "##ami": 10631, + "withdraw": 10632, + "tunnels": 10633, + "dull": 10634, + "meredith": 10635, + "moss": 10636, + "exhibits": 10637, + "neighbors": 10638, + "communicate": 10639, + "accuracy": 10640, + "explored": 10641, + "raiders": 10642, + "republicans": 10643, + "secular": 10644, + "kat": 10645, + "superman": 10646, + "penny": 10647, + "criticised": 10648, + "##tch": 10649, + "freed": 10650, + "update": 10651, + "conviction": 10652, + "wade": 10653, + "ham": 10654, + "likewise": 10655, + "delegation": 10656, + "gotta": 10657, + "doll": 10658, + "promises": 10659, + "technological": 10660, + "myth": 10661, + "nationality": 10662, + "resolve": 10663, + "convent": 10664, + "##mark": 10665, + "sharon": 10666, + "dig": 10667, + "sip": 10668, + "coordinator": 10669, + "entrepreneur": 10670, + "fold": 10671, + "##dine": 10672, + "capability": 10673, + "councillor": 10674, + "synonym": 10675, + "blown": 10676, + "swan": 10677, + "cursed": 10678, + "1815": 10679, + "jonas": 10680, + "haired": 10681, + "sofa": 10682, + "canvas": 10683, + "keeper": 10684, + "rivalry": 10685, + "##hart": 10686, + "rapper": 10687, + "speedway": 10688, + "swords": 10689, + "postal": 10690, + "maxwell": 10691, + "estonia": 10692, + "potter": 10693, + "recurring": 10694, + "##nn": 10695, + "##ave": 10696, + "errors": 10697, + "##oni": 10698, + "cognitive": 10699, + "1834": 10700, + "##²": 10701, + "claws": 10702, + "nadu": 10703, + "roberto": 10704, + "bce": 10705, + "wrestler": 10706, + "ellie": 10707, + "##ations": 10708, + "infinite": 10709, + "ink": 10710, + "##tia": 10711, + "presumably": 10712, + "finite": 10713, + "staircase": 10714, + "108": 10715, + "noel": 10716, + "patricia": 10717, + "nacional": 10718, + "##cation": 10719, + "chill": 10720, + "eternal": 10721, + "tu": 10722, + "preventing": 10723, + "prussia": 10724, + "fossil": 10725, + "limbs": 10726, + "##logist": 10727, + "ernst": 10728, + "frog": 10729, + "perez": 10730, + "rene": 10731, + "##ace": 10732, + "pizza": 10733, + "prussian": 10734, + "##ios": 10735, + "##vy": 10736, + "molecules": 10737, + "regulatory": 10738, + "answering": 10739, + "opinions": 10740, + "sworn": 10741, + "lengths": 10742, + "supposedly": 10743, + "hypothesis": 10744, + "upward": 10745, + "habitats": 10746, + "seating": 10747, + "ancestors": 10748, + "drank": 10749, + "yield": 10750, + "hd": 10751, + "synthesis": 10752, + "researcher": 10753, + "modest": 10754, + "##var": 10755, + "mothers": 10756, + "peered": 10757, + "voluntary": 10758, + "homeland": 10759, + "##the": 10760, + "acclaim": 10761, + "##igan": 10762, + "static": 10763, + "valve": 10764, + "luxembourg": 10765, + "alto": 10766, + "carroll": 10767, + "fe": 10768, + "receptor": 10769, + "norton": 10770, + "ambulance": 10771, + "##tian": 10772, + "johnston": 10773, + "catholics": 10774, + "depicting": 10775, + "jointly": 10776, + "elephant": 10777, + "gloria": 10778, + "mentor": 10779, + "badge": 10780, + "ahmad": 10781, + "distinguish": 10782, + "remarked": 10783, + "councils": 10784, + "precisely": 10785, + "allison": 10786, + "advancing": 10787, + "detection": 10788, + "crowded": 10789, + "##10": 10790, + "cooperative": 10791, + "ankle": 10792, + "mercedes": 10793, + "dagger": 10794, + "surrendered": 10795, + "pollution": 10796, + "commit": 10797, + "subway": 10798, + "jeffrey": 10799, + "lesson": 10800, + "sculptures": 10801, + "provider": 10802, + "##fication": 10803, + "membrane": 10804, + "timothy": 10805, + "rectangular": 10806, + "fiscal": 10807, + "heating": 10808, + "teammate": 10809, + "basket": 10810, + "particle": 10811, + "anonymous": 10812, + "deployment": 10813, + "##ple": 10814, + "missiles": 10815, + "courthouse": 10816, + "proportion": 10817, + "shoe": 10818, + "sec": 10819, + "##ller": 10820, + "complaints": 10821, + "forbes": 10822, + "blacks": 10823, + "abandon": 10824, + "remind": 10825, + "sizes": 10826, + "overwhelming": 10827, + "autobiography": 10828, + "natalie": 10829, + "##awa": 10830, + "risks": 10831, + "contestant": 10832, + "countryside": 10833, + "babies": 10834, + "scorer": 10835, + "invaded": 10836, + "enclosed": 10837, + "proceed": 10838, + "hurling": 10839, + "disorders": 10840, + "##cu": 10841, + "reflecting": 10842, + "continuously": 10843, + "cruiser": 10844, + "graduates": 10845, + "freeway": 10846, + "investigated": 10847, + "ore": 10848, + "deserved": 10849, + "maid": 10850, + "blocking": 10851, + "phillip": 10852, + "jorge": 10853, + "shakes": 10854, + "dove": 10855, + "mann": 10856, + "variables": 10857, + "lacked": 10858, + "burden": 10859, + "accompanying": 10860, + "que": 10861, + "consistently": 10862, + "organizing": 10863, + "provisional": 10864, + "complained": 10865, + "endless": 10866, + "##rm": 10867, + "tubes": 10868, + "juice": 10869, + "georges": 10870, + "krishna": 10871, + "mick": 10872, + "labels": 10873, + "thriller": 10874, + "##uch": 10875, + "laps": 10876, + "arcade": 10877, + "sage": 10878, + "snail": 10879, + "##table": 10880, + "shannon": 10881, + "fi": 10882, + "laurence": 10883, + "seoul": 10884, + "vacation": 10885, + "presenting": 10886, + "hire": 10887, + "churchill": 10888, + "surprisingly": 10889, + "prohibited": 10890, + "savannah": 10891, + "technically": 10892, + "##oli": 10893, + "170": 10894, + "##lessly": 10895, + "testimony": 10896, + "suited": 10897, + "speeds": 10898, + "toys": 10899, + "romans": 10900, + "mlb": 10901, + "flowering": 10902, + "measurement": 10903, + "talented": 10904, + "kay": 10905, + "settings": 10906, + "charleston": 10907, + "expectations": 10908, + "shattered": 10909, + "achieving": 10910, + "triumph": 10911, + "ceremonies": 10912, + "portsmouth": 10913, + "lanes": 10914, + "mandatory": 10915, + "loser": 10916, + "stretching": 10917, + "cologne": 10918, + "realizes": 10919, + "seventy": 10920, + "cornell": 10921, + "careers": 10922, + "webb": 10923, + "##ulating": 10924, + "americas": 10925, + "budapest": 10926, + "ava": 10927, + "suspicion": 10928, + "##ison": 10929, + "yo": 10930, + "conrad": 10931, + "##hai": 10932, + "sterling": 10933, + "jessie": 10934, + "rector": 10935, + "##az": 10936, + "1831": 10937, + "transform": 10938, + "organize": 10939, + "loans": 10940, + "christine": 10941, + "volcanic": 10942, + "warrant": 10943, + "slender": 10944, + "summers": 10945, + "subfamily": 10946, + "newer": 10947, + "danced": 10948, + "dynamics": 10949, + "rhine": 10950, + "proceeds": 10951, + "heinrich": 10952, + "gastropod": 10953, + "commands": 10954, + "sings": 10955, + "facilitate": 10956, + "easter": 10957, + "ra": 10958, + "positioned": 10959, + "responses": 10960, + "expense": 10961, + "fruits": 10962, + "yanked": 10963, + "imported": 10964, + "25th": 10965, + "velvet": 10966, + "vic": 10967, + "primitive": 10968, + "tribune": 10969, + "baldwin": 10970, + "neighbourhood": 10971, + "donna": 10972, + "rip": 10973, + "hay": 10974, + "pr": 10975, + "##uro": 10976, + "1814": 10977, + "espn": 10978, + "welcomed": 10979, + "##aria": 10980, + "qualifier": 10981, + "glare": 10982, + "highland": 10983, + "timing": 10984, + "##cted": 10985, + "shells": 10986, + "eased": 10987, + "geometry": 10988, + "louder": 10989, + "exciting": 10990, + "slovakia": 10991, + "##sion": 10992, + "##iz": 10993, + "##lot": 10994, + "savings": 10995, + "prairie": 10996, + "##ques": 10997, + "marching": 10998, + "rafael": 10999, + "tonnes": 11000, + "##lled": 11001, + "curtain": 11002, + "preceding": 11003, + "shy": 11004, + "heal": 11005, + "greene": 11006, + "worthy": 11007, + "##pot": 11008, + "detachment": 11009, + "bury": 11010, + "sherman": 11011, + "##eck": 11012, + "reinforced": 11013, + "seeks": 11014, + "bottles": 11015, + "contracted": 11016, + "duchess": 11017, + "outfit": 11018, + "walsh": 11019, + "##sc": 11020, + "mickey": 11021, + "##ase": 11022, + "geoffrey": 11023, + "archer": 11024, + "squeeze": 11025, + "dawson": 11026, + "eliminate": 11027, + "invention": 11028, + "##enberg": 11029, + "neal": 11030, + "##eth": 11031, + "stance": 11032, + "dealer": 11033, + "coral": 11034, + "maple": 11035, + "retire": 11036, + "polo": 11037, + "simplified": 11038, + "##ht": 11039, + "1833": 11040, + "hid": 11041, + "watts": 11042, + "backwards": 11043, + "jules": 11044, + "##oke": 11045, + "genesis": 11046, + "mt": 11047, + "frames": 11048, + "rebounds": 11049, + "burma": 11050, + "woodland": 11051, + "moist": 11052, + "santos": 11053, + "whispers": 11054, + "drained": 11055, + "subspecies": 11056, + "##aa": 11057, + "streaming": 11058, + "ulster": 11059, + "burnt": 11060, + "correspondence": 11061, + "maternal": 11062, + "gerard": 11063, + "denis": 11064, + "stealing": 11065, + "##load": 11066, + "genius": 11067, + "duchy": 11068, + "##oria": 11069, + "inaugurated": 11070, + "momentum": 11071, + "suits": 11072, + "placement": 11073, + "sovereign": 11074, + "clause": 11075, + "thames": 11076, + "##hara": 11077, + "confederation": 11078, + "reservation": 11079, + "sketch": 11080, + "yankees": 11081, + "lets": 11082, + "rotten": 11083, + "charm": 11084, + "hal": 11085, + "verses": 11086, + "ultra": 11087, + "commercially": 11088, + "dot": 11089, + "salon": 11090, + "citation": 11091, + "adopt": 11092, + "winnipeg": 11093, + "mist": 11094, + "allocated": 11095, + "cairo": 11096, + "##boy": 11097, + "jenkins": 11098, + "interference": 11099, + "objectives": 11100, + "##wind": 11101, + "1820": 11102, + "portfolio": 11103, + "armoured": 11104, + "sectors": 11105, + "##eh": 11106, + "initiatives": 11107, + "##world": 11108, + "integrity": 11109, + "exercises": 11110, + "robe": 11111, + "tap": 11112, + "ab": 11113, + "gazed": 11114, + "##tones": 11115, + "distracted": 11116, + "rulers": 11117, + "111": 11118, + "favorable": 11119, + "jerome": 11120, + "tended": 11121, + "cart": 11122, + "factories": 11123, + "##eri": 11124, + "diplomat": 11125, + "valued": 11126, + "gravel": 11127, + "charitable": 11128, + "##try": 11129, + "calvin": 11130, + "exploring": 11131, + "chang": 11132, + "shepherd": 11133, + "terrace": 11134, + "pdf": 11135, + "pupil": 11136, + "##ural": 11137, + "reflects": 11138, + "ups": 11139, + "##rch": 11140, + "governors": 11141, + "shelf": 11142, + "depths": 11143, + "##nberg": 11144, + "trailed": 11145, + "crest": 11146, + "tackle": 11147, + "##nian": 11148, + "##ats": 11149, + "hatred": 11150, + "##kai": 11151, + "clare": 11152, + "makers": 11153, + "ethiopia": 11154, + "longtime": 11155, + "detected": 11156, + "embedded": 11157, + "lacking": 11158, + "slapped": 11159, + "rely": 11160, + "thomson": 11161, + "anticipation": 11162, + "iso": 11163, + "morton": 11164, + "successive": 11165, + "agnes": 11166, + "screenwriter": 11167, + "straightened": 11168, + "philippe": 11169, + "playwright": 11170, + "haunted": 11171, + "licence": 11172, + "iris": 11173, + "intentions": 11174, + "sutton": 11175, + "112": 11176, + "logical": 11177, + "correctly": 11178, + "##weight": 11179, + "branded": 11180, + "licked": 11181, + "tipped": 11182, + "silva": 11183, + "ricky": 11184, + "narrator": 11185, + "requests": 11186, + "##ents": 11187, + "greeted": 11188, + "supernatural": 11189, + "cow": 11190, + "##wald": 11191, + "lung": 11192, + "refusing": 11193, + "employer": 11194, + "strait": 11195, + "gaelic": 11196, + "liner": 11197, + "##piece": 11198, + "zoe": 11199, + "sabha": 11200, + "##mba": 11201, + "driveway": 11202, + "harvest": 11203, + "prints": 11204, + "bates": 11205, + "reluctantly": 11206, + "threshold": 11207, + "algebra": 11208, + "ira": 11209, + "wherever": 11210, + "coupled": 11211, + "240": 11212, + "assumption": 11213, + "picks": 11214, + "##air": 11215, + "designers": 11216, + "raids": 11217, + "gentlemen": 11218, + "##ean": 11219, + "roller": 11220, + "blowing": 11221, + "leipzig": 11222, + "locks": 11223, + "screw": 11224, + "dressing": 11225, + "strand": 11226, + "##lings": 11227, + "scar": 11228, + "dwarf": 11229, + "depicts": 11230, + "##nu": 11231, + "nods": 11232, + "##mine": 11233, + "differ": 11234, + "boris": 11235, + "##eur": 11236, + "yuan": 11237, + "flip": 11238, + "##gie": 11239, + "mob": 11240, + "invested": 11241, + "questioning": 11242, + "applying": 11243, + "##ture": 11244, + "shout": 11245, + "##sel": 11246, + "gameplay": 11247, + "blamed": 11248, + "illustrations": 11249, + "bothered": 11250, + "weakness": 11251, + "rehabilitation": 11252, + "##of": 11253, + "##zes": 11254, + "envelope": 11255, + "rumors": 11256, + "miners": 11257, + "leicester": 11258, + "subtle": 11259, + "kerry": 11260, + "##ico": 11261, + "ferguson": 11262, + "##fu": 11263, + "premiership": 11264, + "ne": 11265, + "##cat": 11266, + "bengali": 11267, + "prof": 11268, + "catches": 11269, + "remnants": 11270, + "dana": 11271, + "##rily": 11272, + "shouting": 11273, + "presidents": 11274, + "baltic": 11275, + "ought": 11276, + "ghosts": 11277, + "dances": 11278, + "sailors": 11279, + "shirley": 11280, + "fancy": 11281, + "dominic": 11282, + "##bie": 11283, + "madonna": 11284, + "##rick": 11285, + "bark": 11286, + "buttons": 11287, + "gymnasium": 11288, + "ashes": 11289, + "liver": 11290, + "toby": 11291, + "oath": 11292, + "providence": 11293, + "doyle": 11294, + "evangelical": 11295, + "nixon": 11296, + "cement": 11297, + "carnegie": 11298, + "embarked": 11299, + "hatch": 11300, + "surroundings": 11301, + "guarantee": 11302, + "needing": 11303, + "pirate": 11304, + "essence": 11305, + "##bee": 11306, + "filter": 11307, + "crane": 11308, + "hammond": 11309, + "projected": 11310, + "immune": 11311, + "percy": 11312, + "twelfth": 11313, + "##ult": 11314, + "regent": 11315, + "doctoral": 11316, + "damon": 11317, + "mikhail": 11318, + "##ichi": 11319, + "lu": 11320, + "critically": 11321, + "elect": 11322, + "realised": 11323, + "abortion": 11324, + "acute": 11325, + "screening": 11326, + "mythology": 11327, + "steadily": 11328, + "##fc": 11329, + "frown": 11330, + "nottingham": 11331, + "kirk": 11332, + "wa": 11333, + "minneapolis": 11334, + "##rra": 11335, + "module": 11336, + "algeria": 11337, + "mc": 11338, + "nautical": 11339, + "encounters": 11340, + "surprising": 11341, + "statues": 11342, + "availability": 11343, + "shirts": 11344, + "pie": 11345, + "alma": 11346, + "brows": 11347, + "munster": 11348, + "mack": 11349, + "soup": 11350, + "crater": 11351, + "tornado": 11352, + "sanskrit": 11353, + "cedar": 11354, + "explosive": 11355, + "bordered": 11356, + "dixon": 11357, + "planets": 11358, + "stamp": 11359, + "exam": 11360, + "happily": 11361, + "##bble": 11362, + "carriers": 11363, + "kidnapped": 11364, + "##vis": 11365, + "accommodation": 11366, + "emigrated": 11367, + "##met": 11368, + "knockout": 11369, + "correspondent": 11370, + "violation": 11371, + "profits": 11372, + "peaks": 11373, + "lang": 11374, + "specimen": 11375, + "agenda": 11376, + "ancestry": 11377, + "pottery": 11378, + "spelling": 11379, + "equations": 11380, + "obtaining": 11381, + "ki": 11382, + "linking": 11383, + "1825": 11384, + "debris": 11385, + "asylum": 11386, + "##20": 11387, + "buddhism": 11388, + "teddy": 11389, + "##ants": 11390, + "gazette": 11391, + "##nger": 11392, + "##sse": 11393, + "dental": 11394, + "eligibility": 11395, + "utc": 11396, + "fathers": 11397, + "averaged": 11398, + "zimbabwe": 11399, + "francesco": 11400, + "coloured": 11401, + "hissed": 11402, + "translator": 11403, + "lynch": 11404, + "mandate": 11405, + "humanities": 11406, + "mackenzie": 11407, + "uniforms": 11408, + "lin": 11409, + "##iana": 11410, + "##gio": 11411, + "asset": 11412, + "mhz": 11413, + "fitting": 11414, + "samantha": 11415, + "genera": 11416, + "wei": 11417, + "rim": 11418, + "beloved": 11419, + "shark": 11420, + "riot": 11421, + "entities": 11422, + "expressions": 11423, + "indo": 11424, + "carmen": 11425, + "slipping": 11426, + "owing": 11427, + "abbot": 11428, + "neighbor": 11429, + "sidney": 11430, + "##av": 11431, + "rats": 11432, + "recommendations": 11433, + "encouraging": 11434, + "squadrons": 11435, + "anticipated": 11436, + "commanders": 11437, + "conquered": 11438, + "##oto": 11439, + "donations": 11440, + "diagnosed": 11441, + "##mond": 11442, + "divide": 11443, + "##iva": 11444, + "guessed": 11445, + "decoration": 11446, + "vernon": 11447, + "auditorium": 11448, + "revelation": 11449, + "conversations": 11450, + "##kers": 11451, + "##power": 11452, + "herzegovina": 11453, + "dash": 11454, + "alike": 11455, + "protested": 11456, + "lateral": 11457, + "herman": 11458, + "accredited": 11459, + "mg": 11460, + "##gent": 11461, + "freeman": 11462, + "mel": 11463, + "fiji": 11464, + "crow": 11465, + "crimson": 11466, + "##rine": 11467, + "livestock": 11468, + "##pped": 11469, + "humanitarian": 11470, + "bored": 11471, + "oz": 11472, + "whip": 11473, + "##lene": 11474, + "##ali": 11475, + "legitimate": 11476, + "alter": 11477, + "grinning": 11478, + "spelled": 11479, + "anxious": 11480, + "oriental": 11481, + "wesley": 11482, + "##nin": 11483, + "##hole": 11484, + "carnival": 11485, + "controller": 11486, + "detect": 11487, + "##ssa": 11488, + "bowed": 11489, + "educator": 11490, + "kosovo": 11491, + "macedonia": 11492, + "##sin": 11493, + "occupy": 11494, + "mastering": 11495, + "stephanie": 11496, + "janeiro": 11497, + "para": 11498, + "unaware": 11499, + "nurses": 11500, + "noon": 11501, + "135": 11502, + "cam": 11503, + "hopefully": 11504, + "ranger": 11505, + "combine": 11506, + "sociology": 11507, + "polar": 11508, + "rica": 11509, + "##eer": 11510, + "neill": 11511, + "##sman": 11512, + "holocaust": 11513, + "##ip": 11514, + "doubled": 11515, + "lust": 11516, + "1828": 11517, + "109": 11518, + "decent": 11519, + "cooling": 11520, + "unveiled": 11521, + "##card": 11522, + "1829": 11523, + "nsw": 11524, + "homer": 11525, + "chapman": 11526, + "meyer": 11527, + "##gin": 11528, + "dive": 11529, + "mae": 11530, + "reagan": 11531, + "expertise": 11532, + "##gled": 11533, + "darwin": 11534, + "brooke": 11535, + "sided": 11536, + "prosecution": 11537, + "investigating": 11538, + "comprised": 11539, + "petroleum": 11540, + "genres": 11541, + "reluctant": 11542, + "differently": 11543, + "trilogy": 11544, + "johns": 11545, + "vegetables": 11546, + "corpse": 11547, + "highlighted": 11548, + "lounge": 11549, + "pension": 11550, + "unsuccessfully": 11551, + "elegant": 11552, + "aided": 11553, + "ivory": 11554, + "beatles": 11555, + "amelia": 11556, + "cain": 11557, + "dubai": 11558, + "sunny": 11559, + "immigrant": 11560, + "babe": 11561, + "click": 11562, + "##nder": 11563, + "underwater": 11564, + "pepper": 11565, + "combining": 11566, + "mumbled": 11567, + "atlas": 11568, + "horns": 11569, + "accessed": 11570, + "ballad": 11571, + "physicians": 11572, + "homeless": 11573, + "gestured": 11574, + "rpm": 11575, + "freak": 11576, + "louisville": 11577, + "corporations": 11578, + "patriots": 11579, + "prizes": 11580, + "rational": 11581, + "warn": 11582, + "modes": 11583, + "decorative": 11584, + "overnight": 11585, + "din": 11586, + "troubled": 11587, + "phantom": 11588, + "##ort": 11589, + "monarch": 11590, + "sheer": 11591, + "##dorf": 11592, + "generals": 11593, + "guidelines": 11594, + "organs": 11595, + "addresses": 11596, + "##zon": 11597, + "enhance": 11598, + "curling": 11599, + "parishes": 11600, + "cord": 11601, + "##kie": 11602, + "linux": 11603, + "caesar": 11604, + "deutsche": 11605, + "bavaria": 11606, + "##bia": 11607, + "coleman": 11608, + "cyclone": 11609, + "##eria": 11610, + "bacon": 11611, + "petty": 11612, + "##yama": 11613, + "##old": 11614, + "hampton": 11615, + "diagnosis": 11616, + "1824": 11617, + "throws": 11618, + "complexity": 11619, + "rita": 11620, + "disputed": 11621, + "##₃": 11622, + "pablo": 11623, + "##sch": 11624, + "marketed": 11625, + "trafficking": 11626, + "##ulus": 11627, + "examine": 11628, + "plague": 11629, + "formats": 11630, + "##oh": 11631, + "vault": 11632, + "faithful": 11633, + "##bourne": 11634, + "webster": 11635, + "##ox": 11636, + "highlights": 11637, + "##ient": 11638, + "##ann": 11639, + "phones": 11640, + "vacuum": 11641, + "sandwich": 11642, + "modeling": 11643, + "##gated": 11644, + "bolivia": 11645, + "clergy": 11646, + "qualities": 11647, + "isabel": 11648, + "##nas": 11649, + "##ars": 11650, + "wears": 11651, + "screams": 11652, + "reunited": 11653, + "annoyed": 11654, + "bra": 11655, + "##ancy": 11656, + "##rate": 11657, + "differential": 11658, + "transmitter": 11659, + "tattoo": 11660, + "container": 11661, + "poker": 11662, + "##och": 11663, + "excessive": 11664, + "resides": 11665, + "cowboys": 11666, + "##tum": 11667, + "augustus": 11668, + "trash": 11669, + "providers": 11670, + "statute": 11671, + "retreated": 11672, + "balcony": 11673, + "reversed": 11674, + "void": 11675, + "storey": 11676, + "preceded": 11677, + "masses": 11678, + "leap": 11679, + "laughs": 11680, + "neighborhoods": 11681, + "wards": 11682, + "schemes": 11683, + "falcon": 11684, + "santo": 11685, + "battlefield": 11686, + "pad": 11687, + "ronnie": 11688, + "thread": 11689, + "lesbian": 11690, + "venus": 11691, + "##dian": 11692, + "beg": 11693, + "sandstone": 11694, + "daylight": 11695, + "punched": 11696, + "gwen": 11697, + "analog": 11698, + "stroked": 11699, + "wwe": 11700, + "acceptable": 11701, + "measurements": 11702, + "dec": 11703, + "toxic": 11704, + "##kel": 11705, + "adequate": 11706, + "surgical": 11707, + "economist": 11708, + "parameters": 11709, + "varsity": 11710, + "##sberg": 11711, + "quantity": 11712, + "ella": 11713, + "##chy": 11714, + "##rton": 11715, + "countess": 11716, + "generating": 11717, + "precision": 11718, + "diamonds": 11719, + "expressway": 11720, + "ga": 11721, + "##ı": 11722, + "1821": 11723, + "uruguay": 11724, + "talents": 11725, + "galleries": 11726, + "expenses": 11727, + "scanned": 11728, + "colleague": 11729, + "outlets": 11730, + "ryder": 11731, + "lucien": 11732, + "##ila": 11733, + "paramount": 11734, + "##bon": 11735, + "syracuse": 11736, + "dim": 11737, + "fangs": 11738, + "gown": 11739, + "sweep": 11740, + "##sie": 11741, + "toyota": 11742, + "missionaries": 11743, + "websites": 11744, + "##nsis": 11745, + "sentences": 11746, + "adviser": 11747, + "val": 11748, + "trademark": 11749, + "spells": 11750, + "##plane": 11751, + "patience": 11752, + "starter": 11753, + "slim": 11754, + "##borg": 11755, + "toe": 11756, + "incredibly": 11757, + "shoots": 11758, + "elliot": 11759, + "nobility": 11760, + "##wyn": 11761, + "cowboy": 11762, + "endorsed": 11763, + "gardner": 11764, + "tendency": 11765, + "persuaded": 11766, + "organisms": 11767, + "emissions": 11768, + "kazakhstan": 11769, + "amused": 11770, + "boring": 11771, + "chips": 11772, + "themed": 11773, + "##hand": 11774, + "llc": 11775, + "constantinople": 11776, + "chasing": 11777, + "systematic": 11778, + "guatemala": 11779, + "borrowed": 11780, + "erin": 11781, + "carey": 11782, + "##hard": 11783, + "highlands": 11784, + "struggles": 11785, + "1810": 11786, + "##ifying": 11787, + "##ced": 11788, + "wong": 11789, + "exceptions": 11790, + "develops": 11791, + "enlarged": 11792, + "kindergarten": 11793, + "castro": 11794, + "##ern": 11795, + "##rina": 11796, + "leigh": 11797, + "zombie": 11798, + "juvenile": 11799, + "##most": 11800, + "consul": 11801, + "##nar": 11802, + "sailor": 11803, + "hyde": 11804, + "clarence": 11805, + "intensive": 11806, + "pinned": 11807, + "nasty": 11808, + "useless": 11809, + "jung": 11810, + "clayton": 11811, + "stuffed": 11812, + "exceptional": 11813, + "ix": 11814, + "apostolic": 11815, + "230": 11816, + "transactions": 11817, + "##dge": 11818, + "exempt": 11819, + "swinging": 11820, + "cove": 11821, + "religions": 11822, + "##ash": 11823, + "shields": 11824, + "dairy": 11825, + "bypass": 11826, + "190": 11827, + "pursuing": 11828, + "bug": 11829, + "joyce": 11830, + "bombay": 11831, + "chassis": 11832, + "southampton": 11833, + "chat": 11834, + "interact": 11835, + "redesignated": 11836, + "##pen": 11837, + "nascar": 11838, + "pray": 11839, + "salmon": 11840, + "rigid": 11841, + "regained": 11842, + "malaysian": 11843, + "grim": 11844, + "publicity": 11845, + "constituted": 11846, + "capturing": 11847, + "toilet": 11848, + "delegate": 11849, + "purely": 11850, + "tray": 11851, + "drift": 11852, + "loosely": 11853, + "striker": 11854, + "weakened": 11855, + "trinidad": 11856, + "mitch": 11857, + "itv": 11858, + "defines": 11859, + "transmitted": 11860, + "ming": 11861, + "scarlet": 11862, + "nodding": 11863, + "fitzgerald": 11864, + "fu": 11865, + "narrowly": 11866, + "sp": 11867, + "tooth": 11868, + "standings": 11869, + "virtue": 11870, + "##₁": 11871, + "##wara": 11872, + "##cting": 11873, + "chateau": 11874, + "gloves": 11875, + "lid": 11876, + "##nel": 11877, + "hurting": 11878, + "conservatory": 11879, + "##pel": 11880, + "sinclair": 11881, + "reopened": 11882, + "sympathy": 11883, + "nigerian": 11884, + "strode": 11885, + "advocated": 11886, + "optional": 11887, + "chronic": 11888, + "discharge": 11889, + "##rc": 11890, + "suck": 11891, + "compatible": 11892, + "laurel": 11893, + "stella": 11894, + "shi": 11895, + "fails": 11896, + "wage": 11897, + "dodge": 11898, + "128": 11899, + "informal": 11900, + "sorts": 11901, + "levi": 11902, + "buddha": 11903, + "villagers": 11904, + "##aka": 11905, + "chronicles": 11906, + "heavier": 11907, + "summoned": 11908, + "gateway": 11909, + "3000": 11910, + "eleventh": 11911, + "jewelry": 11912, + "translations": 11913, + "accordingly": 11914, + "seas": 11915, + "##ency": 11916, + "fiber": 11917, + "pyramid": 11918, + "cubic": 11919, + "dragging": 11920, + "##ista": 11921, + "caring": 11922, + "##ops": 11923, + "android": 11924, + "contacted": 11925, + "lunar": 11926, + "##dt": 11927, + "kai": 11928, + "lisbon": 11929, + "patted": 11930, + "1826": 11931, + "sacramento": 11932, + "theft": 11933, + "madagascar": 11934, + "subtropical": 11935, + "disputes": 11936, + "ta": 11937, + "holidays": 11938, + "piper": 11939, + "willow": 11940, + "mare": 11941, + "cane": 11942, + "itunes": 11943, + "newfoundland": 11944, + "benny": 11945, + "companions": 11946, + "dong": 11947, + "raj": 11948, + "observe": 11949, + "roar": 11950, + "charming": 11951, + "plaque": 11952, + "tibetan": 11953, + "fossils": 11954, + "enacted": 11955, + "manning": 11956, + "bubble": 11957, + "tina": 11958, + "tanzania": 11959, + "##eda": 11960, + "##hir": 11961, + "funk": 11962, + "swamp": 11963, + "deputies": 11964, + "cloak": 11965, + "ufc": 11966, + "scenario": 11967, + "par": 11968, + "scratch": 11969, + "metals": 11970, + "anthem": 11971, + "guru": 11972, + "engaging": 11973, + "specially": 11974, + "##boat": 11975, + "dialects": 11976, + "nineteen": 11977, + "cecil": 11978, + "duet": 11979, + "disability": 11980, + "messenger": 11981, + "unofficial": 11982, + "##lies": 11983, + "defunct": 11984, + "eds": 11985, + "moonlight": 11986, + "drainage": 11987, + "surname": 11988, + "puzzle": 11989, + "honda": 11990, + "switching": 11991, + "conservatives": 11992, + "mammals": 11993, + "knox": 11994, + "broadcaster": 11995, + "sidewalk": 11996, + "cope": 11997, + "##ried": 11998, + "benson": 11999, + "princes": 12000, + "peterson": 12001, + "##sal": 12002, + "bedford": 12003, + "sharks": 12004, + "eli": 12005, + "wreck": 12006, + "alberto": 12007, + "gasp": 12008, + "archaeology": 12009, + "lgbt": 12010, + "teaches": 12011, + "securities": 12012, + "madness": 12013, + "compromise": 12014, + "waving": 12015, + "coordination": 12016, + "davidson": 12017, + "visions": 12018, + "leased": 12019, + "possibilities": 12020, + "eighty": 12021, + "jun": 12022, + "fernandez": 12023, + "enthusiasm": 12024, + "assassin": 12025, + "sponsorship": 12026, + "reviewer": 12027, + "kingdoms": 12028, + "estonian": 12029, + "laboratories": 12030, + "##fy": 12031, + "##nal": 12032, + "applies": 12033, + "verb": 12034, + "celebrations": 12035, + "##zzo": 12036, + "rowing": 12037, + "lightweight": 12038, + "sadness": 12039, + "submit": 12040, + "mvp": 12041, + "balanced": 12042, + "dude": 12043, + "##vas": 12044, + "explicitly": 12045, + "metric": 12046, + "magnificent": 12047, + "mound": 12048, + "brett": 12049, + "mohammad": 12050, + "mistakes": 12051, + "irregular": 12052, + "##hing": 12053, + "##ass": 12054, + "sanders": 12055, + "betrayed": 12056, + "shipped": 12057, + "surge": 12058, + "##enburg": 12059, + "reporters": 12060, + "termed": 12061, + "georg": 12062, + "pity": 12063, + "verbal": 12064, + "bulls": 12065, + "abbreviated": 12066, + "enabling": 12067, + "appealed": 12068, + "##are": 12069, + "##atic": 12070, + "sicily": 12071, + "sting": 12072, + "heel": 12073, + "sweetheart": 12074, + "bart": 12075, + "spacecraft": 12076, + "brutal": 12077, + "monarchy": 12078, + "##tter": 12079, + "aberdeen": 12080, + "cameo": 12081, + "diane": 12082, + "##ub": 12083, + "survivor": 12084, + "clyde": 12085, + "##aries": 12086, + "complaint": 12087, + "##makers": 12088, + "clarinet": 12089, + "delicious": 12090, + "chilean": 12091, + "karnataka": 12092, + "coordinates": 12093, + "1818": 12094, + "panties": 12095, + "##rst": 12096, + "pretending": 12097, + "ar": 12098, + "dramatically": 12099, + "kiev": 12100, + "bella": 12101, + "tends": 12102, + "distances": 12103, + "113": 12104, + "catalog": 12105, + "launching": 12106, + "instances": 12107, + "telecommunications": 12108, + "portable": 12109, + "lindsay": 12110, + "vatican": 12111, + "##eim": 12112, + "angles": 12113, + "aliens": 12114, + "marker": 12115, + "stint": 12116, + "screens": 12117, + "bolton": 12118, + "##rne": 12119, + "judy": 12120, + "wool": 12121, + "benedict": 12122, + "plasma": 12123, + "europa": 12124, + "spark": 12125, + "imaging": 12126, + "filmmaker": 12127, + "swiftly": 12128, + "##een": 12129, + "contributor": 12130, + "##nor": 12131, + "opted": 12132, + "stamps": 12133, + "apologize": 12134, + "financing": 12135, + "butter": 12136, + "gideon": 12137, + "sophisticated": 12138, + "alignment": 12139, + "avery": 12140, + "chemicals": 12141, + "yearly": 12142, + "speculation": 12143, + "prominence": 12144, + "professionally": 12145, + "##ils": 12146, + "immortal": 12147, + "institutional": 12148, + "inception": 12149, + "wrists": 12150, + "identifying": 12151, + "tribunal": 12152, + "derives": 12153, + "gains": 12154, + "##wo": 12155, + "papal": 12156, + "preference": 12157, + "linguistic": 12158, + "vince": 12159, + "operative": 12160, + "brewery": 12161, + "##ont": 12162, + "unemployment": 12163, + "boyd": 12164, + "##ured": 12165, + "##outs": 12166, + "albeit": 12167, + "prophet": 12168, + "1813": 12169, + "bi": 12170, + "##rr": 12171, + "##face": 12172, + "##rad": 12173, + "quarterly": 12174, + "asteroid": 12175, + "cleaned": 12176, + "radius": 12177, + "temper": 12178, + "##llen": 12179, + "telugu": 12180, + "jerk": 12181, + "viscount": 12182, + "menu": 12183, + "##ote": 12184, + "glimpse": 12185, + "##aya": 12186, + "yacht": 12187, + "hawaiian": 12188, + "baden": 12189, + "##rl": 12190, + "laptop": 12191, + "readily": 12192, + "##gu": 12193, + "monetary": 12194, + "offshore": 12195, + "scots": 12196, + "watches": 12197, + "##yang": 12198, + "##arian": 12199, + "upgrade": 12200, + "needle": 12201, + "xbox": 12202, + "lea": 12203, + "encyclopedia": 12204, + "flank": 12205, + "fingertips": 12206, + "##pus": 12207, + "delight": 12208, + "teachings": 12209, + "confirm": 12210, + "roth": 12211, + "beaches": 12212, + "midway": 12213, + "winters": 12214, + "##iah": 12215, + "teasing": 12216, + "daytime": 12217, + "beverly": 12218, + "gambling": 12219, + "bonnie": 12220, + "##backs": 12221, + "regulated": 12222, + "clement": 12223, + "hermann": 12224, + "tricks": 12225, + "knot": 12226, + "##shing": 12227, + "##uring": 12228, + "##vre": 12229, + "detached": 12230, + "ecological": 12231, + "owed": 12232, + "specialty": 12233, + "byron": 12234, + "inventor": 12235, + "bats": 12236, + "stays": 12237, + "screened": 12238, + "unesco": 12239, + "midland": 12240, + "trim": 12241, + "affection": 12242, + "##ander": 12243, + "##rry": 12244, + "jess": 12245, + "thoroughly": 12246, + "feedback": 12247, + "##uma": 12248, + "chennai": 12249, + "strained": 12250, + "heartbeat": 12251, + "wrapping": 12252, + "overtime": 12253, + "pleaded": 12254, + "##sworth": 12255, + "mon": 12256, + "leisure": 12257, + "oclc": 12258, + "##tate": 12259, + "##ele": 12260, + "feathers": 12261, + "angelo": 12262, + "thirds": 12263, + "nuts": 12264, + "surveys": 12265, + "clever": 12266, + "gill": 12267, + "commentator": 12268, + "##dos": 12269, + "darren": 12270, + "rides": 12271, + "gibraltar": 12272, + "##nc": 12273, + "##mu": 12274, + "dissolution": 12275, + "dedication": 12276, + "shin": 12277, + "meals": 12278, + "saddle": 12279, + "elvis": 12280, + "reds": 12281, + "chaired": 12282, + "taller": 12283, + "appreciation": 12284, + "functioning": 12285, + "niece": 12286, + "favored": 12287, + "advocacy": 12288, + "robbie": 12289, + "criminals": 12290, + "suffolk": 12291, + "yugoslav": 12292, + "passport": 12293, + "constable": 12294, + "congressman": 12295, + "hastings": 12296, + "vera": 12297, + "##rov": 12298, + "consecrated": 12299, + "sparks": 12300, + "ecclesiastical": 12301, + "confined": 12302, + "##ovich": 12303, + "muller": 12304, + "floyd": 12305, + "nora": 12306, + "1822": 12307, + "paved": 12308, + "1827": 12309, + "cumberland": 12310, + "ned": 12311, + "saga": 12312, + "spiral": 12313, + "##flow": 12314, + "appreciated": 12315, + "yi": 12316, + "collaborative": 12317, + "treating": 12318, + "similarities": 12319, + "feminine": 12320, + "finishes": 12321, + "##ib": 12322, + "jade": 12323, + "import": 12324, + "##nse": 12325, + "##hot": 12326, + "champagne": 12327, + "mice": 12328, + "securing": 12329, + "celebrities": 12330, + "helsinki": 12331, + "attributes": 12332, + "##gos": 12333, + "cousins": 12334, + "phases": 12335, + "ache": 12336, + "lucia": 12337, + "gandhi": 12338, + "submission": 12339, + "vicar": 12340, + "spear": 12341, + "shine": 12342, + "tasmania": 12343, + "biting": 12344, + "detention": 12345, + "constitute": 12346, + "tighter": 12347, + "seasonal": 12348, + "##gus": 12349, + "terrestrial": 12350, + "matthews": 12351, + "##oka": 12352, + "effectiveness": 12353, + "parody": 12354, + "philharmonic": 12355, + "##onic": 12356, + "1816": 12357, + "strangers": 12358, + "encoded": 12359, + "consortium": 12360, + "guaranteed": 12361, + "regards": 12362, + "shifts": 12363, + "tortured": 12364, + "collision": 12365, + "supervisor": 12366, + "inform": 12367, + "broader": 12368, + "insight": 12369, + "theaters": 12370, + "armour": 12371, + "emeritus": 12372, + "blink": 12373, + "incorporates": 12374, + "mapping": 12375, + "##50": 12376, + "##ein": 12377, + "handball": 12378, + "flexible": 12379, + "##nta": 12380, + "substantially": 12381, + "generous": 12382, + "thief": 12383, + "##own": 12384, + "carr": 12385, + "loses": 12386, + "1793": 12387, + "prose": 12388, + "ucla": 12389, + "romeo": 12390, + "generic": 12391, + "metallic": 12392, + "realization": 12393, + "damages": 12394, + "mk": 12395, + "commissioners": 12396, + "zach": 12397, + "default": 12398, + "##ther": 12399, + "helicopters": 12400, + "lengthy": 12401, + "stems": 12402, + "spa": 12403, + "partnered": 12404, + "spectators": 12405, + "rogue": 12406, + "indication": 12407, + "penalties": 12408, + "teresa": 12409, + "1801": 12410, + "sen": 12411, + "##tric": 12412, + "dalton": 12413, + "##wich": 12414, + "irving": 12415, + "photographic": 12416, + "##vey": 12417, + "dell": 12418, + "deaf": 12419, + "peters": 12420, + "excluded": 12421, + "unsure": 12422, + "##vable": 12423, + "patterson": 12424, + "crawled": 12425, + "##zio": 12426, + "resided": 12427, + "whipped": 12428, + "latvia": 12429, + "slower": 12430, + "ecole": 12431, + "pipes": 12432, + "employers": 12433, + "maharashtra": 12434, + "comparable": 12435, + "va": 12436, + "textile": 12437, + "pageant": 12438, + "##gel": 12439, + "alphabet": 12440, + "binary": 12441, + "irrigation": 12442, + "chartered": 12443, + "choked": 12444, + "antoine": 12445, + "offs": 12446, + "waking": 12447, + "supplement": 12448, + "##wen": 12449, + "quantities": 12450, + "demolition": 12451, + "regain": 12452, + "locate": 12453, + "urdu": 12454, + "folks": 12455, + "alt": 12456, + "114": 12457, + "##mc": 12458, + "scary": 12459, + "andreas": 12460, + "whites": 12461, + "##ava": 12462, + "classrooms": 12463, + "mw": 12464, + "aesthetic": 12465, + "publishes": 12466, + "valleys": 12467, + "guides": 12468, + "cubs": 12469, + "johannes": 12470, + "bryant": 12471, + "conventions": 12472, + "affecting": 12473, + "##itt": 12474, + "drain": 12475, + "awesome": 12476, + "isolation": 12477, + "prosecutor": 12478, + "ambitious": 12479, + "apology": 12480, + "captive": 12481, + "downs": 12482, + "atmospheric": 12483, + "lorenzo": 12484, + "aisle": 12485, + "beef": 12486, + "foul": 12487, + "##onia": 12488, + "kidding": 12489, + "composite": 12490, + "disturbed": 12491, + "illusion": 12492, + "natives": 12493, + "##ffer": 12494, + "emi": 12495, + "rockets": 12496, + "riverside": 12497, + "wartime": 12498, + "painters": 12499, + "adolf": 12500, + "melted": 12501, + "##ail": 12502, + "uncertainty": 12503, + "simulation": 12504, + "hawks": 12505, + "progressed": 12506, + "meantime": 12507, + "builder": 12508, + "spray": 12509, + "breach": 12510, + "unhappy": 12511, + "regina": 12512, + "russians": 12513, + "##urg": 12514, + "determining": 12515, + "##tation": 12516, + "tram": 12517, + "1806": 12518, + "##quin": 12519, + "aging": 12520, + "##12": 12521, + "1823": 12522, + "garion": 12523, + "rented": 12524, + "mister": 12525, + "diaz": 12526, + "terminated": 12527, + "clip": 12528, + "1817": 12529, + "depend": 12530, + "nervously": 12531, + "disco": 12532, + "owe": 12533, + "defenders": 12534, + "shiva": 12535, + "notorious": 12536, + "disbelief": 12537, + "shiny": 12538, + "worcester": 12539, + "##gation": 12540, + "##yr": 12541, + "trailing": 12542, + "undertook": 12543, + "islander": 12544, + "belarus": 12545, + "limitations": 12546, + "watershed": 12547, + "fuller": 12548, + "overlooking": 12549, + "utilized": 12550, + "raphael": 12551, + "1819": 12552, + "synthetic": 12553, + "breakdown": 12554, + "klein": 12555, + "##nate": 12556, + "moaned": 12557, + "memoir": 12558, + "lamb": 12559, + "practicing": 12560, + "##erly": 12561, + "cellular": 12562, + "arrows": 12563, + "exotic": 12564, + "##graphy": 12565, + "witches": 12566, + "117": 12567, + "charted": 12568, + "rey": 12569, + "hut": 12570, + "hierarchy": 12571, + "subdivision": 12572, + "freshwater": 12573, + "giuseppe": 12574, + "aloud": 12575, + "reyes": 12576, + "qatar": 12577, + "marty": 12578, + "sideways": 12579, + "utterly": 12580, + "sexually": 12581, + "jude": 12582, + "prayers": 12583, + "mccarthy": 12584, + "softball": 12585, + "blend": 12586, + "damien": 12587, + "##gging": 12588, + "##metric": 12589, + "wholly": 12590, + "erupted": 12591, + "lebanese": 12592, + "negro": 12593, + "revenues": 12594, + "tasted": 12595, + "comparative": 12596, + "teamed": 12597, + "transaction": 12598, + "labeled": 12599, + "maori": 12600, + "sovereignty": 12601, + "parkway": 12602, + "trauma": 12603, + "gran": 12604, + "malay": 12605, + "121": 12606, + "advancement": 12607, + "descendant": 12608, + "2020": 12609, + "buzz": 12610, + "salvation": 12611, + "inventory": 12612, + "symbolic": 12613, + "##making": 12614, + "antarctica": 12615, + "mps": 12616, + "##gas": 12617, + "##bro": 12618, + "mohammed": 12619, + "myanmar": 12620, + "holt": 12621, + "submarines": 12622, + "tones": 12623, + "##lman": 12624, + "locker": 12625, + "patriarch": 12626, + "bangkok": 12627, + "emerson": 12628, + "remarks": 12629, + "predators": 12630, + "kin": 12631, + "afghan": 12632, + "confession": 12633, + "norwich": 12634, + "rental": 12635, + "emerge": 12636, + "advantages": 12637, + "##zel": 12638, + "rca": 12639, + "##hold": 12640, + "shortened": 12641, + "storms": 12642, + "aidan": 12643, + "##matic": 12644, + "autonomy": 12645, + "compliance": 12646, + "##quet": 12647, + "dudley": 12648, + "atp": 12649, + "##osis": 12650, + "1803": 12651, + "motto": 12652, + "documentation": 12653, + "summary": 12654, + "professors": 12655, + "spectacular": 12656, + "christina": 12657, + "archdiocese": 12658, + "flashing": 12659, + "innocence": 12660, + "remake": 12661, + "##dell": 12662, + "psychic": 12663, + "reef": 12664, + "scare": 12665, + "employ": 12666, + "rs": 12667, + "sticks": 12668, + "meg": 12669, + "gus": 12670, + "leans": 12671, + "##ude": 12672, + "accompany": 12673, + "bergen": 12674, + "tomas": 12675, + "##iko": 12676, + "doom": 12677, + "wages": 12678, + "pools": 12679, + "##nch": 12680, + "##bes": 12681, + "breasts": 12682, + "scholarly": 12683, + "alison": 12684, + "outline": 12685, + "brittany": 12686, + "breakthrough": 12687, + "willis": 12688, + "realistic": 12689, + "##cut": 12690, + "##boro": 12691, + "competitor": 12692, + "##stan": 12693, + "pike": 12694, + "picnic": 12695, + "icon": 12696, + "designing": 12697, + "commercials": 12698, + "washing": 12699, + "villain": 12700, + "skiing": 12701, + "micro": 12702, + "costumes": 12703, + "auburn": 12704, + "halted": 12705, + "executives": 12706, + "##hat": 12707, + "logistics": 12708, + "cycles": 12709, + "vowel": 12710, + "applicable": 12711, + "barrett": 12712, + "exclaimed": 12713, + "eurovision": 12714, + "eternity": 12715, + "ramon": 12716, + "##umi": 12717, + "##lls": 12718, + "modifications": 12719, + "sweeping": 12720, + "disgust": 12721, + "##uck": 12722, + "torch": 12723, + "aviv": 12724, + "ensuring": 12725, + "rude": 12726, + "dusty": 12727, + "sonic": 12728, + "donovan": 12729, + "outskirts": 12730, + "cu": 12731, + "pathway": 12732, + "##band": 12733, + "##gun": 12734, + "##lines": 12735, + "disciplines": 12736, + "acids": 12737, + "cadet": 12738, + "paired": 12739, + "##40": 12740, + "sketches": 12741, + "##sive": 12742, + "marriages": 12743, + "##⁺": 12744, + "folding": 12745, + "peers": 12746, + "slovak": 12747, + "implies": 12748, + "admired": 12749, + "##beck": 12750, + "1880s": 12751, + "leopold": 12752, + "instinct": 12753, + "attained": 12754, + "weston": 12755, + "megan": 12756, + "horace": 12757, + "##ination": 12758, + "dorsal": 12759, + "ingredients": 12760, + "evolutionary": 12761, + "##its": 12762, + "complications": 12763, + "deity": 12764, + "lethal": 12765, + "brushing": 12766, + "levy": 12767, + "deserted": 12768, + "institutes": 12769, + "posthumously": 12770, + "delivering": 12771, + "telescope": 12772, + "coronation": 12773, + "motivated": 12774, + "rapids": 12775, + "luc": 12776, + "flicked": 12777, + "pays": 12778, + "volcano": 12779, + "tanner": 12780, + "weighed": 12781, + "##nica": 12782, + "crowds": 12783, + "frankie": 12784, + "gifted": 12785, + "addressing": 12786, + "granddaughter": 12787, + "winding": 12788, + "##rna": 12789, + "constantine": 12790, + "gomez": 12791, + "##front": 12792, + "landscapes": 12793, + "rudolf": 12794, + "anthropology": 12795, + "slate": 12796, + "werewolf": 12797, + "##lio": 12798, + "astronomy": 12799, + "circa": 12800, + "rouge": 12801, + "dreaming": 12802, + "sack": 12803, + "knelt": 12804, + "drowned": 12805, + "naomi": 12806, + "prolific": 12807, + "tracked": 12808, + "freezing": 12809, + "herb": 12810, + "##dium": 12811, + "agony": 12812, + "randall": 12813, + "twisting": 12814, + "wendy": 12815, + "deposit": 12816, + "touches": 12817, + "vein": 12818, + "wheeler": 12819, + "##bbled": 12820, + "##bor": 12821, + "batted": 12822, + "retaining": 12823, + "tire": 12824, + "presently": 12825, + "compare": 12826, + "specification": 12827, + "daemon": 12828, + "nigel": 12829, + "##grave": 12830, + "merry": 12831, + "recommendation": 12832, + "czechoslovakia": 12833, + "sandra": 12834, + "ng": 12835, + "roma": 12836, + "##sts": 12837, + "lambert": 12838, + "inheritance": 12839, + "sheikh": 12840, + "winchester": 12841, + "cries": 12842, + "examining": 12843, + "##yle": 12844, + "comeback": 12845, + "cuisine": 12846, + "nave": 12847, + "##iv": 12848, + "ko": 12849, + "retrieve": 12850, + "tomatoes": 12851, + "barker": 12852, + "polished": 12853, + "defining": 12854, + "irene": 12855, + "lantern": 12856, + "personalities": 12857, + "begging": 12858, + "tract": 12859, + "swore": 12860, + "1809": 12861, + "175": 12862, + "##gic": 12863, + "omaha": 12864, + "brotherhood": 12865, + "##rley": 12866, + "haiti": 12867, + "##ots": 12868, + "exeter": 12869, + "##ete": 12870, + "##zia": 12871, + "steele": 12872, + "dumb": 12873, + "pearson": 12874, + "210": 12875, + "surveyed": 12876, + "elisabeth": 12877, + "trends": 12878, + "##ef": 12879, + "fritz": 12880, + "##rf": 12881, + "premium": 12882, + "bugs": 12883, + "fraction": 12884, + "calmly": 12885, + "viking": 12886, + "##birds": 12887, + "tug": 12888, + "inserted": 12889, + "unusually": 12890, + "##ield": 12891, + "confronted": 12892, + "distress": 12893, + "crashing": 12894, + "brent": 12895, + "turks": 12896, + "resign": 12897, + "##olo": 12898, + "cambodia": 12899, + "gabe": 12900, + "sauce": 12901, + "##kal": 12902, + "evelyn": 12903, + "116": 12904, + "extant": 12905, + "clusters": 12906, + "quarry": 12907, + "teenagers": 12908, + "luna": 12909, + "##lers": 12910, + "##ister": 12911, + "affiliation": 12912, + "drill": 12913, + "##ashi": 12914, + "panthers": 12915, + "scenic": 12916, + "libya": 12917, + "anita": 12918, + "strengthen": 12919, + "inscriptions": 12920, + "##cated": 12921, + "lace": 12922, + "sued": 12923, + "judith": 12924, + "riots": 12925, + "##uted": 12926, + "mint": 12927, + "##eta": 12928, + "preparations": 12929, + "midst": 12930, + "dub": 12931, + "challenger": 12932, + "##vich": 12933, + "mock": 12934, + "cf": 12935, + "displaced": 12936, + "wicket": 12937, + "breaths": 12938, + "enables": 12939, + "schmidt": 12940, + "analyst": 12941, + "##lum": 12942, + "ag": 12943, + "highlight": 12944, + "automotive": 12945, + "axe": 12946, + "josef": 12947, + "newark": 12948, + "sufficiently": 12949, + "resembles": 12950, + "50th": 12951, + "##pal": 12952, + "flushed": 12953, + "mum": 12954, + "traits": 12955, + "##ante": 12956, + "commodore": 12957, + "incomplete": 12958, + "warming": 12959, + "titular": 12960, + "ceremonial": 12961, + "ethical": 12962, + "118": 12963, + "celebrating": 12964, + "eighteenth": 12965, + "cao": 12966, + "lima": 12967, + "medalist": 12968, + "mobility": 12969, + "strips": 12970, + "snakes": 12971, + "##city": 12972, + "miniature": 12973, + "zagreb": 12974, + "barton": 12975, + "escapes": 12976, + "umbrella": 12977, + "automated": 12978, + "doubted": 12979, + "differs": 12980, + "cooled": 12981, + "georgetown": 12982, + "dresden": 12983, + "cooked": 12984, + "fade": 12985, + "wyatt": 12986, + "rna": 12987, + "jacobs": 12988, + "carlton": 12989, + "abundant": 12990, + "stereo": 12991, + "boost": 12992, + "madras": 12993, + "inning": 12994, + "##hia": 12995, + "spur": 12996, + "ip": 12997, + "malayalam": 12998, + "begged": 12999, + "osaka": 13000, + "groan": 13001, + "escaping": 13002, + "charging": 13003, + "dose": 13004, + "vista": 13005, + "##aj": 13006, + "bud": 13007, + "papa": 13008, + "communists": 13009, + "advocates": 13010, + "edged": 13011, + "tri": 13012, + "##cent": 13013, + "resemble": 13014, + "peaking": 13015, + "necklace": 13016, + "fried": 13017, + "montenegro": 13018, + "saxony": 13019, + "goose": 13020, + "glances": 13021, + "stuttgart": 13022, + "curator": 13023, + "recruit": 13024, + "grocery": 13025, + "sympathetic": 13026, + "##tting": 13027, + "##fort": 13028, + "127": 13029, + "lotus": 13030, + "randolph": 13031, + "ancestor": 13032, + "##rand": 13033, + "succeeding": 13034, + "jupiter": 13035, + "1798": 13036, + "macedonian": 13037, + "##heads": 13038, + "hiking": 13039, + "1808": 13040, + "handing": 13041, + "fischer": 13042, + "##itive": 13043, + "garbage": 13044, + "node": 13045, + "##pies": 13046, + "prone": 13047, + "singular": 13048, + "papua": 13049, + "inclined": 13050, + "attractions": 13051, + "italia": 13052, + "pouring": 13053, + "motioned": 13054, + "grandma": 13055, + "garnered": 13056, + "jacksonville": 13057, + "corp": 13058, + "ego": 13059, + "ringing": 13060, + "aluminum": 13061, + "##hausen": 13062, + "ordering": 13063, + "##foot": 13064, + "drawer": 13065, + "traders": 13066, + "synagogue": 13067, + "##play": 13068, + "##kawa": 13069, + "resistant": 13070, + "wandering": 13071, + "fragile": 13072, + "fiona": 13073, + "teased": 13074, + "var": 13075, + "hardcore": 13076, + "soaked": 13077, + "jubilee": 13078, + "decisive": 13079, + "exposition": 13080, + "mercer": 13081, + "poster": 13082, + "valencia": 13083, + "hale": 13084, + "kuwait": 13085, + "1811": 13086, + "##ises": 13087, + "##wr": 13088, + "##eed": 13089, + "tavern": 13090, + "gamma": 13091, + "122": 13092, + "johan": 13093, + "##uer": 13094, + "airways": 13095, + "amino": 13096, + "gil": 13097, + "##ury": 13098, + "vocational": 13099, + "domains": 13100, + "torres": 13101, + "##sp": 13102, + "generator": 13103, + "folklore": 13104, + "outcomes": 13105, + "##keeper": 13106, + "canberra": 13107, + "shooter": 13108, + "fl": 13109, + "beams": 13110, + "confrontation": 13111, + "##lling": 13112, + "##gram": 13113, + "feb": 13114, + "aligned": 13115, + "forestry": 13116, + "pipeline": 13117, + "jax": 13118, + "motorway": 13119, + "conception": 13120, + "decay": 13121, + "##tos": 13122, + "coffin": 13123, + "##cott": 13124, + "stalin": 13125, + "1805": 13126, + "escorted": 13127, + "minded": 13128, + "##nam": 13129, + "sitcom": 13130, + "purchasing": 13131, + "twilight": 13132, + "veronica": 13133, + "additions": 13134, + "passive": 13135, + "tensions": 13136, + "straw": 13137, + "123": 13138, + "frequencies": 13139, + "1804": 13140, + "refugee": 13141, + "cultivation": 13142, + "##iate": 13143, + "christie": 13144, + "clary": 13145, + "bulletin": 13146, + "crept": 13147, + "disposal": 13148, + "##rich": 13149, + "##zong": 13150, + "processor": 13151, + "crescent": 13152, + "##rol": 13153, + "bmw": 13154, + "emphasized": 13155, + "whale": 13156, + "nazis": 13157, + "aurora": 13158, + "##eng": 13159, + "dwelling": 13160, + "hauled": 13161, + "sponsors": 13162, + "toledo": 13163, + "mega": 13164, + "ideology": 13165, + "theatres": 13166, + "tessa": 13167, + "cerambycidae": 13168, + "saves": 13169, + "turtle": 13170, + "cone": 13171, + "suspects": 13172, + "kara": 13173, + "rusty": 13174, + "yelling": 13175, + "greeks": 13176, + "mozart": 13177, + "shades": 13178, + "cocked": 13179, + "participant": 13180, + "##tro": 13181, + "shire": 13182, + "spit": 13183, + "freeze": 13184, + "necessity": 13185, + "##cos": 13186, + "inmates": 13187, + "nielsen": 13188, + "councillors": 13189, + "loaned": 13190, + "uncommon": 13191, + "omar": 13192, + "peasants": 13193, + "botanical": 13194, + "offspring": 13195, + "daniels": 13196, + "formations": 13197, + "jokes": 13198, + "1794": 13199, + "pioneers": 13200, + "sigma": 13201, + "licensing": 13202, + "##sus": 13203, + "wheelchair": 13204, + "polite": 13205, + "1807": 13206, + "liquor": 13207, + "pratt": 13208, + "trustee": 13209, + "##uta": 13210, + "forewings": 13211, + "balloon": 13212, + "##zz": 13213, + "kilometre": 13214, + "camping": 13215, + "explicit": 13216, + "casually": 13217, + "shawn": 13218, + "foolish": 13219, + "teammates": 13220, + "nm": 13221, + "hassan": 13222, + "carrie": 13223, + "judged": 13224, + "satisfy": 13225, + "vanessa": 13226, + "knives": 13227, + "selective": 13228, + "cnn": 13229, + "flowed": 13230, + "##lice": 13231, + "eclipse": 13232, + "stressed": 13233, + "eliza": 13234, + "mathematician": 13235, + "cease": 13236, + "cultivated": 13237, + "##roy": 13238, + "commissions": 13239, + "browns": 13240, + "##ania": 13241, + "destroyers": 13242, + "sheridan": 13243, + "meadow": 13244, + "##rius": 13245, + "minerals": 13246, + "##cial": 13247, + "downstream": 13248, + "clash": 13249, + "gram": 13250, + "memoirs": 13251, + "ventures": 13252, + "baha": 13253, + "seymour": 13254, + "archie": 13255, + "midlands": 13256, + "edith": 13257, + "fare": 13258, + "flynn": 13259, + "invite": 13260, + "canceled": 13261, + "tiles": 13262, + "stabbed": 13263, + "boulder": 13264, + "incorporate": 13265, + "amended": 13266, + "camden": 13267, + "facial": 13268, + "mollusk": 13269, + "unreleased": 13270, + "descriptions": 13271, + "yoga": 13272, + "grabs": 13273, + "550": 13274, + "raises": 13275, + "ramp": 13276, + "shiver": 13277, + "##rose": 13278, + "coined": 13279, + "pioneering": 13280, + "tunes": 13281, + "qing": 13282, + "warwick": 13283, + "tops": 13284, + "119": 13285, + "melanie": 13286, + "giles": 13287, + "##rous": 13288, + "wandered": 13289, + "##inal": 13290, + "annexed": 13291, + "nov": 13292, + "30th": 13293, + "unnamed": 13294, + "##ished": 13295, + "organizational": 13296, + "airplane": 13297, + "normandy": 13298, + "stoke": 13299, + "whistle": 13300, + "blessing": 13301, + "violations": 13302, + "chased": 13303, + "holders": 13304, + "shotgun": 13305, + "##ctic": 13306, + "outlet": 13307, + "reactor": 13308, + "##vik": 13309, + "tires": 13310, + "tearing": 13311, + "shores": 13312, + "fortified": 13313, + "mascot": 13314, + "constituencies": 13315, + "nc": 13316, + "columnist": 13317, + "productive": 13318, + "tibet": 13319, + "##rta": 13320, + "lineage": 13321, + "hooked": 13322, + "oct": 13323, + "tapes": 13324, + "judging": 13325, + "cody": 13326, + "##gger": 13327, + "hansen": 13328, + "kashmir": 13329, + "triggered": 13330, + "##eva": 13331, + "solved": 13332, + "cliffs": 13333, + "##tree": 13334, + "resisted": 13335, + "anatomy": 13336, + "protesters": 13337, + "transparent": 13338, + "implied": 13339, + "##iga": 13340, + "injection": 13341, + "mattress": 13342, + "excluding": 13343, + "##mbo": 13344, + "defenses": 13345, + "helpless": 13346, + "devotion": 13347, + "##elli": 13348, + "growl": 13349, + "liberals": 13350, + "weber": 13351, + "phenomena": 13352, + "atoms": 13353, + "plug": 13354, + "##iff": 13355, + "mortality": 13356, + "apprentice": 13357, + "howe": 13358, + "convincing": 13359, + "aaa": 13360, + "swimmer": 13361, + "barber": 13362, + "leone": 13363, + "promptly": 13364, + "sodium": 13365, + "def": 13366, + "nowadays": 13367, + "arise": 13368, + "##oning": 13369, + "gloucester": 13370, + "corrected": 13371, + "dignity": 13372, + "norm": 13373, + "erie": 13374, + "##ders": 13375, + "elders": 13376, + "evacuated": 13377, + "sylvia": 13378, + "compression": 13379, + "##yar": 13380, + "hartford": 13381, + "pose": 13382, + "backpack": 13383, + "reasoning": 13384, + "accepts": 13385, + "24th": 13386, + "wipe": 13387, + "millimetres": 13388, + "marcel": 13389, + "##oda": 13390, + "dodgers": 13391, + "albion": 13392, + "1790": 13393, + "overwhelmed": 13394, + "aerospace": 13395, + "oaks": 13396, + "1795": 13397, + "showcase": 13398, + "acknowledge": 13399, + "recovering": 13400, + "nolan": 13401, + "ashe": 13402, + "hurts": 13403, + "geology": 13404, + "fashioned": 13405, + "disappearance": 13406, + "farewell": 13407, + "swollen": 13408, + "shrug": 13409, + "marquis": 13410, + "wimbledon": 13411, + "124": 13412, + "rue": 13413, + "1792": 13414, + "commemorate": 13415, + "reduces": 13416, + "experiencing": 13417, + "inevitable": 13418, + "calcutta": 13419, + "intel": 13420, + "##court": 13421, + "murderer": 13422, + "sticking": 13423, + "fisheries": 13424, + "imagery": 13425, + "bloom": 13426, + "280": 13427, + "brake": 13428, + "##inus": 13429, + "gustav": 13430, + "hesitation": 13431, + "memorable": 13432, + "po": 13433, + "viral": 13434, + "beans": 13435, + "accidents": 13436, + "tunisia": 13437, + "antenna": 13438, + "spilled": 13439, + "consort": 13440, + "treatments": 13441, + "aye": 13442, + "perimeter": 13443, + "##gard": 13444, + "donation": 13445, + "hostage": 13446, + "migrated": 13447, + "banker": 13448, + "addiction": 13449, + "apex": 13450, + "lil": 13451, + "trout": 13452, + "##ously": 13453, + "conscience": 13454, + "##nova": 13455, + "rams": 13456, + "sands": 13457, + "genome": 13458, + "passionate": 13459, + "troubles": 13460, + "##lets": 13461, + "##set": 13462, + "amid": 13463, + "##ibility": 13464, + "##ret": 13465, + "higgins": 13466, + "exceed": 13467, + "vikings": 13468, + "##vie": 13469, + "payne": 13470, + "##zan": 13471, + "muscular": 13472, + "##ste": 13473, + "defendant": 13474, + "sucking": 13475, + "##wal": 13476, + "ibrahim": 13477, + "fuselage": 13478, + "claudia": 13479, + "vfl": 13480, + "europeans": 13481, + "snails": 13482, + "interval": 13483, + "##garh": 13484, + "preparatory": 13485, + "statewide": 13486, + "tasked": 13487, + "lacrosse": 13488, + "viktor": 13489, + "##lation": 13490, + "angola": 13491, + "##hra": 13492, + "flint": 13493, + "implications": 13494, + "employs": 13495, + "teens": 13496, + "patrons": 13497, + "stall": 13498, + "weekends": 13499, + "barriers": 13500, + "scrambled": 13501, + "nucleus": 13502, + "tehran": 13503, + "jenna": 13504, + "parsons": 13505, + "lifelong": 13506, + "robots": 13507, + "displacement": 13508, + "5000": 13509, + "##bles": 13510, + "precipitation": 13511, + "##gt": 13512, + "knuckles": 13513, + "clutched": 13514, + "1802": 13515, + "marrying": 13516, + "ecology": 13517, + "marx": 13518, + "accusations": 13519, + "declare": 13520, + "scars": 13521, + "kolkata": 13522, + "mat": 13523, + "meadows": 13524, + "bermuda": 13525, + "skeleton": 13526, + "finalists": 13527, + "vintage": 13528, + "crawl": 13529, + "coordinate": 13530, + "affects": 13531, + "subjected": 13532, + "orchestral": 13533, + "mistaken": 13534, + "##tc": 13535, + "mirrors": 13536, + "dipped": 13537, + "relied": 13538, + "260": 13539, + "arches": 13540, + "candle": 13541, + "##nick": 13542, + "incorporating": 13543, + "wildly": 13544, + "fond": 13545, + "basilica": 13546, + "owl": 13547, + "fringe": 13548, + "rituals": 13549, + "whispering": 13550, + "stirred": 13551, + "feud": 13552, + "tertiary": 13553, + "slick": 13554, + "goat": 13555, + "honorable": 13556, + "whereby": 13557, + "skip": 13558, + "ricardo": 13559, + "stripes": 13560, + "parachute": 13561, + "adjoining": 13562, + "submerged": 13563, + "synthesizer": 13564, + "##gren": 13565, + "intend": 13566, + "positively": 13567, + "ninety": 13568, + "phi": 13569, + "beaver": 13570, + "partition": 13571, + "fellows": 13572, + "alexis": 13573, + "prohibition": 13574, + "carlisle": 13575, + "bizarre": 13576, + "fraternity": 13577, + "##bre": 13578, + "doubts": 13579, + "icy": 13580, + "cbc": 13581, + "aquatic": 13582, + "sneak": 13583, + "sonny": 13584, + "combines": 13585, + "airports": 13586, + "crude": 13587, + "supervised": 13588, + "spatial": 13589, + "merge": 13590, + "alfonso": 13591, + "##bic": 13592, + "corrupt": 13593, + "scan": 13594, + "undergo": 13595, + "##ams": 13596, + "disabilities": 13597, + "colombian": 13598, + "comparing": 13599, + "dolphins": 13600, + "perkins": 13601, + "##lish": 13602, + "reprinted": 13603, + "unanimous": 13604, + "bounced": 13605, + "hairs": 13606, + "underworld": 13607, + "midwest": 13608, + "semester": 13609, + "bucket": 13610, + "paperback": 13611, + "miniseries": 13612, + "coventry": 13613, + "demise": 13614, + "##leigh": 13615, + "demonstrations": 13616, + "sensor": 13617, + "rotating": 13618, + "yan": 13619, + "##hler": 13620, + "arrange": 13621, + "soils": 13622, + "##idge": 13623, + "hyderabad": 13624, + "labs": 13625, + "##dr": 13626, + "brakes": 13627, + "grandchildren": 13628, + "##nde": 13629, + "negotiated": 13630, + "rover": 13631, + "ferrari": 13632, + "continuation": 13633, + "directorate": 13634, + "augusta": 13635, + "stevenson": 13636, + "counterpart": 13637, + "gore": 13638, + "##rda": 13639, + "nursery": 13640, + "rican": 13641, + "ave": 13642, + "collectively": 13643, + "broadly": 13644, + "pastoral": 13645, + "repertoire": 13646, + "asserted": 13647, + "discovering": 13648, + "nordic": 13649, + "styled": 13650, + "fiba": 13651, + "cunningham": 13652, + "harley": 13653, + "middlesex": 13654, + "survives": 13655, + "tumor": 13656, + "tempo": 13657, + "zack": 13658, + "aiming": 13659, + "lok": 13660, + "urgent": 13661, + "##rade": 13662, + "##nto": 13663, + "devils": 13664, + "##ement": 13665, + "contractor": 13666, + "turin": 13667, + "##wl": 13668, + "##ool": 13669, + "bliss": 13670, + "repaired": 13671, + "simmons": 13672, + "moan": 13673, + "astronomical": 13674, + "cr": 13675, + "negotiate": 13676, + "lyric": 13677, + "1890s": 13678, + "lara": 13679, + "bred": 13680, + "clad": 13681, + "angus": 13682, + "pbs": 13683, + "##ience": 13684, + "engineered": 13685, + "posed": 13686, + "##lk": 13687, + "hernandez": 13688, + "possessions": 13689, + "elbows": 13690, + "psychiatric": 13691, + "strokes": 13692, + "confluence": 13693, + "electorate": 13694, + "lifts": 13695, + "campuses": 13696, + "lava": 13697, + "alps": 13698, + "##ep": 13699, + "##ution": 13700, + "##date": 13701, + "physicist": 13702, + "woody": 13703, + "##page": 13704, + "##ographic": 13705, + "##itis": 13706, + "juliet": 13707, + "reformation": 13708, + "sparhawk": 13709, + "320": 13710, + "complement": 13711, + "suppressed": 13712, + "jewel": 13713, + "##½": 13714, + "floated": 13715, + "##kas": 13716, + "continuity": 13717, + "sadly": 13718, + "##ische": 13719, + "inability": 13720, + "melting": 13721, + "scanning": 13722, + "paula": 13723, + "flour": 13724, + "judaism": 13725, + "safer": 13726, + "vague": 13727, + "##lm": 13728, + "solving": 13729, + "curb": 13730, + "##stown": 13731, + "financially": 13732, + "gable": 13733, + "bees": 13734, + "expired": 13735, + "miserable": 13736, + "cassidy": 13737, + "dominion": 13738, + "1789": 13739, + "cupped": 13740, + "145": 13741, + "robbery": 13742, + "facto": 13743, + "amos": 13744, + "warden": 13745, + "resume": 13746, + "tallest": 13747, + "marvin": 13748, + "ing": 13749, + "pounded": 13750, + "usd": 13751, + "declaring": 13752, + "gasoline": 13753, + "##aux": 13754, + "darkened": 13755, + "270": 13756, + "650": 13757, + "sophomore": 13758, + "##mere": 13759, + "erection": 13760, + "gossip": 13761, + "televised": 13762, + "risen": 13763, + "dial": 13764, + "##eu": 13765, + "pillars": 13766, + "##link": 13767, + "passages": 13768, + "profound": 13769, + "##tina": 13770, + "arabian": 13771, + "ashton": 13772, + "silicon": 13773, + "nail": 13774, + "##ead": 13775, + "##lated": 13776, + "##wer": 13777, + "##hardt": 13778, + "fleming": 13779, + "firearms": 13780, + "ducked": 13781, + "circuits": 13782, + "blows": 13783, + "waterloo": 13784, + "titans": 13785, + "##lina": 13786, + "atom": 13787, + "fireplace": 13788, + "cheshire": 13789, + "financed": 13790, + "activation": 13791, + "algorithms": 13792, + "##zzi": 13793, + "constituent": 13794, + "catcher": 13795, + "cherokee": 13796, + "partnerships": 13797, + "sexuality": 13798, + "platoon": 13799, + "tragic": 13800, + "vivian": 13801, + "guarded": 13802, + "whiskey": 13803, + "meditation": 13804, + "poetic": 13805, + "##late": 13806, + "##nga": 13807, + "##ake": 13808, + "porto": 13809, + "listeners": 13810, + "dominance": 13811, + "kendra": 13812, + "mona": 13813, + "chandler": 13814, + "factions": 13815, + "22nd": 13816, + "salisbury": 13817, + "attitudes": 13818, + "derivative": 13819, + "##ido": 13820, + "##haus": 13821, + "intake": 13822, + "paced": 13823, + "javier": 13824, + "illustrator": 13825, + "barrels": 13826, + "bias": 13827, + "cockpit": 13828, + "burnett": 13829, + "dreamed": 13830, + "ensuing": 13831, + "##anda": 13832, + "receptors": 13833, + "someday": 13834, + "hawkins": 13835, + "mattered": 13836, + "##lal": 13837, + "slavic": 13838, + "1799": 13839, + "jesuit": 13840, + "cameroon": 13841, + "wasted": 13842, + "tai": 13843, + "wax": 13844, + "lowering": 13845, + "victorious": 13846, + "freaking": 13847, + "outright": 13848, + "hancock": 13849, + "librarian": 13850, + "sensing": 13851, + "bald": 13852, + "calcium": 13853, + "myers": 13854, + "tablet": 13855, + "announcing": 13856, + "barack": 13857, + "shipyard": 13858, + "pharmaceutical": 13859, + "##uan": 13860, + "greenwich": 13861, + "flush": 13862, + "medley": 13863, + "patches": 13864, + "wolfgang": 13865, + "pt": 13866, + "speeches": 13867, + "acquiring": 13868, + "exams": 13869, + "nikolai": 13870, + "##gg": 13871, + "hayden": 13872, + "kannada": 13873, + "##type": 13874, + "reilly": 13875, + "##pt": 13876, + "waitress": 13877, + "abdomen": 13878, + "devastated": 13879, + "capped": 13880, + "pseudonym": 13881, + "pharmacy": 13882, + "fulfill": 13883, + "paraguay": 13884, + "1796": 13885, + "clicked": 13886, + "##trom": 13887, + "archipelago": 13888, + "syndicated": 13889, + "##hman": 13890, + "lumber": 13891, + "orgasm": 13892, + "rejection": 13893, + "clifford": 13894, + "lorraine": 13895, + "advent": 13896, + "mafia": 13897, + "rodney": 13898, + "brock": 13899, + "##ght": 13900, + "##used": 13901, + "##elia": 13902, + "cassette": 13903, + "chamberlain": 13904, + "despair": 13905, + "mongolia": 13906, + "sensors": 13907, + "developmental": 13908, + "upstream": 13909, + "##eg": 13910, + "##alis": 13911, + "spanning": 13912, + "165": 13913, + "trombone": 13914, + "basque": 13915, + "seeded": 13916, + "interred": 13917, + "renewable": 13918, + "rhys": 13919, + "leapt": 13920, + "revision": 13921, + "molecule": 13922, + "##ages": 13923, + "chord": 13924, + "vicious": 13925, + "nord": 13926, + "shivered": 13927, + "23rd": 13928, + "arlington": 13929, + "debts": 13930, + "corpus": 13931, + "sunrise": 13932, + "bays": 13933, + "blackburn": 13934, + "centimetres": 13935, + "##uded": 13936, + "shuddered": 13937, + "gm": 13938, + "strangely": 13939, + "gripping": 13940, + "cartoons": 13941, + "isabelle": 13942, + "orbital": 13943, + "##ppa": 13944, + "seals": 13945, + "proving": 13946, + "##lton": 13947, + "refusal": 13948, + "strengthened": 13949, + "bust": 13950, + "assisting": 13951, + "baghdad": 13952, + "batsman": 13953, + "portrayal": 13954, + "mara": 13955, + "pushes": 13956, + "spears": 13957, + "og": 13958, + "##cock": 13959, + "reside": 13960, + "nathaniel": 13961, + "brennan": 13962, + "1776": 13963, + "confirmation": 13964, + "caucus": 13965, + "##worthy": 13966, + "markings": 13967, + "yemen": 13968, + "nobles": 13969, + "ku": 13970, + "lazy": 13971, + "viewer": 13972, + "catalan": 13973, + "encompasses": 13974, + "sawyer": 13975, + "##fall": 13976, + "sparked": 13977, + "substances": 13978, + "patents": 13979, + "braves": 13980, + "arranger": 13981, + "evacuation": 13982, + "sergio": 13983, + "persuade": 13984, + "dover": 13985, + "tolerance": 13986, + "penguin": 13987, + "cum": 13988, + "jockey": 13989, + "insufficient": 13990, + "townships": 13991, + "occupying": 13992, + "declining": 13993, + "plural": 13994, + "processed": 13995, + "projection": 13996, + "puppet": 13997, + "flanders": 13998, + "introduces": 13999, + "liability": 14000, + "##yon": 14001, + "gymnastics": 14002, + "antwerp": 14003, + "taipei": 14004, + "hobart": 14005, + "candles": 14006, + "jeep": 14007, + "wes": 14008, + "observers": 14009, + "126": 14010, + "chaplain": 14011, + "bundle": 14012, + "glorious": 14013, + "##hine": 14014, + "hazel": 14015, + "flung": 14016, + "sol": 14017, + "excavations": 14018, + "dumped": 14019, + "stares": 14020, + "sh": 14021, + "bangalore": 14022, + "triangular": 14023, + "icelandic": 14024, + "intervals": 14025, + "expressing": 14026, + "turbine": 14027, + "##vers": 14028, + "songwriting": 14029, + "crafts": 14030, + "##igo": 14031, + "jasmine": 14032, + "ditch": 14033, + "rite": 14034, + "##ways": 14035, + "entertaining": 14036, + "comply": 14037, + "sorrow": 14038, + "wrestlers": 14039, + "basel": 14040, + "emirates": 14041, + "marian": 14042, + "rivera": 14043, + "helpful": 14044, + "##some": 14045, + "caution": 14046, + "downward": 14047, + "networking": 14048, + "##atory": 14049, + "##tered": 14050, + "darted": 14051, + "genocide": 14052, + "emergence": 14053, + "replies": 14054, + "specializing": 14055, + "spokesman": 14056, + "convenient": 14057, + "unlocked": 14058, + "fading": 14059, + "augustine": 14060, + "concentrations": 14061, + "resemblance": 14062, + "elijah": 14063, + "investigator": 14064, + "andhra": 14065, + "##uda": 14066, + "promotes": 14067, + "bean": 14068, + "##rrell": 14069, + "fleeing": 14070, + "wan": 14071, + "simone": 14072, + "announcer": 14073, + "##ame": 14074, + "##bby": 14075, + "lydia": 14076, + "weaver": 14077, + "132": 14078, + "residency": 14079, + "modification": 14080, + "##fest": 14081, + "stretches": 14082, + "##ast": 14083, + "alternatively": 14084, + "nat": 14085, + "lowe": 14086, + "lacks": 14087, + "##ented": 14088, + "pam": 14089, + "tile": 14090, + "concealed": 14091, + "inferior": 14092, + "abdullah": 14093, + "residences": 14094, + "tissues": 14095, + "vengeance": 14096, + "##ided": 14097, + "moisture": 14098, + "peculiar": 14099, + "groove": 14100, + "zip": 14101, + "bologna": 14102, + "jennings": 14103, + "ninja": 14104, + "oversaw": 14105, + "zombies": 14106, + "pumping": 14107, + "batch": 14108, + "livingston": 14109, + "emerald": 14110, + "installations": 14111, + "1797": 14112, + "peel": 14113, + "nitrogen": 14114, + "rama": 14115, + "##fying": 14116, + "##star": 14117, + "schooling": 14118, + "strands": 14119, + "responding": 14120, + "werner": 14121, + "##ost": 14122, + "lime": 14123, + "casa": 14124, + "accurately": 14125, + "targeting": 14126, + "##rod": 14127, + "underway": 14128, + "##uru": 14129, + "hemisphere": 14130, + "lester": 14131, + "##yard": 14132, + "occupies": 14133, + "2d": 14134, + "griffith": 14135, + "angrily": 14136, + "reorganized": 14137, + "##owing": 14138, + "courtney": 14139, + "deposited": 14140, + "##dd": 14141, + "##30": 14142, + "estadio": 14143, + "##ifies": 14144, + "dunn": 14145, + "exiled": 14146, + "##ying": 14147, + "checks": 14148, + "##combe": 14149, + "##о": 14150, + "##fly": 14151, + "successes": 14152, + "unexpectedly": 14153, + "blu": 14154, + "assessed": 14155, + "##flower": 14156, + "##ه": 14157, + "observing": 14158, + "sacked": 14159, + "spiders": 14160, + "kn": 14161, + "##tail": 14162, + "mu": 14163, + "nodes": 14164, + "prosperity": 14165, + "audrey": 14166, + "divisional": 14167, + "155": 14168, + "broncos": 14169, + "tangled": 14170, + "adjust": 14171, + "feeds": 14172, + "erosion": 14173, + "paolo": 14174, + "surf": 14175, + "directory": 14176, + "snatched": 14177, + "humid": 14178, + "admiralty": 14179, + "screwed": 14180, + "gt": 14181, + "reddish": 14182, + "##nese": 14183, + "modules": 14184, + "trench": 14185, + "lamps": 14186, + "bind": 14187, + "leah": 14188, + "bucks": 14189, + "competes": 14190, + "##nz": 14191, + "##form": 14192, + "transcription": 14193, + "##uc": 14194, + "isles": 14195, + "violently": 14196, + "clutching": 14197, + "pga": 14198, + "cyclist": 14199, + "inflation": 14200, + "flats": 14201, + "ragged": 14202, + "unnecessary": 14203, + "##hian": 14204, + "stubborn": 14205, + "coordinated": 14206, + "harriet": 14207, + "baba": 14208, + "disqualified": 14209, + "330": 14210, + "insect": 14211, + "wolfe": 14212, + "##fies": 14213, + "reinforcements": 14214, + "rocked": 14215, + "duel": 14216, + "winked": 14217, + "embraced": 14218, + "bricks": 14219, + "##raj": 14220, + "hiatus": 14221, + "defeats": 14222, + "pending": 14223, + "brightly": 14224, + "jealousy": 14225, + "##xton": 14226, + "##hm": 14227, + "##uki": 14228, + "lena": 14229, + "gdp": 14230, + "colorful": 14231, + "##dley": 14232, + "stein": 14233, + "kidney": 14234, + "##shu": 14235, + "underwear": 14236, + "wanderers": 14237, + "##haw": 14238, + "##icus": 14239, + "guardians": 14240, + "m³": 14241, + "roared": 14242, + "habits": 14243, + "##wise": 14244, + "permits": 14245, + "gp": 14246, + "uranium": 14247, + "punished": 14248, + "disguise": 14249, + "bundesliga": 14250, + "elise": 14251, + "dundee": 14252, + "erotic": 14253, + "partisan": 14254, + "pi": 14255, + "collectors": 14256, + "float": 14257, + "individually": 14258, + "rendering": 14259, + "behavioral": 14260, + "bucharest": 14261, + "ser": 14262, + "hare": 14263, + "valerie": 14264, + "corporal": 14265, + "nutrition": 14266, + "proportional": 14267, + "##isa": 14268, + "immense": 14269, + "##kis": 14270, + "pavement": 14271, + "##zie": 14272, + "##eld": 14273, + "sutherland": 14274, + "crouched": 14275, + "1775": 14276, + "##lp": 14277, + "suzuki": 14278, + "trades": 14279, + "endurance": 14280, + "operas": 14281, + "crosby": 14282, + "prayed": 14283, + "priory": 14284, + "rory": 14285, + "socially": 14286, + "##urn": 14287, + "gujarat": 14288, + "##pu": 14289, + "walton": 14290, + "cube": 14291, + "pasha": 14292, + "privilege": 14293, + "lennon": 14294, + "floods": 14295, + "thorne": 14296, + "waterfall": 14297, + "nipple": 14298, + "scouting": 14299, + "approve": 14300, + "##lov": 14301, + "minorities": 14302, + "voter": 14303, + "dwight": 14304, + "extensions": 14305, + "assure": 14306, + "ballroom": 14307, + "slap": 14308, + "dripping": 14309, + "privileges": 14310, + "rejoined": 14311, + "confessed": 14312, + "demonstrating": 14313, + "patriotic": 14314, + "yell": 14315, + "investor": 14316, + "##uth": 14317, + "pagan": 14318, + "slumped": 14319, + "squares": 14320, + "##cle": 14321, + "##kins": 14322, + "confront": 14323, + "bert": 14324, + "embarrassment": 14325, + "##aid": 14326, + "aston": 14327, + "urging": 14328, + "sweater": 14329, + "starr": 14330, + "yuri": 14331, + "brains": 14332, + "williamson": 14333, + "commuter": 14334, + "mortar": 14335, + "structured": 14336, + "selfish": 14337, + "exports": 14338, + "##jon": 14339, + "cds": 14340, + "##him": 14341, + "unfinished": 14342, + "##rre": 14343, + "mortgage": 14344, + "destinations": 14345, + "##nagar": 14346, + "canoe": 14347, + "solitary": 14348, + "buchanan": 14349, + "delays": 14350, + "magistrate": 14351, + "fk": 14352, + "##pling": 14353, + "motivation": 14354, + "##lier": 14355, + "##vier": 14356, + "recruiting": 14357, + "assess": 14358, + "##mouth": 14359, + "malik": 14360, + "antique": 14361, + "1791": 14362, + "pius": 14363, + "rahman": 14364, + "reich": 14365, + "tub": 14366, + "zhou": 14367, + "smashed": 14368, + "airs": 14369, + "galway": 14370, + "xii": 14371, + "conditioning": 14372, + "honduras": 14373, + "discharged": 14374, + "dexter": 14375, + "##pf": 14376, + "lionel": 14377, + "129": 14378, + "debates": 14379, + "lemon": 14380, + "tiffany": 14381, + "volunteered": 14382, + "dom": 14383, + "dioxide": 14384, + "procession": 14385, + "devi": 14386, + "sic": 14387, + "tremendous": 14388, + "advertisements": 14389, + "colts": 14390, + "transferring": 14391, + "verdict": 14392, + "hanover": 14393, + "decommissioned": 14394, + "utter": 14395, + "relate": 14396, + "pac": 14397, + "racism": 14398, + "##top": 14399, + "beacon": 14400, + "limp": 14401, + "similarity": 14402, + "terra": 14403, + "occurrence": 14404, + "ant": 14405, + "##how": 14406, + "becky": 14407, + "capt": 14408, + "updates": 14409, + "armament": 14410, + "richie": 14411, + "pal": 14412, + "##graph": 14413, + "halloween": 14414, + "mayo": 14415, + "##ssen": 14416, + "##bone": 14417, + "cara": 14418, + "serena": 14419, + "fcc": 14420, + "dolls": 14421, + "obligations": 14422, + "##dling": 14423, + "violated": 14424, + "lafayette": 14425, + "jakarta": 14426, + "exploitation": 14427, + "##ime": 14428, + "infamous": 14429, + "iconic": 14430, + "##lah": 14431, + "##park": 14432, + "kitty": 14433, + "moody": 14434, + "reginald": 14435, + "dread": 14436, + "spill": 14437, + "crystals": 14438, + "olivier": 14439, + "modeled": 14440, + "bluff": 14441, + "equilibrium": 14442, + "separating": 14443, + "notices": 14444, + "ordnance": 14445, + "extinction": 14446, + "onset": 14447, + "cosmic": 14448, + "attachment": 14449, + "sammy": 14450, + "expose": 14451, + "privy": 14452, + "anchored": 14453, + "##bil": 14454, + "abbott": 14455, + "admits": 14456, + "bending": 14457, + "baritone": 14458, + "emmanuel": 14459, + "policeman": 14460, + "vaughan": 14461, + "winged": 14462, + "climax": 14463, + "dresses": 14464, + "denny": 14465, + "polytechnic": 14466, + "mohamed": 14467, + "burmese": 14468, + "authentic": 14469, + "nikki": 14470, + "genetics": 14471, + "grandparents": 14472, + "homestead": 14473, + "gaza": 14474, + "postponed": 14475, + "metacritic": 14476, + "una": 14477, + "##sby": 14478, + "##bat": 14479, + "unstable": 14480, + "dissertation": 14481, + "##rial": 14482, + "##cian": 14483, + "curls": 14484, + "obscure": 14485, + "uncovered": 14486, + "bronx": 14487, + "praying": 14488, + "disappearing": 14489, + "##hoe": 14490, + "prehistoric": 14491, + "coke": 14492, + "turret": 14493, + "mutations": 14494, + "nonprofit": 14495, + "pits": 14496, + "monaco": 14497, + "##ي": 14498, + "##usion": 14499, + "prominently": 14500, + "dispatched": 14501, + "podium": 14502, + "##mir": 14503, + "uci": 14504, + "##uation": 14505, + "133": 14506, + "fortifications": 14507, + "birthplace": 14508, + "kendall": 14509, + "##lby": 14510, + "##oll": 14511, + "preacher": 14512, + "rack": 14513, + "goodman": 14514, + "##rman": 14515, + "persistent": 14516, + "##ott": 14517, + "countless": 14518, + "jaime": 14519, + "recorder": 14520, + "lexington": 14521, + "persecution": 14522, + "jumps": 14523, + "renewal": 14524, + "wagons": 14525, + "##11": 14526, + "crushing": 14527, + "##holder": 14528, + "decorations": 14529, + "##lake": 14530, + "abundance": 14531, + "wrath": 14532, + "laundry": 14533, + "£1": 14534, + "garde": 14535, + "##rp": 14536, + "jeanne": 14537, + "beetles": 14538, + "peasant": 14539, + "##sl": 14540, + "splitting": 14541, + "caste": 14542, + "sergei": 14543, + "##rer": 14544, + "##ema": 14545, + "scripts": 14546, + "##ively": 14547, + "rub": 14548, + "satellites": 14549, + "##vor": 14550, + "inscribed": 14551, + "verlag": 14552, + "scrapped": 14553, + "gale": 14554, + "packages": 14555, + "chick": 14556, + "potato": 14557, + "slogan": 14558, + "kathleen": 14559, + "arabs": 14560, + "##culture": 14561, + "counterparts": 14562, + "reminiscent": 14563, + "choral": 14564, + "##tead": 14565, + "rand": 14566, + "retains": 14567, + "bushes": 14568, + "dane": 14569, + "accomplish": 14570, + "courtesy": 14571, + "closes": 14572, + "##oth": 14573, + "slaughter": 14574, + "hague": 14575, + "krakow": 14576, + "lawson": 14577, + "tailed": 14578, + "elias": 14579, + "ginger": 14580, + "##ttes": 14581, + "canopy": 14582, + "betrayal": 14583, + "rebuilding": 14584, + "turf": 14585, + "##hof": 14586, + "frowning": 14587, + "allegiance": 14588, + "brigades": 14589, + "kicks": 14590, + "rebuild": 14591, + "polls": 14592, + "alias": 14593, + "nationalism": 14594, + "td": 14595, + "rowan": 14596, + "audition": 14597, + "bowie": 14598, + "fortunately": 14599, + "recognizes": 14600, + "harp": 14601, + "dillon": 14602, + "horrified": 14603, + "##oro": 14604, + "renault": 14605, + "##tics": 14606, + "ropes": 14607, + "##α": 14608, + "presumed": 14609, + "rewarded": 14610, + "infrared": 14611, + "wiping": 14612, + "accelerated": 14613, + "illustration": 14614, + "##rid": 14615, + "presses": 14616, + "practitioners": 14617, + "badminton": 14618, + "##iard": 14619, + "detained": 14620, + "##tera": 14621, + "recognizing": 14622, + "relates": 14623, + "misery": 14624, + "##sies": 14625, + "##tly": 14626, + "reproduction": 14627, + "piercing": 14628, + "potatoes": 14629, + "thornton": 14630, + "esther": 14631, + "manners": 14632, + "hbo": 14633, + "##aan": 14634, + "ours": 14635, + "bullshit": 14636, + "ernie": 14637, + "perennial": 14638, + "sensitivity": 14639, + "illuminated": 14640, + "rupert": 14641, + "##jin": 14642, + "##iss": 14643, + "##ear": 14644, + "rfc": 14645, + "nassau": 14646, + "##dock": 14647, + "staggered": 14648, + "socialism": 14649, + "##haven": 14650, + "appointments": 14651, + "nonsense": 14652, + "prestige": 14653, + "sharma": 14654, + "haul": 14655, + "##tical": 14656, + "solidarity": 14657, + "gps": 14658, + "##ook": 14659, + "##rata": 14660, + "igor": 14661, + "pedestrian": 14662, + "##uit": 14663, + "baxter": 14664, + "tenants": 14665, + "wires": 14666, + "medication": 14667, + "unlimited": 14668, + "guiding": 14669, + "impacts": 14670, + "diabetes": 14671, + "##rama": 14672, + "sasha": 14673, + "pas": 14674, + "clive": 14675, + "extraction": 14676, + "131": 14677, + "continually": 14678, + "constraints": 14679, + "##bilities": 14680, + "sonata": 14681, + "hunted": 14682, + "sixteenth": 14683, + "chu": 14684, + "planting": 14685, + "quote": 14686, + "mayer": 14687, + "pretended": 14688, + "abs": 14689, + "spat": 14690, + "##hua": 14691, + "ceramic": 14692, + "##cci": 14693, + "curtains": 14694, + "pigs": 14695, + "pitching": 14696, + "##dad": 14697, + "latvian": 14698, + "sore": 14699, + "dayton": 14700, + "##sted": 14701, + "##qi": 14702, + "patrols": 14703, + "slice": 14704, + "playground": 14705, + "##nted": 14706, + "shone": 14707, + "stool": 14708, + "apparatus": 14709, + "inadequate": 14710, + "mates": 14711, + "treason": 14712, + "##ija": 14713, + "desires": 14714, + "##liga": 14715, + "##croft": 14716, + "somalia": 14717, + "laurent": 14718, + "mir": 14719, + "leonardo": 14720, + "oracle": 14721, + "grape": 14722, + "obliged": 14723, + "chevrolet": 14724, + "thirteenth": 14725, + "stunning": 14726, + "enthusiastic": 14727, + "##ede": 14728, + "accounted": 14729, + "concludes": 14730, + "currents": 14731, + "basil": 14732, + "##kovic": 14733, + "drought": 14734, + "##rica": 14735, + "mai": 14736, + "##aire": 14737, + "shove": 14738, + "posting": 14739, + "##shed": 14740, + "pilgrimage": 14741, + "humorous": 14742, + "packing": 14743, + "fry": 14744, + "pencil": 14745, + "wines": 14746, + "smells": 14747, + "144": 14748, + "marilyn": 14749, + "aching": 14750, + "newest": 14751, + "clung": 14752, + "bon": 14753, + "neighbours": 14754, + "sanctioned": 14755, + "##pie": 14756, + "mug": 14757, + "##stock": 14758, + "drowning": 14759, + "##mma": 14760, + "hydraulic": 14761, + "##vil": 14762, + "hiring": 14763, + "reminder": 14764, + "lilly": 14765, + "investigators": 14766, + "##ncies": 14767, + "sour": 14768, + "##eous": 14769, + "compulsory": 14770, + "packet": 14771, + "##rion": 14772, + "##graphic": 14773, + "##elle": 14774, + "cannes": 14775, + "##inate": 14776, + "depressed": 14777, + "##rit": 14778, + "heroic": 14779, + "importantly": 14780, + "theresa": 14781, + "##tled": 14782, + "conway": 14783, + "saturn": 14784, + "marginal": 14785, + "rae": 14786, + "##xia": 14787, + "corresponds": 14788, + "royce": 14789, + "pact": 14790, + "jasper": 14791, + "explosives": 14792, + "packaging": 14793, + "aluminium": 14794, + "##ttered": 14795, + "denotes": 14796, + "rhythmic": 14797, + "spans": 14798, + "assignments": 14799, + "hereditary": 14800, + "outlined": 14801, + "originating": 14802, + "sundays": 14803, + "lad": 14804, + "reissued": 14805, + "greeting": 14806, + "beatrice": 14807, + "##dic": 14808, + "pillar": 14809, + "marcos": 14810, + "plots": 14811, + "handbook": 14812, + "alcoholic": 14813, + "judiciary": 14814, + "avant": 14815, + "slides": 14816, + "extract": 14817, + "masculine": 14818, + "blur": 14819, + "##eum": 14820, + "##force": 14821, + "homage": 14822, + "trembled": 14823, + "owens": 14824, + "hymn": 14825, + "trey": 14826, + "omega": 14827, + "signaling": 14828, + "socks": 14829, + "accumulated": 14830, + "reacted": 14831, + "attic": 14832, + "theo": 14833, + "lining": 14834, + "angie": 14835, + "distraction": 14836, + "primera": 14837, + "talbot": 14838, + "##key": 14839, + "1200": 14840, + "ti": 14841, + "creativity": 14842, + "billed": 14843, + "##hey": 14844, + "deacon": 14845, + "eduardo": 14846, + "identifies": 14847, + "proposition": 14848, + "dizzy": 14849, + "gunner": 14850, + "hogan": 14851, + "##yam": 14852, + "##pping": 14853, + "##hol": 14854, + "ja": 14855, + "##chan": 14856, + "jensen": 14857, + "reconstructed": 14858, + "##berger": 14859, + "clearance": 14860, + "darius": 14861, + "##nier": 14862, + "abe": 14863, + "harlem": 14864, + "plea": 14865, + "dei": 14866, + "circled": 14867, + "emotionally": 14868, + "notation": 14869, + "fascist": 14870, + "neville": 14871, + "exceeded": 14872, + "upwards": 14873, + "viable": 14874, + "ducks": 14875, + "##fo": 14876, + "workforce": 14877, + "racer": 14878, + "limiting": 14879, + "shri": 14880, + "##lson": 14881, + "possesses": 14882, + "1600": 14883, + "kerr": 14884, + "moths": 14885, + "devastating": 14886, + "laden": 14887, + "disturbing": 14888, + "locking": 14889, + "##cture": 14890, + "gal": 14891, + "fearing": 14892, + "accreditation": 14893, + "flavor": 14894, + "aide": 14895, + "1870s": 14896, + "mountainous": 14897, + "##baum": 14898, + "melt": 14899, + "##ures": 14900, + "motel": 14901, + "texture": 14902, + "servers": 14903, + "soda": 14904, + "##mb": 14905, + "herd": 14906, + "##nium": 14907, + "erect": 14908, + "puzzled": 14909, + "hum": 14910, + "peggy": 14911, + "examinations": 14912, + "gould": 14913, + "testified": 14914, + "geoff": 14915, + "ren": 14916, + "devised": 14917, + "sacks": 14918, + "##law": 14919, + "denial": 14920, + "posters": 14921, + "grunted": 14922, + "cesar": 14923, + "tutor": 14924, + "ec": 14925, + "gerry": 14926, + "offerings": 14927, + "byrne": 14928, + "falcons": 14929, + "combinations": 14930, + "ct": 14931, + "incoming": 14932, + "pardon": 14933, + "rocking": 14934, + "26th": 14935, + "avengers": 14936, + "flared": 14937, + "mankind": 14938, + "seller": 14939, + "uttar": 14940, + "loch": 14941, + "nadia": 14942, + "stroking": 14943, + "exposing": 14944, + "##hd": 14945, + "fertile": 14946, + "ancestral": 14947, + "instituted": 14948, + "##has": 14949, + "noises": 14950, + "prophecy": 14951, + "taxation": 14952, + "eminent": 14953, + "vivid": 14954, + "pol": 14955, + "##bol": 14956, + "dart": 14957, + "indirect": 14958, + "multimedia": 14959, + "notebook": 14960, + "upside": 14961, + "displaying": 14962, + "adrenaline": 14963, + "referenced": 14964, + "geometric": 14965, + "##iving": 14966, + "progression": 14967, + "##ddy": 14968, + "blunt": 14969, + "announce": 14970, + "##far": 14971, + "implementing": 14972, + "##lav": 14973, + "aggression": 14974, + "liaison": 14975, + "cooler": 14976, + "cares": 14977, + "headache": 14978, + "plantations": 14979, + "gorge": 14980, + "dots": 14981, + "impulse": 14982, + "thickness": 14983, + "ashamed": 14984, + "averaging": 14985, + "kathy": 14986, + "obligation": 14987, + "precursor": 14988, + "137": 14989, + "fowler": 14990, + "symmetry": 14991, + "thee": 14992, + "225": 14993, + "hears": 14994, + "##rai": 14995, + "undergoing": 14996, + "ads": 14997, + "butcher": 14998, + "bowler": 14999, + "##lip": 15000, + "cigarettes": 15001, + "subscription": 15002, + "goodness": 15003, + "##ically": 15004, + "browne": 15005, + "##hos": 15006, + "##tech": 15007, + "kyoto": 15008, + "donor": 15009, + "##erty": 15010, + "damaging": 15011, + "friction": 15012, + "drifting": 15013, + "expeditions": 15014, + "hardened": 15015, + "prostitution": 15016, + "152": 15017, + "fauna": 15018, + "blankets": 15019, + "claw": 15020, + "tossing": 15021, + "snarled": 15022, + "butterflies": 15023, + "recruits": 15024, + "investigative": 15025, + "coated": 15026, + "healed": 15027, + "138": 15028, + "communal": 15029, + "hai": 15030, + "xiii": 15031, + "academics": 15032, + "boone": 15033, + "psychologist": 15034, + "restless": 15035, + "lahore": 15036, + "stephens": 15037, + "mba": 15038, + "brendan": 15039, + "foreigners": 15040, + "printer": 15041, + "##pc": 15042, + "ached": 15043, + "explode": 15044, + "27th": 15045, + "deed": 15046, + "scratched": 15047, + "dared": 15048, + "##pole": 15049, + "cardiac": 15050, + "1780": 15051, + "okinawa": 15052, + "proto": 15053, + "commando": 15054, + "compelled": 15055, + "oddly": 15056, + "electrons": 15057, + "##base": 15058, + "replica": 15059, + "thanksgiving": 15060, + "##rist": 15061, + "sheila": 15062, + "deliberate": 15063, + "stafford": 15064, + "tidal": 15065, + "representations": 15066, + "hercules": 15067, + "ou": 15068, + "##path": 15069, + "##iated": 15070, + "kidnapping": 15071, + "lenses": 15072, + "##tling": 15073, + "deficit": 15074, + "samoa": 15075, + "mouths": 15076, + "consuming": 15077, + "computational": 15078, + "maze": 15079, + "granting": 15080, + "smirk": 15081, + "razor": 15082, + "fixture": 15083, + "ideals": 15084, + "inviting": 15085, + "aiden": 15086, + "nominal": 15087, + "##vs": 15088, + "issuing": 15089, + "julio": 15090, + "pitt": 15091, + "ramsey": 15092, + "docks": 15093, + "##oss": 15094, + "exhaust": 15095, + "##owed": 15096, + "bavarian": 15097, + "draped": 15098, + "anterior": 15099, + "mating": 15100, + "ethiopian": 15101, + "explores": 15102, + "noticing": 15103, + "##nton": 15104, + "discarded": 15105, + "convenience": 15106, + "hoffman": 15107, + "endowment": 15108, + "beasts": 15109, + "cartridge": 15110, + "mormon": 15111, + "paternal": 15112, + "probe": 15113, + "sleeves": 15114, + "interfere": 15115, + "lump": 15116, + "deadline": 15117, + "##rail": 15118, + "jenks": 15119, + "bulldogs": 15120, + "scrap": 15121, + "alternating": 15122, + "justified": 15123, + "reproductive": 15124, + "nam": 15125, + "seize": 15126, + "descending": 15127, + "secretariat": 15128, + "kirby": 15129, + "coupe": 15130, + "grouped": 15131, + "smash": 15132, + "panther": 15133, + "sedan": 15134, + "tapping": 15135, + "##18": 15136, + "lola": 15137, + "cheer": 15138, + "germanic": 15139, + "unfortunate": 15140, + "##eter": 15141, + "unrelated": 15142, + "##fan": 15143, + "subordinate": 15144, + "##sdale": 15145, + "suzanne": 15146, + "advertisement": 15147, + "##ility": 15148, + "horsepower": 15149, + "##lda": 15150, + "cautiously": 15151, + "discourse": 15152, + "luigi": 15153, + "##mans": 15154, + "##fields": 15155, + "noun": 15156, + "prevalent": 15157, + "mao": 15158, + "schneider": 15159, + "everett": 15160, + "surround": 15161, + "governorate": 15162, + "kira": 15163, + "##avia": 15164, + "westward": 15165, + "##take": 15166, + "misty": 15167, + "rails": 15168, + "sustainability": 15169, + "134": 15170, + "unused": 15171, + "##rating": 15172, + "packs": 15173, + "toast": 15174, + "unwilling": 15175, + "regulate": 15176, + "thy": 15177, + "suffrage": 15178, + "nile": 15179, + "awe": 15180, + "assam": 15181, + "definitions": 15182, + "travelers": 15183, + "affordable": 15184, + "##rb": 15185, + "conferred": 15186, + "sells": 15187, + "undefeated": 15188, + "beneficial": 15189, + "torso": 15190, + "basal": 15191, + "repeating": 15192, + "remixes": 15193, + "##pass": 15194, + "bahrain": 15195, + "cables": 15196, + "fang": 15197, + "##itated": 15198, + "excavated": 15199, + "numbering": 15200, + "statutory": 15201, + "##rey": 15202, + "deluxe": 15203, + "##lian": 15204, + "forested": 15205, + "ramirez": 15206, + "derbyshire": 15207, + "zeus": 15208, + "slamming": 15209, + "transfers": 15210, + "astronomer": 15211, + "banana": 15212, + "lottery": 15213, + "berg": 15214, + "histories": 15215, + "bamboo": 15216, + "##uchi": 15217, + "resurrection": 15218, + "posterior": 15219, + "bowls": 15220, + "vaguely": 15221, + "##thi": 15222, + "thou": 15223, + "preserving": 15224, + "tensed": 15225, + "offence": 15226, + "##inas": 15227, + "meyrick": 15228, + "callum": 15229, + "ridden": 15230, + "watt": 15231, + "langdon": 15232, + "tying": 15233, + "lowland": 15234, + "snorted": 15235, + "daring": 15236, + "truman": 15237, + "##hale": 15238, + "##girl": 15239, + "aura": 15240, + "overly": 15241, + "filing": 15242, + "weighing": 15243, + "goa": 15244, + "infections": 15245, + "philanthropist": 15246, + "saunders": 15247, + "eponymous": 15248, + "##owski": 15249, + "latitude": 15250, + "perspectives": 15251, + "reviewing": 15252, + "mets": 15253, + "commandant": 15254, + "radial": 15255, + "##kha": 15256, + "flashlight": 15257, + "reliability": 15258, + "koch": 15259, + "vowels": 15260, + "amazed": 15261, + "ada": 15262, + "elaine": 15263, + "supper": 15264, + "##rth": 15265, + "##encies": 15266, + "predator": 15267, + "debated": 15268, + "soviets": 15269, + "cola": 15270, + "##boards": 15271, + "##nah": 15272, + "compartment": 15273, + "crooked": 15274, + "arbitrary": 15275, + "fourteenth": 15276, + "##ctive": 15277, + "havana": 15278, + "majors": 15279, + "steelers": 15280, + "clips": 15281, + "profitable": 15282, + "ambush": 15283, + "exited": 15284, + "packers": 15285, + "##tile": 15286, + "nude": 15287, + "cracks": 15288, + "fungi": 15289, + "##е": 15290, + "limb": 15291, + "trousers": 15292, + "josie": 15293, + "shelby": 15294, + "tens": 15295, + "frederic": 15296, + "##ος": 15297, + "definite": 15298, + "smoothly": 15299, + "constellation": 15300, + "insult": 15301, + "baton": 15302, + "discs": 15303, + "lingering": 15304, + "##nco": 15305, + "conclusions": 15306, + "lent": 15307, + "staging": 15308, + "becker": 15309, + "grandpa": 15310, + "shaky": 15311, + "##tron": 15312, + "einstein": 15313, + "obstacles": 15314, + "sk": 15315, + "adverse": 15316, + "elle": 15317, + "economically": 15318, + "##moto": 15319, + "mccartney": 15320, + "thor": 15321, + "dismissal": 15322, + "motions": 15323, + "readings": 15324, + "nostrils": 15325, + "treatise": 15326, + "##pace": 15327, + "squeezing": 15328, + "evidently": 15329, + "prolonged": 15330, + "1783": 15331, + "venezuelan": 15332, + "je": 15333, + "marguerite": 15334, + "beirut": 15335, + "takeover": 15336, + "shareholders": 15337, + "##vent": 15338, + "denise": 15339, + "digit": 15340, + "airplay": 15341, + "norse": 15342, + "##bbling": 15343, + "imaginary": 15344, + "pills": 15345, + "hubert": 15346, + "blaze": 15347, + "vacated": 15348, + "eliminating": 15349, + "##ello": 15350, + "vine": 15351, + "mansfield": 15352, + "##tty": 15353, + "retrospective": 15354, + "barrow": 15355, + "borne": 15356, + "clutch": 15357, + "bail": 15358, + "forensic": 15359, + "weaving": 15360, + "##nett": 15361, + "##witz": 15362, + "desktop": 15363, + "citadel": 15364, + "promotions": 15365, + "worrying": 15366, + "dorset": 15367, + "ieee": 15368, + "subdivided": 15369, + "##iating": 15370, + "manned": 15371, + "expeditionary": 15372, + "pickup": 15373, + "synod": 15374, + "chuckle": 15375, + "185": 15376, + "barney": 15377, + "##rz": 15378, + "##ffin": 15379, + "functionality": 15380, + "karachi": 15381, + "litigation": 15382, + "meanings": 15383, + "uc": 15384, + "lick": 15385, + "turbo": 15386, + "anders": 15387, + "##ffed": 15388, + "execute": 15389, + "curl": 15390, + "oppose": 15391, + "ankles": 15392, + "typhoon": 15393, + "##د": 15394, + "##ache": 15395, + "##asia": 15396, + "linguistics": 15397, + "compassion": 15398, + "pressures": 15399, + "grazing": 15400, + "perfection": 15401, + "##iting": 15402, + "immunity": 15403, + "monopoly": 15404, + "muddy": 15405, + "backgrounds": 15406, + "136": 15407, + "namibia": 15408, + "francesca": 15409, + "monitors": 15410, + "attracting": 15411, + "stunt": 15412, + "tuition": 15413, + "##ии": 15414, + "vegetable": 15415, + "##mates": 15416, + "##quent": 15417, + "mgm": 15418, + "jen": 15419, + "complexes": 15420, + "forts": 15421, + "##ond": 15422, + "cellar": 15423, + "bites": 15424, + "seventeenth": 15425, + "royals": 15426, + "flemish": 15427, + "failures": 15428, + "mast": 15429, + "charities": 15430, + "##cular": 15431, + "peruvian": 15432, + "capitals": 15433, + "macmillan": 15434, + "ipswich": 15435, + "outward": 15436, + "frigate": 15437, + "postgraduate": 15438, + "folds": 15439, + "employing": 15440, + "##ouse": 15441, + "concurrently": 15442, + "fiery": 15443, + "##tai": 15444, + "contingent": 15445, + "nightmares": 15446, + "monumental": 15447, + "nicaragua": 15448, + "##kowski": 15449, + "lizard": 15450, + "mal": 15451, + "fielding": 15452, + "gig": 15453, + "reject": 15454, + "##pad": 15455, + "harding": 15456, + "##ipe": 15457, + "coastline": 15458, + "##cin": 15459, + "##nos": 15460, + "beethoven": 15461, + "humphrey": 15462, + "innovations": 15463, + "##tam": 15464, + "##nge": 15465, + "norris": 15466, + "doris": 15467, + "solicitor": 15468, + "huang": 15469, + "obey": 15470, + "141": 15471, + "##lc": 15472, + "niagara": 15473, + "##tton": 15474, + "shelves": 15475, + "aug": 15476, + "bourbon": 15477, + "curry": 15478, + "nightclub": 15479, + "specifications": 15480, + "hilton": 15481, + "##ndo": 15482, + "centennial": 15483, + "dispersed": 15484, + "worm": 15485, + "neglected": 15486, + "briggs": 15487, + "sm": 15488, + "font": 15489, + "kuala": 15490, + "uneasy": 15491, + "plc": 15492, + "##nstein": 15493, + "##bound": 15494, + "##aking": 15495, + "##burgh": 15496, + "awaiting": 15497, + "pronunciation": 15498, + "##bbed": 15499, + "##quest": 15500, + "eh": 15501, + "optimal": 15502, + "zhu": 15503, + "raped": 15504, + "greens": 15505, + "presided": 15506, + "brenda": 15507, + "worries": 15508, + "##life": 15509, + "venetian": 15510, + "marxist": 15511, + "turnout": 15512, + "##lius": 15513, + "refined": 15514, + "braced": 15515, + "sins": 15516, + "grasped": 15517, + "sunderland": 15518, + "nickel": 15519, + "speculated": 15520, + "lowell": 15521, + "cyrillic": 15522, + "communism": 15523, + "fundraising": 15524, + "resembling": 15525, + "colonists": 15526, + "mutant": 15527, + "freddie": 15528, + "usc": 15529, + "##mos": 15530, + "gratitude": 15531, + "##run": 15532, + "mural": 15533, + "##lous": 15534, + "chemist": 15535, + "wi": 15536, + "reminds": 15537, + "28th": 15538, + "steals": 15539, + "tess": 15540, + "pietro": 15541, + "##ingen": 15542, + "promoter": 15543, + "ri": 15544, + "microphone": 15545, + "honoured": 15546, + "rai": 15547, + "sant": 15548, + "##qui": 15549, + "feather": 15550, + "##nson": 15551, + "burlington": 15552, + "kurdish": 15553, + "terrorists": 15554, + "deborah": 15555, + "sickness": 15556, + "##wed": 15557, + "##eet": 15558, + "hazard": 15559, + "irritated": 15560, + "desperation": 15561, + "veil": 15562, + "clarity": 15563, + "##rik": 15564, + "jewels": 15565, + "xv": 15566, + "##gged": 15567, + "##ows": 15568, + "##cup": 15569, + "berkshire": 15570, + "unfair": 15571, + "mysteries": 15572, + "orchid": 15573, + "winced": 15574, + "exhaustion": 15575, + "renovations": 15576, + "stranded": 15577, + "obe": 15578, + "infinity": 15579, + "##nies": 15580, + "adapt": 15581, + "redevelopment": 15582, + "thanked": 15583, + "registry": 15584, + "olga": 15585, + "domingo": 15586, + "noir": 15587, + "tudor": 15588, + "ole": 15589, + "##atus": 15590, + "commenting": 15591, + "behaviors": 15592, + "##ais": 15593, + "crisp": 15594, + "pauline": 15595, + "probable": 15596, + "stirling": 15597, + "wigan": 15598, + "##bian": 15599, + "paralympics": 15600, + "panting": 15601, + "surpassed": 15602, + "##rew": 15603, + "luca": 15604, + "barred": 15605, + "pony": 15606, + "famed": 15607, + "##sters": 15608, + "cassandra": 15609, + "waiter": 15610, + "carolyn": 15611, + "exported": 15612, + "##orted": 15613, + "andres": 15614, + "destructive": 15615, + "deeds": 15616, + "jonah": 15617, + "castles": 15618, + "vacancy": 15619, + "suv": 15620, + "##glass": 15621, + "1788": 15622, + "orchard": 15623, + "yep": 15624, + "famine": 15625, + "belarusian": 15626, + "sprang": 15627, + "##forth": 15628, + "skinny": 15629, + "##mis": 15630, + "administrators": 15631, + "rotterdam": 15632, + "zambia": 15633, + "zhao": 15634, + "boiler": 15635, + "discoveries": 15636, + "##ride": 15637, + "##physics": 15638, + "lucius": 15639, + "disappointing": 15640, + "outreach": 15641, + "spoon": 15642, + "##frame": 15643, + "qualifications": 15644, + "unanimously": 15645, + "enjoys": 15646, + "regency": 15647, + "##iidae": 15648, + "stade": 15649, + "realism": 15650, + "veterinary": 15651, + "rodgers": 15652, + "dump": 15653, + "alain": 15654, + "chestnut": 15655, + "castile": 15656, + "censorship": 15657, + "rumble": 15658, + "gibbs": 15659, + "##itor": 15660, + "communion": 15661, + "reggae": 15662, + "inactivated": 15663, + "logs": 15664, + "loads": 15665, + "##houses": 15666, + "homosexual": 15667, + "##iano": 15668, + "ale": 15669, + "informs": 15670, + "##cas": 15671, + "phrases": 15672, + "plaster": 15673, + "linebacker": 15674, + "ambrose": 15675, + "kaiser": 15676, + "fascinated": 15677, + "850": 15678, + "limerick": 15679, + "recruitment": 15680, + "forge": 15681, + "mastered": 15682, + "##nding": 15683, + "leinster": 15684, + "rooted": 15685, + "threaten": 15686, + "##strom": 15687, + "borneo": 15688, + "##hes": 15689, + "suggestions": 15690, + "scholarships": 15691, + "propeller": 15692, + "documentaries": 15693, + "patronage": 15694, + "coats": 15695, + "constructing": 15696, + "invest": 15697, + "neurons": 15698, + "comet": 15699, + "entirety": 15700, + "shouts": 15701, + "identities": 15702, + "annoying": 15703, + "unchanged": 15704, + "wary": 15705, + "##antly": 15706, + "##ogy": 15707, + "neat": 15708, + "oversight": 15709, + "##kos": 15710, + "phillies": 15711, + "replay": 15712, + "constance": 15713, + "##kka": 15714, + "incarnation": 15715, + "humble": 15716, + "skies": 15717, + "minus": 15718, + "##acy": 15719, + "smithsonian": 15720, + "##chel": 15721, + "guerrilla": 15722, + "jar": 15723, + "cadets": 15724, + "##plate": 15725, + "surplus": 15726, + "audit": 15727, + "##aru": 15728, + "cracking": 15729, + "joanna": 15730, + "louisa": 15731, + "pacing": 15732, + "##lights": 15733, + "intentionally": 15734, + "##iri": 15735, + "diner": 15736, + "nwa": 15737, + "imprint": 15738, + "australians": 15739, + "tong": 15740, + "unprecedented": 15741, + "bunker": 15742, + "naive": 15743, + "specialists": 15744, + "ark": 15745, + "nichols": 15746, + "railing": 15747, + "leaked": 15748, + "pedal": 15749, + "##uka": 15750, + "shrub": 15751, + "longing": 15752, + "roofs": 15753, + "v8": 15754, + "captains": 15755, + "neural": 15756, + "tuned": 15757, + "##ntal": 15758, + "##jet": 15759, + "emission": 15760, + "medina": 15761, + "frantic": 15762, + "codex": 15763, + "definitive": 15764, + "sid": 15765, + "abolition": 15766, + "intensified": 15767, + "stocks": 15768, + "enrique": 15769, + "sustain": 15770, + "genoa": 15771, + "oxide": 15772, + "##written": 15773, + "clues": 15774, + "cha": 15775, + "##gers": 15776, + "tributaries": 15777, + "fragment": 15778, + "venom": 15779, + "##rity": 15780, + "##ente": 15781, + "##sca": 15782, + "muffled": 15783, + "vain": 15784, + "sire": 15785, + "laos": 15786, + "##ingly": 15787, + "##hana": 15788, + "hastily": 15789, + "snapping": 15790, + "surfaced": 15791, + "sentiment": 15792, + "motive": 15793, + "##oft": 15794, + "contests": 15795, + "approximate": 15796, + "mesa": 15797, + "luckily": 15798, + "dinosaur": 15799, + "exchanges": 15800, + "propelled": 15801, + "accord": 15802, + "bourne": 15803, + "relieve": 15804, + "tow": 15805, + "masks": 15806, + "offended": 15807, + "##ues": 15808, + "cynthia": 15809, + "##mmer": 15810, + "rains": 15811, + "bartender": 15812, + "zinc": 15813, + "reviewers": 15814, + "lois": 15815, + "##sai": 15816, + "legged": 15817, + "arrogant": 15818, + "rafe": 15819, + "rosie": 15820, + "comprise": 15821, + "handicap": 15822, + "blockade": 15823, + "inlet": 15824, + "lagoon": 15825, + "copied": 15826, + "drilling": 15827, + "shelley": 15828, + "petals": 15829, + "##inian": 15830, + "mandarin": 15831, + "obsolete": 15832, + "##inated": 15833, + "onward": 15834, + "arguably": 15835, + "productivity": 15836, + "cindy": 15837, + "praising": 15838, + "seldom": 15839, + "busch": 15840, + "discusses": 15841, + "raleigh": 15842, + "shortage": 15843, + "ranged": 15844, + "stanton": 15845, + "encouragement": 15846, + "firstly": 15847, + "conceded": 15848, + "overs": 15849, + "temporal": 15850, + "##uke": 15851, + "cbe": 15852, + "##bos": 15853, + "woo": 15854, + "certainty": 15855, + "pumps": 15856, + "##pton": 15857, + "stalked": 15858, + "##uli": 15859, + "lizzie": 15860, + "periodic": 15861, + "thieves": 15862, + "weaker": 15863, + "##night": 15864, + "gases": 15865, + "shoving": 15866, + "chooses": 15867, + "wc": 15868, + "##chemical": 15869, + "prompting": 15870, + "weights": 15871, + "##kill": 15872, + "robust": 15873, + "flanked": 15874, + "sticky": 15875, + "hu": 15876, + "tuberculosis": 15877, + "##eb": 15878, + "##eal": 15879, + "christchurch": 15880, + "resembled": 15881, + "wallet": 15882, + "reese": 15883, + "inappropriate": 15884, + "pictured": 15885, + "distract": 15886, + "fixing": 15887, + "fiddle": 15888, + "giggled": 15889, + "burger": 15890, + "heirs": 15891, + "hairy": 15892, + "mechanic": 15893, + "torque": 15894, + "apache": 15895, + "obsessed": 15896, + "chiefly": 15897, + "cheng": 15898, + "logging": 15899, + "##tag": 15900, + "extracted": 15901, + "meaningful": 15902, + "numb": 15903, + "##vsky": 15904, + "gloucestershire": 15905, + "reminding": 15906, + "##bay": 15907, + "unite": 15908, + "##lit": 15909, + "breeds": 15910, + "diminished": 15911, + "clown": 15912, + "glove": 15913, + "1860s": 15914, + "##ن": 15915, + "##ug": 15916, + "archibald": 15917, + "focal": 15918, + "freelance": 15919, + "sliced": 15920, + "depiction": 15921, + "##yk": 15922, + "organism": 15923, + "switches": 15924, + "sights": 15925, + "stray": 15926, + "crawling": 15927, + "##ril": 15928, + "lever": 15929, + "leningrad": 15930, + "interpretations": 15931, + "loops": 15932, + "anytime": 15933, + "reel": 15934, + "alicia": 15935, + "delighted": 15936, + "##ech": 15937, + "inhaled": 15938, + "xiv": 15939, + "suitcase": 15940, + "bernie": 15941, + "vega": 15942, + "licenses": 15943, + "northampton": 15944, + "exclusion": 15945, + "induction": 15946, + "monasteries": 15947, + "racecourse": 15948, + "homosexuality": 15949, + "##right": 15950, + "##sfield": 15951, + "##rky": 15952, + "dimitri": 15953, + "michele": 15954, + "alternatives": 15955, + "ions": 15956, + "commentators": 15957, + "genuinely": 15958, + "objected": 15959, + "pork": 15960, + "hospitality": 15961, + "fencing": 15962, + "stephan": 15963, + "warships": 15964, + "peripheral": 15965, + "wit": 15966, + "drunken": 15967, + "wrinkled": 15968, + "quentin": 15969, + "spends": 15970, + "departing": 15971, + "chung": 15972, + "numerical": 15973, + "spokesperson": 15974, + "##zone": 15975, + "johannesburg": 15976, + "caliber": 15977, + "killers": 15978, + "##udge": 15979, + "assumes": 15980, + "neatly": 15981, + "demographic": 15982, + "abigail": 15983, + "bloc": 15984, + "##vel": 15985, + "mounting": 15986, + "##lain": 15987, + "bentley": 15988, + "slightest": 15989, + "xu": 15990, + "recipients": 15991, + "##jk": 15992, + "merlin": 15993, + "##writer": 15994, + "seniors": 15995, + "prisons": 15996, + "blinking": 15997, + "hindwings": 15998, + "flickered": 15999, + "kappa": 16000, + "##hel": 16001, + "80s": 16002, + "strengthening": 16003, + "appealing": 16004, + "brewing": 16005, + "gypsy": 16006, + "mali": 16007, + "lashes": 16008, + "hulk": 16009, + "unpleasant": 16010, + "harassment": 16011, + "bio": 16012, + "treaties": 16013, + "predict": 16014, + "instrumentation": 16015, + "pulp": 16016, + "troupe": 16017, + "boiling": 16018, + "mantle": 16019, + "##ffe": 16020, + "ins": 16021, + "##vn": 16022, + "dividing": 16023, + "handles": 16024, + "verbs": 16025, + "##onal": 16026, + "coconut": 16027, + "senegal": 16028, + "340": 16029, + "thorough": 16030, + "gum": 16031, + "momentarily": 16032, + "##sto": 16033, + "cocaine": 16034, + "panicked": 16035, + "destined": 16036, + "##turing": 16037, + "teatro": 16038, + "denying": 16039, + "weary": 16040, + "captained": 16041, + "mans": 16042, + "##hawks": 16043, + "##code": 16044, + "wakefield": 16045, + "bollywood": 16046, + "thankfully": 16047, + "##16": 16048, + "cyril": 16049, + "##wu": 16050, + "amendments": 16051, + "##bahn": 16052, + "consultation": 16053, + "stud": 16054, + "reflections": 16055, + "kindness": 16056, + "1787": 16057, + "internally": 16058, + "##ovo": 16059, + "tex": 16060, + "mosaic": 16061, + "distribute": 16062, + "paddy": 16063, + "seeming": 16064, + "143": 16065, + "##hic": 16066, + "piers": 16067, + "##15": 16068, + "##mura": 16069, + "##verse": 16070, + "popularly": 16071, + "winger": 16072, + "kang": 16073, + "sentinel": 16074, + "mccoy": 16075, + "##anza": 16076, + "covenant": 16077, + "##bag": 16078, + "verge": 16079, + "fireworks": 16080, + "suppress": 16081, + "thrilled": 16082, + "dominate": 16083, + "##jar": 16084, + "swansea": 16085, + "##60": 16086, + "142": 16087, + "reconciliation": 16088, + "##ndi": 16089, + "stiffened": 16090, + "cue": 16091, + "dorian": 16092, + "##uf": 16093, + "damascus": 16094, + "amor": 16095, + "ida": 16096, + "foremost": 16097, + "##aga": 16098, + "porsche": 16099, + "unseen": 16100, + "dir": 16101, + "##had": 16102, + "##azi": 16103, + "stony": 16104, + "lexi": 16105, + "melodies": 16106, + "##nko": 16107, + "angular": 16108, + "integer": 16109, + "podcast": 16110, + "ants": 16111, + "inherent": 16112, + "jaws": 16113, + "justify": 16114, + "persona": 16115, + "##olved": 16116, + "josephine": 16117, + "##nr": 16118, + "##ressed": 16119, + "customary": 16120, + "flashes": 16121, + "gala": 16122, + "cyrus": 16123, + "glaring": 16124, + "backyard": 16125, + "ariel": 16126, + "physiology": 16127, + "greenland": 16128, + "html": 16129, + "stir": 16130, + "avon": 16131, + "atletico": 16132, + "finch": 16133, + "methodology": 16134, + "ked": 16135, + "##lent": 16136, + "mas": 16137, + "catholicism": 16138, + "townsend": 16139, + "branding": 16140, + "quincy": 16141, + "fits": 16142, + "containers": 16143, + "1777": 16144, + "ashore": 16145, + "aragon": 16146, + "##19": 16147, + "forearm": 16148, + "poisoning": 16149, + "##sd": 16150, + "adopting": 16151, + "conquer": 16152, + "grinding": 16153, + "amnesty": 16154, + "keller": 16155, + "finances": 16156, + "evaluate": 16157, + "forged": 16158, + "lankan": 16159, + "instincts": 16160, + "##uto": 16161, + "guam": 16162, + "bosnian": 16163, + "photographed": 16164, + "workplace": 16165, + "desirable": 16166, + "protector": 16167, + "##dog": 16168, + "allocation": 16169, + "intently": 16170, + "encourages": 16171, + "willy": 16172, + "##sten": 16173, + "bodyguard": 16174, + "electro": 16175, + "brighter": 16176, + "##ν": 16177, + "bihar": 16178, + "##chev": 16179, + "lasts": 16180, + "opener": 16181, + "amphibious": 16182, + "sal": 16183, + "verde": 16184, + "arte": 16185, + "##cope": 16186, + "captivity": 16187, + "vocabulary": 16188, + "yields": 16189, + "##tted": 16190, + "agreeing": 16191, + "desmond": 16192, + "pioneered": 16193, + "##chus": 16194, + "strap": 16195, + "campaigned": 16196, + "railroads": 16197, + "##ович": 16198, + "emblem": 16199, + "##dre": 16200, + "stormed": 16201, + "501": 16202, + "##ulous": 16203, + "marijuana": 16204, + "northumberland": 16205, + "##gn": 16206, + "##nath": 16207, + "bowen": 16208, + "landmarks": 16209, + "beaumont": 16210, + "##qua": 16211, + "danube": 16212, + "##bler": 16213, + "attorneys": 16214, + "th": 16215, + "ge": 16216, + "flyers": 16217, + "critique": 16218, + "villains": 16219, + "cass": 16220, + "mutation": 16221, + "acc": 16222, + "##0s": 16223, + "colombo": 16224, + "mckay": 16225, + "motif": 16226, + "sampling": 16227, + "concluding": 16228, + "syndicate": 16229, + "##rell": 16230, + "neon": 16231, + "stables": 16232, + "ds": 16233, + "warnings": 16234, + "clint": 16235, + "mourning": 16236, + "wilkinson": 16237, + "##tated": 16238, + "merrill": 16239, + "leopard": 16240, + "evenings": 16241, + "exhaled": 16242, + "emil": 16243, + "sonia": 16244, + "ezra": 16245, + "discrete": 16246, + "stove": 16247, + "farrell": 16248, + "fifteenth": 16249, + "prescribed": 16250, + "superhero": 16251, + "##rier": 16252, + "worms": 16253, + "helm": 16254, + "wren": 16255, + "##duction": 16256, + "##hc": 16257, + "expo": 16258, + "##rator": 16259, + "hq": 16260, + "unfamiliar": 16261, + "antony": 16262, + "prevents": 16263, + "acceleration": 16264, + "fiercely": 16265, + "mari": 16266, + "painfully": 16267, + "calculations": 16268, + "cheaper": 16269, + "ign": 16270, + "clifton": 16271, + "irvine": 16272, + "davenport": 16273, + "mozambique": 16274, + "##np": 16275, + "pierced": 16276, + "##evich": 16277, + "wonders": 16278, + "##wig": 16279, + "##cate": 16280, + "##iling": 16281, + "crusade": 16282, + "ware": 16283, + "##uel": 16284, + "enzymes": 16285, + "reasonably": 16286, + "mls": 16287, + "##coe": 16288, + "mater": 16289, + "ambition": 16290, + "bunny": 16291, + "eliot": 16292, + "kernel": 16293, + "##fin": 16294, + "asphalt": 16295, + "headmaster": 16296, + "torah": 16297, + "aden": 16298, + "lush": 16299, + "pins": 16300, + "waived": 16301, + "##care": 16302, + "##yas": 16303, + "joao": 16304, + "substrate": 16305, + "enforce": 16306, + "##grad": 16307, + "##ules": 16308, + "alvarez": 16309, + "selections": 16310, + "epidemic": 16311, + "tempted": 16312, + "##bit": 16313, + "bremen": 16314, + "translates": 16315, + "ensured": 16316, + "waterfront": 16317, + "29th": 16318, + "forrest": 16319, + "manny": 16320, + "malone": 16321, + "kramer": 16322, + "reigning": 16323, + "cookies": 16324, + "simpler": 16325, + "absorption": 16326, + "205": 16327, + "engraved": 16328, + "##ffy": 16329, + "evaluated": 16330, + "1778": 16331, + "haze": 16332, + "146": 16333, + "comforting": 16334, + "crossover": 16335, + "##abe": 16336, + "thorn": 16337, + "##rift": 16338, + "##imo": 16339, + "##pop": 16340, + "suppression": 16341, + "fatigue": 16342, + "cutter": 16343, + "##tr": 16344, + "201": 16345, + "wurttemberg": 16346, + "##orf": 16347, + "enforced": 16348, + "hovering": 16349, + "proprietary": 16350, + "gb": 16351, + "samurai": 16352, + "syllable": 16353, + "ascent": 16354, + "lacey": 16355, + "tick": 16356, + "lars": 16357, + "tractor": 16358, + "merchandise": 16359, + "rep": 16360, + "bouncing": 16361, + "defendants": 16362, + "##yre": 16363, + "huntington": 16364, + "##ground": 16365, + "##oko": 16366, + "standardized": 16367, + "##hor": 16368, + "##hima": 16369, + "assassinated": 16370, + "nu": 16371, + "predecessors": 16372, + "rainy": 16373, + "liar": 16374, + "assurance": 16375, + "lyrical": 16376, + "##uga": 16377, + "secondly": 16378, + "flattened": 16379, + "ios": 16380, + "parameter": 16381, + "undercover": 16382, + "##mity": 16383, + "bordeaux": 16384, + "punish": 16385, + "ridges": 16386, + "markers": 16387, + "exodus": 16388, + "inactive": 16389, + "hesitate": 16390, + "debbie": 16391, + "nyc": 16392, + "pledge": 16393, + "savoy": 16394, + "nagar": 16395, + "offset": 16396, + "organist": 16397, + "##tium": 16398, + "hesse": 16399, + "marin": 16400, + "converting": 16401, + "##iver": 16402, + "diagram": 16403, + "propulsion": 16404, + "pu": 16405, + "validity": 16406, + "reverted": 16407, + "supportive": 16408, + "##dc": 16409, + "ministries": 16410, + "clans": 16411, + "responds": 16412, + "proclamation": 16413, + "##inae": 16414, + "##ø": 16415, + "##rea": 16416, + "ein": 16417, + "pleading": 16418, + "patriot": 16419, + "sf": 16420, + "birch": 16421, + "islanders": 16422, + "strauss": 16423, + "hates": 16424, + "##dh": 16425, + "brandenburg": 16426, + "concession": 16427, + "rd": 16428, + "##ob": 16429, + "1900s": 16430, + "killings": 16431, + "textbook": 16432, + "antiquity": 16433, + "cinematography": 16434, + "wharf": 16435, + "embarrassing": 16436, + "setup": 16437, + "creed": 16438, + "farmland": 16439, + "inequality": 16440, + "centred": 16441, + "signatures": 16442, + "fallon": 16443, + "370": 16444, + "##ingham": 16445, + "##uts": 16446, + "ceylon": 16447, + "gazing": 16448, + "directive": 16449, + "laurie": 16450, + "##tern": 16451, + "globally": 16452, + "##uated": 16453, + "##dent": 16454, + "allah": 16455, + "excavation": 16456, + "threads": 16457, + "##cross": 16458, + "148": 16459, + "frantically": 16460, + "icc": 16461, + "utilize": 16462, + "determines": 16463, + "respiratory": 16464, + "thoughtful": 16465, + "receptions": 16466, + "##dicate": 16467, + "merging": 16468, + "chandra": 16469, + "seine": 16470, + "147": 16471, + "builders": 16472, + "builds": 16473, + "diagnostic": 16474, + "dev": 16475, + "visibility": 16476, + "goddamn": 16477, + "analyses": 16478, + "dhaka": 16479, + "cho": 16480, + "proves": 16481, + "chancel": 16482, + "concurrent": 16483, + "curiously": 16484, + "canadians": 16485, + "pumped": 16486, + "restoring": 16487, + "1850s": 16488, + "turtles": 16489, + "jaguar": 16490, + "sinister": 16491, + "spinal": 16492, + "traction": 16493, + "declan": 16494, + "vows": 16495, + "1784": 16496, + "glowed": 16497, + "capitalism": 16498, + "swirling": 16499, + "install": 16500, + "universidad": 16501, + "##lder": 16502, + "##oat": 16503, + "soloist": 16504, + "##genic": 16505, + "##oor": 16506, + "coincidence": 16507, + "beginnings": 16508, + "nissan": 16509, + "dip": 16510, + "resorts": 16511, + "caucasus": 16512, + "combustion": 16513, + "infectious": 16514, + "##eno": 16515, + "pigeon": 16516, + "serpent": 16517, + "##itating": 16518, + "conclude": 16519, + "masked": 16520, + "salad": 16521, + "jew": 16522, + "##gr": 16523, + "surreal": 16524, + "toni": 16525, + "##wc": 16526, + "harmonica": 16527, + "151": 16528, + "##gins": 16529, + "##etic": 16530, + "##coat": 16531, + "fishermen": 16532, + "intending": 16533, + "bravery": 16534, + "##wave": 16535, + "klaus": 16536, + "titan": 16537, + "wembley": 16538, + "taiwanese": 16539, + "ransom": 16540, + "40th": 16541, + "incorrect": 16542, + "hussein": 16543, + "eyelids": 16544, + "jp": 16545, + "cooke": 16546, + "dramas": 16547, + "utilities": 16548, + "##etta": 16549, + "##print": 16550, + "eisenhower": 16551, + "principally": 16552, + "granada": 16553, + "lana": 16554, + "##rak": 16555, + "openings": 16556, + "concord": 16557, + "##bl": 16558, + "bethany": 16559, + "connie": 16560, + "morality": 16561, + "sega": 16562, + "##mons": 16563, + "##nard": 16564, + "earnings": 16565, + "##kara": 16566, + "##cine": 16567, + "wii": 16568, + "communes": 16569, + "##rel": 16570, + "coma": 16571, + "composing": 16572, + "softened": 16573, + "severed": 16574, + "grapes": 16575, + "##17": 16576, + "nguyen": 16577, + "analyzed": 16578, + "warlord": 16579, + "hubbard": 16580, + "heavenly": 16581, + "behave": 16582, + "slovenian": 16583, + "##hit": 16584, + "##ony": 16585, + "hailed": 16586, + "filmmakers": 16587, + "trance": 16588, + "caldwell": 16589, + "skye": 16590, + "unrest": 16591, + "coward": 16592, + "likelihood": 16593, + "##aging": 16594, + "bern": 16595, + "sci": 16596, + "taliban": 16597, + "honolulu": 16598, + "propose": 16599, + "##wang": 16600, + "1700": 16601, + "browser": 16602, + "imagining": 16603, + "cobra": 16604, + "contributes": 16605, + "dukes": 16606, + "instinctively": 16607, + "conan": 16608, + "violinist": 16609, + "##ores": 16610, + "accessories": 16611, + "gradual": 16612, + "##amp": 16613, + "quotes": 16614, + "sioux": 16615, + "##dating": 16616, + "undertake": 16617, + "intercepted": 16618, + "sparkling": 16619, + "compressed": 16620, + "139": 16621, + "fungus": 16622, + "tombs": 16623, + "haley": 16624, + "imposing": 16625, + "rests": 16626, + "degradation": 16627, + "lincolnshire": 16628, + "retailers": 16629, + "wetlands": 16630, + "tulsa": 16631, + "distributor": 16632, + "dungeon": 16633, + "nun": 16634, + "greenhouse": 16635, + "convey": 16636, + "atlantis": 16637, + "aft": 16638, + "exits": 16639, + "oman": 16640, + "dresser": 16641, + "lyons": 16642, + "##sti": 16643, + "joking": 16644, + "eddy": 16645, + "judgement": 16646, + "omitted": 16647, + "digits": 16648, + "##cts": 16649, + "##game": 16650, + "juniors": 16651, + "##rae": 16652, + "cents": 16653, + "stricken": 16654, + "une": 16655, + "##ngo": 16656, + "wizards": 16657, + "weir": 16658, + "breton": 16659, + "nan": 16660, + "technician": 16661, + "fibers": 16662, + "liking": 16663, + "royalty": 16664, + "##cca": 16665, + "154": 16666, + "persia": 16667, + "terribly": 16668, + "magician": 16669, + "##rable": 16670, + "##unt": 16671, + "vance": 16672, + "cafeteria": 16673, + "booker": 16674, + "camille": 16675, + "warmer": 16676, + "##static": 16677, + "consume": 16678, + "cavern": 16679, + "gaps": 16680, + "compass": 16681, + "contemporaries": 16682, + "foyer": 16683, + "soothing": 16684, + "graveyard": 16685, + "maj": 16686, + "plunged": 16687, + "blush": 16688, + "##wear": 16689, + "cascade": 16690, + "demonstrates": 16691, + "ordinance": 16692, + "##nov": 16693, + "boyle": 16694, + "##lana": 16695, + "rockefeller": 16696, + "shaken": 16697, + "banjo": 16698, + "izzy": 16699, + "##ense": 16700, + "breathless": 16701, + "vines": 16702, + "##32": 16703, + "##eman": 16704, + "alterations": 16705, + "chromosome": 16706, + "dwellings": 16707, + "feudal": 16708, + "mole": 16709, + "153": 16710, + "catalonia": 16711, + "relics": 16712, + "tenant": 16713, + "mandated": 16714, + "##fm": 16715, + "fridge": 16716, + "hats": 16717, + "honesty": 16718, + "patented": 16719, + "raul": 16720, + "heap": 16721, + "cruisers": 16722, + "accusing": 16723, + "enlightenment": 16724, + "infants": 16725, + "wherein": 16726, + "chatham": 16727, + "contractors": 16728, + "zen": 16729, + "affinity": 16730, + "hc": 16731, + "osborne": 16732, + "piston": 16733, + "156": 16734, + "traps": 16735, + "maturity": 16736, + "##rana": 16737, + "lagos": 16738, + "##zal": 16739, + "peering": 16740, + "##nay": 16741, + "attendant": 16742, + "dealers": 16743, + "protocols": 16744, + "subset": 16745, + "prospects": 16746, + "biographical": 16747, + "##cre": 16748, + "artery": 16749, + "##zers": 16750, + "insignia": 16751, + "nuns": 16752, + "endured": 16753, + "##eration": 16754, + "recommend": 16755, + "schwartz": 16756, + "serbs": 16757, + "berger": 16758, + "cromwell": 16759, + "crossroads": 16760, + "##ctor": 16761, + "enduring": 16762, + "clasped": 16763, + "grounded": 16764, + "##bine": 16765, + "marseille": 16766, + "twitched": 16767, + "abel": 16768, + "choke": 16769, + "https": 16770, + "catalyst": 16771, + "moldova": 16772, + "italians": 16773, + "##tist": 16774, + "disastrous": 16775, + "wee": 16776, + "##oured": 16777, + "##nti": 16778, + "wwf": 16779, + "nope": 16780, + "##piration": 16781, + "##asa": 16782, + "expresses": 16783, + "thumbs": 16784, + "167": 16785, + "##nza": 16786, + "coca": 16787, + "1781": 16788, + "cheating": 16789, + "##ption": 16790, + "skipped": 16791, + "sensory": 16792, + "heidelberg": 16793, + "spies": 16794, + "satan": 16795, + "dangers": 16796, + "semifinal": 16797, + "202": 16798, + "bohemia": 16799, + "whitish": 16800, + "confusing": 16801, + "shipbuilding": 16802, + "relies": 16803, + "surgeons": 16804, + "landings": 16805, + "ravi": 16806, + "baku": 16807, + "moor": 16808, + "suffix": 16809, + "alejandro": 16810, + "##yana": 16811, + "litre": 16812, + "upheld": 16813, + "##unk": 16814, + "rajasthan": 16815, + "##rek": 16816, + "coaster": 16817, + "insists": 16818, + "posture": 16819, + "scenarios": 16820, + "etienne": 16821, + "favoured": 16822, + "appoint": 16823, + "transgender": 16824, + "elephants": 16825, + "poked": 16826, + "greenwood": 16827, + "defences": 16828, + "fulfilled": 16829, + "militant": 16830, + "somali": 16831, + "1758": 16832, + "chalk": 16833, + "potent": 16834, + "##ucci": 16835, + "migrants": 16836, + "wink": 16837, + "assistants": 16838, + "nos": 16839, + "restriction": 16840, + "activism": 16841, + "niger": 16842, + "##ario": 16843, + "colon": 16844, + "shaun": 16845, + "##sat": 16846, + "daphne": 16847, + "##erated": 16848, + "swam": 16849, + "congregations": 16850, + "reprise": 16851, + "considerations": 16852, + "magnet": 16853, + "playable": 16854, + "xvi": 16855, + "##р": 16856, + "overthrow": 16857, + "tobias": 16858, + "knob": 16859, + "chavez": 16860, + "coding": 16861, + "##mers": 16862, + "propped": 16863, + "katrina": 16864, + "orient": 16865, + "newcomer": 16866, + "##suke": 16867, + "temperate": 16868, + "##pool": 16869, + "farmhouse": 16870, + "interrogation": 16871, + "##vd": 16872, + "committing": 16873, + "##vert": 16874, + "forthcoming": 16875, + "strawberry": 16876, + "joaquin": 16877, + "macau": 16878, + "ponds": 16879, + "shocking": 16880, + "siberia": 16881, + "##cellular": 16882, + "chant": 16883, + "contributors": 16884, + "##nant": 16885, + "##ologists": 16886, + "sped": 16887, + "absorb": 16888, + "hail": 16889, + "1782": 16890, + "spared": 16891, + "##hore": 16892, + "barbados": 16893, + "karate": 16894, + "opus": 16895, + "originates": 16896, + "saul": 16897, + "##xie": 16898, + "evergreen": 16899, + "leaped": 16900, + "##rock": 16901, + "correlation": 16902, + "exaggerated": 16903, + "weekday": 16904, + "unification": 16905, + "bump": 16906, + "tracing": 16907, + "brig": 16908, + "afb": 16909, + "pathways": 16910, + "utilizing": 16911, + "##ners": 16912, + "mod": 16913, + "mb": 16914, + "disturbance": 16915, + "kneeling": 16916, + "##stad": 16917, + "##guchi": 16918, + "100th": 16919, + "pune": 16920, + "##thy": 16921, + "decreasing": 16922, + "168": 16923, + "manipulation": 16924, + "miriam": 16925, + "academia": 16926, + "ecosystem": 16927, + "occupational": 16928, + "rbi": 16929, + "##lem": 16930, + "rift": 16931, + "##14": 16932, + "rotary": 16933, + "stacked": 16934, + "incorporation": 16935, + "awakening": 16936, + "generators": 16937, + "guerrero": 16938, + "racist": 16939, + "##omy": 16940, + "cyber": 16941, + "derivatives": 16942, + "culminated": 16943, + "allie": 16944, + "annals": 16945, + "panzer": 16946, + "sainte": 16947, + "wikipedia": 16948, + "pops": 16949, + "zu": 16950, + "austro": 16951, + "##vate": 16952, + "algerian": 16953, + "politely": 16954, + "nicholson": 16955, + "mornings": 16956, + "educate": 16957, + "tastes": 16958, + "thrill": 16959, + "dartmouth": 16960, + "##gating": 16961, + "db": 16962, + "##jee": 16963, + "regan": 16964, + "differing": 16965, + "concentrating": 16966, + "choreography": 16967, + "divinity": 16968, + "##media": 16969, + "pledged": 16970, + "alexandre": 16971, + "routing": 16972, + "gregor": 16973, + "madeline": 16974, + "##idal": 16975, + "apocalypse": 16976, + "##hora": 16977, + "gunfire": 16978, + "culminating": 16979, + "elves": 16980, + "fined": 16981, + "liang": 16982, + "lam": 16983, + "programmed": 16984, + "tar": 16985, + "guessing": 16986, + "transparency": 16987, + "gabrielle": 16988, + "##gna": 16989, + "cancellation": 16990, + "flexibility": 16991, + "##lining": 16992, + "accession": 16993, + "shea": 16994, + "stronghold": 16995, + "nets": 16996, + "specializes": 16997, + "##rgan": 16998, + "abused": 16999, + "hasan": 17000, + "sgt": 17001, + "ling": 17002, + "exceeding": 17003, + "##₄": 17004, + "admiration": 17005, + "supermarket": 17006, + "##ark": 17007, + "photographers": 17008, + "specialised": 17009, + "tilt": 17010, + "resonance": 17011, + "hmm": 17012, + "perfume": 17013, + "380": 17014, + "sami": 17015, + "threatens": 17016, + "garland": 17017, + "botany": 17018, + "guarding": 17019, + "boiled": 17020, + "greet": 17021, + "puppy": 17022, + "russo": 17023, + "supplier": 17024, + "wilmington": 17025, + "vibrant": 17026, + "vijay": 17027, + "##bius": 17028, + "paralympic": 17029, + "grumbled": 17030, + "paige": 17031, + "faa": 17032, + "licking": 17033, + "margins": 17034, + "hurricanes": 17035, + "##gong": 17036, + "fest": 17037, + "grenade": 17038, + "ripping": 17039, + "##uz": 17040, + "counseling": 17041, + "weigh": 17042, + "##sian": 17043, + "needles": 17044, + "wiltshire": 17045, + "edison": 17046, + "costly": 17047, + "##not": 17048, + "fulton": 17049, + "tramway": 17050, + "redesigned": 17051, + "staffordshire": 17052, + "cache": 17053, + "gasping": 17054, + "watkins": 17055, + "sleepy": 17056, + "candidacy": 17057, + "##group": 17058, + "monkeys": 17059, + "timeline": 17060, + "throbbing": 17061, + "##bid": 17062, + "##sos": 17063, + "berth": 17064, + "uzbekistan": 17065, + "vanderbilt": 17066, + "bothering": 17067, + "overturned": 17068, + "ballots": 17069, + "gem": 17070, + "##iger": 17071, + "sunglasses": 17072, + "subscribers": 17073, + "hooker": 17074, + "compelling": 17075, + "ang": 17076, + "exceptionally": 17077, + "saloon": 17078, + "stab": 17079, + "##rdi": 17080, + "carla": 17081, + "terrifying": 17082, + "rom": 17083, + "##vision": 17084, + "coil": 17085, + "##oids": 17086, + "satisfying": 17087, + "vendors": 17088, + "31st": 17089, + "mackay": 17090, + "deities": 17091, + "overlooked": 17092, + "ambient": 17093, + "bahamas": 17094, + "felipe": 17095, + "olympia": 17096, + "whirled": 17097, + "botanist": 17098, + "advertised": 17099, + "tugging": 17100, + "##dden": 17101, + "disciples": 17102, + "morales": 17103, + "unionist": 17104, + "rites": 17105, + "foley": 17106, + "morse": 17107, + "motives": 17108, + "creepy": 17109, + "##₀": 17110, + "soo": 17111, + "##sz": 17112, + "bargain": 17113, + "highness": 17114, + "frightening": 17115, + "turnpike": 17116, + "tory": 17117, + "reorganization": 17118, + "##cer": 17119, + "depict": 17120, + "biographer": 17121, + "##walk": 17122, + "unopposed": 17123, + "manifesto": 17124, + "##gles": 17125, + "institut": 17126, + "emile": 17127, + "accidental": 17128, + "kapoor": 17129, + "##dam": 17130, + "kilkenny": 17131, + "cortex": 17132, + "lively": 17133, + "##13": 17134, + "romanesque": 17135, + "jain": 17136, + "shan": 17137, + "cannons": 17138, + "##ood": 17139, + "##ske": 17140, + "petrol": 17141, + "echoing": 17142, + "amalgamated": 17143, + "disappears": 17144, + "cautious": 17145, + "proposes": 17146, + "sanctions": 17147, + "trenton": 17148, + "##ر": 17149, + "flotilla": 17150, + "aus": 17151, + "contempt": 17152, + "tor": 17153, + "canary": 17154, + "cote": 17155, + "theirs": 17156, + "##hun": 17157, + "conceptual": 17158, + "deleted": 17159, + "fascinating": 17160, + "paso": 17161, + "blazing": 17162, + "elf": 17163, + "honourable": 17164, + "hutchinson": 17165, + "##eiro": 17166, + "##outh": 17167, + "##zin": 17168, + "surveyor": 17169, + "tee": 17170, + "amidst": 17171, + "wooded": 17172, + "reissue": 17173, + "intro": 17174, + "##ono": 17175, + "cobb": 17176, + "shelters": 17177, + "newsletter": 17178, + "hanson": 17179, + "brace": 17180, + "encoding": 17181, + "confiscated": 17182, + "dem": 17183, + "caravan": 17184, + "marino": 17185, + "scroll": 17186, + "melodic": 17187, + "cows": 17188, + "imam": 17189, + "##adi": 17190, + "##aneous": 17191, + "northward": 17192, + "searches": 17193, + "biodiversity": 17194, + "cora": 17195, + "310": 17196, + "roaring": 17197, + "##bers": 17198, + "connell": 17199, + "theologian": 17200, + "halo": 17201, + "compose": 17202, + "pathetic": 17203, + "unmarried": 17204, + "dynamo": 17205, + "##oot": 17206, + "az": 17207, + "calculation": 17208, + "toulouse": 17209, + "deserves": 17210, + "humour": 17211, + "nr": 17212, + "forgiveness": 17213, + "tam": 17214, + "undergone": 17215, + "martyr": 17216, + "pamela": 17217, + "myths": 17218, + "whore": 17219, + "counselor": 17220, + "hicks": 17221, + "290": 17222, + "heavens": 17223, + "battleship": 17224, + "electromagnetic": 17225, + "##bbs": 17226, + "stellar": 17227, + "establishments": 17228, + "presley": 17229, + "hopped": 17230, + "##chin": 17231, + "temptation": 17232, + "90s": 17233, + "wills": 17234, + "nas": 17235, + "##yuan": 17236, + "nhs": 17237, + "##nya": 17238, + "seminars": 17239, + "##yev": 17240, + "adaptations": 17241, + "gong": 17242, + "asher": 17243, + "lex": 17244, + "indicator": 17245, + "sikh": 17246, + "tobago": 17247, + "cites": 17248, + "goin": 17249, + "##yte": 17250, + "satirical": 17251, + "##gies": 17252, + "characterised": 17253, + "correspond": 17254, + "bubbles": 17255, + "lure": 17256, + "participates": 17257, + "##vid": 17258, + "eruption": 17259, + "skate": 17260, + "therapeutic": 17261, + "1785": 17262, + "canals": 17263, + "wholesale": 17264, + "defaulted": 17265, + "sac": 17266, + "460": 17267, + "petit": 17268, + "##zzled": 17269, + "virgil": 17270, + "leak": 17271, + "ravens": 17272, + "256": 17273, + "portraying": 17274, + "##yx": 17275, + "ghetto": 17276, + "creators": 17277, + "dams": 17278, + "portray": 17279, + "vicente": 17280, + "##rington": 17281, + "fae": 17282, + "namesake": 17283, + "bounty": 17284, + "##arium": 17285, + "joachim": 17286, + "##ota": 17287, + "##iser": 17288, + "aforementioned": 17289, + "axle": 17290, + "snout": 17291, + "depended": 17292, + "dismantled": 17293, + "reuben": 17294, + "480": 17295, + "##ibly": 17296, + "gallagher": 17297, + "##lau": 17298, + "##pd": 17299, + "earnest": 17300, + "##ieu": 17301, + "##iary": 17302, + "inflicted": 17303, + "objections": 17304, + "##llar": 17305, + "asa": 17306, + "gritted": 17307, + "##athy": 17308, + "jericho": 17309, + "##sea": 17310, + "##was": 17311, + "flick": 17312, + "underside": 17313, + "ceramics": 17314, + "undead": 17315, + "substituted": 17316, + "195": 17317, + "eastward": 17318, + "undoubtedly": 17319, + "wheeled": 17320, + "chimney": 17321, + "##iche": 17322, + "guinness": 17323, + "cb": 17324, + "##ager": 17325, + "siding": 17326, + "##bell": 17327, + "traitor": 17328, + "baptiste": 17329, + "disguised": 17330, + "inauguration": 17331, + "149": 17332, + "tipperary": 17333, + "choreographer": 17334, + "perched": 17335, + "warmed": 17336, + "stationary": 17337, + "eco": 17338, + "##ike": 17339, + "##ntes": 17340, + "bacterial": 17341, + "##aurus": 17342, + "flores": 17343, + "phosphate": 17344, + "##core": 17345, + "attacker": 17346, + "invaders": 17347, + "alvin": 17348, + "intersects": 17349, + "a1": 17350, + "indirectly": 17351, + "immigrated": 17352, + "businessmen": 17353, + "cornelius": 17354, + "valves": 17355, + "narrated": 17356, + "pill": 17357, + "sober": 17358, + "ul": 17359, + "nationale": 17360, + "monastic": 17361, + "applicants": 17362, + "scenery": 17363, + "##jack": 17364, + "161": 17365, + "motifs": 17366, + "constitutes": 17367, + "cpu": 17368, + "##osh": 17369, + "jurisdictions": 17370, + "sd": 17371, + "tuning": 17372, + "irritation": 17373, + "woven": 17374, + "##uddin": 17375, + "fertility": 17376, + "gao": 17377, + "##erie": 17378, + "antagonist": 17379, + "impatient": 17380, + "glacial": 17381, + "hides": 17382, + "boarded": 17383, + "denominations": 17384, + "interception": 17385, + "##jas": 17386, + "cookie": 17387, + "nicola": 17388, + "##tee": 17389, + "algebraic": 17390, + "marquess": 17391, + "bahn": 17392, + "parole": 17393, + "buyers": 17394, + "bait": 17395, + "turbines": 17396, + "paperwork": 17397, + "bestowed": 17398, + "natasha": 17399, + "renee": 17400, + "oceans": 17401, + "purchases": 17402, + "157": 17403, + "vaccine": 17404, + "215": 17405, + "##tock": 17406, + "fixtures": 17407, + "playhouse": 17408, + "integrate": 17409, + "jai": 17410, + "oswald": 17411, + "intellectuals": 17412, + "##cky": 17413, + "booked": 17414, + "nests": 17415, + "mortimer": 17416, + "##isi": 17417, + "obsession": 17418, + "sept": 17419, + "##gler": 17420, + "##sum": 17421, + "440": 17422, + "scrutiny": 17423, + "simultaneous": 17424, + "squinted": 17425, + "##shin": 17426, + "collects": 17427, + "oven": 17428, + "shankar": 17429, + "penned": 17430, + "remarkably": 17431, + "##я": 17432, + "slips": 17433, + "luggage": 17434, + "spectral": 17435, + "1786": 17436, + "collaborations": 17437, + "louie": 17438, + "consolidation": 17439, + "##ailed": 17440, + "##ivating": 17441, + "420": 17442, + "hoover": 17443, + "blackpool": 17444, + "harness": 17445, + "ignition": 17446, + "vest": 17447, + "tails": 17448, + "belmont": 17449, + "mongol": 17450, + "skinner": 17451, + "##nae": 17452, + "visually": 17453, + "mage": 17454, + "derry": 17455, + "##tism": 17456, + "##unce": 17457, + "stevie": 17458, + "transitional": 17459, + "##rdy": 17460, + "redskins": 17461, + "drying": 17462, + "prep": 17463, + "prospective": 17464, + "##21": 17465, + "annoyance": 17466, + "oversee": 17467, + "##loaded": 17468, + "fills": 17469, + "##books": 17470, + "##iki": 17471, + "announces": 17472, + "fda": 17473, + "scowled": 17474, + "respects": 17475, + "prasad": 17476, + "mystic": 17477, + "tucson": 17478, + "##vale": 17479, + "revue": 17480, + "springer": 17481, + "bankrupt": 17482, + "1772": 17483, + "aristotle": 17484, + "salvatore": 17485, + "habsburg": 17486, + "##geny": 17487, + "dal": 17488, + "natal": 17489, + "nut": 17490, + "pod": 17491, + "chewing": 17492, + "darts": 17493, + "moroccan": 17494, + "walkover": 17495, + "rosario": 17496, + "lenin": 17497, + "punjabi": 17498, + "##ße": 17499, + "grossed": 17500, + "scattering": 17501, + "wired": 17502, + "invasive": 17503, + "hui": 17504, + "polynomial": 17505, + "corridors": 17506, + "wakes": 17507, + "gina": 17508, + "portrays": 17509, + "##cratic": 17510, + "arid": 17511, + "retreating": 17512, + "erich": 17513, + "irwin": 17514, + "sniper": 17515, + "##dha": 17516, + "linen": 17517, + "lindsey": 17518, + "maneuver": 17519, + "butch": 17520, + "shutting": 17521, + "socio": 17522, + "bounce": 17523, + "commemorative": 17524, + "postseason": 17525, + "jeremiah": 17526, + "pines": 17527, + "275": 17528, + "mystical": 17529, + "beads": 17530, + "bp": 17531, + "abbas": 17532, + "furnace": 17533, + "bidding": 17534, + "consulted": 17535, + "assaulted": 17536, + "empirical": 17537, + "rubble": 17538, + "enclosure": 17539, + "sob": 17540, + "weakly": 17541, + "cancel": 17542, + "polly": 17543, + "yielded": 17544, + "##emann": 17545, + "curly": 17546, + "prediction": 17547, + "battered": 17548, + "70s": 17549, + "vhs": 17550, + "jacqueline": 17551, + "render": 17552, + "sails": 17553, + "barked": 17554, + "detailing": 17555, + "grayson": 17556, + "riga": 17557, + "sloane": 17558, + "raging": 17559, + "##yah": 17560, + "herbs": 17561, + "bravo": 17562, + "##athlon": 17563, + "alloy": 17564, + "giggle": 17565, + "imminent": 17566, + "suffers": 17567, + "assumptions": 17568, + "waltz": 17569, + "##itate": 17570, + "accomplishments": 17571, + "##ited": 17572, + "bathing": 17573, + "remixed": 17574, + "deception": 17575, + "prefix": 17576, + "##emia": 17577, + "deepest": 17578, + "##tier": 17579, + "##eis": 17580, + "balkan": 17581, + "frogs": 17582, + "##rong": 17583, + "slab": 17584, + "##pate": 17585, + "philosophers": 17586, + "peterborough": 17587, + "grains": 17588, + "imports": 17589, + "dickinson": 17590, + "rwanda": 17591, + "##atics": 17592, + "1774": 17593, + "dirk": 17594, + "lan": 17595, + "tablets": 17596, + "##rove": 17597, + "clone": 17598, + "##rice": 17599, + "caretaker": 17600, + "hostilities": 17601, + "mclean": 17602, + "##gre": 17603, + "regimental": 17604, + "treasures": 17605, + "norms": 17606, + "impose": 17607, + "tsar": 17608, + "tango": 17609, + "diplomacy": 17610, + "variously": 17611, + "complain": 17612, + "192": 17613, + "recognise": 17614, + "arrests": 17615, + "1779": 17616, + "celestial": 17617, + "pulitzer": 17618, + "##dus": 17619, + "bing": 17620, + "libretto": 17621, + "##moor": 17622, + "adele": 17623, + "splash": 17624, + "##rite": 17625, + "expectation": 17626, + "lds": 17627, + "confronts": 17628, + "##izer": 17629, + "spontaneous": 17630, + "harmful": 17631, + "wedge": 17632, + "entrepreneurs": 17633, + "buyer": 17634, + "##ope": 17635, + "bilingual": 17636, + "translate": 17637, + "rugged": 17638, + "conner": 17639, + "circulated": 17640, + "uae": 17641, + "eaton": 17642, + "##gra": 17643, + "##zzle": 17644, + "lingered": 17645, + "lockheed": 17646, + "vishnu": 17647, + "reelection": 17648, + "alonso": 17649, + "##oom": 17650, + "joints": 17651, + "yankee": 17652, + "headline": 17653, + "cooperate": 17654, + "heinz": 17655, + "laureate": 17656, + "invading": 17657, + "##sford": 17658, + "echoes": 17659, + "scandinavian": 17660, + "##dham": 17661, + "hugging": 17662, + "vitamin": 17663, + "salute": 17664, + "micah": 17665, + "hind": 17666, + "trader": 17667, + "##sper": 17668, + "radioactive": 17669, + "##ndra": 17670, + "militants": 17671, + "poisoned": 17672, + "ratified": 17673, + "remark": 17674, + "campeonato": 17675, + "deprived": 17676, + "wander": 17677, + "prop": 17678, + "##dong": 17679, + "outlook": 17680, + "##tani": 17681, + "##rix": 17682, + "##eye": 17683, + "chiang": 17684, + "darcy": 17685, + "##oping": 17686, + "mandolin": 17687, + "spice": 17688, + "statesman": 17689, + "babylon": 17690, + "182": 17691, + "walled": 17692, + "forgetting": 17693, + "afro": 17694, + "##cap": 17695, + "158": 17696, + "giorgio": 17697, + "buffer": 17698, + "##polis": 17699, + "planetary": 17700, + "##gis": 17701, + "overlap": 17702, + "terminals": 17703, + "kinda": 17704, + "centenary": 17705, + "##bir": 17706, + "arising": 17707, + "manipulate": 17708, + "elm": 17709, + "ke": 17710, + "1770": 17711, + "ak": 17712, + "##tad": 17713, + "chrysler": 17714, + "mapped": 17715, + "moose": 17716, + "pomeranian": 17717, + "quad": 17718, + "macarthur": 17719, + "assemblies": 17720, + "shoreline": 17721, + "recalls": 17722, + "stratford": 17723, + "##rted": 17724, + "noticeable": 17725, + "##evic": 17726, + "imp": 17727, + "##rita": 17728, + "##sque": 17729, + "accustomed": 17730, + "supplying": 17731, + "tents": 17732, + "disgusted": 17733, + "vogue": 17734, + "sipped": 17735, + "filters": 17736, + "khz": 17737, + "reno": 17738, + "selecting": 17739, + "luftwaffe": 17740, + "mcmahon": 17741, + "tyne": 17742, + "masterpiece": 17743, + "carriages": 17744, + "collided": 17745, + "dunes": 17746, + "exercised": 17747, + "flare": 17748, + "remembers": 17749, + "muzzle": 17750, + "##mobile": 17751, + "heck": 17752, + "##rson": 17753, + "burgess": 17754, + "lunged": 17755, + "middleton": 17756, + "boycott": 17757, + "bilateral": 17758, + "##sity": 17759, + "hazardous": 17760, + "lumpur": 17761, + "multiplayer": 17762, + "spotlight": 17763, + "jackets": 17764, + "goldman": 17765, + "liege": 17766, + "porcelain": 17767, + "rag": 17768, + "waterford": 17769, + "benz": 17770, + "attracts": 17771, + "hopeful": 17772, + "battling": 17773, + "ottomans": 17774, + "kensington": 17775, + "baked": 17776, + "hymns": 17777, + "cheyenne": 17778, + "lattice": 17779, + "levine": 17780, + "borrow": 17781, + "polymer": 17782, + "clashes": 17783, + "michaels": 17784, + "monitored": 17785, + "commitments": 17786, + "denounced": 17787, + "##25": 17788, + "##von": 17789, + "cavity": 17790, + "##oney": 17791, + "hobby": 17792, + "akin": 17793, + "##holders": 17794, + "futures": 17795, + "intricate": 17796, + "cornish": 17797, + "patty": 17798, + "##oned": 17799, + "illegally": 17800, + "dolphin": 17801, + "##lag": 17802, + "barlow": 17803, + "yellowish": 17804, + "maddie": 17805, + "apologized": 17806, + "luton": 17807, + "plagued": 17808, + "##puram": 17809, + "nana": 17810, + "##rds": 17811, + "sway": 17812, + "fanny": 17813, + "łodz": 17814, + "##rino": 17815, + "psi": 17816, + "suspicions": 17817, + "hanged": 17818, + "##eding": 17819, + "initiate": 17820, + "charlton": 17821, + "##por": 17822, + "nak": 17823, + "competent": 17824, + "235": 17825, + "analytical": 17826, + "annex": 17827, + "wardrobe": 17828, + "reservations": 17829, + "##rma": 17830, + "sect": 17831, + "162": 17832, + "fairfax": 17833, + "hedge": 17834, + "piled": 17835, + "buckingham": 17836, + "uneven": 17837, + "bauer": 17838, + "simplicity": 17839, + "snyder": 17840, + "interpret": 17841, + "accountability": 17842, + "donors": 17843, + "moderately": 17844, + "byrd": 17845, + "continents": 17846, + "##cite": 17847, + "##max": 17848, + "disciple": 17849, + "hr": 17850, + "jamaican": 17851, + "ping": 17852, + "nominees": 17853, + "##uss": 17854, + "mongolian": 17855, + "diver": 17856, + "attackers": 17857, + "eagerly": 17858, + "ideological": 17859, + "pillows": 17860, + "miracles": 17861, + "apartheid": 17862, + "revolver": 17863, + "sulfur": 17864, + "clinics": 17865, + "moran": 17866, + "163": 17867, + "##enko": 17868, + "ile": 17869, + "katy": 17870, + "rhetoric": 17871, + "##icated": 17872, + "chronology": 17873, + "recycling": 17874, + "##hrer": 17875, + "elongated": 17876, + "mughal": 17877, + "pascal": 17878, + "profiles": 17879, + "vibration": 17880, + "databases": 17881, + "domination": 17882, + "##fare": 17883, + "##rant": 17884, + "matthias": 17885, + "digest": 17886, + "rehearsal": 17887, + "polling": 17888, + "weiss": 17889, + "initiation": 17890, + "reeves": 17891, + "clinging": 17892, + "flourished": 17893, + "impress": 17894, + "ngo": 17895, + "##hoff": 17896, + "##ume": 17897, + "buckley": 17898, + "symposium": 17899, + "rhythms": 17900, + "weed": 17901, + "emphasize": 17902, + "transforming": 17903, + "##taking": 17904, + "##gence": 17905, + "##yman": 17906, + "accountant": 17907, + "analyze": 17908, + "flicker": 17909, + "foil": 17910, + "priesthood": 17911, + "voluntarily": 17912, + "decreases": 17913, + "##80": 17914, + "##hya": 17915, + "slater": 17916, + "sv": 17917, + "charting": 17918, + "mcgill": 17919, + "##lde": 17920, + "moreno": 17921, + "##iu": 17922, + "besieged": 17923, + "zur": 17924, + "robes": 17925, + "##phic": 17926, + "admitting": 17927, + "api": 17928, + "deported": 17929, + "turmoil": 17930, + "peyton": 17931, + "earthquakes": 17932, + "##ares": 17933, + "nationalists": 17934, + "beau": 17935, + "clair": 17936, + "brethren": 17937, + "interrupt": 17938, + "welch": 17939, + "curated": 17940, + "galerie": 17941, + "requesting": 17942, + "164": 17943, + "##ested": 17944, + "impending": 17945, + "steward": 17946, + "viper": 17947, + "##vina": 17948, + "complaining": 17949, + "beautifully": 17950, + "brandy": 17951, + "foam": 17952, + "nl": 17953, + "1660": 17954, + "##cake": 17955, + "alessandro": 17956, + "punches": 17957, + "laced": 17958, + "explanations": 17959, + "##lim": 17960, + "attribute": 17961, + "clit": 17962, + "reggie": 17963, + "discomfort": 17964, + "##cards": 17965, + "smoothed": 17966, + "whales": 17967, + "##cene": 17968, + "adler": 17969, + "countered": 17970, + "duffy": 17971, + "disciplinary": 17972, + "widening": 17973, + "recipe": 17974, + "reliance": 17975, + "conducts": 17976, + "goats": 17977, + "gradient": 17978, + "preaching": 17979, + "##shaw": 17980, + "matilda": 17981, + "quasi": 17982, + "striped": 17983, + "meridian": 17984, + "cannabis": 17985, + "cordoba": 17986, + "certificates": 17987, + "##agh": 17988, + "##tering": 17989, + "graffiti": 17990, + "hangs": 17991, + "pilgrims": 17992, + "repeats": 17993, + "##ych": 17994, + "revive": 17995, + "urine": 17996, + "etat": 17997, + "##hawk": 17998, + "fueled": 17999, + "belts": 18000, + "fuzzy": 18001, + "susceptible": 18002, + "##hang": 18003, + "mauritius": 18004, + "salle": 18005, + "sincere": 18006, + "beers": 18007, + "hooks": 18008, + "##cki": 18009, + "arbitration": 18010, + "entrusted": 18011, + "advise": 18012, + "sniffed": 18013, + "seminar": 18014, + "junk": 18015, + "donnell": 18016, + "processors": 18017, + "principality": 18018, + "strapped": 18019, + "celia": 18020, + "mendoza": 18021, + "everton": 18022, + "fortunes": 18023, + "prejudice": 18024, + "starving": 18025, + "reassigned": 18026, + "steamer": 18027, + "##lund": 18028, + "tuck": 18029, + "evenly": 18030, + "foreman": 18031, + "##ffen": 18032, + "dans": 18033, + "375": 18034, + "envisioned": 18035, + "slit": 18036, + "##xy": 18037, + "baseman": 18038, + "liberia": 18039, + "rosemary": 18040, + "##weed": 18041, + "electrified": 18042, + "periodically": 18043, + "potassium": 18044, + "stride": 18045, + "contexts": 18046, + "sperm": 18047, + "slade": 18048, + "mariners": 18049, + "influx": 18050, + "bianca": 18051, + "subcommittee": 18052, + "##rane": 18053, + "spilling": 18054, + "icao": 18055, + "estuary": 18056, + "##nock": 18057, + "delivers": 18058, + "iphone": 18059, + "##ulata": 18060, + "isa": 18061, + "mira": 18062, + "bohemian": 18063, + "dessert": 18064, + "##sbury": 18065, + "welcoming": 18066, + "proudly": 18067, + "slowing": 18068, + "##chs": 18069, + "musee": 18070, + "ascension": 18071, + "russ": 18072, + "##vian": 18073, + "waits": 18074, + "##psy": 18075, + "africans": 18076, + "exploit": 18077, + "##morphic": 18078, + "gov": 18079, + "eccentric": 18080, + "crab": 18081, + "peck": 18082, + "##ull": 18083, + "entrances": 18084, + "formidable": 18085, + "marketplace": 18086, + "groom": 18087, + "bolted": 18088, + "metabolism": 18089, + "patton": 18090, + "robbins": 18091, + "courier": 18092, + "payload": 18093, + "endure": 18094, + "##ifier": 18095, + "andes": 18096, + "refrigerator": 18097, + "##pr": 18098, + "ornate": 18099, + "##uca": 18100, + "ruthless": 18101, + "illegitimate": 18102, + "masonry": 18103, + "strasbourg": 18104, + "bikes": 18105, + "adobe": 18106, + "##³": 18107, + "apples": 18108, + "quintet": 18109, + "willingly": 18110, + "niche": 18111, + "bakery": 18112, + "corpses": 18113, + "energetic": 18114, + "##cliffe": 18115, + "##sser": 18116, + "##ards": 18117, + "177": 18118, + "centimeters": 18119, + "centro": 18120, + "fuscous": 18121, + "cretaceous": 18122, + "rancho": 18123, + "##yde": 18124, + "andrei": 18125, + "telecom": 18126, + "tottenham": 18127, + "oasis": 18128, + "ordination": 18129, + "vulnerability": 18130, + "presiding": 18131, + "corey": 18132, + "cp": 18133, + "penguins": 18134, + "sims": 18135, + "##pis": 18136, + "malawi": 18137, + "piss": 18138, + "##48": 18139, + "correction": 18140, + "##cked": 18141, + "##ffle": 18142, + "##ryn": 18143, + "countdown": 18144, + "detectives": 18145, + "psychiatrist": 18146, + "psychedelic": 18147, + "dinosaurs": 18148, + "blouse": 18149, + "##get": 18150, + "choi": 18151, + "vowed": 18152, + "##oz": 18153, + "randomly": 18154, + "##pol": 18155, + "49ers": 18156, + "scrub": 18157, + "blanche": 18158, + "bruins": 18159, + "dusseldorf": 18160, + "##using": 18161, + "unwanted": 18162, + "##ums": 18163, + "212": 18164, + "dominique": 18165, + "elevations": 18166, + "headlights": 18167, + "om": 18168, + "laguna": 18169, + "##oga": 18170, + "1750": 18171, + "famously": 18172, + "ignorance": 18173, + "shrewsbury": 18174, + "##aine": 18175, + "ajax": 18176, + "breuning": 18177, + "che": 18178, + "confederacy": 18179, + "greco": 18180, + "overhaul": 18181, + "##screen": 18182, + "paz": 18183, + "skirts": 18184, + "disagreement": 18185, + "cruelty": 18186, + "jagged": 18187, + "phoebe": 18188, + "shifter": 18189, + "hovered": 18190, + "viruses": 18191, + "##wes": 18192, + "mandy": 18193, + "##lined": 18194, + "##gc": 18195, + "landlord": 18196, + "squirrel": 18197, + "dashed": 18198, + "##ι": 18199, + "ornamental": 18200, + "gag": 18201, + "wally": 18202, + "grange": 18203, + "literal": 18204, + "spurs": 18205, + "undisclosed": 18206, + "proceeding": 18207, + "yin": 18208, + "##text": 18209, + "billie": 18210, + "orphan": 18211, + "spanned": 18212, + "humidity": 18213, + "indy": 18214, + "weighted": 18215, + "presentations": 18216, + "explosions": 18217, + "lucian": 18218, + "##tary": 18219, + "vaughn": 18220, + "hindus": 18221, + "##anga": 18222, + "##hell": 18223, + "psycho": 18224, + "171": 18225, + "daytona": 18226, + "protects": 18227, + "efficiently": 18228, + "rematch": 18229, + "sly": 18230, + "tandem": 18231, + "##oya": 18232, + "rebranded": 18233, + "impaired": 18234, + "hee": 18235, + "metropolis": 18236, + "peach": 18237, + "godfrey": 18238, + "diaspora": 18239, + "ethnicity": 18240, + "prosperous": 18241, + "gleaming": 18242, + "dar": 18243, + "grossing": 18244, + "playback": 18245, + "##rden": 18246, + "stripe": 18247, + "pistols": 18248, + "##tain": 18249, + "births": 18250, + "labelled": 18251, + "##cating": 18252, + "172": 18253, + "rudy": 18254, + "alba": 18255, + "##onne": 18256, + "aquarium": 18257, + "hostility": 18258, + "##gb": 18259, + "##tase": 18260, + "shudder": 18261, + "sumatra": 18262, + "hardest": 18263, + "lakers": 18264, + "consonant": 18265, + "creeping": 18266, + "demos": 18267, + "homicide": 18268, + "capsule": 18269, + "zeke": 18270, + "liberties": 18271, + "expulsion": 18272, + "pueblo": 18273, + "##comb": 18274, + "trait": 18275, + "transporting": 18276, + "##ddin": 18277, + "##neck": 18278, + "##yna": 18279, + "depart": 18280, + "gregg": 18281, + "mold": 18282, + "ledge": 18283, + "hangar": 18284, + "oldham": 18285, + "playboy": 18286, + "termination": 18287, + "analysts": 18288, + "gmbh": 18289, + "romero": 18290, + "##itic": 18291, + "insist": 18292, + "cradle": 18293, + "filthy": 18294, + "brightness": 18295, + "slash": 18296, + "shootout": 18297, + "deposed": 18298, + "bordering": 18299, + "##truct": 18300, + "isis": 18301, + "microwave": 18302, + "tumbled": 18303, + "sheltered": 18304, + "cathy": 18305, + "werewolves": 18306, + "messy": 18307, + "andersen": 18308, + "convex": 18309, + "clapped": 18310, + "clinched": 18311, + "satire": 18312, + "wasting": 18313, + "edo": 18314, + "vc": 18315, + "rufus": 18316, + "##jak": 18317, + "mont": 18318, + "##etti": 18319, + "poznan": 18320, + "##keeping": 18321, + "restructuring": 18322, + "transverse": 18323, + "##rland": 18324, + "azerbaijani": 18325, + "slovene": 18326, + "gestures": 18327, + "roommate": 18328, + "choking": 18329, + "shear": 18330, + "##quist": 18331, + "vanguard": 18332, + "oblivious": 18333, + "##hiro": 18334, + "disagreed": 18335, + "baptism": 18336, + "##lich": 18337, + "coliseum": 18338, + "##aceae": 18339, + "salvage": 18340, + "societe": 18341, + "cory": 18342, + "locke": 18343, + "relocation": 18344, + "relying": 18345, + "versailles": 18346, + "ahl": 18347, + "swelling": 18348, + "##elo": 18349, + "cheerful": 18350, + "##word": 18351, + "##edes": 18352, + "gin": 18353, + "sarajevo": 18354, + "obstacle": 18355, + "diverted": 18356, + "##nac": 18357, + "messed": 18358, + "thoroughbred": 18359, + "fluttered": 18360, + "utrecht": 18361, + "chewed": 18362, + "acquaintance": 18363, + "assassins": 18364, + "dispatch": 18365, + "mirza": 18366, + "##wart": 18367, + "nike": 18368, + "salzburg": 18369, + "swell": 18370, + "yen": 18371, + "##gee": 18372, + "idle": 18373, + "ligue": 18374, + "samson": 18375, + "##nds": 18376, + "##igh": 18377, + "playful": 18378, + "spawned": 18379, + "##cise": 18380, + "tease": 18381, + "##case": 18382, + "burgundy": 18383, + "##bot": 18384, + "stirring": 18385, + "skeptical": 18386, + "interceptions": 18387, + "marathi": 18388, + "##dies": 18389, + "bedrooms": 18390, + "aroused": 18391, + "pinch": 18392, + "##lik": 18393, + "preferences": 18394, + "tattoos": 18395, + "buster": 18396, + "digitally": 18397, + "projecting": 18398, + "rust": 18399, + "##ital": 18400, + "kitten": 18401, + "priorities": 18402, + "addison": 18403, + "pseudo": 18404, + "##guard": 18405, + "dusk": 18406, + "icons": 18407, + "sermon": 18408, + "##psis": 18409, + "##iba": 18410, + "bt": 18411, + "##lift": 18412, + "##xt": 18413, + "ju": 18414, + "truce": 18415, + "rink": 18416, + "##dah": 18417, + "##wy": 18418, + "defects": 18419, + "psychiatry": 18420, + "offences": 18421, + "calculate": 18422, + "glucose": 18423, + "##iful": 18424, + "##rized": 18425, + "##unda": 18426, + "francaise": 18427, + "##hari": 18428, + "richest": 18429, + "warwickshire": 18430, + "carly": 18431, + "1763": 18432, + "purity": 18433, + "redemption": 18434, + "lending": 18435, + "##cious": 18436, + "muse": 18437, + "bruises": 18438, + "cerebral": 18439, + "aero": 18440, + "carving": 18441, + "##name": 18442, + "preface": 18443, + "terminology": 18444, + "invade": 18445, + "monty": 18446, + "##int": 18447, + "anarchist": 18448, + "blurred": 18449, + "##iled": 18450, + "rossi": 18451, + "treats": 18452, + "guts": 18453, + "shu": 18454, + "foothills": 18455, + "ballads": 18456, + "undertaking": 18457, + "premise": 18458, + "cecilia": 18459, + "affiliates": 18460, + "blasted": 18461, + "conditional": 18462, + "wilder": 18463, + "minors": 18464, + "drone": 18465, + "rudolph": 18466, + "buffy": 18467, + "swallowing": 18468, + "horton": 18469, + "attested": 18470, + "##hop": 18471, + "rutherford": 18472, + "howell": 18473, + "primetime": 18474, + "livery": 18475, + "penal": 18476, + "##bis": 18477, + "minimize": 18478, + "hydro": 18479, + "wrecked": 18480, + "wrought": 18481, + "palazzo": 18482, + "##gling": 18483, + "cans": 18484, + "vernacular": 18485, + "friedman": 18486, + "nobleman": 18487, + "shale": 18488, + "walnut": 18489, + "danielle": 18490, + "##ection": 18491, + "##tley": 18492, + "sears": 18493, + "##kumar": 18494, + "chords": 18495, + "lend": 18496, + "flipping": 18497, + "streamed": 18498, + "por": 18499, + "dracula": 18500, + "gallons": 18501, + "sacrifices": 18502, + "gamble": 18503, + "orphanage": 18504, + "##iman": 18505, + "mckenzie": 18506, + "##gible": 18507, + "boxers": 18508, + "daly": 18509, + "##balls": 18510, + "##ان": 18511, + "208": 18512, + "##ific": 18513, + "##rative": 18514, + "##iq": 18515, + "exploited": 18516, + "slated": 18517, + "##uity": 18518, + "circling": 18519, + "hillary": 18520, + "pinched": 18521, + "goldberg": 18522, + "provost": 18523, + "campaigning": 18524, + "lim": 18525, + "piles": 18526, + "ironically": 18527, + "jong": 18528, + "mohan": 18529, + "successors": 18530, + "usaf": 18531, + "##tem": 18532, + "##ught": 18533, + "autobiographical": 18534, + "haute": 18535, + "preserves": 18536, + "##ending": 18537, + "acquitted": 18538, + "comparisons": 18539, + "203": 18540, + "hydroelectric": 18541, + "gangs": 18542, + "cypriot": 18543, + "torpedoes": 18544, + "rushes": 18545, + "chrome": 18546, + "derive": 18547, + "bumps": 18548, + "instability": 18549, + "fiat": 18550, + "pets": 18551, + "##mbe": 18552, + "silas": 18553, + "dye": 18554, + "reckless": 18555, + "settler": 18556, + "##itation": 18557, + "info": 18558, + "heats": 18559, + "##writing": 18560, + "176": 18561, + "canonical": 18562, + "maltese": 18563, + "fins": 18564, + "mushroom": 18565, + "stacy": 18566, + "aspen": 18567, + "avid": 18568, + "##kur": 18569, + "##loading": 18570, + "vickers": 18571, + "gaston": 18572, + "hillside": 18573, + "statutes": 18574, + "wilde": 18575, + "gail": 18576, + "kung": 18577, + "sabine": 18578, + "comfortably": 18579, + "motorcycles": 18580, + "##rgo": 18581, + "169": 18582, + "pneumonia": 18583, + "fetch": 18584, + "##sonic": 18585, + "axel": 18586, + "faintly": 18587, + "parallels": 18588, + "##oop": 18589, + "mclaren": 18590, + "spouse": 18591, + "compton": 18592, + "interdisciplinary": 18593, + "miner": 18594, + "##eni": 18595, + "181": 18596, + "clamped": 18597, + "##chal": 18598, + "##llah": 18599, + "separates": 18600, + "versa": 18601, + "##mler": 18602, + "scarborough": 18603, + "labrador": 18604, + "##lity": 18605, + "##osing": 18606, + "rutgers": 18607, + "hurdles": 18608, + "como": 18609, + "166": 18610, + "burt": 18611, + "divers": 18612, + "##100": 18613, + "wichita": 18614, + "cade": 18615, + "coincided": 18616, + "##erson": 18617, + "bruised": 18618, + "mla": 18619, + "##pper": 18620, + "vineyard": 18621, + "##ili": 18622, + "##brush": 18623, + "notch": 18624, + "mentioning": 18625, + "jase": 18626, + "hearted": 18627, + "kits": 18628, + "doe": 18629, + "##acle": 18630, + "pomerania": 18631, + "##ady": 18632, + "ronan": 18633, + "seizure": 18634, + "pavel": 18635, + "problematic": 18636, + "##zaki": 18637, + "domenico": 18638, + "##ulin": 18639, + "catering": 18640, + "penelope": 18641, + "dependence": 18642, + "parental": 18643, + "emilio": 18644, + "ministerial": 18645, + "atkinson": 18646, + "##bolic": 18647, + "clarkson": 18648, + "chargers": 18649, + "colby": 18650, + "grill": 18651, + "peeked": 18652, + "arises": 18653, + "summon": 18654, + "##aged": 18655, + "fools": 18656, + "##grapher": 18657, + "faculties": 18658, + "qaeda": 18659, + "##vial": 18660, + "garner": 18661, + "refurbished": 18662, + "##hwa": 18663, + "geelong": 18664, + "disasters": 18665, + "nudged": 18666, + "bs": 18667, + "shareholder": 18668, + "lori": 18669, + "algae": 18670, + "reinstated": 18671, + "rot": 18672, + "##ades": 18673, + "##nous": 18674, + "invites": 18675, + "stainless": 18676, + "183": 18677, + "inclusive": 18678, + "##itude": 18679, + "diocesan": 18680, + "til": 18681, + "##icz": 18682, + "denomination": 18683, + "##xa": 18684, + "benton": 18685, + "floral": 18686, + "registers": 18687, + "##ider": 18688, + "##erman": 18689, + "##kell": 18690, + "absurd": 18691, + "brunei": 18692, + "guangzhou": 18693, + "hitter": 18694, + "retaliation": 18695, + "##uled": 18696, + "##eve": 18697, + "blanc": 18698, + "nh": 18699, + "consistency": 18700, + "contamination": 18701, + "##eres": 18702, + "##rner": 18703, + "dire": 18704, + "palermo": 18705, + "broadcasters": 18706, + "diaries": 18707, + "inspire": 18708, + "vols": 18709, + "brewer": 18710, + "tightening": 18711, + "ky": 18712, + "mixtape": 18713, + "hormone": 18714, + "##tok": 18715, + "stokes": 18716, + "##color": 18717, + "##dly": 18718, + "##ssi": 18719, + "pg": 18720, + "##ometer": 18721, + "##lington": 18722, + "sanitation": 18723, + "##tility": 18724, + "intercontinental": 18725, + "apps": 18726, + "##adt": 18727, + "¹⁄₂": 18728, + "cylinders": 18729, + "economies": 18730, + "favourable": 18731, + "unison": 18732, + "croix": 18733, + "gertrude": 18734, + "odyssey": 18735, + "vanity": 18736, + "dangling": 18737, + "##logists": 18738, + "upgrades": 18739, + "dice": 18740, + "middleweight": 18741, + "practitioner": 18742, + "##ight": 18743, + "206": 18744, + "henrik": 18745, + "parlor": 18746, + "orion": 18747, + "angered": 18748, + "lac": 18749, + "python": 18750, + "blurted": 18751, + "##rri": 18752, + "sensual": 18753, + "intends": 18754, + "swings": 18755, + "angled": 18756, + "##phs": 18757, + "husky": 18758, + "attain": 18759, + "peerage": 18760, + "precinct": 18761, + "textiles": 18762, + "cheltenham": 18763, + "shuffled": 18764, + "dai": 18765, + "confess": 18766, + "tasting": 18767, + "bhutan": 18768, + "##riation": 18769, + "tyrone": 18770, + "segregation": 18771, + "abrupt": 18772, + "ruiz": 18773, + "##rish": 18774, + "smirked": 18775, + "blackwell": 18776, + "confidential": 18777, + "browning": 18778, + "amounted": 18779, + "##put": 18780, + "vase": 18781, + "scarce": 18782, + "fabulous": 18783, + "raided": 18784, + "staple": 18785, + "guyana": 18786, + "unemployed": 18787, + "glider": 18788, + "shay": 18789, + "##tow": 18790, + "carmine": 18791, + "troll": 18792, + "intervene": 18793, + "squash": 18794, + "superstar": 18795, + "##uce": 18796, + "cylindrical": 18797, + "len": 18798, + "roadway": 18799, + "researched": 18800, + "handy": 18801, + "##rium": 18802, + "##jana": 18803, + "meta": 18804, + "lao": 18805, + "declares": 18806, + "##rring": 18807, + "##tadt": 18808, + "##elin": 18809, + "##kova": 18810, + "willem": 18811, + "shrubs": 18812, + "napoleonic": 18813, + "realms": 18814, + "skater": 18815, + "qi": 18816, + "volkswagen": 18817, + "##ł": 18818, + "tad": 18819, + "hara": 18820, + "archaeologist": 18821, + "awkwardly": 18822, + "eerie": 18823, + "##kind": 18824, + "wiley": 18825, + "##heimer": 18826, + "##24": 18827, + "titus": 18828, + "organizers": 18829, + "cfl": 18830, + "crusaders": 18831, + "lama": 18832, + "usb": 18833, + "vent": 18834, + "enraged": 18835, + "thankful": 18836, + "occupants": 18837, + "maximilian": 18838, + "##gaard": 18839, + "possessing": 18840, + "textbooks": 18841, + "##oran": 18842, + "collaborator": 18843, + "quaker": 18844, + "##ulo": 18845, + "avalanche": 18846, + "mono": 18847, + "silky": 18848, + "straits": 18849, + "isaiah": 18850, + "mustang": 18851, + "surged": 18852, + "resolutions": 18853, + "potomac": 18854, + "descend": 18855, + "cl": 18856, + "kilograms": 18857, + "plato": 18858, + "strains": 18859, + "saturdays": 18860, + "##olin": 18861, + "bernstein": 18862, + "##ype": 18863, + "holstein": 18864, + "ponytail": 18865, + "##watch": 18866, + "belize": 18867, + "conversely": 18868, + "heroine": 18869, + "perpetual": 18870, + "##ylus": 18871, + "charcoal": 18872, + "piedmont": 18873, + "glee": 18874, + "negotiating": 18875, + "backdrop": 18876, + "prologue": 18877, + "##jah": 18878, + "##mmy": 18879, + "pasadena": 18880, + "climbs": 18881, + "ramos": 18882, + "sunni": 18883, + "##holm": 18884, + "##tner": 18885, + "##tri": 18886, + "anand": 18887, + "deficiency": 18888, + "hertfordshire": 18889, + "stout": 18890, + "##avi": 18891, + "aperture": 18892, + "orioles": 18893, + "##irs": 18894, + "doncaster": 18895, + "intrigued": 18896, + "bombed": 18897, + "coating": 18898, + "otis": 18899, + "##mat": 18900, + "cocktail": 18901, + "##jit": 18902, + "##eto": 18903, + "amir": 18904, + "arousal": 18905, + "sar": 18906, + "##proof": 18907, + "##act": 18908, + "##ories": 18909, + "dixie": 18910, + "pots": 18911, + "##bow": 18912, + "whereabouts": 18913, + "159": 18914, + "##fted": 18915, + "drains": 18916, + "bullying": 18917, + "cottages": 18918, + "scripture": 18919, + "coherent": 18920, + "fore": 18921, + "poe": 18922, + "appetite": 18923, + "##uration": 18924, + "sampled": 18925, + "##ators": 18926, + "##dp": 18927, + "derrick": 18928, + "rotor": 18929, + "jays": 18930, + "peacock": 18931, + "installment": 18932, + "##rro": 18933, + "advisors": 18934, + "##coming": 18935, + "rodeo": 18936, + "scotch": 18937, + "##mot": 18938, + "##db": 18939, + "##fen": 18940, + "##vant": 18941, + "ensued": 18942, + "rodrigo": 18943, + "dictatorship": 18944, + "martyrs": 18945, + "twenties": 18946, + "##н": 18947, + "towed": 18948, + "incidence": 18949, + "marta": 18950, + "rainforest": 18951, + "sai": 18952, + "scaled": 18953, + "##cles": 18954, + "oceanic": 18955, + "qualifiers": 18956, + "symphonic": 18957, + "mcbride": 18958, + "dislike": 18959, + "generalized": 18960, + "aubrey": 18961, + "colonization": 18962, + "##iation": 18963, + "##lion": 18964, + "##ssing": 18965, + "disliked": 18966, + "lublin": 18967, + "salesman": 18968, + "##ulates": 18969, + "spherical": 18970, + "whatsoever": 18971, + "sweating": 18972, + "avalon": 18973, + "contention": 18974, + "punt": 18975, + "severity": 18976, + "alderman": 18977, + "atari": 18978, + "##dina": 18979, + "##grant": 18980, + "##rop": 18981, + "scarf": 18982, + "seville": 18983, + "vertices": 18984, + "annexation": 18985, + "fairfield": 18986, + "fascination": 18987, + "inspiring": 18988, + "launches": 18989, + "palatinate": 18990, + "regretted": 18991, + "##rca": 18992, + "feral": 18993, + "##iom": 18994, + "elk": 18995, + "nap": 18996, + "olsen": 18997, + "reddy": 18998, + "yong": 18999, + "##leader": 19000, + "##iae": 19001, + "garment": 19002, + "transports": 19003, + "feng": 19004, + "gracie": 19005, + "outrage": 19006, + "viceroy": 19007, + "insides": 19008, + "##esis": 19009, + "breakup": 19010, + "grady": 19011, + "organizer": 19012, + "softer": 19013, + "grimaced": 19014, + "222": 19015, + "murals": 19016, + "galicia": 19017, + "arranging": 19018, + "vectors": 19019, + "##rsten": 19020, + "bas": 19021, + "##sb": 19022, + "##cens": 19023, + "sloan": 19024, + "##eka": 19025, + "bitten": 19026, + "ara": 19027, + "fender": 19028, + "nausea": 19029, + "bumped": 19030, + "kris": 19031, + "banquet": 19032, + "comrades": 19033, + "detector": 19034, + "persisted": 19035, + "##llan": 19036, + "adjustment": 19037, + "endowed": 19038, + "cinemas": 19039, + "##shot": 19040, + "sellers": 19041, + "##uman": 19042, + "peek": 19043, + "epa": 19044, + "kindly": 19045, + "neglect": 19046, + "simpsons": 19047, + "talon": 19048, + "mausoleum": 19049, + "runaway": 19050, + "hangul": 19051, + "lookout": 19052, + "##cic": 19053, + "rewards": 19054, + "coughed": 19055, + "acquainted": 19056, + "chloride": 19057, + "##ald": 19058, + "quicker": 19059, + "accordion": 19060, + "neolithic": 19061, + "##qa": 19062, + "artemis": 19063, + "coefficient": 19064, + "lenny": 19065, + "pandora": 19066, + "tx": 19067, + "##xed": 19068, + "ecstasy": 19069, + "litter": 19070, + "segunda": 19071, + "chairperson": 19072, + "gemma": 19073, + "hiss": 19074, + "rumor": 19075, + "vow": 19076, + "nasal": 19077, + "antioch": 19078, + "compensate": 19079, + "patiently": 19080, + "transformers": 19081, + "##eded": 19082, + "judo": 19083, + "morrow": 19084, + "penis": 19085, + "posthumous": 19086, + "philips": 19087, + "bandits": 19088, + "husbands": 19089, + "denote": 19090, + "flaming": 19091, + "##any": 19092, + "##phones": 19093, + "langley": 19094, + "yorker": 19095, + "1760": 19096, + "walters": 19097, + "##uo": 19098, + "##kle": 19099, + "gubernatorial": 19100, + "fatty": 19101, + "samsung": 19102, + "leroy": 19103, + "outlaw": 19104, + "##nine": 19105, + "unpublished": 19106, + "poole": 19107, + "jakob": 19108, + "##ᵢ": 19109, + "##ₙ": 19110, + "crete": 19111, + "distorted": 19112, + "superiority": 19113, + "##dhi": 19114, + "intercept": 19115, + "crust": 19116, + "mig": 19117, + "claus": 19118, + "crashes": 19119, + "positioning": 19120, + "188": 19121, + "stallion": 19122, + "301": 19123, + "frontal": 19124, + "armistice": 19125, + "##estinal": 19126, + "elton": 19127, + "aj": 19128, + "encompassing": 19129, + "camel": 19130, + "commemorated": 19131, + "malaria": 19132, + "woodward": 19133, + "calf": 19134, + "cigar": 19135, + "penetrate": 19136, + "##oso": 19137, + "willard": 19138, + "##rno": 19139, + "##uche": 19140, + "illustrate": 19141, + "amusing": 19142, + "convergence": 19143, + "noteworthy": 19144, + "##lma": 19145, + "##rva": 19146, + "journeys": 19147, + "realise": 19148, + "manfred": 19149, + "##sable": 19150, + "410": 19151, + "##vocation": 19152, + "hearings": 19153, + "fiance": 19154, + "##posed": 19155, + "educators": 19156, + "provoked": 19157, + "adjusting": 19158, + "##cturing": 19159, + "modular": 19160, + "stockton": 19161, + "paterson": 19162, + "vlad": 19163, + "rejects": 19164, + "electors": 19165, + "selena": 19166, + "maureen": 19167, + "##tres": 19168, + "uber": 19169, + "##rce": 19170, + "swirled": 19171, + "##num": 19172, + "proportions": 19173, + "nanny": 19174, + "pawn": 19175, + "naturalist": 19176, + "parma": 19177, + "apostles": 19178, + "awoke": 19179, + "ethel": 19180, + "wen": 19181, + "##bey": 19182, + "monsoon": 19183, + "overview": 19184, + "##inating": 19185, + "mccain": 19186, + "rendition": 19187, + "risky": 19188, + "adorned": 19189, + "##ih": 19190, + "equestrian": 19191, + "germain": 19192, + "nj": 19193, + "conspicuous": 19194, + "confirming": 19195, + "##yoshi": 19196, + "shivering": 19197, + "##imeter": 19198, + "milestone": 19199, + "rumours": 19200, + "flinched": 19201, + "bounds": 19202, + "smacked": 19203, + "token": 19204, + "##bei": 19205, + "lectured": 19206, + "automobiles": 19207, + "##shore": 19208, + "impacted": 19209, + "##iable": 19210, + "nouns": 19211, + "nero": 19212, + "##leaf": 19213, + "ismail": 19214, + "prostitute": 19215, + "trams": 19216, + "##lace": 19217, + "bridget": 19218, + "sud": 19219, + "stimulus": 19220, + "impressions": 19221, + "reins": 19222, + "revolves": 19223, + "##oud": 19224, + "##gned": 19225, + "giro": 19226, + "honeymoon": 19227, + "##swell": 19228, + "criterion": 19229, + "##sms": 19230, + "##uil": 19231, + "libyan": 19232, + "prefers": 19233, + "##osition": 19234, + "211": 19235, + "preview": 19236, + "sucks": 19237, + "accusation": 19238, + "bursts": 19239, + "metaphor": 19240, + "diffusion": 19241, + "tolerate": 19242, + "faye": 19243, + "betting": 19244, + "cinematographer": 19245, + "liturgical": 19246, + "specials": 19247, + "bitterly": 19248, + "humboldt": 19249, + "##ckle": 19250, + "flux": 19251, + "rattled": 19252, + "##itzer": 19253, + "archaeologists": 19254, + "odor": 19255, + "authorised": 19256, + "marshes": 19257, + "discretion": 19258, + "##ов": 19259, + "alarmed": 19260, + "archaic": 19261, + "inverse": 19262, + "##leton": 19263, + "explorers": 19264, + "##pine": 19265, + "drummond": 19266, + "tsunami": 19267, + "woodlands": 19268, + "##minate": 19269, + "##tland": 19270, + "booklet": 19271, + "insanity": 19272, + "owning": 19273, + "insert": 19274, + "crafted": 19275, + "calculus": 19276, + "##tore": 19277, + "receivers": 19278, + "##bt": 19279, + "stung": 19280, + "##eca": 19281, + "##nched": 19282, + "prevailing": 19283, + "travellers": 19284, + "eyeing": 19285, + "lila": 19286, + "graphs": 19287, + "##borne": 19288, + "178": 19289, + "julien": 19290, + "##won": 19291, + "morale": 19292, + "adaptive": 19293, + "therapist": 19294, + "erica": 19295, + "cw": 19296, + "libertarian": 19297, + "bowman": 19298, + "pitches": 19299, + "vita": 19300, + "##ional": 19301, + "crook": 19302, + "##ads": 19303, + "##entation": 19304, + "caledonia": 19305, + "mutiny": 19306, + "##sible": 19307, + "1840s": 19308, + "automation": 19309, + "##ß": 19310, + "flock": 19311, + "##pia": 19312, + "ironic": 19313, + "pathology": 19314, + "##imus": 19315, + "remarried": 19316, + "##22": 19317, + "joker": 19318, + "withstand": 19319, + "energies": 19320, + "##att": 19321, + "shropshire": 19322, + "hostages": 19323, + "madeleine": 19324, + "tentatively": 19325, + "conflicting": 19326, + "mateo": 19327, + "recipes": 19328, + "euros": 19329, + "ol": 19330, + "mercenaries": 19331, + "nico": 19332, + "##ndon": 19333, + "albuquerque": 19334, + "augmented": 19335, + "mythical": 19336, + "bel": 19337, + "freud": 19338, + "##child": 19339, + "cough": 19340, + "##lica": 19341, + "365": 19342, + "freddy": 19343, + "lillian": 19344, + "genetically": 19345, + "nuremberg": 19346, + "calder": 19347, + "209": 19348, + "bonn": 19349, + "outdoors": 19350, + "paste": 19351, + "suns": 19352, + "urgency": 19353, + "vin": 19354, + "restraint": 19355, + "tyson": 19356, + "##cera": 19357, + "##selle": 19358, + "barrage": 19359, + "bethlehem": 19360, + "kahn": 19361, + "##par": 19362, + "mounts": 19363, + "nippon": 19364, + "barony": 19365, + "happier": 19366, + "ryu": 19367, + "makeshift": 19368, + "sheldon": 19369, + "blushed": 19370, + "castillo": 19371, + "barking": 19372, + "listener": 19373, + "taped": 19374, + "bethel": 19375, + "fluent": 19376, + "headlines": 19377, + "pornography": 19378, + "rum": 19379, + "disclosure": 19380, + "sighing": 19381, + "mace": 19382, + "doubling": 19383, + "gunther": 19384, + "manly": 19385, + "##plex": 19386, + "rt": 19387, + "interventions": 19388, + "physiological": 19389, + "forwards": 19390, + "emerges": 19391, + "##tooth": 19392, + "##gny": 19393, + "compliment": 19394, + "rib": 19395, + "recession": 19396, + "visibly": 19397, + "barge": 19398, + "faults": 19399, + "connector": 19400, + "exquisite": 19401, + "prefect": 19402, + "##rlin": 19403, + "patio": 19404, + "##cured": 19405, + "elevators": 19406, + "brandt": 19407, + "italics": 19408, + "pena": 19409, + "173": 19410, + "wasp": 19411, + "satin": 19412, + "ea": 19413, + "botswana": 19414, + "graceful": 19415, + "respectable": 19416, + "##jima": 19417, + "##rter": 19418, + "##oic": 19419, + "franciscan": 19420, + "generates": 19421, + "##dl": 19422, + "alfredo": 19423, + "disgusting": 19424, + "##olate": 19425, + "##iously": 19426, + "sherwood": 19427, + "warns": 19428, + "cod": 19429, + "promo": 19430, + "cheryl": 19431, + "sino": 19432, + "##ة": 19433, + "##escu": 19434, + "twitch": 19435, + "##zhi": 19436, + "brownish": 19437, + "thom": 19438, + "ortiz": 19439, + "##dron": 19440, + "densely": 19441, + "##beat": 19442, + "carmel": 19443, + "reinforce": 19444, + "##bana": 19445, + "187": 19446, + "anastasia": 19447, + "downhill": 19448, + "vertex": 19449, + "contaminated": 19450, + "remembrance": 19451, + "harmonic": 19452, + "homework": 19453, + "##sol": 19454, + "fiancee": 19455, + "gears": 19456, + "olds": 19457, + "angelica": 19458, + "loft": 19459, + "ramsay": 19460, + "quiz": 19461, + "colliery": 19462, + "sevens": 19463, + "##cape": 19464, + "autism": 19465, + "##hil": 19466, + "walkway": 19467, + "##boats": 19468, + "ruben": 19469, + "abnormal": 19470, + "ounce": 19471, + "khmer": 19472, + "##bbe": 19473, + "zachary": 19474, + "bedside": 19475, + "morphology": 19476, + "punching": 19477, + "##olar": 19478, + "sparrow": 19479, + "convinces": 19480, + "##35": 19481, + "hewitt": 19482, + "queer": 19483, + "remastered": 19484, + "rods": 19485, + "mabel": 19486, + "solemn": 19487, + "notified": 19488, + "lyricist": 19489, + "symmetric": 19490, + "##xide": 19491, + "174": 19492, + "encore": 19493, + "passports": 19494, + "wildcats": 19495, + "##uni": 19496, + "baja": 19497, + "##pac": 19498, + "mildly": 19499, + "##ease": 19500, + "bleed": 19501, + "commodity": 19502, + "mounds": 19503, + "glossy": 19504, + "orchestras": 19505, + "##omo": 19506, + "damian": 19507, + "prelude": 19508, + "ambitions": 19509, + "##vet": 19510, + "awhile": 19511, + "remotely": 19512, + "##aud": 19513, + "asserts": 19514, + "imply": 19515, + "##iques": 19516, + "distinctly": 19517, + "modelling": 19518, + "remedy": 19519, + "##dded": 19520, + "windshield": 19521, + "dani": 19522, + "xiao": 19523, + "##endra": 19524, + "audible": 19525, + "powerplant": 19526, + "1300": 19527, + "invalid": 19528, + "elemental": 19529, + "acquisitions": 19530, + "##hala": 19531, + "immaculate": 19532, + "libby": 19533, + "plata": 19534, + "smuggling": 19535, + "ventilation": 19536, + "denoted": 19537, + "minh": 19538, + "##morphism": 19539, + "430": 19540, + "differed": 19541, + "dion": 19542, + "kelley": 19543, + "lore": 19544, + "mocking": 19545, + "sabbath": 19546, + "spikes": 19547, + "hygiene": 19548, + "drown": 19549, + "runoff": 19550, + "stylized": 19551, + "tally": 19552, + "liberated": 19553, + "aux": 19554, + "interpreter": 19555, + "righteous": 19556, + "aba": 19557, + "siren": 19558, + "reaper": 19559, + "pearce": 19560, + "millie": 19561, + "##cier": 19562, + "##yra": 19563, + "gaius": 19564, + "##iso": 19565, + "captures": 19566, + "##ttering": 19567, + "dorm": 19568, + "claudio": 19569, + "##sic": 19570, + "benches": 19571, + "knighted": 19572, + "blackness": 19573, + "##ored": 19574, + "discount": 19575, + "fumble": 19576, + "oxidation": 19577, + "routed": 19578, + "##ς": 19579, + "novak": 19580, + "perpendicular": 19581, + "spoiled": 19582, + "fracture": 19583, + "splits": 19584, + "##urt": 19585, + "pads": 19586, + "topology": 19587, + "##cats": 19588, + "axes": 19589, + "fortunate": 19590, + "offenders": 19591, + "protestants": 19592, + "esteem": 19593, + "221": 19594, + "broadband": 19595, + "convened": 19596, + "frankly": 19597, + "hound": 19598, + "prototypes": 19599, + "isil": 19600, + "facilitated": 19601, + "keel": 19602, + "##sher": 19603, + "sahara": 19604, + "awaited": 19605, + "bubba": 19606, + "orb": 19607, + "prosecutors": 19608, + "186": 19609, + "hem": 19610, + "520": 19611, + "##xing": 19612, + "relaxing": 19613, + "remnant": 19614, + "romney": 19615, + "sorted": 19616, + "slalom": 19617, + "stefano": 19618, + "ulrich": 19619, + "##active": 19620, + "exemption": 19621, + "folder": 19622, + "pauses": 19623, + "foliage": 19624, + "hitchcock": 19625, + "epithet": 19626, + "204": 19627, + "criticisms": 19628, + "##aca": 19629, + "ballistic": 19630, + "brody": 19631, + "hinduism": 19632, + "chaotic": 19633, + "youths": 19634, + "equals": 19635, + "##pala": 19636, + "pts": 19637, + "thicker": 19638, + "analogous": 19639, + "capitalist": 19640, + "improvised": 19641, + "overseeing": 19642, + "sinatra": 19643, + "ascended": 19644, + "beverage": 19645, + "##tl": 19646, + "straightforward": 19647, + "##kon": 19648, + "curran": 19649, + "##west": 19650, + "bois": 19651, + "325": 19652, + "induce": 19653, + "surveying": 19654, + "emperors": 19655, + "sax": 19656, + "unpopular": 19657, + "##kk": 19658, + "cartoonist": 19659, + "fused": 19660, + "##mble": 19661, + "unto": 19662, + "##yuki": 19663, + "localities": 19664, + "##cko": 19665, + "##ln": 19666, + "darlington": 19667, + "slain": 19668, + "academie": 19669, + "lobbying": 19670, + "sediment": 19671, + "puzzles": 19672, + "##grass": 19673, + "defiance": 19674, + "dickens": 19675, + "manifest": 19676, + "tongues": 19677, + "alumnus": 19678, + "arbor": 19679, + "coincide": 19680, + "184": 19681, + "appalachian": 19682, + "mustafa": 19683, + "examiner": 19684, + "cabaret": 19685, + "traumatic": 19686, + "yves": 19687, + "bracelet": 19688, + "draining": 19689, + "heroin": 19690, + "magnum": 19691, + "baths": 19692, + "odessa": 19693, + "consonants": 19694, + "mitsubishi": 19695, + "##gua": 19696, + "kellan": 19697, + "vaudeville": 19698, + "##fr": 19699, + "joked": 19700, + "null": 19701, + "straps": 19702, + "probation": 19703, + "##ław": 19704, + "ceded": 19705, + "interfaces": 19706, + "##pas": 19707, + "##zawa": 19708, + "blinding": 19709, + "viet": 19710, + "224": 19711, + "rothschild": 19712, + "museo": 19713, + "640": 19714, + "huddersfield": 19715, + "##vr": 19716, + "tactic": 19717, + "##storm": 19718, + "brackets": 19719, + "dazed": 19720, + "incorrectly": 19721, + "##vu": 19722, + "reg": 19723, + "glazed": 19724, + "fearful": 19725, + "manifold": 19726, + "benefited": 19727, + "irony": 19728, + "##sun": 19729, + "stumbling": 19730, + "##rte": 19731, + "willingness": 19732, + "balkans": 19733, + "mei": 19734, + "wraps": 19735, + "##aba": 19736, + "injected": 19737, + "##lea": 19738, + "gu": 19739, + "syed": 19740, + "harmless": 19741, + "##hammer": 19742, + "bray": 19743, + "takeoff": 19744, + "poppy": 19745, + "timor": 19746, + "cardboard": 19747, + "astronaut": 19748, + "purdue": 19749, + "weeping": 19750, + "southbound": 19751, + "cursing": 19752, + "stalls": 19753, + "diagonal": 19754, + "##neer": 19755, + "lamar": 19756, + "bryce": 19757, + "comte": 19758, + "weekdays": 19759, + "harrington": 19760, + "##uba": 19761, + "negatively": 19762, + "##see": 19763, + "lays": 19764, + "grouping": 19765, + "##cken": 19766, + "##henko": 19767, + "affirmed": 19768, + "halle": 19769, + "modernist": 19770, + "##lai": 19771, + "hodges": 19772, + "smelling": 19773, + "aristocratic": 19774, + "baptized": 19775, + "dismiss": 19776, + "justification": 19777, + "oilers": 19778, + "##now": 19779, + "coupling": 19780, + "qin": 19781, + "snack": 19782, + "healer": 19783, + "##qing": 19784, + "gardener": 19785, + "layla": 19786, + "battled": 19787, + "formulated": 19788, + "stephenson": 19789, + "gravitational": 19790, + "##gill": 19791, + "##jun": 19792, + "1768": 19793, + "granny": 19794, + "coordinating": 19795, + "suites": 19796, + "##cd": 19797, + "##ioned": 19798, + "monarchs": 19799, + "##cote": 19800, + "##hips": 19801, + "sep": 19802, + "blended": 19803, + "apr": 19804, + "barrister": 19805, + "deposition": 19806, + "fia": 19807, + "mina": 19808, + "policemen": 19809, + "paranoid": 19810, + "##pressed": 19811, + "churchyard": 19812, + "covert": 19813, + "crumpled": 19814, + "creep": 19815, + "abandoning": 19816, + "tr": 19817, + "transmit": 19818, + "conceal": 19819, + "barr": 19820, + "understands": 19821, + "readiness": 19822, + "spire": 19823, + "##cology": 19824, + "##enia": 19825, + "##erry": 19826, + "610": 19827, + "startling": 19828, + "unlock": 19829, + "vida": 19830, + "bowled": 19831, + "slots": 19832, + "##nat": 19833, + "##islav": 19834, + "spaced": 19835, + "trusting": 19836, + "admire": 19837, + "rig": 19838, + "##ink": 19839, + "slack": 19840, + "##70": 19841, + "mv": 19842, + "207": 19843, + "casualty": 19844, + "##wei": 19845, + "classmates": 19846, + "##odes": 19847, + "##rar": 19848, + "##rked": 19849, + "amherst": 19850, + "furnished": 19851, + "evolve": 19852, + "foundry": 19853, + "menace": 19854, + "mead": 19855, + "##lein": 19856, + "flu": 19857, + "wesleyan": 19858, + "##kled": 19859, + "monterey": 19860, + "webber": 19861, + "##vos": 19862, + "wil": 19863, + "##mith": 19864, + "##на": 19865, + "bartholomew": 19866, + "justices": 19867, + "restrained": 19868, + "##cke": 19869, + "amenities": 19870, + "191": 19871, + "mediated": 19872, + "sewage": 19873, + "trenches": 19874, + "ml": 19875, + "mainz": 19876, + "##thus": 19877, + "1800s": 19878, + "##cula": 19879, + "##inski": 19880, + "caine": 19881, + "bonding": 19882, + "213": 19883, + "converts": 19884, + "spheres": 19885, + "superseded": 19886, + "marianne": 19887, + "crypt": 19888, + "sweaty": 19889, + "ensign": 19890, + "historia": 19891, + "##br": 19892, + "spruce": 19893, + "##post": 19894, + "##ask": 19895, + "forks": 19896, + "thoughtfully": 19897, + "yukon": 19898, + "pamphlet": 19899, + "ames": 19900, + "##uter": 19901, + "karma": 19902, + "##yya": 19903, + "bryn": 19904, + "negotiation": 19905, + "sighs": 19906, + "incapable": 19907, + "##mbre": 19908, + "##ntial": 19909, + "actresses": 19910, + "taft": 19911, + "##mill": 19912, + "luce": 19913, + "prevailed": 19914, + "##amine": 19915, + "1773": 19916, + "motionless": 19917, + "envoy": 19918, + "testify": 19919, + "investing": 19920, + "sculpted": 19921, + "instructors": 19922, + "provence": 19923, + "kali": 19924, + "cullen": 19925, + "horseback": 19926, + "##while": 19927, + "goodwin": 19928, + "##jos": 19929, + "gaa": 19930, + "norte": 19931, + "##ldon": 19932, + "modify": 19933, + "wavelength": 19934, + "abd": 19935, + "214": 19936, + "skinned": 19937, + "sprinter": 19938, + "forecast": 19939, + "scheduling": 19940, + "marries": 19941, + "squared": 19942, + "tentative": 19943, + "##chman": 19944, + "boer": 19945, + "##isch": 19946, + "bolts": 19947, + "swap": 19948, + "fisherman": 19949, + "assyrian": 19950, + "impatiently": 19951, + "guthrie": 19952, + "martins": 19953, + "murdoch": 19954, + "194": 19955, + "tanya": 19956, + "nicely": 19957, + "dolly": 19958, + "lacy": 19959, + "med": 19960, + "##45": 19961, + "syn": 19962, + "decks": 19963, + "fashionable": 19964, + "millionaire": 19965, + "##ust": 19966, + "surfing": 19967, + "##ml": 19968, + "##ision": 19969, + "heaved": 19970, + "tammy": 19971, + "consulate": 19972, + "attendees": 19973, + "routinely": 19974, + "197": 19975, + "fuse": 19976, + "saxophonist": 19977, + "backseat": 19978, + "malaya": 19979, + "##lord": 19980, + "scowl": 19981, + "tau": 19982, + "##ishly": 19983, + "193": 19984, + "sighted": 19985, + "steaming": 19986, + "##rks": 19987, + "303": 19988, + "911": 19989, + "##holes": 19990, + "##hong": 19991, + "ching": 19992, + "##wife": 19993, + "bless": 19994, + "conserved": 19995, + "jurassic": 19996, + "stacey": 19997, + "unix": 19998, + "zion": 19999, + "chunk": 20000, + "rigorous": 20001, + "blaine": 20002, + "198": 20003, + "peabody": 20004, + "slayer": 20005, + "dismay": 20006, + "brewers": 20007, + "nz": 20008, + "##jer": 20009, + "det": 20010, + "##glia": 20011, + "glover": 20012, + "postwar": 20013, + "int": 20014, + "penetration": 20015, + "sylvester": 20016, + "imitation": 20017, + "vertically": 20018, + "airlift": 20019, + "heiress": 20020, + "knoxville": 20021, + "viva": 20022, + "##uin": 20023, + "390": 20024, + "macon": 20025, + "##rim": 20026, + "##fighter": 20027, + "##gonal": 20028, + "janice": 20029, + "##orescence": 20030, + "##wari": 20031, + "marius": 20032, + "belongings": 20033, + "leicestershire": 20034, + "196": 20035, + "blanco": 20036, + "inverted": 20037, + "preseason": 20038, + "sanity": 20039, + "sobbing": 20040, + "##due": 20041, + "##elt": 20042, + "##dled": 20043, + "collingwood": 20044, + "regeneration": 20045, + "flickering": 20046, + "shortest": 20047, + "##mount": 20048, + "##osi": 20049, + "feminism": 20050, + "##lat": 20051, + "sherlock": 20052, + "cabinets": 20053, + "fumbled": 20054, + "northbound": 20055, + "precedent": 20056, + "snaps": 20057, + "##mme": 20058, + "researching": 20059, + "##akes": 20060, + "guillaume": 20061, + "insights": 20062, + "manipulated": 20063, + "vapor": 20064, + "neighbour": 20065, + "sap": 20066, + "gangster": 20067, + "frey": 20068, + "f1": 20069, + "stalking": 20070, + "scarcely": 20071, + "callie": 20072, + "barnett": 20073, + "tendencies": 20074, + "audi": 20075, + "doomed": 20076, + "assessing": 20077, + "slung": 20078, + "panchayat": 20079, + "ambiguous": 20080, + "bartlett": 20081, + "##etto": 20082, + "distributing": 20083, + "violating": 20084, + "wolverhampton": 20085, + "##hetic": 20086, + "swami": 20087, + "histoire": 20088, + "##urus": 20089, + "liable": 20090, + "pounder": 20091, + "groin": 20092, + "hussain": 20093, + "larsen": 20094, + "popping": 20095, + "surprises": 20096, + "##atter": 20097, + "vie": 20098, + "curt": 20099, + "##station": 20100, + "mute": 20101, + "relocate": 20102, + "musicals": 20103, + "authorization": 20104, + "richter": 20105, + "##sef": 20106, + "immortality": 20107, + "tna": 20108, + "bombings": 20109, + "##press": 20110, + "deteriorated": 20111, + "yiddish": 20112, + "##acious": 20113, + "robbed": 20114, + "colchester": 20115, + "cs": 20116, + "pmid": 20117, + "ao": 20118, + "verified": 20119, + "balancing": 20120, + "apostle": 20121, + "swayed": 20122, + "recognizable": 20123, + "oxfordshire": 20124, + "retention": 20125, + "nottinghamshire": 20126, + "contender": 20127, + "judd": 20128, + "invitational": 20129, + "shrimp": 20130, + "uhf": 20131, + "##icient": 20132, + "cleaner": 20133, + "longitudinal": 20134, + "tanker": 20135, + "##mur": 20136, + "acronym": 20137, + "broker": 20138, + "koppen": 20139, + "sundance": 20140, + "suppliers": 20141, + "##gil": 20142, + "4000": 20143, + "clipped": 20144, + "fuels": 20145, + "petite": 20146, + "##anne": 20147, + "landslide": 20148, + "helene": 20149, + "diversion": 20150, + "populous": 20151, + "landowners": 20152, + "auspices": 20153, + "melville": 20154, + "quantitative": 20155, + "##xes": 20156, + "ferries": 20157, + "nicky": 20158, + "##llus": 20159, + "doo": 20160, + "haunting": 20161, + "roche": 20162, + "carver": 20163, + "downed": 20164, + "unavailable": 20165, + "##pathy": 20166, + "approximation": 20167, + "hiroshima": 20168, + "##hue": 20169, + "garfield": 20170, + "valle": 20171, + "comparatively": 20172, + "keyboardist": 20173, + "traveler": 20174, + "##eit": 20175, + "congestion": 20176, + "calculating": 20177, + "subsidiaries": 20178, + "##bate": 20179, + "serb": 20180, + "modernization": 20181, + "fairies": 20182, + "deepened": 20183, + "ville": 20184, + "averages": 20185, + "##lore": 20186, + "inflammatory": 20187, + "tonga": 20188, + "##itch": 20189, + "co₂": 20190, + "squads": 20191, + "##hea": 20192, + "gigantic": 20193, + "serum": 20194, + "enjoyment": 20195, + "retailer": 20196, + "verona": 20197, + "35th": 20198, + "cis": 20199, + "##phobic": 20200, + "magna": 20201, + "technicians": 20202, + "##vati": 20203, + "arithmetic": 20204, + "##sport": 20205, + "levin": 20206, + "##dation": 20207, + "amtrak": 20208, + "chow": 20209, + "sienna": 20210, + "##eyer": 20211, + "backstage": 20212, + "entrepreneurship": 20213, + "##otic": 20214, + "learnt": 20215, + "tao": 20216, + "##udy": 20217, + "worcestershire": 20218, + "formulation": 20219, + "baggage": 20220, + "hesitant": 20221, + "bali": 20222, + "sabotage": 20223, + "##kari": 20224, + "barren": 20225, + "enhancing": 20226, + "murmur": 20227, + "pl": 20228, + "freshly": 20229, + "putnam": 20230, + "syntax": 20231, + "aces": 20232, + "medicines": 20233, + "resentment": 20234, + "bandwidth": 20235, + "##sier": 20236, + "grins": 20237, + "chili": 20238, + "guido": 20239, + "##sei": 20240, + "framing": 20241, + "implying": 20242, + "gareth": 20243, + "lissa": 20244, + "genevieve": 20245, + "pertaining": 20246, + "admissions": 20247, + "geo": 20248, + "thorpe": 20249, + "proliferation": 20250, + "sato": 20251, + "bela": 20252, + "analyzing": 20253, + "parting": 20254, + "##gor": 20255, + "awakened": 20256, + "##isman": 20257, + "huddled": 20258, + "secrecy": 20259, + "##kling": 20260, + "hush": 20261, + "gentry": 20262, + "540": 20263, + "dungeons": 20264, + "##ego": 20265, + "coasts": 20266, + "##utz": 20267, + "sacrificed": 20268, + "##chule": 20269, + "landowner": 20270, + "mutually": 20271, + "prevalence": 20272, + "programmer": 20273, + "adolescent": 20274, + "disrupted": 20275, + "seaside": 20276, + "gee": 20277, + "trusts": 20278, + "vamp": 20279, + "georgie": 20280, + "##nesian": 20281, + "##iol": 20282, + "schedules": 20283, + "sindh": 20284, + "##market": 20285, + "etched": 20286, + "hm": 20287, + "sparse": 20288, + "bey": 20289, + "beaux": 20290, + "scratching": 20291, + "gliding": 20292, + "unidentified": 20293, + "216": 20294, + "collaborating": 20295, + "gems": 20296, + "jesuits": 20297, + "oro": 20298, + "accumulation": 20299, + "shaping": 20300, + "mbe": 20301, + "anal": 20302, + "##xin": 20303, + "231": 20304, + "enthusiasts": 20305, + "newscast": 20306, + "##egan": 20307, + "janata": 20308, + "dewey": 20309, + "parkinson": 20310, + "179": 20311, + "ankara": 20312, + "biennial": 20313, + "towering": 20314, + "dd": 20315, + "inconsistent": 20316, + "950": 20317, + "##chet": 20318, + "thriving": 20319, + "terminate": 20320, + "cabins": 20321, + "furiously": 20322, + "eats": 20323, + "advocating": 20324, + "donkey": 20325, + "marley": 20326, + "muster": 20327, + "phyllis": 20328, + "leiden": 20329, + "##user": 20330, + "grassland": 20331, + "glittering": 20332, + "iucn": 20333, + "loneliness": 20334, + "217": 20335, + "memorandum": 20336, + "armenians": 20337, + "##ddle": 20338, + "popularized": 20339, + "rhodesia": 20340, + "60s": 20341, + "lame": 20342, + "##illon": 20343, + "sans": 20344, + "bikini": 20345, + "header": 20346, + "orbits": 20347, + "##xx": 20348, + "##finger": 20349, + "##ulator": 20350, + "sharif": 20351, + "spines": 20352, + "biotechnology": 20353, + "strolled": 20354, + "naughty": 20355, + "yates": 20356, + "##wire": 20357, + "fremantle": 20358, + "milo": 20359, + "##mour": 20360, + "abducted": 20361, + "removes": 20362, + "##atin": 20363, + "humming": 20364, + "wonderland": 20365, + "##chrome": 20366, + "##ester": 20367, + "hume": 20368, + "pivotal": 20369, + "##rates": 20370, + "armand": 20371, + "grams": 20372, + "believers": 20373, + "elector": 20374, + "rte": 20375, + "apron": 20376, + "bis": 20377, + "scraped": 20378, + "##yria": 20379, + "endorsement": 20380, + "initials": 20381, + "##llation": 20382, + "eps": 20383, + "dotted": 20384, + "hints": 20385, + "buzzing": 20386, + "emigration": 20387, + "nearer": 20388, + "##tom": 20389, + "indicators": 20390, + "##ulu": 20391, + "coarse": 20392, + "neutron": 20393, + "protectorate": 20394, + "##uze": 20395, + "directional": 20396, + "exploits": 20397, + "pains": 20398, + "loire": 20399, + "1830s": 20400, + "proponents": 20401, + "guggenheim": 20402, + "rabbits": 20403, + "ritchie": 20404, + "305": 20405, + "hectare": 20406, + "inputs": 20407, + "hutton": 20408, + "##raz": 20409, + "verify": 20410, + "##ako": 20411, + "boilers": 20412, + "longitude": 20413, + "##lev": 20414, + "skeletal": 20415, + "yer": 20416, + "emilia": 20417, + "citrus": 20418, + "compromised": 20419, + "##gau": 20420, + "pokemon": 20421, + "prescription": 20422, + "paragraph": 20423, + "eduard": 20424, + "cadillac": 20425, + "attire": 20426, + "categorized": 20427, + "kenyan": 20428, + "weddings": 20429, + "charley": 20430, + "##bourg": 20431, + "entertain": 20432, + "monmouth": 20433, + "##lles": 20434, + "nutrients": 20435, + "davey": 20436, + "mesh": 20437, + "incentive": 20438, + "practised": 20439, + "ecosystems": 20440, + "kemp": 20441, + "subdued": 20442, + "overheard": 20443, + "##rya": 20444, + "bodily": 20445, + "maxim": 20446, + "##nius": 20447, + "apprenticeship": 20448, + "ursula": 20449, + "##fight": 20450, + "lodged": 20451, + "rug": 20452, + "silesian": 20453, + "unconstitutional": 20454, + "patel": 20455, + "inspected": 20456, + "coyote": 20457, + "unbeaten": 20458, + "##hak": 20459, + "34th": 20460, + "disruption": 20461, + "convict": 20462, + "parcel": 20463, + "##cl": 20464, + "##nham": 20465, + "collier": 20466, + "implicated": 20467, + "mallory": 20468, + "##iac": 20469, + "##lab": 20470, + "susannah": 20471, + "winkler": 20472, + "##rber": 20473, + "shia": 20474, + "phelps": 20475, + "sediments": 20476, + "graphical": 20477, + "robotic": 20478, + "##sner": 20479, + "adulthood": 20480, + "mart": 20481, + "smoked": 20482, + "##isto": 20483, + "kathryn": 20484, + "clarified": 20485, + "##aran": 20486, + "divides": 20487, + "convictions": 20488, + "oppression": 20489, + "pausing": 20490, + "burying": 20491, + "##mt": 20492, + "federico": 20493, + "mathias": 20494, + "eileen": 20495, + "##tana": 20496, + "kite": 20497, + "hunched": 20498, + "##acies": 20499, + "189": 20500, + "##atz": 20501, + "disadvantage": 20502, + "liza": 20503, + "kinetic": 20504, + "greedy": 20505, + "paradox": 20506, + "yokohama": 20507, + "dowager": 20508, + "trunks": 20509, + "ventured": 20510, + "##gement": 20511, + "gupta": 20512, + "vilnius": 20513, + "olaf": 20514, + "##thest": 20515, + "crimean": 20516, + "hopper": 20517, + "##ej": 20518, + "progressively": 20519, + "arturo": 20520, + "mouthed": 20521, + "arrondissement": 20522, + "##fusion": 20523, + "rubin": 20524, + "simulcast": 20525, + "oceania": 20526, + "##orum": 20527, + "##stra": 20528, + "##rred": 20529, + "busiest": 20530, + "intensely": 20531, + "navigator": 20532, + "cary": 20533, + "##vine": 20534, + "##hini": 20535, + "##bies": 20536, + "fife": 20537, + "rowe": 20538, + "rowland": 20539, + "posing": 20540, + "insurgents": 20541, + "shafts": 20542, + "lawsuits": 20543, + "activate": 20544, + "conor": 20545, + "inward": 20546, + "culturally": 20547, + "garlic": 20548, + "265": 20549, + "##eering": 20550, + "eclectic": 20551, + "##hui": 20552, + "##kee": 20553, + "##nl": 20554, + "furrowed": 20555, + "vargas": 20556, + "meteorological": 20557, + "rendezvous": 20558, + "##aus": 20559, + "culinary": 20560, + "commencement": 20561, + "##dition": 20562, + "quota": 20563, + "##notes": 20564, + "mommy": 20565, + "salaries": 20566, + "overlapping": 20567, + "mule": 20568, + "##iology": 20569, + "##mology": 20570, + "sums": 20571, + "wentworth": 20572, + "##isk": 20573, + "##zione": 20574, + "mainline": 20575, + "subgroup": 20576, + "##illy": 20577, + "hack": 20578, + "plaintiff": 20579, + "verdi": 20580, + "bulb": 20581, + "differentiation": 20582, + "engagements": 20583, + "multinational": 20584, + "supplemented": 20585, + "bertrand": 20586, + "caller": 20587, + "regis": 20588, + "##naire": 20589, + "##sler": 20590, + "##arts": 20591, + "##imated": 20592, + "blossom": 20593, + "propagation": 20594, + "kilometer": 20595, + "viaduct": 20596, + "vineyards": 20597, + "##uate": 20598, + "beckett": 20599, + "optimization": 20600, + "golfer": 20601, + "songwriters": 20602, + "seminal": 20603, + "semitic": 20604, + "thud": 20605, + "volatile": 20606, + "evolving": 20607, + "ridley": 20608, + "##wley": 20609, + "trivial": 20610, + "distributions": 20611, + "scandinavia": 20612, + "jiang": 20613, + "##ject": 20614, + "wrestled": 20615, + "insistence": 20616, + "##dio": 20617, + "emphasizes": 20618, + "napkin": 20619, + "##ods": 20620, + "adjunct": 20621, + "rhyme": 20622, + "##ricted": 20623, + "##eti": 20624, + "hopeless": 20625, + "surrounds": 20626, + "tremble": 20627, + "32nd": 20628, + "smoky": 20629, + "##ntly": 20630, + "oils": 20631, + "medicinal": 20632, + "padded": 20633, + "steer": 20634, + "wilkes": 20635, + "219": 20636, + "255": 20637, + "concessions": 20638, + "hue": 20639, + "uniquely": 20640, + "blinded": 20641, + "landon": 20642, + "yahoo": 20643, + "##lane": 20644, + "hendrix": 20645, + "commemorating": 20646, + "dex": 20647, + "specify": 20648, + "chicks": 20649, + "##ggio": 20650, + "intercity": 20651, + "1400": 20652, + "morley": 20653, + "##torm": 20654, + "highlighting": 20655, + "##oting": 20656, + "pang": 20657, + "oblique": 20658, + "stalled": 20659, + "##liner": 20660, + "flirting": 20661, + "newborn": 20662, + "1769": 20663, + "bishopric": 20664, + "shaved": 20665, + "232": 20666, + "currie": 20667, + "##ush": 20668, + "dharma": 20669, + "spartan": 20670, + "##ooped": 20671, + "favorites": 20672, + "smug": 20673, + "novella": 20674, + "sirens": 20675, + "abusive": 20676, + "creations": 20677, + "espana": 20678, + "##lage": 20679, + "paradigm": 20680, + "semiconductor": 20681, + "sheen": 20682, + "##rdo": 20683, + "##yen": 20684, + "##zak": 20685, + "nrl": 20686, + "renew": 20687, + "##pose": 20688, + "##tur": 20689, + "adjutant": 20690, + "marches": 20691, + "norma": 20692, + "##enity": 20693, + "ineffective": 20694, + "weimar": 20695, + "grunt": 20696, + "##gat": 20697, + "lordship": 20698, + "plotting": 20699, + "expenditure": 20700, + "infringement": 20701, + "lbs": 20702, + "refrain": 20703, + "av": 20704, + "mimi": 20705, + "mistakenly": 20706, + "postmaster": 20707, + "1771": 20708, + "##bara": 20709, + "ras": 20710, + "motorsports": 20711, + "tito": 20712, + "199": 20713, + "subjective": 20714, + "##zza": 20715, + "bully": 20716, + "stew": 20717, + "##kaya": 20718, + "prescott": 20719, + "1a": 20720, + "##raphic": 20721, + "##zam": 20722, + "bids": 20723, + "styling": 20724, + "paranormal": 20725, + "reeve": 20726, + "sneaking": 20727, + "exploding": 20728, + "katz": 20729, + "akbar": 20730, + "migrant": 20731, + "syllables": 20732, + "indefinitely": 20733, + "##ogical": 20734, + "destroys": 20735, + "replaces": 20736, + "applause": 20737, + "##phine": 20738, + "pest": 20739, + "##fide": 20740, + "218": 20741, + "articulated": 20742, + "bertie": 20743, + "##thing": 20744, + "##cars": 20745, + "##ptic": 20746, + "courtroom": 20747, + "crowley": 20748, + "aesthetics": 20749, + "cummings": 20750, + "tehsil": 20751, + "hormones": 20752, + "titanic": 20753, + "dangerously": 20754, + "##ibe": 20755, + "stadion": 20756, + "jaenelle": 20757, + "auguste": 20758, + "ciudad": 20759, + "##chu": 20760, + "mysore": 20761, + "partisans": 20762, + "##sio": 20763, + "lucan": 20764, + "philipp": 20765, + "##aly": 20766, + "debating": 20767, + "henley": 20768, + "interiors": 20769, + "##rano": 20770, + "##tious": 20771, + "homecoming": 20772, + "beyonce": 20773, + "usher": 20774, + "henrietta": 20775, + "prepares": 20776, + "weeds": 20777, + "##oman": 20778, + "ely": 20779, + "plucked": 20780, + "##pire": 20781, + "##dable": 20782, + "luxurious": 20783, + "##aq": 20784, + "artifact": 20785, + "password": 20786, + "pasture": 20787, + "juno": 20788, + "maddy": 20789, + "minsk": 20790, + "##dder": 20791, + "##ologies": 20792, + "##rone": 20793, + "assessments": 20794, + "martian": 20795, + "royalist": 20796, + "1765": 20797, + "examines": 20798, + "##mani": 20799, + "##rge": 20800, + "nino": 20801, + "223": 20802, + "parry": 20803, + "scooped": 20804, + "relativity": 20805, + "##eli": 20806, + "##uting": 20807, + "##cao": 20808, + "congregational": 20809, + "noisy": 20810, + "traverse": 20811, + "##agawa": 20812, + "strikeouts": 20813, + "nickelodeon": 20814, + "obituary": 20815, + "transylvania": 20816, + "binds": 20817, + "depictions": 20818, + "polk": 20819, + "trolley": 20820, + "##yed": 20821, + "##lard": 20822, + "breeders": 20823, + "##under": 20824, + "dryly": 20825, + "hokkaido": 20826, + "1762": 20827, + "strengths": 20828, + "stacks": 20829, + "bonaparte": 20830, + "connectivity": 20831, + "neared": 20832, + "prostitutes": 20833, + "stamped": 20834, + "anaheim": 20835, + "gutierrez": 20836, + "sinai": 20837, + "##zzling": 20838, + "bram": 20839, + "fresno": 20840, + "madhya": 20841, + "##86": 20842, + "proton": 20843, + "##lena": 20844, + "##llum": 20845, + "##phon": 20846, + "reelected": 20847, + "wanda": 20848, + "##anus": 20849, + "##lb": 20850, + "ample": 20851, + "distinguishing": 20852, + "##yler": 20853, + "grasping": 20854, + "sermons": 20855, + "tomato": 20856, + "bland": 20857, + "stimulation": 20858, + "avenues": 20859, + "##eux": 20860, + "spreads": 20861, + "scarlett": 20862, + "fern": 20863, + "pentagon": 20864, + "assert": 20865, + "baird": 20866, + "chesapeake": 20867, + "ir": 20868, + "calmed": 20869, + "distortion": 20870, + "fatalities": 20871, + "##olis": 20872, + "correctional": 20873, + "pricing": 20874, + "##astic": 20875, + "##gina": 20876, + "prom": 20877, + "dammit": 20878, + "ying": 20879, + "collaborate": 20880, + "##chia": 20881, + "welterweight": 20882, + "33rd": 20883, + "pointer": 20884, + "substitution": 20885, + "bonded": 20886, + "umpire": 20887, + "communicating": 20888, + "multitude": 20889, + "paddle": 20890, + "##obe": 20891, + "federally": 20892, + "intimacy": 20893, + "##insky": 20894, + "betray": 20895, + "ssr": 20896, + "##lett": 20897, + "##lean": 20898, + "##lves": 20899, + "##therapy": 20900, + "airbus": 20901, + "##tery": 20902, + "functioned": 20903, + "ud": 20904, + "bearer": 20905, + "biomedical": 20906, + "netflix": 20907, + "##hire": 20908, + "##nca": 20909, + "condom": 20910, + "brink": 20911, + "ik": 20912, + "##nical": 20913, + "macy": 20914, + "##bet": 20915, + "flap": 20916, + "gma": 20917, + "experimented": 20918, + "jelly": 20919, + "lavender": 20920, + "##icles": 20921, + "##ulia": 20922, + "munro": 20923, + "##mian": 20924, + "##tial": 20925, + "rye": 20926, + "##rle": 20927, + "60th": 20928, + "gigs": 20929, + "hottest": 20930, + "rotated": 20931, + "predictions": 20932, + "fuji": 20933, + "bu": 20934, + "##erence": 20935, + "##omi": 20936, + "barangay": 20937, + "##fulness": 20938, + "##sas": 20939, + "clocks": 20940, + "##rwood": 20941, + "##liness": 20942, + "cereal": 20943, + "roe": 20944, + "wight": 20945, + "decker": 20946, + "uttered": 20947, + "babu": 20948, + "onion": 20949, + "xml": 20950, + "forcibly": 20951, + "##df": 20952, + "petra": 20953, + "sarcasm": 20954, + "hartley": 20955, + "peeled": 20956, + "storytelling": 20957, + "##42": 20958, + "##xley": 20959, + "##ysis": 20960, + "##ffa": 20961, + "fibre": 20962, + "kiel": 20963, + "auditor": 20964, + "fig": 20965, + "harald": 20966, + "greenville": 20967, + "##berries": 20968, + "geographically": 20969, + "nell": 20970, + "quartz": 20971, + "##athic": 20972, + "cemeteries": 20973, + "##lr": 20974, + "crossings": 20975, + "nah": 20976, + "holloway": 20977, + "reptiles": 20978, + "chun": 20979, + "sichuan": 20980, + "snowy": 20981, + "660": 20982, + "corrections": 20983, + "##ivo": 20984, + "zheng": 20985, + "ambassadors": 20986, + "blacksmith": 20987, + "fielded": 20988, + "fluids": 20989, + "hardcover": 20990, + "turnover": 20991, + "medications": 20992, + "melvin": 20993, + "academies": 20994, + "##erton": 20995, + "ro": 20996, + "roach": 20997, + "absorbing": 20998, + "spaniards": 20999, + "colton": 21000, + "##founded": 21001, + "outsider": 21002, + "espionage": 21003, + "kelsey": 21004, + "245": 21005, + "edible": 21006, + "##ulf": 21007, + "dora": 21008, + "establishes": 21009, + "##sham": 21010, + "##tries": 21011, + "contracting": 21012, + "##tania": 21013, + "cinematic": 21014, + "costello": 21015, + "nesting": 21016, + "##uron": 21017, + "connolly": 21018, + "duff": 21019, + "##nology": 21020, + "mma": 21021, + "##mata": 21022, + "fergus": 21023, + "sexes": 21024, + "gi": 21025, + "optics": 21026, + "spectator": 21027, + "woodstock": 21028, + "banning": 21029, + "##hee": 21030, + "##fle": 21031, + "differentiate": 21032, + "outfielder": 21033, + "refinery": 21034, + "226": 21035, + "312": 21036, + "gerhard": 21037, + "horde": 21038, + "lair": 21039, + "drastically": 21040, + "##udi": 21041, + "landfall": 21042, + "##cheng": 21043, + "motorsport": 21044, + "odi": 21045, + "##achi": 21046, + "predominant": 21047, + "quay": 21048, + "skins": 21049, + "##ental": 21050, + "edna": 21051, + "harshly": 21052, + "complementary": 21053, + "murdering": 21054, + "##aves": 21055, + "wreckage": 21056, + "##90": 21057, + "ono": 21058, + "outstretched": 21059, + "lennox": 21060, + "munitions": 21061, + "galen": 21062, + "reconcile": 21063, + "470": 21064, + "scalp": 21065, + "bicycles": 21066, + "gillespie": 21067, + "questionable": 21068, + "rosenberg": 21069, + "guillermo": 21070, + "hostel": 21071, + "jarvis": 21072, + "kabul": 21073, + "volvo": 21074, + "opium": 21075, + "yd": 21076, + "##twined": 21077, + "abuses": 21078, + "decca": 21079, + "outpost": 21080, + "##cino": 21081, + "sensible": 21082, + "neutrality": 21083, + "##64": 21084, + "ponce": 21085, + "anchorage": 21086, + "atkins": 21087, + "turrets": 21088, + "inadvertently": 21089, + "disagree": 21090, + "libre": 21091, + "vodka": 21092, + "reassuring": 21093, + "weighs": 21094, + "##yal": 21095, + "glide": 21096, + "jumper": 21097, + "ceilings": 21098, + "repertory": 21099, + "outs": 21100, + "stain": 21101, + "##bial": 21102, + "envy": 21103, + "##ucible": 21104, + "smashing": 21105, + "heightened": 21106, + "policing": 21107, + "hyun": 21108, + "mixes": 21109, + "lai": 21110, + "prima": 21111, + "##ples": 21112, + "celeste": 21113, + "##bina": 21114, + "lucrative": 21115, + "intervened": 21116, + "kc": 21117, + "manually": 21118, + "##rned": 21119, + "stature": 21120, + "staffed": 21121, + "bun": 21122, + "bastards": 21123, + "nairobi": 21124, + "priced": 21125, + "##auer": 21126, + "thatcher": 21127, + "##kia": 21128, + "tripped": 21129, + "comune": 21130, + "##ogan": 21131, + "##pled": 21132, + "brasil": 21133, + "incentives": 21134, + "emanuel": 21135, + "hereford": 21136, + "musica": 21137, + "##kim": 21138, + "benedictine": 21139, + "biennale": 21140, + "##lani": 21141, + "eureka": 21142, + "gardiner": 21143, + "rb": 21144, + "knocks": 21145, + "sha": 21146, + "##ael": 21147, + "##elled": 21148, + "##onate": 21149, + "efficacy": 21150, + "ventura": 21151, + "masonic": 21152, + "sanford": 21153, + "maize": 21154, + "leverage": 21155, + "##feit": 21156, + "capacities": 21157, + "santana": 21158, + "##aur": 21159, + "novelty": 21160, + "vanilla": 21161, + "##cter": 21162, + "##tour": 21163, + "benin": 21164, + "##oir": 21165, + "##rain": 21166, + "neptune": 21167, + "drafting": 21168, + "tallinn": 21169, + "##cable": 21170, + "humiliation": 21171, + "##boarding": 21172, + "schleswig": 21173, + "fabian": 21174, + "bernardo": 21175, + "liturgy": 21176, + "spectacle": 21177, + "sweeney": 21178, + "pont": 21179, + "routledge": 21180, + "##tment": 21181, + "cosmos": 21182, + "ut": 21183, + "hilt": 21184, + "sleek": 21185, + "universally": 21186, + "##eville": 21187, + "##gawa": 21188, + "typed": 21189, + "##dry": 21190, + "favors": 21191, + "allegheny": 21192, + "glaciers": 21193, + "##rly": 21194, + "recalling": 21195, + "aziz": 21196, + "##log": 21197, + "parasite": 21198, + "requiem": 21199, + "auf": 21200, + "##berto": 21201, + "##llin": 21202, + "illumination": 21203, + "##breaker": 21204, + "##issa": 21205, + "festivities": 21206, + "bows": 21207, + "govern": 21208, + "vibe": 21209, + "vp": 21210, + "333": 21211, + "sprawled": 21212, + "larson": 21213, + "pilgrim": 21214, + "bwf": 21215, + "leaping": 21216, + "##rts": 21217, + "##ssel": 21218, + "alexei": 21219, + "greyhound": 21220, + "hoarse": 21221, + "##dler": 21222, + "##oration": 21223, + "seneca": 21224, + "##cule": 21225, + "gaping": 21226, + "##ulously": 21227, + "##pura": 21228, + "cinnamon": 21229, + "##gens": 21230, + "##rricular": 21231, + "craven": 21232, + "fantasies": 21233, + "houghton": 21234, + "engined": 21235, + "reigned": 21236, + "dictator": 21237, + "supervising": 21238, + "##oris": 21239, + "bogota": 21240, + "commentaries": 21241, + "unnatural": 21242, + "fingernails": 21243, + "spirituality": 21244, + "tighten": 21245, + "##tm": 21246, + "canadiens": 21247, + "protesting": 21248, + "intentional": 21249, + "cheers": 21250, + "sparta": 21251, + "##ytic": 21252, + "##iere": 21253, + "##zine": 21254, + "widen": 21255, + "belgarath": 21256, + "controllers": 21257, + "dodd": 21258, + "iaaf": 21259, + "navarre": 21260, + "##ication": 21261, + "defect": 21262, + "squire": 21263, + "steiner": 21264, + "whisky": 21265, + "##mins": 21266, + "560": 21267, + "inevitably": 21268, + "tome": 21269, + "##gold": 21270, + "chew": 21271, + "##uid": 21272, + "##lid": 21273, + "elastic": 21274, + "##aby": 21275, + "streaked": 21276, + "alliances": 21277, + "jailed": 21278, + "regal": 21279, + "##ined": 21280, + "##phy": 21281, + "czechoslovak": 21282, + "narration": 21283, + "absently": 21284, + "##uld": 21285, + "bluegrass": 21286, + "guangdong": 21287, + "quran": 21288, + "criticizing": 21289, + "hose": 21290, + "hari": 21291, + "##liest": 21292, + "##owa": 21293, + "skier": 21294, + "streaks": 21295, + "deploy": 21296, + "##lom": 21297, + "raft": 21298, + "bose": 21299, + "dialed": 21300, + "huff": 21301, + "##eira": 21302, + "haifa": 21303, + "simplest": 21304, + "bursting": 21305, + "endings": 21306, + "ib": 21307, + "sultanate": 21308, + "##titled": 21309, + "franks": 21310, + "whitman": 21311, + "ensures": 21312, + "sven": 21313, + "##ggs": 21314, + "collaborators": 21315, + "forster": 21316, + "organising": 21317, + "ui": 21318, + "banished": 21319, + "napier": 21320, + "injustice": 21321, + "teller": 21322, + "layered": 21323, + "thump": 21324, + "##otti": 21325, + "roc": 21326, + "battleships": 21327, + "evidenced": 21328, + "fugitive": 21329, + "sadie": 21330, + "robotics": 21331, + "##roud": 21332, + "equatorial": 21333, + "geologist": 21334, + "##iza": 21335, + "yielding": 21336, + "##bron": 21337, + "##sr": 21338, + "internationale": 21339, + "mecca": 21340, + "##diment": 21341, + "sbs": 21342, + "skyline": 21343, + "toad": 21344, + "uploaded": 21345, + "reflective": 21346, + "undrafted": 21347, + "lal": 21348, + "leafs": 21349, + "bayern": 21350, + "##dai": 21351, + "lakshmi": 21352, + "shortlisted": 21353, + "##stick": 21354, + "##wicz": 21355, + "camouflage": 21356, + "donate": 21357, + "af": 21358, + "christi": 21359, + "lau": 21360, + "##acio": 21361, + "disclosed": 21362, + "nemesis": 21363, + "1761": 21364, + "assemble": 21365, + "straining": 21366, + "northamptonshire": 21367, + "tal": 21368, + "##asi": 21369, + "bernardino": 21370, + "premature": 21371, + "heidi": 21372, + "42nd": 21373, + "coefficients": 21374, + "galactic": 21375, + "reproduce": 21376, + "buzzed": 21377, + "sensations": 21378, + "zionist": 21379, + "monsieur": 21380, + "myrtle": 21381, + "##eme": 21382, + "archery": 21383, + "strangled": 21384, + "musically": 21385, + "viewpoint": 21386, + "antiquities": 21387, + "bei": 21388, + "trailers": 21389, + "seahawks": 21390, + "cured": 21391, + "pee": 21392, + "preferring": 21393, + "tasmanian": 21394, + "lange": 21395, + "sul": 21396, + "##mail": 21397, + "##working": 21398, + "colder": 21399, + "overland": 21400, + "lucivar": 21401, + "massey": 21402, + "gatherings": 21403, + "haitian": 21404, + "##smith": 21405, + "disapproval": 21406, + "flaws": 21407, + "##cco": 21408, + "##enbach": 21409, + "1766": 21410, + "npr": 21411, + "##icular": 21412, + "boroughs": 21413, + "creole": 21414, + "forums": 21415, + "techno": 21416, + "1755": 21417, + "dent": 21418, + "abdominal": 21419, + "streetcar": 21420, + "##eson": 21421, + "##stream": 21422, + "procurement": 21423, + "gemini": 21424, + "predictable": 21425, + "##tya": 21426, + "acheron": 21427, + "christoph": 21428, + "feeder": 21429, + "fronts": 21430, + "vendor": 21431, + "bernhard": 21432, + "jammu": 21433, + "tumors": 21434, + "slang": 21435, + "##uber": 21436, + "goaltender": 21437, + "twists": 21438, + "curving": 21439, + "manson": 21440, + "vuelta": 21441, + "mer": 21442, + "peanut": 21443, + "confessions": 21444, + "pouch": 21445, + "unpredictable": 21446, + "allowance": 21447, + "theodor": 21448, + "vascular": 21449, + "##factory": 21450, + "bala": 21451, + "authenticity": 21452, + "metabolic": 21453, + "coughing": 21454, + "nanjing": 21455, + "##cea": 21456, + "pembroke": 21457, + "##bard": 21458, + "splendid": 21459, + "36th": 21460, + "ff": 21461, + "hourly": 21462, + "##ahu": 21463, + "elmer": 21464, + "handel": 21465, + "##ivate": 21466, + "awarding": 21467, + "thrusting": 21468, + "dl": 21469, + "experimentation": 21470, + "##hesion": 21471, + "##46": 21472, + "caressed": 21473, + "entertained": 21474, + "steak": 21475, + "##rangle": 21476, + "biologist": 21477, + "orphans": 21478, + "baroness": 21479, + "oyster": 21480, + "stepfather": 21481, + "##dridge": 21482, + "mirage": 21483, + "reefs": 21484, + "speeding": 21485, + "##31": 21486, + "barons": 21487, + "1764": 21488, + "227": 21489, + "inhabit": 21490, + "preached": 21491, + "repealed": 21492, + "##tral": 21493, + "honoring": 21494, + "boogie": 21495, + "captives": 21496, + "administer": 21497, + "johanna": 21498, + "##imate": 21499, + "gel": 21500, + "suspiciously": 21501, + "1767": 21502, + "sobs": 21503, + "##dington": 21504, + "backbone": 21505, + "hayward": 21506, + "garry": 21507, + "##folding": 21508, + "##nesia": 21509, + "maxi": 21510, + "##oof": 21511, + "##ppe": 21512, + "ellison": 21513, + "galileo": 21514, + "##stand": 21515, + "crimea": 21516, + "frenzy": 21517, + "amour": 21518, + "bumper": 21519, + "matrices": 21520, + "natalia": 21521, + "baking": 21522, + "garth": 21523, + "palestinians": 21524, + "##grove": 21525, + "smack": 21526, + "conveyed": 21527, + "ensembles": 21528, + "gardening": 21529, + "##manship": 21530, + "##rup": 21531, + "##stituting": 21532, + "1640": 21533, + "harvesting": 21534, + "topography": 21535, + "jing": 21536, + "shifters": 21537, + "dormitory": 21538, + "##carriage": 21539, + "##lston": 21540, + "ist": 21541, + "skulls": 21542, + "##stadt": 21543, + "dolores": 21544, + "jewellery": 21545, + "sarawak": 21546, + "##wai": 21547, + "##zier": 21548, + "fences": 21549, + "christy": 21550, + "confinement": 21551, + "tumbling": 21552, + "credibility": 21553, + "fir": 21554, + "stench": 21555, + "##bria": 21556, + "##plication": 21557, + "##nged": 21558, + "##sam": 21559, + "virtues": 21560, + "##belt": 21561, + "marjorie": 21562, + "pba": 21563, + "##eem": 21564, + "##made": 21565, + "celebrates": 21566, + "schooner": 21567, + "agitated": 21568, + "barley": 21569, + "fulfilling": 21570, + "anthropologist": 21571, + "##pro": 21572, + "restrict": 21573, + "novi": 21574, + "regulating": 21575, + "##nent": 21576, + "padres": 21577, + "##rani": 21578, + "##hesive": 21579, + "loyola": 21580, + "tabitha": 21581, + "milky": 21582, + "olson": 21583, + "proprietor": 21584, + "crambidae": 21585, + "guarantees": 21586, + "intercollegiate": 21587, + "ljubljana": 21588, + "hilda": 21589, + "##sko": 21590, + "ignorant": 21591, + "hooded": 21592, + "##lts": 21593, + "sardinia": 21594, + "##lidae": 21595, + "##vation": 21596, + "frontman": 21597, + "privileged": 21598, + "witchcraft": 21599, + "##gp": 21600, + "jammed": 21601, + "laude": 21602, + "poking": 21603, + "##than": 21604, + "bracket": 21605, + "amazement": 21606, + "yunnan": 21607, + "##erus": 21608, + "maharaja": 21609, + "linnaeus": 21610, + "264": 21611, + "commissioning": 21612, + "milano": 21613, + "peacefully": 21614, + "##logies": 21615, + "akira": 21616, + "rani": 21617, + "regulator": 21618, + "##36": 21619, + "grasses": 21620, + "##rance": 21621, + "luzon": 21622, + "crows": 21623, + "compiler": 21624, + "gretchen": 21625, + "seaman": 21626, + "edouard": 21627, + "tab": 21628, + "buccaneers": 21629, + "ellington": 21630, + "hamlets": 21631, + "whig": 21632, + "socialists": 21633, + "##anto": 21634, + "directorial": 21635, + "easton": 21636, + "mythological": 21637, + "##kr": 21638, + "##vary": 21639, + "rhineland": 21640, + "semantic": 21641, + "taut": 21642, + "dune": 21643, + "inventions": 21644, + "succeeds": 21645, + "##iter": 21646, + "replication": 21647, + "branched": 21648, + "##pired": 21649, + "jul": 21650, + "prosecuted": 21651, + "kangaroo": 21652, + "penetrated": 21653, + "##avian": 21654, + "middlesbrough": 21655, + "doses": 21656, + "bleak": 21657, + "madam": 21658, + "predatory": 21659, + "relentless": 21660, + "##vili": 21661, + "reluctance": 21662, + "##vir": 21663, + "hailey": 21664, + "crore": 21665, + "silvery": 21666, + "1759": 21667, + "monstrous": 21668, + "swimmers": 21669, + "transmissions": 21670, + "hawthorn": 21671, + "informing": 21672, + "##eral": 21673, + "toilets": 21674, + "caracas": 21675, + "crouch": 21676, + "kb": 21677, + "##sett": 21678, + "295": 21679, + "cartel": 21680, + "hadley": 21681, + "##aling": 21682, + "alexia": 21683, + "yvonne": 21684, + "##biology": 21685, + "cinderella": 21686, + "eton": 21687, + "superb": 21688, + "blizzard": 21689, + "stabbing": 21690, + "industrialist": 21691, + "maximus": 21692, + "##gm": 21693, + "##orus": 21694, + "groves": 21695, + "maud": 21696, + "clade": 21697, + "oversized": 21698, + "comedic": 21699, + "##bella": 21700, + "rosen": 21701, + "nomadic": 21702, + "fulham": 21703, + "montane": 21704, + "beverages": 21705, + "galaxies": 21706, + "redundant": 21707, + "swarm": 21708, + "##rot": 21709, + "##folia": 21710, + "##llis": 21711, + "buckinghamshire": 21712, + "fen": 21713, + "bearings": 21714, + "bahadur": 21715, + "##rom": 21716, + "gilles": 21717, + "phased": 21718, + "dynamite": 21719, + "faber": 21720, + "benoit": 21721, + "vip": 21722, + "##ount": 21723, + "##wd": 21724, + "booking": 21725, + "fractured": 21726, + "tailored": 21727, + "anya": 21728, + "spices": 21729, + "westwood": 21730, + "cairns": 21731, + "auditions": 21732, + "inflammation": 21733, + "steamed": 21734, + "##rocity": 21735, + "##acion": 21736, + "##urne": 21737, + "skyla": 21738, + "thereof": 21739, + "watford": 21740, + "torment": 21741, + "archdeacon": 21742, + "transforms": 21743, + "lulu": 21744, + "demeanor": 21745, + "fucked": 21746, + "serge": 21747, + "##sor": 21748, + "mckenna": 21749, + "minas": 21750, + "entertainer": 21751, + "##icide": 21752, + "caress": 21753, + "originate": 21754, + "residue": 21755, + "##sty": 21756, + "1740": 21757, + "##ilised": 21758, + "##org": 21759, + "beech": 21760, + "##wana": 21761, + "subsidies": 21762, + "##ghton": 21763, + "emptied": 21764, + "gladstone": 21765, + "ru": 21766, + "firefighters": 21767, + "voodoo": 21768, + "##rcle": 21769, + "het": 21770, + "nightingale": 21771, + "tamara": 21772, + "edmond": 21773, + "ingredient": 21774, + "weaknesses": 21775, + "silhouette": 21776, + "285": 21777, + "compatibility": 21778, + "withdrawing": 21779, + "hampson": 21780, + "##mona": 21781, + "anguish": 21782, + "giggling": 21783, + "##mber": 21784, + "bookstore": 21785, + "##jiang": 21786, + "southernmost": 21787, + "tilting": 21788, + "##vance": 21789, + "bai": 21790, + "economical": 21791, + "rf": 21792, + "briefcase": 21793, + "dreadful": 21794, + "hinted": 21795, + "projections": 21796, + "shattering": 21797, + "totaling": 21798, + "##rogate": 21799, + "analogue": 21800, + "indicted": 21801, + "periodical": 21802, + "fullback": 21803, + "##dman": 21804, + "haynes": 21805, + "##tenberg": 21806, + "##ffs": 21807, + "##ishment": 21808, + "1745": 21809, + "thirst": 21810, + "stumble": 21811, + "penang": 21812, + "vigorous": 21813, + "##ddling": 21814, + "##kor": 21815, + "##lium": 21816, + "octave": 21817, + "##ove": 21818, + "##enstein": 21819, + "##inen": 21820, + "##ones": 21821, + "siberian": 21822, + "##uti": 21823, + "cbn": 21824, + "repeal": 21825, + "swaying": 21826, + "##vington": 21827, + "khalid": 21828, + "tanaka": 21829, + "unicorn": 21830, + "otago": 21831, + "plastered": 21832, + "lobe": 21833, + "riddle": 21834, + "##rella": 21835, + "perch": 21836, + "##ishing": 21837, + "croydon": 21838, + "filtered": 21839, + "graeme": 21840, + "tripoli": 21841, + "##ossa": 21842, + "crocodile": 21843, + "##chers": 21844, + "sufi": 21845, + "mined": 21846, + "##tung": 21847, + "inferno": 21848, + "lsu": 21849, + "##phi": 21850, + "swelled": 21851, + "utilizes": 21852, + "£2": 21853, + "cale": 21854, + "periodicals": 21855, + "styx": 21856, + "hike": 21857, + "informally": 21858, + "coop": 21859, + "lund": 21860, + "##tidae": 21861, + "ala": 21862, + "hen": 21863, + "qui": 21864, + "transformations": 21865, + "disposed": 21866, + "sheath": 21867, + "chickens": 21868, + "##cade": 21869, + "fitzroy": 21870, + "sas": 21871, + "silesia": 21872, + "unacceptable": 21873, + "odisha": 21874, + "1650": 21875, + "sabrina": 21876, + "pe": 21877, + "spokane": 21878, + "ratios": 21879, + "athena": 21880, + "massage": 21881, + "shen": 21882, + "dilemma": 21883, + "##drum": 21884, + "##riz": 21885, + "##hul": 21886, + "corona": 21887, + "doubtful": 21888, + "niall": 21889, + "##pha": 21890, + "##bino": 21891, + "fines": 21892, + "cite": 21893, + "acknowledging": 21894, + "bangor": 21895, + "ballard": 21896, + "bathurst": 21897, + "##resh": 21898, + "huron": 21899, + "mustered": 21900, + "alzheimer": 21901, + "garments": 21902, + "kinase": 21903, + "tyre": 21904, + "warship": 21905, + "##cp": 21906, + "flashback": 21907, + "pulmonary": 21908, + "braun": 21909, + "cheat": 21910, + "kamal": 21911, + "cyclists": 21912, + "constructions": 21913, + "grenades": 21914, + "ndp": 21915, + "traveller": 21916, + "excuses": 21917, + "stomped": 21918, + "signalling": 21919, + "trimmed": 21920, + "futsal": 21921, + "mosques": 21922, + "relevance": 21923, + "##wine": 21924, + "wta": 21925, + "##23": 21926, + "##vah": 21927, + "##lter": 21928, + "hoc": 21929, + "##riding": 21930, + "optimistic": 21931, + "##´s": 21932, + "deco": 21933, + "sim": 21934, + "interacting": 21935, + "rejecting": 21936, + "moniker": 21937, + "waterways": 21938, + "##ieri": 21939, + "##oku": 21940, + "mayors": 21941, + "gdansk": 21942, + "outnumbered": 21943, + "pearls": 21944, + "##ended": 21945, + "##hampton": 21946, + "fairs": 21947, + "totals": 21948, + "dominating": 21949, + "262": 21950, + "notions": 21951, + "stairway": 21952, + "compiling": 21953, + "pursed": 21954, + "commodities": 21955, + "grease": 21956, + "yeast": 21957, + "##jong": 21958, + "carthage": 21959, + "griffiths": 21960, + "residual": 21961, + "amc": 21962, + "contraction": 21963, + "laird": 21964, + "sapphire": 21965, + "##marine": 21966, + "##ivated": 21967, + "amalgamation": 21968, + "dissolve": 21969, + "inclination": 21970, + "lyle": 21971, + "packaged": 21972, + "altitudes": 21973, + "suez": 21974, + "canons": 21975, + "graded": 21976, + "lurched": 21977, + "narrowing": 21978, + "boasts": 21979, + "guise": 21980, + "wed": 21981, + "enrico": 21982, + "##ovsky": 21983, + "rower": 21984, + "scarred": 21985, + "bree": 21986, + "cub": 21987, + "iberian": 21988, + "protagonists": 21989, + "bargaining": 21990, + "proposing": 21991, + "trainers": 21992, + "voyages": 21993, + "vans": 21994, + "fishes": 21995, + "##aea": 21996, + "##ivist": 21997, + "##verance": 21998, + "encryption": 21999, + "artworks": 22000, + "kazan": 22001, + "sabre": 22002, + "cleopatra": 22003, + "hepburn": 22004, + "rotting": 22005, + "supremacy": 22006, + "mecklenburg": 22007, + "##brate": 22008, + "burrows": 22009, + "hazards": 22010, + "outgoing": 22011, + "flair": 22012, + "organizes": 22013, + "##ctions": 22014, + "scorpion": 22015, + "##usions": 22016, + "boo": 22017, + "234": 22018, + "chevalier": 22019, + "dunedin": 22020, + "slapping": 22021, + "##34": 22022, + "ineligible": 22023, + "pensions": 22024, + "##38": 22025, + "##omic": 22026, + "manufactures": 22027, + "emails": 22028, + "bismarck": 22029, + "238": 22030, + "weakening": 22031, + "blackish": 22032, + "ding": 22033, + "mcgee": 22034, + "quo": 22035, + "##rling": 22036, + "northernmost": 22037, + "xx": 22038, + "manpower": 22039, + "greed": 22040, + "sampson": 22041, + "clicking": 22042, + "##ange": 22043, + "##horpe": 22044, + "##inations": 22045, + "##roving": 22046, + "torre": 22047, + "##eptive": 22048, + "##moral": 22049, + "symbolism": 22050, + "38th": 22051, + "asshole": 22052, + "meritorious": 22053, + "outfits": 22054, + "splashed": 22055, + "biographies": 22056, + "sprung": 22057, + "astros": 22058, + "##tale": 22059, + "302": 22060, + "737": 22061, + "filly": 22062, + "raoul": 22063, + "nw": 22064, + "tokugawa": 22065, + "linden": 22066, + "clubhouse": 22067, + "##apa": 22068, + "tracts": 22069, + "romano": 22070, + "##pio": 22071, + "putin": 22072, + "tags": 22073, + "##note": 22074, + "chained": 22075, + "dickson": 22076, + "gunshot": 22077, + "moe": 22078, + "gunn": 22079, + "rashid": 22080, + "##tails": 22081, + "zipper": 22082, + "##bas": 22083, + "##nea": 22084, + "contrasted": 22085, + "##ply": 22086, + "##udes": 22087, + "plum": 22088, + "pharaoh": 22089, + "##pile": 22090, + "aw": 22091, + "comedies": 22092, + "ingrid": 22093, + "sandwiches": 22094, + "subdivisions": 22095, + "1100": 22096, + "mariana": 22097, + "nokia": 22098, + "kamen": 22099, + "hz": 22100, + "delaney": 22101, + "veto": 22102, + "herring": 22103, + "##words": 22104, + "possessive": 22105, + "outlines": 22106, + "##roup": 22107, + "siemens": 22108, + "stairwell": 22109, + "rc": 22110, + "gallantry": 22111, + "messiah": 22112, + "palais": 22113, + "yells": 22114, + "233": 22115, + "zeppelin": 22116, + "##dm": 22117, + "bolivar": 22118, + "##cede": 22119, + "smackdown": 22120, + "mckinley": 22121, + "##mora": 22122, + "##yt": 22123, + "muted": 22124, + "geologic": 22125, + "finely": 22126, + "unitary": 22127, + "avatar": 22128, + "hamas": 22129, + "maynard": 22130, + "rees": 22131, + "bog": 22132, + "contrasting": 22133, + "##rut": 22134, + "liv": 22135, + "chico": 22136, + "disposition": 22137, + "pixel": 22138, + "##erate": 22139, + "becca": 22140, + "dmitry": 22141, + "yeshiva": 22142, + "narratives": 22143, + "##lva": 22144, + "##ulton": 22145, + "mercenary": 22146, + "sharpe": 22147, + "tempered": 22148, + "navigate": 22149, + "stealth": 22150, + "amassed": 22151, + "keynes": 22152, + "##lini": 22153, + "untouched": 22154, + "##rrie": 22155, + "havoc": 22156, + "lithium": 22157, + "##fighting": 22158, + "abyss": 22159, + "graf": 22160, + "southward": 22161, + "wolverine": 22162, + "balloons": 22163, + "implements": 22164, + "ngos": 22165, + "transitions": 22166, + "##icum": 22167, + "ambushed": 22168, + "concacaf": 22169, + "dormant": 22170, + "economists": 22171, + "##dim": 22172, + "costing": 22173, + "csi": 22174, + "rana": 22175, + "universite": 22176, + "boulders": 22177, + "verity": 22178, + "##llon": 22179, + "collin": 22180, + "mellon": 22181, + "misses": 22182, + "cypress": 22183, + "fluorescent": 22184, + "lifeless": 22185, + "spence": 22186, + "##ulla": 22187, + "crewe": 22188, + "shepard": 22189, + "pak": 22190, + "revelations": 22191, + "##م": 22192, + "jolly": 22193, + "gibbons": 22194, + "paw": 22195, + "##dro": 22196, + "##quel": 22197, + "freeing": 22198, + "##test": 22199, + "shack": 22200, + "fries": 22201, + "palatine": 22202, + "##51": 22203, + "##hiko": 22204, + "accompaniment": 22205, + "cruising": 22206, + "recycled": 22207, + "##aver": 22208, + "erwin": 22209, + "sorting": 22210, + "synthesizers": 22211, + "dyke": 22212, + "realities": 22213, + "sg": 22214, + "strides": 22215, + "enslaved": 22216, + "wetland": 22217, + "##ghan": 22218, + "competence": 22219, + "gunpowder": 22220, + "grassy": 22221, + "maroon": 22222, + "reactors": 22223, + "objection": 22224, + "##oms": 22225, + "carlson": 22226, + "gearbox": 22227, + "macintosh": 22228, + "radios": 22229, + "shelton": 22230, + "##sho": 22231, + "clergyman": 22232, + "prakash": 22233, + "254": 22234, + "mongols": 22235, + "trophies": 22236, + "oricon": 22237, + "228": 22238, + "stimuli": 22239, + "twenty20": 22240, + "cantonese": 22241, + "cortes": 22242, + "mirrored": 22243, + "##saurus": 22244, + "bhp": 22245, + "cristina": 22246, + "melancholy": 22247, + "##lating": 22248, + "enjoyable": 22249, + "nuevo": 22250, + "##wny": 22251, + "downfall": 22252, + "schumacher": 22253, + "##ind": 22254, + "banging": 22255, + "lausanne": 22256, + "rumbled": 22257, + "paramilitary": 22258, + "reflex": 22259, + "ax": 22260, + "amplitude": 22261, + "migratory": 22262, + "##gall": 22263, + "##ups": 22264, + "midi": 22265, + "barnard": 22266, + "lastly": 22267, + "sherry": 22268, + "##hp": 22269, + "##nall": 22270, + "keystone": 22271, + "##kra": 22272, + "carleton": 22273, + "slippery": 22274, + "##53": 22275, + "coloring": 22276, + "foe": 22277, + "socket": 22278, + "otter": 22279, + "##rgos": 22280, + "mats": 22281, + "##tose": 22282, + "consultants": 22283, + "bafta": 22284, + "bison": 22285, + "topping": 22286, + "##km": 22287, + "490": 22288, + "primal": 22289, + "abandonment": 22290, + "transplant": 22291, + "atoll": 22292, + "hideous": 22293, + "mort": 22294, + "pained": 22295, + "reproduced": 22296, + "tae": 22297, + "howling": 22298, + "##turn": 22299, + "unlawful": 22300, + "billionaire": 22301, + "hotter": 22302, + "poised": 22303, + "lansing": 22304, + "##chang": 22305, + "dinamo": 22306, + "retro": 22307, + "messing": 22308, + "nfc": 22309, + "domesday": 22310, + "##mina": 22311, + "blitz": 22312, + "timed": 22313, + "##athing": 22314, + "##kley": 22315, + "ascending": 22316, + "gesturing": 22317, + "##izations": 22318, + "signaled": 22319, + "tis": 22320, + "chinatown": 22321, + "mermaid": 22322, + "savanna": 22323, + "jameson": 22324, + "##aint": 22325, + "catalina": 22326, + "##pet": 22327, + "##hers": 22328, + "cochrane": 22329, + "cy": 22330, + "chatting": 22331, + "##kus": 22332, + "alerted": 22333, + "computation": 22334, + "mused": 22335, + "noelle": 22336, + "majestic": 22337, + "mohawk": 22338, + "campo": 22339, + "octagonal": 22340, + "##sant": 22341, + "##hend": 22342, + "241": 22343, + "aspiring": 22344, + "##mart": 22345, + "comprehend": 22346, + "iona": 22347, + "paralyzed": 22348, + "shimmering": 22349, + "swindon": 22350, + "rhone": 22351, + "##eley": 22352, + "reputed": 22353, + "configurations": 22354, + "pitchfork": 22355, + "agitation": 22356, + "francais": 22357, + "gillian": 22358, + "lipstick": 22359, + "##ilo": 22360, + "outsiders": 22361, + "pontifical": 22362, + "resisting": 22363, + "bitterness": 22364, + "sewer": 22365, + "rockies": 22366, + "##edd": 22367, + "##ucher": 22368, + "misleading": 22369, + "1756": 22370, + "exiting": 22371, + "galloway": 22372, + "##nging": 22373, + "risked": 22374, + "##heart": 22375, + "246": 22376, + "commemoration": 22377, + "schultz": 22378, + "##rka": 22379, + "integrating": 22380, + "##rsa": 22381, + "poses": 22382, + "shrieked": 22383, + "##weiler": 22384, + "guineas": 22385, + "gladys": 22386, + "jerking": 22387, + "owls": 22388, + "goldsmith": 22389, + "nightly": 22390, + "penetrating": 22391, + "##unced": 22392, + "lia": 22393, + "##33": 22394, + "ignited": 22395, + "betsy": 22396, + "##aring": 22397, + "##thorpe": 22398, + "follower": 22399, + "vigorously": 22400, + "##rave": 22401, + "coded": 22402, + "kiran": 22403, + "knit": 22404, + "zoology": 22405, + "tbilisi": 22406, + "##28": 22407, + "##bered": 22408, + "repository": 22409, + "govt": 22410, + "deciduous": 22411, + "dino": 22412, + "growling": 22413, + "##bba": 22414, + "enhancement": 22415, + "unleashed": 22416, + "chanting": 22417, + "pussy": 22418, + "biochemistry": 22419, + "##eric": 22420, + "kettle": 22421, + "repression": 22422, + "toxicity": 22423, + "nrhp": 22424, + "##arth": 22425, + "##kko": 22426, + "##bush": 22427, + "ernesto": 22428, + "commended": 22429, + "outspoken": 22430, + "242": 22431, + "mca": 22432, + "parchment": 22433, + "sms": 22434, + "kristen": 22435, + "##aton": 22436, + "bisexual": 22437, + "raked": 22438, + "glamour": 22439, + "navajo": 22440, + "a2": 22441, + "conditioned": 22442, + "showcased": 22443, + "##hma": 22444, + "spacious": 22445, + "youthful": 22446, + "##esa": 22447, + "usl": 22448, + "appliances": 22449, + "junta": 22450, + "brest": 22451, + "layne": 22452, + "conglomerate": 22453, + "enchanted": 22454, + "chao": 22455, + "loosened": 22456, + "picasso": 22457, + "circulating": 22458, + "inspect": 22459, + "montevideo": 22460, + "##centric": 22461, + "##kti": 22462, + "piazza": 22463, + "spurred": 22464, + "##aith": 22465, + "bari": 22466, + "freedoms": 22467, + "poultry": 22468, + "stamford": 22469, + "lieu": 22470, + "##ect": 22471, + "indigo": 22472, + "sarcastic": 22473, + "bahia": 22474, + "stump": 22475, + "attach": 22476, + "dvds": 22477, + "frankenstein": 22478, + "lille": 22479, + "approx": 22480, + "scriptures": 22481, + "pollen": 22482, + "##script": 22483, + "nmi": 22484, + "overseen": 22485, + "##ivism": 22486, + "tides": 22487, + "proponent": 22488, + "newmarket": 22489, + "inherit": 22490, + "milling": 22491, + "##erland": 22492, + "centralized": 22493, + "##rou": 22494, + "distributors": 22495, + "credentials": 22496, + "drawers": 22497, + "abbreviation": 22498, + "##lco": 22499, + "##xon": 22500, + "downing": 22501, + "uncomfortably": 22502, + "ripe": 22503, + "##oes": 22504, + "erase": 22505, + "franchises": 22506, + "##ever": 22507, + "populace": 22508, + "##bery": 22509, + "##khar": 22510, + "decomposition": 22511, + "pleas": 22512, + "##tet": 22513, + "daryl": 22514, + "sabah": 22515, + "##stle": 22516, + "##wide": 22517, + "fearless": 22518, + "genie": 22519, + "lesions": 22520, + "annette": 22521, + "##ogist": 22522, + "oboe": 22523, + "appendix": 22524, + "nair": 22525, + "dripped": 22526, + "petitioned": 22527, + "maclean": 22528, + "mosquito": 22529, + "parrot": 22530, + "rpg": 22531, + "hampered": 22532, + "1648": 22533, + "operatic": 22534, + "reservoirs": 22535, + "##tham": 22536, + "irrelevant": 22537, + "jolt": 22538, + "summarized": 22539, + "##fp": 22540, + "medallion": 22541, + "##taff": 22542, + "##−": 22543, + "clawed": 22544, + "harlow": 22545, + "narrower": 22546, + "goddard": 22547, + "marcia": 22548, + "bodied": 22549, + "fremont": 22550, + "suarez": 22551, + "altering": 22552, + "tempest": 22553, + "mussolini": 22554, + "porn": 22555, + "##isms": 22556, + "sweetly": 22557, + "oversees": 22558, + "walkers": 22559, + "solitude": 22560, + "grimly": 22561, + "shrines": 22562, + "hk": 22563, + "ich": 22564, + "supervisors": 22565, + "hostess": 22566, + "dietrich": 22567, + "legitimacy": 22568, + "brushes": 22569, + "expressive": 22570, + "##yp": 22571, + "dissipated": 22572, + "##rse": 22573, + "localized": 22574, + "systemic": 22575, + "##nikov": 22576, + "gettysburg": 22577, + "##js": 22578, + "##uaries": 22579, + "dialogues": 22580, + "muttering": 22581, + "251": 22582, + "housekeeper": 22583, + "sicilian": 22584, + "discouraged": 22585, + "##frey": 22586, + "beamed": 22587, + "kaladin": 22588, + "halftime": 22589, + "kidnap": 22590, + "##amo": 22591, + "##llet": 22592, + "1754": 22593, + "synonymous": 22594, + "depleted": 22595, + "instituto": 22596, + "insulin": 22597, + "reprised": 22598, + "##opsis": 22599, + "clashed": 22600, + "##ctric": 22601, + "interrupting": 22602, + "radcliffe": 22603, + "insisting": 22604, + "medici": 22605, + "1715": 22606, + "ejected": 22607, + "playfully": 22608, + "turbulent": 22609, + "##47": 22610, + "starvation": 22611, + "##rini": 22612, + "shipment": 22613, + "rebellious": 22614, + "petersen": 22615, + "verification": 22616, + "merits": 22617, + "##rified": 22618, + "cakes": 22619, + "##charged": 22620, + "1757": 22621, + "milford": 22622, + "shortages": 22623, + "spying": 22624, + "fidelity": 22625, + "##aker": 22626, + "emitted": 22627, + "storylines": 22628, + "harvested": 22629, + "seismic": 22630, + "##iform": 22631, + "cheung": 22632, + "kilda": 22633, + "theoretically": 22634, + "barbie": 22635, + "lynx": 22636, + "##rgy": 22637, + "##tius": 22638, + "goblin": 22639, + "mata": 22640, + "poisonous": 22641, + "##nburg": 22642, + "reactive": 22643, + "residues": 22644, + "obedience": 22645, + "##евич": 22646, + "conjecture": 22647, + "##rac": 22648, + "401": 22649, + "hating": 22650, + "sixties": 22651, + "kicker": 22652, + "moaning": 22653, + "motown": 22654, + "##bha": 22655, + "emancipation": 22656, + "neoclassical": 22657, + "##hering": 22658, + "consoles": 22659, + "ebert": 22660, + "professorship": 22661, + "##tures": 22662, + "sustaining": 22663, + "assaults": 22664, + "obeyed": 22665, + "affluent": 22666, + "incurred": 22667, + "tornadoes": 22668, + "##eber": 22669, + "##zow": 22670, + "emphasizing": 22671, + "highlanders": 22672, + "cheated": 22673, + "helmets": 22674, + "##ctus": 22675, + "internship": 22676, + "terence": 22677, + "bony": 22678, + "executions": 22679, + "legislators": 22680, + "berries": 22681, + "peninsular": 22682, + "tinged": 22683, + "##aco": 22684, + "1689": 22685, + "amplifier": 22686, + "corvette": 22687, + "ribbons": 22688, + "lavish": 22689, + "pennant": 22690, + "##lander": 22691, + "worthless": 22692, + "##chfield": 22693, + "##forms": 22694, + "mariano": 22695, + "pyrenees": 22696, + "expenditures": 22697, + "##icides": 22698, + "chesterfield": 22699, + "mandir": 22700, + "tailor": 22701, + "39th": 22702, + "sergey": 22703, + "nestled": 22704, + "willed": 22705, + "aristocracy": 22706, + "devotees": 22707, + "goodnight": 22708, + "raaf": 22709, + "rumored": 22710, + "weaponry": 22711, + "remy": 22712, + "appropriations": 22713, + "harcourt": 22714, + "burr": 22715, + "riaa": 22716, + "##lence": 22717, + "limitation": 22718, + "unnoticed": 22719, + "guo": 22720, + "soaking": 22721, + "swamps": 22722, + "##tica": 22723, + "collapsing": 22724, + "tatiana": 22725, + "descriptive": 22726, + "brigham": 22727, + "psalm": 22728, + "##chment": 22729, + "maddox": 22730, + "##lization": 22731, + "patti": 22732, + "caliph": 22733, + "##aja": 22734, + "akron": 22735, + "injuring": 22736, + "serra": 22737, + "##ganj": 22738, + "basins": 22739, + "##sari": 22740, + "astonished": 22741, + "launcher": 22742, + "##church": 22743, + "hilary": 22744, + "wilkins": 22745, + "sewing": 22746, + "##sf": 22747, + "stinging": 22748, + "##fia": 22749, + "##ncia": 22750, + "underwood": 22751, + "startup": 22752, + "##ition": 22753, + "compilations": 22754, + "vibrations": 22755, + "embankment": 22756, + "jurist": 22757, + "##nity": 22758, + "bard": 22759, + "juventus": 22760, + "groundwater": 22761, + "kern": 22762, + "palaces": 22763, + "helium": 22764, + "boca": 22765, + "cramped": 22766, + "marissa": 22767, + "soto": 22768, + "##worm": 22769, + "jae": 22770, + "princely": 22771, + "##ggy": 22772, + "faso": 22773, + "bazaar": 22774, + "warmly": 22775, + "##voking": 22776, + "229": 22777, + "pairing": 22778, + "##lite": 22779, + "##grate": 22780, + "##nets": 22781, + "wien": 22782, + "freaked": 22783, + "ulysses": 22784, + "rebirth": 22785, + "##alia": 22786, + "##rent": 22787, + "mummy": 22788, + "guzman": 22789, + "jimenez": 22790, + "stilled": 22791, + "##nitz": 22792, + "trajectory": 22793, + "tha": 22794, + "woken": 22795, + "archival": 22796, + "professions": 22797, + "##pts": 22798, + "##pta": 22799, + "hilly": 22800, + "shadowy": 22801, + "shrink": 22802, + "##bolt": 22803, + "norwood": 22804, + "glued": 22805, + "migrate": 22806, + "stereotypes": 22807, + "devoid": 22808, + "##pheus": 22809, + "625": 22810, + "evacuate": 22811, + "horrors": 22812, + "infancy": 22813, + "gotham": 22814, + "knowles": 22815, + "optic": 22816, + "downloaded": 22817, + "sachs": 22818, + "kingsley": 22819, + "parramatta": 22820, + "darryl": 22821, + "mor": 22822, + "##onale": 22823, + "shady": 22824, + "commence": 22825, + "confesses": 22826, + "kan": 22827, + "##meter": 22828, + "##placed": 22829, + "marlborough": 22830, + "roundabout": 22831, + "regents": 22832, + "frigates": 22833, + "io": 22834, + "##imating": 22835, + "gothenburg": 22836, + "revoked": 22837, + "carvings": 22838, + "clockwise": 22839, + "convertible": 22840, + "intruder": 22841, + "##sche": 22842, + "banged": 22843, + "##ogo": 22844, + "vicky": 22845, + "bourgeois": 22846, + "##mony": 22847, + "dupont": 22848, + "footing": 22849, + "##gum": 22850, + "pd": 22851, + "##real": 22852, + "buckle": 22853, + "yun": 22854, + "penthouse": 22855, + "sane": 22856, + "720": 22857, + "serviced": 22858, + "stakeholders": 22859, + "neumann": 22860, + "bb": 22861, + "##eers": 22862, + "comb": 22863, + "##gam": 22864, + "catchment": 22865, + "pinning": 22866, + "rallies": 22867, + "typing": 22868, + "##elles": 22869, + "forefront": 22870, + "freiburg": 22871, + "sweetie": 22872, + "giacomo": 22873, + "widowed": 22874, + "goodwill": 22875, + "worshipped": 22876, + "aspirations": 22877, + "midday": 22878, + "##vat": 22879, + "fishery": 22880, + "##trick": 22881, + "bournemouth": 22882, + "turk": 22883, + "243": 22884, + "hearth": 22885, + "ethanol": 22886, + "guadalajara": 22887, + "murmurs": 22888, + "sl": 22889, + "##uge": 22890, + "afforded": 22891, + "scripted": 22892, + "##hta": 22893, + "wah": 22894, + "##jn": 22895, + "coroner": 22896, + "translucent": 22897, + "252": 22898, + "memorials": 22899, + "puck": 22900, + "progresses": 22901, + "clumsy": 22902, + "##race": 22903, + "315": 22904, + "candace": 22905, + "recounted": 22906, + "##27": 22907, + "##slin": 22908, + "##uve": 22909, + "filtering": 22910, + "##mac": 22911, + "howl": 22912, + "strata": 22913, + "heron": 22914, + "leveled": 22915, + "##ays": 22916, + "dubious": 22917, + "##oja": 22918, + "##т": 22919, + "##wheel": 22920, + "citations": 22921, + "exhibiting": 22922, + "##laya": 22923, + "##mics": 22924, + "##pods": 22925, + "turkic": 22926, + "##lberg": 22927, + "injunction": 22928, + "##ennial": 22929, + "##mit": 22930, + "antibodies": 22931, + "##44": 22932, + "organise": 22933, + "##rigues": 22934, + "cardiovascular": 22935, + "cushion": 22936, + "inverness": 22937, + "##zquez": 22938, + "dia": 22939, + "cocoa": 22940, + "sibling": 22941, + "##tman": 22942, + "##roid": 22943, + "expanse": 22944, + "feasible": 22945, + "tunisian": 22946, + "algiers": 22947, + "##relli": 22948, + "rus": 22949, + "bloomberg": 22950, + "dso": 22951, + "westphalia": 22952, + "bro": 22953, + "tacoma": 22954, + "281": 22955, + "downloads": 22956, + "##ours": 22957, + "konrad": 22958, + "duran": 22959, + "##hdi": 22960, + "continuum": 22961, + "jett": 22962, + "compares": 22963, + "legislator": 22964, + "secession": 22965, + "##nable": 22966, + "##gues": 22967, + "##zuka": 22968, + "translating": 22969, + "reacher": 22970, + "##gley": 22971, + "##ła": 22972, + "aleppo": 22973, + "##agi": 22974, + "tc": 22975, + "orchards": 22976, + "trapping": 22977, + "linguist": 22978, + "versatile": 22979, + "drumming": 22980, + "postage": 22981, + "calhoun": 22982, + "superiors": 22983, + "##mx": 22984, + "barefoot": 22985, + "leary": 22986, + "##cis": 22987, + "ignacio": 22988, + "alfa": 22989, + "kaplan": 22990, + "##rogen": 22991, + "bratislava": 22992, + "mori": 22993, + "##vot": 22994, + "disturb": 22995, + "haas": 22996, + "313": 22997, + "cartridges": 22998, + "gilmore": 22999, + "radiated": 23000, + "salford": 23001, + "tunic": 23002, + "hades": 23003, + "##ulsive": 23004, + "archeological": 23005, + "delilah": 23006, + "magistrates": 23007, + "auditioned": 23008, + "brewster": 23009, + "charters": 23010, + "empowerment": 23011, + "blogs": 23012, + "cappella": 23013, + "dynasties": 23014, + "iroquois": 23015, + "whipping": 23016, + "##krishna": 23017, + "raceway": 23018, + "truths": 23019, + "myra": 23020, + "weaken": 23021, + "judah": 23022, + "mcgregor": 23023, + "##horse": 23024, + "mic": 23025, + "refueling": 23026, + "37th": 23027, + "burnley": 23028, + "bosses": 23029, + "markus": 23030, + "premio": 23031, + "query": 23032, + "##gga": 23033, + "dunbar": 23034, + "##economic": 23035, + "darkest": 23036, + "lyndon": 23037, + "sealing": 23038, + "commendation": 23039, + "reappeared": 23040, + "##mun": 23041, + "addicted": 23042, + "ezio": 23043, + "slaughtered": 23044, + "satisfactory": 23045, + "shuffle": 23046, + "##eves": 23047, + "##thic": 23048, + "##uj": 23049, + "fortification": 23050, + "warrington": 23051, + "##otto": 23052, + "resurrected": 23053, + "fargo": 23054, + "mane": 23055, + "##utable": 23056, + "##lei": 23057, + "##space": 23058, + "foreword": 23059, + "ox": 23060, + "##aris": 23061, + "##vern": 23062, + "abrams": 23063, + "hua": 23064, + "##mento": 23065, + "sakura": 23066, + "##alo": 23067, + "uv": 23068, + "sentimental": 23069, + "##skaya": 23070, + "midfield": 23071, + "##eses": 23072, + "sturdy": 23073, + "scrolls": 23074, + "macleod": 23075, + "##kyu": 23076, + "entropy": 23077, + "##lance": 23078, + "mitochondrial": 23079, + "cicero": 23080, + "excelled": 23081, + "thinner": 23082, + "convoys": 23083, + "perceive": 23084, + "##oslav": 23085, + "##urable": 23086, + "systematically": 23087, + "grind": 23088, + "burkina": 23089, + "287": 23090, + "##tagram": 23091, + "ops": 23092, + "##aman": 23093, + "guantanamo": 23094, + "##cloth": 23095, + "##tite": 23096, + "forcefully": 23097, + "wavy": 23098, + "##jou": 23099, + "pointless": 23100, + "##linger": 23101, + "##tze": 23102, + "layton": 23103, + "portico": 23104, + "superficial": 23105, + "clerical": 23106, + "outlaws": 23107, + "##hism": 23108, + "burials": 23109, + "muir": 23110, + "##inn": 23111, + "creditors": 23112, + "hauling": 23113, + "rattle": 23114, + "##leg": 23115, + "calais": 23116, + "monde": 23117, + "archers": 23118, + "reclaimed": 23119, + "dwell": 23120, + "wexford": 23121, + "hellenic": 23122, + "falsely": 23123, + "remorse": 23124, + "##tek": 23125, + "dough": 23126, + "furnishings": 23127, + "##uttered": 23128, + "gabon": 23129, + "neurological": 23130, + "novice": 23131, + "##igraphy": 23132, + "contemplated": 23133, + "pulpit": 23134, + "nightstand": 23135, + "saratoga": 23136, + "##istan": 23137, + "documenting": 23138, + "pulsing": 23139, + "taluk": 23140, + "##firmed": 23141, + "busted": 23142, + "marital": 23143, + "##rien": 23144, + "disagreements": 23145, + "wasps": 23146, + "##yes": 23147, + "hodge": 23148, + "mcdonnell": 23149, + "mimic": 23150, + "fran": 23151, + "pendant": 23152, + "dhabi": 23153, + "musa": 23154, + "##nington": 23155, + "congratulations": 23156, + "argent": 23157, + "darrell": 23158, + "concussion": 23159, + "losers": 23160, + "regrets": 23161, + "thessaloniki": 23162, + "reversal": 23163, + "donaldson": 23164, + "hardwood": 23165, + "thence": 23166, + "achilles": 23167, + "ritter": 23168, + "##eran": 23169, + "demonic": 23170, + "jurgen": 23171, + "prophets": 23172, + "goethe": 23173, + "eki": 23174, + "classmate": 23175, + "buff": 23176, + "##cking": 23177, + "yank": 23178, + "irrational": 23179, + "##inging": 23180, + "perished": 23181, + "seductive": 23182, + "qur": 23183, + "sourced": 23184, + "##crat": 23185, + "##typic": 23186, + "mustard": 23187, + "ravine": 23188, + "barre": 23189, + "horizontally": 23190, + "characterization": 23191, + "phylogenetic": 23192, + "boise": 23193, + "##dit": 23194, + "##runner": 23195, + "##tower": 23196, + "brutally": 23197, + "intercourse": 23198, + "seduce": 23199, + "##bbing": 23200, + "fay": 23201, + "ferris": 23202, + "ogden": 23203, + "amar": 23204, + "nik": 23205, + "unarmed": 23206, + "##inator": 23207, + "evaluating": 23208, + "kyrgyzstan": 23209, + "sweetness": 23210, + "##lford": 23211, + "##oki": 23212, + "mccormick": 23213, + "meiji": 23214, + "notoriety": 23215, + "stimulate": 23216, + "disrupt": 23217, + "figuring": 23218, + "instructional": 23219, + "mcgrath": 23220, + "##zoo": 23221, + "groundbreaking": 23222, + "##lto": 23223, + "flinch": 23224, + "khorasan": 23225, + "agrarian": 23226, + "bengals": 23227, + "mixer": 23228, + "radiating": 23229, + "##sov": 23230, + "ingram": 23231, + "pitchers": 23232, + "nad": 23233, + "tariff": 23234, + "##cript": 23235, + "tata": 23236, + "##codes": 23237, + "##emi": 23238, + "##ungen": 23239, + "appellate": 23240, + "lehigh": 23241, + "##bled": 23242, + "##giri": 23243, + "brawl": 23244, + "duct": 23245, + "texans": 23246, + "##ciation": 23247, + "##ropolis": 23248, + "skipper": 23249, + "speculative": 23250, + "vomit": 23251, + "doctrines": 23252, + "stresses": 23253, + "253": 23254, + "davy": 23255, + "graders": 23256, + "whitehead": 23257, + "jozef": 23258, + "timely": 23259, + "cumulative": 23260, + "haryana": 23261, + "paints": 23262, + "appropriately": 23263, + "boon": 23264, + "cactus": 23265, + "##ales": 23266, + "##pid": 23267, + "dow": 23268, + "legions": 23269, + "##pit": 23270, + "perceptions": 23271, + "1730": 23272, + "picturesque": 23273, + "##yse": 23274, + "periphery": 23275, + "rune": 23276, + "wr": 23277, + "##aha": 23278, + "celtics": 23279, + "sentencing": 23280, + "whoa": 23281, + "##erin": 23282, + "confirms": 23283, + "variance": 23284, + "425": 23285, + "moines": 23286, + "mathews": 23287, + "spade": 23288, + "rave": 23289, + "m1": 23290, + "fronted": 23291, + "fx": 23292, + "blending": 23293, + "alleging": 23294, + "reared": 23295, + "##gl": 23296, + "237": 23297, + "##paper": 23298, + "grassroots": 23299, + "eroded": 23300, + "##free": 23301, + "##physical": 23302, + "directs": 23303, + "ordeal": 23304, + "##sław": 23305, + "accelerate": 23306, + "hacker": 23307, + "rooftop": 23308, + "##inia": 23309, + "lev": 23310, + "buys": 23311, + "cebu": 23312, + "devote": 23313, + "##lce": 23314, + "specialising": 23315, + "##ulsion": 23316, + "choreographed": 23317, + "repetition": 23318, + "warehouses": 23319, + "##ryl": 23320, + "paisley": 23321, + "tuscany": 23322, + "analogy": 23323, + "sorcerer": 23324, + "hash": 23325, + "huts": 23326, + "shards": 23327, + "descends": 23328, + "exclude": 23329, + "nix": 23330, + "chaplin": 23331, + "gaga": 23332, + "ito": 23333, + "vane": 23334, + "##drich": 23335, + "causeway": 23336, + "misconduct": 23337, + "limo": 23338, + "orchestrated": 23339, + "glands": 23340, + "jana": 23341, + "##kot": 23342, + "u2": 23343, + "##mple": 23344, + "##sons": 23345, + "branching": 23346, + "contrasts": 23347, + "scoop": 23348, + "longed": 23349, + "##virus": 23350, + "chattanooga": 23351, + "##75": 23352, + "syrup": 23353, + "cornerstone": 23354, + "##tized": 23355, + "##mind": 23356, + "##iaceae": 23357, + "careless": 23358, + "precedence": 23359, + "frescoes": 23360, + "##uet": 23361, + "chilled": 23362, + "consult": 23363, + "modelled": 23364, + "snatch": 23365, + "peat": 23366, + "##thermal": 23367, + "caucasian": 23368, + "humane": 23369, + "relaxation": 23370, + "spins": 23371, + "temperance": 23372, + "##lbert": 23373, + "occupations": 23374, + "lambda": 23375, + "hybrids": 23376, + "moons": 23377, + "mp3": 23378, + "##oese": 23379, + "247": 23380, + "rolf": 23381, + "societal": 23382, + "yerevan": 23383, + "ness": 23384, + "##ssler": 23385, + "befriended": 23386, + "mechanized": 23387, + "nominate": 23388, + "trough": 23389, + "boasted": 23390, + "cues": 23391, + "seater": 23392, + "##hom": 23393, + "bends": 23394, + "##tangle": 23395, + "conductors": 23396, + "emptiness": 23397, + "##lmer": 23398, + "eurasian": 23399, + "adriatic": 23400, + "tian": 23401, + "##cie": 23402, + "anxiously": 23403, + "lark": 23404, + "propellers": 23405, + "chichester": 23406, + "jock": 23407, + "ev": 23408, + "2a": 23409, + "##holding": 23410, + "credible": 23411, + "recounts": 23412, + "tori": 23413, + "loyalist": 23414, + "abduction": 23415, + "##hoot": 23416, + "##redo": 23417, + "nepali": 23418, + "##mite": 23419, + "ventral": 23420, + "tempting": 23421, + "##ango": 23422, + "##crats": 23423, + "steered": 23424, + "##wice": 23425, + "javelin": 23426, + "dipping": 23427, + "laborers": 23428, + "prentice": 23429, + "looming": 23430, + "titanium": 23431, + "##ː": 23432, + "badges": 23433, + "emir": 23434, + "tensor": 23435, + "##ntation": 23436, + "egyptians": 23437, + "rash": 23438, + "denies": 23439, + "hawthorne": 23440, + "lombard": 23441, + "showers": 23442, + "wehrmacht": 23443, + "dietary": 23444, + "trojan": 23445, + "##reus": 23446, + "welles": 23447, + "executing": 23448, + "horseshoe": 23449, + "lifeboat": 23450, + "##lak": 23451, + "elsa": 23452, + "infirmary": 23453, + "nearing": 23454, + "roberta": 23455, + "boyer": 23456, + "mutter": 23457, + "trillion": 23458, + "joanne": 23459, + "##fine": 23460, + "##oked": 23461, + "sinks": 23462, + "vortex": 23463, + "uruguayan": 23464, + "clasp": 23465, + "sirius": 23466, + "##block": 23467, + "accelerator": 23468, + "prohibit": 23469, + "sunken": 23470, + "byu": 23471, + "chronological": 23472, + "diplomats": 23473, + "ochreous": 23474, + "510": 23475, + "symmetrical": 23476, + "1644": 23477, + "maia": 23478, + "##tology": 23479, + "salts": 23480, + "reigns": 23481, + "atrocities": 23482, + "##ия": 23483, + "hess": 23484, + "bared": 23485, + "issn": 23486, + "##vyn": 23487, + "cater": 23488, + "saturated": 23489, + "##cycle": 23490, + "##isse": 23491, + "sable": 23492, + "voyager": 23493, + "dyer": 23494, + "yusuf": 23495, + "##inge": 23496, + "fountains": 23497, + "wolff": 23498, + "##39": 23499, + "##nni": 23500, + "engraving": 23501, + "rollins": 23502, + "atheist": 23503, + "ominous": 23504, + "##ault": 23505, + "herr": 23506, + "chariot": 23507, + "martina": 23508, + "strung": 23509, + "##fell": 23510, + "##farlane": 23511, + "horrific": 23512, + "sahib": 23513, + "gazes": 23514, + "saetan": 23515, + "erased": 23516, + "ptolemy": 23517, + "##olic": 23518, + "flushing": 23519, + "lauderdale": 23520, + "analytic": 23521, + "##ices": 23522, + "530": 23523, + "navarro": 23524, + "beak": 23525, + "gorilla": 23526, + "herrera": 23527, + "broom": 23528, + "guadalupe": 23529, + "raiding": 23530, + "sykes": 23531, + "311": 23532, + "bsc": 23533, + "deliveries": 23534, + "1720": 23535, + "invasions": 23536, + "carmichael": 23537, + "tajikistan": 23538, + "thematic": 23539, + "ecumenical": 23540, + "sentiments": 23541, + "onstage": 23542, + "##rians": 23543, + "##brand": 23544, + "##sume": 23545, + "catastrophic": 23546, + "flanks": 23547, + "molten": 23548, + "##arns": 23549, + "waller": 23550, + "aimee": 23551, + "terminating": 23552, + "##icing": 23553, + "alternately": 23554, + "##oche": 23555, + "nehru": 23556, + "printers": 23557, + "outraged": 23558, + "##eving": 23559, + "empires": 23560, + "template": 23561, + "banners": 23562, + "repetitive": 23563, + "za": 23564, + "##oise": 23565, + "vegetarian": 23566, + "##tell": 23567, + "guiana": 23568, + "opt": 23569, + "cavendish": 23570, + "lucknow": 23571, + "synthesized": 23572, + "##hani": 23573, + "##mada": 23574, + "finalized": 23575, + "##ctable": 23576, + "fictitious": 23577, + "mayoral": 23578, + "unreliable": 23579, + "##enham": 23580, + "embracing": 23581, + "peppers": 23582, + "rbis": 23583, + "##chio": 23584, + "##neo": 23585, + "inhibition": 23586, + "slashed": 23587, + "togo": 23588, + "orderly": 23589, + "embroidered": 23590, + "safari": 23591, + "salty": 23592, + "236": 23593, + "barron": 23594, + "benito": 23595, + "totaled": 23596, + "##dak": 23597, + "pubs": 23598, + "simulated": 23599, + "caden": 23600, + "devin": 23601, + "tolkien": 23602, + "momma": 23603, + "welding": 23604, + "sesame": 23605, + "##ept": 23606, + "gottingen": 23607, + "hardness": 23608, + "630": 23609, + "shaman": 23610, + "temeraire": 23611, + "620": 23612, + "adequately": 23613, + "pediatric": 23614, + "##kit": 23615, + "ck": 23616, + "assertion": 23617, + "radicals": 23618, + "composure": 23619, + "cadence": 23620, + "seafood": 23621, + "beaufort": 23622, + "lazarus": 23623, + "mani": 23624, + "warily": 23625, + "cunning": 23626, + "kurdistan": 23627, + "249": 23628, + "cantata": 23629, + "##kir": 23630, + "ares": 23631, + "##41": 23632, + "##clusive": 23633, + "nape": 23634, + "townland": 23635, + "geared": 23636, + "insulted": 23637, + "flutter": 23638, + "boating": 23639, + "violate": 23640, + "draper": 23641, + "dumping": 23642, + "malmo": 23643, + "##hh": 23644, + "##romatic": 23645, + "firearm": 23646, + "alta": 23647, + "bono": 23648, + "obscured": 23649, + "##clave": 23650, + "exceeds": 23651, + "panorama": 23652, + "unbelievable": 23653, + "##train": 23654, + "preschool": 23655, + "##essed": 23656, + "disconnected": 23657, + "installing": 23658, + "rescuing": 23659, + "secretaries": 23660, + "accessibility": 23661, + "##castle": 23662, + "##drive": 23663, + "##ifice": 23664, + "##film": 23665, + "bouts": 23666, + "slug": 23667, + "waterway": 23668, + "mindanao": 23669, + "##buro": 23670, + "##ratic": 23671, + "halves": 23672, + "##ل": 23673, + "calming": 23674, + "liter": 23675, + "maternity": 23676, + "adorable": 23677, + "bragg": 23678, + "electrification": 23679, + "mcc": 23680, + "##dote": 23681, + "roxy": 23682, + "schizophrenia": 23683, + "##body": 23684, + "munoz": 23685, + "kaye": 23686, + "whaling": 23687, + "239": 23688, + "mil": 23689, + "tingling": 23690, + "tolerant": 23691, + "##ago": 23692, + "unconventional": 23693, + "volcanoes": 23694, + "##finder": 23695, + "deportivo": 23696, + "##llie": 23697, + "robson": 23698, + "kaufman": 23699, + "neuroscience": 23700, + "wai": 23701, + "deportation": 23702, + "masovian": 23703, + "scraping": 23704, + "converse": 23705, + "##bh": 23706, + "hacking": 23707, + "bulge": 23708, + "##oun": 23709, + "administratively": 23710, + "yao": 23711, + "580": 23712, + "amp": 23713, + "mammoth": 23714, + "booster": 23715, + "claremont": 23716, + "hooper": 23717, + "nomenclature": 23718, + "pursuits": 23719, + "mclaughlin": 23720, + "melinda": 23721, + "##sul": 23722, + "catfish": 23723, + "barclay": 23724, + "substrates": 23725, + "taxa": 23726, + "zee": 23727, + "originals": 23728, + "kimberly": 23729, + "packets": 23730, + "padma": 23731, + "##ality": 23732, + "borrowing": 23733, + "ostensibly": 23734, + "solvent": 23735, + "##bri": 23736, + "##genesis": 23737, + "##mist": 23738, + "lukas": 23739, + "shreveport": 23740, + "veracruz": 23741, + "##ь": 23742, + "##lou": 23743, + "##wives": 23744, + "cheney": 23745, + "tt": 23746, + "anatolia": 23747, + "hobbs": 23748, + "##zyn": 23749, + "cyclic": 23750, + "radiant": 23751, + "alistair": 23752, + "greenish": 23753, + "siena": 23754, + "dat": 23755, + "independents": 23756, + "##bation": 23757, + "conform": 23758, + "pieter": 23759, + "hyper": 23760, + "applicant": 23761, + "bradshaw": 23762, + "spores": 23763, + "telangana": 23764, + "vinci": 23765, + "inexpensive": 23766, + "nuclei": 23767, + "322": 23768, + "jang": 23769, + "nme": 23770, + "soho": 23771, + "spd": 23772, + "##ign": 23773, + "cradled": 23774, + "receptionist": 23775, + "pow": 23776, + "##43": 23777, + "##rika": 23778, + "fascism": 23779, + "##ifer": 23780, + "experimenting": 23781, + "##ading": 23782, + "##iec": 23783, + "##region": 23784, + "345": 23785, + "jocelyn": 23786, + "maris": 23787, + "stair": 23788, + "nocturnal": 23789, + "toro": 23790, + "constabulary": 23791, + "elgin": 23792, + "##kker": 23793, + "msc": 23794, + "##giving": 23795, + "##schen": 23796, + "##rase": 23797, + "doherty": 23798, + "doping": 23799, + "sarcastically": 23800, + "batter": 23801, + "maneuvers": 23802, + "##cano": 23803, + "##apple": 23804, + "##gai": 23805, + "##git": 23806, + "intrinsic": 23807, + "##nst": 23808, + "##stor": 23809, + "1753": 23810, + "showtime": 23811, + "cafes": 23812, + "gasps": 23813, + "lviv": 23814, + "ushered": 23815, + "##thed": 23816, + "fours": 23817, + "restart": 23818, + "astonishment": 23819, + "transmitting": 23820, + "flyer": 23821, + "shrugs": 23822, + "##sau": 23823, + "intriguing": 23824, + "cones": 23825, + "dictated": 23826, + "mushrooms": 23827, + "medial": 23828, + "##kovsky": 23829, + "##elman": 23830, + "escorting": 23831, + "gaped": 23832, + "##26": 23833, + "godfather": 23834, + "##door": 23835, + "##sell": 23836, + "djs": 23837, + "recaptured": 23838, + "timetable": 23839, + "vila": 23840, + "1710": 23841, + "3a": 23842, + "aerodrome": 23843, + "mortals": 23844, + "scientology": 23845, + "##orne": 23846, + "angelina": 23847, + "mag": 23848, + "convection": 23849, + "unpaid": 23850, + "insertion": 23851, + "intermittent": 23852, + "lego": 23853, + "##nated": 23854, + "endeavor": 23855, + "kota": 23856, + "pereira": 23857, + "##lz": 23858, + "304": 23859, + "bwv": 23860, + "glamorgan": 23861, + "insults": 23862, + "agatha": 23863, + "fey": 23864, + "##cend": 23865, + "fleetwood": 23866, + "mahogany": 23867, + "protruding": 23868, + "steamship": 23869, + "zeta": 23870, + "##arty": 23871, + "mcguire": 23872, + "suspense": 23873, + "##sphere": 23874, + "advising": 23875, + "urges": 23876, + "##wala": 23877, + "hurriedly": 23878, + "meteor": 23879, + "gilded": 23880, + "inline": 23881, + "arroyo": 23882, + "stalker": 23883, + "##oge": 23884, + "excitedly": 23885, + "revered": 23886, + "##cure": 23887, + "earle": 23888, + "introductory": 23889, + "##break": 23890, + "##ilde": 23891, + "mutants": 23892, + "puff": 23893, + "pulses": 23894, + "reinforcement": 23895, + "##haling": 23896, + "curses": 23897, + "lizards": 23898, + "stalk": 23899, + "correlated": 23900, + "##fixed": 23901, + "fallout": 23902, + "macquarie": 23903, + "##unas": 23904, + "bearded": 23905, + "denton": 23906, + "heaving": 23907, + "802": 23908, + "##ocation": 23909, + "winery": 23910, + "assign": 23911, + "dortmund": 23912, + "##lkirk": 23913, + "everest": 23914, + "invariant": 23915, + "charismatic": 23916, + "susie": 23917, + "##elling": 23918, + "bled": 23919, + "lesley": 23920, + "telegram": 23921, + "sumner": 23922, + "bk": 23923, + "##ogen": 23924, + "##к": 23925, + "wilcox": 23926, + "needy": 23927, + "colbert": 23928, + "duval": 23929, + "##iferous": 23930, + "##mbled": 23931, + "allotted": 23932, + "attends": 23933, + "imperative": 23934, + "##hita": 23935, + "replacements": 23936, + "hawker": 23937, + "##inda": 23938, + "insurgency": 23939, + "##zee": 23940, + "##eke": 23941, + "casts": 23942, + "##yla": 23943, + "680": 23944, + "ives": 23945, + "transitioned": 23946, + "##pack": 23947, + "##powering": 23948, + "authoritative": 23949, + "baylor": 23950, + "flex": 23951, + "cringed": 23952, + "plaintiffs": 23953, + "woodrow": 23954, + "##skie": 23955, + "drastic": 23956, + "ape": 23957, + "aroma": 23958, + "unfolded": 23959, + "commotion": 23960, + "nt": 23961, + "preoccupied": 23962, + "theta": 23963, + "routines": 23964, + "lasers": 23965, + "privatization": 23966, + "wand": 23967, + "domino": 23968, + "ek": 23969, + "clenching": 23970, + "nsa": 23971, + "strategically": 23972, + "showered": 23973, + "bile": 23974, + "handkerchief": 23975, + "pere": 23976, + "storing": 23977, + "christophe": 23978, + "insulting": 23979, + "316": 23980, + "nakamura": 23981, + "romani": 23982, + "asiatic": 23983, + "magdalena": 23984, + "palma": 23985, + "cruises": 23986, + "stripping": 23987, + "405": 23988, + "konstantin": 23989, + "soaring": 23990, + "##berman": 23991, + "colloquially": 23992, + "forerunner": 23993, + "havilland": 23994, + "incarcerated": 23995, + "parasites": 23996, + "sincerity": 23997, + "##utus": 23998, + "disks": 23999, + "plank": 24000, + "saigon": 24001, + "##ining": 24002, + "corbin": 24003, + "homo": 24004, + "ornaments": 24005, + "powerhouse": 24006, + "##tlement": 24007, + "chong": 24008, + "fastened": 24009, + "feasibility": 24010, + "idf": 24011, + "morphological": 24012, + "usable": 24013, + "##nish": 24014, + "##zuki": 24015, + "aqueduct": 24016, + "jaguars": 24017, + "keepers": 24018, + "##flies": 24019, + "aleksandr": 24020, + "faust": 24021, + "assigns": 24022, + "ewing": 24023, + "bacterium": 24024, + "hurled": 24025, + "tricky": 24026, + "hungarians": 24027, + "integers": 24028, + "wallis": 24029, + "321": 24030, + "yamaha": 24031, + "##isha": 24032, + "hushed": 24033, + "oblivion": 24034, + "aviator": 24035, + "evangelist": 24036, + "friars": 24037, + "##eller": 24038, + "monograph": 24039, + "ode": 24040, + "##nary": 24041, + "airplanes": 24042, + "labourers": 24043, + "charms": 24044, + "##nee": 24045, + "1661": 24046, + "hagen": 24047, + "tnt": 24048, + "rudder": 24049, + "fiesta": 24050, + "transcript": 24051, + "dorothea": 24052, + "ska": 24053, + "inhibitor": 24054, + "maccabi": 24055, + "retorted": 24056, + "raining": 24057, + "encompassed": 24058, + "clauses": 24059, + "menacing": 24060, + "1642": 24061, + "lineman": 24062, + "##gist": 24063, + "vamps": 24064, + "##ape": 24065, + "##dick": 24066, + "gloom": 24067, + "##rera": 24068, + "dealings": 24069, + "easing": 24070, + "seekers": 24071, + "##nut": 24072, + "##pment": 24073, + "helens": 24074, + "unmanned": 24075, + "##anu": 24076, + "##isson": 24077, + "basics": 24078, + "##amy": 24079, + "##ckman": 24080, + "adjustments": 24081, + "1688": 24082, + "brutality": 24083, + "horne": 24084, + "##zell": 24085, + "sui": 24086, + "##55": 24087, + "##mable": 24088, + "aggregator": 24089, + "##thal": 24090, + "rhino": 24091, + "##drick": 24092, + "##vira": 24093, + "counters": 24094, + "zoom": 24095, + "##01": 24096, + "##rting": 24097, + "mn": 24098, + "montenegrin": 24099, + "packard": 24100, + "##unciation": 24101, + "##♭": 24102, + "##kki": 24103, + "reclaim": 24104, + "scholastic": 24105, + "thugs": 24106, + "pulsed": 24107, + "##icia": 24108, + "syriac": 24109, + "quan": 24110, + "saddam": 24111, + "banda": 24112, + "kobe": 24113, + "blaming": 24114, + "buddies": 24115, + "dissent": 24116, + "##lusion": 24117, + "##usia": 24118, + "corbett": 24119, + "jaya": 24120, + "delle": 24121, + "erratic": 24122, + "lexie": 24123, + "##hesis": 24124, + "435": 24125, + "amiga": 24126, + "hermes": 24127, + "##pressing": 24128, + "##leen": 24129, + "chapels": 24130, + "gospels": 24131, + "jamal": 24132, + "##uating": 24133, + "compute": 24134, + "revolving": 24135, + "warp": 24136, + "##sso": 24137, + "##thes": 24138, + "armory": 24139, + "##eras": 24140, + "##gol": 24141, + "antrim": 24142, + "loki": 24143, + "##kow": 24144, + "##asian": 24145, + "##good": 24146, + "##zano": 24147, + "braid": 24148, + "handwriting": 24149, + "subdistrict": 24150, + "funky": 24151, + "pantheon": 24152, + "##iculate": 24153, + "concurrency": 24154, + "estimation": 24155, + "improper": 24156, + "juliana": 24157, + "##his": 24158, + "newcomers": 24159, + "johnstone": 24160, + "staten": 24161, + "communicated": 24162, + "##oco": 24163, + "##alle": 24164, + "sausage": 24165, + "stormy": 24166, + "##stered": 24167, + "##tters": 24168, + "superfamily": 24169, + "##grade": 24170, + "acidic": 24171, + "collateral": 24172, + "tabloid": 24173, + "##oped": 24174, + "##rza": 24175, + "bladder": 24176, + "austen": 24177, + "##ellant": 24178, + "mcgraw": 24179, + "##hay": 24180, + "hannibal": 24181, + "mein": 24182, + "aquino": 24183, + "lucifer": 24184, + "wo": 24185, + "badger": 24186, + "boar": 24187, + "cher": 24188, + "christensen": 24189, + "greenberg": 24190, + "interruption": 24191, + "##kken": 24192, + "jem": 24193, + "244": 24194, + "mocked": 24195, + "bottoms": 24196, + "cambridgeshire": 24197, + "##lide": 24198, + "sprawling": 24199, + "##bbly": 24200, + "eastwood": 24201, + "ghent": 24202, + "synth": 24203, + "##buck": 24204, + "advisers": 24205, + "##bah": 24206, + "nominally": 24207, + "hapoel": 24208, + "qu": 24209, + "daggers": 24210, + "estranged": 24211, + "fabricated": 24212, + "towels": 24213, + "vinnie": 24214, + "wcw": 24215, + "misunderstanding": 24216, + "anglia": 24217, + "nothin": 24218, + "unmistakable": 24219, + "##dust": 24220, + "##lova": 24221, + "chilly": 24222, + "marquette": 24223, + "truss": 24224, + "##edge": 24225, + "##erine": 24226, + "reece": 24227, + "##lty": 24228, + "##chemist": 24229, + "##connected": 24230, + "272": 24231, + "308": 24232, + "41st": 24233, + "bash": 24234, + "raion": 24235, + "waterfalls": 24236, + "##ump": 24237, + "##main": 24238, + "labyrinth": 24239, + "queue": 24240, + "theorist": 24241, + "##istle": 24242, + "bharatiya": 24243, + "flexed": 24244, + "soundtracks": 24245, + "rooney": 24246, + "leftist": 24247, + "patrolling": 24248, + "wharton": 24249, + "plainly": 24250, + "alleviate": 24251, + "eastman": 24252, + "schuster": 24253, + "topographic": 24254, + "engages": 24255, + "immensely": 24256, + "unbearable": 24257, + "fairchild": 24258, + "1620": 24259, + "dona": 24260, + "lurking": 24261, + "parisian": 24262, + "oliveira": 24263, + "ia": 24264, + "indictment": 24265, + "hahn": 24266, + "bangladeshi": 24267, + "##aster": 24268, + "vivo": 24269, + "##uming": 24270, + "##ential": 24271, + "antonia": 24272, + "expects": 24273, + "indoors": 24274, + "kildare": 24275, + "harlan": 24276, + "##logue": 24277, + "##ogenic": 24278, + "##sities": 24279, + "forgiven": 24280, + "##wat": 24281, + "childish": 24282, + "tavi": 24283, + "##mide": 24284, + "##orra": 24285, + "plausible": 24286, + "grimm": 24287, + "successively": 24288, + "scooted": 24289, + "##bola": 24290, + "##dget": 24291, + "##rith": 24292, + "spartans": 24293, + "emery": 24294, + "flatly": 24295, + "azure": 24296, + "epilogue": 24297, + "##wark": 24298, + "flourish": 24299, + "##iny": 24300, + "##tracted": 24301, + "##overs": 24302, + "##oshi": 24303, + "bestseller": 24304, + "distressed": 24305, + "receipt": 24306, + "spitting": 24307, + "hermit": 24308, + "topological": 24309, + "##cot": 24310, + "drilled": 24311, + "subunit": 24312, + "francs": 24313, + "##layer": 24314, + "eel": 24315, + "##fk": 24316, + "##itas": 24317, + "octopus": 24318, + "footprint": 24319, + "petitions": 24320, + "ufo": 24321, + "##say": 24322, + "##foil": 24323, + "interfering": 24324, + "leaking": 24325, + "palo": 24326, + "##metry": 24327, + "thistle": 24328, + "valiant": 24329, + "##pic": 24330, + "narayan": 24331, + "mcpherson": 24332, + "##fast": 24333, + "gonzales": 24334, + "##ym": 24335, + "##enne": 24336, + "dustin": 24337, + "novgorod": 24338, + "solos": 24339, + "##zman": 24340, + "doin": 24341, + "##raph": 24342, + "##patient": 24343, + "##meyer": 24344, + "soluble": 24345, + "ashland": 24346, + "cuffs": 24347, + "carole": 24348, + "pendleton": 24349, + "whistling": 24350, + "vassal": 24351, + "##river": 24352, + "deviation": 24353, + "revisited": 24354, + "constituents": 24355, + "rallied": 24356, + "rotate": 24357, + "loomed": 24358, + "##eil": 24359, + "##nting": 24360, + "amateurs": 24361, + "augsburg": 24362, + "auschwitz": 24363, + "crowns": 24364, + "skeletons": 24365, + "##cona": 24366, + "bonnet": 24367, + "257": 24368, + "dummy": 24369, + "globalization": 24370, + "simeon": 24371, + "sleeper": 24372, + "mandal": 24373, + "differentiated": 24374, + "##crow": 24375, + "##mare": 24376, + "milne": 24377, + "bundled": 24378, + "exasperated": 24379, + "talmud": 24380, + "owes": 24381, + "segregated": 24382, + "##feng": 24383, + "##uary": 24384, + "dentist": 24385, + "piracy": 24386, + "props": 24387, + "##rang": 24388, + "devlin": 24389, + "##torium": 24390, + "malicious": 24391, + "paws": 24392, + "##laid": 24393, + "dependency": 24394, + "##ergy": 24395, + "##fers": 24396, + "##enna": 24397, + "258": 24398, + "pistons": 24399, + "rourke": 24400, + "jed": 24401, + "grammatical": 24402, + "tres": 24403, + "maha": 24404, + "wig": 24405, + "512": 24406, + "ghostly": 24407, + "jayne": 24408, + "##achal": 24409, + "##creen": 24410, + "##ilis": 24411, + "##lins": 24412, + "##rence": 24413, + "designate": 24414, + "##with": 24415, + "arrogance": 24416, + "cambodian": 24417, + "clones": 24418, + "showdown": 24419, + "throttle": 24420, + "twain": 24421, + "##ception": 24422, + "lobes": 24423, + "metz": 24424, + "nagoya": 24425, + "335": 24426, + "braking": 24427, + "##furt": 24428, + "385": 24429, + "roaming": 24430, + "##minster": 24431, + "amin": 24432, + "crippled": 24433, + "##37": 24434, + "##llary": 24435, + "indifferent": 24436, + "hoffmann": 24437, + "idols": 24438, + "intimidating": 24439, + "1751": 24440, + "261": 24441, + "influenza": 24442, + "memo": 24443, + "onions": 24444, + "1748": 24445, + "bandage": 24446, + "consciously": 24447, + "##landa": 24448, + "##rage": 24449, + "clandestine": 24450, + "observes": 24451, + "swiped": 24452, + "tangle": 24453, + "##ener": 24454, + "##jected": 24455, + "##trum": 24456, + "##bill": 24457, + "##lta": 24458, + "hugs": 24459, + "congresses": 24460, + "josiah": 24461, + "spirited": 24462, + "##dek": 24463, + "humanist": 24464, + "managerial": 24465, + "filmmaking": 24466, + "inmate": 24467, + "rhymes": 24468, + "debuting": 24469, + "grimsby": 24470, + "ur": 24471, + "##laze": 24472, + "duplicate": 24473, + "vigor": 24474, + "##tf": 24475, + "republished": 24476, + "bolshevik": 24477, + "refurbishment": 24478, + "antibiotics": 24479, + "martini": 24480, + "methane": 24481, + "newscasts": 24482, + "royale": 24483, + "horizons": 24484, + "levant": 24485, + "iain": 24486, + "visas": 24487, + "##ischen": 24488, + "paler": 24489, + "##around": 24490, + "manifestation": 24491, + "snuck": 24492, + "alf": 24493, + "chop": 24494, + "futile": 24495, + "pedestal": 24496, + "rehab": 24497, + "##kat": 24498, + "bmg": 24499, + "kerman": 24500, + "res": 24501, + "fairbanks": 24502, + "jarrett": 24503, + "abstraction": 24504, + "saharan": 24505, + "##zek": 24506, + "1746": 24507, + "procedural": 24508, + "clearer": 24509, + "kincaid": 24510, + "sash": 24511, + "luciano": 24512, + "##ffey": 24513, + "crunch": 24514, + "helmut": 24515, + "##vara": 24516, + "revolutionaries": 24517, + "##tute": 24518, + "creamy": 24519, + "leach": 24520, + "##mmon": 24521, + "1747": 24522, + "permitting": 24523, + "nes": 24524, + "plight": 24525, + "wendell": 24526, + "##lese": 24527, + "contra": 24528, + "ts": 24529, + "clancy": 24530, + "ipa": 24531, + "mach": 24532, + "staples": 24533, + "autopsy": 24534, + "disturbances": 24535, + "nueva": 24536, + "karin": 24537, + "pontiac": 24538, + "##uding": 24539, + "proxy": 24540, + "venerable": 24541, + "haunt": 24542, + "leto": 24543, + "bergman": 24544, + "expands": 24545, + "##helm": 24546, + "wal": 24547, + "##pipe": 24548, + "canning": 24549, + "celine": 24550, + "cords": 24551, + "obesity": 24552, + "##enary": 24553, + "intrusion": 24554, + "planner": 24555, + "##phate": 24556, + "reasoned": 24557, + "sequencing": 24558, + "307": 24559, + "harrow": 24560, + "##chon": 24561, + "##dora": 24562, + "marred": 24563, + "mcintyre": 24564, + "repay": 24565, + "tarzan": 24566, + "darting": 24567, + "248": 24568, + "harrisburg": 24569, + "margarita": 24570, + "repulsed": 24571, + "##hur": 24572, + "##lding": 24573, + "belinda": 24574, + "hamburger": 24575, + "novo": 24576, + "compliant": 24577, + "runways": 24578, + "bingham": 24579, + "registrar": 24580, + "skyscraper": 24581, + "ic": 24582, + "cuthbert": 24583, + "improvisation": 24584, + "livelihood": 24585, + "##corp": 24586, + "##elial": 24587, + "admiring": 24588, + "##dened": 24589, + "sporadic": 24590, + "believer": 24591, + "casablanca": 24592, + "popcorn": 24593, + "##29": 24594, + "asha": 24595, + "shovel": 24596, + "##bek": 24597, + "##dice": 24598, + "coiled": 24599, + "tangible": 24600, + "##dez": 24601, + "casper": 24602, + "elsie": 24603, + "resin": 24604, + "tenderness": 24605, + "rectory": 24606, + "##ivision": 24607, + "avail": 24608, + "sonar": 24609, + "##mori": 24610, + "boutique": 24611, + "##dier": 24612, + "guerre": 24613, + "bathed": 24614, + "upbringing": 24615, + "vaulted": 24616, + "sandals": 24617, + "blessings": 24618, + "##naut": 24619, + "##utnant": 24620, + "1680": 24621, + "306": 24622, + "foxes": 24623, + "pia": 24624, + "corrosion": 24625, + "hesitantly": 24626, + "confederates": 24627, + "crystalline": 24628, + "footprints": 24629, + "shapiro": 24630, + "tirana": 24631, + "valentin": 24632, + "drones": 24633, + "45th": 24634, + "microscope": 24635, + "shipments": 24636, + "texted": 24637, + "inquisition": 24638, + "wry": 24639, + "guernsey": 24640, + "unauthorized": 24641, + "resigning": 24642, + "760": 24643, + "ripple": 24644, + "schubert": 24645, + "stu": 24646, + "reassure": 24647, + "felony": 24648, + "##ardo": 24649, + "brittle": 24650, + "koreans": 24651, + "##havan": 24652, + "##ives": 24653, + "dun": 24654, + "implicit": 24655, + "tyres": 24656, + "##aldi": 24657, + "##lth": 24658, + "magnolia": 24659, + "##ehan": 24660, + "##puri": 24661, + "##poulos": 24662, + "aggressively": 24663, + "fei": 24664, + "gr": 24665, + "familiarity": 24666, + "##poo": 24667, + "indicative": 24668, + "##trust": 24669, + "fundamentally": 24670, + "jimmie": 24671, + "overrun": 24672, + "395": 24673, + "anchors": 24674, + "moans": 24675, + "##opus": 24676, + "britannia": 24677, + "armagh": 24678, + "##ggle": 24679, + "purposely": 24680, + "seizing": 24681, + "##vao": 24682, + "bewildered": 24683, + "mundane": 24684, + "avoidance": 24685, + "cosmopolitan": 24686, + "geometridae": 24687, + "quartermaster": 24688, + "caf": 24689, + "415": 24690, + "chatter": 24691, + "engulfed": 24692, + "gleam": 24693, + "purge": 24694, + "##icate": 24695, + "juliette": 24696, + "jurisprudence": 24697, + "guerra": 24698, + "revisions": 24699, + "##bn": 24700, + "casimir": 24701, + "brew": 24702, + "##jm": 24703, + "1749": 24704, + "clapton": 24705, + "cloudy": 24706, + "conde": 24707, + "hermitage": 24708, + "278": 24709, + "simulations": 24710, + "torches": 24711, + "vincenzo": 24712, + "matteo": 24713, + "##rill": 24714, + "hidalgo": 24715, + "booming": 24716, + "westbound": 24717, + "accomplishment": 24718, + "tentacles": 24719, + "unaffected": 24720, + "##sius": 24721, + "annabelle": 24722, + "flopped": 24723, + "sloping": 24724, + "##litz": 24725, + "dreamer": 24726, + "interceptor": 24727, + "vu": 24728, + "##loh": 24729, + "consecration": 24730, + "copying": 24731, + "messaging": 24732, + "breaker": 24733, + "climates": 24734, + "hospitalized": 24735, + "1752": 24736, + "torino": 24737, + "afternoons": 24738, + "winfield": 24739, + "witnessing": 24740, + "##teacher": 24741, + "breakers": 24742, + "choirs": 24743, + "sawmill": 24744, + "coldly": 24745, + "##ege": 24746, + "sipping": 24747, + "haste": 24748, + "uninhabited": 24749, + "conical": 24750, + "bibliography": 24751, + "pamphlets": 24752, + "severn": 24753, + "edict": 24754, + "##oca": 24755, + "deux": 24756, + "illnesses": 24757, + "grips": 24758, + "##pl": 24759, + "rehearsals": 24760, + "sis": 24761, + "thinkers": 24762, + "tame": 24763, + "##keepers": 24764, + "1690": 24765, + "acacia": 24766, + "reformer": 24767, + "##osed": 24768, + "##rys": 24769, + "shuffling": 24770, + "##iring": 24771, + "##shima": 24772, + "eastbound": 24773, + "ionic": 24774, + "rhea": 24775, + "flees": 24776, + "littered": 24777, + "##oum": 24778, + "rocker": 24779, + "vomiting": 24780, + "groaning": 24781, + "champ": 24782, + "overwhelmingly": 24783, + "civilizations": 24784, + "paces": 24785, + "sloop": 24786, + "adoptive": 24787, + "##tish": 24788, + "skaters": 24789, + "##vres": 24790, + "aiding": 24791, + "mango": 24792, + "##joy": 24793, + "nikola": 24794, + "shriek": 24795, + "##ignon": 24796, + "pharmaceuticals": 24797, + "##mg": 24798, + "tuna": 24799, + "calvert": 24800, + "gustavo": 24801, + "stocked": 24802, + "yearbook": 24803, + "##urai": 24804, + "##mana": 24805, + "computed": 24806, + "subsp": 24807, + "riff": 24808, + "hanoi": 24809, + "kelvin": 24810, + "hamid": 24811, + "moors": 24812, + "pastures": 24813, + "summons": 24814, + "jihad": 24815, + "nectar": 24816, + "##ctors": 24817, + "bayou": 24818, + "untitled": 24819, + "pleasing": 24820, + "vastly": 24821, + "republics": 24822, + "intellect": 24823, + "##η": 24824, + "##ulio": 24825, + "##tou": 24826, + "crumbling": 24827, + "stylistic": 24828, + "sb": 24829, + "##ی": 24830, + "consolation": 24831, + "frequented": 24832, + "h₂o": 24833, + "walden": 24834, + "widows": 24835, + "##iens": 24836, + "404": 24837, + "##ignment": 24838, + "chunks": 24839, + "improves": 24840, + "288": 24841, + "grit": 24842, + "recited": 24843, + "##dev": 24844, + "snarl": 24845, + "sociological": 24846, + "##arte": 24847, + "##gul": 24848, + "inquired": 24849, + "##held": 24850, + "bruise": 24851, + "clube": 24852, + "consultancy": 24853, + "homogeneous": 24854, + "hornets": 24855, + "multiplication": 24856, + "pasta": 24857, + "prick": 24858, + "savior": 24859, + "##grin": 24860, + "##kou": 24861, + "##phile": 24862, + "yoon": 24863, + "##gara": 24864, + "grimes": 24865, + "vanishing": 24866, + "cheering": 24867, + "reacting": 24868, + "bn": 24869, + "distillery": 24870, + "##quisite": 24871, + "##vity": 24872, + "coe": 24873, + "dockyard": 24874, + "massif": 24875, + "##jord": 24876, + "escorts": 24877, + "voss": 24878, + "##valent": 24879, + "byte": 24880, + "chopped": 24881, + "hawke": 24882, + "illusions": 24883, + "workings": 24884, + "floats": 24885, + "##koto": 24886, + "##vac": 24887, + "kv": 24888, + "annapolis": 24889, + "madden": 24890, + "##onus": 24891, + "alvaro": 24892, + "noctuidae": 24893, + "##cum": 24894, + "##scopic": 24895, + "avenge": 24896, + "steamboat": 24897, + "forte": 24898, + "illustrates": 24899, + "erika": 24900, + "##trip": 24901, + "570": 24902, + "dew": 24903, + "nationalities": 24904, + "bran": 24905, + "manifested": 24906, + "thirsty": 24907, + "diversified": 24908, + "muscled": 24909, + "reborn": 24910, + "##standing": 24911, + "arson": 24912, + "##lessness": 24913, + "##dran": 24914, + "##logram": 24915, + "##boys": 24916, + "##kushima": 24917, + "##vious": 24918, + "willoughby": 24919, + "##phobia": 24920, + "286": 24921, + "alsace": 24922, + "dashboard": 24923, + "yuki": 24924, + "##chai": 24925, + "granville": 24926, + "myspace": 24927, + "publicized": 24928, + "tricked": 24929, + "##gang": 24930, + "adjective": 24931, + "##ater": 24932, + "relic": 24933, + "reorganisation": 24934, + "enthusiastically": 24935, + "indications": 24936, + "saxe": 24937, + "##lassified": 24938, + "consolidate": 24939, + "iec": 24940, + "padua": 24941, + "helplessly": 24942, + "ramps": 24943, + "renaming": 24944, + "regulars": 24945, + "pedestrians": 24946, + "accents": 24947, + "convicts": 24948, + "inaccurate": 24949, + "lowers": 24950, + "mana": 24951, + "##pati": 24952, + "barrie": 24953, + "bjp": 24954, + "outta": 24955, + "someplace": 24956, + "berwick": 24957, + "flanking": 24958, + "invoked": 24959, + "marrow": 24960, + "sparsely": 24961, + "excerpts": 24962, + "clothed": 24963, + "rei": 24964, + "##ginal": 24965, + "wept": 24966, + "##straße": 24967, + "##vish": 24968, + "alexa": 24969, + "excel": 24970, + "##ptive": 24971, + "membranes": 24972, + "aquitaine": 24973, + "creeks": 24974, + "cutler": 24975, + "sheppard": 24976, + "implementations": 24977, + "ns": 24978, + "##dur": 24979, + "fragrance": 24980, + "budge": 24981, + "concordia": 24982, + "magnesium": 24983, + "marcelo": 24984, + "##antes": 24985, + "gladly": 24986, + "vibrating": 24987, + "##rral": 24988, + "##ggles": 24989, + "montrose": 24990, + "##omba": 24991, + "lew": 24992, + "seamus": 24993, + "1630": 24994, + "cocky": 24995, + "##ament": 24996, + "##uen": 24997, + "bjorn": 24998, + "##rrick": 24999, + "fielder": 25000, + "fluttering": 25001, + "##lase": 25002, + "methyl": 25003, + "kimberley": 25004, + "mcdowell": 25005, + "reductions": 25006, + "barbed": 25007, + "##jic": 25008, + "##tonic": 25009, + "aeronautical": 25010, + "condensed": 25011, + "distracting": 25012, + "##promising": 25013, + "huffed": 25014, + "##cala": 25015, + "##sle": 25016, + "claudius": 25017, + "invincible": 25018, + "missy": 25019, + "pious": 25020, + "balthazar": 25021, + "ci": 25022, + "##lang": 25023, + "butte": 25024, + "combo": 25025, + "orson": 25026, + "##dication": 25027, + "myriad": 25028, + "1707": 25029, + "silenced": 25030, + "##fed": 25031, + "##rh": 25032, + "coco": 25033, + "netball": 25034, + "yourselves": 25035, + "##oza": 25036, + "clarify": 25037, + "heller": 25038, + "peg": 25039, + "durban": 25040, + "etudes": 25041, + "offender": 25042, + "roast": 25043, + "blackmail": 25044, + "curvature": 25045, + "##woods": 25046, + "vile": 25047, + "309": 25048, + "illicit": 25049, + "suriname": 25050, + "##linson": 25051, + "overture": 25052, + "1685": 25053, + "bubbling": 25054, + "gymnast": 25055, + "tucking": 25056, + "##mming": 25057, + "##ouin": 25058, + "maldives": 25059, + "##bala": 25060, + "gurney": 25061, + "##dda": 25062, + "##eased": 25063, + "##oides": 25064, + "backside": 25065, + "pinto": 25066, + "jars": 25067, + "racehorse": 25068, + "tending": 25069, + "##rdial": 25070, + "baronetcy": 25071, + "wiener": 25072, + "duly": 25073, + "##rke": 25074, + "barbarian": 25075, + "cupping": 25076, + "flawed": 25077, + "##thesis": 25078, + "bertha": 25079, + "pleistocene": 25080, + "puddle": 25081, + "swearing": 25082, + "##nob": 25083, + "##tically": 25084, + "fleeting": 25085, + "prostate": 25086, + "amulet": 25087, + "educating": 25088, + "##mined": 25089, + "##iti": 25090, + "##tler": 25091, + "75th": 25092, + "jens": 25093, + "respondents": 25094, + "analytics": 25095, + "cavaliers": 25096, + "papacy": 25097, + "raju": 25098, + "##iente": 25099, + "##ulum": 25100, + "##tip": 25101, + "funnel": 25102, + "271": 25103, + "disneyland": 25104, + "##lley": 25105, + "sociologist": 25106, + "##iam": 25107, + "2500": 25108, + "faulkner": 25109, + "louvre": 25110, + "menon": 25111, + "##dson": 25112, + "276": 25113, + "##ower": 25114, + "afterlife": 25115, + "mannheim": 25116, + "peptide": 25117, + "referees": 25118, + "comedians": 25119, + "meaningless": 25120, + "##anger": 25121, + "##laise": 25122, + "fabrics": 25123, + "hurley": 25124, + "renal": 25125, + "sleeps": 25126, + "##bour": 25127, + "##icle": 25128, + "breakout": 25129, + "kristin": 25130, + "roadside": 25131, + "animator": 25132, + "clover": 25133, + "disdain": 25134, + "unsafe": 25135, + "redesign": 25136, + "##urity": 25137, + "firth": 25138, + "barnsley": 25139, + "portage": 25140, + "reset": 25141, + "narrows": 25142, + "268": 25143, + "commandos": 25144, + "expansive": 25145, + "speechless": 25146, + "tubular": 25147, + "##lux": 25148, + "essendon": 25149, + "eyelashes": 25150, + "smashwords": 25151, + "##yad": 25152, + "##bang": 25153, + "##claim": 25154, + "craved": 25155, + "sprinted": 25156, + "chet": 25157, + "somme": 25158, + "astor": 25159, + "wrocław": 25160, + "orton": 25161, + "266": 25162, + "bane": 25163, + "##erving": 25164, + "##uing": 25165, + "mischief": 25166, + "##amps": 25167, + "##sund": 25168, + "scaling": 25169, + "terre": 25170, + "##xious": 25171, + "impairment": 25172, + "offenses": 25173, + "undermine": 25174, + "moi": 25175, + "soy": 25176, + "contiguous": 25177, + "arcadia": 25178, + "inuit": 25179, + "seam": 25180, + "##tops": 25181, + "macbeth": 25182, + "rebelled": 25183, + "##icative": 25184, + "##iot": 25185, + "590": 25186, + "elaborated": 25187, + "frs": 25188, + "uniformed": 25189, + "##dberg": 25190, + "259": 25191, + "powerless": 25192, + "priscilla": 25193, + "stimulated": 25194, + "980": 25195, + "qc": 25196, + "arboretum": 25197, + "frustrating": 25198, + "trieste": 25199, + "bullock": 25200, + "##nified": 25201, + "enriched": 25202, + "glistening": 25203, + "intern": 25204, + "##adia": 25205, + "locus": 25206, + "nouvelle": 25207, + "ollie": 25208, + "ike": 25209, + "lash": 25210, + "starboard": 25211, + "ee": 25212, + "tapestry": 25213, + "headlined": 25214, + "hove": 25215, + "rigged": 25216, + "##vite": 25217, + "pollock": 25218, + "##yme": 25219, + "thrive": 25220, + "clustered": 25221, + "cas": 25222, + "roi": 25223, + "gleamed": 25224, + "olympiad": 25225, + "##lino": 25226, + "pressured": 25227, + "regimes": 25228, + "##hosis": 25229, + "##lick": 25230, + "ripley": 25231, + "##ophone": 25232, + "kickoff": 25233, + "gallon": 25234, + "rockwell": 25235, + "##arable": 25236, + "crusader": 25237, + "glue": 25238, + "revolutions": 25239, + "scrambling": 25240, + "1714": 25241, + "grover": 25242, + "##jure": 25243, + "englishman": 25244, + "aztec": 25245, + "263": 25246, + "contemplating": 25247, + "coven": 25248, + "ipad": 25249, + "preach": 25250, + "triumphant": 25251, + "tufts": 25252, + "##esian": 25253, + "rotational": 25254, + "##phus": 25255, + "328": 25256, + "falkland": 25257, + "##brates": 25258, + "strewn": 25259, + "clarissa": 25260, + "rejoin": 25261, + "environmentally": 25262, + "glint": 25263, + "banded": 25264, + "drenched": 25265, + "moat": 25266, + "albanians": 25267, + "johor": 25268, + "rr": 25269, + "maestro": 25270, + "malley": 25271, + "nouveau": 25272, + "shaded": 25273, + "taxonomy": 25274, + "v6": 25275, + "adhere": 25276, + "bunk": 25277, + "airfields": 25278, + "##ritan": 25279, + "1741": 25280, + "encompass": 25281, + "remington": 25282, + "tran": 25283, + "##erative": 25284, + "amelie": 25285, + "mazda": 25286, + "friar": 25287, + "morals": 25288, + "passions": 25289, + "##zai": 25290, + "breadth": 25291, + "vis": 25292, + "##hae": 25293, + "argus": 25294, + "burnham": 25295, + "caressing": 25296, + "insider": 25297, + "rudd": 25298, + "##imov": 25299, + "##mini": 25300, + "##rso": 25301, + "italianate": 25302, + "murderous": 25303, + "textual": 25304, + "wainwright": 25305, + "armada": 25306, + "bam": 25307, + "weave": 25308, + "timer": 25309, + "##taken": 25310, + "##nh": 25311, + "fra": 25312, + "##crest": 25313, + "ardent": 25314, + "salazar": 25315, + "taps": 25316, + "tunis": 25317, + "##ntino": 25318, + "allegro": 25319, + "gland": 25320, + "philanthropic": 25321, + "##chester": 25322, + "implication": 25323, + "##optera": 25324, + "esq": 25325, + "judas": 25326, + "noticeably": 25327, + "wynn": 25328, + "##dara": 25329, + "inched": 25330, + "indexed": 25331, + "crises": 25332, + "villiers": 25333, + "bandit": 25334, + "royalties": 25335, + "patterned": 25336, + "cupboard": 25337, + "interspersed": 25338, + "accessory": 25339, + "isla": 25340, + "kendrick": 25341, + "entourage": 25342, + "stitches": 25343, + "##esthesia": 25344, + "headwaters": 25345, + "##ior": 25346, + "interlude": 25347, + "distraught": 25348, + "draught": 25349, + "1727": 25350, + "##basket": 25351, + "biased": 25352, + "sy": 25353, + "transient": 25354, + "triad": 25355, + "subgenus": 25356, + "adapting": 25357, + "kidd": 25358, + "shortstop": 25359, + "##umatic": 25360, + "dimly": 25361, + "spiked": 25362, + "mcleod": 25363, + "reprint": 25364, + "nellie": 25365, + "pretoria": 25366, + "windmill": 25367, + "##cek": 25368, + "singled": 25369, + "##mps": 25370, + "273": 25371, + "reunite": 25372, + "##orous": 25373, + "747": 25374, + "bankers": 25375, + "outlying": 25376, + "##omp": 25377, + "##ports": 25378, + "##tream": 25379, + "apologies": 25380, + "cosmetics": 25381, + "patsy": 25382, + "##deh": 25383, + "##ocks": 25384, + "##yson": 25385, + "bender": 25386, + "nantes": 25387, + "serene": 25388, + "##nad": 25389, + "lucha": 25390, + "mmm": 25391, + "323": 25392, + "##cius": 25393, + "##gli": 25394, + "cmll": 25395, + "coinage": 25396, + "nestor": 25397, + "juarez": 25398, + "##rook": 25399, + "smeared": 25400, + "sprayed": 25401, + "twitching": 25402, + "sterile": 25403, + "irina": 25404, + "embodied": 25405, + "juveniles": 25406, + "enveloped": 25407, + "miscellaneous": 25408, + "cancers": 25409, + "dq": 25410, + "gulped": 25411, + "luisa": 25412, + "crested": 25413, + "swat": 25414, + "donegal": 25415, + "ref": 25416, + "##anov": 25417, + "##acker": 25418, + "hearst": 25419, + "mercantile": 25420, + "##lika": 25421, + "doorbell": 25422, + "ua": 25423, + "vicki": 25424, + "##alla": 25425, + "##som": 25426, + "bilbao": 25427, + "psychologists": 25428, + "stryker": 25429, + "sw": 25430, + "horsemen": 25431, + "turkmenistan": 25432, + "wits": 25433, + "##national": 25434, + "anson": 25435, + "mathew": 25436, + "screenings": 25437, + "##umb": 25438, + "rihanna": 25439, + "##agne": 25440, + "##nessy": 25441, + "aisles": 25442, + "##iani": 25443, + "##osphere": 25444, + "hines": 25445, + "kenton": 25446, + "saskatoon": 25447, + "tasha": 25448, + "truncated": 25449, + "##champ": 25450, + "##itan": 25451, + "mildred": 25452, + "advises": 25453, + "fredrik": 25454, + "interpreting": 25455, + "inhibitors": 25456, + "##athi": 25457, + "spectroscopy": 25458, + "##hab": 25459, + "##kong": 25460, + "karim": 25461, + "panda": 25462, + "##oia": 25463, + "##nail": 25464, + "##vc": 25465, + "conqueror": 25466, + "kgb": 25467, + "leukemia": 25468, + "##dity": 25469, + "arrivals": 25470, + "cheered": 25471, + "pisa": 25472, + "phosphorus": 25473, + "shielded": 25474, + "##riated": 25475, + "mammal": 25476, + "unitarian": 25477, + "urgently": 25478, + "chopin": 25479, + "sanitary": 25480, + "##mission": 25481, + "spicy": 25482, + "drugged": 25483, + "hinges": 25484, + "##tort": 25485, + "tipping": 25486, + "trier": 25487, + "impoverished": 25488, + "westchester": 25489, + "##caster": 25490, + "267": 25491, + "epoch": 25492, + "nonstop": 25493, + "##gman": 25494, + "##khov": 25495, + "aromatic": 25496, + "centrally": 25497, + "cerro": 25498, + "##tively": 25499, + "##vio": 25500, + "billions": 25501, + "modulation": 25502, + "sedimentary": 25503, + "283": 25504, + "facilitating": 25505, + "outrageous": 25506, + "goldstein": 25507, + "##eak": 25508, + "##kt": 25509, + "ld": 25510, + "maitland": 25511, + "penultimate": 25512, + "pollard": 25513, + "##dance": 25514, + "fleets": 25515, + "spaceship": 25516, + "vertebrae": 25517, + "##nig": 25518, + "alcoholism": 25519, + "als": 25520, + "recital": 25521, + "##bham": 25522, + "##ference": 25523, + "##omics": 25524, + "m2": 25525, + "##bm": 25526, + "trois": 25527, + "##tropical": 25528, + "##в": 25529, + "commemorates": 25530, + "##meric": 25531, + "marge": 25532, + "##raction": 25533, + "1643": 25534, + "670": 25535, + "cosmetic": 25536, + "ravaged": 25537, + "##ige": 25538, + "catastrophe": 25539, + "eng": 25540, + "##shida": 25541, + "albrecht": 25542, + "arterial": 25543, + "bellamy": 25544, + "decor": 25545, + "harmon": 25546, + "##rde": 25547, + "bulbs": 25548, + "synchronized": 25549, + "vito": 25550, + "easiest": 25551, + "shetland": 25552, + "shielding": 25553, + "wnba": 25554, + "##glers": 25555, + "##ssar": 25556, + "##riam": 25557, + "brianna": 25558, + "cumbria": 25559, + "##aceous": 25560, + "##rard": 25561, + "cores": 25562, + "thayer": 25563, + "##nsk": 25564, + "brood": 25565, + "hilltop": 25566, + "luminous": 25567, + "carts": 25568, + "keynote": 25569, + "larkin": 25570, + "logos": 25571, + "##cta": 25572, + "##ا": 25573, + "##mund": 25574, + "##quay": 25575, + "lilith": 25576, + "tinted": 25577, + "277": 25578, + "wrestle": 25579, + "mobilization": 25580, + "##uses": 25581, + "sequential": 25582, + "siam": 25583, + "bloomfield": 25584, + "takahashi": 25585, + "274": 25586, + "##ieving": 25587, + "presenters": 25588, + "ringo": 25589, + "blazed": 25590, + "witty": 25591, + "##oven": 25592, + "##ignant": 25593, + "devastation": 25594, + "haydn": 25595, + "harmed": 25596, + "newt": 25597, + "therese": 25598, + "##peed": 25599, + "gershwin": 25600, + "molina": 25601, + "rabbis": 25602, + "sudanese": 25603, + "001": 25604, + "innate": 25605, + "restarted": 25606, + "##sack": 25607, + "##fus": 25608, + "slices": 25609, + "wb": 25610, + "##shah": 25611, + "enroll": 25612, + "hypothetical": 25613, + "hysterical": 25614, + "1743": 25615, + "fabio": 25616, + "indefinite": 25617, + "warped": 25618, + "##hg": 25619, + "exchanging": 25620, + "525": 25621, + "unsuitable": 25622, + "##sboro": 25623, + "gallo": 25624, + "1603": 25625, + "bret": 25626, + "cobalt": 25627, + "homemade": 25628, + "##hunter": 25629, + "mx": 25630, + "operatives": 25631, + "##dhar": 25632, + "terraces": 25633, + "durable": 25634, + "latch": 25635, + "pens": 25636, + "whorls": 25637, + "##ctuated": 25638, + "##eaux": 25639, + "billing": 25640, + "ligament": 25641, + "succumbed": 25642, + "##gly": 25643, + "regulators": 25644, + "spawn": 25645, + "##brick": 25646, + "##stead": 25647, + "filmfare": 25648, + "rochelle": 25649, + "##nzo": 25650, + "1725": 25651, + "circumstance": 25652, + "saber": 25653, + "supplements": 25654, + "##nsky": 25655, + "##tson": 25656, + "crowe": 25657, + "wellesley": 25658, + "carrot": 25659, + "##9th": 25660, + "##movable": 25661, + "primate": 25662, + "drury": 25663, + "sincerely": 25664, + "topical": 25665, + "##mad": 25666, + "##rao": 25667, + "callahan": 25668, + "kyiv": 25669, + "smarter": 25670, + "tits": 25671, + "undo": 25672, + "##yeh": 25673, + "announcements": 25674, + "anthologies": 25675, + "barrio": 25676, + "nebula": 25677, + "##islaus": 25678, + "##shaft": 25679, + "##tyn": 25680, + "bodyguards": 25681, + "2021": 25682, + "assassinate": 25683, + "barns": 25684, + "emmett": 25685, + "scully": 25686, + "##mah": 25687, + "##yd": 25688, + "##eland": 25689, + "##tino": 25690, + "##itarian": 25691, + "demoted": 25692, + "gorman": 25693, + "lashed": 25694, + "prized": 25695, + "adventist": 25696, + "writ": 25697, + "##gui": 25698, + "alla": 25699, + "invertebrates": 25700, + "##ausen": 25701, + "1641": 25702, + "amman": 25703, + "1742": 25704, + "align": 25705, + "healy": 25706, + "redistribution": 25707, + "##gf": 25708, + "##rize": 25709, + "insulation": 25710, + "##drop": 25711, + "adherents": 25712, + "hezbollah": 25713, + "vitro": 25714, + "ferns": 25715, + "yanking": 25716, + "269": 25717, + "php": 25718, + "registering": 25719, + "uppsala": 25720, + "cheerleading": 25721, + "confines": 25722, + "mischievous": 25723, + "tully": 25724, + "##ross": 25725, + "49th": 25726, + "docked": 25727, + "roam": 25728, + "stipulated": 25729, + "pumpkin": 25730, + "##bry": 25731, + "prompt": 25732, + "##ezer": 25733, + "blindly": 25734, + "shuddering": 25735, + "craftsmen": 25736, + "frail": 25737, + "scented": 25738, + "katharine": 25739, + "scramble": 25740, + "shaggy": 25741, + "sponge": 25742, + "helix": 25743, + "zaragoza": 25744, + "279": 25745, + "##52": 25746, + "43rd": 25747, + "backlash": 25748, + "fontaine": 25749, + "seizures": 25750, + "posse": 25751, + "cowan": 25752, + "nonfiction": 25753, + "telenovela": 25754, + "wwii": 25755, + "hammered": 25756, + "undone": 25757, + "##gpur": 25758, + "encircled": 25759, + "irs": 25760, + "##ivation": 25761, + "artefacts": 25762, + "oneself": 25763, + "searing": 25764, + "smallpox": 25765, + "##belle": 25766, + "##osaurus": 25767, + "shandong": 25768, + "breached": 25769, + "upland": 25770, + "blushing": 25771, + "rankin": 25772, + "infinitely": 25773, + "psyche": 25774, + "tolerated": 25775, + "docking": 25776, + "evicted": 25777, + "##col": 25778, + "unmarked": 25779, + "##lving": 25780, + "gnome": 25781, + "lettering": 25782, + "litres": 25783, + "musique": 25784, + "##oint": 25785, + "benevolent": 25786, + "##jal": 25787, + "blackened": 25788, + "##anna": 25789, + "mccall": 25790, + "racers": 25791, + "tingle": 25792, + "##ocene": 25793, + "##orestation": 25794, + "introductions": 25795, + "radically": 25796, + "292": 25797, + "##hiff": 25798, + "##باد": 25799, + "1610": 25800, + "1739": 25801, + "munchen": 25802, + "plead": 25803, + "##nka": 25804, + "condo": 25805, + "scissors": 25806, + "##sight": 25807, + "##tens": 25808, + "apprehension": 25809, + "##cey": 25810, + "##yin": 25811, + "hallmark": 25812, + "watering": 25813, + "formulas": 25814, + "sequels": 25815, + "##llas": 25816, + "aggravated": 25817, + "bae": 25818, + "commencing": 25819, + "##building": 25820, + "enfield": 25821, + "prohibits": 25822, + "marne": 25823, + "vedic": 25824, + "civilized": 25825, + "euclidean": 25826, + "jagger": 25827, + "beforehand": 25828, + "blasts": 25829, + "dumont": 25830, + "##arney": 25831, + "##nem": 25832, + "740": 25833, + "conversions": 25834, + "hierarchical": 25835, + "rios": 25836, + "simulator": 25837, + "##dya": 25838, + "##lellan": 25839, + "hedges": 25840, + "oleg": 25841, + "thrusts": 25842, + "shadowed": 25843, + "darby": 25844, + "maximize": 25845, + "1744": 25846, + "gregorian": 25847, + "##nded": 25848, + "##routed": 25849, + "sham": 25850, + "unspecified": 25851, + "##hog": 25852, + "emory": 25853, + "factual": 25854, + "##smo": 25855, + "##tp": 25856, + "fooled": 25857, + "##rger": 25858, + "ortega": 25859, + "wellness": 25860, + "marlon": 25861, + "##oton": 25862, + "##urance": 25863, + "casket": 25864, + "keating": 25865, + "ley": 25866, + "enclave": 25867, + "##ayan": 25868, + "char": 25869, + "influencing": 25870, + "jia": 25871, + "##chenko": 25872, + "412": 25873, + "ammonia": 25874, + "erebidae": 25875, + "incompatible": 25876, + "violins": 25877, + "cornered": 25878, + "##arat": 25879, + "grooves": 25880, + "astronauts": 25881, + "columbian": 25882, + "rampant": 25883, + "fabrication": 25884, + "kyushu": 25885, + "mahmud": 25886, + "vanish": 25887, + "##dern": 25888, + "mesopotamia": 25889, + "##lete": 25890, + "ict": 25891, + "##rgen": 25892, + "caspian": 25893, + "kenji": 25894, + "pitted": 25895, + "##vered": 25896, + "999": 25897, + "grimace": 25898, + "roanoke": 25899, + "tchaikovsky": 25900, + "twinned": 25901, + "##analysis": 25902, + "##awan": 25903, + "xinjiang": 25904, + "arias": 25905, + "clemson": 25906, + "kazakh": 25907, + "sizable": 25908, + "1662": 25909, + "##khand": 25910, + "##vard": 25911, + "plunge": 25912, + "tatum": 25913, + "vittorio": 25914, + "##nden": 25915, + "cholera": 25916, + "##dana": 25917, + "##oper": 25918, + "bracing": 25919, + "indifference": 25920, + "projectile": 25921, + "superliga": 25922, + "##chee": 25923, + "realises": 25924, + "upgrading": 25925, + "299": 25926, + "porte": 25927, + "retribution": 25928, + "##vies": 25929, + "nk": 25930, + "stil": 25931, + "##resses": 25932, + "ama": 25933, + "bureaucracy": 25934, + "blackberry": 25935, + "bosch": 25936, + "testosterone": 25937, + "collapses": 25938, + "greer": 25939, + "##pathic": 25940, + "ioc": 25941, + "fifties": 25942, + "malls": 25943, + "##erved": 25944, + "bao": 25945, + "baskets": 25946, + "adolescents": 25947, + "siegfried": 25948, + "##osity": 25949, + "##tosis": 25950, + "mantra": 25951, + "detecting": 25952, + "existent": 25953, + "fledgling": 25954, + "##cchi": 25955, + "dissatisfied": 25956, + "gan": 25957, + "telecommunication": 25958, + "mingled": 25959, + "sobbed": 25960, + "6000": 25961, + "controversies": 25962, + "outdated": 25963, + "taxis": 25964, + "##raus": 25965, + "fright": 25966, + "slams": 25967, + "##lham": 25968, + "##fect": 25969, + "##tten": 25970, + "detectors": 25971, + "fetal": 25972, + "tanned": 25973, + "##uw": 25974, + "fray": 25975, + "goth": 25976, + "olympian": 25977, + "skipping": 25978, + "mandates": 25979, + "scratches": 25980, + "sheng": 25981, + "unspoken": 25982, + "hyundai": 25983, + "tracey": 25984, + "hotspur": 25985, + "restrictive": 25986, + "##buch": 25987, + "americana": 25988, + "mundo": 25989, + "##bari": 25990, + "burroughs": 25991, + "diva": 25992, + "vulcan": 25993, + "##6th": 25994, + "distinctions": 25995, + "thumping": 25996, + "##ngen": 25997, + "mikey": 25998, + "sheds": 25999, + "fide": 26000, + "rescues": 26001, + "springsteen": 26002, + "vested": 26003, + "valuation": 26004, + "##ece": 26005, + "##ely": 26006, + "pinnacle": 26007, + "rake": 26008, + "sylvie": 26009, + "##edo": 26010, + "almond": 26011, + "quivering": 26012, + "##irus": 26013, + "alteration": 26014, + "faltered": 26015, + "##wad": 26016, + "51st": 26017, + "hydra": 26018, + "ticked": 26019, + "##kato": 26020, + "recommends": 26021, + "##dicated": 26022, + "antigua": 26023, + "arjun": 26024, + "stagecoach": 26025, + "wilfred": 26026, + "trickle": 26027, + "pronouns": 26028, + "##pon": 26029, + "aryan": 26030, + "nighttime": 26031, + "##anian": 26032, + "gall": 26033, + "pea": 26034, + "stitch": 26035, + "##hei": 26036, + "leung": 26037, + "milos": 26038, + "##dini": 26039, + "eritrea": 26040, + "nexus": 26041, + "starved": 26042, + "snowfall": 26043, + "kant": 26044, + "parasitic": 26045, + "cot": 26046, + "discus": 26047, + "hana": 26048, + "strikers": 26049, + "appleton": 26050, + "kitchens": 26051, + "##erina": 26052, + "##partisan": 26053, + "##itha": 26054, + "##vius": 26055, + "disclose": 26056, + "metis": 26057, + "##channel": 26058, + "1701": 26059, + "tesla": 26060, + "##vera": 26061, + "fitch": 26062, + "1735": 26063, + "blooded": 26064, + "##tila": 26065, + "decimal": 26066, + "##tang": 26067, + "##bai": 26068, + "cyclones": 26069, + "eun": 26070, + "bottled": 26071, + "peas": 26072, + "pensacola": 26073, + "basha": 26074, + "bolivian": 26075, + "crabs": 26076, + "boil": 26077, + "lanterns": 26078, + "partridge": 26079, + "roofed": 26080, + "1645": 26081, + "necks": 26082, + "##phila": 26083, + "opined": 26084, + "patting": 26085, + "##kla": 26086, + "##lland": 26087, + "chuckles": 26088, + "volta": 26089, + "whereupon": 26090, + "##nche": 26091, + "devout": 26092, + "euroleague": 26093, + "suicidal": 26094, + "##dee": 26095, + "inherently": 26096, + "involuntary": 26097, + "knitting": 26098, + "nasser": 26099, + "##hide": 26100, + "puppets": 26101, + "colourful": 26102, + "courageous": 26103, + "southend": 26104, + "stills": 26105, + "miraculous": 26106, + "hodgson": 26107, + "richer": 26108, + "rochdale": 26109, + "ethernet": 26110, + "greta": 26111, + "uniting": 26112, + "prism": 26113, + "umm": 26114, + "##haya": 26115, + "##itical": 26116, + "##utation": 26117, + "deterioration": 26118, + "pointe": 26119, + "prowess": 26120, + "##ropriation": 26121, + "lids": 26122, + "scranton": 26123, + "billings": 26124, + "subcontinent": 26125, + "##koff": 26126, + "##scope": 26127, + "brute": 26128, + "kellogg": 26129, + "psalms": 26130, + "degraded": 26131, + "##vez": 26132, + "stanisław": 26133, + "##ructured": 26134, + "ferreira": 26135, + "pun": 26136, + "astonishing": 26137, + "gunnar": 26138, + "##yat": 26139, + "arya": 26140, + "prc": 26141, + "gottfried": 26142, + "##tight": 26143, + "excursion": 26144, + "##ographer": 26145, + "dina": 26146, + "##quil": 26147, + "##nare": 26148, + "huffington": 26149, + "illustrious": 26150, + "wilbur": 26151, + "gundam": 26152, + "verandah": 26153, + "##zard": 26154, + "naacp": 26155, + "##odle": 26156, + "constructive": 26157, + "fjord": 26158, + "kade": 26159, + "##naud": 26160, + "generosity": 26161, + "thrilling": 26162, + "baseline": 26163, + "cayman": 26164, + "frankish": 26165, + "plastics": 26166, + "accommodations": 26167, + "zoological": 26168, + "##fting": 26169, + "cedric": 26170, + "qb": 26171, + "motorized": 26172, + "##dome": 26173, + "##otted": 26174, + "squealed": 26175, + "tackled": 26176, + "canucks": 26177, + "budgets": 26178, + "situ": 26179, + "asthma": 26180, + "dail": 26181, + "gabled": 26182, + "grasslands": 26183, + "whimpered": 26184, + "writhing": 26185, + "judgments": 26186, + "##65": 26187, + "minnie": 26188, + "pv": 26189, + "##carbon": 26190, + "bananas": 26191, + "grille": 26192, + "domes": 26193, + "monique": 26194, + "odin": 26195, + "maguire": 26196, + "markham": 26197, + "tierney": 26198, + "##estra": 26199, + "##chua": 26200, + "libel": 26201, + "poke": 26202, + "speedy": 26203, + "atrium": 26204, + "laval": 26205, + "notwithstanding": 26206, + "##edly": 26207, + "fai": 26208, + "kala": 26209, + "##sur": 26210, + "robb": 26211, + "##sma": 26212, + "listings": 26213, + "luz": 26214, + "supplementary": 26215, + "tianjin": 26216, + "##acing": 26217, + "enzo": 26218, + "jd": 26219, + "ric": 26220, + "scanner": 26221, + "croats": 26222, + "transcribed": 26223, + "##49": 26224, + "arden": 26225, + "cv": 26226, + "##hair": 26227, + "##raphy": 26228, + "##lver": 26229, + "##uy": 26230, + "357": 26231, + "seventies": 26232, + "staggering": 26233, + "alam": 26234, + "horticultural": 26235, + "hs": 26236, + "regression": 26237, + "timbers": 26238, + "blasting": 26239, + "##ounded": 26240, + "montagu": 26241, + "manipulating": 26242, + "##cit": 26243, + "catalytic": 26244, + "1550": 26245, + "troopers": 26246, + "##meo": 26247, + "condemnation": 26248, + "fitzpatrick": 26249, + "##oire": 26250, + "##roved": 26251, + "inexperienced": 26252, + "1670": 26253, + "castes": 26254, + "##lative": 26255, + "outing": 26256, + "314": 26257, + "dubois": 26258, + "flicking": 26259, + "quarrel": 26260, + "ste": 26261, + "learners": 26262, + "1625": 26263, + "iq": 26264, + "whistled": 26265, + "##class": 26266, + "282": 26267, + "classify": 26268, + "tariffs": 26269, + "temperament": 26270, + "355": 26271, + "folly": 26272, + "liszt": 26273, + "##yles": 26274, + "immersed": 26275, + "jordanian": 26276, + "ceasefire": 26277, + "apparel": 26278, + "extras": 26279, + "maru": 26280, + "fished": 26281, + "##bio": 26282, + "harta": 26283, + "stockport": 26284, + "assortment": 26285, + "craftsman": 26286, + "paralysis": 26287, + "transmitters": 26288, + "##cola": 26289, + "blindness": 26290, + "##wk": 26291, + "fatally": 26292, + "proficiency": 26293, + "solemnly": 26294, + "##orno": 26295, + "repairing": 26296, + "amore": 26297, + "groceries": 26298, + "ultraviolet": 26299, + "##chase": 26300, + "schoolhouse": 26301, + "##tua": 26302, + "resurgence": 26303, + "nailed": 26304, + "##otype": 26305, + "##×": 26306, + "ruse": 26307, + "saliva": 26308, + "diagrams": 26309, + "##tructing": 26310, + "albans": 26311, + "rann": 26312, + "thirties": 26313, + "1b": 26314, + "antennas": 26315, + "hilarious": 26316, + "cougars": 26317, + "paddington": 26318, + "stats": 26319, + "##eger": 26320, + "breakaway": 26321, + "ipod": 26322, + "reza": 26323, + "authorship": 26324, + "prohibiting": 26325, + "scoffed": 26326, + "##etz": 26327, + "##ttle": 26328, + "conscription": 26329, + "defected": 26330, + "trondheim": 26331, + "##fires": 26332, + "ivanov": 26333, + "keenan": 26334, + "##adan": 26335, + "##ciful": 26336, + "##fb": 26337, + "##slow": 26338, + "locating": 26339, + "##ials": 26340, + "##tford": 26341, + "cadiz": 26342, + "basalt": 26343, + "blankly": 26344, + "interned": 26345, + "rags": 26346, + "rattling": 26347, + "##tick": 26348, + "carpathian": 26349, + "reassured": 26350, + "sync": 26351, + "bum": 26352, + "guildford": 26353, + "iss": 26354, + "staunch": 26355, + "##onga": 26356, + "astronomers": 26357, + "sera": 26358, + "sofie": 26359, + "emergencies": 26360, + "susquehanna": 26361, + "##heard": 26362, + "duc": 26363, + "mastery": 26364, + "vh1": 26365, + "williamsburg": 26366, + "bayer": 26367, + "buckled": 26368, + "craving": 26369, + "##khan": 26370, + "##rdes": 26371, + "bloomington": 26372, + "##write": 26373, + "alton": 26374, + "barbecue": 26375, + "##bians": 26376, + "justine": 26377, + "##hri": 26378, + "##ndt": 26379, + "delightful": 26380, + "smartphone": 26381, + "newtown": 26382, + "photon": 26383, + "retrieval": 26384, + "peugeot": 26385, + "hissing": 26386, + "##monium": 26387, + "##orough": 26388, + "flavors": 26389, + "lighted": 26390, + "relaunched": 26391, + "tainted": 26392, + "##games": 26393, + "##lysis": 26394, + "anarchy": 26395, + "microscopic": 26396, + "hopping": 26397, + "adept": 26398, + "evade": 26399, + "evie": 26400, + "##beau": 26401, + "inhibit": 26402, + "sinn": 26403, + "adjustable": 26404, + "hurst": 26405, + "intuition": 26406, + "wilton": 26407, + "cisco": 26408, + "44th": 26409, + "lawful": 26410, + "lowlands": 26411, + "stockings": 26412, + "thierry": 26413, + "##dalen": 26414, + "##hila": 26415, + "##nai": 26416, + "fates": 26417, + "prank": 26418, + "tb": 26419, + "maison": 26420, + "lobbied": 26421, + "provocative": 26422, + "1724": 26423, + "4a": 26424, + "utopia": 26425, + "##qual": 26426, + "carbonate": 26427, + "gujarati": 26428, + "purcell": 26429, + "##rford": 26430, + "curtiss": 26431, + "##mei": 26432, + "overgrown": 26433, + "arenas": 26434, + "mediation": 26435, + "swallows": 26436, + "##rnik": 26437, + "respectful": 26438, + "turnbull": 26439, + "##hedron": 26440, + "##hope": 26441, + "alyssa": 26442, + "ozone": 26443, + "##ʻi": 26444, + "ami": 26445, + "gestapo": 26446, + "johansson": 26447, + "snooker": 26448, + "canteen": 26449, + "cuff": 26450, + "declines": 26451, + "empathy": 26452, + "stigma": 26453, + "##ags": 26454, + "##iner": 26455, + "##raine": 26456, + "taxpayers": 26457, + "gui": 26458, + "volga": 26459, + "##wright": 26460, + "##copic": 26461, + "lifespan": 26462, + "overcame": 26463, + "tattooed": 26464, + "enactment": 26465, + "giggles": 26466, + "##ador": 26467, + "##camp": 26468, + "barrington": 26469, + "bribe": 26470, + "obligatory": 26471, + "orbiting": 26472, + "peng": 26473, + "##enas": 26474, + "elusive": 26475, + "sucker": 26476, + "##vating": 26477, + "cong": 26478, + "hardship": 26479, + "empowered": 26480, + "anticipating": 26481, + "estrada": 26482, + "cryptic": 26483, + "greasy": 26484, + "detainees": 26485, + "planck": 26486, + "sudbury": 26487, + "plaid": 26488, + "dod": 26489, + "marriott": 26490, + "kayla": 26491, + "##ears": 26492, + "##vb": 26493, + "##zd": 26494, + "mortally": 26495, + "##hein": 26496, + "cognition": 26497, + "radha": 26498, + "319": 26499, + "liechtenstein": 26500, + "meade": 26501, + "richly": 26502, + "argyle": 26503, + "harpsichord": 26504, + "liberalism": 26505, + "trumpets": 26506, + "lauded": 26507, + "tyrant": 26508, + "salsa": 26509, + "tiled": 26510, + "lear": 26511, + "promoters": 26512, + "reused": 26513, + "slicing": 26514, + "trident": 26515, + "##chuk": 26516, + "##gami": 26517, + "##lka": 26518, + "cantor": 26519, + "checkpoint": 26520, + "##points": 26521, + "gaul": 26522, + "leger": 26523, + "mammalian": 26524, + "##tov": 26525, + "##aar": 26526, + "##schaft": 26527, + "doha": 26528, + "frenchman": 26529, + "nirvana": 26530, + "##vino": 26531, + "delgado": 26532, + "headlining": 26533, + "##eron": 26534, + "##iography": 26535, + "jug": 26536, + "tko": 26537, + "1649": 26538, + "naga": 26539, + "intersections": 26540, + "##jia": 26541, + "benfica": 26542, + "nawab": 26543, + "##suka": 26544, + "ashford": 26545, + "gulp": 26546, + "##deck": 26547, + "##vill": 26548, + "##rug": 26549, + "brentford": 26550, + "frazier": 26551, + "pleasures": 26552, + "dunne": 26553, + "potsdam": 26554, + "shenzhen": 26555, + "dentistry": 26556, + "##tec": 26557, + "flanagan": 26558, + "##dorff": 26559, + "##hear": 26560, + "chorale": 26561, + "dinah": 26562, + "prem": 26563, + "quezon": 26564, + "##rogated": 26565, + "relinquished": 26566, + "sutra": 26567, + "terri": 26568, + "##pani": 26569, + "flaps": 26570, + "##rissa": 26571, + "poly": 26572, + "##rnet": 26573, + "homme": 26574, + "aback": 26575, + "##eki": 26576, + "linger": 26577, + "womb": 26578, + "##kson": 26579, + "##lewood": 26580, + "doorstep": 26581, + "orthodoxy": 26582, + "threaded": 26583, + "westfield": 26584, + "##rval": 26585, + "dioceses": 26586, + "fridays": 26587, + "subsided": 26588, + "##gata": 26589, + "loyalists": 26590, + "##biotic": 26591, + "##ettes": 26592, + "letterman": 26593, + "lunatic": 26594, + "prelate": 26595, + "tenderly": 26596, + "invariably": 26597, + "souza": 26598, + "thug": 26599, + "winslow": 26600, + "##otide": 26601, + "furlongs": 26602, + "gogh": 26603, + "jeopardy": 26604, + "##runa": 26605, + "pegasus": 26606, + "##umble": 26607, + "humiliated": 26608, + "standalone": 26609, + "tagged": 26610, + "##roller": 26611, + "freshmen": 26612, + "klan": 26613, + "##bright": 26614, + "attaining": 26615, + "initiating": 26616, + "transatlantic": 26617, + "logged": 26618, + "viz": 26619, + "##uance": 26620, + "1723": 26621, + "combatants": 26622, + "intervening": 26623, + "stephane": 26624, + "chieftain": 26625, + "despised": 26626, + "grazed": 26627, + "317": 26628, + "cdc": 26629, + "galveston": 26630, + "godzilla": 26631, + "macro": 26632, + "simulate": 26633, + "##planes": 26634, + "parades": 26635, + "##esses": 26636, + "960": 26637, + "##ductive": 26638, + "##unes": 26639, + "equator": 26640, + "overdose": 26641, + "##cans": 26642, + "##hosh": 26643, + "##lifting": 26644, + "joshi": 26645, + "epstein": 26646, + "sonora": 26647, + "treacherous": 26648, + "aquatics": 26649, + "manchu": 26650, + "responsive": 26651, + "##sation": 26652, + "supervisory": 26653, + "##christ": 26654, + "##llins": 26655, + "##ibar": 26656, + "##balance": 26657, + "##uso": 26658, + "kimball": 26659, + "karlsruhe": 26660, + "mab": 26661, + "##emy": 26662, + "ignores": 26663, + "phonetic": 26664, + "reuters": 26665, + "spaghetti": 26666, + "820": 26667, + "almighty": 26668, + "danzig": 26669, + "rumbling": 26670, + "tombstone": 26671, + "designations": 26672, + "lured": 26673, + "outset": 26674, + "##felt": 26675, + "supermarkets": 26676, + "##wt": 26677, + "grupo": 26678, + "kei": 26679, + "kraft": 26680, + "susanna": 26681, + "##blood": 26682, + "comprehension": 26683, + "genealogy": 26684, + "##aghan": 26685, + "##verted": 26686, + "redding": 26687, + "##ythe": 26688, + "1722": 26689, + "bowing": 26690, + "##pore": 26691, + "##roi": 26692, + "lest": 26693, + "sharpened": 26694, + "fulbright": 26695, + "valkyrie": 26696, + "sikhs": 26697, + "##unds": 26698, + "swans": 26699, + "bouquet": 26700, + "merritt": 26701, + "##tage": 26702, + "##venting": 26703, + "commuted": 26704, + "redhead": 26705, + "clerks": 26706, + "leasing": 26707, + "cesare": 26708, + "dea": 26709, + "hazy": 26710, + "##vances": 26711, + "fledged": 26712, + "greenfield": 26713, + "servicemen": 26714, + "##gical": 26715, + "armando": 26716, + "blackout": 26717, + "dt": 26718, + "sagged": 26719, + "downloadable": 26720, + "intra": 26721, + "potion": 26722, + "pods": 26723, + "##4th": 26724, + "##mism": 26725, + "xp": 26726, + "attendants": 26727, + "gambia": 26728, + "stale": 26729, + "##ntine": 26730, + "plump": 26731, + "asteroids": 26732, + "rediscovered": 26733, + "buds": 26734, + "flea": 26735, + "hive": 26736, + "##neas": 26737, + "1737": 26738, + "classifications": 26739, + "debuts": 26740, + "##eles": 26741, + "olympus": 26742, + "scala": 26743, + "##eurs": 26744, + "##gno": 26745, + "##mute": 26746, + "hummed": 26747, + "sigismund": 26748, + "visuals": 26749, + "wiggled": 26750, + "await": 26751, + "pilasters": 26752, + "clench": 26753, + "sulfate": 26754, + "##ances": 26755, + "bellevue": 26756, + "enigma": 26757, + "trainee": 26758, + "snort": 26759, + "##sw": 26760, + "clouded": 26761, + "denim": 26762, + "##rank": 26763, + "##rder": 26764, + "churning": 26765, + "hartman": 26766, + "lodges": 26767, + "riches": 26768, + "sima": 26769, + "##missible": 26770, + "accountable": 26771, + "socrates": 26772, + "regulates": 26773, + "mueller": 26774, + "##cr": 26775, + "1702": 26776, + "avoids": 26777, + "solids": 26778, + "himalayas": 26779, + "nutrient": 26780, + "pup": 26781, + "##jevic": 26782, + "squat": 26783, + "fades": 26784, + "nec": 26785, + "##lates": 26786, + "##pina": 26787, + "##rona": 26788, + "##ου": 26789, + "privateer": 26790, + "tequila": 26791, + "##gative": 26792, + "##mpton": 26793, + "apt": 26794, + "hornet": 26795, + "immortals": 26796, + "##dou": 26797, + "asturias": 26798, + "cleansing": 26799, + "dario": 26800, + "##rries": 26801, + "##anta": 26802, + "etymology": 26803, + "servicing": 26804, + "zhejiang": 26805, + "##venor": 26806, + "##nx": 26807, + "horned": 26808, + "erasmus": 26809, + "rayon": 26810, + "relocating": 26811, + "£10": 26812, + "##bags": 26813, + "escalated": 26814, + "promenade": 26815, + "stubble": 26816, + "2010s": 26817, + "artisans": 26818, + "axial": 26819, + "liquids": 26820, + "mora": 26821, + "sho": 26822, + "yoo": 26823, + "##tsky": 26824, + "bundles": 26825, + "oldies": 26826, + "##nally": 26827, + "notification": 26828, + "bastion": 26829, + "##ths": 26830, + "sparkle": 26831, + "##lved": 26832, + "1728": 26833, + "leash": 26834, + "pathogen": 26835, + "highs": 26836, + "##hmi": 26837, + "immature": 26838, + "880": 26839, + "gonzaga": 26840, + "ignatius": 26841, + "mansions": 26842, + "monterrey": 26843, + "sweets": 26844, + "bryson": 26845, + "##loe": 26846, + "polled": 26847, + "regatta": 26848, + "brightest": 26849, + "pei": 26850, + "rosy": 26851, + "squid": 26852, + "hatfield": 26853, + "payroll": 26854, + "addict": 26855, + "meath": 26856, + "cornerback": 26857, + "heaviest": 26858, + "lodging": 26859, + "##mage": 26860, + "capcom": 26861, + "rippled": 26862, + "##sily": 26863, + "barnet": 26864, + "mayhem": 26865, + "ymca": 26866, + "snuggled": 26867, + "rousseau": 26868, + "##cute": 26869, + "blanchard": 26870, + "284": 26871, + "fragmented": 26872, + "leighton": 26873, + "chromosomes": 26874, + "risking": 26875, + "##md": 26876, + "##strel": 26877, + "##utter": 26878, + "corinne": 26879, + "coyotes": 26880, + "cynical": 26881, + "hiroshi": 26882, + "yeomanry": 26883, + "##ractive": 26884, + "ebook": 26885, + "grading": 26886, + "mandela": 26887, + "plume": 26888, + "agustin": 26889, + "magdalene": 26890, + "##rkin": 26891, + "bea": 26892, + "femme": 26893, + "trafford": 26894, + "##coll": 26895, + "##lun": 26896, + "##tance": 26897, + "52nd": 26898, + "fourier": 26899, + "upton": 26900, + "##mental": 26901, + "camilla": 26902, + "gust": 26903, + "iihf": 26904, + "islamabad": 26905, + "longevity": 26906, + "##kala": 26907, + "feldman": 26908, + "netting": 26909, + "##rization": 26910, + "endeavour": 26911, + "foraging": 26912, + "mfa": 26913, + "orr": 26914, + "##open": 26915, + "greyish": 26916, + "contradiction": 26917, + "graz": 26918, + "##ruff": 26919, + "handicapped": 26920, + "marlene": 26921, + "tweed": 26922, + "oaxaca": 26923, + "spp": 26924, + "campos": 26925, + "miocene": 26926, + "pri": 26927, + "configured": 26928, + "cooks": 26929, + "pluto": 26930, + "cozy": 26931, + "pornographic": 26932, + "##entes": 26933, + "70th": 26934, + "fairness": 26935, + "glided": 26936, + "jonny": 26937, + "lynne": 26938, + "rounding": 26939, + "sired": 26940, + "##emon": 26941, + "##nist": 26942, + "remade": 26943, + "uncover": 26944, + "##mack": 26945, + "complied": 26946, + "lei": 26947, + "newsweek": 26948, + "##jured": 26949, + "##parts": 26950, + "##enting": 26951, + "##pg": 26952, + "293": 26953, + "finer": 26954, + "guerrillas": 26955, + "athenian": 26956, + "deng": 26957, + "disused": 26958, + "stepmother": 26959, + "accuse": 26960, + "gingerly": 26961, + "seduction": 26962, + "521": 26963, + "confronting": 26964, + "##walker": 26965, + "##going": 26966, + "gora": 26967, + "nostalgia": 26968, + "sabres": 26969, + "virginity": 26970, + "wrenched": 26971, + "##minated": 26972, + "syndication": 26973, + "wielding": 26974, + "eyre": 26975, + "##56": 26976, + "##gnon": 26977, + "##igny": 26978, + "behaved": 26979, + "taxpayer": 26980, + "sweeps": 26981, + "##growth": 26982, + "childless": 26983, + "gallant": 26984, + "##ywood": 26985, + "amplified": 26986, + "geraldine": 26987, + "scrape": 26988, + "##ffi": 26989, + "babylonian": 26990, + "fresco": 26991, + "##rdan": 26992, + "##kney": 26993, + "##position": 26994, + "1718": 26995, + "restricting": 26996, + "tack": 26997, + "fukuoka": 26998, + "osborn": 26999, + "selector": 27000, + "partnering": 27001, + "##dlow": 27002, + "318": 27003, + "gnu": 27004, + "kia": 27005, + "tak": 27006, + "whitley": 27007, + "gables": 27008, + "##54": 27009, + "##mania": 27010, + "mri": 27011, + "softness": 27012, + "immersion": 27013, + "##bots": 27014, + "##evsky": 27015, + "1713": 27016, + "chilling": 27017, + "insignificant": 27018, + "pcs": 27019, + "##uis": 27020, + "elites": 27021, + "lina": 27022, + "purported": 27023, + "supplemental": 27024, + "teaming": 27025, + "##americana": 27026, + "##dding": 27027, + "##inton": 27028, + "proficient": 27029, + "rouen": 27030, + "##nage": 27031, + "##rret": 27032, + "niccolo": 27033, + "selects": 27034, + "##bread": 27035, + "fluffy": 27036, + "1621": 27037, + "gruff": 27038, + "knotted": 27039, + "mukherjee": 27040, + "polgara": 27041, + "thrash": 27042, + "nicholls": 27043, + "secluded": 27044, + "smoothing": 27045, + "thru": 27046, + "corsica": 27047, + "loaf": 27048, + "whitaker": 27049, + "inquiries": 27050, + "##rrier": 27051, + "##kam": 27052, + "indochina": 27053, + "289": 27054, + "marlins": 27055, + "myles": 27056, + "peking": 27057, + "##tea": 27058, + "extracts": 27059, + "pastry": 27060, + "superhuman": 27061, + "connacht": 27062, + "vogel": 27063, + "##ditional": 27064, + "##het": 27065, + "##udged": 27066, + "##lash": 27067, + "gloss": 27068, + "quarries": 27069, + "refit": 27070, + "teaser": 27071, + "##alic": 27072, + "##gaon": 27073, + "20s": 27074, + "materialized": 27075, + "sling": 27076, + "camped": 27077, + "pickering": 27078, + "tung": 27079, + "tracker": 27080, + "pursuant": 27081, + "##cide": 27082, + "cranes": 27083, + "soc": 27084, + "##cini": 27085, + "##typical": 27086, + "##viere": 27087, + "anhalt": 27088, + "overboard": 27089, + "workout": 27090, + "chores": 27091, + "fares": 27092, + "orphaned": 27093, + "stains": 27094, + "##logie": 27095, + "fenton": 27096, + "surpassing": 27097, + "joyah": 27098, + "triggers": 27099, + "##itte": 27100, + "grandmaster": 27101, + "##lass": 27102, + "##lists": 27103, + "clapping": 27104, + "fraudulent": 27105, + "ledger": 27106, + "nagasaki": 27107, + "##cor": 27108, + "##nosis": 27109, + "##tsa": 27110, + "eucalyptus": 27111, + "tun": 27112, + "##icio": 27113, + "##rney": 27114, + "##tara": 27115, + "dax": 27116, + "heroism": 27117, + "ina": 27118, + "wrexham": 27119, + "onboard": 27120, + "unsigned": 27121, + "##dates": 27122, + "moshe": 27123, + "galley": 27124, + "winnie": 27125, + "droplets": 27126, + "exiles": 27127, + "praises": 27128, + "watered": 27129, + "noodles": 27130, + "##aia": 27131, + "fein": 27132, + "adi": 27133, + "leland": 27134, + "multicultural": 27135, + "stink": 27136, + "bingo": 27137, + "comets": 27138, + "erskine": 27139, + "modernized": 27140, + "canned": 27141, + "constraint": 27142, + "domestically": 27143, + "chemotherapy": 27144, + "featherweight": 27145, + "stifled": 27146, + "##mum": 27147, + "darkly": 27148, + "irresistible": 27149, + "refreshing": 27150, + "hasty": 27151, + "isolate": 27152, + "##oys": 27153, + "kitchener": 27154, + "planners": 27155, + "##wehr": 27156, + "cages": 27157, + "yarn": 27158, + "implant": 27159, + "toulon": 27160, + "elects": 27161, + "childbirth": 27162, + "yue": 27163, + "##lind": 27164, + "##lone": 27165, + "cn": 27166, + "rightful": 27167, + "sportsman": 27168, + "junctions": 27169, + "remodeled": 27170, + "specifies": 27171, + "##rgh": 27172, + "291": 27173, + "##oons": 27174, + "complimented": 27175, + "##urgent": 27176, + "lister": 27177, + "ot": 27178, + "##logic": 27179, + "bequeathed": 27180, + "cheekbones": 27181, + "fontana": 27182, + "gabby": 27183, + "##dial": 27184, + "amadeus": 27185, + "corrugated": 27186, + "maverick": 27187, + "resented": 27188, + "triangles": 27189, + "##hered": 27190, + "##usly": 27191, + "nazareth": 27192, + "tyrol": 27193, + "1675": 27194, + "assent": 27195, + "poorer": 27196, + "sectional": 27197, + "aegean": 27198, + "##cous": 27199, + "296": 27200, + "nylon": 27201, + "ghanaian": 27202, + "##egorical": 27203, + "##weig": 27204, + "cushions": 27205, + "forbid": 27206, + "fusiliers": 27207, + "obstruction": 27208, + "somerville": 27209, + "##scia": 27210, + "dime": 27211, + "earrings": 27212, + "elliptical": 27213, + "leyte": 27214, + "oder": 27215, + "polymers": 27216, + "timmy": 27217, + "atm": 27218, + "midtown": 27219, + "piloted": 27220, + "settles": 27221, + "continual": 27222, + "externally": 27223, + "mayfield": 27224, + "##uh": 27225, + "enrichment": 27226, + "henson": 27227, + "keane": 27228, + "persians": 27229, + "1733": 27230, + "benji": 27231, + "braden": 27232, + "pep": 27233, + "324": 27234, + "##efe": 27235, + "contenders": 27236, + "pepsi": 27237, + "valet": 27238, + "##isches": 27239, + "298": 27240, + "##asse": 27241, + "##earing": 27242, + "goofy": 27243, + "stroll": 27244, + "##amen": 27245, + "authoritarian": 27246, + "occurrences": 27247, + "adversary": 27248, + "ahmedabad": 27249, + "tangent": 27250, + "toppled": 27251, + "dorchester": 27252, + "1672": 27253, + "modernism": 27254, + "marxism": 27255, + "islamist": 27256, + "charlemagne": 27257, + "exponential": 27258, + "racks": 27259, + "unicode": 27260, + "brunette": 27261, + "mbc": 27262, + "pic": 27263, + "skirmish": 27264, + "##bund": 27265, + "##lad": 27266, + "##powered": 27267, + "##yst": 27268, + "hoisted": 27269, + "messina": 27270, + "shatter": 27271, + "##ctum": 27272, + "jedi": 27273, + "vantage": 27274, + "##music": 27275, + "##neil": 27276, + "clemens": 27277, + "mahmoud": 27278, + "corrupted": 27279, + "authentication": 27280, + "lowry": 27281, + "nils": 27282, + "##washed": 27283, + "omnibus": 27284, + "wounding": 27285, + "jillian": 27286, + "##itors": 27287, + "##opped": 27288, + "serialized": 27289, + "narcotics": 27290, + "handheld": 27291, + "##arm": 27292, + "##plicity": 27293, + "intersecting": 27294, + "stimulating": 27295, + "##onis": 27296, + "crate": 27297, + "fellowships": 27298, + "hemingway": 27299, + "casinos": 27300, + "climatic": 27301, + "fordham": 27302, + "copeland": 27303, + "drip": 27304, + "beatty": 27305, + "leaflets": 27306, + "robber": 27307, + "brothel": 27308, + "madeira": 27309, + "##hedral": 27310, + "sphinx": 27311, + "ultrasound": 27312, + "##vana": 27313, + "valor": 27314, + "forbade": 27315, + "leonid": 27316, + "villas": 27317, + "##aldo": 27318, + "duane": 27319, + "marquez": 27320, + "##cytes": 27321, + "disadvantaged": 27322, + "forearms": 27323, + "kawasaki": 27324, + "reacts": 27325, + "consular": 27326, + "lax": 27327, + "uncles": 27328, + "uphold": 27329, + "##hopper": 27330, + "concepcion": 27331, + "dorsey": 27332, + "lass": 27333, + "##izan": 27334, + "arching": 27335, + "passageway": 27336, + "1708": 27337, + "researches": 27338, + "tia": 27339, + "internationals": 27340, + "##graphs": 27341, + "##opers": 27342, + "distinguishes": 27343, + "javanese": 27344, + "divert": 27345, + "##uven": 27346, + "plotted": 27347, + "##listic": 27348, + "##rwin": 27349, + "##erik": 27350, + "##tify": 27351, + "affirmative": 27352, + "signifies": 27353, + "validation": 27354, + "##bson": 27355, + "kari": 27356, + "felicity": 27357, + "georgina": 27358, + "zulu": 27359, + "##eros": 27360, + "##rained": 27361, + "##rath": 27362, + "overcoming": 27363, + "##dot": 27364, + "argyll": 27365, + "##rbin": 27366, + "1734": 27367, + "chiba": 27368, + "ratification": 27369, + "windy": 27370, + "earls": 27371, + "parapet": 27372, + "##marks": 27373, + "hunan": 27374, + "pristine": 27375, + "astrid": 27376, + "punta": 27377, + "##gart": 27378, + "brodie": 27379, + "##kota": 27380, + "##oder": 27381, + "malaga": 27382, + "minerva": 27383, + "rouse": 27384, + "##phonic": 27385, + "bellowed": 27386, + "pagoda": 27387, + "portals": 27388, + "reclamation": 27389, + "##gur": 27390, + "##odies": 27391, + "##⁄₄": 27392, + "parentheses": 27393, + "quoting": 27394, + "allergic": 27395, + "palette": 27396, + "showcases": 27397, + "benefactor": 27398, + "heartland": 27399, + "nonlinear": 27400, + "##tness": 27401, + "bladed": 27402, + "cheerfully": 27403, + "scans": 27404, + "##ety": 27405, + "##hone": 27406, + "1666": 27407, + "girlfriends": 27408, + "pedersen": 27409, + "hiram": 27410, + "sous": 27411, + "##liche": 27412, + "##nator": 27413, + "1683": 27414, + "##nery": 27415, + "##orio": 27416, + "##umen": 27417, + "bobo": 27418, + "primaries": 27419, + "smiley": 27420, + "##cb": 27421, + "unearthed": 27422, + "uniformly": 27423, + "fis": 27424, + "metadata": 27425, + "1635": 27426, + "ind": 27427, + "##oted": 27428, + "recoil": 27429, + "##titles": 27430, + "##tura": 27431, + "##ια": 27432, + "406": 27433, + "hilbert": 27434, + "jamestown": 27435, + "mcmillan": 27436, + "tulane": 27437, + "seychelles": 27438, + "##frid": 27439, + "antics": 27440, + "coli": 27441, + "fated": 27442, + "stucco": 27443, + "##grants": 27444, + "1654": 27445, + "bulky": 27446, + "accolades": 27447, + "arrays": 27448, + "caledonian": 27449, + "carnage": 27450, + "optimism": 27451, + "puebla": 27452, + "##tative": 27453, + "##cave": 27454, + "enforcing": 27455, + "rotherham": 27456, + "seo": 27457, + "dunlop": 27458, + "aeronautics": 27459, + "chimed": 27460, + "incline": 27461, + "zoning": 27462, + "archduke": 27463, + "hellenistic": 27464, + "##oses": 27465, + "##sions": 27466, + "candi": 27467, + "thong": 27468, + "##ople": 27469, + "magnate": 27470, + "rustic": 27471, + "##rsk": 27472, + "projective": 27473, + "slant": 27474, + "##offs": 27475, + "danes": 27476, + "hollis": 27477, + "vocalists": 27478, + "##ammed": 27479, + "congenital": 27480, + "contend": 27481, + "gesellschaft": 27482, + "##ocating": 27483, + "##pressive": 27484, + "douglass": 27485, + "quieter": 27486, + "##cm": 27487, + "##kshi": 27488, + "howled": 27489, + "salim": 27490, + "spontaneously": 27491, + "townsville": 27492, + "buena": 27493, + "southport": 27494, + "##bold": 27495, + "kato": 27496, + "1638": 27497, + "faerie": 27498, + "stiffly": 27499, + "##vus": 27500, + "##rled": 27501, + "297": 27502, + "flawless": 27503, + "realising": 27504, + "taboo": 27505, + "##7th": 27506, + "bytes": 27507, + "straightening": 27508, + "356": 27509, + "jena": 27510, + "##hid": 27511, + "##rmin": 27512, + "cartwright": 27513, + "berber": 27514, + "bertram": 27515, + "soloists": 27516, + "411": 27517, + "noses": 27518, + "417": 27519, + "coping": 27520, + "fission": 27521, + "hardin": 27522, + "inca": 27523, + "##cen": 27524, + "1717": 27525, + "mobilized": 27526, + "vhf": 27527, + "##raf": 27528, + "biscuits": 27529, + "curate": 27530, + "##85": 27531, + "##anial": 27532, + "331": 27533, + "gaunt": 27534, + "neighbourhoods": 27535, + "1540": 27536, + "##abas": 27537, + "blanca": 27538, + "bypassed": 27539, + "sockets": 27540, + "behold": 27541, + "coincidentally": 27542, + "##bane": 27543, + "nara": 27544, + "shave": 27545, + "splinter": 27546, + "terrific": 27547, + "##arion": 27548, + "##erian": 27549, + "commonplace": 27550, + "juris": 27551, + "redwood": 27552, + "waistband": 27553, + "boxed": 27554, + "caitlin": 27555, + "fingerprints": 27556, + "jennie": 27557, + "naturalized": 27558, + "##ired": 27559, + "balfour": 27560, + "craters": 27561, + "jody": 27562, + "bungalow": 27563, + "hugely": 27564, + "quilt": 27565, + "glitter": 27566, + "pigeons": 27567, + "undertaker": 27568, + "bulging": 27569, + "constrained": 27570, + "goo": 27571, + "##sil": 27572, + "##akh": 27573, + "assimilation": 27574, + "reworked": 27575, + "##person": 27576, + "persuasion": 27577, + "##pants": 27578, + "felicia": 27579, + "##cliff": 27580, + "##ulent": 27581, + "1732": 27582, + "explodes": 27583, + "##dun": 27584, + "##inium": 27585, + "##zic": 27586, + "lyman": 27587, + "vulture": 27588, + "hog": 27589, + "overlook": 27590, + "begs": 27591, + "northwards": 27592, + "ow": 27593, + "spoil": 27594, + "##urer": 27595, + "fatima": 27596, + "favorably": 27597, + "accumulate": 27598, + "sargent": 27599, + "sorority": 27600, + "corresponded": 27601, + "dispersal": 27602, + "kochi": 27603, + "toned": 27604, + "##imi": 27605, + "##lita": 27606, + "internacional": 27607, + "newfound": 27608, + "##agger": 27609, + "##lynn": 27610, + "##rigue": 27611, + "booths": 27612, + "peanuts": 27613, + "##eborg": 27614, + "medicare": 27615, + "muriel": 27616, + "nur": 27617, + "##uram": 27618, + "crates": 27619, + "millennia": 27620, + "pajamas": 27621, + "worsened": 27622, + "##breakers": 27623, + "jimi": 27624, + "vanuatu": 27625, + "yawned": 27626, + "##udeau": 27627, + "carousel": 27628, + "##hony": 27629, + "hurdle": 27630, + "##ccus": 27631, + "##mounted": 27632, + "##pod": 27633, + "rv": 27634, + "##eche": 27635, + "airship": 27636, + "ambiguity": 27637, + "compulsion": 27638, + "recapture": 27639, + "##claiming": 27640, + "arthritis": 27641, + "##osomal": 27642, + "1667": 27643, + "asserting": 27644, + "ngc": 27645, + "sniffing": 27646, + "dade": 27647, + "discontent": 27648, + "glendale": 27649, + "ported": 27650, + "##amina": 27651, + "defamation": 27652, + "rammed": 27653, + "##scent": 27654, + "fling": 27655, + "livingstone": 27656, + "##fleet": 27657, + "875": 27658, + "##ppy": 27659, + "apocalyptic": 27660, + "comrade": 27661, + "lcd": 27662, + "##lowe": 27663, + "cessna": 27664, + "eine": 27665, + "persecuted": 27666, + "subsistence": 27667, + "demi": 27668, + "hoop": 27669, + "reliefs": 27670, + "710": 27671, + "coptic": 27672, + "progressing": 27673, + "stemmed": 27674, + "perpetrators": 27675, + "1665": 27676, + "priestess": 27677, + "##nio": 27678, + "dobson": 27679, + "ebony": 27680, + "rooster": 27681, + "itf": 27682, + "tortricidae": 27683, + "##bbon": 27684, + "##jian": 27685, + "cleanup": 27686, + "##jean": 27687, + "##øy": 27688, + "1721": 27689, + "eighties": 27690, + "taxonomic": 27691, + "holiness": 27692, + "##hearted": 27693, + "##spar": 27694, + "antilles": 27695, + "showcasing": 27696, + "stabilized": 27697, + "##nb": 27698, + "gia": 27699, + "mascara": 27700, + "michelangelo": 27701, + "dawned": 27702, + "##uria": 27703, + "##vinsky": 27704, + "extinguished": 27705, + "fitz": 27706, + "grotesque": 27707, + "£100": 27708, + "##fera": 27709, + "##loid": 27710, + "##mous": 27711, + "barges": 27712, + "neue": 27713, + "throbbed": 27714, + "cipher": 27715, + "johnnie": 27716, + "##a1": 27717, + "##mpt": 27718, + "outburst": 27719, + "##swick": 27720, + "spearheaded": 27721, + "administrations": 27722, + "c1": 27723, + "heartbreak": 27724, + "pixels": 27725, + "pleasantly": 27726, + "##enay": 27727, + "lombardy": 27728, + "plush": 27729, + "##nsed": 27730, + "bobbie": 27731, + "##hly": 27732, + "reapers": 27733, + "tremor": 27734, + "xiang": 27735, + "minogue": 27736, + "substantive": 27737, + "hitch": 27738, + "barak": 27739, + "##wyl": 27740, + "kwan": 27741, + "##encia": 27742, + "910": 27743, + "obscene": 27744, + "elegance": 27745, + "indus": 27746, + "surfer": 27747, + "bribery": 27748, + "conserve": 27749, + "##hyllum": 27750, + "##masters": 27751, + "horatio": 27752, + "##fat": 27753, + "apes": 27754, + "rebound": 27755, + "psychotic": 27756, + "##pour": 27757, + "iteration": 27758, + "##mium": 27759, + "##vani": 27760, + "botanic": 27761, + "horribly": 27762, + "antiques": 27763, + "dispose": 27764, + "paxton": 27765, + "##hli": 27766, + "##wg": 27767, + "timeless": 27768, + "1704": 27769, + "disregard": 27770, + "engraver": 27771, + "hounds": 27772, + "##bau": 27773, + "##version": 27774, + "looted": 27775, + "uno": 27776, + "facilitates": 27777, + "groans": 27778, + "masjid": 27779, + "rutland": 27780, + "antibody": 27781, + "disqualification": 27782, + "decatur": 27783, + "footballers": 27784, + "quake": 27785, + "slacks": 27786, + "48th": 27787, + "rein": 27788, + "scribe": 27789, + "stabilize": 27790, + "commits": 27791, + "exemplary": 27792, + "tho": 27793, + "##hort": 27794, + "##chison": 27795, + "pantry": 27796, + "traversed": 27797, + "##hiti": 27798, + "disrepair": 27799, + "identifiable": 27800, + "vibrated": 27801, + "baccalaureate": 27802, + "##nnis": 27803, + "csa": 27804, + "interviewing": 27805, + "##iensis": 27806, + "##raße": 27807, + "greaves": 27808, + "wealthiest": 27809, + "343": 27810, + "classed": 27811, + "jogged": 27812, + "£5": 27813, + "##58": 27814, + "##atal": 27815, + "illuminating": 27816, + "knicks": 27817, + "respecting": 27818, + "##uno": 27819, + "scrubbed": 27820, + "##iji": 27821, + "##dles": 27822, + "kruger": 27823, + "moods": 27824, + "growls": 27825, + "raider": 27826, + "silvia": 27827, + "chefs": 27828, + "kam": 27829, + "vr": 27830, + "cree": 27831, + "percival": 27832, + "##terol": 27833, + "gunter": 27834, + "counterattack": 27835, + "defiant": 27836, + "henan": 27837, + "ze": 27838, + "##rasia": 27839, + "##riety": 27840, + "equivalence": 27841, + "submissions": 27842, + "##fra": 27843, + "##thor": 27844, + "bautista": 27845, + "mechanically": 27846, + "##heater": 27847, + "cornice": 27848, + "herbal": 27849, + "templar": 27850, + "##mering": 27851, + "outputs": 27852, + "ruining": 27853, + "ligand": 27854, + "renumbered": 27855, + "extravagant": 27856, + "mika": 27857, + "blockbuster": 27858, + "eta": 27859, + "insurrection": 27860, + "##ilia": 27861, + "darkening": 27862, + "ferocious": 27863, + "pianos": 27864, + "strife": 27865, + "kinship": 27866, + "##aer": 27867, + "melee": 27868, + "##anor": 27869, + "##iste": 27870, + "##may": 27871, + "##oue": 27872, + "decidedly": 27873, + "weep": 27874, + "##jad": 27875, + "##missive": 27876, + "##ppel": 27877, + "354": 27878, + "puget": 27879, + "unease": 27880, + "##gnant": 27881, + "1629": 27882, + "hammering": 27883, + "kassel": 27884, + "ob": 27885, + "wessex": 27886, + "##lga": 27887, + "bromwich": 27888, + "egan": 27889, + "paranoia": 27890, + "utilization": 27891, + "##atable": 27892, + "##idad": 27893, + "contradictory": 27894, + "provoke": 27895, + "##ols": 27896, + "##ouring": 27897, + "##tangled": 27898, + "knesset": 27899, + "##very": 27900, + "##lette": 27901, + "plumbing": 27902, + "##sden": 27903, + "##¹": 27904, + "greensboro": 27905, + "occult": 27906, + "sniff": 27907, + "338": 27908, + "zev": 27909, + "beaming": 27910, + "gamer": 27911, + "haggard": 27912, + "mahal": 27913, + "##olt": 27914, + "##pins": 27915, + "mendes": 27916, + "utmost": 27917, + "briefing": 27918, + "gunnery": 27919, + "##gut": 27920, + "##pher": 27921, + "##zh": 27922, + "##rok": 27923, + "1679": 27924, + "khalifa": 27925, + "sonya": 27926, + "##boot": 27927, + "principals": 27928, + "urbana": 27929, + "wiring": 27930, + "##liffe": 27931, + "##minating": 27932, + "##rrado": 27933, + "dahl": 27934, + "nyu": 27935, + "skepticism": 27936, + "np": 27937, + "townspeople": 27938, + "ithaca": 27939, + "lobster": 27940, + "somethin": 27941, + "##fur": 27942, + "##arina": 27943, + "##−1": 27944, + "freighter": 27945, + "zimmerman": 27946, + "biceps": 27947, + "contractual": 27948, + "##herton": 27949, + "amend": 27950, + "hurrying": 27951, + "subconscious": 27952, + "##anal": 27953, + "336": 27954, + "meng": 27955, + "clermont": 27956, + "spawning": 27957, + "##eia": 27958, + "##lub": 27959, + "dignitaries": 27960, + "impetus": 27961, + "snacks": 27962, + "spotting": 27963, + "twigs": 27964, + "##bilis": 27965, + "##cz": 27966, + "##ouk": 27967, + "libertadores": 27968, + "nic": 27969, + "skylar": 27970, + "##aina": 27971, + "##firm": 27972, + "gustave": 27973, + "asean": 27974, + "##anum": 27975, + "dieter": 27976, + "legislatures": 27977, + "flirt": 27978, + "bromley": 27979, + "trolls": 27980, + "umar": 27981, + "##bbies": 27982, + "##tyle": 27983, + "blah": 27984, + "parc": 27985, + "bridgeport": 27986, + "crank": 27987, + "negligence": 27988, + "##nction": 27989, + "46th": 27990, + "constantin": 27991, + "molded": 27992, + "bandages": 27993, + "seriousness": 27994, + "00pm": 27995, + "siegel": 27996, + "carpets": 27997, + "compartments": 27998, + "upbeat": 27999, + "statehood": 28000, + "##dner": 28001, + "##edging": 28002, + "marko": 28003, + "730": 28004, + "platt": 28005, + "##hane": 28006, + "paving": 28007, + "##iy": 28008, + "1738": 28009, + "abbess": 28010, + "impatience": 28011, + "limousine": 28012, + "nbl": 28013, + "##talk": 28014, + "441": 28015, + "lucille": 28016, + "mojo": 28017, + "nightfall": 28018, + "robbers": 28019, + "##nais": 28020, + "karel": 28021, + "brisk": 28022, + "calves": 28023, + "replicate": 28024, + "ascribed": 28025, + "telescopes": 28026, + "##olf": 28027, + "intimidated": 28028, + "##reen": 28029, + "ballast": 28030, + "specialization": 28031, + "##sit": 28032, + "aerodynamic": 28033, + "caliphate": 28034, + "rainer": 28035, + "visionary": 28036, + "##arded": 28037, + "epsilon": 28038, + "##aday": 28039, + "##onte": 28040, + "aggregation": 28041, + "auditory": 28042, + "boosted": 28043, + "reunification": 28044, + "kathmandu": 28045, + "loco": 28046, + "robyn": 28047, + "402": 28048, + "acknowledges": 28049, + "appointing": 28050, + "humanoid": 28051, + "newell": 28052, + "redeveloped": 28053, + "restraints": 28054, + "##tained": 28055, + "barbarians": 28056, + "chopper": 28057, + "1609": 28058, + "italiana": 28059, + "##lez": 28060, + "##lho": 28061, + "investigates": 28062, + "wrestlemania": 28063, + "##anies": 28064, + "##bib": 28065, + "690": 28066, + "##falls": 28067, + "creaked": 28068, + "dragoons": 28069, + "gravely": 28070, + "minions": 28071, + "stupidity": 28072, + "volley": 28073, + "##harat": 28074, + "##week": 28075, + "musik": 28076, + "##eries": 28077, + "##uously": 28078, + "fungal": 28079, + "massimo": 28080, + "semantics": 28081, + "malvern": 28082, + "##ahl": 28083, + "##pee": 28084, + "discourage": 28085, + "embryo": 28086, + "imperialism": 28087, + "1910s": 28088, + "profoundly": 28089, + "##ddled": 28090, + "jiangsu": 28091, + "sparkled": 28092, + "stat": 28093, + "##holz": 28094, + "sweatshirt": 28095, + "tobin": 28096, + "##iction": 28097, + "sneered": 28098, + "##cheon": 28099, + "##oit": 28100, + "brit": 28101, + "causal": 28102, + "smyth": 28103, + "##neuve": 28104, + "diffuse": 28105, + "perrin": 28106, + "silvio": 28107, + "##ipes": 28108, + "##recht": 28109, + "detonated": 28110, + "iqbal": 28111, + "selma": 28112, + "##nism": 28113, + "##zumi": 28114, + "roasted": 28115, + "##riders": 28116, + "tay": 28117, + "##ados": 28118, + "##mament": 28119, + "##mut": 28120, + "##rud": 28121, + "840": 28122, + "completes": 28123, + "nipples": 28124, + "cfa": 28125, + "flavour": 28126, + "hirsch": 28127, + "##laus": 28128, + "calderon": 28129, + "sneakers": 28130, + "moravian": 28131, + "##ksha": 28132, + "1622": 28133, + "rq": 28134, + "294": 28135, + "##imeters": 28136, + "bodo": 28137, + "##isance": 28138, + "##pre": 28139, + "##ronia": 28140, + "anatomical": 28141, + "excerpt": 28142, + "##lke": 28143, + "dh": 28144, + "kunst": 28145, + "##tablished": 28146, + "##scoe": 28147, + "biomass": 28148, + "panted": 28149, + "unharmed": 28150, + "gael": 28151, + "housemates": 28152, + "montpellier": 28153, + "##59": 28154, + "coa": 28155, + "rodents": 28156, + "tonic": 28157, + "hickory": 28158, + "singleton": 28159, + "##taro": 28160, + "451": 28161, + "1719": 28162, + "aldo": 28163, + "breaststroke": 28164, + "dempsey": 28165, + "och": 28166, + "rocco": 28167, + "##cuit": 28168, + "merton": 28169, + "dissemination": 28170, + "midsummer": 28171, + "serials": 28172, + "##idi": 28173, + "haji": 28174, + "polynomials": 28175, + "##rdon": 28176, + "gs": 28177, + "enoch": 28178, + "prematurely": 28179, + "shutter": 28180, + "taunton": 28181, + "£3": 28182, + "##grating": 28183, + "##inates": 28184, + "archangel": 28185, + "harassed": 28186, + "##asco": 28187, + "326": 28188, + "archway": 28189, + "dazzling": 28190, + "##ecin": 28191, + "1736": 28192, + "sumo": 28193, + "wat": 28194, + "##kovich": 28195, + "1086": 28196, + "honneur": 28197, + "##ently": 28198, + "##nostic": 28199, + "##ttal": 28200, + "##idon": 28201, + "1605": 28202, + "403": 28203, + "1716": 28204, + "blogger": 28205, + "rents": 28206, + "##gnan": 28207, + "hires": 28208, + "##ikh": 28209, + "##dant": 28210, + "howie": 28211, + "##rons": 28212, + "handler": 28213, + "retracted": 28214, + "shocks": 28215, + "1632": 28216, + "arun": 28217, + "duluth": 28218, + "kepler": 28219, + "trumpeter": 28220, + "##lary": 28221, + "peeking": 28222, + "seasoned": 28223, + "trooper": 28224, + "##mara": 28225, + "laszlo": 28226, + "##iciencies": 28227, + "##rti": 28228, + "heterosexual": 28229, + "##inatory": 28230, + "##ssion": 28231, + "indira": 28232, + "jogging": 28233, + "##inga": 28234, + "##lism": 28235, + "beit": 28236, + "dissatisfaction": 28237, + "malice": 28238, + "##ately": 28239, + "nedra": 28240, + "peeling": 28241, + "##rgeon": 28242, + "47th": 28243, + "stadiums": 28244, + "475": 28245, + "vertigo": 28246, + "##ains": 28247, + "iced": 28248, + "restroom": 28249, + "##plify": 28250, + "##tub": 28251, + "illustrating": 28252, + "pear": 28253, + "##chner": 28254, + "##sibility": 28255, + "inorganic": 28256, + "rappers": 28257, + "receipts": 28258, + "watery": 28259, + "##kura": 28260, + "lucinda": 28261, + "##oulos": 28262, + "reintroduced": 28263, + "##8th": 28264, + "##tched": 28265, + "gracefully": 28266, + "saxons": 28267, + "nutritional": 28268, + "wastewater": 28269, + "rained": 28270, + "favourites": 28271, + "bedrock": 28272, + "fisted": 28273, + "hallways": 28274, + "likeness": 28275, + "upscale": 28276, + "##lateral": 28277, + "1580": 28278, + "blinds": 28279, + "prequel": 28280, + "##pps": 28281, + "##tama": 28282, + "deter": 28283, + "humiliating": 28284, + "restraining": 28285, + "tn": 28286, + "vents": 28287, + "1659": 28288, + "laundering": 28289, + "recess": 28290, + "rosary": 28291, + "tractors": 28292, + "coulter": 28293, + "federer": 28294, + "##ifiers": 28295, + "##plin": 28296, + "persistence": 28297, + "##quitable": 28298, + "geschichte": 28299, + "pendulum": 28300, + "quakers": 28301, + "##beam": 28302, + "bassett": 28303, + "pictorial": 28304, + "buffet": 28305, + "koln": 28306, + "##sitor": 28307, + "drills": 28308, + "reciprocal": 28309, + "shooters": 28310, + "##57": 28311, + "##cton": 28312, + "##tees": 28313, + "converge": 28314, + "pip": 28315, + "dmitri": 28316, + "donnelly": 28317, + "yamamoto": 28318, + "aqua": 28319, + "azores": 28320, + "demographics": 28321, + "hypnotic": 28322, + "spitfire": 28323, + "suspend": 28324, + "wryly": 28325, + "roderick": 28326, + "##rran": 28327, + "sebastien": 28328, + "##asurable": 28329, + "mavericks": 28330, + "##fles": 28331, + "##200": 28332, + "himalayan": 28333, + "prodigy": 28334, + "##iance": 28335, + "transvaal": 28336, + "demonstrators": 28337, + "handcuffs": 28338, + "dodged": 28339, + "mcnamara": 28340, + "sublime": 28341, + "1726": 28342, + "crazed": 28343, + "##efined": 28344, + "##till": 28345, + "ivo": 28346, + "pondered": 28347, + "reconciled": 28348, + "shrill": 28349, + "sava": 28350, + "##duk": 28351, + "bal": 28352, + "cad": 28353, + "heresy": 28354, + "jaipur": 28355, + "goran": 28356, + "##nished": 28357, + "341": 28358, + "lux": 28359, + "shelly": 28360, + "whitehall": 28361, + "##hre": 28362, + "israelis": 28363, + "peacekeeping": 28364, + "##wled": 28365, + "1703": 28366, + "demetrius": 28367, + "ousted": 28368, + "##arians": 28369, + "##zos": 28370, + "beale": 28371, + "anwar": 28372, + "backstroke": 28373, + "raged": 28374, + "shrinking": 28375, + "cremated": 28376, + "##yck": 28377, + "benign": 28378, + "towing": 28379, + "wadi": 28380, + "darmstadt": 28381, + "landfill": 28382, + "parana": 28383, + "soothe": 28384, + "colleen": 28385, + "sidewalks": 28386, + "mayfair": 28387, + "tumble": 28388, + "hepatitis": 28389, + "ferrer": 28390, + "superstructure": 28391, + "##gingly": 28392, + "##urse": 28393, + "##wee": 28394, + "anthropological": 28395, + "translators": 28396, + "##mies": 28397, + "closeness": 28398, + "hooves": 28399, + "##pw": 28400, + "mondays": 28401, + "##roll": 28402, + "##vita": 28403, + "landscaping": 28404, + "##urized": 28405, + "purification": 28406, + "sock": 28407, + "thorns": 28408, + "thwarted": 28409, + "jalan": 28410, + "tiberius": 28411, + "##taka": 28412, + "saline": 28413, + "##rito": 28414, + "confidently": 28415, + "khyber": 28416, + "sculptors": 28417, + "##ij": 28418, + "brahms": 28419, + "hammersmith": 28420, + "inspectors": 28421, + "battista": 28422, + "fivb": 28423, + "fragmentation": 28424, + "hackney": 28425, + "##uls": 28426, + "arresting": 28427, + "exercising": 28428, + "antoinette": 28429, + "bedfordshire": 28430, + "##zily": 28431, + "dyed": 28432, + "##hema": 28433, + "1656": 28434, + "racetrack": 28435, + "variability": 28436, + "##tique": 28437, + "1655": 28438, + "austrians": 28439, + "deteriorating": 28440, + "madman": 28441, + "theorists": 28442, + "aix": 28443, + "lehman": 28444, + "weathered": 28445, + "1731": 28446, + "decreed": 28447, + "eruptions": 28448, + "1729": 28449, + "flaw": 28450, + "quinlan": 28451, + "sorbonne": 28452, + "flutes": 28453, + "nunez": 28454, + "1711": 28455, + "adored": 28456, + "downwards": 28457, + "fable": 28458, + "rasped": 28459, + "1712": 28460, + "moritz": 28461, + "mouthful": 28462, + "renegade": 28463, + "shivers": 28464, + "stunts": 28465, + "dysfunction": 28466, + "restrain": 28467, + "translit": 28468, + "327": 28469, + "pancakes": 28470, + "##avio": 28471, + "##cision": 28472, + "##tray": 28473, + "351": 28474, + "vial": 28475, + "##lden": 28476, + "bain": 28477, + "##maid": 28478, + "##oxide": 28479, + "chihuahua": 28480, + "malacca": 28481, + "vimes": 28482, + "##rba": 28483, + "##rnier": 28484, + "1664": 28485, + "donnie": 28486, + "plaques": 28487, + "##ually": 28488, + "337": 28489, + "bangs": 28490, + "floppy": 28491, + "huntsville": 28492, + "loretta": 28493, + "nikolay": 28494, + "##otte": 28495, + "eater": 28496, + "handgun": 28497, + "ubiquitous": 28498, + "##hett": 28499, + "eras": 28500, + "zodiac": 28501, + "1634": 28502, + "##omorphic": 28503, + "1820s": 28504, + "##zog": 28505, + "cochran": 28506, + "##bula": 28507, + "##lithic": 28508, + "warring": 28509, + "##rada": 28510, + "dalai": 28511, + "excused": 28512, + "blazers": 28513, + "mcconnell": 28514, + "reeling": 28515, + "bot": 28516, + "este": 28517, + "##abi": 28518, + "geese": 28519, + "hoax": 28520, + "taxon": 28521, + "##bla": 28522, + "guitarists": 28523, + "##icon": 28524, + "condemning": 28525, + "hunts": 28526, + "inversion": 28527, + "moffat": 28528, + "taekwondo": 28529, + "##lvis": 28530, + "1624": 28531, + "stammered": 28532, + "##rest": 28533, + "##rzy": 28534, + "sousa": 28535, + "fundraiser": 28536, + "marylebone": 28537, + "navigable": 28538, + "uptown": 28539, + "cabbage": 28540, + "daniela": 28541, + "salman": 28542, + "shitty": 28543, + "whimper": 28544, + "##kian": 28545, + "##utive": 28546, + "programmers": 28547, + "protections": 28548, + "rm": 28549, + "##rmi": 28550, + "##rued": 28551, + "forceful": 28552, + "##enes": 28553, + "fuss": 28554, + "##tao": 28555, + "##wash": 28556, + "brat": 28557, + "oppressive": 28558, + "reykjavik": 28559, + "spartak": 28560, + "ticking": 28561, + "##inkles": 28562, + "##kiewicz": 28563, + "adolph": 28564, + "horst": 28565, + "maui": 28566, + "protege": 28567, + "straighten": 28568, + "cpc": 28569, + "landau": 28570, + "concourse": 28571, + "clements": 28572, + "resultant": 28573, + "##ando": 28574, + "imaginative": 28575, + "joo": 28576, + "reactivated": 28577, + "##rem": 28578, + "##ffled": 28579, + "##uising": 28580, + "consultative": 28581, + "##guide": 28582, + "flop": 28583, + "kaitlyn": 28584, + "mergers": 28585, + "parenting": 28586, + "somber": 28587, + "##vron": 28588, + "supervise": 28589, + "vidhan": 28590, + "##imum": 28591, + "courtship": 28592, + "exemplified": 28593, + "harmonies": 28594, + "medallist": 28595, + "refining": 28596, + "##rrow": 28597, + "##ка": 28598, + "amara": 28599, + "##hum": 28600, + "780": 28601, + "goalscorer": 28602, + "sited": 28603, + "overshadowed": 28604, + "rohan": 28605, + "displeasure": 28606, + "secretive": 28607, + "multiplied": 28608, + "osman": 28609, + "##orth": 28610, + "engravings": 28611, + "padre": 28612, + "##kali": 28613, + "##veda": 28614, + "miniatures": 28615, + "mis": 28616, + "##yala": 28617, + "clap": 28618, + "pali": 28619, + "rook": 28620, + "##cana": 28621, + "1692": 28622, + "57th": 28623, + "antennae": 28624, + "astro": 28625, + "oskar": 28626, + "1628": 28627, + "bulldog": 28628, + "crotch": 28629, + "hackett": 28630, + "yucatan": 28631, + "##sure": 28632, + "amplifiers": 28633, + "brno": 28634, + "ferrara": 28635, + "migrating": 28636, + "##gree": 28637, + "thanking": 28638, + "turing": 28639, + "##eza": 28640, + "mccann": 28641, + "ting": 28642, + "andersson": 28643, + "onslaught": 28644, + "gaines": 28645, + "ganga": 28646, + "incense": 28647, + "standardization": 28648, + "##mation": 28649, + "sentai": 28650, + "scuba": 28651, + "stuffing": 28652, + "turquoise": 28653, + "waivers": 28654, + "alloys": 28655, + "##vitt": 28656, + "regaining": 28657, + "vaults": 28658, + "##clops": 28659, + "##gizing": 28660, + "digger": 28661, + "furry": 28662, + "memorabilia": 28663, + "probing": 28664, + "##iad": 28665, + "payton": 28666, + "rec": 28667, + "deutschland": 28668, + "filippo": 28669, + "opaque": 28670, + "seamen": 28671, + "zenith": 28672, + "afrikaans": 28673, + "##filtration": 28674, + "disciplined": 28675, + "inspirational": 28676, + "##merie": 28677, + "banco": 28678, + "confuse": 28679, + "grafton": 28680, + "tod": 28681, + "##dgets": 28682, + "championed": 28683, + "simi": 28684, + "anomaly": 28685, + "biplane": 28686, + "##ceptive": 28687, + "electrode": 28688, + "##para": 28689, + "1697": 28690, + "cleavage": 28691, + "crossbow": 28692, + "swirl": 28693, + "informant": 28694, + "##lars": 28695, + "##osta": 28696, + "afi": 28697, + "bonfire": 28698, + "spec": 28699, + "##oux": 28700, + "lakeside": 28701, + "slump": 28702, + "##culus": 28703, + "##lais": 28704, + "##qvist": 28705, + "##rrigan": 28706, + "1016": 28707, + "facades": 28708, + "borg": 28709, + "inwardly": 28710, + "cervical": 28711, + "xl": 28712, + "pointedly": 28713, + "050": 28714, + "stabilization": 28715, + "##odon": 28716, + "chests": 28717, + "1699": 28718, + "hacked": 28719, + "ctv": 28720, + "orthogonal": 28721, + "suzy": 28722, + "##lastic": 28723, + "gaulle": 28724, + "jacobite": 28725, + "rearview": 28726, + "##cam": 28727, + "##erted": 28728, + "ashby": 28729, + "##drik": 28730, + "##igate": 28731, + "##mise": 28732, + "##zbek": 28733, + "affectionately": 28734, + "canine": 28735, + "disperse": 28736, + "latham": 28737, + "##istles": 28738, + "##ivar": 28739, + "spielberg": 28740, + "##orin": 28741, + "##idium": 28742, + "ezekiel": 28743, + "cid": 28744, + "##sg": 28745, + "durga": 28746, + "middletown": 28747, + "##cina": 28748, + "customized": 28749, + "frontiers": 28750, + "harden": 28751, + "##etano": 28752, + "##zzy": 28753, + "1604": 28754, + "bolsheviks": 28755, + "##66": 28756, + "coloration": 28757, + "yoko": 28758, + "##bedo": 28759, + "briefs": 28760, + "slabs": 28761, + "debra": 28762, + "liquidation": 28763, + "plumage": 28764, + "##oin": 28765, + "blossoms": 28766, + "dementia": 28767, + "subsidy": 28768, + "1611": 28769, + "proctor": 28770, + "relational": 28771, + "jerseys": 28772, + "parochial": 28773, + "ter": 28774, + "##ici": 28775, + "esa": 28776, + "peshawar": 28777, + "cavalier": 28778, + "loren": 28779, + "cpi": 28780, + "idiots": 28781, + "shamrock": 28782, + "1646": 28783, + "dutton": 28784, + "malabar": 28785, + "mustache": 28786, + "##endez": 28787, + "##ocytes": 28788, + "referencing": 28789, + "terminates": 28790, + "marche": 28791, + "yarmouth": 28792, + "##sop": 28793, + "acton": 28794, + "mated": 28795, + "seton": 28796, + "subtly": 28797, + "baptised": 28798, + "beige": 28799, + "extremes": 28800, + "jolted": 28801, + "kristina": 28802, + "telecast": 28803, + "##actic": 28804, + "safeguard": 28805, + "waldo": 28806, + "##baldi": 28807, + "##bular": 28808, + "endeavors": 28809, + "sloppy": 28810, + "subterranean": 28811, + "##ensburg": 28812, + "##itung": 28813, + "delicately": 28814, + "pigment": 28815, + "tq": 28816, + "##scu": 28817, + "1626": 28818, + "##ound": 28819, + "collisions": 28820, + "coveted": 28821, + "herds": 28822, + "##personal": 28823, + "##meister": 28824, + "##nberger": 28825, + "chopra": 28826, + "##ricting": 28827, + "abnormalities": 28828, + "defective": 28829, + "galician": 28830, + "lucie": 28831, + "##dilly": 28832, + "alligator": 28833, + "likened": 28834, + "##genase": 28835, + "burundi": 28836, + "clears": 28837, + "complexion": 28838, + "derelict": 28839, + "deafening": 28840, + "diablo": 28841, + "fingered": 28842, + "champaign": 28843, + "dogg": 28844, + "enlist": 28845, + "isotope": 28846, + "labeling": 28847, + "mrna": 28848, + "##erre": 28849, + "brilliance": 28850, + "marvelous": 28851, + "##ayo": 28852, + "1652": 28853, + "crawley": 28854, + "ether": 28855, + "footed": 28856, + "dwellers": 28857, + "deserts": 28858, + "hamish": 28859, + "rubs": 28860, + "warlock": 28861, + "skimmed": 28862, + "##lizer": 28863, + "870": 28864, + "buick": 28865, + "embark": 28866, + "heraldic": 28867, + "irregularities": 28868, + "##ajan": 28869, + "kiara": 28870, + "##kulam": 28871, + "##ieg": 28872, + "antigen": 28873, + "kowalski": 28874, + "##lge": 28875, + "oakley": 28876, + "visitation": 28877, + "##mbit": 28878, + "vt": 28879, + "##suit": 28880, + "1570": 28881, + "murderers": 28882, + "##miento": 28883, + "##rites": 28884, + "chimneys": 28885, + "##sling": 28886, + "condemn": 28887, + "custer": 28888, + "exchequer": 28889, + "havre": 28890, + "##ghi": 28891, + "fluctuations": 28892, + "##rations": 28893, + "dfb": 28894, + "hendricks": 28895, + "vaccines": 28896, + "##tarian": 28897, + "nietzsche": 28898, + "biking": 28899, + "juicy": 28900, + "##duced": 28901, + "brooding": 28902, + "scrolling": 28903, + "selangor": 28904, + "##ragan": 28905, + "352": 28906, + "annum": 28907, + "boomed": 28908, + "seminole": 28909, + "sugarcane": 28910, + "##dna": 28911, + "departmental": 28912, + "dismissing": 28913, + "innsbruck": 28914, + "arteries": 28915, + "ashok": 28916, + "batavia": 28917, + "daze": 28918, + "kun": 28919, + "overtook": 28920, + "##rga": 28921, + "##tlan": 28922, + "beheaded": 28923, + "gaddafi": 28924, + "holm": 28925, + "electronically": 28926, + "faulty": 28927, + "galilee": 28928, + "fractures": 28929, + "kobayashi": 28930, + "##lized": 28931, + "gunmen": 28932, + "magma": 28933, + "aramaic": 28934, + "mala": 28935, + "eastenders": 28936, + "inference": 28937, + "messengers": 28938, + "bf": 28939, + "##qu": 28940, + "407": 28941, + "bathrooms": 28942, + "##vere": 28943, + "1658": 28944, + "flashbacks": 28945, + "ideally": 28946, + "misunderstood": 28947, + "##jali": 28948, + "##weather": 28949, + "mendez": 28950, + "##grounds": 28951, + "505": 28952, + "uncanny": 28953, + "##iii": 28954, + "1709": 28955, + "friendships": 28956, + "##nbc": 28957, + "sacrament": 28958, + "accommodated": 28959, + "reiterated": 28960, + "logistical": 28961, + "pebbles": 28962, + "thumped": 28963, + "##escence": 28964, + "administering": 28965, + "decrees": 28966, + "drafts": 28967, + "##flight": 28968, + "##cased": 28969, + "##tula": 28970, + "futuristic": 28971, + "picket": 28972, + "intimidation": 28973, + "winthrop": 28974, + "##fahan": 28975, + "interfered": 28976, + "339": 28977, + "afar": 28978, + "francoise": 28979, + "morally": 28980, + "uta": 28981, + "cochin": 28982, + "croft": 28983, + "dwarfs": 28984, + "##bruck": 28985, + "##dents": 28986, + "##nami": 28987, + "biker": 28988, + "##hner": 28989, + "##meral": 28990, + "nano": 28991, + "##isen": 28992, + "##ometric": 28993, + "##pres": 28994, + "##ан": 28995, + "brightened": 28996, + "meek": 28997, + "parcels": 28998, + "securely": 28999, + "gunners": 29000, + "##jhl": 29001, + "##zko": 29002, + "agile": 29003, + "hysteria": 29004, + "##lten": 29005, + "##rcus": 29006, + "bukit": 29007, + "champs": 29008, + "chevy": 29009, + "cuckoo": 29010, + "leith": 29011, + "sadler": 29012, + "theologians": 29013, + "welded": 29014, + "##section": 29015, + "1663": 29016, + "jj": 29017, + "plurality": 29018, + "xander": 29019, + "##rooms": 29020, + "##formed": 29021, + "shredded": 29022, + "temps": 29023, + "intimately": 29024, + "pau": 29025, + "tormented": 29026, + "##lok": 29027, + "##stellar": 29028, + "1618": 29029, + "charred": 29030, + "ems": 29031, + "essen": 29032, + "##mmel": 29033, + "alarms": 29034, + "spraying": 29035, + "ascot": 29036, + "blooms": 29037, + "twinkle": 29038, + "##abia": 29039, + "##apes": 29040, + "internment": 29041, + "obsidian": 29042, + "##chaft": 29043, + "snoop": 29044, + "##dav": 29045, + "##ooping": 29046, + "malibu": 29047, + "##tension": 29048, + "quiver": 29049, + "##itia": 29050, + "hays": 29051, + "mcintosh": 29052, + "travers": 29053, + "walsall": 29054, + "##ffie": 29055, + "1623": 29056, + "beverley": 29057, + "schwarz": 29058, + "plunging": 29059, + "structurally": 29060, + "m3": 29061, + "rosenthal": 29062, + "vikram": 29063, + "##tsk": 29064, + "770": 29065, + "ghz": 29066, + "##onda": 29067, + "##tiv": 29068, + "chalmers": 29069, + "groningen": 29070, + "pew": 29071, + "reckon": 29072, + "unicef": 29073, + "##rvis": 29074, + "55th": 29075, + "##gni": 29076, + "1651": 29077, + "sulawesi": 29078, + "avila": 29079, + "cai": 29080, + "metaphysical": 29081, + "screwing": 29082, + "turbulence": 29083, + "##mberg": 29084, + "augusto": 29085, + "samba": 29086, + "56th": 29087, + "baffled": 29088, + "momentary": 29089, + "toxin": 29090, + "##urian": 29091, + "##wani": 29092, + "aachen": 29093, + "condoms": 29094, + "dali": 29095, + "steppe": 29096, + "##3d": 29097, + "##app": 29098, + "##oed": 29099, + "##year": 29100, + "adolescence": 29101, + "dauphin": 29102, + "electrically": 29103, + "inaccessible": 29104, + "microscopy": 29105, + "nikita": 29106, + "##ega": 29107, + "atv": 29108, + "##cel": 29109, + "##enter": 29110, + "##oles": 29111, + "##oteric": 29112, + "##ы": 29113, + "accountants": 29114, + "punishments": 29115, + "wrongly": 29116, + "bribes": 29117, + "adventurous": 29118, + "clinch": 29119, + "flinders": 29120, + "southland": 29121, + "##hem": 29122, + "##kata": 29123, + "gough": 29124, + "##ciency": 29125, + "lads": 29126, + "soared": 29127, + "##ה": 29128, + "undergoes": 29129, + "deformation": 29130, + "outlawed": 29131, + "rubbish": 29132, + "##arus": 29133, + "##mussen": 29134, + "##nidae": 29135, + "##rzburg": 29136, + "arcs": 29137, + "##ingdon": 29138, + "##tituted": 29139, + "1695": 29140, + "wheelbase": 29141, + "wheeling": 29142, + "bombardier": 29143, + "campground": 29144, + "zebra": 29145, + "##lices": 29146, + "##oj": 29147, + "##bain": 29148, + "lullaby": 29149, + "##ecure": 29150, + "donetsk": 29151, + "wylie": 29152, + "grenada": 29153, + "##arding": 29154, + "##ης": 29155, + "squinting": 29156, + "eireann": 29157, + "opposes": 29158, + "##andra": 29159, + "maximal": 29160, + "runes": 29161, + "##broken": 29162, + "##cuting": 29163, + "##iface": 29164, + "##ror": 29165, + "##rosis": 29166, + "additive": 29167, + "britney": 29168, + "adultery": 29169, + "triggering": 29170, + "##drome": 29171, + "detrimental": 29172, + "aarhus": 29173, + "containment": 29174, + "jc": 29175, + "swapped": 29176, + "vichy": 29177, + "##ioms": 29178, + "madly": 29179, + "##oric": 29180, + "##rag": 29181, + "brant": 29182, + "##ckey": 29183, + "##trix": 29184, + "1560": 29185, + "1612": 29186, + "broughton": 29187, + "rustling": 29188, + "##stems": 29189, + "##uder": 29190, + "asbestos": 29191, + "mentoring": 29192, + "##nivorous": 29193, + "finley": 29194, + "leaps": 29195, + "##isan": 29196, + "apical": 29197, + "pry": 29198, + "slits": 29199, + "substitutes": 29200, + "##dict": 29201, + "intuitive": 29202, + "fantasia": 29203, + "insistent": 29204, + "unreasonable": 29205, + "##igen": 29206, + "##vna": 29207, + "domed": 29208, + "hannover": 29209, + "margot": 29210, + "ponder": 29211, + "##zziness": 29212, + "impromptu": 29213, + "jian": 29214, + "lc": 29215, + "rampage": 29216, + "stemming": 29217, + "##eft": 29218, + "andrey": 29219, + "gerais": 29220, + "whichever": 29221, + "amnesia": 29222, + "appropriated": 29223, + "anzac": 29224, + "clicks": 29225, + "modifying": 29226, + "ultimatum": 29227, + "cambrian": 29228, + "maids": 29229, + "verve": 29230, + "yellowstone": 29231, + "##mbs": 29232, + "conservatoire": 29233, + "##scribe": 29234, + "adherence": 29235, + "dinners": 29236, + "spectra": 29237, + "imperfect": 29238, + "mysteriously": 29239, + "sidekick": 29240, + "tatar": 29241, + "tuba": 29242, + "##aks": 29243, + "##ifolia": 29244, + "distrust": 29245, + "##athan": 29246, + "##zle": 29247, + "c2": 29248, + "ronin": 29249, + "zac": 29250, + "##pse": 29251, + "celaena": 29252, + "instrumentalist": 29253, + "scents": 29254, + "skopje": 29255, + "##mbling": 29256, + "comical": 29257, + "compensated": 29258, + "vidal": 29259, + "condor": 29260, + "intersect": 29261, + "jingle": 29262, + "wavelengths": 29263, + "##urrent": 29264, + "mcqueen": 29265, + "##izzly": 29266, + "carp": 29267, + "weasel": 29268, + "422": 29269, + "kanye": 29270, + "militias": 29271, + "postdoctoral": 29272, + "eugen": 29273, + "gunslinger": 29274, + "##ɛ": 29275, + "faux": 29276, + "hospice": 29277, + "##for": 29278, + "appalled": 29279, + "derivation": 29280, + "dwarves": 29281, + "##elis": 29282, + "dilapidated": 29283, + "##folk": 29284, + "astoria": 29285, + "philology": 29286, + "##lwyn": 29287, + "##otho": 29288, + "##saka": 29289, + "inducing": 29290, + "philanthropy": 29291, + "##bf": 29292, + "##itative": 29293, + "geek": 29294, + "markedly": 29295, + "sql": 29296, + "##yce": 29297, + "bessie": 29298, + "indices": 29299, + "rn": 29300, + "##flict": 29301, + "495": 29302, + "frowns": 29303, + "resolving": 29304, + "weightlifting": 29305, + "tugs": 29306, + "cleric": 29307, + "contentious": 29308, + "1653": 29309, + "mania": 29310, + "rms": 29311, + "##miya": 29312, + "##reate": 29313, + "##ruck": 29314, + "##tucket": 29315, + "bien": 29316, + "eels": 29317, + "marek": 29318, + "##ayton": 29319, + "##cence": 29320, + "discreet": 29321, + "unofficially": 29322, + "##ife": 29323, + "leaks": 29324, + "##bber": 29325, + "1705": 29326, + "332": 29327, + "dung": 29328, + "compressor": 29329, + "hillsborough": 29330, + "pandit": 29331, + "shillings": 29332, + "distal": 29333, + "##skin": 29334, + "381": 29335, + "##tat": 29336, + "##you": 29337, + "nosed": 29338, + "##nir": 29339, + "mangrove": 29340, + "undeveloped": 29341, + "##idia": 29342, + "textures": 29343, + "##inho": 29344, + "##500": 29345, + "##rise": 29346, + "ae": 29347, + "irritating": 29348, + "nay": 29349, + "amazingly": 29350, + "bancroft": 29351, + "apologetic": 29352, + "compassionate": 29353, + "kata": 29354, + "symphonies": 29355, + "##lovic": 29356, + "airspace": 29357, + "##lch": 29358, + "930": 29359, + "gifford": 29360, + "precautions": 29361, + "fulfillment": 29362, + "sevilla": 29363, + "vulgar": 29364, + "martinique": 29365, + "##urities": 29366, + "looting": 29367, + "piccolo": 29368, + "tidy": 29369, + "##dermott": 29370, + "quadrant": 29371, + "armchair": 29372, + "incomes": 29373, + "mathematicians": 29374, + "stampede": 29375, + "nilsson": 29376, + "##inking": 29377, + "##scan": 29378, + "foo": 29379, + "quarterfinal": 29380, + "##ostal": 29381, + "shang": 29382, + "shouldered": 29383, + "squirrels": 29384, + "##owe": 29385, + "344": 29386, + "vinegar": 29387, + "##bner": 29388, + "##rchy": 29389, + "##systems": 29390, + "delaying": 29391, + "##trics": 29392, + "ars": 29393, + "dwyer": 29394, + "rhapsody": 29395, + "sponsoring": 29396, + "##gration": 29397, + "bipolar": 29398, + "cinder": 29399, + "starters": 29400, + "##olio": 29401, + "##urst": 29402, + "421": 29403, + "signage": 29404, + "##nty": 29405, + "aground": 29406, + "figurative": 29407, + "mons": 29408, + "acquaintances": 29409, + "duets": 29410, + "erroneously": 29411, + "soyuz": 29412, + "elliptic": 29413, + "recreated": 29414, + "##cultural": 29415, + "##quette": 29416, + "##ssed": 29417, + "##tma": 29418, + "##zcz": 29419, + "moderator": 29420, + "scares": 29421, + "##itaire": 29422, + "##stones": 29423, + "##udence": 29424, + "juniper": 29425, + "sighting": 29426, + "##just": 29427, + "##nsen": 29428, + "britten": 29429, + "calabria": 29430, + "ry": 29431, + "bop": 29432, + "cramer": 29433, + "forsyth": 29434, + "stillness": 29435, + "##л": 29436, + "airmen": 29437, + "gathers": 29438, + "unfit": 29439, + "##umber": 29440, + "##upt": 29441, + "taunting": 29442, + "##rip": 29443, + "seeker": 29444, + "streamlined": 29445, + "##bution": 29446, + "holster": 29447, + "schumann": 29448, + "tread": 29449, + "vox": 29450, + "##gano": 29451, + "##onzo": 29452, + "strive": 29453, + "dil": 29454, + "reforming": 29455, + "covent": 29456, + "newbury": 29457, + "predicting": 29458, + "##orro": 29459, + "decorate": 29460, + "tre": 29461, + "##puted": 29462, + "andover": 29463, + "ie": 29464, + "asahi": 29465, + "dept": 29466, + "dunkirk": 29467, + "gills": 29468, + "##tori": 29469, + "buren": 29470, + "huskies": 29471, + "##stis": 29472, + "##stov": 29473, + "abstracts": 29474, + "bets": 29475, + "loosen": 29476, + "##opa": 29477, + "1682": 29478, + "yearning": 29479, + "##glio": 29480, + "##sir": 29481, + "berman": 29482, + "effortlessly": 29483, + "enamel": 29484, + "napoli": 29485, + "persist": 29486, + "##peration": 29487, + "##uez": 29488, + "attache": 29489, + "elisa": 29490, + "b1": 29491, + "invitations": 29492, + "##kic": 29493, + "accelerating": 29494, + "reindeer": 29495, + "boardwalk": 29496, + "clutches": 29497, + "nelly": 29498, + "polka": 29499, + "starbucks": 29500, + "##kei": 29501, + "adamant": 29502, + "huey": 29503, + "lough": 29504, + "unbroken": 29505, + "adventurer": 29506, + "embroidery": 29507, + "inspecting": 29508, + "stanza": 29509, + "##ducted": 29510, + "naia": 29511, + "taluka": 29512, + "##pone": 29513, + "##roids": 29514, + "chases": 29515, + "deprivation": 29516, + "florian": 29517, + "##jing": 29518, + "##ppet": 29519, + "earthly": 29520, + "##lib": 29521, + "##ssee": 29522, + "colossal": 29523, + "foreigner": 29524, + "vet": 29525, + "freaks": 29526, + "patrice": 29527, + "rosewood": 29528, + "triassic": 29529, + "upstate": 29530, + "##pkins": 29531, + "dominates": 29532, + "ata": 29533, + "chants": 29534, + "ks": 29535, + "vo": 29536, + "##400": 29537, + "##bley": 29538, + "##raya": 29539, + "##rmed": 29540, + "555": 29541, + "agra": 29542, + "infiltrate": 29543, + "##ailing": 29544, + "##ilation": 29545, + "##tzer": 29546, + "##uppe": 29547, + "##werk": 29548, + "binoculars": 29549, + "enthusiast": 29550, + "fujian": 29551, + "squeak": 29552, + "##avs": 29553, + "abolitionist": 29554, + "almeida": 29555, + "boredom": 29556, + "hampstead": 29557, + "marsden": 29558, + "rations": 29559, + "##ands": 29560, + "inflated": 29561, + "334": 29562, + "bonuses": 29563, + "rosalie": 29564, + "patna": 29565, + "##rco": 29566, + "329": 29567, + "detachments": 29568, + "penitentiary": 29569, + "54th": 29570, + "flourishing": 29571, + "woolf": 29572, + "##dion": 29573, + "##etched": 29574, + "papyrus": 29575, + "##lster": 29576, + "##nsor": 29577, + "##toy": 29578, + "bobbed": 29579, + "dismounted": 29580, + "endelle": 29581, + "inhuman": 29582, + "motorola": 29583, + "tbs": 29584, + "wince": 29585, + "wreath": 29586, + "##ticus": 29587, + "hideout": 29588, + "inspections": 29589, + "sanjay": 29590, + "disgrace": 29591, + "infused": 29592, + "pudding": 29593, + "stalks": 29594, + "##urbed": 29595, + "arsenic": 29596, + "leases": 29597, + "##hyl": 29598, + "##rrard": 29599, + "collarbone": 29600, + "##waite": 29601, + "##wil": 29602, + "dowry": 29603, + "##bant": 29604, + "##edance": 29605, + "genealogical": 29606, + "nitrate": 29607, + "salamanca": 29608, + "scandals": 29609, + "thyroid": 29610, + "necessitated": 29611, + "##!": 29612, + "##\"": 29613, + "###": 29614, + "##$": 29615, + "##%": 29616, + "##&": 29617, + "##'": 29618, + "##(": 29619, + "##)": 29620, + "##*": 29621, + "##+": 29622, + "##,": 29623, + "##-": 29624, + "##.": 29625, + "##/": 29626, + "##:": 29627, + "##;": 29628, + "##<": 29629, + "##=": 29630, + "##>": 29631, + "##?": 29632, + "##@": 29633, + "##[": 29634, + "##\\": 29635, + "##]": 29636, + "##^": 29637, + "##_": 29638, + "##`": 29639, + "##{": 29640, + "##|": 29641, + "##}": 29642, + "##~": 29643, + "##¡": 29644, + "##¢": 29645, + "##£": 29646, + "##¤": 29647, + "##¥": 29648, + "##¦": 29649, + "##§": 29650, + "##¨": 29651, + "##©": 29652, + "##ª": 29653, + "##«": 29654, + "##¬": 29655, + "##®": 29656, + "##±": 29657, + "##´": 29658, + "##µ": 29659, + "##¶": 29660, + "##·": 29661, + "##º": 29662, + "##»": 29663, + "##¼": 29664, + "##¾": 29665, + "##¿": 29666, + "##æ": 29667, + "##ð": 29668, + "##÷": 29669, + "##þ": 29670, + "##đ": 29671, + "##ħ": 29672, + "##ŋ": 29673, + "##œ": 29674, + "##ƒ": 29675, + "##ɐ": 29676, + "##ɑ": 29677, + "##ɒ": 29678, + "##ɔ": 29679, + "##ɕ": 29680, + "##ə": 29681, + "##ɡ": 29682, + "##ɣ": 29683, + "##ɨ": 29684, + "##ɪ": 29685, + "##ɫ": 29686, + "##ɬ": 29687, + "##ɯ": 29688, + "##ɲ": 29689, + "##ɴ": 29690, + "##ɹ": 29691, + "##ɾ": 29692, + "##ʀ": 29693, + "##ʁ": 29694, + "##ʂ": 29695, + "##ʃ": 29696, + "##ʉ": 29697, + "##ʊ": 29698, + "##ʋ": 29699, + "##ʌ": 29700, + "##ʎ": 29701, + "##ʐ": 29702, + "##ʑ": 29703, + "##ʒ": 29704, + "##ʔ": 29705, + "##ʰ": 29706, + "##ʲ": 29707, + "##ʳ": 29708, + "##ʷ": 29709, + "##ʸ": 29710, + "##ʻ": 29711, + "##ʼ": 29712, + "##ʾ": 29713, + "##ʿ": 29714, + "##ˈ": 29715, + "##ˡ": 29716, + "##ˢ": 29717, + "##ˣ": 29718, + "##ˤ": 29719, + "##β": 29720, + "##γ": 29721, + "##δ": 29722, + "##ε": 29723, + "##ζ": 29724, + "##θ": 29725, + "##κ": 29726, + "##λ": 29727, + "##μ": 29728, + "##ξ": 29729, + "##ο": 29730, + "##π": 29731, + "##ρ": 29732, + "##σ": 29733, + "##τ": 29734, + "##υ": 29735, + "##φ": 29736, + "##χ": 29737, + "##ψ": 29738, + "##ω": 29739, + "##б": 29740, + "##г": 29741, + "##д": 29742, + "##ж": 29743, + "##з": 29744, + "##м": 29745, + "##п": 29746, + "##с": 29747, + "##у": 29748, + "##ф": 29749, + "##х": 29750, + "##ц": 29751, + "##ч": 29752, + "##ш": 29753, + "##щ": 29754, + "##ъ": 29755, + "##э": 29756, + "##ю": 29757, + "##ђ": 29758, + "##є": 29759, + "##і": 29760, + "##ј": 29761, + "##љ": 29762, + "##њ": 29763, + "##ћ": 29764, + "##ӏ": 29765, + "##ա": 29766, + "##բ": 29767, + "##գ": 29768, + "##դ": 29769, + "##ե": 29770, + "##թ": 29771, + "##ի": 29772, + "##լ": 29773, + "##կ": 29774, + "##հ": 29775, + "##մ": 29776, + "##յ": 29777, + "##ն": 29778, + "##ո": 29779, + "##պ": 29780, + "##ս": 29781, + "##վ": 29782, + "##տ": 29783, + "##ր": 29784, + "##ւ": 29785, + "##ք": 29786, + "##־": 29787, + "##א": 29788, + "##ב": 29789, + "##ג": 29790, + "##ד": 29791, + "##ו": 29792, + "##ז": 29793, + "##ח": 29794, + "##ט": 29795, + "##י": 29796, + "##ך": 29797, + "##כ": 29798, + "##ל": 29799, + "##ם": 29800, + "##מ": 29801, + "##ן": 29802, + "##נ": 29803, + "##ס": 29804, + "##ע": 29805, + "##ף": 29806, + "##פ": 29807, + "##ץ": 29808, + "##צ": 29809, + "##ק": 29810, + "##ר": 29811, + "##ש": 29812, + "##ת": 29813, + "##،": 29814, + "##ء": 29815, + "##ب": 29816, + "##ت": 29817, + "##ث": 29818, + "##ج": 29819, + "##ح": 29820, + "##خ": 29821, + "##ذ": 29822, + "##ز": 29823, + "##س": 29824, + "##ش": 29825, + "##ص": 29826, + "##ض": 29827, + "##ط": 29828, + "##ظ": 29829, + "##ع": 29830, + "##غ": 29831, + "##ـ": 29832, + "##ف": 29833, + "##ق": 29834, + "##ك": 29835, + "##و": 29836, + "##ى": 29837, + "##ٹ": 29838, + "##پ": 29839, + "##چ": 29840, + "##ک": 29841, + "##گ": 29842, + "##ں": 29843, + "##ھ": 29844, + "##ہ": 29845, + "##ے": 29846, + "##अ": 29847, + "##आ": 29848, + "##उ": 29849, + "##ए": 29850, + "##क": 29851, + "##ख": 29852, + "##ग": 29853, + "##च": 29854, + "##ज": 29855, + "##ट": 29856, + "##ड": 29857, + "##ण": 29858, + "##त": 29859, + "##थ": 29860, + "##द": 29861, + "##ध": 29862, + "##न": 29863, + "##प": 29864, + "##ब": 29865, + "##भ": 29866, + "##म": 29867, + "##य": 29868, + "##र": 29869, + "##ल": 29870, + "##व": 29871, + "##श": 29872, + "##ष": 29873, + "##स": 29874, + "##ह": 29875, + "##ा": 29876, + "##ि": 29877, + "##ी": 29878, + "##ो": 29879, + "##।": 29880, + "##॥": 29881, + "##ং": 29882, + "##অ": 29883, + "##আ": 29884, + "##ই": 29885, + "##উ": 29886, + "##এ": 29887, + "##ও": 29888, + "##ক": 29889, + "##খ": 29890, + "##গ": 29891, + "##চ": 29892, + "##ছ": 29893, + "##জ": 29894, + "##ট": 29895, + "##ড": 29896, + "##ণ": 29897, + "##ত": 29898, + "##থ": 29899, + "##দ": 29900, + "##ধ": 29901, + "##ন": 29902, + "##প": 29903, + "##ব": 29904, + "##ভ": 29905, + "##ম": 29906, + "##য": 29907, + "##র": 29908, + "##ল": 29909, + "##শ": 29910, + "##ষ": 29911, + "##স": 29912, + "##হ": 29913, + "##া": 29914, + "##ি": 29915, + "##ী": 29916, + "##ে": 29917, + "##க": 29918, + "##ச": 29919, + "##ட": 29920, + "##த": 29921, + "##ந": 29922, + "##ன": 29923, + "##ப": 29924, + "##ம": 29925, + "##ய": 29926, + "##ர": 29927, + "##ல": 29928, + "##ள": 29929, + "##வ": 29930, + "##ா": 29931, + "##ி": 29932, + "##ு": 29933, + "##ே": 29934, + "##ை": 29935, + "##ನ": 29936, + "##ರ": 29937, + "##ಾ": 29938, + "##ක": 29939, + "##ය": 29940, + "##ර": 29941, + "##ල": 29942, + "##ව": 29943, + "##ා": 29944, + "##ก": 29945, + "##ง": 29946, + "##ต": 29947, + "##ท": 29948, + "##น": 29949, + "##พ": 29950, + "##ม": 29951, + "##ย": 29952, + "##ร": 29953, + "##ล": 29954, + "##ว": 29955, + "##ส": 29956, + "##อ": 29957, + "##า": 29958, + "##เ": 29959, + "##་": 29960, + "##།": 29961, + "##ག": 29962, + "##ང": 29963, + "##ད": 29964, + "##ན": 29965, + "##པ": 29966, + "##བ": 29967, + "##མ": 29968, + "##འ": 29969, + "##ར": 29970, + "##ལ": 29971, + "##ས": 29972, + "##မ": 29973, + "##ა": 29974, + "##ბ": 29975, + "##გ": 29976, + "##დ": 29977, + "##ე": 29978, + "##ვ": 29979, + "##თ": 29980, + "##ი": 29981, + "##კ": 29982, + "##ლ": 29983, + "##მ": 29984, + "##ნ": 29985, + "##ო": 29986, + "##რ": 29987, + "##ს": 29988, + "##ტ": 29989, + "##უ": 29990, + "##ᄀ": 29991, + "##ᄂ": 29992, + "##ᄃ": 29993, + "##ᄅ": 29994, + "##ᄆ": 29995, + "##ᄇ": 29996, + "##ᄉ": 29997, + "##ᄊ": 29998, + "##ᄋ": 29999, + "##ᄌ": 30000, + "##ᄎ": 30001, + "##ᄏ": 30002, + "##ᄐ": 30003, + "##ᄑ": 30004, + "##ᄒ": 30005, + "##ᅡ": 30006, + "##ᅢ": 30007, + "##ᅥ": 30008, + "##ᅦ": 30009, + "##ᅧ": 30010, + "##ᅩ": 30011, + "##ᅪ": 30012, + "##ᅭ": 30013, + "##ᅮ": 30014, + "##ᅯ": 30015, + "##ᅲ": 30016, + "##ᅳ": 30017, + "##ᅴ": 30018, + "##ᅵ": 30019, + "##ᆨ": 30020, + "##ᆫ": 30021, + "##ᆯ": 30022, + "##ᆷ": 30023, + "##ᆸ": 30024, + "##ᆼ": 30025, + "##ᴬ": 30026, + "##ᴮ": 30027, + "##ᴰ": 30028, + "##ᴵ": 30029, + "##ᴺ": 30030, + "##ᵀ": 30031, + "##ᵃ": 30032, + "##ᵇ": 30033, + "##ᵈ": 30034, + "##ᵉ": 30035, + "##ᵍ": 30036, + "##ᵏ": 30037, + "##ᵐ": 30038, + "##ᵒ": 30039, + "##ᵖ": 30040, + "##ᵗ": 30041, + "##ᵘ": 30042, + "##ᵣ": 30043, + "##ᵤ": 30044, + "##ᵥ": 30045, + "##ᶜ": 30046, + "##ᶠ": 30047, + "##‐": 30048, + "##‑": 30049, + "##‒": 30050, + "##–": 30051, + "##—": 30052, + "##―": 30053, + "##‖": 30054, + "##‘": 30055, + "##’": 30056, + "##‚": 30057, + "##“": 30058, + "##”": 30059, + "##„": 30060, + "##†": 30061, + "##‡": 30062, + "##•": 30063, + "##…": 30064, + "##‰": 30065, + "##′": 30066, + "##″": 30067, + "##›": 30068, + "##‿": 30069, + "##⁄": 30070, + "##⁰": 30071, + "##ⁱ": 30072, + "##⁴": 30073, + "##⁵": 30074, + "##⁶": 30075, + "##⁷": 30076, + "##⁸": 30077, + "##⁹": 30078, + "##⁻": 30079, + "##ⁿ": 30080, + "##₅": 30081, + "##₆": 30082, + "##₇": 30083, + "##₈": 30084, + "##₉": 30085, + "##₊": 30086, + "##₍": 30087, + "##₎": 30088, + "##ₐ": 30089, + "##ₑ": 30090, + "##ₒ": 30091, + "##ₓ": 30092, + "##ₕ": 30093, + "##ₖ": 30094, + "##ₗ": 30095, + "##ₘ": 30096, + "##ₚ": 30097, + "##ₛ": 30098, + "##ₜ": 30099, + "##₤": 30100, + "##₩": 30101, + "##€": 30102, + "##₱": 30103, + "##₹": 30104, + "##ℓ": 30105, + "##№": 30106, + "##ℝ": 30107, + "##™": 30108, + "##⅓": 30109, + "##⅔": 30110, + "##←": 30111, + "##↑": 30112, + "##→": 30113, + "##↓": 30114, + "##↔": 30115, + "##↦": 30116, + "##⇄": 30117, + "##⇌": 30118, + "##⇒": 30119, + "##∂": 30120, + "##∅": 30121, + "##∆": 30122, + "##∇": 30123, + "##∈": 30124, + "##∗": 30125, + "##∘": 30126, + "##√": 30127, + "##∞": 30128, + "##∧": 30129, + "##∨": 30130, + "##∩": 30131, + "##∪": 30132, + "##≈": 30133, + "##≡": 30134, + "##≤": 30135, + "##≥": 30136, + "##⊂": 30137, + "##⊆": 30138, + "##⊕": 30139, + "##⊗": 30140, + "##⋅": 30141, + "##─": 30142, + "##│": 30143, + "##■": 30144, + "##▪": 30145, + "##●": 30146, + "##★": 30147, + "##☆": 30148, + "##☉": 30149, + "##♠": 30150, + "##♣": 30151, + "##♥": 30152, + "##♦": 30153, + "##♯": 30154, + "##⟨": 30155, + "##⟩": 30156, + "##ⱼ": 30157, + "##⺩": 30158, + "##⺼": 30159, + "##⽥": 30160, + "##、": 30161, + "##。": 30162, + "##〈": 30163, + "##〉": 30164, + "##《": 30165, + "##》": 30166, + "##「": 30167, + "##」": 30168, + "##『": 30169, + "##』": 30170, + "##〜": 30171, + "##あ": 30172, + "##い": 30173, + "##う": 30174, + "##え": 30175, + "##お": 30176, + "##か": 30177, + "##き": 30178, + "##く": 30179, + "##け": 30180, + "##こ": 30181, + "##さ": 30182, + "##し": 30183, + "##す": 30184, + "##せ": 30185, + "##そ": 30186, + "##た": 30187, + "##ち": 30188, + "##っ": 30189, + "##つ": 30190, + "##て": 30191, + "##と": 30192, + "##な": 30193, + "##に": 30194, + "##ぬ": 30195, + "##ね": 30196, + "##の": 30197, + "##は": 30198, + "##ひ": 30199, + "##ふ": 30200, + "##へ": 30201, + "##ほ": 30202, + "##ま": 30203, + "##み": 30204, + "##む": 30205, + "##め": 30206, + "##も": 30207, + "##や": 30208, + "##ゆ": 30209, + "##よ": 30210, + "##ら": 30211, + "##り": 30212, + "##る": 30213, + "##れ": 30214, + "##ろ": 30215, + "##を": 30216, + "##ん": 30217, + "##ァ": 30218, + "##ア": 30219, + "##ィ": 30220, + "##イ": 30221, + "##ウ": 30222, + "##ェ": 30223, + "##エ": 30224, + "##オ": 30225, + "##カ": 30226, + "##キ": 30227, + "##ク": 30228, + "##ケ": 30229, + "##コ": 30230, + "##サ": 30231, + "##シ": 30232, + "##ス": 30233, + "##セ": 30234, + "##タ": 30235, + "##チ": 30236, + "##ッ": 30237, + "##ツ": 30238, + "##テ": 30239, + "##ト": 30240, + "##ナ": 30241, + "##ニ": 30242, + "##ノ": 30243, + "##ハ": 30244, + "##ヒ": 30245, + "##フ": 30246, + "##ヘ": 30247, + "##ホ": 30248, + "##マ": 30249, + "##ミ": 30250, + "##ム": 30251, + "##メ": 30252, + "##モ": 30253, + "##ャ": 30254, + "##ュ": 30255, + "##ョ": 30256, + "##ラ": 30257, + "##リ": 30258, + "##ル": 30259, + "##レ": 30260, + "##ロ": 30261, + "##ワ": 30262, + "##ン": 30263, + "##・": 30264, + "##ー": 30265, + "##一": 30266, + "##三": 30267, + "##上": 30268, + "##下": 30269, + "##不": 30270, + "##世": 30271, + "##中": 30272, + "##主": 30273, + "##久": 30274, + "##之": 30275, + "##也": 30276, + "##事": 30277, + "##二": 30278, + "##五": 30279, + "##井": 30280, + "##京": 30281, + "##人": 30282, + "##亻": 30283, + "##仁": 30284, + "##介": 30285, + "##代": 30286, + "##仮": 30287, + "##伊": 30288, + "##会": 30289, + "##佐": 30290, + "##侍": 30291, + "##保": 30292, + "##信": 30293, + "##健": 30294, + "##元": 30295, + "##光": 30296, + "##八": 30297, + "##公": 30298, + "##内": 30299, + "##出": 30300, + "##分": 30301, + "##前": 30302, + "##劉": 30303, + "##力": 30304, + "##加": 30305, + "##勝": 30306, + "##北": 30307, + "##区": 30308, + "##十": 30309, + "##千": 30310, + "##南": 30311, + "##博": 30312, + "##原": 30313, + "##口": 30314, + "##古": 30315, + "##史": 30316, + "##司": 30317, + "##合": 30318, + "##吉": 30319, + "##同": 30320, + "##名": 30321, + "##和": 30322, + "##囗": 30323, + "##四": 30324, + "##国": 30325, + "##國": 30326, + "##土": 30327, + "##地": 30328, + "##坂": 30329, + "##城": 30330, + "##堂": 30331, + "##場": 30332, + "##士": 30333, + "##夏": 30334, + "##外": 30335, + "##大": 30336, + "##天": 30337, + "##太": 30338, + "##夫": 30339, + "##奈": 30340, + "##女": 30341, + "##子": 30342, + "##学": 30343, + "##宀": 30344, + "##宇": 30345, + "##安": 30346, + "##宗": 30347, + "##定": 30348, + "##宣": 30349, + "##宮": 30350, + "##家": 30351, + "##宿": 30352, + "##寺": 30353, + "##將": 30354, + "##小": 30355, + "##尚": 30356, + "##山": 30357, + "##岡": 30358, + "##島": 30359, + "##崎": 30360, + "##川": 30361, + "##州": 30362, + "##巿": 30363, + "##帝": 30364, + "##平": 30365, + "##年": 30366, + "##幸": 30367, + "##广": 30368, + "##弘": 30369, + "##張": 30370, + "##彳": 30371, + "##後": 30372, + "##御": 30373, + "##德": 30374, + "##心": 30375, + "##忄": 30376, + "##志": 30377, + "##忠": 30378, + "##愛": 30379, + "##成": 30380, + "##我": 30381, + "##戦": 30382, + "##戸": 30383, + "##手": 30384, + "##扌": 30385, + "##政": 30386, + "##文": 30387, + "##新": 30388, + "##方": 30389, + "##日": 30390, + "##明": 30391, + "##星": 30392, + "##春": 30393, + "##昭": 30394, + "##智": 30395, + "##曲": 30396, + "##書": 30397, + "##月": 30398, + "##有": 30399, + "##朝": 30400, + "##木": 30401, + "##本": 30402, + "##李": 30403, + "##村": 30404, + "##東": 30405, + "##松": 30406, + "##林": 30407, + "##森": 30408, + "##楊": 30409, + "##樹": 30410, + "##橋": 30411, + "##歌": 30412, + "##止": 30413, + "##正": 30414, + "##武": 30415, + "##比": 30416, + "##氏": 30417, + "##民": 30418, + "##水": 30419, + "##氵": 30420, + "##氷": 30421, + "##永": 30422, + "##江": 30423, + "##沢": 30424, + "##河": 30425, + "##治": 30426, + "##法": 30427, + "##海": 30428, + "##清": 30429, + "##漢": 30430, + "##瀬": 30431, + "##火": 30432, + "##版": 30433, + "##犬": 30434, + "##王": 30435, + "##生": 30436, + "##田": 30437, + "##男": 30438, + "##疒": 30439, + "##発": 30440, + "##白": 30441, + "##的": 30442, + "##皇": 30443, + "##目": 30444, + "##相": 30445, + "##省": 30446, + "##真": 30447, + "##石": 30448, + "##示": 30449, + "##社": 30450, + "##神": 30451, + "##福": 30452, + "##禾": 30453, + "##秀": 30454, + "##秋": 30455, + "##空": 30456, + "##立": 30457, + "##章": 30458, + "##竹": 30459, + "##糹": 30460, + "##美": 30461, + "##義": 30462, + "##耳": 30463, + "##良": 30464, + "##艹": 30465, + "##花": 30466, + "##英": 30467, + "##華": 30468, + "##葉": 30469, + "##藤": 30470, + "##行": 30471, + "##街": 30472, + "##西": 30473, + "##見": 30474, + "##訁": 30475, + "##語": 30476, + "##谷": 30477, + "##貝": 30478, + "##貴": 30479, + "##車": 30480, + "##軍": 30481, + "##辶": 30482, + "##道": 30483, + "##郎": 30484, + "##郡": 30485, + "##部": 30486, + "##都": 30487, + "##里": 30488, + "##野": 30489, + "##金": 30490, + "##鈴": 30491, + "##镇": 30492, + "##長": 30493, + "##門": 30494, + "##間": 30495, + "##阝": 30496, + "##阿": 30497, + "##陳": 30498, + "##陽": 30499, + "##雄": 30500, + "##青": 30501, + "##面": 30502, + "##風": 30503, + "##食": 30504, + "##香": 30505, + "##馬": 30506, + "##高": 30507, + "##龍": 30508, + "##龸": 30509, + "##fi": 30510, + "##fl": 30511, + "##!": 30512, + "##(": 30513, + "##)": 30514, + "##,": 30515, + "##-": 30516, + "##.": 30517, + "##/": 30518, + "##:": 30519, + "##?": 30520, + "##~": 30521 + } + } +} \ No newline at end of file diff --git a/models/bancode/tokenizer_config.json b/models/bancode/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..42046bd361a033a24264dc41de1fe6cafd68072f --- /dev/null +++ b/models/bancode/tokenizer_config.json @@ -0,0 +1,15 @@ +{ + "clean_up_tokenization_spaces": true, + "cls_token": "[CLS]", + "do_basic_tokenize": true, + "do_lower_case": true, + "mask_token": "[MASK]", + "model_max_length": 1000000000000000019884624838656, + "never_split": null, + "pad_token": "[PAD]", + "sep_token": "[SEP]", + "strip_accents": null, + "tokenize_chinese_chars": true, + "tokenizer_class": "BertTokenizer", + "unk_token": "[UNK]" +} diff --git a/models/bancode/vocab.txt b/models/bancode/vocab.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb140275c155a9c7c5a3b3e0e77a9e839594a938 --- /dev/null +++ b/models/bancode/vocab.txt @@ -0,0 +1,30522 @@ +[PAD] +[unused0] +[unused1] +[unused2] +[unused3] +[unused4] +[unused5] +[unused6] +[unused7] +[unused8] +[unused9] +[unused10] +[unused11] +[unused12] +[unused13] +[unused14] +[unused15] +[unused16] +[unused17] +[unused18] +[unused19] +[unused20] +[unused21] +[unused22] +[unused23] +[unused24] +[unused25] +[unused26] +[unused27] +[unused28] +[unused29] +[unused30] +[unused31] +[unused32] +[unused33] +[unused34] +[unused35] +[unused36] +[unused37] +[unused38] +[unused39] +[unused40] +[unused41] +[unused42] +[unused43] +[unused44] +[unused45] +[unused46] +[unused47] +[unused48] +[unused49] +[unused50] +[unused51] +[unused52] +[unused53] +[unused54] +[unused55] +[unused56] +[unused57] +[unused58] +[unused59] +[unused60] +[unused61] +[unused62] +[unused63] +[unused64] +[unused65] +[unused66] +[unused67] +[unused68] +[unused69] +[unused70] +[unused71] +[unused72] +[unused73] +[unused74] +[unused75] +[unused76] +[unused77] +[unused78] +[unused79] +[unused80] +[unused81] +[unused82] +[unused83] +[unused84] +[unused85] +[unused86] +[unused87] +[unused88] +[unused89] +[unused90] +[unused91] +[unused92] +[unused93] +[unused94] +[unused95] +[unused96] +[unused97] +[unused98] +[UNK] +[CLS] +[SEP] +[MASK] +[unused99] +[unused100] +[unused101] +[unused102] +[unused103] +[unused104] +[unused105] +[unused106] +[unused107] +[unused108] +[unused109] +[unused110] +[unused111] +[unused112] +[unused113] +[unused114] +[unused115] +[unused116] +[unused117] +[unused118] +[unused119] +[unused120] +[unused121] +[unused122] +[unused123] +[unused124] +[unused125] +[unused126] +[unused127] +[unused128] +[unused129] +[unused130] +[unused131] +[unused132] +[unused133] +[unused134] +[unused135] +[unused136] +[unused137] +[unused138] +[unused139] +[unused140] +[unused141] +[unused142] +[unused143] +[unused144] +[unused145] +[unused146] +[unused147] +[unused148] +[unused149] +[unused150] +[unused151] +[unused152] +[unused153] +[unused154] +[unused155] +[unused156] +[unused157] +[unused158] +[unused159] +[unused160] +[unused161] +[unused162] +[unused163] +[unused164] +[unused165] +[unused166] +[unused167] +[unused168] +[unused169] +[unused170] +[unused171] +[unused172] +[unused173] +[unused174] +[unused175] +[unused176] +[unused177] +[unused178] +[unused179] +[unused180] +[unused181] +[unused182] +[unused183] +[unused184] +[unused185] +[unused186] +[unused187] +[unused188] +[unused189] +[unused190] +[unused191] +[unused192] +[unused193] +[unused194] +[unused195] +[unused196] +[unused197] +[unused198] +[unused199] +[unused200] +[unused201] +[unused202] +[unused203] +[unused204] +[unused205] +[unused206] +[unused207] +[unused208] +[unused209] +[unused210] +[unused211] +[unused212] +[unused213] +[unused214] +[unused215] +[unused216] +[unused217] +[unused218] +[unused219] +[unused220] +[unused221] +[unused222] +[unused223] +[unused224] +[unused225] +[unused226] +[unused227] +[unused228] +[unused229] +[unused230] +[unused231] +[unused232] +[unused233] +[unused234] +[unused235] +[unused236] +[unused237] +[unused238] +[unused239] +[unused240] +[unused241] +[unused242] +[unused243] +[unused244] +[unused245] +[unused246] +[unused247] +[unused248] +[unused249] +[unused250] +[unused251] +[unused252] +[unused253] +[unused254] +[unused255] +[unused256] +[unused257] +[unused258] +[unused259] +[unused260] +[unused261] +[unused262] +[unused263] +[unused264] +[unused265] +[unused266] +[unused267] +[unused268] +[unused269] +[unused270] +[unused271] +[unused272] +[unused273] +[unused274] +[unused275] +[unused276] +[unused277] +[unused278] +[unused279] +[unused280] +[unused281] +[unused282] +[unused283] +[unused284] +[unused285] +[unused286] +[unused287] +[unused288] +[unused289] +[unused290] +[unused291] +[unused292] +[unused293] +[unused294] +[unused295] +[unused296] +[unused297] +[unused298] +[unused299] +[unused300] +[unused301] +[unused302] +[unused303] +[unused304] +[unused305] +[unused306] +[unused307] +[unused308] +[unused309] +[unused310] +[unused311] +[unused312] +[unused313] +[unused314] +[unused315] +[unused316] +[unused317] +[unused318] +[unused319] +[unused320] +[unused321] +[unused322] +[unused323] +[unused324] +[unused325] +[unused326] +[unused327] +[unused328] +[unused329] +[unused330] +[unused331] +[unused332] +[unused333] +[unused334] +[unused335] +[unused336] +[unused337] +[unused338] +[unused339] +[unused340] +[unused341] +[unused342] +[unused343] +[unused344] +[unused345] +[unused346] +[unused347] +[unused348] +[unused349] +[unused350] +[unused351] +[unused352] +[unused353] +[unused354] +[unused355] +[unused356] +[unused357] +[unused358] +[unused359] +[unused360] +[unused361] +[unused362] +[unused363] +[unused364] +[unused365] +[unused366] +[unused367] +[unused368] +[unused369] +[unused370] +[unused371] +[unused372] +[unused373] +[unused374] +[unused375] +[unused376] +[unused377] +[unused378] +[unused379] +[unused380] +[unused381] +[unused382] +[unused383] +[unused384] +[unused385] +[unused386] +[unused387] +[unused388] +[unused389] +[unused390] +[unused391] +[unused392] +[unused393] +[unused394] +[unused395] +[unused396] +[unused397] +[unused398] +[unused399] +[unused400] +[unused401] +[unused402] +[unused403] +[unused404] +[unused405] +[unused406] +[unused407] +[unused408] +[unused409] +[unused410] +[unused411] +[unused412] +[unused413] +[unused414] +[unused415] +[unused416] +[unused417] +[unused418] +[unused419] +[unused420] +[unused421] +[unused422] +[unused423] +[unused424] +[unused425] +[unused426] +[unused427] +[unused428] +[unused429] +[unused430] +[unused431] +[unused432] +[unused433] +[unused434] +[unused435] +[unused436] +[unused437] +[unused438] +[unused439] +[unused440] +[unused441] +[unused442] +[unused443] +[unused444] +[unused445] +[unused446] +[unused447] +[unused448] +[unused449] +[unused450] +[unused451] +[unused452] +[unused453] +[unused454] +[unused455] +[unused456] +[unused457] +[unused458] +[unused459] +[unused460] +[unused461] +[unused462] +[unused463] +[unused464] +[unused465] +[unused466] +[unused467] +[unused468] +[unused469] +[unused470] +[unused471] +[unused472] +[unused473] +[unused474] +[unused475] +[unused476] +[unused477] +[unused478] +[unused479] +[unused480] +[unused481] +[unused482] +[unused483] +[unused484] +[unused485] +[unused486] +[unused487] +[unused488] +[unused489] +[unused490] +[unused491] +[unused492] +[unused493] +[unused494] +[unused495] +[unused496] +[unused497] +[unused498] +[unused499] +[unused500] +[unused501] +[unused502] +[unused503] +[unused504] +[unused505] +[unused506] +[unused507] +[unused508] +[unused509] +[unused510] +[unused511] +[unused512] +[unused513] +[unused514] +[unused515] +[unused516] +[unused517] +[unused518] +[unused519] +[unused520] +[unused521] +[unused522] +[unused523] +[unused524] +[unused525] +[unused526] +[unused527] +[unused528] +[unused529] +[unused530] +[unused531] +[unused532] +[unused533] +[unused534] +[unused535] +[unused536] +[unused537] +[unused538] +[unused539] +[unused540] +[unused541] +[unused542] +[unused543] +[unused544] +[unused545] +[unused546] +[unused547] +[unused548] +[unused549] +[unused550] +[unused551] +[unused552] +[unused553] +[unused554] +[unused555] +[unused556] +[unused557] +[unused558] +[unused559] +[unused560] +[unused561] +[unused562] +[unused563] +[unused564] +[unused565] +[unused566] +[unused567] +[unused568] +[unused569] +[unused570] +[unused571] +[unused572] +[unused573] +[unused574] +[unused575] +[unused576] +[unused577] +[unused578] +[unused579] +[unused580] +[unused581] +[unused582] +[unused583] +[unused584] +[unused585] +[unused586] +[unused587] +[unused588] +[unused589] +[unused590] +[unused591] +[unused592] +[unused593] +[unused594] +[unused595] +[unused596] +[unused597] +[unused598] +[unused599] +[unused600] +[unused601] +[unused602] +[unused603] +[unused604] +[unused605] +[unused606] +[unused607] +[unused608] +[unused609] +[unused610] +[unused611] +[unused612] +[unused613] +[unused614] +[unused615] +[unused616] +[unused617] +[unused618] +[unused619] +[unused620] +[unused621] +[unused622] +[unused623] +[unused624] +[unused625] +[unused626] +[unused627] +[unused628] +[unused629] +[unused630] +[unused631] +[unused632] +[unused633] +[unused634] +[unused635] +[unused636] +[unused637] +[unused638] +[unused639] +[unused640] +[unused641] +[unused642] +[unused643] +[unused644] +[unused645] +[unused646] +[unused647] +[unused648] +[unused649] +[unused650] +[unused651] +[unused652] +[unused653] +[unused654] +[unused655] +[unused656] +[unused657] +[unused658] +[unused659] +[unused660] +[unused661] +[unused662] +[unused663] +[unused664] +[unused665] +[unused666] +[unused667] +[unused668] +[unused669] +[unused670] +[unused671] +[unused672] +[unused673] +[unused674] +[unused675] +[unused676] +[unused677] +[unused678] +[unused679] +[unused680] +[unused681] +[unused682] +[unused683] +[unused684] +[unused685] +[unused686] +[unused687] +[unused688] +[unused689] +[unused690] +[unused691] +[unused692] +[unused693] +[unused694] +[unused695] +[unused696] +[unused697] +[unused698] +[unused699] +[unused700] +[unused701] +[unused702] +[unused703] +[unused704] +[unused705] +[unused706] +[unused707] +[unused708] +[unused709] +[unused710] +[unused711] +[unused712] +[unused713] +[unused714] +[unused715] +[unused716] +[unused717] +[unused718] +[unused719] +[unused720] +[unused721] +[unused722] +[unused723] +[unused724] +[unused725] +[unused726] +[unused727] +[unused728] +[unused729] +[unused730] +[unused731] +[unused732] +[unused733] +[unused734] +[unused735] +[unused736] +[unused737] +[unused738] +[unused739] +[unused740] +[unused741] +[unused742] +[unused743] +[unused744] +[unused745] +[unused746] +[unused747] +[unused748] +[unused749] +[unused750] +[unused751] +[unused752] +[unused753] +[unused754] +[unused755] +[unused756] +[unused757] +[unused758] +[unused759] +[unused760] +[unused761] +[unused762] +[unused763] +[unused764] +[unused765] +[unused766] +[unused767] +[unused768] +[unused769] +[unused770] +[unused771] +[unused772] +[unused773] +[unused774] +[unused775] +[unused776] +[unused777] +[unused778] +[unused779] +[unused780] +[unused781] +[unused782] +[unused783] +[unused784] +[unused785] +[unused786] +[unused787] +[unused788] +[unused789] +[unused790] +[unused791] +[unused792] +[unused793] +[unused794] +[unused795] +[unused796] +[unused797] +[unused798] +[unused799] +[unused800] +[unused801] +[unused802] +[unused803] +[unused804] +[unused805] +[unused806] +[unused807] +[unused808] +[unused809] +[unused810] +[unused811] +[unused812] +[unused813] +[unused814] +[unused815] +[unused816] +[unused817] +[unused818] +[unused819] +[unused820] +[unused821] +[unused822] +[unused823] +[unused824] +[unused825] +[unused826] +[unused827] +[unused828] +[unused829] +[unused830] +[unused831] +[unused832] +[unused833] +[unused834] +[unused835] +[unused836] +[unused837] +[unused838] +[unused839] +[unused840] +[unused841] +[unused842] +[unused843] +[unused844] +[unused845] +[unused846] +[unused847] +[unused848] +[unused849] +[unused850] +[unused851] +[unused852] +[unused853] +[unused854] +[unused855] +[unused856] +[unused857] +[unused858] +[unused859] +[unused860] +[unused861] +[unused862] +[unused863] +[unused864] +[unused865] +[unused866] +[unused867] +[unused868] +[unused869] +[unused870] +[unused871] +[unused872] +[unused873] +[unused874] +[unused875] +[unused876] +[unused877] +[unused878] +[unused879] +[unused880] +[unused881] +[unused882] +[unused883] +[unused884] +[unused885] +[unused886] +[unused887] +[unused888] +[unused889] +[unused890] +[unused891] +[unused892] +[unused893] +[unused894] +[unused895] +[unused896] +[unused897] +[unused898] +[unused899] +[unused900] +[unused901] +[unused902] +[unused903] +[unused904] +[unused905] +[unused906] +[unused907] +[unused908] +[unused909] +[unused910] +[unused911] +[unused912] +[unused913] +[unused914] +[unused915] +[unused916] +[unused917] +[unused918] +[unused919] +[unused920] +[unused921] +[unused922] +[unused923] +[unused924] +[unused925] +[unused926] +[unused927] +[unused928] +[unused929] +[unused930] +[unused931] +[unused932] +[unused933] +[unused934] +[unused935] +[unused936] +[unused937] +[unused938] +[unused939] +[unused940] +[unused941] +[unused942] +[unused943] +[unused944] +[unused945] +[unused946] +[unused947] +[unused948] +[unused949] +[unused950] +[unused951] +[unused952] +[unused953] +[unused954] +[unused955] +[unused956] +[unused957] +[unused958] +[unused959] +[unused960] +[unused961] +[unused962] +[unused963] +[unused964] +[unused965] +[unused966] +[unused967] +[unused968] +[unused969] +[unused970] +[unused971] +[unused972] +[unused973] +[unused974] +[unused975] +[unused976] +[unused977] +[unused978] +[unused979] +[unused980] +[unused981] +[unused982] +[unused983] +[unused984] +[unused985] +[unused986] +[unused987] +[unused988] +[unused989] +[unused990] +[unused991] +[unused992] +[unused993] +! +" +# +$ +% +& +' +( +) +* ++ +, +- +. +/ +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +: +; +< += +> +? +@ +[ +\ +] +^ +_ +` +a +b +c +d +e +f +g +h +i +j +k +l +m +n +o +p +q +r +s +t +u +v +w +x +y +z +{ +| +} +~ +¡ +¢ +£ +¤ +¥ +¦ +§ +¨ +© +ª +« +¬ +® +° +± +² +³ +´ +µ +¶ +· +¹ +º +» +¼ +½ +¾ +¿ +× +ß +æ +ð +÷ +ø +þ +đ +ħ +ı +ł +ŋ +œ +ƒ +ɐ +ɑ +ɒ +ɔ +ɕ +ə +ɛ +ɡ +ɣ +ɨ +ɪ +ɫ +ɬ +ɯ +ɲ +ɴ +ɹ +ɾ +ʀ +ʁ +ʂ +ʃ +ʉ +ʊ +ʋ +ʌ +ʎ +ʐ +ʑ +ʒ +ʔ +ʰ +ʲ +ʳ +ʷ +ʸ +ʻ +ʼ +ʾ +ʿ +ˈ +ː +ˡ +ˢ +ˣ +ˤ +α +β +γ +δ +ε +ζ +η +θ +ι +κ +λ +μ +ν +ξ +ο +π +ρ +ς +σ +τ +υ +φ +χ +ψ +ω +а +б +в +г +д +е +ж +з +и +к +л +м +н +о +п +р +с +т +у +ф +х +ц +ч +ш +щ +ъ +ы +ь +э +ю +я +ђ +є +і +ј +љ +њ +ћ +ӏ +ա +բ +գ +դ +ե +թ +ի +լ +կ +հ +մ +յ +ն +ո +պ +ս +վ +տ +ր +ւ +ք +־ +א +ב +ג +ד +ה +ו +ז +ח +ט +י +ך +כ +ל +ם +מ +ן +נ +ס +ע +ף +פ +ץ +צ +ק +ר +ש +ת +، +ء +ا +ب +ة +ت +ث +ج +ح +خ +د +ذ +ر +ز +س +ش +ص +ض +ط +ظ +ع +غ +ـ +ف +ق +ك +ل +م +ن +ه +و +ى +ي +ٹ +پ +چ +ک +گ +ں +ھ +ہ +ی +ے +अ +आ +उ +ए +क +ख +ग +च +ज +ट +ड +ण +त +थ +द +ध +न +प +ब +भ +म +य +र +ल +व +श +ष +स +ह +ा +ि +ी +ो +। +॥ +ং +অ +আ +ই +উ +এ +ও +ক +খ +গ +চ +ছ +জ +ট +ড +ণ +ত +থ +দ +ধ +ন +প +ব +ভ +ম +য +র +ল +শ +ষ +স +হ +া +ি +ী +ে +க +ச +ட +த +ந +ன +ப +ம +ய +ர +ல +ள +வ +ா +ி +ு +ே +ை +ನ +ರ +ಾ +ක +ය +ර +ල +ව +ා +ก +ง +ต +ท +น +พ +ม +ย +ร +ล +ว +ส +อ +า +เ +་ +། +ག +ང +ད +ན +པ +བ +མ +འ +ར +ལ +ས +မ +ა +ბ +გ +დ +ე +ვ +თ +ი +კ +ლ +მ +ნ +ო +რ +ს +ტ +უ +ᄀ +ᄂ +ᄃ +ᄅ +ᄆ +ᄇ +ᄉ +ᄊ +ᄋ +ᄌ +ᄎ +ᄏ +ᄐ +ᄑ +ᄒ +ᅡ +ᅢ +ᅥ +ᅦ +ᅧ +ᅩ +ᅪ +ᅭ +ᅮ +ᅯ +ᅲ +ᅳ +ᅴ +ᅵ +ᆨ +ᆫ +ᆯ +ᆷ +ᆸ +ᆼ +ᴬ +ᴮ +ᴰ +ᴵ +ᴺ +ᵀ +ᵃ +ᵇ +ᵈ +ᵉ +ᵍ +ᵏ +ᵐ +ᵒ +ᵖ +ᵗ +ᵘ +ᵢ +ᵣ +ᵤ +ᵥ +ᶜ +ᶠ +‐ +‑ +‒ +– +— +― +‖ +‘ +’ +‚ +“ +” +„ +† +‡ +• +… +‰ +′ +″ +› +‿ +⁄ +⁰ +ⁱ +⁴ +⁵ +⁶ +⁷ +⁸ +⁹ +⁺ +⁻ +ⁿ +₀ +₁ +₂ +₃ +₄ +₅ +₆ +₇ +₈ +₉ +₊ +₍ +₎ +ₐ +ₑ +ₒ +ₓ +ₕ +ₖ +ₗ +ₘ +ₙ +ₚ +ₛ +ₜ +₤ +₩ +€ +₱ +₹ +ℓ +№ +ℝ +™ +⅓ +⅔ +← +↑ +→ +↓ +↔ +↦ +⇄ +⇌ +⇒ +∂ +∅ +∆ +∇ +∈ +− +∗ +∘ +√ +∞ +∧ +∨ +∩ +∪ +≈ +≡ +≤ +≥ +⊂ +⊆ +⊕ +⊗ +⋅ +─ +│ +■ +▪ +● +★ +☆ +☉ +♠ +♣ +♥ +♦ +♭ +♯ +⟨ +⟩ +ⱼ +⺩ +⺼ +⽥ +、 +。 +〈 +〉 +《 +》 +「 +」 +『 +』 +〜 +あ +い +う +え +お +か +き +く +け +こ +さ +し +す +せ +そ +た +ち +っ +つ +て +と +な +に +ぬ +ね +の +は +ひ +ふ +へ +ほ +ま +み +む +め +も +や +ゆ +よ +ら +り +る +れ +ろ +を +ん +ァ +ア +ィ +イ +ウ +ェ +エ +オ +カ +キ +ク +ケ +コ +サ +シ +ス +セ +タ +チ +ッ +ツ +テ +ト +ナ +ニ +ノ +ハ +ヒ +フ +ヘ +ホ +マ +ミ +ム +メ +モ +ャ +ュ +ョ +ラ +リ +ル +レ +ロ +ワ +ン +・ +ー +一 +三 +上 +下 +不 +世 +中 +主 +久 +之 +也 +事 +二 +五 +井 +京 +人 +亻 +仁 +介 +代 +仮 +伊 +会 +佐 +侍 +保 +信 +健 +元 +光 +八 +公 +内 +出 +分 +前 +劉 +力 +加 +勝 +北 +区 +十 +千 +南 +博 +原 +口 +古 +史 +司 +合 +吉 +同 +名 +和 +囗 +四 +国 +國 +土 +地 +坂 +城 +堂 +場 +士 +夏 +外 +大 +天 +太 +夫 +奈 +女 +子 +学 +宀 +宇 +安 +宗 +定 +宣 +宮 +家 +宿 +寺 +將 +小 +尚 +山 +岡 +島 +崎 +川 +州 +巿 +帝 +平 +年 +幸 +广 +弘 +張 +彳 +後 +御 +德 +心 +忄 +志 +忠 +愛 +成 +我 +戦 +戸 +手 +扌 +政 +文 +新 +方 +日 +明 +星 +春 +昭 +智 +曲 +書 +月 +有 +朝 +木 +本 +李 +村 +東 +松 +林 +森 +楊 +樹 +橋 +歌 +止 +正 +武 +比 +氏 +民 +水 +氵 +氷 +永 +江 +沢 +河 +治 +法 +海 +清 +漢 +瀬 +火 +版 +犬 +王 +生 +田 +男 +疒 +発 +白 +的 +皇 +目 +相 +省 +真 +石 +示 +社 +神 +福 +禾 +秀 +秋 +空 +立 +章 +竹 +糹 +美 +義 +耳 +良 +艹 +花 +英 +華 +葉 +藤 +行 +街 +西 +見 +訁 +語 +谷 +貝 +貴 +車 +軍 +辶 +道 +郎 +郡 +部 +都 +里 +野 +金 +鈴 +镇 +長 +門 +間 +阝 +阿 +陳 +陽 +雄 +青 +面 +風 +食 +香 +馬 +高 +龍 +龸 +fi +fl +! +( +) +, +- +. +/ +: +? +~ +the +of +and +in +to +was +he +is +as +for +on +with +that +it +his +by +at +from +her +##s +she +you +had +an +were +but +be +this +are +not +my +they +one +which +or +have +him +me +first +all +also +their +has +up +who +out +been +when +after +there +into +new +two +its +##a +time +would +no +what +about +said +we +over +then +other +so +more +##e +can +if +like +back +them +only +some +could +##i +where +just +##ing +during +before +##n +do +##o +made +school +through +than +now +years +most +world +may +between +down +well +three +##d +year +while +will +##ed +##r +##y +later +##t +city +under +around +did +such +being +used +state +people +part +know +against +your +many +second +university +both +national +##er +these +don +known +off +way +until +re +how +even +get +head +... +didn +##ly +team +american +because +de +##l +born +united +film +since +still +long +work +south +us +became +any +high +again +day +family +see +right +man +eyes +house +season +war +states +including +took +life +north +same +each +called +name +much +place +however +go +four +group +another +found +won +area +here +going +10 +away +series +left +home +music +best +make +hand +number +company +several +never +last +john +000 +very +album +take +end +good +too +following +released +game +played +little +began +district +##m +old +want +those +side +held +own +early +county +ll +league +use +west +##u +face +think +##es +2010 +government +##h +march +came +small +general +town +june +##on +line +based +something +##k +september +thought +looked +along +international +2011 +air +july +club +went +january +october +our +august +april +york +12 +few +2012 +2008 +east +show +member +college +2009 +father +public +##us +come +men +five +set +station +church +##c +next +former +november +room +party +located +december +2013 +age +got +2007 +##g +system +let +love +2006 +though +every +2014 +look +song +water +century +without +body +black +night +within +great +women +single +ve +building +large +population +river +named +band +white +started +##an +once +15 +20 +should +18 +2015 +service +top +built +british +open +death +king +moved +local +times +children +february +book +why +11 +door +need +president +order +final +road +wasn +although +due +major +died +village +third +knew +2016 +asked +turned +st +wanted +say +##p +together +received +main +son +served +different +##en +behind +himself +felt +members +power +football +law +voice +play +##in +near +park +history +30 +having +2005 +16 +##man +saw +mother +##al +army +point +front +help +english +street +art +late +hands +games +award +##ia +young +14 +put +published +country +division +across +told +13 +often +ever +french +london +center +six +red +2017 +led +days +include +light +25 +find +tell +among +species +really +according +central +half +2004 +form +original +gave +office +making +enough +lost +full +opened +must +included +live +given +german +player +run +business +woman +community +cup +might +million +land +2000 +court +development +17 +short +round +ii +km +seen +class +story +always +become +sure +research +almost +director +council +la +##2 +career +things +using +island +##z +couldn +car +##is +24 +close +force +##1 +better +free +support +control +field +students +2003 +education +married +##b +nothing +worked +others +record +big +inside +level +anything +continued +give +james +##3 +military +established +non +returned +feel +does +title +written +thing +feet +william +far +co +association +hard +already +2002 +##ra +championship +human +western +100 +##na +department +hall +role +various +production +21 +19 +heart +2001 +living +fire +version +##ers +##f +television +royal +##4 +produced +working +act +case +society +region +present +radio +period +looking +least +total +keep +england +wife +program +per +brother +mind +special +22 +##le +am +works +soon +##6 +political +george +services +taken +created +##7 +further +able +reached +david +union +joined +upon +done +important +social +information +either +##ic +##x +appeared +position +ground +lead +rock +dark +election +23 +board +france +hair +course +arms +site +police +girl +instead +real +sound +##v +words +moment +##te +someone +##8 +summer +project +announced +san +less +wrote +past +followed +##5 +blue +founded +al +finally +india +taking +records +america +##ne +1999 +design +considered +northern +god +stop +battle +toward +european +outside +described +track +today +playing +language +28 +call +26 +heard +professional +low +australia +miles +california +win +yet +green +##ie +trying +blood +##ton +southern +science +maybe +everything +match +square +27 +mouth +video +race +recorded +leave +above +##9 +daughter +points +space +1998 +museum +change +middle +common +##0 +move +tv +post +##ta +lake +seven +tried +elected +closed +ten +paul +minister +##th +months +start +chief +return +canada +person +sea +release +similar +modern +brought +rest +hit +formed +mr +##la +1997 +floor +event +doing +thomas +1996 +robert +care +killed +training +star +week +needed +turn +finished +railway +rather +news +health +sent +example +ran +term +michael +coming +currently +yes +forces +despite +gold +areas +50 +stage +fact +29 +dead +says +popular +2018 +originally +germany +probably +developed +result +pulled +friend +stood +money +running +mi +signed +word +songs +child +eventually +met +tour +average +teams +minutes +festival +current +deep +kind +1995 +decided +usually +eastern +seemed +##ness +episode +bed +added +table +indian +private +charles +route +available +idea +throughout +centre +addition +appointed +style +1994 +books +eight +construction +press +mean +wall +friends +remained +schools +study +##ch +##um +institute +oh +chinese +sometimes +events +possible +1992 +australian +type +brown +forward +talk +process +food +debut +seat +performance +committee +features +character +arts +herself +else +lot +strong +russian +range +hours +peter +arm +##da +morning +dr +sold +##ry +quickly +directed +1993 +guitar +china +##w +31 +list +##ma +performed +media +uk +players +smile +##rs +myself +40 +placed +coach +province +towards +wouldn +leading +whole +boy +official +designed +grand +census +##el +europe +attack +japanese +henry +1991 +##re +##os +cross +getting +alone +action +lower +network +wide +washington +japan +1990 +hospital +believe +changed +sister +##ar +hold +gone +sir +hadn +ship +##ka +studies +academy +shot +rights +below +base +bad +involved +kept +largest +##ist +bank +future +especially +beginning +mark +movement +section +female +magazine +plan +professor +lord +longer +##ian +sat +walked +hill +actually +civil +energy +model +families +size +thus +aircraft +completed +includes +data +captain +##or +fight +vocals +featured +richard +bridge +fourth +1989 +officer +stone +hear +##ism +means +medical +groups +management +self +lips +competition +entire +lived +technology +leaving +federal +tournament +bit +passed +hot +independent +awards +kingdom +mary +spent +fine +doesn +reported +##ling +jack +fall +raised +itself +stay +true +studio +1988 +sports +replaced +paris +systems +saint +leader +theatre +whose +market +capital +parents +spanish +canadian +earth +##ity +cut +degree +writing +bay +christian +awarded +natural +higher +bill +##as +coast +provided +previous +senior +ft +valley +organization +stopped +onto +countries +parts +conference +queen +security +interest +saying +allowed +master +earlier +phone +matter +smith +winning +try +happened +moving +campaign +los +##ley +breath +nearly +mid +1987 +certain +girls +date +italian +african +standing +fell +artist +##ted +shows +deal +mine +industry +1986 +##ng +everyone +republic +provide +collection +library +student +##ville +primary +owned +older +via +heavy +1st +makes +##able +attention +anyone +africa +##ri +stated +length +ended +fingers +command +staff +skin +foreign +opening +governor +okay +medal +kill +sun +cover +job +1985 +introduced +chest +hell +feeling +##ies +success +meet +reason +standard +meeting +novel +1984 +trade +source +buildings +##land +rose +guy +goal +##ur +chapter +native +husband +previously +unit +limited +entered +weeks +producer +operations +mountain +takes +covered +forced +related +roman +complete +successful +key +texas +cold +##ya +channel +1980 +traditional +films +dance +clear +approximately +500 +nine +van +prince +question +active +tracks +ireland +regional +silver +author +personal +sense +operation +##ine +economic +1983 +holding +twenty +isbn +additional +speed +hour +edition +regular +historic +places +whom +shook +movie +km² +secretary +prior +report +chicago +read +foundation +view +engine +scored +1982 +units +ask +airport +property +ready +immediately +lady +month +listed +contract +##de +manager +themselves +lines +##ki +navy +writer +meant +##ts +runs +##ro +practice +championships +singer +glass +commission +required +forest +starting +culture +generally +giving +access +attended +test +couple +stand +catholic +martin +caught +executive +##less +eye +##ey +thinking +chair +quite +shoulder +1979 +hope +decision +plays +defeated +municipality +whether +structure +offered +slowly +pain +ice +direction +##ion +paper +mission +1981 +mostly +200 +noted +individual +managed +nature +lives +plant +##ha +helped +except +studied +computer +figure +relationship +issue +significant +loss +die +smiled +gun +ago +highest +1972 +##am +male +bring +goals +mexico +problem +distance +commercial +completely +location +annual +famous +drive +1976 +neck +1978 +surface +caused +italy +understand +greek +highway +wrong +hotel +comes +appearance +joseph +double +issues +musical +companies +castle +income +review +assembly +bass +initially +parliament +artists +experience +1974 +particular +walk +foot +engineering +talking +window +dropped +##ter +miss +baby +boys +break +1975 +stars +edge +remember +policy +carried +train +stadium +bar +sex +angeles +evidence +##ge +becoming +assistant +soviet +1977 +upper +step +wing +1970 +youth +financial +reach +##ll +actor +numerous +##se +##st +nodded +arrived +##ation +minute +##nt +believed +sorry +complex +beautiful +victory +associated +temple +1968 +1973 +chance +perhaps +metal +##son +1945 +bishop +##et +lee +launched +particularly +tree +le +retired +subject +prize +contains +yeah +theory +empire +##ce +suddenly +waiting +trust +recording +##to +happy +terms +camp +champion +1971 +religious +pass +zealand +names +2nd +port +ancient +tom +corner +represented +watch +legal +anti +justice +cause +watched +brothers +45 +material +changes +simply +response +louis +fast +##ting +answer +60 +historical +1969 +stories +straight +create +feature +increased +rate +administration +virginia +el +activities +cultural +overall +winner +programs +basketball +legs +guard +beyond +cast +doctor +mm +flight +results +remains +cost +effect +winter +##ble +larger +islands +problems +chairman +grew +commander +isn +1967 +pay +failed +selected +hurt +fort +box +regiment +majority +journal +35 +edward +plans +##ke +##ni +shown +pretty +irish +characters +directly +scene +likely +operated +allow +spring +##j +junior +matches +looks +mike +houses +fellow +##tion +beach +marriage +##ham +##ive +rules +oil +65 +florida +expected +nearby +congress +sam +peace +recent +iii +wait +subsequently +cell +##do +variety +serving +agreed +please +poor +joe +pacific +attempt +wood +democratic +piece +prime +##ca +rural +mile +touch +appears +township +1964 +1966 +soldiers +##men +##ized +1965 +pennsylvania +closer +fighting +claimed +score +jones +physical +editor +##ous +filled +genus +specific +sitting +super +mom +##va +therefore +supported +status +fear +cases +store +meaning +wales +minor +spain +tower +focus +vice +frank +follow +parish +separate +golden +horse +fifth +remaining +branch +32 +presented +stared +##id +uses +secret +forms +##co +baseball +exactly +##ck +choice +note +discovered +travel +composed +truth +russia +ball +color +kiss +dad +wind +continue +ring +referred +numbers +digital +greater +##ns +metres +slightly +direct +increase +1960 +responsible +crew +rule +trees +troops +##no +broke +goes +individuals +hundred +weight +creek +sleep +memory +defense +provides +ordered +code +value +jewish +windows +1944 +safe +judge +whatever +corps +realized +growing +pre +##ga +cities +alexander +gaze +lies +spread +scott +letter +showed +situation +mayor +transport +watching +workers +extended +##li +expression +normal +##ment +chart +multiple +border +##ba +host +##ner +daily +mrs +walls +piano +##ko +heat +cannot +##ate +earned +products +drama +era +authority +seasons +join +grade +##io +sign +difficult +machine +1963 +territory +mainly +##wood +stations +squadron +1962 +stepped +iron +19th +##led +serve +appear +sky +speak +broken +charge +knowledge +kilometres +removed +ships +article +campus +simple +##ty +pushed +britain +##ve +leaves +recently +cd +soft +boston +latter +easy +acquired +poland +##sa +quality +officers +presence +planned +nations +mass +broadcast +jean +share +image +influence +wild +offer +emperor +electric +reading +headed +ability +promoted +yellow +ministry +1942 +throat +smaller +politician +##by +latin +spoke +cars +williams +males +lack +pop +80 +##ier +acting +seeing +consists +##ti +estate +1961 +pressure +johnson +newspaper +jr +chris +olympics +online +conditions +beat +elements +walking +vote +##field +needs +carolina +text +featuring +global +block +shirt +levels +francisco +purpose +females +et +dutch +duke +ahead +gas +twice +safety +serious +turning +highly +lieutenant +firm +maria +amount +mixed +daniel +proposed +perfect +agreement +affairs +3rd +seconds +contemporary +paid +1943 +prison +save +kitchen +label +administrative +intended +constructed +academic +nice +teacher +races +1956 +formerly +corporation +ben +nation +issued +shut +1958 +drums +housing +victoria +seems +opera +1959 +graduated +function +von +mentioned +picked +build +recognized +shortly +protection +picture +notable +exchange +elections +1980s +loved +percent +racing +fish +elizabeth +garden +volume +hockey +1941 +beside +settled +##ford +1940 +competed +replied +drew +1948 +actress +marine +scotland +steel +glanced +farm +steve +1957 +risk +tonight +positive +magic +singles +effects +gray +screen +dog +##ja +residents +bus +sides +none +secondary +literature +polish +destroyed +flying +founder +households +1939 +lay +reserve +usa +gallery +##ler +1946 +industrial +younger +approach +appearances +urban +ones +1950 +finish +avenue +powerful +fully +growth +page +honor +jersey +projects +advanced +revealed +basic +90 +infantry +pair +equipment +visit +33 +evening +search +grant +effort +solo +treatment +buried +republican +primarily +bottom +owner +1970s +israel +gives +jim +dream +bob +remain +spot +70 +notes +produce +champions +contact +ed +soul +accepted +ways +del +##ally +losing +split +price +capacity +basis +trial +questions +##ina +1955 +20th +guess +officially +memorial +naval +initial +##ization +whispered +median +engineer +##ful +sydney +##go +columbia +strength +300 +1952 +tears +senate +00 +card +asian +agent +1947 +software +44 +draw +warm +supposed +com +pro +##il +transferred +leaned +##at +candidate +escape +mountains +asia +potential +activity +entertainment +seem +traffic +jackson +murder +36 +slow +product +orchestra +haven +agency +bbc +taught +website +comedy +unable +storm +planning +albums +rugby +environment +scientific +grabbed +protect +##hi +boat +typically +1954 +1953 +damage +principal +divided +dedicated +mount +ohio +##berg +pick +fought +driver +##der +empty +shoulders +sort +thank +berlin +prominent +account +freedom +necessary +efforts +alex +headquarters +follows +alongside +des +simon +andrew +suggested +operating +learning +steps +1949 +sweet +technical +begin +easily +34 +teeth +speaking +settlement +scale +##sh +renamed +ray +max +enemy +semi +joint +compared +##rd +scottish +leadership +analysis +offers +georgia +pieces +captured +animal +deputy +guest +organized +##lin +tony +combined +method +challenge +1960s +huge +wants +battalion +sons +rise +crime +types +facilities +telling +path +1951 +platform +sit +1990s +##lo +tells +assigned +rich +pull +##ot +commonly +alive +##za +letters +concept +conducted +wearing +happen +bought +becomes +holy +gets +ocean +defeat +languages +purchased +coffee +occurred +titled +##q +declared +applied +sciences +concert +sounds +jazz +brain +##me +painting +fleet +tax +nick +##ius +michigan +count +animals +leaders +episodes +##line +content +##den +birth +##it +clubs +64 +palace +critical +refused +fair +leg +laughed +returning +surrounding +participated +formation +lifted +pointed +connected +rome +medicine +laid +taylor +santa +powers +adam +tall +shared +focused +knowing +yards +entrance +falls +##wa +calling +##ad +sources +chosen +beneath +resources +yard +##ite +nominated +silence +zone +defined +##que +gained +thirty +38 +bodies +moon +##ard +adopted +christmas +widely +register +apart +iran +premier +serves +du +unknown +parties +##les +generation +##ff +continues +quick +fields +brigade +quiet +teaching +clothes +impact +weapons +partner +flat +theater +supreme +1938 +37 +relations +##tor +plants +suffered +1936 +wilson +kids +begins +##age +1918 +seats +armed +internet +models +worth +laws +400 +communities +classes +background +knows +thanks +quarter +reaching +humans +carry +killing +format +kong +hong +setting +75 +architecture +disease +railroad +inc +possibly +wish +arthur +thoughts +harry +doors +density +##di +crowd +illinois +stomach +tone +unique +reports +anyway +##ir +liberal +der +vehicle +thick +dry +drug +faced +largely +facility +theme +holds +creation +strange +colonel +##mi +revolution +bell +politics +turns +silent +rail +relief +independence +combat +shape +write +determined +sales +learned +4th +finger +oxford +providing +1937 +heritage +fiction +situated +designated +allowing +distribution +hosted +##est +sight +interview +estimated +reduced +##ria +toronto +footballer +keeping +guys +damn +claim +motion +sport +sixth +stayed +##ze +en +rear +receive +handed +twelve +dress +audience +granted +brazil +##well +spirit +##ated +noticed +etc +olympic +representative +eric +tight +trouble +reviews +drink +vampire +missing +roles +ranked +newly +household +finals +wave +critics +##ee +phase +massachusetts +pilot +unlike +philadelphia +bright +guns +crown +organizations +roof +42 +respectively +clearly +tongue +marked +circle +fox +korea +bronze +brian +expanded +sexual +supply +yourself +inspired +labour +fc +##ah +reference +vision +draft +connection +brand +reasons +1935 +classic +driving +trip +jesus +cells +entry +1920 +neither +trail +claims +atlantic +orders +labor +nose +afraid +identified +intelligence +calls +cancer +attacked +passing +stephen +positions +imperial +grey +jason +39 +sunday +48 +swedish +avoid +extra +uncle +message +covers +allows +surprise +materials +fame +hunter +##ji +1930 +citizens +figures +davis +environmental +confirmed +shit +titles +di +performing +difference +acts +attacks +##ov +existing +votes +opportunity +nor +shop +entirely +trains +opposite +pakistan +##pa +develop +resulted +representatives +actions +reality +pressed +##ish +barely +wine +conversation +faculty +northwest +ends +documentary +nuclear +stock +grace +sets +eat +alternative +##ps +bag +resulting +creating +surprised +cemetery +1919 +drop +finding +sarah +cricket +streets +tradition +ride +1933 +exhibition +target +ear +explained +rain +composer +injury +apartment +municipal +educational +occupied +netherlands +clean +billion +constitution +learn +1914 +maximum +classical +francis +lose +opposition +jose +ontario +bear +core +hills +rolled +ending +drawn +permanent +fun +##tes +##lla +lewis +sites +chamber +ryan +##way +scoring +height +1934 +##house +lyrics +staring +55 +officials +1917 +snow +oldest +##tic +orange +##ger +qualified +interior +apparently +succeeded +thousand +dinner +lights +existence +fans +heavily +41 +greatest +conservative +send +bowl +plus +enter +catch +##un +economy +duty +1929 +speech +authorities +princess +performances +versions +shall +graduate +pictures +effective +remembered +poetry +desk +crossed +starring +starts +passenger +sharp +##ant +acres +ass +weather +falling +rank +fund +supporting +check +adult +publishing +heads +cm +southeast +lane +##burg +application +bc +##ura +les +condition +transfer +prevent +display +ex +regions +earl +federation +cool +relatively +answered +besides +1928 +obtained +portion +##town +mix +##ding +reaction +liked +dean +express +peak +1932 +##tte +counter +religion +chain +rare +miller +convention +aid +lie +vehicles +mobile +perform +squad +wonder +lying +crazy +sword +##ping +attempted +centuries +weren +philosophy +category +##ize +anna +interested +47 +sweden +wolf +frequently +abandoned +kg +literary +alliance +task +entitled +##ay +threw +promotion +factory +tiny +soccer +visited +matt +fm +achieved +52 +defence +internal +persian +43 +methods +##ging +arrested +otherwise +cambridge +programming +villages +elementary +districts +rooms +criminal +conflict +worry +trained +1931 +attempts +waited +signal +bird +truck +subsequent +programme +##ol +ad +49 +communist +details +faith +sector +patrick +carrying +laugh +##ss +controlled +korean +showing +origin +fuel +evil +1927 +##ent +brief +identity +darkness +address +pool +missed +publication +web +planet +ian +anne +wings +invited +##tt +briefly +standards +kissed +##be +ideas +climate +causing +walter +worse +albert +articles +winners +desire +aged +northeast +dangerous +gate +doubt +1922 +wooden +multi +##ky +poet +rising +funding +46 +communications +communication +violence +copies +prepared +ford +investigation +skills +1924 +pulling +electronic +##ak +##ial +##han +containing +ultimately +offices +singing +understanding +restaurant +tomorrow +fashion +christ +ward +da +pope +stands +5th +flow +studios +aired +commissioned +contained +exist +fresh +americans +##per +wrestling +approved +kid +employed +respect +suit +1925 +angel +asking +increasing +frame +angry +selling +1950s +thin +finds +##nd +temperature +statement +ali +explain +inhabitants +towns +extensive +narrow +51 +jane +flowers +images +promise +somewhere +object +fly +closely +##ls +1912 +bureau +cape +1926 +weekly +presidential +legislative +1921 +##ai +##au +launch +founding +##ny +978 +##ring +artillery +strike +un +institutions +roll +writers +landing +chose +kevin +anymore +pp +##ut +attorney +fit +dan +billboard +receiving +agricultural +breaking +sought +dave +admitted +lands +mexican +##bury +charlie +specifically +hole +iv +howard +credit +moscow +roads +accident +1923 +proved +wear +struck +hey +guards +stuff +slid +expansion +1915 +cat +anthony +##kin +melbourne +opposed +sub +southwest +architect +failure +plane +1916 +##ron +map +camera +tank +listen +regarding +wet +introduction +metropolitan +link +ep +fighter +inch +grown +gene +anger +fixed +buy +dvd +khan +domestic +worldwide +chapel +mill +functions +examples +##head +developing +1910 +turkey +hits +pocket +antonio +papers +grow +unless +circuit +18th +concerned +attached +journalist +selection +journey +converted +provincial +painted +hearing +aren +bands +negative +aside +wondered +knight +lap +survey +ma +##ow +noise +billy +##ium +shooting +guide +bedroom +priest +resistance +motor +homes +sounded +giant +##mer +150 +scenes +equal +comic +patients +hidden +solid +actual +bringing +afternoon +touched +funds +wedding +consisted +marie +canal +sr +kim +treaty +turkish +recognition +residence +cathedral +broad +knees +incident +shaped +fired +norwegian +handle +cheek +contest +represent +##pe +representing +beauty +##sen +birds +advantage +emergency +wrapped +drawing +notice +pink +broadcasting +##ong +somehow +bachelor +seventh +collected +registered +establishment +alan +assumed +chemical +personnel +roger +retirement +jeff +portuguese +wore +tied +device +threat +progress +advance +##ised +banks +hired +manchester +nfl +teachers +structures +forever +##bo +tennis +helping +saturday +sale +applications +junction +hip +incorporated +neighborhood +dressed +ceremony +##ds +influenced +hers +visual +stairs +decades +inner +kansas +hung +hoped +gain +scheduled +downtown +engaged +austria +clock +norway +certainly +pale +protected +1913 +victor +employees +plate +putting +surrounded +##ists +finishing +blues +tropical +##ries +minnesota +consider +philippines +accept +54 +retrieved +1900 +concern +anderson +properties +institution +gordon +successfully +vietnam +##dy +backing +outstanding +muslim +crossing +folk +producing +usual +demand +occurs +observed +lawyer +educated +##ana +kelly +string +pleasure +budget +items +quietly +colorado +philip +typical +##worth +derived +600 +survived +asks +mental +##ide +56 +jake +jews +distinguished +ltd +1911 +sri +extremely +53 +athletic +loud +thousands +worried +shadow +transportation +horses +weapon +arena +importance +users +tim +objects +contributed +dragon +douglas +aware +senator +johnny +jordan +sisters +engines +flag +investment +samuel +shock +capable +clark +row +wheel +refers +session +familiar +biggest +wins +hate +maintained +drove +hamilton +request +expressed +injured +underground +churches +walker +wars +tunnel +passes +stupid +agriculture +softly +cabinet +regarded +joining +indiana +##ea +##ms +push +dates +spend +behavior +woods +protein +gently +chase +morgan +mention +burning +wake +combination +occur +mirror +leads +jimmy +indeed +impossible +singapore +paintings +covering +##nes +soldier +locations +attendance +sell +historian +wisconsin +invasion +argued +painter +diego +changing +egypt +##don +experienced +inches +##ku +missouri +vol +grounds +spoken +switzerland +##gan +reform +rolling +ha +forget +massive +resigned +burned +allen +tennessee +locked +values +improved +##mo +wounded +universe +sick +dating +facing +pack +purchase +user +##pur +moments +##ul +merged +anniversary +1908 +coal +brick +understood +causes +dynasty +queensland +establish +stores +crisis +promote +hoping +views +cards +referee +extension +##si +raise +arizona +improve +colonial +formal +charged +##rt +palm +lucky +hide +rescue +faces +95 +feelings +candidates +juan +##ell +goods +6th +courses +weekend +59 +luke +cash +fallen +##om +delivered +affected +installed +carefully +tries +swiss +hollywood +costs +lincoln +responsibility +##he +shore +file +proper +normally +maryland +assistance +jump +constant +offering +friendly +waters +persons +realize +contain +trophy +800 +partnership +factor +58 +musicians +cry +bound +oregon +indicated +hero +houston +medium +##ure +consisting +somewhat +##ara +57 +cycle +##che +beer +moore +frederick +gotten +eleven +worst +weak +approached +arranged +chin +loan +universal +bond +fifteen +pattern +disappeared +##ney +translated +##zed +lip +arab +capture +interests +insurance +##chi +shifted +cave +prix +warning +sections +courts +coat +plot +smell +feed +golf +favorite +maintain +knife +vs +voted +degrees +finance +quebec +opinion +translation +manner +ruled +operate +productions +choose +musician +discovery +confused +tired +separated +stream +techniques +committed +attend +ranking +kings +throw +passengers +measure +horror +fan +mining +sand +danger +salt +calm +decade +dam +require +runner +##ik +rush +associate +greece +##ker +rivers +consecutive +matthew +##ski +sighed +sq +documents +steam +edited +closing +tie +accused +1905 +##ini +islamic +distributed +directors +organisation +bruce +7th +breathing +mad +lit +arrival +concrete +taste +08 +composition +shaking +faster +amateur +adjacent +stating +1906 +twin +flew +##ran +tokyo +publications +##tone +obviously +ridge +storage +1907 +carl +pages +concluded +desert +driven +universities +ages +terminal +sequence +borough +250 +constituency +creative +cousin +economics +dreams +margaret +notably +reduce +montreal +mode +17th +ears +saved +jan +vocal +##ica +1909 +andy +##jo +riding +roughly +threatened +##ise +meters +meanwhile +landed +compete +repeated +grass +czech +regularly +charges +tea +sudden +appeal +##ung +solution +describes +pierre +classification +glad +parking +##ning +belt +physics +99 +rachel +add +hungarian +participate +expedition +damaged +gift +childhood +85 +fifty +##red +mathematics +jumped +letting +defensive +mph +##ux +##gh +testing +##hip +hundreds +shoot +owners +matters +smoke +israeli +kentucky +dancing +mounted +grandfather +emma +designs +profit +argentina +##gs +truly +li +lawrence +cole +begun +detroit +willing +branches +smiling +decide +miami +enjoyed +recordings +##dale +poverty +ethnic +gay +##bi +gary +arabic +09 +accompanied +##one +##ons +fishing +determine +residential +acid +##ary +alice +returns +starred +mail +##ang +jonathan +strategy +##ue +net +forty +cook +businesses +equivalent +commonwealth +distinct +ill +##cy +seriously +##ors +##ped +shift +harris +replace +rio +imagine +formula +ensure +##ber +additionally +scheme +conservation +occasionally +purposes +feels +favor +##and +##ore +1930s +contrast +hanging +hunt +movies +1904 +instruments +victims +danish +christopher +busy +demon +sugar +earliest +colony +studying +balance +duties +##ks +belgium +slipped +carter +05 +visible +stages +iraq +fifa +##im +commune +forming +zero +07 +continuing +talked +counties +legend +bathroom +option +tail +clay +daughters +afterwards +severe +jaw +visitors +##ded +devices +aviation +russell +kate +##vi +entering +subjects +##ino +temporary +swimming +forth +smooth +ghost +audio +bush +operates +rocks +movements +signs +eddie +##tz +ann +voices +honorary +06 +memories +dallas +pure +measures +racial +promised +66 +harvard +ceo +16th +parliamentary +indicate +benefit +flesh +dublin +louisiana +1902 +1901 +patient +sleeping +1903 +membership +coastal +medieval +wanting +element +scholars +rice +62 +limit +survive +makeup +rating +definitely +collaboration +obvious +##tan +boss +ms +baron +birthday +linked +soil +diocese +##lan +ncaa +##mann +offensive +shell +shouldn +waist +##tus +plain +ross +organ +resolution +manufacturing +adding +relative +kennedy +98 +whilst +moth +marketing +gardens +crash +72 +heading +partners +credited +carlos +moves +cable +##zi +marshall +##out +depending +bottle +represents +rejected +responded +existed +04 +jobs +denmark +lock +##ating +treated +graham +routes +talent +commissioner +drugs +secure +tests +reign +restored +photography +##gi +contributions +oklahoma +designer +disc +grin +seattle +robin +paused +atlanta +unusual +##gate +praised +las +laughing +satellite +hungary +visiting +##sky +interesting +factors +deck +poems +norman +##water +stuck +speaker +rifle +domain +premiered +##her +dc +comics +actors +01 +reputation +eliminated +8th +ceiling +prisoners +script +##nce +leather +austin +mississippi +rapidly +admiral +parallel +charlotte +guilty +tools +gender +divisions +fruit +##bs +laboratory +nelson +fantasy +marry +rapid +aunt +tribe +requirements +aspects +suicide +amongst +adams +bone +ukraine +abc +kick +sees +edinburgh +clothing +column +rough +gods +hunting +broadway +gathered +concerns +##ek +spending +ty +12th +snapped +requires +solar +bones +cavalry +##tta +iowa +drinking +waste +index +franklin +charity +thompson +stewart +tip +flash +landscape +friday +enjoy +singh +poem +listening +##back +eighth +fred +differences +adapted +bomb +ukrainian +surgery +corporate +masters +anywhere +##more +waves +odd +sean +portugal +orleans +dick +debate +kent +eating +puerto +cleared +96 +expect +cinema +97 +guitarist +blocks +electrical +agree +involving +depth +dying +panel +struggle +##ged +peninsula +adults +novels +emerged +vienna +metro +debuted +shoes +tamil +songwriter +meets +prove +beating +instance +heaven +scared +sending +marks +artistic +passage +superior +03 +significantly +shopping +##tive +retained +##izing +malaysia +technique +cheeks +##ola +warren +maintenance +destroy +extreme +allied +120 +appearing +##yn +fill +advice +alabama +qualifying +policies +cleveland +hat +battery +smart +authors +10th +soundtrack +acted +dated +lb +glance +equipped +coalition +funny +outer +ambassador +roy +possibility +couples +campbell +dna +loose +ethan +supplies +1898 +gonna +88 +monster +##res +shake +agents +frequency +springs +dogs +practices +61 +gang +plastic +easier +suggests +gulf +blade +exposed +colors +industries +markets +pan +nervous +electoral +charts +legislation +ownership +##idae +mac +appointment +shield +copy +assault +socialist +abbey +monument +license +throne +employment +jay +93 +replacement +charter +cloud +powered +suffering +accounts +oak +connecticut +strongly +wright +colour +crystal +13th +context +welsh +networks +voiced +gabriel +jerry +##cing +forehead +mp +##ens +manage +schedule +totally +remix +##ii +forests +occupation +print +nicholas +brazilian +strategic +vampires +engineers +76 +roots +seek +correct +instrumental +und +alfred +backed +hop +##des +stanley +robinson +traveled +wayne +welcome +austrian +achieve +67 +exit +rates +1899 +strip +whereas +##cs +sing +deeply +adventure +bobby +rick +jamie +careful +components +cap +useful +personality +knee +##shi +pushing +hosts +02 +protest +ca +ottoman +symphony +##sis +63 +boundary +1890 +processes +considering +considerable +tons +##work +##ft +##nia +cooper +trading +dear +conduct +91 +illegal +apple +revolutionary +holiday +definition +harder +##van +jacob +circumstances +destruction +##lle +popularity +grip +classified +liverpool +donald +baltimore +flows +seeking +honour +approval +92 +mechanical +till +happening +statue +critic +increasingly +immediate +describe +commerce +stare +##ster +indonesia +meat +rounds +boats +baker +orthodox +depression +formally +worn +naked +claire +muttered +sentence +11th +emily +document +77 +criticism +wished +vessel +spiritual +bent +virgin +parker +minimum +murray +lunch +danny +printed +compilation +keyboards +false +blow +belonged +68 +raising +78 +cutting +##board +pittsburgh +##up +9th +shadows +81 +hated +indigenous +jon +15th +barry +scholar +ah +##zer +oliver +##gy +stick +susan +meetings +attracted +spell +romantic +##ver +ye +1895 +photo +demanded +customers +##ac +1896 +logan +revival +keys +modified +commanded +jeans +##ious +upset +raw +phil +detective +hiding +resident +vincent +##bly +experiences +diamond +defeating +coverage +lucas +external +parks +franchise +helen +bible +successor +percussion +celebrated +il +lift +profile +clan +romania +##ied +mills +##su +nobody +achievement +shrugged +fault +1897 +rhythm +initiative +breakfast +carbon +700 +69 +lasted +violent +74 +wound +ken +killer +gradually +filmed +°c +dollars +processing +94 +remove +criticized +guests +sang +chemistry +##vin +legislature +disney +##bridge +uniform +escaped +integrated +proposal +purple +denied +liquid +karl +influential +morris +nights +stones +intense +experimental +twisted +71 +84 +##ld +pace +nazi +mitchell +ny +blind +reporter +newspapers +14th +centers +burn +basin +forgotten +surviving +filed +collections +monastery +losses +manual +couch +description +appropriate +merely +tag +missions +sebastian +restoration +replacing +triple +73 +elder +julia +warriors +benjamin +julian +convinced +stronger +amazing +declined +versus +merchant +happens +output +finland +bare +barbara +absence +ignored +dawn +injuries +##port +producers +##ram +82 +luis +##ities +kw +admit +expensive +electricity +nba +exception +symbol +##ving +ladies +shower +sheriff +characteristics +##je +aimed +button +ratio +effectively +summit +angle +jury +bears +foster +vessels +pants +executed +evans +dozen +advertising +kicked +patrol +1889 +competitions +lifetime +principles +athletics +##logy +birmingham +sponsored +89 +rob +nomination +1893 +acoustic +##sm +creature +longest +##tra +credits +harbor +dust +josh +##so +territories +milk +infrastructure +completion +thailand +indians +leon +archbishop +##sy +assist +pitch +blake +arrangement +girlfriend +serbian +operational +hence +sad +scent +fur +dj +sessions +hp +refer +rarely +##ora +exists +1892 +##ten +scientists +dirty +penalty +burst +portrait +seed +79 +pole +limits +rival +1894 +stable +alpha +grave +constitutional +alcohol +arrest +flower +mystery +devil +architectural +relationships +greatly +habitat +##istic +larry +progressive +remote +cotton +##ics +##ok +preserved +reaches +##ming +cited +86 +vast +scholarship +decisions +cbs +joy +teach +1885 +editions +knocked +eve +searching +partly +participation +gap +animated +fate +excellent +##ett +na +87 +alternate +saints +youngest +##ily +climbed +##ita +##tors +suggest +##ct +discussion +staying +choir +lakes +jacket +revenue +nevertheless +peaked +instrument +wondering +annually +managing +neil +1891 +signing +terry +##ice +apply +clinical +brooklyn +aim +catherine +fuck +farmers +figured +ninth +pride +hugh +evolution +ordinary +involvement +comfortable +shouted +tech +encouraged +taiwan +representation +sharing +##lia +##em +panic +exact +cargo +competing +fat +cried +83 +1920s +occasions +pa +cabin +borders +utah +marcus +##isation +badly +muscles +##ance +victorian +transition +warner +bet +permission +##rin +slave +terrible +similarly +shares +seth +uefa +possession +medals +benefits +colleges +lowered +perfectly +mall +transit +##ye +##kar +publisher +##ened +harrison +deaths +elevation +##ae +asleep +machines +sigh +ash +hardly +argument +occasion +parent +leo +decline +1888 +contribution +##ua +concentration +1000 +opportunities +hispanic +guardian +extent +emotions +hips +mason +volumes +bloody +controversy +diameter +steady +mistake +phoenix +identify +violin +##sk +departure +richmond +spin +funeral +enemies +1864 +gear +literally +connor +random +sergeant +grab +confusion +1865 +transmission +informed +op +leaning +sacred +suspended +thinks +gates +portland +luck +agencies +yours +hull +expert +muscle +layer +practical +sculpture +jerusalem +latest +lloyd +statistics +deeper +recommended +warrior +arkansas +mess +supports +greg +eagle +1880 +recovered +rated +concerts +rushed +##ano +stops +eggs +files +premiere +keith +##vo +delhi +turner +pit +affair +belief +paint +##zing +mate +##ach +##ev +victim +##ology +withdrew +bonus +styles +fled +##ud +glasgow +technologies +funded +nbc +adaptation +##ata +portrayed +cooperation +supporters +judges +bernard +justin +hallway +ralph +##ick +graduating +controversial +distant +continental +spider +bite +##ho +recognize +intention +mixing +##ese +egyptian +bow +tourism +suppose +claiming +tiger +dominated +participants +vi +##ru +nurse +partially +tape +##rum +psychology +##rn +essential +touring +duo +voting +civilian +emotional +channels +##king +apparent +hebrew +1887 +tommy +carrier +intersection +beast +hudson +##gar +##zo +lab +nova +bench +discuss +costa +##ered +detailed +behalf +drivers +unfortunately +obtain +##lis +rocky +##dae +siege +friendship +honey +##rian +1861 +amy +hang +posted +governments +collins +respond +wildlife +preferred +operator +##po +laura +pregnant +videos +dennis +suspected +boots +instantly +weird +automatic +businessman +alleged +placing +throwing +ph +mood +1862 +perry +venue +jet +remainder +##lli +##ci +passion +biological +boyfriend +1863 +dirt +buffalo +ron +segment +fa +abuse +##era +genre +thrown +stroke +colored +stress +exercise +displayed +##gen +struggled +##tti +abroad +dramatic +wonderful +thereafter +madrid +component +widespread +##sed +tale +citizen +todd +monday +1886 +vancouver +overseas +forcing +crying +descent +##ris +discussed +substantial +ranks +regime +1870 +provinces +switch +drum +zane +ted +tribes +proof +lp +cream +researchers +volunteer +manor +silk +milan +donated +allies +venture +principle +delivery +enterprise +##ves +##ans +bars +traditionally +witch +reminded +copper +##uk +pete +inter +links +colin +grinned +elsewhere +competitive +frequent +##oy +scream +##hu +tension +texts +submarine +finnish +defending +defend +pat +detail +1884 +affiliated +stuart +themes +villa +periods +tool +belgian +ruling +crimes +answers +folded +licensed +resort +demolished +hans +lucy +1881 +lion +traded +photographs +writes +craig +##fa +trials +generated +beth +noble +debt +percentage +yorkshire +erected +ss +viewed +grades +confidence +ceased +islam +telephone +retail +##ible +chile +m² +roberts +sixteen +##ich +commented +hampshire +innocent +dual +pounds +checked +regulations +afghanistan +sung +rico +liberty +assets +bigger +options +angels +relegated +tribute +wells +attending +leaf +##yan +butler +romanian +forum +monthly +lisa +patterns +gmina +##tory +madison +hurricane +rev +##ians +bristol +##ula +elite +valuable +disaster +democracy +awareness +germans +freyja +##ins +loop +absolutely +paying +populations +maine +sole +prayer +spencer +releases +doorway +bull +##ani +lover +midnight +conclusion +##sson +thirteen +lily +mediterranean +##lt +nhl +proud +sample +##hill +drummer +guinea +##ova +murphy +climb +##ston +instant +attributed +horn +ain +railways +steven +##ao +autumn +ferry +opponent +root +traveling +secured +corridor +stretched +tales +sheet +trinity +cattle +helps +indicates +manhattan +murdered +fitted +1882 +gentle +grandmother +mines +shocked +vegas +produces +##light +caribbean +##ou +belong +continuous +desperate +drunk +historically +trio +waved +raf +dealing +nathan +bat +murmured +interrupted +residing +scientist +pioneer +harold +aaron +##net +delta +attempting +minority +mini +believes +chorus +tend +lots +eyed +indoor +load +shots +updated +jail +##llo +concerning +connecting +wealth +##ved +slaves +arrive +rangers +sufficient +rebuilt +##wick +cardinal +flood +muhammad +whenever +relation +runners +moral +repair +viewers +arriving +revenge +punk +assisted +bath +fairly +breathe +lists +innings +illustrated +whisper +nearest +voters +clinton +ties +ultimate +screamed +beijing +lions +andre +fictional +gathering +comfort +radar +suitable +dismissed +hms +ban +pine +wrist +atmosphere +voivodeship +bid +timber +##ned +##nan +giants +##ane +cameron +recovery +uss +identical +categories +switched +serbia +laughter +noah +ensemble +therapy +peoples +touching +##off +locally +pearl +platforms +everywhere +ballet +tables +lanka +herbert +outdoor +toured +derek +1883 +spaces +contested +swept +1878 +exclusive +slight +connections +##dra +winds +prisoner +collective +bangladesh +tube +publicly +wealthy +thai +##ys +isolated +select +##ric +insisted +pen +fortune +ticket +spotted +reportedly +animation +enforcement +tanks +110 +decides +wider +lowest +owen +##time +nod +hitting +##hn +gregory +furthermore +magazines +fighters +solutions +##ery +pointing +requested +peru +reed +chancellor +knights +mask +worker +eldest +flames +reduction +1860 +volunteers +##tis +reporting +##hl +wire +advisory +endemic +origins +settlers +pursue +knock +consumer +1876 +eu +compound +creatures +mansion +sentenced +ivan +deployed +guitars +frowned +involves +mechanism +kilometers +perspective +shops +maps +terminus +duncan +alien +fist +bridges +##pers +heroes +fed +derby +swallowed +##ros +patent +sara +illness +characterized +adventures +slide +hawaii +jurisdiction +##op +organised +##side +adelaide +walks +biology +se +##ties +rogers +swing +tightly +boundaries +##rie +prepare +implementation +stolen +##sha +certified +colombia +edwards +garage +##mm +recalled +##ball +rage +harm +nigeria +breast +##ren +furniture +pupils +settle +##lus +cuba +balls +client +alaska +21st +linear +thrust +celebration +latino +genetic +terror +##cia +##ening +lightning +fee +witness +lodge +establishing +skull +##ique +earning +hood +##ei +rebellion +wang +sporting +warned +missile +devoted +activist +porch +worship +fourteen +package +1871 +decorated +##shire +housed +##ock +chess +sailed +doctors +oscar +joan +treat +garcia +harbour +jeremy +##ire +traditions +dominant +jacques +##gon +##wan +relocated +1879 +amendment +sized +companion +simultaneously +volleyball +spun +acre +increases +stopping +loves +belongs +affect +drafted +tossed +scout +battles +1875 +filming +shoved +munich +tenure +vertical +romance +pc +##cher +argue +##ical +craft +ranging +www +opens +honest +tyler +yesterday +virtual +##let +muslims +reveal +snake +immigrants +radical +screaming +speakers +firing +saving +belonging +ease +lighting +prefecture +blame +farmer +hungry +grows +rubbed +beam +sur +subsidiary +##cha +armenian +sao +dropping +conventional +##fer +microsoft +reply +qualify +spots +1867 +sweat +festivals +##ken +immigration +physician +discover +exposure +sandy +explanation +isaac +implemented +##fish +hart +initiated +connect +stakes +presents +heights +householder +pleased +tourist +regardless +slip +closest +##ction +surely +sultan +brings +riley +preparation +aboard +slammed +baptist +experiment +ongoing +interstate +organic +playoffs +##ika +1877 +130 +##tar +hindu +error +tours +tier +plenty +arrangements +talks +trapped +excited +sank +ho +athens +1872 +denver +welfare +suburb +athletes +trick +diverse +belly +exclusively +yelled +1868 +##med +conversion +##ette +1874 +internationally +computers +conductor +abilities +sensitive +hello +dispute +measured +globe +rocket +prices +amsterdam +flights +tigers +inn +municipalities +emotion +references +3d +##mus +explains +airlines +manufactured +pm +archaeological +1873 +interpretation +devon +comment +##ites +settlements +kissing +absolute +improvement +suite +impressed +barcelona +sullivan +jefferson +towers +jesse +julie +##tin +##lu +grandson +hi +gauge +regard +rings +interviews +trace +raymond +thumb +departments +burns +serial +bulgarian +scores +demonstrated +##ix +1866 +kyle +alberta +underneath +romanized +##ward +relieved +acquisition +phrase +cliff +reveals +han +cuts +merger +custom +##dar +nee +gilbert +graduation +##nts +assessment +cafe +difficulty +demands +swung +democrat +jennifer +commons +1940s +grove +##yo +completing +focuses +sum +substitute +bearing +stretch +reception +##py +reflected +essentially +destination +pairs +##ched +survival +resource +##bach +promoting +doubles +messages +tear +##down +##fully +parade +florence +harvey +incumbent +partial +framework +900 +pedro +frozen +procedure +olivia +controls +##mic +shelter +personally +temperatures +##od +brisbane +tested +sits +marble +comprehensive +oxygen +leonard +##kov +inaugural +iranian +referring +quarters +attitude +##ivity +mainstream +lined +mars +dakota +norfolk +unsuccessful +##° +explosion +helicopter +congressional +##sing +inspector +bitch +seal +departed +divine +##ters +coaching +examination +punishment +manufacturer +sink +columns +unincorporated +signals +nevada +squeezed +dylan +dining +photos +martial +manuel +eighteen +elevator +brushed +plates +ministers +ivy +congregation +##len +slept +specialized +taxes +curve +restricted +negotiations +likes +statistical +arnold +inspiration +execution +bold +intermediate +significance +margin +ruler +wheels +gothic +intellectual +dependent +listened +eligible +buses +widow +syria +earn +cincinnati +collapsed +recipient +secrets +accessible +philippine +maritime +goddess +clerk +surrender +breaks +playoff +database +##ified +##lon +ideal +beetle +aspect +soap +regulation +strings +expand +anglo +shorter +crosses +retreat +tough +coins +wallace +directions +pressing +##oon +shipping +locomotives +comparison +topics +nephew +##mes +distinction +honors +travelled +sierra +ibn +##over +fortress +sa +recognised +carved +1869 +clients +##dan +intent +##mar +coaches +describing +bread +##ington +beaten +northwestern +##ona +merit +youtube +collapse +challenges +em +historians +objective +submitted +virus +attacking +drake +assume +##ere +diseases +marc +stem +leeds +##cus +##ab +farming +glasses +##lock +visits +nowhere +fellowship +relevant +carries +restaurants +experiments +101 +constantly +bases +targets +shah +tenth +opponents +verse +territorial +##ira +writings +corruption +##hs +instruction +inherited +reverse +emphasis +##vic +employee +arch +keeps +rabbi +watson +payment +uh +##ala +nancy +##tre +venice +fastest +sexy +banned +adrian +properly +ruth +touchdown +dollar +boards +metre +circles +edges +favour +comments +ok +travels +liberation +scattered +firmly +##ular +holland +permitted +diesel +kenya +den +originated +##ral +demons +resumed +dragged +rider +##rus +servant +blinked +extend +torn +##ias +##sey +input +meal +everybody +cylinder +kinds +camps +##fe +bullet +logic +##wn +croatian +evolved +healthy +fool +chocolate +wise +preserve +pradesh +##ess +respective +1850 +##ew +chicken +artificial +gross +corresponding +convicted +cage +caroline +dialogue +##dor +narrative +stranger +mario +br +christianity +failing +trent +commanding +buddhist +1848 +maurice +focusing +yale +bike +altitude +##ering +mouse +revised +##sley +veteran +##ig +pulls +theology +crashed +campaigns +legion +##ability +drag +excellence +customer +cancelled +intensity +excuse +##lar +liga +participating +contributing +printing +##burn +variable +##rk +curious +bin +legacy +renaissance +##my +symptoms +binding +vocalist +dancer +##nie +grammar +gospel +democrats +ya +enters +sc +diplomatic +hitler +##ser +clouds +mathematical +quit +defended +oriented +##heim +fundamental +hardware +impressive +equally +convince +confederate +guilt +chuck +sliding +##ware +magnetic +narrowed +petersburg +bulgaria +otto +phd +skill +##ama +reader +hopes +pitcher +reservoir +hearts +automatically +expecting +mysterious +bennett +extensively +imagined +seeds +monitor +fix +##ative +journalism +struggling +signature +ranch +encounter +photographer +observation +protests +##pin +influences +##hr +calendar +##all +cruz +croatia +locomotive +hughes +naturally +shakespeare +basement +hook +uncredited +faded +theories +approaches +dare +phillips +filling +fury +obama +##ain +efficient +arc +deliver +min +raid +breeding +inducted +leagues +efficiency +axis +montana +eagles +##ked +supplied +instructions +karen +picking +indicating +trap +anchor +practically +christians +tomb +vary +occasional +electronics +lords +readers +newcastle +faint +innovation +collect +situations +engagement +160 +claude +mixture +##feld +peer +tissue +logo +lean +##ration +°f +floors +##ven +architects +reducing +##our +##ments +rope +1859 +ottawa +##har +samples +banking +declaration +proteins +resignation +francois +saudi +advocate +exhibited +armor +twins +divorce +##ras +abraham +reviewed +jo +temporarily +matrix +physically +pulse +curled +##ena +difficulties +bengal +usage +##ban +annie +riders +certificate +##pi +holes +warsaw +distinctive +jessica +##mon +mutual +1857 +customs +circular +eugene +removal +loaded +mere +vulnerable +depicted +generations +dame +heir +enormous +lightly +climbing +pitched +lessons +pilots +nepal +ram +google +preparing +brad +louise +renowned +##₂ +liam +##ably +plaza +shaw +sophie +brilliant +bills +##bar +##nik +fucking +mainland +server +pleasant +seized +veterans +jerked +fail +beta +brush +radiation +stored +warmth +southeastern +nate +sin +raced +berkeley +joke +athlete +designation +trunk +##low +roland +qualification +archives +heels +artwork +receives +judicial +reserves +##bed +woke +installation +abu +floating +fake +lesser +excitement +interface +concentrated +addressed +characteristic +amanda +saxophone +monk +auto +##bus +releasing +egg +dies +interaction +defender +ce +outbreak +glory +loving +##bert +sequel +consciousness +http +awake +ski +enrolled +##ress +handling +rookie +brow +somebody +biography +warfare +amounts +contracts +presentation +fabric +dissolved +challenged +meter +psychological +lt +elevated +rally +accurate +##tha +hospitals +undergraduate +specialist +venezuela +exhibit +shed +nursing +protestant +fluid +structural +footage +jared +consistent +prey +##ska +succession +reflect +exile +lebanon +wiped +suspect +shanghai +resting +integration +preservation +marvel +variant +pirates +sheep +rounded +capita +sailing +colonies +manuscript +deemed +variations +clarke +functional +emerging +boxing +relaxed +curse +azerbaijan +heavyweight +nickname +editorial +rang +grid +tightened +earthquake +flashed +miguel +rushing +##ches +improvements +boxes +brooks +180 +consumption +molecular +felix +societies +repeatedly +variation +aids +civic +graphics +professionals +realm +autonomous +receiver +delayed +workshop +militia +chairs +trump +canyon +##point +harsh +extending +lovely +happiness +##jan +stake +eyebrows +embassy +wellington +hannah +##ella +sony +corners +bishops +swear +cloth +contents +xi +namely +commenced +1854 +stanford +nashville +courage +graphic +commitment +garrison +##bin +hamlet +clearing +rebels +attraction +literacy +cooking +ruins +temples +jenny +humanity +celebrate +hasn +freight +sixty +rebel +bastard +##art +newton +##ada +deer +##ges +##ching +smiles +delaware +singers +##ets +approaching +assists +flame +##ph +boulevard +barrel +planted +##ome +pursuit +##sia +consequences +posts +shallow +invitation +rode +depot +ernest +kane +rod +concepts +preston +topic +chambers +striking +blast +arrives +descendants +montgomery +ranges +worlds +##lay +##ari +span +chaos +praise +##ag +fewer +1855 +sanctuary +mud +fbi +##ions +programmes +maintaining +unity +harper +bore +handsome +closure +tournaments +thunder +nebraska +linda +facade +puts +satisfied +argentine +dale +cork +dome +panama +##yl +1858 +tasks +experts +##ates +feeding +equation +##las +##ida +##tu +engage +bryan +##ax +um +quartet +melody +disbanded +sheffield +blocked +gasped +delay +kisses +maggie +connects +##non +sts +poured +creator +publishers +##we +guided +ellis +extinct +hug +gaining +##ord +complicated +##bility +poll +clenched +investigate +##use +thereby +quantum +spine +cdp +humor +kills +administered +semifinals +##du +encountered +ignore +##bu +commentary +##maker +bother +roosevelt +140 +plains +halfway +flowing +cultures +crack +imprisoned +neighboring +airline +##ses +##view +##mate +##ec +gather +wolves +marathon +transformed +##ill +cruise +organisations +carol +punch +exhibitions +numbered +alarm +ratings +daddy +silently +##stein +queens +colours +impression +guidance +liu +tactical +##rat +marshal +della +arrow +##ings +rested +feared +tender +owns +bitter +advisor +escort +##ides +spare +farms +grants +##ene +dragons +encourage +colleagues +cameras +##und +sucked +pile +spirits +prague +statements +suspension +landmark +fence +torture +recreation +bags +permanently +survivors +pond +spy +predecessor +bombing +coup +##og +protecting +transformation +glow +##lands +##book +dug +priests +andrea +feat +barn +jumping +##chen +##ologist +##con +casualties +stern +auckland +pipe +serie +revealing +ba +##bel +trevor +mercy +spectrum +yang +consist +governing +collaborated +possessed +epic +comprises +blew +shane +##ack +lopez +honored +magical +sacrifice +judgment +perceived +hammer +mtv +baronet +tune +das +missionary +sheets +350 +neutral +oral +threatening +attractive +shade +aims +seminary +##master +estates +1856 +michel +wounds +refugees +manufacturers +##nic +mercury +syndrome +porter +##iya +##din +hamburg +identification +upstairs +purse +widened +pause +cared +breathed +affiliate +santiago +prevented +celtic +fisher +125 +recruited +byzantine +reconstruction +farther +##mp +diet +sake +au +spite +sensation +##ert +blank +separation +105 +##hon +vladimir +armies +anime +##lie +accommodate +orbit +cult +sofia +archive +##ify +##box +founders +sustained +disorder +honours +northeastern +mia +crops +violet +threats +blanket +fires +canton +followers +southwestern +prototype +voyage +assignment +altered +moderate +protocol +pistol +##eo +questioned +brass +lifting +1852 +math +authored +##ual +doug +dimensional +dynamic +##san +1851 +pronounced +grateful +quest +uncomfortable +boom +presidency +stevens +relating +politicians +chen +barrier +quinn +diana +mosque +tribal +cheese +palmer +portions +sometime +chester +treasure +wu +bend +download +millions +reforms +registration +##osa +consequently +monitoring +ate +preliminary +brandon +invented +ps +eaten +exterior +intervention +ports +documented +log +displays +lecture +sally +favourite +##itz +vermont +lo +invisible +isle +breed +##ator +journalists +relay +speaks +backward +explore +midfielder +actively +stefan +procedures +cannon +blond +kenneth +centered +servants +chains +libraries +malcolm +essex +henri +slavery +##hal +facts +fairy +coached +cassie +cats +washed +cop +##fi +announcement +item +2000s +vinyl +activated +marco +frontier +growled +curriculum +##das +loyal +accomplished +leslie +ritual +kenny +##00 +vii +napoleon +hollow +hybrid +jungle +stationed +friedrich +counted +##ulated +platinum +theatrical +seated +col +rubber +glen +1840 +diversity +healing +extends +id +provisions +administrator +columbus +##oe +tributary +te +assured +org +##uous +prestigious +examined +lectures +grammy +ronald +associations +bailey +allan +essays +flute +believing +consultant +proceedings +travelling +1853 +kit +kerala +yugoslavia +buddy +methodist +##ith +burial +centres +batman +##nda +discontinued +bo +dock +stockholm +lungs +severely +##nk +citing +manga +##ugh +steal +mumbai +iraqi +robot +celebrity +bride +broadcasts +abolished +pot +joel +overhead +franz +packed +reconnaissance +johann +acknowledged +introduce +handled +doctorate +developments +drinks +alley +palestine +##nis +##aki +proceeded +recover +bradley +grain +patch +afford +infection +nationalist +legendary +##ath +interchange +virtually +gen +gravity +exploration +amber +vital +wishes +powell +doctrine +elbow +screenplay +##bird +contribute +indonesian +pet +creates +##com +enzyme +kylie +discipline +drops +manila +hunger +##ien +layers +suffer +fever +bits +monica +keyboard +manages +##hood +searched +appeals +##bad +testament +grande +reid +##war +beliefs +congo +##ification +##dia +si +requiring +##via +casey +1849 +regret +streak +rape +depends +syrian +sprint +pound +tourists +upcoming +pub +##xi +tense +##els +practiced +echo +nationwide +guild +motorcycle +liz +##zar +chiefs +desired +elena +bye +precious +absorbed +relatives +booth +pianist +##mal +citizenship +exhausted +wilhelm +##ceae +##hed +noting +quarterback +urge +hectares +##gue +ace +holly +##tal +blonde +davies +parked +sustainable +stepping +twentieth +airfield +galaxy +nest +chip +##nell +tan +shaft +paulo +requirement +##zy +paradise +tobacco +trans +renewed +vietnamese +##cker +##ju +suggesting +catching +holmes +enjoying +md +trips +colt +holder +butterfly +nerve +reformed +cherry +bowling +trailer +carriage +goodbye +appreciate +toy +joshua +interactive +enabled +involve +##kan +collar +determination +bunch +facebook +recall +shorts +superintendent +episcopal +frustration +giovanni +nineteenth +laser +privately +array +circulation +##ovic +armstrong +deals +painful +permit +discrimination +##wi +aires +retiring +cottage +ni +##sta +horizon +ellen +jamaica +ripped +fernando +chapters +playstation +patron +lecturer +navigation +behaviour +genes +georgian +export +solomon +rivals +swift +seventeen +rodriguez +princeton +independently +sox +1847 +arguing +entity +casting +hank +criteria +oakland +geographic +milwaukee +reflection +expanding +conquest +dubbed +##tv +halt +brave +brunswick +doi +arched +curtis +divorced +predominantly +somerset +streams +ugly +zoo +horrible +curved +buenos +fierce +dictionary +vector +theological +unions +handful +stability +chan +punjab +segments +##lly +altar +ignoring +gesture +monsters +pastor +##stone +thighs +unexpected +operators +abruptly +coin +compiled +associates +improving +migration +pin +##ose +compact +collegiate +reserved +##urs +quarterfinals +roster +restore +assembled +hurry +oval +##cies +1846 +flags +martha +##del +victories +sharply +##rated +argues +deadly +neo +drawings +symbols +performer +##iel +griffin +restrictions +editing +andrews +java +journals +arabia +compositions +dee +pierce +removing +hindi +casino +runway +civilians +minds +nasa +hotels +##zation +refuge +rent +retain +potentially +conferences +suburban +conducting +##tto +##tions +##tle +descended +massacre +##cal +ammunition +terrain +fork +souls +counts +chelsea +durham +drives +cab +##bank +perth +realizing +palestinian +finn +simpson +##dal +betty +##ule +moreover +particles +cardinals +tent +evaluation +extraordinary +##oid +inscription +##works +wednesday +chloe +maintains +panels +ashley +trucks +##nation +cluster +sunlight +strikes +zhang +##wing +dialect +canon +##ap +tucked +##ws +collecting +##mas +##can +##sville +maker +quoted +evan +franco +aria +buying +cleaning +eva +closet +provision +apollo +clinic +rat +##ez +necessarily +ac +##gle +##ising +venues +flipped +cent +spreading +trustees +checking +authorized +##sco +disappointed +##ado +notion +duration +trumpet +hesitated +topped +brussels +rolls +theoretical +hint +define +aggressive +repeat +wash +peaceful +optical +width +allegedly +mcdonald +strict +copyright +##illa +investors +mar +jam +witnesses +sounding +miranda +michelle +privacy +hugo +harmony +##pp +valid +lynn +glared +nina +102 +headquartered +diving +boarding +gibson +##ncy +albanian +marsh +routine +dealt +enhanced +er +intelligent +substance +targeted +enlisted +discovers +spinning +observations +pissed +smoking +rebecca +capitol +visa +varied +costume +seemingly +indies +compensation +surgeon +thursday +arsenal +westminster +suburbs +rid +anglican +##ridge +knots +foods +alumni +lighter +fraser +whoever +portal +scandal +##ray +gavin +advised +instructor +flooding +terrorist +##ale +teenage +interim +senses +duck +teen +thesis +abby +eager +overcome +##ile +newport +glenn +rises +shame +##cc +prompted +priority +forgot +bomber +nicolas +protective +360 +cartoon +katherine +breeze +lonely +trusted +henderson +richardson +relax +banner +candy +palms +remarkable +##rio +legends +cricketer +essay +ordained +edmund +rifles +trigger +##uri +##away +sail +alert +1830 +audiences +penn +sussex +siblings +pursued +indianapolis +resist +rosa +consequence +succeed +avoided +1845 +##ulation +inland +##tie +##nna +counsel +profession +chronicle +hurried +##una +eyebrow +eventual +bleeding +innovative +cure +##dom +committees +accounting +con +scope +hardy +heather +tenor +gut +herald +codes +tore +scales +wagon +##oo +luxury +tin +prefer +fountain +triangle +bonds +darling +convoy +dried +traced +beings +troy +accidentally +slam +findings +smelled +joey +lawyers +outcome +steep +bosnia +configuration +shifting +toll +brook +performers +lobby +philosophical +construct +shrine +aggregate +boot +cox +phenomenon +savage +insane +solely +reynolds +lifestyle +##ima +nationally +holdings +consideration +enable +edgar +mo +mama +##tein +fights +relegation +chances +atomic +hub +conjunction +awkward +reactions +currency +finale +kumar +underwent +steering +elaborate +gifts +comprising +melissa +veins +reasonable +sunshine +chi +solve +trails +inhabited +elimination +ethics +huh +ana +molly +consent +apartments +layout +marines +##ces +hunters +bulk +##oma +hometown +##wall +##mont +cracked +reads +neighbouring +withdrawn +admission +wingspan +damned +anthology +lancashire +brands +batting +forgive +cuban +awful +##lyn +104 +dimensions +imagination +##ade +dante +##ship +tracking +desperately +goalkeeper +##yne +groaned +workshops +confident +burton +gerald +milton +circus +uncertain +slope +copenhagen +sophia +fog +philosopher +portraits +accent +cycling +varying +gripped +larvae +garrett +specified +scotia +mature +luther +kurt +rap +##kes +aerial +750 +ferdinand +heated +es +transported +##shan +safely +nonetheless +##orn +##gal +motors +demanding +##sburg +startled +##brook +ally +generate +caps +ghana +stained +demo +mentions +beds +ap +afterward +diary +##bling +utility +##iro +richards +1837 +conspiracy +conscious +shining +footsteps +observer +cyprus +urged +loyalty +developer +probability +olive +upgraded +gym +miracle +insects +graves +1844 +ourselves +hydrogen +amazon +katie +tickets +poets +##pm +planes +##pan +prevention +witnessed +dense +jin +randy +tang +warehouse +monroe +bang +archived +elderly +investigations +alec +granite +mineral +conflicts +controlling +aboriginal +carlo +##zu +mechanics +stan +stark +rhode +skirt +est +##berry +bombs +respected +##horn +imposed +limestone +deny +nominee +memphis +grabbing +disabled +##als +amusement +aa +frankfurt +corn +referendum +varies +slowed +disk +firms +unconscious +incredible +clue +sue +##zhou +twist +##cio +joins +idaho +chad +developers +computing +destroyer +103 +mortal +tucker +kingston +choices +yu +carson +1800 +os +whitney +geneva +pretend +dimension +staged +plateau +maya +##une +freestyle +##bc +rovers +hiv +##ids +tristan +classroom +prospect +##hus +honestly +diploma +lied +thermal +auxiliary +feast +unlikely +iata +##tel +morocco +pounding +treasury +lithuania +considerably +1841 +dish +1812 +geological +matching +stumbled +destroying +marched +brien +advances +cake +nicole +belle +settling +measuring +directing +##mie +tuesday +bassist +capabilities +stunned +fraud +torpedo +##list +##phone +anton +wisdom +surveillance +ruined +##ulate +lawsuit +healthcare +theorem +halls +trend +aka +horizontal +dozens +acquire +lasting +swim +hawk +gorgeous +fees +vicinity +decrease +adoption +tactics +##ography +pakistani +##ole +draws +##hall +willie +burke +heath +algorithm +integral +powder +elliott +brigadier +jackie +tate +varieties +darker +##cho +lately +cigarette +specimens +adds +##ree +##ensis +##inger +exploded +finalist +cia +murders +wilderness +arguments +nicknamed +acceptance +onwards +manufacture +robertson +jets +tampa +enterprises +blog +loudly +composers +nominations +1838 +ai +malta +inquiry +automobile +hosting +viii +rays +tilted +grief +museums +strategies +furious +euro +equality +cohen +poison +surrey +wireless +governed +ridiculous +moses +##esh +##room +vanished +##ito +barnes +attract +morrison +istanbul +##iness +absent +rotation +petition +janet +##logical +satisfaction +custody +deliberately +observatory +comedian +surfaces +pinyin +novelist +strictly +canterbury +oslo +monks +embrace +ibm +jealous +photograph +continent +dorothy +marina +doc +excess +holden +allegations +explaining +stack +avoiding +lance +storyline +majesty +poorly +spike +dos +bradford +raven +travis +classics +proven +voltage +pillow +fists +butt +1842 +interpreted +##car +1839 +gage +telegraph +lens +promising +expelled +casual +collector +zones +##min +silly +nintendo +##kh +##bra +downstairs +chef +suspicious +afl +flies +vacant +uganda +pregnancy +condemned +lutheran +estimates +cheap +decree +saxon +proximity +stripped +idiot +deposits +contrary +presenter +magnus +glacier +im +offense +edwin +##ori +upright +##long +bolt +##ois +toss +geographical +##izes +environments +delicate +marking +abstract +xavier +nails +windsor +plantation +occurring +equity +saskatchewan +fears +drifted +sequences +vegetation +revolt +##stic +1843 +sooner +fusion +opposing +nato +skating +1836 +secretly +ruin +lease +##oc +edit +##nne +flora +anxiety +ruby +##ological +##mia +tel +bout +taxi +emmy +frost +rainbow +compounds +foundations +rainfall +assassination +nightmare +dominican +##win +achievements +deserve +orlando +intact +armenia +##nte +calgary +valentine +106 +marion +proclaimed +theodore +bells +courtyard +thigh +gonzalez +console +troop +minimal +monte +everyday +##ence +##if +supporter +terrorism +buck +openly +presbyterian +activists +carpet +##iers +rubbing +uprising +##yi +cute +conceived +legally +##cht +millennium +cello +velocity +ji +rescued +cardiff +1835 +rex +concentrate +senators +beard +rendered +glowing +battalions +scouts +competitors +sculptor +catalogue +arctic +ion +raja +bicycle +wow +glancing +lawn +##woman +gentleman +lighthouse +publish +predicted +calculated +##val +variants +##gne +strain +##ui +winston +deceased +##nus +touchdowns +brady +caleb +sinking +echoed +crush +hon +blessed +protagonist +hayes +endangered +magnitude +editors +##tine +estimate +responsibilities +##mel +backup +laying +consumed +sealed +zurich +lovers +frustrated +##eau +ahmed +kicking +mit +treasurer +1832 +biblical +refuse +terrified +pump +agrees +genuine +imprisonment +refuses +plymouth +##hen +lou +##nen +tara +trembling +antarctic +ton +learns +##tas +crap +crucial +faction +atop +##borough +wrap +lancaster +odds +hopkins +erik +lyon +##eon +bros +##ode +snap +locality +tips +empress +crowned +cal +acclaimed +chuckled +##ory +clara +sends +mild +towel +##fl +##day +##а +wishing +assuming +interviewed +##bal +##die +interactions +eden +cups +helena +##lf +indie +beck +##fire +batteries +filipino +wizard +parted +##lam +traces +##born +rows +idol +albany +delegates +##ees +##sar +discussions +##ex +notre +instructed +belgrade +highways +suggestion +lauren +possess +orientation +alexandria +abdul +beats +salary +reunion +ludwig +alright +wagner +intimate +pockets +slovenia +hugged +brighton +merchants +cruel +stole +trek +slopes +repairs +enrollment +politically +underlying +promotional +counting +boeing +##bb +isabella +naming +##и +keen +bacteria +listing +separately +belfast +ussr +450 +lithuanian +anybody +ribs +sphere +martinez +cock +embarrassed +proposals +fragments +nationals +##fs +##wski +premises +fin +1500 +alpine +matched +freely +bounded +jace +sleeve +##af +gaming +pier +populated +evident +##like +frances +flooded +##dle +frightened +pour +trainer +framed +visitor +challenging +pig +wickets +##fold +infected +email +##pes +arose +##aw +reward +ecuador +oblast +vale +ch +shuttle +##usa +bach +rankings +forbidden +cornwall +accordance +salem +consumers +bruno +fantastic +toes +machinery +resolved +julius +remembering +propaganda +iceland +bombardment +tide +contacts +wives +##rah +concerto +macdonald +albania +implement +daisy +tapped +sudan +helmet +angela +mistress +##lic +crop +sunk +finest +##craft +hostile +##ute +##tsu +boxer +fr +paths +adjusted +habit +ballot +supervision +soprano +##zen +bullets +wicked +sunset +regiments +disappear +lamp +performs +app +##gia +##oa +rabbit +digging +incidents +entries +##cion +dishes +##oi +introducing +##ati +##fied +freshman +slot +jill +tackles +baroque +backs +##iest +lone +sponsor +destiny +altogether +convert +##aro +consensus +shapes +demonstration +basically +feminist +auction +artifacts +##bing +strongest +twitter +halifax +2019 +allmusic +mighty +smallest +precise +alexandra +viola +##los +##ille +manuscripts +##illo +dancers +ari +managers +monuments +blades +barracks +springfield +maiden +consolidated +electron +##end +berry +airing +wheat +nobel +inclusion +blair +payments +geography +bee +cc +eleanor +react +##hurst +afc +manitoba +##yu +su +lineup +fitness +recreational +investments +airborne +disappointment +##dis +edmonton +viewing +##row +renovation +##cast +infant +bankruptcy +roses +aftermath +pavilion +##yer +carpenter +withdrawal +ladder +##hy +discussing +popped +reliable +agreements +rochester +##abad +curves +bombers +220 +rao +reverend +decreased +choosing +107 +stiff +consulting +naples +crawford +tracy +ka +ribbon +cops +##lee +crushed +deciding +unified +teenager +accepting +flagship +explorer +poles +sanchez +inspection +revived +skilled +induced +exchanged +flee +locals +tragedy +swallow +loading +hanna +demonstrate +##ela +salvador +flown +contestants +civilization +##ines +wanna +rhodes +fletcher +hector +knocking +considers +##ough +nash +mechanisms +sensed +mentally +walt +unclear +##eus +renovated +madame +##cks +crews +governmental +##hin +undertaken +monkey +##ben +##ato +fatal +armored +copa +caves +governance +grasp +perception +certification +froze +damp +tugged +wyoming +##rg +##ero +newman +##lor +nerves +curiosity +graph +115 +##ami +withdraw +tunnels +dull +meredith +moss +exhibits +neighbors +communicate +accuracy +explored +raiders +republicans +secular +kat +superman +penny +criticised +##tch +freed +update +conviction +wade +ham +likewise +delegation +gotta +doll +promises +technological +myth +nationality +resolve +convent +##mark +sharon +dig +sip +coordinator +entrepreneur +fold +##dine +capability +councillor +synonym +blown +swan +cursed +1815 +jonas +haired +sofa +canvas +keeper +rivalry +##hart +rapper +speedway +swords +postal +maxwell +estonia +potter +recurring +##nn +##ave +errors +##oni +cognitive +1834 +##² +claws +nadu +roberto +bce +wrestler +ellie +##ations +infinite +ink +##tia +presumably +finite +staircase +108 +noel +patricia +nacional +##cation +chill +eternal +tu +preventing +prussia +fossil +limbs +##logist +ernst +frog +perez +rene +##ace +pizza +prussian +##ios +##vy +molecules +regulatory +answering +opinions +sworn +lengths +supposedly +hypothesis +upward +habitats +seating +ancestors +drank +yield +hd +synthesis +researcher +modest +##var +mothers +peered +voluntary +homeland +##the +acclaim +##igan +static +valve +luxembourg +alto +carroll +fe +receptor +norton +ambulance +##tian +johnston +catholics +depicting +jointly +elephant +gloria +mentor +badge +ahmad +distinguish +remarked +councils +precisely +allison +advancing +detection +crowded +##10 +cooperative +ankle +mercedes +dagger +surrendered +pollution +commit +subway +jeffrey +lesson +sculptures +provider +##fication +membrane +timothy +rectangular +fiscal +heating +teammate +basket +particle +anonymous +deployment +##ple +missiles +courthouse +proportion +shoe +sec +##ller +complaints +forbes +blacks +abandon +remind +sizes +overwhelming +autobiography +natalie +##awa +risks +contestant +countryside +babies +scorer +invaded +enclosed +proceed +hurling +disorders +##cu +reflecting +continuously +cruiser +graduates +freeway +investigated +ore +deserved +maid +blocking +phillip +jorge +shakes +dove +mann +variables +lacked +burden +accompanying +que +consistently +organizing +provisional +complained +endless +##rm +tubes +juice +georges +krishna +mick +labels +thriller +##uch +laps +arcade +sage +snail +##table +shannon +fi +laurence +seoul +vacation +presenting +hire +churchill +surprisingly +prohibited +savannah +technically +##oli +170 +##lessly +testimony +suited +speeds +toys +romans +mlb +flowering +measurement +talented +kay +settings +charleston +expectations +shattered +achieving +triumph +ceremonies +portsmouth +lanes +mandatory +loser +stretching +cologne +realizes +seventy +cornell +careers +webb +##ulating +americas +budapest +ava +suspicion +##ison +yo +conrad +##hai +sterling +jessie +rector +##az +1831 +transform +organize +loans +christine +volcanic +warrant +slender +summers +subfamily +newer +danced +dynamics +rhine +proceeds +heinrich +gastropod +commands +sings +facilitate +easter +ra +positioned +responses +expense +fruits +yanked +imported +25th +velvet +vic +primitive +tribune +baldwin +neighbourhood +donna +rip +hay +pr +##uro +1814 +espn +welcomed +##aria +qualifier +glare +highland +timing +##cted +shells +eased +geometry +louder +exciting +slovakia +##sion +##iz +##lot +savings +prairie +##ques +marching +rafael +tonnes +##lled +curtain +preceding +shy +heal +greene +worthy +##pot +detachment +bury +sherman +##eck +reinforced +seeks +bottles +contracted +duchess +outfit +walsh +##sc +mickey +##ase +geoffrey +archer +squeeze +dawson +eliminate +invention +##enberg +neal +##eth +stance +dealer +coral +maple +retire +polo +simplified +##ht +1833 +hid +watts +backwards +jules +##oke +genesis +mt +frames +rebounds +burma +woodland +moist +santos +whispers +drained +subspecies +##aa +streaming +ulster +burnt +correspondence +maternal +gerard +denis +stealing +##load +genius +duchy +##oria +inaugurated +momentum +suits +placement +sovereign +clause +thames +##hara +confederation +reservation +sketch +yankees +lets +rotten +charm +hal +verses +ultra +commercially +dot +salon +citation +adopt +winnipeg +mist +allocated +cairo +##boy +jenkins +interference +objectives +##wind +1820 +portfolio +armoured +sectors +##eh +initiatives +##world +integrity +exercises +robe +tap +ab +gazed +##tones +distracted +rulers +111 +favorable +jerome +tended +cart +factories +##eri +diplomat +valued +gravel +charitable +##try +calvin +exploring +chang +shepherd +terrace +pdf +pupil +##ural +reflects +ups +##rch +governors +shelf +depths +##nberg +trailed +crest +tackle +##nian +##ats +hatred +##kai +clare +makers +ethiopia +longtime +detected +embedded +lacking +slapped +rely +thomson +anticipation +iso +morton +successive +agnes +screenwriter +straightened +philippe +playwright +haunted +licence +iris +intentions +sutton +112 +logical +correctly +##weight +branded +licked +tipped +silva +ricky +narrator +requests +##ents +greeted +supernatural +cow +##wald +lung +refusing +employer +strait +gaelic +liner +##piece +zoe +sabha +##mba +driveway +harvest +prints +bates +reluctantly +threshold +algebra +ira +wherever +coupled +240 +assumption +picks +##air +designers +raids +gentlemen +##ean +roller +blowing +leipzig +locks +screw +dressing +strand +##lings +scar +dwarf +depicts +##nu +nods +##mine +differ +boris +##eur +yuan +flip +##gie +mob +invested +questioning +applying +##ture +shout +##sel +gameplay +blamed +illustrations +bothered +weakness +rehabilitation +##of +##zes +envelope +rumors +miners +leicester +subtle +kerry +##ico +ferguson +##fu +premiership +ne +##cat +bengali +prof +catches +remnants +dana +##rily +shouting +presidents +baltic +ought +ghosts +dances +sailors +shirley +fancy +dominic +##bie +madonna +##rick +bark +buttons +gymnasium +ashes +liver +toby +oath +providence +doyle +evangelical +nixon +cement +carnegie +embarked +hatch +surroundings +guarantee +needing +pirate +essence +##bee +filter +crane +hammond +projected +immune +percy +twelfth +##ult +regent +doctoral +damon +mikhail +##ichi +lu +critically +elect +realised +abortion +acute +screening +mythology +steadily +##fc +frown +nottingham +kirk +wa +minneapolis +##rra +module +algeria +mc +nautical +encounters +surprising +statues +availability +shirts +pie +alma +brows +munster +mack +soup +crater +tornado +sanskrit +cedar +explosive +bordered +dixon +planets +stamp +exam +happily +##bble +carriers +kidnapped +##vis +accommodation +emigrated +##met +knockout +correspondent +violation +profits +peaks +lang +specimen +agenda +ancestry +pottery +spelling +equations +obtaining +ki +linking +1825 +debris +asylum +##20 +buddhism +teddy +##ants +gazette +##nger +##sse +dental +eligibility +utc +fathers +averaged +zimbabwe +francesco +coloured +hissed +translator +lynch +mandate +humanities +mackenzie +uniforms +lin +##iana +##gio +asset +mhz +fitting +samantha +genera +wei +rim +beloved +shark +riot +entities +expressions +indo +carmen +slipping +owing +abbot +neighbor +sidney +##av +rats +recommendations +encouraging +squadrons +anticipated +commanders +conquered +##oto +donations +diagnosed +##mond +divide +##iva +guessed +decoration +vernon +auditorium +revelation +conversations +##kers +##power +herzegovina +dash +alike +protested +lateral +herman +accredited +mg +##gent +freeman +mel +fiji +crow +crimson +##rine +livestock +##pped +humanitarian +bored +oz +whip +##lene +##ali +legitimate +alter +grinning +spelled +anxious +oriental +wesley +##nin +##hole +carnival +controller +detect +##ssa +bowed +educator +kosovo +macedonia +##sin +occupy +mastering +stephanie +janeiro +para +unaware +nurses +noon +135 +cam +hopefully +ranger +combine +sociology +polar +rica +##eer +neill +##sman +holocaust +##ip +doubled +lust +1828 +109 +decent +cooling +unveiled +##card +1829 +nsw +homer +chapman +meyer +##gin +dive +mae +reagan +expertise +##gled +darwin +brooke +sided +prosecution +investigating +comprised +petroleum +genres +reluctant +differently +trilogy +johns +vegetables +corpse +highlighted +lounge +pension +unsuccessfully +elegant +aided +ivory +beatles +amelia +cain +dubai +sunny +immigrant +babe +click +##nder +underwater +pepper +combining +mumbled +atlas +horns +accessed +ballad +physicians +homeless +gestured +rpm +freak +louisville +corporations +patriots +prizes +rational +warn +modes +decorative +overnight +din +troubled +phantom +##ort +monarch +sheer +##dorf +generals +guidelines +organs +addresses +##zon +enhance +curling +parishes +cord +##kie +linux +caesar +deutsche +bavaria +##bia +coleman +cyclone +##eria +bacon +petty +##yama +##old +hampton +diagnosis +1824 +throws +complexity +rita +disputed +##₃ +pablo +##sch +marketed +trafficking +##ulus +examine +plague +formats +##oh +vault +faithful +##bourne +webster +##ox +highlights +##ient +##ann +phones +vacuum +sandwich +modeling +##gated +bolivia +clergy +qualities +isabel +##nas +##ars +wears +screams +reunited +annoyed +bra +##ancy +##rate +differential +transmitter +tattoo +container +poker +##och +excessive +resides +cowboys +##tum +augustus +trash +providers +statute +retreated +balcony +reversed +void +storey +preceded +masses +leap +laughs +neighborhoods +wards +schemes +falcon +santo +battlefield +pad +ronnie +thread +lesbian +venus +##dian +beg +sandstone +daylight +punched +gwen +analog +stroked +wwe +acceptable +measurements +dec +toxic +##kel +adequate +surgical +economist +parameters +varsity +##sberg +quantity +ella +##chy +##rton +countess +generating +precision +diamonds +expressway +ga +##ı +1821 +uruguay +talents +galleries +expenses +scanned +colleague +outlets +ryder +lucien +##ila +paramount +##bon +syracuse +dim +fangs +gown +sweep +##sie +toyota +missionaries +websites +##nsis +sentences +adviser +val +trademark +spells +##plane +patience +starter +slim +##borg +toe +incredibly +shoots +elliot +nobility +##wyn +cowboy +endorsed +gardner +tendency +persuaded +organisms +emissions +kazakhstan +amused +boring +chips +themed +##hand +llc +constantinople +chasing +systematic +guatemala +borrowed +erin +carey +##hard +highlands +struggles +1810 +##ifying +##ced +wong +exceptions +develops +enlarged +kindergarten +castro +##ern +##rina +leigh +zombie +juvenile +##most +consul +##nar +sailor +hyde +clarence +intensive +pinned +nasty +useless +jung +clayton +stuffed +exceptional +ix +apostolic +230 +transactions +##dge +exempt +swinging +cove +religions +##ash +shields +dairy +bypass +190 +pursuing +bug +joyce +bombay +chassis +southampton +chat +interact +redesignated +##pen +nascar +pray +salmon +rigid +regained +malaysian +grim +publicity +constituted +capturing +toilet +delegate +purely +tray +drift +loosely +striker +weakened +trinidad +mitch +itv +defines +transmitted +ming +scarlet +nodding +fitzgerald +fu +narrowly +sp +tooth +standings +virtue +##₁ +##wara +##cting +chateau +gloves +lid +##nel +hurting +conservatory +##pel +sinclair +reopened +sympathy +nigerian +strode +advocated +optional +chronic +discharge +##rc +suck +compatible +laurel +stella +shi +fails +wage +dodge +128 +informal +sorts +levi +buddha +villagers +##aka +chronicles +heavier +summoned +gateway +3000 +eleventh +jewelry +translations +accordingly +seas +##ency +fiber +pyramid +cubic +dragging +##ista +caring +##ops +android +contacted +lunar +##dt +kai +lisbon +patted +1826 +sacramento +theft +madagascar +subtropical +disputes +ta +holidays +piper +willow +mare +cane +itunes +newfoundland +benny +companions +dong +raj +observe +roar +charming +plaque +tibetan +fossils +enacted +manning +bubble +tina +tanzania +##eda +##hir +funk +swamp +deputies +cloak +ufc +scenario +par +scratch +metals +anthem +guru +engaging +specially +##boat +dialects +nineteen +cecil +duet +disability +messenger +unofficial +##lies +defunct +eds +moonlight +drainage +surname +puzzle +honda +switching +conservatives +mammals +knox +broadcaster +sidewalk +cope +##ried +benson +princes +peterson +##sal +bedford +sharks +eli +wreck +alberto +gasp +archaeology +lgbt +teaches +securities +madness +compromise +waving +coordination +davidson +visions +leased +possibilities +eighty +jun +fernandez +enthusiasm +assassin +sponsorship +reviewer +kingdoms +estonian +laboratories +##fy +##nal +applies +verb +celebrations +##zzo +rowing +lightweight +sadness +submit +mvp +balanced +dude +##vas +explicitly +metric +magnificent +mound +brett +mohammad +mistakes +irregular +##hing +##ass +sanders +betrayed +shipped +surge +##enburg +reporters +termed +georg +pity +verbal +bulls +abbreviated +enabling +appealed +##are +##atic +sicily +sting +heel +sweetheart +bart +spacecraft +brutal +monarchy +##tter +aberdeen +cameo +diane +##ub +survivor +clyde +##aries +complaint +##makers +clarinet +delicious +chilean +karnataka +coordinates +1818 +panties +##rst +pretending +ar +dramatically +kiev +bella +tends +distances +113 +catalog +launching +instances +telecommunications +portable +lindsay +vatican +##eim +angles +aliens +marker +stint +screens +bolton +##rne +judy +wool +benedict +plasma +europa +spark +imaging +filmmaker +swiftly +##een +contributor +##nor +opted +stamps +apologize +financing +butter +gideon +sophisticated +alignment +avery +chemicals +yearly +speculation +prominence +professionally +##ils +immortal +institutional +inception +wrists +identifying +tribunal +derives +gains +##wo +papal +preference +linguistic +vince +operative +brewery +##ont +unemployment +boyd +##ured +##outs +albeit +prophet +1813 +bi +##rr +##face +##rad +quarterly +asteroid +cleaned +radius +temper +##llen +telugu +jerk +viscount +menu +##ote +glimpse +##aya +yacht +hawaiian +baden +##rl +laptop +readily +##gu +monetary +offshore +scots +watches +##yang +##arian +upgrade +needle +xbox +lea +encyclopedia +flank +fingertips +##pus +delight +teachings +confirm +roth +beaches +midway +winters +##iah +teasing +daytime +beverly +gambling +bonnie +##backs +regulated +clement +hermann +tricks +knot +##shing +##uring +##vre +detached +ecological +owed +specialty +byron +inventor +bats +stays +screened +unesco +midland +trim +affection +##ander +##rry +jess +thoroughly +feedback +##uma +chennai +strained +heartbeat +wrapping +overtime +pleaded +##sworth +mon +leisure +oclc +##tate +##ele +feathers +angelo +thirds +nuts +surveys +clever +gill +commentator +##dos +darren +rides +gibraltar +##nc +##mu +dissolution +dedication +shin +meals +saddle +elvis +reds +chaired +taller +appreciation +functioning +niece +favored +advocacy +robbie +criminals +suffolk +yugoslav +passport +constable +congressman +hastings +vera +##rov +consecrated +sparks +ecclesiastical +confined +##ovich +muller +floyd +nora +1822 +paved +1827 +cumberland +ned +saga +spiral +##flow +appreciated +yi +collaborative +treating +similarities +feminine +finishes +##ib +jade +import +##nse +##hot +champagne +mice +securing +celebrities +helsinki +attributes +##gos +cousins +phases +ache +lucia +gandhi +submission +vicar +spear +shine +tasmania +biting +detention +constitute +tighter +seasonal +##gus +terrestrial +matthews +##oka +effectiveness +parody +philharmonic +##onic +1816 +strangers +encoded +consortium +guaranteed +regards +shifts +tortured +collision +supervisor +inform +broader +insight +theaters +armour +emeritus +blink +incorporates +mapping +##50 +##ein +handball +flexible +##nta +substantially +generous +thief +##own +carr +loses +1793 +prose +ucla +romeo +generic +metallic +realization +damages +mk +commissioners +zach +default +##ther +helicopters +lengthy +stems +spa +partnered +spectators +rogue +indication +penalties +teresa +1801 +sen +##tric +dalton +##wich +irving +photographic +##vey +dell +deaf +peters +excluded +unsure +##vable +patterson +crawled +##zio +resided +whipped +latvia +slower +ecole +pipes +employers +maharashtra +comparable +va +textile +pageant +##gel +alphabet +binary +irrigation +chartered +choked +antoine +offs +waking +supplement +##wen +quantities +demolition +regain +locate +urdu +folks +alt +114 +##mc +scary +andreas +whites +##ava +classrooms +mw +aesthetic +publishes +valleys +guides +cubs +johannes +bryant +conventions +affecting +##itt +drain +awesome +isolation +prosecutor +ambitious +apology +captive +downs +atmospheric +lorenzo +aisle +beef +foul +##onia +kidding +composite +disturbed +illusion +natives +##ffer +emi +rockets +riverside +wartime +painters +adolf +melted +##ail +uncertainty +simulation +hawks +progressed +meantime +builder +spray +breach +unhappy +regina +russians +##urg +determining +##tation +tram +1806 +##quin +aging +##12 +1823 +garion +rented +mister +diaz +terminated +clip +1817 +depend +nervously +disco +owe +defenders +shiva +notorious +disbelief +shiny +worcester +##gation +##yr +trailing +undertook +islander +belarus +limitations +watershed +fuller +overlooking +utilized +raphael +1819 +synthetic +breakdown +klein +##nate +moaned +memoir +lamb +practicing +##erly +cellular +arrows +exotic +##graphy +witches +117 +charted +rey +hut +hierarchy +subdivision +freshwater +giuseppe +aloud +reyes +qatar +marty +sideways +utterly +sexually +jude +prayers +mccarthy +softball +blend +damien +##gging +##metric +wholly +erupted +lebanese +negro +revenues +tasted +comparative +teamed +transaction +labeled +maori +sovereignty +parkway +trauma +gran +malay +121 +advancement +descendant +2020 +buzz +salvation +inventory +symbolic +##making +antarctica +mps +##gas +##bro +mohammed +myanmar +holt +submarines +tones +##lman +locker +patriarch +bangkok +emerson +remarks +predators +kin +afghan +confession +norwich +rental +emerge +advantages +##zel +rca +##hold +shortened +storms +aidan +##matic +autonomy +compliance +##quet +dudley +atp +##osis +1803 +motto +documentation +summary +professors +spectacular +christina +archdiocese +flashing +innocence +remake +##dell +psychic +reef +scare +employ +rs +sticks +meg +gus +leans +##ude +accompany +bergen +tomas +##iko +doom +wages +pools +##nch +##bes +breasts +scholarly +alison +outline +brittany +breakthrough +willis +realistic +##cut +##boro +competitor +##stan +pike +picnic +icon +designing +commercials +washing +villain +skiing +micro +costumes +auburn +halted +executives +##hat +logistics +cycles +vowel +applicable +barrett +exclaimed +eurovision +eternity +ramon +##umi +##lls +modifications +sweeping +disgust +##uck +torch +aviv +ensuring +rude +dusty +sonic +donovan +outskirts +cu +pathway +##band +##gun +##lines +disciplines +acids +cadet +paired +##40 +sketches +##sive +marriages +##⁺ +folding +peers +slovak +implies +admired +##beck +1880s +leopold +instinct +attained +weston +megan +horace +##ination +dorsal +ingredients +evolutionary +##its +complications +deity +lethal +brushing +levy +deserted +institutes +posthumously +delivering +telescope +coronation +motivated +rapids +luc +flicked +pays +volcano +tanner +weighed +##nica +crowds +frankie +gifted +addressing +granddaughter +winding +##rna +constantine +gomez +##front +landscapes +rudolf +anthropology +slate +werewolf +##lio +astronomy +circa +rouge +dreaming +sack +knelt +drowned +naomi +prolific +tracked +freezing +herb +##dium +agony +randall +twisting +wendy +deposit +touches +vein +wheeler +##bbled +##bor +batted +retaining +tire +presently +compare +specification +daemon +nigel +##grave +merry +recommendation +czechoslovakia +sandra +ng +roma +##sts +lambert +inheritance +sheikh +winchester +cries +examining +##yle +comeback +cuisine +nave +##iv +ko +retrieve +tomatoes +barker +polished +defining +irene +lantern +personalities +begging +tract +swore +1809 +175 +##gic +omaha +brotherhood +##rley +haiti +##ots +exeter +##ete +##zia +steele +dumb +pearson +210 +surveyed +elisabeth +trends +##ef +fritz +##rf +premium +bugs +fraction +calmly +viking +##birds +tug +inserted +unusually +##ield +confronted +distress +crashing +brent +turks +resign +##olo +cambodia +gabe +sauce +##kal +evelyn +116 +extant +clusters +quarry +teenagers +luna +##lers +##ister +affiliation +drill +##ashi +panthers +scenic +libya +anita +strengthen +inscriptions +##cated +lace +sued +judith +riots +##uted +mint +##eta +preparations +midst +dub +challenger +##vich +mock +cf +displaced +wicket +breaths +enables +schmidt +analyst +##lum +ag +highlight +automotive +axe +josef +newark +sufficiently +resembles +50th +##pal +flushed +mum +traits +##ante +commodore +incomplete +warming +titular +ceremonial +ethical +118 +celebrating +eighteenth +cao +lima +medalist +mobility +strips +snakes +##city +miniature +zagreb +barton +escapes +umbrella +automated +doubted +differs +cooled +georgetown +dresden +cooked +fade +wyatt +rna +jacobs +carlton +abundant +stereo +boost +madras +inning +##hia +spur +ip +malayalam +begged +osaka +groan +escaping +charging +dose +vista +##aj +bud +papa +communists +advocates +edged +tri +##cent +resemble +peaking +necklace +fried +montenegro +saxony +goose +glances +stuttgart +curator +recruit +grocery +sympathetic +##tting +##fort +127 +lotus +randolph +ancestor +##rand +succeeding +jupiter +1798 +macedonian +##heads +hiking +1808 +handing +fischer +##itive +garbage +node +##pies +prone +singular +papua +inclined +attractions +italia +pouring +motioned +grandma +garnered +jacksonville +corp +ego +ringing +aluminum +##hausen +ordering +##foot +drawer +traders +synagogue +##play +##kawa +resistant +wandering +fragile +fiona +teased +var +hardcore +soaked +jubilee +decisive +exposition +mercer +poster +valencia +hale +kuwait +1811 +##ises +##wr +##eed +tavern +gamma +122 +johan +##uer +airways +amino +gil +##ury +vocational +domains +torres +##sp +generator +folklore +outcomes +##keeper +canberra +shooter +fl +beams +confrontation +##lling +##gram +feb +aligned +forestry +pipeline +jax +motorway +conception +decay +##tos +coffin +##cott +stalin +1805 +escorted +minded +##nam +sitcom +purchasing +twilight +veronica +additions +passive +tensions +straw +123 +frequencies +1804 +refugee +cultivation +##iate +christie +clary +bulletin +crept +disposal +##rich +##zong +processor +crescent +##rol +bmw +emphasized +whale +nazis +aurora +##eng +dwelling +hauled +sponsors +toledo +mega +ideology +theatres +tessa +cerambycidae +saves +turtle +cone +suspects +kara +rusty +yelling +greeks +mozart +shades +cocked +participant +##tro +shire +spit +freeze +necessity +##cos +inmates +nielsen +councillors +loaned +uncommon +omar +peasants +botanical +offspring +daniels +formations +jokes +1794 +pioneers +sigma +licensing +##sus +wheelchair +polite +1807 +liquor +pratt +trustee +##uta +forewings +balloon +##zz +kilometre +camping +explicit +casually +shawn +foolish +teammates +nm +hassan +carrie +judged +satisfy +vanessa +knives +selective +cnn +flowed +##lice +eclipse +stressed +eliza +mathematician +cease +cultivated +##roy +commissions +browns +##ania +destroyers +sheridan +meadow +##rius +minerals +##cial +downstream +clash +gram +memoirs +ventures +baha +seymour +archie +midlands +edith +fare +flynn +invite +canceled +tiles +stabbed +boulder +incorporate +amended +camden +facial +mollusk +unreleased +descriptions +yoga +grabs +550 +raises +ramp +shiver +##rose +coined +pioneering +tunes +qing +warwick +tops +119 +melanie +giles +##rous +wandered +##inal +annexed +nov +30th +unnamed +##ished +organizational +airplane +normandy +stoke +whistle +blessing +violations +chased +holders +shotgun +##ctic +outlet +reactor +##vik +tires +tearing +shores +fortified +mascot +constituencies +nc +columnist +productive +tibet +##rta +lineage +hooked +oct +tapes +judging +cody +##gger +hansen +kashmir +triggered +##eva +solved +cliffs +##tree +resisted +anatomy +protesters +transparent +implied +##iga +injection +mattress +excluding +##mbo +defenses +helpless +devotion +##elli +growl +liberals +weber +phenomena +atoms +plug +##iff +mortality +apprentice +howe +convincing +aaa +swimmer +barber +leone +promptly +sodium +def +nowadays +arise +##oning +gloucester +corrected +dignity +norm +erie +##ders +elders +evacuated +sylvia +compression +##yar +hartford +pose +backpack +reasoning +accepts +24th +wipe +millimetres +marcel +##oda +dodgers +albion +1790 +overwhelmed +aerospace +oaks +1795 +showcase +acknowledge +recovering +nolan +ashe +hurts +geology +fashioned +disappearance +farewell +swollen +shrug +marquis +wimbledon +124 +rue +1792 +commemorate +reduces +experiencing +inevitable +calcutta +intel +##court +murderer +sticking +fisheries +imagery +bloom +280 +brake +##inus +gustav +hesitation +memorable +po +viral +beans +accidents +tunisia +antenna +spilled +consort +treatments +aye +perimeter +##gard +donation +hostage +migrated +banker +addiction +apex +lil +trout +##ously +conscience +##nova +rams +sands +genome +passionate +troubles +##lets +##set +amid +##ibility +##ret +higgins +exceed +vikings +##vie +payne +##zan +muscular +##ste +defendant +sucking +##wal +ibrahim +fuselage +claudia +vfl +europeans +snails +interval +##garh +preparatory +statewide +tasked +lacrosse +viktor +##lation +angola +##hra +flint +implications +employs +teens +patrons +stall +weekends +barriers +scrambled +nucleus +tehran +jenna +parsons +lifelong +robots +displacement +5000 +##bles +precipitation +##gt +knuckles +clutched +1802 +marrying +ecology +marx +accusations +declare +scars +kolkata +mat +meadows +bermuda +skeleton +finalists +vintage +crawl +coordinate +affects +subjected +orchestral +mistaken +##tc +mirrors +dipped +relied +260 +arches +candle +##nick +incorporating +wildly +fond +basilica +owl +fringe +rituals +whispering +stirred +feud +tertiary +slick +goat +honorable +whereby +skip +ricardo +stripes +parachute +adjoining +submerged +synthesizer +##gren +intend +positively +ninety +phi +beaver +partition +fellows +alexis +prohibition +carlisle +bizarre +fraternity +##bre +doubts +icy +cbc +aquatic +sneak +sonny +combines +airports +crude +supervised +spatial +merge +alfonso +##bic +corrupt +scan +undergo +##ams +disabilities +colombian +comparing +dolphins +perkins +##lish +reprinted +unanimous +bounced +hairs +underworld +midwest +semester +bucket +paperback +miniseries +coventry +demise +##leigh +demonstrations +sensor +rotating +yan +##hler +arrange +soils +##idge +hyderabad +labs +##dr +brakes +grandchildren +##nde +negotiated +rover +ferrari +continuation +directorate +augusta +stevenson +counterpart +gore +##rda +nursery +rican +ave +collectively +broadly +pastoral +repertoire +asserted +discovering +nordic +styled +fiba +cunningham +harley +middlesex +survives +tumor +tempo +zack +aiming +lok +urgent +##rade +##nto +devils +##ement +contractor +turin +##wl +##ool +bliss +repaired +simmons +moan +astronomical +cr +negotiate +lyric +1890s +lara +bred +clad +angus +pbs +##ience +engineered +posed +##lk +hernandez +possessions +elbows +psychiatric +strokes +confluence +electorate +lifts +campuses +lava +alps +##ep +##ution +##date +physicist +woody +##page +##ographic +##itis +juliet +reformation +sparhawk +320 +complement +suppressed +jewel +##½ +floated +##kas +continuity +sadly +##ische +inability +melting +scanning +paula +flour +judaism +safer +vague +##lm +solving +curb +##stown +financially +gable +bees +expired +miserable +cassidy +dominion +1789 +cupped +145 +robbery +facto +amos +warden +resume +tallest +marvin +ing +pounded +usd +declaring +gasoline +##aux +darkened +270 +650 +sophomore +##mere +erection +gossip +televised +risen +dial +##eu +pillars +##link +passages +profound +##tina +arabian +ashton +silicon +nail +##ead +##lated +##wer +##hardt +fleming +firearms +ducked +circuits +blows +waterloo +titans +##lina +atom +fireplace +cheshire +financed +activation +algorithms +##zzi +constituent +catcher +cherokee +partnerships +sexuality +platoon +tragic +vivian +guarded +whiskey +meditation +poetic +##late +##nga +##ake +porto +listeners +dominance +kendra +mona +chandler +factions +22nd +salisbury +attitudes +derivative +##ido +##haus +intake +paced +javier +illustrator +barrels +bias +cockpit +burnett +dreamed +ensuing +##anda +receptors +someday +hawkins +mattered +##lal +slavic +1799 +jesuit +cameroon +wasted +tai +wax +lowering +victorious +freaking +outright +hancock +librarian +sensing +bald +calcium +myers +tablet +announcing +barack +shipyard +pharmaceutical +##uan +greenwich +flush +medley +patches +wolfgang +pt +speeches +acquiring +exams +nikolai +##gg +hayden +kannada +##type +reilly +##pt +waitress +abdomen +devastated +capped +pseudonym +pharmacy +fulfill +paraguay +1796 +clicked +##trom +archipelago +syndicated +##hman +lumber +orgasm +rejection +clifford +lorraine +advent +mafia +rodney +brock +##ght +##used +##elia +cassette +chamberlain +despair +mongolia +sensors +developmental +upstream +##eg +##alis +spanning +165 +trombone +basque +seeded +interred +renewable +rhys +leapt +revision +molecule +##ages +chord +vicious +nord +shivered +23rd +arlington +debts +corpus +sunrise +bays +blackburn +centimetres +##uded +shuddered +gm +strangely +gripping +cartoons +isabelle +orbital +##ppa +seals +proving +##lton +refusal +strengthened +bust +assisting +baghdad +batsman +portrayal +mara +pushes +spears +og +##cock +reside +nathaniel +brennan +1776 +confirmation +caucus +##worthy +markings +yemen +nobles +ku +lazy +viewer +catalan +encompasses +sawyer +##fall +sparked +substances +patents +braves +arranger +evacuation +sergio +persuade +dover +tolerance +penguin +cum +jockey +insufficient +townships +occupying +declining +plural +processed +projection +puppet +flanders +introduces +liability +##yon +gymnastics +antwerp +taipei +hobart +candles +jeep +wes +observers +126 +chaplain +bundle +glorious +##hine +hazel +flung +sol +excavations +dumped +stares +sh +bangalore +triangular +icelandic +intervals +expressing +turbine +##vers +songwriting +crafts +##igo +jasmine +ditch +rite +##ways +entertaining +comply +sorrow +wrestlers +basel +emirates +marian +rivera +helpful +##some +caution +downward +networking +##atory +##tered +darted +genocide +emergence +replies +specializing +spokesman +convenient +unlocked +fading +augustine +concentrations +resemblance +elijah +investigator +andhra +##uda +promotes +bean +##rrell +fleeing +wan +simone +announcer +##ame +##bby +lydia +weaver +132 +residency +modification +##fest +stretches +##ast +alternatively +nat +lowe +lacks +##ented +pam +tile +concealed +inferior +abdullah +residences +tissues +vengeance +##ided +moisture +peculiar +groove +zip +bologna +jennings +ninja +oversaw +zombies +pumping +batch +livingston +emerald +installations +1797 +peel +nitrogen +rama +##fying +##star +schooling +strands +responding +werner +##ost +lime +casa +accurately +targeting +##rod +underway +##uru +hemisphere +lester +##yard +occupies +2d +griffith +angrily +reorganized +##owing +courtney +deposited +##dd +##30 +estadio +##ifies +dunn +exiled +##ying +checks +##combe +##о +##fly +successes +unexpectedly +blu +assessed +##flower +##ه +observing +sacked +spiders +kn +##tail +mu +nodes +prosperity +audrey +divisional +155 +broncos +tangled +adjust +feeds +erosion +paolo +surf +directory +snatched +humid +admiralty +screwed +gt +reddish +##nese +modules +trench +lamps +bind +leah +bucks +competes +##nz +##form +transcription +##uc +isles +violently +clutching +pga +cyclist +inflation +flats +ragged +unnecessary +##hian +stubborn +coordinated +harriet +baba +disqualified +330 +insect +wolfe +##fies +reinforcements +rocked +duel +winked +embraced +bricks +##raj +hiatus +defeats +pending +brightly +jealousy +##xton +##hm +##uki +lena +gdp +colorful +##dley +stein +kidney +##shu +underwear +wanderers +##haw +##icus +guardians +m³ +roared +habits +##wise +permits +gp +uranium +punished +disguise +bundesliga +elise +dundee +erotic +partisan +pi +collectors +float +individually +rendering +behavioral +bucharest +ser +hare +valerie +corporal +nutrition +proportional +##isa +immense +##kis +pavement +##zie +##eld +sutherland +crouched +1775 +##lp +suzuki +trades +endurance +operas +crosby +prayed +priory +rory +socially +##urn +gujarat +##pu +walton +cube +pasha +privilege +lennon +floods +thorne +waterfall +nipple +scouting +approve +##lov +minorities +voter +dwight +extensions +assure +ballroom +slap +dripping +privileges +rejoined +confessed +demonstrating +patriotic +yell +investor +##uth +pagan +slumped +squares +##cle +##kins +confront +bert +embarrassment +##aid +aston +urging +sweater +starr +yuri +brains +williamson +commuter +mortar +structured +selfish +exports +##jon +cds +##him +unfinished +##rre +mortgage +destinations +##nagar +canoe +solitary +buchanan +delays +magistrate +fk +##pling +motivation +##lier +##vier +recruiting +assess +##mouth +malik +antique +1791 +pius +rahman +reich +tub +zhou +smashed +airs +galway +xii +conditioning +honduras +discharged +dexter +##pf +lionel +129 +debates +lemon +tiffany +volunteered +dom +dioxide +procession +devi +sic +tremendous +advertisements +colts +transferring +verdict +hanover +decommissioned +utter +relate +pac +racism +##top +beacon +limp +similarity +terra +occurrence +ant +##how +becky +capt +updates +armament +richie +pal +##graph +halloween +mayo +##ssen +##bone +cara +serena +fcc +dolls +obligations +##dling +violated +lafayette +jakarta +exploitation +##ime +infamous +iconic +##lah +##park +kitty +moody +reginald +dread +spill +crystals +olivier +modeled +bluff +equilibrium +separating +notices +ordnance +extinction +onset +cosmic +attachment +sammy +expose +privy +anchored +##bil +abbott +admits +bending +baritone +emmanuel +policeman +vaughan +winged +climax +dresses +denny +polytechnic +mohamed +burmese +authentic +nikki +genetics +grandparents +homestead +gaza +postponed +metacritic +una +##sby +##bat +unstable +dissertation +##rial +##cian +curls +obscure +uncovered +bronx +praying +disappearing +##hoe +prehistoric +coke +turret +mutations +nonprofit +pits +monaco +##ي +##usion +prominently +dispatched +podium +##mir +uci +##uation +133 +fortifications +birthplace +kendall +##lby +##oll +preacher +rack +goodman +##rman +persistent +##ott +countless +jaime +recorder +lexington +persecution +jumps +renewal +wagons +##11 +crushing +##holder +decorations +##lake +abundance +wrath +laundry +£1 +garde +##rp +jeanne +beetles +peasant +##sl +splitting +caste +sergei +##rer +##ema +scripts +##ively +rub +satellites +##vor +inscribed +verlag +scrapped +gale +packages +chick +potato +slogan +kathleen +arabs +##culture +counterparts +reminiscent +choral +##tead +rand +retains +bushes +dane +accomplish +courtesy +closes +##oth +slaughter +hague +krakow +lawson +tailed +elias +ginger +##ttes +canopy +betrayal +rebuilding +turf +##hof +frowning +allegiance +brigades +kicks +rebuild +polls +alias +nationalism +td +rowan +audition +bowie +fortunately +recognizes +harp +dillon +horrified +##oro +renault +##tics +ropes +##α +presumed +rewarded +infrared +wiping +accelerated +illustration +##rid +presses +practitioners +badminton +##iard +detained +##tera +recognizing +relates +misery +##sies +##tly +reproduction +piercing +potatoes +thornton +esther +manners +hbo +##aan +ours +bullshit +ernie +perennial +sensitivity +illuminated +rupert +##jin +##iss +##ear +rfc +nassau +##dock +staggered +socialism +##haven +appointments +nonsense +prestige +sharma +haul +##tical +solidarity +gps +##ook +##rata +igor +pedestrian +##uit +baxter +tenants +wires +medication +unlimited +guiding +impacts +diabetes +##rama +sasha +pas +clive +extraction +131 +continually +constraints +##bilities +sonata +hunted +sixteenth +chu +planting +quote +mayer +pretended +abs +spat +##hua +ceramic +##cci +curtains +pigs +pitching +##dad +latvian +sore +dayton +##sted +##qi +patrols +slice +playground +##nted +shone +stool +apparatus +inadequate +mates +treason +##ija +desires +##liga +##croft +somalia +laurent +mir +leonardo +oracle +grape +obliged +chevrolet +thirteenth +stunning +enthusiastic +##ede +accounted +concludes +currents +basil +##kovic +drought +##rica +mai +##aire +shove +posting +##shed +pilgrimage +humorous +packing +fry +pencil +wines +smells +144 +marilyn +aching +newest +clung +bon +neighbours +sanctioned +##pie +mug +##stock +drowning +##mma +hydraulic +##vil +hiring +reminder +lilly +investigators +##ncies +sour +##eous +compulsory +packet +##rion +##graphic +##elle +cannes +##inate +depressed +##rit +heroic +importantly +theresa +##tled +conway +saturn +marginal +rae +##xia +corresponds +royce +pact +jasper +explosives +packaging +aluminium +##ttered +denotes +rhythmic +spans +assignments +hereditary +outlined +originating +sundays +lad +reissued +greeting +beatrice +##dic +pillar +marcos +plots +handbook +alcoholic +judiciary +avant +slides +extract +masculine +blur +##eum +##force +homage +trembled +owens +hymn +trey +omega +signaling +socks +accumulated +reacted +attic +theo +lining +angie +distraction +primera +talbot +##key +1200 +ti +creativity +billed +##hey +deacon +eduardo +identifies +proposition +dizzy +gunner +hogan +##yam +##pping +##hol +ja +##chan +jensen +reconstructed +##berger +clearance +darius +##nier +abe +harlem +plea +dei +circled +emotionally +notation +fascist +neville +exceeded +upwards +viable +ducks +##fo +workforce +racer +limiting +shri +##lson +possesses +1600 +kerr +moths +devastating +laden +disturbing +locking +##cture +gal +fearing +accreditation +flavor +aide +1870s +mountainous +##baum +melt +##ures +motel +texture +servers +soda +##mb +herd +##nium +erect +puzzled +hum +peggy +examinations +gould +testified +geoff +ren +devised +sacks +##law +denial +posters +grunted +cesar +tutor +ec +gerry +offerings +byrne +falcons +combinations +ct +incoming +pardon +rocking +26th +avengers +flared +mankind +seller +uttar +loch +nadia +stroking +exposing +##hd +fertile +ancestral +instituted +##has +noises +prophecy +taxation +eminent +vivid +pol +##bol +dart +indirect +multimedia +notebook +upside +displaying +adrenaline +referenced +geometric +##iving +progression +##ddy +blunt +announce +##far +implementing +##lav +aggression +liaison +cooler +cares +headache +plantations +gorge +dots +impulse +thickness +ashamed +averaging +kathy +obligation +precursor +137 +fowler +symmetry +thee +225 +hears +##rai +undergoing +ads +butcher +bowler +##lip +cigarettes +subscription +goodness +##ically +browne +##hos +##tech +kyoto +donor +##erty +damaging +friction +drifting +expeditions +hardened +prostitution +152 +fauna +blankets +claw +tossing +snarled +butterflies +recruits +investigative +coated +healed +138 +communal +hai +xiii +academics +boone +psychologist +restless +lahore +stephens +mba +brendan +foreigners +printer +##pc +ached +explode +27th +deed +scratched +dared +##pole +cardiac +1780 +okinawa +proto +commando +compelled +oddly +electrons +##base +replica +thanksgiving +##rist +sheila +deliberate +stafford +tidal +representations +hercules +ou +##path +##iated +kidnapping +lenses +##tling +deficit +samoa +mouths +consuming +computational +maze +granting +smirk +razor +fixture +ideals +inviting +aiden +nominal +##vs +issuing +julio +pitt +ramsey +docks +##oss +exhaust +##owed +bavarian +draped +anterior +mating +ethiopian +explores +noticing +##nton +discarded +convenience +hoffman +endowment +beasts +cartridge +mormon +paternal +probe +sleeves +interfere +lump +deadline +##rail +jenks +bulldogs +scrap +alternating +justified +reproductive +nam +seize +descending +secretariat +kirby +coupe +grouped +smash +panther +sedan +tapping +##18 +lola +cheer +germanic +unfortunate +##eter +unrelated +##fan +subordinate +##sdale +suzanne +advertisement +##ility +horsepower +##lda +cautiously +discourse +luigi +##mans +##fields +noun +prevalent +mao +schneider +everett +surround +governorate +kira +##avia +westward +##take +misty +rails +sustainability +134 +unused +##rating +packs +toast +unwilling +regulate +thy +suffrage +nile +awe +assam +definitions +travelers +affordable +##rb +conferred +sells +undefeated +beneficial +torso +basal +repeating +remixes +##pass +bahrain +cables +fang +##itated +excavated +numbering +statutory +##rey +deluxe +##lian +forested +ramirez +derbyshire +zeus +slamming +transfers +astronomer +banana +lottery +berg +histories +bamboo +##uchi +resurrection +posterior +bowls +vaguely +##thi +thou +preserving +tensed +offence +##inas +meyrick +callum +ridden +watt +langdon +tying +lowland +snorted +daring +truman +##hale +##girl +aura +overly +filing +weighing +goa +infections +philanthropist +saunders +eponymous +##owski +latitude +perspectives +reviewing +mets +commandant +radial +##kha +flashlight +reliability +koch +vowels +amazed +ada +elaine +supper +##rth +##encies +predator +debated +soviets +cola +##boards +##nah +compartment +crooked +arbitrary +fourteenth +##ctive +havana +majors +steelers +clips +profitable +ambush +exited +packers +##tile +nude +cracks +fungi +##е +limb +trousers +josie +shelby +tens +frederic +##ος +definite +smoothly +constellation +insult +baton +discs +lingering +##nco +conclusions +lent +staging +becker +grandpa +shaky +##tron +einstein +obstacles +sk +adverse +elle +economically +##moto +mccartney +thor +dismissal +motions +readings +nostrils +treatise +##pace +squeezing +evidently +prolonged +1783 +venezuelan +je +marguerite +beirut +takeover +shareholders +##vent +denise +digit +airplay +norse +##bbling +imaginary +pills +hubert +blaze +vacated +eliminating +##ello +vine +mansfield +##tty +retrospective +barrow +borne +clutch +bail +forensic +weaving +##nett +##witz +desktop +citadel +promotions +worrying +dorset +ieee +subdivided +##iating +manned +expeditionary +pickup +synod +chuckle +185 +barney +##rz +##ffin +functionality +karachi +litigation +meanings +uc +lick +turbo +anders +##ffed +execute +curl +oppose +ankles +typhoon +##د +##ache +##asia +linguistics +compassion +pressures +grazing +perfection +##iting +immunity +monopoly +muddy +backgrounds +136 +namibia +francesca +monitors +attracting +stunt +tuition +##ии +vegetable +##mates +##quent +mgm +jen +complexes +forts +##ond +cellar +bites +seventeenth +royals +flemish +failures +mast +charities +##cular +peruvian +capitals +macmillan +ipswich +outward +frigate +postgraduate +folds +employing +##ouse +concurrently +fiery +##tai +contingent +nightmares +monumental +nicaragua +##kowski +lizard +mal +fielding +gig +reject +##pad +harding +##ipe +coastline +##cin +##nos +beethoven +humphrey +innovations +##tam +##nge +norris +doris +solicitor +huang +obey +141 +##lc +niagara +##tton +shelves +aug +bourbon +curry +nightclub +specifications +hilton +##ndo +centennial +dispersed +worm +neglected +briggs +sm +font +kuala +uneasy +plc +##nstein +##bound +##aking +##burgh +awaiting +pronunciation +##bbed +##quest +eh +optimal +zhu +raped +greens +presided +brenda +worries +##life +venetian +marxist +turnout +##lius +refined +braced +sins +grasped +sunderland +nickel +speculated +lowell +cyrillic +communism +fundraising +resembling +colonists +mutant +freddie +usc +##mos +gratitude +##run +mural +##lous +chemist +wi +reminds +28th +steals +tess +pietro +##ingen +promoter +ri +microphone +honoured +rai +sant +##qui +feather +##nson +burlington +kurdish +terrorists +deborah +sickness +##wed +##eet +hazard +irritated +desperation +veil +clarity +##rik +jewels +xv +##gged +##ows +##cup +berkshire +unfair +mysteries +orchid +winced +exhaustion +renovations +stranded +obe +infinity +##nies +adapt +redevelopment +thanked +registry +olga +domingo +noir +tudor +ole +##atus +commenting +behaviors +##ais +crisp +pauline +probable +stirling +wigan +##bian +paralympics +panting +surpassed +##rew +luca +barred +pony +famed +##sters +cassandra +waiter +carolyn +exported +##orted +andres +destructive +deeds +jonah +castles +vacancy +suv +##glass +1788 +orchard +yep +famine +belarusian +sprang +##forth +skinny +##mis +administrators +rotterdam +zambia +zhao +boiler +discoveries +##ride +##physics +lucius +disappointing +outreach +spoon +##frame +qualifications +unanimously +enjoys +regency +##iidae +stade +realism +veterinary +rodgers +dump +alain +chestnut +castile +censorship +rumble +gibbs +##itor +communion +reggae +inactivated +logs +loads +##houses +homosexual +##iano +ale +informs +##cas +phrases +plaster +linebacker +ambrose +kaiser +fascinated +850 +limerick +recruitment +forge +mastered +##nding +leinster +rooted +threaten +##strom +borneo +##hes +suggestions +scholarships +propeller +documentaries +patronage +coats +constructing +invest +neurons +comet +entirety +shouts +identities +annoying +unchanged +wary +##antly +##ogy +neat +oversight +##kos +phillies +replay +constance +##kka +incarnation +humble +skies +minus +##acy +smithsonian +##chel +guerrilla +jar +cadets +##plate +surplus +audit +##aru +cracking +joanna +louisa +pacing +##lights +intentionally +##iri +diner +nwa +imprint +australians +tong +unprecedented +bunker +naive +specialists +ark +nichols +railing +leaked +pedal +##uka +shrub +longing +roofs +v8 +captains +neural +tuned +##ntal +##jet +emission +medina +frantic +codex +definitive +sid +abolition +intensified +stocks +enrique +sustain +genoa +oxide +##written +clues +cha +##gers +tributaries +fragment +venom +##rity +##ente +##sca +muffled +vain +sire +laos +##ingly +##hana +hastily +snapping +surfaced +sentiment +motive +##oft +contests +approximate +mesa +luckily +dinosaur +exchanges +propelled +accord +bourne +relieve +tow +masks +offended +##ues +cynthia +##mmer +rains +bartender +zinc +reviewers +lois +##sai +legged +arrogant +rafe +rosie +comprise +handicap +blockade +inlet +lagoon +copied +drilling +shelley +petals +##inian +mandarin +obsolete +##inated +onward +arguably +productivity +cindy +praising +seldom +busch +discusses +raleigh +shortage +ranged +stanton +encouragement +firstly +conceded +overs +temporal +##uke +cbe +##bos +woo +certainty +pumps +##pton +stalked +##uli +lizzie +periodic +thieves +weaker +##night +gases +shoving +chooses +wc +##chemical +prompting +weights +##kill +robust +flanked +sticky +hu +tuberculosis +##eb +##eal +christchurch +resembled +wallet +reese +inappropriate +pictured +distract +fixing +fiddle +giggled +burger +heirs +hairy +mechanic +torque +apache +obsessed +chiefly +cheng +logging +##tag +extracted +meaningful +numb +##vsky +gloucestershire +reminding +##bay +unite +##lit +breeds +diminished +clown +glove +1860s +##ن +##ug +archibald +focal +freelance +sliced +depiction +##yk +organism +switches +sights +stray +crawling +##ril +lever +leningrad +interpretations +loops +anytime +reel +alicia +delighted +##ech +inhaled +xiv +suitcase +bernie +vega +licenses +northampton +exclusion +induction +monasteries +racecourse +homosexuality +##right +##sfield +##rky +dimitri +michele +alternatives +ions +commentators +genuinely +objected +pork +hospitality +fencing +stephan +warships +peripheral +wit +drunken +wrinkled +quentin +spends +departing +chung +numerical +spokesperson +##zone +johannesburg +caliber +killers +##udge +assumes +neatly +demographic +abigail +bloc +##vel +mounting +##lain +bentley +slightest +xu +recipients +##jk +merlin +##writer +seniors +prisons +blinking +hindwings +flickered +kappa +##hel +80s +strengthening +appealing +brewing +gypsy +mali +lashes +hulk +unpleasant +harassment +bio +treaties +predict +instrumentation +pulp +troupe +boiling +mantle +##ffe +ins +##vn +dividing +handles +verbs +##onal +coconut +senegal +340 +thorough +gum +momentarily +##sto +cocaine +panicked +destined +##turing +teatro +denying +weary +captained +mans +##hawks +##code +wakefield +bollywood +thankfully +##16 +cyril +##wu +amendments +##bahn +consultation +stud +reflections +kindness +1787 +internally +##ovo +tex +mosaic +distribute +paddy +seeming +143 +##hic +piers +##15 +##mura +##verse +popularly +winger +kang +sentinel +mccoy +##anza +covenant +##bag +verge +fireworks +suppress +thrilled +dominate +##jar +swansea +##60 +142 +reconciliation +##ndi +stiffened +cue +dorian +##uf +damascus +amor +ida +foremost +##aga +porsche +unseen +dir +##had +##azi +stony +lexi +melodies +##nko +angular +integer +podcast +ants +inherent +jaws +justify +persona +##olved +josephine +##nr +##ressed +customary +flashes +gala +cyrus +glaring +backyard +ariel +physiology +greenland +html +stir +avon +atletico +finch +methodology +ked +##lent +mas +catholicism +townsend +branding +quincy +fits +containers +1777 +ashore +aragon +##19 +forearm +poisoning +##sd +adopting +conquer +grinding +amnesty +keller +finances +evaluate +forged +lankan +instincts +##uto +guam +bosnian +photographed +workplace +desirable +protector +##dog +allocation +intently +encourages +willy +##sten +bodyguard +electro +brighter +##ν +bihar +##chev +lasts +opener +amphibious +sal +verde +arte +##cope +captivity +vocabulary +yields +##tted +agreeing +desmond +pioneered +##chus +strap +campaigned +railroads +##ович +emblem +##dre +stormed +501 +##ulous +marijuana +northumberland +##gn +##nath +bowen +landmarks +beaumont +##qua +danube +##bler +attorneys +th +ge +flyers +critique +villains +cass +mutation +acc +##0s +colombo +mckay +motif +sampling +concluding +syndicate +##rell +neon +stables +ds +warnings +clint +mourning +wilkinson +##tated +merrill +leopard +evenings +exhaled +emil +sonia +ezra +discrete +stove +farrell +fifteenth +prescribed +superhero +##rier +worms +helm +wren +##duction +##hc +expo +##rator +hq +unfamiliar +antony +prevents +acceleration +fiercely +mari +painfully +calculations +cheaper +ign +clifton +irvine +davenport +mozambique +##np +pierced +##evich +wonders +##wig +##cate +##iling +crusade +ware +##uel +enzymes +reasonably +mls +##coe +mater +ambition +bunny +eliot +kernel +##fin +asphalt +headmaster +torah +aden +lush +pins +waived +##care +##yas +joao +substrate +enforce +##grad +##ules +alvarez +selections +epidemic +tempted +##bit +bremen +translates +ensured +waterfront +29th +forrest +manny +malone +kramer +reigning +cookies +simpler +absorption +205 +engraved +##ffy +evaluated +1778 +haze +146 +comforting +crossover +##abe +thorn +##rift +##imo +##pop +suppression +fatigue +cutter +##tr +201 +wurttemberg +##orf +enforced +hovering +proprietary +gb +samurai +syllable +ascent +lacey +tick +lars +tractor +merchandise +rep +bouncing +defendants +##yre +huntington +##ground +##oko +standardized +##hor +##hima +assassinated +nu +predecessors +rainy +liar +assurance +lyrical +##uga +secondly +flattened +ios +parameter +undercover +##mity +bordeaux +punish +ridges +markers +exodus +inactive +hesitate +debbie +nyc +pledge +savoy +nagar +offset +organist +##tium +hesse +marin +converting +##iver +diagram +propulsion +pu +validity +reverted +supportive +##dc +ministries +clans +responds +proclamation +##inae +##ø +##rea +ein +pleading +patriot +sf +birch +islanders +strauss +hates +##dh +brandenburg +concession +rd +##ob +1900s +killings +textbook +antiquity +cinematography +wharf +embarrassing +setup +creed +farmland +inequality +centred +signatures +fallon +370 +##ingham +##uts +ceylon +gazing +directive +laurie +##tern +globally +##uated +##dent +allah +excavation +threads +##cross +148 +frantically +icc +utilize +determines +respiratory +thoughtful +receptions +##dicate +merging +chandra +seine +147 +builders +builds +diagnostic +dev +visibility +goddamn +analyses +dhaka +cho +proves +chancel +concurrent +curiously +canadians +pumped +restoring +1850s +turtles +jaguar +sinister +spinal +traction +declan +vows +1784 +glowed +capitalism +swirling +install +universidad +##lder +##oat +soloist +##genic +##oor +coincidence +beginnings +nissan +dip +resorts +caucasus +combustion +infectious +##eno +pigeon +serpent +##itating +conclude +masked +salad +jew +##gr +surreal +toni +##wc +harmonica +151 +##gins +##etic +##coat +fishermen +intending +bravery +##wave +klaus +titan +wembley +taiwanese +ransom +40th +incorrect +hussein +eyelids +jp +cooke +dramas +utilities +##etta +##print +eisenhower +principally +granada +lana +##rak +openings +concord +##bl +bethany +connie +morality +sega +##mons +##nard +earnings +##kara +##cine +wii +communes +##rel +coma +composing +softened +severed +grapes +##17 +nguyen +analyzed +warlord +hubbard +heavenly +behave +slovenian +##hit +##ony +hailed +filmmakers +trance +caldwell +skye +unrest +coward +likelihood +##aging +bern +sci +taliban +honolulu +propose +##wang +1700 +browser +imagining +cobra +contributes +dukes +instinctively +conan +violinist +##ores +accessories +gradual +##amp +quotes +sioux +##dating +undertake +intercepted +sparkling +compressed +139 +fungus +tombs +haley +imposing +rests +degradation +lincolnshire +retailers +wetlands +tulsa +distributor +dungeon +nun +greenhouse +convey +atlantis +aft +exits +oman +dresser +lyons +##sti +joking +eddy +judgement +omitted +digits +##cts +##game +juniors +##rae +cents +stricken +une +##ngo +wizards +weir +breton +nan +technician +fibers +liking +royalty +##cca +154 +persia +terribly +magician +##rable +##unt +vance +cafeteria +booker +camille +warmer +##static +consume +cavern +gaps +compass +contemporaries +foyer +soothing +graveyard +maj +plunged +blush +##wear +cascade +demonstrates +ordinance +##nov +boyle +##lana +rockefeller +shaken +banjo +izzy +##ense +breathless +vines +##32 +##eman +alterations +chromosome +dwellings +feudal +mole +153 +catalonia +relics +tenant +mandated +##fm +fridge +hats +honesty +patented +raul +heap +cruisers +accusing +enlightenment +infants +wherein +chatham +contractors +zen +affinity +hc +osborne +piston +156 +traps +maturity +##rana +lagos +##zal +peering +##nay +attendant +dealers +protocols +subset +prospects +biographical +##cre +artery +##zers +insignia +nuns +endured +##eration +recommend +schwartz +serbs +berger +cromwell +crossroads +##ctor +enduring +clasped +grounded +##bine +marseille +twitched +abel +choke +https +catalyst +moldova +italians +##tist +disastrous +wee +##oured +##nti +wwf +nope +##piration +##asa +expresses +thumbs +167 +##nza +coca +1781 +cheating +##ption +skipped +sensory +heidelberg +spies +satan +dangers +semifinal +202 +bohemia +whitish +confusing +shipbuilding +relies +surgeons +landings +ravi +baku +moor +suffix +alejandro +##yana +litre +upheld +##unk +rajasthan +##rek +coaster +insists +posture +scenarios +etienne +favoured +appoint +transgender +elephants +poked +greenwood +defences +fulfilled +militant +somali +1758 +chalk +potent +##ucci +migrants +wink +assistants +nos +restriction +activism +niger +##ario +colon +shaun +##sat +daphne +##erated +swam +congregations +reprise +considerations +magnet +playable +xvi +##р +overthrow +tobias +knob +chavez +coding +##mers +propped +katrina +orient +newcomer +##suke +temperate +##pool +farmhouse +interrogation +##vd +committing +##vert +forthcoming +strawberry +joaquin +macau +ponds +shocking +siberia +##cellular +chant +contributors +##nant +##ologists +sped +absorb +hail +1782 +spared +##hore +barbados +karate +opus +originates +saul +##xie +evergreen +leaped +##rock +correlation +exaggerated +weekday +unification +bump +tracing +brig +afb +pathways +utilizing +##ners +mod +mb +disturbance +kneeling +##stad +##guchi +100th +pune +##thy +decreasing +168 +manipulation +miriam +academia +ecosystem +occupational +rbi +##lem +rift +##14 +rotary +stacked +incorporation +awakening +generators +guerrero +racist +##omy +cyber +derivatives +culminated +allie +annals +panzer +sainte +wikipedia +pops +zu +austro +##vate +algerian +politely +nicholson +mornings +educate +tastes +thrill +dartmouth +##gating +db +##jee +regan +differing +concentrating +choreography +divinity +##media +pledged +alexandre +routing +gregor +madeline +##idal +apocalypse +##hora +gunfire +culminating +elves +fined +liang +lam +programmed +tar +guessing +transparency +gabrielle +##gna +cancellation +flexibility +##lining +accession +shea +stronghold +nets +specializes +##rgan +abused +hasan +sgt +ling +exceeding +##₄ +admiration +supermarket +##ark +photographers +specialised +tilt +resonance +hmm +perfume +380 +sami +threatens +garland +botany +guarding +boiled +greet +puppy +russo +supplier +wilmington +vibrant +vijay +##bius +paralympic +grumbled +paige +faa +licking +margins +hurricanes +##gong +fest +grenade +ripping +##uz +counseling +weigh +##sian +needles +wiltshire +edison +costly +##not +fulton +tramway +redesigned +staffordshire +cache +gasping +watkins +sleepy +candidacy +##group +monkeys +timeline +throbbing +##bid +##sos +berth +uzbekistan +vanderbilt +bothering +overturned +ballots +gem +##iger +sunglasses +subscribers +hooker +compelling +ang +exceptionally +saloon +stab +##rdi +carla +terrifying +rom +##vision +coil +##oids +satisfying +vendors +31st +mackay +deities +overlooked +ambient +bahamas +felipe +olympia +whirled +botanist +advertised +tugging +##dden +disciples +morales +unionist +rites +foley +morse +motives +creepy +##₀ +soo +##sz +bargain +highness +frightening +turnpike +tory +reorganization +##cer +depict +biographer +##walk +unopposed +manifesto +##gles +institut +emile +accidental +kapoor +##dam +kilkenny +cortex +lively +##13 +romanesque +jain +shan +cannons +##ood +##ske +petrol +echoing +amalgamated +disappears +cautious +proposes +sanctions +trenton +##ر +flotilla +aus +contempt +tor +canary +cote +theirs +##hun +conceptual +deleted +fascinating +paso +blazing +elf +honourable +hutchinson +##eiro +##outh +##zin +surveyor +tee +amidst +wooded +reissue +intro +##ono +cobb +shelters +newsletter +hanson +brace +encoding +confiscated +dem +caravan +marino +scroll +melodic +cows +imam +##adi +##aneous +northward +searches +biodiversity +cora +310 +roaring +##bers +connell +theologian +halo +compose +pathetic +unmarried +dynamo +##oot +az +calculation +toulouse +deserves +humour +nr +forgiveness +tam +undergone +martyr +pamela +myths +whore +counselor +hicks +290 +heavens +battleship +electromagnetic +##bbs +stellar +establishments +presley +hopped +##chin +temptation +90s +wills +nas +##yuan +nhs +##nya +seminars +##yev +adaptations +gong +asher +lex +indicator +sikh +tobago +cites +goin +##yte +satirical +##gies +characterised +correspond +bubbles +lure +participates +##vid +eruption +skate +therapeutic +1785 +canals +wholesale +defaulted +sac +460 +petit +##zzled +virgil +leak +ravens +256 +portraying +##yx +ghetto +creators +dams +portray +vicente +##rington +fae +namesake +bounty +##arium +joachim +##ota +##iser +aforementioned +axle +snout +depended +dismantled +reuben +480 +##ibly +gallagher +##lau +##pd +earnest +##ieu +##iary +inflicted +objections +##llar +asa +gritted +##athy +jericho +##sea +##was +flick +underside +ceramics +undead +substituted +195 +eastward +undoubtedly +wheeled +chimney +##iche +guinness +cb +##ager +siding +##bell +traitor +baptiste +disguised +inauguration +149 +tipperary +choreographer +perched +warmed +stationary +eco +##ike +##ntes +bacterial +##aurus +flores +phosphate +##core +attacker +invaders +alvin +intersects +a1 +indirectly +immigrated +businessmen +cornelius +valves +narrated +pill +sober +ul +nationale +monastic +applicants +scenery +##jack +161 +motifs +constitutes +cpu +##osh +jurisdictions +sd +tuning +irritation +woven +##uddin +fertility +gao +##erie +antagonist +impatient +glacial +hides +boarded +denominations +interception +##jas +cookie +nicola +##tee +algebraic +marquess +bahn +parole +buyers +bait +turbines +paperwork +bestowed +natasha +renee +oceans +purchases +157 +vaccine +215 +##tock +fixtures +playhouse +integrate +jai +oswald +intellectuals +##cky +booked +nests +mortimer +##isi +obsession +sept +##gler +##sum +440 +scrutiny +simultaneous +squinted +##shin +collects +oven +shankar +penned +remarkably +##я +slips +luggage +spectral +1786 +collaborations +louie +consolidation +##ailed +##ivating +420 +hoover +blackpool +harness +ignition +vest +tails +belmont +mongol +skinner +##nae +visually +mage +derry +##tism +##unce +stevie +transitional +##rdy +redskins +drying +prep +prospective +##21 +annoyance +oversee +##loaded +fills +##books +##iki +announces +fda +scowled +respects +prasad +mystic +tucson +##vale +revue +springer +bankrupt +1772 +aristotle +salvatore +habsburg +##geny +dal +natal +nut +pod +chewing +darts +moroccan +walkover +rosario +lenin +punjabi +##ße +grossed +scattering +wired +invasive +hui +polynomial +corridors +wakes +gina +portrays +##cratic +arid +retreating +erich +irwin +sniper +##dha +linen +lindsey +maneuver +butch +shutting +socio +bounce +commemorative +postseason +jeremiah +pines +275 +mystical +beads +bp +abbas +furnace +bidding +consulted +assaulted +empirical +rubble +enclosure +sob +weakly +cancel +polly +yielded +##emann +curly +prediction +battered +70s +vhs +jacqueline +render +sails +barked +detailing +grayson +riga +sloane +raging +##yah +herbs +bravo +##athlon +alloy +giggle +imminent +suffers +assumptions +waltz +##itate +accomplishments +##ited +bathing +remixed +deception +prefix +##emia +deepest +##tier +##eis +balkan +frogs +##rong +slab +##pate +philosophers +peterborough +grains +imports +dickinson +rwanda +##atics +1774 +dirk +lan +tablets +##rove +clone +##rice +caretaker +hostilities +mclean +##gre +regimental +treasures +norms +impose +tsar +tango +diplomacy +variously +complain +192 +recognise +arrests +1779 +celestial +pulitzer +##dus +bing +libretto +##moor +adele +splash +##rite +expectation +lds +confronts +##izer +spontaneous +harmful +wedge +entrepreneurs +buyer +##ope +bilingual +translate +rugged +conner +circulated +uae +eaton +##gra +##zzle +lingered +lockheed +vishnu +reelection +alonso +##oom +joints +yankee +headline +cooperate +heinz +laureate +invading +##sford +echoes +scandinavian +##dham +hugging +vitamin +salute +micah +hind +trader +##sper +radioactive +##ndra +militants +poisoned +ratified +remark +campeonato +deprived +wander +prop +##dong +outlook +##tani +##rix +##eye +chiang +darcy +##oping +mandolin +spice +statesman +babylon +182 +walled +forgetting +afro +##cap +158 +giorgio +buffer +##polis +planetary +##gis +overlap +terminals +kinda +centenary +##bir +arising +manipulate +elm +ke +1770 +ak +##tad +chrysler +mapped +moose +pomeranian +quad +macarthur +assemblies +shoreline +recalls +stratford +##rted +noticeable +##evic +imp +##rita +##sque +accustomed +supplying +tents +disgusted +vogue +sipped +filters +khz +reno +selecting +luftwaffe +mcmahon +tyne +masterpiece +carriages +collided +dunes +exercised +flare +remembers +muzzle +##mobile +heck +##rson +burgess +lunged +middleton +boycott +bilateral +##sity +hazardous +lumpur +multiplayer +spotlight +jackets +goldman +liege +porcelain +rag +waterford +benz +attracts +hopeful +battling +ottomans +kensington +baked +hymns +cheyenne +lattice +levine +borrow +polymer +clashes +michaels +monitored +commitments +denounced +##25 +##von +cavity +##oney +hobby +akin +##holders +futures +intricate +cornish +patty +##oned +illegally +dolphin +##lag +barlow +yellowish +maddie +apologized +luton +plagued +##puram +nana +##rds +sway +fanny +łodz +##rino +psi +suspicions +hanged +##eding +initiate +charlton +##por +nak +competent +235 +analytical +annex +wardrobe +reservations +##rma +sect +162 +fairfax +hedge +piled +buckingham +uneven +bauer +simplicity +snyder +interpret +accountability +donors +moderately +byrd +continents +##cite +##max +disciple +hr +jamaican +ping +nominees +##uss +mongolian +diver +attackers +eagerly +ideological +pillows +miracles +apartheid +revolver +sulfur +clinics +moran +163 +##enko +ile +katy +rhetoric +##icated +chronology +recycling +##hrer +elongated +mughal +pascal +profiles +vibration +databases +domination +##fare +##rant +matthias +digest +rehearsal +polling +weiss +initiation +reeves +clinging +flourished +impress +ngo +##hoff +##ume +buckley +symposium +rhythms +weed +emphasize +transforming +##taking +##gence +##yman +accountant +analyze +flicker +foil +priesthood +voluntarily +decreases +##80 +##hya +slater +sv +charting +mcgill +##lde +moreno +##iu +besieged +zur +robes +##phic +admitting +api +deported +turmoil +peyton +earthquakes +##ares +nationalists +beau +clair +brethren +interrupt +welch +curated +galerie +requesting +164 +##ested +impending +steward +viper +##vina +complaining +beautifully +brandy +foam +nl +1660 +##cake +alessandro +punches +laced +explanations +##lim +attribute +clit +reggie +discomfort +##cards +smoothed +whales +##cene +adler +countered +duffy +disciplinary +widening +recipe +reliance +conducts +goats +gradient +preaching +##shaw +matilda +quasi +striped +meridian +cannabis +cordoba +certificates +##agh +##tering +graffiti +hangs +pilgrims +repeats +##ych +revive +urine +etat +##hawk +fueled +belts +fuzzy +susceptible +##hang +mauritius +salle +sincere +beers +hooks +##cki +arbitration +entrusted +advise +sniffed +seminar +junk +donnell +processors +principality +strapped +celia +mendoza +everton +fortunes +prejudice +starving +reassigned +steamer +##lund +tuck +evenly +foreman +##ffen +dans +375 +envisioned +slit +##xy +baseman +liberia +rosemary +##weed +electrified +periodically +potassium +stride +contexts +sperm +slade +mariners +influx +bianca +subcommittee +##rane +spilling +icao +estuary +##nock +delivers +iphone +##ulata +isa +mira +bohemian +dessert +##sbury +welcoming +proudly +slowing +##chs +musee +ascension +russ +##vian +waits +##psy +africans +exploit +##morphic +gov +eccentric +crab +peck +##ull +entrances +formidable +marketplace +groom +bolted +metabolism +patton +robbins +courier +payload +endure +##ifier +andes +refrigerator +##pr +ornate +##uca +ruthless +illegitimate +masonry +strasbourg +bikes +adobe +##³ +apples +quintet +willingly +niche +bakery +corpses +energetic +##cliffe +##sser +##ards +177 +centimeters +centro +fuscous +cretaceous +rancho +##yde +andrei +telecom +tottenham +oasis +ordination +vulnerability +presiding +corey +cp +penguins +sims +##pis +malawi +piss +##48 +correction +##cked +##ffle +##ryn +countdown +detectives +psychiatrist +psychedelic +dinosaurs +blouse +##get +choi +vowed +##oz +randomly +##pol +49ers +scrub +blanche +bruins +dusseldorf +##using +unwanted +##ums +212 +dominique +elevations +headlights +om +laguna +##oga +1750 +famously +ignorance +shrewsbury +##aine +ajax +breuning +che +confederacy +greco +overhaul +##screen +paz +skirts +disagreement +cruelty +jagged +phoebe +shifter +hovered +viruses +##wes +mandy +##lined +##gc +landlord +squirrel +dashed +##ι +ornamental +gag +wally +grange +literal +spurs +undisclosed +proceeding +yin +##text +billie +orphan +spanned +humidity +indy +weighted +presentations +explosions +lucian +##tary +vaughn +hindus +##anga +##hell +psycho +171 +daytona +protects +efficiently +rematch +sly +tandem +##oya +rebranded +impaired +hee +metropolis +peach +godfrey +diaspora +ethnicity +prosperous +gleaming +dar +grossing +playback +##rden +stripe +pistols +##tain +births +labelled +##cating +172 +rudy +alba +##onne +aquarium +hostility +##gb +##tase +shudder +sumatra +hardest +lakers +consonant +creeping +demos +homicide +capsule +zeke +liberties +expulsion +pueblo +##comb +trait +transporting +##ddin +##neck +##yna +depart +gregg +mold +ledge +hangar +oldham +playboy +termination +analysts +gmbh +romero +##itic +insist +cradle +filthy +brightness +slash +shootout +deposed +bordering +##truct +isis +microwave +tumbled +sheltered +cathy +werewolves +messy +andersen +convex +clapped +clinched +satire +wasting +edo +vc +rufus +##jak +mont +##etti +poznan +##keeping +restructuring +transverse +##rland +azerbaijani +slovene +gestures +roommate +choking +shear +##quist +vanguard +oblivious +##hiro +disagreed +baptism +##lich +coliseum +##aceae +salvage +societe +cory +locke +relocation +relying +versailles +ahl +swelling +##elo +cheerful +##word +##edes +gin +sarajevo +obstacle +diverted +##nac +messed +thoroughbred +fluttered +utrecht +chewed +acquaintance +assassins +dispatch +mirza +##wart +nike +salzburg +swell +yen +##gee +idle +ligue +samson +##nds +##igh +playful +spawned +##cise +tease +##case +burgundy +##bot +stirring +skeptical +interceptions +marathi +##dies +bedrooms +aroused +pinch +##lik +preferences +tattoos +buster +digitally +projecting +rust +##ital +kitten +priorities +addison +pseudo +##guard +dusk +icons +sermon +##psis +##iba +bt +##lift +##xt +ju +truce +rink +##dah +##wy +defects +psychiatry +offences +calculate +glucose +##iful +##rized +##unda +francaise +##hari +richest +warwickshire +carly +1763 +purity +redemption +lending +##cious +muse +bruises +cerebral +aero +carving +##name +preface +terminology +invade +monty +##int +anarchist +blurred +##iled +rossi +treats +guts +shu +foothills +ballads +undertaking +premise +cecilia +affiliates +blasted +conditional +wilder +minors +drone +rudolph +buffy +swallowing +horton +attested +##hop +rutherford +howell +primetime +livery +penal +##bis +minimize +hydro +wrecked +wrought +palazzo +##gling +cans +vernacular +friedman +nobleman +shale +walnut +danielle +##ection +##tley +sears +##kumar +chords +lend +flipping +streamed +por +dracula +gallons +sacrifices +gamble +orphanage +##iman +mckenzie +##gible +boxers +daly +##balls +##ان +208 +##ific +##rative +##iq +exploited +slated +##uity +circling +hillary +pinched +goldberg +provost +campaigning +lim +piles +ironically +jong +mohan +successors +usaf +##tem +##ught +autobiographical +haute +preserves +##ending +acquitted +comparisons +203 +hydroelectric +gangs +cypriot +torpedoes +rushes +chrome +derive +bumps +instability +fiat +pets +##mbe +silas +dye +reckless +settler +##itation +info +heats +##writing +176 +canonical +maltese +fins +mushroom +stacy +aspen +avid +##kur +##loading +vickers +gaston +hillside +statutes +wilde +gail +kung +sabine +comfortably +motorcycles +##rgo +169 +pneumonia +fetch +##sonic +axel +faintly +parallels +##oop +mclaren +spouse +compton +interdisciplinary +miner +##eni +181 +clamped +##chal +##llah +separates +versa +##mler +scarborough +labrador +##lity +##osing +rutgers +hurdles +como +166 +burt +divers +##100 +wichita +cade +coincided +##erson +bruised +mla +##pper +vineyard +##ili +##brush +notch +mentioning +jase +hearted +kits +doe +##acle +pomerania +##ady +ronan +seizure +pavel +problematic +##zaki +domenico +##ulin +catering +penelope +dependence +parental +emilio +ministerial +atkinson +##bolic +clarkson +chargers +colby +grill +peeked +arises +summon +##aged +fools +##grapher +faculties +qaeda +##vial +garner +refurbished +##hwa +geelong +disasters +nudged +bs +shareholder +lori +algae +reinstated +rot +##ades +##nous +invites +stainless +183 +inclusive +##itude +diocesan +til +##icz +denomination +##xa +benton +floral +registers +##ider +##erman +##kell +absurd +brunei +guangzhou +hitter +retaliation +##uled +##eve +blanc +nh +consistency +contamination +##eres +##rner +dire +palermo +broadcasters +diaries +inspire +vols +brewer +tightening +ky +mixtape +hormone +##tok +stokes +##color +##dly +##ssi +pg +##ometer +##lington +sanitation +##tility +intercontinental +apps +##adt +¹⁄₂ +cylinders +economies +favourable +unison +croix +gertrude +odyssey +vanity +dangling +##logists +upgrades +dice +middleweight +practitioner +##ight +206 +henrik +parlor +orion +angered +lac +python +blurted +##rri +sensual +intends +swings +angled +##phs +husky +attain +peerage +precinct +textiles +cheltenham +shuffled +dai +confess +tasting +bhutan +##riation +tyrone +segregation +abrupt +ruiz +##rish +smirked +blackwell +confidential +browning +amounted +##put +vase +scarce +fabulous +raided +staple +guyana +unemployed +glider +shay +##tow +carmine +troll +intervene +squash +superstar +##uce +cylindrical +len +roadway +researched +handy +##rium +##jana +meta +lao +declares +##rring +##tadt +##elin +##kova +willem +shrubs +napoleonic +realms +skater +qi +volkswagen +##ł +tad +hara +archaeologist +awkwardly +eerie +##kind +wiley +##heimer +##24 +titus +organizers +cfl +crusaders +lama +usb +vent +enraged +thankful +occupants +maximilian +##gaard +possessing +textbooks +##oran +collaborator +quaker +##ulo +avalanche +mono +silky +straits +isaiah +mustang +surged +resolutions +potomac +descend +cl +kilograms +plato +strains +saturdays +##olin +bernstein +##ype +holstein +ponytail +##watch +belize +conversely +heroine +perpetual +##ylus +charcoal +piedmont +glee +negotiating +backdrop +prologue +##jah +##mmy +pasadena +climbs +ramos +sunni +##holm +##tner +##tri +anand +deficiency +hertfordshire +stout +##avi +aperture +orioles +##irs +doncaster +intrigued +bombed +coating +otis +##mat +cocktail +##jit +##eto +amir +arousal +sar +##proof +##act +##ories +dixie +pots +##bow +whereabouts +159 +##fted +drains +bullying +cottages +scripture +coherent +fore +poe +appetite +##uration +sampled +##ators +##dp +derrick +rotor +jays +peacock +installment +##rro +advisors +##coming +rodeo +scotch +##mot +##db +##fen +##vant +ensued +rodrigo +dictatorship +martyrs +twenties +##н +towed +incidence +marta +rainforest +sai +scaled +##cles +oceanic +qualifiers +symphonic +mcbride +dislike +generalized +aubrey +colonization +##iation +##lion +##ssing +disliked +lublin +salesman +##ulates +spherical +whatsoever +sweating +avalon +contention +punt +severity +alderman +atari +##dina +##grant +##rop +scarf +seville +vertices +annexation +fairfield +fascination +inspiring +launches +palatinate +regretted +##rca +feral +##iom +elk +nap +olsen +reddy +yong +##leader +##iae +garment +transports +feng +gracie +outrage +viceroy +insides +##esis +breakup +grady +organizer +softer +grimaced +222 +murals +galicia +arranging +vectors +##rsten +bas +##sb +##cens +sloan +##eka +bitten +ara +fender +nausea +bumped +kris +banquet +comrades +detector +persisted +##llan +adjustment +endowed +cinemas +##shot +sellers +##uman +peek +epa +kindly +neglect +simpsons +talon +mausoleum +runaway +hangul +lookout +##cic +rewards +coughed +acquainted +chloride +##ald +quicker +accordion +neolithic +##qa +artemis +coefficient +lenny +pandora +tx +##xed +ecstasy +litter +segunda +chairperson +gemma +hiss +rumor +vow +nasal +antioch +compensate +patiently +transformers +##eded +judo +morrow +penis +posthumous +philips +bandits +husbands +denote +flaming +##any +##phones +langley +yorker +1760 +walters +##uo +##kle +gubernatorial +fatty +samsung +leroy +outlaw +##nine +unpublished +poole +jakob +##ᵢ +##ₙ +crete +distorted +superiority +##dhi +intercept +crust +mig +claus +crashes +positioning +188 +stallion +301 +frontal +armistice +##estinal +elton +aj +encompassing +camel +commemorated +malaria +woodward +calf +cigar +penetrate +##oso +willard +##rno +##uche +illustrate +amusing +convergence +noteworthy +##lma +##rva +journeys +realise +manfred +##sable +410 +##vocation +hearings +fiance +##posed +educators +provoked +adjusting +##cturing +modular +stockton +paterson +vlad +rejects +electors +selena +maureen +##tres +uber +##rce +swirled +##num +proportions +nanny +pawn +naturalist +parma +apostles +awoke +ethel +wen +##bey +monsoon +overview +##inating +mccain +rendition +risky +adorned +##ih +equestrian +germain +nj +conspicuous +confirming +##yoshi +shivering +##imeter +milestone +rumours +flinched +bounds +smacked +token +##bei +lectured +automobiles +##shore +impacted +##iable +nouns +nero +##leaf +ismail +prostitute +trams +##lace +bridget +sud +stimulus +impressions +reins +revolves +##oud +##gned +giro +honeymoon +##swell +criterion +##sms +##uil +libyan +prefers +##osition +211 +preview +sucks +accusation +bursts +metaphor +diffusion +tolerate +faye +betting +cinematographer +liturgical +specials +bitterly +humboldt +##ckle +flux +rattled +##itzer +archaeologists +odor +authorised +marshes +discretion +##ов +alarmed +archaic +inverse +##leton +explorers +##pine +drummond +tsunami +woodlands +##minate +##tland +booklet +insanity +owning +insert +crafted +calculus +##tore +receivers +##bt +stung +##eca +##nched +prevailing +travellers +eyeing +lila +graphs +##borne +178 +julien +##won +morale +adaptive +therapist +erica +cw +libertarian +bowman +pitches +vita +##ional +crook +##ads +##entation +caledonia +mutiny +##sible +1840s +automation +##ß +flock +##pia +ironic +pathology +##imus +remarried +##22 +joker +withstand +energies +##att +shropshire +hostages +madeleine +tentatively +conflicting +mateo +recipes +euros +ol +mercenaries +nico +##ndon +albuquerque +augmented +mythical +bel +freud +##child +cough +##lica +365 +freddy +lillian +genetically +nuremberg +calder +209 +bonn +outdoors +paste +suns +urgency +vin +restraint +tyson +##cera +##selle +barrage +bethlehem +kahn +##par +mounts +nippon +barony +happier +ryu +makeshift +sheldon +blushed +castillo +barking +listener +taped +bethel +fluent +headlines +pornography +rum +disclosure +sighing +mace +doubling +gunther +manly +##plex +rt +interventions +physiological +forwards +emerges +##tooth +##gny +compliment +rib +recession +visibly +barge +faults +connector +exquisite +prefect +##rlin +patio +##cured +elevators +brandt +italics +pena +173 +wasp +satin +ea +botswana +graceful +respectable +##jima +##rter +##oic +franciscan +generates +##dl +alfredo +disgusting +##olate +##iously +sherwood +warns +cod +promo +cheryl +sino +##ة +##escu +twitch +##zhi +brownish +thom +ortiz +##dron +densely +##beat +carmel +reinforce +##bana +187 +anastasia +downhill +vertex +contaminated +remembrance +harmonic +homework +##sol +fiancee +gears +olds +angelica +loft +ramsay +quiz +colliery +sevens +##cape +autism +##hil +walkway +##boats +ruben +abnormal +ounce +khmer +##bbe +zachary +bedside +morphology +punching +##olar +sparrow +convinces +##35 +hewitt +queer +remastered +rods +mabel +solemn +notified +lyricist +symmetric +##xide +174 +encore +passports +wildcats +##uni +baja +##pac +mildly +##ease +bleed +commodity +mounds +glossy +orchestras +##omo +damian +prelude +ambitions +##vet +awhile +remotely +##aud +asserts +imply +##iques +distinctly +modelling +remedy +##dded +windshield +dani +xiao +##endra +audible +powerplant +1300 +invalid +elemental +acquisitions +##hala +immaculate +libby +plata +smuggling +ventilation +denoted +minh +##morphism +430 +differed +dion +kelley +lore +mocking +sabbath +spikes +hygiene +drown +runoff +stylized +tally +liberated +aux +interpreter +righteous +aba +siren +reaper +pearce +millie +##cier +##yra +gaius +##iso +captures +##ttering +dorm +claudio +##sic +benches +knighted +blackness +##ored +discount +fumble +oxidation +routed +##ς +novak +perpendicular +spoiled +fracture +splits +##urt +pads +topology +##cats +axes +fortunate +offenders +protestants +esteem +221 +broadband +convened +frankly +hound +prototypes +isil +facilitated +keel +##sher +sahara +awaited +bubba +orb +prosecutors +186 +hem +520 +##xing +relaxing +remnant +romney +sorted +slalom +stefano +ulrich +##active +exemption +folder +pauses +foliage +hitchcock +epithet +204 +criticisms +##aca +ballistic +brody +hinduism +chaotic +youths +equals +##pala +pts +thicker +analogous +capitalist +improvised +overseeing +sinatra +ascended +beverage +##tl +straightforward +##kon +curran +##west +bois +325 +induce +surveying +emperors +sax +unpopular +##kk +cartoonist +fused +##mble +unto +##yuki +localities +##cko +##ln +darlington +slain +academie +lobbying +sediment +puzzles +##grass +defiance +dickens +manifest +tongues +alumnus +arbor +coincide +184 +appalachian +mustafa +examiner +cabaret +traumatic +yves +bracelet +draining +heroin +magnum +baths +odessa +consonants +mitsubishi +##gua +kellan +vaudeville +##fr +joked +null +straps +probation +##ław +ceded +interfaces +##pas +##zawa +blinding +viet +224 +rothschild +museo +640 +huddersfield +##vr +tactic +##storm +brackets +dazed +incorrectly +##vu +reg +glazed +fearful +manifold +benefited +irony +##sun +stumbling +##rte +willingness +balkans +mei +wraps +##aba +injected +##lea +gu +syed +harmless +##hammer +bray +takeoff +poppy +timor +cardboard +astronaut +purdue +weeping +southbound +cursing +stalls +diagonal +##neer +lamar +bryce +comte +weekdays +harrington +##uba +negatively +##see +lays +grouping +##cken +##henko +affirmed +halle +modernist +##lai +hodges +smelling +aristocratic +baptized +dismiss +justification +oilers +##now +coupling +qin +snack +healer +##qing +gardener +layla +battled +formulated +stephenson +gravitational +##gill +##jun +1768 +granny +coordinating +suites +##cd +##ioned +monarchs +##cote +##hips +sep +blended +apr +barrister +deposition +fia +mina +policemen +paranoid +##pressed +churchyard +covert +crumpled +creep +abandoning +tr +transmit +conceal +barr +understands +readiness +spire +##cology +##enia +##erry +610 +startling +unlock +vida +bowled +slots +##nat +##islav +spaced +trusting +admire +rig +##ink +slack +##70 +mv +207 +casualty +##wei +classmates +##odes +##rar +##rked +amherst +furnished +evolve +foundry +menace +mead +##lein +flu +wesleyan +##kled +monterey +webber +##vos +wil +##mith +##на +bartholomew +justices +restrained +##cke +amenities +191 +mediated +sewage +trenches +ml +mainz +##thus +1800s +##cula +##inski +caine +bonding +213 +converts +spheres +superseded +marianne +crypt +sweaty +ensign +historia +##br +spruce +##post +##ask +forks +thoughtfully +yukon +pamphlet +ames +##uter +karma +##yya +bryn +negotiation +sighs +incapable +##mbre +##ntial +actresses +taft +##mill +luce +prevailed +##amine +1773 +motionless +envoy +testify +investing +sculpted +instructors +provence +kali +cullen +horseback +##while +goodwin +##jos +gaa +norte +##ldon +modify +wavelength +abd +214 +skinned +sprinter +forecast +scheduling +marries +squared +tentative +##chman +boer +##isch +bolts +swap +fisherman +assyrian +impatiently +guthrie +martins +murdoch +194 +tanya +nicely +dolly +lacy +med +##45 +syn +decks +fashionable +millionaire +##ust +surfing +##ml +##ision +heaved +tammy +consulate +attendees +routinely +197 +fuse +saxophonist +backseat +malaya +##lord +scowl +tau +##ishly +193 +sighted +steaming +##rks +303 +911 +##holes +##hong +ching +##wife +bless +conserved +jurassic +stacey +unix +zion +chunk +rigorous +blaine +198 +peabody +slayer +dismay +brewers +nz +##jer +det +##glia +glover +postwar +int +penetration +sylvester +imitation +vertically +airlift +heiress +knoxville +viva +##uin +390 +macon +##rim +##fighter +##gonal +janice +##orescence +##wari +marius +belongings +leicestershire +196 +blanco +inverted +preseason +sanity +sobbing +##due +##elt +##dled +collingwood +regeneration +flickering +shortest +##mount +##osi +feminism +##lat +sherlock +cabinets +fumbled +northbound +precedent +snaps +##mme +researching +##akes +guillaume +insights +manipulated +vapor +neighbour +sap +gangster +frey +f1 +stalking +scarcely +callie +barnett +tendencies +audi +doomed +assessing +slung +panchayat +ambiguous +bartlett +##etto +distributing +violating +wolverhampton +##hetic +swami +histoire +##urus +liable +pounder +groin +hussain +larsen +popping +surprises +##atter +vie +curt +##station +mute +relocate +musicals +authorization +richter +##sef +immortality +tna +bombings +##press +deteriorated +yiddish +##acious +robbed +colchester +cs +pmid +ao +verified +balancing +apostle +swayed +recognizable +oxfordshire +retention +nottinghamshire +contender +judd +invitational +shrimp +uhf +##icient +cleaner +longitudinal +tanker +##mur +acronym +broker +koppen +sundance +suppliers +##gil +4000 +clipped +fuels +petite +##anne +landslide +helene +diversion +populous +landowners +auspices +melville +quantitative +##xes +ferries +nicky +##llus +doo +haunting +roche +carver +downed +unavailable +##pathy +approximation +hiroshima +##hue +garfield +valle +comparatively +keyboardist +traveler +##eit +congestion +calculating +subsidiaries +##bate +serb +modernization +fairies +deepened +ville +averages +##lore +inflammatory +tonga +##itch +co₂ +squads +##hea +gigantic +serum +enjoyment +retailer +verona +35th +cis +##phobic +magna +technicians +##vati +arithmetic +##sport +levin +##dation +amtrak +chow +sienna +##eyer +backstage +entrepreneurship +##otic +learnt +tao +##udy +worcestershire +formulation +baggage +hesitant +bali +sabotage +##kari +barren +enhancing +murmur +pl +freshly +putnam +syntax +aces +medicines +resentment +bandwidth +##sier +grins +chili +guido +##sei +framing +implying +gareth +lissa +genevieve +pertaining +admissions +geo +thorpe +proliferation +sato +bela +analyzing +parting +##gor +awakened +##isman +huddled +secrecy +##kling +hush +gentry +540 +dungeons +##ego +coasts +##utz +sacrificed +##chule +landowner +mutually +prevalence +programmer +adolescent +disrupted +seaside +gee +trusts +vamp +georgie +##nesian +##iol +schedules +sindh +##market +etched +hm +sparse +bey +beaux +scratching +gliding +unidentified +216 +collaborating +gems +jesuits +oro +accumulation +shaping +mbe +anal +##xin +231 +enthusiasts +newscast +##egan +janata +dewey +parkinson +179 +ankara +biennial +towering +dd +inconsistent +950 +##chet +thriving +terminate +cabins +furiously +eats +advocating +donkey +marley +muster +phyllis +leiden +##user +grassland +glittering +iucn +loneliness +217 +memorandum +armenians +##ddle +popularized +rhodesia +60s +lame +##illon +sans +bikini +header +orbits +##xx +##finger +##ulator +sharif +spines +biotechnology +strolled +naughty +yates +##wire +fremantle +milo +##mour +abducted +removes +##atin +humming +wonderland +##chrome +##ester +hume +pivotal +##rates +armand +grams +believers +elector +rte +apron +bis +scraped +##yria +endorsement +initials +##llation +eps +dotted +hints +buzzing +emigration +nearer +##tom +indicators +##ulu +coarse +neutron +protectorate +##uze +directional +exploits +pains +loire +1830s +proponents +guggenheim +rabbits +ritchie +305 +hectare +inputs +hutton +##raz +verify +##ako +boilers +longitude +##lev +skeletal +yer +emilia +citrus +compromised +##gau +pokemon +prescription +paragraph +eduard +cadillac +attire +categorized +kenyan +weddings +charley +##bourg +entertain +monmouth +##lles +nutrients +davey +mesh +incentive +practised +ecosystems +kemp +subdued +overheard +##rya +bodily +maxim +##nius +apprenticeship +ursula +##fight +lodged +rug +silesian +unconstitutional +patel +inspected +coyote +unbeaten +##hak +34th +disruption +convict +parcel +##cl +##nham +collier +implicated +mallory +##iac +##lab +susannah +winkler +##rber +shia +phelps +sediments +graphical +robotic +##sner +adulthood +mart +smoked +##isto +kathryn +clarified +##aran +divides +convictions +oppression +pausing +burying +##mt +federico +mathias +eileen +##tana +kite +hunched +##acies +189 +##atz +disadvantage +liza +kinetic +greedy +paradox +yokohama +dowager +trunks +ventured +##gement +gupta +vilnius +olaf +##thest +crimean +hopper +##ej +progressively +arturo +mouthed +arrondissement +##fusion +rubin +simulcast +oceania +##orum +##stra +##rred +busiest +intensely +navigator +cary +##vine +##hini +##bies +fife +rowe +rowland +posing +insurgents +shafts +lawsuits +activate +conor +inward +culturally +garlic +265 +##eering +eclectic +##hui +##kee +##nl +furrowed +vargas +meteorological +rendezvous +##aus +culinary +commencement +##dition +quota +##notes +mommy +salaries +overlapping +mule +##iology +##mology +sums +wentworth +##isk +##zione +mainline +subgroup +##illy +hack +plaintiff +verdi +bulb +differentiation +engagements +multinational +supplemented +bertrand +caller +regis +##naire +##sler +##arts +##imated +blossom +propagation +kilometer +viaduct +vineyards +##uate +beckett +optimization +golfer +songwriters +seminal +semitic +thud +volatile +evolving +ridley +##wley +trivial +distributions +scandinavia +jiang +##ject +wrestled +insistence +##dio +emphasizes +napkin +##ods +adjunct +rhyme +##ricted +##eti +hopeless +surrounds +tremble +32nd +smoky +##ntly +oils +medicinal +padded +steer +wilkes +219 +255 +concessions +hue +uniquely +blinded +landon +yahoo +##lane +hendrix +commemorating +dex +specify +chicks +##ggio +intercity +1400 +morley +##torm +highlighting +##oting +pang +oblique +stalled +##liner +flirting +newborn +1769 +bishopric +shaved +232 +currie +##ush +dharma +spartan +##ooped +favorites +smug +novella +sirens +abusive +creations +espana +##lage +paradigm +semiconductor +sheen +##rdo +##yen +##zak +nrl +renew +##pose +##tur +adjutant +marches +norma +##enity +ineffective +weimar +grunt +##gat +lordship +plotting +expenditure +infringement +lbs +refrain +av +mimi +mistakenly +postmaster +1771 +##bara +ras +motorsports +tito +199 +subjective +##zza +bully +stew +##kaya +prescott +1a +##raphic +##zam +bids +styling +paranormal +reeve +sneaking +exploding +katz +akbar +migrant +syllables +indefinitely +##ogical +destroys +replaces +applause +##phine +pest +##fide +218 +articulated +bertie +##thing +##cars +##ptic +courtroom +crowley +aesthetics +cummings +tehsil +hormones +titanic +dangerously +##ibe +stadion +jaenelle +auguste +ciudad +##chu +mysore +partisans +##sio +lucan +philipp +##aly +debating +henley +interiors +##rano +##tious +homecoming +beyonce +usher +henrietta +prepares +weeds +##oman +ely +plucked +##pire +##dable +luxurious +##aq +artifact +password +pasture +juno +maddy +minsk +##dder +##ologies +##rone +assessments +martian +royalist +1765 +examines +##mani +##rge +nino +223 +parry +scooped +relativity +##eli +##uting +##cao +congregational +noisy +traverse +##agawa +strikeouts +nickelodeon +obituary +transylvania +binds +depictions +polk +trolley +##yed +##lard +breeders +##under +dryly +hokkaido +1762 +strengths +stacks +bonaparte +connectivity +neared +prostitutes +stamped +anaheim +gutierrez +sinai +##zzling +bram +fresno +madhya +##86 +proton +##lena +##llum +##phon +reelected +wanda +##anus +##lb +ample +distinguishing +##yler +grasping +sermons +tomato +bland +stimulation +avenues +##eux +spreads +scarlett +fern +pentagon +assert +baird +chesapeake +ir +calmed +distortion +fatalities +##olis +correctional +pricing +##astic +##gina +prom +dammit +ying +collaborate +##chia +welterweight +33rd +pointer +substitution +bonded +umpire +communicating +multitude +paddle +##obe +federally +intimacy +##insky +betray +ssr +##lett +##lean +##lves +##therapy +airbus +##tery +functioned +ud +bearer +biomedical +netflix +##hire +##nca +condom +brink +ik +##nical +macy +##bet +flap +gma +experimented +jelly +lavender +##icles +##ulia +munro +##mian +##tial +rye +##rle +60th +gigs +hottest +rotated +predictions +fuji +bu +##erence +##omi +barangay +##fulness +##sas +clocks +##rwood +##liness +cereal +roe +wight +decker +uttered +babu +onion +xml +forcibly +##df +petra +sarcasm +hartley +peeled +storytelling +##42 +##xley +##ysis +##ffa +fibre +kiel +auditor +fig +harald +greenville +##berries +geographically +nell +quartz +##athic +cemeteries +##lr +crossings +nah +holloway +reptiles +chun +sichuan +snowy +660 +corrections +##ivo +zheng +ambassadors +blacksmith +fielded +fluids +hardcover +turnover +medications +melvin +academies +##erton +ro +roach +absorbing +spaniards +colton +##founded +outsider +espionage +kelsey +245 +edible +##ulf +dora +establishes +##sham +##tries +contracting +##tania +cinematic +costello +nesting +##uron +connolly +duff +##nology +mma +##mata +fergus +sexes +gi +optics +spectator +woodstock +banning +##hee +##fle +differentiate +outfielder +refinery +226 +312 +gerhard +horde +lair +drastically +##udi +landfall +##cheng +motorsport +odi +##achi +predominant +quay +skins +##ental +edna +harshly +complementary +murdering +##aves +wreckage +##90 +ono +outstretched +lennox +munitions +galen +reconcile +470 +scalp +bicycles +gillespie +questionable +rosenberg +guillermo +hostel +jarvis +kabul +volvo +opium +yd +##twined +abuses +decca +outpost +##cino +sensible +neutrality +##64 +ponce +anchorage +atkins +turrets +inadvertently +disagree +libre +vodka +reassuring +weighs +##yal +glide +jumper +ceilings +repertory +outs +stain +##bial +envy +##ucible +smashing +heightened +policing +hyun +mixes +lai +prima +##ples +celeste +##bina +lucrative +intervened +kc +manually +##rned +stature +staffed +bun +bastards +nairobi +priced +##auer +thatcher +##kia +tripped +comune +##ogan +##pled +brasil +incentives +emanuel +hereford +musica +##kim +benedictine +biennale +##lani +eureka +gardiner +rb +knocks +sha +##ael +##elled +##onate +efficacy +ventura +masonic +sanford +maize +leverage +##feit +capacities +santana +##aur +novelty +vanilla +##cter +##tour +benin +##oir +##rain +neptune +drafting +tallinn +##cable +humiliation +##boarding +schleswig +fabian +bernardo +liturgy +spectacle +sweeney +pont +routledge +##tment +cosmos +ut +hilt +sleek +universally +##eville +##gawa +typed +##dry +favors +allegheny +glaciers +##rly +recalling +aziz +##log +parasite +requiem +auf +##berto +##llin +illumination +##breaker +##issa +festivities +bows +govern +vibe +vp +333 +sprawled +larson +pilgrim +bwf +leaping +##rts +##ssel +alexei +greyhound +hoarse +##dler +##oration +seneca +##cule +gaping +##ulously +##pura +cinnamon +##gens +##rricular +craven +fantasies +houghton +engined +reigned +dictator +supervising +##oris +bogota +commentaries +unnatural +fingernails +spirituality +tighten +##tm +canadiens +protesting +intentional +cheers +sparta +##ytic +##iere +##zine +widen +belgarath +controllers +dodd +iaaf +navarre +##ication +defect +squire +steiner +whisky +##mins +560 +inevitably +tome +##gold +chew +##uid +##lid +elastic +##aby +streaked +alliances +jailed +regal +##ined +##phy +czechoslovak +narration +absently +##uld +bluegrass +guangdong +quran +criticizing +hose +hari +##liest +##owa +skier +streaks +deploy +##lom +raft +bose +dialed +huff +##eira +haifa +simplest +bursting +endings +ib +sultanate +##titled +franks +whitman +ensures +sven +##ggs +collaborators +forster +organising +ui +banished +napier +injustice +teller +layered +thump +##otti +roc +battleships +evidenced +fugitive +sadie +robotics +##roud +equatorial +geologist +##iza +yielding +##bron +##sr +internationale +mecca +##diment +sbs +skyline +toad +uploaded +reflective +undrafted +lal +leafs +bayern +##dai +lakshmi +shortlisted +##stick +##wicz +camouflage +donate +af +christi +lau +##acio +disclosed +nemesis +1761 +assemble +straining +northamptonshire +tal +##asi +bernardino +premature +heidi +42nd +coefficients +galactic +reproduce +buzzed +sensations +zionist +monsieur +myrtle +##eme +archery +strangled +musically +viewpoint +antiquities +bei +trailers +seahawks +cured +pee +preferring +tasmanian +lange +sul +##mail +##working +colder +overland +lucivar +massey +gatherings +haitian +##smith +disapproval +flaws +##cco +##enbach +1766 +npr +##icular +boroughs +creole +forums +techno +1755 +dent +abdominal +streetcar +##eson +##stream +procurement +gemini +predictable +##tya +acheron +christoph +feeder +fronts +vendor +bernhard +jammu +tumors +slang +##uber +goaltender +twists +curving +manson +vuelta +mer +peanut +confessions +pouch +unpredictable +allowance +theodor +vascular +##factory +bala +authenticity +metabolic +coughing +nanjing +##cea +pembroke +##bard +splendid +36th +ff +hourly +##ahu +elmer +handel +##ivate +awarding +thrusting +dl +experimentation +##hesion +##46 +caressed +entertained +steak +##rangle +biologist +orphans +baroness +oyster +stepfather +##dridge +mirage +reefs +speeding +##31 +barons +1764 +227 +inhabit +preached +repealed +##tral +honoring +boogie +captives +administer +johanna +##imate +gel +suspiciously +1767 +sobs +##dington +backbone +hayward +garry +##folding +##nesia +maxi +##oof +##ppe +ellison +galileo +##stand +crimea +frenzy +amour +bumper +matrices +natalia +baking +garth +palestinians +##grove +smack +conveyed +ensembles +gardening +##manship +##rup +##stituting +1640 +harvesting +topography +jing +shifters +dormitory +##carriage +##lston +ist +skulls +##stadt +dolores +jewellery +sarawak +##wai +##zier +fences +christy +confinement +tumbling +credibility +fir +stench +##bria +##plication +##nged +##sam +virtues +##belt +marjorie +pba +##eem +##made +celebrates +schooner +agitated +barley +fulfilling +anthropologist +##pro +restrict +novi +regulating +##nent +padres +##rani +##hesive +loyola +tabitha +milky +olson +proprietor +crambidae +guarantees +intercollegiate +ljubljana +hilda +##sko +ignorant +hooded +##lts +sardinia +##lidae +##vation +frontman +privileged +witchcraft +##gp +jammed +laude +poking +##than +bracket +amazement +yunnan +##erus +maharaja +linnaeus +264 +commissioning +milano +peacefully +##logies +akira +rani +regulator +##36 +grasses +##rance +luzon +crows +compiler +gretchen +seaman +edouard +tab +buccaneers +ellington +hamlets +whig +socialists +##anto +directorial +easton +mythological +##kr +##vary +rhineland +semantic +taut +dune +inventions +succeeds +##iter +replication +branched +##pired +jul +prosecuted +kangaroo +penetrated +##avian +middlesbrough +doses +bleak +madam +predatory +relentless +##vili +reluctance +##vir +hailey +crore +silvery +1759 +monstrous +swimmers +transmissions +hawthorn +informing +##eral +toilets +caracas +crouch +kb +##sett +295 +cartel +hadley +##aling +alexia +yvonne +##biology +cinderella +eton +superb +blizzard +stabbing +industrialist +maximus +##gm +##orus +groves +maud +clade +oversized +comedic +##bella +rosen +nomadic +fulham +montane +beverages +galaxies +redundant +swarm +##rot +##folia +##llis +buckinghamshire +fen +bearings +bahadur +##rom +gilles +phased +dynamite +faber +benoit +vip +##ount +##wd +booking +fractured +tailored +anya +spices +westwood +cairns +auditions +inflammation +steamed +##rocity +##acion +##urne +skyla +thereof +watford +torment +archdeacon +transforms +lulu +demeanor +fucked +serge +##sor +mckenna +minas +entertainer +##icide +caress +originate +residue +##sty +1740 +##ilised +##org +beech +##wana +subsidies +##ghton +emptied +gladstone +ru +firefighters +voodoo +##rcle +het +nightingale +tamara +edmond +ingredient +weaknesses +silhouette +285 +compatibility +withdrawing +hampson +##mona +anguish +giggling +##mber +bookstore +##jiang +southernmost +tilting +##vance +bai +economical +rf +briefcase +dreadful +hinted +projections +shattering +totaling +##rogate +analogue +indicted +periodical +fullback +##dman +haynes +##tenberg +##ffs +##ishment +1745 +thirst +stumble +penang +vigorous +##ddling +##kor +##lium +octave +##ove +##enstein +##inen +##ones +siberian +##uti +cbn +repeal +swaying +##vington +khalid +tanaka +unicorn +otago +plastered +lobe +riddle +##rella +perch +##ishing +croydon +filtered +graeme +tripoli +##ossa +crocodile +##chers +sufi +mined +##tung +inferno +lsu +##phi +swelled +utilizes +£2 +cale +periodicals +styx +hike +informally +coop +lund +##tidae +ala +hen +qui +transformations +disposed +sheath +chickens +##cade +fitzroy +sas +silesia +unacceptable +odisha +1650 +sabrina +pe +spokane +ratios +athena +massage +shen +dilemma +##drum +##riz +##hul +corona +doubtful +niall +##pha +##bino +fines +cite +acknowledging +bangor +ballard +bathurst +##resh +huron +mustered +alzheimer +garments +kinase +tyre +warship +##cp +flashback +pulmonary +braun +cheat +kamal +cyclists +constructions +grenades +ndp +traveller +excuses +stomped +signalling +trimmed +futsal +mosques +relevance +##wine +wta +##23 +##vah +##lter +hoc +##riding +optimistic +##´s +deco +sim +interacting +rejecting +moniker +waterways +##ieri +##oku +mayors +gdansk +outnumbered +pearls +##ended +##hampton +fairs +totals +dominating +262 +notions +stairway +compiling +pursed +commodities +grease +yeast +##jong +carthage +griffiths +residual +amc +contraction +laird +sapphire +##marine +##ivated +amalgamation +dissolve +inclination +lyle +packaged +altitudes +suez +canons +graded +lurched +narrowing +boasts +guise +wed +enrico +##ovsky +rower +scarred +bree +cub +iberian +protagonists +bargaining +proposing +trainers +voyages +vans +fishes +##aea +##ivist +##verance +encryption +artworks +kazan +sabre +cleopatra +hepburn +rotting +supremacy +mecklenburg +##brate +burrows +hazards +outgoing +flair +organizes +##ctions +scorpion +##usions +boo +234 +chevalier +dunedin +slapping +##34 +ineligible +pensions +##38 +##omic +manufactures +emails +bismarck +238 +weakening +blackish +ding +mcgee +quo +##rling +northernmost +xx +manpower +greed +sampson +clicking +##ange +##horpe +##inations +##roving +torre +##eptive +##moral +symbolism +38th +asshole +meritorious +outfits +splashed +biographies +sprung +astros +##tale +302 +737 +filly +raoul +nw +tokugawa +linden +clubhouse +##apa +tracts +romano +##pio +putin +tags +##note +chained +dickson +gunshot +moe +gunn +rashid +##tails +zipper +##bas +##nea +contrasted +##ply +##udes +plum +pharaoh +##pile +aw +comedies +ingrid +sandwiches +subdivisions +1100 +mariana +nokia +kamen +hz +delaney +veto +herring +##words +possessive +outlines +##roup +siemens +stairwell +rc +gallantry +messiah +palais +yells +233 +zeppelin +##dm +bolivar +##cede +smackdown +mckinley +##mora +##yt +muted +geologic +finely +unitary +avatar +hamas +maynard +rees +bog +contrasting +##rut +liv +chico +disposition +pixel +##erate +becca +dmitry +yeshiva +narratives +##lva +##ulton +mercenary +sharpe +tempered +navigate +stealth +amassed +keynes +##lini +untouched +##rrie +havoc +lithium +##fighting +abyss +graf +southward +wolverine +balloons +implements +ngos +transitions +##icum +ambushed +concacaf +dormant +economists +##dim +costing +csi +rana +universite +boulders +verity +##llon +collin +mellon +misses +cypress +fluorescent +lifeless +spence +##ulla +crewe +shepard +pak +revelations +##م +jolly +gibbons +paw +##dro +##quel +freeing +##test +shack +fries +palatine +##51 +##hiko +accompaniment +cruising +recycled +##aver +erwin +sorting +synthesizers +dyke +realities +sg +strides +enslaved +wetland +##ghan +competence +gunpowder +grassy +maroon +reactors +objection +##oms +carlson +gearbox +macintosh +radios +shelton +##sho +clergyman +prakash +254 +mongols +trophies +oricon +228 +stimuli +twenty20 +cantonese +cortes +mirrored +##saurus +bhp +cristina +melancholy +##lating +enjoyable +nuevo +##wny +downfall +schumacher +##ind +banging +lausanne +rumbled +paramilitary +reflex +ax +amplitude +migratory +##gall +##ups +midi +barnard +lastly +sherry +##hp +##nall +keystone +##kra +carleton +slippery +##53 +coloring +foe +socket +otter +##rgos +mats +##tose +consultants +bafta +bison +topping +##km +490 +primal +abandonment +transplant +atoll +hideous +mort +pained +reproduced +tae +howling +##turn +unlawful +billionaire +hotter +poised +lansing +##chang +dinamo +retro +messing +nfc +domesday +##mina +blitz +timed +##athing +##kley +ascending +gesturing +##izations +signaled +tis +chinatown +mermaid +savanna +jameson +##aint +catalina +##pet +##hers +cochrane +cy +chatting +##kus +alerted +computation +mused +noelle +majestic +mohawk +campo +octagonal +##sant +##hend +241 +aspiring +##mart +comprehend +iona +paralyzed +shimmering +swindon +rhone +##eley +reputed +configurations +pitchfork +agitation +francais +gillian +lipstick +##ilo +outsiders +pontifical +resisting +bitterness +sewer +rockies +##edd +##ucher +misleading +1756 +exiting +galloway +##nging +risked +##heart +246 +commemoration +schultz +##rka +integrating +##rsa +poses +shrieked +##weiler +guineas +gladys +jerking +owls +goldsmith +nightly +penetrating +##unced +lia +##33 +ignited +betsy +##aring +##thorpe +follower +vigorously +##rave +coded +kiran +knit +zoology +tbilisi +##28 +##bered +repository +govt +deciduous +dino +growling +##bba +enhancement +unleashed +chanting +pussy +biochemistry +##eric +kettle +repression +toxicity +nrhp +##arth +##kko +##bush +ernesto +commended +outspoken +242 +mca +parchment +sms +kristen +##aton +bisexual +raked +glamour +navajo +a2 +conditioned +showcased +##hma +spacious +youthful +##esa +usl +appliances +junta +brest +layne +conglomerate +enchanted +chao +loosened +picasso +circulating +inspect +montevideo +##centric +##kti +piazza +spurred +##aith +bari +freedoms +poultry +stamford +lieu +##ect +indigo +sarcastic +bahia +stump +attach +dvds +frankenstein +lille +approx +scriptures +pollen +##script +nmi +overseen +##ivism +tides +proponent +newmarket +inherit +milling +##erland +centralized +##rou +distributors +credentials +drawers +abbreviation +##lco +##xon +downing +uncomfortably +ripe +##oes +erase +franchises +##ever +populace +##bery +##khar +decomposition +pleas +##tet +daryl +sabah +##stle +##wide +fearless +genie +lesions +annette +##ogist +oboe +appendix +nair +dripped +petitioned +maclean +mosquito +parrot +rpg +hampered +1648 +operatic +reservoirs +##tham +irrelevant +jolt +summarized +##fp +medallion +##taff +##− +clawed +harlow +narrower +goddard +marcia +bodied +fremont +suarez +altering +tempest +mussolini +porn +##isms +sweetly +oversees +walkers +solitude +grimly +shrines +hk +ich +supervisors +hostess +dietrich +legitimacy +brushes +expressive +##yp +dissipated +##rse +localized +systemic +##nikov +gettysburg +##js +##uaries +dialogues +muttering +251 +housekeeper +sicilian +discouraged +##frey +beamed +kaladin +halftime +kidnap +##amo +##llet +1754 +synonymous +depleted +instituto +insulin +reprised +##opsis +clashed +##ctric +interrupting +radcliffe +insisting +medici +1715 +ejected +playfully +turbulent +##47 +starvation +##rini +shipment +rebellious +petersen +verification +merits +##rified +cakes +##charged +1757 +milford +shortages +spying +fidelity +##aker +emitted +storylines +harvested +seismic +##iform +cheung +kilda +theoretically +barbie +lynx +##rgy +##tius +goblin +mata +poisonous +##nburg +reactive +residues +obedience +##евич +conjecture +##rac +401 +hating +sixties +kicker +moaning +motown +##bha +emancipation +neoclassical +##hering +consoles +ebert +professorship +##tures +sustaining +assaults +obeyed +affluent +incurred +tornadoes +##eber +##zow +emphasizing +highlanders +cheated +helmets +##ctus +internship +terence +bony +executions +legislators +berries +peninsular +tinged +##aco +1689 +amplifier +corvette +ribbons +lavish +pennant +##lander +worthless +##chfield +##forms +mariano +pyrenees +expenditures +##icides +chesterfield +mandir +tailor +39th +sergey +nestled +willed +aristocracy +devotees +goodnight +raaf +rumored +weaponry +remy +appropriations +harcourt +burr +riaa +##lence +limitation +unnoticed +guo +soaking +swamps +##tica +collapsing +tatiana +descriptive +brigham +psalm +##chment +maddox +##lization +patti +caliph +##aja +akron +injuring +serra +##ganj +basins +##sari +astonished +launcher +##church +hilary +wilkins +sewing +##sf +stinging +##fia +##ncia +underwood +startup +##ition +compilations +vibrations +embankment +jurist +##nity +bard +juventus +groundwater +kern +palaces +helium +boca +cramped +marissa +soto +##worm +jae +princely +##ggy +faso +bazaar +warmly +##voking +229 +pairing +##lite +##grate +##nets +wien +freaked +ulysses +rebirth +##alia +##rent +mummy +guzman +jimenez +stilled +##nitz +trajectory +tha +woken +archival +professions +##pts +##pta +hilly +shadowy +shrink +##bolt +norwood +glued +migrate +stereotypes +devoid +##pheus +625 +evacuate +horrors +infancy +gotham +knowles +optic +downloaded +sachs +kingsley +parramatta +darryl +mor +##onale +shady +commence +confesses +kan +##meter +##placed +marlborough +roundabout +regents +frigates +io +##imating +gothenburg +revoked +carvings +clockwise +convertible +intruder +##sche +banged +##ogo +vicky +bourgeois +##mony +dupont +footing +##gum +pd +##real +buckle +yun +penthouse +sane +720 +serviced +stakeholders +neumann +bb +##eers +comb +##gam +catchment +pinning +rallies +typing +##elles +forefront +freiburg +sweetie +giacomo +widowed +goodwill +worshipped +aspirations +midday +##vat +fishery +##trick +bournemouth +turk +243 +hearth +ethanol +guadalajara +murmurs +sl +##uge +afforded +scripted +##hta +wah +##jn +coroner +translucent +252 +memorials +puck +progresses +clumsy +##race +315 +candace +recounted +##27 +##slin +##uve +filtering +##mac +howl +strata +heron +leveled +##ays +dubious +##oja +##т +##wheel +citations +exhibiting +##laya +##mics +##pods +turkic +##lberg +injunction +##ennial +##mit +antibodies +##44 +organise +##rigues +cardiovascular +cushion +inverness +##zquez +dia +cocoa +sibling +##tman +##roid +expanse +feasible +tunisian +algiers +##relli +rus +bloomberg +dso +westphalia +bro +tacoma +281 +downloads +##ours +konrad +duran +##hdi +continuum +jett +compares +legislator +secession +##nable +##gues +##zuka +translating +reacher +##gley +##ła +aleppo +##agi +tc +orchards +trapping +linguist +versatile +drumming +postage +calhoun +superiors +##mx +barefoot +leary +##cis +ignacio +alfa +kaplan +##rogen +bratislava +mori +##vot +disturb +haas +313 +cartridges +gilmore +radiated +salford +tunic +hades +##ulsive +archeological +delilah +magistrates +auditioned +brewster +charters +empowerment +blogs +cappella +dynasties +iroquois +whipping +##krishna +raceway +truths +myra +weaken +judah +mcgregor +##horse +mic +refueling +37th +burnley +bosses +markus +premio +query +##gga +dunbar +##economic +darkest +lyndon +sealing +commendation +reappeared +##mun +addicted +ezio +slaughtered +satisfactory +shuffle +##eves +##thic +##uj +fortification +warrington +##otto +resurrected +fargo +mane +##utable +##lei +##space +foreword +ox +##aris +##vern +abrams +hua +##mento +sakura +##alo +uv +sentimental +##skaya +midfield +##eses +sturdy +scrolls +macleod +##kyu +entropy +##lance +mitochondrial +cicero +excelled +thinner +convoys +perceive +##oslav +##urable +systematically +grind +burkina +287 +##tagram +ops +##aman +guantanamo +##cloth +##tite +forcefully +wavy +##jou +pointless +##linger +##tze +layton +portico +superficial +clerical +outlaws +##hism +burials +muir +##inn +creditors +hauling +rattle +##leg +calais +monde +archers +reclaimed +dwell +wexford +hellenic +falsely +remorse +##tek +dough +furnishings +##uttered +gabon +neurological +novice +##igraphy +contemplated +pulpit +nightstand +saratoga +##istan +documenting +pulsing +taluk +##firmed +busted +marital +##rien +disagreements +wasps +##yes +hodge +mcdonnell +mimic +fran +pendant +dhabi +musa +##nington +congratulations +argent +darrell +concussion +losers +regrets +thessaloniki +reversal +donaldson +hardwood +thence +achilles +ritter +##eran +demonic +jurgen +prophets +goethe +eki +classmate +buff +##cking +yank +irrational +##inging +perished +seductive +qur +sourced +##crat +##typic +mustard +ravine +barre +horizontally +characterization +phylogenetic +boise +##dit +##runner +##tower +brutally +intercourse +seduce +##bbing +fay +ferris +ogden +amar +nik +unarmed +##inator +evaluating +kyrgyzstan +sweetness +##lford +##oki +mccormick +meiji +notoriety +stimulate +disrupt +figuring +instructional +mcgrath +##zoo +groundbreaking +##lto +flinch +khorasan +agrarian +bengals +mixer +radiating +##sov +ingram +pitchers +nad +tariff +##cript +tata +##codes +##emi +##ungen +appellate +lehigh +##bled +##giri +brawl +duct +texans +##ciation +##ropolis +skipper +speculative +vomit +doctrines +stresses +253 +davy +graders +whitehead +jozef +timely +cumulative +haryana +paints +appropriately +boon +cactus +##ales +##pid +dow +legions +##pit +perceptions +1730 +picturesque +##yse +periphery +rune +wr +##aha +celtics +sentencing +whoa +##erin +confirms +variance +425 +moines +mathews +spade +rave +m1 +fronted +fx +blending +alleging +reared +##gl +237 +##paper +grassroots +eroded +##free +##physical +directs +ordeal +##sław +accelerate +hacker +rooftop +##inia +lev +buys +cebu +devote +##lce +specialising +##ulsion +choreographed +repetition +warehouses +##ryl +paisley +tuscany +analogy +sorcerer +hash +huts +shards +descends +exclude +nix +chaplin +gaga +ito +vane +##drich +causeway +misconduct +limo +orchestrated +glands +jana +##kot +u2 +##mple +##sons +branching +contrasts +scoop +longed +##virus +chattanooga +##75 +syrup +cornerstone +##tized +##mind +##iaceae +careless +precedence +frescoes +##uet +chilled +consult +modelled +snatch +peat +##thermal +caucasian +humane +relaxation +spins +temperance +##lbert +occupations +lambda +hybrids +moons +mp3 +##oese +247 +rolf +societal +yerevan +ness +##ssler +befriended +mechanized +nominate +trough +boasted +cues +seater +##hom +bends +##tangle +conductors +emptiness +##lmer +eurasian +adriatic +tian +##cie +anxiously +lark +propellers +chichester +jock +ev +2a +##holding +credible +recounts +tori +loyalist +abduction +##hoot +##redo +nepali +##mite +ventral +tempting +##ango +##crats +steered +##wice +javelin +dipping +laborers +prentice +looming +titanium +##ː +badges +emir +tensor +##ntation +egyptians +rash +denies +hawthorne +lombard +showers +wehrmacht +dietary +trojan +##reus +welles +executing +horseshoe +lifeboat +##lak +elsa +infirmary +nearing +roberta +boyer +mutter +trillion +joanne +##fine +##oked +sinks +vortex +uruguayan +clasp +sirius +##block +accelerator +prohibit +sunken +byu +chronological +diplomats +ochreous +510 +symmetrical +1644 +maia +##tology +salts +reigns +atrocities +##ия +hess +bared +issn +##vyn +cater +saturated +##cycle +##isse +sable +voyager +dyer +yusuf +##inge +fountains +wolff +##39 +##nni +engraving +rollins +atheist +ominous +##ault +herr +chariot +martina +strung +##fell +##farlane +horrific +sahib +gazes +saetan +erased +ptolemy +##olic +flushing +lauderdale +analytic +##ices +530 +navarro +beak +gorilla +herrera +broom +guadalupe +raiding +sykes +311 +bsc +deliveries +1720 +invasions +carmichael +tajikistan +thematic +ecumenical +sentiments +onstage +##rians +##brand +##sume +catastrophic +flanks +molten +##arns +waller +aimee +terminating +##icing +alternately +##oche +nehru +printers +outraged +##eving +empires +template +banners +repetitive +za +##oise +vegetarian +##tell +guiana +opt +cavendish +lucknow +synthesized +##hani +##mada +finalized +##ctable +fictitious +mayoral +unreliable +##enham +embracing +peppers +rbis +##chio +##neo +inhibition +slashed +togo +orderly +embroidered +safari +salty +236 +barron +benito +totaled +##dak +pubs +simulated +caden +devin +tolkien +momma +welding +sesame +##ept +gottingen +hardness +630 +shaman +temeraire +620 +adequately +pediatric +##kit +ck +assertion +radicals +composure +cadence +seafood +beaufort +lazarus +mani +warily +cunning +kurdistan +249 +cantata +##kir +ares +##41 +##clusive +nape +townland +geared +insulted +flutter +boating +violate +draper +dumping +malmo +##hh +##romatic +firearm +alta +bono +obscured +##clave +exceeds +panorama +unbelievable +##train +preschool +##essed +disconnected +installing +rescuing +secretaries +accessibility +##castle +##drive +##ifice +##film +bouts +slug +waterway +mindanao +##buro +##ratic +halves +##ل +calming +liter +maternity +adorable +bragg +electrification +mcc +##dote +roxy +schizophrenia +##body +munoz +kaye +whaling +239 +mil +tingling +tolerant +##ago +unconventional +volcanoes +##finder +deportivo +##llie +robson +kaufman +neuroscience +wai +deportation +masovian +scraping +converse +##bh +hacking +bulge +##oun +administratively +yao +580 +amp +mammoth +booster +claremont +hooper +nomenclature +pursuits +mclaughlin +melinda +##sul +catfish +barclay +substrates +taxa +zee +originals +kimberly +packets +padma +##ality +borrowing +ostensibly +solvent +##bri +##genesis +##mist +lukas +shreveport +veracruz +##ь +##lou +##wives +cheney +tt +anatolia +hobbs +##zyn +cyclic +radiant +alistair +greenish +siena +dat +independents +##bation +conform +pieter +hyper +applicant +bradshaw +spores +telangana +vinci +inexpensive +nuclei +322 +jang +nme +soho +spd +##ign +cradled +receptionist +pow +##43 +##rika +fascism +##ifer +experimenting +##ading +##iec +##region +345 +jocelyn +maris +stair +nocturnal +toro +constabulary +elgin +##kker +msc +##giving +##schen +##rase +doherty +doping +sarcastically +batter +maneuvers +##cano +##apple +##gai +##git +intrinsic +##nst +##stor +1753 +showtime +cafes +gasps +lviv +ushered +##thed +fours +restart +astonishment +transmitting +flyer +shrugs +##sau +intriguing +cones +dictated +mushrooms +medial +##kovsky +##elman +escorting +gaped +##26 +godfather +##door +##sell +djs +recaptured +timetable +vila +1710 +3a +aerodrome +mortals +scientology +##orne +angelina +mag +convection +unpaid +insertion +intermittent +lego +##nated +endeavor +kota +pereira +##lz +304 +bwv +glamorgan +insults +agatha +fey +##cend +fleetwood +mahogany +protruding +steamship +zeta +##arty +mcguire +suspense +##sphere +advising +urges +##wala +hurriedly +meteor +gilded +inline +arroyo +stalker +##oge +excitedly +revered +##cure +earle +introductory +##break +##ilde +mutants +puff +pulses +reinforcement +##haling +curses +lizards +stalk +correlated +##fixed +fallout +macquarie +##unas +bearded +denton +heaving +802 +##ocation +winery +assign +dortmund +##lkirk +everest +invariant +charismatic +susie +##elling +bled +lesley +telegram +sumner +bk +##ogen +##к +wilcox +needy +colbert +duval +##iferous +##mbled +allotted +attends +imperative +##hita +replacements +hawker +##inda +insurgency +##zee +##eke +casts +##yla +680 +ives +transitioned +##pack +##powering +authoritative +baylor +flex +cringed +plaintiffs +woodrow +##skie +drastic +ape +aroma +unfolded +commotion +nt +preoccupied +theta +routines +lasers +privatization +wand +domino +ek +clenching +nsa +strategically +showered +bile +handkerchief +pere +storing +christophe +insulting +316 +nakamura +romani +asiatic +magdalena +palma +cruises +stripping +405 +konstantin +soaring +##berman +colloquially +forerunner +havilland +incarcerated +parasites +sincerity +##utus +disks +plank +saigon +##ining +corbin +homo +ornaments +powerhouse +##tlement +chong +fastened +feasibility +idf +morphological +usable +##nish +##zuki +aqueduct +jaguars +keepers +##flies +aleksandr +faust +assigns +ewing +bacterium +hurled +tricky +hungarians +integers +wallis +321 +yamaha +##isha +hushed +oblivion +aviator +evangelist +friars +##eller +monograph +ode +##nary +airplanes +labourers +charms +##nee +1661 +hagen +tnt +rudder +fiesta +transcript +dorothea +ska +inhibitor +maccabi +retorted +raining +encompassed +clauses +menacing +1642 +lineman +##gist +vamps +##ape +##dick +gloom +##rera +dealings +easing +seekers +##nut +##pment +helens +unmanned +##anu +##isson +basics +##amy +##ckman +adjustments +1688 +brutality +horne +##zell +sui +##55 +##mable +aggregator +##thal +rhino +##drick +##vira +counters +zoom +##01 +##rting +mn +montenegrin +packard +##unciation +##♭ +##kki +reclaim +scholastic +thugs +pulsed +##icia +syriac +quan +saddam +banda +kobe +blaming +buddies +dissent +##lusion +##usia +corbett +jaya +delle +erratic +lexie +##hesis +435 +amiga +hermes +##pressing +##leen +chapels +gospels +jamal +##uating +compute +revolving +warp +##sso +##thes +armory +##eras +##gol +antrim +loki +##kow +##asian +##good +##zano +braid +handwriting +subdistrict +funky +pantheon +##iculate +concurrency +estimation +improper +juliana +##his +newcomers +johnstone +staten +communicated +##oco +##alle +sausage +stormy +##stered +##tters +superfamily +##grade +acidic +collateral +tabloid +##oped +##rza +bladder +austen +##ellant +mcgraw +##hay +hannibal +mein +aquino +lucifer +wo +badger +boar +cher +christensen +greenberg +interruption +##kken +jem +244 +mocked +bottoms +cambridgeshire +##lide +sprawling +##bbly +eastwood +ghent +synth +##buck +advisers +##bah +nominally +hapoel +qu +daggers +estranged +fabricated +towels +vinnie +wcw +misunderstanding +anglia +nothin +unmistakable +##dust +##lova +chilly +marquette +truss +##edge +##erine +reece +##lty +##chemist +##connected +272 +308 +41st +bash +raion +waterfalls +##ump +##main +labyrinth +queue +theorist +##istle +bharatiya +flexed +soundtracks +rooney +leftist +patrolling +wharton +plainly +alleviate +eastman +schuster +topographic +engages +immensely +unbearable +fairchild +1620 +dona +lurking +parisian +oliveira +ia +indictment +hahn +bangladeshi +##aster +vivo +##uming +##ential +antonia +expects +indoors +kildare +harlan +##logue +##ogenic +##sities +forgiven +##wat +childish +tavi +##mide +##orra +plausible +grimm +successively +scooted +##bola +##dget +##rith +spartans +emery +flatly +azure +epilogue +##wark +flourish +##iny +##tracted +##overs +##oshi +bestseller +distressed +receipt +spitting +hermit +topological +##cot +drilled +subunit +francs +##layer +eel +##fk +##itas +octopus +footprint +petitions +ufo +##say +##foil +interfering +leaking +palo +##metry +thistle +valiant +##pic +narayan +mcpherson +##fast +gonzales +##ym +##enne +dustin +novgorod +solos +##zman +doin +##raph +##patient +##meyer +soluble +ashland +cuffs +carole +pendleton +whistling +vassal +##river +deviation +revisited +constituents +rallied +rotate +loomed +##eil +##nting +amateurs +augsburg +auschwitz +crowns +skeletons +##cona +bonnet +257 +dummy +globalization +simeon +sleeper +mandal +differentiated +##crow +##mare +milne +bundled +exasperated +talmud +owes +segregated +##feng +##uary +dentist +piracy +props +##rang +devlin +##torium +malicious +paws +##laid +dependency +##ergy +##fers +##enna +258 +pistons +rourke +jed +grammatical +tres +maha +wig +512 +ghostly +jayne +##achal +##creen +##ilis +##lins +##rence +designate +##with +arrogance +cambodian +clones +showdown +throttle +twain +##ception +lobes +metz +nagoya +335 +braking +##furt +385 +roaming +##minster +amin +crippled +##37 +##llary +indifferent +hoffmann +idols +intimidating +1751 +261 +influenza +memo +onions +1748 +bandage +consciously +##landa +##rage +clandestine +observes +swiped +tangle +##ener +##jected +##trum +##bill +##lta +hugs +congresses +josiah +spirited +##dek +humanist +managerial +filmmaking +inmate +rhymes +debuting +grimsby +ur +##laze +duplicate +vigor +##tf +republished +bolshevik +refurbishment +antibiotics +martini +methane +newscasts +royale +horizons +levant +iain +visas +##ischen +paler +##around +manifestation +snuck +alf +chop +futile +pedestal +rehab +##kat +bmg +kerman +res +fairbanks +jarrett +abstraction +saharan +##zek +1746 +procedural +clearer +kincaid +sash +luciano +##ffey +crunch +helmut +##vara +revolutionaries +##tute +creamy +leach +##mmon +1747 +permitting +nes +plight +wendell +##lese +contra +ts +clancy +ipa +mach +staples +autopsy +disturbances +nueva +karin +pontiac +##uding +proxy +venerable +haunt +leto +bergman +expands +##helm +wal +##pipe +canning +celine +cords +obesity +##enary +intrusion +planner +##phate +reasoned +sequencing +307 +harrow +##chon +##dora +marred +mcintyre +repay +tarzan +darting +248 +harrisburg +margarita +repulsed +##hur +##lding +belinda +hamburger +novo +compliant +runways +bingham +registrar +skyscraper +ic +cuthbert +improvisation +livelihood +##corp +##elial +admiring +##dened +sporadic +believer +casablanca +popcorn +##29 +asha +shovel +##bek +##dice +coiled +tangible +##dez +casper +elsie +resin +tenderness +rectory +##ivision +avail +sonar +##mori +boutique +##dier +guerre +bathed +upbringing +vaulted +sandals +blessings +##naut +##utnant +1680 +306 +foxes +pia +corrosion +hesitantly +confederates +crystalline +footprints +shapiro +tirana +valentin +drones +45th +microscope +shipments +texted +inquisition +wry +guernsey +unauthorized +resigning +760 +ripple +schubert +stu +reassure +felony +##ardo +brittle +koreans +##havan +##ives +dun +implicit +tyres +##aldi +##lth +magnolia +##ehan +##puri +##poulos +aggressively +fei +gr +familiarity +##poo +indicative +##trust +fundamentally +jimmie +overrun +395 +anchors +moans +##opus +britannia +armagh +##ggle +purposely +seizing +##vao +bewildered +mundane +avoidance +cosmopolitan +geometridae +quartermaster +caf +415 +chatter +engulfed +gleam +purge +##icate +juliette +jurisprudence +guerra +revisions +##bn +casimir +brew +##jm +1749 +clapton +cloudy +conde +hermitage +278 +simulations +torches +vincenzo +matteo +##rill +hidalgo +booming +westbound +accomplishment +tentacles +unaffected +##sius +annabelle +flopped +sloping +##litz +dreamer +interceptor +vu +##loh +consecration +copying +messaging +breaker +climates +hospitalized +1752 +torino +afternoons +winfield +witnessing +##teacher +breakers +choirs +sawmill +coldly +##ege +sipping +haste +uninhabited +conical +bibliography +pamphlets +severn +edict +##oca +deux +illnesses +grips +##pl +rehearsals +sis +thinkers +tame +##keepers +1690 +acacia +reformer +##osed +##rys +shuffling +##iring +##shima +eastbound +ionic +rhea +flees +littered +##oum +rocker +vomiting +groaning +champ +overwhelmingly +civilizations +paces +sloop +adoptive +##tish +skaters +##vres +aiding +mango +##joy +nikola +shriek +##ignon +pharmaceuticals +##mg +tuna +calvert +gustavo +stocked +yearbook +##urai +##mana +computed +subsp +riff +hanoi +kelvin +hamid +moors +pastures +summons +jihad +nectar +##ctors +bayou +untitled +pleasing +vastly +republics +intellect +##η +##ulio +##tou +crumbling +stylistic +sb +##ی +consolation +frequented +h₂o +walden +widows +##iens +404 +##ignment +chunks +improves +288 +grit +recited +##dev +snarl +sociological +##arte +##gul +inquired +##held +bruise +clube +consultancy +homogeneous +hornets +multiplication +pasta +prick +savior +##grin +##kou +##phile +yoon +##gara +grimes +vanishing +cheering +reacting +bn +distillery +##quisite +##vity +coe +dockyard +massif +##jord +escorts +voss +##valent +byte +chopped +hawke +illusions +workings +floats +##koto +##vac +kv +annapolis +madden +##onus +alvaro +noctuidae +##cum +##scopic +avenge +steamboat +forte +illustrates +erika +##trip +570 +dew +nationalities +bran +manifested +thirsty +diversified +muscled +reborn +##standing +arson +##lessness +##dran +##logram +##boys +##kushima +##vious +willoughby +##phobia +286 +alsace +dashboard +yuki +##chai +granville +myspace +publicized +tricked +##gang +adjective +##ater +relic +reorganisation +enthusiastically +indications +saxe +##lassified +consolidate +iec +padua +helplessly +ramps +renaming +regulars +pedestrians +accents +convicts +inaccurate +lowers +mana +##pati +barrie +bjp +outta +someplace +berwick +flanking +invoked +marrow +sparsely +excerpts +clothed +rei +##ginal +wept +##straße +##vish +alexa +excel +##ptive +membranes +aquitaine +creeks +cutler +sheppard +implementations +ns +##dur +fragrance +budge +concordia +magnesium +marcelo +##antes +gladly +vibrating +##rral +##ggles +montrose +##omba +lew +seamus +1630 +cocky +##ament +##uen +bjorn +##rrick +fielder +fluttering +##lase +methyl +kimberley +mcdowell +reductions +barbed +##jic +##tonic +aeronautical +condensed +distracting +##promising +huffed +##cala +##sle +claudius +invincible +missy +pious +balthazar +ci +##lang +butte +combo +orson +##dication +myriad +1707 +silenced +##fed +##rh +coco +netball +yourselves +##oza +clarify +heller +peg +durban +etudes +offender +roast +blackmail +curvature +##woods +vile +309 +illicit +suriname +##linson +overture +1685 +bubbling +gymnast +tucking +##mming +##ouin +maldives +##bala +gurney +##dda +##eased +##oides +backside +pinto +jars +racehorse +tending +##rdial +baronetcy +wiener +duly +##rke +barbarian +cupping +flawed +##thesis +bertha +pleistocene +puddle +swearing +##nob +##tically +fleeting +prostate +amulet +educating +##mined +##iti +##tler +75th +jens +respondents +analytics +cavaliers +papacy +raju +##iente +##ulum +##tip +funnel +271 +disneyland +##lley +sociologist +##iam +2500 +faulkner +louvre +menon +##dson +276 +##ower +afterlife +mannheim +peptide +referees +comedians +meaningless +##anger +##laise +fabrics +hurley +renal +sleeps +##bour +##icle +breakout +kristin +roadside +animator +clover +disdain +unsafe +redesign +##urity +firth +barnsley +portage +reset +narrows +268 +commandos +expansive +speechless +tubular +##lux +essendon +eyelashes +smashwords +##yad +##bang +##claim +craved +sprinted +chet +somme +astor +wrocław +orton +266 +bane +##erving +##uing +mischief +##amps +##sund +scaling +terre +##xious +impairment +offenses +undermine +moi +soy +contiguous +arcadia +inuit +seam +##tops +macbeth +rebelled +##icative +##iot +590 +elaborated +frs +uniformed +##dberg +259 +powerless +priscilla +stimulated +980 +qc +arboretum +frustrating +trieste +bullock +##nified +enriched +glistening +intern +##adia +locus +nouvelle +ollie +ike +lash +starboard +ee +tapestry +headlined +hove +rigged +##vite +pollock +##yme +thrive +clustered +cas +roi +gleamed +olympiad +##lino +pressured +regimes +##hosis +##lick +ripley +##ophone +kickoff +gallon +rockwell +##arable +crusader +glue +revolutions +scrambling +1714 +grover +##jure +englishman +aztec +263 +contemplating +coven +ipad +preach +triumphant +tufts +##esian +rotational +##phus +328 +falkland +##brates +strewn +clarissa +rejoin +environmentally +glint +banded +drenched +moat +albanians +johor +rr +maestro +malley +nouveau +shaded +taxonomy +v6 +adhere +bunk +airfields +##ritan +1741 +encompass +remington +tran +##erative +amelie +mazda +friar +morals +passions +##zai +breadth +vis +##hae +argus +burnham +caressing +insider +rudd +##imov +##mini +##rso +italianate +murderous +textual +wainwright +armada +bam +weave +timer +##taken +##nh +fra +##crest +ardent +salazar +taps +tunis +##ntino +allegro +gland +philanthropic +##chester +implication +##optera +esq +judas +noticeably +wynn +##dara +inched +indexed +crises +villiers +bandit +royalties +patterned +cupboard +interspersed +accessory +isla +kendrick +entourage +stitches +##esthesia +headwaters +##ior +interlude +distraught +draught +1727 +##basket +biased +sy +transient +triad +subgenus +adapting +kidd +shortstop +##umatic +dimly +spiked +mcleod +reprint +nellie +pretoria +windmill +##cek +singled +##mps +273 +reunite +##orous +747 +bankers +outlying +##omp +##ports +##tream +apologies +cosmetics +patsy +##deh +##ocks +##yson +bender +nantes +serene +##nad +lucha +mmm +323 +##cius +##gli +cmll +coinage +nestor +juarez +##rook +smeared +sprayed +twitching +sterile +irina +embodied +juveniles +enveloped +miscellaneous +cancers +dq +gulped +luisa +crested +swat +donegal +ref +##anov +##acker +hearst +mercantile +##lika +doorbell +ua +vicki +##alla +##som +bilbao +psychologists +stryker +sw +horsemen +turkmenistan +wits +##national +anson +mathew +screenings +##umb +rihanna +##agne +##nessy +aisles +##iani +##osphere +hines +kenton +saskatoon +tasha +truncated +##champ +##itan +mildred +advises +fredrik +interpreting +inhibitors +##athi +spectroscopy +##hab +##kong +karim +panda +##oia +##nail +##vc +conqueror +kgb +leukemia +##dity +arrivals +cheered +pisa +phosphorus +shielded +##riated +mammal +unitarian +urgently +chopin +sanitary +##mission +spicy +drugged +hinges +##tort +tipping +trier +impoverished +westchester +##caster +267 +epoch +nonstop +##gman +##khov +aromatic +centrally +cerro +##tively +##vio +billions +modulation +sedimentary +283 +facilitating +outrageous +goldstein +##eak +##kt +ld +maitland +penultimate +pollard +##dance +fleets +spaceship +vertebrae +##nig +alcoholism +als +recital +##bham +##ference +##omics +m2 +##bm +trois +##tropical +##в +commemorates +##meric +marge +##raction +1643 +670 +cosmetic +ravaged +##ige +catastrophe +eng +##shida +albrecht +arterial +bellamy +decor +harmon +##rde +bulbs +synchronized +vito +easiest +shetland +shielding +wnba +##glers +##ssar +##riam +brianna +cumbria +##aceous +##rard +cores +thayer +##nsk +brood +hilltop +luminous +carts +keynote +larkin +logos +##cta +##ا +##mund +##quay +lilith +tinted +277 +wrestle +mobilization +##uses +sequential +siam +bloomfield +takahashi +274 +##ieving +presenters +ringo +blazed +witty +##oven +##ignant +devastation +haydn +harmed +newt +therese +##peed +gershwin +molina +rabbis +sudanese +001 +innate +restarted +##sack +##fus +slices +wb +##shah +enroll +hypothetical +hysterical +1743 +fabio +indefinite +warped +##hg +exchanging +525 +unsuitable +##sboro +gallo +1603 +bret +cobalt +homemade +##hunter +mx +operatives +##dhar +terraces +durable +latch +pens +whorls +##ctuated +##eaux +billing +ligament +succumbed +##gly +regulators +spawn +##brick +##stead +filmfare +rochelle +##nzo +1725 +circumstance +saber +supplements +##nsky +##tson +crowe +wellesley +carrot +##9th +##movable +primate +drury +sincerely +topical +##mad +##rao +callahan +kyiv +smarter +tits +undo +##yeh +announcements +anthologies +barrio +nebula +##islaus +##shaft +##tyn +bodyguards +2021 +assassinate +barns +emmett +scully +##mah +##yd +##eland +##tino +##itarian +demoted +gorman +lashed +prized +adventist +writ +##gui +alla +invertebrates +##ausen +1641 +amman +1742 +align +healy +redistribution +##gf +##rize +insulation +##drop +adherents +hezbollah +vitro +ferns +yanking +269 +php +registering +uppsala +cheerleading +confines +mischievous +tully +##ross +49th +docked +roam +stipulated +pumpkin +##bry +prompt +##ezer +blindly +shuddering +craftsmen +frail +scented +katharine +scramble +shaggy +sponge +helix +zaragoza +279 +##52 +43rd +backlash +fontaine +seizures +posse +cowan +nonfiction +telenovela +wwii +hammered +undone +##gpur +encircled +irs +##ivation +artefacts +oneself +searing +smallpox +##belle +##osaurus +shandong +breached +upland +blushing +rankin +infinitely +psyche +tolerated +docking +evicted +##col +unmarked +##lving +gnome +lettering +litres +musique +##oint +benevolent +##jal +blackened +##anna +mccall +racers +tingle +##ocene +##orestation +introductions +radically +292 +##hiff +##باد +1610 +1739 +munchen +plead +##nka +condo +scissors +##sight +##tens +apprehension +##cey +##yin +hallmark +watering +formulas +sequels +##llas +aggravated +bae +commencing +##building +enfield +prohibits +marne +vedic +civilized +euclidean +jagger +beforehand +blasts +dumont +##arney +##nem +740 +conversions +hierarchical +rios +simulator +##dya +##lellan +hedges +oleg +thrusts +shadowed +darby +maximize +1744 +gregorian +##nded +##routed +sham +unspecified +##hog +emory +factual +##smo +##tp +fooled +##rger +ortega +wellness +marlon +##oton +##urance +casket +keating +ley +enclave +##ayan +char +influencing +jia +##chenko +412 +ammonia +erebidae +incompatible +violins +cornered +##arat +grooves +astronauts +columbian +rampant +fabrication +kyushu +mahmud +vanish +##dern +mesopotamia +##lete +ict +##rgen +caspian +kenji +pitted +##vered +999 +grimace +roanoke +tchaikovsky +twinned +##analysis +##awan +xinjiang +arias +clemson +kazakh +sizable +1662 +##khand +##vard +plunge +tatum +vittorio +##nden +cholera +##dana +##oper +bracing +indifference +projectile +superliga +##chee +realises +upgrading +299 +porte +retribution +##vies +nk +stil +##resses +ama +bureaucracy +blackberry +bosch +testosterone +collapses +greer +##pathic +ioc +fifties +malls +##erved +bao +baskets +adolescents +siegfried +##osity +##tosis +mantra +detecting +existent +fledgling +##cchi +dissatisfied +gan +telecommunication +mingled +sobbed +6000 +controversies +outdated +taxis +##raus +fright +slams +##lham +##fect +##tten +detectors +fetal +tanned +##uw +fray +goth +olympian +skipping +mandates +scratches +sheng +unspoken +hyundai +tracey +hotspur +restrictive +##buch +americana +mundo +##bari +burroughs +diva +vulcan +##6th +distinctions +thumping +##ngen +mikey +sheds +fide +rescues +springsteen +vested +valuation +##ece +##ely +pinnacle +rake +sylvie +##edo +almond +quivering +##irus +alteration +faltered +##wad +51st +hydra +ticked +##kato +recommends +##dicated +antigua +arjun +stagecoach +wilfred +trickle +pronouns +##pon +aryan +nighttime +##anian +gall +pea +stitch +##hei +leung +milos +##dini +eritrea +nexus +starved +snowfall +kant +parasitic +cot +discus +hana +strikers +appleton +kitchens +##erina +##partisan +##itha +##vius +disclose +metis +##channel +1701 +tesla +##vera +fitch +1735 +blooded +##tila +decimal +##tang +##bai +cyclones +eun +bottled +peas +pensacola +basha +bolivian +crabs +boil +lanterns +partridge +roofed +1645 +necks +##phila +opined +patting +##kla +##lland +chuckles +volta +whereupon +##nche +devout +euroleague +suicidal +##dee +inherently +involuntary +knitting +nasser +##hide +puppets +colourful +courageous +southend +stills +miraculous +hodgson +richer +rochdale +ethernet +greta +uniting +prism +umm +##haya +##itical +##utation +deterioration +pointe +prowess +##ropriation +lids +scranton +billings +subcontinent +##koff +##scope +brute +kellogg +psalms +degraded +##vez +stanisław +##ructured +ferreira +pun +astonishing +gunnar +##yat +arya +prc +gottfried +##tight +excursion +##ographer +dina +##quil +##nare +huffington +illustrious +wilbur +gundam +verandah +##zard +naacp +##odle +constructive +fjord +kade +##naud +generosity +thrilling +baseline +cayman +frankish +plastics +accommodations +zoological +##fting +cedric +qb +motorized +##dome +##otted +squealed +tackled +canucks +budgets +situ +asthma +dail +gabled +grasslands +whimpered +writhing +judgments +##65 +minnie +pv +##carbon +bananas +grille +domes +monique +odin +maguire +markham +tierney +##estra +##chua +libel +poke +speedy +atrium +laval +notwithstanding +##edly +fai +kala +##sur +robb +##sma +listings +luz +supplementary +tianjin +##acing +enzo +jd +ric +scanner +croats +transcribed +##49 +arden +cv +##hair +##raphy +##lver +##uy +357 +seventies +staggering +alam +horticultural +hs +regression +timbers +blasting +##ounded +montagu +manipulating +##cit +catalytic +1550 +troopers +##meo +condemnation +fitzpatrick +##oire +##roved +inexperienced +1670 +castes +##lative +outing +314 +dubois +flicking +quarrel +ste +learners +1625 +iq +whistled +##class +282 +classify +tariffs +temperament +355 +folly +liszt +##yles +immersed +jordanian +ceasefire +apparel +extras +maru +fished +##bio +harta +stockport +assortment +craftsman +paralysis +transmitters +##cola +blindness +##wk +fatally +proficiency +solemnly +##orno +repairing +amore +groceries +ultraviolet +##chase +schoolhouse +##tua +resurgence +nailed +##otype +##× +ruse +saliva +diagrams +##tructing +albans +rann +thirties +1b +antennas +hilarious +cougars +paddington +stats +##eger +breakaway +ipod +reza +authorship +prohibiting +scoffed +##etz +##ttle +conscription +defected +trondheim +##fires +ivanov +keenan +##adan +##ciful +##fb +##slow +locating +##ials +##tford +cadiz +basalt +blankly +interned +rags +rattling +##tick +carpathian +reassured +sync +bum +guildford +iss +staunch +##onga +astronomers +sera +sofie +emergencies +susquehanna +##heard +duc +mastery +vh1 +williamsburg +bayer +buckled +craving +##khan +##rdes +bloomington +##write +alton +barbecue +##bians +justine +##hri +##ndt +delightful +smartphone +newtown +photon +retrieval +peugeot +hissing +##monium +##orough +flavors +lighted +relaunched +tainted +##games +##lysis +anarchy +microscopic +hopping +adept +evade +evie +##beau +inhibit +sinn +adjustable +hurst +intuition +wilton +cisco +44th +lawful +lowlands +stockings +thierry +##dalen +##hila +##nai +fates +prank +tb +maison +lobbied +provocative +1724 +4a +utopia +##qual +carbonate +gujarati +purcell +##rford +curtiss +##mei +overgrown +arenas +mediation +swallows +##rnik +respectful +turnbull +##hedron +##hope +alyssa +ozone +##ʻi +ami +gestapo +johansson +snooker +canteen +cuff +declines +empathy +stigma +##ags +##iner +##raine +taxpayers +gui +volga +##wright +##copic +lifespan +overcame +tattooed +enactment +giggles +##ador +##camp +barrington +bribe +obligatory +orbiting +peng +##enas +elusive +sucker +##vating +cong +hardship +empowered +anticipating +estrada +cryptic +greasy +detainees +planck +sudbury +plaid +dod +marriott +kayla +##ears +##vb +##zd +mortally +##hein +cognition +radha +319 +liechtenstein +meade +richly +argyle +harpsichord +liberalism +trumpets +lauded +tyrant +salsa +tiled +lear +promoters +reused +slicing +trident +##chuk +##gami +##lka +cantor +checkpoint +##points +gaul +leger +mammalian +##tov +##aar +##schaft +doha +frenchman +nirvana +##vino +delgado +headlining +##eron +##iography +jug +tko +1649 +naga +intersections +##jia +benfica +nawab +##suka +ashford +gulp +##deck +##vill +##rug +brentford +frazier +pleasures +dunne +potsdam +shenzhen +dentistry +##tec +flanagan +##dorff +##hear +chorale +dinah +prem +quezon +##rogated +relinquished +sutra +terri +##pani +flaps +##rissa +poly +##rnet +homme +aback +##eki +linger +womb +##kson +##lewood +doorstep +orthodoxy +threaded +westfield +##rval +dioceses +fridays +subsided +##gata +loyalists +##biotic +##ettes +letterman +lunatic +prelate +tenderly +invariably +souza +thug +winslow +##otide +furlongs +gogh +jeopardy +##runa +pegasus +##umble +humiliated +standalone +tagged +##roller +freshmen +klan +##bright +attaining +initiating +transatlantic +logged +viz +##uance +1723 +combatants +intervening +stephane +chieftain +despised +grazed +317 +cdc +galveston +godzilla +macro +simulate +##planes +parades +##esses +960 +##ductive +##unes +equator +overdose +##cans +##hosh +##lifting +joshi +epstein +sonora +treacherous +aquatics +manchu +responsive +##sation +supervisory +##christ +##llins +##ibar +##balance +##uso +kimball +karlsruhe +mab +##emy +ignores +phonetic +reuters +spaghetti +820 +almighty +danzig +rumbling +tombstone +designations +lured +outset +##felt +supermarkets +##wt +grupo +kei +kraft +susanna +##blood +comprehension +genealogy +##aghan +##verted +redding +##ythe +1722 +bowing +##pore +##roi +lest +sharpened +fulbright +valkyrie +sikhs +##unds +swans +bouquet +merritt +##tage +##venting +commuted +redhead +clerks +leasing +cesare +dea +hazy +##vances +fledged +greenfield +servicemen +##gical +armando +blackout +dt +sagged +downloadable +intra +potion +pods +##4th +##mism +xp +attendants +gambia +stale +##ntine +plump +asteroids +rediscovered +buds +flea +hive +##neas +1737 +classifications +debuts +##eles +olympus +scala +##eurs +##gno +##mute +hummed +sigismund +visuals +wiggled +await +pilasters +clench +sulfate +##ances +bellevue +enigma +trainee +snort +##sw +clouded +denim +##rank +##rder +churning +hartman +lodges +riches +sima +##missible +accountable +socrates +regulates +mueller +##cr +1702 +avoids +solids +himalayas +nutrient +pup +##jevic +squat +fades +nec +##lates +##pina +##rona +##ου +privateer +tequila +##gative +##mpton +apt +hornet +immortals +##dou +asturias +cleansing +dario +##rries +##anta +etymology +servicing +zhejiang +##venor +##nx +horned +erasmus +rayon +relocating +£10 +##bags +escalated +promenade +stubble +2010s +artisans +axial +liquids +mora +sho +yoo +##tsky +bundles +oldies +##nally +notification +bastion +##ths +sparkle +##lved +1728 +leash +pathogen +highs +##hmi +immature +880 +gonzaga +ignatius +mansions +monterrey +sweets +bryson +##loe +polled +regatta +brightest +pei +rosy +squid +hatfield +payroll +addict +meath +cornerback +heaviest +lodging +##mage +capcom +rippled +##sily +barnet +mayhem +ymca +snuggled +rousseau +##cute +blanchard +284 +fragmented +leighton +chromosomes +risking +##md +##strel +##utter +corinne +coyotes +cynical +hiroshi +yeomanry +##ractive +ebook +grading +mandela +plume +agustin +magdalene +##rkin +bea +femme +trafford +##coll +##lun +##tance +52nd +fourier +upton +##mental +camilla +gust +iihf +islamabad +longevity +##kala +feldman +netting +##rization +endeavour +foraging +mfa +orr +##open +greyish +contradiction +graz +##ruff +handicapped +marlene +tweed +oaxaca +spp +campos +miocene +pri +configured +cooks +pluto +cozy +pornographic +##entes +70th +fairness +glided +jonny +lynne +rounding +sired +##emon +##nist +remade +uncover +##mack +complied +lei +newsweek +##jured +##parts +##enting +##pg +293 +finer +guerrillas +athenian +deng +disused +stepmother +accuse +gingerly +seduction +521 +confronting +##walker +##going +gora +nostalgia +sabres +virginity +wrenched +##minated +syndication +wielding +eyre +##56 +##gnon +##igny +behaved +taxpayer +sweeps +##growth +childless +gallant +##ywood +amplified +geraldine +scrape +##ffi +babylonian +fresco +##rdan +##kney +##position +1718 +restricting +tack +fukuoka +osborn +selector +partnering +##dlow +318 +gnu +kia +tak +whitley +gables +##54 +##mania +mri +softness +immersion +##bots +##evsky +1713 +chilling +insignificant +pcs +##uis +elites +lina +purported +supplemental +teaming +##americana +##dding +##inton +proficient +rouen +##nage +##rret +niccolo +selects +##bread +fluffy +1621 +gruff +knotted +mukherjee +polgara +thrash +nicholls +secluded +smoothing +thru +corsica +loaf +whitaker +inquiries +##rrier +##kam +indochina +289 +marlins +myles +peking +##tea +extracts +pastry +superhuman +connacht +vogel +##ditional +##het +##udged +##lash +gloss +quarries +refit +teaser +##alic +##gaon +20s +materialized +sling +camped +pickering +tung +tracker +pursuant +##cide +cranes +soc +##cini +##typical +##viere +anhalt +overboard +workout +chores +fares +orphaned +stains +##logie +fenton +surpassing +joyah +triggers +##itte +grandmaster +##lass +##lists +clapping +fraudulent +ledger +nagasaki +##cor +##nosis +##tsa +eucalyptus +tun +##icio +##rney +##tara +dax +heroism +ina +wrexham +onboard +unsigned +##dates +moshe +galley +winnie +droplets +exiles +praises +watered +noodles +##aia +fein +adi +leland +multicultural +stink +bingo +comets +erskine +modernized +canned +constraint +domestically +chemotherapy +featherweight +stifled +##mum +darkly +irresistible +refreshing +hasty +isolate +##oys +kitchener +planners +##wehr +cages +yarn +implant +toulon +elects +childbirth +yue +##lind +##lone +cn +rightful +sportsman +junctions +remodeled +specifies +##rgh +291 +##oons +complimented +##urgent +lister +ot +##logic +bequeathed +cheekbones +fontana +gabby +##dial +amadeus +corrugated +maverick +resented +triangles +##hered +##usly +nazareth +tyrol +1675 +assent +poorer +sectional +aegean +##cous +296 +nylon +ghanaian +##egorical +##weig +cushions +forbid +fusiliers +obstruction +somerville +##scia +dime +earrings +elliptical +leyte +oder +polymers +timmy +atm +midtown +piloted +settles +continual +externally +mayfield +##uh +enrichment +henson +keane +persians +1733 +benji +braden +pep +324 +##efe +contenders +pepsi +valet +##isches +298 +##asse +##earing +goofy +stroll +##amen +authoritarian +occurrences +adversary +ahmedabad +tangent +toppled +dorchester +1672 +modernism +marxism +islamist +charlemagne +exponential +racks +unicode +brunette +mbc +pic +skirmish +##bund +##lad +##powered +##yst +hoisted +messina +shatter +##ctum +jedi +vantage +##music +##neil +clemens +mahmoud +corrupted +authentication +lowry +nils +##washed +omnibus +wounding +jillian +##itors +##opped +serialized +narcotics +handheld +##arm +##plicity +intersecting +stimulating +##onis +crate +fellowships +hemingway +casinos +climatic +fordham +copeland +drip +beatty +leaflets +robber +brothel +madeira +##hedral +sphinx +ultrasound +##vana +valor +forbade +leonid +villas +##aldo +duane +marquez +##cytes +disadvantaged +forearms +kawasaki +reacts +consular +lax +uncles +uphold +##hopper +concepcion +dorsey +lass +##izan +arching +passageway +1708 +researches +tia +internationals +##graphs +##opers +distinguishes +javanese +divert +##uven +plotted +##listic +##rwin +##erik +##tify +affirmative +signifies +validation +##bson +kari +felicity +georgina +zulu +##eros +##rained +##rath +overcoming +##dot +argyll +##rbin +1734 +chiba +ratification +windy +earls +parapet +##marks +hunan +pristine +astrid +punta +##gart +brodie +##kota +##oder +malaga +minerva +rouse +##phonic +bellowed +pagoda +portals +reclamation +##gur +##odies +##⁄₄ +parentheses +quoting +allergic +palette +showcases +benefactor +heartland +nonlinear +##tness +bladed +cheerfully +scans +##ety +##hone +1666 +girlfriends +pedersen +hiram +sous +##liche +##nator +1683 +##nery +##orio +##umen +bobo +primaries +smiley +##cb +unearthed +uniformly +fis +metadata +1635 +ind +##oted +recoil +##titles +##tura +##ια +406 +hilbert +jamestown +mcmillan +tulane +seychelles +##frid +antics +coli +fated +stucco +##grants +1654 +bulky +accolades +arrays +caledonian +carnage +optimism +puebla +##tative +##cave +enforcing +rotherham +seo +dunlop +aeronautics +chimed +incline +zoning +archduke +hellenistic +##oses +##sions +candi +thong +##ople +magnate +rustic +##rsk +projective +slant +##offs +danes +hollis +vocalists +##ammed +congenital +contend +gesellschaft +##ocating +##pressive +douglass +quieter +##cm +##kshi +howled +salim +spontaneously +townsville +buena +southport +##bold +kato +1638 +faerie +stiffly +##vus +##rled +297 +flawless +realising +taboo +##7th +bytes +straightening +356 +jena +##hid +##rmin +cartwright +berber +bertram +soloists +411 +noses +417 +coping +fission +hardin +inca +##cen +1717 +mobilized +vhf +##raf +biscuits +curate +##85 +##anial +331 +gaunt +neighbourhoods +1540 +##abas +blanca +bypassed +sockets +behold +coincidentally +##bane +nara +shave +splinter +terrific +##arion +##erian +commonplace +juris +redwood +waistband +boxed +caitlin +fingerprints +jennie +naturalized +##ired +balfour +craters +jody +bungalow +hugely +quilt +glitter +pigeons +undertaker +bulging +constrained +goo +##sil +##akh +assimilation +reworked +##person +persuasion +##pants +felicia +##cliff +##ulent +1732 +explodes +##dun +##inium +##zic +lyman +vulture +hog +overlook +begs +northwards +ow +spoil +##urer +fatima +favorably +accumulate +sargent +sorority +corresponded +dispersal +kochi +toned +##imi +##lita +internacional +newfound +##agger +##lynn +##rigue +booths +peanuts +##eborg +medicare +muriel +nur +##uram +crates +millennia +pajamas +worsened +##breakers +jimi +vanuatu +yawned +##udeau +carousel +##hony +hurdle +##ccus +##mounted +##pod +rv +##eche +airship +ambiguity +compulsion +recapture +##claiming +arthritis +##osomal +1667 +asserting +ngc +sniffing +dade +discontent +glendale +ported +##amina +defamation +rammed +##scent +fling +livingstone +##fleet +875 +##ppy +apocalyptic +comrade +lcd +##lowe +cessna +eine +persecuted +subsistence +demi +hoop +reliefs +710 +coptic +progressing +stemmed +perpetrators +1665 +priestess +##nio +dobson +ebony +rooster +itf +tortricidae +##bbon +##jian +cleanup +##jean +##øy +1721 +eighties +taxonomic +holiness +##hearted +##spar +antilles +showcasing +stabilized +##nb +gia +mascara +michelangelo +dawned +##uria +##vinsky +extinguished +fitz +grotesque +£100 +##fera +##loid +##mous +barges +neue +throbbed +cipher +johnnie +##a1 +##mpt +outburst +##swick +spearheaded +administrations +c1 +heartbreak +pixels +pleasantly +##enay +lombardy +plush +##nsed +bobbie +##hly +reapers +tremor +xiang +minogue +substantive +hitch +barak +##wyl +kwan +##encia +910 +obscene +elegance +indus +surfer +bribery +conserve +##hyllum +##masters +horatio +##fat +apes +rebound +psychotic +##pour +iteration +##mium +##vani +botanic +horribly +antiques +dispose +paxton +##hli +##wg +timeless +1704 +disregard +engraver +hounds +##bau +##version +looted +uno +facilitates +groans +masjid +rutland +antibody +disqualification +decatur +footballers +quake +slacks +48th +rein +scribe +stabilize +commits +exemplary +tho +##hort +##chison +pantry +traversed +##hiti +disrepair +identifiable +vibrated +baccalaureate +##nnis +csa +interviewing +##iensis +##raße +greaves +wealthiest +343 +classed +jogged +£5 +##58 +##atal +illuminating +knicks +respecting +##uno +scrubbed +##iji +##dles +kruger +moods +growls +raider +silvia +chefs +kam +vr +cree +percival +##terol +gunter +counterattack +defiant +henan +ze +##rasia +##riety +equivalence +submissions +##fra +##thor +bautista +mechanically +##heater +cornice +herbal +templar +##mering +outputs +ruining +ligand +renumbered +extravagant +mika +blockbuster +eta +insurrection +##ilia +darkening +ferocious +pianos +strife +kinship +##aer +melee +##anor +##iste +##may +##oue +decidedly +weep +##jad +##missive +##ppel +354 +puget +unease +##gnant +1629 +hammering +kassel +ob +wessex +##lga +bromwich +egan +paranoia +utilization +##atable +##idad +contradictory +provoke +##ols +##ouring +##tangled +knesset +##very +##lette +plumbing +##sden +##¹ +greensboro +occult +sniff +338 +zev +beaming +gamer +haggard +mahal +##olt +##pins +mendes +utmost +briefing +gunnery +##gut +##pher +##zh +##rok +1679 +khalifa +sonya +##boot +principals +urbana +wiring +##liffe +##minating +##rrado +dahl +nyu +skepticism +np +townspeople +ithaca +lobster +somethin +##fur +##arina +##−1 +freighter +zimmerman +biceps +contractual +##herton +amend +hurrying +subconscious +##anal +336 +meng +clermont +spawning +##eia +##lub +dignitaries +impetus +snacks +spotting +twigs +##bilis +##cz +##ouk +libertadores +nic +skylar +##aina +##firm +gustave +asean +##anum +dieter +legislatures +flirt +bromley +trolls +umar +##bbies +##tyle +blah +parc +bridgeport +crank +negligence +##nction +46th +constantin +molded +bandages +seriousness +00pm +siegel +carpets +compartments +upbeat +statehood +##dner +##edging +marko +730 +platt +##hane +paving +##iy +1738 +abbess +impatience +limousine +nbl +##talk +441 +lucille +mojo +nightfall +robbers +##nais +karel +brisk +calves +replicate +ascribed +telescopes +##olf +intimidated +##reen +ballast +specialization +##sit +aerodynamic +caliphate +rainer +visionary +##arded +epsilon +##aday +##onte +aggregation +auditory +boosted +reunification +kathmandu +loco +robyn +402 +acknowledges +appointing +humanoid +newell +redeveloped +restraints +##tained +barbarians +chopper +1609 +italiana +##lez +##lho +investigates +wrestlemania +##anies +##bib +690 +##falls +creaked +dragoons +gravely +minions +stupidity +volley +##harat +##week +musik +##eries +##uously +fungal +massimo +semantics +malvern +##ahl +##pee +discourage +embryo +imperialism +1910s +profoundly +##ddled +jiangsu +sparkled +stat +##holz +sweatshirt +tobin +##iction +sneered +##cheon +##oit +brit +causal +smyth +##neuve +diffuse +perrin +silvio +##ipes +##recht +detonated +iqbal +selma +##nism +##zumi +roasted +##riders +tay +##ados +##mament +##mut +##rud +840 +completes +nipples +cfa +flavour +hirsch +##laus +calderon +sneakers +moravian +##ksha +1622 +rq +294 +##imeters +bodo +##isance +##pre +##ronia +anatomical +excerpt +##lke +dh +kunst +##tablished +##scoe +biomass +panted +unharmed +gael +housemates +montpellier +##59 +coa +rodents +tonic +hickory +singleton +##taro +451 +1719 +aldo +breaststroke +dempsey +och +rocco +##cuit +merton +dissemination +midsummer +serials +##idi +haji +polynomials +##rdon +gs +enoch +prematurely +shutter +taunton +£3 +##grating +##inates +archangel +harassed +##asco +326 +archway +dazzling +##ecin +1736 +sumo +wat +##kovich +1086 +honneur +##ently +##nostic +##ttal +##idon +1605 +403 +1716 +blogger +rents +##gnan +hires +##ikh +##dant +howie +##rons +handler +retracted +shocks +1632 +arun +duluth +kepler +trumpeter +##lary +peeking +seasoned +trooper +##mara +laszlo +##iciencies +##rti +heterosexual +##inatory +##ssion +indira +jogging +##inga +##lism +beit +dissatisfaction +malice +##ately +nedra +peeling +##rgeon +47th +stadiums +475 +vertigo +##ains +iced +restroom +##plify +##tub +illustrating +pear +##chner +##sibility +inorganic +rappers +receipts +watery +##kura +lucinda +##oulos +reintroduced +##8th +##tched +gracefully +saxons +nutritional +wastewater +rained +favourites +bedrock +fisted +hallways +likeness +upscale +##lateral +1580 +blinds +prequel +##pps +##tama +deter +humiliating +restraining +tn +vents +1659 +laundering +recess +rosary +tractors +coulter +federer +##ifiers +##plin +persistence +##quitable +geschichte +pendulum +quakers +##beam +bassett +pictorial +buffet +koln +##sitor +drills +reciprocal +shooters +##57 +##cton +##tees +converge +pip +dmitri +donnelly +yamamoto +aqua +azores +demographics +hypnotic +spitfire +suspend +wryly +roderick +##rran +sebastien +##asurable +mavericks +##fles +##200 +himalayan +prodigy +##iance +transvaal +demonstrators +handcuffs +dodged +mcnamara +sublime +1726 +crazed +##efined +##till +ivo +pondered +reconciled +shrill +sava +##duk +bal +cad +heresy +jaipur +goran +##nished +341 +lux +shelly +whitehall +##hre +israelis +peacekeeping +##wled +1703 +demetrius +ousted +##arians +##zos +beale +anwar +backstroke +raged +shrinking +cremated +##yck +benign +towing +wadi +darmstadt +landfill +parana +soothe +colleen +sidewalks +mayfair +tumble +hepatitis +ferrer +superstructure +##gingly +##urse +##wee +anthropological +translators +##mies +closeness +hooves +##pw +mondays +##roll +##vita +landscaping +##urized +purification +sock +thorns +thwarted +jalan +tiberius +##taka +saline +##rito +confidently +khyber +sculptors +##ij +brahms +hammersmith +inspectors +battista +fivb +fragmentation +hackney +##uls +arresting +exercising +antoinette +bedfordshire +##zily +dyed +##hema +1656 +racetrack +variability +##tique +1655 +austrians +deteriorating +madman +theorists +aix +lehman +weathered +1731 +decreed +eruptions +1729 +flaw +quinlan +sorbonne +flutes +nunez +1711 +adored +downwards +fable +rasped +1712 +moritz +mouthful +renegade +shivers +stunts +dysfunction +restrain +translit +327 +pancakes +##avio +##cision +##tray +351 +vial +##lden +bain +##maid +##oxide +chihuahua +malacca +vimes +##rba +##rnier +1664 +donnie +plaques +##ually +337 +bangs +floppy +huntsville +loretta +nikolay +##otte +eater +handgun +ubiquitous +##hett +eras +zodiac +1634 +##omorphic +1820s +##zog +cochran +##bula +##lithic +warring +##rada +dalai +excused +blazers +mcconnell +reeling +bot +este +##abi +geese +hoax +taxon +##bla +guitarists +##icon +condemning +hunts +inversion +moffat +taekwondo +##lvis +1624 +stammered +##rest +##rzy +sousa +fundraiser +marylebone +navigable +uptown +cabbage +daniela +salman +shitty +whimper +##kian +##utive +programmers +protections +rm +##rmi +##rued +forceful +##enes +fuss +##tao +##wash +brat +oppressive +reykjavik +spartak +ticking +##inkles +##kiewicz +adolph +horst +maui +protege +straighten +cpc +landau +concourse +clements +resultant +##ando +imaginative +joo +reactivated +##rem +##ffled +##uising +consultative +##guide +flop +kaitlyn +mergers +parenting +somber +##vron +supervise +vidhan +##imum +courtship +exemplified +harmonies +medallist +refining +##rrow +##ка +amara +##hum +780 +goalscorer +sited +overshadowed +rohan +displeasure +secretive +multiplied +osman +##orth +engravings +padre +##kali +##veda +miniatures +mis +##yala +clap +pali +rook +##cana +1692 +57th +antennae +astro +oskar +1628 +bulldog +crotch +hackett +yucatan +##sure +amplifiers +brno +ferrara +migrating +##gree +thanking +turing +##eza +mccann +ting +andersson +onslaught +gaines +ganga +incense +standardization +##mation +sentai +scuba +stuffing +turquoise +waivers +alloys +##vitt +regaining +vaults +##clops +##gizing +digger +furry +memorabilia +probing +##iad +payton +rec +deutschland +filippo +opaque +seamen +zenith +afrikaans +##filtration +disciplined +inspirational +##merie +banco +confuse +grafton +tod +##dgets +championed +simi +anomaly +biplane +##ceptive +electrode +##para +1697 +cleavage +crossbow +swirl +informant +##lars +##osta +afi +bonfire +spec +##oux +lakeside +slump +##culus +##lais +##qvist +##rrigan +1016 +facades +borg +inwardly +cervical +xl +pointedly +050 +stabilization +##odon +chests +1699 +hacked +ctv +orthogonal +suzy +##lastic +gaulle +jacobite +rearview +##cam +##erted +ashby +##drik +##igate +##mise +##zbek +affectionately +canine +disperse +latham +##istles +##ivar +spielberg +##orin +##idium +ezekiel +cid +##sg +durga +middletown +##cina +customized +frontiers +harden +##etano +##zzy +1604 +bolsheviks +##66 +coloration +yoko +##bedo +briefs +slabs +debra +liquidation +plumage +##oin +blossoms +dementia +subsidy +1611 +proctor +relational +jerseys +parochial +ter +##ici +esa +peshawar +cavalier +loren +cpi +idiots +shamrock +1646 +dutton +malabar +mustache +##endez +##ocytes +referencing +terminates +marche +yarmouth +##sop +acton +mated +seton +subtly +baptised +beige +extremes +jolted +kristina +telecast +##actic +safeguard +waldo +##baldi +##bular +endeavors +sloppy +subterranean +##ensburg +##itung +delicately +pigment +tq +##scu +1626 +##ound +collisions +coveted +herds +##personal +##meister +##nberger +chopra +##ricting +abnormalities +defective +galician +lucie +##dilly +alligator +likened +##genase +burundi +clears +complexion +derelict +deafening +diablo +fingered +champaign +dogg +enlist +isotope +labeling +mrna +##erre +brilliance +marvelous +##ayo +1652 +crawley +ether +footed +dwellers +deserts +hamish +rubs +warlock +skimmed +##lizer +870 +buick +embark +heraldic +irregularities +##ajan +kiara +##kulam +##ieg +antigen +kowalski +##lge +oakley +visitation +##mbit +vt +##suit +1570 +murderers +##miento +##rites +chimneys +##sling +condemn +custer +exchequer +havre +##ghi +fluctuations +##rations +dfb +hendricks +vaccines +##tarian +nietzsche +biking +juicy +##duced +brooding +scrolling +selangor +##ragan +352 +annum +boomed +seminole +sugarcane +##dna +departmental +dismissing +innsbruck +arteries +ashok +batavia +daze +kun +overtook +##rga +##tlan +beheaded +gaddafi +holm +electronically +faulty +galilee +fractures +kobayashi +##lized +gunmen +magma +aramaic +mala +eastenders +inference +messengers +bf +##qu +407 +bathrooms +##vere +1658 +flashbacks +ideally +misunderstood +##jali +##weather +mendez +##grounds +505 +uncanny +##iii +1709 +friendships +##nbc +sacrament +accommodated +reiterated +logistical +pebbles +thumped +##escence +administering +decrees +drafts +##flight +##cased +##tula +futuristic +picket +intimidation +winthrop +##fahan +interfered +339 +afar +francoise +morally +uta +cochin +croft +dwarfs +##bruck +##dents +##nami +biker +##hner +##meral +nano +##isen +##ometric +##pres +##ан +brightened +meek +parcels +securely +gunners +##jhl +##zko +agile +hysteria +##lten +##rcus +bukit +champs +chevy +cuckoo +leith +sadler +theologians +welded +##section +1663 +jj +plurality +xander +##rooms +##formed +shredded +temps +intimately +pau +tormented +##lok +##stellar +1618 +charred +ems +essen +##mmel +alarms +spraying +ascot +blooms +twinkle +##abia +##apes +internment +obsidian +##chaft +snoop +##dav +##ooping +malibu +##tension +quiver +##itia +hays +mcintosh +travers +walsall +##ffie +1623 +beverley +schwarz +plunging +structurally +m3 +rosenthal +vikram +##tsk +770 +ghz +##onda +##tiv +chalmers +groningen +pew +reckon +unicef +##rvis +55th +##gni +1651 +sulawesi +avila +cai +metaphysical +screwing +turbulence +##mberg +augusto +samba +56th +baffled +momentary +toxin +##urian +##wani +aachen +condoms +dali +steppe +##3d +##app +##oed +##year +adolescence +dauphin +electrically +inaccessible +microscopy +nikita +##ega +atv +##cel +##enter +##oles +##oteric +##ы +accountants +punishments +wrongly +bribes +adventurous +clinch +flinders +southland +##hem +##kata +gough +##ciency +lads +soared +##ה +undergoes +deformation +outlawed +rubbish +##arus +##mussen +##nidae +##rzburg +arcs +##ingdon +##tituted +1695 +wheelbase +wheeling +bombardier +campground +zebra +##lices +##oj +##bain +lullaby +##ecure +donetsk +wylie +grenada +##arding +##ης +squinting +eireann +opposes +##andra +maximal +runes +##broken +##cuting +##iface +##ror +##rosis +additive +britney +adultery +triggering +##drome +detrimental +aarhus +containment +jc +swapped +vichy +##ioms +madly +##oric +##rag +brant +##ckey +##trix +1560 +1612 +broughton +rustling +##stems +##uder +asbestos +mentoring +##nivorous +finley +leaps +##isan +apical +pry +slits +substitutes +##dict +intuitive +fantasia +insistent +unreasonable +##igen +##vna +domed +hannover +margot +ponder +##zziness +impromptu +jian +lc +rampage +stemming +##eft +andrey +gerais +whichever +amnesia +appropriated +anzac +clicks +modifying +ultimatum +cambrian +maids +verve +yellowstone +##mbs +conservatoire +##scribe +adherence +dinners +spectra +imperfect +mysteriously +sidekick +tatar +tuba +##aks +##ifolia +distrust +##athan +##zle +c2 +ronin +zac +##pse +celaena +instrumentalist +scents +skopje +##mbling +comical +compensated +vidal +condor +intersect +jingle +wavelengths +##urrent +mcqueen +##izzly +carp +weasel +422 +kanye +militias +postdoctoral +eugen +gunslinger +##ɛ +faux +hospice +##for +appalled +derivation +dwarves +##elis +dilapidated +##folk +astoria +philology +##lwyn +##otho +##saka +inducing +philanthropy +##bf +##itative +geek +markedly +sql +##yce +bessie +indices +rn +##flict +495 +frowns +resolving +weightlifting +tugs +cleric +contentious +1653 +mania +rms +##miya +##reate +##ruck +##tucket +bien +eels +marek +##ayton +##cence +discreet +unofficially +##ife +leaks +##bber +1705 +332 +dung +compressor +hillsborough +pandit +shillings +distal +##skin +381 +##tat +##you +nosed +##nir +mangrove +undeveloped +##idia +textures +##inho +##500 +##rise +ae +irritating +nay +amazingly +bancroft +apologetic +compassionate +kata +symphonies +##lovic +airspace +##lch +930 +gifford +precautions +fulfillment +sevilla +vulgar +martinique +##urities +looting +piccolo +tidy +##dermott +quadrant +armchair +incomes +mathematicians +stampede +nilsson +##inking +##scan +foo +quarterfinal +##ostal +shang +shouldered +squirrels +##owe +344 +vinegar +##bner +##rchy +##systems +delaying +##trics +ars +dwyer +rhapsody +sponsoring +##gration +bipolar +cinder +starters +##olio +##urst +421 +signage +##nty +aground +figurative +mons +acquaintances +duets +erroneously +soyuz +elliptic +recreated +##cultural +##quette +##ssed +##tma +##zcz +moderator +scares +##itaire +##stones +##udence +juniper +sighting +##just +##nsen +britten +calabria +ry +bop +cramer +forsyth +stillness +##л +airmen +gathers +unfit +##umber +##upt +taunting +##rip +seeker +streamlined +##bution +holster +schumann +tread +vox +##gano +##onzo +strive +dil +reforming +covent +newbury +predicting +##orro +decorate +tre +##puted +andover +ie +asahi +dept +dunkirk +gills +##tori +buren +huskies +##stis +##stov +abstracts +bets +loosen +##opa +1682 +yearning +##glio +##sir +berman +effortlessly +enamel +napoli +persist +##peration +##uez +attache +elisa +b1 +invitations +##kic +accelerating +reindeer +boardwalk +clutches +nelly +polka +starbucks +##kei +adamant +huey +lough +unbroken +adventurer +embroidery +inspecting +stanza +##ducted +naia +taluka +##pone +##roids +chases +deprivation +florian +##jing +##ppet +earthly +##lib +##ssee +colossal +foreigner +vet +freaks +patrice +rosewood +triassic +upstate +##pkins +dominates +ata +chants +ks +vo +##400 +##bley +##raya +##rmed +555 +agra +infiltrate +##ailing +##ilation +##tzer +##uppe +##werk +binoculars +enthusiast +fujian +squeak +##avs +abolitionist +almeida +boredom +hampstead +marsden +rations +##ands +inflated +334 +bonuses +rosalie +patna +##rco +329 +detachments +penitentiary +54th +flourishing +woolf +##dion +##etched +papyrus +##lster +##nsor +##toy +bobbed +dismounted +endelle +inhuman +motorola +tbs +wince +wreath +##ticus +hideout +inspections +sanjay +disgrace +infused +pudding +stalks +##urbed +arsenic +leases +##hyl +##rrard +collarbone +##waite +##wil +dowry +##bant +##edance +genealogical +nitrate +salamanca +scandals +thyroid +necessitated +##! +##" +### +##$ +##% +##& +##' +##( +##) +##* +##+ +##, +##- +##. +##/ +##: +##; +##< +##= +##> +##? +##@ +##[ +##\ +##] +##^ +##_ +##` +##{ +##| +##} +##~ +##¡ +##¢ +##£ +##¤ +##¥ +##¦ +##§ +##¨ +##© +##ª +##« +##¬ +##® +##± +##´ +##µ +##¶ +##· +##º +##» +##¼ +##¾ +##¿ +##æ +##ð +##÷ +##þ +##đ +##ħ +##ŋ +##œ +##ƒ +##ɐ +##ɑ +##ɒ +##ɔ +##ɕ +##ə +##ɡ +##ɣ +##ɨ +##ɪ +##ɫ +##ɬ +##ɯ +##ɲ +##ɴ +##ɹ +##ɾ +##ʀ +##ʁ +##ʂ +##ʃ +##ʉ +##ʊ +##ʋ +##ʌ +##ʎ +##ʐ +##ʑ +##ʒ +##ʔ +##ʰ +##ʲ +##ʳ +##ʷ +##ʸ +##ʻ +##ʼ +##ʾ +##ʿ +##ˈ +##ˡ +##ˢ +##ˣ +##ˤ +##β +##γ +##δ +##ε +##ζ +##θ +##κ +##λ +##μ +##ξ +##ο +##π +##ρ +##σ +##τ +##υ +##φ +##χ +##ψ +##ω +##б +##г +##д +##ж +##з +##м +##п +##с +##у +##ф +##х +##ц +##ч +##ш +##щ +##ъ +##э +##ю +##ђ +##є +##і +##ј +##љ +##њ +##ћ +##ӏ +##ա +##բ +##գ +##դ +##ե +##թ +##ի +##լ +##կ +##հ +##մ +##յ +##ն +##ո +##պ +##ս +##վ +##տ +##ր +##ւ +##ք +##־ +##א +##ב +##ג +##ד +##ו +##ז +##ח +##ט +##י +##ך +##כ +##ל +##ם +##מ +##ן +##נ +##ס +##ע +##ף +##פ +##ץ +##צ +##ק +##ר +##ש +##ת +##، +##ء +##ب +##ت +##ث +##ج +##ح +##خ +##ذ +##ز +##س +##ش +##ص +##ض +##ط +##ظ +##ع +##غ +##ـ +##ف +##ق +##ك +##و +##ى +##ٹ +##پ +##چ +##ک +##گ +##ں +##ھ +##ہ +##ے +##अ +##आ +##उ +##ए +##क +##ख +##ग +##च +##ज +##ट +##ड +##ण +##त +##थ +##द +##ध +##न +##प +##ब +##भ +##म +##य +##र +##ल +##व +##श +##ष +##स +##ह +##ा +##ि +##ी +##ो +##। +##॥ +##ং +##অ +##আ +##ই +##উ +##এ +##ও +##ক +##খ +##গ +##চ +##ছ +##জ +##ট +##ড +##ণ +##ত +##থ +##দ +##ধ +##ন +##প +##ব +##ভ +##ম +##য +##র +##ল +##শ +##ষ +##স +##হ +##া +##ি +##ী +##ে +##க +##ச +##ட +##த +##ந +##ன +##ப +##ம +##ய +##ர +##ல +##ள +##வ +##ா +##ி +##ு +##ே +##ை +##ನ +##ರ +##ಾ +##ක +##ය +##ර +##ල +##ව +##ා +##ก +##ง +##ต +##ท +##น +##พ +##ม +##ย +##ร +##ล +##ว +##ส +##อ +##า +##เ +##་ +##། +##ག +##ང +##ད +##ན +##པ +##བ +##མ +##འ +##ར +##ལ +##ས +##မ +##ა +##ბ +##გ +##დ +##ე +##ვ +##თ +##ი +##კ +##ლ +##მ +##ნ +##ო +##რ +##ს +##ტ +##უ +##ᄀ +##ᄂ +##ᄃ +##ᄅ +##ᄆ +##ᄇ +##ᄉ +##ᄊ +##ᄋ +##ᄌ +##ᄎ +##ᄏ +##ᄐ +##ᄑ +##ᄒ +##ᅡ +##ᅢ +##ᅥ +##ᅦ +##ᅧ +##ᅩ +##ᅪ +##ᅭ +##ᅮ +##ᅯ +##ᅲ +##ᅳ +##ᅴ +##ᅵ +##ᆨ +##ᆫ +##ᆯ +##ᆷ +##ᆸ +##ᆼ +##ᴬ +##ᴮ +##ᴰ +##ᴵ +##ᴺ +##ᵀ +##ᵃ +##ᵇ +##ᵈ +##ᵉ +##ᵍ +##ᵏ +##ᵐ +##ᵒ +##ᵖ +##ᵗ +##ᵘ +##ᵣ +##ᵤ +##ᵥ +##ᶜ +##ᶠ +##‐ +##‑ +##‒ +##– +##— +##― +##‖ +##‘ +##’ +##‚ +##“ +##” +##„ +##† +##‡ +##• +##… +##‰ +##′ +##″ +##› +##‿ +##⁄ +##⁰ +##ⁱ +##⁴ +##⁵ +##⁶ +##⁷ +##⁸ +##⁹ +##⁻ +##ⁿ +##₅ +##₆ +##₇ +##₈ +##₉ +##₊ +##₍ +##₎ +##ₐ +##ₑ +##ₒ +##ₓ +##ₕ +##ₖ +##ₗ +##ₘ +##ₚ +##ₛ +##ₜ +##₤ +##₩ +##€ +##₱ +##₹ +##ℓ +##№ +##ℝ +##™ +##⅓ +##⅔ +##← +##↑ +##→ +##↓ +##↔ +##↦ +##⇄ +##⇌ +##⇒ +##∂ +##∅ +##∆ +##∇ +##∈ +##∗ +##∘ +##√ +##∞ +##∧ +##∨ +##∩ +##∪ +##≈ +##≡ +##≤ +##≥ +##⊂ +##⊆ +##⊕ +##⊗ +##⋅ +##─ +##│ +##■ +##▪ +##● +##★ +##☆ +##☉ +##♠ +##♣ +##♥ +##♦ +##♯ +##⟨ +##⟩ +##ⱼ +##⺩ +##⺼ +##⽥ +##、 +##。 +##〈 +##〉 +##《 +##》 +##「 +##」 +##『 +##』 +##〜 +##あ +##い +##う +##え +##お +##か +##き +##く +##け +##こ +##さ +##し +##す +##せ +##そ +##た +##ち +##っ +##つ +##て +##と +##な +##に +##ぬ +##ね +##の +##は +##ひ +##ふ +##へ +##ほ +##ま +##み +##む +##め +##も +##や +##ゆ +##よ +##ら +##り +##る +##れ +##ろ +##を +##ん +##ァ +##ア +##ィ +##イ +##ウ +##ェ +##エ +##オ +##カ +##キ +##ク +##ケ +##コ +##サ +##シ +##ス +##セ +##タ +##チ +##ッ +##ツ +##テ +##ト +##ナ +##ニ +##ノ +##ハ +##ヒ +##フ +##ヘ +##ホ +##マ +##ミ +##ム +##メ +##モ +##ャ +##ュ +##ョ +##ラ +##リ +##ル +##レ +##ロ +##ワ +##ン +##・ +##ー +##一 +##三 +##上 +##下 +##不 +##世 +##中 +##主 +##久 +##之 +##也 +##事 +##二 +##五 +##井 +##京 +##人 +##亻 +##仁 +##介 +##代 +##仮 +##伊 +##会 +##佐 +##侍 +##保 +##信 +##健 +##元 +##光 +##八 +##公 +##内 +##出 +##分 +##前 +##劉 +##力 +##加 +##勝 +##北 +##区 +##十 +##千 +##南 +##博 +##原 +##口 +##古 +##史 +##司 +##合 +##吉 +##同 +##名 +##和 +##囗 +##四 +##国 +##國 +##土 +##地 +##坂 +##城 +##堂 +##場 +##士 +##夏 +##外 +##大 +##天 +##太 +##夫 +##奈 +##女 +##子 +##学 +##宀 +##宇 +##安 +##宗 +##定 +##宣 +##宮 +##家 +##宿 +##寺 +##將 +##小 +##尚 +##山 +##岡 +##島 +##崎 +##川 +##州 +##巿 +##帝 +##平 +##年 +##幸 +##广 +##弘 +##張 +##彳 +##後 +##御 +##德 +##心 +##忄 +##志 +##忠 +##愛 +##成 +##我 +##戦 +##戸 +##手 +##扌 +##政 +##文 +##新 +##方 +##日 +##明 +##星 +##春 +##昭 +##智 +##曲 +##書 +##月 +##有 +##朝 +##木 +##本 +##李 +##村 +##東 +##松 +##林 +##森 +##楊 +##樹 +##橋 +##歌 +##止 +##正 +##武 +##比 +##氏 +##民 +##水 +##氵 +##氷 +##永 +##江 +##沢 +##河 +##治 +##法 +##海 +##清 +##漢 +##瀬 +##火 +##版 +##犬 +##王 +##生 +##田 +##男 +##疒 +##発 +##白 +##的 +##皇 +##目 +##相 +##省 +##真 +##石 +##示 +##社 +##神 +##福 +##禾 +##秀 +##秋 +##空 +##立 +##章 +##竹 +##糹 +##美 +##義 +##耳 +##良 +##艹 +##花 +##英 +##華 +##葉 +##藤 +##行 +##街 +##西 +##見 +##訁 +##語 +##谷 +##貝 +##貴 +##車 +##軍 +##辶 +##道 +##郎 +##郡 +##部 +##都 +##里 +##野 +##金 +##鈴 +##镇 +##長 +##門 +##間 +##阝 +##阿 +##陳 +##陽 +##雄 +##青 +##面 +##風 +##食 +##香 +##馬 +##高 +##龍 +##龸 +##fi +##fl +##! +##( +##) +##, +##- +##. +##/ +##: +##? +##~ diff --git a/models/dbertaInjection/added_tokens.json b/models/dbertaInjection/added_tokens.json new file mode 100644 index 0000000000000000000000000000000000000000..8ee2b3623dc526b123cde0aaa401755b82299af2 --- /dev/null +++ b/models/dbertaInjection/added_tokens.json @@ -0,0 +1,3 @@ +{ + "[MASK]": 128000 +} diff --git a/models/dbertaInjection/config.json b/models/dbertaInjection/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d32ccb70f22d9e7fa9b1e1d6c0de4039154157fc --- /dev/null +++ b/models/dbertaInjection/config.json @@ -0,0 +1,43 @@ +{ + "_name_or_path": "microsoft/deberta-v3-base", + "architectures": [ + "DebertaV2ForSequenceClassification" + ], + "attention_probs_dropout_prob": 0.1, + "hidden_act": "gelu", + "hidden_dropout_prob": 0.1, + "hidden_size": 768, + "id2label": { + "0": "LEGIT", + "1": "INJECTION" + }, + "initializer_range": 0.02, + "intermediate_size": 3072, + "label2id": { + "INJECTION": 1, + "LEGIT": 0 + }, + "layer_norm_eps": 1e-07, + "max_position_embeddings": 512, + "max_relative_positions": -1, + "model_type": "deberta-v2", + "norm_rel_ebd": "layer_norm", + "num_attention_heads": 12, + "num_hidden_layers": 12, + "pad_token_id": 0, + "pooler_dropout": 0, + "pooler_hidden_act": "gelu", + "pooler_hidden_size": 768, + "pos_att_type": [ + "p2c", + "c2p" + ], + "position_biased_input": false, + "position_buckets": 256, + "relative_attention": true, + "share_att_key": true, + "torch_dtype": "float32", + "transformers_version": "4.29.1", + "type_vocab_size": 0, + "vocab_size": 128100 +} diff --git a/models/dbertaInjection/gitattributes.txt b/models/dbertaInjection/gitattributes.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7d9f3332a950355d5a77d85000f05e6f45435ea --- /dev/null +++ b/models/dbertaInjection/gitattributes.txt @@ -0,0 +1,34 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text diff --git a/models/dbertaInjection/gitignore.txt b/models/dbertaInjection/gitignore.txt new file mode 100644 index 0000000000000000000000000000000000000000..0348ea97130c017c407fcfb6fd4003859f17b84c --- /dev/null +++ b/models/dbertaInjection/gitignore.txt @@ -0,0 +1 @@ +checkpoint-*/ \ No newline at end of file diff --git a/models/dbertaInjection/special_tokens_map.json b/models/dbertaInjection/special_tokens_map.json new file mode 100644 index 0000000000000000000000000000000000000000..e5cc7333cad21d1cec0eaded41e64d7eccf8230d --- /dev/null +++ b/models/dbertaInjection/special_tokens_map.json @@ -0,0 +1,9 @@ +{ + "bos_token": "[CLS]", + "cls_token": "[CLS]", + "eos_token": "[SEP]", + "mask_token": "[MASK]", + "pad_token": "[PAD]", + "sep_token": "[SEP]", + "unk_token": "[UNK]" +} diff --git a/models/dbertaInjection/spm.model b/models/dbertaInjection/spm.model new file mode 100644 index 0000000000000000000000000000000000000000..b1b95e5b0fef33623979511f423eaeee465c46f0 --- /dev/null +++ b/models/dbertaInjection/spm.model @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c679fbf93643d19aab7ee10c0b99e460bdbc02fedf34b92b05af343b4af586fd +size 2464616 diff --git a/models/dbertaInjection/tokenizer.json b/models/dbertaInjection/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..9bbea7ec181466567dc3d7dfd8bc69fd537c3f7c --- /dev/null +++ b/models/dbertaInjection/tokenizer.json @@ -0,0 +1,512169 @@ +{ + "version": "1.0", + "truncation": null, + "padding": null, + "added_tokens": [ + { + "id": 0, + "content": "[PAD]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 1, + "content": "[CLS]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 2, + "content": "[SEP]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 3, + "content": "[UNK]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 128000, + "content": "[MASK]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "Sequence", + "normalizers": [ + { + "type": "Strip", + "strip_left": true, + "strip_right": true + }, + { + "type": "Precompiled", + "precompiled_charsmap": "ALQCAACEAAAAAACAAQAAgMz8AgC4BQAAhyIAgMzkAgC4PQAAeyIAgMzsAgC4BQAAiyIAgMw8AADNvAAAmwkAgJ4JAIChCQCAgx0AAIAZAACBGQAAPR0AgDUdAIBNHQCARR0AgIAxAACBMQAApAkAgIkxAAA9WAMAPEgDAEAKAIA+aAMAAYUAAIQBAQADjQAAAokAAAWVAAAEkQAAB50AAAaZAAAJqQAACKEAAAutAAAKpQAADbkAAAy9AAAPvQAADrkAABHFAAAQwQAAE80AABLJAAAV1QAAFNEAABfdAAAW2QAAGeUAABjhAAAb7QAAGukAAB31AAAc8QAAH/0AAB75AABhOAkAZR0AgGNADgBi8AgAZSgPAGSADgBn2A8AZvAPAGlwDABoMAwAa/AMAGrYDABtSA0AbBwNAG8QEgBubA0ARgoAgHAMEwBzqBMAcuwTAHUoEAB0TBAAd9ARAHYUEAB50BYAePQQAF0dAIB69BYAdR0AgG0dAIB/fQEAhgwAgEGAAgDeCwCAQxgAAELAAABFSAAARGAAAEeQBgBGhAEASSgGAEhsAQBLOAcASvAHAE1wBwBMRAcAT/AEAE7MBACnCQCAUCwFAFOgCgBSEAUAVQAKAFRQCgBX0AgAVhALAFlICABYuAgAhBEAAFo8CACA9QAAgZ0AANgLAIAtHQCAg2kCAIJFAgCBNQIAgDUCAIdtAwCGVQMAgTkAAIRlAgAXDACAigEEAInVAwCI7QMAjwkAAKgLAIApDACAjAkAAC8MAICJMQMAkQkAAMzYAABVHQCAfR0AgL0aAIBMCgCAgGUDAIENAwCGPQAAgx0DAMwQAgDNhAEAgikAAMx0AwCjgQYAxRoAgICxAgCBsQIAzRoAgIEpAAClwQAA1RoAgMzoAwDNYAIAUgoAgKjxAABYCgCAXgoAgGQKAIDdGgCAgWkAAMzcBACCEQEA5RoAgGoKAIDtGgCA/RoAgAUbAID1GgCAswkAgMygBADN3AQAzAgBALYJAIClHQCAhhEBAOEAKwDgfCcA44hIAuIMOAKdHQCAh5EBALUdAICtHQCAgNkBAIE1AADMxAIA6kRkApUdAIANGwCA72hkAoERBwCC8QEA8NCLAolVAACB5QEAFRsAgIfhAQCAbQAAgQ0AAIN5AAB2CgCAgXkAAICVAQDMOAEAzRQBAIzBAQB8CgCAvAkAgKMVAQDDlBcAwpwUAMWEFwDEUBcAx+wXAMaAEgCNHQCAiAoAgMvQFgDK4BYAzRQWADUMAIDPvCAAzpwZANHMJADQ2CUA0+gkALFRAQA7DACAp90HAL0dAIDWvCQA2cgnANjUIgDb+CcALRsAgIftBwCCCgCAzPgEAB0bAIAlHQCAh8kGALAJAICR3QcAuQkAgCUbAIBwCgCANRsAgIUdAICMDACAjPkGAAsMAICA1QYAgcEGAMzEAgDNBAUAglEAAIN1BwCArQYAgbkGAIY1BwCHKQcAhEEAAI4KAICn7QAAPRsAgIjpBwCJzQcAlAoAgI/BBwCM3QcAmgoAgOoLAICnXQYAsJ0AAKAKAICmCgCAo0EGAEUbAIBVGwCAfQwAgE0bAIBdGwCArXEGAGUbAIC/CQCAzPgDAM0sAwDCCQCAo+UAAMUJAICMTQAAsgoAgKfxAAC4CgCAsT0GAIedAACGlQAAqB0HAISJAAC+CgCAgqkAAIHVAACtAQcAygoAgJE9AACCmQEAyAkAgM0MBQDMCAUAgT0AAIeFAQCIvQEAdRsAgMUdAICuCwCAjJEBAEEMAIBHDACAzR0AgID1AQCBhQEAgoEBAIOdAQCEiQEAxAoAgIapAQCHXQAAiG0AAIlNAABtGwCAzBACAIxdAACCDQAA0AoAgI9JAACw6QAAfRsAgPALAICjKQEAgCUBAIFVAQCFGwCApzUBAMykAQDNEAIA1goAgI0bAICBNQAA3AoAgK4JAQDoCgCAzOgBAM0oAgCVGwCAo/EAAIQFAACdGwCA4goAgK0bAICotQAApRsAgIFdAAC1GwCAzPwBAM3AAQC9GwCAxRsAgIGFAwARDACAgeUDAO4KAICH6QMAywkAgIylAwDNGwCA+goAgKoJAIDVGwCAgZkDAIHdAwCMvQMAzSQBAMwgAQDMEAIAzTACAIH5AACHUQAAgFUAAIFZAAD0CgCAg0kAAIxBAADlGwCA3RsAgM4JAICBfQAAgHEAAMwgAwDNsAMAo30DANEJAICjEQMA7R0AgIEtAQCx/QAApzEDAK1BAwDlHQCAo20DAP0dAID1HQCA7RsAgKdtAwCANQAAgR0AALFtAwCILQAAmAwAgKeVAACBcQAAgFkAAINxAACj9QAAgVEAAK2BAAD1GwCAsQkDAIldAACEPQAAzDgBAISdAQCBGQAAgAkAAIRlAAD9GwCAzNAHAMzwBwAFHACAkYkAAMxMBgDNBAYAzHAGAM10BgDMQAcAmy0PAMyoBwDNrAcAhg0AAIdVDwCEQQ8ACQsAgIIBDACDVQ8AgDUBAIHZAQCkDACAj+kAAIztAACSDACA3R0AgIv1AACIbQ8AiQ0AAA8LAIC0CwCAgiUAAE0MAICBQQAAUwwAgBUeAIANHgCAJR4AgB0eAIAtHgCABR4AgIApAACBKQAA/AsAgA0cAICEeQAAFRwAgIFNAQCAoQEAGAsAgKP9DwDMOAIAzUgDAB0cAICBWQAAzXwCAMykDQAkCwCAWQwAgKjJDwCHOQAA1wkAgImhDwADCwCAkREAAJ4MAIDaCQCAmQsAgF8MAICAuQ8AgbkPANUdAICDjQ8A9gsAgCUcAICEBQAALRwAgB4LAIA1HACAKgsAgIGdDwCHIQAAh7UPAMyoAgDN6AIAzLQMAM3cDACmzQAAp8UAAE0cAICPgQ8AjIkPAKPlAAAwCwCAPRwAgDwLAICxyQAAhwUAAFUcAIBFHACAhz0AAF0cAIBxDACANgsAgKMFDwCB+QAAzKgDAGUcAIBICwCAjEkAAKPxAABtHACAdwwAgEILAICnlQAAfRwAgHUcAIDMrAMAzcgAAN0JAICHaQAA4AkAgIG9AACCeQAA4wkAgIe5AQBOCwCAkaUAAIEdAACdHACAVAsAgIgFAAClHACAm5EAAFoLAIDmCQCAjJEBANILAIDGCwCAwAsAgMwLAICDRQAAgrkBAIG5AQCApQEAPR4AgIZxAABgCwCAhEkAAIsVAACKPQAAiTkAAIhFAACP+QAAZgsAgLoLAICMBQAAp1EBAKZJAQBlDACAsHkAAKNZAQCMqQAAgKkAAIGpAACBlQAAgJUAAK1xAQBrDACAogsAgISNAABNHgCARR4AgKMhAABdHgCAVR4AgGUeAICBbQAAgG0AALEFAQCkOQAANR4AgIUcAIBsCwCAqAUAAJUcAICNHACArQkAAMywAQCBvQMAgL0DAIPNAwCtHACAtRwAgL0cAIDMvAEAzYQBAInpAwDMHAEAgdkCAIDFAgDNOAEAzDwBAMxoAgDNRAIAg00AAMUcAICH2QAAhy0AAIBFAACBEQAAggUAAHILAIDVHACAzRwAgN0cAIDMOAIAiBUAAIjhAACAbQAAgTkAAMyEAgDNUAEAo0UDAIQ5AQDlHACA7RwAgMzcAwDNSAIAbR4AgOkJAIB4CwCAhR4AgKoMAICBbQAA9RwAgH4LAICj0QAAfR4AgHUeAIDMiAQAgXUAAIB1AACBCwCAo7UAAMwABADNVAIA/RwAgIcLAICETQEAjQsAgAUdAIANHQCAzNAOAMwsAQDMAAUAzVwFAOwJAIDvCQCAzJgOAIHBAADMzA8AzDwOAMwIAQDNnA4AzNQPAM14DwDMPA4AzTgOAIHlAQCA5QEAg+UBAILlAQDUCQCAhOUBAIfhAQBBHQCAiaUBAIjZAQCByQcAOR0AgFEdAIBJHQCAzDQBAPUJAICA3QAAgekAAEMKAICD/QAAgM0AAIH5AACBEQcAaR0AgGEdAICJ0QAAzCgBAHkdAIBxHQCA4QsAgMw0AQDbCwCAgF0AAIFlAACjAQEAg2EAAIFxAACASQAAMR0AgBoMAICrCwCAiVUAACwMAIAyDACAWR0AgIEdAIDBGgCATwoAgIIdAACDeQcAgBkHAIEZBwCGIQAAhykAAISRBwDyCQCAimkAALHZBgCIaQAAifUHAEkKAICP3QcAjNkHAIkMAID4CQCAKR0AgPsJAICRoQcAgEEHAIFBBwCHBQAAyRoAgIKRBwDRGgCA2RoAgKOVBgCGhQcAp+0AAMyQAgDN4AUAsekAAKPBAABVCgCAWwoAgGEKAIBnCgCA/gkAgKVlBwDhGgCAzLgDAKhVBwDpGgCAbQoAgPEaAIABGwCACRsAgPkaAIABCgCAo60AAAQKAICMJQYABwoAgIxNAACpHQCAgm0AAIE9BgCCAQYAgWUAAKEdAICHZQAAuR0AgIcRBgCHrQEAsR0AgMxQAgDNxAIAgeEBAIDJAQCD4QEAkYkAAID9AQCB1QEAmR0AgIydAQCJNQAAcwoAgIB1AACBXQAAhi0AAIc1AACEfQAAERsAgIKFAQCDfQAAgJ0BAIGRAQAZGwCAj+kAAIzhAAB5CgCAfwoAgAoKAICIDQAAifkAAKc5AQCRHQCAiwoAgDgMAICjJQEAPgwAgLBZAACJHQCAggUAAMEdAICtFQEAjwwAgDEbAICGBQAAhQoAgCEbAIApGwCAp2kAAIANAQCBAQEAhzEAAKNJAACxGQEAzBACADkbAIAODACAkQoAgK1RAADM1AEAzfgBAKhBAABBGwCAzTgBAMw8AQCB7QMAlwoAgJ0KAICMDQAA7QsAgKMKAICBxQMAzGgCAKkKAICCxQMASRsAgITJAwCHKQAAhjEAAFkbAICCbQAAgAwAgFEbAICHYQAAYRsAgGkbAIAVHQCAzKgDAM2sAgCB+QAAiC0AAA0KAIAQCgCAEwoAgIw1AAC1CgCAuwoAgLHVAADBCgCAeRsAgMkdAICxCwCAzDABAEQMAIBKDACA0R0AgMwEAQDHCgCAcRsAgKelAADTCgCAo40AAMwUAgCAuQAAgbkAAKeFAAAIDACAgmUAAIEbAICMNQAA8wsAgMzsHADN/AMAiRsAgK6tAADZCgCAkRsAgMzABgDN0AYAsL0BAMyQBwDfCgCAgckBAMwYHQDNIAIAhBEAAOsKAIDNuAYAzKwGAKEbAIDlCgCAgSkAALEbAICpGwCAo+0BAMxAHQDNEAIAuRsAgMEbAICBCQAAyRsAgMxAHQDN0AIAqNkBABQMAIDMkAcAzBwBAMxgBgDNZAYA8QoAgBwKAIDRGwCAkSkBAP0KAICBzR8A2RsAgPcKAIDpGwCA4RsAgMzEBgDNwAYAgTEAAIDZAAAfCgCAIgoAgIK5AQCDRQEAgLkBAIG5AQCGXQEA8R0AgIRdAQDpHQCAzcAAAMzwAACIARwAiXkBAAEeAICPVQEAjGEBAPkdAICB3R4AgRUfAJkbAICBXR8AjIEfAIdBHwDMGAMAzWgDAIBNHwCBpR8AJQoAgIOpHwCMFR8AjNEeACgKAICHtR8AgJUfAIGZHwCBEQAAg70fAICFHwCBiR8A8RsAgIQ9AACbDACAiZkfAPkbAICIBQAABgsAgAEcAICADQAAgf0AAAkcAICj2R8Ao3keAKOFAAAMCwCArTUfAKdhHgCnqR8AoQwAgIQNAACnDACAozUfACsKAICtiR8AhHEAAKchHwCxPR4AsYUfAJUMAIDhHQCAEgsAgLcLAIDMtBwAzbAcAFAMAICxQR8AVgwAgJwLAIAZHgCAER4AgCkeAIAhHgCAgLkeAIG5HgCCIQEAgzUBAIRhAQAxHgCAhokBAIe9AQCIkQEAiekBANkdAICL/QEAjOUBAIINAAAJHgCAj90BAIO5AQCRrQEAgb0BAIC9AQCAoQEAgaEBAPkLAID/CwCAhD0AABEcAICJlQEAm4EBAIHNHgCAzR4AzPwCAM3wAgCB5QAAGRwAgIHtAACjpQAAzJABAM1cAgCHHQAAGwsAgKj5AAAhHACAJwsAgFwMAIBiDACAKRwAgIQFAAAxHACAo9UAACELAIA5HACAgVEAAMz0AQDN0AEALQsAgIc9AABRHACAMwsAgEEcAIA/CwCAhwUAAFkcAIBJHACAh/EDAIHZAwCBmQMAgZEAAGEcAIB0DACAjPkDAMwkAQCHuQMAgfkDADkLAIDMZAIAgskDAIyZAwBpHACAh9EDAI+RAwCB3QYAkfUDAMwABADN7AMAh2UAABkdAIBLCwCAcRwAgHoMAIBFCwCAzBgBAIg5AACBHACAeRwAgMxcAwCMJQAALgoAgMwsAQCx/QAAozkDADEKAIA0CgCAoRwAgKdZAwDMdAMAiAkAAKNRAwCpHACAXQsAgINtDQCnnQAApq0AAKOdAACxDQMAzCgBANULAICntQAAprUAAMkLAIDMMAEAgdUHAMMLAIDMKAEAzwsAgEEeAIBjCwCArYkAAGkLAICAzQEAgd0BAMxEAQDNnB4AhPUBAL0LAIDMWAEAzUwBAIDtAQCB/QEAg7UAAGgMAICM3QEAbgwAgMwIHgCM8QYAzDgBAM08AQBRHgCAiREAAIEFBgBJHgCAYR4AgFkeAIBpHgCAgz0AAIAhAACBOQAAgDkAAIEhAAA5HgCAiRwAgMwoAQCB2QYAbwsAgIH9BgDMJAEAmRwAgJEcAICxHACAgCEBAIE1AQCjBQAAuRwAgMEcAIDJHACAzIwFAM1AAgC3HAMAdQsAgIfNBwDZHACA0RwAgB0dAIDNiAAAzJAAAIzdBQCjhQAAFgoAgMzgAgDhHACAiNUHAIFNAACATQAAUQsAgOkcAIBXCwCAkTkHADcKAICIxQcApQsAgIrJBwDxHACAmz0AAIflBwBxHgCAgYUHAICFBwA6CgCAgvkHAILVBgCDRQAAgMkGAIHdBgCG4QYAewsAgIRRAACJHgCAipUGAIuZBgCIeQAAiZ0GAK0MAICPWQcAjG0HAPkcAIDMgAMAzSQCALARBwA9CgCAgR4AgCEdAIB5HgCAhAsAgICNAACBnQAAzOwDAM3oBAABHQCAigsAgKNJBwCQCwCACR0AgKO9BwARHQCAGwAAgOcHAIALAACApKUHAOsEAICKBQCAAwAAgKhhBwDZDQCAZQAAgMgDAIAbCQCArWkHAIAtAQCBPQEAgl0BAINRAQCEYQEAuAQAgKwEAICHYQEAiK0BAIm1AQCKvQEAjykVALwFAIAdDACAzHgCAM3YBQCB3QEAgXEAAOQLAICC/QEAhBkAACMMAICH7QEAIAwAgMw0BADNMAQA5wsAgJ9pFQAmDACAjMkBAM34BADM8AIAsUkBACEHAICB1QAAoxUBAKCZFQBzCACARgcAgIT1AADMKAQAzSwEAMMIAICveQEAqH0BADENAICqaQEAUgkAgLQlAQC1KQEAowkBAAIMAIDqBgCA7gYAgLIFAQCzPQEAvPUAAL39AAC+2QAAOAgAgLgBAQC5AQEAugEBADwHAIBDBwCAhgwAALOdAwCyiQMAswgAgIC9AwBpBwCAbAcAgBIJAIDkBgCA5wYAgDUIAICJhQMAzOQHAL+hAwAFDACA1wwAgIxlAADN5AwAzCQMAIlBAACIVQAAi0UAAIpFAACFtQMAhLUDAIeVAwCGgQMAAQ0AgAQNAIAHDQCAmCwAABMAAICmyAAAzYwGAMyoBgCFaQAAFwAAgDEAAIBpAACAzPADAAcAAIA1AACA0QwAgLGVAAAlDQCAs5UAALKVAAA1DQCAOA0AgEANAIA7DQCALg0AgHUAAICmBgCAJQAAgJgJAIAdIQCAv1UDAEMNAIAZIQCAFSEAgGEgAIC4bAAAlGUNAJIAAgCcrQEAnaUBAJqJAQCbiQEAmJkBAJmJAQDMIAYAzQQGAMxABgDNXAYAzDwHAM04BwDMvAcAhXUAAIABDwCBDQ8AaSAAgLqZAQCFBQAAcSAAgFkgAIC+hQEAgSkPAIAlDwBlIACAgiEPAIUpAAC0pQEAhREAAG0gAICziQ8AsoUPALHJAQCwAQwAt4EPALbtAQC17QEAtO0BAIFlAQCAZQEAg2EBALi1DwDMPAsAhHkBAIDhDwCB3Q8AdSAAgF0gAIDMyAQAzbgEAIWtAACFFQAAISEAgDkhAIDM6BkAzbQZAKRdAQBGDQCAok0CAKPxDwCgVQEAod0PAH8IAIBuCQCAOwkAgO0eAIBsCQCA9R4AgHcJAIDxHgCAsQgAgJMNAACtHgCA+R4AgITVDACF6Q4AlGkAAIfdDgC1HgCAmbQCAL0eAIDFHgCAsR4AgD0hAIC5HgCAn3QBAMEeAICRGA0AgI0OAIGBDgCGhQ4AlYwDAISJDgCXRAIAghEAAKm4AACA0QAAge0AAMkeAIBJDQCA5R4AgIVZDwCDiQAAoTQNAIFFDgCASQ4A6R4AgKU0AQCFYQ8AzPAUAB0fAIC5xAUAzMgDAM3cAwCA3QAAgcEAACUfAIC/kAUAhREAALHsBwCA9QAAgcEAAKEgAIC1jAYALR8AgLdABgCA3Q4AgekOAMwoAgDNtAIAgM0OAIH5DgCFKQAAg4UBAIB1AQCBsQEAgPEBAIHVAQCpIACANR8AgIUFAACxIACAgJkBAIG9AQCCfQAAk9UBAJThAQCFDQAAmSAAgCEfAICACQAAgRkAACkfAICTrQEAlC0AAKUgAICFDQAAMR8AgIUFAACtIACAOR8AgIUpAACCGQAAhTUAAIDxAACB4QAAtSAAgJ0gAIBBIQCAhQUAAGEhAICDdQEAgO0BAIEpAQDM8AEAzbABAEwNAIBdIQCAWSEAgKMNAIBdHwCAZR8AgIA9AACBDQAAbR8AgHUfAICALQAAgR0AAIIVAABhHwCAzSwBAGkfAIBxHwCAeR8AgIjFAwClIQCAzJACAM28AgCE7QMATw0AgIb5AwCdHwCAgIEDAIH9AwCAPQAAgTUAAIFJAACAQQAAzdwBAIJBAAClHwCAoR8AgKkfAIDNMAEAlJ0DAI0hAIDN8AEAzAwBAIG5AwCAxQMAg6EDAJOlAwCArQAAgdUAAICdAACBqQAAiSEAgFINAICBwQAAgMkAAIC1AACBgQAAhSEAgINpBADMcAMAzbQDAIEhAIDNPAEApg0AgJMBBADNjAIAzPQCAIANAACBNQAAlNkGANEfAIDVHwCA2R8AgMwIAQDNHAEAgREAAIApAACpIQCAghkAAICRAQCBkQEAzWgFAMyUAgDMEAkAzSgWAMxYDgDNeA4AzBQNAM3YCgDMKAwAzYwNAMzgFwDM4AoAzDgLAM30CACFEQAAVQ0AgIBRBwCBUQcA4SAAgM2QDgCFBQAA6SAAgMzYDgDN7AEA8SAAgM0ADgCFGQAAzfAPAM08DgDNVA4AzGgBAM1sAQDZIACAYQgAgJSZBwDMwDsAgGEBAIHZAACFKQAAzWQOAMx4AQDNfAEAga0HAICtBwCFZQAAgp0HAIBRAQCBUQEAlOEHAM3AAACEeQEAk8UHAIZhAQDlIACAiCEBAIUNAADtIACAzRgBAMzYAADNtAAAgN0HAIHNBwCZHwCAhQkAAM0fAID1IACA/R8AgN0gAIAFIACADSAAgBUgAIAJIACAASAAgK0hAIARIACAGSAAgMy4AgDNHAMAgGUAAIF1AACCfQAAHSAAgIUJAACFQQAAASEAgKkNAICAmQYAgSEHAIUZAACDfQAACSEAgIVZAAD9IACA+SAAgIDNAACB2QAAjR4AgIURAACE6QAAlR4AgIblAABBIACAgDUAAIENAACdHgCAhR0AAEkgAIClHgCAhQUAAFEgAICAVQAAgW0AAIJ9AACTRQAAlA0AAIUNAAA5IACAkR4AgIAJAACBEQAAmR4AgIUdAABFIACAoR4AgIUFAABNIACAgOkBAIHxAQCCBQAAqR4AgIUJAACFCQAAVSAAgD0gAICAbQEAgXkBAIIZAACDpQEADSEAgIV1AACFBQAAESEAgAUhAIAhIACAzMgCAM3cAgCsDQCAzR4AgIA5AACBOQAA1R4AgN0eAIDRHgCA2R4AgIAdAACBDQAA4R4AgCUgAICAxQAAgdUAAM3AAADMJAIAgNUAAIHFAACFOQAAg8kAACUhAICvDQCAgNUAAIEJAACFBQAALSEAgP0eAICBIACAgAkAAIERAAAFHwCAk5kAAJS5AAANHwCAhWUAAIU9AACJIACAk10AABUfAICFEQAAzXAFAMx0BQCUATwAkSAAgHkgAIDNKAEAhSAAgI0gAICFGQAAlSAAgH0gAIA1IQCAKSEAgCkgAICFJQAAhTkAAMz4AgDNxAMAzTwBALINAICBlQMAgI0DAM3EAQCCpQMAhVEAAIVJAADMKAEAzSwBAM04AQDMPAEAgGk+AIFpPgBJIQCARSEAgM04PADMVDwAgdE8AJOdPgDMSAEAzcgCAM00AQBNIQCAlLk+AFgNAICAoT4AgaE+AIKhPgCIjTwAVSEAgIWtAACALQAAgSEAAIXVPwCVHwCAgO0AAIHxAACGpQAARR8AgISpAADNJAEAzSgBAE0fAICI+T4AhfE/AFUfAIBJHwCAhcU/AM0wAQDNEAEAzfQGAIDdAQCB6QEAzbwGAM1wBgDM4AYAzVwBAMxoBgDNkAYAzWQGAM14BgDMrAcAzagHAMzoBwDNyAcAgk0/AIP9AgCANQIAgekCAFEfAIBZHwCAgAU9AIV9AQBRIQCALSAAgM0UAQApDgCAge0BAIDhAQDNPAEAgs0BAM0sAQCCdQEAgW0BAIBZAQCAZQEAgcUAAIUfAIDNJAEAzTgBAILxAACB+QAAgFkBAIApAACBcQAAzBgBAM18AQDNLAEAjR8AgIEdAACAHQAAiR8AgJEfAIBxIQCAzSQBAMzkPQDNXA8AzegAAMwMAQCA1QEAgckBAIKZAACD5T8ACR8AgBEfAIAZHwCAMSEAgCMOAIB1IQCAPR8AgDEgAIBBHwCALA4AgIBNPwCBQT8AfR8AgGkhAICBHwCAZSEAgIAlPwCBKT8Ak5E/AIN9AAAmDgCAlEEAAMzYAgDNrAIAbSEAgJNVAACACQAAgR0AALUNAIB9IQCAlEEAAK0fAICAnQAAgaEAAIAdAACBEQAAhKUAALUfAICGpQAAvR8AgIjxAACC0QAAgdkAAIDNAACAJQAAgSkAAIIFAADFHwCAsR8AgLkfAIDBHwCAk7EAAJQRAADJHwCAgB0AAIEVAACAJQAAgS0AAII9AAB5IQCAgO0AAIHRAACCFQAAg4EAAIHQPQA1IACAzCACAM3cAQCFeAIAkSEAgC8OAICZIQCAiRgDAN0fAICALQAAgTUAAIAJAACBbQAA5R8AgMEgAICRsQAAkKkAAJPdOwCSAQQAlaUAAJSVOwDtHwCAlqEAAIUJAACTQQAAySAAgPUfAICFBQAA0SAAgJT1AAC5IACAgLkAAIHdAACC5QAA4R8AgOkfAICF6QAAgAkAAIE1AACFBQAAxSAAgPEfAICFHQAAzSAAgPkfAICFBQAA1SAAgLHBBQCwxQMAvSAAgLLFAwC12QUAtM0DAJ0hAICFOQAAuf0DAKEhAICVIQCAuw0AgM0NAIAXDgCAAR8AgAUOAIDTDQCAzIgCAAsOAIDN4D4AzZABAMwkAQBwDQCAjg0AgEEOAIB9DgCAgLEAAM3UPgDN5D4Agw4AgMy8PgDNuD4AgNEDAIHtAwCC/QMAhmkAAD4OAICFnQMAzTwBADgOAIDM6AIAzTw/AIjlAADNGAEAiQ4AgIhBAAA7DgCAdw4AgM0sAQCVDgCAgNUAAJsOAICG4QAAhukAAEcOAIDNJAEAoQ4AgM0QAQCI0QAAiCkAAMz4AgBNDgCAzfgCAMwkAQCnDgCAhS0DAMygPgDNbD4AgNUDAIHNAwCCAQMAg/kDAMxkAwDNzAIARA4AgM0kAQDMDAIAzQgCAIERAADMnAMAzLA+AM20PgDMxD4AzcA+AMyAPgDNuD4ArQ4AgMyEAgDMmD8AzVA+AMwgPgDNoD4AzQw/AM0wPwDNeD8AzQQ/AIhZAAC/DgCAzfgBAMzEAQBKDgCAxQ4AgMsOAIDMFAIAzAgBAM3IAQCIBQAA0Q4AgNcOAIDMKAIAuQ4AgIgNAACG0QAAgB0BAITNAACI9QAAzDwCAIQ1AQDMRAIAhikBAIAOAICIZQEAhg4AgKdEBQBiDgCAi+0AAIjtAACBDQAAiCUAAIZlAADMcAIAzXQCAMwwAgDN2AUAXA4AgIwOAICAOQAAXw4AgMzgBQB6DgCAzCgBAM0UAQCGJQAAiFUAAAgOAICGhDAAxA0AgIDVBwCG/QcAmA4AgMwkAgCIPQAAng4AgGsOAICIPQAApA4AgMxIAgDNeAIAUA4AgKoOAICXwAUAlnAFAJUYBQCAaQAAk1gFAIE5AACIZQAAkPg8AIZZAACeqAUAhEUAAGgOAIDM1AIAmrQFAIBdAACYrAUAp+wEAIgRAADM2AIAzdwCAKO8BACwDgCAzGACAMIOAIBuDgCAyA4AgK0IBADODgCAq/QEAMwsAgCIBQAA1A4AgLfoAwC2HAQAtSgEAMwAAgCzKAQAi3kAAIh9AACwdAQAhkEAAL6kAwCEdQAAiB0AANoOAIC6TAMAzNwDALj8AwCDqAIAiA0AALwOAICIFQAAh5QCAMw4AgBlDgCAzAQCAIvcAgCPDQAAcQ4AgI8ZAADMIAIAdA4AgI3wAgCIdQAAmCADAJksAwCPDgCAlA0AgMxMAgCWcAMAzCQCAIg9AACSDgCAzCwCAIgFAACzDgCAzCQCAIgNAAC2DgCAh/UAAKjUAwCpxAMA3Q4AgNlgAgDSDwCA1Q8AgNsPAICUNQAAkzEAANloAgDYDwCA2UwCAJQFAADeDwCAlSEAAJQpAABQEACAdBYAgEMXAIDSFgCA2WACADcXAIC12AMAtPADAJQ1AADZWAIAWhcAgJQFAADZVAIAlA0AADEXAIDgdAEAisgAALwVAACIyAAA4IACAIcXAICBoAAApOwCAKTIAgCoXAAAvA0AAJkXAIDghAIAvAUAAJ0XAICk+AIA4PQCALDMAwCV0AAAXRcAgLPgAwCmyAIAp2ACAJLYAABkFwCAvsEAAGsXAICXwQAAchcAgHkXAICAFwCAzXg/AMy8PwC+gA0AixcAgLx4DAC9gA0AuvQMALtUDAC49AwAkhcAgLYXAIC3uAwAuhcAgLWMDACyoAMAs6AMAKEXAICxQAMArnACAK9kAwC4BQMArUgDAKgXAICvFwCAqEQDAKnYAwDaFwCAp9gDAKRoAgCliAMAtjUDALc9AwCSyAIAtT0DAJldAQCYTQEAm2UBAJppAQCdZQEAnGUBAJ+FAQCemQEAh5wCAL6tAACWpQAAl70AAMw0BQDNjDcAzLg4AM2sOACflQEAth0AAJ2ZAQCc9QEAs7EBAK54AgDhFwCAvhcAgJk9AADFFwCAmxkAAJoJAADMFwCA0xcAgOBIAgCeCQAArFwCAK30AgD6FwCA9hcAgP4XAIDoFwCAh2ADAO8XAICvVAIAvhEAAJcFAAACGACA4KwCAAYYAICG+AMAh+wDAOC0AgAOGACAr0gCAK6QAgDgPAIAvg0AAAoYAICXGQAA4NgCAIaEAwCWEQAAvwAMAJ1tAACcYQAAEhgAgLFMAgCzUAIAlQ0AABYYAICGnAMA4MgCALMEAgCCBQAAIhgAgLNQAgCVDQAAJhgAgBoYAIAeGACA4LQCAIaMAwCH3AMAvg0AAJVpAACWeQAAKhgAgLToAgC1UAIAlwUAADIYAIDg1AIAtPQCAL4ZAADgoAIALhgAgODUAgCZjAMAt9QCAIoFAAA2GACAOhgAgIoVAAC3NAIAjx0AAD4YAIBCGACAswUAAEYYAICzBQAAWxgAgJwJAACdCQAATRgAgFQYAICMBQAAYhgAgG0YAIB0GACAexgAgJ9JAACCGACAiRgAgGYYAICQGACAlxgAgNkYAIDPGACA6hgAgOAYAICeGACAg8kBAIH5AQCsGACAsxgAgLoYAIDBGACAyBgAgKUYAICAtAIApYgDAOEIAgCuHQAA8RgAgLwJAACN9QEA9RgAgOEAAgCSlQEA45QQAJNFAACXiQEAhRQAAId4AQCGAAQARjoAgEo6AIBOOgCAUjoAgFY6AICdeQAA74xoAJyhAQBaOgCAXjoAgKKZAABiOgCAZjoAgGo6AIBuOgCAp4kAAHI6AIB2OgCAqUkBAHo6AICsqQAAfjoAgII6AICGOgCAsyUBAIo6AICOOgCAkjoAgLchAQC2OQEAtTEBAJY6AICaOgCAufkAALkRAQC4GQEAnjoAgKI6AICmOgCAqjoAgICwAQCEiAIArjoAgIPIAQCEVAMAhFwEALI6AICEXAUAgN0DAIEtAACCMQAAvjwCALo6AIC+OgCAh4gDAIacBACzLQMAwjoAgMY6AIC+AAQAvhwFALbRAwC12QMAyjoAgLv5AwC68QMAmljTAYTgBwC/xQMAvtkDAL3dAwC83QMAvgAYAKUFAwCmDQMAzjoAgIQcGADSOgCA1joAgKPxAwCsAQMArQEDAK4FAwCvGQMArKQbAq3cGgKqLQMAqyUDAL5MGQC+SBoA2joAgL6AGwC04BoCtdQdArYwHgLvCAIA3joAgOGgAQC6OBoC4/gCALoAAAC9ZBwCvvQcAr8AEAKRBNMBkOT2AeBEAQCSCD4C4joAgOY6AIDqOgCA7joAgL6sHADyOgCA9joAgPo6AID+OgCAAjsAgAY7AIAKOwCAgbBtAICAAQCDHFIAgth3AIUgmgCEkL4AhwjPAIaM5gCJbDcBiOAsAYsYfgGK2BMBjeClAYzwWgGP/OsBjliPAbDVFwCxAWgAso1rALOdawC0SWsAtZVvAA47AIDgcAEAEjsAgBY7AIAaOwCAHjsAgIAZAACBGQAAggUAACI7AIAqOwCAoaUCAKJJBwCjQQcApEEGAKXVGwCm3RsAp8EaAKgBHACp4R8AqkkfAKsBEACs9RMAra0TAK4BFACv+RcAqDEGAKkxBgCqTQYAq0UGAKxNBgCtmQYAro0GAK+FBgCGgAMAhxgDAC47AIAyOwCANjsAgDo7AIA+OwCAQjsAgLhtBwC5dQcAun0HALt1BwC8bQcAvc0HAL75BwC/+QcAsKkGALGFBgCyeQcAs3kHALRpBwC1aQcAtl0HALdVBwC2OgCAs8EGAEY7AIAmOwCAth0GAEo7AIBOOwCAtcEGALppBgC7RQYAUjsAgFY7AIC+qQcAv6kHALypBwC9qQcAo4UGAFo7AIBeOwCAYjsAgGY7AICmWQYApYUGAGo7AICrAQYAqi0GAG47AIByOwCAr+0HAK7tBwCt7QcArO0HAKjBBgCpLQEAqiUBAKs9AQCsJQEArS0BAK4lAQCvlQEAdjsAgHo7AIB+OwCAgjsAgIY7AICCvQAAgb0AAIC9AAC4nQEAua0BALqlAQC7bQAAvHUAAL19AAC+dQAAv20AALD1AQCx/QEAssEBALPBAQC0tQEAtb0BALa1AQC3rQEAijsAgI47AICSOwCAs6EBAJY7AIC1oQEAtqEBAJo7AICGgAEAh8QBALo9AQC7NQEAvBkBAL0ZAQC+fQEAv3UBAKPtAQCeOwCAojsAgKY7AICqOwCApu0BAKXtAQCuOwCAq3kBAKpxAQCyOwCAtjsAgK85AQCuMQEArVUBAKxVAQC6OwCAvjsAgMI7AIDGOwCAyjsAgOGsAQDOOwCA42AGANI7AIDWOwCA2jsAgO9UBgDeOwCA4jsAgL60GgDmOwCA6jsAgO47AICGaBwAh4wDAPI7AID2OwCA+jsAgP47AICAOQAAgTkAAIIFAAACPACACjwAgA48AIASPACAFjwAgKgdAwCpQQMAqkEDAKtBAwCsQQMArUkDAK5xAwCvcQMAhCAdABo8AIAePACAIjwAgCY8AIAqPACALjwAgDI8AIC46QAAufUAALr9AAC78QAAvJEAAL2RAAC+iQAAv4kAALDhAACx4QAAsuEAALPhAAC04QAAte0AALbZAAC32QAA4wwHAOEgBwDhMAEA4wgHADY8AIA6PACAPjwAgEI8AIBGPACASjwAgE48AIBSPACA75gHAFY8AIBaPACA74gHALOJAgBePACAYjwAgL6AGgBmPACAtokCALWJAgBqPACAu2UBALplAQBuPACAcjwAgL9pAQC+ZQEAvXUBALx1AQC3PQYAtj0GALU9BgC0IQYAszUGALI1BgCxAQYAsAkGAL9ZBgC+UQYAvVkGALxNBgC7bQYAunkGALlxBgC4eQYAgJ0AAIGtAACCpQAAejwAgH48AICCPACAhjwAgIo8AICvcQYArmkGAK1tBgCsbQYAq4EGAKqZBgCpkQYAqJkGAAY8AIB2PACAjjwAgKPFHQCSPACApcUdAKbFHQCWPACAhgADAIdkAwCqKR4AqykeAKw5HgCtOR4ArikeAK8lHgCzOR4AmjwAgJ48AICiPACApjwAgLb9HgC1/R4AqjwAgLvZHgC60R4ArjwAgLI8AIC/aR8AvmEfAL1pHwC8wR4AqPEeAKnxHgCq8R4Aq/EeAKw1HgCtPR4ArjUeAK8tHgC2PACAujwAgL48AIDCPACAxjwAgMo8AIDOPACA0jwAgLjlHwC57R8AuuUfALv5HwC86R8AvZEfAL6RHwC/jR8AsFUeALFdHgCyVR4As/0fALTlHwC17R8AtuUfALfdHwCjeR8A1jwAgNo8AIDePACA4jwAgKa9HwClvR8A5jwAgKuZHwCqkR8AhogAAIdMAQCvKR4AriEeAK0pHgCsgR8AgEkAAIFJAACCWQAAs5keAOo8AIC1iR4AtlEBAO48AIDyPACA9jwAgLotAQC7JQEAvD0BAL0lAQC+JQEAvxUBAKhNHgCpVR4Aql0eAKtVHgCsTR4ArZ0BAK6JAQCvgQEAhKwBAPo8AID+PACAAj0AgAY9AIAKPQCADj0AgBI9AIC4ZQEAuW0BALplAQC7fQEAvGUBAL1tAQC+ZQEAv9kAALClAQCxrQEAsqUBALO9AQC0rQEAtZ0BALaVAQC3XQEAo9UdABY9AIAaPQCAHj0AgCI9AICmHQIApcUdACY9AICraQIAqmECACo9AIAuPQCAr1kCAK5pAgCtaQIArHECADI9AIA2PQCAOj0AgD49AIBCPQCARj0AgEo9AIBOPQCAgDkAAIE5AACCBQAAUj0AgFo9AIBePQCAh0ADAIZcBACETAQAYj0AgGY9AICEBAUA4yABAGo9AIDhqAEAbj0AgO+UGgByPQCAdj0AgHo9AIB+PQCAgj0AgIY9AICKPQCAs6EDAI49AICSPQCAlj0AgJo9AIC2fQMAtX0DAJ49AIC7WQMAulEDAKI9AICmPQCAv/0AAL79AAC9/QAAvEEDAKhRAgCpWQIAqmkCAKtpAgCstQIArb0CAK61AgCvrQIAhKgHAKo9AICuPQCAsj0AgIKpAAC2PQCAgKkAAIGpAAC4aQEAuWkBALoJAQC7CQEAvBkBAL0ZAQC+CQEAvwkBALDVAgCx3QIAstUCALNpAQC0eQEAtXkBALZpAQC3YQEA4bgBAOHUHwDjOB8A4wwbALo9AIC+PQCAwj0AgMo9AIDOPQCA0j0AgNY9AIDaPQCAvjwJAN49AIDvhBsA74QbAKOhAgDiPQCAhugEAIe8BQDmPQCApn0CAKV9AgDqPQCAq1kCAKpRAgDuPQCA8j0AgK/9AQCu/QEArf0BAKxBAgCzhQYAxj0AgPY9AID6PQCA/j0AgLaJBgC1jQYAAj4AgLuRBgC6iQYABj4AgAo+AIC/9QYAvokGAL2BBgC8iQYADj4AgBI+AIAWPgCAGj4AgB4+AIAiPgCAJj4AgO+EHQAqPgCA4QAEAC4+AIDj/AQAgBEAAIEdAACCBQAAMj4AgKjxBgCp8QYAqg0GAKsFBgCsBQYArQkGAK49BgCvNQYANj4AgDo+AICGiAAAhxADAD4+AIBCPgCARj4AgEo+AIC4EQYAuRkGALohBgC7IQYAvPUHAL39BwC+9QcAv+kHALBNBgCxVQYAsl0GALNVBgC0TQYAtTEGALYxBgC3MQYAo4UHAE4+AIBSPgCAVj4AgFo+AICmiQcApY0HAF4+AICrkQcAqokHAGI+AIBmPgCAr/UHAK6JBwCtgQcArIkHAGo+AICz4QYAbj4AgHI+AIC25QYAdj4AgHo+AIC18QYAur0GALuNBgB+PgCAgj4AgL59AQC/ZQEAvJUGAL11AQCoHQYAqSUGAKotBgCrJQYArD0GAK0hBgCuXQYAr00GAIY+AICKPgCAjj4AgJI+AICWPgCAgrkDAIGxAwCAuQMAuO0BALmFAQC6jQEAu4UBALydAQC9hQEAvo0BAL+FAQCwPQYAsQ0GALIFBgCz5QEAtP0BALXlAQC25QEAt9UBAKOlBQCaPgCAnj4AgKI+AICqPgCApqEFAKW1BQCuPgCAq8kFAKr5BQCGCAwAhxwDAK8hAgCuOQIArTECAKzRBQCyPgCAs/ECALY+AIC6PgCAtlUDAL4+AIDCPgCAteECALpxAwC7eQMAxj4AgMo+AIC+MQMAvz0DALxRAwC9UQMAqCUCAKk1AgCqPQIAqzUCAKwtAgCtkQMArpEDAK+RAwDOPgCA0j4AgNY+AIDaPgCArAAAAN4+AIDiPgCA5j4AgLiZAwC5rQMAuqUDALttAwC8dQMAvX0DAL51AwC/bQMAsPEDALH5AwCywQMAs8EDALSxAwC1vQMAtrUDALepAwDqPgCA7j4AgPI+AID2PgCA+j4AgP4+AIACPwCA76gaAL5oDADhlAEABj8AgOMcBgCADQAAgXEAAIJxAAAKPwCAo/UDAA4/AIASPwCAhEwCABo/AICmUQIApeUDAB4/AICrfQIAqnUCAIbIDACHLA0ArzkCAK41AgCtVQIArFUCAOFQBgAiPwCA4xQHAITADAAmPwCAKj8AgC4/AIAyPwCANj8AgDo/AIA+PwCAQj8AgEY/AIBKPwCA73gbAL74DwBOPwCAUj8AgFY/AICzjQEAWj8AgLWZAQC2jQEAXj8AgFY9AIBiPwCAuoUBALtNAQC8VQEAvV0BAL5VAQC/SQEAo0EOABY/AIBmPwCAaj8AgG4/AICmQQ4ApVUOAHI/AICrgQ4AqkkOAHY/AIB6PwCAr4UOAK6ZDgCtkQ4ArJkOAIBtAACBCQAAgh0AAH4/AIDvGAkAgj8AgIY/AICKPwCA4zwNAI4/AIDhWAwAkj8AgIbQAACHvAMAlj8AgJo/AICokQ4AqZkOAKrJDgCrxQ4ArN0OAK3BDgCuwQ4Ar/UOAIToAACePwCAoj8AgKY/AICqPwCArj8AgLI/AIC2PwCAuMEPALnBDwC6wQ8Au8EPALzBDwC9wQ8AvsEPAL/1DwCwjQ4AsUUOALJNDgCzRQ4AtF0OALVBDgC2QQ4At0EOAKhRDgCpWQ4Aqo0OAKudDgCshQ4ArY0OAK6FDgCvvQ4Auj8AgL4/AIDCPwCAxj8AgMo/AIDOPwCA0j8AgNY/AIC4kQ4AuZkOALqtDgC7RQEAvF0BAL1FAQC+RQEAv3UBALDFDgCxzQ4AssUOALPdDgC0xQ4AtbUOALa9DgC3tQ4AswUOANo/AIDePwCA4j8AgOY/AIC2DQ4AtQ0OAOo/AIC7CQ4AugEOAO4/AIDyPwCAv3EOAL4BDgC9CQ4AvBEOAIJtAACjQQ4AgFUAAIFlAACmSQ4A+j8AgP4/AIClSQ4AqkUOAKtNDgCGSAAAh3gAAK5FDgCvNQ4ArFUOAK1NDgCoXQIAqWECAKplAgCrdQIArG0CAK2xAgCusQIAr7ECAITsBAACQACABkAAgApAAIAOQACAEkAAgBZAAIAaQACAuHEDALlxAwC6cQMAu3EDALzVAwC93QMAvtUDAL/NAwCw0QIAsdECALLRAgCz0QIAtFEDALVRAwC2UQMAt1EDAB5AAICz6QIAIkAAgL6ABAC2NQIAJkAAgCpAAIC14QIAuhECALsRAgAuQACAMkAAgL6RAwC/kQMAvAECAL0BAgA2QACAOkAAgKOlAgA+QACApa0CAEJAAIBGQACApnkCAEpAAIBOQACAq10CAKpdAgCtTQIArE0CAK/dAwCu3QMAqNUCAKndAgCqLQEAqyUBAKw9AQCtJQEAri0BAK8lAQBSQACAVkAAgFpAAIBeQACAYkAAgGpAAIBuQACAckAAgLiFAQC5iQEAup0BALuVAQC8sQEAvbEBAL55AAC/eQAAsF0BALHlAQCy4QEAs/kBALTpAQC13QEAttUBALe9AQDh8A4AdkAAgOMUDgB6QACAgb0AAIC9AAB+QACAgq0AAIYABACH7AUAgkAAgIZAAICKQACAjkAAgO9gDgCSQACAlkAAgJpAAICFXH0AnkAAgKJAAIDjZAEApkAAgOG0AQCqQACA76AOAK5AAICmPgCAhPgFALJAAIC2QACAukAAgLMlBgBmQACAvkAAgMJAAIDGQACAtiUGALU1BgDKQACAu6EGALoZBgDOQACA0kAAgL+ZBgC+rQYAva0GALy1BgCCbQAA7zAEAIBVAACBZQAAvlwDANZAAICG+AAAh2wDANpAAIDeQACA4kAAgOZAAIDqQACA40QEAO5AAIDhjAcAo6UGAPJAAID2QACA+kAAgP5AAICmpQYApbUGAAJBAICrIQYAqpkGAAZBAIAKQQCArxkGAK4tBgCtLQYArDUGAA5BAICz+QcAEkEAgBZBAIC2SQcAGkEAgB5BAIC1UQcAulEHALtRBwAiQQCAJkEAgL41BwC/OQcAvEUHAL09BwCoNQYAqT0GAKo1BgCriQYArJ0GAK2NBgCusQYAr7EGACpBAIAuQQCAMkEAgDZBAICADQAAgbEAAIKxAAA6QQCAuKEGALmtBgC6vQYAu7UGALytBgC9XQEAvlUBAL9NAQCw0QYAsdEGALLVBgCzrQYAtLUGALW5BgC2qQYAt6UGAKO9BgA+QQCAQkEAgISEAgC+kAEApg0GAKUVBgBKQQCAqxUGAKoVBgCGCAAAh3wBAK99BgCucQYArXkGAKwBBgBOQQCAs60BAFJBAIBWQQCAtqkBAFpBAIBeQQCAta0BALptAQC7dQEAYkEAgGZBAIC+XQEAvzUBALxlAQC9VQEAqGECAKlhAgCqYQIAq2ECAKxhAgCtbQIArp0CAK+VAgBqQQCAbkEAgHJBAIB2QQCAekEAgH5BAICCQQCAhkEAgLiVAgC5nQIAuqECALuhAgC8cQMAvXEDAL5xAwC/cQMAsO0CALH1AgCy9QIAs8UCALTdAgC1tQIAtrECALexAgCKQQCAjkEAgJJBAICj5QIAlkEAgKXlAgCm4QIAmkEAgJ5BAICiQQCAqiUCAKs9AgCsLQIArR0CAK4VAgCvfQIApkEAgKpBAICuQQCAhEB8AIAVAACBHQAAggUAALJBAIC+7HwAukEAgIZIfQCHCAMAvkEAgMJBAIDGQQCAykEAgKidAgCpxQIAqsECAKvBAgCsxQIArc0CAK7xAgCv8QIAzkEAgNJBAIDWQQCA2kEAgMkAAADeQQCA4kEAgOZBAIC4wQEAucEBALrBAQC73QEAvM0BAL31AQC+/QEAv50BALBBAQCxQQEAskEBALNBAQC0QQEAtUEBALZBAQC3QQEA4TgGAOpBAIDjaAYA7kEAgPJBAID2QQCA+kEAgISUfQC+rHwA/kEAgAJCAIAGQgCAvrh/AApCAIDvEAEADkIAgBJCAIAWQgCAGkIAgB5CAIDhkAEAIkIAgONEAAAqQgCAgS0AAIAtAADvgAAAgjkAAC5CAIAyQgCA9j8AgDZCAIDhsH8AtkEAgOPUfAA6QgCAJkIAgD5CAICGuAAAh9QCAEJCAIBGQgCASkIAgE5CAIBSQgCAVkIAgO8gfABaQgCAs4l9AF5CAIBiQgCAZkIAgGpCAIC2jX0AtY19AG5CAIC7RX4AukV+AHJCAIB2QgCAv0V+AL5FfgC9VX4AvFV+AKNJfQB6QgCAfkIAgIJCAICGQgCApk19AKVNfQCKQgCAq4V+AKqFfgCOQgCAkkIAgK+FfgCuhX4ArZV+AKyVfgCCbQAAszF+AIBVAACBZQAAtvF/AITcAwCWQgCAtSF+ALrNfwC70X8AhgAEAIfUAAC+dX8Av3l/ALzBfwC9wX8AqOV/AKn1fwCq/X8Aq/V/AKztfwCtNX4Arj1+AK81fgCaQgCAnkIAgKJCAICmQgCAqkIAgK5CAICyQgCAtkIAgLjZfgC54X4AuuF+ALvhfgC85X4Avel+AL6ZfgC/mX4AsE1+ALFRfgCyUX4As1F+ALT1fgC1+X4Atul+ALfpfgCjdX8AukIAgL5CAIDCQgCAxkIAgKa1fgClZX8AykIAgKuVfgCqiX4AzkIAgNJCAICvPX4ArjF+AK2FfgCshX4A1kIAgLMxfgDaQgCA3kIAgLbFAQDiQgCA5kIAgLXRAQC6yQEAu8kBAOpCAIDuQgCAvs0BAL+xAQC8yQEAvckBAKjdfQCp9X0Aqv19AKvxfQCsHQIArQECAK45AgCvOQIA8kIAgPZCAID6QgCA/kIAgIIFAAACQwCAgBEAAIERAAC4EQIAuRkCALohAgC7IQIAvNUCAL3dAgC+1QIAv80CALBJAgCxSQIAslkCALNZAgC0TQIAtTECALYxAgC3MQIAvgADAKNxfQCEiAIAvoAEAKaFAgAKQwCADkMAgKWRAgCqiQIAq4kCAIYoBACHDAMAro0CAK/xAgCsiQIArYkCABJDAICEyAMAhcwFALPlAwAWQwCAteUDALbtAwAaQwCAHkMAgCJDAIC6bQMAu2UDALx9AwC9ZQMAvmUDAL9VAwAmQwCAKkMAgL8ABACjJQIALkMAgKUlAgCmLQIAMkMAgDZDAIA6QwCAqq0CAKulAgCsvQIAraUCAK6lAgCvlQIAPkMAgEJDAIBGQwCASkMAgE5DAIDjzAMAUkMAgOGsAQBWQwCA7xwDAFpDAIBeQwCAYkMAgGZDAIBqQwCAbkMAgOFwfwBGQQCA4wR+AHJDAIB6QwCA4ZQBAH5DAIDjWAEAgNkAAIHZAACCJQAA7+R+AIJDAICGQwCA7+B+AIpDAICzAQEAjkMAgIboBwCHLAQAkkMAgLY1AQC1BQEAlkMAgLvxAAC64QAAmkMAgJ5DAIC/sQAAvtEAAL3ZAAC84QAABkMAgHZDAICiQwCApkMAgKEBBACgEQQAoxkAAKLFBACotQYAqb0GAKrpBgCr/QYArO0GAK3VBgCu3QYArz0HALBFBwCxVQcAslUHALNtBwC0dQcAtRUHALYdBwC3FQcAuC0HALk1BwC6MQcAuw0HALwZBwC9GQcAvgkHAL8JBwCjQQYAqkMAgK5DAICyQwCAtkMAgKZ1BgClRQYAukMAgKuxBwCqoQcAj8ltAL5DAICv8QcArpEHAK2ZBwCsoQcAld11AJTBdACXzXAAli1zAJFdaACQVWgAk9l0AJJNaQCd5XgAnB17AJ9tBwCeuXgAmR1/AJhVcACboXwAmvl8AIJhbACDhWkAwkMAgMZDAICGEXUAhxF1AISVaQCFjWgAij10AIvFcgDKQwCAzkMAgI7dfgCPMX0AjD1xAI2dcQCSGX0Ak716ANJDAIDvkAkAltUGAJdRBQCUXXkAlQl5AJpxBQCbvQUA1kMAgNpDAIDeQwCA4agFAJx5AQDjuAgAoYUBAOJDAICjqQ0AogEMAKUBCACkOQ0Ap6kJAKa9CQCppRUAqAEUAKsBFACq/RUArbkRAKyxEQCvARwArqEQALH9HACw5R0As+kZALIBGAC1ASQAtH0ZAIQUAAC+FAAAgI0AAIGVAACCbQAA6kMAgIZQDwCHZAAA7kMAgPJDAIC61QcAu90HALjBBwC5wQcAvjEEAL8xBAC88QcAvfEHALKtBwCztQcAsK0HALGlBwC2nQcAt/UHALSlBwC1lQcAqmkHAKtpBwCoaQcAqWkHAK5pBwCvaQcArGkHAK1pBwD2QwCA+kMAgP5DAIACRACABkQAgApEAIAORACAEkQAgKgRBQCpHQUAqjkFAKs5BQCsLQUArVEFAK5JBQCvQQUAFkQAgBpEAIAeRACAIkQAgCZEAIAqRACALkQAgDJEAIC4XQIAuWkCALrBAwC7wQMAvPkDAL35AwC+kQMAv7UDALAJBQCxCQUAsuECALPhAgC0dQIAtX0CALZ1AgC3bQIAs7EEAIQAAgC+BA0ANkQAgDpEAIC20QQAtaUEAD5EAIC7zQQAus0EAEJEAIBGRACAv7kDAL6xAwC9NQMAvDUDAEpEAICj9QQATkQAgFJEAICmlQQAWkQAgF5EAICl4QQAqokEAKuJBACHqA0AhswMAK71AwCv/QMArHEDAK1xAwDhUAYA4TQHAONAAADjWAcAgNEAAIHdAACC1QAAYkQAgGZEAIBqRACAbkQAgHJEAIB2RACAekQAgO+cAADvyAcAfkQAgIJEAICzNQIAhkQAgLW1AQCKRACAjkQAgLa1AQC+7AwAkkQAgLuRAQC6mQEAvVEBALyJAQC/UQEAvlkBAKjtDQCp/Q0AqvUNAKttDgCsdQ4ArX0OAK51DgCvbQ4AVkQAgJZEAICaRACAnkQAgKJEAICmRACAqkQAgK5EAIC49Q4Auf0OALr1DgC7QQ8AvEEPAL1JDwC+cQ8Av3EPALAVDgCxHQ4AshUOALPNDgC01Q4Atd0OALbVDgC3zQ4Ao30NALJEAIC2RACAukQAgL5EAICm/Q4Apf0OAMJEAICr2Q4AqtEOAISoAgDGRACArxkOAK4RDgCtGQ4ArMEOAIBNAACBVQAAglUAALNRDwDKRACAtXEPALZxDwDORACAhuAAAIcEAwC6XQ8Auy0PALw1DwC9OQ8Avi0PAL8lDwCoVQ4AqV0OAKqVDgCrrQ4ArLUOAK29DgCutQ4Ar60OANJEAIDWRACA2kQAgN5EAIDiRACA5kQAgOpEAIDuRACAuGkBALlpAQC6eQEAu3kBALxpAQC9aQEAvt0BAL/VAQCw1Q4AsaUOALKtDgCzoQ4AtKUOALWtDgC2nQ4At1kBAKMdDgDyRACA9kQAgOZDAID6RACApj0OAKU9DgD+RACAq2EOAKoRDgACRQCABkUAgK9pDgCuYQ4ArXUOAKx5DgAKRQCADkUAgBJFAIAWRQCAGkUAgB5FAIAiRQCAJkUAgIANAACBFQAAgh0AACpFAIAuRQCAMkUAgIR4AQC+FAAA4xQPADpFAIDh4A0AhAADAIawBACHFAMAPkUAgEJFAIBGRQCASkUAgE5FAIBSRQCA78APAFZFAIBaRQCAXkUAgGJFAIBmRQCAakUAgLNtAwBuRQCAtX0DALZ1AwByRQCAdkUAgHpFAIC6UQMAu1EDALz1AwC9/QMAvukDAL/hAwB+RQCAgkUAgIZFAICKRQCAjkUAgJJFAICWRQCAmkUAgKhxAgCpeQIAqokDAKuJAwCsmQMArZkDAK6JAwCviQMAsPkDALH5AwCyTQMAs0UDALRBAwC1SQMAtnEDALdxAwC4IQMAuSEDALohAwC7IQMAvCEDAL0hAwC+IQMAvyEDAICdAQCBEQAAghEAAIQEBQDvFAAAnkUAgKJFAIC+EAUA48gAAKpFAIDh0AEArkUAgLJFAIC2RQCAukUAgL5FAICqeQIAq3kCAIboBACHYAUArsECAK/JAgCs3QIArdUCAMJFAICjRQIAxkUAgMpFAICmXQIAzkUAgNJFAIClVQIA1kUAgNpFAIDeRQCA4kUAgOZFAIDqRQCA7kUAgO+EDgC+rAQA4dAOAPJFAIDjFAEA9kUAgPpFAID+RQCAAkYAgLPdAQAGRgCACkYAgA5GAIASRgCAtv0BALX9AQAaRgCAu90BALrdAQCE4AQAHkYAgL+hAQC+vQEAvb0BALy9AQCoBQYAqR0GAKoVBgCrLQYArDUGAK09BgCuNQYArykGAKZFAICC9QcAgeUHAIDlBwAWRgCAIkYAgIYcAACHsAMAuCUGALnFBgC6zQYAu8UGALzdBgC9xQYAvs0GAL/FBgCwWQYAsVkGALIpBgCzKQYAtDkGALUlBgC2JQYAtx0GAKOdBgAmRgCAKkYAgC5GAIAyRgCApr0GAKW9BgA2RgCAq50GAKqdBgA6RgCAPkYAgK/hBgCu/QYArf0GAKz9BgBCRgCAs/UHAEZGAIBKRgCAtu0HAE5GAIBSRgCAteUHALqNBwC7kQcAVkYAgFpGAIC+dQcAv30HALyBBwC9fQcAqCUGAKkpBgCqOQYAqzkGAKwpBgCtKQYArnkGAK91BgBeRgCAYkYAgGZGAIBqRgCAbkYAgHJGAIB2RgCAekYAgLjVBgC53QYAuuEGALv9BgC85QYAve0GAL7lBgC/mQYAsA0GALERBgCyEQYAs+0GALT1BgC1/QYAtvUGALftBgCjsQYAgi0AAIEVAACAsQAANkUAgKapBgCloQYAfkYAgKvVBgCqyQYAgkYAgL5oAQCvOQYArjEGAK05BgCsxQYAikYAgLPxAQCGaAAAh3wBALZdAQCORgCAkkYAgLVVAQC6SQEAu0kBAJZGAICaRgCAvj0BAL8hAQC8OQEAvTUBAJ5GAICiRgCAhAQDAL6AHACmRgCA4RwGAKpGAIDjAAYAvwguAK5GAICyRgCA78gHALZGAIC6RgCAvkYAgMJGAIDGRgCAykYAgKN9AgDORgCApdkCANJGAIDWRgCAptECANpGAIDeRgCAq8UCAKrFAgCtuQIArLUCAK+tAgCusQIAqW0FAKhZBQCrDQIAqrkCAK0dAgCsHQIArwUCAK4NAgC+aB0A4kYAgOZGAIDqRgCAgB0AAIEJAACCmQEA7kYAgLnhAwC4KQIAu+EDALrpAwC94QMAvPkDAL/hAwC+6QMAsU0CALBNAgCzIQIAsi0CALUlAgC0OQIAtxECALYlAgCowQIAqdECAKrRAgCr5QIArP0CAK0VAQCuHQEArw0BAPJGAID6RgCA/kYAgAJHAIAGRwCACkcAgA5HAIASRwCAuAUBALkJAQC6HQEAuxUBALwxAQC9MQEAvv0BAL/1AQCweQEAsUEBALJBAQCzXQEAtEUBALVNAQC2RQEAtz0BAIagHQCHxB0AFkcAgO/YAAAaRwCAHkcAgCJHAIDvxAYAhGwcAOH0BgAmRwCA47AGACpHAIDhlAEALkcAgONEBgCzGQIAMkcAgDZHAIA6RwCAhewsALbVAQC1NQIAPkcAgLvFAQC6/QEAQkcAgEZHAIC/yQEAvsEBAL3JAQC81QEAo9kdAPZGAIBKRwCATkcAgFJHAICmFR4ApfUdAFZHAICrBR4Aqj0eAFpHAIBeRwCArwkeAK4BHgCtCR4ArBUeAIBpAACBaQAAggUAAGJHAIBmRwCAakcAgIcQAwCGfAMAbkcAgHJHAIB2RwCAekcAgH5HAICCRwCAhkcAgIpHAICopR8Aqa0fAKqlHwCrvR8ArKUfAK2tHwCupR8ArxUfAI5HAICSRwCAlkcAgJpHAICeRwCAokcAgKZHAICqRwCAuA0fALkZHwC6IR8AuyEfALzZAAC92QAAvskAAL/BAACwcR8AsXEfALJxHwCzRR8AtEEfALVNHwC2PR8AtzUfALMtHgCuRwCAskcAgLZHAIC6RwCAti0eALUtHgC+RwCAu7UeALq1HgDCRwCAxkcAgL+JHgC+hR4AvZEeALylHgCCKQAAo2keAIAdAACBFQAApmkeAMpHAIDORwCApWkeAKrxHgCr8R4A0kcAgITgAQCuwR4Ar80eAKzhHgCt1R4AqNUBAKnlAQCq7QEAq+UBAKz9AQCt5QEAru0BAK/lAQC+oAEAhkYAgNZHAIDaRwCAhhAAAId0AQDeRwCA4kcAgLh9AQC5wQAAusEAALvBAAC8wQAAvckAAL7xAAC/8QAAsJ0BALFFAQCyTQEAs0UBALRdAQC1RQEAtk0BALdFAQDmRwCA6kcAgO5HAIDyRwCA9kcAgO80AgDv7B4A+kcAgOHwHQDj4AIA4zAeAOGEAQD+RwCAAkgAgAZIAIAKSACAsyUCAJQAAAAOSACAEkgAgBZIAIC2JQIAtTUCABpIAIC7wQIAuhkCAB5IAIAiSACAv8ECAL7ZAgC90QIAvNkCACZIAIAqSACALkgAgKPpAgAySACApfkCAKbpAgA2SACAOkgAgD5IAICq1QIAqw0CAKwVAgCtHQIArhUCAK8NAgCAYQAAgWEAAIIFAABCSACASkgAgIQABAC+FAQATkgAgIbABACHUAMAUkgAgFZIAIBaSACAXkgAgGJIAIBmSACAqK0CAKm9AgCqtQIAqw0BAKwVAQCtHQEArhUBAK8NAQCE7AQAakgAgG5IAIBySACAdkgAgHpIAIB+SACAgkgAgLgdAQC5LQEAuiUBALvNAQC81QEAvd0BAL7JAQC/wQEAsH0BALFVAQCyXQEAs1UBALRNAQC1PQEAtjUBALctAQDhGB4AhkgAgOM4HgCKSACAjkgAgJJIAICWSACAmkgAgJ5IAICiSACAvmAEAKZIAICBdQAAgHUAAO/gHwCCbQAAqkgAgK5IAICG6AQAh3wFALJIAIDhkAEAukgAgOOgAAC+SACAwkgAgMZIAIDvtAAAykgAgM5IAIDSSACA1kgAgLUFBgBGSACAtkgAgLYFBgDaSACA3kgAgLOlBQDiSACAvRkGALwRBgC/YQYAvhEGAOZIAIDqSACAuwkGALohBgCj/QUA7kgAgPJIAID2SACA+kgAgKZdBgClXQYA/kgAgKtRBgCqeQYAAkkAgAZJAICvOQYArkkGAK1BBgCsSQYAqFEGAKlZBgCqYQYAq2EGAKxhBgCtYQYArmEGAK9hBgAKSQCADkkAgBJJAIAWSQCAgA0AAIGxAQCCsQEAGkkAgLhNBwC5VQcAul0HALtVBwC8TQcAvXUHAL59BwC/cQcAsMUHALHNBwCyxQcAs90HALTFBwC1zQcAtsUHALd5BwCz6QcAHkkAgCJJAICEwAEAvtgBALbhBwC16QcAJkkAgLsJBgC6AQYAhogAAIesAQC/CQYAvgEGAL0JBgC8EQYAKkkAgKOtBwAuSQCAMkkAgKalBwA2SQCAOkkAgKWtBwCqRQYAq00GAD5JAIBCSQCArkUGAK9NBgCsVQYArU0GAKhZBgCpZQYAqm0GAKtlBgCsYQYArWEGAK5hBgCvYQYAhKwBAEZJAIBKSQCATkkAgFJJAIBWSQCAWkkAgF5JAIC4kQEAuZkBALqhAQC7oQEAvHEBAL1xAQC+cQEAv3EBALDxAQCx8QEAsvUBALPdAQC0xQEAtbEBALaxAQC3sQEAs+UFAGJJAIBmSQCAakkAgG5JAIC24QUAtekFAHJJAIC7NQIAujUCAHZJAIB6SQCAv3UCAL4BAgC9CQIAvCECAH5JAICjoQUAgkkAgIZJAICmpQUAikkAgI5JAIClrQUAqnECAKtxAgCSSQCAvigDAK5FAgCvMQIArGUCAK1NAgCA1QAAgd0AAILhAACaSQCA4yABAJ5JAIDhqAEAokkAgO80AgCmSQCAhggMAIdoAwCsAAAAqkkAgK5JAICySQCAs40DALZJAIC6SQCAhIAMAL5JAIC2vQMAtYEDAMJJAIC7TQMAuk0DAMZJAIDKSQCAv00DAL5NAwC9TQMAvE0DAKhBAgCpTQIAqkUCAKtZAgCsSQIArX0CAK51AgCvuQIAvmgNAM5JAIDSSQCA1kkAgIRsDADaSQCA3kkAgOJJAIC4TQEAuVUBALpVAQC7ZQEAvH0BAL0VAQC+EQEAvxEBALDJAgCxyQIAstkCALPZAgC0yQIAtckCALZ9AQC3dQEA4XgHAOOYAADjuAYA4VwGAOZJAIDqSQCA7kkAgPJJAID2SQCA+kkAgP5JAIACSgCA7AAAAO9cAADv6AYACkoAgIFpAACAYQAAo4UCAIJhAACliQIADkoAgBJKAICmtQIAhkAMAIfEDACrRQIAqkUCAK1FAgCsRQIAr0UCAK5FAgCojQ4AqZEOAKqVDgCrqQ4ArKUOAK2tDgCupQ4Ar9kOAAZKAIAWSgCAGkoAgB5KAIAiSgCAJkoAgCpKAIAuSgCAuHUPALl9DwC6dQ8Au90PALzFDwC9zQ8AvsUPAL/9DwCwqQ4AsbUOALK1DgCzhQ4AtJ0OALVRDwC2UQ8At1EPALMdDgAySgCANkoAgDpKAIA+SgCAti0OALUtDgBCSgCAu3EOALptDgBGSgCASkoAgL+VDwC+WQ4AvVEOALxhDgBOSgCAo1kOAFJKAIBWSgCApmkOAFpKAIBeSgCApWkOAKopDgCrNQ4AYkoAgGZKAICuHQ4Ar9EPAKwlDgCtFQ4AqL0OAKnRDgCq0Q4AqykBAKw5AQCtOQEArikBAK8pAQCADQAAgRUAAIIdAABqSgCAbkoAgHJKAIC+dAIAdkoAgLjtAQC5hQEAuoEBALuBAQC8hQEAvY0BAL6xAQC/sQEAsFkBALFZAQCy7QEAs+UBALT9AQC15QEAtuUBALfVAQB6SgCAtqkBALWhAQB+SgCAs0kOAIJKAICGOAAAh9wBAL8xAQC+KQEAvSEBALwpAQC7jQEAuo0BAJZJAICGSgCAoxkOAIpKAICOSgCAkkoAgJZKAICm+QEApfEBAJpKAICr3QEAqt0BAJ5KAICiSgCAr2EBAK55AQCtcQEArHkBAKZKAIDv3A8AqkoAgK5KAICySgCAtkoAgLpKAIC+SgCAwkoAgMZKAIDKSgCAzkoAgNJKAIDj6A4A1koAgOGMDgCAEQAAgREAAIIRAACEQAIA2koAgN5KAIDiSgCAvhADAIbABACHRAMA6koAgO5KAIDySgCA9koAgPpKAID+SgCA7yQCAAJLAIAGSwCACksAgA5LAIASSwCAFksAgBpLAICE7AQAHksAgCJLAIAmSwCA4+wCACpLAIDhOAEALksAgLNVAwAySwCANksAgDpLAIA+SwCAth0DALUdAwBCSwCAuwkDALo5AwBGSwCASksAgL/9AAC+/QAAvfkAALwRAwCogQIAqYkCAKqdAgCrsQIArNUCAK3dAgCu1QIAr80CAIDNAQCBCQAAghkAAE5LAIBSSwCAWksAgL5wBQBeSwCAuFkBALlZAQC6aQEAu2kBALx5AQC9eQEAvmkBAL9lAQCwvQIAsY0CALKFAgCzbQEAtHkBALV5AQC2aQEAt2kBAIYgBACHCAUAYksAgGZLAIBqSwCAbksAgHJLAIDvXAAAhOwEAOFcDgB2SwCA44wOAHpLAIB+SwCAgksAgIZLAICjVQIAiksAgI5LAICSSwCAlksAgKYdAgClHQIAmksAgKsJAgCqOQIAnksAgKJLAICv/QEArv0BAK35AQCsEQIAqGkGAKlpBgCqeQYAq3kGAKxpBgCtaQYArp0GAK+VBgBWSwCApksAgKpLAICuSwCAsksAgLZLAIC6SwCAvksAgLj1BgC5+QYAuo0GALuFBgC8nQYAvYUGAL6FBgC/tQYAsO0GALH1BgCy/QYAs/UGALTtBgC10QYAttEGALfRBgCz8QYAghUAAIG1AACAtQAAwksAgLbpBgC14QYAvtQDALsxBgC6KQYAxksAgMpLAIC/FQYAvikGAL0hBgC8KQYAzksAgKO1BgCGyAAAh8gAAKatBgDSSwCA1ksAgKWlBgCqbQYAq3UGANpLAIDeSwCArm0GAK9RBgCsbQYArWUGAKg1BgCpOQYAqoEGAKuBBgCsgQYArYEGAK6BBgCvtQYA4ksAgOZLAIDqSwCA7ksAgPJLAID2SwCA+ksAgP5LAIC4nQYAua0GALqlBgC7aQEAvHkBAL15AQC+aQEAv2kBALDRBgCx0QYAstEGALPRBgC0tQYAtb0GALa1BgC3rQYAswkGAAJMAIAGTACACkwAgA5MAIC2AQYAtQkGABJMAIC7FQYAuhUGABZMAIAaTACAv3kGAL5xBgC9BQYAvAUGAB5MAICjTQYAIkwAgOZKAICmRQYAJkwAgCpMAIClTQYAqlEGAKtRBgAuTACAMkwAgK41BgCvPQYArEEGAK1BBgCB6QMAgN0DAISIAwCC4QMAhrA8AIeIAgC+VAMAOkwAgD5MAIBCTACARkwAgEpMAIBOTACAUkwAgFZMAIBaTACA4/AGAF5MAIDhMAYAhAA8AGJMAIBmTACAakwAgG5MAIByTACAhTQ9AHZMAIB6TACA77AHAH5MAICCTACAhkwAgIpMAICOTACAkkwAgL7EPACWTACAgp0BAIGdAQCAnQEAqA0CAKllAgCqfQIAq3UCAKxZAgCtWQIArpkDAK+ZAwCw6QMAsekDALL5AwCz+QMAtOkDALXpAwC2XQMAt1UDALhtAwC5dQMAunUDALtFAwC8XQMAvTUDAL4xAwC/KQMAmkwAgJ5MAICiTACAqkwAgOFgAwDv9AMA40QCAK5MAICyTACA4zwDAO/0NwDh/AEAtkwAgLpMAIC+TACAwkwAgIZkPwCHaD0AhTQhALOZAwDGTACAtb0DALa1AwDKTACAzkwAgNJMAIC6QQIAu0ECALxBAgC9QQIAvkECAL9BAgDWTACA2kwAgN5MAIDiTACA5kwAgOpMAIDuTACA7/gBAIRoPADhPAYA8kwAgOMcBgD2TACA+kwAgP5MAIACTQCAoxUDAAZNAIAKTQCADk0AgBJNAICmOQMApTEDABpNAICrzQIAqs0CAL5kPgAeTQCAr80CAK7NAgCtzQIArM0CAKgdPgCpJT4Aqi0+AKslPgCsPT4ArSU+AK4tPgCvJT4ApkwAgIL1PwCB5T8AgOU/ABZNAIAiTQCAhgAEAIecAwC4LT4AuTE+ALoxPgC7MT4AvNE+AL3RPgC+0T4Av80+ALBdPgCxIT4Asjk+ALM5PgC0KT4AtSk+ALYZPgC3FT4As6U+ACZNAIAqTQCALk0AgDJNAIC2pT4AtbU+ADZNAIC75T4Aupk+ADpNAIA+TQCAv+0+AL7tPgC97T4AvO0+AEJNAICj4T4ARk0AgEpNAICm4T4ATk0AgFJNAICl8T4Aqt0+AKuhPgBWTQCAWk0AgK6pPgCvqT4ArKk+AK2pPgCPBSUAsyU+AF5NAIBiTQCAtik+AGZNAIBqTQCAtSk+ALp9PgC7RT4Abk0AgHJNAIC+tT4Av70+ALxdPgC9vT4An304AJ5lOQCd8TgAnFE0AJtZNQCaUTUAmfEwAJgNMQCXZTEAlsEwAJVZLQCUTS0Ak+EsAJLZKQCRWSkAkPEoALSlGQC13RgAdk0AgIQIAACwkRUAsQEVALIBGACzvRkAgA0AAIGtAwCCpQMAek0AgKNhAACiHT0AoZk9AKBxPACkxQUApUEEAKYBCACn4QkANkwAgKH1AQCi6QEAo90FAKwBEACtxREArtkRAK85EACoZQgAqQEMAKrZDQCrCQ0AijEuAIuhMwB+TQCAgk0AgI65MwCPETYAjB0yAI1NMgCCJSYAg6krAL5kAwCEYAQAhqEvAIcVLgCEGSoAhZEqAJphPgCb7T4AhsgEAIfcAwCKTQCA4Vw+AJyJAwDjAD4Akmk2AJN5NwCOTQCA7xg+AJZNOwCXuT8AlME7AJVdOgCpnT0AqIk9AKu5PQCqrT0Arak9AKyhPQCvyT0ArqE9AL7oBACSTQCAlk0AgJpNAICeTQCAok0AgKZNAICqTQCAuVk9ALhRPQC7eT0AumU9AL1pPQC8YT0Avx09AL5hPQCxgT0AsLk9ALNpPQCyiT0AtXk9ALRxPQC3aT0AtnE9AKMhPACuTQCAsk0AgLZNAIC6TQCApi08AKUtPAC+TQCAq0E8AKp5PADCTQCAxk0AgK+5PACusTwArbk8AKxZPADKTQCAzk0AgLN9AwDSTQCAtdkDANZNAIDaTQCAttEDAN5NAIDiTQCAu8UDALrFAwC9uQMAvLUDAL+tAwC+sQMA5k0AgOpNAIDuTQCA71wDAIAVAACBHQAAgjEAAO+MPgCE7AQA4fw+APJNAIDjHD4A+k0AgOGUAQD+TQCA4yAAAKP1AwACTgCAh+gEAIZsBAAGTgCAplkDAKVRAwAKTgCAq00DAKpNAwAOTgCAEk4AgK8lAwCuOQMArTEDAKw9AwCGTQCA9k0AgBZOAIAaTgCAHk4AgCJOAIAmTgCAKk4AgKhxBgCpTQYAqo0GAKuFBgCsnQYArYUGAK6NBgCvhQYAsP0GALFBBwCyQQcAs0EHALRBBwC1SQcAtnEHALdxBwC4IQcAuSEHALolBwC7OQcAvCkHAL0VBwC+HQcAv/0HALMlBgAuTgCAMk4AgDZOAIA6TgCAtiUGALU1BgA+TgCAu6UHALoZBgBCTgCARk4AgL+tBwC+pQcAvbUHALy1BwBKTgCAo2EGAE5OAIBSTgCApmEGAFZOAIBaTgCApXEGAKpdBgCr4QcAXk4AgGJOAICu4QcAr+kHAKzxBwCt8QcAqLEGAKm9BgCqzQYAq90GAKzNBgCt/QYArvUGAK8VAQCA+QEAgc0BAILFAQC+ZAIAhpAAAIcAAQBqTgCAbk4AgLjRAQC52QEAuuEBALvhAQC8kQEAvZ0BAL6VAQC/iQEAsG0BALF1AQCyfQEAs3UBALRtAQC18QEAtvEBALfxAQCzRQYAZk4AgHJOAIB2TgCAek4AgLZ9BgC1RQYAfk4AgLuxAQC6qQEAgk4AgIZOAIC/NQEAvqkBAL2hAQC8qQEAik4AgKMBBgCOTgCAkk4AgKY5BgCWTgCAmk4AgKUBBgCq7QEAq/UBAJ5OAICiTgCAru0BAK9xAQCs7QEAreUBAOEoAQCmTgCA41ACAKpOAICuTgCAsk4AgLZOAIC6TgCAvk4AgMJOAIDGTgCAyk4AgIFxAACAGQAA75wCAIJ5AADOTgCA0k4AgITIAgCzxQMA2k4AgLXFAwC2xQMAvhADAIbADACHRAwAuqkDALulAwC8vQMAvaEDAL6hAwC/lQMArhEGAK8ZBgCsAQYArQEGAKqlBgCrEQYAqEU5AKlxOQDeTgCA4k4AgOZOAIDqTgCA7k4AgPJOAID2TgCA+k4AgL7tBwC/TQcAvNEHAL3lBwC63QcAu8EHALg1BgC51QcAtjkGALcNBgC0JQYAtTkGALIxBgCzPQYAsFEGALFRBgCoOQIAqTkCAKqBAgCrgQIArIECAK2JAgCusQIAr7ECAIRsDQD+TgCAvmANAAJPAIAGTwCACk8AgA5PAIASTwCAuE0BALlVAQC6XQEAu1UBALxNAQC9dQEAvn0BAL91AQCwoQIAsa0CALKlAgCzuQIAtKkCALWdAgC2lQIAt3kBAOFUBgDh1AcA4zgGAOOwBwAWTwCAGk8AgB5PAIAiTwCAhOQMACZPAIAqTwCALk8AgDJPAIA2TwCA72wAAO/kBwCjSQIAOk8AgD5PAIBCTwCASk8AgKZJAgClSQIATk8AgKspAgCqJQIAhkgMAIfcDACvGQIAri0CAK0tAgCsMQIAqFEOAKmlDgCqrQ4Aq6UOAKy9DgCtpQ4Arq0OAK+lDgCA5Q8Age0PAILlDwBGTwCAUk8AgFZPAIBaTwCAXk8AgLjVDwC53Q8AutUPALvpDwC8+Q8AvfkPAL7pDwC/6Q8AsN0OALFBDwCyRQ8As10PALRFDwC1TQ8AtkUPALftDwCzJQ4AYk8AgGZPAIBqTwCAbk8AgLYlDgC1NQ4Ack8AgLuFDwC6GQ4Adk8AgHpPAIC/iQ8AvoEPAL2JDwC8kQ8Afk8AgKNhDgCCTwCAhk8AgKZhDgCKTwCAjk8AgKVxDgCqXQ4Aq8EPAJJPAICWTwCArsUPAK/NDwCs1Q8Arc0PAKjRDgCp2Q4AqjkBAKs5AQCsKQEArSkBAK6dAQCvlQEAmk8AgJ5PAICiTwCApk8AgIANAACBtQAAgr0AAKpPAIC4lQEAuZ0BALqhAQC7oQEAvHEAAL1xAAC+cQAAv3EAALDtAQCx9QEAsvUBALPFAQC03QEAtbUBALaxAQC3sQEArk8AgLJPAICzuQEAvsACALWpAQC2TwCAuk8AgLahAQCGgAEAh8QBALs5AQC6IQEAvRkBALwpAQC/eQEAvhEBAKPxAQC+TwCA1k4AgMJPAIDGTwCApukBAKXhAQDKTwCAq3EBAKppAQDOTwCA0k8AgK8xAQCuWQEArVEBAKxhAQDWTwCA2k8AgN5PAIDiTwCA4agBAOZPAIDjQAIA6k8AgL8oFQDuTwCA73QCAPJPAID2TwCA+k8AgP5PAIACUACABlAAgON0DwCEiAMA4TQOAApQAIAOUACAElAAgBZQAICADQAAgRUAAIIRAAAaUACAHlAAgO+kDwAiUACAKlAAgKgZAwCpQQMAqkUDAKtdAwCsTQMArX0DAK51AwCvnQAAhaQVAL58AwCGCAQAhxwDAC5QAIAyUACANlAAgDpQAIC49QAAuf0AALr1AAC7jQAAvIEAAL2BAAC+gQAAv4EAALDlAACx7QAAsuUAALP5AAC07QAAtdEAALbVAAC3zQAAPlAAgEJQAIBGUACAs8ECAEpQAIC1yQIAtvECAE5QAIBSUACAVlAAgLotAQC7JQEAvD0BAL0hAQC+JQEAvxkBAKapAgCESAIAWlAAgKWRAgBeUACAo5kCAGJQAIBmUACArn0BAK9BAQCsZQEArXkBAKp1AQCrfQEAalAAgG5QAIByUACAdlAAgHpQAIB+UACA7+QAAIJQAICGUACAilAAgOMQDgCOUACA4VgOAJJQAICALQAAgREAAIIVAAC+sAUAs3UBAJpQAICHFAUAhmwEAJ5QAIC21QAAtWUBAKJQAIC7/QAAuvUAAKZQAICqUACAv6EAAL69AAC93QAAvN0AAKh9BgCptQYAqr0GAKu1BgCsrQYArRUHAK4dBwCvFQcAllAAgK5QAICyUACAtlAAgLpQAIC+UACAwlAAgMZQAIC4OQcAuTkHALrJBwC7yQcAvNkHAL3ZBwC+zQcAv8UHALBxBwCxeQcAskkHALNJBwC0OQcAtSUHALYhBwC3IQcAozUGAMpQAIDOUACA0lAAgNZQAICmlQcApSUGANpQAICrvQcAqrUHAN5QAIDiUACAr+EHAK79BwCtnQcArJ0HAOZQAIDqUACA7lAAgPJQAID2UACAgj0AAIE9AACAPQAA+lAAgP5QAIACUQCAhKADAL6kAwAGUQCAhvgAAIfgAACoxQYAqdUGAKrVBgCr5QYArP0GAK0xAQCuMQEArzEBAApRAIAOUQCAElEAgBZRAIAaUQCAHlEAgCJRAIAmUQCAuN0BALntAQC65QEAu40BALyVAQC9nQEAvpUBAL+NAQCwUQEAsVEBALJRAQCzUQEAtPUBALX9AQC29QEAt+0BALNdBgAqUQCALlEAgDJRAIA2UQCAtrEBALV1BgA6UQCAu5UBALqVAQA+UQCAQlEAgL85AQC+MQEAvYUBALyFAQClLQYARlEAgEpRAICm6QEATlEAgFJRAICjBQYAVlEAgK3dAQCs3QEAr2EBAK5pAQBaUQCAJlAAgKvNAQCqzQEAXlEAgGJRAICExAMAvwD0AGZRAICCPQAAgT0AAIA9AABqUQCAblEAgHJRAIC+YAMAelEAgH5RAICCUQCAhlEAgIbgHACHAAMA7wwHAIpRAICOUQCAklEAgJZRAICaUQCAnlEAgKJRAICmUQCAqlEAgOHABgCuUQCA4ywHALJRAIC2UQCAulEAgL5RAIDCUQCAxlEAgMpRAIDOUQCA0lEAgKiBAwCpgQMAqoEDAKuBAwCsgQMArYEDAK6BAwCvgQMAsEUDALFNAwCyRQMAs10DALRNAwC1fQMAtnUDALcZAwC4KQMAuTUDALo9AwC7MQMAvAEDAL31AAC+/QAAv+0AALMpAgDWUQCA2lEAgN5RAIDiUQCAtiECALUpAgCEUB0Au6kCALqhAgDqUQCA7lEAgL+ZAgC+qQIAvakCALyxAgCBTQAAgE0AAO+cAwCCXQAAhvAcAId4HQC+EB0A8lEAgPZRAID6UQCA/lEAgAJSAIDhkAEABlIAgONgAwAKUgCADlIAgBJSAIAWUgCAGlIAgB5SAIAiUgCAJlIAgO+UAQCE7BwA4XAGACpSAIDjUAEALlIAgDJSAIA2UgCAOlIAgKPpAgA+UgCAQlIAgEZSAIBKUgCApuECAKXpAgBOUgCAq2kCAKphAgBSUgCAvqgcAK9ZAgCuaQIArWkCAKxxAgCoMR4AqTEeAKoxHgCrMR4ArF0eAK1FHgCuTR4Ar0UeAOZRAICCzR8AgfUfAID9HwBWUgCAWlIAgIYcAACH+AMAuMUeALnNHgC6xR4Au90eALzFHgC9zR4AvsUeAL9ZHwCwPR4AsQUeALINHgCzBR4AtB0eALUBHgC2BR4At/0eALO5HgBeUgCAYlIAgGZSAIBqUgCAtsUeALXVHgBuUgCAu8EeALr5HgByUgCAdlIAgL/FHgC+2R4AvdEeALzZHgB6UgCAo/0eAH5SAICCUgCApoEeAIZSAICKUgCApZEeAKq9HgCrhR4AjlIAgJJSAICunR4Ar4EeAKydHgCtlR4AqCkeAKkpHgCqVR4Aq20eAKx1HgCtfR4ArnUeAK9pHgCWUgCAmlIAgJ5SAICiUgCAplIAgKpSAICuUgCAslIAgLjpHgC59R4Auv0eALv1HgC87R4AvZEeAL6RHgC/kR4AsB0eALHlHgCy7R4As+UeALT9HgC15R4Atu0eALflHgCz3R4AtlIAgLpSAIC+UgCAwlIAgLb9HgC1/R4AhFgBALshHgC62R4AvigAAMpSAIC/IR4AvjkeAL0xHgC8OR4AgU0AAIBNAACjlR4Agl0AAKW1HgDGUgCAzlIAgKa1HgB2UQCA0lIAgKtpHgCqkR4ArXkeAKxxHgCvaR4ArnEeAIYABACHRAMAs4ECANZSAIC1gQIA2lIAgN5SAIC2gQIAiAAAAOJSAIC74QIAuu0CAL3lAgC8+QIAv9ECAL7lAgDmUgCA6lIAgIREAwC+jAMA4UgCAO5SAIDjAAIA7/wfAPJSAIDhPB4A79wCAONgHwD2UgCA+lIAgP5SAIACUwCAqQUCAKixAgCrBQIAqgUCAK0NAgCsBQIArzUCAK41AgCEbAUABlMAgApTAIAOUwCAElMAgBZTAIAaUwCAHlMAgLnpAwC44QMAu/kDALrhAwC96QMAvOEDAL9dAwC+4QMAsSkCALAlAgCzPQIAsiECALUZAgC0LQIAt9kDALYRAgAiUwCAJlMAgCpTAICjhQMALlMAgKWFAwCmhQMAMlMAgDpTAIA+UwCAqukDAKvlAwCs/QMAreEDAK7hAwCv1QMAgEkAAIFVAACCVQAAo6kCAL6YBAClQQEApkEBAEJTAICG4AUAh+AFAKotAQCrOQEArBEBAK0FAQCuDQEArwUBAEZTAIBKUwCATlMAgO/cAABSUwCAVlMAgFpTAIDviB4AhCwHAOHsHgBeUwCA4xweAGJTAIDhlAEAZlMAgOMwAACzJQIAhWDmAGpTAIBuUwCAclMAgLbNAQC1zQEAdlMAgLu1AQC6oQEAelMAgH5TAIC/iQEAvoEBAL2JAQC8nQEANlMAgIJTAICGUwCAilMAgI5TAICSUwCAllMAgJpTAICoAQcAqQEHAKp1BwCrrQcArLUHAK29BwCuqQcAr6kHALDZBwCx7QcAsvkHALP1BwC0mQcAtZkHALaJBwC3gQcAuIkHALmJBwC6bQAAu2UAALx9AAC9ZQAAvm0AAL9lAACBCQAAgJkAAJ5TAICCHQAAolMAgKZTAICqUwCArlMAgKgNBQCpfQUAqk0FAKuhBgCspQYAra0GAK6dBgCv/QYAsIUGALGRBgCyqQYAs70GALSlBgC1rQYAtqUGALd5BgC4SQYAuUkGALpZBgC7WQYAvEkGAL1JBgC++QcAv/kHALNdBgCyUwCAhigCAIcsAQC2UwCAtp0GALWdBgC6UwCAu4kGALq9BgC+UwCAwlMAgL/9BgC+/QYAvYEGALyNBgDGUwCAoxkGAMpTAIDOUwCAptkGANJTAIDWUwCApdkGAKr5BgCrzQYA2lMAgN5TAICuuQYAr7kGAKzJBgCtxQYAqBkBAKkZAQCqjQAAq50AAKyNAACtvQAArrUAAK/dAADiUwCA5lMAgOpTAIDuUwCA8lMAgPZTAID6UwCA/lMAgLhpAAC5aQAAunkAALt5AAC8aQAAvWkAAL7dAwC/1QMAsKkAALGpAACyvQAAs7UAALSZAAC1mQAAtlkAALdZAAC+LAIAAlQAgAZUAIAKVACADlQAgBJUAIAaVACAHlQAgIAtAACBNQAAgj0AACJUAICGkAwAh+gCACZUAIAqVACAs0UDAC5UAIAyVACANlQAgDpUAIC2fQMAtUUDAD5UAIC7LQMAui0DAEJUAIBGVACAvx0DAL4dAwC9IQMAvCkDAKvNAwCqzQMASlQAgE5UAICv/QMArv0DAK3BAwCsyQMAo6UDAFJUAIBWVACAWlQAgF5UAICmnQMApaUDAGJUAIBmVACAalQAgG5UAIByVACAdlQAgII9AACBPQAAgD0AAHpUAIB+VACAglQAgIRgAwCG0AwAhzADAIpUAICOVACAvkQCAJJUAICWVACAmlQAgOEAAACeVACA46gGAKJUAICE7AwAplQAgO/QAwCqVACArlQAgLJUAIC2VACAulQAgLNtAQC+VACAwlQAgMZUAIDKVACAthEBALVlAQDOVACAuz0BALo1AQDSVACA1lQAgL/9AQC+/QEAvRUBALwVAQDaVACA4fwGAN5UAIDjPAcA4lQAgOZUAIDqVACA7lQAgPJUAIC+bAwA+lQAgP5UAIACVQCABlUAgApVAIDvFAYAgV0AAIBdAACj5QEAgm0AAKXtAQAOVQCAElUAgKaZAQCHqAwAhuQMAKu1AQCqvQEArZ0BAKydAQCvdQEArnUBAKgZDgCpGQ4AqiUOAKs1DgCsLQ4ArVEOAK5RDgCvUQ4AhlQAgPZUAIAWVQCAGlUAgB5VAIAiVQCAJlUAgCpVAIC47Q4AufUOALr1DgC7jQ4AvJUOAL2dDgC+lQ4Av40OALAxDgCxOQ4AsgEOALMBDgC0+Q4AtfkOALbdDgC31Q4AqHkOAKl5DgCqjQ8Aq4UPAKydDwCtgQ8AroUPAK+5DwAuVQCAMlUAgDZVAIA6VQCAPlUAgEJVAIBGVQCASlUAgLiRDwC5mQ8AuqEPALuhDwC8UQ8AvV0PAL5JDwC/SQ8AsM0PALHVDwCy3Q8As9UPALTNDwC1sQ8AtrEPALexDwCzBQ4ATlUAgFJVAIBWVQCAWlUAgLYBDgC1FQ4AXlUAgLsRDgC6CQ4AYlUAgISgAQC/dQ4AvgkOAL0BDgC8CQ4AgmkAAKNBDgCAWQAAgVEAAKZFDgC+WAEAZlUAgKVRDgCqTQ4Aq1UOAIbIAACHrAEArk0OAK8xDgCsTQ4ArUUOAGpVAIBuVQCAclUAgHZVAIB6VQCAflUAgBZUAICCVQCAqAkOAKkJDgCqGQ4AqxkOAKwJDgCtYQ4ArmEOAK+VAQCw7QEAsfUBALL9AQCz9QEAtO0BALV1AQC2fQEAt3UBALhNAQC5VQEAul0BALtVAQC8TQEAvfEAAL7xAAC/8QAAhlUAgIpVAICOVQCAklUAgJZVAIDj6A4AmlUAgOE0DgC+AAQA79wPAJ5VAICiVQCAplUAgKpVAICuVQCAslUAgLPxDQC2VQCAulUAgL5VAIDCVQCAtoENALXhDQDGVQCAu1ECALpJAgDKVQCAzlUAgL/RAgC+SQIAvUECALxJAgCjMQ0A0lUAgISIAwDaVQCA3lUAgKZBDQClIQ0A4lUAgKuRAgCqiQIA5lUAgOpVAICvEQIArokCAK2BAgCsiQIAgKkAAIGpAACCTQAA7lUAgOFkEgDjTAIA4wgLAOGsAQDyVQCA7zwCAO8YFgD2VQCAhlAGAIdIAwD6VQCA/lUAgKiBAgCpgQIAqoECAKuBAgCsgQIArYECAK6FAgCvHQEAAlYAgAZWAIAKVgCADlYAgBJWAIAWVgCAGlYAgIS4BQC4dQEAuX0BALp1AQC7CQEAvBkBAL0ZAQC+CQEAvwEBALBlAQCxbQEAsmUBALN9AQC0aQEAtV0BALZVAQC3TQEAHlYAgCJWAIAmVgCAKlYAgC5WAIAyVgCA7zQAAO/ADgDhXA4A4UwPAOOUAADjnA4ANlYAgIJlAACBfQAAgH0AADpWAIA+VgCAvsQHALNFAgBCVgCAtUUCALZNAgBKVgCAhkAGAIeQBAC67QEAu+UBALz9AQC95QEAvuEBAL/VAQCflQgAngUIAJ3dDQCcPQwAmzEMAJr1DQCZ7RAAmD0QAJfVEQCWsRUAlQUUAJTlFQCTtRkAkjEYAJE5GACQDRwAj2EcANZVAICz1QYATlYAgLX9BgBGVgCAUlYAgLaRBgBWVgCAWlYAgLuVBgC6lQYAvVUHALxVBwC/VQcAvlUHAF5WAIBiVgCAqo0GAKuFBgCsnQYArYUGAK6BBgCvtQYAhKgAAGZWAIBqVgCAoyUFAG5WAIClJQUApi0FAHJWAIB2VgCAelYAgH5WAICCVgCAhlYAgIpWAICOVgCAklYAgJZWAICaVgCAnlYAgKJWAICjqQUAotEEAKHZBACgZQUAgiEdAIM1HQCmVgCAqlYAgIaVGACH3RQAhBkZAIUZGQCKDRUAi7EUAK5WAICyVgCAjsURAI/VDACMzRAAjR0RAJJhDQCTdQ0AvkwAALpWAICWxQkAl80EAJSNDACVXQkAmkEFAJtBBQCGyP8Ah0wAAIFZAACAeQAAnCEEAIJRAAChxQEAvlYAgKMB/ACi2QEApRX9AKS1/QCnufkApgH4AKkJ+AColfkAqwX1AKqt9QCtsfEArAHwAK8d8ACurfEAseHtALAB7ACzAegAsv3sALVd6QC09ekAwlYAgMZWAIDKVgCAzlYAgNJWAIDWVgCA2lYAgN5WAIDiVgCA5lYAgKiNBACplQQAqpUEAKulBACsvQQArdkEAK75BACv8QQAhGz8AOpWAIDuVgCA8lYAgPZWAID6VgCA/lYAgAJXAIC4eQUAucUFALrNBQC7xQUAvN0FAL3FBQC+zQUAv+0FALCZBACxmQQAskkFALNJBQC0WQUAtVkFALZJBQC3SQUAox0EAL7M/AAGVwCAClcAgA5XAICmWQQApTUEABJXAICrXQQAql0EABZXAIAaVwCAr50FAK6dBQCtnQUArJ0FAB5XAICznQIAIlcAgCpXAIC2UQIALlcAgDJXAIC1uQIAukkCALtVAgCGSP0Ah8D8AL41AgC/PQIAvEUCAL09AgCo3QQAqUkDAKpRAwCrbQMArHUDAK2VAwCunQMAr7kDAICNAQCB5QEAguEBADZXAIA6VwCAPlcAgEJXAIBGVwCAuJUDALmdAwC6lQMAu60DALy1AwC9vQMAvrUDAL9VAgCwyQMAsdUDALLVAwCzrQMAtLUDALW9AwC2tQMAt60DAEpXAIBOVwCAo9EDAFJXAICl9QMAVlcAgFpXAICmHQMAXlcAgGJXAICrGQMAqgUDAK1xAwCsCQMAr3EDAK55AwDhKAcAZlcAgOPkBgBqVwCA4SgGAG5XAIDjaAEAclcAgHZXAIB6VwCA71gAAH5XAICCVwCAhlcAgO/IBgCKVwCAqE39AKmB/QCq0f0Aq9H9AKzx/QCt8f0ArvH9AK/x/QAmVwCAghEAAIEZAACA0f8AjlcAgJJXAICEdAMAvnQDALh1/gC5ff4AunX+ALvF/gC83f4AvcX+AL7F/gC/9f4AsJH9ALGR/QCykf0As5H9ALRV/gC1Xf4AtlX+ALdN/gCzWf0AllcAgIasAACHRAMAmlcAgLZx/QC1ef0AnlcAgLtV/QC6Vf0AolcAgKZXAIC/mf4AvpH+AL1F/QC8Rf0AqlcAgKMd/QCuVwCAslcAgKY1/QC2VwCAulcAgKU9/QCqEf0AqxH9AL5XAIDCVwCArtX+AK/d/gCsAf0ArQH9AKjN/wCp0f8AqtH/AKsh/gCsIf4ArSH+AK4h/gCvIf4AxlcAgMpXAIDOVwCA0lcAgNZXAIDaVwCA3lcAgOJXAIC4jf4AuZH+ALqV/gC7rf4AvLX+AL25/gC+qf4Av6n+ALDh/gCx4f4AsuX+ALP5/gC06f4AtdX+ALbd/gC3uf4As1n/AOZXAIC2VgCA6lcAgO5XAIC2of4Atan+APJXAIC7Jf4AuiX+APZXAID6VwCAvxH+AL4t/gC9Lf4AvDH+AIIZAACjHf8AgGUAAIEZAACm5f4A/lcAgAJYAICl7f4AqmH+AKth/gCEZAEAviAAAK5p/gCvVf4ArHX+AK1p/gAKWACA4zT+AA5YAIDhfP0AhrAEAIcIAwASWACAFlgAgBpYAIAeWACAhCQDAIQkBAAiWACA70j+ACZYAIAqWACAs+kCAC5YAIC+RAQAvkAFADJYAIC2nQIAtZkCADZYAIC7iQIAur0CADpYAIA+WACAv1kDAL5RAwC9WQMAvJECAKkdAgCoFQIAqyUCAKolAgCtWQIArFUCAK9NAgCuUQIAvmQGAEJYAIBGWACASlgAgE5YAIBSWACAVlgAgFpYAIC5+QMAuPEDALtNAwC68QMAvUEDALxZAwC/cQMAvkEDALEJAgCwPQIAs8kDALIBAgC12QMAtNEDALfJAwC20QMA4ZABAF5YAIDj8AAAYlgAgGZYAICCPQAAgT0AAIA9AABqWACAblgAgHJYAIB6WACAflgAgIJYAIDvLAAAhlgAgKPpAwCKWACAhugEAIdgBQCOWACApp0DAKWZAwCSWACAq4kDAKq9AwCWWACAmlgAgK9ZAgCuUQIArVkCAKyRAwCeWACAolgAgKZYAICqWACArlgAgLJYAIC2WACA71gBAISgBADhVP8AulgAgOOEAQC+WACAwlgAgMZYAIDKWACAs9kBAM5YAICFzBkA0lgAgNZYAIC28QEAtfkBANpYAIC7pQEAutkBAN5YAIDiWACAv50BAL6dAQC9pQEAvK0BAKgBBgCpDQYAqhEGAKsRBgCsMQYArTEGAK4pBgCvJQYAdlgAgILJBwCBwQcAgPEHAOZYAIDqWACAhhwAAIf8AwC47QYAufUGALr9BgC79QYAvO0GAL1RBwC+VQcAv00HALBdBgCxIQYAsjkGALMxBgC0GQYAtRkGALbdBgC31QYAo5kGAO5YAIDyWACA9lgAgPpYAICmsQYApbkGAP5YAICr5QYAqpkGAAJZAIAGWQCAr90GAK7dBgCt5QYArO0GAApZAICz8QcADlkAgBJZAIC2gQcAFlkAgBpZAIC1mQcAuo0HALtlBwAeWQCAIlkAgL59BwC/ZQcAvH0HAL11BwCoLQYAqTUGAKo9BgCrMQYArFUGAK1FBgCuRQYAr3UGACZZAIAqWQCALlkAgDJZAIA2WQCAOlkAgD5ZAIBCWQCAuOkGALn1BgC6/QYAu/UGALztBgC9kQYAvpUGAL+NBgCwDQYAseUGALLtBgCz5QYAtP0GALXlBgC27QYAt+UGAKO1BgBGWQCASlkAgE5ZAIBSWQCApsUGAKXdBgAGWACAqyEGAKrJBgBWWQCAWlkAgK8hBgCuOQYArTEGAKw5BgCASQAAgUkAAIJZAACzRQEAXlkAgLVFAQC2RQEAYlkAgIZAAACHZAAAuikBALslAQC8PQEAvSEBAL4hAQC/FQEAZlkAgGpZAICEBAMAvgAMAOMoBgDv4AIA4RAGAG5ZAIDvkAYA4zwCAHJZAIDh1AEAdlkAgHpZAIB+WQCAglkAgIZZAICKWQCAo8ECAI5ZAIClwQIAklkAgJZZAICmwQIAmlkAgJ5ZAICroQIAqq0CAK2lAgCsuQIAr5ECAK6lAgCpBQIAqLECAKsFAgCqBQIArQ0CAKwFAgCvNQIArjUCAISoDACiWQCAplkAgKpZAICuWQCAslkAgLZZAIC6WQCAuekDALjhAwC7+QMAuuEDAL3pAwC84QMAv10DAL7hAwCxKQIAsCUCALM9AgCyIQIAtRkCALQtAgC32QMAthECAKitAgCp1QIAqtUCAKsNAQCsFQEArQkBAK4xAQCvLQEAvlkAgMJZAIDKWQCAzlkAgNJZAIDWWQCA2lkAgN5ZAIC4IQEAuSEBALrtAQC75QEAvP0BAL3lAQC+7QEAv+UBALBVAQCxXQEAslUBALMtAQC0NQEAtTkBALYtAQC3JQEAgD0BAIGlAACCrQAA79QHAOJZAIDmWQCA6lkAgO8oBwC+LAwA4fQGAO5ZAIDjkAcA8lkAgOGUAQD2WQCA4wwGALMdAgD6WQCAh0QNAIZMDQD+WQCAtskBALXdAQACWgCAu9kBALrRAQAGWgCACloAgL+9AQC+sQEAvbkBALzBAQDGWQCADloAgBJaAIAWWgCAGloAgB5aAIAiWgCAJloAgKgJDwCpCQ8AqhkPAKsZDwCsCQ8ArQkPAK6pDwCvqQ8AsNkPALHtDwCy+Q8As/UPALSVDwC1hQ8AtoUPALe1DwC4jQ8AuWEAALphAAC7YQAAvGEAAL1hAAC+YQAAv2EAAKNdDQCCLQAAgRUAAIAdAAAqWgCApokOAKWdDgAuWgCAq5kOAKqRDgAyWgCANloAgK/9DgCu8Q4ArfkOAKyBDgA6WgCAs/UPAIboAwCHvAMAtu0PAD5aAIBCWgCAteUPALp5DwC7TQ8ARloAgEpaAIC+NQ8AvyUPALxJDwC9RQ8AozEOAE5aAIBSWgCAVloAgFpaAICmKQ4ApSEOAF5aAICriQ4Aqr0OAGJaAIBmWgCAr+EOAK7xDgCtgQ4ArI0OAGpaAIBuWgCAcloAgHZaAIB6WgCAfloAgIJaAICGWgCAiloAgI5aAICSWgCAlloAgIANAACB1QAAgt0AAJpaAICoQQEAqVEBAKpRAQCrZQEArH0BAK2RAACukQAAr5EAAJ5aAICiWgCAhGQBAL5kAQCGkAEAh4QAAKpaAICuWgCAuJEAALmRAAC6kQAAu5EAALyxAAC9sQAAvrEAAL+xAACw8QAAsfkAALLBAACzwQAAtLEAALWxAAC2sQAAt7EAALPZAgCyWgCAvnADAL5EBAC2WgCAthEDALX1AgC6WgCAuz0DALo1AwC+WgCAwloAgL91AwC+dQMAvRUDALwVAwDGWgCAo50CAMpaAIDOWgCAplUDANJaAIDWWgCApbECAKpxAwCreQMA2loAgN5aAICuMQMArzEDAKxRAwCtUQMAqDkDAKk5AwCqjQAAq50AAKyNAACtvQAArrUAAK/dAADiWgCA5loAgOpaAIDuWgCA8loAgPZaAID6WgCA/loAgLhpAAC5aQAAunkAALt5AAC8aQAAvWkAAL7ZAQC/2QEAsKkAALGpAACyvQAAs7UAALSZAAC1mQAAtlkAALdZAAACWwCABlsAgApbAIAOWwCA70QAABJbAICGmAUAh+QCAOOYAACEqAIA4fgBABpbAICAOQAAgTkAAIItAAAeWwCAs0UBACJbAIAmWwCAKlsAgC5bAIC2fQEAtUUBADJbAIC7LQEAui0BADZbAIA6WwCAvx0BAL4dAQC9IQEAvCkBAD5bAIDhUA4AQlsAgOM8DwBGWwCASlsAgE5bAIBSWwCAVlsAgFpbAIDjAAAAXlsAgGJbAIBmWwCAhPQFAO/kDgCuqQEAr6kBAKydAQCtlQEAqpkBAKuZAQBqWwCAblsAgKbJAQByWwCAdlsAgKXxAQCC/QcAo/EBAID9BwCB9QcAFlsAgHpbAIB+WwCAglsAgIZbAICKWwCAhrgDAIeQAwCoDQcAqRkHAKptBwCrZQcArH0HAK1lBwCuZQcAr1UHALAtBwCxxQcAssEHALPdBwC0xQcAtc0HALbFBwC3/QcAuMUHALnJBwC62QcAu9kHALypBwC9qQcAvp0HAL+VBwCzxQcAjlsAgJJbAICWWwCAmlsAgLbFBwC11QcAnlsAgLshBwC6yQcAolsAgKZbAIC/KQcAviEHAL0pBwC8NQcAqlsAgKOBBwCuWwCAslsAgKaBBwC2WwCAulsAgKWRBwCqjQcAq2UHAL5bAIDCWwCArmUHAK9tBwCscQcArW0HAKgVAQCpgQEAqoEBAKuBAQCsgQEArYkBAK6xAQCvsQEAxlsAgMpbAIDOWwCA0lsAgNZbAIDaWwCA3lsAgOJbAIC4ZQAAuW0AALplAAC7fQAAvGUAAL1tAAC+ZQAAv90AALChAQCxrQEAsqUBALO5AQC0qQEAtZ0BALaVAQC3XQAA5lsAgIIdAACBHQAAgB0AAOpbAIDuWwCA8lsAgL5YAQCErAIA9lsAgIcIAQCGjAEA+lsAgKZaAID+WwCAAlwAgLNJAQAGXACAClwAgA5cAIASXACAtkkBALVJAQAWXACAuykBALolAQAaXACAHlwAgL8ZAQC+LQEAvS0BALwxAQC+2AMAIlwAgO/4BgAmXACAKlwAgC5cAIDv4AIAMlwAgOGUAQA2XACA43QCADpcAIDhmAUAPlwAgOMMBwBCXACARlwAgEpcAICjwQIAhIwDAKXBAgBOXACAUlwAgKbBAgBWXACAWlwAgKuhAgCqrQIAraUCAKy5AgCvkQIArqUCAKgxAwCpPQMAqjUDAKtJAwCsWQMArVkDAK5JAwCvQQMAgMUAAIEJAACCGQAAXlwAgGJcAIBqXACAh2wDAIYcHAC47QAAufEAALr1AAC7jQAAvJUAAL2BAAC+gQAAv70AALAJAwCxCQMAsu0AALPhAAC04QAAteEAALblAAC32QAAblwAgHJcAIB2XACAs7ECAHpcAIC13QIAttUCAH5cAICCXACAhlwAgLrBAgC7wQIAvDUBAL05AQC+KQEAvykBAKaNAgCKXACAjlwAgKWFAgCSXACAo+kCAJZcAICaXACArnEBAK9xAQCsbQEArWEBAKqZAgCrmQIAnlwAgKJcAICmXACA4YQGAKpcAIDjJAYArlwAgOGUAQCyXACA4ywAAL7oHQC2XACAulwAgO/IAACE/B0AvvAcAL5cAIDvSAcAwlwAgMZcAIDKXACAzlwAgIEdAACAHQAA0lwAgIIFAACGQBwAh8QcANpcAIDeXACA4lwAgOZcAIDqXACA7lwAgKi1HgCpBR8Aqg0fAKsFHwCsAR8ArQkfAK45HwCvOR8A1lwAgPJcAID2XACA+lwAgP5cAIACXQCABl0AgApdAIC4yR8AudUfALrRHwC76R8AvPkfAL3tHwC+mR8Av5kfALAlHwCxLR8AsjkfALM1HwC0LR8AtQ0fALYFHwC3/R8As4UfAA5dAIASXQCAFl0AgBpdAIC2iR8AtYkfAB5dAIC76R8AuuEfACJdAIAmXQCAv8kfAL7pHwC94R8AvO0fACpdAICjwR8ALl0AgDJdAICmzR8ANl0AgDpdAIClzR8AqqUfAKutHwA+XQCAQl0AgK6tHwCvjR8ArKkfAK2lHwCo6R4AqekeAKr5HgCr+R4ArOkeAK3pHgCuPQEArzUBAID5AQCBzQEAgsUBAIRgAgBGXQCASl0AgIdoAQCGnAAAuNEBALnZAQC64QEAu+EBALyRAQC9nQEAvpUBAL+JAQCwTQEAsVUBALJdAQCzVQEAtE0BALXxAQC28QEAt/EBALNxHgBOXQCAUl0AgFZdAIBaXQCAtmkeALVhHgBeXQCAu5EBALqJAQBiXQCAZl0AgL81AQC+iQEAvYEBALyJAQBqXQCAZlwAgKM5HgBuXQCApSkeAHJdAIB2XQCApiEeAHpdAIB+XQCAq9kBAKrBAQCtyQEArMEBAK99AQCuwQEAgl0AgIZdAICKXQCAjl0AgJJdAICWXQCAml0AgJ5dAICiXQCApl0AgKpdAICuXQCAsl0AgLpdAIC+XQCAvnADAOHkHgCESAIA4+gfAIQABACAeQAAgXkAAIJpAADCXQCAhsAEAIdEAwDGXQCAyl0AgM5dAIDSXQCA7yAfANZdAIDaXQCA3l0AgOJdAIDvSAIA5l0AgOpdAIDuXQCA8l0AgL7oBAD2XQCA+l0AgP5dAIACXgCA4ZABAAZeAIDj6AIAs0kDAApeAIAOXgCAEl4AgBZeAIC2SQMAtUkDABpeAIC7LQMAuiUDAB5eAIAiXgCAvxUDAL4VAwC9IQMAvCkDAKg1AgCpgQIAqoECAKuBAgCsgQIArYkCAK6xAgCvsQIAgP0BAIHNAQCCxQEAKl4AgIaQBACHBAUALl4AgIRwBAC4SQEAuUkBALpZAQC7WQEAvEkBAL1JAQC+eQEAv3kBALChAgCxqQIAsr0CALO1AgC0kQIAtZECALZ5AQC3eQEAMl4AgDZeAIA6XgCAPl4AgEJeAIBGXgCASl4AgO/QHgC+6AQA4VweAE5eAIDjkAAAUl4AgFZeAIBaXgCAXl4AgKNJAgBiXgCAZl4AgGpeAIBuXgCApkkCAKVJAgByXgCAqy0CAKolAgB2XgCAel4AgK8VAgCuFQIArSECAKwpAgCoNQYAqT0GAKpVBgCrZQYArH0GAK1lBgCubQYAr2EGACZeAIB+XgCAgl4AgIZeAICADQAAgbEAAIKxAACKXgCAuOkGALnpBgC6+QYAu/UGALyVBgC9nQYAvpUGAL+NBgCw4QYAseEGALLhBgCz/QYAtOUGALXtBgC25QYAt9kGALPdBgCOXgCAkl4AgJZeAICaXgCAtuUGALX1BgCeXgCAuyUGALolBgCGmAAAh6wAAL8pBgC+IQYAvSkGALw1BgCiXgCAo5kGAKZeAICqXgCApqEGAK5eAICyXgCApbEGAKphBgCrYQYAtl4AgLpeAICuZQYAr20GAKxxBgCtbQYAqC0GAKk9BgCqiQYAq4kGAKyZBgCtmQYArokGAK+JBgC+XgCAwl4AgMZeAIDKXgCAzl4AgNJeAIDWXgCA2l4AgLiNBgC5lQYAupUGALulBgC8vQYAvXEBAL5xAQC/cQEAsPkGALHNBgCy2QYAs9kGALTJBgC1yQYAtr0GALe1BgCzAQYA3l4AgOJeAIDmXgCA6l4AgLYZBgC1EQYA7l4AgLsJBgC6PQYA8l4AgPZeAIC/DQYAvg0GAL0NBgC8DQYA+l4AgKNFBgC2XQCA/l4AgKZdBgACXwCAhFgAAKVVBgCqeQYAq00GAL5oAQAGXwCArkkGAK9JBgCsSQYArUkGAIDBAwCByQMAgt0DAKPNAgAKXwCApdkCAKbNAgAOXwCAhoANAIeUAwCqxQIAqw0DAKwVAwCtHQMArhUDAK8NAwDhnBcA4xgGAOMUAwDhNAYA7xgCABJfAIAWXwCAGl8AgOPQAgAeXwCA4VACACJfAIAmXwCA7ywGAO/kJQAqXwCArE0CAK1RAgCuUQIAr2UCAKgBAgCpCQIAqlkCAKtVAgCE7A0ALl8AgDJfAIA2XwCAvvgNADpfAIA+XwCAQl8AgLxRAwC9WQMAvmEDAL9hAwC47QMAuVEDALpRAwC7UQMAtM0DALXVAwC23QMAt9UDALAdAgCx1QMAst0DALPVAwDjyAAARl8AgOG4AQBKXwCAhFQPAE5fAIBSXwCAVl8AgKHpAgCgFQYAo6UDAKINAwDvIAAAWl8AgF5fAIBiXwCAZl8AgGpfAICFNCYAs40DAG5fAIC1mQMAto0DAHJfAICGwA8Ah5QNALqFAwC7TQIAvFUCAL1dAgC+VQIAv00CAHpfAIB+XwCAgl8AgIZfAICKXwCAjl8AgI/d6wDvxAYAvuAPAOGMBgCSXwCA44AGAID1AACB5QAAguUAAJZfAICZbR8AmMUfAJvJGwCaeRoAnXUaAJzFGwCf+QcAnhkGAJFpFgCQsesAk20XAJLNFwCV0RMAlGkSAJdREgCWzRMAg1XkAIJB5AB2XwCAml8AgIeNHQCGkRgAhTkYAISVGQCLERwAigUcAJ5fAICiXwCAj4UVAI6ZEACNORAAjJUdAJNRFACSRRQApl8AgKpfAICXYQkAlnUIAJWdCQCU+RUAm0EMAJqtDQCuXwCAsl8AgLZfAIC6XwCAvl8AgJzxDAChbQ0Awl8AgKMBBACihQAApZkEAKSRBACnGTgApsUFAKkJOACoKTgAq4k8AKoBPACtATAArB08AK8pMACunTAAseE0ALABNACzASgAsv00ALXZKAC00SgAxl8AgMpfAIDOXwCA0l8AgNZfAIDaXwCAgB0AAIEJAACC2QEA3l8AgKgRDwCpGQ8Aql0PAKtVDwCsTQ8ArXEPAK51DwCvbQ8A4l8AgOpfAICGiAAAhxABAO5fAIDyXwCA9l8AgPpfAIC4TQ4AuVEOALpRDgC7UQ4AvGUOAL1tDgC+ZQ4Avx0OALAdDwCxwQ8AssEPALPBDwC0xQ8Atc0PALbFDwC3eQ4As9UPAP5fAIACYACABmAAgApgAIC28Q8AtcUPAA5gAIC7BQ8AutkPABJgAIAWYACAvwkPAL4BDwC9FQ8AvBUPABpgAICjkQ8AHmAAgCJgAICmtQ8AJmAAgCpgAIClgQ8Aqp0PAKtBDwAuYACAMmAAgK5FDwCvTQ8ArFEPAK1RDwCogQ0AqYENAKqBDQCrgQ0ArIENAK2BDQCusQ0Ar6ENADZgAIA6YACAPmAAgEJgAIBGYACAgrkAAIG9AACAvQAAuDUCALk9AgC6zQIAu5UCALyNAgC9tQIAvr0CAL+1AgCwbQIAsU0CALJFAgCzJQIAtD0CALUdAgC2FQIAtw0CAEpgAIBOYACAswENAFJgAIC1AQ0AWmAAgISUAwC2CQ0AviwEAF5gAIC7gQIAuqECAL35AgC8mQIAv9ECAL7xAgBiYACAZmAAgGpgAICjRQ0AbmAAgKVFDQCmTQ0AcmAAgIbgBACHpAQAquUCAKvFAgCs3QIArb0CAK61AgCvlQIAqCUCAKk1AgCqPQIAqzUCAKwtAgCtkQIArpECAK+RAgB2YACAemAAgH5gAICCYACAzAAAAIZgAICKYACAjmAAgLiZAgC5rQIAuqUCALttAQC8dQEAvX0BAL51AQC/bQEAsPECALH5AgCywQIAs8ECALSxAgC1vQIAtrUCALepAgCSYACA44QOAJZgAIDh9A4AmmAAgJ5gAICiYACApmAAgIQgBQCqYACArmAAgLJgAIC2YACA7+wOALpgAIC+YACAs/UCAMJgAICG6AQAh4wEAL5cBAC2UQIAteUCAMpgAIC7fQIAunUCAM5gAIDSYACAvzkCAL41AgC9VQIAvFUCAKM1BQBWYACAxmAAgNZgAIDaYACAppEFAKUlBQDeYACAq70FAKq1BQDiYACA5mAAgK/5BQCu9QUArZUFAKyVBQCA+QcAgfkHAIKNBwCzjQYA6mAAgLWdBgC2iQYA7mAAgPJgAID2YACAuk0HALtFBwC8XQcAvUEHAL5BBwC/QQcA+mAAgP5gAIDmXwCAAmEAgAZhAIAKYQCADmEAgBJhAICoNQYAqQEGAKppBgCraQYArHkGAK1lBgCuZQYAr50HALDlBwCx7QcAsuUHALP5BwC06QcAtekHALZZBwC3VQcAuHEHALlxBwC6cQcAu3EHALxVBwC9XQcAvlUHAL9NBwCjwQcAFmEAgBphAIAeYQCAImEAgKbFBwCl0QcAJmEAgKsJBgCqAQYAKmEAgC5hAICvDQYArg0GAK0NBgCsEQYAgGkAAIFpAACCBQAAMmEAgL6YAQCEmAEANmEAgDphAICGADwAh8QBAD5hAIBCYQCARmEAgEphAIBOYQCAUmEAgKhdBgCpbQYAqmUGAKuBAQCsgQEArYkBAK6xAQCvsQEAVmEAgFphAIBeYQCAYmEAgGZhAIBqYQCAbmEAgHJhAIC4VQEAuV0BALpVAQC7yQAAvNkAAL3ZAAC+yQAAv8EAALCxAQCxuQEAsokBALOJAQC0cQEAtXEBALZ1AQC3bQEAs+0FAHZhAIB6YQCAfmEAgIJhAIC2CQIAtQkCAIZhAIC7fQIAunUCAIphAICOYQCAv7UCAL61AgC9XQIAvF0CAL5gAgCjqQUAkmEAgJZhAICmTQIAmmEAgJ5hAIClTQIAqjECAKs5AgCiYQCAhOADAK7xAgCv8QIArBkCAK0ZAgC+iDwAqmEAgKotAwCrJQMArD0DAK0lAwCuLQMAryUDAID1AACB/QAAgsEAAKPBAwCuYQCApcEDAKbBAwCyYQCAhmA8AIdUAwC2YQCAumEAgL5hAIDjqAIAwmEAgOGkAQDGYQCA71wCAMphAIDOYQCA0mEAgNZhAIDaYQCA3mEAgOJhAIDjjAcA5mEAgOE8BADqYQCA7mEAgPJhAID2YQCAhCACAPphAID+YQCAAmIAgAZiAIDvbAcACmIAgA5iAICzLQIAhEQ9ABJiAIAaYgCAHmIAgLYtAgC1LQIAImIAgLvJAgC6wQIAJmIAgCpiAIC/yQIAvsECAL3JAgC80QIA4XgHAOPAAADjOAYA4VwGAICpAACBqQAAgtEAAC5iAIAyYgCANmIAgL6kPAA6YgCAPmIAgO8cAADvkAYAQmIAgIZgPACHBD0ARmIAgLNxAQBKYgCAtRkBALYJAQBOYgCAUmIAgFZiAIC6AQEAuwEBALwBAQC9AQEAvgEBAL8BAQCohT4AqbU+AKq1PgCrxT4ArN0+AK3FPgCuwT4Ar/0+AFpiAIBeYgCAYmIAgGZiAIBqYgCAbmIAgHJiAIB2YgCAuFE/ALlRPwC6UT8Au1E/ALx1PwC9fT8AvnU/AL9tPwCwiT4AsYk+ALKZPgCzmT4AtIk+ALWJPgC2eT8At3U/AKZhAICjOT4AemIAgBZiAICmQT4AfmIAgIJiAIClUT4Aqkk+AKtJPgCGYgCAimIAgK5JPgCvST4ArEk+AK1JPgCASQAAgVEAAIJRAACzkT8AjmIAgLW5PwC2RT8AkmIAgIZAAACHBAMAukU/ALtdPwC8TT8AvT0/AL4pPwC/IT8AqE0+AKlVPgCqVT4Aq2U+AKx9PgCtiT4Arrk+AK+5PgCWYgCAmmIAgJ5iAICiYgCApmIAgKpiAICuYgCAsmIAgLhhAQC5YQEAumEBALthAQC8YQEAvWEBAL5hAQC/YQEAsM0+ALHVPgCy1T4As6U+ALShPgC1qT4Atpk+ALeZPgCj3T4AtmIAgLpiAIC+YgCAwmIAgKYJPgCl9T4AxmIAgKsRPgCqCT4AymIAgM5iAICvbT4ArmU+AK1xPgCsAT4A0mIAgNZiAIDaYgCA3mIAgOJiAIDmYgCA6mIAgO5iAICAOQAAgTkAAIIFAADyYgCAvrgBAIS4AQD6YgCA/mIAgKitAgCp1QIAqtUCAKstAwCsNQMArT0DAK41AwCvLQMAAmMAgAZjAIAKYwCADmMAgBJjAIAWYwCAGmMAgB5jAIC46QMAuekDALqJAwC7iQMAvJkDAL2ZAwC+iQMAv4kDALBVAwCxXQMAslUDALPpAwC0+QMAtfkDALbpAwC34QMAs10CACJjAICGKAQAh8wDACZjAIC2vQMAtb0DACpjAIC7mQMAupEDAC5jAIAyYwCAvz0DAL49AwC9PQMAvIEDAIUAFACjGQIANmMAgDpjAICm+QMAPmMAgEJjAICl+QMAqtUDAKvdAwBGYwCASmMAgK55AwCveQMArMUDAK15AwDjVD4A4dw/AOHQPgDjPD4ATmMAgO8cAABSYwCAVmMAgFpjAIDjwAAAXmMAgOHUAQDvYD4AYmMAgGpjAIDvRD8AgGEAAIFtAACCfQAAhAAFAIbwBACHnAUAvhAFAG5jAIByYwCAdmMAgHpjAIB+YwCAgmMAgIZjAICKYwCAjmMAgLiJPQC5iT0Aupk9ALuRPQC8uT0Avbk9AL7RPQC/0T0AsAU+ALENPgCyBT4Asx0+ALQFPgC1DT4AtgU+ALe5PQConT4Aqa0+AKqlPgCrvT4ArKU+AK2tPgCupT4Ar30+AISsBAC+rAQAkmMAgJZjAICaYwCAnmMAgKJjAICmYwCAqPkFAKn5BQCqKQYAqykGAKw5BgCtOQYArikGAK8pBgBmYwCAqmMAgK5jAICyYwCAtmMAgLpjAIC+YwCAwmMAgLiNBgC5kQYAupEGALulBgC8vQYAvUUHAL5BBwC/QQcAsFkGALFZBgCy7QYAs/0GALTtBgC13QYAttUGALe1BgCzoQYAxmMAgMpjAIDOYwCA0mMAgLa5BgC1sQYA2mMAgLudBgC6nQYA1mMAgPZiAIC/GQYAvikGAL0pBgC8OQYAglEAAKPlBgCAQQAAgUEAAKb9BgDeYwCA4mMAgKX1BgCq2QYAq9kGAIZIAACHbAAArm0GAK9dBgCsfQYArW0GAKg5BgCpWQYAqmkGAKtpBgCseQYArXkGAK5pBgCvaQYA5mMAgOpjAIDuYwCA8mMAgPZjAID6YwCA/mMAgAJkAIC4ZQEAuW0BALplAQC7fQEAvGUBAL1tAQC+ZQEAv9kBALAZBgCxGQYAsoEGALOBBgC0gQYAtYEGALaBBgC3gQYAs+EGAAZkAIAKZACADmQAgBJkAIC2+QYAtfEGABZkAIC73QYAut0GABpkAIAeZACAv0UGAL5FBgC9VQYAvFUGACJkAICjpQYAJmQAgCpkAICmvQYALmQAgDJkAICltQYAqpkGAKuZBgA2ZACAOmQAgK4BBgCvAQYArBEGAK0RBgConQIAqdECAKrRAgCrLQMArDUDAK09AwCuNQMAry0DAD5kAIBCZACAvmQCAEpkAIBOZACAUmQAgFZkAIBaZACAuOkDALnpAwC6iQMAu4UDALydAwC9gQMAvoEDAL+1AwCwVQMAsV0DALJVAwCz6QMAtPkDALX5AwC26QMAt+EDAIBtAwCBpQAAgq0AALNVAgBeZACAtbEDALaxAwBiZACAhOACAGZkAIC6nQMAu5UDALyNAwC9MQMAvjEDAL8xAwCjGQIAamQAgIVwaQBuZACAcmQAgKb9AwCl/QMAdmQAgKvZAwCq0QMAhkgMAIe8AwCvfQMArn0DAK19AwCswQMAemQAgH5kAICCZACAhmQAgO+wBgDvxAMAimQAgI5kAIDjfAYA45QDAOG4BwDh3AEAkmQAgJZkAICaZACAnmQAgKJkAICmZACAhEQCAL5YDQCADQAAgTUAAII9AACqZACArmQAgLJkAICGyAwAh1wNALpkAIC+ZACAwmQAgMZkAIDKZACAzmQAgNJkAIDWZACA2mQAgN5kAIDiZACA74AGAISsDQDh7AYA5mQAgONcBgDqZACA7mQAgPJkAID2ZACAs/UBAPpkAID+ZACAAmUAgAZlAIC2RQEAteUBAAplAIC7LQEAuiEBAA5lAIASZQCAv/UAAL71AAC9JQEAvC0BAKgtDgCpNQ4Aqj0OAKs1DgCsLQ4ArYUOAK6FDgCvuQ4AtmQAgBZlAIAaZQCAHmUAgIAZAACBGQAAggUAACJlAIC4WQ8AuVkPALp5DwC7eQ8AvGkPAL1pDwC+GQ8AvxkPALClDgCxqQ4AsrkOALOxDgC0cQ8AtXEPALZxDwC3cQ8Apb0OAL6IAwAqZQCAph0OACZlAIAuZQCAo60OADJlAICtfQ4ArHUOAK+tDwCurQ8ARmQAgDZlAICrdQ4AqnkOALO5DwA6ZQCAhmgAAIcMAwA+ZQCAtlEPALVZDwBCZQCAu3UPALp1DwBGZQCASmUAgL9FDwC+RQ8AvVEPALxlDwCocQ4AqXEOAKpxDgCrcQ4ArJEOAK2RDgCukQ4Ar5EOAE5lAIBSZQCAVmUAgFplAIBeZQCAYmUAgGZlAIBqZQCAuIUOALmNDgC6hQ4Au50OALyNDgC9vQ4AvrUOAL95AQCw8Q4AsfEOALLxDgCzxQ4AtMEOALXBDgC2wQ4At8EOAKP5DgBuZQCAcmUAgHZlAIB6ZQCAphEOAKUZDgB+ZQCAqzUOAKo1DgCCZQCAhmUAgK8FDgCuBQ4ArREOAKwlDgCADQAAgRUAAIIdAACKZQCAjmUAgJJlAICElAEAvpQBAIZABwCH5AAAmmUAgJ5lAICiZQCApmUAgKplAICuZQCAqIkCAKmRAgCqlQIAq7kCAKzVAgCtxQIArsUCAK/1AgCyZQCAtmUAgLplAIC+ZQCAvnwDAMJlAIDGZQCAymUAgLh9AwC5wQMAusEDALvBAwC8wQMAvckDAL7xAwC/8QMAsI0CALFFAwCyTQMAs0UDALRdAwC1RQMAtk0DALdFAwCzHQIAzmUAgNJlAIDWZQCA2mUAgLZFAgC1XQIA3mUAgLuBAwC6SQIA4mUAgOZlAIC/gQMAvpkDAL2RAwC8mQMA6mUAgKNZAgDuZQCA8mUAgKYBAgD2ZQCA+mUAgKUZAgCqDQIAq8UDAP5lAIACZgCArt0DAK/FAwCs3QMArdUDAIDZAQCB7QEAguUBAO+4DgAKZgCA4cQBAISYAgDj1AAADmYAgL7sBAASZgCA7wgAABZmAIDhxA8AGmYAgONkDgCGAAUAh2gFAB5mAICzvQIAImYAgLWtAgC2pQIAJmYAgCpmAIAuZgCAukEBALtBAQC8RQEAvU0BAL5FAQC/+QEAMmYAgDZmAIA6ZgCAPmYAgEJmAIBGZgCASmYAgO/gAQCEbAQA4dQOAE5mAIDjHA4AUmYAgFZmAIBaZgCAXmYAgKMxAgBiZgCAhCQHAGZmAIBqZgCApikCAKUhAgBuZgCAq80BAKrNAQByZgCAemYAgK91AQCuyQEArcEBAKzJAQCo6QUAqekFAKr5BQCr+QUArOkFAK3pBQCuOQYArzkGAAZmAICCzQcAgfUHAID9BwB2ZgCAfmYAgIYYAwCHkAMAuNEGALnZBgC64QYAu+EGALyRBgC9nQYAvpUGAL+JBgCwSQYAsUkGALJdBgCzVQYAtE0GALXxBgC28QYAt/EGALDhBwCx4QcAsgkHALMJBwC0GQcAtRkHALYJBwC3CQcAuDkHALkNBwC6GQcAuxkHALwJBwC9CQcAvn0HAL9xBwCCZgCAlmUAgIZmAICKZgCAjmYAgJJmAICWZgCAmmYAgKjxBwCpxQcAqsEHAKvdBwCsyQcArb0HAK6pBwCvoQcAsykGAJ5mAICiZgCApmYAgKpmAIC2XQYAtSEGAK5mAIC7RQYAukUGALJmAIC2ZgCAv70GAL69BgC9vQYAvL0GALpmAICjbQYAvmYAgMJmAICmGQYAxmYAgMpmAIClZQYAqgEGAKsBBgDOZgCA0mYAgK75BgCv+QYArPkGAK35BgCobQYAqbEBAKpJAQCrRQEArF0BAK1FAQCuTQEAr0UBANZmAICCHQAAgR0AAIAdAADaZgCA3mYAgOJmAIC+VAEAuIEAALmNAAC6hQAAu5kAALyJAAC9vQAAvrUAAL99AACwPQEAseEAALLhAACz4QAAtOEAALXpAAC20QAAt9EAALsFAwC62QIAhiwCAIcsAwC/DQMAvgUDAL0VAwC8FQMAs+ECAOpmAIDuZgCAhCwDAPJmAIC25QIAtfUCAPZmAICqnQIAq0EDAPpmAID+ZgCArkEDAK9JAwCsUQMArVEDAAJnAICjpQIABmcAgApnAICmoQIADmcAgBJnAIClsQIAqakAAKihAACrtQAAqr0AAK3dAACs3QAAr/EAAK79AAC+LBwAFmcAgBpnAIAeZwCAImcAgCZnAIAqZwCALmcAgLl9AAC4fQAAu80BALrNAQC93QEAvN0BAL/NAQC+zQEAsZUAALCJAACzTQAAspUAALVdAAC0XQAAt00AALZNAAAyZwCANmcAgDpnAIA+ZwCAQmcAgEZnAIBKZwCATmcAgIA5AACBOQAAggUAAFJnAIBaZwCAXmcAgIf4AgCGfB0A4bgEAL7IHADjQAYAYmcAgGZnAIBqZwCAbmcAgHJnAIB2ZwCAemcAgH5nAICCZwCAhmcAgIpnAIDvsAcAjmcAgJJnAICWZwCAmmcAgO/IAACeZwCAomcAgKZnAIDvQAYAqmcAgOH8BgCuZwCA4xwGALJnAIDhlAEAtmcAgONkBgCAEQAAgRkAAIIpAACz/QEAumcAgLWdAQC2lQEAvmcAgMJnAICEbB0AuoUBALuZAQC8iQEAvVEBAL5RAQC/UQEAozEeAFZnAIDGZwCAymcAgM5nAICmWR4ApVEeANJnAICrVR4AqkkeAIYIAwCHbAMAr50eAK6dHgCtnR4ArEUeANZnAICzCR8A2mcAgN5nAIC2CR8A4mcAgOZnAIC1CR8AugUfALsNHwDqZwCA7mcAgL4FHwC/CR8AvBUfAL0NHwCw5R8Ase0fALLlHwCz/R8AtOUfALXpHwC2GR8AtxkfALgpHwC5NR8Auj0fALs1HwC8ER8AvR0fAL4JHwC/BR8A8mcAgPZnAIDmZgCA+mcAgP5nAIACaACABmgAgApoAICo0R8AqdEfAKqlHwCrvR8ArKUfAK2tHwCupR8Ar50fAKNNHgAOaACAEmgAgBZoAIAaaACApk0eAKVNHgAeaACAq0keAKpBHgAiaACAJmgAgK9NHgCuQR4ArUkeAKxRHgCADQAAgRUAAIIdAAAqaACALmgAgDJoAICEtAEAvrQBAL/oAQA6aACAhkgHAIc0AACEvAYAPmgAgEJoAIC+tAYAqI0BAKmVAQCqlQEAq80BAKzZAQCt2QEArs0BAK/FAQBGaACASmgAgE5oAIBSaACAVmgAgFpoAIBeaACAYmgAgLgdAQC5wQAAusEAALvBAAC8wQAAvckAAL7xAAC/8QAAsIkBALGJAQCyKQEAsykBALQ9AQC1JQEAti0BALclAQC7bQIAum0CAGZoAIBqaACAv8ECAL7ZAgC93QIAvN0CALM9AgBuaACAcmgAgHZoAICE/AYAtnkCALVxAgB6aACAqikCAKspAgB+aACAgmgAgK6dAgCvhQIArJkCAK2ZAgCGaACAo3kCAIpoAICOaACApj0CAJJoAICWaACApTUCAIJtJwCDjSoAhqgFAIdsAwCGmS4Ah80vAIQRLgCFmS4AiiESAIspEgCaaACAnmgAgI6RFgCPHRYAjBESAI0RFgCScRoAk+UaAKJoAIDvlHYAlvEeAJflHgCUSRoAlRkeAJopAgCb4QIAqmgAgK5oAICyaACA4SASAJzxAgDjIBYAnyEfAJ7BHwCdmRsAnC0bAJuhGwCavRcAmTkXAJixFwCXiRMAlqkTAJWpEwCUdS4AkzkvAJIxLwCRsS8AkDUrAI+tJgDjeB8A0gAAAOFcHwCCmQEAtmgAgIDxAQCB8QEAvqgHALpoAIC+aACAwmgAgIS8BgDvLB8AxmgAgMpoAIDhpB4A48wAAON8HgDhvAEAzmgAgNJoAIDWaACAhJwGANpoAIC+bAYA3mgAgOJoAIDmaACA7xAAAO8EHgDqaACA7mgAgPJoAID2aACA+mgAgP5oAIACaQCABmkAgAppAICAPQAAgQkAAILJBwAOaQCAo/kDAKLxAwChMQMAoM0fALBJcQCxAXwAsgl8ALMhfQC0AXgAtRV4ADZoAICmaACAEmkAgL4oDgCGDAAAh4wDABZpAIAaaQCAHmkAgCJpAIAmaQCAoV0AAKJVAACjfQAApAEMAKUVDACm9QwApwEIAKghCACpxQgAqgF0AKsJdACsAXQArR11AK55cACveXAAqOUFAKnxBQCq8QUAqy0FAKw1BQCtPQUArjUFAK8tBQAqaQCALmkAgDJpAIA2aQCAOmkAgD5pAIBCaQCARmkAgLj9BgC5jQYAuoUGALutBgC8uQYAvbkGAL6tBgC/pQYAsFUFALFdBQCyVQUAs+UGALT9BgC10QYAttEGALfRBgCzeQQASmkAgE5pAIBSaQCAVmkAgLa9BAC1vQQAWmkAgLuZBAC6kQQAXmkAgGJpAIC/FQcAvjkHAL0xBwC8gQQAZmkAgKM9BABqaQCAbmkAgKb5BAByaQCAdmkAgKX5BACq1QQAq90EAHppAIB+aQCArn0HAK9RBwCsxQQArXUHAKhpBwCpaQcAqnkHAKvZBgCs9QYArf0GAK71BgCv5QYAgMkAAIHJAACCBQAAgmkAgIZwDwCHNAAAimkAgI5pAIC4fQYAuQUGALoNBgC7BQYAvB0GAL0FBgC+DQYAvwUGALCdBgCxdQYAsn0GALN1BgC0UQYAtV0GALZVBgC3TQYAs/EEAJJpAICWaQCAmmkAgJ5pAIC2fQUAtX0FAKJpAIC7sQUAulkFAKZpAICqaQCAv5kFAL6VBQC9oQUAvKkFAK5pAICjtQQAsmkAgLZpAICmOQUAumkAgL5pAIClOQUAqh0FAKv1BQDCaQCAxmkAgK7RBQCv3QUArO0FAK3lBQCpuQIAqLECAKvJAgCqsQIArTUCAKw1AgCvNQIArjUCAMppAIDOaQCA0mkAgNZpAIDaaQCA3mkAgOJpAIDmaQCAuekDALjZAwC7iQMAuuEDAL2dAwC8nQMAv4EDAL6JAwCxVQIAsFUCALNVAgCyVQIAtfkDALTxAwC36QMAtvEDALM9AwDqaQCA7mkAgPJpAID6aQCAtrEDALW5AwD+aQCAu5UDALqVAwCGiAwAh6ANAL85AgC+MQIAvYUDALyFAwACagCAo3kDAAZqAIAKagCApvUDAA5qAIASagCApf0DAKrRAwCr0QMAFmoAgBpqAICudQIAr30CAKzBAwCtwQMAgIUAAIGNAACChQAA79AGAOOwBwDj9AQA4QgHAOHsBADvOAYA7yAEAL6kDAAeagCAImoAgOGEAQAmagCA49wGACpqAIAuagCAhMANALPJAQAyagCAtdkBALbJAQA2agCAOmoAgD5qAIC6xQEAu60BALy5AQC9uQEAvq0BAL+lAQCwLQ4AsUUOALJBDgCzQQ4AtEUOALVNDgC2cQ4At3EOALiBDgC5gQ4AuoEOALuBDgC8gQ4AvYEOAL6BDgC/gQ4A9mkAgEJqAIBGagCASmoAgIZpAIBOagCAUmoAgFZqAICo2Q0AqdkNAKptDgCrZQ4ArH0OAK1lDgCuZQ4Ar1UOAKOFDgCCLQAAgRUAAIAdAABaagCApoUOAKWVDgBeagCAq+EOAKqJDgBiagCAZmoAgK/pDgCu4Q4ArfUOAKz1DgBqagCAs4UPAIZoAACHHAMAtoUPAG5qAIByagCAtZEPALqNDwC7SQ8AdmoAgHpqAIC+MQ8AvzEPALxJDwC9RQ8AqBEOAKkZDgCqSQ4Aq0UOAKxdDgCtQQ4ArkEOAK91DgB+agCAgmoAgIZqAICKagCAjmoAgJJqAICWagCAmmoAgLihDgC5oQ4Aug0BALsFAQC8HQEAvQEBAL4BAQC/AQEAsA0OALHJDgCy2Q4As9UOALSxDgC1sQ4AtqkOALehDgCjwQ4AnmoAgKJqAICmagCAqmoAgKbBDgCl1Q4ArmoAgKsNDgCqyQ4AsmoAgLZqAICvdQ4ArnUOAK0BDgCsDQ4AumoAgL5qAIDCagCAxmoAgIANAACBNQAAgj0AAMpqAIDOagCA0moAgISEAQC+hAEAhjAHAIf4AADaagCA3moAgKjBAgCp0QIAqtECAKvlAgCs/QIArTUDAK49AwCvNQMA4moAgOZqAIDqagCA7moAgPJqAID2agCA+moAgP5qAIC40QMAudkDALrhAwC74QMAvJEDAL2RAwC+kQMAv5EDALBNAwCxVQMAsl0DALNVAwC0TQMAtfEDALbxAwC38QMAu7EDALqpAwACawCAvoQDAL8VAwC+qQMAvaEDALypAwCzeQIABmsAgAprAIAOawCAEmsAgLaVAwC1VQIAFmsAgKrtAwCr9QMAGmsAgB5rAICu7QMAr1EDAKztAwCt5QMAImsAgKM9AgAmawCAKmsAgKbRAwAuawCAMmsAgKURAgA2awCAgiEAAIEVAACAFQAA7wQAAISUAgA6awCAPmsAgOPYAABCawCA4fgBAEprAIBOawCAUmsAgFZrAIBaawCAhmAFAIcIBQBeawCAs20BAGJrAIC1fQEAtnUBAGZrAIBqawCAbmsAgLpRAQC7UQEAvPkBAL3RAQC+0QEAv9EBAHJrAICjpQEAdmsAgHprAICmvQEAfmsAgIJrAICltQEAqpkBAKuZAQCGawCAimsAgK4ZAQCvGQEArDEBAK0ZAQCOawCA4fQOAJJrAIDjFA4A9AAAAOF8DACWawCA41AKAJprAICeawCAviAEAO8wDQCiawCApmsAgIQ0BADvrA4AsDkGALE5BgCygQYAs6kGALS5BgC1uQYAtqkGALehBgC46QYAuekGALrJBgC7xQYAvN0GAL3BBgC+wQYAvz0HAEZrAICCHQAAgR0AAIAdAACqawCArmsAgLJrAIDWagCAqJkFAKmZBQCqSQYAq0kGAKxZBgCtWQYArkkGAK9JBgCorQcAqbUHAKq9BwCrtQcArK0HAK3dBwCuyQcAr8EHALZrAIC6awCAhogDAIcQAwC+awCAwmsAgMZrAIDKawCAuG0HALkFBwC6AQcAuxUHALwxBwC9MQcAvikHAL8pBwCwgQcAsYEHALJpBwCzZQcAtH0HALVhBwC2YQcAt1UHALM1BgDOawCA0msAgNZrAIDaawCAtl0GALUlBgDeawCAu0UGALpFBgDiawCA5msAgL+lBgC+uQYAvbEGALy9BgDqawCAo3EGAO5rAIDyawCAphkGAPZrAID6awCApWEGAKoBBgCrAQYA/msAgAJsAICu/QYAr+EGAKz5BgCt9QYAqCUBAKk1AQCqPQEAqzUBAKwtAQCtkQAArpEAAK+RAAAGbACACmwAgA5sAIASbACAFmwAgIK9AwCBvQMAgL0DALiZAAC5rQAAuqUAALttAAC8dQAAvX0AAL51AAC/bQAAsPEAALH5AACywQAAs8EAALSxAAC1vQAAtrUAALepAAAabACAHmwAgCJsAICEgAIAvhwCACpsAICG+HwAh8wCAISsAwAubACAMmwAgDZsAIA6bACAPmwAgEJsAIBGbACAs/UCAEpsAIBObACAkgAAAFJsAIC2UQMAteUCAFZsAIC7fQMAunUDAFpsAIBebACAvzkDAL41AwC9VQMAvFUDAKM1AgBibACAZmwAgGpsAIBubACAppEDAKUlAgBybACAq70DAKq1AwB2bACAemwAgK/5AwCu9QMArZUDAKyVAwC+wAMAfmwAgIJsAICGbACAgA0AAIE1AACCPQAAimwAgI5sAICSbACAhsh8AIcAAwCabACAnmwAgKJsAICmbACAqmwAgK5sAICybACAtmwAgLpsAIC+bACAwmwAgO/0AwCE7HwA4ZQBAMZsAIDjMAMAymwAgM5sAIDSbACA1mwAgLNpAQDabACA3mwAgOJsAIDmbACAtmEBALVpAQDqbACAuykBALohAQDubACA8mwAgL8dAQC+HQEAvSUBALwtAQD2bACA+mwAgP5sAICjpQEAAm0AgKWlAQCmrQEAvlR8AIaAfACH7HwAqu0BAKvlAQCs4QEArekBAK7RAQCv0QEACm0AgOGcBgCEBH8A4yQGAOPUBgAObQCA4TAEABJtAIDvlAcAgnUAAIFhAACAaQAAFm0AgBptAIAebQCA7+wGALiNfgC5lX4AupV+ALulfgC8vX4AvdF+AL7RfgC/0X4AsGV+ALFtfgCyeX4As3F+ALRZfgC1WX4Atr1+ALe1fgCoVX4AqWF+AKphfgCrYX4ArGF+AK1hfgCuYX4Ar2F+ACJtAICWbACAJmwAgCZtAIAGbQCAKm0AgC5tAIAybQCAqHF+AKlxfgCqcX4Aq3F+AKyRfwCtkX8ArpF/AK+RfwA2bQCAOm0AgD5tAIBCbQCARm0AgEptAIBObQCAUm0AgLiFfwC5jX8AuoV/ALudfwC8jX8Avb1/AL61fwC/XX8AsPF/ALHxfwCy8X8As8V/ALTBfwC1wX8AtsF/ALfBfwCz+X8AVm0AgFptAIBebQCAYm0AgLYRfgC1GX4AZm0AgLs1fgC6NX4Aam0AgG5tAIC/BX4AvgV+AL0RfgC8JX4AghUAAKO9fwCAYQAAgWEAAKZVfgBybQCAvpABAKVdfgCqcX4Aq3F+AHZtAIB6bQCArkF+AK9BfgCsYX4ArVV+AKhBfgCpUX4AqlV+AKt9fgCsZX4ArW1+AK75AQCv8QEAhgAAAIc0AQB+bQCAgm0AgIZtAICKbQCAjm0AgJJtAIC4dQEAuX0BALp1AQC7yQAAvNkAAL3ZAAC+yQAAv8EAALCVAQCxnQEAspUBALNNAQC0VQEAtV0BALZVAQC3TQEAs919AJZtAICabQCAnm0AgKJtAIC27X0Ate19AKZtAIC7WQIAulECAKptAICubQCAv5kCAL6RAgC9mQIAvEECALJtAICjmX0Atm0AgLptAICmqX0Avm0AgMJtAIClqX0AqhUCAKsdAgDGbQCAym0AgK7VAgCv3QIArAUCAK3dAgDObQCA0m0AgNZtAIDabQCAgB0AAIEJAACCOQAA3m0AgOJtAIC+AAQA6m0AgO5tAIDybQCA9m0AgPptAID+bQCAhIwDAAJuAICHCAMAhuwEAAZuAIDviAIACm4AgA5uAICEbAQA4zQCABJuAIDhVAEAFm4AgBpuAIAebgCAIm4AgKhtAgCprQIAqqUCAKu9AgCspQIAra0CAK6lAgCvGQEAvqwEACZuAIAqbgCALm4AgDJuAIA2bgCAOm4AgD5uAIC4DQEAuREBALoRAQC7JQEAvD0BAL3VAQC+3QEAv9UBALBpAQCxaQEAsnkBALNxAQC0WQEAtVkBALY5AQC3NQEAsy0CAEJuAIBGbgCASm4AgE5uAIC2LQIAtS0CAFJuAIC7rQEAuq0BAFpuAIBebgCAv50BAL6dAQC9pQEAvK0BAIBNAACBVQAAglUAAO9sAABibgCA7+x/AO+8fgBmbgCA4RB/AOPUfwDj2H4A4ex/AGpuAIDhTH4Abm4AgOMkfgDmbQCAVm4AgKsFBgCqBQYArQ0GAKwFBgCvNQYArjUGAIYAAwCHKAMAo4UFAHJuAIClhQUAdm4AgHpuAICmhQUAs/EGAH5uAICCbgCAhm4AgIpuAIC26QYAteEGAI5uAIC7vQYAur0GAJJuAICWbgCAv4kGAL6BBgC9iQYAvJUGAKgpBgCpKQYAqjkGAKs5BgCsKQYArSkGAK5dBgCvTQYAmm4AgJ5uAICibgCApm4AgKpuAICubgCAsm4AgLZuAIC46QcAuekHALr5BwC7+QcAvOkHAL3pBwC+XQcAv1UHALA5BgCxOQYAsgEGALMdBgC0BQYAtQ0GALYFBgC32QcAo7EHAIItAACBFQAAgB0AALpuAICmqQcApaEHAL5uAICr/QcAqv0HAMJuAICEpAIAr8kHAK7BBwCtyQcArNUHAL7MAQCzlQYAxm4AgMpuAIC2qQYAzm4AgNJuAIC1rQYAulkBALshAQCGyAAAhwwBAL4hAQC/KQEAvDEBAL0xAQCoKQYAqSkGAKpZBgCrUQYArGEGAK1tBgCutQEAr6kBAITgAQDWbgCA2m4AgN5uAIDibgCA5m4AgOpuAIDubgCAuGEBALlhAQC6YQEAu2EBALxhAQC9YQEAvmEBAL9hAQCw2QEAsaEBALKhAQCzoQEAtKEBALWpAQC2kQEAt5EBAKPRBQDybgCA9m4AgPpuAID+bgCApu0FAKXpBQACbwCAq2UCAKodAgAGbwCACm8AgK9tAgCuZQIArXUCAKx1AgAObwCAEm8AgBZvAIAabwCAHm8AgCJvAIAmbwCAKm8AgIA9AACBCQAAghkAAC5vAIAybwCAOm8AgL48AwA+bwCAhgAMAIcUAwBCbwCAs9UDAEZvAIC1PQMAtjUDAEpvAIBObwCAv4wKALoRAwC7EQMAvLUAAL29AAC+tQAAv60AAFJvAIDjdAEAVm8AgOG8AQBabwCAXm8AgGJvAIBmbwCAam8AgG5vAIBybwCAdm8AgHpvAIDvdAIAfm8AgIJvAICoTQIAqVECAKpRAgCrqQIArLkCAK25AgCuqQIAr6kCAIRsDQCGbwCAim8AgI5vAICSbwCAlm8AgJpvAIC+dA0AuG0BALkFAQC6DQEAuwUBALwdAQC9BQEAvg0BAL8FAQCw2QIAsdkCALJtAQCzZQEAtH0BALVlAQC2ZQEAt1UBAOG4AQDhUAcA47QAAON8BwCAqQAAgQkAAII5AACebwCAom8AgKpvAICubwCAsm8AgO4AAAC2bwCA7wAAAO9kBgCGYAwAh+QMAKORAgC6bwCApXkCAL5vAIDCbwCApnECAMZvAIDKbwCAq1UCAKpVAgCt+QEArPEBAK/pAQCu8QEApm8AgDZvAIDObwCA0m8AgNZvAIDabwCA3m8AgOJvAICoVQ4AqVkOAKqhDgCrvQ4ArK0OAK2VDgCu+Q4Ar/UOALCRDgCxkQ4AspEOALORDgC0sQ4AtbEOALaxDgC3sQ4AuJEOALmdDgC6lQ4Au0kPALxZDwC9WQ8AvkkPAL9JDwCzCQ4A5m8AgOpvAIDubwCA8m8AgLY1DgC1BQ4A9m8AgLt1DgC6dQ4A+m8AgP5vAIC/VQ4AvlUOAL1lDgC8ZQ4AAnAAgKNNDgAGcACACnAAgKZxDgAOcACAEnAAgKVBDgCqMQ4AqzEOAISkAwC+pAMArhEOAK8RDgCsIQ4ArSEOAKilDgCprQ4AqqUOAKu5DgCs3Q4ArcEOAK7BDgCv/Q4AgO0BAIHxAQCC8QEAFnAAgIaQAQCHtAEAGnAAgB5wAIC4yQEAuckBALrZAQC70QEAvPkBAL35AQC+mQEAv5UBALCFDgCxbQEAsmUBALN9AQC0ZQEAtW0BALZlAQC3+QEAsy0OACJwAIAmcACAKnAAgC5wAIC2QQ4AtVUOADJwAIC7qQEAukEOADZwAIA6cACAv6kBAL6hAQC9qQEAvLEBAD5wAICjaQ4AQnAAgEZwAICmBQ4ASnAAgE5wAIClEQ4AqgUOAKvtAQBScACAVnAAgK7lAQCv7QEArPUBAK3tAQCoOQMAqTkDAKqNAwCrhQMArJ0DAK2FAwCuhQMAr7UDAFpwAIBecACAYnAAgGZwAIBqcACAbnAAgHJwAIB2cACAuGEAALlhAAC6YQAAu2EAALxhAAC9YQAAvmEAAL9hAACwzQMAsaUDALKhAwCzoQMAtKUDALWtAwC2kQMAt5EDAIANAACBEQAAghEAAHpwAIDv9AIAfnAAgIJwAIC+HAMA4xQCAISIAgDhgAEAinAAgI5wAICScACAh8gDAIY8BAC7AQMAumkDAJZwAICacACAvwkDAL4BAwC9FQMAvBUDALNlAwCecACAonAAgKZwAICqcACAtmUDALV1AwCucACAsnAAgLZwAIC6cACAo4kCAL5wAIClmQIApokCAMJwAICELAIAxnAAgKqFAgCr7QIArPkCAK35AgCu7QIAr+UCAMpwAIDOcACAvkQFAIRMBQDScACA1nAAgNpwAIDecACA4nAAgOZwAIDqcACA7nAAgIAZAACBGQAAggUAAPJwAIDhGA8A4VwOAOO4DgDjdAEA+nAAgP5wAIACcQCABnEAgIYABACHZAUACnEAgA5xAIAScQCAFnEAgO98DgDvqAEAs3UBABpxAIAecQCAInEAgCZxAIC2MQEAtRUBACpxAIC7HQEAuhUBAC5xAIAycQCAv+EAAL79AAC9/QAAvP0AAPZwAIA2cQCAOnEAgD5xAICGcACAQnEAgEZxAIBKcQCAqI0GAKmVBgCqnQYAq+UGAKz9BgCt0QYArtEGAK/RBgCwsQYAsbkGALJJBwCzSQcAtFkHALVFBwC2RQcAt3kHALghBwC5IQcAujkHALs5BwC8KQcAvSkHAL4ZBwC/GQcAozUGAE5xAIBScQCAVnEAgFpxAICmcQYApVUGAF5xAICrXQYAqlUGAGJxAIC+oAMAr6EHAK69BwCtvQcArL0HAIBRAACBWQAAgmEAALNVBwCF9AAAtX0HALZ1BwBmcQCAhgAcAIfkAQC6LQcAuyUHALw9BwC9JQcAviUHAL8VBwCokQYAqZEGAKqRBgCrkQYArLkGAK25BgCuqQYAr6kGAGpxAIBucQCAcnEAgHZxAICiIQEAozUBAKA5BQChEQQAuEkBALlJAQC6XQEAu1UBALxNAQC90QEAvtEBAL/RAQCwpQYAsa0GALKlBgCzvQYAtK0GALWdBgC2lQYAt3kBAKMZBgCPnXkAenEAgH5xAICCcQCApjkGAKUxBgCGcQCAq2kGAKphBgCKcQCAjnEAgK9ZBgCuaQYArWkGAKxxBgCeiQgAn8EFAJzJCQCdyQkAmqENAJu9DACYsQ0AmbkNAJahcQCXRXEAlEV1AJWxcQCSoXUAk7V1AJDleQCRzXkAil1yAItFcgCScQCAvoAcAI51DgCPZQ4AjLlyAI11DgCCOXoAgzl6AJZxAICacQCAhnF2AIeZdgCECXoAhW12AJptBwCbVQIAnnEAgKJxAICmcQCA4ZAAAJxZAgDjCBoAkgkPAJNlCgCqcQCA7zgWAJZ1BgCXdQYAlH0KAJU1CwCpjRYAqIUWAKsBEACqMRYArXESAKy1EgCvuS4ArgEsAKF9AgCucQCAo6EeAKKpHgClsRoApPUfAKflGwCmsRoAhMwDAIRMHACycQCAtnEAgLpxAIC+cQCAwnEAgMZxAICxASgAsNkuALONKgCy6SoAtfUmALQBJACEcB0AynEAgID9AQCBFQAAgh0AAL6AHADOcQCA0nEAgIe4AgCGPB0A2nEAgN5xAIDicQCA5nEAgOpxAIDucQCA8nEAgPZxAID6cQCA/nEAgAJyAIAGcgCA44ADAApyAIDhoAEADnIAgO+UAwAScgCAFnIAgBpyAIAecgCAInIAgCZyAIAqcgCALnIAgOE8BgAycgCA49AGADZyAIDhMAcAOnIAgOOsBgCAOQAAgRUAAIIdAADvHAYAPnIAgEJyAIC+uB8A7+gBALPpAgBKcgCAh8QcAIbsHABOcgCAtlkCALVRAgBScgCAu00CALpNAgBWcgCAWnIAgL+5AQC+2QEAvdEBALz1AQCjKR0A1nEAgEZyAIBecgCAYnIAgKaZHQClkR0AZnIAgKuNHQCqjR0AanIAgG5yAICveR4ArhkeAK0RHgCsNR4AcnIAgLNtHwB2cgCAenIAgLZlHwB+cgCAgnIAgLVtHwC6IR8AuyEfAIZyAICKcgCAviUfAL8pHwC8MR8AvTEfAKihHwCpoR8AqqEfAKuhHwCsoR8AraEfAK6hHwCvoR8AjnIAgJJyAICWcgCAmnIAgJ5yAICicgCApnIAgKpyAIC4rR8AubUfALq9HwC7tR8AvK0fAL1VHwC+UR8Av00fALChHwCxoR8AsqEfALOhHwC0pR8AtakfALadHwC3lR8AoykeAIIZAACBGQAAgLEBAK5yAICmIR4ApSkeALJyAICrZR4AqmUeAIaIAACH/AEAr20eAK5hHgCtdR4ArHUeALZyAICzmR4AunIAgL5yAIC2XQEAwnIAgMZyAIC1sR4AukkBALtJAQDKcgCAznIAgL49AQC/IQEAvDkBAL01AQCoRR4AqVUeAKpVHgCrZR4ArH0eAK2ZAQCuiQEAr4EBAISsAADScgCA1nIAgNpyAIDecgCA4nIAgOZyAIDqcgCAuK0BALllAQC6bQEAu2UBALx9AQC9ZQEAvm0BAL9lAQCwyQEAsckBALKpAQCzpQEAtL0BALWhAQC2oQEAt5UBALhpHAC5oRwAusEcALvBHAC8wRwAvcEcAL7BHAC/wRwAsIkfALGJHwCyIRwAswUcALQdHAC1fRwAtnUcALdtHACoYR8AqWEfAKphHwCrYR8ArNkfAK3ZHwCuyR8Ar8EfAO5yAIDycgCA9nIAgPpyAID+cgCAAnMAgAZzAIAKcwCADnMAgBJzAIC+AAQAo1EdABZzAICleR0AppUCABpzAIAecwCAInMAgKqBAgCrgQIArPECAK39AgCu9QIAr+kCACpzAIDh9AEALnMAgON8AQCATQAAgXUAAIJ9AAAycwCAhsAEAIekBAA2cwCAOnMAgD5zAIBCcwCARnMAgO+MAgCoSQIAqUkCAKpdAgCrVQIArHkCAK15AgCuvQIAr7UCAISgBQBKcwCATnMAgFJzAIC+vAQAVnMAgFpzAIBecwCAuC0BALk1AQC6PQEAuzUBALwtAQC91QEAvt0BAL/NAQCwzQIAsdUCALLdAgCz1QIAtM0CALUVAQC2HQEAtxUBAOGEHgDjbB8A41wfAOFYHgBicwCAZnMAgGpzAIBucwCAcnMAgHZzAIB6cwCAfnMAgOkAAADv9B4A70weAIJzAICzlQIAhnMAgIpzAICOcwCAknMAgLa5AgC1sQIAmnMAgLtRAgC6SQIAhsgEAIesBAC/kQEAvkkCAL1BAgC8SQIAJnMAgKNRBQCecwCAlnMAgKZ9BQCicwCApnMAgKV1BQCqjQUAq5UFAKpzAICucwCAro0FAK9VBgCsjQUArYUFAICJBwCBiQcAgpkHALORBgCycwCAtbkGALapBgC2cwCAunMAgL5zAIC6TQcAu0UHALxdBwC9QQcAvkEHAL9BBwCoQQYAqU0GAKpVBgCrZQYArH0GAK1lBgCubQYAr2UGAMJzAIDGcwCAynMAgM5zAIDScwCA1nMAgNpzAIDecwCAuFkHALlZBwC6aQcAu2kHALx5BwC9eQcAvmUHAL8ZBwCwxQcAsc0HALLFBwCz2QcAtMkHALXJBwC2aQcAt2kHAKPdBwDicwCA5nMAgOpzAIDucwCApuUHAKX1BwDycwCAqwkGAKoBBgD2cwCA+nMAgK8NBgCuDQYArQ0GAKwRBgCAbQAAgQkAAIIZAAD+cwCAAnQAgISYAQC+kAEABnQAgIbAAACH5AEACnQAgA50AIASdACAFnQAgBp0AIAedACAqF0GAKmNAQCqnQEAq5UBAKy5AQCtuQEArskBAK/BAQCEoAAAInQAgCZ0AIAqdACALnQAgDJ0AIA2dACAOnQAgLh5AQC5eQEAus0AALvFAAC83QAAvcUAAL7FAAC/9QAAsIEBALGBAQCySQEAs0kBALRZAQC1WQEAtkkBALdJAQCzFQIAPnQAgEJ0AIBGdACASnQAgLY5AgC1MQIATnQAgLtFAgC6RQIAUnQAgFZ0AIC/nQIAvp0CAL2dAgC8nQIAhXw+AKNRAgBadACAXnQAgKZ9AgBidACAZnQAgKV1AgCqAQIAqwECAGp0AIBudACArtkCAK/ZAgCs2QIArdkCAIDpAACB6QAAggUAAHJ0AIC+AAwAenQAgIeoAwCGvAwAfnQAgIJ0AICGdACAinQAgI50AICSdACAlnQAgJp0AICedACAonQAgKZ0AICqdACA42ABAK50AIDhoAEAsnQAgO+IAgC2dACAunQAgL50AIDCdACAxnQAgMp0AIDOdACAqGkCAKlpAgCqeQIAq3kCAKxpAgCtaQIArr0CAK+1AgC+rAwA0nQAgNZ0AIDadACAgB0AAIEJAACCqQAA3nQAgLhRAQC5WQEAumEBALthAQC8GQEAvRkBAL4NAQC/BQEAsM0CALHVAgCy3QIAs9UCALTNAgC1cQEAtnEBALdxAQDjxAAA4XwHAOF4BgDjvAYA4nQAgIQYDQCGuAwAhzwNAL4sDwDqdACA7nQAgPJ0AIDvEAAA9nQAgPp0AIDvdAYA/nQAgAJ1AIAGdQCAs70CAAp1AIC1rQIAtqUCAA51AIASdQCAFnUAgLpFAgC7XQIAvEUCAL1NAgC+RQIAv/kBAHZ0AIClfQ0ApnUNAOZ0AIAadQCAHnUAgCJ1AICjbQ0ArJUNAK2dDQCulQ0ArykOACZ1AIAqdQCAqpUNAKuNDQCz5Q4ALnUAgDJ1AIA2dQCAOnUAgLblDgC19Q4APnUAgLuhDgC62Q4AQnUAgEZ1AIC/pQ4AvrkOAL2xDgC8uQ4AqBUOAKklDgCqLQ4AqyUOAKw9DgCtJQ4Ari0OAK8lDgCADQAAgRUAAIIdAABKdQCATnUAgFJ1AICEMAMAVnUAgLgpDgC5KQ4AujkOALs5DgC8KQ4AvSkOAL79DwC/9Q8AsF0OALElDgCyLQ4AsyUOALQ9DgC1IQ4AtiUOALcZDgCjpQ8AWnUAgIYoAQCHTAEAXnUAgKalDwCltQ8AYnUAgKvhDwCqmQ8AZnUAgGp1AICv5Q8ArvkPAK3xDwCs+Q8AbnUAgLPpDgBydQCAdnUAgLaRDgB6dQCAfnUAgLXlDgC6sQ4Au7kOAIJ1AICGdQCAvmEBAL9hAQC8mQ4AvZkOAKglDgCpLQ4AqiUOAKs5DgCsKQ4ArVUOAK5dDgCvVQ4AinUAgI51AICSdQCAlnUAgJp1AICedQCAonUAgKZ1AIC49QEAuYEBALqBAQC7gQEAvIEBAL2JAQC+sQEAv7EBALAxDgCxOQ4AsgkOALMJDgC04QEAteEBALbhAQC3zQEAo60NAKp1AICudQCAsnUAgLZ1AICm1Q0ApaENALp1AICr/Q0AqvUNAL51AIDCdQCAryUCAK4lAgCt3Q0ArN0NAIBdAACBbQAAgmUAALNRAwC+nAMAtXkDALYZAwDKdQCAhOACAM51AIC6PQMAuzUDALwZAwC9GQMAvtkDAL/ZAwCohQMAqZUDAKqVAwCrpQMArL0DAK3VAwCu0QMAr9EDAIYABACHNAMAv6AzANJ1AIDWdQCA2nUAgN51AIDidQCAuHEDALlxAwC6cQMAu3EDALzVAAC93QAAvtUAAL/NAACwtQMAsb0DALKBAwCzgQMAtFEDALVRAwC2UQMAt1EDAO+oAwDmdQCA6nUAgO51AICEHAIA8nUAgPZ1AID6dQCAviwFAP51AIACdgCABnYAgONAAwAKdgCA4SgAAA52AICjXQIAEnYAgBZ2AIAadgCAHnYAgKYVAgCldQIAInYAgKs5AgCqMQIAJnYAgCp2AICv1QIArtUCAK0VAgCsFQIA4ygBAOEADwDhCA4A4wgOAID9AACBCQAAgjkAAC52AIAydgCAOnYAgD52AIBCdgCA7+gOAEZ2AIBKdgCA72QOALNtAQBOdgCAhugEAIcMBQBSdgCAtm0BALVtAQBWdgCAu+0AALrtAABadgCAXnYAgL/VAAC+6QAAveEAALzpAACoXQYAqWEGAKqlBgCrvQYArKUGAK2tBgCupQYArxkHADZ2AIBidgCAZnYAgGp2AIBudgCAcnYAgHZ2AIB6dgCAuHUHALl5BwC6DQcAuwUHALwdBwC9BQcAvgUHAL81BwCwaQcAsWkHALJ9BwCzdQcAtG0HALVRBwC2UQcAt1EHAKMtBgB+dgCAgnYAgIZ2AICKdgCApi0GAKUtBgCOdgCAq60HAKqtBwCSdgCAlnYAgK+VBwCuqQcAraEHAKypBwCADQAAgRUAAIIdAACadgCAnnYAgKJ2AICEVAMAvlwAAKZ2AICqdgCAhugAAIdMAwCudgCAsnYAgLZ2AIC6dgCAvnYAgOMEBADCdgCA4bQFAMZ2AIDKdgCAznYAgNJ2AIDWdgCA2nYAgN52AIDidgCA5nYAgO/sBADqdgCA7nYAgLPtBgDydgCA9nYAgPp2AID+dgCAtpEGALXhBgACdwCAu40GALqNBgAGdwCACncAgL9BAQC+WQEAvVEBALxZAQCoJQYAqS0GAKolBgCrOQYArCkGAK1RBgCuSQYAr0EGAIDNAACBCQAAghkAAA53AIASdwCAhCwBAL40AAAadwCAuP0BALlBAQC6QQEAu0EBALxBAQC9SQEAvnEBAL9xAQCwCQYAsQkGALLNAQCzxQEAtN0BALXFAQC2zQEAt8UBAIagPACHRAMAHncAgKOhBQAidwCApa0FAKbdBQAmdwCAKncAgL4oPACqwQUAq8EFAKwVAgCtHQIArhUCAK8NAgC2QQMALncAgDJ3AIC1sQIANncAgLOhAgA6dwCAPncAgL5FAwC/TQMAvHUDAL1NAwC6ZQMAu20DAEJ3AIBGdwCASncAgE53AIDGdQCAUncAgFZ3AIBadwCAXncAgGJ3AICoRQIAqVUCAKpdAgCrVQIArE0CAK21AwCusQMAr60DALDVAwCx3QMAstUDALPtAwC09QMAtf0DALb1AwC37QMAuNkDALnZAwC6rQMAu6UDALy9AwC9pQMAvqUDAL+VAwCj9QMAZncAgGp3AIBudwCAcncAgKYVAgCl5QMAdncAgKs5AgCqMQIAencAgH53AICvGQIArhECAK0ZAgCsIQIAgGkAAIFpAACCBQAAgncAgIp3AICOdwCAkncAgO8cAACEbAIA4ZQBAJZ3AIDjyAAAmncAgJ53AICGWDwAh1A9AKJ3AICmdwCAqncAgISEPQCudwCAsncAgLZ3AIDvuAEAvmw8AOF0BgC6dwCA42QBAL53AIDCdwCAxncAgMp3AICz0QEAzncAgNJ3AIDWdwCA2ncAgLaRAQC1+QEA3ncAgLu9AQC6vQEA4ncAgOZ3AIC/dQEAvnUBAL2FAQC8hQEAqL09AKkNPgCqGT4AqxE+AKwxPgCtUT4ArlE+AK9NPgCGdwCAgh0AAIEdAACAHQAA6ncAgO53AIDydwCA9ncAgLjVPgC53T4AutU+ALtJPwC8WT8AvVk/AL5JPwC/QT8AsDk+ALE5PgCyET4AsxE+ALTxPgC18T4AtvU+ALftPgCjkT4A+ncAgIYoAACHwAMA/ncAgKbRPgCluT4AAngAgKv9PgCq/T4ABngAgAp4AICvNT4ArjU+AK3FPgCsxT4ADngAgLOdPwASeACAFngAgLalPwAaeACAHngAgLWtPwC6aT8Au3U/ACJ4AIAmeACAvlk/AL9FPwC8bT8AvWU/ACp4AIAueACAMngAgDZ4AIDjYDwAOngAgOEAPQA+eACA7/w9AEJ4AIBGeACASngAgE54AIBSeACAVngAgFp4AICjGT4AghkAAIEZAACAcQAAXngAgKYhPgClKT4AYngAgKvxPgCq7T4AhCQBAL4kAQCvwT4Art0+AK3hPgCs6T4AqNE+AKnRPgCq0T4Aq+U+AKzhPgCt4T4Arhk+AK8ZPgCGAAAAh4QAAGp4AIBueACAcngAgHZ4AIB6eACAfngAgLh9PgC5AT4AugE+ALsBPgC8AT4AvQk+AL4xPgC/MT4AsGk+ALF1PgCyfT4As3U+ALRZPgC1RT4Atk0+ALdFPgCohQIAqZUCAKqVAgCrpQIArL0CAK3VAgCu0QIAr9ECAIJ4AICGeACAingAgL8k5gGOeACAkngAgJZ4AICaeACAuFUDALlZAwC6bQMAu2UDALx9AwC9ZQMAvm0DAL9lAwCwtQIAsb0CALKBAgCzgQIAtHEDALVxAwC2cQMAt3EDALMdAgCeeACAongAgKZ4AICEiAMAtlUCALU1AgAWdwCAu3kCALpxAgCqeACArngAgL+1AwC+tQMAvVUCALxVAgCyeACAo1kCALZ4AIC6eACAphECAL54AIDCeACApXECAKo1AgCrPQIAxngAgMp4AICu8QMAr/EDAKwRAgCtEQIAqKkCAKmpAgCquQIAq7kCAKypAgCtqQIArjkBAK85AQCAzQEAgQkAAIIZAADOeACA0ngAgL64BQDaeACA3ngAgLjpAQC56QEAuokBALuFAQC8nQEAvYEBAL6BAQC/tQEAsEkBALFVAQCyXQEAs1UBALRNAQC18QEAtvEBALfxAQDvFAAA4ngAgIaoBQCH3AUA5ngAgIRYBADqeACA78Q+AO54AIDhxD4A8ngAgOMwPgDjyAAA9ngAgOEoAQD6eACAtn0CAP54AIACeQCAtXUCAAZ5AICzZQIACnkAgA55AIC+3QEAv2EBALzdAQC91QEAutkBALvFAQASeQCAFnkAgKOxBQDWeACAGnkAgB55AIAieQCApqkFAKWhBQAmeQCAqxEGAKoNBgAqeQCALnkAgK+1BgCuCQYArQEGAKwJBgAyeQCANnkAgDp5AIA+eQCAgBkAAIEZAACCBQAAQnkAgL5sAwBGeQCAhsgAAIccAwBKeQCATnkAgFJ5AIBWeQCAqLkHAKm5BwCqDQcAqx0HAKwJBwCtNQcArjEHAK8pBwCEqAMAWnkAgF55AIBieQCAZnkAgGp5AIBueQCAcnkAgLjJAAC5yQAAutkAALvRAAC8+QAAvfkAAL6ZAAC/mQAAsF0HALEhBwCyIQcAsz0HALQpBwC1KQcAtgEHALcBBwCzhQYAdnkAgHp5AIB+eQCAgnkAgLa1BgC1gQYAhnkAgLvlBgC6mQYAinkAgI55AIC/7QYAvu0GAL3pBgC89QYAknkAgJZ5AICaeQCAnnkAgKJ5AICmeQCAqnkAgO+QBACueQCA4dwGALJ5AIDj7AUAgCkAAIEVAACCEQAAvnwBAKMFBgC6eQCAhigAAIdMAQC+eQCApjUGAKUBBgDCeQCAq2UGAKoZBgDGeQCAynkAgK9tBgCubQYArWkGAKx1BgDOeQCAs70BANJ5AIDWeQCAtnkBANp5AIDeeQCAtXkBALpVAQC7XQEA4nkAgOZ5AIC++QAAv/kAALxFAQC9+QAAqHECAKlxAgCqcQIAq3ECAKy1AgCtvQIArrUCAK+tAgCE7AwA6nkAgO55AIDyeQCA9nkAgPp5AID+eQCAAnoAgLhpAwC5aQMAugkDALsJAwC8GQMAvRkDAL4JAwC/CQMAsNUCALHdAgCy1QIAs2kDALR5AwC1eQMAtmkDALdhAwAGegCACnoAgA56AICj9QIAEnoAgKUxAgCmMQIAFnoAgBp6AIAeegCAqh0CAKsVAgCsDQIArbEDAK6xAwCvsQMAgGEAAIFhAACCBQAAInoAgIbwDACHYAMAvhAMACp6AIBmeACALnoAgDJ6AIA2egCAOnoAgD56AIBCegCARnoAgKiFAgCplQIAqpUCAKulAgCsvQIArdUCAK7RAgCv0QIASnoAgE56AIBSegCAVnoAgFp6AIBeegCAYnoAgGZ6AIC4dQEAuX0BALp1AQC7zQEAvNUBAL3dAQC+yQEAv8EBALC1AgCxvQIAsoECALOBAgC0VQEAtV0BALZVAQC3TQEA4RAGAIRIDADjDAYAanoAgISYDABuegCAcnoAgHZ6AIB6egCAfnoAgIJ6AICGegCAgXUAAIB1AADvIAEAgnUAAIp6AICOegCAknoAgL7ADACFtA4A4RACAO9cAADjABYA4ZABAJp6AIDjWAEA7zwHAJ56AICiegCAhgAIAIe4DACznQ0AJnoAgKZ6AICqegCArnoAgLbVDQC1tQ0AsnoAgLv5DQC68Q0AtnoAgLp6AIC/GQ4AvhEOAL3VDQC81Q0AvnoAgKPZDQDCegCAxnoAgKaRDQDKegCAznoAgKXxDQCqtQ0Aq70NANJ6AIDWegCArlUOAK9dDgCskQ0ArZENAKhdDgCpYQ4AqmEOAKthDgCsYQ4ArWEOAK5hDgCvYQ4A2noAgN56AIDiegCA5noAgOp6AIDuegCA8noAgPZ6AIC4TQ8AuVEPALpRDwC7UQ8AvHEPAL1xDwC+cQ8Av3EPALDBDwCxwQ8AssEPALPBDwC0wQ8AtcEPALbBDwC3wQ8As+kPAPp6AIC+gAEA/noAgJZ6AIC24Q8AtekPAAJ7AIC7BQ4AugUOAAp7AIAGewCAvwUOAL4FDgC9FQ4AvBUOAIFNAACAQQAA72gNAIJRAACG8AcAh9QBAA57AIASewCAFnsAgIRwAQAaewCAHnsAgOHgDgAiewCA40gNACZ7AICjaQ8AKnsAgC57AIAyewCANnsAgKZhDwClaQ8AOnsAgKuFDgCqhQ4APnsAgEJ7AICvhQ4AroUOAK2VDgCslQ4ARnsAgLMxDgBKewCATnsAgLbBAQBSewCAVnsAgLXRAQC6zQEAu6UBAFp7AIBeewCAvqUBAL+tAQC8sQEAvbEBAI/dJgCj8Q0AYnsAgGZ7AICmAQIAansAgG57AIClEQIAqg0CAKtlAgByewCAviAEAK5lAgCvbQIArHECAK1xAgCfoQwAnnkKAJ1pCgCc0QgAm7E2AJp1NgCZ0TQAmOEyAJdtMgCWZTIAlTU/AJRhPgCTcT4AkjU7AJFxOgCQeToAgJUAAIGdAACCoQAAensAgO9EAgDhdA8AfnsAgOMcDwDj1AEAgnsAgOHgAQDvXAEAo7UCAKJBAACh3Q4AoLkOALWpAwCGewCAhMAEALahAwCG8AUAh+QEALOFAwCKewCAvXEDALxpAwC/QQMAvnEDAI57AIC2eQCAu3EDALp5AwCC3ScAgwE7AL6EBwC+wAYAhhE/AIcZPwCEETsAhV06AIp9PgCLJTMAknsAgJZ7AICOuTUAjxU3AIw1MwCNgTMAkqE3AJPZCQC+xBkAmnsAgJaxDQCXUQ8AlHkLAJVhCwCaBQ8Am5EBAJ57AICiewCApnsAgN0AAACcfQMAqnsAgOFIDwCuewCA4xwOALJ7AIC2ewCAunsAgL57AIDCewCAsUEXALChFwCzqesBsgHoAbUB7AG0EesB74wOAMZ7AICpxR8AqAEcAKsBEACqkR8ArdkTAKzREwCv2RcArgUTAKHxAgDKewCAo8kHAKLBAgClARgApGUHAKehGwCm+RsAqCkFAKldBQCqVQUAq20FAKx5BQCteQUArm0FAK9hBQB2ewCAznsAgNJ7AIDWewCAgA0AAIGxAACCsQAA2nsAgLiJBQC5iQUAup0FALuVBQC8uQUAvbkFAL5RBgC/UQYAsOUFALHtBQCy5QUAs/0FALTtBQC13QUAttUFALe9BQCj3QUA3nsAgOJ7AICEDAAA5nsAgKb5BQCl8QUA6nsAgKspBQCqIQUAhpgAAIegAACvGQUArikFAK0pBQCsMQUA7nsAgLNhBgDyewCA9nsAgLYhBgD6ewCA/nsAgLUBBgC6rQcAu40HAAJ8AIAGfACAvo0HAL9xBwC8lQcAvY0HAL65BQC/uQUAvLkFAL25BQC6uQUAu7kFALi5BQC5uQUAtkkFALdJBQC0fQUAtXUFALJ5BQCzeQUAsBUFALF9BQCuXQUAr20FAKxFBQCtXQUAqqUKAKtdBQCovQoAqa0KAAp8AIAOfACAEnwAgBZ8AIAafACAHnwAgCJ8AIAmfACAqA0HAKkdBwCqLQcAq0kHAKxNBwCtZQcArrEGAK+xBgAqfACALnwAgDJ8AIA2fACAOnwAgD58AIBCfACARnwAgLhVBgC5XQYAulUGALtxBgC8NQYAvfEBAL7xAQC/8QEAsK0GALGNBgCyhQYAs50GALSNBgC1cQYAtnUGALdtBgCjpQQAgi0AAIEVAACAHQAASnwAgKblBAClxQQATnwAgKtJBQCqaQUAUnwAgFp8AICvtQUArkkFAK1JBQCsUQUAhmAcAIcIAwBefACAs4UCAGJ8AIC1gQIAtoECAGZ8AIBqfACAbnwAgLoJAwC7CQMAvBkDAL0ZAwC+CQMAvwkDAKxVAgCtXQIArmECAK9hAgCoDQIAqVUCAKpRAgCrUQIAhKwDAHJ8AIB2fACAenwAgIT8HQB+fACAgnwAgIZ8AIC8cQMAvXEDAL5xAwC/cQMAuHEDALlxAwC6cQMAu3EDALSRAwC1kQMAtpEDALeRAwCwkQMAsZEDALKRAwCzkQMAinwAgI58AICSfACAlnwAgJp8AIDhpAEAnnwAgOOAAQC+aBwAonwAgKZ8AIDv2AYAqnwAgK58AICyfACAtnwAgKOJAwCCLQAAgRUAAIAdAAC6fACApo0DAKWNAwC+fACAqwUCAKoFAgDCfACAynwAgK8FAgCuBQIArRUCAKwVAgCGIBwAh8QdAM58AIDSfACA1nwAgNp8AIDefACA72wGAOJ8AIDhbAcA5nwAgON0BwDqfACA7nwAgPJ8AID2fACAs5EBAPp8AID+fACAAn0AgAZ9AIC2sQEAtbkBAAp9AIC7VQEAukkBAA59AIASfQCAv/UAAL71AAC9RQEAvEUBAKNRHgDGfACAFn0AgBp9AIAefQCApnEeAKV5HgAifQCAq5UeAKqJHgAmfQCAKn0AgK81HwCuNR8ArYUeAKyFHgCAbQAAgRUAAIIdAADv/BkALn0AgDJ9AIA2fQCAOn0AgIbAAACHrAMAPn0AgEJ9AIBGfQCA4SwcAEp9AIDjzBwAqK0eAKnNHgCq2R4Aq9EeAKzxHgCt8R4Arj0eAK81HgCE7AAATn0AgFJ9AIBWfQCAWn0AgF59AIBifQCAZn0AgLjRHwC53R8Auu0fALvlHwC84R8AveEfAL7hHwC/4R8AsE0eALFRHgCyUR4As1EeALTxHwC18R8AtvEfALfxHwCobR4AqY0eAKqFHgCrnR4ArIUeAK2NHgCuuR4Ar7UeAGp9AIBufQCAcn0AgHZ9AIB6fQCAfn0AgIJ9AICGfQCAuJ0eALmtHgC6pR4Au0UBALxdAQC9RQEAvkUBAL91AQCw0R4AsdEeALLRHgCz0R4AtLUeALW9HgC2tR4At60eALMNHgCKfQCAjn0AgJJ9AICWfQCAtg0eALUNHgCafQCAuxUeALoVHgCefQCAon0AgL95HgC+cR4AvQUeALwFHgCCbQAAo0keAIBVAACBZQAApkkeAL6cAQCqfQCApUkeAKpRHgCrUR4Ah3wAAIZMAACuNR4Arz0eAKxBHgCtQR4AqF0CAKltAgCqZQIAq30CAKxpAgCtsQIArrECAK+xAgCE7AQArn0AgLJ9AIC2fQCAun0AgL59AIDCfQCAxn0AgLhxAwC5cQMAunEDALtxAwC81QMAvd0DAL7VAwC/zQMAsNECALHRAgCy0QIAs9ECALRRAwC1UQMAtlEDALdRAwCz7QIAyn0AgM59AIC+gAQA0n0AgLYxAgC14QIA1n0AgLsVAgC6FQIA2n0AgN59AIC/lQMAvpUDAL0FAgC8BQIA4n0AgKOpAgDmfQCA6n0AgKZ1AgDufQCA8n0AgKWlAgCqUQIAq1ECAPZ9AID6fQCArtEDAK/RAwCsQQIArUECAKjZAgCpIQEAqiEBAKshAQCsIQEArSEBAK4hAQCvIQEA/n0AgAJ+AIAGfgCAviAEAAp+AIAOfgCAEn4AgBp+AIC4jQEAuZEBALqRAQC7pQEAvL0BAL11AAC+fQAAv3UAALDlAQCx7QEAsvkBALPxAQC02QEAtdkBALa5AQC3tQEA4RgeAB5+AIDjKB8AIn4AgIGlAACApQAAJn4AgIKlAACGAAQAh/QFACp+AIAufgCAMn4AgDZ+AIDvYB4AOn4AgD5+AIBCfgCAhfD0AUZ+AIBKfgCA42QBAE5+AIDhpAEAUn4AgO/IAABWfgCAWn4AgFZ8AICE/AUAXn4AgGJ+AICzKQYAFn4AgGZ+AIBqfgCAbn4AgLYhBgC1KQYAcn4AgLupBgC6oQYAdn4AgHp+AIC/nQYAvp0GAL2lBgC8rQYA4bQHAH5+AIDjeAQAgn4AgIB9AACBEQAAghUAAIZ+AICGwAAAh1gDAIp+AICOfgCAkn4AgJZ+AIDvDAQAmn4AgKOpBgCefgCAon4AgKZ+AICqfgCApqEGAKWpBgCufgCAqykGAKohBgCyfgCAtn4AgK8dBgCuHQYArSUGAKwtBgC6fgCAs0kHAL5+AIDCfgCAtn0HAMZ+AIDKfgCAtXUHALpdBwC7JQcAzn4AgNJ+AIC+IQcAvy0HALw9BwC9MQcAqD0GAKmBBgCqhQYAq5UGAKy5BgCtuQYArqkGAK+pBgDWfgCA2n4AgN5+AIDifgCA5n4AgIK5AACBsQAAgLkAALitBgC5vQYAurUGALtFAQC8XQEAvUUBAL5FAQC/dQEAsN0GALGlBgCyrQYAs6EGALShBgC1rQYAtpkGALeVBgCjDQYA6n4AgO5+AIDyfgCAhJgCAKY5BgClMQYAvpwBAKthBgCqGQYAhggAAId8AQCvaQYArmUGAK11BgCseQYA+n4AgLO1AQD+fgCAAn8AgLZVAQAGfwCACn8AgLWhAQC6cQEAu3kBAA5/AIASfwCAvjEBAL89AQC8UQEAvVEBAKhpAgCpaQIAqnkCAKt5AgCsbQIArZECAK6RAgCvkQIAFn8AgBp/AIAefwCAIn8AgCZ/AIAqfwCALn8AgDJ/AIC4mQIAua0CALqlAgC7bQMAvHUDAL19AwC+dQMAv20DALDxAgCx+QIAssECALPBAgC0sQIAtb0CALa1AgC3qQIANn8AgDp/AIA+fwCAo/0CAEJ/AICl6QIAph0CAEZ/AIBKfwCATn8AgKo5AgCrMQIArBkCAK0ZAgCueQIAr3UCAFJ/AIBWfwCAWn8AgIQADACAGQAAgQkAAII5AABefwCAYn8AgGp/AIBufwCAvuAMAHJ/AIB2fwCAhlgNAIcMAwCowQIAqc0CAKrFAgCr2QIArMkCAK39AgCu9QIArz0BAHp/AIB+fwCAgn8AgIZ/AICKfwCAjn8AgJJ/AIC+MAwAuMUBALnNAQC62QEAu9EBALzxAQC98QEAvpkBAL+ZAQCwRQEAsU0BALJFAQCzXQEAtEUBALVNAQC2RQEAt/0BAOE4BgCWfwCA42wGAJp/AICefwCAon8AgKZ/AICqfwCAhKgNAK5/AICyfwCAtn8AgL6wDwC6fwCA72wGAL5/AIDCfwCApn0AgMZ/AIDKfwCA41AAAM5/AIDhoAEA0n8AgO+EAADafwCAhyANAIZMDwCAPQAAgSEAAIIlAADefwCAs80NAGZ/AIDWfwCA4n8AgOZ/AIC2/Q0AtcENAOp/AIC7CQ4AugEOAO5/AIDyfwCAvwkOAL4BDgC9CQ4AvBEOAPZ/AIDjmAwA+n8AgOH8DwD+fwCAAoAAgAaAAIAKgACADoAAgBKAAIAWgACAGoAAgB6AAIDvYAwAIoAAgCaAAICjTQ0AKoAAgC6AAIAygACANoAAgKZ9DQClQQ0AOoAAgKuJDgCqgQ4APoAAgEKAAICviQ4AroEOAK2JDgCskQ4Agm0AALM1DgCAVQAAgWUAALb1DwCE3AMARoAAgLX9DwC60Q8Au9EPAIYABACH3AAAvn0PAL9lDwC8wQ8AvXkPAKjlDwCp7Q8AqvkPAKv5DwCsMQ4ArTEOAK4xDgCvMQ4ASoAAgE6AAIBSgACAVoAAgFqAAIBegACAYoAAgGaAAIC43Q4AueEOALrhDgC74Q4AvOUOAL3pDgC+mQ4Av5UOALBRDgCxUQ4AslEOALPpDgC0/Q4AteUOALbtDgC35Q4Ao3EPAGqAAIBugACAcoAAgHaAAICmsQ4ApbkOAHqAAICrlQ4AqpUOAH6AAICCgACAryEOAK45DgCtPQ4ArIUOAIaAAICzyQEAioAAgI6AAIC2+QEAkoAAgJaAAIC1wQEAuqkBALu1AQCagACAnoAAgL6tAQC/lQEAvK0BAL2lAQCo5Q0AqfkNAKoFAgCrHQIArA0CAK09AgCuNQIAr10CAKKAAICmgACAqoAAgK6AAICAGQAAgRkAAIIFAACygACAuC0CALk1AgC6MQIAuzECALzVAgC93QIAvtUCAL/NAgCwKQIAsTUCALI9AgCzNQIAtC0CALUVAgC2HQIAtxUCALqAAICEnAIAvoAAgKOBAgDCgACApYkCAKaxAgDGgACAhiAEAIfUAwCq4QIAq/0CAKzlAgCt7QIAruUCAK/dAgC29QMAvkQDAIWM/QG1/QMAyoAAgLP9AwDOgACA0oAAgL59AwC/TQMAvGUDAL19AwC6dQMAu30DANaAAIDagACA3oAAgOKAAICEBAIAoyUCAOaAAIClJQIApi0CAOqAAIDugACA8oAAgKqtAgCrpQIArL0CAK2lAgCupQIAr5UCAPaAAID6gACA/oAAgAKBAIAGgQCA48ADAAqBAIDhrAEADoEAgO9YAwASgQCAFoEAgIANAACB5QAAgu0AABqBAIDhYA8A40ABAOM4DgDheA4AHoEAgCKBAIC+lAUAKoEAgIYABACHZAUALoEAgDKBAIA2gQCA7/wOAO98DgA6gQCAs1EBAD6BAID2fgCAQoEAgEaBAIC2DQEAtQkBAEqBAIC74QAAuhkBAE6BAIBSgQCAv9EAAL7pAAC96QAAvPkAALaAAIAmgQCAVoEAgFqBAIBegQCAYoEAgGaBAIBqgQCAqKEGAKmtBgCquQYAq7EGAKzhBgCt7QYAruUGAK/FBgCwvQYAsUUHALJNBwCzXQcAtE0HALV1BwC2fQcAtx0HALglBwC5LQcAuiUHALs9BwC8KQcAvRUHAL4RBwC/EQcAoxEGAG6BAIBygQCAdoEAgHqBAICmTQYApUkGAH6BAICroQcAqlkGAIKBAICGgQCAr5EHAK6pBwCtqQcArLkHAIANAACBFQAAgh0AAIqBAICOgQCAkoEAgISUAwC+lAMAloEAgJqBAICGyAAAh4wAAJ6BAICigQCApoEAgKqBAIConQYAqa0GAKqlBgCrvQYArK0GAK3RBgCu1QYAr80GAK6BAICygQCAtoEAgLqBAIC+gQCAwoEAgMaBAIDKgQCAuF0BALnBAQC6wQEAu8EBALzBAQC9yQEAvvEBAL/xAQCwvQYAsY0GALKFBgCzZQEAtH0BALVlAQC2bQEAt2UBALMtBgDOgQCA0oEAgNaBAIDagQCAtlEGALUlBgDegQCAu0kGALp5BgDigQCA5oEAgL+hAQC+uQEAvbEBALxRBgDqgQCAo2kGAO6BAIDygQCAphUGAPaBAID6gQCApWEGAKo9BgCrDQYA/oEAgAKCAICu/QEAr+UBAKwVBgCt9QEAutUHALvdBwC4wQcAucEHAL4xBAC/MQQAvPEHAL3xBwCyrQcAs7UHALCtBwCxpQcAtp0HALf1BwC0pQcAtZUHAKppBwCraQcAqGkHAKlpBwCuaQcAr2kHAKxpBwCtaQcAgLkDAIGNAwCChQMAhKgDAIZQ/AGHCAMAvjQDAAqCAICoZQIAqXUCAKp9AgCrdQIArG0CAK21AwCuvQMAr7UDAA6CAIASggCAFoIAgBqCAIAeggCAIoIAgCaCAIAqggCAuFEDALlZAwC6YQMAu2EDALwRAwC9HQMAvhUDAL8JAwCwzQMAsdUDALLdAwCz1QMAtM0DALVxAwC2cQMAt3EDAC6CAIAyggCAs/0DADaCAIC17QMAOoIAgD6CAIC2PQIAQoIAgEaCAIC7GQIAugECAL0JAgC8AQIAv70CAL4BAgBKggCAToIAgITE/QG+wPwBUoIAgFaCAIBaggCA79wDAF6CAIDhlAEAYoIAgOMQAwBmggCAgu0AAIHtAACA7QAA4TgGAOE8BwDjQAEA45QGAGqCAIBuggCAcoIAgHqCAICGgPwBh+j9AX6CAICCggCAhoIAgIqCAIDvnAEA79wGAKM1AwCOggCAkoIAgJaCAICaggCApvUCAKUlAwCeggCAq9ECAKrJAgCiggCApoIAgK91AgCuyQIArcECAKzJAgB2ggCAqoIAgK6CAICyggCA76T9AbaCAIC6ggCAvoIAgON4/QHCggCA4UD8AcaCAIDKggCAzoIAgNKCAIDWggCAs+X+AYItAACBFQAAgB0AANqCAIC25f4BtfX+Ad6CAIC7Yf8Butn+AeKCAICE5AMAv2n/Ab5h/wG9df8BvHn/Aaj9/gGpJf4Bqi3+Aasl/gGsPf4BrSX+Aa4t/gGvJf4BviwAAOaCAICGiAAAh+wAAOqCAIDuggCA8oIAgPaCAIC4gf8BuYH/AbqZ/wG7mf8BvIn/Ab21/wG+sf8Bv63/AbBd/gGx5f8Bsu3/AbPh/wG05f8Bte3/AbbZ/wG32f8Bo6X/AfqCAID+ggCAAoMAgAaDAICmpf8BpbX/AQqDAICrIf4Bqpn/AQ6DAIASgwCAryn+Aa4h/gGtNf4BrDn+ARaDAICz6f4BGoMAgB6DAIC2lf4BIoMAgCaDAIC16f4BurH+Abu5/gEqgwCALoMAgL51AQC/fQEAvJH+Ab2R/gGoHf4BqS3+Aaol/gGrPf4BrCX+Aa1R/gGuUf4Br1H+ATKDAIA2gwCAOoMAgD6DAIBCgwCARoMAgEqDAIBOgwCAuNkBALnZAQC67QEAu+EBALzhAQC94QEAvuEBAL/hAQCwMf4BsTn+AbIB/gGzAf4BtPUBALX9AQC29QEAt+kBAKOt/QFSgwCAvkwDAFqDAIBegwCAptH9AaWt/QFigwCAq/39Aar1/QFmgwCAaoMAgK85AgCuMQIArdX9AazV/QGA+QMAgfkDAIJNAACFdCAAboMAgITYAwCE1AQAcoMAgIZABACHVAMAdoMAgHqDAIB+gwCAgoMAgIaDAIC+8AUAqDECAKkxAgCqMQIAqzECAKyVAwCtnQMArpUDAK+NAwCKgwCAjoMAgJKDAICWgwCAhHwHAJqDAICegwCAooMAgLipAwC5qQMAumkDALtpAwC8eQMAvXkDAL5pAwC/aQMAsP0DALHNAwCyxQMAs60DALS5AwC1uQMAtq0DALelAwCmgwCAqoMAgK6DAICygwCAtoMAgLqDAIDv6AMAvoMAgOGQAQDCgwCA42wDAMqDAICAJQAAgSkAAIIdAADOgwCAs/kDANKDAICGaAcAh1wFANaDAIC2XQIAtV0CANqDAIC7SQIAunkCAN6DAIDigwCAvz0CAL49AgC9OQIAvFECAOaDAIDhPP4BvkAGAOPwAQDqgwCA7oMAgPKDAID2gwCA+oMAgP6DAIAChACABoIAgAaEAIAKhACADoQAgO/kAQAShACAFoQAgKNxAwAahACApdUCAB6EAIAihACAptUCACaEAIAqhACAq8ECAKrxAgCtsQIArNkCAK+1AgCutQIA4dz8AcaDAIDjUAQA74gEAID1BwCBCQAAgj0AAC6EAICEJAEAMoQAgDaEAIA6hACAPoQAgOFMBADv5BwA43QEALNdBgBChACAhgAMAIfgAwBGhACAtgUGALV1BgBKhACAuxEGALoJBgBOhACAUoQAgL/VBgC+1QYAvQEGALwJBgCojQYAqZUGAKqVBgCrpQYArL0GAK3FBgCuxQYAr/UGAFaEAIBahACAXoQAgGKEAIBmhACAaoQAgG6EAIByhACAuHUGALl9BgC6dQYAu80HALzVBwC93QcAvtUHAL/NBwCwjQYAsZUGALKdBgCzlQYAtFEGALVRBgC2UQYAt1EGAKMdBwCPFewBdoQAgHqEAIB+hACApkUHAKU1BwCChACAq1EHAKpJBwCGhACAioQAgK+VBwCulQcArUEHAKxJBwCeRfkBn6X5AZyR/QGdTfkBmlX9AZtd/QGYBfEBmZX+AZal8gGXYfEBlG31AZU19QGS4ekBk4X2AZBV7AGRXekBsbEdALClHQCziRkAskEcALUBJAC09RkAjoQAgJKEAICWhACAgqkDAIGhAwCAaQAAohUFAKMFAgCgFQYAob0FAKHFAQCahACAo80NAKLlAQClAQgApN0NAKfRCQCm2QkAqQEUAKilCACrxRQAqs0VAK3REQCsARAArwEcAK51EQCCEe8BgynvAZ6EAICihACAhuH1AYcR9gGEOeoBhY3qAYp59gGL4fEBvqQMAKqEAICO+f0BjzH+AYw98gGNYfIBkkn+AZOd/gGHCAwAhmwMAJax+gGX+QUAlFn6AZVZ+gGaYQYAm8EGAK6EAICyhACAtoQAgLqEAICcyQEAvoQAgKitBQCpuQUAqs0FAKvdBQCszQUArf0FAK71BQCvHQUAwoQAgMaEAIDKhACAzoQAgNKEAIDWhACA2oQAgN6EAIC4dQUAuX0FALoJBQC7CQUAvB0FAL0BBQC+AQUAvz0FALBxBQCxcQUAsnEFALNxBQC0UQUAtVEFALZRBQC3TQUAs0UEAOKEAIDmhACA6oQAgO6EAIC2fQQAtUUEAPKEAIC7tQQAurUEAPaEAID6hACAv5UEAL6VBAC9pQQAvKUEAP6EAICjAQQAAoUAgAaFAICmOQQACoUAgA6FAIClAQQAqvEEAKvxBAAShQCAhOwNAK7RBACv0QQArOEEAK3hBADh0AYAhAwMAOMoBwC+AAwAGoUAgO9EAwCGuAwAhywNAB6FAIDjlAEAIoUAgOH8AQBWgwCAJoUAgO/IBgAqhQCALoUAgDKFAICzjQMANoUAgLWNAwA6hQCAPoUAgLa1AwBChQCARoUAgLtBAwC6SQMAvUEDALxZAwC/QQMAvkkDAKNFDACmhACAFoUAgEqFAIBOhQCApn0MAKVFDABShQCAq4kMAKqBDABWhQCAWoUAgK+JDACugQwArYkMAKyRDACAFQ8AgR0PAIIhDwCzIQ4AXoUAgLUhDgC2JQ4AYoUAgGaFAIBqhQCAusEOALvBDgC8wQ4AvcEOAL7BDgC/wQ4AqK0OAKntDgCq5Q4Aq/0OAKzlDgCt6Q4ArjkOAK85DgBuhQCAcoUAgHaFAIB6hQCAgB0AAIEJAACCvQEAfoUAgLjNDwC51Q8AutUPALvlDwC8/Q8AvZUPAL6RDwC/kQ8AsEkOALFJDgCyWQ4As1kOALRJDgC1SQ4Atv0PALf1DwCjbQ8AgoUAgL6EAQCKhQCAjoUAgKZpDwClbQ8AkoUAgKuNDwCqjQ8AhogAAIdsAQCvjQ8Aro0PAK2NDwCsjQ8AloUAgLPtDgCahQCAnoUAgLaRDgCihQCApoUAgLXhDgC6tQ4Au70OAKqFAICuhQCAvn0BAL9lAQC8mQ4AvZkOAKgRDgCpJQ4AqiEOAKs5DgCsLQ4ArVUOAK5dDgCvUQ4AhKgAALKFAIC2hQCAuoUAgL6FAIDChQCAxoUAgMqFAIC47QEAuZUBALqVAQC7rQEAvLUBAL11AQC+fQEAv3UBALA1DgCxPQ4AsgkOALMJDgC0/QEAteUBALblAQC31QEAo6kNAM6FAIDShQCA1oUAgNqFAICm1Q0ApaUNAN6FAICr+Q0AqvENAOKFAIDmhQCAryECAK45AgCt3Q0ArN0NAIANAACBFQAAgh0AAOqFAIDuhQCA8oUAgIeQAwCGfAQAvuwEAPqFAID+hQCAAoYAgAaGAIAKhgCADoYAgBKGAICyLQ4AszUOALAtDgCxJQ4Ati0OALedDwC0LQ4AtSUOALq9DwC7jQ8AuKUPALm9DwC+LQ8AvxUPALyVDwC9JQ8AFoYAgBqGAIAehgCAIoYAgCaGAIAqhgCALoYAgDKGAICqpQ4Aq7UOAKjFDgCp3Q4Arp0OAK9VDgCspQ4ArZUOAKgNAgCpFQIAqhUCAKtNAgCsWQIArVkCAK5NAgCvRQIAhKgFADaGAIA6hgCAPoYAgIS4BABChgCARoYAgEqGAIC4/QIAuUEBALpBAQC7QQEAvEEBAL1JAQC+cQEAv3EBALAJAgCxCQIAss0CALPFAgC03QIAtcUCALbNAgC3xQIA4dQPAOMQDgDj9A4A4QwOAE6GAIBShgCAVoYAgFqGAIBehgCAYoYAgL4kBABqhgCA7AAAAO9EAADvzA4AboYAgIJlAACz2QIAgFUAAIFtAAC2nQIAcoYAgHaGAIC1lQIAuokCALuJAgCGqAQAh+AEAL5dAgC/RQIAvF0CAL1VAgCjHQUA9oUAgGaGAIB6hgCAfoYAgKZZBQClUQUAgoYAgKtNBQCqTQUAhoYAgIqGAICvgQUArpkFAK2RBQCsmQUAjoYAgLMpBgCShgCAloYAgLYpBgCahgCAnoYAgLUpBgC6pQYAu60GAKKGAICmhgCAvqUGAL+tBgC8tQYAva0GAKjlBgCp7QYAquUGAKv9BgCs5QYAre0GAK7lBgCvXQYAqoYAgK6GAICyhgCAtoYAgLqGAIC+hgCAwoYAgMaGAIC46QcAuekHALr9BwC79QcAvO0HAL1FBwC+TQcAv0UHALAlBgCxLQYAsiUGALM9BgC0JQYAtS0GALYlBgC32QcAo20HAIItAACBFQAAgB0AAMqGAICmbQcApW0HAM6GAICr6QcAquEHANKGAIC+oAEAr+kHAK7hBwCt6QcArPEHANaGAICzkQYAhugAAIcsAQC2QQEA2oYAgN6GAIC1UQEAuk0BALslAQDihgCA5oYAgL4lAQC/LQEAvDEBAL0xAQCwrQEAscUBALLBAQCzwQEAtMUBALXNAQC28QEAt/EBALgBAQC5AQEAugEBALsBAQC8AQEAvQEBAL4BAQC/AQEA6oYAgO6GAIDyhgCA9oYAgIaFAID6hgCA/oYAgAKHAICoTQYAqVkGAKo9BgCrNQYArP0BAK3lAQCu5QEAr9UBAKPVBQAGhwCACocAgA6HAIAShwCApgUCAKUVAgAWhwCAq2ECAKoJAgAahwCAHocAgK9pAgCuYQIArXUCAKx1AgAihwCAJocAgCqHAIAuhwCAMocAgOFkBQA2hwCA4+wFAIARAACBEQAAghEAAO/0BgA6hwCAPocAgEKHAIC+MAMAhMQCAEqHAICz4QMAhMAcALVRAwBOhwCAUocAgLZZAwBWhwCAWocAgLtxAwC6eQMAvbUAALxpAwC/tQAAvrUAAF6HAIDhlAEAYocAgONcAgCGcBwAh0QDAGaHAIBqhwCAbocAgHKHAIB2hwCAeocAgH6HAICChwCAhocAgO94AgCoVQIAqV0CAKphAgCrYQIArNECAK3RAgCu0QIAr9ECAIqHAICOhwCAkocAgJaHAICahwCAnocAgKKHAICmhwCAuGkBALlpAQC6CQEAuwkBALwZAQC9GQEAvgkBAL8FAQCwtQIAsb0CALK1AgCzaQEAtHkBALV5AQC2aQEAt2EBAOHEBwDjpAYA47gGAOF8BgCADQAAgTUAAII9AACqhwCArocAgLKHAIC+4B0AuocAgL6HAIDvYAAA7+gGAMKHAICjqQIAxocAgMqHAIDOhwCA0ocAgKYRAgClGQIA1ocAgKs5AgCqMQIAhkgcAIfMHACv/QEArv0BAK39AQCsIQIAqIUeAKmRHgCqkR4Aq60eAKy1HgCt1R4ArtEeAK/FHgC2hwCA2ocAgN6HAIDihwCA5ocAgOqHAIDuhwCA8ocAgLhhHwC5YR8AumEfALthHwC8YR8AvWEfAL5hHwC/YR8AsL0eALGFHgCyjR4As4UeALSdHgC1hR4Ato0eALeFHgCzGR4A9ocAgPqHAID+hwCAAogAgLZVHgC1PR4ABogAgLtBHgC6eR4ACogAgA6IAIC/QR4AvlkeAL1RHgC8WR4AEogAgKNdHgAWiACAGogAgKYRHgAeiACAIogAgKV5HgCqPR4AqwUeAISkAwC+qAMArh0eAK8FHgCsHR4ArRUeAKitHgCptR4AqrUeAKvJHgCs2R4ArdkeAK7JHgCvwR4AgO0BAIHxAQCC8QEAJogAgIaQAACHdAEAKogAgC6IAIC4yQEAuckBALrZAQC70QEAvPkBAL35AQC+mQEAv5UBALBFAQCxTQEAskUBALNdAQC0RQEAtU0BALZFAQC3+QEAsz0eADKIAIA2iACAOogAgD6IAIC2WR4AtVEeAEKIAIC7iQEAuoEBAEaIAIBKiACAv4kBAL6BAQC9iQEAvJEBAE6IAIBSiACAo3UeAFaIAIClGR4AWogAgF6IAICmER4ARocAgGKIAICrwQEAqskBAK3BAQCs2QEAr8EBAK7JAQBmiACAaogAgG6IAIByiACAdogAgIQYAgB6iACAfogAgIKIAICGiACAiogAgI6IAICSiACAmogAgJ6IAIC+cAMAgGkAAIFpAACCeQAAhAAEAIbwBACHdAMAoogAgO8MHwCmiACA4aweAKqIAIDj8B4ArogAgLKIAIC2iACAuogAgL6IAIDCiACAxogAgMqIAIDvVAIAzogAgNKIAIDWiACA46QCANqIAIDhgAEA3ogAgOKIAIDmiACA6ogAgO6IAICzRQMA8ogAgPaIAID6iACA/ogAgLZFAwC1VQMAAokAgLshAwC6SQMAvqAEAAqJAIC/KQMAviEDAL01AwC8OQMAqDkCAKk5AgCqjQIAq4UCAKydAgCthQIAroUCAK+1AgCA7QEAgfUBAIL1AQAOiQCAhpAEAIcEBQASiQCAFokAgLhFAQC5TQEAukUBALtdAQC8SQEAvUkBAL55AQC/eQEAsM0CALGlAgCyrQIAs6ECALSlAgC1rQIAtp0CALd9AQAaiQCAHokAgCKJAIAmiQCAKokAgC6JAIAyiQCA74gBAITsBADhVB4ANokAgONUAQA6iQCAPokAgEKJAIBGiQCAo0UCAEqJAIBOiQCAUokAgFaJAICmRQIApVUCAFqJAICrIQIAqkkCAF6JAIBiiQCArykCAK4hAgCtNQIArDkCAKg1BgCpPQYAqlEGAKttBgCseQYArWUGAK5tBgCvZQYABokAgGaJAIBqiQCAbokAgIAZAACBGQAAggUAAHKJAIC45QYAuekGALr5BgC7+QYAvOkGAL3pBgC+nQYAv5UGALAdBgCx5QYAsu0GALPlBgC0/QYAteEGALbhBgC34QYAs9kGAL7QAwB2iQCAeokAgH6JAIC25QYAtfEGAIKJAIC7IQYAutkGAIaYAACHeAMAvyUGAL45BgC9MQYAvDkGAIaJAICjnQYAiokAgI6JAICmoQYAkokAgJaJAICltQYAqp0GAKtlBgCaiQCAnokAgK59BgCvYQYArH0GAK11BgCo7QcAqSkGAKoxBgCrMQYArJEGAK2RBgCukQYAr5EGAKKJAICmiQCAqokAgK6JAICyiQCAtokAgLqJAIC+iQCAuIUGALmNBgC6hQYAu50GALyNBgC9vQYAvrUGAL95AQCw8QYAsfEGALLxBgCzxQYAtMEGALXBBgC2wQYAt8EGALO5BgDCiQCAxokAgMqJAIDOiQCAthEGALUZBgDSiQCAuzUGALo1BgDWiQCA2okAgL8FBgC+BQYAvREGALwlBgClQQYA3okAgOKJAICmSQYAgRUAAIB5AACj4QYAghUAAK1JBgCsfQYAr10GAK5dBgCENAEAlogAgKttBgCqbQYAvswDAOqJAICzlQIA7okAgLXZAgDyiQCA9okAgLbRAgCGgAwAhzgDALvFAgC6xQIAvRUDALwVAwC/FQMAvhUDAPqJAID+iQCA71gGAIRAAwACigCABooAgAqKAIAOigCAEooAgBaKAIAaigCAHooAgOE4BgAiigCA4yQGAL5wDACsSQIArUkCAK5dAgCvVQIAqB0CAKkFAgCqBQIAq10CAISoDAAmigCAKooAgC6KAIC+vA0AMooAgDaKAIA6igCAvE0DAL1VAwC+VQMAv2UDALjpAwC56QMAul0DALtVAwC0yQMAtckDALbZAwC32QMAsBkCALEZAgCy2QMAs9kDAD6KAIDj5AAAQooAgOG8AQBGigCAgj0AAIE9AACAPQAASooAgE6KAIBSigCAWooAgF6KAIDvzAMAYooAgGaKAICj3QMAaooAgIboDACHYA0AbooAgKaZAwClkQMAcooAgKuNAwCqjQMAdooAgHqKAICvXQIArl0CAK1dAgCsXQIAfooAgIKKAICGigCAiooAgI6KAICSigCAlooAgO/gAQCEvAwA4YwGAJqKAIDjHAYAnooAgKKKAICmigCAqooAgLPVAQCuigCAsooAgLaKAIC6igCAtpEBALWZAQC+igCAu70BALq9AQDCigCAyooAgL+dAQC+nQEAvZ0BALydAQCoBQ4AqQkOAKodDgCrFQ4ArFEOAK1RDgCuSQ4Ar0kOAFaKAICCzQ8AgfUPAID9DwDGigCAzooAgIYcAACHsAMAuOkOALnpDgC6/Q4Au/UOALztDgC9VQ8AvlEPAL9NDwCwOQ4AsTkOALIJDgCzCQ4AtBkOALUZDgC2DQ4At9kOAKOVDgDSigCA1ooAgNqKAIDeigCAptEOAKXZDgDiigCAq/0OAKr9DgDmigCA6ooAgK/dDgCu3Q4Ard0OAKzdDgDuigCAs/0PAPKKAID2igCAtoEPAPqKAID+igCAtZkPALqNDwC7ZQ8AAosAgAaLAIC+fQ8Av2UPALx9DwC9dQ8AqC0OAKk1DgCqMQ4AqzEOAKxVDgCtRQ4ArkUOAK91DgAKiwCADosAgBKLAIAWiwCAGosAgB6LAIAiiwCAJosAgLjpDgC59Q4Auv0OALv1DgC87Q4AvZEOAL6RDgC/kQ4AsA0OALHlDgCy7Q4As+UOALT9DgC15Q4Atu0OALflDgCjuQ4Agi0AAIEVAACAHQAAKosAgKbFDgCl3Q4ALosAgKshDgCqyQ4AMosAgL4sAQCvIQ4ArjkOAK0xDgCsOQ4AOosAgLZVAQC1RQEANosAgLNVAQA+iwCAhngAAIdcAAC/OQEAvjEBAL0lAQC8JQEAuzEBALpZAQDmiQCAQosAgEaLAIBKiwCAhAQDAKOJAgBOiwCApZkCAKaJAgBSiwCAvyg5AFaLAICqhQIAq+0CAKz5AgCt+QIAru0CAK/lAgDjWAIA78AOAOGIAQBaiwCAXosAgGKLAIBmiwCAaosAgG6LAIByiwCAdosAgHqLAIDvKAIA4ygOAH6LAIDhRA4AqbUCAKhpDQCrAQIAqgkCAK0BAgCsGQIArzECAK4BAgC+AAQAgosAgIaLAICKiwCAjosAgJKLAICWiwCAmosAgLnlAwC45QMAu+UDALrlAwC95QMAvOUDAL/lAwC+5QMAsSECALBJAgCzJQIAsiUCALUpAgC0IQIAtxUCALYVAgCowQIAqdECAKr1AgCrDQEArBUBAK0FAQCuBQEArzkBAJ6LAICiiwCAqosAgK6LAICyiwCAtosAgLqLAIC+iwCAuC0BALk9AQC67QEAu+UBALz9AQC95QEAvu0BAL/lAQCwLQEAsTUBALI9AQCzNQEAtC0BALUVAQC2HQEAtxUBAIA9AQCBpQAAgq0AAO/YAACGsAUAh9gFAMKLAIDv1A8AhGwEAOH0DgDGiwCA4xwPAMqLAIDhlAEAzosAgOMMDgCzPQIA0osAgNaLAIDaiwCA3osAgLbFAQC13QEA4osAgLuxAQC6qQEA5osAgOqLAIC/kQEAvqkBAL2hAQC8qQEAposAgO6LAICqRQYAq10GAKxFBgCtTQYArkUGAK99BgDyiwCA9osAgPqLAICj0QUA/osAgKUxBgCmKQYAAowAgAaMAICCHQAAgR0AAIAdAAAKjACADowAgBKMAIC+lAMAFowAgBqMAICGSAMAh8wDAB6MAIAijACAJowAgCqMAICoqQcAqakHAKq5BwCruQcArKkHAK2pBwCuAQcArzUHAC6MAIAyjACANowAgDqMAIA+jACAQowAgEaMAIBKjACAuC0HALnBAAC66QAAu+kAALz5AAC95QAAvuUAAL+dAACwUQcAsV0HALItBwCzJQcAtD0HALUlBwC2JQcAtxUHALMxBgBOjACAUowAgFaMAIBajACAtikGALUhBgBejACAu5kGALqVBgBijACAZowAgL/hBgC++QYAvfEGALz5BgBqjACAo3UGAG6MAIByjACApm0GAHaMAIB6jACApWUGAKrRBgCr3QYAfowAgIKMAICuvQYAr6UGAKy9BgCttQYAqOUBAKn1AQCq/QEAq/UBAKztAQCtNQEArj0BAK81AQCA+QAAgc0AAILFAACEYAEAvngBAIqMAICHrAAAhpABALjRAAC52QAAuuEAALvhAAC8kQAAvZ0AAL6VAAC/iQAAsE0BALFVAQCyXQEAs1UBALRNAQC18QAAtvEAALfxAACzdQIAjowAgJKMAICWjACAmowAgLa1AgC1ZQIAnowAgLuRAgC6iQIAoowAgKaMAIC/NQMAvokCAL2BAgC8iQIAqowAgKMxAgCujACAhMADAKbxAgCyjACAtowAgKUhAgCqzQIAq9UCALqMAIC+jACArs0CAK9xAwCszQIArcUCAKuNAACqjQAAqY0AAKg5AwCvvQAArr0AAK2FAACsjQAAqgAAAKsAAADCjACAxowAgMqMAIDOjACA0owAgNaMAIC7fQAAun0AALl9AAC4fQAAv90BAL7dAQC93QEAvN0BALO5AACysQAAsaEAALCtAAC3XQAAtl0AALWVAAC0lQAA2owAgN6MAIDijACA5owAgIE1AACADQAA6owAgII1AAC+rD0A7owAgPKMAICFaD0A+owAgP6MAICGODwAh8ACALNJAQACjQCA0AAAAAaNAIAKjQCAtkkBALVJAQAOjQCAuykBALolAQASjQCAFo0AgL8dAQC+HQEAvSEBALwpAQDjNDYA4QwGAOGwAgDjPAYAGo0AgB6NAIAijQCAJo0AgIQsPwC+oD8AKo0AgC6NAIDvfDcAMo0AgDaNAIDvGAEAOo0AgD6NAICGaD4Ah8w/AEKNAIBGjQCASo0AgO+UAABOjQCA4ZQBAFKNAIDjUAAAVo0AgILpPwCB6T8AgPE/AKMJPgCPASQA9owAgFqNAIBejQCApgk+AKUJPgBijQCAq2k+AKplPgBmjQCAao0AgK9dPgCuXT4ArWE+AKxpPgCeYTgAn3U4AJzBNACdtTkAmqU1AJt1NACYeTAAmXExAJYhLQCXhTEAlG0sAJVlLACSeSgAk6UtAJBRJACReSgAsQ0UALAFFACzARgAslUUALV5GAC0tRgAbo0AgHKNAIB2jQCAeo0AgH6NAICCjQCAotE8AKMlAQCgdTkAob08AKHJAACGjQCAowEEAKLlAAClHQQApPUEAKf5CACmAQgAqQEMAKhtCACrzQwAqs0MAK3REACsARAAr9URAK7ZEACCBSUAgy0lAIqNAICOjQCAhsEsAIcRLQCEHSkAhRUpAIopLQCLZSwAko0AgJaNAICOHTAAj8E0AIzZMACNHTEAkmE1AJPNNQCajQCAno0AgJZhOQCXmTgAlKE4AJV9OQCaYT0AmwU9AKKNAICmjQCAqo0AgK6NAICc6QAAso0AgLaNAIC6jQCAvo0AgMKNAICGjACAxo0AgMqNAIDOjQCAqJE+AKmRPgCq7T4Aq+E+AKzhPgCt6T4ArtE+AK/RPgCwUT4AsVE+ALJRPgCzUT4AtHk+ALV5PgC2bT4At2U+ALghPgC5IT4Aujk+ALs5PgC8KT4AvRU+AL4RPgC/DT4AgJkDAIGZAwCCBQAA0o0AgL5UAwDhsD0A2o0AgONAPgCEOAIA3o0AgOKNAIDv9D8A5o0AgOqNAICGmAQAhxwDALMFPQCECAQA7o0AgPKNAID2jQCAtgk9ALUJPQD6jQCAu/U9ALr1PQD+jQCAAo4AgL/dPQC+3T0AveU9ALzlPQAGjgCACo4AgKPNPQC+xAQApcE9AA6OAIASjgCApsE9ABaOAIAajgCAqz09AKo9PQCtLT0ArC09AK8VPQCuFT0AtmkCAB6OAIAijgCAtWkCACaOAICzSQIAKo4AgC6OAIC+qQMAv6kDALzBAwC9wQMAuvkDALv5AwAyjgCANo4AgKgtAwCpnQMAqpUDAKutAwCstQMArb0DAK61AwCv2QMAgA0AAIEVAACCHQAAOo4AgD6OAIBCjgCAh7QFAIacBAC4MQIAuTECALo1AgC7zQIAvNUCAL3dAgC+1QIAv8kCALBpAgCxaQIAskECALNBAgC0OQIAtTkCALYRAgC3EQIASo4AgOM0PgBOjgCA4aw+AFKOAIDvfAMAVo4AgFqOAIBejgCA45QDAGKOAIDhfD4AZo4AgO/oPgBqjgCAbo4AgHKOAIB2jgCAo1UDAHqOAICldQMAfo4AgIKOAICmdQMAho4AgIqOAICr5QIAquUCAK3dAgCs3QIAr7UCAK61AgCoGQYAqSEGAKohBgCrPQYArCUGAK1dBgCuVQYAr00GAEaOAICOjgCAko4AgJaOAICajgCAno4AgKKOAICmjgCAuOUGALmBBgC6gQYAu50GALyJBgC9iQYAvqEGAL+hBgCwPQYAsQ0GALIFBgCz7QYAtPUGALXhBgC24QYAt90GALOpBgCCLQAAgRUAAIAdAACqjgCAtt0GALWtBgCujgCAu8kGALr5BgCyjgCAhOADAL8lBgC+MQYAvTkGALzRBgC+iAMAo+0GANaNAIC2jgCAppkGALqOAIC+jgCApekGAKq9BgCrjQYAhkgAAIdsAACudQYAr2EGAKyVBgCtfQYAqIEGAKmNBgCqmQYAq5UGAKyNBgCttQYArrEGAK+tBgDCjgCAxo4AgMqOAIDOjgCA0o4AgNaOAIDajgCA3o4AgLilBgC5YQEAumEBALthAQC8YQEAvWEBAL5hAQC/YQEAsNkGALHZBgCyqQYAs6kGALS9BgC1oQYAtqEGALedBgCzEQYA4o4AgOaOAIDqjgCA7o4AgLY1BgC1BQYA8o4AgLsdBgC6HQYA9o4AgPqOAIC/ZQYAvnkGAL19BgC8fQYA/o4AgKNVBgACjwCABo8AgKZxBgAKjwCADo8AgKVBBgCqWQYAq1kGABKPAIAWjwCArj0GAK8hBgCsOQYArTkGAKjVAgCp3QIAqikDAKspAwCsOQMArTkDAK4pAwCvKQMAGo8AgB6PAIAijwCAKo8AgC6PAIAyjwCAvrgDADaPAIC47QMAuYUDALqBAwC7gQMAvIUDAL2NAwC+sQMAv7EDALBZAwCxWQMAsu0DALPlAwC0/QMAteUDALblAwC31QMAgKEAAIGhAACCoQAAvoAMADqPAICEmAIAPo8AgEKPAICGAAwAh/QDAEaPAIBKjwCATo8AgFKPAIBWjwCAhLADALPhAwBajwCAXo8AgGKPAIBmjwCAtvkDALXxAwBqjwCAu90DALrdAwBujwCAco8AgL9hAwC+eQMAvXEDALx5AwB2jwCAeo8AgH6PAICjLQIAgo8AgKU9AgCmNQIAho8AgIqPAICOjwCAqhECAKsRAgCstQIArb0CAK61AgCvrQIA48QDAOMQBwDhuAEA4WwHAIBxAACBcQAAggUAAJKPAICGwAwAh1QNAJqPAICejwCA77ADAO8ABwCijwCApo8AgKqPAICujwCAso8AgLaPAIC6jwCAvo8AgMKPAIDvpAEAhKANAOGABgDGjwCA4xABAMqPAIDOjwCA0o8AgNaPAICz9QEA2o8AgN6PAIDijwCA5o8AgLZNAQC1SQEA6o8AgLtRAQC6SQEA7o8AgPKPAIC/OQEAvjEBAL1BAQC8SQEAqC0OAKk1DgCqPQ4AqzEOAKyBDgCtjQ4AroUOAK+1DgCWjwCA9o8AgPqPAID+jwCAgBkAAIEZAACCBQAAApAAgLidDgC5rQ4AuqUOALtNDwC8VQ8AvV0PAL5JDwC/QQ8AsM0OALHVDgCy3Q4As9UOALS1DgC1vQ4AtrUOALetDgCjtQ4AvogDAAaQAIAKkACADpAAgKYNDgClCQ4AEpAAgKsRDgCqCQ4AhggAAIdsAwCveQ4ArnEOAK0BDgCsCQ4AFpAAgBqQAIAekACAs7UPACKQAIC1VQ8Atl0PACaPAIAmkACAKpAAgLp5DwC7eQ8AvGkPAL1dDwC+SQ8Av0kPAKhpDgCpaQ4AqnEOAKtxDgCskQ4ArZEOAK6RDgCvkQ4ALpAAgDKQAIA2kACAOpAAgD6QAIBCkACARpAAgEqQAIC4hQ4AuY0OALqFDgC7nQ4AvI0OAL29DgC+tQ4Av3kBALDxDgCx8Q4AsvEOALPFDgC0wQ4AtcEOALbBDgC3wQ4Ao/kOAE6QAIBSkACAVpAAgFqQAICmEQ4ApRkOAF6QAICrNQ4AqjUOAGKQAIBmkACArwUOAK4FDgCtEQ4ArCUOAIANAACBFQAAgh0AAGqQAIBukACAcpAAgISUAQC+lAEAhkAHAIf0AAB6kACAfpAAgIKQAICGkACAipAAgI6QAICojQIAqZUCAKqVAgCrzQIArNUCAK3dAgCuyQIAr/0CAJKQAICWkACAmpAAgJ6QAIC/ABQAopAAgKaQAICqkACAuH0DALnBAwC6wQMAu8EDALzBAwC9yQMAvvEDAL/xAwCwhQIAsUUDALJNAwCzRQMAtF0DALVFAwC2TQMAt0UDALMdAgCukACAspAAgLaQAIC6kACAtl0CALVdAgC+kACAu4EDALpBAgDCkACAxpAAgL+BAwC+mQMAvZEDALyZAwDKkACAo1kCAM6QAIDSkACAphkCANaQAIDakACApRkCAKoFAgCrxQMA3pAAgOKQAICu3QMAr8UDAKzdAwCt1QMA6pAAgOPMAACEBAIA4bwBAIDJAQCB/QEAgvUBAL4QBQDukACAvigEAPKQAID2kACA+pAAgO8QAAD+kACAApEAgIbgBACH9AIABpEAgAqRAIDj/A8ADpEAgOHgDwASkQCA7xQPABaRAIAakQCAHpEAgCKRAIAmkQCAKpEAgC6RAIAykQCANpEAgDqRAIA+kQCAQpEAgEaRAIBKkQCA7+ABAIUEEgDh3A4ATpEAgOMcDgCAKQAAgR0AAIIFAABSkQCAszECAFqRAICEzAUAXpEAgGKRAIC2KQIAtSECAGaRAIC7zQEAus0BAGqRAIBukQCAv3UBAL7JAQC9wQEAvMkBAKjpBQCp6QUAqvkFAKv5BQCs6QUArekFAK45BgCvOQYA5pAAgFaRAICGiAAAhwADAHKRAIB2kQCAepEAgH6RAIC40QYAudkGALrhBgC74QYAvJEGAL2dBgC+lQYAv4kGALBJBgCxSQYAsl0GALNVBgC0TQYAtfEGALbxBgC38QYAo3EFAIKRAICGkQCAipEAgI6RAICmaQUApWEFAJKRAICrjQYAqo0GAJaRAICakQCArzUGAK6JBgCtgQYArIkGAJ6RAICikQCAs+EHAKaRAIC14QcAqpEAgK6RAIC25QcAdpAAgLKRAIC7vQcAuqEHAL2VBwC8qQcAv5UHAL6VBwCoAQYAqSUGAKohBgCrIQYArCEGAK0tBgCuJQYAr1UGALaRAICCHQAAgR0AAIAdAAC6kQCAvpEAgMKRAIC+MAEAuDkGALk5BgC6yQYAu8kGALzZBgC92QYAvskGAL/JBgCwLQYAsTEGALI1BgCzCQYAtBkGALUZBgC2CQYAtwkGAKOpBgCEjAIAhigfAIdEAQDKkQCApq0GAKWpBgDOkQCAq/UGAKrpBgDSkQCA1pEAgK/dBgCu3QYArd0GAKzhBgDakQCAsxUGAN6RAIDikQCAtj0GAOaRAIDqkQCAtTUGALrZAQC72QEA7pEAgPKRAIC+fQEAv2UBALx9AQC9dQEAqMUFAKnJBQCq2QUAq9EFAKz5BQCt+QUArikCAK8pAgD2kQCA+pEAgP6RAIACkgCAjAAAAAaSAIAKkgCADpIAgLjtAgC5hQIAuo0CALuBAgC8hQIAvY0CAL69AgC/fQMAsFkCALFZAgCy7QIAs+UCALT9AgC15QIAtuUCALfVAgCjUQUAEpIAgBaSAIAakgCAHpIAgKZ5BQClcQUAIpIAgKudAgCqnQIAJpIAgCqSAICvIQIArjkCAK0xAgCsOQIAghEAAC6SAICAZQAAgQkAADKSAIC+mAMAOpIAgD6SAICEJAMAQpIAgIdoAwCGjBwARpIAgEqSAIBOkgCAUpIAgFaSAIBakgCAs6ECAITAHAC10QIAXpIAgGKSAIC21QIAZpIAgGqSAIC7wQIAuvUCAL0RAQC82QIAvxEBAL4ZAQBukgCAcpIAgHaSAIB6kgCAfpIAgIKSAICGkgCA77gGAIqSAIDhnAQAjpIAgON0BgCSkgCAlpIAgJqSAICekgCAgPkAAIH5AACCBQAAopIAgL5YHACEWB8A71wAAO9ABgDhkAEA4fwGAOM8AADjdAYAqpIAgK6SAICGmBwAh/QcAKNpAgC+DB8AspIAgLaSAIC6kgCAph0CAKUZAgC+kgCAqwkCAKo9AgDCkgCAxpIAgK/ZAQCu0QEArdkBAKwRAgCokR0AqZkdAKqhHQCroR0ArNEdAK3dHQCu1R0Ar8kdADaSAICmkgCAypIAgM6SAIDSkgCA1pIAgNqSAIDekgCAuHkeALl5HgC6zR4Au8UeALzdHgC9xR4AvsUeAL/1HgCwuR0AsY0dALKFHQCzTR4AtFUeALVdHgC2VR4At0keALjNHwC51R8Aut0fALvVHwC88R8Avf0fAL7pHwC/6R8AsKUfALGxHwCysR8As40fALSVHwC19R8Atv0fALf1HwCoGR4AqRkeAKotHgCrPR4ArCUeAK0tHgCuJR4Ar90fAOKSAIDmkgCA6pIAgO6SAIDykgCAxpEAgPaSAID6kgCAs+UfAP6SAIACkwCABpMAgAqTAIC27R8Ate0fAA6TAIC7NR4AuiEeABKTAIAWkwCAv3EeAL4RHgC9GR4AvCUeAIJpAACjoR8AgFkAAIFRAACmqR8AGpMAgB6TAIClqR8AqmUeAKtxHgCGAAQAh+wBAK5VHgCvNR4ArGEeAK1dHgCoMR4AqTEeAKpBHgCrQR4ArEEeAK1JHgCucR4Ar3EeACKTAIAmkwCAKpMAgC6TAIAykwCANpMAgDqTAIA+kwCAuCkBALkpAQC6OQEAuzUBALwtAQC90QAAvtEAAL/RAACwyQEAsckBALLZAQCz2QEAtMkBALXJAQC2GQEAtxkBALPJHQBCkwCARpMAgEqTAIBOkwCAtskdALXJHQBSkwCAuw0CALoNAgBWkwCAWpMAgL8NAgC+DQIAvQ0CALwNAgBekwCAo40dAGKTAIBmkwCApo0dAGqTAIBukwCApY0dAKpJAgCrSQIAcpMAgHaTAICuSQIAr0kCAKxJAgCtSQIAgA0AAIERAACCEQAAepMAgO/MAgB+kwCAgpMAgISQAgDjLAIAvigDAOHYAQCKkwCAhhAEAIfUAwCOkwCAkpMAgLNhAwCWkwCAmpMAgJ6TAICikwCAtnkDALVxAwCmkwCAu10DALpdAwCqkwCArpMAgL/hAAC++QAAvfEAALz5AACjoQIAspMAgLaTAIC6kwCAvpMAgKa5AgClsQIAwpMAgKudAgCqnQIAxpMAgMqTAICvIQEArjkBAK0xAQCsOQEAzpMAgNKTAIDvZB8A1pMAgNqTAIDekwCA4pMAgOaTAICADQAAgREAAIIVAADqkwCA4eAcAO6TAIDjiB8A8pMAgISAAgC+jAUAh0gFAIYsBAD6kwCA/pMAgO+kHgDv9B4A4QAeAOFQHwDjLB4A47AeAAKUAIAGlACACpQAgA6UAIASlACAFpQAgISEBACzcQEAGpQAgLUdAQC2FQEAHpQAgCKUAIAmlACAugEBALsBAQC89QAAvf0AAL71AAC/7QAAqK0GAKm9BgCqtQYAq8kGAKzZBgCt2QYArskGAK/BBgAqlACALpQAgDKUAIA2lACAOpQAgD6UAIBClACARpQAgLhtBwC5BQcAug0HALsBBwC8AQcAvQEHAL4BBwC/AQcAsIkGALGJBgCybQcAs2UHALR9BwC1ZQcAtmUHALdVBwCGkwCAozkGAEqUAID2kwCApl0GAE6UAIBSlACApVUGAKpJBgCrSQYAVpQAgFqUAICuvQcAr6UHAKy9BwCttQcAgG0AAIEJAACCGQAAXpQAgGKUAIC+nAMAZpQAgGqUAICGQAAAh2AAAG6UAIBylACAdpQAgHqUAIB+lACAgpQAgKiRBgCpkQYAqrkGAKu5BgCsqQYArakGAK7ZBgCv2QYAhpQAgIqUAICOlACAkpQAgJaUAICalACAnpQAgKKUAIC4cQEAuXEBALpxAQC7cQEAvNkBAL3BAQC+wQEAv/UBALCxBgCxuQYAsokGALOJBgC0UQEAtVEBALZRAQC3UQEAszEGAKaUAICqlACArpQAgLKUAIC2KQYAtSEGALaUAIC7fQYAunUGALqUAIC+lACAv5UBAL6VAQC9XQYAvF0GAMKUAICjdQYAxpQAgMqUAICmbQYAzpQAgNKUAIClZQYAqjEGAKs5BgCErAEAvqABAK7RAQCv0QEArBkGAK0ZBgCo3QIAqe0CAKrlAgCr/QIArOUCAK3tAgCu5QIArz0DANqUAIDelACA4pQAgL5kDADmlACA6pQAgO6UAIDylACAuMkDALnJAwC62QMAu9EDALz5AwC9+QMAvpkDAL+VAwCwRQMAsU0DALJFAwCzXQMAtEUDALVNAwC2RQMAt/kDAIFVAwCASQMAs2UCAIJVAwC1ZQIA9pQAgPqUAIC2ZQIAhgAMAIfkAwC7gQMAuokDAL2BAwC8mQMAv4EDAL6JAwCjLQIA/pQAgAKVAIAGlQCACpUAgKYtAgClLQIADpUAgKvJAwCqwQMAEpUAgBaVAICvyQMArsEDAK3JAwCs0QMA49gGAOGsBwDhnAYA45wGABqVAICEWA0AHpUAgCKVAIAmlQCAKpUAgC6VAIAylQCA7xwBADaVAIA6lQCA70AGAIB5AACBFQAAghEAAIQADAA+lQCA46wAAEKVAIDhpAEASpUAgO9wAACGyAwAh6QNAE6VAIBSlQCAVpUAgFqVAIC6yQUAu8kFALilBQC5zQUAvvkFAL/5BQC8zQUAvcUFALKlBQCzrQUAsBEGALERBgC2rQUAt50FALS1BQC1rQUAqmEGAKthBgConQYAqZUGAK5hBgCvYQYArHEGAK1xBgBelQCAYpUAgGaVAIBqlQCAbpUAgHKVAIC+sAwAdpUAgKghDgCpIQ4AqiEOAKs9DgCsJQ4ArS0OAK4lDgCviQ4ARpUAgHqVAIB+lQCAgpUAgIaVAICKlQCAjpUAgJKVAIC4UQ8AuV0PALpVDwC7bQ8AvHUPAL19DwC+dQ8Av2kPALD5DgCxoQ4AsqEOALOhDgC0oQ4AtakOALaRDgC3kQ4As6kOAJaVAIDWlACAmpUAgJ6VAIC2rQ4Ata0OAKKVAIC7ZQ4Auj0OAKaVAICqlQCAv20OAL5lDgC9dQ4AvHUOAIIZAACj7Q4AgGUAAIEZAACm6Q4ArpUAgLKVAICl6Q4AqnkOAKshDgC2lQCAupUAgK4hDgCvKQ4ArDEOAK0xDgCoYQ4AqXUOAKp9DgCrdQ4ArG0OAK31DgCu/Q4Ar/UOAIaAAQCHpAEAvpUAgMKVAIDGlQCAypUAgM6VAIDSlQCAuHUBALl9AQC6dQEAu8kBALzdAQC9xQEAvsUBAL/1AQCwjQ4AsZUOALKdDgCzkQ4AtFUBALVdAQC2VQEAt00BALP1DgDWlQCA2pUAgN6VAIDilQCAtnUOALXlDgDmlQCAu1EOALpJDgDqlQCA7pUAgL+ZAQC+kQEAvUUOALxJDgDylQCAo7EOAPaVAID6lQCApjEOAP6VAIAClgCApaEOAKoNDgCrFQ4ABpYAgAqWAICu1QEAr90BAKwNDgCtAQ4AqO0CAKktAwCqJQMAqz0DAKwlAwCtLQMAriUDAK+ZAwAOlgCAEpYAgBaWAIAalgCAHpYAgCKWAIC+dAIAKpYAgLiNAwC5kQMAupEDALulAwC8vQMAvXUAAL59AAC/dQAAsOkDALHpAwCy+QMAs/EDALTZAwC12QMAtrkDALe1AwCArQAAgbUAAIK9AACzoQMALpYAgLWhAwC2oQMAMpYAgITgAgA2lgCAuiEDALshAwC8IQMAvSkDAL4RAwC/EQMAo+0DAIXABACFtG8AOpYAgD6WAICm7QMApe0DAEKWAICrbQMAqm0DAIZIBQCHbAMAr10DAK5dAwCtZQMArG0DAEaWAIDjAA4A71hsAOG0DwBKlgCATpYAgFKWAIBWlgCAoakDAKD9DwCjwQMAog0DAOHgAwDv4A8A4+QDAFqWAIBelgCAYpYAgIQEBAC+BAQAZpYAgO+UAwBqlgCAbpYAgHKWAIDj1AMAdpYAgOFUAAB6lgCAfpYAgIKWAICGlgCAgA0AAIEVAACCHQAAipYAgI6WAICSlgCAj5EbAO+cDgCE4AcA4dQOAJqWAIDj8A4AnpYAgKKWAICGGAcAh5AEAJnlFwCY5RcAm+kLAJo5CwCd/QoAnPELAJ9VDwCeXQ8AkSkfAJDNGwCTJR8Aks0fAJXREwCUKRMAlxkXAJZ1EwCM4RAAjSUQAI4tEACP+QwAJpYAgJaWAICKORQAi5UUAITpGACFBRgAhuUYAIfxFACmlgCAqpYAgIIxHACDFRwAnKkEAK6WAICylgCAtpYAgLqWAIC+lgCAmtEEAJt9BACUTQ0AleUIAJblCACXtQgAwpYAgMaWAICSWQwAk1kMAKGRAADKlgCAowF8AKKZAACluXwApJF8AKeZeACm4X0AqYF5AKiheACriXQAqgF0AK0BcACsWXQAr4VwAK6dcACx4WwAsAFsALMBaACyHWwAtfVoALT1aADOlgCA0pYAgNaWAIDalgCA3pYAgOKWAIDmlgCA6pYAgO6WAIDylgCAqD0HAKmVBwCqlQcAq6kHAKzdBwCtxQcArsUHAK8dBgD2lgCAgh0AAIEdAACAHQAA+pYAgP6WAIAClwCAvmABALgZBgC5GQYAuikGALslBgC8IQYAvSEGAL4hBgC/IQYAsHEGALFxBgCycQYAs3EGALRNBgC1NQYAtj0GALctBgCzHQcACpcAgIYoAACHqAAADpcAgLZFBwC1VQcAEpcAgLu1BgC6tQYAFpcAgBqXAIC/8QYAvokGAL2lBgC8pQYAHpcAgKNZBwAilwCAJpcAgKYBBwAqlwCALpcAgKURBwCq8QYAq/EGADKXAIA2lwCArs0GAK+1BgCs4QYAreEGAKipBQCptQUAqr0FAKs9AgCsJQIArVECAK5RAgCvUQIAOpcAgD6XAIBClwCARpcAgIQ8AwBKlwCATpcAgFKXAIC4pQIAua0CALqlAgC7vQIAvKUCAL2tAgC+pQIAv30DALAxAgCxMQIAshkCALMZAgC09QIAta0CALalAgC3nQIAVpcAgFqXAIBelwCAszkFAGKXAIC1oQIAtt0CAGaXAIBqlwCAbpcAgLr5AgC7+QIAvMECAL3BAgC+PQIAv2UCAHKXAICmgQIApf0CAHqXAICjZQUAvlh8AIbYfACHnHwArzkCAK5hAgCtnQIArJ0CAKulAgCqpQIAfpcAgIKXAICohQIAqZUCAKqVAgCrpQIArL0CAK3VAgCu0QIAr9ECAIGFAQCAhQEAhpcAgILtAQCKlwCAjpcAgJKXAICWlwCAuHUBALl9AQC6dQEAu80BALzVAQC93QEAvskBAL/BAQCwtQIAsb0CALKBAgCzgQIAtFEBALVRAQC2UQEAt1EBAJqXAICelwCAopcAgKaXAIDhMAYA4WQHAOMoBgDjxAYAhCB9AKqXAIDvbAAA7xgGAK6XAICylwCAtpcAgLqXAICzXQIAvkh8AL6XAIDClwCAxpcAgLYVAgC1dQIAypcAgLs5AgC6MQIAzpcAgNKXAIC/1QEAvtUBAL0VAgC8FQIAo519AHaXAIDWlwCA2pcAgN6XAICm1X0ApbV9AOKXAICr+X0AqvF9AOaXAIDqlwCArxV+AK4VfgCt1X0ArNV9AIBNAACBVQAAglUAALOxfgDulwCAtWV/ALZtfwDylwCAhkADAIcEAwC66X8Au+l/ALz5fwC9+X8Avt1/AL/NfwD2lwCA+pcAgAaXAID+lwCAApgAgAaYAIAKmACADpgAgKhtfgCpXX4AqlV+AKuFfwCsgX8ArYF/AK6BfwCvgX8AsEF/ALFBfwCyQX8As0F/ALR1fwC1ZX8Atm1/ALdlfwC4XX8AuS1/ALolfwC7PX8AvC1/AL0dfwC+FX8Av/UAAKP9fwASmACAFpgAgBqYAIAemACApiF+AKUpfgAimACAq6V+AKqlfgAmmACAKpgAgK+BfgCukX4ArbV+AKy1fgAumACAMpgAgDaYAIA6mACAPpgAgEKYAIBGmACASpgAgIA9AACBCQAAghkAAE6YAIBSmACAhLgBAL6wAQBWmACAqK0BAKnVAQCq1QEAqw0BAKwVAQCtGQEArgkBAK8JAQCGAAQAhwQBAFqYAIBemACAYpgAgGaYAIBqmACAbpgAgLjtAAC5hQAAuo0AALuFAAC8nQAAvYUAAL6NAAC/hQAAsHkBALF5AQCy7QAAs+UAALT9AAC15QAAtuUAALfVAACzXQIAcpgAgHaYAIB6mACAfpgAgLaZAgC1nQIAgpgAgLu9AgC6vQIAhpgAgIqYAIC/IQMAvjkDAL0xAwC8OQMAvigDAKMZAgCOmACAkpgAgKbdAgCWmACAmpgAgKXZAgCq+QIAq/kCAJ6YAICimACArn0DAK9lAwCsfQMArXUDAL7IBACmmACAqpgAgL7EBQCumACAspgAgLaYAIC6mACAgD0AAIEJAACCGQAAvpgAgMKYAICEOAMAypgAgM6YAIDveAIA0pgAgIZIBACHVAMA1pgAgNqYAIDemACA4pgAgOaYAIDqmACA7pgAgPKYAIDjVAIA9pgAgOFAAQD6mACA/pgAgOMkfwACmQCA4Zx8AAaZAIAKmQCADpkAgBKZAICEbAUAFpkAgBqZAIAemQCAIpkAgO8YfwAmmQCAKpkAgLPxAgAumQCAMpkAgDqZAIA+mQCAtukCALXhAgBCmQCAu3EBALppAQCHoAUAhswEAL85AQC+WQEAvVEBALxhAQDhQH8ARpkAgOM4fgCEwAQAgtkAAO8UAACApQAAgdkAAEqZAIDjwAAATpkAgOHUAQBSmQCAVpkAgO+EfgBamQCAqs0BAKvVAQBemQCAYpkAgK79AQCvnQEArMUBAK31AQBmmQCAo1UCAGqZAIBumQCApk0CAHKZAIB2mQCApUUCAMaYAIA2mQCAepkAgH6ZAICCmQCAhpkAgIqZAICOmQCAqJkGAKmZBgCq7QYAq/0GAKzlBgCt7QYAruUGAK/dBgCwpQYAsa0GALKlBgCzuQYAtK0GALVVBwC2UQcAt00HALh1BwC5fQcAunUHALtJBwC8WQcAvVkHAL5JBwC/RQcAs0UGAJKZAICWmQCAmpkAgJ6ZAIC2TQYAtU0GAKKZAIC7SQYAukEGAIYIAACHjAAAv7EHAL5JBgC9TQYAvFEGAIJdAACjAQYAgEUAAIFdAACmCQYAqpkAgK6ZAIClCQYAqgUGAKsNBgCymQCAtpkAgK4NBgCv9QcArBUGAK0JBgCoTQYAqVUGAKpVBgCriQYArLEGAK29BgCuqQYAr6kGAKaZAIC6mQCAvpkAgMKZAIDGmQCAypkAgM6ZAIDSmQCAuEkBALlJAQC6WQEAu1kBALxJAQC9SQEAvt0BAL/VAQCw3QYAsa0GALKlBgCzjQYAtJkGALWZBgC2jQYAt4UGALPdBgDWmQCA2pkAgN6ZAIDimQCAtj0GALU5BgDmmQCAu2kGALoZBgDqmQCA7pkAgL9dBgC+XQYAvVkGALxxBgDymQCAo5kGAPaZAID6mQCApnkGAP6ZAIACmgCApX0GAKpdBgCrLQYABpoAgAqaAICuGQYArxkGAKw1BgCtHQYAqNUCAKndAgCq4QIAq+ECAKw1AwCtPQMArjUDAK8tAwCAzQMAgQkAAIIZAAAOmgCAEpoAgIQYAgC+dAMAGpoAgLjpAwC56QMAuokDALuFAwC8nQMAvYEDAL6BAwC/tQMAsFUDALFdAwCyVQMAs+kDALT5AwC1+QMAtukDALfhAwCGIAwAhxADAB6aAIAimgCAJpoAgCqaAIAumgCA71wCADKaAIDhFAAANpoAgOOIAgC++AwAOpoAgD6aAIBCmgCAu/kDALrxAwC+gA0ARpoAgL9dAwC+XQMAvV0DALzhAwCzCQIASpoAgE6aAIBSmgCAVpoAgLbdAwC13QMAWpoAgKipBgCpqQYAqrkGAKu5BgCsqQYArakGAK4dBQCvFQUAXpoAgGKaAIBmmgCAapoAgG6aAIBymgCAdpoAgHqaAIC4GQUAuS0FALolBQC7yQUAvNkFAL3FBQC+zQUAv8UFALBtBQCxdQUAsnUFALNFBQC0XQUAtT0FALY1BQC3KQUA4fQGAOFUBwDjFAYA47wGAIEJAACAqQAAfpoAgII5AACE7A0AgpoAgIeIDACGDAwAipoAgI6aAIDvzAcA78QHAKMpAwCSmgCAlpoAgJqaAICemgCApv0CAKX9AgCimgCAq9kCAKrRAgCmmgCAqpoAgK99AgCufQIArX0CAKzBAgCoPQ4AqY0OAKqFDgCrnQ4ArIUOAK2NDgCuuQ4Ar7UOAIaaAICumgCAspoAgLaaAIC6mgCAvpoAgMKaAIDGmgCAuL0OALllDwC6bQ8Au2UPALx9DwC9ZQ8Avm0PAL9lDwCw1Q4Asd0OALLVDgCzoQ4AtJUOALWdDgC2lQ4At40OALMNDgDKmgCAzpoAgNKaAIDWmgCAtg0OALUNDgDamgCAuxkOALoRDgDemgCAFpoAgL9ZDgC+UQ4AvXUOALwBDgDimgCAo0kOAOaaAIDqmgCApkkOAO6aAIDymgCApUkOAKpVDgCrXQ4AhKQDAPaaAICuFQ4Arx0OAKxFDgCtMQ4AqLEOAKmxDgCqzQ4Aq8UOAKzdDgCtxQ4ArsUOAK/1DgCA7QEAgfEBAILxAQD6mgCAhpABAIe0AQD+mgCAApsAgLjFAQC5zQEAusUBALvdAQC8zQEAvf0BAL6ZAQC/lQEAsI0OALFBAQCyQQEAs0EBALRBAQC1QQEAtkEBALdBAQCzRQ4ABpsAgAqbAIAOmwCAEpsAgLZFDgC1VQ4AFpsAgLuFAQC6SQ4AGpsAgB6bAIC/hQEAvoUBAL2VAQC8lQEAIpsAgKMBDgAmmwCAKpsAgKYBDgAumwCAMpsAgKURDgCqDQ4Aq8EBADabAIA6mwCArsEBAK/BAQCs0QEArdEBAKgtAwCpPQMAqjUDAKuJAwCsmQMArZkDAK6JAwCvgQMAPpsAgEKbAIBGmwCASpsAgE6bAIBSmwCAVpsAgFqbAIC4rQMAuWUAALptAAC7ZQAAvH0AAL1lAAC+bQAAv2UAALDJAwCxyQMAsqkDALOlAwC0vQMAtaEDALahAwC3lQMAgL0AAIEJAACCGQAAXpsAgGKbAIC+2AMAapsAgG6bAICErAIAcpsAgIfoAwCGDAQAdpsAgHqbAIB+mwCAgpsAgLP9AwCGmwCAipsAgI6bAICSmwCAtlkDALVRAwCWmwCAu00DALpNAwCamwCAnpsAgL8lAwC+OQMAvTEDALw9AwCimwCAppsAgKqbAICumwCA71gPALKbAIC2mwCAupsAgOOQDgC+mwCA4bAPAMKbAIDGmwCAypsAgM6bAIDSmwCAgHUAAIF9AACCdQAAhBgFAO88AwDamwCAvhQFAN6bAIDj0AMA4psAgOFAAADmmwCAhtAEAIdYBQDqmwCA7psAgPKbAID2mwCA+psAgP6bAIACnACABpwAgAqcAIDvrA8AhOwEAOEQDgAOnACA41QBABKcAIAWnACAGpwAgB6cAICj/QIAIpwAgCacAIAqnACALpwAgKZZAgClUQIAMpwAgKtNAgCqTQIANpwAgDqcAICvJQIArjkCAK0xAgCsPQIAqJkGAKmZBgCqrQYAq70GAKylBgCtrQYArqUGAK/ZBgDWmwCAghEAAIEZAACAwQcAPpwAgEKcAIC+cAMARpwAgLhJBwC5SQcAul0HALtVBwC8TQcAvXEHAL51BwC/bQcAsKkGALGpBgCyuQYAs7EGALSZBgC1mQYAtnkHALd5BwC1NQYASpwAgE6cAIC2NQYAhjAAAIdcAwCzPQYAUpwAgL19BgC8dQYAv0UGAL5FBgBmmwCAVpwAgLt1BgC6dQYAo2UGAFqcAIBenACAYpwAgGacAICmbQYApW0GAGqcAICrLQYAqi0GAG6cAIBynACArx0GAK4dBgCtJQYArC0GAKhVBgCpWQYAqm0GAKthBgCsaQYArWkGAK6ZBgCvmQYAdpwAgHqcAIB+nACAgpwAgIacAICKnACAjpwAgJKcAIC4+QYAufkGALqNBgC7hQYAvJ0GAL2FBgC+hQYAv7UGALDpBgCx6QYAsvkGALP5BgC06QYAtd0GALbJBgC3yQYAs+UGAJacAICanACAnpwAgKKcAIC26QYAteEGAKacAIC7LQYAui0GAKqcAICunACAvxkGAL4tBgC9LQYAvC0GAIIVAACjoQYAgGEAAIFhAACmrQYAspwAgL6QAQClpQYAqmkGAKtpBgCEpAEAupwAgK5pBgCvXQYArGkGAK1pBgCohQIAqY0CAKqVAgCruQIArNUCAK3dAgCu1QIAr80CAIaAHACHZAMAvpwAgL5gAwDCnACAxpwAgMqcAIDOnACAuHUDALl9AwC6dQMAu8kDALzZAwC92QMAvskDAL/BAwCwvQIAsY0CALKFAgCzTQMAtFUDALVdAwC2VQMAt00DALMdAgDSnACAhAgDANacAIDanACAtl0CALVdAgDenACAu0kCALp5AgDinACA5pwAgL+ZAwC+kQMAvZkDALxRAgCwAAAAo1kCAOqcAIDunACAphkCAPKcAID2nACApRkCAKo9AgCrDQIA+pwAgP6cAICu1QMAr90DAKwVAgCt3QMAAp0AgAadAIAKnQCA76wGAA6dAIASnQCAFp0AgBqdAIC+6BwAHp0AgCKdAIAqnQCALp0AgOGABwAynQCA42AGAIBdAACBYQAAgmEAALN9AQA2nQCAtW0BALZlAQA6nQCAhiAdAIdYHQC6+QEAu/EBALzZAQC92QEAvrEBAL+xAQDvoAAAPp0AgEKdAIBGnQCASp0AgE6dAIBSnQCA71wBAIRsHADhzAYAVp0AgOMcBgDjSAAAWp0AgOEwAQBenQCAo/EBAGKdAICFABQAZp0AgGqdAICm6QEApeEBAG6dAICrfQEAqnUBAHKdAIB2nQCArz0BAK49AQCtVQEArFUBAKjtHQCpLR4AqjkeAKs5HgCsKR4ArSkeAK6dHgCvkR4AJp0AgHqdAIB+nQCAgp0AgIadAICC+QAAgfEAAID9AAC4qR4AuakeALpJHwC7SR8AvFkfAL1FHwC+TR8Av0UfALDxHgCx+R4AssEeALPBHgC0uR4AtbkeALatHgC3pR4AsBEfALERHwCyER8AsyUfALQlHwC1KR8Atl0fALdRHwC4cR8AuXkfALpBHwC7QR8AvJUAAL2dAAC+lQAAv40AAIqdAIC2nACAjp0AgJKdAICWnQCAmp0AgIb4AwCH0AAAqM0fAKnVHwCq0R8Aq70fAKytHwCtcR8ArnEfAK9xHwCzOR4Anp0AgKKdAICmnQCAqp0AgLaRHgC1RR4Arp0AgLu1HgC6tR4Asp0AgLadAIC/jR4AvoEeAL2RHgC8pR4Aup0AgKN9HgC+nQCAwp0AgKbVHgDGnQCAyp0AgKUBHgCq8R4Aq/EeAM6dAIDSnQCArsUeAK/JHgCs4R4ArdUeAKhVAQCpgQAAqoEAAKuBAACsgQAArYkAAK6xAACvsQAA1p0AgNqdAIDenQCA4p0AgOadAIDqnQCA7p0AgPKdAIC4ZQAAuW0AALplAAC7fQAAvGUAAL1tAAC+ZQAAv90DALChAACxrQAAsqUAALO5AAC0qQAAtZ0AALaVAAC3XQAA9p0AgIIdAACBHQAAgB0AAPqdAID+nQCAAp4AgL4UAgAKngCAhKgCAA6eAIASngCAFp4AgBqeAIAengCAjwAAALNJAwAingCAhugEAIesAgAmngCAtkkDALVJAwAqngCAuykDALolAwAungCAMp4AgL8ZAwC+LQMAvS0DALwxAwA2ngCAo40DADqeAIA+ngCApo0DAEKeAIBGngCApY0DAKrhAwCr7QMASp4AgE6eAICu6QMAr90DAKz1AwCt6QMAvoQDAFKeAIBWngCAWp4AgF6eAIBingCAZp4AgGqeAICAPQAAgQkAAIIZAABungCAcp4AgHqeAICENAMAfp4AgLMtAQCCngCAh8wCAIZMBQCGngCAti0BALUtAQCKngCAu0kBALp5AQCOngCAkp4AgL+9AQC+vQEAvbkBALxRAQDheB8Alp4AgOPQHwCangCAnp4AgOGUAQCingCA42gDAKaeAICqngCArp4AgO+IAwCyngCAtp4AgO+sHwC6ngCAvp4AgMKeAIDGngCAyp4AgM6eAIDSngCA1p4AgO9EHgDangCA4dweAN6eAIDjHB4A4p4AgOqeAIDungCA8p4AgIFpAACAZQAAo+UBAIJ9AACl5QEA9p4AgIQUBACm5QEAvigEAPqeAICrgQEAqrEBAK1xAQCsmQEAr3UBAK51AQCoIQYAqS0GAKolBgCrPQYArCUGAK0tBgCuXQYAr00GAHaeAIDmngCAhggDAIeMAwD+ngCAAp8AgAafAIAKnwCAuOkGALnpBgC6jQYAu4UGALydBgC9hQYAvo0GAL+FBgCwPQYAsQ0GALIFBgCz7QYAtPkGALX5BgC27QYAt+UGALDNBwCx1QcAstEHALPtBwC09QcAtf0HALbpBwC36QcAuN0HALklBwC6LQcAuyUHALw9BwC9JQcAvi0HAL8lBwAOnwCAEp8AgAaeAIAWnwCAGp8AgB6fAIAinwCAJp8AgKgVBgCpGQYAqu0HAKv9BwCs7QcArd0HAK7VBwCvuQcAswUGACqfAIAunwCAMp8AgDafAIC2PQYAtQUGADqfAIC7cQYAumkGAD6fAIBCnwCAv1kGAL5RBgC9WQYAvGUGAEafAICjQQYASp8AgE6fAICmeQYAUp8AgIS0AQClQQYAqi0GAKs1BgC+gAEAWp8AgK4VBgCvHQYArCEGAK0dBgCoNQYAqT0GAKo1BgCrWQYArHUGAK2lAQCurQEAr6UBAIDpAACB6QAAgv0AAL8kAQCGMA8Ah+QAAF6fAIBinwCAuMUAALnNAAC6xQAAu90AALzNAAC9/QAAvvUAAL+dAACw3QEAsSUBALItAQCzIQEAtCEBALUhAQC2IQEAtyEBALvBAgC6OQIAZp8AgGqfAIC/xQIAvsUCAL3VAgC82QIAs50FAG6fAIBynwCAdp8AgIwAAAC2BQIAtd0FAHqfAICqfQIAq4UCAH6fAICCnwCAroECAK+BAgCsnQIArZECAIafAICj2QUAip8AgI6fAICmQQIAkp8AgJafAIClmQUAgpFqAIORagCanwCAnp8AgIa5FgCH6RcAhBEWAIWZFgCKoRIAi6ESAKKfAICmnwCAjpEeAI9ZHgCMmRMAjREeAJJxGgCT5RoAqp8AgO/oJACW8QYAlwUGAJTlGgCVGQYAmikCAJvFAgCunwCAsp8AgLafAIDhKBsAnN0CAOMgDwCfIQcAnsEHAJ01GwCcLRsAm6EbAJr5HwCZOR8AmLEfAJcBEgCWIRMAlSkTAJRRFgCTGRcAkjEXAJGxFwCQKWsAj1FrAOOsBwCEBA0A4RwHAIANAACBNQAAgj0AALqfAIC+nwCAwp8AgL4gDQDKnwCAzp8AgO9MBwCGWAwAh2ANANKfAIDWnwCA2p8AgN6fAICEXA8A4p8AgO8IAADvhAYA4ZABAOGwBgDj4AAA42QGAOafAIDqnwCA7p8AgPKfAID2nwCA+p8AgL4ADwCEQA4A/p8AgAKgAIAGoACACqAAgA6gAIASoACAFqAAgBqgAICj1QMAotUDAKExAwCgLQcAVp8AgMafAIAeoACAIqAAgCagAICCmQAAgZEAAICZAACoTQ0AqZ0NAKqVDQCrJQ4ArD0OAK0RDgCuEQ4ArxEOALB9DgCxDQ4AsgUOALMtDgC0OQ4AtTkOALYtDgC3JQ4AuOkOALnpDgC6wQ4Au8EOALy5DgC9nQ4AvpUOAL+NDgCzPQ0AKqAAgC6gAIAyoACANqAAgLaxDgC1lQ4AOqAAgLvpDgC6mQ4AhogAAIfkAAC/3Q4Avt0OAL3ZDgC88Q4APqAAgKN5DQC+hAEAhIAGAKb1DgBCoACARqAAgKXRDgCq3Q4Aq60OAEqgAIBOoACArpkOAK+ZDgCstQ4ArZ0OALIFNQCzGTQAsG0wALENNQBSoACAVqAAgLQBKAC1PSkAWqAAgF6gAIBioACAZqAAgGqgAIBuoACAcqAAgHagAICiRQEAo9UBAHqgAIChTQEAps0FAKcBOACkAQQApX0FAKoBPACrRT0AqEk5AKnlOQCudTEAr30xAKxdPQCtATAAqO0OAKn1DgCqCQ4AqwkOAKwZDgCtGQ4Arg0OAK8tDgB+oACAgqAAgIagAICKoACAjqAAgJKgAICWoACAmqAAgLgdDgC5JQ4Aui0OALslDgC8PQ4Avd0BAL7VAQC/zQEAsFUOALFdDgCyVQ4Asy0OALQ1DgC1JQ4Ati0OALclDgCzgQ0AnqAAgKKgAICqoACArqAAgLaZDQC1kQ0AvlQEALuZDQC6kQ0AhogEAIe8AwC/4Q0AvvENAL35DQC8gQ0AgkkAAKPFDQCA9QMAgUkAAKbdDQCyoACAtqAAgKXVDQCq1Q0Aq90NALqgAIC+oACArrUNAK+lDQCsxQ0Arb0NAKgdAgCpRQIAql0CAKtVAgCseQIArXkCAK6JAwCviQMAwqAAgMagAIDKoACAzqAAgIT8BQDSoACA1qAAgNqgAIC4iQMAuWUDALptAwC7ZQMAvH0DAL1lAwC+bQMAv2UDALDBAwCxwQMAssEDALPBAwC0wQMAtcEDALbBAwC3wQMA3qAAgOKgAIDmoACA6qAAgO6gAIDhpAEA8qAAgOPADgC+aAQA9qAAgPqgAIDvHAEA/qAAgAKhAIAGoQCACqEAgLOVAwAOoQCAEqEAgBqhAIAeoQCAtrkDALWxAwAioQCAu0UCALpFAgCGqAQAh6QFAL9FAgC+RQIAvVUCALxVAgDh4A4A4SwMAOMIDgDj1A4AgK0AAIHRAACC0QAAJqEAgCqhAIAuoQCAMqEAgDahAIA6oQCAPqEAgO+IDgDvLA4AoxUDAEKhAICFxCsARqEAgEqhAICmOQMApTEDAE6hAICrxQIAqsUCAFKhAIBWoQCAr8UCAK7FAgCt1QIArNUCAKgNBgCpFQYAql0GAKtVBgCseQYArXkGAK65BgCvuQYAFqEAgFqhAIBeoQCAYqEAgGahAIBqoQCAbqEAgHKhAIC4TQcAuVUHALpRBwC7aQcAvHkHAL1lBwC+bQcAv2UHALDJBgCxyQYAst0GALPVBgC0zQYAtXUHALZ9BwC3dQcAs9UGAHahAIB6oQCAfqEAgIKhAIC2+QYAtfEGAIahAIC7DQYAug0GAIYIAACHLAAAv7EHAL4JBgC9AQYAvAkGAIJRAACjkQYAgEEAAIFBAACmvQYAiqEAgI6hAICltQYAqkkGAKtJBgCSoQCAlqEAgK5NBgCv9QcArE0GAK1FBgCwsQYAsbEGALLNBgCzwQYAtMEGALXJBgC28QYAt/EGALgFAQC5DQEAugUBALsdAQC8BQEAvQ0BAL4FAQC/uQEAmqEAgJ6hAICioQCApqEAgKqhAICuoQCApqAAgLKhAICoLQYAqTUGAKo1BgCr8QYArNEGAK3RBgCu0QYAr9EGALPdBgC2oQCAuqEAgL6hAIDCoQCAtjEGALU5BgDGoQCAuxUGALoVBgDKoQCAzqEAgL9tBgC+ZQYAvXUGALx5BgDSoQCAo5kGANahAIDaoQCApnUGAN6hAIDioQCApX0GAKpRBgCrUQYA5qEAgOqhAICuIQYArykGAKw9BgCtMQYAqNUCAKndAgCq4QIAq+ECAKxRAwCtUQMArlEDAK9RAwDuoQCA8qEAgL7sAwD6oQCA/qEAgAKiAIAGogCACqIAgLjpAwC56QMAuokDALuFAwC8nQMAvYEDAL6BAwC/tQMAsDEDALExAwCyNQMAs+kDALT5AwC1+QMAtukDALfhAwCAbQMAgaUAAIKtAACzZQIADqIAgLXVAwC23QMAEqIAgITgAgAWogCAuvkDALv5AwC87QMAvTEDAL4xAwC/MQMAh+wDAIZkPACyAAAAGqIAgB6iAIDjCAQAIqIAgOHsBgAmogCA7wAGACqiAIAuogCAMqIAgDaiAIA6ogCAPqIAgEKiAIBGogCASqIAgE6iAIDjoAMAUqIAgOGoAQBWogCA7/ADAIIdAACBHQAAgB0AAFqiAIBeogCAYqIAgGqiAIC+TD0AbqIAgKOhAwC+QDwApRECAHKiAIB2ogCAphkCAIRsAgB6ogCAqz0CAKo9AgCt9QIArCkCAK/1AgCu9QIAhkA8AIe0PQB+ogCAgqIAgIaiAICKogCAjqIAgO9EBgCSogCA4dQGAJaiAIDjDAcAmqIAgJ6iAICiogCApqIAgLP1AQCqogCArqIAgLKiAIC2ogCAtkUBALXlAQC6ogCAuzEBALopAQC+ogCAwqIAgL8dAQC+HQEAvRkBALwlAQCoLT4AqTU+AKo9PgCrNT4ArC0+AK2FPgCuhT4Ar7k+AGaiAIDGogCAyqIAgM6iAICAGQAAgRkAAIIFAADSogCAuLk+ALm5PgC6ST8Au0k/ALxZPwC9WT8Avk0/AL9BPwCwrT4AsbU+ALKxPgCzjT4AtJk+ALWZPgC2iT4At4k+AKO1PgCEjAIA1qIAgNqiAIDeogCApgU+AKWlPgDiogCAq3E+AKppPgCGCAAAh2gDAK9dPgCuXT4ArVk+AKxlPgDmogCAs5E/AOqiAIDuogCAtlk/APKiAID2ogCAtbk/ALp1PwC7fT8A+qIAgP6iAIC+QT8Av0E/ALxZPwC9VT8AsJU+ALGdPgCyqT4As6U+ALShPgC1oT4AtqE+ALehPgC45T4Aue0+ALrlPgC7/T4AvO0+AL3dPgC+1T4AvxkBAAKjAIAGowCACqMAgA6jAIASowCA9qEAgBajAIAaowCAqF0+AKkhPgCqPT4AqzU+AKwVPgCt/T4ArvU+AK/tPgCj1T4AHqMAgCKjAIAmowCAKqMAgKYdPgCl/T4ALqMAgKs5PgCqMT4AMqMAgDajAICvBT4ArgU+AK0RPgCsHT4AgREAAIANAAA6owCAghkAAD6jAIBCowCAhJQBAL4QAACGQAcAhwABAEqjAIBOowCAUqMAgFajAIBaowCAXqMAgKiNAgCplQIAqpUCAKvNAgCs2QIArdkCAK7NAgCvxQIAYqMAgGajAIBqowCAbqMAgIwAAAByowCAdqMAgHqjAIC4HQMAucEDALrBAwC7wQMAvMEDAL3JAwC+8QMAv/EDALCJAgCxiQIAsikDALMpAwC0OQMAtTkDALYpAwC3JQMAsx0CAH6jAICCowCAhqMAgIqjAIC2WQIAtVECAI6jAIC7TQIAuk0CAJKjAICWowCAv/0DAL79AwC9/QMAvP0DAJqjAICeowCAoqMAgKajAIDhDD4AqqMAgOOoPwCuowCAgT0AAIAxAADvUD8Agh0AALKjAIC++AQAhhgFAIdMAwCEDAIA48wAALqjAIDhvAEAvqMAgMKjAIDGowCAyqMAgM6jAICELAUA0qMAgNajAIDaowCA7xAAAN6jAIDiowCAo90DAOajAIDqowCA7qMAgPKjAICmmQMApZEDAPajAICrjQMAqo0DAPqjAID+owCArz0CAK49AgCtPQIArD0CAAKkAIAGpACACqQAgA6kAIASpACAFqQAgBqkAIDvKD4AHqQAgOE8PgAipACA4zgBAIApAACBFQAAghEAACqkAICzMQIAvsgEAITABAAupACAMqQAgLYpAgC1IQIANqQAgLvNAQC6zQEAOqQAgD6kAIC/dQEAvskBAL3BAQC8yQEAqOkFAKnpBQCq+QUAq/kFAKzpBQCt6QUArjkGAK85BgC2owCAJqQAgIaIAACHQAMAQqQAgEakAIBKpACATqQAgLjRBgC52QYAuuEGALvhBgC8kQYAvZEGAL6RBgC/kQYAsEkGALFJBgCyXQYAs1UGALRNBgC18QYAtvEGALfxBgCjcQUAUqQAgFakAIBapACAXqQAgKZpBQClYQUAYqQAgKuNBgCqjQYAZqQAgGqkAICvNQYArokGAK2BBgCsiQYAbqQAgLPRBwBypACAdqQAgLbxBwB6pACAfqQAgLXBBwC60QcAu90HAIKkAICGpACAvrkHAL+5BwC8xQcAvbkHALhpBgC5aQYAuokGALuJBgC8mQYAvZkGAL6JBgC/iQYAsBEGALEdBgCyFQYAs2kGALR5BgC1eQYAtmkGALdhBgCoSQYAqVUGAKpdBgCrVQYArE0GAK11BgCucQYAr3EGAEajAICCHQAAgR0AAIAdAACKpACAjqQAgJKkAIC+cAEAo5UGAJqkAICGKAAAh0gBAJ6kAICmtQYApYUGAKKkAICrmQYAqpUGAKakAICqpACAr/0GAK79BgCt/QYArIEGAK6kAICzFQYAsqQAgLakAIC2PQYAuqQAgL6kAIC1NQYAutkBALvZAQDCpACAxqQAgL59AQC/ZQEAvH0BAL11AQCovQUAqckFAKrZBQCr0QUArPkFAK35BQCuKQIArykCAMqkAIDOpACA0qQAgNakAICMAAAA2qQAgN6kAIDipACAuO0CALmFAgC6gQIAu4ECALyFAgC9jQIAvrECAL+xAgCwWQIAsVkCALLtAgCz5QIAtP0CALXlAgC25QIAt9UCAKNRBQDmpACA6qQAgO6kAIDypACApnkFAKVxBQD2pACAq50CAKqdAgD6pACA/qQAgK8hAgCuOQIArTECAKw5AgCBbQAAgG0AAAKlAICCBQAAvlwMAAqlAIAOpQCA79AGAITsAwDhHAUAEqUAgOP8BwAWpQCAGqUAgIbYDACHvAwAqIUCAKmVAgCqlQIAq6UCAKy9AgCt1QIArtECAK/RAgAepQCAIqUAgCalAIAqpQCALqUAgDKlAIA2pQCAOqUAgLh1AQC5fQEAunUBALvJAQC82QEAvdkBAL7JAQC/wQEAsLUCALG9AgCygQIAs4ECALRRAQC1UQEAtlEBALdRAQA+pQCAhAQNAEKlAIBGpQCAvhwMAEqlAIDvHAAA76AGAOGQAQDhRAcA43AGAOOYBgBOpQCAUqUAgFalAIBapQCAs10CAF6lAIBipQCAZqUAgGqlAIC2FQIAtXUCAG6lAIC7OQIAujECAHKlAIB6pQCAv9UBAL7VAQC9FQIAvBUCAKOdDQAGpQCAdqUAgH6lAICCpQCAptUNAKW1DQCGpQCAq/kNAKrxDQCGCAMAh2ADAK8VDgCuFQ4ArdUNAKzVDQCAkQ8AgZkPAIKhDwCzpQ4AiqUAgLWhDgC2eQ8AjqUAgJKlAICWpQCAukUPALtdDwC8RQ8AvU0PAL5FDwC//Q8AqFUOAKldDgCqYQ4Aq30OAKxlDgCttQ8Arr0PAK+1DwCapQCAnqUAgKKlAICmpQCAqqUAgK6lAICypQCAtqUAgLhVDwC5dQ8Aun0PALt1DwC8bQ8AvREPAL4RDwC/EQ8AsM0PALHVDwCy3Q8As9UPALTNDwC1dQ8AtnEPALdxDwCj6Q8AuqUAgL6lAIDCpQCAxqUAgKY1DgCl7Q8AyqUAgKsRDgCqCQ4AzqUAgNKlAICvsQ4ArgkOAK0BDgCsCQ4A1qUAgIIdAACBHQAAgB0AANqlAIDepQCA4qUAgL6UAQCErAEA5qUAgIfgAQCGzAAA6qUAgO6lAIDypQCAlqQAgKhtDgCpiQEAqpkBAKuRAQCswQEArckBAK75AQCv+QEAhKAAAPalAID6pQCA/qUAgAKmAIAGpgCACqYAgA6mAIC4xQAAuc0AALrFAAC73QAAvM0AAL39AAC+9QAAv50AALBBAQCxQQEAskEBALNBAQC0QQEAtUEBALZBAQC3QQEAsxECABKmAIAWpgCAGqYAgB6mAIC2SQIAtUkCACKmAIC7hQIAuoUCACamAIAqpgCAv4UCAL6FAgC9lQIAvJUCAIU8GgCjVQIALqYAgDKmAICmDQIANqYAgDqmAIClDQIAqsECAKvBAgA+pgCAQqYAgK7BAgCvwQIArNECAK3RAgCCGQAARqYAgIAZAACBGQAASqYAgE6mAIBSpgCAWqYAgL4ABABepgCAYqYAgGamAIBqpgCAbqYAgHKmAIB2pgCA7+gOAHqmAICG6AQAh1ADAH6mAICCpgCA74ACAIamAIDhlAEAiqYAgONYAQCOpgCA4wAOAJKmAIDhaA0AlqYAgKhxAgCpcQIAqnECAKupAgCsuQIArbkCAK6pAgCvqQIAhKwFAJqmAICepgCAoqYAgKamAICqpgCArqYAgLKmAIC4bQEAuQ0BALoFAQC7GQEAvAkBAL09AQC+NQEAv9kBALDZAgCx2QIAsm0BALNlAQC0fQEAtWUBALZlAQC3VQEA4WAPAOP0AADjHA4A4bwBALamAICCOQAAgTEAAIA9AAC6pgCAvigEAL6mAIDCpgCAvjwHAO8QAADv0A4AyqYAgIbgBACHyAQAzqYAgLO1AgDSpgCAtX0CALZ1AgDWpgCA2qYAgN6mAIC6UQIAu1ECALz1AQC9/QEAvvUBAL/tAQBWpgCAxqYAgKqxBQCrsQUArBUGAK0dBgCuFQYArw0GAOKmAIDmpgCA6qYAgKNVBQDupgCApZ0FAKaVBQDypgCAs+kGAPamAID6pgCA/qYAgAKnAIC24QYAtekGAAanAIC7sQYAuqEGAAqnAIAOpwCAv50GAL6RBgC9pQYAvKkGAKgdBgCpIQYAqiEGAKshBgCsIQYArSEGAK4hBgCvIQYAEqcAgBanAIAapwCAHqcAgCKnAIAmpwCAKqcAgC6nAIC45QcAue0HALrlBwC7/QcAvOUHAL3tBwC+5QcAv00HALAlBgCxNQYAsj0GALMxBgC0FQYAtRkGALYNBgC3AQYAo6kHAIIVAACBtQEAgLUBADKnAICmoQcApakHADanAICr8QcAquEHAISgAgA6pwCAr90HAK7RBwCt5QcArOkHAD6nAICzlQYAhugAAIcYAQC2tQYAQqcAgEanAIC1vQYAukkBALtVAQBKpwCATqcAgL45AQC/OQEAvEUBAL05AQCoPQYAqU0GAKpZBgCrUQYArHEGAK1xBgCuuQEAr7kBAISsAQBSpwCAVqcAgFqnAIBepwCAYqcAgGanAIBqpwCAuKkBALmpAQC6aQEAu2kBALx5AQC9eQEAvmkBAL9pAQCwyQEAsdUBALLVAQCzqQEAtLkBALW5AQC2qQEAt6EBAKPRBQBupwCAcqcAgHanAIB6pwCApvEFAKX5BQB+pwCAqxECAKoNAgCCpwCAhqcAgK99AgCufQIArX0CAKwBAgCKpwCAjqcAgJKnAICWpwCAgTEAAIANAACapwCAgjkAAJ6nAICipwCAviQDAKqnAICupwCAsqcAgIbYHACHTAMAtqcAgLqnAIC+pwCAhMAcAOMgAQDCpwCA4cgBAManAIDvMAIAyqcAgM6nAIDSpwCA1qcAgNqnAIDepwCA4qcAgLOVAwDmpwCA6qcAgO6nAIDypwCAtrkDALWxAwD2pwCAu1EDALpJAwD6pwCA/qcAgL/1AAC+SQMAvUEDALxJAwCoLQIAqUUCAKpdAgCrVQIArHkCAK15AgCuvQIAr7UCAL5oHQACqACABqgAgAqoAICAHQAAgQkAAIKpAAAOqACAuFEBALlZAQC6YQEAu2EBALwRAQC9EQEAvhEBAL8RAQCwzQIAsdUCALLdAgCz1QIAtM0CALVxAQC2cQEAt3EBAOFYBgDhVAcA47AAAOO8BgASqACAGqgAgIYYHACHVB0AHqgAgCKoAIAmqACAKqgAgL74HAAuqACA7/AGAO/gBgCjlQIAMqgAgDaoAIA6qACAPqgAgKa5AgClsQIAQqgAgKtRAgCqSQIARqgAgEqoAICv9QEArkkCAK1BAgCsSQIAqG0eAKl1HgCqfR4Aq40eAKyVHgCtnR4Aro0eAK+BHgAWqACATqgAgFKoAIBWqACAWqgAgF6oAIBiqACAZqgAgLiJHgC5iR4AupkeALuRHgC8uR4AvbkeAL59HwC/dR8AsMUeALHNHgCyxR4As90eALTFHgC1zR4AtsUeALe5HgCz9R4AaqgAgG6oAIByqACAdqgAgLYdHgC1HR4AeqgAgLsJHgC6AR4AfqgAgIKoAIC/CR4AvgEeAL0JHgC8ER4Agm0AAKOxHgCAVQAAgWUAAKZZHgCEmAMAv9ABAKVZHgCqRR4Aq00eAIYABACHmAEArkUeAK9NHgCsVR4ArU0eAIqoAICOqACAhCQAAJKoAICWqACAmqgAgKanAICGqACAqLUeAKmFHgCqjR4Aq4UeAKydHgCtgR4Arv0eAK/1HgCwjR4AsZUeALKVHgCzpR4AtL0eALVxAQC2cQEAt3EBALhRAQC5UQEAulEBALtRAQC89QEAvf0BAL71AQC/7QEAsyUeAL4IBwCeqACAoqgAgKaoAIC2IR4AtTUeAKqoAIC7cR4AumkeAK6oAICyqACAv5UBAL5ZHgC9UR4AvGEeALaoAICjYR4AuqgAgL6oAICmZR4AwqgAgMaoAIClcR4Aqi0eAKs1HgDKqACAzqgAgK4dHgCv0QEArCUeAK0VHgDhVBoA0qgAgONcCgDWqACA2qgAgN6oAIDiqACA5qgAgOqoAIC+qAUA7qgAgPKoAICPMSoA+qgAgO/E+wD+qACAk2EuAJIdLwCR2SoAkEkqAJfZEgCWdRIAlQ0TAJTBLgCbHRsAmkEWAJlJFgCYDRcAn3EeAJ4RGwCdcRoAnHkaAKOhAgCinQMAoZUfAKCJHgDjiAEA4wgeAOFoAADh/B4A79wBAO98HwC1if4AtAH8ALMB+gCylfoAsQH4ALAR9gCv4fYArgH0AK0l8gCs7fIAqwHwAKrpDwCp1Q4AqN0OAKcBDACmyQoApe0KAKQBCACj4QYAovEGAKHlAwACqQCAggErAIMBKwAGqQCACqkAgIYxLwCHiS8AhIkrAIVFLgCKdRIAiwUTAIYIBQCHbAUAjhEXAI8RFwCMsRMAjV0WAJI9GgCTQRsAhMgFAIQABwCWUR8Al1EfAJRRGwCVORoAmn0eAJt9AgAOqQCAEqkAgIFZAQCAVQEAnFkDAIJRAQC+yAcAFqkAgBqpAIAeqQCAIqkAgCapAIAqqQCA79QeAC6pAIDhJB4AMqkAgONoAQA2qQCAOqkAgD6pAIBCqQCAu2kCALpZAgBGqQCASqkAgL8dAgC+HQIAvRkCALxxAgCz7QIATqkAgFKpAIBWqQCAWqkAgLZ9AgC17QIAXqkAgKMNBQD2qACAYqkAgGqpAIBmqQCApp0FAKUNBQBuqQCAq4kFAKq5BQCGCAMAh3wDAK/9BQCu/QUArfkFAKyRBQCAsQcAgbkHAIJBAACzsQYAcqkAgLVZBwC2MQcAdqkAgHqpAIB+qQCAuuEHALvhBwC84QcAveEHAL7hBwC/3QcAqLUGAKm5BgCqdQYAq4UHAKydBwCt/QcArvUHAK8ZBwCCqQCAhqkAgIqpAICOqQCAkqkAgJapAICaqQCAnqkAgLh1BwC5fQcAunUHALsFBwC8HQcAvTEHAL4xBwC/MQcAsGkHALFpBwCyeQcAs3kHALRpBwC1VQcAtlEHALdNBwCj/QcAoqkAgKapAICqqQCArqkAgKZ9BgClFQYAsqkAgKutBgCqrQYAtqkAgLqpAICvkQYArq0GAK2tBgCsrQYAvqkAgMKpAIDGqQCAyqkAgIAdAACBCQAAgjkAAM6pAIDSqQCA2qkAgIbIAACHpAEA3qkAgOKpAIDmqQCA6qkAgKiNAQCpmQEAqtkBAKvRAQCs8QEArfEBAK45AQCvOQEAhKAAAO6pAIDyqQCA9qkAgPqpAID+qQCAAqoAgAaqAIC4zQAAudUAALrVAAC75QAAvP0AAL2VAAC+nQAAv5UAALBJAQCxSQEAslkBALNZAQC0SQEAtUkBALb9AAC39QAAugUEALsJBAC44QcAueEHAL4JBAC/CQQAvAkEAL0JBACyjQcAs+UHALC1BwCxhQcAtuUHALftBwC08QcAtfEHAKpNBwCrVQcAqEkHAKlJBwCu3QcAr8UHAKxNBwCt1QcACqoAgA6qAIASqgCAFqoAgBqqAIAeqgCAIqoAgCaqAICz0QIAKqoAgC6qAIC+AAwAMqoAgLbxAgC1+QIANqoAgLsNAgC6DQIAOqoAgD6qAIC/DQIAvg0CAL0NAgC8DQIAghUAAKOVAgCAYQAAgWEAAKa1AgBCqgCASqoAgKW9AgCqSQIAq0kCAIbIDACHrAwArkkCAK9JAgCsSQIArUkCAKhlAgCpdQIAqn0CAKt1AgCsbQIArbECAK6xAgCvsQIAhKANAE6qAIBSqgCAVqoAgFqqAIBeqgCAYqoAgGaqAIC4MQEAuTEBALoxAQC7MQEAvNUBAL3dAQC+yQEAv8EBALDRAgCx0QIAstECALPRAgC0EQEAtREBALYRAQC3EQEA4bAGAGqqAIDj0AYAhEAPAG6qAIDhpAEAcqoAgOPABgB2qgCAeqoAgH6qAIDv1AYA7AAAAIKqAIDvZAcAhqoAgIqqAICOqgCAkqoAgLO5AgCWqgCAtakCALZ9AgCaqgCAnqoAgKKqAIC6WQIAu1kCALxJAgC9SQIAvpkBAL+ZAQCjdQ0ARqoAgKaqAICqqgCArqoAgKaxDQClZQ0AsqoAgKuVDQCqlQ0AvqQDALaqAICvVQ4ArlUOAK2FDQCshQ0AgE0AAIFVAACCVQAAs2UPALqqAIC1ZQ8Atm0PAL6qAICGQAMAhxQDALrtDwC7/Q8AvOkPAL3VDwC+3Q8Av9UPAKhZDgCpoQ8AqqEPAKuhDwCsoQ8AraEPAK6hDwCvoQ8AwqoAgMaqAIDKqgCAzqoAgNKqAIDWqgCA2qoAgN6qAIC4AQ8AuQEPALoBDwC7HQ8AvA0PAL01DwC+PQ8Av9UAALBlDwCxdQ8AsnEPALNNDwC0VQ8AtV0PALZNDwC3QQ8AoykOAOKqAIDmqgCA6qoAgO6qAICmIQ4ApSkOAPKqAICrsQ4AqqEOAPaqAID6qgCAr5kOAK6RDgCtmQ4ArKUOAP6qAIACqwCABqsAgAqrAIDvJA0ADqsAgBKrAIAWqwCA49AOABqrAIDhGA4AHqsAgIAVAACBGQAAggUAACKrAICo0QEAqdkBAKopAQCrKQEArDkBAK05AQCuKQEArykBAL5oAQAqqwCAhsgBAIesAAAuqwCAMqsAgDarAIA6qwCAuO0AALmFAAC6jQAAu4UAALydAAC9gQAAvoEAAL+BAACwWQEAsVkBALLtAACz5QAAtP0AALXlAAC25QAAt9UAALOhAgA+qwCAQqsAgEarAIBKqwCAtrkCALWxAgBOqwCAu50CALqdAgBSqwCAVqsAgL8hAwC+OQMAvTEDALw5AwCF+PUAo+UCAFqrAIBeqwCApv0CAGKrAIBmqwCApfUCAKrZAgCr2QIAaqsAgG6rAICufQMAr2UDAKx9AwCtdQMAuOkAALnpAAC6aQAAu2kAALx5AAC9ZQAAvm0AAL9lAACwsQAAsbkAALKBAACzgQAAtPkAALX5AAC27QAAt+UAAKhlAwCpdQMAqn0DAKt1AwCsbQMArdEAAK7RAACv0QAAcqsAgHarAIB6qwCA1qkAgH6rAICCqwCAhqsAgIqrAICA/QEAgQkAAIIZAACOqwCAkqsAgL5EAgCaqwCAnqsAgISsAgCiqwCAh/gCAIasBQCmqwCAqqsAgK6rAICyqwCAs/UCALarAIC6qwCAvqsAgMKrAIC2UQEAteUCAMarAIC7fQEAunUBAMqrAIDOqwCAvz0BAL49AQC9VQEAvFUBAOFwDwDSqwCA47gOAITABQDvyAAA1qsAgNqrAIDeqwCA4zwOAOKrAIDh0AEA5qsAgIR0BwDqqwCA72gBAO6rAIDyqwCApXkCAKbNAQD2qwCAgCEAAIEhAACC3QcAo2kCAKzJAQCtyQEArqEBAK+hAQD6qwCA/qsAgKrpAQCr4QEAlqsAgAKsAIC+QAIABqwAgIYwAwCHMAMACqwAgA6sAICoOQcAqTkHAKoNBwCrHQcArAUHAK0NBwCuBQcAr3kHALAJBwCxCQcAshkHALMRBwC0OQcAtTkHALbdBwC3yQcAuPkHALn5BwC6zQcAu8EHALzFBwC9yQcAvrkHAL+xBwCzpQcAEqwAgBasAIAarACAHqwAgLatBwC1rQcAIqwAgLvtBwC67QcAJqwAgCqsAIC/3QcAvt0HAL3lBwC87QcALqwAgKPhBwAyrACANqwAgKbpBwA6rACAPqwAgKXpBwCqqQcAq6kHAEKsAIBGrACArpkHAK+ZBwCsqQcAraEHAEqsAIBOrACAUqwAgFasAIBarACAXqwAgGKsAIBmrACAgREAAIANAABqrACAghkAAG6sAIByrACAvuQBAHasAICG4AAAhxgBAHqsAIB+rACAgqwAgIasAICKrACA77AEAI6sAIDh1AYAkqwAgONcBACWrACAmqwAgJ6sAICirACAqJkBAKmZAQCqDQEAqwUBAKwdAQCtBQEArgUBAK81AQCEiAEApqwAgKqsAICurACAsqwAgLasAIC6rACAvqwAgLjBAAC5wQAAusEAALvBAAC8wQAAvcEAAL7BAAC/wQAAsE0BALElAQCyIQEAsyEBALQlAQC1LQEAthEBALcRAQDCrACAxqwAgLONAgDKrACAtZ0CAM6sAIDSrACAto0CANasAIDarACAu+kCALqBAgC9/QIAvP0CAL/hAgC+6QIA3qwAgKbVAgClxQIAvggDAKPVAgCCLQAAgRkAAIB5AACvuQIArrECAK2lAgCspQIAq7ECAKrZAgDirACA6qwAgO80AgDurACAhxgDAIYs/ADyrACA9qwAgPqsAID+rACAAq0AgAatAIAKrQCADq0AgOMAAQASrQCA4eABABatAIC6tQMAu70DABqtAIAerQCAvnkDAL95AwC8pQMAvXkDACarAICztQMAIq0AgCatAIC2kQMAKq0AgC6tAIC1pQMAqEkCAKlJAgCqWQIAq1kCAKxJAgCtdQIArnECAK9tAgC+aP0AvqT/ADKtAIA2rQCAOq0AgD6tAIBCrQCARq0AgLj5AgC5+QIAukkBALtJAQC8XQEAvUEBAL5BAQC/fQEAsBUCALEdAgCyFQIAs8kCALTZAgC12QIAtskCALfJAgDjIAYA4bAGAOGAAQDjEAYAgA0AAIE1AACCPQAASq0AgE6tAIBSrQCAWq0AgF6tAIDvcAAAYq0AgGatAIDvTAEAhIz9AGqtAICjmQIAbq0AgKWJAgByrQCAdq0AgKa9AgCGwPwAh+T8AKuRAgCqmQIArVUCAKyJAgCvVQIArlUCAKh9/gCpgf4Aqpn+AKuZ/gCsif4ArYn+AK65/gCvuf4AVq0AgHqtAIB+rQCAgq0AgIatAICKrQCAjq0AgJKtAIC4tf4Aub3+ALph/wC7Yf8AvGH/AL1h/wC+Yf8Av2H/ALDJ/gCxyf4Ast3+ALPR/gC0uf4Atbn+ALaR/gC3kf4AsxH+AJatAICarQCAnq0AgKKtAIC2Cf4AtQH+AKatAIC7Df4Aug3+AKqtAICurQCAv33+AL59/gC9Bf4AvAn+ALKtAICjVf4Atq0AgLqtAICmTf4Avq0AgMKtAIClRf4Aqkn+AKtJ/gCEKAMAxq0AgK45/gCvOf4ArE3+AK1B/gCAzQEAgdEBAILRAQCzuf4Ayq0AgLXR/gC21f4Azq0AgIZgAQCHYAEAug0BALsFAQC8HQEAvQUBAL4NAQC/BQEA0q0AgNatAIDarQCA3q0AgOKtAIDhwP0A5q0AgOOM/ADqrQCA7q0AgPKtAIDvtPwA9q0AgPqtAID+rQCAAq4AgKgp/gCpKf4Aqj3+AKs1/gCsVf4ArVn+AK5N/gCvRf4ABq4AgAquAIAOrgCAEq4AgBauAIAargCAHq4AgCKuAIC4SQEAuUkBALpZAQC7UQEAvHkBAL15AQC+GQEAvxUBALDFAQCxzQEAssUBALPdAQC0xQEAtc0BALbFAQC3eQEAJq4AgCquAIAurgCAo7n9ADKuAICl0f0AptX9AITQAwBBrgCAvuACAKoNAgCrBQIArB0CAK0FAgCuDQIArwUCAIFJAACAQQAAowkDAIJdAAClGQMARa4AgEmuAICmEQMAhsAEAIfkAwCrDQMAqg0DAK0BAwCsHQMArwEDAK4JAwCw4QMAseEDALLhAwCz/QMAtOUDALXtAwC25QMAtz0DALgFAwC5DQMAugUDALsdAwC8BQMAvQ0DAL4FAwC/vQAATa4AgFGuAIBVrgCAWa4AgOasAIBdrgCAYa4AgGWuAICo8QMAqfkDAKqpAwCrqQMArLkDAK25AwCuqQMAr6UDALNBAgBprgCAba4AgHGuAIB1rgCAtlkCALVRAgB5rgCAu0UCALpFAgB9rgCAga4AgL9JAgC+QQIAvUkCALxVAgCFrgCAia4AgI2uAICRrgCA74wDAJWuAICZrgCAna4AgONsAwChrgCA4VAAAKWuAICprgCAvngFALGuAICEcAIAgOUAAIHpAACC+QAAta4AgIawBACHVAUAua4AgO9A/gC9rgCA4Vz+AMGuAIDjVAEAxa4AgMmuAIDNrgCA0a4AgLOZAQDVrgCA2a4AgN2uAIDhrgCAth0BALUdAQDlrgCAuz0BALo9AQDprgCA7a4AgL/hAAC++QAAvfEAALz5AACoIQYAqVEGAKpRBgCrzQYArNUGAK3dBgCu1QYAr8kGAK2uAIDxrgCA9a4AgPmuAID9rgCAAa8AgAWvAIAJrwCAuG0HALkFBwC6DQcAuwUHALwdBwC9AQcAvgEHAL8BBwCwuQYAsbkGALJtBwCzZQcAtH0HALVlBwC2ZQcAt1UHAKPZBgANrwCAEa8AgBWvAIAZrwCApl0GAKVdBgCEnAIAq30GAKp9BgC+JAMAHa8AgK+hBwCuuQcArbEHAKy5BwCASQAAgUkAAIJZAACzVQcAIa8AgLV9BwC2aQcAJa8AgIZAAACHVAMAulUHALspBwC8OQcAvTkHAL4pBwC/IQcAo5kGACmvAIAtrwCAMa8AgDWvAICmpQYApbEGADmvAICr5QYAqpkGAD2vAIBBrwCAr+0GAK7lBgCt9QYArPUGAOE4BQBFrwCA4yQEAEmvAIBNrwCAUa8AgFWvAIBZrwCAXa8AgGGvAIBlrwCAaa8AgG2vAIBxrwCA7/QEAHWvAICo+QYAqQkGAKoRBgCrLQYArDkGAK0lBgCuLQYAryUGAHmvAIB9rwCAga8AgIWvAICAGQAAgRkAAIIFAACJrwCAuOUBALntAQC65QEAu/0BALzlAQC97QEAvuUBAL9ZAQCwXQYAsSEGALIhBgCzIQYAtCEGALUpBgC2EQYAtxEGAKjRAgCp2QIAqg0DAKsFAwCsHQMArQUDAK4FAwCvNQMAvmQCAJGvAICVrwCAma8AgJ2vAIChrwCApa8AgKmvAIC4JQMAuS0DALolAwC7PQMAvCUDAL0pAwC++QMAv/kDALBNAwCxIQMAsiUDALM9AwC0JQMAtS0DALYlAwC3HQMAs4UDAITIAgCtrwCAhAgDALGvAIC2hQMAtZUDALWvAIC75QMAuokDAIYIDACHnAMAv+kDAL7hAwC96QMAvPEDAIXsCgA2rgCAo80DALmvAICl3QMAva8AgMGvAICmzQMAxa8AgMmvAICrrQMAqsEDAK2hAwCsuQMAr6EDAK6pAwDNrwCA0a8AgNWvAIDZrwCA78gDAN2vAIDhrwCA5a8AgOO0AwDprwCA4dABAO2vAICADQAAgXUAAIJ9AADxrwCA9a8AgPmvAICzZQEAvgQCALVlAQABsACABbAAgLZlAQCGQA0Ah1gNALv1AQC6/QEAvaUBALy5AQC/mQEAvqUBAAmwAIANsACAEbAAgIQADAAVsACAGbAAgB2wAIDvzAEAIbAAgOEsBgAlsACA4yABAOwAAAApsACALbAAgDGwAIA1sACAo+kBADmwAIA9sACApukBAEGwAIBFsACApekBAKpxAQCreQEASbAAgE2wAICuKQEArxUBAKw1AQCtKQEAqCUOAKktDgCqJQ4Aqz0OAKwlDgCtLQ4AriUOAK+VDgD9rwCAUbAAgFWwAIBZsACAXbAAgIKdAACBnQAAgJ0AALhFDwC5TQ8AukUPALtZDwC8SQ8AvUkPAL59DwC/cQ8AsPEOALH5DgCypQ4As7kOALSpDgC1lQ4Atp0OALd9DwCo1Q8Aqd0PAKoJDwCrCQ8ArBkPAK0FDwCuDQ8ArwUPAGGwAIBlsACAabAAgL6gAwBtsACAcbAAgId4AwCGEAAAuBUPALkdDwC6IQ8AuyEPALz1AAC9/QAAvvUAAL/tAACwQQ8AsU0PALJdDwCzVQ8AtE0PALU1DwC2MQ8AtzEPAHWwAIDvsAwAebAAgH2wAICBsACAhbAAgImwAICNsACAkbAAgJWwAICZsACAnbAAgKGwAIDjqA0ApbAAgOGMDQCzwQ4AqbAAgK2wAICxsACAtbAAgLbFDgC10Q4AubAAgLvJDgC6xQ4AvbAAgMGwAIC/sQ4AvskOAL3BDgC8yQ4AowEOAMWwAIDJsACAzbAAgNGwAICmBQ4ApREOANWwAICrCQ4AqgUOANmwAICErAIAr3EOAK4JDgCtAQ4ArAkOAIBRAACBWQAAgmEAALPFAAC+zAEAtcUAALbNAADhsACAhkAHAIcUAQC6yQAAu8kAALzZAAC92QAAvskAAL/FAACrDQMAqg0DAKkJAwCouQIArw0DAK4NAwCtDQMArA0DAL5gAwDlsACA6bAAgO2wAIDxsACA9bAAgPmwAIC+MAUAuykDALoZAwC5GQMAuAEDAL/dAwC+3QMAvd0DALwxAwCzTQMAsk0DALFNAwCwTQMAtzkDALYxAwC1QQMAtE0DAP2wAICmkQMApZkDAAGxAICjmQMABbEAgAmxAIANsQCAr5kDAK6VAwCthQMArIUDAKuVAwCqlQMAja8AgBGxAIAVsQCAGbEAgB2xAIAhsQCAJbEAgCmxAIAtsQCAMbEAgDWxAIA5sQCAPbEAgEGxAICAHQAAgQkAAIL9AQBFsQCAvwgHAEmxAIBRsQCA7yQAAFWxAICElAIAWbEAgF2xAICH4AIAhgQFAL4AGABhsQCAZbEAgOGQAQBpsQCA44AAAG2xAIBxsQCAdbEAgLNlAQB5sQCAtWUBALZtAQB9sQCAgbEAgIWxAIC65QEAu/kBALzpAQC96QEAvsUBAL+9AQCJsQCAjbEAgJGxAIC+xBkAlbEAgJmxAICdsQCA78gBAKGxAIDh3A4ApbEAgOMwDgCpsQCArbEAgLGxAICEMAQAgHkAAIEVAACCFQAAo+UBALWxAICl5QEApu0BALmxAICGQAYAh5AHAKplAQCreQEArGkBAK1pAQCuRQEArz0BAKjdBQCpIQYAqiEGAKshBgCsIQYArSEGAK4hBgCvnQYATbEAgL2xAIDBsQCAhDABAMWxAIDJsQCAzbEAgNGxAIC4jQYAuZUGALqdBgC7lQYAvI0GAL21BgC+vQYAv7UGALDtBgCx8QYAsvEGALPxBgC0zQYAtbUGALa9BgC3tQYAqIkHAKmVBwCqkQcAq5EHAKy9BwCtpQcArqEHAK/dBwDVsQCA2bEAgN2xAIDhsQCA5bEAgOmxAIDtsQCA8bEAgLhJBwC5VQcAul0HALtVBwC8cQcAvX0HAL5pBwC/aQcAsKUHALGtBwCyuQcAs7EHALSRBwC1kQcAtnkHALd5BwD1sQCA+bEAgP2xAIABsgCA78gFAOHACQAFsgCA48AZAOMkBAAJsgCA4dAGAO/cKACinQMAoxUBAKAZBQChjQUAs1kGAA2yAIARsgCAFbIAgBmyAIC2ZQYAtXUGAB2yAIC7KQYAuiEGACGyAIAlsgCAvxUGAL4VBgC9JQYAvC0GAKOZBgCPmfwAKbIAgDGyAIA1sgCApqUGAKW1BgA5sgCAq+kGAKrhBgCGKB8Ah5wAAK/VBgCu1QYAreUGAKztBgCebQkAn30HAJwNCwCd7QkAmvENAJs5DQCY5fAAmQ0PAJbh8QCX6fEAlMX1AJUN8wCSHfcAk/H1AJD9+QCR7fkAgh3/AIMB+gA9sgCAQbIAgIYV9gCHOfYAhAn6AIXx9ACKwfAAiyXyAEWyAIBJsgCAjuEMAI8VDgCMNfIAjQHzAJKtDgCTgQgATbIAgFGyAICW6QQAl3UGAJR5CgCV8QoAmtEGAJvJAABVsgCAWbIAgIEdAwCAHQMAnFkCAIL1AwCrARAAqpUWAKmNFgCojRYAr5UuAK4BLACt/RIArJkSAKOlHgCipR4AoY0CAN2wAICnGRoAppUaAKUBGACknR8AXbIAgGGyAIBlsgCAabIAgG2yAIBxsgCAdbIAgHmyAICz5SoAsuUqALGtLwCw5S4AfbIAgIGyAIC1ASQAtBEqAKgpAwCpNQMAqj0DAKs1AwCsLQMArbUDAK69AwCvtQMAhbIAgImyAICNsgCAkbIAgIAdAACBCQAAgrkAAJWyAIC4TQIAuV0CALptAgC7CQIAvBkCAL0ZAgC+CQIAvwECALDNAwCx1QMAst0DALPVAwC0zQMAtXUCALZ9AgC3dQIAmbIAgITIHQChsgCAvgwfAKWyAICpsgCA70gGAO9YBwDhWAYA4ZgGAOOUAQDjAAYAhhAcAId8HQC+9B4ArbIAgLGyAIC2ZQMAtfUDALWyAICz5QMAubIAgL2yAIDBsgCAv+ECAL5ZAwC9UQMAvFkDALtBAwC6WQMAxbIAgMmyAIAtsgCAnbIAgM2yAIDRsgCA1bIAgNmyAIDdsgCA4bIAgKitHQCptR0AqrUdAKslHgCsPR4ArR0eAK4VHgCvdR4AsA0eALEtHgCyJR4As40eALSVHgC1nR4AtpUeALeNHgC4tR4Aub0eALq1HgC7nR4AvIUeAL1VHwC+XR8Av1UfALMdHQDlsgCA6bIAgO2yAIDxsgCAtr0eALWVHgD1sgCAu8keALrpHgD5sgCA/bIAgL95HgC+cR4AvXkeALzRHgCCKQAAo1kdAIAdAACBFQAApvkeAAGzAIAFswCApdEeAKqtHgCrjR4ACbMAgITgAwCuNR4Arz0eAKyVHgCtPR4AqIkeAKmVHgCqnR4Aq7EeAKzRHgCt2R4Ars0eAK/FHgANswCAEbMAgIaIAACHbAEAFbMAgBmzAIAdswCAIbMAgLhdAQC5wQEAusEBALvBAQC8wQEAvckBAL7xAQC/8QEAsL0eALGdHgCylR4As2UBALR9AQC1ZQEAtm0BALdlAQCqLR0AqzUdACWzAIApswCAri0dAK+VHACsLR0ArSUdAISMAQCjkR0ALbMAgDGzAICmER0ANbMAgDmzAIClgR0As1UeAD2zAIBBswCARbMAgEmzAIC2GR4AtRkeAE2zAIC7GR4AujkeAFGzAIBVswCAv+EBAL75AQC98QEAvAEeAFmzAIBdswCAYbMAgKOZHQBlswCApdUdAKbVHQBpswCAbbMAgHGzAICq9R0Aq9UdAKzNHQCtPQIArjUCAK8tAgCAZQAAgRUAAIIdAACEAAQAdbMAgHmzAICHcAMAhvwEAIGzAICFswCAibMAgI2zAICRswCAlbMAgJmzAICdswCAvsgEAKGzAIClswCAqbMAgK2zAICxswCAtbMAgO/cHwC5swCA4ZQBAL2zAIDjHAEAwbMAgMWzAIDJswCAzbMAgLt1AwC6aQMAvkgGANGzAIC/HQMAvh0DAL0dAwC8ZQMAs9UDANWzAIDZswCA3bMAgOGzAIC2fQMAtcUDAIRwBQCoJQIAqTUCAKo9AgCrNQIArC0CAK2dAgCulQIAr7UCAIIVAADlswCAgNkBAIEJAADEAAAA6bMAgPGzAID1swCAuKkCALmpAgC6SQEAu0kBALxZAQC9RQEAvkUBAL99AQCwzQIAsdECALLRAgCzqQIAtLkCALW5AgC2qQIAt6ECAOEoHgDhNBwA43QBAOMYHgD5swCA/bMAgIa4BACHVAUAhDgHAAG0AIAFtACACbQAgL6sBwANtACA78weAO/IGgCj9QIAEbQAgBW0AIAZtACAHbQAgKZdAgCl5QIAIbQAgKtVAgCqSQIAJbQAgCm0AICvPQIArj0CAK09AgCsRQIAqGEGAKlhBgCqYQYAq2EGAKxhBgCtYQYArmEGAK9hBgDtswCALbQAgDG0AIA1tACAObQAgD20AIBBtACARbQAgLjxBgC58QYAuvEGALvxBgC8nQYAvbEGAL6xBgC/sQYAsOUGALHtBgCy5QYAs/0GALTlBgC17QYAttkGALfVBgCz6QYASbQAgE20AIBRtACAVbQAgLbhBgC16QYAWbQAgLspBgC6IQYAXbQAgGG0AIC/KQYAviEGAL0pBgC8MQYAgl0AAKOtBgCARQAAgV0AAKalBgBltACAabQAgKWtBgCqZQYAq20GAIYADACHQAMArmUGAK9tBgCsdQYArW0GAG20AIDvfAUAcbQAgHW0AIB5tACAfbQAgIG0AICFtACAibQAgI20AICRtACAlbQAgJm0AIDjaAUAnbQAgOF4BQCz0QYAobQAgKW0AICptACArbQAgLb9BgC1/QYAsbQAgLupBgC6oQYAtbQAgLm0AIC/mQYAvqkGAL2pBgC8sQYAqLkGAKm5BgCqGQYAqxkGAKw1BgCtPQYArjUGAK8pBgC9tACAgh0AAIEdAACAHQAAwbQAgMW0AIDJtACA0bQAgLjpAQC56QEAuvkBALv5AQC86QEAvekBAL5dAQC/VQEAsCUGALEtBgCyJQYAsz0GALQtBgC1HQYAthUGALfZAQCGgAwAh+QCANW0AICjnQUA2bQAgKWxBQCmsQUA3bQAgOG0AIDltACAqu0FAKvlBQCs/QUAreUFAK7lBQCv1QUAtk0DAOm0AICExAMAtUUDAO20AICzjQIA8bQAgPW0AIC+SQMAv0kDALxJAwC9SQMAumkDALtpAwD5tACA/bQAgAG1AICmiQMApYEDAAW1AICjSQIACbUAgA21AIARtQCAr40DAK6NAwCtjQMArI0DAKutAwCqrQMAfbMAgBW1AIAZtQCAHbUAgIW0PQAhtQCAJbUAgCm1AIAttQCAMbUAgIA9AACBCQAAgh0AADW1AIC+sAMAObUAgIc4AwCG3AwAQbUAgEW1AIBJtQCATbUAgFG1AIDvXAYAVbUAgFm1AIC+6AwA45QGAF21AIDh3AEAYbUAgGW1AIBptQCAbbUAgLNRAQBxtQCAdbUAgHm1AIB9tQCAtnEBALV5AQCBtQCAuz0BALo9AQCFtQCAibUAgL/9AQC+9QEAvQUBALwFAQCNtQCAkbUAgJW1AICEQAwAmbUAgJ21AIChtQCA76wHAKW1AIDhJAYAqbUAgONABwCGkAwAh/wMALG1AIC1tQCAgFkAAIFlAACCYQAAo90BALm1AICl9QEApv0BAL21AIDBtQCAxbUAgKqxAQCrsQEArIkBAK2JAQCueQEAr3EBAM20AIA9tQCAybUAgM21AICttQCA0bUAgNW1AIDZtQCAqJ0NAKktDgCqOQ4AqzEOAKwRDgCtEQ4Arn0OAK9tDgCwGQ4AsRkOALIxDgCzMQ4AtNEOALXZDgC2zQ4At8UOALj9DgC52Q4AuqkOALupDgC8vQ4AvaUOAL6tDgC/pQ4AqIEPAKmBDwCqgQ8Aq4EPAKyBDwCtjQ8AroUPAK+1DwDdtQCA4bUAgOW1AIDptQCA7bUAgPG1AID1tQCA+bUAgLidDwC5rQ8AuqUPALtNDwC8VQ8AvV0PAL5JDwC/SQ8AsNEPALHRDwCy0Q8As9EPALS1DwC1vQ8AtrUPALetDwCzCQ4A/bUAgAG2AIAFtgCACbYAgLYNDgC1CQ4ADbYAgLsVDgC6FQ4AEbYAgBW2AIC/eQ4AvnEOAL0FDgC8BQ4AghUAAKNNDgCAYQAAgWEAAKZJDgAZtgCAvhABAKVNDgCqUQ4Aq1EOAIQkAQAhtgCArjUOAK89DgCsQQ4ArUEOAKg5DgCpOQ4AqlkOAKtRDgCscQ4ArXEOAK6RAQCvkQEAhgAAAIeEAAAltgCAKbYAgC22AIAxtgCANbYAgDm2AIC4dQEAuX0BALp1AQC7yQAAvNkAAL3ZAAC+yQAAv8EAALD1AQCx/QEAsvUBALNNAQC0VQEAtV0BALZVAQC3TQEAuk0PALtVDwC4TQ8AuUUPAL59DwC/tQ8AvEUPAL11DwCyAQ8AswEPALAxDwCxMQ8AtgEPALcNDwC0EQ8AtREPAKqZDgCrRQ8AqOUOAKmZDgCuQQ8Ar0EPAKxRDwCtUQ8APbYAgEG2AIBFtgCASbYAgE22AIBRtgCAVbYAgFm2AICzUQ0AXbYAgGG2AIBltgCAabYAgLZxDQC1eQ0AbbYAgLu5AgC6sQIAcbYAgHW2AIC/GQIAvhECAL0ZAgC8oQIAebYAgKMVDQB9tgCAgbYAgKY1DQCFtgCAibYAgKU9DQCq9QIAq/0CAIToAwCRtgCArlUCAK9dAgCs5QIArV0CAKhtAgCprQIAqqUCAKu9AgCspQIAra0CAK6lAgCvfQEAgO0BAIHxAQCC8QEAvqAFAJW2AICZtgCAh2gFAIYcBQC4yQEAuckBALrZAQC70QEAvPkBAL35AQC+mQEAv5UBALAFAQCxDQEAsgUBALMdAQC0BQEAtQ0BALYFAQC3+QEA4WQPAOGcDwDjFA4A49QPAJ22AIDhPA4AobYAgOPkAAC+rAQApbYAgKm2AIDvDAAArbYAgLG2AIDvYA4A77QPALW2AIC5tgCAhEQEALNhAgC9tgCAtWECALZhAgDBtgCAxbYAgMm2AIC6jQEAu4UBALydAQC9hQEAvo0BAL+FAQCjrQUAjbYAgM22AIDRtgCA1bYAgKatBQClrQUA2bYAgKtJBgCqQQYA3bYAgOG2AICvSQYArkEGAK1JBgCsUQYA5bYAgOm2AIDttgCA8bYAgIAdAACBCQAAgjkAAPW2AID5tgCA/bYAgIbIAACHIAMAAbcAgAW3AIAJtwCADbcAgKhtBgCptQcAqr0HAKsdBwCsCQcArTEHAK4xBwCvLQcAhKgDABG3AIAVtwCAGbcAgB23AIAhtwCAJbcAgCm3AIC4zQAAudUAALrVAAC75QAAvP0AAL2VAAC+nQAAv5UAALBVBwCxJQcAsi0HALM9BwC0LQcAtRUHALYdBwC39QAALbcAgOG8BgAxtwCA4/QFADW3AIA5twCAPbcAgEG3AIBFtwCASbcAgE23AIBRtwCAVbcAgFm3AIBdtwCA7+gEALN1BgCCLQAAgRUAAIAdAABhtwCAtvEGALXBBgBltwCAu6EGALrRBgBptwCAvmwBAL+RBgC+qQYAvakGALy5BgCjtQYAcbcAgIYoAACHTAEAdbcAgKYxBgClAQYAebcAgKthBgCqEQYAfbcAgIG3AICvUQYArmkGAK1pBgCseQYAhbcAgLO9AQCJtwCAjbcAgLZ5AQCRtwCAlbcAgLV5AQC6VQEAu10BAJm3AICdtwCAvvkAAL/lAAC8RQEAvf0AAKhxAgCpcQIAqnECAKtxAgCstQIArb0CAK61AgCvrQIAhOw8AKG3AICltwCAqbcAgK23AICxtwCAtbcAgLm3AIC4XQMAuWUDALptAwC7ZQMAvH0DAL1lAwC+bQMAv2UDALDVAgCx3QIAstUCALNtAwC0eQMAtWUDALZtAwC3ZQMAHbYAgL23AIDBtwCAo/UCAMW3AIClMQIApjECAMm3AIDNtwCA0bcAgKodAgCrFQIArA0CAK21AwCusQMAr60DAIBlAACBCQAAghkAANW3AIDZtwCA4bcAgL4QPADltwCAhsA8AIcgAwDptwCA7bcAgPG3AID1twCA+bcAgP23AICohQIAqZUCAKqVAgCrpQIArL0CAK3VAgCu0QIAr9ECAAG4AIAFuACACbgAgA24AIARuACAFbgAgBm4AIAduACAuHUBALl9AQC6dQEAu8kBALzZAQC9xQEAvsUBAL/9AQCwtQIAsb0CALKBAgCzgQIAtFUBALVdAQC2VQEAt00BAOGkBgAhuACA41AGAL6APACEHDwAvoA/ACW4AIApuACALbgAgDG4AIA1uACAObgAgD24AIBBuACA7+AGAEW4AICBfQAAgHEAAEm4AICCBQAAUbgAgFW4AIDvTAAAWbgAgOGQAQBduACA41gBAGG4AIBluACAabgAgIZYPwCH/DwAs509AN23AIBNuACAbbgAgHG4AIC21T0AtbU9AHW4AIC7+T0AuvE9AHm4AIB9uACAvxk+AL4RPgC91T0AvNU9AIG4AICj2T0AhbgAgIm4AICmkT0AjbgAgJG4AICl8T0AqrU9AKu9PQCVuACAmbgAgK5VPgCvXT4ArJE9AK2RPQCoVT4AqVk+AKphPgCrYT4ArGE+AK1hPgCuYT4Ar2E+AISoAwCduACAobgAgKW4AICpuACArbgAgLG4AIC1uACAuEU/ALldPwC6VT8Au20/ALx1PwC9fT8AvnU/AL9tPwCwwT8AscE/ALLBPwCzwT8AtME/ALXBPwC2wT8At8E/AIC5AQCBuQEAggUAALm4AIDhgD4AwbgAgOMoPQDFuACAhoAAAIcEAQDvCD0AybgAgM24AIDRuACA1bgAgNm4AICzqT8AvbgAgN24AIDhuACA5bgAgLahPwC1qT8A6bgAgLtFPgC6RT4A7bgAgPG4AIC/RT4AvkU+AL1VPgC8VT4Ao2k/APW4AID5uACA/bgAgAG5AICmYT8ApWk/AAW5AICrhT4AqoU+AAm5AIANuQCAr4U+AK6FPgCtlT4ArJU+ABG5AICzGT4AFbkAgBm5AIC2IT4AHbkAgCG5AIC1MT4AuvEBALv5AQAluQCAKbkAgL6xAQC/vQEAvNEBAL3RAQCo0T0AqdE9AKrVPQCr6T0ArP09AK3lPQCu7T0ArxECAID5AwCBzQMAgsUDAIQkAwC+AAQAMbkAgIesAwCGvAQAuBkCALktAgC6JQIAu+kCALz5AgC9+QIAvukCAL/pAgCwcQIAsXkCALJBAgCzQQIAtDECALU9AgC2NQIAtykCAKVtPQA1uQCAObkAgKZ9PQA9uQCAbbcAgKNFPQBBuQCArY0CAKyNAgCv4QIAru0CAKwAAABFuQCAq6UCAKqtAgDh+AEASbkAgOP0AgCEwAQATbkAgFG5AIBVuQCAWbkAgF25AIBhuQCAZbkAgGm5AIBtuQCAcbkAgO8wAgB1uQCAqBUCAKkZAgCqJQIAqz0CAKwlAgCtLQIAriUCAK9VAgB5uQCAfbkAgIG5AICFuQCAibkAgI25AICEsAQAkbkAgLjRAgC52QIAuuECALvhAgC8kQIAvZ0CAL6VAgC/iQIAsC0CALE1AgCyNQIAswUCALQdAgC18QIAtvECALfxAgDheD8A4zQBAOMIPgDhbD4AgQkAAICpAACVuQCAgj0AAJm5AIChuQCApbkAgL4gBACpuQCA79g+AO/MPgCtuQCAsbkAgLPpAgCG6AQAh8AEALbpAgC1uQCAubkAgLXpAgC6rQIAu7UCAL25AIDBuQCAvp0CAL9xAgC8pQIAvZUCAC25AICduQCAxbkAgMm5AIDNuQCA0bkAgNW5AIDZuQCAqBUGAKmhBgCqoQYAq70GAKytBgCtgQYArv0GAK/tBgCwlQYAsZ0GALKVBgCzrQYAtLUGALW9BgC2tQYAt60GALiVBgC5mQYAukkHALtJBwC8WQcAvVkHAL5JBwC/SQcArN0FAK3tBQCu5QUArwkFAN25AIDhuQCAqtUFAKvNBQDluQCApZEFAKaRBQDpuQCA7bkAgPG5AID1uQCAo5EFALNJBgD5uQCA/bkAgAG6AIAFugCAtmEGALVFBgAJugCAuzkGALoxBgC+ZAAADboAgL8ZBgC+EQYAvRkGALwhBgCjiQcAgtkBAIHZAQCAwQEAEboAgKahBwClhQcAFboAgKv5BwCq8QcAhggBAId8AQCv2QcArtEHAK3ZBwCs4QcAGboAgLP1BgAdugCAIboAgLaFBgAlugCAKboAgLWdBgC6jQYAu20BAC26AIAxugCAvmUBAL9tAQC8dQEAvW0BAKglBgCpLQYAqjkGAKsxBgCsUQYArUEGAK5BBgCvdQYANboAgDm6AIA9ugCAQboAgEW6AIBJugCATboAgFG6AIC4VQEAuWUBALplAQC7fQEAvGUBAL1tAQC+HQEAvxUBALANBgCx7QEAsuUBALP9AQC05QEAte0BALblAQC3bQEAo7EFAFW6AIBZugCAvkgDAL5YDACmwQUApdkFAF26AICrKQIAqskFAGG6AIBlugCArykCAK4hAgCtKQIArDECAGm6AIBtugCAcboAgHW6AICAGQAAgRkAAIIFAAB5ugCAhKwDAIG6AICHGAMAhswMAIW6AICJugCAjboAgJG6AICokQMAqZkDAKrJAwCrxQMArN0DAK3BAwCuwQMAr/UDAJW6AICZugCAnboAgKG6AIClugCAqboAgK26AICxugCAuH0DALnBAAC6wQAAu9EAALz5AAC9+QAAvpkAAL+ZAACwjQMAsUUDALJNAwCzRQMAtF0DALVFAwC2TQMAt0UDALNBAgC1ugCAuboAgL8EDwC9ugCAtkECALVVAgDBugCAu4ECALpJAgDFugCAyboAgL+BAgC+mQIAvZECALyZAgDNugCA0boAgNW6AIDZugCA76QDAN26AIDhugCA5boAgOMQAwDpugCA4VgAAIQgDQCAKQAAgSkAAIIdAADxugCA4VAGAOGgBwDjoAYA41AHAIWUDAD1ugCA70gbAPm6AIDhJAIA/boAgONwGgABuwCABbsAgAm7AIDvqAEA7+gGAIagDwCHDA0Ao4kCAA27AIClnQIAEbsAgBW7AICmiQIAGbsAgB27AICrSQIAqoECAK1ZAgCsUQIAr0kCAK5RAgCoZQ4AqXUOAKp9DgCrdQ4ArG0OAK21DgCuvQ4Ar7UOAO26AIAhuwCAJbsAgCm7AIAtuwCAOLsAgDy7AIBAuwCAuF0PALltDwC6ZQ8Auw0PALwVDwC9HQ8AvhUPAL8JDwCwzQ4AsdUOALLdDgCz1Q4AtM0OALVxDwC2cQ8At20PALP1DgBEuwCASLsAgEy7AIBQuwCAtjUOALXlDgBUuwCAuxEOALoJDgBYuwCAXLsAgL+1DwC+CQ4AvQEOALwJDgCCFQAAo7EOAIBhAACBYQAApnEOAGC7AIC+EAEApaEOAKpNDgCrVQ4AaLsAgIQgAQCuTQ4Ar/EPAKxNDgCtRQ4An0UIAJ4NCQCdDQkAnJkLAJt1NQCaETUAmZk3AJgNMQCXJTEAliUxAJWBPQCUDT0Ak4k/AJIVOACRPTkAkD05AI9lJQDvrA0AhgAEAIegAQBsuwCAcLsAgHS7AIDv6AEAeLsAgOE0AgB8uwCA4zQBAIC7AIDjCAwAhLsAgOEIDQChoQEAiLsAgKMJBQCibQMApc0EAKQRBQCnHRkAph0ZAKmhHQCoORkAq+kcAKqpHQCtkREArAEQAK8BFACuUREAsfkVALDlFQCz6WkAsgFoALUBbAC0eWkAjLsAgJC7AICUuwCAmLsAgJy7AICguwCAowkDAKIZDQCh/Q0AoP0NAIIlJgCDBToApLsAgKi7AICGqTwAhzU+AIQdOgCFPTsAiok+AIslMgCsuwCAsLsAgI6xNACPMTYAjD0yAI0tMgCSJTYAk9EIAIREAwC+wAQAlhULAJdVDgCUXQoAlVUKAJplDgCbiQ4AtLsAgLi7AIC8uwCAwLsAgJyBAADEuwCAuLUCALm9AgC6tQIAuwkCALwZAgC9GQIAvgkCAL8BAgCwdQ0AsX0NALJJDQCzSQ0AtJUCALWdAgC2lQIAt40CAKi9DQCpUQ0AqlUNAKtpDQCsfQ0ArWUNAK5tDQCvEQ0AZLsAgILtAQCBHQAAgB0AAMi7AIDMuwCAfboAgL5wBQCznQwAhIwFANC7AIDYuwCA3LsAgLalDAC1tQwA4LsAgLv5DAC68QwAhigFAIcgBQC/GQMAvhEDAL3dDAC83QwA5LsAgKPZDADouwCA7LsAgKbhDADwuwCA9LsAgKXxDACqtQwAq70MAPi7AID8uwCArlUDAK9dAwCsmQwArZkMAAC8AIAEvACACLwAgAy8AIAQvACAFLwAgBi8AIDvvAEAHLwAgOF8DgAgvACA41ABACS8AIAovACALLwAgDC8AICzlQIANLwAgDi8AIA8vACAQLwAgLa9AgC1uQIASLwAgLs5AgC6YQIAhsgEAIesBAC/GQIAvhECAL0ZAgC8IQIAo1UFAILVBwCBxQcAgMUHAEy8AICmfQUApXkFAFC8AICr+QUAqqEFAFS8AIBYvACAr9kFAK7RBQCt2QUArOEFAFy8AICzWQcAYLwAgGS8AIC2HQcAaLwAgGy8AIC1FQcAugkHALsJBwBwvACAdLwAgL75BwC/+QcAvPkHAL35BwDUuwCARLwAgHi8AIB8vACAgLwAgIS8AICIvACAjLwAgKitBwCptQcAqrUHAKvtBwCs+QcArfkHAK7tBwCv5QcAsKkHALGpBwCySQcAs0kHALRZBwC1WQcAtkkHALdJBwC4eQcAuUUHALpBBwC7XQcAvEUHAL1NBwC+RQcAvzkHAKMdBgCQvACAlLwAgJi8AICcvACAplkGAKVRBgCgvACAq00GAKpNBgCkvACAqLwAgK+9BgCuvQYArb0GAKy9BgCAbQAAgQkAAIIZAACsvACAsLwAgISYAQC+kAEAtLwAgIYAHACHxAEAuLwAgLy8AIDAvACAxLwAgMi8AIDMvACAqF0GAKmVAQCqlQEAq6UBAKy9AQCt1QEArtEBAK/RAQDQvACA1LwAgNi8AIDcvACA4LwAgOS8AIDovACA7LwAgLhZAQC5WQEAus0AALvFAAC83QAAvcUAAL7FAAC/9QAAsLUBALG9AQCygQEAs4EBALR5AQC1eQEAtmkBALdpAQCzHQIA8LwAgPS8AIC+gBwA+LwAgLZVAgC1NQIA/LwAgLt5AgC6cQIAAL0AgAS9AIC/vQIAvr0CAL1VAgC8VQIACL0AgKNZAgAMvQCAEL0AgKYRAgAUvQCAGL0AgKVxAgCqNQIAqz0CABy9AIAgvQCArvkCAK/5AgCsEQIArRECACi9AIAsvQCAvgQdAL4AHgAwvQCANL0AgDi9AIA8vQCAgPkAAIHNAACCxQAAhCADAIawHACHlAMAQL0AgES9AIBIvQCATL0AgFC9AIBUvQCA42wCAFi9AIDhoAEAXL0AgO8UAgBgvQCAZL0AgGi9AIBsvQCAcL0AgHS9AIB4vQCA4fAGAOE0BgDjTAAA4xgGAHy9AICAvQCAhL0AgIi9AICAPQAAgQkAAIIZAACMvQCAkL0AgIS8HQDvmAAA7zgHALMxAgDRAAAAh9gdAIZsHACYvQCAtikCALUhAgCcvQCAu80CALrNAgCgvQCApL0AgL/NAgC+zQIAvc0CALzNAgCyXQYAs2UGALANBgCxVQYAtn0GALedBQC0fQYAtXUGALqNBQC7zQUAuKUFALmFBQC+xQUAv8kFALzVBQC9zQUAqL0AgKy9AICwvQCAtL0AgLi9AIC8vQCAwL0AgMS9AICqtQYAq70GAKgBBwCpvQYAroEGAK+NBgCsmQYArZUGAKNxHQDIvQCAzL0AgNC9AIDUvQCApmkdAKVhHQDYvQCAq40dAKqNHQDcvQCA4L0AgK+NHQCujR0ArY0dAKyNHQDkvQCAs9UeAOi9AIDsvQCAts0eAPC9AID0vQCAtcUeALqhHgC7oR4A+L0AgPy9AIC+pR4Av6keALyxHgC9sR4AJL0AgJS9AIAAvgCAhAQDAID5AACB+QAAghEAAAS+AICoIR4AqSEeAKo5HgCrOR4ArCkeAK0pHgCuAR4ArwEeALABHgCxAR4AsgEeALMBHgC0BR4AtQkeALY9HgC3NR4AuA0eALkVHgC6HR4AuxUeALwNHgC95R8Avu0fAL/lHwCjkR8ACL4AgIYoAQCHSAEADL4AgKaJHwClgR8AEL4AgKvlHwCq5R8AFL4AgBi+AICv7R8AruEfAK31HwCs9R8AHL4AgLMtHgAgvgCAJL4AgLaVHgAovgCALL4AgLWdHgC6sR4Au7EeADC+AIA0vgCAvnUBAL99AQC8oR4AvaEeAKjRHgCp2R4AquEeAKvhHgCsUR4ArVEeAK5RHgCvUR4AOL4AgDy+AIBAvgCARL4AgEi+AIBMvgCAUL4AgFS+AIC43QEAue0BALrlAQC7jQEAvJkBAL2ZAQC+jQEAv4UBALAxHgCxMR4AsjEeALMxHgC09QEAtf0BALb1AQC37QEAo2kdAFi+AIBcvgCAYL4AgGS+AICm0R0ApdkdAGi+AICr9R0AqvUdAGy+AIBwvgCArzkCAK4xAgCt5R0ArOUdAIFpAACAWQAAvgAEAIJhAAB4vgCAfL4AgIC+AICEvgCAhOwDAIi+AICHiAMAhuwEAIy+AICQvgCAlL4AgJi+AICohQMAqZUDAKqVAwCrpQMArL0DAK3VAwCu0QMAr9EDAJy+AICgvgCApL4AgKi+AICsvgCAsL4AgLS+AIC4vgCAuHEDALlxAwC6cQMAu3EDALzVAAC93QAAvtUAAL/NAACwtQMAsb0DALKBAwCzgQMAtFEDALVRAwC2UQMAt1EDAOFUHgDhrB8A45QBAOMoHgDjYAMAvL4AgOEIAADAvgCA75ADAMS+AIDIvgCAzL4AgNC+AIDUvgCA70wfAO9MHwCzXQIA2L4AgNy+AIDgvgCA6L4AgLYVAgC1dQIA7L4AgLs5AgC6MQIAhCQFAL7gBAC/1QIAvtUCAL0VAgC8FQIAuJEdALmZHQC6oR0Au6EdALzRHQC93R0AvtUdAL/JHQCwCR4AsQkeALIZHgCzGR4AtAkeALUJHgC2vR0At7UdAKipHgCpqR4AqrkeAKu5HgCsqR4ArakeAK55HgCveR4AgKUAAIGtAACCpQAA8L4AgIbQBACH+AQA9L4AgPi+AIB0vgCA5L4AgPy+AIAAvwCABL8AgAi/AIAMvwCAEL8AgKhxBgCpcQYAqnEGAKtxBgCsVQYArUUGAK5NBgCvRQYAsD0GALHlBgCy7QYAs+UGALT9BgC15QYAtu0GALflBgC43QYAuXEHALp1BwC7SQcAvFkHAL1ZBwC+SQcAv0kHALPZBgAUvwCAGL8AgBy/AIAgvwCAtuUGALX9BgAkvwCAuwEGALrZBgAovwCALL8AgL8BBgC+GQYAvREGALwZBgAwvwCAo9kFADS/AIA4vwCAppEFADy/AIBAvwCApfEFAKq1BQCrvQUARL8AgEi/AICuUQUAr1EFAKyRBQCtkQUAo1kHAIIZAACBGQAAgOEBAEy/AICmZQcApX0HAFC/AICrgQcAqlkHAISgAgC+rAEAr4EHAK6ZBwCtkQcArJkHAFS/AICzqQYAhugAAIcsAQC2WQEAWL8AgFy/AIC1oQYAunUBALt9AQBgvwCAZL8AgL75AQC/+QEAvGUBAL35AQCo0QYAqdkGAKplBgCrdQYArG0GAK2dAQCulQEAr40BAITsAQBovwCAbL8AgHC/AIB0vwCAeL8AgHy/AICAvwCAuGkBALlpAQC6CQEAuwUBALwdAQC9AQEAvgEBAL81AQCw9QEAsf0BALL1AQCzaQEAtHkBALV5AQC2aQEAt2EBAIS/AICIvwCAjL8AgKPhBQCQvwCApekFAKYRAgCUvwCAmL8AgJy/AICqPQIAqzUCAKwtAgCtsQIArrECAK+xAgCgvwCApL8AgL4EAwCEAAwAqL8AgKy/AICwvwCAtL8AgIANAACBFQAAgh0AALi/AIC8vwCAwL8AgIdEAwCG3AwAs+kDAMi/AIDMvwCA0L8AgNS/AIC2PQMAtT0DANi/AIC7GQMAuhEDANy/AIDgvwCAv7kAAL6xAAC9uQAAvAEDAOS/AIDhlAEA6L8AgON8AQDsvwCA8L8AgPS/AID4vwCA/L8AgADAAIAEwACACMAAgAzAAIAQwACAFMAAgO9MAgCoVQIAqV0CAKphAgCrYQIArLUCAK29AgCutQIAr60CAL5oDQAYwACAHMAAgCDAAIAkwACAgq0AAIGtAACArQAAuGEBALlhAQC6CQEAuwkBALwBAQC9AQEAvgEBAL8BAQCw1QIAsd0CALLVAgCzbQEAtHUBALV9AQC2aQEAt2EBAOFoBgDh8AcA47AAAOP0BgAowACALMAAgDDAAIA4wACAPMAAgEDAAIBEwACASMAAgL78DABMwACA72wAAO8oBgCjqQIAUMAAgIZoDACHBA0AVMAAgKZ9AgClfQIAWMAAgKtZAgCqUQIAXMAAgGDAAICv+QEArvEBAK35AQCsQQIAqIUOAKmNDgCqhQ4Aq50OAKyNDgCtvQ4ArrUOAK/dDgA0wACAZMAAgGjAAIBswACAcMAAgHTAAIB4wACAfMAAgLitDgC5tQ4Aur0OALu1DgC8dQ8AvX0PAL51DwC/bQ8AsKkOALG1DgCyvQ4As7UOALStDgC1lQ4Atp0OALeVDgCzDQ4AgMAAgITAAICIwACAjMAAgLY9DgC1BQ4AkMAAgLtxDgC6bQ4AlMAAgJjAAIC/UQ4AvmkOAL1hDgC8aQ4AghkAAKNJDgCAZQAAgRkAAKZ5DgCcwACAoMAAgKVBDgCqKQ4AqzUOAIS8AwCkwACAri0OAK8VDgCsLQ4ArSUOAKidDgCppQ4Aqq0OAKulDgCsvQ4AraEOAK7dDgCvzQ4AhiABAIdkAQCowACArMAAgLDAAIC0wACAuMAAgLzAAIC4eQEAuXkBALrNAQC7xQEAvN0BAL3FAQC+xQEAv/UBALC9DgCxjQ4AsoUOALNJAQC0WQEAtVkBALZJAQC3SQEAtS0OAMDAAIDEwACAtjkOAMjAAIDMwACAsz0OANDAAIC9hQEAvEkOAL+FAQC+hQEA1MAAgMS/AIC7UQ4AumEOAKNlDgDYwACA3MAAgODAAIDkwACApmEOAKV1DgDowACAqwkOAKo5DgDswACA8MAAgK/dAQCu3QEArd0BAKwRDgD0wACA+MAAgO/QDwD8wACAAMEAgATBAIAIwQCADMEAgBDBAIC+aAMAGMEAgBzBAIDhVA4AIMEAgONkDgAkwQCAgFkAAIFZAACCaQAAhIwDAIbwBACHFAMAKMEAgCzBAIAwwQCANMEAgDjBAIA8wQCAQMEAgETBAIBIwQCATMEAgFDBAIBUwQCAWMEAgFzBAIBgwQCAZMEAgGjBAIBswQCAqIkDAKmJAwCqmQMAq5kDAKyJAwCtiQMArj0DAK81AwCwUQMAsVEDALJVAwCzfQMAtBUDALUdAwC2FQMAtw0DALg9AwC5DQMAugUDALvtAAC89QAAvfkAAL7pAAC/6QAAcMEAgHTBAIB4wQCAsz0CAHzBAIC1LQIAtiUCAIDBAIC+aAUAiMEAgLq5AgC7uQIAvK0CAL2FAgC+/QIAv/UCAIBJAACBVQAAglUAAIQABQDvjAMAvhgEAId0BQCG/AQA4zwDAIzBAIDhUAAAkMEAgJTBAICYwQCAnMEAgKDBAICkwQCAqMEAgKzBAICwwQCAtMEAgLjBAIC8wQCA79QOAL4oBgDhdA4AwMEAgONUAQDEwQCAyMEAgMzBAIDQwQCAo/ECANTBAIDYwQCA3MEAgODBAICm6QIApeECAOTBAICrdQIAqnUCAOjBAIDswQCArzkCAK4xAgCtSQIArGECAKgpBgCpKQYAqj0GAKsxBgCsSQYArUkGAK55BgCveQYAhMEAgIIVAACBxQcAgMUHAPDBAICEaAMA9MEAgPjBAIC4yQYAuckGALrZBgC72QYAvMkGAL3JBgC+WQcAv1kHALAJBgCxCQYAshkGALMZBgC0CQYAtQkGALb5BgC3+QYAs7UGAPzBAICGrAAAh0ADAADCAIC2yQYAtcEGAATCAIC7zQYAus0GAAjCAIAMwgCAv80GAL7NBgC9zQYAvM0GABDCAICj8QYAFMIAgBjCAICmjQYAHMIAgCDCAIClhQYAqokGAKuJBgAkwgCAKMIAgK6JBgCviQYArIkGAK2JBgCoJQYAqWEGAKplBgCrfQYArGUGAK1tBgCuZQYAr50GACzCAIAwwgCANMIAgDjCAIA8wgCAQMIAgETCAIBIwgCAuPUGALn9BgC69QYAu4kGALyZBgC9mQYAvokGAL+BBgCw5QYAse0GALLlBgCz/QYAtOUGALXtBgC20QYAt80GAEzCAIC2/QYAtf0GAFDCAICz/QYAVMIAgFjCAIBcwgCAvzkGAL4xBgC9OQYAvCEGALs5BgC6MQYAFMEAgGDCAICjrQYAgnkAAIFVAACAVQAAhFwBAKatBgClrQYAaMIAgKtpBgCqYQYAhkh/AIfkAACvaQYArmEGAK1pBgCscQYAbMIAgO/cBwBwwgCAdMIAgHjCAIB8wgCAgMIAgITCAICIwgCAhKADAIzCAIC/JHkAkMIAgONoBwCUwgCA4XQGALPRAgCYwgCAvgQDAISAfQCcwgCAtvkCALXxAgCgwgCAu7UCALqpAgCkwgCAqMIAgL9RAwC+mQIAvZECALylAgCpBQIAqLkCAKsVAgCqHQIArT0CAKw9AgCvUQIArl0CAL5ofQCswgCAsMIAgLTCAIC4wgCAvMIAgMDCAIDEwgCAufEDALjpAwC78QMAuvkDAL1RAwC86QMAv00DAL5RAwCxNQIAsCkCALMBAgCyNQIAtdEDALQZAgC30QMAttkDAIIpAACjlQMAgB0AAIEVAACmvQMAyMIAgMzCAICltQMAqu0DAKvxAwDQwgCA2MIAgK7dAwCvFQIArOEDAK3VAwCGYH0Ah3h9ALNBAQCEAH8AtUEBANzCAIDgwgCAtkkBAOTCAIDowgCAu0EBALpNAQC9SQEAvEUBAL8pAQC+OQEA7MIAgO/cBgDwwgCA9MIAgPjCAID8wgCAAMMAgO8wBgCELH4A4eAGAATDAIDjiAEACMMAgON0AAAMwwCA4SwBAKPJAQAQwwCAFMMAgIVweQAYwwCApsEBAKXJAQAcwwCAq8kBAKrFAQAgwwCAJMMAgK+hAQCusQEArcEBAKzNAQCo3X0AqQV+AKoBfgCrAX4ArAF+AK0BfgCuAX4ArwF+ANTCAIAowwCALMMAgDDDAIA0wwCAgp0AAIGdAACAnQAAuC1+ALnhfgC64X4Au+F+ALzhfgC94X4AvuF+AL/hfgCwQX4AsU1+ALJZfgCzVX4AtDV+ALUlfgC2JX4AtxV+AKitfwCp0X8AqtF/AKvtfwCs9X8ArRV/AK4RfwCvEX8AOMMAgDzDAIBAwwCARMMAgIbwAwCHuAAASMMAgEzDAIC4EX8AuRl/ALohfwC7IX8AvPUAAL39AAC+9QAAv+0AALBxfwCxcX8AsnF/ALNFfwC0QX8AtU1/ALY9fwC3NX8As1l+AFDDAIBUwwCAWMMAgFzDAIC2lX4AtX1+AGDDAIC7tX4AurV+AGTDAIBowwCAv4l+AL6FfgC9kX4AvKV+AGzDAICjHX4AcMMAgHTDAICm0X4AeMMAgHzDAIClOX4AqvF+AKvxfgCAwwCAhMMAgK7BfgCvzX4ArOF+AK3VfgCwrQAAscUAALLBAACzwQAAtMUAALXNAAC28QAAt/EAALhhAAC5YQAAumEAALt9AAC8ZQAAvW0AAL5lAAC/vQMAiMMAgIzDAICQwwCAZMIAgJTDAICYwwCAnMMAgKDDAICoWQEAqVkBAKrtAACr5QAArP0AAK3lAACu5QAAr9UAAKTDAICCHQAAgR0AAIAdAACowwCArMMAgLDDAIC+VAIAhoAEAIfsAgC4wwCAvMMAgMDDAIDEwwCAyMMAgL54AwDjdH4AzMMAgOG4fQDQwwCA1MMAgNjDAIDcwwCA4MMAgOTDAIDowwCA7MMAgPDDAIDvwH4A9MMAgPjDAID8wwCAs4UDAADEAIAExACACMQAgAzEAIC2hQMAtZUDABDEAIC74QMAuokDAL4kBgAUxACAv+kDAL7hAwC99QMAvPUDAIIpAACjwQMAgB0AAIEVAACmwQMAGMQAgBzEAICl0QMAqs0DAKulAwAgxACAheAFAK6lAwCvrQMArLEDAK2xAwDh+AMAKMQAgONcHwAsxACA7/QDADDEAICGPAcAh6wCAON8fgA0xACA4YABADjEAIA8xACAQMQAgO/kEwBExACAs3EBAEjEAIBMxACAUMQAgFTEAIC2EQEAtWEBAFjEAIC7OQEAujEBAFzEAIBgxACAvxkBAL4RAQC9GQEAvCEBAGTEAIBoxACAbMQAgHDEAIB0xACAeMQAgHzEAIDvxH8AgMQAgOH8fgCExACA4/B/AIANAACBdQAAgn0AAIjEAICMxACAkMQAgKP5AQC+AAgApekBAJjEAICcxACAppkBAISoBQCgxACAq7EBAKq5AQCtkQEArKkBAK+RAQCumQEAqCkGAKkpBgCqOQYAqzkGAKwpBgCtUQYArlUGAK9NBgAkxACAhCABAKTEAICUxACAo+EBAKKZBAChGQQAoPEFALg5BgC5OQYAus0GALvFBgC83QYAvcUGAL7FBgC/8QYAsDUGALE9BgCyNQYAsw0GALQVBgC1HQYAthUGALcJBgCPoWwAs5EHAIYoAQCHfAMAtqEHAKjEAICsxACAtbEHALrlBwC77QcAsMQAgLTEAIC+7QcAv90HALz1BwC97QcAn/l4AJ7leACdcXkAnCF8AJvxfACaYX0AmZlxAJjZcACX4XAAlnl0AJVtdACUbXQAk61pAJJxaACReWgAkB1uAIIhbQCD5W8AuMQAgLzEAICGTWgAh5V1AISZaQCFmWkAiqV1AIu5dQDAxACAxMQAgI5xcACPgXwAjDlxAI05cQCSYX0Ak6l9AMjEAIDMxACAlml5AJeZBACU4XgAlX15AJpBBQCbyQUA0MQAgNTEAIDYxACA3MQAgJypAADgxACAo4ENAKKpAQChqQEA5MQAgKexCQCmAQgApU0NAKSZDQCrkRUAqoUVAKkBFACocQkArx0QAK7pEQCtvREArAEQALMBGACy8RwAscEdALDJHQC0wwCA6MQAgLXhGAC0/RkA7MQAgPDEAID0xACA+MQAgIAdAACBCQAAgv0DAPzEAICjFQUAAMUAgIaIDACHPAMACMUAgKYlBQClNQUADMUAgKtpBQCqYQUAEMUAgBTFAICvWQUArmkFAK1pBQCscQUAGMUAgBzFAICEBAwAIMUAgCTFAIDhbAYAKMUAgOPsewAsxQCAMMUAgDTFAIDvqAYAOMUAgDzFAIBAxQCARMUAgKmNBQCogQUAq60FAKqZBQCtoQUArLkFAK+lBQCuqQUAhGgNAEjFAIBMxQCAUMUAgFTFAIBYxQCAXMUAgL70DAC5SQUAuEEFALtZBQC6QQUAvUkFALxBBQC/cQUAvn0FALGpBQCwoQUAs7kFALKhBQC1mQUAtKkFALd5BQC2kQUAqNUEAKndBACq7QQAqyUDAKyFAwCtjQMArrEDAK+xAwBgxQCAZMUAgGjFAIBsxQCAgBkAAIEZAACCBQAAcMUAgLgxAgC5MQIAujUCALvBAgC8hQIAvbUCAL69AgC/tQIAsGkCALFpAgCyQQIAs0ECALQ5AgC1OQIAthECALcRAgCGoAwAh0wNAHjFAIB8xQCA76QGAIDFAICExQCA78wHAOOUAQDhpAYA4TgBAONcBgCIxQCAjMUAgJDFAICUxQCAmMUAgJzFAICzLQQAoMUAgLVFAwCkxQCAqMUAgLZFAwCsxQCAsMUAgLvlAgC65QIAvd0CALzdAgC/tQIAvrUCAATFAIB0xQCAtMUAgLjFAIC8xQCAwMUAgMTFAIDIxQCAqDEOAKk5DgCqAQ4AqwEOAKxxDgCtcQ4ArnUOAK9tDgCwGQ4AsSUOALItDgCzJQ4AtCEOALUhDgC2IQ4AtyEOALjFDgC5zQ4AusUOALvdDgC8xQ4Avc0OAL5ZDwC/WQ8As6kOAMzFAIDQxQCA1MUAgNjFAIC20Q4AtdkOANzFAIC7wQ4Auv0OAODFAIC+LAAAv8UOAL7FDgC90Q4AvNkOAIJpAACj7Q4AgFkAAIFRAACmlQ4A5MUAgOjFAIClnQ4AqrkOAKuFDgCGyAAAh6wAAK6BDgCvgQ4ArJ0OAK2VDgDsxQCAs5EOAPDFAID0xQCAtqUOAPjFAID8xQCAta0OALrhDgC74Q4AAMYAgATGAIC+6Q4Av9UOALz1DgC96Q4Ao6UKAAjGAIAMxgCAEMYAgBTGAICmzQ0Apc0NABjGAICrbQwAqm0MABzGAIAgxgCArz0MAK49DACtVQwArFUMAKgJDgCpCQ4Aqh0OAKsVDgCsIQ4ArSEOAK4hDgCvIQ4AJMYAgCjGAIAsxgCAMMYAgDTGAIA4xgCAPMYAgEDGAIC4zQEAudUBALrdAQC71QEAvM0BAL1RAQC+UQEAv1EBALAhDgCxIQ4AsiUOALM5DgC0KQ4AtRUOALYdDgC39QEARMYAgEjGAIBMxgCAo5kNAFDGAIClpQ0Apq0NAL7cAgCE7AMAWMYAgKrpDQCr6Q0ArP0NAK3hDQCu4Q0Ar90NAIBFAACBTQAAglkAAKNFAwBcxgCApUEDAKZBAwBgxgCAhsAEAIcAAwCqLQMAqyUDAKw9AwCtJQMAriUDAK8VAwCoWQIAqYUDAKqBAwCrgQMArIUDAK2NAwCusQMAr7EDAGTGAIBoxgCAbMYAgHDGAIB0xgCAeMYAgHzGAICAxgCAuGUDALltAwC6ZQMAu30DALxlAwC9bQMAvmUDAL/dAACwpQMAsa0DALKlAwCzvQMAtK0DALWdAwC2lQMAt10DALMJAgCExgCAiMYAgIzGAICQxgCAtg0CALUNAgCUxgCAu2kCALphAgCYxgCAnMYAgL9ZAgC+aQIAvWkCALxxAgCgxgCApMYAgKjGAICsxgCA4aABALDGAIDjaAMAtMYAgIEVAACAFQAA74wDAIIVAAC4xgCAvMYAgMDGAIC+cAUA4RgOAOGUDwDjOA8A49QPAISUAgDIxgCAzMYAgNDGAIDUxgCA2MYAgNzGAIDgxgCA5MYAgOjGAIDv7AEA7/gPAIZgBACHBAUAs5UBAITMBQC1dQEA7MYAgPDGAIC2dQEA9MYAgPjGAIC7UQEAulkBAL31AAC8SQEAv/UAAL71AACoJQYAqVUGAKpVBgCrrQYArLUGAK29BgCutQYAr60GAMTGAID8xgCAAMcAgATHAIAIxwCADMcAgBDHAIAUxwCAuGkHALlpBwC6CQcAuwkHALwZBwC9GQcAvg0HAL8BBwCw1QYAsd0GALLVBgCzaQcAtHkHALV5BwC2aQcAt2EHAKPdBgAYxwCAHMcAgCDHAIAkxwCApj0GAKU9BgAoxwCAqxkGAKoRBgAsxwCAMMcAgK+9BwCuvQcArb0HAKwBBgCAXQAAgW0AAIJlAACzUQcAvtgDALVxBwC2cQcANMcAgIbgAACHFAMAul0HALs5BwC8KQcAvRUHAL4dBwC/2QAAqJUGAKmdBgCqlQYAq60GAKy1BgCtvQYArrUGAK+tBgA4xwCAPMcAgEDHAIBExwCASMcAgEzHAIBQxwCAVMcAgLhxAQC5cQEAunEBALtxAQC81QEAvd0BAL7VAQC/zQEAsNUGALGxBgCysQYAs40GALSVBgC1UQEAtlEBALdRAQBYxwCAoxkGAFzHAIBgxwCApjkGAFTGAIBkxwCApTkGAKoVBgCrcQYAaMcAgGzHAICuVQYAr5EBAKxhBgCtXQYAcMcAgHTHAIB4xwCAfMcAgIDHAICExwCAiMcAgIzHAICQxwCAlMcAgJjHAICcxwCAgBkAAIEZAACCBQAAoMcAgISAAgC+gAMAhwwDAIasHADhaAYAqMcAgOOYBwCsxwCAsMcAgLTHAIDvrAcAuMcAgLzHAIDAxwCAxMcAgMjHAIDMxwCA0McAgNTHAICzZQMA2McAgLVlAwC2bQMA3McAgODHAIDkxwCAuukDALvlAwC8/QMAve0DAL7RAwC/0QMA6McAgOzHAIDwxwCA9McAgPjHAID8xwCAAMgAgATIAICogQMAqYEDAKqBAwCrgQMArIEDAK2BAwCugQMAr4EDALBBAwCxTQMAskUDALNVAwC0eQMAtXkDALYZAwC3GQMAuCkDALkpAwC6OQMAuzkDALwpAwC9KQMAvhkDAL8ZAwCBGQAAgBEAAKMhAgCCLQAApSECAAjIAIAMyACApikCABDIAIAYyACAq6ECAKqtAgCtqQIArLkCAK+VAgCulQIAhEwCAL5IHQCHZB0AhuwcAONAAwAcyACA4aABACDIAIDvnAMAJMgAgCjIAIAsyACAMMgAgDTIAIA4yACAPMgAgEDIAIBEyACASMgAgEzIAIBQyACAVMgAgFjIAIDvtAEAhKgdAOF8BgBcyACA43AGAGDIAIBkyACAaMgAgGzIAICz4QEAcMgAgHTIAIB4yACAfMgAgLblAQC19QEAgMgAgLuhAQC62QEAvuQcAIjIAIC/rQEAvqUBAL2xAQC8uQEAqBUeAKkZHgCqKR4AqykeAKw9HgCtJR4Ari0eAK8lHgAUyACAgvkfAIH5HwCA4R8AhMgAgIzIAICGHAAAh7ADALjBHgC5wR4AusEeALvBHgC8wR4AvcEeAL7BHgC/wR4AsF0eALElHgCyLR4AsyUeALQhHgC1KR4AthkeALcZHgCjoR4AkMgAgJTIAICYyACAnMgAgKalHgCltR4AoMgAgKvhHgCqmR4ApMgAgKjIAICv7R4AruUeAK3xHgCs+R4ArMgAgLOZHwCwyACAtMgAgLa9HwC4yACAvMgAgLW1HwC6mR8Au5kfAMDIAIDEyACAvnkfAL95HwC8eR8AvXkfAKglHgCpUR4AqlUeAKtpHgCseR4ArXkeAK5pHgCvaR4AyMgAgMzIAIDQyACA1MgAgNjIAIDcyACA4MgAgOTIAIC42R4Aue0eALr5HgC7+R4AvOkeAL3pHgC+nR4Av5UeALAZHgCxGR4AsukeALPpHgC0+R4AtfkeALbpHgC36R4Ao90eAIIpAACBFQAAgB0AAOjIAICm+R4ApfEeAOzIAICr3R4Aqt0eAKTHAIDwyACArz0eAK49HgCtPR4ArD0eAITIAgCzQQEAvgwBAPjIAIC2QQEA/MgAgADJAIC1UQEAuk0BALslAQCGSAAAh1ABAL4lAQC/LQEAvDEBAL0xAQAEyQCACMkAgIQEAwC+gAQADMkAgO+oHwAQyQCAFMkAgL8oMQDjdB8AGMkAgOE4HgAcyQCAIMkAgCTJAIAoyQCALMkAgDDJAICjzQIANMkAgKXdAgA4yQCAPMkAgKbNAgBAyQCARMkAgKupAgCqwQIArb0CAKy9AgCvoQIArqkCAKm1AgCoaR0AqwECAKoJAgCtAQIArBkCAK8xAgCuAQIAhGwFAEjJAIBMyQCAUMkAgFTJAICCnQEAgZ0BAICdAQC55QMAuOUDALvlAwC65QMAveUDALzlAwC/5QMAvuUDALEhAgCwSQIAsyUCALIlAgC1KQIAtCECALcVAgC2FQIAqM0CAKnRAgCq0QIAqw0BAKwVAQCtBQEArgEBAK8BAQBYyQCAXMkAgGDJAIBoyQCAvvgEAGzJAIBwyQCAdMkAgLgVAQC5HQEAuikBALspAQC89QEAvf0BAL71AQC/7QEAsEkBALFVAQCyXQEAs1UBALRNAQC1NQEAtj0BALcxAQCGoAUAh8gFAHjJAIDvvAAAfMkAgIDJAICEyQCA74weAIQsBwDh8B4AiMkAgOMcHgCMyQCA4ZQBAJDJAIDjbAAAsxkCAJTJAICYyQCAnMkAgIQACAC2xQEAtd0BAKDJAIC70QEAus0BAKTJAICoyQCAv7EBAL7JAQC9wQEAvMkBAKPZBQBkyQCArMkAgLDJAIC0yQCApgUGAKUdBgC4yQCAqxEGAKoNBgC8yQCAwMkAgK9xBgCuCQYArQEGAKwJBgDEyQCAgh0AAIEdAACAHQAAyMkAgMzJAIDQyQCA1MkAgIZAAwCHxAMA2MkAgNzJAIDgyQCA5MkAgOjJAIDsyQCAqK0HAKmxBwCqsQcAq7EHAKwZBwCtBQcArg0HAK8FBwDwyQCA9MkAgPjJAID8yQCAAMoAgATKAIAIygCADMoAgLgtBwC5zQAAusUAALvdAAC8zQAAvf0AAL71AAC/nQAAsEkHALFVBwCyUQcAsykHALQ5BwC1OQcAtiUHALcVBwCzOQYAEMoAgBTKAIAYygCAHMoAgLaFBgC1kQYAIMoAgLuRBgC6jQYAJMoAgCjKAIC//QYAvv0GAL39BgC8hQYALMoAgKN9BgAwygCANMoAgKbBBgA4ygCAPMoAgKXVBgCqyQYAq9UGAEDKAIC+bAEArrkGAK+5BgCswQYArbkGAKjpAQCp6QEAqvkBAKv5AQCs6QEArekBAK45AQCvOQEAgPUAAIH9AACCwQAARMoAgIYQAACHdAEASMoAgPTIAIC4zQAAudUAALrVAAC75QAAvP0AAL2VAAC+kQAAv5EAALBJAQCxSQEAslkBALNZAQC0SQEAtUkBALb9AAC39QAA7/QGAEzKAIBQygCAVMoAgO8wAgBYygCAXMoAgGDKAIDj4AcAZMoAgOGAAQBoygCA4ygGAGzKAIDhyAUAcMoAgLMxAgB0ygCAeMoAgJYAAAB8ygCAtikCALUhAgCAygCAu80CALrNAgCEygCAiMoAgL/NAgC+zQIAvc0CALzNAgCMygCAkMoAgJTKAICj/QIAmMoAgKXtAgCm5QIAnMoAgKDKAICkygCAqgECAKsBAgCsAQIArQECAK4BAgCvAQIAgA0AAIEVAACCHQAAqMoAgKzKAICwygCAvlQMALjKAICGwAwAhyQDALzKAIDAygCAxMoAgMjKAIDMygCA0MoAgKi5AgCpAQEAqgEBAKsBAQCsBQEArQ0BAK4FAQCvOQEAhKgNANTKAIDYygCA3MoAgODKAIDkygCA6MoAgOzKAIC4LQEAucUBALrNAQC7xQEAvMEBAL3JAQC++QEAv/kBALBNAQCxUQEAslUBALMpAQC0OQEAtSUBALYlAQC3FQEA4RgGAPDKAIDjOAcA9MoAgPjKAIC+WAwA/MoAgADLAICEbA8ABMsAgL5gDwAIywCADMsAgBDLAIDvcAYAFMsAgIAVAACBGQAAgi0AAITMDwDjYAYAGMsAgOGgAQAcywCA73QAACDLAICGyAwAh/wMACjLAIAsywCAMMsAgDTLAICjCQ4AtMoAgCTLAIA4ywCAPMsAgKYNDgClDQ4AQMsAgKsVDgCqCQ4ARMsAgEjLAICvYQ4Arn0OAK19DgCsAQ4ATMsAgLOpDgBQywCAVMsAgLapDgBYywCAXMsAgLWpDgC6SQ8Au0kPAGDLAIBkywCAvkkPAL9JDwC8SQ8AvUkPAKhdDgCpbQ4AqmUOAKt9DgCsZQ4ArW0OAK5lDgCvuQ8AaMsAgGzLAIBwywCAdMsAgHjLAIB8ywCAgMsAgITLAIC4UQ8AuV0PALpVDwC7aQ8AvH0PAL1lDwC+bQ8Av2EPALDJDwCxyQ8AstkPALPZDwC0yQ8AtckPALZ9DwC3cQ8AiMsAgLURDwC2EQ8AjMsAgIARAACBGQAAgikAALMVDwC8HQ8AvWEPAL5hDwC/fQ8AkMsAgJTLAIC6FQ8AuwkPAKOtDwCYywCAhugAAIfIAQCcywCApq0PAKWtDwCgywCAq00OAKpNDgCkywCAqMsAgK9NDgCuTQ4ArU0OAKxNDgCocQ4AqXEOAKpxDgCrcQ4ArJ0BAK2FAQCuhQEAr7UBAL7sAACsywCAsMsAgLTLAIC4ywCAvMsAgMDLAIDEywCAuGEBALlhAQC6YQEAu2EBALxhAQC9YQEAvmEBAL9hAQCwzQEAsaUBALKhAQCzoQEAtKUBALWtAQC2kQEAt5EBALP5DQDIywCAzMsAgNDLAIDUywCAtgUCALUVAgDYywCAu2ECALoJAgDcywCA4MsAgL9pAgC+YQIAvXUCALx1AgDkywCAo70NAOjLAIDsywCApkECAPDLAID0ywCApVECAKpNAgCrJQIA+MsAgPzLAICuJQIAry0CAKwxAgCtMQIAge0AAIDtAADv0AEAgh0AAADMAIAIzACAhjgEAIdQAwAMzACAEMwAgBTMAIAYzACA4eABABzMAIDjZA8AIMwAgCTMAIAozACALMwAgLORAwAwzACAtbkDALZ9AwA0zACAOMwAgDzMAIC6WQMAu1kDALxJAwC9SQMAvv0AAL/1AACoRQIAqVUCAKpVAgCrZQIArH0CAK2xAgCusQIAr7ECAL5oBQBAzACARMwAgEjMAIBMzACAUMwAgFTMAIBYzACAuF0BALltAQC6ZQEAuw0BALwZAQC9GQEAvg0BAL8FAQCw0QIAsdECALLRAgCz0QIAtHUBALV9AQC2dQEAt20BAOF4DwDjNA4A47gOAOF8DgBczACAYMwAgGTMAIBozACAbMwAgHDMAIB4zACAfMwAgIDMAIDv5A4A79QOAITMAICjnQIAgmEAAIFpAACAUQAAhJwFAKZxAgCltQIAiMwAgKtVAgCqVQIAhkgEAIfMBACv+QEArvEBAK1FAgCsRQIAqJUGAKmlBgCqrQYAq6UGAKy9BgCtoQYArqUGAK/dBgB0zACAjMwAgJDMAICUzACAmMwAgJzMAICgzACApMwAgLhtBwC5dQcAun0HALt1BwC8bQcAvcUHAL7NBwC/xQcAsKUGALGtBgCyuQYAs7EGALSRBgC1kQYAtl0HALdVBwCzJQYAqMwAgKzMAICwzACAtMwAgLYhBgC1NQYAuMwAgLtpBgC6YQYAvMwAgMDMAIC/VQYAvlUGAL1lBgC8bQYAxMwAgKNhBgDIzACAzMwAgKZlBgDQzACA1MwAgKVxBgCqJQYAqy0GANjMAIDczACArhEGAK8RBgCsKQYArSEGAKipBgCpqQYAqrkGAKuxBgCszQYArTEBAK4xAQCvMQEAgMkBAIHJAQCCBQAA4MwAgL54AgCEeAIA5MwAgOjMAIC43QEAue0BALrlAQC7jQEAvJkBAL2ZAQC+jQEAv4UBALBRAQCxUQEAslEBALNRAQC09QEAtf0BALb1AQC37QEAszEGAOzMAICGKAAAh9wBAPDMAIC2sQEAtUUGAPTMAIC7lQEAupUBAPjMAID8zACAvzkBAL4xAQC9hQEAvIUBAATMAICjdQYAAM0AgATNAICm9QEACM0AgAzNAIClAQYAqtEBAKvRAQAQzQCAFM0AgK51AQCvfQEArMEBAK3BAQAYzQCAHM0AgCDNAIAkzQCAKM0AgCzNAIAwzQCANM0AgDjNAIA8zQCAQM0AgETNAIBIzQCATM0AgFDNAIC+cAMAhQA8AOHEBgCERAIA44wHAIBhAACBYQAAgmEAAO9oAwCFRDwA4RACAFjNAIDj2CsAhlA9AIf0AwBczQCA76QHAGDNAIDvQAIAZM0AgGjNAIBszQCAcM0AgHTNAIB4zQCAhDw8AHzNAICAzQCAhM0AgIjNAIDj7AIAjM0AgOEsAQCzUQMAkM0AgJTNAICYzQCAnM0AgLZ5AwC1cQMAoM0AgLs5AwC6MQMApM0AgKjNAIC/9QAAvvUAAL0VAwC8FQMAqD0CAKmBAgCqmQIAq5ECAKy5AgCtuQIArtECAK/RAgCEqD8Avqg/AKzNAICwzQCAtM0AgLjNAIC8zQCAwM0AgLhRAQC5UQEAulEBALtRAQC8cQEAvXEBAL5xAQC/cQEAsLUCALG9AgCygQIAs4ECALRxAQC1cQEAtnEBALdxAQCAtQAAgb0AAIK1AADIzQCAhrA/AIfgPADMzQCA71QAAL4sPgDhVAYA0M0AgOOIAADUzQCA2M0AgNzNAIDgzQCAo1ECAOTNAIC/2CYA6M0AgOzNAICmeQIApXECAPDNAICrOQIAqjECAPTNAID4zQCAr/UBAK71AQCtFQIArBUCAJAtJACRBSgAkg0oAJPZKACUhS0AlTUsAJbFLACXtTEAmAEwAJkVMACalTUAmyk0AJxtNACdmTUAnj04AJ81OABUzQCAttU+ALXFPgDEzQCAs9E+APzNAIAAzgCABM4AgL/ZPgC+1T4AvcU+ALzFPgC71T4Auuk+AAjOAICPXSQAqeUJAKgVCACrBQwAqg0MAK0BEACsAQwAr0EQAK69EACh4QAADM4AgKMBBACi4QAApZ0EAKSVBACnuQgApgEIAKD1OQChBT0Aouk8AKP1PQAQzgCAFM4AgBjOAIAczgCAscEUALABFACzARgAsn0UALXVGAC01RgAIM4AgCTOAICCISUAgyklACjOAIAszgCAhsUpAIeBLACEGSkAhRkpAIoBLQCL+S0AMM4AgDjOAICOATEAj4k0AIyRMACNHTEAkkU1AJMZNQCG6AcAh+wBAJZZOQCXYTgAlPU0AJVZOQCaoTwAm0U9ADzOAIBAzgCAgX0AAIB9AACcQTwAglUAAKjpPwCp/T8Aqgk/AKsFPwCsHT8ArQU/AK4NPwCvBT8ARM4AgEjOAIBMzgCAUM4AgFTOAIBYzgCAXM4AgGDOAIC4DT8AuRU/ALoVPwC7JT8AvD0/AL39PgC+9T4Av+0+ALB9PwCxQT8AskE/ALNBPwC0QT8AtU0/ALY9PwC3NT8Ao4E8AGTOAIBozgCAbM4AgHDOAICmhTwApZU8AHTOAICrhTwAqrk8AHjOAIB8zgCAr4k8AK6FPACtlTwArJU8AITIAwCz7T0AgM4AgITOAIC26T0AiM4AgIzOAIC16T0Auq09ALu1PQCQzgCAlM4AgL6dPQC/IQIAvKU9AL2VPQCoDT0AqR09AKohPQCrPT0ArCU9AK0tPQCuJT0Ar1k9AIANAACBFQAAgh0AAJjOAICczgCAoM4AgKjOAIC+uAMAuLkCALlhAgC6GQIAuxkCALwJAgC9CQIAviECAL8hAgCwLT0AsTU9ALI1PQCzBT0AtB09ALWhAgC2oQIAt6ECAKOpPACszgCAhigFAIfsAgCwzgCApq08AKWtPAC0zgCAq/E8AKrpPAC4zgCAvM4AgK9lAwCu2TwArdE8AKzhPADAzgCAsykCAMTOAIDIzgCAtvkCAMzOAIDQzgCAtfkCALrVAgC73QIA1M4AgNjOAIC+eQEAv3kBALzFAgC9eQEA3M4AgODOAICj5QIA5M4AgKU1AgDozgCA7M4AgKY1AgDwzgCA9M4AgKsRAgCqGQIArbUBAKwJAgCvtQEArrUBAOPwPgDhrD8A4UA+AON8PwD4zgCA/M4AgADPAIAEzwCAgA0AAIERAACCEQAACM8AgO+oPgAMzwCAEM8AgO8gPgCoLQUAqW0FAKplBQCrrQUArLUFAK29BQCutQUAr60FAKTOAICE6AMAvuADABTPAICGEAMAh5gDABjPAIAczwCAuGkGALlpBgC6AQYAuwEGALwFBgC9DQYAvjEGAL8xBgCw1QUAsd0FALLVBQCzaQYAtHkGALV5BgC2aQYAt2EGAKg5BgCpgQcAqpkHAKuRBwCsuQcArbkHAK7ZBwCv1QcAIM8AgCTPAIA0zgCAKM8AgCzPAIAwzwCANM8AgDjPAIC4VQcAuV0HALppBwC7aQcAvAEHAL0BBwC+AQcAvwEHALCtBwCxsQcAsrEHALOFBwC0nQcAtXUHALZ9BwC3cQcAsxEGADzPAIBAzwCARM8AgEjPAIC2OQYAtTEGAEzPAIC7dQYAumkGAFDPAIBUzwCAv7EGAL5ZBgC9UQYAvGUGAFjPAICjVQYAXM8AgGDPAICmfQYAZM8AgGjPAICldQYAqi0GAKsxBgBszwCAcM8AgK4dBgCv9QYArCEGAK0VBgCouQEAqbkBAKopAQCrKQEArD0BAK0lAQCuLQEAryUBAHTPAICCHQAAgR0AAIAdAAB4zwCAfM8AgIDPAIC+cAEAuIEAALmNAAC6hQAAu5kAALyJAAC9vQAAvrUAAL99AACwXQEAseEAALLhAACz4QAAtOEAALXpAAC20QAAt9EAAITIAgCzpQIAhzgDAIYoAgC2oQIAiM8AgIzPAIC1sQIAup0CALshAwC+bAMAkM8AgL4hAwC/KQMAvDEDAL0xAwCj4QIAlM8AgJjPAICczwCAoM8AgKblAgCl9QIApM8AgKtlAwCq2QIAqM8AgKzPAICvbQMArmUDAK11AwCsdQMAqZkAAKiRAACrzQAAqqEAAK3dAACs3QAAr8UAAK7NAAC+LA0AsM8AgLTPAIC4zwCAvM8AgMDPAIDEzwCAyM8AgLnBAQC4eQAAu8EBALrJAQC9wQEAvNkBAL/FAQC+xQEAsY0AALCNAACzQQAAskkAALVBAAC0WQAAt0EAALZJAADMzwCA0M8AgNTPAIDYzwCA3M8AgO9QBwDgzwCA5M8AgL74DwDjdAcA6M8AgOF8BACAGQAAgQkAAIJ5AADszwCA8M8AgLNpAQD4zwCAhMQCALYdAQD8zwCAANAAgLUVAQC6CQEAuwkBAIboDQCH6A0Avt0BAL/FAQC83QEAvdUBAATQAIAI0ACADNAAgBDQAIDv1AAAFNAAgBjQAIDvTAEA47ADAOG0BgDhgAEA45gBABzQAIAg0ACAJNAAgCjQAIAs0ACAMNAAgKPlAQCEwA0ApZkBADTQAIA40ACAppEBADzQAIBA0ACAq4UBAKqFAQCtWQEArFEBAK9JAQCuUQEA9M8AgETQAIBI0ACATNAAgFDQAIBU0ACAWNAAgFzQAICoaQ8AqXEPAKpxDwCrrQ8ArLUPAK29DwCutQ8Ar6kPALDZDwCx9Q8Asv0PALP1DwC07Q8AtZUPALadDwC3iQ8AuLkPALmFDwC6jQ8Au2kAALx5AAC9eQAAvmkAAL9pAACBnQAAgJ0AAGDQAICCBQAAZNAAgGjQAIBs0ACAcNAAgIaAAwCH9AMAdNAAgHjQAIB80ACAgNAAgITQAICEzwCAs5kPAIjQAICM0ACAkNAAgJTQAIC2XQ8AtV0PAJjQAIC7UQ8Aun0PAJzQAICg0ACAvzEPAL5JDwC9QQ8AvEkPAKNZDgCk0ACAqNAAgKzQAICw0ACApp0OAKWdDgC00ACAq5EOAKq9DgC40ACAvNAAgK/xDgCuiQ4ArYEOAKyJDgDA0ACAxNAAgMjQAIDM0ACAgBkAAIEZAACCBQAA0NAAgISgAQDU0ACAh+gBAIYABADY0ACA3NAAgODQAIDk0ACAqBUBAKkdAQCqFQEAqyUBAKw9AQCtJQEAri0BAK8lAQDo0ACA7NAAgPDQAID00ACA+NAAgPzQAIAA0QCABNEAgLjJAAC5yQAAutkAALvRAAC8+QAAvfkAAL6ZAAC/mQAAsCUBALEtAQCyJQEAsz0BALQtAQC1HQEAthUBALf5AAAI0QCADNEAgBDRAICzkQIAFNEAgLW5AgC2qQIAGNEAgBzRAIAg0QCAuu0CALvlAgC8/QIAveUCAL7lAgC/1QIApvECACTRAIAo0QCApeECACzRAICjyQIAMNEAgDTRAICuvQIAr40CAKylAgCtvQIAqrUCAKu9AgA40QCAPNEAgID5AACB+QAAggUAAEDRAIC+yAMAhBgDAEjRAIBM0QCAUNEAgFTRAIBY0QCAXNEAgGDRAIBk0QCAhhgEAIecAwBo0QCAbNEAgHDRAIB00QCAeNEAgHzRAIDvsAIAgNEAgOGUAQCE0QCA42wCAIjRAICM0QCAkNEAgJTRAICY0QCA79APAJzRAICg0QCApNEAgKjRAIDhrAEArNEAgONsAACAMQAAgT0AAIIdAADv9A4A42wOALDRAIDhLA8AvnAFALM5AgCEDAUAhugEAIdgBQDcAAAAtvECALX5AgC40QCAu9UCALrVAgC80QCAwNEAgL91AQC+dQEAvcUCALzFAgDE0QCA4fQOAMjRAIDjUA4AzNEAgNDRAIDU0QCA2NEAgNzRAIDg0QCA5NEAgOjRAIDs0QCA8NEAgPTRAIDv5A8ApmUCAPjRAID80QCApW0CAADSAICjrQIABNIAgAjSAICu4QEAr+EBAKxRAgCtUQIAqkECAKtBAgAM0gCAENIAgKiZBgCpmQYAqqkGAKupBgCsuQYArbkGAK6pBgCvqQYAFNIAgIIdAACBHQAAgB0AABjSAIAc0gCAINIAgL50AwC4rQYAubUGALq9BgC7tQYAvK0GAL1RBwC+UQcAv1EHALChBgCxoQYAsqEGALOhBgC0oQYAtaEGALalBgC3mQYARNEAgLMlBgCExAMAtNEAgLY9BgAk0gCAKNIAgLU1BgC6YQYAu2EGAIYIAACHiAAAvmEGAL9hBgC8cQYAvXEGAKNhBgAs0gCAMNIAgDTSAIA40gCApnkGAKVxBgA80gCAqyUGAKolBgBA0gCARNIAgK8lBgCuJQYArTUGAKw1BgCoXQYAqW0GAKplBgCrjQYArJkGAK2FBgCujQYAr4UGAEjSAIBM0gCAUNIAgFTSAIBY0gCAXNIAgGDSAIBk0gCAuIUGALmNBgC6mQYAu5UGALyNBgC9rQYAvqUGAL99AQCw/QYAscUGALLNBgCzxQYAtN0GALXFBgC2zQYAt8UGALPtBgBo0gCAbNIAgHDSAIB00gCAtgUGALURBgB40gCAuwEGALo5BgB80gCAgNIAgL8BBgC+GQYAvREGALwZBgCE0gCAo6kGAIjSAICM0gCApkEGAJDSAICElAEApVUGAKp9BgCrRQYAvqABAJjSAICuXQYAr0UGAKxdBgCtVQYAqJkCAKnBAgCqwQIAq8ECAKzBAgCtyQIArvECAK/xAgCB7QMAgO0DAJzSAICC+QMAhpAcAId0AwCg0gCApNIAgLjFAwC5zQMAusUDALvdAwC8zQMAvf0DAL71AwC/nQMAsEEDALFBAwCyQQMAs0EDALRBAwC1QQMAtkEDALdBAwCzSQIAqNIAgKzSAICw0gCAtNIAgLZJAgC1SQIAuNIAgLuFAwC6hQMAvNIAgMDSAIC/hQMAvoUDAL2VAwC8lQMAxNIAgKMNAgDI0gCAzNIAgKYNAgDQ0gCA1NIAgKUNAgCqwQMAq8EDANjSAIDc0gCArsEDAK/BAwCs0QMArdEDAOOYAQDhpAcA4VgGAONYBgDhoAEA4NIAgOPQAADk0gCA6NIAgOzSAIDvOAAA8NIAgO/0AQD00gCA+NIAgO/4BgCAeQAAgRUAAIIdAACEAB0A/NIAgADTAIC+EB0ACNMAgIbAHACHrB0ADNMAgBDTAIAU0wCAGNMAgBzTAIAg0wCAu8UFALqhBQC5qQUAuJEFAL/NBQC+zQUAvckFALzVBQCzHQYAsh0GALEdBgCwHQYAt6EFALa9BQC1vQUAtL0FAKu9BgCqvQYAqb0GAKi9BgCvfQYArn0GAK19BgCsfQYAJNMAgCjTAIAs0wCAMNMAgDTTAIA40wCAPNMAgEDTAICo7R0AqS0eAKoxHgCrMR4ArJUeAK2dHgCulR4Ar40eAATTAIBE0wCASNMAgEzTAIBQ0wCAVNMAgFjTAIBc0wCAuKkeALmpHgC6XR8Au1EfALxxHwC9cR8AvnUfAL9pHwCw/R4Asc0eALLFHgCzrR4AtLkeALW5HgC2rR4At6UeALO5HgBg0wCAZNMAgGjTAICU0gCAth0eALUdHgBs0wCAuwkeALo5HgBw0wCAhOADAL99HgC+fR4AvXkeALwRHgCCaQAAo/0eAIBFAACBUQAAplkeAL6cAwB00wCApVkeAKp9HgCrTR4AhkgAAIdsAACuOR4ArzkeAKxVHgCtPR4AqF0eAKltHgCqZR4Aq30eAKxlHgCtbR4ArmUeAK/9HgB40wCAfNMAgIDTAICE0wCAiNMAgIzTAICQ0wCAlNMAgLhpAQC5aQEAunkBALt5AQC8aQEAvWkBAL7dAQC/1QEAsIUeALGNHgCyhR4As50eALSFHgC1jR4AtoUeALdZAQCz7R4AmNMAgJzTAICg0wCApNMAgLbtHgC17R4AqNMAgLtJHgC6QR4ArNMAgLDTAIC/SR4AvkEeAL1JHgC8UR4AtNMAgKOpHgC40wCAvNMAgKapHgDA0wCAxNMAgKWpHgCqBR4Aqw0eAMjTAIDM0wCArgUeAK8NHgCsFR4ArQ0eAKghAwCpIQMAqiEDAKshAwCsIQMArSEDAK4hAwCvIQMA0NMAgNTTAIDY0wCAvmACANzTAIDg0wCA6NMAgOzTAIC4iQMAuYkDALqdAwC7lQMAvLkDAL25AwC+eQAAv3kAALDlAwCx7QMAsuUDALP9AwC07QMAtd0DALbVAwC3vQMAgKkAAIG1AACCvQAAs6UDAPDTAIC1pQMAtq0DAPTTAICE4AIA+NMAgLotAwC7JQMAvD0DAL0lAwC+JQMAvxUDAKPpAwD80wCAhmgEAIeAAwAA1ACApuEDAKXpAwAE1ACAq2kDAKphAwAI1ACADNQAgK9ZAwCuaQMArWkDAKxxAwAQ1ACAFNQAgBjUAIAc1ACAINQAgOE8HwAk1ACA40AeACjUAIAs1ACAMNQAgO+MHgA01ACAONQAgDzUAIBA1ACARNQAgIIlAACBEQAAgB0AAEjUAIDj5AMATNQAgOGsAQBQ1ACA77ADAIRkAgC+YAUAhtAEAIdEBQBY1ACAXNQAgGDUAIBk1ACAaNQAgGzUAIBw1ACAdNQAgHjUAIDvsAEAhKQFAOHcHgB81ACA4xABAIDUAICE1ACAiNQAgIzUAICzUQEAkNQAgJTUAICY1ACAnNQAgLYRAQC1fQEAoNQAgLsNAQC6DQEApNQAgKjUAIC//QAAvv0AAL39AAC8/QAAqDkGAKk5BgCqmQYAq5EGAKy1BgCt0QYArskGAK/BBgBU1ACArNQAgLDUAIC01ACAgA0AAIGxAACCsQAAuNQAgLhhBwC5YQcAumEHALt9BwC8ZQcAvW0HAL5lBwC/HQcAsIkGALGJBgCyaQcAs2kHALR5BwC1eQcAtmkHALdlBwCjEQYAvNQAgMDUAIC+gAMAxNQAgKZRBgClPQYAyNQAgKtNBgCqTQYAhggAAId8AwCvvQcArr0HAK29BwCsvQcAzNQAgNDUAICzSQcA1NQAgLVZBwDY1ACA3NQAgLZRBwDg1ACA5NMAgLtBBwC6dQcAvUUHALxFBwC/RQcAvkUHAKh5BgCpeQYAqokGAKuJBgCsmQYArZkGAK6JBgCviQYA5NQAgOjUAIDs1ACA8NQAgPTUAID41ACA/NQAgADVAIC4jQYAuZUGALqVBgC7pQYAvL0GAL1xAQC+cQEAv3EBALD5BgCxzQYAstkGALPZBgC0yQYAtckGALa9BgC3tQYAowEGAATVAIAI1QCADNUAgBDVAICmGQYApREGABTVAICrCQYAqj0GABjVAIAc1QCArw0GAK4NBgCtDQYArA0GACDVAIAk1QCAKNUAgCzVAICAGQAAgRkAAIIFAAAw1QCAhKwBAL6sAQCH6AAAhkwPADjVAIA81QCAQNUAgETVAIConQIAqcUCAKrNAgCrwQIArMUCAK3NAgCu+QIArz0DAEjVAIBM1QCAUNUAgFTVAIC+PAwAWNUAgFzVAIBg1QCAuMkDALnJAwC62QMAu9EDALz5AwC9+QMAvpkDAL+ZAwCwRQMAsU0DALJFAwCzXQMAtEUDALVNAwC2RQMAt/kDALNFAgBk1QCAaNUAgGzVAIBw1QCAtk0CALVNAgB01QCAu4kDALqBAwB41QCAfNUAgL+JAwC+gQMAvYkDALyRAwCA1QCAowECAITVAICI1QCApgkCAIzVAICQ1QCApQkCAKrFAwCrzQMAlNUAgJjVAICuxQMAr80DAKzVAwCtzQMAgO0BAIEVAACCEQAAhAACAJzVAIDhpAEAoNUAgOPsAACo1QCArNUAgLDVAIDvMAAAtNUAgLjVAIC81QCAwNUAgIbgDACH9AIAxNUAgMjVAIDM1QCA0NUAgO/MBgDU1QCA4bAHANjVAIDjEAYA3NUAgODVAIDk1QCA6NUAgOzVAIDw1QCA9NUAgPjVAID81QCAANYAgATWAIAI1gCA7+gBAIUYDwDhzAYADNYAgOMcBgCAKQAAgR0AAIIFAAAQ1gCAszkCAITMDQCGaA8Ah/wMAOHQ0gO28QEAtfkBABjWAIC72QEAutEBAL7kDAAc1gCAv30BAL59AQC9fQEAvMEBAKjxDQCp8Q0AqvENAKvxDQCsMQ4ArTEOAK4xDgCvMQ4ApNUAgBTWAIAg1gCAJNYAgCjWAIAs1gCAMNYAgDTWAIC46Q4AuekOALqJDgC7hQ4AvJ0OAL2BDgC+gQ4Av7UOALBVDgCxXQ4AslUOALPpDgC0+Q4AtfkOALbpDgC34Q4Ao3kNADjWAIA81gCAQNYAgETWAICmsQ4ApbkOAEjWAICrmQ4AqpEOAEzWAIBQ1gCArz0OAK49DgCtPQ4ArIEOAFTWAICz7Q8AWNYAgFzWAIC26Q8AYNYAgGTWAIC16Q8Auq0PALu1DwA01QCAaNYAgL6VDwC/mQ8AvK0PAL2hDwCoIQ4AqSEOAKohDgCrPQ4ArCUOAK0tDgCuJQ4Ar1UOAGzWAIBw1gCAdNYAgHjWAICAHQAAgQkAAIK9AAB81gCAuDkOALk5DgC6yQ4Au8kOALzZDgC92Q4AvskOAL/JDgCwLQ4AsTUOALI9DgCzMQ4AtBUOALUZDgC2CQ4AtwkOAKOpDgCA1gCAhIACAL6AAQCFAAQApq0OAKWtDgCI1gCAq/EOAKrpDgCGKAcAhxgAAK/dDgCu0Q4AreUOAKzpDgCM1gCAs+0BAJDWAICU1gCAtuUBAJjWAICc1gCAte0BALplAQC7bQEAoNYAgKTWAIC+bQEAv10BALx1AQC9bQEAqN0NAKnpDQCqIQIAqyECAKwhAgCtIQIAriECAK8hAgCo1gCArNYAgLDWAIC01gCAohECAKMRAgCgqQ4AodUCALiJAgC5iQIAup0CALuVAgC8vQIAvXUDAL59AwC/dQMAsOUCALHtAgCy5QIAs/0CALTtAgC13QIAttUCALe9AgCjqQIAj8UaALjWAIC81gCAwNYAgKahAgClqQIAxNYAgKspAgCqIQIAyNYAgMzWAICvGQIArikCAK0pAgCsMQIAniUOAJ/lDgCc6QoAnRUKAJpFFgCbRQoAmFkWAJlRFgCWcRIAl4ETAJRVEgCV7RIAktEeAJPZHgCQtRoAkVUeAISpHwCFJR8AhiUfAIexEwDQ1gCA1NYAgIJZGwCDURsAjEUSAI2lFwCOpRcAj7kXAIA5+wHY1gCAijkTAIutEwCUmQsAlaEPAJZpDwCX3Q8A3NYAgO+cDwCSyQsAk30LAJxFAwDjeA4A4NYAgOGYDADk1gCAhHgCAJqRAwCbXQMA4QQAAL6IBQDj3OoD6NYAgOzWAIDw1gCA7+wAAO+MDgDhcA4A4fwOAOMwAADjeA4AgSEAAIA5AADvtO0DgikAALMJAgD41gCAhmgEAIcsBQD81gCAtg0CALUNAgAA1wCAu8UBALrFAQAE1wCACNcAgL99AQC+fQEAvdUBALzVAQCE1gCA9NYAgAzXAIAQ1wCAFNcAgBjXAIAc1wCAINcAgKi9BQCp5QUAquEFAKvhBQCs5QUAre0FAK7RBQCv0QUAsGEGALFhBgCyYQYAs2EGALTZBgC12QYAtskGALfBBgC4yQYAuckGALp5BwC7eQcAvEUHAL0lBwC+EQcAvw0HAKNJBQAk1wCAKNcAgCzXAIAw1wCApk0FAKVNBQA01wCAq4UGAKqFBgA41wCAPNcAgK89BgCuPQYArZUGAKyVBgBA1wCARNcAgEjXAIBM1wCAUNcAgFTXAIBY1wCAXNcAgIA5AACBOQAAggUAAGDXAIC+uAMAhLgDAGjXAIBs1wCAqMUGAKnVBgCq1QYAq+UGAKz9BgCtHQEArhUBAK8NAQBk1wCAcNcAgIaIAQCHHAEAdNcAgHjXAIB81wCAgNcAgLjpAQC56QEAuokBALuJAQC8mQEAvZkBAL6JAQC/iQEAsHUBALF9AQCydQEAs+kBALT5AQC1+QEAtukBALfhAQCzXQYAhNcAgIjXAICM1wCAhLwBALadAQC1dQYAkNcAgLu5AQC6sQEAlNcAgJjXAIC/PQEAvj0BAL09AQC8oQEAnNcAgKMZBgCg1wCApNcAgKbZAQCo1wCArNcAgKUxBgCq9QEAq/0BALDXAIC01wCArnkBAK95AQCs5QEArXkBAKj5AgCp+QIAqi0DAKs9AwCsJQMArS0DAK4lAwCvmQMAuNcAgLzXAIDA1wCAxNcAgIANAACBsQAAgrEAAMjXAIC4lQMAuZ0DALqhAwC7oQMAvHEAAL1xAAC+cQAAv3EAALDpAwCx6QMAsvUDALPFAwC03QMAtbUDALaxAwC3sQMAvswDAMzXAIDQ1wCA2NcAgNzXAIDg1wCA5NcAgO/kAgDo1wCA4ZQBAOzXAIDjLAEA8NcAgPTXAICHGAMAhhz8A7tNAwC6TQMA+NcAgPzXAIC/EQMAvnkDAL1xAwC8QQMAs8UDAITo/AMA2ACABNgAgAjYAIC2zQMAtc0DAAzYAICkAfwDpSX/A6bZ/wOnAfgDENgAgKEVAwCiHQMAoz0CAKwR9wOtAfADri3zA68B8wOoEfsDqZn7A6oB9AOrHfcDtAHoA7Vl6wO+xPwDhMT8A7AB7AOxVe8Dsk3vA7Nx7gMU2ACAGNgAgBzYAIAg2ACAJNgAgCjYAIAs2ACAMNgAgOFQBgDhNAQA42wBAOPoBgA02ACAONgAgDzYAIBA2ACAgDUAAIE9AACCNQAASNgAgEzYAIBQ2ACA77ABAO/ABgCj5QIAVNgAgIbo/AOHfP0DWNgAgKbtAgCl7QIAXNgAgKttAgCqbQIAYNgAgGTYAICvMQIArlkCAK1RAgCsYQIAqI3+A6mV/gOqnf4Dq5X+A6yx/gOtvf4Drqn+A6+p/gNE2ACAaNgAgGzYAIBw2ACAdNgAgHjYAIB82ACAgNgAgLgl/wO5Lf8DuiX/A7s9/wO8Jf8DvS3/A74l/wO/zf8DsKn+A7Gp/gOygf4Ds4H+A7SB/gO1if4Dtmn/A7cd/wOE2ACA4SD8A4jYAIDjePwDjNgAgJDYAICU2ACAmNgAgJzYAICg2ACApNgAgKjYAICAHQAAgXEAAIJxAADvDP0Ds1X+A6zYAICw2ACAvkAAALTYAIC2ff4DtXn+A7jYAIC7Lf4Dui3+A4boAACHrAAAvw3+A74F/gO9Ff4DvBX+A6OV/wO82ACAwNgAgMTYAIDI2ACApr3/A6W5/wPM2ACAq+3/A6rt/wPQ2ACA1NgAgK/N/wOuxf8DrdX/A6zV/wPY2ACAs/H+A9zYAIDg2ACAto3+A+TYAIDo2ACAtY3+A7pFAQC7TQEA7NgAgPDYAIC+RQEAv00BALxVAQC9TQEAqC3+A6k1/gOqPf4Dq0n+A6xB/gOtSf4DrnH+A69x/gP02ACA+NgAgPzYAIAA2QCABNkAgAjZAIAM2QCAENkAgLhJAQC5VQEAul0BALtVAQC8TQEAvXUBAL59AQC/dQEAsMUBALHNAQCyxQEAs90BALTFAQC1zQEAtsUBALd9AQCjtf0DFNkAgBjZAICExAMAHNkAgKbJ/QOlyf0DINkAgKsJAgCqAQIAKNkAgL7sAgCvCQIArgECAK0JAgCsEQIAgEkAAIFVAACCVQAAo0UDACzZAIClRQMApkUDADDZAICGwAQAhxQDAKopAwCrJQMArD0DAK0hAwCuIQMArxUDADTZAIA42QCAPNkAgEDZAIBE2QCASNkAgEzZAIBQ2QCAqH0CAKmhAwCqoQMAq6EDAKyhAwCtqQMArpEDAK+RAwCwgQMAsY0DALKFAwCzmQMAtIkDALW9AwC2tQMAt30DALhFAwC5TQMAukUDALtdAwC8RQMAvU0DAL5FAwC/+QAA1NcAgLMNAgBU2QCAWNkAgLYNAgBc2QCAYNkAgLUNAgC6YQIAu20CAGTZAIBo2QCAvmkCAL9dAgC8dQIAvWkCAGzZAIBw2QCAdNkAgHjZAIB82QCA4aQBAIDZAIDjQAMAhNkAgIjZAICM2QCA77gDAIAVAACBHQAAggUAAJDZAICEgAIAvsgFAIcYBQCGLAQAmNkAgJzZAICg2QCA76gBAKTZAIDhdP4DqNkAgOPw/gOs2QCAsNkAgLTZAIC42QCAvNkAgMDZAIDE2QCAs5EBAMjZAIC1UQEAtlEBAMzZAIDQ2QCA1NkAgLp9AQC7dQEAvG0BAL39AAC+9QAAv+kAAKgpBgCpVQYAqlUGAKuNBgCslQYArZ0GAK6VBgCvjQYAlNkAgNjZAIDc2QCA4NkAgOTZAIDo2QCA7NkAgPDZAIC4bQcAuQUHALoNBwC7BQcAvB0HAL0FBwC+AQcAvz0HALD1BgCx/QYAsvUGALNlBwC0fQcAtWEHALZhBwC3VQcA4xAFAPTZAIDh8AQA+NkAgIAdAACBCQAAgjkAAPzZAIAA2gCAhOgDAL7gAwAE2gCA78wFAAjaAICHOAAAhhgAAKOdBgAM2gCAENoAgBTaAIAY2gCApl0GAKVdBgAc2gCAq3kGAKpxBgAg2gCAJNoAgK/lBwCu+QcArfEHAKxhBgCokQYAqZEGAKqRBgCrrQYArLkGAK2lBgCurQYAr6UGACjaAIAs2gCAMNoAgDTaAIA42gCAPNoAgEDaAIBE2gCAuGUBALltAQC6ZQEAu30BALxlAQC9bQEAvmUBAL/ZAQCw3QYAsaUGALKtBgCzpQYAtKEGALWpBgC2mQYAt5kGALMZBgBI2gCATNoAgFDaAIBU2gCAtiUGALUxBgBY2gCAu2EGALoZBgBc2gCAYNoAgL9tBgC+ZQYAvXEGALx5BgBk2gCAo10GAGjaAIBs2gCApmEGAHDaAICEmAEApXUGAKpdBgCrJQYAvqQBAHjaAICuIQYArykGAKw9BgCtNQYAqcUCAKixAgCrxQIAqsUCAK3NAgCsxQIAr/UCAK71AgB82gCAgNoAgITaAICI2gCAjNoAgJDaAICU2gCAmNoAgLnJAwC4wQMAu9kDALrBAwC9+QMAvMkDAL+ZAwC+8QMAsUUDALBFAwCzRQMAskUDALVFAwC0RQMAt0UDALZFAwCASQMAgUkDAIJdAwCzRQIAvtwMALVFAgC2RQIAnNoAgIYADACH5AMAuokDALuJAwC8mQMAvZkDAL6JAwC/iQMAowkCAKDaAICk2gCAqNoAgKzaAICmCQIApQkCALDaAICrxQMAqsUDALTaAIC42gCAr8UDAK7FAwCt1QMArNUDALzaAIDA2gCAxNoAgCTZAIDvAAAAyNoAgMzaAIDQ2gCA4+gAANTaAIDhjAEA2NoAgNzaAIDg2gCA6NoAgOzaAICAbQAAgXUAAIJ9AACEQAIAhvAMAId4DQDw2gCA9NoAgPjaAID82gCAANsAgATbAIAI2wCADNsAgBDbAIAU2wCAGNsAgBzbAIAg2wCAJNsAgCjbAIAs2wCAMNsAgO/MAQCE7AwA4TAGADTbAIDjGAEAONsAgDzbAIBA2wCARNsAgLPlAQBI2wCAhIQPAEzbAIBQ2wCAtuUBALX1AQBY2wCAu30BALrZAQC+oAwAXNsAgL8hAQC+OQEAvTEBALw5AQCo7Q0AqSUOAKotDgCrJQ4ArD0OAK0lDgCuLQ4AryUOAOTaAICC9Q8AgeUPAIDpDwBU2wCAYNsAgIaYAACHDAMAuK0OALlFDwC6TQ8Au0UPALxFDwC9TQ8AvkUPAL95DwCwXQ4AsfkOALKtDgCzpQ4AtL0OALWlDgC2pQ4At5UOAGTbAIDv7AwAaNsAgGzbAIBw2wCAdNsAgHjbAIB82wCAvugAAIDbAICE2wCAiNsAgIzbAIDj6A0AkNsAgOEEDACj5Q4AlNsAgJjbAICc2wCAoNsAgKblDgCl9Q4ApNsAgKt9DgCq2Q4AqNsAgKzbAICvIQ4ArjkOAK0xDgCsOQ4AqDkOAKk5DgCqUQ4Aq1EOAKxxDgCtcQ4ArnEOAK9xDgCw2wCAtNsAgLjbAIC82wCAgBkAAIEZAACCBQAAwNsAgLjRDgC50Q4AutEOALvlDgC84Q4AveEOAL7hDgC/4Q4AsBEOALERDgCyEQ4AsxEOALTxDgC18Q4AtvEOALfxDgCz2Q4AyNsAgIYoAACHuAAAzNsAgLbxDgC1+Q4A0NsAgLvVDgC61Q4A1NsAgNjbAIC/NQ4AvjUOAL3FDgC8xQ4A3NsAgKOdDgDg2wCA5NsAgKa1DgDo2wCA7NsAgKW9DgCqkQ4Aq5EOAPDbAID02wCArnEOAK9xDgCsgQ4ArYEOAKjdDQCp6Q0Aqj0CAKuNAgCsmQIArZkCAK6JAgCviQIAvqwEAPjbAID82wCAhCADAADcAIAE3ACACNwAgAzcAIC4iQIAuYkCALqZAgC7kQIAvLkCAL25AgC+eQMAv3kDALD5AgCx+QIAss0CALPFAgC03QIAtcUCALbBAgC3uQIAs7UCABDcAIAU3ACAGNwAgBzcAIC2GQIAtRECACDcAIC7PQIAuj0CACTcAIAo3ACAvwECAL4ZAgC9EQIAvBkCACzcAICj8QIAMNwAgDjcAICmXQIAPNwAgEDcAIClVQIAqnkCAKt5AgCGSAUAh6wEAK5dAgCvRQIArF0CAK1VAgCohQIAqZUCAKqVAgCrpQIArL0CAK3VAgCu0QIAr9ECAETcAIBI3ACATNwAgFDcAICB8QEAgJkBAHTaAICC9QEAuHkBALl5AQC6zQEAu8UBALzdAQC9xQEAvsUBAL/1AQCwtQIAsb0CALKBAgCzgQIAtFUBALVdAQC2SQEAt0kBAFTcAIBY3ACAXNwAgO/UAQCEEAUAYNwAgGTcAIDvjA4AvuwFAOHsDgBo3ACA4xwOAGzcAIDhlAEAcNwAgONkDgCzXQIAdNwAgHjcAIB83ACAgNwAgLYVAgC1dQIAhNwAgLs5AgC6MQIAiNwAgIzcAIC/2QEAvtEBAL0VAgC8FQIAo50FADTcAICQ3ACAlNwAgJjcAICm1QUApbUFAJzcAICr+QUAqvEFAKDcAICk3ACArxkGAK4RBgCt1QUArNUFAIBRAACBWQAAgmEAALOVBgCo3ACAtXEHALZxBwCs3ACAhkADAIdUAwC67QcAu+UHALzlBwC97QcAvtEHAL/NBwCw3ACAtNwAgLjcAIC83ACAwNwAgMTcAIDvQAQAyNwAgOEwBwDM3ACA45QEANDcAIDU3ACA2NwAgNzcAIDg3ACAoxkGAOTcAIDo3ACA7NwAgPDcAICm/QcApf0HAPTcAICraQcAqmEHAPjcAID83ACAr0EHAK5dBwCtYQcArGkHAKjNBwCp0QcAqtEHAKstBgCsNQYArT0GAK41BgCvnQYAAN0AgATdAIAI3QCADN0AgIAZAACBGQAAggUAABDdAIC4iQYAuYkGALqZBgC7kQYAvLkGAL25BgC+UQEAv1EBALDlBgCx7QYAsv0GALP1BgC02QYAtcUGALbBBgC3uQYAqNEBAKnZAQCqCQEAqwkBAKwZAQCtGQEArgkBAK8JAQCEYAEAvnwBAIeoAACGjAEAGN0AgBzdAIAg3QCAJN0AgLgJAQC5CQEAuhkBALsRAQC8OQEAvTkBAL75AAC/+QAAsH0BALFBAQCyRQEAs10BALRFAQC1TQEAtkUBALc5AQAo3QCALN0AgDDdAICzjQIANN0AgLWdAgC2lQIAON0AgDzdAIBA3QCAurUCALuJAgC8nQIAvYUCAL6NAgC/hQIAps0CAETdAIBI3QCApcUCAEzdAICj1QIAUN0AgFTdAICu1QIAr90CAKzFAgCt3QIAqu0CAKvRAgCE9AMAWN0AgKgxAwCpMQMAqjEDAKsxAwCskQAArZEAAK6RAACvjQAAXN0AgGDdAIBk3QCAaN0AgGzdAIBw3QCAdN0AgHjdAIC4vQAAuWUAALptAAC7ZQAAvH0AAL1lAAC+bQAAv2UAALD9AACxxQAAss0AALOpAAC0uQAAtaUAALahAAC3oQAAgL0BAIEJAACCGQAAfN0AgIDdAIC+WAIAhxQdAIacHQCEbB0AxNsAgIjdAICM3QCAvrwcAJDdAICU3QCAmN0AgLP5AgCc3QCAoN0AgKTdAICo3QCAtlEBALVZAQC+3B8Au0EBALp5AQCs3QCAsN0AgL8hAQC+PQEAvT0BALxZAQDhcAcAtN0AgOMIBgC43QCA78wAALzdAIDA3QCAxN0AgOMQAADI3QCA4dABAMzdAICGkBwAh/QcAO/gBgDQ3QCAo3kCANTdAIDY3QCA3N0AgODdAICm0QEApdkBAOTdAICrwQEAqvkBAOjdAIDs3QCAr6EBAK69AQCtvQEArNkBAITdAICCFQAAgeUfAIDlHwDw3QCA9N0AgPjdAID83QCAqAkfAKkJHwCqHR8AqxUfAKwNHwCtcR8ArnEfAK9xHwCwER8AsS0fALIlHwCzyR8AtN0fALXBHwC2wR8At8EfALjFHwC5yR8AutUfALupHwC8uR8AvbkfAL6pHwC/oR8As7UfAADeAIAE3gCACN4AgAzeAIC20R8AtaUfABDeAIC7yR8AuvUfABTeAIAY3gCAvyUfAL45HwC9PR8AvNEfABzeAIAg3gCAJN4AgCjeAIAs3gCA4WAfADDeAIDjtBwANN4AgDjeAIA83gCA7wAdAEDeAIBE3gCASN4AgEzeAICjNR4AUN4AgFTeAIBY3gCAXN4AgKZRHgClJR4AYN4AgKtJHgCqdR4AhKgCAGTeAICvpR4ArrkeAK29HgCsUR4AgE0AAIFVAACCVQAAs8kBAGjeAIC12QEAtskBAGzeAICGoAAAhwQBALrFAQC7rQEAvLUBAL29AQC+tQEAv60BAKiZAQCpmQEAqg0BAKsFAQCsHQEArQUBAK4FAQCvNQEAcN4AgHTeAIB43gCAfN4AgIDeAICE3gCAiN4AgIzeAIC4JQEAuS0BALo5AQC7OQEAvCkBAL0pAQC+3QAAv9UAALBNAQCxJQEAsi0BALMlAQC0PQEAtSUBALYhAQC3HQEAkN4AgJTeAICY3gCAo4kCAJzeAIClmQIApokCAKDeAICk3gCAqN4AgKqFAgCr7QIArPUCAK39AgCu9QIAr+0CAKzeAICw3gCAtN4AgIRAAgC43gCAvN4AgMDeAIDE3gCAgA0AAIEVAACCHQAAyN4AgMzeAIDQ3gCAh7QDAIbcBAC+zAMA2N4AgNzeAIDg3gCA7+gCAOTeAIDo3gCA7N4AgOP8AgDw3gCA4dABAPTeAID43gCA/N4AgADfAIAE3wCAs2EDAAjfAIAM3wCAEN8AgBTfAIC2eQMAtXEDABjfAIC7XQMAul0DABzfAIAg3wCAv+EAAL79AAC9/QAAvP0AALC5AgCxuQIAsgkBALMJAQC0GQEAtQUBALYFAQC3PQEAuAUBALllAQC6bQEAu2UBALxhAQC9YQEAvmEBAL9hAQCFXAcAJN8AgCjfAIAs3wCAFN0AgDDfAIA03wCAON8AgKgxAgCpOQIAqskCAKvJAgCs2QIArdkCAK7JAgCvyQIAhMwFAOGAHgA83wCA47weAOE4HgBA3wCA46AAAL4QBABI3wCATN8AgO8MHgBQ3wCAVN8AgFjfAIBc3wCA73QeAKNhAgCCUQAAgUEAAICRAABg3wCApnkCAKVxAgBk3wCAq10CAKpdAgCGyAQAhzwFAK/hAQCu/QEArf0BAKz9AQCohQYAqY0GAKqFBgCrmQYArIkGAK2JBgCuvQYAr7EGAETfAIBo3wCAbN8AgHDfAIB03wCAeN8AgHzfAICA3wCAuJ0GALmtBgC6pQYAuwkHALwZBwC9GQcAvg0HAL8FBwCw0QYAsdEGALLRBgCz0QYAtLUGALW9BgC2tQYAt60GALMNBgCE3wCAiN8AgIzfAICQ3wCAtgkGALUBBgCU3wCAuxUGALoVBgCY3wCAnN8AgL95BgC+cQYAvQUGALwFBgCg3wCA4aAEAKTfAIDjXAUAgA0AAIE1AACCPQAAqN8AgKzfAICw3wCAhGADAL5sAAC/8AEAhZAAALTfAIDvmAUAo40HAIQIAACGAAwAh4wAALjfAICmiQcApYEHALzfAICrlQcAqpUHAMDfAIDE3wCAr/kHAK7xBwCthQcArIUHAMjfAICz6QYAzN8AgNDfAIC26QYA1N8AgNjfAIC16QYAukUBALtNAQDc3wCA4N8AgL5FAQC/TQEAvFUBAL1NAQCoIQYAqSEGAKolBgCrPQYArCUGAK0tBgCuSQYAr0EGAOTfAIDo3wCA7N8AgPDfAID03wCA+N8AgPzfAIAA4ACAuEkBALlJAQC6WQEAu1EBALx5AQC9eQEAvhkBAL8VAQCwxQEAsc0BALLFAQCz3QEAtMUBALXNAQC2xQEAt3kBAATgAIAI4ACADOAAgKOhBQAQ4ACApaEFAKahBQAU4ACAjyHqAxjgAICqDQIAqwUCAKwdAgCtBQIArg0CAK8FAgCX7RIAlmUSAJVFEQCUnRYAk3EWAJJVFQCReesDkFnqA59hBgCeNQUAnUUaAJxpGgCbVRkAmkUeAJlZHgCYRR0A4WAAABzgAIDjTD4AIOAAgKOxAgCi1QEAobUHAKCJBgCxATgAsAk+ALOVOgCyjToAtbUmALQBJADvaDoAvjAMAKnJNgCowTYAqwEwAKrhNwCtzTMArPUyAK/5PgCuATwAoRkCACjgAICjbQ4Aom0OAKX1CgCkAQgAp4ULAKaZCgCGAA0Ah0QNAIIJ6wODCesDhDHqA4UVFACGORcAh80XAISgDQAs4ACAiiUQAIsNEwCMnRMAjQ0cAI4ZHwCPDR8A1N4AgO8AAwCSbRgAk0kbAJR9GwCVBQQAllkHAJdJBwAw4ACANOAAgJpFBgCbLQAAnFEDAONgAAA44ACA4WwAAIClAQCBAQEAggUBAL4ADAA84ACAQOAAgETgAIDviAEASOAAgOFUBgBM4ACA41QBAFDgAIBU4ACAWOAAgFzgAICz6QIAYOAAgGTgAIBo4ACAbOAAgLadAgC1mQIAcOAAgLuJAgC6vQIAdOAAgHjgAIC/WQIAvlECAL1ZAgC8kQIAoykNAHzgAICA4ACAhOAAgIjgAICmXQ0ApVkNAIzgAICrSQ0Aqn0NAJDgAICY4ACAr5kNAK6RDQCtmQ0ArFENAIBRAACBWQAAgmEAALMtDwCc4ACAtS0PALbJDwCg4ACAhkADAIcIAwC6yQ8Au8UPALzBDwC9wQ8AvsEPAL/BDwAk4ACAlOAAgKTgAICo4ACArOAAgLDgAIC04ACAuOAAgKhFDgCpgQ8AqskPAKvJDwCsyQ8ArSUPAK4tDwCvJQ8AsGEPALFtDwCyeQ8As3kPALRpDwC1aQ8Ath0PALcVDwC4LQ8AuTUPALo1DwC7BQ8AvB0PAL3xAAC+8QAAv/EAAKNhDgC84ACAhMQBAMDgAIDE4ACApoUOAKVhDgDI4ACAq4kOAKqFDgDM4ACA0OAAgK+NDgCujQ4ArY0OAKyNDgDU4ACA2OAAgNzgAIDg4ACA5OAAgOjgAIDs4ACA8OAAgPTgAICCHQAAgR0AAIAdAAD44ACA/OAAgADhAIC+tAEAqK0BAKnVAQCq1QEAqwUBAKwdAQCtBQEArg0BAK8FAQCGgAEAhxgBAAjhAIAM4QCAEOEAgBThAIAY4QCAHOEAgLiFAAC5jQAAuoUAALudAAC8hQAAvY0AAL6FAAC/vQAAsH0BALHhAACy5QAAs/0AALTtAAC13QAAttUAALe9AACzXQIAIOEAgCThAIAo4QCALOEAgLaFAgC1lQIAMOEAgLslAwC6uQIANOEAgDjhAIC/GQMAvikDAL0pAwC8MQMAvswEAKMZAgA84QCAQOEAgKbBAgBE4QCASOEAgKXRAgCq/QIAq2EDAEzhAIBQ4QCArm0DAK9dAwCsdQMArW0DAKgpAwCpKQMAqjkDAKs5AwCsKQMArSkDAK6dAACvlQAAVOEAgFjhAIBc4QCAYOEAgGThAICCqQEAga0BAICtAQC4mQAAua0AALqlAAC7bQAAvHUAAL19AAC+dQAAv20AALDtAACx9QAAsvUAALPFAAC03QAAtb0AALa1AAC3qQAA4XgBAOEcDgDjEAAA4zwOAGjhAIBs4QCAvhQEAHDhAICErAIAeOEAgId4BQCGDAUAfOEAgIDhAIDvvAAA70gOALPxAgCE4QCAiOEAgIzhAICQ4QCAtukCALXhAgCU4QCAu3EBALppAQCY4QCAhKAEAL85AQC+WQEAvVEBALxhAQCc4QCAhIwEAKDhAICEADgApOEAgKjhAICs4QCAsOEAgKqJDgCriQ4AqLkOAKmxDgCu/Q4Ar+EOAKz5DgCt9Q4Asq0OALNlDgCwkQ4AsaUOALZ9DgC3ZQ4AtH0OALV1DgC6XQ4Au+UNALhdDgC5VQ4AvuENAL/pDQC8/Q0AvfUNAKOxBQB04QCAtOEAgLjhAIC84QCApqkFAKWhBQDA4QCAqzEGAKopBgDE4QCAyOEAgK95BgCuGQYArREGAKwhBgDM4QCA0OEAgNThAIDY4QCAgB0AAIEJAACCOQAA3OEAgODhAIDk4QCAhsgAAIcMAwDo4QCA7OEAgPDhAID04QCAqKUHAKm1BwCqvQcAq8kHAKzZBwCt2QcArskHAK/BBwC+oAAA+OEAgPzhAIAA4gCABOIAgAjiAIAM4gCAEOIAgLjNAAC51QAAutUAALvlAAC8/QAAvZUAAL6dAAC/lQAAsIkHALFlBwCyYQcAs30HALRlBwC1bQcAtmUHALf1AACzNQYAFOIAgBjiAIAc4gCAIOIAgLZZBgC1UQYAJOIAgLuhBgC6TQYAKOIAgCziAIC/qQYAvqEGAL2pBgC8tQYAMOIAgDTiAIDv8AUAOOIAgDziAIBA4gCAROIAgEjiAICAPQAAgQkAAIIdAABM4gCA4cgGAFDiAIDjSAQAVOIAgKO1BgBY4gCAhigAAIdAAQBc4gCAptkGAKXRBgBg4gCAqyEGAKrNBgBk4gCAaOIAgK8pBgCuIQYArSkGAKw1BgBs4gCAs70BAHDiAIB04gCAtnkBAHjiAIB84gCAtXkBALpVAQC7XQEAgOIAgITiAIC++QAAv/kAALxFAQC9+QAAqHECAKlxAgCqcQIAq3ECAKy1AgCtvQIArrUCAK+tAgC+rDwAiOIAgIziAICQ4gCAlOIAgJjiAICc4gCAoOIAgLhpAwC5aQMAugkDALsJAwC8HQMAvQUDAL4NAwC/BQMAsNUCALHdAgCy1QIAs2kDALR5AwC1eQMAtmkDALdhAwCk4gCAqOIAgKziAICj9QIAsOIAgKUxAgCmMQIAtOIAgLjiAIC84gCAqh0CAKsVAgCsDQIArbEDAK6xAwCvsQMA7xgCAIIVAACBbQAAgG0AAMDiAIDI4gCAhvg8AIcYAwDM4gCA0OIAgNTiAIDY4gCA42wHAAThAIDhaAEA3OIAgKiFAgCplQIAqpUCAKulAgCsvQIArdUCAK7RAgCv0QIA4OIAgOTiAIDo4gCA7OIAgPDiAID04gCA+OIAgPziAIC4dQEAuX0BALp1AQC7zQEAvNUBAL3dAQC+yQEAv8EBALC1AgCxvQIAsoECALOBAgC0VQEAtV0BALZVAQC3TQEA4bQGAADjAIDj9AYABOMAgIQYPQAI4wCADOMAgBDjAIAU4wCAGOMAgBzjAIAg4wCAJOMAgCjjAIDvWAYALOMAgIF9AACAcQAAMOMAgIIFAAA44wCAPOMAgO+AAQC+VDwA4ZABAEDjAIDjfAYAROMAgEjjAIBM4wCAhtg8AIf0PACjnT0AxOIAgDTjAIBQ4wCAVOMAgKbVPQCltT0AWOMAgKv5PQCq8T0AXOMAgGDjAICvGT4ArhE+AK3VPQCs1T0AZOMAgLOhPgBo4wCAbOMAgLatPgBw4wCAdOMAgLWxPgC6ST8Au0k/AHjjAIB84wCAvkk/AL9JPwC8ST8AvUk/AKhVPgCpZT4Aqm0+AKtlPgCsfT4ArWk+AK65PwCvuT8AgOMAgITjAICI4wCAjOMAgJDjAICU4wCAmOMAgJzjAIC4VT8AuV0/ALpVPwC7bT8AvHU/AL19PwC+dT8Av20/ALDJPwCxyT8Astk/ALPZPwC0yT8Atck/ALZ9PwC3cT8AghUAAKPhPwCAsQEAgbEBAKbtPwCg4wCAvtABAKXxPwCqCT4Aqwk+AITkAQCk4wCArgk+AK8JPgCsCT4ArQk+ALPdPACo4wCAhugAAIfMAQCs4wCAtpU8ALX1PACw4wCAu7k8ALqxPAC04wCAuOMAgL9ZPwC+UT8AvZU8ALyVPACoUT4AqVE+AKptPgCrYT4ArGE+AK1hPgCulQEAr40BAISgAQC84wCAwOMAgMTjAIDI4wCAzOMAgNDjAIDU4wCAuKkBALmpAQC6aQEAu2kBALx5AQC9eQEAvmkBAL9pAQCw/QEAsc0BALLFAQCzrQEAtLkBALW5AQC2rQEAt6UBALPlPQDY4wCA3OMAgODjAIDk4wCAtuE9ALXpPQDo4wCAuwkCALo5AgDs4wCA8OMAgL99AgC+fQIAvXkCALwRAgD04wCAo6E9APjjAID84wCApqU9AADkAIAE5ACApa09AKp9AgCrTQIACOQAgAzkAICuOQIArzkCAKxVAgCtPQIAgOkAAIHpAACCHQAAvsADAO/kAgAQ5ACAh1QDAIY8BADjEAEAGOQAgOH4AQAc5ACAIOQAgCTkAIAo5ACALOQAgDDkAIA05ACAOOQAgLORAwA85ACAtbkDALZ9AwBA5ACAROQAgEjkAIC6WQMAu1kDALxJAwC9SQMAvv0AAL/1AACoRQIAqVUCAKpVAgCrZQIArH0CAK2xAgCusQIAr7ECAIRsBQBM5ACAUOQAgFTkAIBY5ACAXOQAgL5wBQBg5ACAuF0BALltAQC6ZQEAuw0BALwZAQC9GQEAvg0BAL8FAQCw0QIAsdECALLRAgCz0QIAtHUBALV9AQC2dQEAt20BAOFAPwDjvAAA4wg+AOFsPgBk5ACAaOQAgGzkAIBw5ACAdOQAgHjkAIB85ACAgOQAgL5sBwDvVAAA75w+AIjkAICjnQIAgmkAAIFhAACAaQAAjOQAgKZxAgCltQIAkOQAgKtVAgCqVQIAhsgEAIfsBACv+QEArvEBAK1FAgCsRQIAqKUGAKmpBgCquQYAq7kGAKypBgCtqQYArtkGAK/ZBgCE5ACAlOQAgJjkAICc5ACAoOQAgKTkAICo5ACArOQAgLhxBwC5cQcAunUHALvdBwC8xQcAvc0HAL7FBwC//QcAsKkGALG1BgCytQYAs40GALSVBgC1UQcAtlEHALdRBwCzMQYAsOQAgLTkAIC45ACAvOQAgLYpBgC1IQYAwOQAgLtxBgC6bQYAxOQAgMjkAIC/lQcAvlEGAL1ZBgC8YQYAzOQAgKN1BgDQ5ACA1OQAgKZtBgDY5ACA3OQAgKVlBgCqKQYAqzUGAODkAIDk5ACArhUGAK/RBwCsJQYArR0GAIANAACBFQAAgh0AAOjkAIDs5ACA8OQAgITcAQD05ACAhoAAAIcgAQD45ACA/OQAgADlAIAE5QCACOUAgAzlAIAQ5QCA43QEABTlAIDhyAUAGOUAgBzlAIAg5QCAJOUAgCjlAIAs5QCAMOUAgDTlAIA45QCA77QEADzlAIBA5QCAqD0GAKlVBgCqVQYAq6kBAKy5AQCtuQEArqkBAK+pAQCErAEAROUAgEjlAIBM5QCAUOUAgFTlAIBY5QCAXOUAgLhtAQC5BQEAugEBALsBAQC8BQEAvQ0BAL4xAQC/MQEAsNkBALHZAQCybQEAs2UBALR9AQC1ZQEAtmUBALdVAQCBvQMAgL0DALPVBQCCGQAAtTkCAGDlAIC+VAMAtjECAGjlAIBs5QCAuxUCALoVAgC9uQIAvLECAL+pAgC+sQIAcOUAgKZpAgClYQIAhAAMAKONBQB05QCAhvgMAId8AwCv8QIArukCAK3hAgCs6QIAq00CAKpNAgB45QCAfOUAgIDlAICE5QCAiOUAgIzlAIDjIAEAkOUAgOGgAQCU5QCA70ACAJjlAICc5QCAoOUAgKTlAICo5QCArOUAgLDlAICz8QMAtOUAgBTkAIC45QCAvOUAgLbpAwC14QMAwOUAgLu1AwC6tQMAxOUAgMjlAIC/lQMAvpUDAL2lAwC8pQMAqCkCAKkpAgCqOQIAqzkCAKwpAgCtKQIArlkCAK9VAgCAzQEAgQkAAIIZAADM5QCA0OUAgL58DQCHtA0AhhwMALgxAgC5PQIAujUCALvpAgC8+QIAvfkCAL7pAgC/6QIAsDECALExAgCyMQIAszECALQRAgC1EQIAthECALcRAgDY5QCA3OUAgODlAIDk5QCA6OUAgOzlAIDw5QCA79QGAPTlAIDhVAYA+OUAgOOkAACsDBUA/OUAgADmAIAE5gCAo/ECAAjmAIAM5gCAEOYAgBTmAICm6QIApeECABjmAICrtQIAqrUCABzmAIAg5gCAr5UCAK6VAgCtpQIArKUCAKghDgCpIQ4AqkkOAKtZDgCsaQ4ArWkOAK6ZDgCvmQ4A1OUAgCTmAIAo5gCALOYAgDDmAIA05gCAOOYAgDzmAIC49Q4Auf0OALr1DgC7iQ4AvJ0OAL2FDgC+hQ4Av7UOALDpDgCx6Q4Asv0OALPxDgC01Q4Atd0OALbVDgC3zQ4As8EOAIIVAACBtQAAgLUAAEDmAIC26Q4AteEOAL4QAAC7LQ4Aui0OAIRkAwBE5gCAvxkOAL4RDgC9JQ4AvCkOAEjmAICjhQ4AhogAAIdsAwCmrQ4ATOYAgFDmAIClpQ4AqmkOAKtpDgBU5gCAWOYAgK5VDgCvXQ4ArG0OAK1hDgCziQ4AXOYAgGDmAIBk5gCAaOYAgLaBDgC1iQ4AbOYAgLuVDgC6jQ4AcOYAgHTmAIC/+Q4AvvEOAL2FDgC8hQ4AeOYAgHzmAICA5gCAhOYAgOMMDQCI5gCA4RgNAIzmAIDvrAwAkOYAgJTmAICY5gCAnOYAgKDmAICk5gCAqOYAgKgBDgCpAQ4AqgEOAKsBDgCsAQ4ArQEOAK4BDgCvPQ4AgN0AAIEJAACCGQAArOYAgLDmAICEPAEAvnQAALjmAIC4HQ4AuS0OALolDgC76QEAvPkBAL35AQC+6QEAv+kBALBJDgCxUQ4AslEOALNRDgC0NQ4AtT0OALY1DgC3LQ4Ao4kNALzmAICGrAQAhzwDAMDmAICmgQ0ApYkNAMTmAICrlQ0Aqo0NAMjmAIDM5gCAr/kNAK7xDQCthQ0ArIUNANDmAICznQIAhEgDAL5ABAC2VQMA1OYAgNjmAIC1sQIAunEDALt5AwDc5gCA4OYAgL4xAwC/MQMAvFEDAL1RAwCwkQMAsZkDALKhAwCzoQMAtNEDALXRAwC20QMAt9EDALj1AwC5+QMAus0DALvFAwC83QMAvcUDAL7NAwC/xQMA5OYAgOjmAIDs5gCA8OYAgIV8GQD05gCA+OYAgGTlAICoIQIAqTECAKoxAgCrBQIArB0CAK3xAwCu8QMAr/EDAPzmAIAA5wCABOcAgAjnAIDvUAAADOcAgBDnAIAU5wCA44QAABjnAIDh+AEAHOcAgIAVAACBGQAAggUAACDnAICjmQMAKOcAgIZoBACHYAUALOcAgKZRAgCltQMAMOcAgKt9AgCqdQIANOcAgDjnAICvNQIArjUCAK1VAgCsVQIAPOcAgEDnAIBE5wCASOcAgEznAIBQ5wCAVOcAgO/4AQC+bAQA4YAOAFjnAIDjFAEAXOcAgGDnAIBk5wCAaOcAgGznAIBw5wCAdOcAgLPdAQB45wCAtf0BALb1AQB85wCAgOcAgITnAIC6sQEAu4UBALydAQC9NQEAvj0BAL81AQCpBQYAqLkFAKsVBgCqHQYArT0GAKw9BgCvTQYArl0GACTnAICCHQAAgR0AAIAdAACI5wCAjOcAgJDnAICU5wCAuUEHALidBgC7QQcAukkHAL1FBwC8WQcAv0UHAL5FBwCxCQYAsD0GALOpBgCyAQYAtbkGALSxBgC3rQYAtrEGAKORBgCEjAIAhigAAIfAAwCY5wCAprkGAKWxBgCc5wCAq8kGAKr9BgCg5wCApOcAgK95BgCucQYArXkGAKzRBgCo5wCAs5kHAKznAICw5wCAtlEHALTnAIC45wCAtbEHALptBwC7dQcAvOcAgMDnAIC+WQcAv0UHALxtBwC9ZQcAxOcAgMjnAIDM5wCA0OcAgNTnAIDY5wCA3OcAgO+oBQDg5wCA4TQFAOTnAIDjdAUA6OcAgOznAIDw5wCA9OcAgKMdBgCCLQAAgRUAAIAdAAD45wCAptUGAKU1BgD85wCAq/EGAKrpBgAA6ACAhCgBAK/BBgCu3QYAreEGAKzpBgCoxQYAqdUGAKrVBgCr5QYArP0GAK0VBgCuHQYArxUGAL7sAQAI6ACAhggAAIcgAAAM6ACAEOgAgBToAIAY6ACAuH0GALkFBgC6DQYAuwUGALwBBgC9CQYAvjkGAL85BgCwbQYAsXUGALJ9BgCzdQYAtFkGALVFBgC2TQYAt0UGAKiRAgCpmQIAqqECAKuhAgCs0QIArd0CAK7VAgCvyQIAHOgAgCDoAIAk6ACAvyweACjoAIAs6ACAMOgAgDToAIC4VQMAuV0DALppAwC7ZQMAvGEDAL1hAwC+YQMAv2EDALC5AgCxjQIAsoUCALNtAwC0dQMAtX0DALZ1AwC3bQMAOOgAgDzoAICzIQIAQOgAgLVRAgCEiAMAROgAgLZVAgC05gCAvigcALtBAgC6dQIAvbEDALxZAgC/sQMAvrkDAKNpAgBI6ACATOgAgFDoAIBU6ACAph0CAKUZAgBY6ACAqwkCAKo9AgBc6ACAYOgAgK/5AwCu8QMArfkDAKwRAgCopQIAqbUCAKq9AgCrtQIArK0CAK01AQCuPQEArzUBAL4sHABk6ACAaOgAgGzoAIBw6ACAeOgAgIdoHQCGHB0AuIUBALmNAQC6hQEAu50BALyNAQC9vQEAvrUBAL95AACwUQEAsVEBALJRAQCzUQEAtPEBALXxAQC29QEAt+UBAO/YAACCtQAAgaUAAIClAAB86ACAgOgAgIToAIDvxAYAiOgAgOH0BgCM6ACA4zgBAOPMAACQ6ACA4SgBAJToAICY6ACAtuUBALV1AgCEQBwAs2UCAJzoAICg6ACApOgAgL9lAQC+ZQEAvdUBALzVAQC7xQEAusUBAKjoAICs6ACAo7UdAHToAICw6ACAtOgAgLjoAICmNR4ApaUdALzoAICrFR4AqhUeAMDoAIDE6ACAr7UeAK61HgCtBR4ArAUeAMjoAIDM6ACA0OgAgNToAICADQAAgTUAAII9AADY6ACA3OgAgODoAIC1BQAAcRoAgOG0AgCs2AIAtQUAAHUaAICotR8AqRUfAKodHwCrFR8ArDEfAK09HwCuLR8AryEfAOG0AgCs2AIAtQUAAHkaAIDhtAIArNgCALUFAAB9GgCAuNEAALnZAAC64QAAu+EAALyRAAC9kQAAvpEAAL+RAACwIR8AsTEfALIxHwCzMR8AtAkfALUJHwC28QAAt/EAAOG0AgCs3AIA71QdALUdAACBGgCA4bwCAKzQAgC1KQAAoyUBAKKRAwChFR0AoA0dAOGAHgCFGgCA47wdAOHEAgCz1R4AtQkAAKzYAgCJGgCA4bwCALb9HgC1+R4ArOACALu1HgC6pR4AtQUAAI0aAIC/jR4Avo0eAL2lHgC8pR4AoxUeAOG8AgCs0AIAtREAAI9pJQCmPR4ApTkeAJEaAICrdR4AqmUeAOG0AgCseAEAr00eAK5NHgCtZR4ArGUeAJvdFACa5RUAmQEXAJjhEACfcR8AnnkZAJ35GQCcARsAk+UtAJIRLwCRbSkAkG0pAJf5EQCW8REAlYUsAJSZLQC1JQAA4ZQCAILxJgCDjSoAhJUqAIXhLACGHS4Ah3kuAKy0AgCVGgCAilUvAIspEgCMORIAjRkTAI7xFACPHRYAtQUAAJkaAICSVRcAk5EYAJRxGgCV+RoAlvkcAJd9HgCC4AMAkwsAgJpVHgCb2QAAnHUCAIMMAICzDACAuIkKAKwBBACthQYAroEGAMwQAgDMfAMAtgwAgJ0aAIDCDACAxQwAgMgMAIAACwCAgaUyArwMAIAE6ACAmpUGAJtVIwK8kQYAvbEAAL6RBgC/rQYAuOkGALmVBgC6kQYAoRoAgLTBBgC1zQYAts0GALfdBgCw/QYAseUGALKdAACz5QYAhVTHA6UaAICH/AAAuAEKAK0aAIDpDACAsRoAgIyRcwCNpAEAzPACAL4NAIDBDQCAiRQAALgZCgCLDAAAGg4AgFMOAIC5DACAvwwAgBkKAICRwAEAywwAgLhtCgDODACA1AwAgNoMAIDdDACA4AwAgLUaAIAoDQCA5gwAgLkaAIDhpB4AKw0AgONUHgCvIXMAzCgCAO8MAIDsDACA8gwAgPUMAID4DACAzIACAJS4AwD7DACAkhQCAO9gHgCQAAIA/gwAgAoNAIC48QoADQ0AgJ8LAIAQDQCAiSkLABMNAICpGgCAvDABAL/EAQC+7AEAFg0AgMzsAgC4xQoAukQBAK0JAIAZDQCAygYAgN8GAIDyBgCAHA0AgPoGAIAfDQCACgcAgC0HAIAYBwCA9gcAgC8HAICpDQCAOgcAgK8NAIBKBwCAtXkAAGcHAIC3cSoCcgcAgLFhAAB0BwCAsw0pAo0HAIC96QAAoAcAgPoHAICtBwCAuRkrAsMHAIC7WRQCHwgAgFoJAIA8CACALw4AgFsIAIA5AACAgQgAgHEAAIDHCACAKwAAgCAJAIA9AACAXAkAgEMAAIBeCQCARQgAgGoIAIBJAACAAAgAgFMAAIB5CQCAWQAAgCINAIBfAACAuw0iAtANAIDMFDYCHwAAgL9lAAC+EQAAvW0AAOUHAICAaQEAgXUBAIJxAQCD3SEChGkHAIWBBwCGgQcAh3EBAIihAQCJrQEAirUHAIuNBwCMlQcAjaUBAE8AAICPpQEAkOEBAJHtBwCSsSECk/0HAJSNBwCVUQYAlvEBAJfZAQCY0QEAmXUGAJp9BgCb1QEAnGkGAJ2ZFAKeUQYAn1EGAKB1FAKhuQYAokkBAKOFLQKkIQEApS0BAKZ1FAKntQYAqKERAqlRFAKqlQYAsSEAgMy8NQLNPDUCbQAAgKoDAICsAwCArwMAgL0hAIDEIQCA2yEAgOIhAIDJAACADwAAgLihBgC6BgCAtwYAgMwAAIDOIQCAtQMAgN0FAIAYBgCAugUCALvVAgC46QUAuf0FAL7JAgC/5RcCvA0CAL0BAgCy4QUAs+EFALCNBQCxnQUAtuUFALfpBQC09QUAte0FAKo9BQCrwQUAqD0FAKk1BQCuzQUAr/UFAKzNBQCtxQUAoj0FAKMFBQCg1QIAoTkFAKYdBQCnBQUApB0FAKUVBQC/BgCAm8EFAD4GAIBVBgCAnt0FAJ8xBACcUQIAndUFAHIGAICJBgCApAMAgDAiAIDbAACAoAMAgI8HAIDuBwCA8gcAgJAJAIACCACABggAgJYLAICUCQCArwoAgG8HAICLBwCAlwcAgKIHAICqBwCAqgkAgPsOAIASDwCAHw8AgMwEMwLNsDACzCAzAs3gMALMEDACzGgwAsxYMALNjDACzGgxAs0UMQLM1DECzRQ2AsxwIALN0CcCzDA2AswkMQLMDDwCzWg/AswYPwLNND8CzBg9As3AMgLMRDwCzBg5Asw4MgLNqDICzIgyAs34MwLMfDMCzUAzAswoMwLNCDMCzMghAs0kJgLMrCYCzEA4AsyYJQLNyDoCzBwkAs0QJALMhDsCzag7AsysJQLNvDoCzKw4Asz4JwLM4DgCzXQ4AicPAID2BgCAYQ0AgIgNAIDNICoCzBwrAqoGAIAsIgCAzKQgAs2gJwLMOCYCygQAgMw4OgLNPDsCzBA5As1gPgLMoAMAvj0NAL3tLALWBACAu1UjAgQJAIC5PSICzwYAgNkHAIClBACAoA0AgLIEAIBvBQCA9AYAgL4EAIB1BQCAr70MAK6ZLgKtpQwAwgUAgKvFIgIDBgCAxAQAgCMGAIDQBACAyAUAgCkGAIBdBgCAowEYAqAEAIAaBwCAHQcAgJ9dDACeUQwAnUUMACcHAICbWSECrwcAgLEHAIC0BwCAuAcAgCoHAIDOBwCA0AcAgJMtJgLTBwCAbAgAgG8IAICPBQwAjnEMAI1lDAB5CACAi0UgAmAJAICJNS8CYwkAgGcJAIB8CACAcAkAgHMJAIC9AwCAACIAgIFdDACAYQwAgAABAIEYAACCAAQABCIAgIQQBwCFFAYAhuQIAIc8AgCILAUAiaQFAIoAeAAIIgCAjCQAAAwiAIAUIgCAECIAgLgRAACRxHsAkkh6AJNMeQAcIgCAzOgCAJbwCQC4OQAAkMAJACQiAICS8AkAzPgCAJS0CQC4DQAAKCIAgMwcAgC4BQAANCIAgMzkAgC4HQAAOCIAgDwiAIBDIgCAWiIAgKiMCACp5HsAYSIAgKvUBgDM5AIAuA0AAGsiAIDMlAIAbyIAgLGAewC4CQAAuBUAAMz8AgC15AgAcyIAgMzYAgB3IgCAuAUAALqcBQC7XAUAvAB8AL30fwC++H0Av/xyAIAJOgKBDToCggE6AoMFOgKEGToChR06AoYROgKHFToCiCk6AoktOgKKIToCiyU6Aow5OgKNPToCjjE6Ao81OgLM8AIAkekPAIMiAIDMzAIAuBkAAH8iAIDM3AIAl+UPALg1AAC4DQAAjyIAgMz8AgC4BQAAkyIAgMwwAgCXIgCAzNACAJsiAICfIgCAzIgCAKQtDwClVQ8Apl0PAMyUAgCoqToCqa06ArjVAACjIgCAuDUAAKciAIDMUAMAr7U6AswsAwCrIgCAzBgDALMFDwC0HQ8AzyIAgLYJDwC3CQ8Avmh9ALhtAAC4RQAAzDgDALwpDwDTIgCAviUPAMxYAwCH5Q4AzOg6Ari9AQC4yQEAzPA1As2kMwLMgCICzXwlAs2UNgLMBCkCzew7AsxkOgK45QEAuMEBAInVDgCI1Q4Al7EOALgNAACvIgCAsyIAgLciAIC4GQAAuyIAgNciAICfaTsC2yIAgL8iAIC4PQAAzMQCAMz4AgDDIgCAxyIAgLjZAADLIgCA3yIAgLjRAADjIgCAuPEAAMzMMwLnIgCAuMkAAMzoMwLrIgCAuNUAAKllAAC4yQAAzNgCAKq5BgC3TQ0Atk0NALU1DgC0NQ4AuFUAABUjAICxGQ8AsCkOAL/1AwC+UQ0AvVkNALw1DAC7XQ0Aul0NALldDQC4XQ0AgL0KAIHFCgCCFQQAg8kKAMx8BQCF3QoAhtUKAIfNCgDMVAUAifEKAIq5CACLDQgAjBEIAI0VCACOtScCj+UKAJBpCACRbQgAknEIAJNtJALMEAUAlR0IAJaFCgDMEAUAzDQFAJk9CACaiQoAmw0IAJwRCACdFQgAzEgFAMwQAgCgZQoAoW0KAKJlCgC4BQcApLEEAMzoAgCmsQQAuA0HAKiBBADM/AIAqpkIAKtdCgCsuQgArakEALglBwCvNQgAsNEIALHxBADMwAIAs40IALQpKAK1IQoAtiEKALchCgC4IQsAuSUIALhBBwC7KQsAvA0dAr3dDwC+MQsAvzELAIDdCgAZIwCAnKF9ANADAIDpAwCAhRkJAIaZCQCHlQkAiOEJAIklJQICBACAGwQAgC4EAIBBBACAVAQAgGcEAICQrQoAkUkFAJJtBQCTYQUAlGEFAJVtBQCWZQUAlxEFAJg1BQCZPQUAmjUFAJsNBQCcFQUAnR0FAJ4VBQCfCQUAoKkJAKH9BQCi9QUAowEFAKQFBQClDQUApgUFAKc9BQCoBQUAqQ0FAKoFBQCrGQUArIkJAK2pBQCutQkAr/0JALABCQCxfQUAsnUFALMBBQC0aQkAtQEFALYFBQC3PQUAuAUFALnhJQK6AQUAuwEFALzRJQK9PQkAvnkJAL9dCQCDMAUAoXgHAJ+xfgB6BACApHgHAKVIBwCNBACA8wQAgIt8BADdAACAEwEAgIhIBAAcAQCAIAEAgCQBAIAoAQCALAEAgDABAICyAAcAs/wHADQBAIDhAACAtuQHALfwBwDmAACA6wAAgLrgBwC7nAcAvIgHAL2oBwDwAACAs8F+AKPMBAD1AACA+gAAgIMABAD/AACAhXQEAKUgBAAEAQCAiEwEAAkBAIAOAQCAFwEAgK8tBwCNxAcArSEHAKwpBwDNAwCA8AQAgI8FAICwZQcA4gUAgB0GAIBDBgCAWgYAgHcGAICOBgCA0wMAgOwDAIAFBACAHgQAgDEEAIC8fAQAgt0rAoPlKwKA/QoAgfkrAoaZCQCHmQkAhOEKAIXhCgCKiQkAi4kJAIiJCQCJiQkAjoUJAEQEAICM4QgAjY0JAJK5KwKTQScCkJkrApHFCwCWyQsAl3UnApTFDQCV0SQCmskLAJvZKgKYyQsAmXkHAFcEAIBqBACAnP0LAH0EAICQBACA9gQAgKABAICkAQCAqAEAgONkAgCsAQCAsAEAgLQBAIDvvAcAqBEJALgBAIC8AQCAwAEAgMQBAIDIAQCAzAEAgNABAIDUAQCA2AEAgNwBAIDgAQCA5AEAgOgBAIDsAQCA8AEAgPQBAID4AQCA/AEAgAACAICCnH4ABAIAgKD1VAKh2VQCoulUAqP1dQCk7XUApZ12AKaVdgCnvXYAqIV2AKkpfQCqOX0AqwV9AKwdfQCtBX0Arg19AK8FfQCwfX0AsUl+ALJRfgCzUX4AtHV+ALV9fgC2aX4At2l+ALhZfgC5WX4Auil+ALspfgC8IX4AvSF+AL4ZfgC/GX4AkgcAgDkJAIDXBwCATSIAgLQNAAC1NQAAtj0AAKIGAICsBgCArwYAgAMjAIAJIwCAvSV4ALy1WALGMQCALjoAgJkqAIC9KgCAySoAgNkqAIDhKgCA7SoAgPUqAID9KgCACSsAgF0rAIB1KwCAhSsAgJUrAIClKwCAtSsAgNUrAICAeX8AgYF/AIKBfwCDnX8AhI1/AIWxfwCGsX8Ah7F/AIjhfwCJ4X8AiuF/AIv9fwCM5X8Aje1/AI7lfwCP3X8AkKV/AJGtfwCSpX8Ak71/AJSlfwCVrX8Alm1+AJctfgCYFX4AmRl+AJrpfgCb6X4AnPl+AJ35fgCe6X4An+V+AKAdfgChJX4AoiV+AKM9fgCkJX4ApS1+AKYlfgCnXX4AqGV+AKltfgCqZX4Aq31+AKxlfgCtbX4ArmV+AK9dfgCwJX4AsS1+ALIlfgCzPX4AtCV+ALUpfgC2WXcAt9V1ALj9eQC56XUAuvl1ALvZeQC86XUAvdV1AL7RdQC/2XUAgDF2AIE9dgCCSXYAg0V2AIRBdgCFTXYAhvl0AId9dgCIoQIAiU12AIpZdgCLuXoAjEl2AI2degCOsQIAjx16AJCRVgKRKXYAkoF2AJPNdgCU2XYAlel2AJbJdgCX0VkCmKF2AJllWgKa8XYAm01aApzRdgCdYXoAnoFWAp/VdgCgBQIAoY1aAqI1VwKjCXYApCF2AKUtdgCmiVoCp5laAqi5WgKpdXYAql13ANkrAIDdKwCAESwAgDksAIBJLACAUSwAgFUsAIBhLACAfSwAgIEsAICZLACAnSwAgKUsAIC1LACAUS0AgGUtAIClLQCAuS0AgMEtAIDFLQCA1S0AgJl1CgD4LQCAJC4AgDAuAIBQLgCAXC4AgGAuAIBkLgCAgux6AINkewB8LgCAgC4AgIZ0ewCHvHsArC4AgLguAIDALgCAyC4AgNguAIDnLgCA7y4AgBsvAIAfLwCAJy8AgJJwfAArLwCAMy8AgJFMfAA7LwCASy8AgGcvAIDfLwCA8y8AgKvMfACo5HwAqdx8APcvAIB3MACAezAAgI8wAICiwHwAkzAAgJswAICjMACAzEBJAs0ASQLM/EoCzWhLAqswAIC3MACA7TAAgP0wAIARMQCAjjEAgJoxAICqMQCAsqx8ALNAfAC2MQCAwjEAgMoxAIDOMQCAtGx8ALUEfACAlQcAgZ0HAIKVBwCDqQcAhLkHAIW5BwCG2QcAh9kHAIjpBwCJ6QcAivkHAIv5BwCM6QcAjekHAI7RBwCP0QcAkLEHAJGxBwCSSQEAk0kBAJRZAQCVWQEAlkkBAJdJAQCYeQEAmXkBAJpJAQCbSQEAnFkBAJ1ZAQCeSQEAn0kBAKC5AQChuQEAoskBAKPJAQCk2QEApdkBAKbJAQCnyQEAqPkBAKn5AQCqyQEAq8kBAKzZAQCt2QEArskBAK/JAQCwuQEAsbkBALJJAQCzSQEAtFkBALVZAQC2SQEAt0kBALh5AQC5eQEAukkBALtJAQC8WQEAvVkBAL5JAQC/SQEA0jEAgNYxAIDaMQCAkjIAgNoyAIDmMgCA6jIAgO4yAIDyMgCA+jIAgP4yAIASMwCALjMAgDYzAIB2MwCAejMAgIIzAICGMwCAjjMAgJIzAIC2MwCAujMAgNYzAIDaMwCA3jMAgOIzAID2MwCAGjQAgB40AIAiNACARjQAgIY0AICKNACAqjQAgLo0AIDCNACA4jQAgAY1AIBKNQCAUjUAgGY1AIByNQCAejUAgII1AICGNQCAijUAgKI1AICmNQCAwjUAgMo1AIDSNQCA1jUAgOI1AIDqNQCA7jUAgPI1AID6NQCA/jUAgJ42AICyNgCAnoUMAOY2AIDqNgCA8jYAgIC5AwCBuQMAgskDAIPJAwCE2QMAhdkDAIbJAwCHyQMAiPkDAIn5AwCKyQMAi8kDAIzZAwCN2QMAjs0DAI/FAwCQvQMAkQEMAJJJDgCTSQ4AlFkOAJVZDgCWSQ4Al0kOAJh5DgCZeQ4AmkkOAJtJDgCcWQ4AnVkOAJ5JDgCfSQ4AoLkOAKG5DgCiyQ4Ao8kOAKTZDgCl2Q4ApskOAKfJDgCo+Q4AqfkOAKrJDgCryQ4ArNkOAK3ZDgCuyQ4Ar8kOALC5DgCxuQ4AskkOALNJDgC0WQ4AtVkOALZJDgC3SQ4AuHkOALl5DgC6SQ4Au0kOALxZDgC9WQ4AvkkOAL9JDgC8eQQAvXkEAL6JBAC/nQQAuHUEALl9BAC6aQQAu2kEALRxBAC1cQQAtnEEALdxBACwcQQAsXEEALJxBACzcQQArGkEAK1pBACucQQAr3EEAKhBBACpQQQAqkEEAKtBBACknQUApWEEAKZhBACnYQQAoJ0FAKGFBQCijQUAo4UFAJxdBQCdZQUAnm0FAJ9lBQCYXQUAmUUFAJpNBQCbRQUAlB0FAJVlBQCWbQUAl2UFAJAdBQCRBQUAkg0FAJMFBQCMMQcAjTEHAI4xBwCPMQcAiDEHAIkxBwCKMQcAizEHAIQxBwCFMQcAhjEHAIcxBwCAMQcAgTEHAIIxBwCDMQcAJjcAgC43AIA2NwCAcjcAgHY3AIB+NwCAgjcAgIY3AICyNwCAtjcAgL43AIDSNwCA1jcAgPI3AID6NwCA/jcAgCI4AIBCOACAUjgAgFY4AIBeOACAijgAgI44AICeOACAwjgAgM44AIDeOACA9jgAgP44AIACOQCABjkAgAo5AIAWOQCAGjkAgCI5AIA+OQCAQjkAgEY5AIBeOQCAYjkAgGo5AIB+OQCAgjkAgIY5AICOOQCAkjkAgJY5AICaOQCAnjkAgK45AIDGOQCAyjkAgNY5AIDaOQCA3jkAgOI5AIDqOQCA7jkAgPI5AID+OQCABjoAgA46AIASOgCAGjoAgIC5AQCBuQEAgskBAIPJAQCE2QEAhdkBAIbJAQCHyQEAiPkBAIn5AQCKyQEAi8kBAIzZAQCN2QEAjskBAI/JAQCQuQEAkbkBAJIRAACTEQAAlDEAAJUxAAAeOgCAIjoAgCo6AIAyOgCAPSMAgGUsAIBpLACAJSQAgIJgAgCZ4QAAgIAAAIGYAACC5AYAg4gEAITUGwCFlBoAhhgfALMjAICIxB4AiQAQAIqoEwCLrBEAjAAoAI20KwCOuCoAj7wpAOOwAgC+dAIAnlUAAOMUAgCCbAIAtyMAgJkNAAC+RAIAnjUAAIJoAgCZBQAAuyMAgO/MAgC+oAAAgoQAAO/YAgDj7AEA4/QBAL8jAIDjCAMAwyMAgOM4AwDHIwCA44gDAMsjAIDv4AMAzyMAgO+IAwDvPAEA78QDANMjAIDv1AMA4+wDAB43AIDXIwCA4+wDAOPsAwDj5AMA2yMAgOO4AwDvXAMA70wDAN8jAIDvSAMA7/QDAOMjAIDnIwCA7zQDAON8AwDjlAQA6yMAgO8jAIDzIwCA47QEAPcjAID7IwCA/yMAgO9sBAADJACAByQAgO9YBADvUAQACyQAgBYkAIAaJACAvQAAgOP4BADCAACAMSQAgB4kAIBtKQCA45wEAAglAIBrJQCAriUAgO9QBADaJQCABCYAgO88BAApJgCAgAlLAoYcdwC+RAIAgnQCAL5QAgA+JgCAmREBAJkNAQCPrAIAggQCAI1oAQCewQIAi3wBAJ49AQCeKQEAvggCAJfQAgCZXQEAldACAJ5VAQCT0AIAmXUBAJHQAgC+SAIAn7gCAEYmAICdtAIAnk0BAJuwAgCZXQEAmbQCAL6EAgCeqQEApowCAGImAICkgAIAmakBAGomAIChSAIAgqwCAK/kAgCCtAIAglwCAJnlAQC+CAIAgnwCAIIABACopAIAnvkBAL5wAgC1HAQAnoUBAL6oBQCyhAIAtrECAL6sBQC4KQkAuYkCALqZAgCCjAUAu+gEAIKcBQByJgCAuPAEAJ5ZBgCZbQYAnmEGAJl5BgC+fAIAnmEGAIJcAgC+QAIAmVkGAJ5dBgCCYAIAmaUGAL58AgCevQYAghwCAL4UAgCZzQYAvkwCAIJMAgCa3QYAnt0GAJ/FBgDjDAIAgrwCAJn5BgC+ZAIA7/QCAJrxBgCe6QYAn+kGAJ7ZBgCf1QYA4wQCAJklBgCaIQYAgngCAJk9BgDjBAIAgkQCAJolBgC+cAIA75wCAJ4FBgCfFQYA7+gCAJp1BgCZBQYAggQCAL5wAgDjcAIAnnUGAJ8NBgCeAQYAvnwCAOM0AgCZDQYAvmACAIJsAgDv8AIAmTUGAIKQAwDv2AIAniEGAIQmAICbxQcAmeUHAL58AgCe7QcAn8UHAOPsAwCdUAIAnNEHAIJsAgDv1AIAmc0HAIJ8AgC+cAIAmd0HAJ7dBwC+AAIA42gCAJ6tBwCZuQcA42gCAIJ8AgDjDAIAvkgCAJmpBwCCWAIA78QCAJ6ZBwC+bAIA77gCAIKUAgCejQcA77gCALsAAACZeQcAuQwAAJ5xBwC/AAAAglQCAL0EAAC+aAIAs9QDAJmxBgCxcAMAggQCALc4AACeoQYAtTQAAL5wAgCrWAMAnqEGAO9cAgCZqQYArxADAIJQAgCtFAMAmYUHAJlpBgC+WAIAnmEGAL58AgCCaAIApqACAOOQAgCZaQYA43wBAOOYAQDjrAEA49ABAOPoAQC+dAIAno0FAOMwAgDvzAIAgmgCAJnRBQDvlAIA71QBAO9wAQDvJAEA7ygBAL58AgCevQUA4wwCAIJ4AgCZrQIAvnQCAJ6lAgDjNAIAgmACAJkZAAC+YAIA7/wCAJ4NAACClAIA79QCAJAmAIDj/AIAmQkAAL5gAgCYJgCAnh0AAOMAAgCwJSoAglgCAJkNAADv9AIAvmQCAK4mAIDvwAIAnhkAAIIYAgCCOAIA43ACAJkRAACaNQAAmSkBAL50AgDsJgCAnyUAAJ4JAACZ6QEAvrQDAL7gAwCazQEA79gCAJ4RAQCC2AMA/SYAgIHEAgDjsAMAHycAgOP8AwC+/AIAhMQCAIIoAgCGEAIAKicAgIg8AgCeIQAAnw0AAHonAIDvKAMAj3QCAO8sAwCCiAIAmXUAAJoVAACSxAMAldADAJktAACa0QAAjicAgL7IAgCYaAMAm3wDAILEAwCeQQAAnykAALAnAICChAIA45ACAL4IAwC+JwCABigAgJ8ZAACe7QAA49ACAJlxAACaFQAAvhQCAO8wAgCZIQAA71gCABQoAICv7AMAggQCALFMHACwABwAniUAALJMHACeXQAAn2EAAOO8AgCZIQAA+QAAAHEpAIDvlAIAdSkAgL08HACCgB0Av8EfAHkpAIDjtB0AvnQCAJ71HwDj8B0AmQUAAH0pAIC+fAIAngkAAIJgAgCZDQAAiSkAgL5gAgDvzAIAnh0AAOklAIDv3AIA42gCAPkYAIDjPB0AIRoAgP0YAIABGQCAJRoAgCkaAIAtGgCAMRoAgDUaAIA5GgCA76QCAD0aAIDvJB0AQRoAgLHFAAAFGQCAs8UAALLdAAC1yQAAtMEAALcdAAC2wQAAuWUAALhlAAC7zQAAus0AAL3dAAC83QAAv8UAAL7JAAAJGQCADRkAgE0ZAIBhGQCAERkAgBUZAIDvFHgD7wBIA+HYTQPhOKgC41x5A+O0UAOtGQCAsRkAgLUZAIC5GQCAgMkBAIHVAQCC3QEAg20CAITdAQCFcQIAhgEEAIcdBQCIJQUAiTUFAIo9BQCLbQUAjHUFAI1lBQCObQUAj80BAJC1AQCRvQEAkrUBAJNNAwCUVQMAlV0DAJZVAwCXTQMAmHUDAJl9AwCadQMAm00DAJxVAwCdWQMAnkkDAJ9JAwCguQMAobkDAKLBAwCj3QMApMUDAKXNAwCmxQMAp/0DAKjJAwCpyQMAqtEDAKvRAwCsMQMArTEDAK4xAwCvMQMAsFEDALFRAwCyUQMAs1EDALRxAwC1cQMAtnEDALdxAwC4UQMAuVEDALpRAwC7UQMAvDEDAL0xAwC+MQMAvzEDAL0ZAIDBGQCAxRkAgMkZAIDNGQCA0RkAgNUZAIDZGQCA3RkAgOEZAIDwIAIA5RkAgOkZAIDtGQCA8RkAgPUZAICc9TYAnf02APkZAICRkAIA/RkAgKkZAIBFGQCASRkAgEUaAIC6adgASRoAgE0aAIC4sTYAubE2AFEaAIBVGgCAWRoAgF0aAIBRGQCAYRoAgGUaAIBVGQCAWRkAgF0ZAIBlGQCAaRkAgG0ZAIBxGQCAdRkAgHkZAIB9GQCAgRkAgIUZAICJGQCAjRkAgJEZAICVGQCAglgCAJkZAIBpGgCA8FgCAG0aAICdGQCAoRkAgKUZAIABGgCABRoAgJF0AwDhtDsCCRoAgOPYIgINGgCAERoAgBUaAIAZGgCAHRoAgKUqAIBVLQCAqSoAgMEqAICtKgCAljMAgO/IPwK1KgCA4ZTzAuGY0gLjlPcC4xDGAuGUtgLhkJ0C44SiAuMIhwIZGQCAHRkAgO+4swLvOIsCnSoAgOAtAIDvIJcC7+DgAoLkAgBpLQCACAIAgLrF2QAOAgCAFAIAgBoCAIAgAgCAJgIAgCwCAIAyAgCAOAIAgD4CAIBEAgCASgIAgFACAIDhgHgC8OQGAOMUagKCgAgA4aAPAuEIEwLjhA4C4xgeAlYCAIA0AwCA7zQ7Au8wHwI6AwCAQAMAgO8MEgJGAwCAJRkAgCkZAIBMAwCAUgMAgC0ZAIAxGQCAWAMAgF4DAIB2AwCAggMAgIgDAICOAwCAlAMAgJoDAIB8AwCAZAMAgDUZAIA5GQCAbQMAgFwCAIA9GQCAQRkAgHQCAIBoAgCAvAIAgHoCAICYAgCAYgIAgJICAIBuAgCApAIAgNQCAICAUQYAgV0GAIJVBgCDaQYAhHkGAIV5BgCGaQYAh2kGAIhZBgCJoQcAiqUHAIu9BwCMpQcAja0HAI6lBwDyAgCA7AIAgOACAICSCRQAkxUUAJTxBwCV8QcAlvEHAJfxBwCY0QcAmdEHAJo5FACb0QcAnIEHAJ2BBwCefQcAnx0UAJktAQCYLQEAmz0BAJo9AQCdLQEAnC0BACEZAICeVQEAkd0GAJDRBgCTJQEAkiUBAJUtAQCULQEAlx0BAJYdAQCJ8QYAiOkGAIvxBgCK+QYAjbEGAIzpBgCPqQYAjrkGAIHxBgCA7QYAg/EGAIL5BgCF0QYAhOkGAIfRBgCG2QYAua0DALitAwC7vQMAur0DAL2tAwC8rQMAv90DAL7dAwCxrQMAsK0DALO9AwCyvQMAta0DALStAwC3nQMAtp0DAKm5AQCosQEAq3UBAKqxAQCtFQEArBUBAK/dAwCu3QMAobkBAKCpAQCjiQEAorEBAKWZAQCkkQEAp4kBAKaRAQAuAwCAwgIAgM4CAIDmAgCA2gIAgAQDAICwAgCA+AIAgCIDAIAKAwCAngIAgIACAIC2AgCAyAIAgP4CAICGAgCAKAMAgKoCAIAQAwCAjAIAgBYDAIAcAwCACS0AgOsuAIDKNACAhAcAgAYFAIAVBQCAJAUAgDMFAIBCBQCASwUAgPAsOABUBQCAXQUAgGYFAICSBQCA40huA5sFAIDhTG4DpAUAgO/0AQOnBQCAqgUAgK0FAIBGOgCApkwAgNZVAIA2aACAZnEAgJZ6AID2jACAVp8AgIaoAIDtugCAJMQAgFTNAICE1gCAtN8AgDG7AIA6rgCABqUAgPkqAICJKwCAoSoAgOUqAIBBMQCAATEAgE40AIDVLACABjMAgIo3AIBiNACAHSwAgJI0AICeMwCAEjgAgFkrAICFLACA+jEAgCY5AIAdKwCArSsAgJ4xAIC8LgCAySwAgFksAIA4LgCALC4AgJGgBgDuMwCAGSsAgJ43AIB1LACAzS0AgLAFAIDh1D8D4VgaA+PcLwPjUA4D4RTyA+FA0wPjQOoD40DDA7MFAIC2BQCA73jrA+9c8gO5BQCA5QUAgO9E3gPvmCUD4bSLA+E8lwPjfKID45iLA+EwQQDhUKwD4xx/AOOIRgDoBQCA6wUAgO84ewDv4EEA7gUAgPEFAIDvzIoD7yCHA4DBGACB3RgAgikLAIMpCwCE6Q4AhekOAIYZDwCH8RgAiCUPAIntGgCK5RsAiyEdAIw5HQCN5RsAjmkQAI/VGgCQhRsAkU0PAJJFDwCTXQ8AlEUPAJVNDwCWRQ8Al30PAJhFDwCZTQ8AmkUPAJtpGwCcQQ8AnUEPAJ5BDwCfQQ8AoMEPAKHBDwCiwQ8Ao8EPAKS5CwCluQsApqkLAKfNDwCo9Q8Aqf0PAKr1DwCrzQ8ArNkPAK3ZDwCuyQ8Ar8kPALC5DwCxuQ8AsmkPALNpDwC0YQ8AtWEPALY5DwC3OQ8AuBEPALkRDwC66QEAu+kBALz5AQC9+QEAvukBAL/pAQD0BQCA9wUAgPoFAID9BQCAAAYAgCAGAIDhBACAgAUAgNMFAIAOBgCANAYAgEsGAIBoBgCAfwYAgJYGAIDdAwCA9gMAgA8EAIASBwCAQQgAgD4IAIA/BwCAOSQAgHIkAICjJACAyCQAgLkmAIDEJgCAyCYAgMwmAIDQJgCALygAgG4oAICWKACAmigAgL8oAIDHKACA4ygAgPUoAID5KACA/SgAgLrp0wAVKQCAMCkAgEspAIA9JACASiQAgFckAIBkJACAdiQAgIMkAICVJACApyQAgLckAIDMJACA1iQAgOQkAIDuJACA+yQAgAwlAIAWJQCAbyUAgHYlAIAkJQCAgBkDAIEZAwCCKQMAgykDAIQ5AwCFOQMAhikDAIcpAwCIGQMAiRkDAIppAwCLaQMAjHkDAI15AwCOaQMAj2kDAJAZAwCRGQMAkgEEAJMtAwCUNQMAlVUGAJZdBgCXVQYAmG0GAJl1BgCafQYAm3UGAJxtBgCdNQYAnj0GAJ81BgCgzQYAodUGAKLdBgCj1QYApPkDAKX5AwCm6QMAp+kDAKjZAwCp+QYAqikGAKspBgCsOQYArTkGAK7FAwCvPQMAsEUDALFNAwCyRQMAs10DALRFAwC1TQMAtkUDALd9AwC4SQMAuUkDALpZAwC7fQYAvGUGAL1tBgC+ZQYAgCUAgKkVDwCoAQ8Aq00PAKpNDwCtRQ8ArEUPAK+hDQCuqQ0AoXULAKBhCwCj7QsAoqkLAKXlCwCk5QsApzkPAKZZCAC5oQ0AuJkNALuhDQC6qQ0AvaENALy5DQAxJQCAvqkNALGhDQCw2Q0As6ENALKpDQC1oQ0AtLkNALehDQC2qQ0AOCUAgEglAIBbJQCAsiUAgLwlAICRJQCAoSUAgNAlAICB7Q0AgO0NAIP9DQCC/Q0Ahe0NAITtDQCH2Q0AhiEYAJlNDQCYTQ0Am1ENAJpdDQCdeQ0AnHUNAJ9pDQCecQ0AkYkNAJCBDQCTmQ0AkoENAJWJDQCUgQ0Al30NAJaBDQDgJACAICUAgI0lAIDMJQCA3iUAgAgmAIAtJgCAQiYAgPAlAID6JQCADCYAgBkmAIAxJgCATiYAgFgmAIB2JgCASiYAgGYmAIBuJgCAgCYAgIwmAICUJgCAoyYAgN4mAICcJgCAsiYAgKcmAIC9JgCA1CYAgOImAIABJwCAEScAgBsnAIBPJwCAkicAgOcnAIBPKQCAXSkAgGEpAIBlKQCA8CYAgC4nAIA+JwCASCcAgCMnAIBTJwCAYycAgH4nAIBwJwCAlicAgMInAIDJJwCApicAgNMnAIDdJwCAtCcAgBgoAIAKKACA6ycAgCUoAIDyJwCA/CcAgDMoAIBAKACASigAgFQoAIBeKACAcigAgH8oAICGKACAnigAgKUoAICyKACAyygAgNUoAIDnKACAASkAgA4pAIAZKQCAIykAgDQpAIA7KQCAUykAgMMDAIDmBACAhQUAgNgFAIATBgCAOQYAgFAGAIBtBgCAhAYAgJsGAIDjAwCA/AMAgBUEAIAoBACAOwQAgE4EAIBhBACAdAQAgIcEAICaBACAAAUAgA8FAIAeBQCALQUAgDwFAIBjCACAJAgAgMEGAID8BwCAHQkAgOMoEwAzCQCAKggAgC0IAIAxCACAJAcAgNwuAIDKMACA2S0AgLswAIBFMQCAJwkAgO/sEwAGCQCA3A0AgM8IAICDCACAMQcAgEwHAID8BgCACggAgJQIAIAqCQCACQkAgOANAIDsDQCA2wgAgJkIAIAVBwCAhggAgFUHAID/BgCApgcAgJEkAIDwDQCA4ggAgCcIAICcCACAWAgAgBUJAID0DQCA5QgAgBQIAICfCACA6AgAgBcIAIDJCACAoggAgOwIAIAbCACAzAgAgKYIAID3CACA/QgAgIgHAICKCACAWQcAgAMHAIA9CQCAQQkAgEkJAIA2CQCAGAkAgPgNAID0CACALQkAgAwJAIDkDQCA0ggAgI4IAIBdBwCAMAkAgA8JAIDoDQCA1QgAgJEIAIBgBwCArQgAgGMHAIDjSBIA4xQSAOP4EwDjuBMA4+wSAOOgEgDjbBIA43gSAO/ADQDv2A0A73QSAO9QEgDvqBIA79wSAO8oEwDvIBMA6QcAgMwGAIAOCACAEQgAgNgGAIDUBgCAIQgAgAcHAIBnCACADAcAgHYIAIA0BwCANwcAgKoIAIC2CACAuQgAgOPYEADjoBAA46AQAON0EQDjNBAA4wgQAOPkEADj9BAA77wQAO/gEADvzBAA7zgQAO8QEADvcBAA73AQAO9MEADjhBMA4+gTAOMwEADjEBAA42ATAONAEwDjpBMA47QTAO/IEwDvtBMA75gTAO98EwDvXBMA70wTAO8UEwDv6BAAgO08AIH1PACC/TwAg/U8AITtPACFFT0Ahh09AIcVPQCILT0AiTU9AIo9PQCLNT0AjC09AI0VPQCOHT0AjxU9AJBtPQCRdT0Akn09AJN1PQCUbT0AlRU9AJYdPQCXFT0AmC09AJk1PQCaPT0AmzU9AJwtPQCdFT0Anh09AJ8VPQCg7T0AofU9AKL9PQCj9T0ApO09AKUVPQCmHT0ApxU9AKgtPQCpNT0Aqj09AKs1PQCsLT0ArRU9AK4dPQCvFT0AsG09ALF1PQCyfT0As3U9ALRtPQC1FT0AthE9ALcRPQC4MT0AuTE9ALoxPQC7MT0AvBE9AL0RPQC+ET0AvxE9AIDxPACB/TwAgvU8AIMNPwCEFT8AhR0/AIYVPwCHDT8AiDU/AIk9PwCKNT8Aiw0/AIwVPwCNHT8AjhU/AI8NPwCQdT8AkX0/AJJ1PwCTDT8AlBU/AJUZPwCWCT8Alwk/AJg5PwCZOT8Amgk/AJsJPwCcGT8AnRk/AJ4JPwCfCT8AoPk/AKH5PwCiCT8Aowk/AKQZPwClGT8Apgk/AKcJPwCoOT8AqTk/AKoJPwCrCT8ArBk/AK0ZPwCuCT8Arwk/ALB5PwCxeT8Asgk/ALMJPwC0GT8AtRk/ALYJPwC3CT8AuDk/ALk5PwC6CT8Auwk/ALwZPwC9GT8Avgk/AL8JPwCA+TwAgfk8AIJJPQCDST0AhFk9AIVZPQCGST0Ah0k9AIh5PQCJeT0Aikk9AItJPQCMWT0AjVk9AI5JPQCPST0AkDk9AJE5PQCSAQQAk00GAJRVBgCVXQYAllUGAJdNBgCYdQYAmX0GAJp1BgCbTQYAnFUGAJ1dBgCeVQYAn00GAKC1BgChvQYAorUGAKPNBgCk1QYApd0GAKbVBgCnzQYAqPUGAKn9BgCq9QYAq80GAKzVBgCt3QYArtUGAK/NBgCwtQYAsb0GALK1BgCzTQYAtFUGALVdBgC2VQYAt00GALh1BgC5fQYAunUGALtNBgC8VQYAvV0GAL5VBgC/TQYArH0/AK2lPwCurT8Ar6U/AKh9PwCpZT8Aqm0/AKtlPwCkHT8ApUU/AKZNPwCnRT8AoB0/AKEFPwCiDT8AowU/ALydPwC9pT8Avq0/AL+lPwC4nT8AuYU/ALqNPwC7hT8AtN0/ALWlPwC2rT8At6U/ALDdPwCxxT8Ass0/ALPFPwCMZToAjW06AI5lOgCPfToAiEU6AIlNOgCKRToAi306AIRlOgCFbToAhmU6AId9OgCABToAgQ06AIIFOgCDfToAnF04AJ3lPwCe7T8An+U/AJhdOACZRTgAmk04AJtFOACUuTgAlWU4AJZtOACXZTgAkAU6AJENOgCSBToAkwE5AMAIAIDYCACA3ggAgPAIAIB2BwCAIgkAgHkHAICBBwCAVAkAgJ0HAIDLBwCAvQcAgMQGAIDcBACAewUAgM4FAIAJBgCALwYAgEYGAIBjBgCAegYAgJEGAIDXAwCA8AMAgAkEAIAiBACANQQAgEgEAIBbBACAbgQAgIEEAICUBACA+gQAgAkFAIAYBQCAJwUAgDYFAIBFBQCATgUAgFcFAIBgBQCAaQUAgJUFAICeBQCAXQgAgFYOAIBZDgCAOjoAgKwKAIAVCwCANjoAgD46AICcGQAAnRkAAJ45AACfOQAA4wwAgEI6AIB6NwCA8TAAgKI3AIBaMgCAxSoAgLksAICaMDUA7C0AgB0tAIDoLQCA1y8AgJ+ENQDSMwCAnUQpAGI1AICaNgCA1jYAgAo3AIAeOACAdjEAgAIyAICuMgCARjMAgGI2AIBGOACAcjkAgOkqAICNLACAijEAgNIyAICWNgCAwjkAgJQuAIB6MgCAhjYAgBo3AIALMACAvjUAgLSAGgC1hBkAtojmALeM5ACwABwAsZQeALIAGACznBsAvADsAL2k7wC+qO4Av6TtALgA4AC5tOMAurjiALu84QCkwAAApQAMAKbIDgCnAAgA4jYAgAcvAIAFMQCArXwDAKwAEACt5BMArugSAK9gEQCo8AoAqRwJAKr4FgCr/BQAGjIAgB4zAIAqOACAKSsAgMErAIAtLACAczAAgIIxAIDOMgCA8jMAgI42AICmNgCAyjcAgO44AICiOQCAvjkAgC40AIBuNACAvAgAgCY1AIBGNgCAejgAgE43AIChLQCAIy8AgN40AICeNQCAAjMAgDY0AICaNwCA5jgAgJ0tAIBwLgCAejEAgC4yAIBiMgCAFjUAgD41AICmOACAKSwAgJwAAACqNQCAzSsAgMkrAICaNACAKjUAgF42AICuOACAajcAgA8wAIBaNwCA0SoAgEQuAIB7LwCAMjMAgLIzAIBNLACAPjQAgDkrAIBfLwCAsSoAgO4xAICLMACAEjUAgIDpAwCB6QMAgjkvAIP9AwCE5QMAhe0DAIblAwCHfS4AiEEuAIkhAgCKeS8AiyUCAIw9AgCNJQIAjiECAI8dAgCQZQIAkW0CAJJlAgCTfQIAlGUCAJVtAgCWZQIAlx0CAJglAgCZLQIAmiUCAJs9AgCcJQIAnS0CAJ4lAgCfHQIAoOUCAKHtAgCi5QIAo/0CAKTlAgCl7QIApuUCAKdNAgCodQIAqX0CAKqpAQCrqQEArLkBAK25AQCuqQEAr6kBALDZAQCx2QEAsukBALPpAQC0eSIAtf0BALb1AQC37QEAuNUBALndAQC61QEAu60BALy1AQC9uQEAvqkBAL+pAQChLACAjS0AgP4zAIBmNgCAPjcAgLoxAIDmMQCAHzAAgB42AIA/MACArjMAgAUrAICBKwCAxSsAgFYxAID+NACA9jUAgEo3AIBaOACANSwAgOksAIAXLwCApzAAgH4yAIBCNACAljgAgHo5AIDOOQCA5jkAgOkwAICmMQCA7jcAgOMuAIC/LwCA2y8AgGswAIBuMgCAujIAgGozAICONACAMjUAgJY1AIDeNwCAbjYAgAY4AIB+OACA6SsAgBUsAID9LACAqjIAgPY2AIADLwCAcy8AgDcwAICyMQCA2jQAgCYzAIAVKwCAWS0AgKguAIB/LwCAQjMAgF4zAIBuNQCAgFEBAIEBKgCCXQEAg1UBAIRNAQCFdQEAhn0BAId1AQCITQEAiVUBAIqdKwCLWQEAjEkBAI1JAQCOuQEAj7kBAJDJAQCRyQEAktkBAJPZAQCUyQEAlckBAJb5AQCX+QEAmMkBAJnJAQCa2QEAm9kBAJzJAQCdyQEAnrkBAJ+5AQCgSQEAoZUBAKJFAQCjXQEApEUBAKVNAQCmRQEAp30BAKhFAQCpTQEAqnkPAKtBAQCsQQEArUEBAK5BAQCvQQEAsMEDALHBAwCywQMAs8EDALTBAwC1wQMAtsEDALfBAwC4wQMAucEDALrBAwC7wQMAvMEDAL3BAwC+wQMAv8kMAI41AIBiOACA4jgAgPI4AIAuOQCALSsAgII0AIBOOACAyjgAgJcvAIDxKgCAUSsAgEguAIBoLgCAlzAAgMYyAIDOMwCAejYAgBo4AIDZMACAojgAgA0sAIAlMQCAMTEAgBIyAIBKMgCATjMAgKozAIAqNACADjUAgDo5AIDrLwCAsjgAgEErAICMLgCAMjIAgOI3AIBPLwCAny8AgDkxAIC6OACA8SsAgNksAIB4LgCAwjAAgBUxAIBiMQCA9jEAgEozAIC+MwCAWjUAgPo2AIAGNwCA1jgAgF0sAIBOMgCA3SwAgMoyAIBuMwCAijYAgL44AICqOQCA0jkAgC0xAICxOSMAsBEDALMVAwCyFQMAtTUDALQ1AwC3NQMAtjUDALkVAwC4FQMAuxUDALoVAwC9dQMAvHUDAL91AwC+dQMAoZkNAKCRDQCjqQ0AopENAKW5DQCksQ0Ap6kNAKaxDQCpmQ0AqJENAKtpAwCqkQ0ArXkDAKxxAwCvaQMArnEDAJEZDQCQEQ0Aky0NAJIRDQCVPQ0AlD0NAJctDQCWLQ0AmR0NAJgdDQCbbQ0Amm0NAJ15DQCcgQ4An2kNAJ5xDQCBmQ0AgAkjAIOpDQCCkQ0AhbkNAISxDQCHqQ0AhrENAImZDQCIkQ0Ai2kNAIqRDQCNeQ0AjHENAI9pDQCOcQ0AKjIAgMY1AIDGNACA6jQAgBozAICiMgCAZjcAgA0rAIAuNgCA9SsAgOUrAIDzLgCAEzAAgPY0AIA0LgCABjIAgOUwAIDqNwCAqjgAgA8vAIBhKwCANS0AgIktAIDVMACA0SsAgCIzAIDmMwCASjQAgGY0AIBqNACAfjQAgPo4AIDuNACAkjYAgFY3AIAKOACANjgAgE45AIBSOQCAVjkAgLo5AIAuOACAxjgAgDErAIBVKwCAaSsAgCUsAIAxLACAcSwAgCUtAIBBLQCASS0AgIUtAICRLQCAdC4AgIsvAICzLwCAuy8AgJH4EADTLwCAfzAAgK8wAIDdMACAWjEAgIApAQCBKQEAgjkBAIM5AQCEKQEAhSkBAIZZAQCHWQEAiNkoAIltAQCKKSUAi2EBAIxhAQCNYQEAHjIAgDoyAICQGQEAajIAgJIVAQC+MgCA3jIAgJU1AQCWPQEAlzUBAJgNAQCZFQEAmh0BAJsVAQCcDQEAnfUBAJ7dKABSMwCAoAUBADI0AICiAQEAVjQAgFI0AIClGQEApgkBAFo0AIBeNACAdjQAgKo9AQCrNQEArC0BAK0VAQCuHQEArxUBALBtAQCxdQEAsn0BALN1AQC0bQEAtRUBALYdAQC3FQEAuC0BALk1AQC6PQEAuzUBALzZLgC9KQEAvhkBAL8ZAQC6eR4Au3keALjNAgC5eR4AvpUeAL+dHgC8QQIAvZ0eALJ9HgCzRR4AsH0eALF1HgC2XR4At0UeALRdHgC1VR4AqgUeAKsNHgCodR4AqQ0eAHo0AICeNACArBUeAK0NHgCiSR4Ao0keAKBJHgChSR4ApkkeAKf5AgCkSR4ApUkeAJqNHgCblR4AmI0eAJmFHgCeiR4An4keAJyNHgCdhR4AkgUDAJP1AACQCQMAkY05AJaxHgCXFQYAlO0AAJUBHACKvQMAi0EDAIiFAwCJnQMAjkEDAI9JAwCMyTkAjVEDAIIVAgCDHQIAgAUCAIEdAgCGzQMAh7EDAIQFAgCFxQMAs/kFALLxBQCx+QUAsOEFALeZKgC2EQMAtRkDALThBQC7NQMAujUDALklAwC4JQMAvxUDAL4VAwC9JQMAvCUDAKP9BQCi/QUAof0FAKD9BQCnnQUApp0FAKWdBQCknQUAq7kFAKqxBQCpJScAqL0FAK+ZBQCukQUArZkFAKyhBQCTAQUAkvkFAJF1OQCQ9QUAlwEFAJYZBQCVEQUAlBkFAJt5CQCaOQUAmTEFAJg5BQCfHQUAnh0FAJ0dBQCcHQUAg4kFAIKBBQCBiQUAgPEFAIeFBQCGhQUAhZUFAISBJgCLhQUAioUFAIm1BQCItQUAj4UFAI6FBQCNlQUAjJUFAM40AIA6NQCAQjUAgFY1AIB+NQCAzjUAgAI2AIBqNgCAEjcAgCo3AIBeNwCAYjcAgKY3AICqNwCAAjgAgNo4AIAeOQCANjkAgIMvAICQ6gCA5jUAgLkqAIC9KwCAfSsAgCUrAIBlKwCAkSsAgCEsAIA9LACAES0AgCEtAIA9LQCAmS0AgOQtAIDwLQCADC4AgBwuAIALLwCAEy8AgEMvAIBjLwCAky8AgKsvAICbLwCAry8AgO8vAIBHMACAUzAAgFswAICDMACACTEAgB0xAIBeMgCAVjIAgIYyAIAWNACA4jIAgBYzAIBiMwCAfjMAgKIzAIDGMwCAyjMAgOozAICAjQEAgZUBAIKdAQCDlQEAhI0BAIW1AQCGvQEAh7UBAIiNAQCJwR0AipkBAIvBHQCMhQEAjY0BAI6FAQCP/QEAkIUBAJEZHQCSkRQAk4UBAJSdAQCViTIAlk0ZAJc9GwCYsQEAmbEBAJotHACbtQEAnD0cAJ2pAQCemQEAn5kBAKDlHQChbQEAomUBAKN9AQCkZQEApW0BAKbxHQCnYQEAqKEDAKmhAwCqoQMAq6EDAKyhAwCttQEArq0DAK+lAwCwYRkAsdkDALLZAQCz7QMAtPUDALX9AwC29QMAt+0DALjFAQC50QMAumEdALvVAwC82QEAvT0XAL7FAwC/0QEA+jMAgA40AIAKNACAOjQAgLY0AIDmNACAHjUAgE41AIAyNgCAWjYAgM42AIAWNwCAIjcAgEI3AIBGNwCAUjcAgG43AIDmNwCAFjgAgEo4AIBqOACAtjgAgA45AIAqOQCAijkAgCfqAIAi6gCAVOoAgOEpAIAJKgCADSoAgNbqAIAD6wCAe+sAgBY6AIAmOgCARwgAgFIIAIBVCACASggAgE4IAIBXCQCA8Q4AgOIOAIDnDgCA9g4AgOwOAICyNACASw8AgMoPAICBDwCALw8AgFoPAIBnDwCAbw8AgJ0PAIDCDwCAuA8AgL0PAICqDwCAsQ8AgP4OAIADDwCACA8AgIBBAQCBMQMAgk0BAINFAQCEXQEAhUUBAIZNAQCHIQMAiF0fAIl9AQCKaQMAi3EBAIx1AwCNVQEAjlk6AI9ZAQCQKQEAkSkBAJI5AQCTOQEAlCkBAJUpAQCW2QEAl9kBAJjpAQCZ6QEAFQ8AgCIPAIAqDwCAMg8AgDwPAIBBDwCARg8AgFAPAIBVDwCAXQ8AgGoPAIByDwCAdw8AgHwPAICEDwCAiQ8AgJMPAICYDwCAoA8AgKUPAIDFDwCANw8AgBoPAIBiDwCAjg8AgA0PAIDdFgCA5hYAgOkWAIDvFgCA4xYAgOwWAIDgFgCAExcAgBYXAID1FgCA8hYAgPgWAICAmQcAgZkHAPsWAICDrQcAhLUHAAQXAICGsQcAh7EHAIiRBwCJkQcAipEHAIuRBwCM8QcAjfEHAI7xBwCP8QcAkJEHAJGVBwCSnQcAk5kHAJSFBwCVgQcAloEHAJeFBwCYuQcAmb0HAJq1BwCbsQcAnK0HAJ2pBwCemQcAn50HAKBhBwChZQcAom0HAKNpBwCkdQcApXEHAKZxBwCndQcAqEkHAKlNBwCqRQcAq0EHAKxdBwCtWQcArkkHAK9NBwCwMQcAsTUHALI9BwCzOQcAtCUHALUhBwC2IQcAtyUHALgZBwC5HQcAuhUHALsRBwC8DQcAvQkHAL7xAAC/9QAAgAkBAIENAQCCHQEAgxkBAITZAACF3QAAhtUAAIfRAACI8QAAifUAAIr9AACL+QAAjOkAAI3tAACO5QAAj+EAAJCdAACRmQAAkq0AAJOpAACUtQAAlbEAAJaxAACXtQAAmIkAAJmNAACahQAAm4EAAJydAACdmQAAnokAAJ+NAACgdQAAoXEAAKJ9AACjeQAApGlQAqVtUAKmYQAAp2UAAKhZAACpXQAAqlUAAKtRAACsTQAArUkAAK49AwCvOQMAsClQArEtUAIBFwCABxcAgP4WAIANFwCAChcAgBkXAIDZXFICHxcAgCUXAIAiFwCAKBcAgCsXAIA0FwCALhcAgKOhAACipQAAoZEAAKCVAACntQAAprEAAKW9AACkuQAAq40AAKqJAACpgQAAqIUAAK+FAACugQAArYkAAKyNAACz/QAAsvkAALHxAACw9QAAt5kAALadAAC1nQAAtJkAALutAAC6qQAAuaUAALilAAC/ZQEAvmEBAL1tAQC8aQEAHBcAgFcXAIBAFwCAPRcAgEgXAIBOFwCAOhcAgNksUQJLFwCAVBcAgHkWAIDhDwCAMRAAgA4QAIAiEACAHRAAgJNBAAAnEACALBAAgBMQAICXWQAAllUAAJVZAACUXQAAm3EAAJppAACZZQAAmGUAAJ9lAACeYQAAnTFTApxtAAC4gQQAuYEEALqBBAC7gQQAvIEEAFEXAIC+jQQA5g8AgLDdBQCxTQQAskUEALNdBAC0RQQAtU0EALZFBADrDwCAqKEFAKntQQCqrQUAq6UFAKy9BQCtpQUArq0FAK+lBQCgqQUAoZFBAKKpQACjoQUApKEFAKWhBQCmoQUAp6EFAP8PAIAYEACAWBAAgF0QAIBpEACAnVUFAH8QAICfWQUAjhAAgJMQAICeEACAkwUFAJQdBQCVBQUAlg0FAJcFBQC4EACAyxAAgO8QAIAhEQCAJhEAgC4RAIA9EQCATBEAgIBxBQCBcQUAgnEFAINxBQCEUQUAhVEFAIZdBQBREQCAWREAgHwRAICjEQCArxEAgM8RAIDUEQCA2REAgBMSAIAmEgCAMhIAgEoSAIDEEgCAGhMAgDMTAIA4EwCASxMAgFwTAIBuEwCAcxMAgJoTAICiEwCAtxMAgN4TAIDjEwCAPRQAgEIUAIBHFACAUxQAgF8UAIBkFACAbBQAgHgUAICSFACAlxQAgJ8UAICkFACAqRQAgK4UAICzFACAuBQAgMsUAIDQFACA7BQAgAYVAIAgFQCALBUAgEQVAIBJFQCAVhUAgHcVAICaFQCAtBUAgMAVAIDFFQCAzRUAgO4VAIAIFgCAFxYAgDQWAIA5FgCAQRYAgEYWAIBZFgCAXhYAgICtAQCBtQEAgr0BAIO1AQCErQEAhdUBAIbdAQCH1QEAiO0BAIn1AQCK/QEAi/UBAIztAQCN1QEAjt0BAI/VAQCQrQEAkbUBAJK9AQCTtQEAlK0BAJVVAwCWXQMAl1UDAJhtAwCZdQMAmn0DAJt1AwCcbQMAnVUDAJ5dAwCfVQMAoK0DAKG1AwCivQMAo7UDAKStAwCl1QMAphkOAKfZAwCobQ8AqSEOAKrhAwCr4QMArCkOAK3lAwCuGQ4ArxkOALCVAwCxnQMAsgEOALORAwC0HQ4AtQUOALa5AwC3uQMAuDkOALmNAwC6NQ4AuxEOALyBAQC9gQEAvnkBAL95AQCEFgCAkBYAgJwWAICrFgCAyBYAgM0WAIDuEQCA/xEAgHwWAICBAACAiwAAgJUAAICfAACAqQAAgLMAAID1DwCA+g8AgAQQAIB1EACAehAAgIQQAIDlEACA6hAAgBcRAIAzEQCAOBEAgEIRAIBRFQCADRYAgBIWAIAqFgCAoRYAgKYWAIC+FgCA8A8AgAkQAICJEACAHBEAgNcSAIA/FQCALxYAgGMWAIDDFgCARxEAgGQSAICfEgCAshIAgBEUAIAdFACAKRQAgI0TAICSEwCA0RMAgNYTAID9EwCAAhQAgGkSAIBuEgCAtxIAgLwSAIDCEQCAxxEAgJYRAICbEQCApD0DAKVFAwCmTQMAp0UDAKA9AwChJQMAoi0DAKMlAwCsfQMArUUDAK5NAwCvRQMAqH0DAKllAwCqbQMAq2UDALQ9AwC1xQMAts0DALfFAwCwPQMAsSUDALItAwCzJQMAvP0DAL3FAwC+zQMAv8UDALj9AwC55QMAuu0DALvlAwCEBQwAhQ0MAIYFDACHHQwAgI0MAIGpDACCGQwAg1ENAIxhDACNYQwAjmEMAI9hDACIKQwAiRUMAIodDACLFQwAlD0MAJXFAwCWzQMAl8UDAJABDACRAQwAkgEMAJMBDACc/QMAncUDAJ7NAwCfxQMAmP0DAJnlAwCa7QMAm+UDAIBpBACBaQQAgnEEAINxBACEnQQAhYUEAIaNBACHhQQAiL0EAImNBACKhQQAi50EAIyFBACNqQYAjvkEAI/5BACQiQQAkYkEAJKRBACTkQQAlLEEAJWxBACW+QYAl60EAJiVBACZwQYAmmkGAJtpBgCceQYAnXkGAJ7RBgCf/QsAoA0GAKEdCwCiGQYAo0ULAKQFBgClTQsApjUGAKe1BACoEQYAqREGAKoRBgCrNQQArC0EAK0BBACuXQQArx0GALDNBgCxbQYAsnUGALMNBgC0FQYAtR0GALYVBgC3DQYAuDUGALk9BgC6NQYAuw0GALwVBgC9HQYAvhUGAL8NBgCA9QcAgf0HAIL1BwCD9QAAhO0AAIURAwCGEQMAhxEDAIgxAwCJMQMAijEDAIsxAwCMhQcAjRUDAI4dAwCPFQMAkG0DAJGNBwCShQcAk50HAJSFBwCVjQcAloUHAJe9BwCYhQcAmY0HAJqFBwCbnQcAnIUHAJ2NBwCehQcAn4UAAKB9AAChgQMAooEDAKOBAwCkgQMApYEDAKaBAwCngQMAqBUHAKmFAwCqjQMAq4UDAKydAwCtoQMArqEDAK+hAwCwdQcAsXUHALJxBwCzhQUAtM0FALX1BQC2/QUAt8kDALj5AwC5+QMAuqEFALuhBQC8wQMAvcUDAN4RAIDjEQCAhJz7ACYTAIArEwCAYRMAgGYTAIB2EgCAghIAgJUSAICaEgCARRIAgNwSAIBXEwCASxAAgKMQAIC9EACAxBAAgJB1AACRfQAAknEAAJNxAACUAfwAlVX+AJZd/gCXVf4AmG3+AJlp/gCaef4Am3n+AJxp/gCdaf4Anln+AJ9Z/gCgpf4Aoa3+AKKl/gCjof4ApKH+AKWl/gCmrf4Ap6X+AKiZ/gCpmf4Aqun+AKvt/gCs9f4ArfH+AK7x/gCv8f4AsI3+ALGV/gCymf4As5n+ALSJ/gC1if4Atrn+ALe9/gC4hf4AuY3+ALqF/gC7nf4AvIX+AL2B/gC+gf4Av4H+AKbZCACnBQcApMEIAKWZBQCi0QgAo9EIAKCJBQChtQgArgEHAK8BBwCsMQcArTEHAKo9BwCrJQcAqD0HAKk1BwC2fQcAtwUHALR9BwC1dQcAsskFALNlBwCwcQcAsXEHAL4BBwC/AQcAvDEHAL0xBwC6IQcAuyEHALg9BwC5MQcAhjkHAIc5BwCELQcAhTkHAIINBwCDNQcAgBEHAIEFBwCOSQcAj0kHAIxNBwCN1QUAisEFAIvBBQCI1QUAiXEHAJbVBQCX2QgAlE0FAJXdBQCSUQUAk9kFAJD5BQCRoQUAnnEIAJ99CACcYQgAnWEIAJpxCACbeQUAmMUIAJl1BQD0EACA+xAAgAIRAICBEQCAuxEAgLQRAIArEgCAGBIAgB8SAIBWEgCATxIAgF0SAIDJEgCAHxMAgIcSAIB7EgCApBIAgKsSAIA9EwCAUBMAgHgTAIB/EwCAhhMAgKcTAIC8EwCAwxMAgOgTAID2EwCA7xMAgEwUAIB9FACAhBQAgAsVAIAZFQCAEhUAgPEUAIAlFQCAMRUAgHwVAICDFQCAkxUAgFsVAIBpFQCAnxUAgKYVAIBiFQCASxYAgFIWAIDzFQCA+hUAgNkVAIDgFQCAIxYAgBwWAICwFgCAbhAAgLEQAICqEACA3hAAgNcQAIAQEQCACREAgI8RAIBeEQCAgIEBAIGBAQCCgQEAg4EBAISdAQCFhQEAhokBAIeJAQCItQEAib0BAIq1AQCLjQEAjJUBAI2dAQCOlQEAj40BAIgRAIA3EgCAkv0BAJP1AQCU7QEAlZUBAJadAQCXlQEAmKkBAJmpAQCauQEAm7kBAJypAQCdrQEAnqUBAJ+dAQCgZQEAoW0BAKJlAQCjfQEApGUBAKVtAQCmZQEAp90AAKjlAACppQMAqq0DAKulAwCsvQMAraUDAK6tAwCvpQMAsN0DALHlAwCy7QMAs+UDALSpAQC1VQEAtvUDALftAwC41QMAud0DALrVAwC7rQMAvM0DAL3BAwC+vQMAv7UDANASAICOEgCARBMAgP8UAIA4FQCAlRYAgIkWAIC3FgCAuRUAgIsUAIABFgCAyhMAgMQUAIDSFQCArRUAgPgUAIC9FACAZREAgKgRAIBwFQCA0BAAgFgUAIBiEACAPhIAgOcVAIATEwCAcRQAgEIQAIA5EACAihUAgOESAID2EQCArhMAgGsWAIDqEgCA8RIAgGwRAIAEEgCApgMAgA0jAIARIwCAoAYAgMcAAIC1BgCAqyMAgK8jAIC5IQCAtSEAgOMHAIB7CQCAfwkAgEEjAICnIwCANSMAgDkjAIAdIwCAISMAgCUjAIApIwCALSMAgDEjAIDbBwCA3wcAgNEAAICATQEAgVEBAIJRAQCDTQEAhE0DAIUhAwCGRQEAh30BANcAAICiAwCAqAMAgN0HAIDTAACA1QAAgL0GAIB5AACABxQAgH0AAICHAACAkQAAgAwUAICbAACAGBQAgKUAAIAkFACArwAAgDAUAIC5AACANRQAgM8PAIBVEACAmBAAgJsQAIArEQCAVhEAgKARAIDMEQCA6BEAgOsRAIDzEQCADRIAgBASAIBzEgCAwRIAgDATAIBrEwCAlxMAgJ8TAICwpQEAsa0BALKlAQCzvQEAtKUBALWtAQC2pQEAt10BALhlAQC5bQEAumUBALt9AQC8ZQEA2xMAgDoUAIBpFACAgAW5AIHhBgCC4QYAg+EGAIThBgCoBgCAswYAgIfpBgCI2QYAifmxAIr1sQCL8bEAjO2xAI31BgCO+QYAj/0GAJDZBgCR2QYAkvWxAJwUAICUiZIClfEGAJb1BgCX9QYAmNkGAJnVsgCa3bIAm6kGAJy5BgCduQYAnqkGAJ+BBgCgoQcAoaEHAKIhsgCjpQcApIUAAKWNAACmQbMA1RQAgKiNBwCplQcAqp0HAKuVBwBOFQCAyhUAgDYQAIA+FgCAsP0HALGFBwCyjQcAaBYAgLSZBwCBFgCAtpUHALeNBwC4tQcAub0HALq1BwC7jQcAvJUHAL2dBwC+lQcAv40HAIB1BgCBlaACgpmgAoOZoAKEhaAChb2gAoaxoAKHhaACiLmgAomRoAKKnaACi5mgAoyFoAKNjQEAjoEBAI9FBgCQOQYAkT0GAJIxBgCTMQYAlC0GAJXVBgCW2QYAl90GAJjhBgCZ4QYAmu0GAJvpBgCc9QYAnf0GAJ7xBgCf9QYAoAkGAKEJBgCiBQYAowEGAKQdBgClBQYApgkGAKcNBgCoMQYAqTEGAKo9BgCrNQYArCkGAK0pBgCuJQYArx0GALBhBgCxYQYAsm0GALNpBgC0dQYAtX0GALZxBgC3dQYAuEkGALlJBgC6RQYAu0EGALxdBgC9RQYAvkkGAL9NBgCAsQUAgbEFAIK9BQCDuQUAhKUFAIWtBQCGoQUAh6UFAIiZBQCJmQUAipUFAIuRBQCMjQUAjcEFAI7NBQCPyQUAkLUFAJG9BQCSsQUAk7UFAJSpBQCVqQUAlqUFAJehBQCYnQUAmSkCAJolAgCbIQIAnD0CAJ3pAgCe5QIAn+ECAKAdAgChNQIAojkCAKM9AgCkIQIApSECAKYtAgCnKQIAqBUCAKkZAgCqFQIAqxECAKwNAgCteQIArnUCAK8V8ACwafAAsRECALIdAgCzGQIAtAUCALUhAAC2LQAAtyUAALgZAAC54QEAuu0BALvlAQC8+QEA2BQAgN0UAIC/9YYCp2kNAOIUAIDnFACAzwAAgNkAAICzAwCA4QcAgH0JAID7IgCAzNSFAszghQL/IgCAgSkAgDUkAIBuJACAjSQAgLyZBQC9mQUAvqkFAL+ZvAC4mQUAuZkFALqJBQC7iQUAtKEFALXVsQC23bEAt6kFALCxsgCxzQUAssUFALO9BQCfJACAxCQAgMMoAIDfKACA8SgAgIgmAICFKQCAaSkAgCkkAIAtJACA2WSgAoEJAIDZUKAChAkAgI0JAICKCQCAhwkAgOwhAIDvIgCA9CEAgJhlBQCZEbIA/CEAgNkwoAKUOZEClU0FAJZFBQCXXQUAkGkFAJFpBQCSWQUAk1kFAID9vACB1ZwCgmW8AIPFvACEkbwAhZ28AIalvACHjbwAiK2TAonlvACKKZACi7W8AIwRkAKNlbwAji2wAI/FnAKQ6bwAkcHIAJJBkAKT8Z0ClNW8AJXlvACW4bwAl02QAphlkAKZfZACmrm8AJupCgCcbQ8Anb0KAPMiAICfXQ8AoK0PAKElCgCibQoAo2UKAKQNCgClpQ8ApgXUAKepDwComQ8AqZkPAKopDwCrKQ8ArDkPAK05DwCuKQ8ArykPALBZDwCxndEAspXRALOF1gC0sdEAtbHRALbZ1AC32dQAuOnUALnp1AC6+dQAu/nUALzp1AC96dQAvrnUAL+51ACASdUAgUnVAIJZ1QCDWdUAhEnVAIV90ACGddAAh23QAIhV0ACJXdAAinXVAIut1QCMtdUAjb3VAI611QCPQdAAkMHQAJHB0ACSwdAAk8HQAJTB0ACVwdAAlsHQAJfB0ACYwdAAmc3QAJrF0ACb3dAAnOHVAJ3pDgCe2Q4An9kOAKDV2wChwdkAotnZAKPB2QCkxdkApc3ZAKbF2QCnGdkAqGHZAKlh2QCqydkAq8nZAKzZ2QCt2dkArs3ZAK/B2QCwCdkAsRXZALId2QCzrdoAtB3ZALWx2gC2wdwAt93dALjl3QC59d0Auv3dALut3QC8td0AvaXdAL6t3QDwIQCAgvHaAIPx2gD3IgCA5OgAgIYR2ACHEdgAhOHaAIXh2gCKKdgAiynYAK9AEwClKNoAjinYAI8p2ACMKdgAjSnYAJJh2ACTYdgA6egAgO7oAICWZdgAl23YAJR12ACVbdgAml3YAJst2ADz6ACA8FwCALEw3wCR8AIAnCnYALLQAwCiOQ0Ao1GeAqAlDQChOQ0AplUNAIS8AgCkJQ0ApV0NAKptDQCrAQQAqGENAKlRAwCuuQAAp3UAAKxhDQCtxQIA+OgAgIfMAwDwVAIAzFC6AJHYBACb9NsAkRgCAJk02wCddAQAvh0AAJ9gBQCejAUAjOwCAI2sBAD96ACAvfWKAqghvwCpLb8Aqi2/AKs9vwCsKb8ArVW/AK5RvwCvTb8AoBkIAKGlvQCiIb8AozGzAKQ9vwClJb8Apg2zAKclvwC46bMAuc3LALppswC7uQkAvH0IAL2tCQC+QQwAv50JALA5vwCxhb0Asgm/ALPtywC0Gb8AtQW/ALbtswC3Bb8AiDG9AIkxvQCKrQgAiyW9AIwJCQCNvQgAjiW+AI+JDAAC6QCAgQ0JAIKlDACDUQkAhIEIAIWBCACGmQgAh60MAJhhvQCZYb0Amm0JAJsVnQKcxQ8AnQ28AJ7BDwCfcQkAkBW+AJERnwKSNZ8Ckw2fApQJvgCVCb4AlnG9AJdxvQCCuAQAl6UHALnEAwDwWAIAkUwCAJLIAgCErAQAsD0AAAzpAIAH6QCAvQUAABHpAIDwTAIAuhEAAJEkAgCN5AQAkqwCAJasAgC4uAMAudADAJb4AgCvDQAAFukAgPB4AgCRXAIAlrACAK8FAAAb6QCAIOkAgCnpAIAy6QCAP+kAgIX4AwBM6QCAh4ADAIbAAgBZ6QCAZukAgHPpAICW6QCAuzkAAHzpAICf6QCAiekAgL8dAAC+HQAAvR0AALwhAACVwB0AlMQfAJfIGgCWABgAkSAAAJDUAQCT2B4AkgAcAJ3gEgCcABAAn+gRAJ7sEwCZ8BkAmPQbAJv4FwCaABQAnnEBAJ9xAQCABQAArOkAgM0KAICwDACAXg0AgGQNAIBqDQCAdg0AgHkNAIB8DQCAfw0AgIINAICRDQCAlw0AgJoNAICdDQCAICIAgMcNAIDWDQCA/A0AgP8NAIAODgCAEQ4AgB0OAIAYIgCAMg4AgDUOAIDXFgCAEBcAgNoWAIC4ACwAuYwvALqILgC6AwCAhpwXAMx4vACEmC0AhVwXALcDAIDKAwCAiAAoAIksFADtBACAjAUAgN8FAIAaBgCAQAYAgFcGAIB0BgCAiwYAgDgBAIA8AQCAQAEAgEQBAIBIAQCATAEAgKR9AQBQAQCAonUBAKNlAQCggQEAoYEBALxxugC9kbYAvnG6AL+ltgC48bgAuXW6ALqZzgC7dboAtGG6ALVtugC2eboAt3W6ALAZugCxEboAsgm6ALMFugCsUboArXG2AK5RugCvbboAqNG4AKldugCqRbYAq1G6AKRxlgKlYZYCpnGWAqe9ugCgzZsCofG6AKLJugCjxboAnHmaAp0tugCeDc4An4WWApgJugCZtZYCmjm6AJuJtgCUMboA+CEAgJZpugCXrZYCkHm6AJE1ugCSMboAkwG6AIxJzgCN5bYAjhmaAo+hugCIoboAiUG2AIqhugCLdbYAhAG4AIWFugCGac4Ah4W6AICxugCBvboAgqm6AIOlugCAgbkAgQ27AIIVtwCDAbsAhAG7AIUhtwCGAbsAhz27AIgJuwCJAbsAihm7AIsVuwCMcbsAjX27AI5puwCPZbsAkKG5AJEluwCSyc8AkyW7AJQhuwCVwbcAliG7AJf1twCY6c8AmUW3AJq5mwKbAbsAnLm7AJ31uwCe8bsAn8G7AKARuwChCZQCokm7AKONlwKkCbsApbWXAqY5uwCnibcAqFmbAqkNuwCqLc8Aq6WXAqwNmgKtMbsArgm7AK8FuwCw0ZcCscGXArLRlwKzHbsAtFG5ALXduwC2xbcAt9G7ALjxuwC50bcAuvG7ALvNuwC82bsAvdG7AL7JuwC/xbsAgJmkAIEliAKCqaQAgxmoAFsNAICFvaQAhp3QAIcViAKInYUCiaGkAIqZpACLlaQAjCGIAo0xiAKOIYgCj+2kAJDBpgCRTaQAklWoAJNBpACUQaQAlWGoAJZBpACXfaQAmEmkAJlBpACaWaQAm1WkAJwxpACdPaQAnimkAJ8lpACgYaYAoeWkAKIJ0ACj5aQApOGkAKUBqACm4aQApzWoAKgp0ACphagAqnmEAqvBpACseaQArTWkAK4xpACvAaQAsFGkALFJiwKyCaQAs82IArRJpAC19YgCtnmkALfJqAC4GYQCuU2kALpt0AC75YgCvE2FAr1xpAC+SaQAv0WkAIARiQKBAYkCghGJAoPdpQCEkacAhR2lAFQBAICHEaUAiDGlAIkRqQCKMaUAWAEAgFwBAICNEaUAjgmlAI8FpQCQAaUAkQ2lAJIZpQCTFaUAlLGnAGABAICW2dEAlzWlAJgRpQCZ8akAmhGlAJvFqQCc+dEAZAEAgJ6phQKfEaUAoEmlAKEFpQCiAaUAozGlAKQBpQClGYoCplmlAKediQKoOaUAqYWJAqoJpQCruakArEmFAq0dpQCuPdEAr7WJArB9hAKxQaUAsnmlALN1pQC0wYkCtdGJArbBiQK3DaUAuGGnALntpQBoAQCAu+GlALzhpQC9wakAvuGlAGwBAIC3baYAttWGArUpqgC0hdIAs7mqALJtpgCxjaoAsG2mAL8higK+5aYAvaWJAnABAIC7jaYAdAEAgLm5pgC49aYAeAEAgKZ1pgClbaYAfAEAgIABAICiTaYAhAEAgIgBAICvCaYAruXSAIwBAICsjaQAqymmAKolpgCpMaYAkAEAgJc5pgCWNaYAlQ2mAJQxhwKTmYoCkhHSAJExpgCQZYYCn62mAJ65qgCUAQCAnC2kAJthpgCarYoCmb2KApitigKHfaYAhk2mAIVJpgCEBaYAg72mAIIFhgKB+aoAgFXSAI/1qgCORaYAjcmKAox1pgCL8YoCijWmAIl1iQKIbaYAgCmnAIEhpwCCOacAgzWnAIRRpwCYAQCAhkmnAJwBAIDMSIkCzYiJAoqp0wCLRacAjEGnAI2hqwCOQacAj5WrAJDJ0wBFIwCAkpmHApMhpwCUmacAldWnAJbRpwCX4acAmPGnAJnpiAKaqacAm22LApzppwCdVYsCntmnAJ9pqwCgeYcCoS2nAKIN0wCjhYsCpC2GAqURpwCmKacApyWnAKixiwKpoYsCqrGLAqt9pwCsMaUArb2nAK6lqwCvsacAsNGnALHxqwCy0acAs+2nALT5pwC18acAtumnALflpwC4oacAua2nALq5pwC7tacAvBGlAL2VpwC+edMAv5WnAICRoACBiY8CgsmgAIMNjAKEiaAAhTWMAoa5oACHCawAiNmAAomNoACKrdQAiyWMAoyNgQKNsaAAjomgAI+FoACQUYwCkUGMApJRjAKTnaAAlNGiAJVdoACWRawAl1GgAJhxoACZUawAmnGgAJtNoACcWaAAnVGgAJ5JoACfRaAAoMGgAKHNoACi2aAAo9WgAKRxogCl9aAAphnUAKf1oACo0aAAqTGsAKrRoACrBawArDnUAK2VrACuaYACr9GgALAJoACxRaAAskGgALNxoAC0QaAAtVmPArYZoAC33YwCuHmgALnFjAK6SaAAu/msALwJgAK9XaAAvn3UAL/1jAKAvYACgYGhAIK5oQCDtaEAhAGNAoURjQKGAY0Ch82hAIihowCJLaEAijWtAIshoQCMIaEAjQGtAI4hoQCPHaEAkGmhAJFhoQCSeaEAk3WhAJQRoQCVHaEAlgmhAJcFoQCYgaMAmQWhAJrp1QCbBaEAnAGhAJ3hrQCeAaEAn9WtAKAJ1QChpa0AolmBAqPhoQCkWaEApRWhAKYRoQCnIaEAqDGhAKkpjgKqaaEAq62NAqwpoQCtlY0CrhmhAK+prQCwOYECsW2hALJN1QCzxY0CtG2AArVRoQC2aaEAt2WhALjxjQK54Y0CuvGNArs9oQC8caMAvf2hAL7lrQC/8aEAs2miALKF1gCxaaIAsO2gALe5rgC2baIAtY2uALRtogC7TaIAuvWCArkJrgC4pdYAv42iAL69ogC9uaIAvPWiAKNNogCiWa4AoUGiAKDNoACncaIApk2iAKVtrgCkTaIAq1miAKpVogCpTaIAqEWiAK8pogCuJaIArTGiAKw9ogCTla4AkiWiAJGpjgKQFaIAl5mOApYR1gCVMaIAlGWCApsZogCaFaIAmS2iAJgRgwKfYaIAnq2OAp29jgKcrY4Cg2muAIK9ogCBXa4AgL2iAIe9ogCGBYIChfmuAIRV1gCLXaIAim2iAIlpogCIJaIAj/GOAo41ogCNdY0CjG2iAIARowCBMa8AghGjAIMtowCEOaMAhTGjAIYpowCHJaMAiGGjAIltowCKeaMAi3WjAIzRoQCNVaMAjrnXAI9VowCQMaMAkdGvAJIxowCT5a8AlNnXAJV1rwCWiYMClzGjAJipowCZ5aMAmuGjAJvRowCc4aMAnfmMAp65owCffY8CoBmjAKGljwKiKaMAo5mvAKRpgwKlPaMAph3XAKeVjwKoHYICqSGjAKoZowCrFaMArKGPAq2xjwKuoY8Cr22jALBBoQCxzaMAstWvALPBowC0waMAteGvALbBowC3/aMAuMmjALnBowC62aMAu9WjALyxowC9vaMAvqmjAL+lowBnDQCA0QYAgG0NAIDIBwCAcw0AgA8HAICFDQCAlAcAgIsNAICaBwCAuA0AgH0HAIDKDQCAxQcAgAIOAIBPBwCAFA4AgFIHAIAgDgCAkB0AAOEGAIAPJACA4iUAgCguAICtLACAyS0AgKpVAACrKQAAMjcAgAErAIDGMACAsjIAgAEsAIBTLwCAmSsAgJ8wAIDtKwCAGjUAgI43AICtLQCA5SwAgGYyAIADMACALzAAgA44AIAjMACA+y8AgHI0AICAIa4AgaWsAIJJ2ACDpawAhKGsAIVBoACGoawAh3WgAIhp2ACJxaAAiv0AAIsxxgCM7QAAjdEAAI7VAACPyQAAgCmhAIFNFACCIQEAg+G4AoQ5qgCFOaoAhhG9AodRFACIEQEAidW4AorNrQCLLbsCjGEUAI3ZjQKObRQAj2UUAJB5AQCRubgCkkm9ApNFuwKUDRQAlTUUAJYZAQCXqbgCmF2qAJkBFACaIQEAmwUUAJx5vQKdhbgCnnm7Ap+JuAKggb0CoXm4AqKZCQCjlRQApFmuAKWJFACmmQEAp70UAKipAQCpvbsCqrkBAKuJFACsmRQArZkUAK6JFACviRQAsNkBALEJrgCy6QEAs9W7ArTNuwK17RQAtpW8ArfhFAC4oRQAuaEUALrBoQC7pRQAvNkBAL0ZuAK+0aoAv9GqAL9FFwC+RRcAvTUXALxBvwK7KRcAugm4ArkBuAK4PQIAt+2tALY9AgC1HRcAtB0XALMdFwCyHRcAsR0XALAtAgCvWbgCrk0CAK1pFwCsTQIAq00XAKqdrQCpQRcAqE0KAK40AIDRLACApX0XAKR9FwCjoa4Aom2CAqF9ggKgbYICnzmuAJ41rgCdDa4AnDGPApuZggKaEdoAmTGuAJhljgKXtaIAlgWuAJWJggKUNa4Ak7GCApJ1rgCRNYECkC2uAI99rgCOTa4AjUmuAIwFrgCLva4AigWOAon5ogCIVdoAh0miAIadrgCFfaIAhJ2uAIOZrgCCddoAgZmuAIAdrADMqIQCzUyGAswguQLNTLkCzECOAkYyAIDMmIUCzTyEAswQgwLNUIMCzKCDAs2MgwLMMIACzSSAAswYgALNhIACmjMAgAUsAIAxLQCAiSMAgE0jAIBXIwCAayMAgJMjAIB1IwCAnSMAgGEjAIB/IwCAzPC5As2EuQLMULgCzay7AoDNAACB1QAAgt0AAIPVAACEzQAAhfUAAIb9AACH9QAAiM0AAFcvAIDBLACA1SoAgM0qAIDdKgCAuekAgCErAICQZQAAkW0AAKiIKgA1KwCAPSsAgEUrAIBJKwCATSsAgKIAMACjzDMAoOg9AKHsPACm8DYAp/QoAKQANACl/DUAgFERAIHpiAKCXREAg1URAIQpBACF6b0Chhm4AocVvgKIfREAiUURAIppBACL2b0CjA2vAI1REQCOcQQAj1URAJBJuAKRtb0Ckkm+ApO5vQKUUbgClam9ApZJDACXRREAmKmrAJl5EQCaaQQAm00RAJx5BACdbb4CnmkEAJ9ZEQCgqREAoakRAKK5EQCjuREApIkEAKVZqwCmuQQAp4W+Aqi9vgKpnREAquW5AquREQCs8REArfERAK6RpACv9REAsOkEALEpvQKy4a8As+GvALTZuAK1mREAtukEALctvQK4BagAueW+Arq5EQC7AYgCvKURAL2tEQC+wQQAvwG9AoABuQKBDb8CglUQAINtEACEUQUAheG8AoYlrgCHeRAAiGkFAIlNEACKIbkCi928AowxvwKNwbwCjjm5Ao/BvAKQUQ0AkV0QAJKBqgCTURAAlFEFAJV1EACWUQUAl0W/AphxBQCZQRAAmkEQAJtBEACcQRAAnUEQAJ5hBQCfsaoAoKEFAKGdvwKilb8Co7UQAKTduAKlqRAAptkQAKfZEACoiaUAqe0QAKqBBQCrQbwCrJmuAK2ZrgCusbkCr/EQALDxBQCxNbwCsi2pALPNvwK0gRAAtTmJAraNEAC3hRAAuNkFALkZvAK66bkCu+W/ArytEAC9lRAAvrkFAL8JvAK5La0AuC2tALtFEwC6BboCveG/ArwlBgC/GbwCvvmqALEdEwCwabsCs20TALJtEwC1eRMAtB2mALfVvwK2FQYAqXUTAKh1EwCrhakAqlUGAK1JvAKsdQYAr2ETAK5BvAKhQRMAoGUGAKNxvAKiZQYApVUTAKRlBgCnVRMAplUTAJl1vwKYhbwCm3W/ApqNugKdiRMAnIUOAJ+FEwCeVakAkVW/ApDlBgCTzRMAkpGtAJXZEwCU/QYAl0m/Apa1ugKJmRMAiJETAIs1vwKK9QYAjdm8AozVugKPuRMAjoETAIGtEwCA7boCgxm/AoLdBgCF8bwChBGqAIcVigKGrRMAgD2sAIFhEgCCQQcAg2USAIQZuwKF5b4Chhm9AofpvgKIIbsCidm+AopFEgCLXRIAjSkAgM3pAICOzaoAj8mLApCdiwKRpYsCkrGqAJOxqgCU2akAldmpAJb5qQCX+akAmJWqAJmRiwKatYsCm42LApyJqgCdiaoAnvGpAJ/xqQCgIakAoSGpAKJ9qgCjeYsCpE2LAqV1iwKmYaoAp2GqAKgpqQCpKakAqgmpAKsJqQCsRaoArUGLAq5liwKvXYsCsDmqALE5qgCyQakAs0GpALRxqQC1cakAti2qALcpiwK4PYsCuQWLAroRqgC7EaoAvHmpAL15qQC+WakAv1mpAIKJIwBtKwCAcSsAgI0rAIC+6QCAh5kjAJEpAIB5KwCAyOkAgIu5JACpKwCAifkkAI6VIwCPiSMAsSsAgI2JJACSvSMAESsAgLkrAICR4SMAo+sAgJfFIwCU8SMA4SsAgJkpAICbkSMA+SsAgJndIwD9KwCAnwktAAksAICdjdUAogkjAJ0pAIBBLACAofUjAEUsAICnGSMApCUkAG0sAICq7SQAeSwAgKgdIwCpeSQArhUjAK8JIwCsCSQArQkkALI9IwCJLACAsDEjALFhIwC2VSMAt0UjALRxIwC1XSMAulkjALsRIwCRLACAuV0jAL6JLQCVLACAvI0tANzpAICAuSUAgX0iAIKBIgCDmSIAhK0lAIXZJQCGuSIAh5EiAIiVIgCJ8SUAljIAgIuxJQCMgSUAjYElAI6dIgCPgSIAkLkiAJHpIgCStSIAk9EiAJT5IgCV1SIAlt0iAJfNIgCY+SIAmdUiAJrRIgCbmSIAqSwAgLEsAIDh6QCAvSwAgGUAAACh/SIAogEiAKMZIgDFLACApVklAKY5IgCnESIAqBUiAKlxJQDNLACAqzElAKwBJQCtASUArh0iAK8BIgCwOSIAsWkiALI1IgCzUSIAtHkiALVVIgC2XSIAt00iALh5IgC5VSIAulEiALsZIgD1LACA4SwAgO0sAIDxLACAgI0vAIGlLwCCrS8Ag70vAISlLwCFrS8AhqUvAIfdLwCI5S8Aie0vAIrlLwD5LACAAS0AgAUtAIANLQCAFS0AgJCRLwCRkS8AkpEvAJORLwCUsS8AlbEvAJa1LwCXRTMAmE0zAJlVMwCaPTMAmxkzAJyZMwCdiTMAnlUwAJ9JMACgwTAAockwAKLZMACj1TAApM0wAKX9MACm5TAApzUwAKi1MQCpuTEAqu0xAKuxmgCs0ZYArbE6AK61OgAZLQCAsEGUALHNlgCy1ZoAs8GWALTBlgC14ZoAtsGWALf9lgC4yZYAucGWALrZlgC71ZYAvLGWAL29lgC+qZYAv6WWAMUAAAChfSAAooEgACktAICkrScALS0AgDktAICnkSAAXS0AgKnxJwCqZScAq7EnAKyBJwCtgScArp0gAK+BIACwuSAAsekgALK1IABhLQCAtPkgALXVIAC23SAAt80gAEUtAIC51SAATS0AgLuZIACpLQCAcS0AgHUtAIB5LQCAgDknAIH9IACCASAAgxkgAG0tAICFWScAhjkgAIcRIACIFSAAiXEnAIrlJwCLMScAjAEnAI0BJwCOHSAAjwEgAJA5IACRaSAAkjUgAJNRIACUeSAAlVUgAJZdIACXTSAAmHkgAJlVIACaUSAAmxkgAJyFLgCdBdYAnoEuAJ+BLgCArT8AgbU/AIK9PwCDtT8AhK0/AIW5yACG1T8Ah80/AIj1PwCJ/T8AipnIAIvxPwCMATsAjQE7AI6NyACPOQQAkEkEAJFJBACSWQQAk1UEAJRNBACV3TwAlnkEAJd1BACYWQQAmSEEAJohBACbNdQAnCEEAJ3Z5gCeJQQAnx0EAKDpBACh9QQAos0/AKP1BACkFQQApfnUAKYhyACnIcgAqNHUAKktBACqOQQAq03CAKwtBACtdcgArh0EAK95BACwKQQAsTEEALI9BACzOQQAtC0EALX9BQC2qQUAt6kFALiZBQC5mQUAunkFALtFBQC8AQUAvQEFAL4BBQC/AQUAgC0HAIE1BwCCPQcAgzUHAIQtBwCFqQcAhqUHAIdl1QCILQYAiTEGAIoxBgCLDQYAjPnJAI15BgCOWQYAj1UGAJBpyQCRNQYAkj0GAJM1BgCULQYAlcUGAJZdAwCXVQMAmG0DAJl1AwCafQMAm3UDAJxtAwCdET0AnlkDAJ9ZAwCgqQMAoakDAKK5AwCjuQMApKkDAKWpAwCm2QMAp9kDAKjpAwCp6QMAqvkDAKv9AwCs5QMAre0DAK7lAwCvbcMAsKEDALGhAwCyoQMAs6EDALShAwC1zeYAtq0DALelAwC4yeYAuZkDALppAwC7aQMAvHkDAL15AwC+aQMAv2kDAIAAAACBLQCAfS0AgJUtAIDm6QCAsS0AgLUtAIC9LQCA0S0AgPQtAIDr6QCA8OkAgAAuAIAELgCACC4AgPwtAIAQLgCAoSkAgKUpAIAYLgCAIC4AgPXpAIA8LgCAQC4AgEwuAID66QCAVC4AgFguAIA3LwCAqSkAgGwuAICILgCAhC4AgATqAICQLgCACeoAgJwuAICYLgCAoC4AgLAuAIC0LgCArSkAgMQuAIDMLgCA0C4AgNQuAICxKQCADuoAgLUpAID3LgCA+y4AgP8uAIDV6wCAGOoAgNo1AIAvLwCAuSkAgDvqAIAN6wCAPy8AgEcvAIC9KQCAWy8AgGsvAICqIfQAq7U/AKilPwCpzecArkXwAK+hPwCsSfAArTH0AKJl4gCjvT8AoLk/AKG5PwCmlT8Ap50/AKSlPwClnT8Augk8AG8vAIC4CTwAuQk8AHcvAICHLwCAxSkAgMEpAICy3T8AswU9ALBN7wCx1T8Atn3wALe55AC0HT0AtWk8AB3qAICPLwCAoy8AgKcvAIC3LwCAyy8AgMMvAIDHLwCAgrX7AM8vAICA/T8AgfU/AOMvAIDnLwCA/y8AgAcwAICavT8Am/3NAJi9PwCZtT8Anlk/AJ9ZPwCcWT8AnVk/AJKBPwCTaekAkHnkAJGxPwCWgT8Al4H0AJQh5wCVmT8AFzAAgCswAIAs6gCAJzAAgBswAIAzMACAOzAAgE8wAIAx6gCAVzAAgEoAAABLMACAQzAAgMkpAIBfMACAZzAAgG8wAIBjMACAzSkAgIcwAIA26gCAszAAgPUwAIDRMACA2SkAgNUpAIDRKQCAnSsAgKErAID5MACA4TAAgK41AIA9KgCADTEAgCExAIAZMQCAT+oAgN0pAIA1MQCAKTEAgFIxAIBZ6gCAXjEAgD0xAIBmMQCAajEAgG4xAIByMQCAfjEAgF7qAICGMQCA5SkAgJIxAIBj6gCAljEAgOkpAICiMQCArjEAgL4xAIBo6gCA/+kAgG3qAIDeMQCAcuoAgLgJAQC5CQEAuhkBALsZAQC8CQEAvQkBAL45AQC/OQEAsM3FALE1zACymQ4As5kOALSJDgC1iQ4AtjkBALc5AQCo6dkAqckOAKrZDgCrqcUArMUOAK3NDgCuxQ4Ar/kOAKA1DgChPQ4AojUOAKOxxQCk8Q4ApfEOAKbxDgCn8Q4AmGkPAJlpDwCaeQ8Am3kPAJxpDwCdaQ8Ant0OAJ/NDgCQ+eoAkXEPAJJ9DwCTdQ8AlG0PAJVpDwCWWQ8Al1kPAIh5DwCJeQ8AigkPAIsJDwCMGQ8AjRkPAI4NzACPDQ8AgHkPAIF5DwCCSQ8Ag0kPAIRZDwCFWQ8AhkkPAIdJDwCKUQIAi1ECAIj5xgCJQQIAjnECAI/txgCMQQIAjUECAIIVAgCDHQIAgAUCAIEdAgCGdQIAh30CAIQFAgCFfQIAmsUCAJvNAgCYkc8AmYXaAJ7FAgCfzQIAnNUCAJ3NAgCSDQIAkxUCAJANAgCRBQIAlg0CAJf1AgCUDQIAlQUCAKo9AgCrRQIAqD0CAKk1AgCuXQIAr0UCAKxdAgCtVQIAol3GAKMBAgCgNQIAoQ0CAKYBAgCnxdgApBECAKURAgC6OQIAuzkCALg5AgC5OQIAvtkBAL/ZAQC82QEAvdkBALI9AgCzBQIAsD0CALE1AgC2GQIAtxkCALQdAgC16cIA6jEAgPIxAIDiMQCA/jEAgA4yAIAWMgCAIjIAgCYyAIB36gCACjIAgD4yAIBCMgCA7SkAgFIyAIB86gCANjIAgHIyAICB6gCAhuoAgHYyAICKMgCAgjIAgPEpAICOMgCAnjIAgJoyAICmMgCAw+kAgLYyAICL6gCAwjIAgJXqAIDWMgCA9jIAgJrqAIAKMwCADjMAgJ/qAICk6gCAKjMAgDozAID1KQCAPjMAgPkpAIBWMwCAWjMAgGYzAIByMwCA/SkAgIozAICp6gCApjMAgK7qAIAT6gCAwjMAgLPqAIC4AAAAuOoAgL3qAIABKgCABSoAgMfqAIDC6gCAzOoAgIAB3gCB8QcAgvEHAIPxBwCEFQIAhR0CAIYVAgCHEQIAiCXeAIld3gCKOQIAizkCAIwpAgCNKQIAjhkCAI99ygCQTd4AkWECAJJhAgCT7cEAlH0CAJVlAgCWIcAAl2kCAJhZAgCZMcIAmlUCAJstAgCcNQIAnT0CAJ4xAgCfMQIAoNECAKHRAgCi0QIAo9ECAKTxAgCl8QIApvECAKfxAgCo0QIAqdECAKrRAgCr0QIArDECAK0xAgCuMQIArzECALBRAgCxUQIAslECALNRAgC0cQIAtXECALZxAgC3cQIAuFECALlRAgC6+dwAu1UCALxNAgC9NQIAvj0CAL81AgC+7QYAv/UGALztBgC95QYAuskGALvJBgC4xcsAuckGALbtBgC39QYAtO0GALXlBgCyjQYAs/UGALDR3QCxhQYArvEGAK/xBgCs5QYAreEGAKr1BgCr/QYAqMUGAKn9BgCm9QYAp/0GAKTlBgCl/QYAovUGAKP9BgCg+QYAoZ3dAJ75BgCf+QYAnPkGAJ35BgCa+QYAm/kGAJj5BgCZ+QYAlvkGAJf5BgCUcd0AlfkGAJL9BgCT5QYAkP0GAJH1BgCO/QYAj4UGAIz9BgCN9QYAiuEGAIsB3QCI8QYAifEGAIbBBgCHwQYAhPEGAIXxBgCCkccAg+EGAIDpBgCBxcAAgAAAANHqAIACNACABjQAgBI0AIARKgCAFSoAgNvqAIAmNACAGSoAgODqAIDl6gCA6uoAgJY0AIAdKgCAojQAgKY0AIDv6gCA9OoAgL40AIAhKgCA+eoAgNI0AIDWNACAJSoAgP7qAIDyNACAKSoAgAI1AID6NACACjUAgAjrAIAiNQCALSoAgC41AIA2NQCARjUAgDEqAIAS6wCAF+sAgDUqAIAc6wCAXjUAgCHrAIBqNQCAdjUAgCbrAIAr6wCAkjUAgDDrAICaNQCAQOoAgDkqAICyNQCAtjUAgEEqAIC6NQCAFC4AgDXrAIA66wCAReoAgErqAIDeNQCA9jcAgIDNAQCB1QEAgt0BAIPVAQCEzQEAhfUBAIb9AQCH9QEAiM0BAInVAQCK3QEAi/UJAIzJAQCNyQEAjgEcAI89HwCQRR8AkU0fAJJFHwCTXR8AlEUfAJVNHwCWRR8Al30fAJhBxwCZQR8AmkEfAJtBHwCcQR8AnUEfAJ5BHwCfYd8AoL0fAKHFHwCizR8Ao8UfAKTdHwClxR8Aps0fAKfFHwCo/R8AqcUfAKrNHwCrxR8ArN0fAK3FHwCuzR8Ar8UfALC9HwCxRR8Ask0fALNFHwC0/ckAtVkfALZJHwC3SR8AuHkfALl5HwC6SR8Au8XdALxVHwC9XR8AvlUfAL9NHwAKNgCABjYAgA42AIAZLACAEjYAgBY2AIAaNgCAIjYAgD/rAIAmNgCAOjYAgD42AIAqNgCAQjYAgFY2AIA2NgCASjYAgE42AIBSNgCAROsAgE7rAIBJ6wCASSoAgHI2AIB2NgCAfjYAgGLrAICCNgCAU+sAgE0qAIBRKgCAWOsAgF3rAIBVKgCAojYAgKo2AICuNgCAujYAgLY2AIDCNgCAvjYAgMY2AIDKNgCA0jYAgFkqAIDaNgCA3jYAgF0qAIDuNgCAZ+sAgP42AIACNwCAYSoAgA43AICVKQCAbOsAgHHrAIBlKgCAaSoAgDo3AIB26wCAkjcAgJY3AICuNwCAgLUBAIG9AQCCtQEAg80BAITt9ACF0QEAhtEBAIfRAQCI8QEAifEBAIrxAQCL8QEAjNEBAI3RAQCO0QEAj9EBAJB9wwCRBcMAkl35AJO9AQCUpQEAla0BAJalAQCXXQMAmGUDAJltAwCaZQMAm30DAJxlAwCdbQMAnmUDAJ85wwCgoQMAoaEDAKKhAwCjoQMApKEDAKWhAwCmoQMAp6EDAKjhAwCp4QMAquEDAKvhAwCs4QMAreEDAK7hAwCv4QMAsKEDALGhAwCyoQMAs6EDALShAwC1oQMAtqEDALehAwC4YQMAuWEDALphAwC7YQMAvGEDAL1hAwC+pcMAv6HDALo3AICA6wCA0ukAgMY3AIDCNwCAzjcAgNfpAIDaNwCAhesAgIrrAIAmOACAMjgAgDo4AICP6wCAPjgAgGY4AIByOACAdjgAgG44AICCOACAhjgAgJTrAICSOACAbSoAgJo4AICZ6wCAcSoAgNI4AICkLgCA6jgAgJ7rAICo6wCAdSoAgHkqAIASOQCAresAgH0qAICy6wCAMjkAgLfrAIBKOQCAgSoAgFo5AIBmOQCAbjkAgHY5AICFKgCAvOsAgKY5AICyOQCAiSoAgI0qAIC2OQCAwesAgJEqAIDG6wCAy+sAgNDrAICVKgCA9jkAgPo5AIACOgCACjoAgNrrAICQ1QEAkd0BAJLVAQCT7QEAlPUBAJXB+wCW8QEAl/n7AJjNAQCZ1QEAmt0BAJvVAQCcyfsAnckBAEUqAICPAAAAgNkBAIHZAQCC6QEAg+kBAIT5AQCF+QEAhukBAIfpAQCI2QEAidkBAIoJwQCLrQEAjLUBAI29AQCOtQEAj60BAKAAAAChAAAAogAAAKMAAACkAAAApQAAAKYAAACnAAAAqAAAAKkAAACqAAAAqwAAAKwAAACtAAAArgAAAK8AAACwAAAAsQAAALIAAACzAAAAtAAAALUAAAC2AAAAtwAAALgAAAC5AAAAugAAALsAAAC8AAAAvQAAAL4AAAC/AAAAACAAIMyBACDMgwAgzIQAIMyFACDMhgAgzIcAIMyIACDMiMyAACDMiMyBACDMiM2CACDMigAgzIsAIMyTACDMk8yAACDMk8yBACDMk82CACDMlAAgzJTMgAAgzJTMgQAgzJTNggAgzKcAIMyoACDMswAgzYIAIM2FACDZiwAg2YwAINmM2ZEAINmNACDZjdmRACDZjgAg2Y7ZkQAg2Y8AINmP2ZEAINmQACDZkNmRACDZkQAg2ZHZsAAg2ZIAIOOCmQAg44KaACEAISEAIT8AIgAjACQAJQAmACcAKAAoMSkAKDEwKQAoMTEpACgxMikAKDEzKQAoMTQpACgxNSkAKDE2KQAoMTcpACgxOCkAKDE5KQAoMikAKDIwKQAoMykAKDQpACg1KQAoNikAKDcpACg4KQAoOSkAKEEpAChCKQAoQykAKEQpAChFKQAoRikAKEcpAChIKQAoSSkAKEopAChLKQAoTCkAKE0pAChOKQAoTykAKFApAChRKQAoUikAKFMpAChUKQAoVSkAKFYpAChXKQAoWCkAKFkpAChaKQAoYSkAKGIpAChjKQAoZCkAKGUpAChmKQAoZykAKGgpAChpKQAoaikAKGspAChsKQAobSkAKG4pAChvKQAocCkAKHEpAChyKQAocykAKHQpACh1KQAodikAKHcpACh4KQAoeSkAKHopACjhhIApACjhhIIpACjhhIMpACjhhIUpACjhhIYpACjhhIcpACjhhIkpACjhhIspACjhhIwpACjhhI4pACjhhI8pACjhhJApACjhhJEpACjhhJIpACjkuIApACjkuIMpACjkuIkpACjkuZ0pACjkuowpACjkupQpACjku6MpACjkvIEpACjkvJEpACjlhaspACjlha0pACjlirQpACjljYEpACjljZQpACjlkI0pACjlkbwpACjlm5spACjlnJ8pACjlraYpACjml6UpACjmnIgpACjmnIkpACjmnKgpACjmoKopACjmsLQpACjngaspACjnibkpACjnm6MpACjnpL4pACjnpZ0pACjnpa0pACjoh6opACjoh7MpACjosqEpACjos4cpACjph5EpACjqsIApACjrgpgpACjri6QpACjrnbwpACjrp4gpACjrsJQpACjsgqwpACjslYQpACjsmKTsoIQpACjsmKTtm4QpACjsnpApACjso7wpACjssKgpACjsubQpACjtg4ApACjtjIwpACjtlZgpACkAKgArACwALQAuAC4uAC4uLgAvADAAMCwAMC4AMOKBhDMAMOeCuQAxADEsADEuADEwADEwLgAxMOaXpQAxMOaciAAxMOeCuQAxMQAxMS4AMTHml6UAMTHmnIgAMTHngrkAMTIAMTIuADEy5pelADEy5pyIADEy54K5ADEzADEzLgAxM+aXpQAxM+eCuQAxNAAxNC4AMTTml6UAMTTngrkAMTUAMTUuADE15pelADE154K5ADE2ADE2LgAxNuaXpQAxNueCuQAxNwAxNy4AMTfml6UAMTfngrkAMTgAMTguADE45pelADE454K5ADE5ADE5LgAxOeaXpQAxOeeCuQAx4oGEADHigYQxMAAx4oGEMgAx4oGEMwAx4oGENAAx4oGENQAx4oGENgAx4oGENwAx4oGEOAAx4oGEOQAx5pelADHmnIgAMeeCuQAyADIsADIuADIwADIwLgAyMOaXpQAyMOeCuQAyMQAyMeaXpQAyMeeCuQAyMgAyMuaXpQAyMueCuQAyMwAyM+aXpQAyM+eCuQAyNAAyNOaXpQAyNOeCuQAyNQAyNeaXpQAyNgAyNuaXpQAyNwAyN+aXpQAyOAAyOOaXpQAyOQAyOeaXpQAy4oGEMwAy4oGENQAy5pelADLmnIgAMueCuQAzADMsADMuADMwADMw5pelADMxADMx5pelADMyADMzADM0ADM1ADM2ADM3ADM4ADM5ADPigYQ0ADPigYQ1ADPigYQ4ADPml6UAM+aciAAz54K5ADQANCwANC4ANDAANDEANDIANDMANDQANDUANDYANDcANDgANDkANOKBhDUANOaXpQA05pyIADTngrkANQA1LAA1LgA1MAA14oGENgA14oGEOAA15pelADXmnIgANeeCuQA2ADYsADYuADbml6UANuaciAA254K5ADcANywANy4AN+KBhDgAN+aXpQA35pyIADfngrkAOAA4LAA4LgA45pelADjmnIgAOOeCuQA5ADksADkuADnml6UAOeaciAA554K5ADoAOjo9ADsAPAA9AD09AD09PQA+AD8APyEAPz8AQABBAEFVAEHiiJVtAEIAQnEAQwBDRABDby4AQ+KIlWtnAEQAREoARFoARHoARMW9AETFvgBFAEYARkFYAEcAR0IAR0h6AEdQYQBHeQBIAEhQAEhWAEhnAEh6AEkASUkASUlJAElKAElVAElWAElYAEoASwBLQgBLSwBLTQBMAExKAExURABMagBMwrcATQBNQgBNQwBNRABNSHoATVBhAE1WAE1XAE3OqQBOAE5KAE5qAE5vAE8AUABQSABQUE0AUFBWAFBSAFBURQBQYQBRAFIAUnMAUwBTRABTTQBTUwBTdgBUAFRFTABUSHoAVE0AVQBWAFZJAFZJSQBWSUlJAFbiiJVtAFcAV0MAV1oAV2IAWABYSQBYSUkAWQBaAFsAXABdAF4AXwBgAGEAYS5tLgBhL2MAYS9zAGHKvgBiAGJhcgBjAGMvbwBjL3UAY2FsAGNjAGNkAGNtAGNtMgBjbTMAZABkQgBkYQBkbABkbQBkbTIAZG0zAGR6AGTFvgBlAGVWAGVyZwBmAGZmAGZmaQBmZmwAZmkAZmwAZm0AZwBnYWwAaABoUGEAaGEAaQBpaQBpaWkAaWoAaW4AaXYAaXgAagBrAGtBAGtIegBrUGEAa1YAa1cAa2NhbABrZwBrbABrbQBrbTIAa20zAGt0AGvOqQBsAGxqAGxtAGxuAGxvZwBseABswrcAbQBtMgBtMwBtQQBtVgBtVwBtYgBtZwBtaWwAbWwAbW0AbW0yAG1tMwBtb2wAbXMAbeKIlXMAbeKIlXMyAG4AbkEAbkYAblYAblcAbmoAbm0AbnMAbwBvVgBwAHAubS4AcEEAcEYAcFYAcFcAcGMAcHMAcQByAHJhZAByYWTiiJVzAHJhZOKIlXMyAHMAc3IAc3QAdAB1AHYAdmkAdmlpAHZpaWkAdwB4AHhpAHhpaQB5AHoAewB8AH0AwqIAwqMAwqUAwqYAwqwAwrBDAMKwRgDCtwDDgADDgQDDggDDgwDDhADDhQDDhgDDhwDDiADDiQDDigDDiwDDjADDjQDDjgDDjwDDkQDDkgDDkwDDlADDlQDDlgDDmQDDmgDDmwDDnADDnQDDoADDoQDDogDDowDDpADDpQDDpwDDqADDqQDDqgDDqwDDrADDrQDDrgDDrwDDsADDsQDDsgDDswDDtADDtQDDtgDDuQDDugDDuwDDvADDvQDDvwDEgADEgQDEggDEgwDEhADEhQDEhgDEhwDEiADEiQDEigDEiwDEjADEjQDEjgDEjwDEkgDEkwDElADElQDElgDElwDEmADEmQDEmgDEmwDEnADEnQDEngDEnwDEoADEoQDEogDEowDEpADEpQDEpgDEpwDEqADEqQDEqgDEqwDErADErQDErgDErwDEsADEsQDEtADEtQDEtgDEtwDEuQDEugDEuwDEvADEvQDEvgDFgwDFhADFhQDFhgDFhwDFiADFiwDFjADFjQDFjgDFjwDFkADFkQDFkwDFlADFlQDFlgDFlwDFmADFmQDFmgDFmwDFnADFnQDFngDFnwDFoADFoQDFogDFowDFpADFpQDFqADFqQDFqgDFqwDFrADFrQDFrgDFrwDFsADFsQDFsgDFswDFtADFtQDFtgDFtwDFuADFuQDFugDFuwDFvADFvQDFvgDGjgDGkADGoADGoQDGqwDGrwDGsADHjQDHjgDHjwDHkADHkQDHkgDHkwDHlADHlQDHlgDHlwDHmADHmQDHmgDHmwDHnADHngDHnwDHoADHoQDHogDHowDHpgDHpwDHqADHqQDHqgDHqwDHrADHrQDHrgDHrwDHsADHtADHtQDHuADHuQDHugDHuwDHvADHvQDHvgDHvwDIgADIgQDIggDIgwDIhADIhQDIhgDIhwDIiADIiQDIigDIiwDIjADIjQDIjgDIjwDIkADIkQDIkgDIkwDIlADIlQDIlgDIlwDImADImQDImgDImwDIngDInwDIogDIpgDIpwDIqADIqQDIqgDIqwDIrADIrQDIrgDIrwDIsADIsQDIsgDIswDItwDJkADJkQDJkgDJlADJlQDJmQDJmwDJnADJnwDJoQDJowDJpQDJpgDJqADJqQDJqgDJqwDJrQDJrwDJsADJsQDJsgDJswDJtADJtQDJuADJuQDJuwDKgQDKggDKgwDKiQDKigDKiwDKjADKkADKkQDKkgDKlQDKnQDKnwDKuQDKvG4AzIAAzIEAzIjMgQDMkwDOhgDOiADOiQDOigDOjADOjgDOjwDOkADOkQDOkgDOkwDOlADOlQDOlgDOlwDOmADOmQDOmgDOmwDOnADOnQDOngDOnwDOoADOoQDOowDOpADOpQDOpgDOpwDOqADOqQDOqgDOqwDOrADOrQDOrgDOrwDOsADOsQDOsgDOswDOtADOtQDOtgDOtwDOuADOuQDOugDOuwDOvADOvEEAzrxGAM68VgDOvFcAzrxnAM68bADOvG0AzrxzAM69AM6+AM6/AM+AAM+BAM+CAM+DAM+EAM+FAM+GAM+HAM+IAM+JAM+KAM+LAM+MAM+NAM+OAM+cAM+dANCAANCBANCDANCHANCMANCNANCOANCZANC5ANC9ANGKANGMANGQANGRANGTANGXANGcANGdANGeANG2ANG3ANOBANOCANOQANORANOSANOTANOWANOXANOaANObANOcANOdANOeANOfANOiANOjANOkANOlANOmANOnANOqANOrANOsANOtANOuANOvANOwANOxANOyANOzANO0ANO1ANO4ANO5ANWl1oIA1bTVpQDVtNWrANW01a0A1bTVtgDVvtW2ANeQANeQ1rcA15DWuADXkNa8ANeQ15wA15EA15HWvADXkda/ANeSANeS1rwA15MA15PWvADXlADXlNa8ANeV1rkA15XWvADXlta8ANeY1rwA15nWtADXmda8ANea1rwA15sA15vWvADXm9a/ANecANec1rwA150A157WvADXoNa8ANeh1rwA16IA16PWvADXpNa8ANek1r8A16bWvADXp9a8ANeoANeo1rwA16nWvADXqda814EA16nWvNeCANep14EA16nXggDXqgDXqta8ANey1rcA2KEA2KIA2KMA2KQA2KUA2KYA2KbYpwDYptisANim2K0A2KbYrgDYptixANim2LIA2KbZhQDYptmGANim2YcA2KbZiADYptmJANim2YoA2KbbhgDYptuHANim24gA2KbbkADYptuVANinANin2YPYqNixANin2YTZhNmHANin2YsA2KfZtADYqADYqNisANio2K0A2KjYrdmKANio2K4A2KjYrtmKANio2LEA2KjYsgDYqNmFANio2YYA2KjZhwDYqNmJANio2YoA2KkA2KoA2KrYrADYqtis2YUA2KrYrNmJANiq2KzZigDYqtitANiq2K3YrADYqtit2YUA2KrYrgDYqtiu2YUA2KrYrtmJANiq2K7ZigDYqtixANiq2LIA2KrZhQDYqtmF2KwA2KrZhditANiq2YXYrgDYqtmF2YkA2KrZhdmKANiq2YYA2KrZhwDYqtmJANiq2YoA2KsA2KvYrADYq9ixANir2LIA2KvZhQDYq9mGANir2YcA2KvZiQDYq9mKANisANis2K0A2KzYrdmJANis2K3ZigDYrNmEINis2YTYp9mE2YcA2KzZhQDYrNmF2K0A2KzZhdmJANis2YXZigDYrNmJANis2YoA2K0A2K3YrADYrdis2YoA2K3ZhQDYrdmF2YkA2K3ZhdmKANit2YkA2K3ZigDYrgDYrtisANiu2K0A2K7ZhQDYrtmJANiu2YoA2K8A2LAA2LDZsADYsQDYsdiz2YjZhADYsdmwANix24zYp9mEANiyANizANiz2KwA2LPYrNitANiz2KzZiQDYs9itANiz2K3YrADYs9iuANiz2K7ZiQDYs9iu2YoA2LPYsQDYs9mFANiz2YXYrADYs9mF2K0A2LPZhdmFANiz2YcA2LPZiQDYs9mKANi0ANi02KwA2LTYrNmKANi02K0A2LTYrdmFANi02K3ZigDYtNiuANi02LEA2LTZhQDYtNmF2K4A2LTZhdmFANi02YcA2LTZiQDYtNmKANi1ANi12K0A2LXYrditANi12K3ZigDYtdiuANi12LEA2LXZhNi52YUA2LXZhNmJANi12YTZiSDYp9mE2YTZhyDYudmE2YrZhyDZiNiz2YTZhQDYtdmE25IA2LXZhQDYtdmF2YUA2LXZiQDYtdmKANi2ANi22KwA2LbYrQDYttit2YkA2LbYrdmKANi22K4A2LbYrtmFANi22LEA2LbZhQDYttmJANi22YoA2LcA2LfYrQDYt9mFANi32YXYrQDYt9mF2YUA2LfZhdmKANi32YkA2LfZigDYuADYuNmFANi5ANi52KwA2LnYrNmFANi52YTZitmHANi52YUA2LnZhdmFANi52YXZiQDYudmF2YoA2LnZiQDYudmKANi6ANi62KwA2LrZhQDYutmF2YUA2LrZhdmJANi62YXZigDYutmJANi62YoA2YDZiwDZgNmOANmA2Y7ZkQDZgNmPANmA2Y/ZkQDZgNmQANmA2ZDZkQDZgNmRANmA2ZIA2YEA2YHYrADZgditANmB2K4A2YHYrtmFANmB2YUA2YHZhdmKANmB2YkA2YHZigDZggDZgtitANmC2YTbkgDZgtmFANmC2YXYrQDZgtmF2YUA2YLZhdmKANmC2YkA2YLZigDZgwDZg9inANmD2KwA2YPYrQDZg9iuANmD2YQA2YPZhQDZg9mF2YUA2YPZhdmKANmD2YkA2YPZigDZhADZhNiiANmE2KMA2YTYpQDZhNinANmE2KwA2YTYrNisANmE2KzZhQDZhNis2YoA2YTYrQDZhNit2YUA2YTYrdmJANmE2K3ZigDZhNiuANmE2K7ZhQDZhNmFANmE2YXYrQDZhNmF2YoA2YTZhwDZhNmJANmE2YoA2YUA2YXYpwDZhdisANmF2KzYrQDZhdis2K4A2YXYrNmFANmF2KzZigDZhditANmF2K3YrADZhdit2YUA2YXYrdmF2K8A2YXYrdmKANmF2K4A2YXYrtisANmF2K7ZhQDZhdiu2YoA2YXZhQDZhdmF2YoA2YXZiQDZhdmKANmGANmG2KwA2YbYrNitANmG2KzZhQDZhtis2YkA2YbYrNmKANmG2K0A2YbYrdmFANmG2K3ZiQDZhtit2YoA2YbYrgDZhtixANmG2LIA2YbZhQDZhtmF2YkA2YbZhdmKANmG2YYA2YbZhwDZhtmJANmG2YoA2YcA2YfYrADZh9mFANmH2YXYrADZh9mF2YUA2YfZiQDZh9mKANmH2bAA2YgA2YjYs9mE2YUA2YjZtADZiQDZidmwANmKANmK2KwA2YrYrNmKANmK2K0A2YrYrdmKANmK2K4A2YrYsQDZitiyANmK2YUA2YrZhdmFANmK2YXZigDZitmGANmK2YcA2YrZiQDZitmKANmK2bQA2a4A2a8A2bEA2bkA2boA2bsA2b4A2b8A2oAA2oMA2oQA2oYA2ocA2ogA2owA2o0A2o4A2pEA2pgA2qEA2qQA2qYA2qkA2q0A2q8A2rEA2rMA2roA2rsA2r4A24AA24EA24IA24UA24YA24cA24fZtADbiADbiQDbiwDbjADbkADbkgDbkwDgpJXgpLwA4KSW4KS8AOCkl+CkvADgpJzgpLwA4KSh4KS8AOCkouCkvADgpKkA4KSr4KS8AOCkr+CkvADgpLEA4KS0AOCmoeCmvADgpqLgprwA4Kav4Ka8AOCniwDgp4wA4KiW4Ki8AOCol+CovADgqJzgqLwA4Kir4Ki8AOCosuCovADgqLjgqLwA4Kyh4Ky8AOCsouCsvADgrYgA4K2LAOCtjADgrpQA4K+KAOCviwDgr4wA4LGIAOCzgADgs4cA4LOIAOCzigDgs4sA4LWKAOC1iwDgtYwA4LeaAOC3nADgt50A4LeeAOC5jeC4sgDguqvgupkA4Lqr4LqhAOC7jeC6sgDgvIsA4L2A4L61AOC9guC+twDgvYzgvrcA4L2R4L63AOC9luC+twDgvZvgvrcA4L2x4L2yAOC9seC9tADgvbHgvoAA4L6Q4L61AOC+kuC+twDgvpzgvrcA4L6h4L63AOC+puC+twDgvqvgvrcA4L6y4L2x4L6AAOC+suC+gADgvrPgvbHgvoAA4L6z4L6AAOGApgDhg5wA4YSAAOGEgQDhhIIA4YSDAOGEhADhhIUA4YSGAOGEhwDhhIgA4YSJAOGEigDhhIsA4YSMAOGEjQDhhI4A4YSPAOGEkADhhJEA4YSSAOGElADhhJUA4YSaAOGEnADhhJ0A4YSeAOGEoADhhKEA4YSiAOGEowDhhKcA4YSpAOGEqwDhhKwA4YStAOGErgDhhK8A4YSyAOGEtgDhhYAA4YWHAOGFjADhhZcA4YWYAOGFmQDhhaAA4YWhAOGFogDhhaMA4YWkAOGFpQDhhaYA4YWnAOGFqADhhakA4YWqAOGFqwDhhawA4YWtAOGFrgDhha8A4YWwAOGFsQDhhbIA4YWzAOGFtADhhbUA4YaEAOGGhQDhhogA4YaRAOGGkgDhhpQA4YaeAOGGoQDhhqoA4YasAOGGrQDhhrAA4YaxAOGGsgDhhrMA4Ya0AOGGtQDhh4cA4YeIAOGHjADhh44A4YeTAOGHlwDhh5kA4YedAOGHnwDhh7EA4YeyAOGshgDhrIgA4ayKAOGsjADhrI4A4aySAOGsuwDhrL0A4a2AAOGtgQDhrYMA4bSCAOG0lgDhtJcA4bScAOG0nQDhtKUA4bW7AOG2hQDhuIAA4biBAOG4ggDhuIMA4biEAOG4hQDhuIYA4biHAOG4iADhuIkA4biKAOG4iwDhuIwA4biNAOG4jgDhuI8A4biQAOG4kQDhuJIA4biTAOG4lADhuJUA4biWAOG4lwDhuJgA4biZAOG4mgDhuJsA4bicAOG4nQDhuJ4A4bifAOG4oADhuKEA4biiAOG4owDhuKQA4bilAOG4pgDhuKcA4bioAOG4qQDhuKoA4birAOG4rADhuK0A4biuAOG4rwDhuLAA4bixAOG4sgDhuLMA4bi0AOG4tQDhuLYA4bi3AOG4uADhuLkA4bi6AOG4uwDhuLwA4bi9AOG4vgDhuL8A4bmAAOG5gQDhuYIA4bmDAOG5hADhuYUA4bmGAOG5hwDhuYgA4bmJAOG5igDhuYsA4bmMAOG5jQDhuY4A4bmPAOG5kADhuZEA4bmSAOG5kwDhuZQA4bmVAOG5lgDhuZcA4bmYAOG5mQDhuZoA4bmbAOG5nADhuZ0A4bmeAOG5nwDhuaAA4bmhAOG5ogDhuaMA4bmkAOG5pQDhuaYA4bmnAOG5qADhuakA4bmqAOG5qwDhuawA4bmtAOG5rgDhua8A4bmwAOG5sQDhubIA4bmzAOG5tADhubUA4bm2AOG5twDhubgA4bm5AOG5ugDhubsA4bm8AOG5vQDhub4A4bm/AOG6gADhuoEA4bqCAOG6gwDhuoQA4bqFAOG6hgDhuocA4bqIAOG6iQDhuooA4bqLAOG6jADhuo0A4bqOAOG6jwDhupAA4bqRAOG6kgDhupMA4bqUAOG6lQDhupYA4bqXAOG6mADhupkA4bqgAOG6oQDhuqIA4bqjAOG6pADhuqUA4bqmAOG6pwDhuqgA4bqpAOG6qgDhuqsA4bqsAOG6rQDhuq4A4bqvAOG6sADhurEA4bqyAOG6swDhurQA4bq1AOG6tgDhurcA4bq4AOG6uQDhuroA4bq7AOG6vADhur0A4bq+AOG6vwDhu4AA4buBAOG7ggDhu4MA4buEAOG7hQDhu4YA4buHAOG7iADhu4kA4buKAOG7iwDhu4wA4buNAOG7jgDhu48A4buQAOG7kQDhu5IA4buTAOG7lADhu5UA4buWAOG7lwDhu5gA4buZAOG7mgDhu5sA4bucAOG7nQDhu54A4bufAOG7oADhu6EA4buiAOG7owDhu6QA4bulAOG7pgDhu6cA4buoAOG7qQDhu6oA4burAOG7rADhu60A4buuAOG7rwDhu7AA4buxAOG7sgDhu7MA4bu0AOG7tQDhu7YA4bu3AOG7uADhu7kA4byAAOG8gQDhvIIA4byDAOG8hADhvIUA4byGAOG8hwDhvIgA4byJAOG8igDhvIsA4byMAOG8jQDhvI4A4byPAOG8kADhvJEA4bySAOG8kwDhvJQA4byVAOG8mADhvJkA4byaAOG8mwDhvJwA4bydAOG8oADhvKEA4byiAOG8owDhvKQA4bylAOG8pgDhvKcA4byoAOG8qQDhvKoA4byrAOG8rADhvK0A4byuAOG8rwDhvLAA4byxAOG8sgDhvLMA4by0AOG8tQDhvLYA4by3AOG8uADhvLkA4by6AOG8uwDhvLwA4by9AOG8vgDhvL8A4b2AAOG9gQDhvYIA4b2DAOG9hADhvYUA4b2IAOG9iQDhvYoA4b2LAOG9jADhvY0A4b2QAOG9kQDhvZIA4b2TAOG9lADhvZUA4b2WAOG9lwDhvZkA4b2bAOG9nQDhvZ8A4b2gAOG9oQDhvaIA4b2jAOG9pADhvaUA4b2mAOG9pwDhvagA4b2pAOG9qgDhvasA4b2sAOG9rQDhva4A4b2vAOG9sADhvbIA4b20AOG9tgDhvbgA4b26AOG9vADhvoAA4b6BAOG+ggDhvoMA4b6EAOG+hQDhvoYA4b6HAOG+iADhvokA4b6KAOG+iwDhvowA4b6NAOG+jgDhvo8A4b6QAOG+kQDhvpIA4b6TAOG+lADhvpUA4b6WAOG+lwDhvpgA4b6ZAOG+mgDhvpsA4b6cAOG+nQDhvp4A4b6fAOG+oADhvqEA4b6iAOG+owDhvqQA4b6lAOG+pgDhvqcA4b6oAOG+qQDhvqoA4b6rAOG+rADhvq0A4b6uAOG+rwDhvrAA4b6xAOG+sgDhvrMA4b60AOG+tgDhvrcA4b64AOG+uQDhvroA4b68AOG/ggDhv4MA4b+EAOG/hgDhv4cA4b+IAOG/igDhv4wA4b+QAOG/kQDhv5IA4b+WAOG/lwDhv5gA4b+ZAOG/mgDhv6AA4b+hAOG/ogDhv6QA4b+lAOG/pgDhv6cA4b+oAOG/qQDhv6oA4b+sAOG/sgDhv7MA4b+0AOG/tgDhv7cA4b+4AOG/ugDhv7wA4oCQAOKAkwDigJQA4oCy4oCyAOKAsuKAsuKAsgDigLLigLLigLLigLIA4oC14oC1AOKAteKAteKAtQDigqkA4oaQAOKGkQDihpIA4oaTAOKGmgDihpsA4oauAOKHjQDih44A4oePAOKIggDiiIQA4oiHAOKIiQDiiIwA4oiRAOKIkgDiiKQA4oimAOKIq+KIqwDiiKviiKviiKsA4oir4oir4oir4oirAOKIruKIrgDiiK7iiK7iiK4A4omBAOKJhADiiYcA4omJAOKJoADiiaIA4omtAOKJrgDiia8A4omwAOKJsQDiibQA4om1AOKJuADiibkA4oqAAOKKgQDiioQA4oqFAOKKiADiiokA4oqsAOKKrQDiiq4A4oqvAOKLoADii6EA4ouiAOKLowDii6oA4ourAOKLrADii60A4pSCAOKWoADil4sA4qaFAOKmhgDiq53MuADitaEA44CBAOOAggDjgIgA44CJAOOAigDjgIsA44CMAOOAjQDjgI4A44CPAOOAkADjgJEA44CSAOOAlADjgJRT44CVAOOAlOS4ieOAlQDjgJTkuozjgJUA44CU5Yud44CVAOOAlOWuieOAlQDjgJTmiZPjgJUA44CU5pWX44CVAOOAlOacrOOAlQDjgJTngrnjgJUA44CU55uX44CVAOOAlQDjgJYA44CXAOOBjADjgY4A44GQAOOBkgDjgZQA44GWAOOBmADjgZoA44GcAOOBngDjgaAA44GiAOOBpQDjgacA44GpAOOBsADjgbEA44GzAOOBtADjgbYA44G3AOOBuQDjgboA44G744GLAOOBvADjgb0A44KI44KKAOOClADjgpkA44KaAOOCngDjgqEA44KiAOOCouODkeODvOODiADjgqLjg6vjg5XjgqEA44Ki44Oz44Oa44KiAOOCouODvOODqwDjgqMA44KkAOOCpOODi+ODs+OCsADjgqTjg7Pjg4EA44KlAOOCpgDjgqbjgqnjg7MA44KnAOOCqADjgqjjgrnjgq/jg7zjg4kA44Ko44O844Kr44O8AOOCqQDjgqoA44Kq44Oz44K5AOOCquODvOODoADjgqsA44Kr44Kk44OqAOOCq+ODqeODg+ODiADjgqvjg63jg6rjg7wA44KsAOOCrOODreODswDjgqzjg7Pjg54A44KtAOOCreODpeODquODvADjgq3jg60A44Kt44Ot44Kw44Op44OgAOOCreODreODoeODvOODiOODqwDjgq3jg63jg6/jg4Pjg4gA44KuAOOCruOCrADjgq7jg4vjg7wA44Ku44Or44OA44O8AOOCrwDjgq/jg6vjgrzjgqTjg60A44Kv44Ot44O844ONAOOCsADjgrDjg6njg6AA44Kw44Op44Og44OI44OzAOOCsQDjgrHjg7zjgrkA44KyAOOCswDjgrPjgrMA44Kz44OIAOOCs+ODq+ODigDjgrPjg7zjg50A44K0AOOCtQDjgrXjgqTjgq/jg6sA44K144Oz44OB44O844OgAOOCtgDjgrcA44K344Oq44Oz44KwAOOCuADjgrkA44K6AOOCuwDjgrvjg7Pjg4EA44K744Oz44OIAOOCvADjgr0A44K+AOOCvwDjg4AA44OA44O844K5AOODgQDjg4IA44ODAOODhADjg4UA44OGAOODhwDjg4fjgrcA44OIAOODiOODswDjg4kA44OJ44OrAOODigDjg4rjg44A44OLAOODjADjg40A44OOAOODjuODg+ODiADjg48A44OP44Kk44OEAOODkADjg5Djg7zjg6zjg6sA44ORAOODkeODvOOCu+ODs+ODiADjg5Hjg7zjg4QA44OSAOODkwDjg5Pjg6sA44OUAOODlOOCouOCueODiOODqwDjg5Tjgq/jg6sA44OU44KzAOODlQDjg5XjgqHjg6njg4Pjg4kA44OV44Kj44O844OIAOODleODqeODswDjg5YA44OW44OD44K344Kn44OrAOODlwDjg5gA44OY44Kv44K/44O844OrAOODmOODq+ODhADjg5kA44OZ44O844K/AOODmgDjg5rjgr0A44Oa44OL44OSAOODmuODs+OCuQDjg5rjg7zjgrgA44ObAOODm+ODswDjg5vjg7zjg6sA44Ob44O844OzAOODnADjg5zjg6vjg4gA44OdAOODneOCpOODs+ODiADjg53jg7Pjg4kA44OeAOODnuOCpOOCr+ODrQDjg57jgqTjg6sA44Oe44OD44OPAOODnuODq+OCrwDjg57jg7Pjgrfjg6fjg7MA44OfAOODn+OCr+ODreODswDjg5/jg6oA44Of44Oq44OQ44O844OrAOODoADjg6EA44Oh44KsAOODoeOCrOODiOODswDjg6Hjg7zjg4jjg6sA44OiAOODowDjg6QA44Ok44O844OJAOODpOODvOODqwDjg6UA44OmAOODpuOCouODswDjg6cA44OoAOODqQDjg6oA44Oq44OD44OI44OrAOODquODqQDjg6sA44Or44OU44O8AOODq+ODvOODluODqwDjg6wA44Os44OgAOODrOODs+ODiOOCsuODswDjg60A44OvAOODr+ODg+ODiADjg7AA44OxAOODsgDjg7MA44O0AOODtwDjg7gA44O5AOODugDjg7sA44O8AOODvgDjkp4A45K5AOOSuwDjk58A45SVAOObrgDjm7wA456BAOOgrwDjoaIA46G8AOOjhwDjo6MA46ScAOOkugDjqK4A46msAOOrpADjrIgA46yZAOOtiQDjrp0A47CYAOOxjgDjtLMA47aWAOO6rADjurgA47ybAOO/vADkgIgA5ICYAOSAuQDkgYYA5IKWAOSDowDkhK8A5IiCAOSIpwDkiqAA5IyBAOSMtADkjZkA5I+VAOSPmQDkkIsA5JGrAOSUqwDklZ0A5JWhAOSVqwDkl5cA5Je5AOSYtQDkmr4A5JuHAOSmlQDkp6YA5KmuAOSptgDkqrIA5KyzAOSvjgDks44A5LOtAOSzuADktZYA5LiAAOS4gQDkuIMA5LiJAOS4igDkuIsA5LiNAOS4mQDkuKYA5LioAOS4rQDkuLIA5Li2AOS4uADkuLkA5Li9AOS4vwDkuYEA5LmZAOS5nQDkuoIA5LqFAOS6hgDkuowA5LqUAOS6oADkuqQA5LquAOS6ugDku4AA5LuMAOS7pADkvIEA5LyRAOS9oADkvoAA5L6GAOS+iwDkvq4A5L67AOS+vwDlgIIA5YCrAOWBugDlgpkA5YOPAOWDmgDlg6cA5YSqAOWEvwDlhYAA5YWFAOWFjQDlhZQA5YWkAOWFpQDlhacA5YWoAOWFqQDlhasA5YWtAOWFtwDlhoAA5YaCAOWGjQDlhpIA5YaVAOWGlgDlhpcA5YaZAOWGpADlhqsA5YasAOWGtQDlhrcA5YeJAOWHjADlh5wA5YeeAOWHoADlh7UA5YiAAOWIgwDliIcA5YiXAOWInQDliKkA5Yi6AOWIuwDliYYA5YmNAOWJsgDlibcA5YqJAOWKmwDliqMA5YqzAOWKtADli4cA5YuJAOWLkgDli54A5YukAOWLtQDli7kA5Yu6AOWMhQDljIYA5YyVAOWMlwDljJoA5Yy4AOWMuwDljL8A5Y2BAOWNhADljYUA5Y2JAOWNkQDljZQA5Y2aAOWNnADljakA5Y2wAOWNswDljbUA5Y29AOWNvwDljoIA5Y62AOWPgwDlj4gA5Y+KAOWPjADlj58A5Y+jAOWPpQDlj6sA5Y+vAOWPsQDlj7MA5ZCGAOWQiADlkI0A5ZCPAOWQnQDlkLgA5ZC5AOWRggDlkYgA5ZGoAOWSngDlkqIA5ZK9AOWTtgDllJAA5ZWPAOWVkwDllZUA5ZWjAOWWhADllocA5ZaZAOWWnQDllqsA5ZazAOWWtgDll4AA5ZeCAOWXogDlmIYA5ZmRAOWZqADlmbQA5ZuXAOWbmwDlm7kA5ZyWAOWclwDlnJ8A5ZywAOWeiwDln44A5Z+0AOWgjQDloLEA5aCyAOWhgADloZoA5aGeAOWiqADloqwA5aKzAOWjmADlo58A5aOrAOWjrgDlo7AA5aOyAOWjtwDlpIIA5aSGAOWkigDlpJUA5aSaAOWknADlpKIA5aSnAOWkp+atowDlpKkA5aWEAOWliADlpZEA5aWUAOWlogDlpbMA5aeYAOWnrADlqJsA5ainAOWpogDlqaYA5aq1AOWsiADlrKgA5ay+AOWtkADlrZcA5a2mAOWugADlroUA5a6XAOWvgwDlr5gA5a+nAOWvrgDlr7MA5a+4AOWvvwDlsIYA5bCPAOWwogDlsLgA5bC/AOWxoADlsaIA5bGkAOWxpQDlsa4A5bGxAOWyjQDls4AA5bSZAOW1gwDltZAA5bWrAOW1rgDltbwA5bayAOW2ugDlt5sA5behAOW3ogDlt6UA5bemAOW3sQDlt70A5be+AOW4qADluL0A5bmpAOW5sgDlubPmiJAA5bm0AOW5ugDlubwA5bm/AOW6pgDlurAA5bqzAOW6tgDlu4kA5buKAOW7kgDlu5MA5buZAOW7rADlu7QA5bu+AOW8hADlvIsA5byTAOW8ogDlvZAA5b2TAOW9oQDlvaIA5b2pAOW9qwDlvbMA5b6LAOW+jADlvpcA5b6aAOW+qQDlvq0A5b+DAOW/jQDlv5cA5b+1AOW/uQDmgJIA5oCcAOaBtQDmgoEA5oKUAOaDhwDmg5gA5oOhAOaEiADmhYQA5oWIAOaFjADmhY4A5oWgAOaFqADmhboA5oaOAOaGkADmhqQA5oavAOaGsgDmh54A5oeyAOaHtgDmiIAA5oiIAOaIkADmiJsA5oiuAOaItADmiLYA5omLAOaJkwDmiZ0A5oqVAOaKsQDmi4kA5ouPAOaLkwDmi5QA5ou8AOaLvgDmjIcA5oy9AOaNkADmjZUA5o2oAOaNuwDmjoMA5o6gAOaOqQDmj4QA5o+FAOaPpADmkJwA5pCiAOaRkgDmkakA5pG3AOaRvgDmkpoA5pKdAOaThADmlK8A5pS0AOaVjwDmlZYA5pWsAOaVuADmlocA5paXAOaWmQDmlqQA5pawAOaWuQDml4UA5pegAOaXogDml6MA5pelAOaYjuayuwDmmJMA5pigAOaYreWSjADmmYkA5pm0AOaaiADmmpEA5pqcAOaatADmm4YA5puwAOabtADmm7gA5pyAAOaciADmnIkA5pyXAOacmwDmnKEA5pyoAOadjgDmnZMA5p2WAOadngDmnbsA5p6FAOaelwDmn7MA5p+6AOaglwDmoJ8A5qCqAOagquW8j+S8muekvgDmoZIA5qKBAOaihQDmoo4A5qKoAOaklADmpYIA5qajAOanqgDmqIIA5qiTAOaqqADmq5MA5qubAOashADmrKAA5qyhAOatlADmraIA5q2jAOatsgDmrbcA5q25AOaunwDmrq4A5q6zAOauugDmrrsA5q+LAOavjQDmr5QA5q+bAOawjwDmsJQA5rC0AOaxjgDmsacA5rKIAOayvwDms4wA5rONAOazpQDms6gA5rSWAOa0mwDmtJ4A5rS0AOa0vgDmtYEA5rWpAOa1qgDmtbcA5rW4AOa2hQDmt4sA5reaAOa3qgDmt7kA5riaAOa4rwDmua4A5rqAAOa6nADmuroA5ruHAOa7iwDmu5EA5rubAOa8jwDmvJQA5ryiAOa8owDmva4A5r+GAOa/qwDmv74A54CbAOeAngDngLkA54GKAOeBqwDngbAA54G3AOeBvQDngpkA54KtAOeDiADng5kA54ShAOeFhQDnhYkA54WuAOeGnADnh44A54eQAOeIkADniJsA54ioAOeIqgDniKsA54i1AOeItgDniLsA54i/AOeJhwDniZAA54mZAOeJmwDniaIA54m5AOeKgADnipUA54qsAOeKrwDni4AA54u8AOeMqgDnjbUA5426AOeOhADnjocA546JAOeOiwDnjqUA546yAOePngDnkIYA55CJAOeQogDnkYcA55GcAOeRqQDnkbEA55KFAOeSiQDnkpgA55OKAOeTnADnk6YA55SGAOeUmADnlJ8A55SkAOeUqADnlLAA55SyAOeUswDnlLcA55S7AOeUvgDnlZkA55WlAOeVsADnlosA55aSAOeXogDnmJAA55idAOeYnwDnmYIA55mpAOeZtgDnmb0A55quAOeavwDnm4oA55ubAOebowDnm6cA55uuAOebtADnnIEA55yeAOecnwDnnYAA552KAOeeiwDnnqcA55+bAOefogDnn7MA56GOAOehqwDnoowA56KRAOejigDno4wA56O7AOekqgDnpLoA56S8AOekvgDnpYgA56WJAOelkADnpZYA56WdAOelngDnpaUA56W/AOemgQDnpo0A56aOAOemjwDnpq4A56a4AOemvgDnp4oA56eYAOenqwDnqJwA56mAAOepigDnqY8A56m0AOepugDnqoEA56qxAOeriwDnq64A56u5AOesoADnro8A56+AAOevhgDnr4kA57C+AOexoADnsbMA57G7AOeykgDnsr4A57OSAOezlgDns6MA57OnAOezqADns7gA57SAAOe0kADntKIA57SvAOe1ggDntZsA57WjAOe2oADntr4A57eHAOe3tADnuIIA57iJAOe4twDnuYEA57mFAOe8tgDnvL4A572RAOe9sgDnvbkA5726AOe+hQDnvooA576VAOe+mgDnvr0A57+6AOiAgQDogIUA6ICMAOiAkgDogLMA6IGGAOiBoADoga8A6IGwAOiBvgDogb8A6IKJAOiCiwDogq0A6IKyAOiEgwDohL4A6IeYAOiHowDoh6gA6IeqAOiHrQDoh7MA6Ie8AOiIgQDoiIQA6IiMAOiImADoiJsA6IifAOiJrgDoia8A6ImyAOiJuADoibkA6IqLAOiKkQDoip0A6IqxAOiKswDoir0A6IulAOiLpgDojJ0A6IyjAOiMtgDojZIA6I2TAOiNowDojq0A6I69AOiPiQDoj4oA6I+MAOiPnADoj6cA6I+vAOiPsQDokL0A6JGJAOiRlwDok64A6JOxAOiTswDok7wA6JSWAOiVpADol40A6Je6AOiYhgDomJIA6JitAOiYvwDomY0A6JmQAOiZnADomacA6JmpAOiZqwDomogA6JqpAOibogDonI4A6JyoAOidqwDonbkA6J6GAOieugDon6EA6KCBAOignwDooYAA6KGMAOihoADooaMA6KOCAOijjwDoo5cA6KOeAOijoQDoo7gA6KO6AOikkADopYEA6KWkAOilvgDopoYA6KaLAOimlgDop5IA6KejAOiogADoqqAA6KqqAOiqvwDoq4sA6KuSAOirlgDoq60A6Ku4AOirvgDorIEA6Ky5AOitmADoroAA6K6KAOiwtwDosYYA6LGIAOixlQDosbgA6LKdAOiyoQDosqkA6LKrAOizgQDos4IA6LOHAOiziADos5MA6LSIAOi0mwDotaQA6LWwAOi1twDotrMA6La8AOi3iwDot68A6LewAOi6qwDou4oA6LuUAOi8pgDovKoA6Ly4AOi8uwDovaIA6L6bAOi+ngDovrAA6L61AOi+tgDpgKMA6YC4AOmBigDpgakA6YGyAOmBvADpgo8A6YKRAOmClADpg44A6YOeAOmDsQDpg70A6YSRAOmEmwDphYkA6YWqAOmGmQDphrQA6YeGAOmHjADph48A6YeRAOmItADpiLgA6Ym2AOmJvADpi5cA6YuYAOmMhADpjYoA6Y+5AOmQlQDplbcA6ZaAAOmWiwDplq0A6Za3AOmYnADpmK4A6ZmLAOmZjQDpmbUA6Zm4AOmZvADpmoYA6ZqjAOmatgDpmrcA6Zq4AOmauQDpm4MA6ZuiAOmbowDpm6gA6Zu2AOmbtwDpnKMA6ZyyAOmdiADpnZEA6Z2WAOmdngDpnaIA6Z2pAOmfiwDpn5sA6Z+gAOmfrQDpn7MA6Z+/AOmggQDpoIUA6aCLAOmgmADpoKkA6aC7AOmhngDpoqgA6aObAOmjnwDpo6IA6aOvAOmjvADppKgA6aSpAOmmlgDpppkA6aanAOmmrADpp4IA6aexAOmnvgDpqaoA6aqoAOmrmADpq58A6aySAOmspQDprK8A6ayyAOmsvADprZoA6a2vAOmxgADpsZcA6bOlAOmzvQDptacA6ba0AOm3ugDpuJ4A6bm1AOm5vwDpupcA6bqfAOm6pQDpursA6buDAOm7jQDpu44A6buRAOm7uQDpu70A6bu+AOm8hQDpvI4A6byPAOm8kwDpvJYA6bygAOm8uwDpvYMA6b2KAOm9kgDpvo0A6b6OAOm+nADpvp8A6b6gAOqcpwDqna8A6qy3AOqtkgDqsIAA6rCBAOqwggDqsIMA6rCEAOqwhQDqsIYA6rCHAOqwiADqsIkA6rCKAOqwiwDqsIwA6rCNAOqwjgDqsI8A6rCQAOqwkQDqsJIA6rCTAOqwlADqsJUA6rCWAOqwlwDqsJgA6rCZAOqwmgDqsJsA6rCcAOqwnQDqsJ4A6rCfAOqwoADqsKEA6rCiAOqwowDqsKQA6rClAOqwpgDqsKcA6rCoAOqwqQDqsKoA6rCrAOqwrADqsK0A6rCuAOqwrwDqsLAA6rCxAOqwsgDqsLMA6rC0AOqwtQDqsLYA6rC3AOqwuADqsLkA6rC6AOqwuwDqsLwA6rC9AOqwvgDqsL8A6rGAAOqxgQDqsYIA6rGDAOqxhADqsYUA6rGGAOqxhwDqsYgA6rGJAOqxigDqsYsA6rGMAOqxjQDqsY4A6rGPAOqxkADqsZEA6rGSAOqxkwDqsZQA6rGVAOqxlgDqsZcA6rGYAOqxmQDqsZoA6rGbAOqxnADqsZ0A6rGeAOqxnwDqsaAA6rGhAOqxogDqsaMA6rGkAOqxpQDqsaYA6rGnAOqxqADqsakA6rGqAOqxqwDqsawA6rGtAOqxrgDqsa8A6rGwAOqxsQDqsbIA6rGzAOqxtADqsbUA6rG2AOqxtwDqsbgA6rG5AOqxugDqsbsA6rG8AOqxvQDqsb4A6rG/AOqygADqsoEA6rKCAOqygwDqsoQA6rKFAOqyhgDqsocA6rKIAOqyiQDqsooA6rKLAOqyjADqso0A6rKOAOqyjwDqspAA6rKRAOqykgDqspMA6rKUAOqylQDqspYA6rKXAOqymADqspkA6rKaAOqymwDqspwA6rKdAOqyngDqsp8A6rKgAOqyoQDqsqIA6rKjAOqypADqsqUA6rKmAOqypwDqsqgA6rKpAOqyqgDqsqsA6rKsAOqyrQDqsq4A6rKvAOqysADqsrEA6rKyAOqyswDqsrQA6rK1AOqytgDqsrcA6rK4AOqyuQDqsroA6rK7AOqyvADqsr0A6rK+AOqyvwDqs4AA6rOBAOqzggDqs4MA6rOEAOqzhQDqs4YA6rOHAOqziADqs4kA6rOKAOqziwDqs4wA6rONAOqzjgDqs48A6rOQAOqzkQDqs5IA6rOTAOqzlADqs5UA6rOWAOqzlwDqs5gA6rOZAOqzmgDqs5sA6rOcAOqznQDqs54A6rOfAOqzoADqs6EA6rOiAOqzowDqs6QA6rOlAOqzpgDqs6cA6rOoAOqzqQDqs6oA6rOrAOqzrADqs60A6rOuAOqzrwDqs7AA6rOxAOqzsgDqs7MA6rO0AOqztQDqs7YA6rO3AOqzuADqs7kA6rO6AOqzuwDqs7wA6rO9AOqzvgDqs78A6rSAAOq0gQDqtIIA6rSDAOq0hADqtIUA6rSGAOq0hwDqtIgA6rSJAOq0igDqtIsA6rSMAOq0jQDqtI4A6rSPAOq0kADqtJEA6rSSAOq0kwDqtJQA6rSVAOq0lgDqtJcA6rSYAOq0mQDqtJoA6rSbAOq0nADqtJ0A6rSeAOq0nwDqtKAA6rShAOq0ogDqtKMA6rSkAOq0pQDqtKYA6rSnAOq0qADqtKkA6rSqAOq0qwDqtKwA6rStAOq0rgDqtK8A6rSwAOq0sQDqtLIA6rSzAOq0tADqtLUA6rS2AOq0twDqtLgA6rS5AOq0ugDqtLsA6rS8AOq0vQDqtL4A6rS/AOq1gADqtYEA6rWCAOq1gwDqtYQA6rWFAOq1hgDqtYcA6rWIAOq1iQDqtYoA6rWLAOq1jADqtY0A6rWOAOq1jwDqtZAA6rWRAOq1kgDqtZMA6rWUAOq1lQDqtZYA6rWXAOq1mADqtZkA6rWaAOq1mwDqtZwA6rWdAOq1ngDqtZ8A6rWgAOq1oQDqtaIA6rWjAOq1pADqtaUA6rWmAOq1pwDqtagA6rWpAOq1qgDqtasA6rWsAOq1rQDqta4A6rWvAOq1sADqtbEA6rWyAOq1swDqtbQA6rW1AOq1tgDqtbcA6rW4AOq1uQDqtboA6rW7AOq1vADqtb0A6rW+AOq1vwDqtoAA6raBAOq2ggDqtoMA6raEAOq2hQDqtoYA6raHAOq2iADqtokA6raKAOq2iwDqtowA6raNAOq2jgDqto8A6raQAOq2kQDqtpIA6raTAOq2lADqtpUA6raWAOq2lwDqtpgA6raZAOq2mgDqtpsA6racAOq2nQDqtp4A6rafAOq2oADqtqEA6raiAOq2owDqtqQA6ralAOq2pgDqtqcA6raoAOq2qQDqtqoA6rarAOq2rADqtq0A6rauAOq2rwDqtrAA6raxAOq2sgDqtrMA6ra0AOq2tQDqtrYA6ra3AOq2uADqtrkA6ra6AOq2uwDqtrwA6ra9AOq2vgDqtr8A6reAAOq3gQDqt4IA6reDAOq3hADqt4UA6reGAOq3hwDqt4gA6reJAOq3igDqt4sA6reMAOq3jQDqt44A6rePAOq3kADqt5EA6reSAOq3kwDqt5QA6reVAOq3lgDqt5cA6reYAOq3mQDqt5oA6rebAOq3nADqt50A6reeAOq3nwDqt6AA6rehAOq3ogDqt6MA6rekAOq3pQDqt6YA6renAOq3qADqt6kA6reqAOq3qwDqt6wA6retAOq3rgDqt68A6rewAOq3sQDqt7IA6rezAOq3tADqt7UA6re2AOq3twDqt7gA6re5AOq3ugDqt7sA6re8AOq3vQDqt74A6re/AOq4gADquIEA6riCAOq4gwDquIQA6riFAOq4hgDquIcA6riIAOq4iQDquIoA6riLAOq4jADquI0A6riOAOq4jwDquJAA6riRAOq4kgDquJMA6riUAOq4lQDquJYA6riXAOq4mADquJkA6riaAOq4mwDquJwA6ridAOq4ngDquJ8A6rigAOq4oQDquKIA6rijAOq4pADquKUA6rimAOq4pwDquKgA6ripAOq4qgDquKsA6risAOq4rQDquK4A6rivAOq4sADquLEA6riyAOq4swDquLQA6ri1AOq4tgDquLcA6ri4AOq4uQDquLoA6ri7AOq4vADquL0A6ri+AOq4vwDquYAA6rmBAOq5ggDquYMA6rmEAOq5hQDquYYA6rmHAOq5iADquYkA6rmKAOq5iwDquYwA6rmNAOq5jgDquY8A6rmQAOq5kQDquZIA6rmTAOq5lADquZUA6rmWAOq5lwDquZgA6rmZAOq5mgDquZsA6rmcAOq5nQDquZ4A6rmfAOq5oADquaEA6rmiAOq5owDquaQA6rmlAOq5pgDquacA6rmoAOq5qQDquaoA6rmrAOq5rADqua0A6rmuAOq5rwDqubAA6rmxAOq5sgDqubMA6rm0AOq5tQDqubYA6rm3AOq5uADqubkA6rm6AOq5uwDqubwA6rm9AOq5vgDqub8A6rqAAOq6gQDquoIA6rqDAOq6hADquoUA6rqGAOq6hwDquogA6rqJAOq6igDquosA6rqMAOq6jQDquo4A6rqPAOq6kADqupEA6rqSAOq6kwDqupQA6rqVAOq6lgDqupcA6rqYAOq6mQDqupoA6rqbAOq6nADqup0A6rqeAOq6nwDquqAA6rqhAOq6ogDquqMA6rqkAOq6pQDquqYA6rqnAOq6qADquqkA6rqqAOq6qwDquqwA6rqtAOq6rgDquq8A6rqwAOq6sQDqurIA6rqzAOq6tADqurUA6rq2AOq6twDqurgA6rq5AOq6ugDqursA6rq8AOq6vQDqur4A6rq/AOq7gADqu4EA6ruCAOq7gwDqu4QA6ruFAOq7hgDqu4cA6ruIAOq7iQDqu4oA6ruLAOq7jADqu40A6ruOAOq7jwDqu5AA6ruRAOq7kgDqu5MA6ruUAOq7lQDqu5YA6ruXAOq7mADqu5kA6ruaAOq7mwDqu5wA6rudAOq7ngDqu58A6rugAOq7oQDqu6IA6rujAOq7pADqu6UA6rumAOq7pwDqu6gA6rupAOq7qgDqu6sA6rusAOq7rQDqu64A6ruvAOq7sADqu7EA6ruyAOq7swDqu7QA6ru1AOq7tgDqu7cA6ru4AOq7uQDqu7oA6ru7AOq7vADqu70A6ru+AOq7vwDqvIAA6ryBAOq8ggDqvIMA6ryEAOq8hQDqvIYA6ryHAOq8iADqvIkA6ryKAOq8iwDqvIwA6ryNAOq8jgDqvI8A6ryQAOq8kQDqvJIA6ryTAOq8lADqvJUA6ryWAOq8lwDqvJgA6ryZAOq8mgDqvJsA6rycAOq8nQDqvJ4A6ryfAOq8oADqvKEA6ryiAOq8owDqvKQA6rylAOq8pgDqvKcA6ryoAOq8qQDqvKoA6ryrAOq8rADqvK0A6ryuAOq8rwDqvLAA6ryxAOq8sgDqvLMA6ry0AOq8tQDqvLYA6ry3AOq8uADqvLkA6ry6AOq8uwDqvLwA6ry9AOq8vgDqvL8A6r2AAOq9gQDqvYIA6r2DAOq9hADqvYUA6r2GAOq9hwDqvYgA6r2JAOq9igDqvYsA6r2MAOq9jQDqvY4A6r2PAOq9kADqvZEA6r2SAOq9kwDqvZQA6r2VAOq9lgDqvZcA6r2YAOq9mQDqvZoA6r2bAOq9nADqvZ0A6r2eAOq9nwDqvaAA6r2hAOq9ogDqvaMA6r2kAOq9pQDqvaYA6r2nAOq9qADqvakA6r2qAOq9qwDqvawA6r2tAOq9rgDqva8A6r2wAOq9sQDqvbIA6r2zAOq9tADqvbUA6r22AOq9twDqvbgA6r25AOq9ugDqvbsA6r28AOq9vQDqvb4A6r2/AOq+gADqvoEA6r6CAOq+gwDqvoQA6r6FAOq+hgDqvocA6r6IAOq+iQDqvooA6r6LAOq+jADqvo0A6r6OAOq+jwDqvpAA6r6RAOq+kgDqvpMA6r6UAOq+lQDqvpYA6r6XAOq+mADqvpkA6r6aAOq+mwDqvpwA6r6dAOq+ngDqvp8A6r6gAOq+oQDqvqIA6r6jAOq+pADqvqUA6r6mAOq+pwDqvqgA6r6pAOq+qgDqvqsA6r6sAOq+rQDqvq4A6r6vAOq+sADqvrEA6r6yAOq+swDqvrQA6r61AOq+tgDqvrcA6r64AOq+uQDqvroA6r67AOq+vADqvr0A6r6+AOq+vwDqv4AA6r+BAOq/ggDqv4MA6r+EAOq/hQDqv4YA6r+HAOq/iADqv4kA6r+KAOq/iwDqv4wA6r+NAOq/jgDqv48A6r+QAOq/kQDqv5IA6r+TAOq/lADqv5UA6r+WAOq/lwDqv5gA6r+ZAOq/mgDqv5sA6r+cAOq/nQDqv54A6r+fAOq/oADqv6EA6r+iAOq/owDqv6QA6r+lAOq/pgDqv6cA6r+oAOq/qQDqv6oA6r+rAOq/rADqv60A6r+uAOq/rwDqv7AA6r+xAOq/sgDqv7MA6r+0AOq/tQDqv7YA6r+3AOq/uADqv7kA6r+6AOq/uwDqv7wA6r+9AOq/vgDqv78A64CAAOuAgQDrgIIA64CDAOuAhADrgIUA64CGAOuAhwDrgIgA64CJAOuAigDrgIsA64CMAOuAjQDrgI4A64CPAOuAkADrgJEA64CSAOuAkwDrgJQA64CVAOuAlgDrgJcA64CYAOuAmQDrgJoA64CbAOuAnADrgJ0A64CeAOuAnwDrgKAA64ChAOuAogDrgKMA64CkAOuApQDrgKYA64CnAOuAqADrgKkA64CqAOuAqwDrgKwA64CtAOuArgDrgK8A64CwAOuAsQDrgLIA64CzAOuAtADrgLUA64C2AOuAtwDrgLgA64C5AOuAugDrgLsA64C8AOuAvQDrgL4A64C/AOuBgADrgYEA64GCAOuBgwDrgYQA64GFAOuBhgDrgYcA64GIAOuBiQDrgYoA64GLAOuBjADrgY0A64GOAOuBjwDrgZAA64GRAOuBkgDrgZMA64GUAOuBlQDrgZYA64GXAOuBmADrgZkA64GaAOuBmwDrgZwA64GdAOuBngDrgZ8A64GgAOuBoQDrgaIA64GjAOuBpADrgaUA64GmAOuBpwDrgagA64GpAOuBqgDrgasA64GsAOuBrQDrga4A64GvAOuBsADrgbEA64GyAOuBswDrgbQA64G1AOuBtgDrgbcA64G4AOuBuQDrgboA64G7AOuBvADrgb0A64G+AOuBvwDrgoAA64KBAOuCggDrgoMA64KEAOuChQDrgoYA64KHAOuCiADrgokA64KKAOuCiwDrgowA64KNAOuCjgDrgo8A64KQAOuCkQDrgpIA64KTAOuClADrgpUA64KWAOuClwDrgpgA64KZAOuCmgDrgpsA64KcAOuCnQDrgp4A64KfAOuCoADrgqEA64KiAOuCowDrgqQA64KlAOuCpgDrgqcA64KoAOuCqQDrgqoA64KrAOuCrADrgq0A64KuAOuCrwDrgrAA64KxAOuCsgDrgrMA64K0AOuCtQDrgrYA64K3AOuCuADrgrkA64K6AOuCuwDrgrwA64K9AOuCvgDrgr8A64OAAOuDgQDrg4IA64ODAOuDhADrg4UA64OGAOuDhwDrg4gA64OJAOuDigDrg4sA64OMAOuDjQDrg44A64OPAOuDkADrg5EA64OSAOuDkwDrg5QA64OVAOuDlgDrg5cA64OYAOuDmQDrg5oA64ObAOuDnADrg50A64OeAOuDnwDrg6AA64OhAOuDogDrg6MA64OkAOuDpQDrg6YA64OnAOuDqADrg6kA64OqAOuDqwDrg6wA64OtAOuDrgDrg68A64OwAOuDsQDrg7IA64OzAOuDtADrg7UA64O2AOuDtwDrg7gA64O5AOuDugDrg7sA64O8AOuDvQDrg74A64O/AOuEgADrhIEA64SCAOuEgwDrhIQA64SFAOuEhgDrhIcA64SIAOuEiQDrhIoA64SLAOuEjADrhI0A64SOAOuEjwDrhJAA64SRAOuEkgDrhJMA64SUAOuElQDrhJYA64SXAOuEmADrhJkA64SaAOuEmwDrhJwA64SdAOuEngDrhJ8A64SgAOuEoQDrhKIA64SjAOuEpADrhKUA64SmAOuEpwDrhKgA64SpAOuEqgDrhKsA64SsAOuErQDrhK4A64SvAOuEsADrhLEA64SyAOuEswDrhLQA64S1AOuEtgDrhLcA64S4AOuEuQDrhLoA64S7AOuEvADrhL0A64S+AOuEvwDrhYAA64WBAOuFggDrhYMA64WEAOuFhQDrhYYA64WHAOuFiADrhYkA64WKAOuFiwDrhYwA64WNAOuFjgDrhY8A64WQAOuFkQDrhZIA64WTAOuFlADrhZUA64WWAOuFlwDrhZgA64WZAOuFmgDrhZsA64WcAOuFnQDrhZ4A64WfAOuFoADrhaEA64WiAOuFowDrhaQA64WlAOuFpgDrhacA64WoAOuFqQDrhaoA64WrAOuFrADrha0A64WuAOuFrwDrhbAA64WxAOuFsgDrhbMA64W0AOuFtQDrhbYA64W3AOuFuADrhbkA64W6AOuFuwDrhbwA64W9AOuFvgDrhb8A64aAAOuGgQDrhoIA64aDAOuGhADrhoUA64aGAOuGhwDrhogA64aJAOuGigDrhosA64aMAOuGjQDrho4A64aPAOuGkADrhpEA64aSAOuGkwDrhpQA64aVAOuGlgDrhpcA64aYAOuGmQDrhpoA64abAOuGnADrhp0A64aeAOuGnwDrhqAA64ahAOuGogDrhqMA64akAOuGpQDrhqYA64anAOuGqADrhqkA64aqAOuGqwDrhqwA64atAOuGrgDrhq8A64awAOuGsQDrhrIA64azAOuGtADrhrUA64a2AOuGtwDrhrgA64a5AOuGugDrhrsA64a8AOuGvQDrhr4A64a/AOuHgADrh4EA64eCAOuHgwDrh4QA64eFAOuHhgDrh4cA64eIAOuHiQDrh4oA64eLAOuHjADrh40A64eOAOuHjwDrh5AA64eRAOuHkgDrh5MA64eUAOuHlQDrh5YA64eXAOuHmADrh5kA64eaAOuHmwDrh5wA64edAOuHngDrh58A64egAOuHoQDrh6IA64ejAOuHpADrh6UA64emAOuHpwDrh6gA64epAOuHqgDrh6sA64esAOuHrQDrh64A64evAOuHsADrh7EA64eyAOuHswDrh7QA64e1AOuHtgDrh7cA64e4AOuHuQDrh7oA64e7AOuHvADrh70A64e+AOuHvwDriIAA64iBAOuIggDriIMA64iEAOuIhQDriIYA64iHAOuIiADriIkA64iKAOuIiwDriIwA64iNAOuIjgDriI8A64iQAOuIkQDriJIA64iTAOuIlADriJUA64iWAOuIlwDriJgA64iZAOuImgDriJsA64icAOuInQDriJ4A64ifAOuIoADriKEA64iiAOuIowDriKQA64ilAOuIpgDriKcA64ioAOuIqQDriKoA64irAOuIrADriK0A64iuAOuIrwDriLAA64ixAOuIsgDriLMA64i0AOuItQDriLYA64i3AOuIuADriLkA64i6AOuIuwDriLwA64i9AOuIvgDriL8A64mAAOuJgQDriYIA64mDAOuJhADriYUA64mGAOuJhwDriYgA64mJAOuJigDriYsA64mMAOuJjQDriY4A64mPAOuJkADriZEA64mSAOuJkwDriZQA64mVAOuJlgDriZcA64mYAOuJmQDriZoA64mbAOuJnADriZ0A64meAOuJnwDriaAA64mhAOuJogDriaMA64mkAOuJpQDriaYA64mnAOuJqADriakA64mqAOuJqwDriawA64mtAOuJrgDria8A64mwAOuJsQDribIA64mzAOuJtADribUA64m2AOuJtwDribgA64m5AOuJugDribsA64m8AOuJvQDrib4A64m/AOuKgADrioEA64qCAOuKgwDrioQA64qFAOuKhgDriocA64qIAOuKiQDriooA64qLAOuKjADrio0A64qOAOuKjwDripAA64qRAOuKkgDripMA64qUAOuKlQDripYA64qXAOuKmADripkA64qaAOuKmwDripwA64qdAOuKngDrip8A64qgAOuKoQDriqIA64qjAOuKpADriqUA64qmAOuKpwDriqgA64qpAOuKqgDriqsA64qsAOuKrQDriq4A64qvAOuKsADrirEA64qyAOuKswDrirQA64q1AOuKtgDrircA64q4AOuKuQDriroA64q7AOuKvADrir0A64q+AOuKvwDri4AA64uBAOuLggDri4MA64uEAOuLhQDri4YA64uHAOuLiADri4kA64uKAOuLiwDri4wA64uNAOuLjgDri48A64uQAOuLkQDri5IA64uTAOuLlADri5UA64uWAOuLlwDri5gA64uZAOuLmgDri5sA64ucAOuLnQDri54A64ufAOuLoADri6EA64uiAOuLowDri6QA64ulAOuLpgDri6cA64uoAOuLqQDri6oA64urAOuLrADri60A64uuAOuLrwDri7AA64uxAOuLsgDri7MA64u0AOuLtQDri7YA64u3AOuLuADri7kA64u6AOuLuwDri7wA64u9AOuLvgDri78A64yAAOuMgQDrjIIA64yDAOuMhADrjIUA64yGAOuMhwDrjIgA64yJAOuMigDrjIsA64yMAOuMjQDrjI4A64yPAOuMkADrjJEA64ySAOuMkwDrjJQA64yVAOuMlgDrjJcA64yYAOuMmQDrjJoA64ybAOuMnADrjJ0A64yeAOuMnwDrjKAA64yhAOuMogDrjKMA64ykAOuMpQDrjKYA64ynAOuMqADrjKkA64yqAOuMqwDrjKwA64ytAOuMrgDrjK8A64ywAOuMsQDrjLIA64yzAOuMtADrjLUA64y2AOuMtwDrjLgA64y5AOuMugDrjLsA64y8AOuMvQDrjL4A64y/AOuNgADrjYEA642CAOuNgwDrjYQA642FAOuNhgDrjYcA642IAOuNiQDrjYoA642LAOuNjADrjY0A642OAOuNjwDrjZAA642RAOuNkgDrjZMA642UAOuNlQDrjZYA642XAOuNmADrjZkA642aAOuNmwDrjZwA642dAOuNngDrjZ8A642gAOuNoQDrjaIA642jAOuNpADrjaUA642mAOuNpwDrjagA642pAOuNqgDrjasA642sAOuNrQDrja4A642vAOuNsADrjbEA642yAOuNswDrjbQA6421AOuNtgDrjbcA6424AOuNuQDrjboA6427AOuNvADrjb0A642+AOuNvwDrjoAA646BAOuOggDrjoMA646EAOuOhQDrjoYA646HAOuOiADrjokA646KAOuOiwDrjowA646NAOuOjgDrjo8A646QAOuOkQDrjpIA646TAOuOlADrjpUA646WAOuOlwDrjpgA646ZAOuOmgDrjpsA646cAOuOnQDrjp4A646fAOuOoADrjqEA646iAOuOowDrjqQA646lAOuOpgDrjqcA646oAOuOqQDrjqoA646rAOuOrADrjq0A646uAOuOrwDrjrAA646xAOuOsgDrjrMA6460AOuOtQDrjrYA6463AOuOuADrjrkA6466AOuOuwDrjrwA6469AOuOvgDrjr8A64+AAOuPgQDrj4IA64+DAOuPhADrj4UA64+GAOuPhwDrj4gA64+JAOuPigDrj4sA64+MAOuPjQDrj44A64+PAOuPkADrj5EA64+SAOuPkwDrj5QA64+VAOuPlgDrj5cA64+YAOuPmQDrj5oA64+bAOuPnADrj50A64+eAOuPnwDrj6AA64+hAOuPogDrj6MA64+kAOuPpQDrj6YA64+nAOuPqADrj6kA64+qAOuPqwDrj6wA64+tAOuPrgDrj68A64+wAOuPsQDrj7IA64+zAOuPtADrj7UA64+2AOuPtwDrj7gA64+5AOuPugDrj7sA64+8AOuPvQDrj74A64+/AOuQgADrkIEA65CCAOuQgwDrkIQA65CFAOuQhgDrkIcA65CIAOuQiQDrkIoA65CLAOuQjADrkI0A65COAOuQjwDrkJAA65CRAOuQkgDrkJMA65CUAOuQlQDrkJYA65CXAOuQmADrkJkA65CaAOuQmwDrkJwA65CdAOuQngDrkJ8A65CgAOuQoQDrkKIA65CjAOuQpADrkKUA65CmAOuQpwDrkKgA65CpAOuQqgDrkKsA65CsAOuQrQDrkK4A65CvAOuQsADrkLEA65CyAOuQswDrkLQA65C1AOuQtgDrkLcA65C4AOuQuQDrkLoA65C7AOuQvADrkL0A65C+AOuQvwDrkYAA65GBAOuRggDrkYMA65GEAOuRhQDrkYYA65GHAOuRiADrkYkA65GKAOuRiwDrkYwA65GNAOuRjgDrkY8A65GQAOuRkQDrkZIA65GTAOuRlADrkZUA65GWAOuRlwDrkZgA65GZAOuRmgDrkZsA65GcAOuRnQDrkZ4A65GfAOuRoADrkaEA65GiAOuRowDrkaQA65GlAOuRpgDrkacA65GoAOuRqQDrkaoA65GrAOuRrADrka0A65GuAOuRrwDrkbAA65GxAOuRsgDrkbMA65G0AOuRtQDrkbYA65G3AOuRuADrkbkA65G6AOuRuwDrkbwA65G9AOuRvgDrkb8A65KAAOuSgQDrkoIA65KDAOuShADrkoUA65KGAOuShwDrkogA65KJAOuSigDrkosA65KMAOuSjQDrko4A65KPAOuSkADrkpEA65KSAOuSkwDrkpQA65KVAOuSlgDrkpcA65KYAOuSmQDrkpoA65KbAOuSnADrkp0A65KeAOuSnwDrkqAA65KhAOuSogDrkqMA65KkAOuSpQDrkqYA65KnAOuSqADrkqkA65KqAOuSqwDrkqwA65KtAOuSrgDrkq8A65KwAOuSsQDrkrIA65KzAOuStADrkrUA65K2AOuStwDrkrgA65K5AOuSugDrkrsA65K8AOuSvQDrkr4A65K/AOuTgADrk4EA65OCAOuTgwDrk4QA65OFAOuThgDrk4cA65OIAOuTiQDrk4oA65OLAOuTjADrk40A65OOAOuTjwDrk5AA65ORAOuTkgDrk5MA65OUAOuTlQDrk5YA65OXAOuTmADrk5kA65OaAOuTmwDrk5wA65OdAOuTngDrk58A65OgAOuToQDrk6IA65OjAOuTpADrk6UA65OmAOuTpwDrk6gA65OpAOuTqgDrk6sA65OsAOuTrQDrk64A65OvAOuTsADrk7EA65OyAOuTswDrk7QA65O1AOuTtgDrk7cA65O4AOuTuQDrk7oA65O7AOuTvADrk70A65O+AOuTvwDrlIAA65SBAOuUggDrlIMA65SEAOuUhQDrlIYA65SHAOuUiADrlIkA65SKAOuUiwDrlIwA65SNAOuUjgDrlI8A65SQAOuUkQDrlJIA65STAOuUlADrlJUA65SWAOuUlwDrlJgA65SZAOuUmgDrlJsA65ScAOuUnQDrlJ4A65SfAOuUoADrlKEA65SiAOuUowDrlKQA65SlAOuUpgDrlKcA65SoAOuUqQDrlKoA65SrAOuUrADrlK0A65SuAOuUrwDrlLAA65SxAOuUsgDrlLMA65S0AOuUtQDrlLYA65S3AOuUuADrlLkA65S6AOuUuwDrlLwA65S9AOuUvgDrlL8A65WAAOuVgQDrlYIA65WDAOuVhADrlYUA65WGAOuVhwDrlYgA65WJAOuVigDrlYsA65WMAOuVjQDrlY4A65WPAOuVkADrlZEA65WSAOuVkwDrlZQA65WVAOuVlgDrlZcA65WYAOuVmQDrlZoA65WbAOuVnADrlZ0A65WeAOuVnwDrlaAA65WhAOuVogDrlaMA65WkAOuVpQDrlaYA65WnAOuVqADrlakA65WqAOuVqwDrlawA65WtAOuVrgDrla8A65WwAOuVsQDrlbIA65WzAOuVtADrlbUA65W2AOuVtwDrlbgA65W5AOuVugDrlbsA65W8AOuVvQDrlb4A65W/AOuWgADrloEA65aCAOuWgwDrloQA65aFAOuWhgDrlocA65aIAOuWiQDrlooA65aLAOuWjADrlo0A65aOAOuWjwDrlpAA65aRAOuWkgDrlpMA65aUAOuWlQDrlpYA65aXAOuWmADrlpkA65aaAOuWmwDrlpwA65adAOuWngDrlp8A65agAOuWoQDrlqIA65ajAOuWpADrlqUA65amAOuWpwDrlqgA65apAOuWqgDrlqsA65asAOuWrQDrlq4A65avAOuWsADrlrEA65ayAOuWswDrlrQA65a1AOuWtgDrlrcA65a4AOuWuQDrlroA65a7AOuWvADrlr0A65a+AOuWvwDrl4AA65eBAOuXggDrl4MA65eEAOuXhQDrl4YA65eHAOuXiADrl4kA65eKAOuXiwDrl4wA65eNAOuXjgDrl48A65eQAOuXkQDrl5IA65eTAOuXlADrl5UA65eWAOuXlwDrl5gA65eZAOuXmgDrl5sA65ecAOuXnQDrl54A65efAOuXoADrl6EA65eiAOuXowDrl6QA65elAOuXpgDrl6cA65eoAOuXqQDrl6oA65erAOuXrADrl60A65euAOuXrwDrl7AA65exAOuXsgDrl7MA65e0AOuXtQDrl7YA65e3AOuXuADrl7kA65e6AOuXuwDrl7wA65e9AOuXvgDrl78A65iAAOuYgQDrmIIA65iDAOuYhADrmIUA65iGAOuYhwDrmIgA65iJAOuYigDrmIsA65iMAOuYjQDrmI4A65iPAOuYkADrmJEA65iSAOuYkwDrmJQA65iVAOuYlgDrmJcA65iYAOuYmQDrmJoA65ibAOuYnADrmJ0A65ieAOuYnwDrmKAA65ihAOuYogDrmKMA65ikAOuYpQDrmKYA65inAOuYqADrmKkA65iqAOuYqwDrmKwA65itAOuYrgDrmK8A65iwAOuYsQDrmLIA65izAOuYtADrmLUA65i2AOuYtwDrmLgA65i5AOuYugDrmLsA65i8AOuYvQDrmL4A65i/AOuZgADrmYEA65mCAOuZgwDrmYQA65mFAOuZhgDrmYcA65mIAOuZiQDrmYoA65mLAOuZjADrmY0A65mOAOuZjwDrmZAA65mRAOuZkgDrmZMA65mUAOuZlQDrmZYA65mXAOuZmADrmZkA65maAOuZmwDrmZwA65mdAOuZngDrmZ8A65mgAOuZoQDrmaIA65mjAOuZpADrmaUA65mmAOuZpwDrmagA65mpAOuZqgDrmasA65msAOuZrQDrma4A65mvAOuZsADrmbEA65myAOuZswDrmbQA65m1AOuZtgDrmbcA65m4AOuZuQDrmboA65m7AOuZvADrmb0A65m+AOuZvwDrmoAA65qBAOuaggDrmoMA65qEAOuahQDrmoYA65qHAOuaiADrmokA65qKAOuaiwDrmowA65qNAOuajgDrmo8A65qQAOuakQDrmpIA65qTAOualADrmpUA65qWAOualwDrmpgA65qZAOuamgDrmpsA65qcAOuanQDrmp4A65qfAOuaoADrmqEA65qiAOuaowDrmqQA65qlAOuapgDrmqcA65qoAOuaqQDrmqoA65qrAOuarADrmq0A65quAOuarwDrmrAA65qxAOuasgDrmrMA65q0AOuatQDrmrYA65q3AOuauADrmrkA65q6AOuauwDrmrwA65q9AOuavgDrmr8A65uAAOubgQDrm4IA65uDAOubhADrm4UA65uGAOubhwDrm4gA65uJAOubigDrm4sA65uMAOubjQDrm44A65uPAOubkADrm5EA65uSAOubkwDrm5QA65uVAOublgDrm5cA65uYAOubmQDrm5oA65ubAOubnADrm50A65ueAOubnwDrm6AA65uhAOubogDrm6MA65ukAOubpQDrm6YA65unAOubqADrm6kA65uqAOubqwDrm6wA65utAOubrgDrm68A65uwAOubsQDrm7IA65uzAOubtADrm7UA65u2AOubtwDrm7gA65u5AOubugDrm7sA65u8AOubvQDrm74A65u/AOucgADrnIEA65yCAOucgwDrnIQA65yFAOuchgDrnIcA65yIAOuciQDrnIoA65yLAOucjADrnI0A65yOAOucjwDrnJAA65yRAOuckgDrnJMA65yUAOuclQDrnJYA65yXAOucmADrnJkA65yaAOucmwDrnJwA65ydAOucngDrnJ8A65ygAOucoQDrnKIA65yjAOucpADrnKUA65ymAOucpwDrnKgA65ypAOucqgDrnKsA65ysAOucrQDrnK4A65yvAOucsADrnLEA65yyAOucswDrnLQA65y1AOuctgDrnLcA65y4AOucuQDrnLoA65y7AOucvADrnL0A65y+AOucvwDrnYAA652BAOudggDrnYMA652EAOudhQDrnYYA652HAOudiADrnYkA652KAOudiwDrnYwA652NAOudjgDrnY8A652QAOudkQDrnZIA652TAOudlADrnZUA652WAOudlwDrnZgA652ZAOudmgDrnZsA652cAOudnQDrnZ4A652fAOudoADrnaEA652iAOudowDrnaQA652lAOudpgDrnacA652oAOudqQDrnaoA652rAOudrADrna0A652uAOudrwDrnbAA652xAOudsgDrnbMA6520AOudtQDrnbYA6523AOuduADrnbkA6526AOuduwDrnbwA6529AOudvgDrnb8A656AAOuegQDrnoIA656DAOuehADrnoUA656GAOuehwDrnogA656JAOueigDrnosA656MAOuejQDrno4A656PAOuekADrnpEA656SAOuekwDrnpQA656VAOuelgDrnpcA656YAOuemQDrnpoA656bAOuenADrnp0A656eAOuenwDrnqAA656hAOueogDrnqMA656kAOuepQDrnqYA656nAOueqADrnqkA656qAOueqwDrnqwA656tAOuergDrnq8A656wAOuesQDrnrIA656zAOuetADrnrUA6562AOuetwDrnrgA6565AOueugDrnrsA6568AOuevQDrnr4A656/AOufgADrn4EA65+CAOufgwDrn4QA65+FAOufhgDrn4cA65+IAOufiQDrn4oA65+LAOufjADrn40A65+OAOufjwDrn5AA65+RAOufkgDrn5MA65+UAOuflQDrn5YA65+XAOufmADrn5kA65+aAOufmwDrn5wA65+dAOufngDrn58A65+gAOufoQDrn6IA65+jAOufpADrn6UA65+mAOufpwDrn6gA65+pAOufqgDrn6sA65+sAOufrQDrn64A65+vAOufsADrn7EA65+yAOufswDrn7QA65+1AOuftgDrn7cA65+4AOufuQDrn7oA65+7AOufvADrn70A65++AOufvwDroIAA66CBAOugggDroIMA66CEAOughQDroIYA66CHAOugiADroIkA66CKAOugiwDroIwA66CNAOugjgDroI8A66CQAOugkQDroJIA66CTAOuglADroJUA66CWAOuglwDroJgA66CZAOugmgDroJsA66CcAOugnQDroJ4A66CfAOugoADroKEA66CiAOugowDroKQA66ClAOugpgDroKcA66CoAOugqQDroKoA66CrAOugrADroK0A66CuAOugrwDroLAA66CxAOugsgDroLMA66C0AOugtQDroLYA66C3AOuguADroLkA66C6AOuguwDroLwA66C9AOugvgDroL8A66GAAOuhgQDroYIA66GDAOuhhADroYUA66GGAOuhhwDroYgA66GJAOuhigDroYsA66GMAOuhjQDroY4A66GPAOuhkADroZEA66GSAOuhkwDroZQA66GVAOuhlgDroZcA66GYAOuhmQDroZoA66GbAOuhnADroZ0A66GeAOuhnwDroaAA66GhAOuhogDroaMA66GkAOuhpQDroaYA66GnAOuhqADroakA66GqAOuhqwDroawA66GtAOuhrgDroa8A66GwAOuhsQDrobIA66GzAOuhtADrobUA66G2AOuhtwDrobgA66G5AOuhugDrobsA66G8AOuhvQDrob4A66G/AOuigADrooEA66KCAOuigwDrooQA66KFAOuihgDroocA66KIAOuiiQDroooA66KLAOuijADroo0A66KOAOuijwDropAA66KRAOuikgDropMA66KUAOuilQDropYA66KXAOuimADropkA66KaAOuimwDropwA66KdAOuingDrop8A66KgAOuioQDroqIA66KjAOuipADroqUA66KmAOuipwDroqgA66KpAOuiqgDroqsA66KsAOuirQDroq4A66KvAOuisADrorEA66KyAOuiswDrorQA66K1AOuitgDrorcA66K4AOuiuQDroroA66K7AOuivADror0A66K+AOuivwDro4AA66OBAOujggDro4MA66OEAOujhQDro4YA66OHAOujiADro4kA66OKAOujiwDro4wA66ONAOujjgDro48A66OQAOujkQDro5IA66OTAOujlADro5UA66OWAOujlwDro5gA66OZAOujmgDro5sA66OcAOujnQDro54A66OfAOujoADro6EA66OiAOujowDro6QA66OlAOujpgDro6cA66OoAOujqQDro6oA66OrAOujrADro60A66OuAOujrwDro7AA66OxAOujsgDro7MA66O0AOujtQDro7YA66O3AOujuADro7kA66O6AOujuwDro7wA66O9AOujvgDro78A66SAAOukgQDrpIIA66SDAOukhADrpIUA66SGAOukhwDrpIgA66SJAOukigDrpIsA66SMAOukjQDrpI4A66SPAOukkADrpJEA66SSAOukkwDrpJQA66SVAOuklgDrpJcA66SYAOukmQDrpJoA66SbAOuknADrpJ0A66SeAOuknwDrpKAA66ShAOukogDrpKMA66SkAOukpQDrpKYA66SnAOukqADrpKkA66SqAOukqwDrpKwA66StAOukrgDrpK8A66SwAOuksQDrpLIA66SzAOuktADrpLUA66S2AOuktwDrpLgA66S5AOukugDrpLsA66S8AOukvQDrpL4A66S/AOulgADrpYEA66WCAOulgwDrpYQA66WFAOulhgDrpYcA66WIAOuliQDrpYoA66WLAOuljADrpY0A66WOAOuljwDrpZAA66WRAOulkgDrpZMA66WUAOullQDrpZYA66WXAOulmADrpZkA66WaAOulmwDrpZwA66WdAOulngDrpZ8A66WgAOuloQDrpaIA66WjAOulpADrpaUA66WmAOulpwDrpagA66WpAOulqgDrpasA66WsAOulrQDrpa4A66WvAOulsADrpbEA66WyAOulswDrpbQA66W1AOultgDrpbcA66W4AOuluQDrpboA66W7AOulvADrpb0A66W+AOulvwDrpoAA66aBAOumggDrpoMA66aEAOumhQDrpoYA66aHAOumiADrpokA66aKAOumiwDrpowA66aNAOumjgDrpo8A66aQAOumkQDrppIA66aTAOumlADrppUA66aWAOumlwDrppgA66aZAOummgDrppsA66acAOumnQDrpp4A66afAOumoADrpqEA66aiAOumowDrpqQA66alAOumpgDrpqcA66aoAOumqQDrpqoA66arAOumrADrpq0A66auAOumrwDrprAA66axAOumsgDrprMA66a0AOumtQDrprYA66a3AOumuADrprkA66a6AOumuwDrprwA66a9AOumvgDrpr8A66eAAOungQDrp4IA66eDAOunhADrp4UA66eGAOunhwDrp4gA66eJAOunigDrp4sA66eMAOunjQDrp44A66ePAOunkADrp5EA66eSAOunkwDrp5QA66eVAOunlgDrp5cA66eYAOunmQDrp5oA66ebAOunnADrp50A66eeAOunnwDrp6AA66ehAOunogDrp6MA66ekAOunpQDrp6YA66enAOunqADrp6kA66eqAOunqwDrp6wA66etAOunrgDrp68A66ewAOunsQDrp7IA66ezAOuntADrp7UA66e2AOuntwDrp7gA66e5AOunugDrp7sA66e8AOunvQDrp74A66e/AOuogADrqIEA66iCAOuogwDrqIQA66iFAOuohgDrqIcA66iIAOuoiQDrqIoA66iLAOuojADrqI0A66iOAOuojwDrqJAA66iRAOuokgDrqJMA66iUAOuolQDrqJYA66iXAOuomADrqJkA66iaAOuomwDrqJwA66idAOuongDrqJ8A66igAOuooQDrqKIA66ijAOuopADrqKUA66imAOuopwDrqKgA66ipAOuoqgDrqKsA66isAOuorQDrqK4A66ivAOuosADrqLEA66iyAOuoswDrqLQA66i1AOuotgDrqLcA66i4AOuouQDrqLoA66i7AOuovADrqL0A66i+AOuovwDrqYAA66mBAOupggDrqYMA66mEAOuphQDrqYYA66mHAOupiADrqYkA66mKAOupiwDrqYwA66mNAOupjgDrqY8A66mQAOupkQDrqZIA66mTAOuplADrqZUA66mWAOuplwDrqZgA66mZAOupmgDrqZsA66mcAOupnQDrqZ4A66mfAOupoADrqaEA66miAOupowDrqaQA66mlAOuppgDrqacA66moAOupqQDrqaoA66mrAOuprADrqa0A66muAOuprwDrqbAA66mxAOupsgDrqbMA66m0AOuptQDrqbYA66m3AOupuADrqbkA66m6AOupuwDrqbwA66m9AOupvgDrqb8A66qAAOuqgQDrqoIA66qDAOuqhADrqoUA66qGAOuqhwDrqogA66qJAOuqigDrqosA66qMAOuqjQDrqo4A66qPAOuqkADrqpEA66qSAOuqkwDrqpQA66qVAOuqlgDrqpcA66qYAOuqmQDrqpoA66qbAOuqnADrqp0A66qeAOuqnwDrqqAA66qhAOuqogDrqqMA66qkAOuqpQDrqqYA66qnAOuqqADrqqkA66qqAOuqqwDrqqwA66qtAOuqrgDrqq8A66qwAOuqsQDrqrIA66qzAOuqtADrqrUA66q2AOuqtwDrqrgA66q5AOuqugDrqrsA66q8AOuqvQDrqr4A66q/AOurgADrq4EA66uCAOurgwDrq4QA66uFAOurhgDrq4cA66uIAOuriQDrq4oA66uLAOurjADrq40A66uOAOurjwDrq5AA66uRAOurkgDrq5MA66uUAOurlQDrq5YA66uXAOurmADrq5kA66uaAOurmwDrq5wA66udAOurngDrq58A66ugAOuroQDrq6IA66ujAOurpADrq6UA66umAOurpwDrq6gA66upAOurqgDrq6sA66usAOurrQDrq64A66uvAOursADrq7EA66uyAOurswDrq7QA66u1AOurtgDrq7cA66u4AOuruQDrq7oA66u7AOurvADrq70A66u+AOurvwDrrIAA66yBAOusggDrrIMA66yEAOushQDrrIYA66yHAOusiADrrIkA66yKAOusiwDrrIwA66yNAOusjgDrrI8A66yQAOuskQDrrJIA66yTAOuslADrrJUA66yWAOuslwDrrJgA66yZAOusmgDrrJsA66ycAOusnQDrrJ4A66yfAOusoADrrKEA66yiAOusowDrrKQA66ylAOuspgDrrKcA66yoAOusqQDrrKoA66yrAOusrADrrK0A66yuAOusrwDrrLAA66yxAOussgDrrLMA66y0AOustQDrrLYA66y3AOusuADrrLkA66y6AOusuwDrrLwA66y9AOusvgDrrL8A662AAOutgQDrrYIA662DAOuthADrrYUA662GAOuthwDrrYgA662JAOutigDrrYsA662MAOutjQDrrY4A662PAOutkADrrZEA662SAOutkwDrrZQA662VAOutlgDrrZcA662YAOutmQDrrZoA662bAOutnADrrZ0A662eAOutnwDrraAA662hAOutogDrraMA662kAOutpQDrraYA662nAOutqADrrakA662qAOutqwDrrawA662tAOutrgDrra8A662wAOutsQDrrbIA662zAOuttADrrbUA6622AOuttwDrrbgA6625AOutugDrrbsA6628AOutvQDrrb4A662/AOuugADrroEA666CAOuugwDrroQA666FAOuuhgDrrocA666IAOuuiQDrrooA666LAOuujADrro0A666OAOuujwDrrpAA666RAOuukgDrrpMA666UAOuulQDrrpYA666XAOuumADrrpkA666aAOuumwDrrpwA666dAOuungDrrp8A666gAOuuoQDrrqIA666jAOuupADrrqUA666mAOuupwDrrqgA666pAOuuqgDrrqsA666sAOuurQDrrq4A666vAOuusADrrrEA666yAOuuswDrrrQA6661AOuutgDrrrcA6664AOuuuQDrrroA6667AOuuvADrrr0A666+AOuuvwDrr4AA66+BAOuvggDrr4MA66+EAOuvhQDrr4YA66+HAOuviADrr4kA66+KAOuviwDrr4wA66+NAOuvjgDrr48A66+QAOuvkQDrr5IA66+TAOuvlADrr5UA66+WAOuvlwDrr5gA66+ZAOuvmgDrr5sA66+cAOuvnQDrr54A66+fAOuvoADrr6EA66+iAOuvowDrr6QA66+lAOuvpgDrr6cA66+oAOuvqQDrr6oA66+rAOuvrADrr60A66+uAOuvrwDrr7AA66+xAOuvsgDrr7MA66+0AOuvtQDrr7YA66+3AOuvuADrr7kA66+6AOuvuwDrr7wA66+9AOuvvgDrr78A67CAAOuwgQDrsIIA67CDAOuwhADrsIUA67CGAOuwhwDrsIgA67CJAOuwigDrsIsA67CMAOuwjQDrsI4A67CPAOuwkADrsJEA67CSAOuwkwDrsJQA67CVAOuwlgDrsJcA67CYAOuwmQDrsJoA67CbAOuwnADrsJ0A67CeAOuwnwDrsKAA67ChAOuwogDrsKMA67CkAOuwpQDrsKYA67CnAOuwqADrsKkA67CqAOuwqwDrsKwA67CtAOuwrgDrsK8A67CwAOuwsQDrsLIA67CzAOuwtADrsLUA67C2AOuwtwDrsLgA67C5AOuwugDrsLsA67C8AOuwvQDrsL4A67C/AOuxgADrsYEA67GCAOuxgwDrsYQA67GFAOuxhgDrsYcA67GIAOuxiQDrsYoA67GLAOuxjADrsY0A67GOAOuxjwDrsZAA67GRAOuxkgDrsZMA67GUAOuxlQDrsZYA67GXAOuxmADrsZkA67GaAOuxmwDrsZwA67GdAOuxngDrsZ8A67GgAOuxoQDrsaIA67GjAOuxpADrsaUA67GmAOuxpwDrsagA67GpAOuxqgDrsasA67GsAOuxrQDrsa4A67GvAOuxsADrsbEA67GyAOuxswDrsbQA67G1AOuxtgDrsbcA67G4AOuxuQDrsboA67G7AOuxvADrsb0A67G+AOuxvwDrsoAA67KBAOuyggDrsoMA67KEAOuyhQDrsoYA67KHAOuyiADrsokA67KKAOuyiwDrsowA67KNAOuyjgDrso8A67KQAOuykQDrspIA67KTAOuylADrspUA67KWAOuylwDrspgA67KZAOuymgDrspsA67KcAOuynQDrsp4A67KfAOuyoADrsqEA67KiAOuyowDrsqQA67KlAOuypgDrsqcA67KoAOuyqQDrsqoA67KrAOuyrADrsq0A67KuAOuyrwDrsrAA67KxAOuysgDrsrMA67K0AOuytQDrsrYA67K3AOuyuADrsrkA67K6AOuyuwDrsrwA67K9AOuyvgDrsr8A67OAAOuzgQDrs4IA67ODAOuzhADrs4UA67OGAOuzhwDrs4gA67OJAOuzigDrs4sA67OMAOuzjQDrs44A67OPAOuzkADrs5EA67OSAOuzkwDrs5QA67OVAOuzlgDrs5cA67OYAOuzmQDrs5oA67ObAOuznADrs50A67OeAOuznwDrs6AA67OhAOuzogDrs6MA67OkAOuzpQDrs6YA67OnAOuzqADrs6kA67OqAOuzqwDrs6wA67OtAOuzrgDrs68A67OwAOuzsQDrs7IA67OzAOuztADrs7UA67O2AOuztwDrs7gA67O5AOuzugDrs7sA67O8AOuzvQDrs74A67O/AOu0gADrtIEA67SCAOu0gwDrtIQA67SFAOu0hgDrtIcA67SIAOu0iQDrtIoA67SLAOu0jADrtI0A67SOAOu0jwDrtJAA67SRAOu0kgDrtJMA67SUAOu0lQDrtJYA67SXAOu0mADrtJkA67SaAOu0mwDrtJwA67SdAOu0ngDrtJ8A67SgAOu0oQDrtKIA67SjAOu0pADrtKUA67SmAOu0pwDrtKgA67SpAOu0qgDrtKsA67SsAOu0rQDrtK4A67SvAOu0sADrtLEA67SyAOu0swDrtLQA67S1AOu0tgDrtLcA67S4AOu0uQDrtLoA67S7AOu0vADrtL0A67S+AOu0vwDrtYAA67WBAOu1ggDrtYMA67WEAOu1hQDrtYYA67WHAOu1iADrtYkA67WKAOu1iwDrtYwA67WNAOu1jgDrtY8A67WQAOu1kQDrtZIA67WTAOu1lADrtZUA67WWAOu1lwDrtZgA67WZAOu1mgDrtZsA67WcAOu1nQDrtZ4A67WfAOu1oADrtaEA67WiAOu1owDrtaQA67WlAOu1pgDrtacA67WoAOu1qQDrtaoA67WrAOu1rADrta0A67WuAOu1rwDrtbAA67WxAOu1sgDrtbMA67W0AOu1tQDrtbYA67W3AOu1uADrtbkA67W6AOu1uwDrtbwA67W9AOu1vgDrtb8A67aAAOu2gQDrtoIA67aDAOu2hADrtoUA67aGAOu2hwDrtogA67aJAOu2igDrtosA67aMAOu2jQDrto4A67aPAOu2kADrtpEA67aSAOu2kwDrtpQA67aVAOu2lgDrtpcA67aYAOu2mQDrtpoA67abAOu2nADrtp0A67aeAOu2nwDrtqAA67ahAOu2ogDrtqMA67akAOu2pQDrtqYA67anAOu2qADrtqkA67aqAOu2qwDrtqwA67atAOu2rgDrtq8A67awAOu2sQDrtrIA67azAOu2tADrtrUA67a2AOu2twDrtrgA67a5AOu2ugDrtrsA67a8AOu2vQDrtr4A67a/AOu3gADrt4EA67eCAOu3gwDrt4QA67eFAOu3hgDrt4cA67eIAOu3iQDrt4oA67eLAOu3jADrt40A67eOAOu3jwDrt5AA67eRAOu3kgDrt5MA67eUAOu3lQDrt5YA67eXAOu3mADrt5kA67eaAOu3mwDrt5wA67edAOu3ngDrt58A67egAOu3oQDrt6IA67ejAOu3pADrt6UA67emAOu3pwDrt6gA67epAOu3qgDrt6sA67esAOu3rQDrt64A67evAOu3sADrt7EA67eyAOu3swDrt7QA67e1AOu3tgDrt7cA67e4AOu3uQDrt7oA67e7AOu3vADrt70A67e+AOu3vwDruIAA67iBAOu4ggDruIMA67iEAOu4hQDruIYA67iHAOu4iADruIkA67iKAOu4iwDruIwA67iNAOu4jgDruI8A67iQAOu4kQDruJIA67iTAOu4lADruJUA67iWAOu4lwDruJgA67iZAOu4mgDruJsA67icAOu4nQDruJ4A67ifAOu4oADruKEA67iiAOu4owDruKQA67ilAOu4pgDruKcA67ioAOu4qQDruKoA67irAOu4rADruK0A67iuAOu4rwDruLAA67ixAOu4sgDruLMA67i0AOu4tQDruLYA67i3AOu4uADruLkA67i6AOu4uwDruLwA67i9AOu4vgDruL8A67mAAOu5gQDruYIA67mDAOu5hADruYUA67mGAOu5hwDruYgA67mJAOu5igDruYsA67mMAOu5jQDruY4A67mPAOu5kADruZEA67mSAOu5kwDruZQA67mVAOu5lgDruZcA67mYAOu5mQDruZoA67mbAOu5nADruZ0A67meAOu5nwDruaAA67mhAOu5ogDruaMA67mkAOu5pQDruaYA67mnAOu5qADruakA67mqAOu5qwDruawA67mtAOu5rgDrua8A67mwAOu5sQDrubIA67mzAOu5tADrubUA67m2AOu5twDrubgA67m5AOu5ugDrubsA67m8AOu5vQDrub4A67m/AOu6gADruoEA67qCAOu6gwDruoQA67qFAOu6hgDruocA67qIAOu6iQDruooA67qLAOu6jADruo0A67qOAOu6jwDrupAA67qRAOu6kgDrupMA67qUAOu6lQDrupYA67qXAOu6mADrupkA67qaAOu6mwDrupwA67qdAOu6ngDrup8A67qgAOu6oQDruqIA67qjAOu6pADruqUA67qmAOu6pwDruqgA67qpAOu6qgDruqsA67qsAOu6rQDruq4A67qvAOu6sADrurEA67qyAOu6swDrurQA67q1AOu6tgDrurcA67q4AOu6uQDruroA67q7AOu6vADrur0A67q+AOu6vwDru4AA67uBAOu7ggDru4MA67uEAOu7hQDru4YA67uHAOu7iADru4kA67uKAOu7iwDru4wA67uNAOu7jgDru48A67uQAOu7kQDru5IA67uTAOu7lADru5UA67uWAOu7lwDru5gA67uZAOu7mgDru5sA67ucAOu7nQDru54A67ufAOu7oADru6EA67uiAOu7owDru6QA67ulAOu7pgDru6cA67uoAOu7qQDru6oA67urAOu7rADru60A67uuAOu7rwDru7AA67uxAOu7sgDru7MA67u0AOu7tQDru7YA67u3AOu7uADru7kA67u6AOu7uwDru7wA67u9AOu7vgDru78A67yAAOu8gQDrvIIA67yDAOu8hADrvIUA67yGAOu8hwDrvIgA67yJAOu8igDrvIsA67yMAOu8jQDrvI4A67yPAOu8kADrvJEA67ySAOu8kwDrvJQA67yVAOu8lgDrvJcA67yYAOu8mQDrvJoA67ybAOu8nADrvJ0A67yeAOu8nwDrvKAA67yhAOu8ogDrvKMA67ykAOu8pQDrvKYA67ynAOu8qADrvKkA67yqAOu8qwDrvKwA67ytAOu8rgDrvK8A67ywAOu8sQDrvLIA67yzAOu8tADrvLUA67y2AOu8twDrvLgA67y5AOu8ugDrvLsA67y8AOu8vQDrvL4A67y/AOu9gADrvYEA672CAOu9gwDrvYQA672FAOu9hgDrvYcA672IAOu9iQDrvYoA672LAOu9jADrvY0A672OAOu9jwDrvZAA672RAOu9kgDrvZMA672UAOu9lQDrvZYA672XAOu9mADrvZkA672aAOu9mwDrvZwA672dAOu9ngDrvZ8A672gAOu9oQDrvaIA672jAOu9pADrvaUA672mAOu9pwDrvagA672pAOu9qgDrvasA672sAOu9rQDrva4A672vAOu9sADrvbEA672yAOu9swDrvbQA6721AOu9tgDrvbcA6724AOu9uQDrvboA6727AOu9vADrvb0A672+AOu9vwDrvoAA676BAOu+ggDrvoMA676EAOu+hQDrvoYA676HAOu+iADrvokA676KAOu+iwDrvowA676NAOu+jgDrvo8A676QAOu+kQDrvpIA676TAOu+lADrvpUA676WAOu+lwDrvpgA676ZAOu+mgDrvpsA676cAOu+nQDrvp4A676fAOu+oADrvqEA676iAOu+owDrvqQA676lAOu+pgDrvqcA676oAOu+qQDrvqoA676rAOu+rADrvq0A676uAOu+rwDrvrAA676xAOu+sgDrvrMA6760AOu+tQDrvrYA6763AOu+uADrvrkA6766AOu+uwDrvrwA6769AOu+vgDrvr8A67+AAOu/gQDrv4IA67+DAOu/hADrv4UA67+GAOu/hwDrv4gA67+JAOu/igDrv4sA67+MAOu/jQDrv44A67+PAOu/kADrv5EA67+SAOu/kwDrv5QA67+VAOu/lgDrv5cA67+YAOu/mQDrv5oA67+bAOu/nADrv50A67+eAOu/nwDrv6AA67+hAOu/ogDrv6MA67+kAOu/pQDrv6YA67+nAOu/qADrv6kA67+qAOu/qwDrv6wA67+tAOu/rgDrv68A67+wAOu/sQDrv7IA67+zAOu/tADrv7UA67+2AOu/twDrv7gA67+5AOu/ugDrv7sA67+8AOu/vQDrv74A67+/AOyAgADsgIEA7ICCAOyAgwDsgIQA7ICFAOyAhgDsgIcA7ICIAOyAiQDsgIoA7ICLAOyAjADsgI0A7ICOAOyAjwDsgJAA7ICRAOyAkgDsgJMA7ICUAOyAlQDsgJYA7ICXAOyAmADsgJkA7ICaAOyAmwDsgJwA7ICdAOyAngDsgJ8A7ICgAOyAoQDsgKIA7ICjAOyApADsgKUA7ICmAOyApwDsgKgA7ICpAOyAqgDsgKsA7ICsAOyArQDsgK4A7ICvAOyAsADsgLEA7ICyAOyAswDsgLQA7IC1AOyAtgDsgLcA7IC4AOyAuQDsgLoA7IC7AOyAvADsgL0A7IC+AOyAvwDsgYAA7IGBAOyBggDsgYMA7IGEAOyBhQDsgYYA7IGHAOyBiADsgYkA7IGKAOyBiwDsgYwA7IGNAOyBjgDsgY8A7IGQAOyBkQDsgZIA7IGTAOyBlADsgZUA7IGWAOyBlwDsgZgA7IGZAOyBmgDsgZsA7IGcAOyBnQDsgZ4A7IGfAOyBoADsgaEA7IGiAOyBowDsgaQA7IGlAOyBpgDsgacA7IGoAOyBqQDsgaoA7IGrAOyBrADsga0A7IGuAOyBrwDsgbAA7IGxAOyBsgDsgbMA7IG0AOyBtQDsgbYA7IG3AOyBuADsgbkA7IG6AOyBuwDsgbwA7IG9AOyBvgDsgb8A7IKAAOyCgQDsgoIA7IKDAOyChADsgoUA7IKGAOyChwDsgogA7IKJAOyCigDsgosA7IKMAOyCjQDsgo4A7IKPAOyCkADsgpEA7IKSAOyCkwDsgpQA7IKVAOyClgDsgpcA7IKYAOyCmQDsgpoA7IKbAOyCnADsgp0A7IKeAOyCnwDsgqAA7IKhAOyCogDsgqMA7IKkAOyCpQDsgqYA7IKnAOyCqADsgqkA7IKqAOyCqwDsgqwA7IKtAOyCrgDsgq8A7IKwAOyCsQDsgrIA7IKzAOyCtADsgrUA7IK2AOyCtwDsgrgA7IK5AOyCugDsgrsA7IK8AOyCvQDsgr4A7IK/AOyDgADsg4EA7IOCAOyDgwDsg4QA7IOFAOyDhgDsg4cA7IOIAOyDiQDsg4oA7IOLAOyDjADsg40A7IOOAOyDjwDsg5AA7IORAOyDkgDsg5MA7IOUAOyDlQDsg5YA7IOXAOyDmADsg5kA7IOaAOyDmwDsg5wA7IOdAOyDngDsg58A7IOgAOyDoQDsg6IA7IOjAOyDpADsg6UA7IOmAOyDpwDsg6gA7IOpAOyDqgDsg6sA7IOsAOyDrQDsg64A7IOvAOyDsADsg7EA7IOyAOyDswDsg7QA7IO1AOyDtgDsg7cA7IO4AOyDuQDsg7oA7IO7AOyDvADsg70A7IO+AOyDvwDshIAA7ISBAOyEggDshIMA7ISEAOyEhQDshIYA7ISHAOyEiADshIkA7ISKAOyEiwDshIwA7ISNAOyEjgDshI8A7ISQAOyEkQDshJIA7ISTAOyElADshJUA7ISWAOyElwDshJgA7ISZAOyEmgDshJsA7IScAOyEnQDshJ4A7ISfAOyEoADshKEA7ISiAOyEowDshKQA7ISlAOyEpgDshKcA7ISoAOyEqQDshKoA7ISrAOyErADshK0A7ISuAOyErwDshLAA7ISxAOyEsgDshLMA7IS0AOyEtQDshLYA7IS3AOyEuADshLkA7IS6AOyEuwDshLwA7IS9AOyEvgDshL8A7IWAAOyFgQDshYIA7IWDAOyFhADshYUA7IWGAOyFhwDshYgA7IWJAOyFigDshYsA7IWMAOyFjQDshY4A7IWPAOyFkADshZEA7IWSAOyFkwDshZQA7IWVAOyFlgDshZcA7IWYAOyFmQDshZoA7IWbAOyFnADshZ0A7IWeAOyFnwDshaAA7IWhAOyFogDshaMA7IWkAOyFpQDshaYA7IWnAOyFqADshakA7IWqAOyFqwDshawA7IWtAOyFrgDsha8A7IWwAOyFsQDshbIA7IWzAOyFtADshbUA7IW2AOyFtwDshbgA7IW5AOyFugDshbsA7IW8AOyFvQDshb4A7IW/AOyGgADshoEA7IaCAOyGgwDshoQA7IaFAOyGhgDshocA7IaIAOyGiQDshooA7IaLAOyGjADsho0A7IaOAOyGjwDshpAA7IaRAOyGkgDshpMA7IaUAOyGlQDshpYA7IaXAOyGmADshpkA7IaaAOyGmwDshpwA7IadAOyGngDshp8A7IagAOyGoQDshqIA7IajAOyGpADshqUA7IamAOyGpwDshqgA7IapAOyGqgDshqsA7IasAOyGrQDshq4A7IavAOyGsADshrEA7IayAOyGswDshrQA7Ia1AOyGtgDshrcA7Ia4AOyGuQDshroA7Ia7AOyGvADshr0A7Ia+AOyGvwDsh4AA7IeBAOyHggDsh4MA7IeEAOyHhQDsh4YA7IeHAOyHiADsh4kA7IeKAOyHiwDsh4wA7IeNAOyHjgDsh48A7IeQAOyHkQDsh5IA7IeTAOyHlADsh5UA7IeWAOyHlwDsh5gA7IeZAOyHmgDsh5sA7IecAOyHnQDsh54A7IefAOyHoADsh6EA7IeiAOyHowDsh6QA7IelAOyHpgDsh6cA7IeoAOyHqQDsh6oA7IerAOyHrADsh60A7IeuAOyHrwDsh7AA7IexAOyHsgDsh7MA7Ie0AOyHtQDsh7YA7Ie3AOyHuADsh7kA7Ie6AOyHuwDsh7wA7Ie9AOyHvgDsh78A7IiAAOyIgQDsiIIA7IiDAOyIhADsiIUA7IiGAOyIhwDsiIgA7IiJAOyIigDsiIsA7IiMAOyIjQDsiI4A7IiPAOyIkADsiJEA7IiSAOyIkwDsiJQA7IiVAOyIlgDsiJcA7IiYAOyImQDsiJoA7IibAOyInADsiJ0A7IieAOyInwDsiKAA7IihAOyIogDsiKMA7IikAOyIpQDsiKYA7IinAOyIqADsiKkA7IiqAOyIqwDsiKwA7IitAOyIrgDsiK8A7IiwAOyIsQDsiLIA7IizAOyItADsiLUA7Ii2AOyItwDsiLgA7Ii5AOyIugDsiLsA7Ii8AOyIvQDsiL4A7Ii/AOyJgADsiYEA7ImCAOyJgwDsiYQA7ImFAOyJhgDsiYcA7ImIAOyJiQDsiYoA7ImLAOyJjADsiY0A7ImOAOyJjwDsiZAA7ImRAOyJkgDsiZMA7ImUAOyJlQDsiZYA7ImXAOyJmADsiZkA7ImaAOyJmwDsiZwA7ImdAOyJngDsiZ8A7ImgAOyJoQDsiaIA7ImjAOyJpADsiaUA7ImmAOyJpwDsiagA7ImpAOyJqgDsiasA7ImsAOyJrQDsia4A7ImvAOyJsADsibEA7ImyAOyJswDsibQA7Im1AOyJtgDsibcA7Im4AOyJuQDsiboA7Im7AOyJvADsib0A7Im+AOyJvwDsioAA7IqBAOyKggDsioMA7IqEAOyKhQDsioYA7IqHAOyKiADsiokA7IqKAOyKiwDsiowA7IqNAOyKjgDsio8A7IqQAOyKkQDsipIA7IqTAOyKlADsipUA7IqWAOyKlwDsipgA7IqZAOyKmgDsipsA7IqcAOyKnQDsip4A7IqfAOyKoADsiqEA7IqiAOyKowDsiqQA7IqlAOyKpgDsiqcA7IqoAOyKqQDsiqoA7IqrAOyKrADsiq0A7IquAOyKrwDsirAA7IqxAOyKsgDsirMA7Iq0AOyKtQDsirYA7Iq3AOyKuADsirkA7Iq6AOyKuwDsirwA7Iq9AOyKvgDsir8A7IuAAOyLgQDsi4IA7IuDAOyLhADsi4UA7IuGAOyLhwDsi4gA7IuJAOyLigDsi4sA7IuMAOyLjQDsi44A7IuPAOyLkADsi5EA7IuSAOyLkwDsi5QA7IuVAOyLlgDsi5cA7IuYAOyLmQDsi5oA7IubAOyLnADsi50A7IueAOyLnwDsi6AA7IuhAOyLogDsi6MA7IukAOyLpQDsi6YA7IunAOyLqADsi6kA7IuqAOyLqwDsi6wA7IutAOyLrgDsi68A7IuwAOyLsQDsi7IA7IuzAOyLtADsi7UA7Iu2AOyLtwDsi7gA7Iu5AOyLugDsi7sA7Iu8AOyLvQDsi74A7Iu/AOyMgADsjIEA7IyCAOyMgwDsjIQA7IyFAOyMhgDsjIcA7IyIAOyMiQDsjIoA7IyLAOyMjADsjI0A7IyOAOyMjwDsjJAA7IyRAOyMkgDsjJMA7IyUAOyMlQDsjJYA7IyXAOyMmADsjJkA7IyaAOyMmwDsjJwA7IydAOyMngDsjJ8A7IygAOyMoQDsjKIA7IyjAOyMpADsjKUA7IymAOyMpwDsjKgA7IypAOyMqgDsjKsA7IysAOyMrQDsjK4A7IyvAOyMsADsjLEA7IyyAOyMswDsjLQA7Iy1AOyMtgDsjLcA7Iy4AOyMuQDsjLoA7Iy7AOyMvADsjL0A7Iy+AOyMvwDsjYAA7I2BAOyNggDsjYMA7I2EAOyNhQDsjYYA7I2HAOyNiADsjYkA7I2KAOyNiwDsjYwA7I2NAOyNjgDsjY8A7I2QAOyNkQDsjZIA7I2TAOyNlADsjZUA7I2WAOyNlwDsjZgA7I2ZAOyNmgDsjZsA7I2cAOyNnQDsjZ4A7I2fAOyNoADsjaEA7I2iAOyNowDsjaQA7I2lAOyNpgDsjacA7I2oAOyNqQDsjaoA7I2rAOyNrADsja0A7I2uAOyNrwDsjbAA7I2xAOyNsgDsjbMA7I20AOyNtQDsjbYA7I23AOyNuADsjbkA7I26AOyNuwDsjbwA7I29AOyNvgDsjb8A7I6AAOyOgQDsjoIA7I6DAOyOhADsjoUA7I6GAOyOhwDsjogA7I6JAOyOigDsjosA7I6MAOyOjQDsjo4A7I6PAOyOkADsjpEA7I6SAOyOkwDsjpQA7I6VAOyOlgDsjpcA7I6YAOyOmQDsjpoA7I6bAOyOnADsjp0A7I6eAOyOnwDsjqAA7I6hAOyOogDsjqMA7I6kAOyOpQDsjqYA7I6nAOyOqADsjqkA7I6qAOyOqwDsjqwA7I6tAOyOrgDsjq8A7I6wAOyOsQDsjrIA7I6zAOyOtADsjrUA7I62AOyOtwDsjrgA7I65AOyOugDsjrsA7I68AOyOvQDsjr4A7I6/AOyPgADsj4EA7I+CAOyPgwDsj4QA7I+FAOyPhgDsj4cA7I+IAOyPiQDsj4oA7I+LAOyPjADsj40A7I+OAOyPjwDsj5AA7I+RAOyPkgDsj5MA7I+UAOyPlQDsj5YA7I+XAOyPmADsj5kA7I+aAOyPmwDsj5wA7I+dAOyPngDsj58A7I+gAOyPoQDsj6IA7I+jAOyPpADsj6UA7I+mAOyPpwDsj6gA7I+pAOyPqgDsj6sA7I+sAOyPrQDsj64A7I+vAOyPsADsj7EA7I+yAOyPswDsj7QA7I+1AOyPtgDsj7cA7I+4AOyPuQDsj7oA7I+7AOyPvADsj70A7I++AOyPvwDskIAA7JCBAOyQggDskIMA7JCEAOyQhQDskIYA7JCHAOyQiADskIkA7JCKAOyQiwDskIwA7JCNAOyQjgDskI8A7JCQAOyQkQDskJIA7JCTAOyQlADskJUA7JCWAOyQlwDskJgA7JCZAOyQmgDskJsA7JCcAOyQnQDskJ4A7JCfAOyQoADskKEA7JCiAOyQowDskKQA7JClAOyQpgDskKcA7JCoAOyQqQDskKoA7JCrAOyQrADskK0A7JCuAOyQrwDskLAA7JCxAOyQsgDskLMA7JC0AOyQtQDskLYA7JC3AOyQuADskLkA7JC6AOyQuwDskLwA7JC9AOyQvgDskL8A7JGAAOyRgQDskYIA7JGDAOyRhADskYUA7JGGAOyRhwDskYgA7JGJAOyRigDskYsA7JGMAOyRjQDskY4A7JGPAOyRkADskZEA7JGSAOyRkwDskZQA7JGVAOyRlgDskZcA7JGYAOyRmQDskZoA7JGbAOyRnADskZ0A7JGeAOyRnwDskaAA7JGhAOyRogDskaMA7JGkAOyRpQDskaYA7JGnAOyRqADskakA7JGqAOyRqwDskawA7JGtAOyRrgDska8A7JGwAOyRsQDskbIA7JGzAOyRtADskbUA7JG2AOyRtwDskbgA7JG5AOyRugDskbsA7JG8AOyRvQDskb4A7JG/AOySgADskoEA7JKCAOySgwDskoQA7JKFAOyShgDskocA7JKIAOySiQDskooA7JKLAOySjADsko0A7JKOAOySjwDskpAA7JKRAOySkgDskpMA7JKUAOySlQDskpYA7JKXAOySmADskpkA7JKaAOySmwDskpwA7JKdAOySngDskp8A7JKgAOySoQDskqIA7JKjAOySpADskqUA7JKmAOySpwDskqgA7JKpAOySqgDskqsA7JKsAOySrQDskq4A7JKvAOySsADskrEA7JKyAOySswDskrQA7JK1AOyStgDskrcA7JK4AOySuQDskroA7JK7AOySvADskr0A7JK+AOySvwDsk4AA7JOBAOyTggDsk4MA7JOEAOyThQDsk4YA7JOHAOyTiADsk4kA7JOKAOyTiwDsk4wA7JONAOyTjgDsk48A7JOQAOyTkQDsk5IA7JOTAOyTlADsk5UA7JOWAOyTlwDsk5gA7JOZAOyTmgDsk5sA7JOcAOyTnQDsk54A7JOfAOyToADsk6EA7JOiAOyTowDsk6QA7JOlAOyTpgDsk6cA7JOoAOyTqQDsk6oA7JOrAOyTrADsk60A7JOuAOyTrwDsk7AA7JOxAOyTsgDsk7MA7JO0AOyTtQDsk7YA7JO3AOyTuADsk7kA7JO6AOyTuwDsk7wA7JO9AOyTvgDsk78A7JSAAOyUgQDslIIA7JSDAOyUhADslIUA7JSGAOyUhwDslIgA7JSJAOyUigDslIsA7JSMAOyUjQDslI4A7JSPAOyUkADslJEA7JSSAOyUkwDslJQA7JSVAOyUlgDslJcA7JSYAOyUmQDslJoA7JSbAOyUnADslJ0A7JSeAOyUnwDslKAA7JShAOyUogDslKMA7JSkAOyUpQDslKYA7JSnAOyUqADslKkA7JSqAOyUqwDslKwA7JStAOyUrgDslK8A7JSwAOyUsQDslLIA7JSzAOyUtADslLUA7JS2AOyUtwDslLgA7JS5AOyUugDslLsA7JS8AOyUvQDslL4A7JS/AOyVgADslYEA7JWCAOyVgwDslYQA7JWFAOyVhgDslYcA7JWIAOyViQDslYoA7JWLAOyVjADslY0A7JWOAOyVjwDslZAA7JWRAOyVkgDslZMA7JWUAOyVlQDslZYA7JWXAOyVmADslZkA7JWaAOyVmwDslZwA7JWdAOyVngDslZ8A7JWgAOyVoQDslaIA7JWjAOyVpADslaUA7JWmAOyVpwDslagA7JWpAOyVqgDslasA7JWsAOyVrQDsla4A7JWvAOyVsADslbEA7JWyAOyVswDslbQA7JW1AOyVtgDslbcA7JW4AOyVuQDslboA7JW7AOyVvADslb0A7JW+AOyVvwDsloAA7JaBAOyWggDsloMA7JaEAOyWhQDsloYA7JaHAOyWiADslokA7JaKAOyWiwDslowA7JaNAOyWjgDslo8A7JaQAOyWkQDslpIA7JaTAOyWlADslpUA7JaWAOyWlwDslpgA7JaZAOyWmgDslpsA7JacAOyWnQDslp4A7JafAOyWoADslqEA7JaiAOyWowDslqQA7JalAOyWpgDslqcA7JaoAOyWqQDslqoA7JarAOyWrADslq0A7JauAOyWrwDslrAA7JaxAOyWsgDslrMA7Ja0AOyWtQDslrYA7Ja3AOyWuADslrkA7Ja6AOyWuwDslrwA7Ja9AOyWvgDslr8A7JeAAOyXgQDsl4IA7JeDAOyXhADsl4UA7JeGAOyXhwDsl4gA7JeJAOyXigDsl4sA7JeMAOyXjQDsl44A7JePAOyXkADsl5EA7JeSAOyXkwDsl5QA7JeVAOyXlgDsl5cA7JeYAOyXmQDsl5oA7JebAOyXnADsl50A7JeeAOyXnwDsl6AA7JehAOyXogDsl6MA7JekAOyXpQDsl6YA7JenAOyXqADsl6kA7JeqAOyXqwDsl6wA7JetAOyXrgDsl68A7JewAOyXsQDsl7IA7JezAOyXtADsl7UA7Je2AOyXtwDsl7gA7Je5AOyXugDsl7sA7Je8AOyXvQDsl74A7Je/AOyYgADsmIEA7JiCAOyYgwDsmIQA7JiFAOyYhgDsmIcA7JiIAOyYiQDsmIoA7JiLAOyYjADsmI0A7JiOAOyYjwDsmJAA7JiRAOyYkgDsmJMA7JiUAOyYlQDsmJYA7JiXAOyYmADsmJkA7JiaAOyYmwDsmJwA7JidAOyYngDsmJ8A7JigAOyYoQDsmKIA7JijAOyYpADsmKUA7JimAOyYpwDsmKgA7JipAOyYqgDsmKsA7JisAOyYrQDsmK4A7JivAOyYsADsmLEA7JiyAOyYswDsmLQA7Ji1AOyYtgDsmLcA7Ji4AOyYuQDsmLoA7Ji7AOyYvADsmL0A7Ji+AOyYvwDsmYAA7JmBAOyZggDsmYMA7JmEAOyZhQDsmYYA7JmHAOyZiADsmYkA7JmKAOyZiwDsmYwA7JmNAOyZjgDsmY8A7JmQAOyZkQDsmZIA7JmTAOyZlADsmZUA7JmWAOyZlwDsmZgA7JmZAOyZmgDsmZsA7JmcAOyZnQDsmZ4A7JmfAOyZoADsmaEA7JmiAOyZowDsmaQA7JmlAOyZpgDsmacA7JmoAOyZqQDsmaoA7JmrAOyZrADsma0A7JmuAOyZrwDsmbAA7JmxAOyZsgDsmbMA7Jm0AOyZtQDsmbYA7Jm3AOyZuADsmbkA7Jm6AOyZuwDsmbwA7Jm9AOyZvgDsmb8A7JqAAOyagQDsmoIA7JqDAOyahADsmoUA7JqGAOyahwDsmogA7JqJAOyaigDsmosA7JqMAOyajQDsmo4A7JqPAOyakADsmpEA7JqSAOyakwDsmpQA7JqVAOyalgDsmpcA7JqYAOyamQDsmpoA7JqbAOyanADsmp0A7JqeAOyanwDsmqAA7JqhAOyaogDsmqMA7JqkAOyapQDsmqYA7JqnAOyaqADsmqkA7JqqAOyaqwDsmqwA7JqtAOyargDsmq8A7JqwAOyasQDsmrIA7JqzAOyatADsmrUA7Jq2AOyatwDsmrgA7Jq5AOyaugDsmrsA7Jq8AOyavQDsmr4A7Jq/AOybgADsm4EA7JuCAOybgwDsm4QA7JuFAOybhgDsm4cA7JuIAOybiQDsm4oA7JuLAOybjADsm40A7JuOAOybjwDsm5AA7JuRAOybkgDsm5MA7JuUAOyblQDsm5YA7JuXAOybmADsm5kA7JuaAOybmwDsm5wA7JudAOybngDsm58A7JugAOyboQDsm6IA7JujAOybpADsm6UA7JumAOybpwDsm6gA7JupAOybqgDsm6sA7JusAOybrQDsm64A7JuvAOybsADsm7EA7JuyAOybswDsm7QA7Ju1AOybtgDsm7cA7Ju4AOybuQDsm7oA7Ju7AOybvADsm70A7Ju+AOybvwDsnIAA7JyBAOycggDsnIMA7JyEAOychQDsnIYA7JyHAOyciADsnIkA7JyKAOyciwDsnIwA7JyNAOycjgDsnI8A7JyQAOyckQDsnJIA7JyTAOyclADsnJUA7JyWAOyclwDsnJgA7JyZAOycmgDsnJsA7JycAOycnQDsnJ4A7JyfAOycoADsnKEA7JyiAOycowDsnKQA7JylAOycpgDsnKcA7JyoAOycqQDsnKoA7JyrAOycrADsnK0A7JyuAOycrwDsnLAA7JyxAOycsgDsnLMA7Jy0AOyctQDsnLYA7Jy3AOycuADsnLkA7Jy6AOycuwDsnLwA7Jy9AOycvgDsnL8A7J2AAOydgQDsnYIA7J2DAOydhADsnYUA7J2GAOydhwDsnYgA7J2JAOydigDsnYsA7J2MAOydjQDsnY4A7J2PAOydkADsnZEA7J2SAOydkwDsnZQA7J2VAOydlgDsnZcA7J2YAOydmQDsnZoA7J2bAOydnADsnZ0A7J2eAOydnwDsnaAA7J2hAOydogDsnaMA7J2kAOydpQDsnaYA7J2nAOydqADsnakA7J2qAOydqwDsnawA7J2tAOydrgDsna8A7J2wAOydsQDsnbIA7J2zAOydtADsnbUA7J22AOydtwDsnbgA7J25AOydugDsnbsA7J28AOydvQDsnb4A7J2/AOyegADsnoEA7J6CAOyegwDsnoQA7J6FAOyehgDsnocA7J6IAOyeiQDsnooA7J6LAOyejADsno0A7J6OAOyejwDsnpAA7J6RAOyekgDsnpMA7J6UAOyelQDsnpYA7J6XAOyemADsnpkA7J6aAOyemwDsnpwA7J6dAOyengDsnp8A7J6gAOyeoQDsnqIA7J6jAOyepADsnqUA7J6mAOyepwDsnqgA7J6pAOyeqgDsnqsA7J6sAOyerQDsnq4A7J6vAOyesADsnrEA7J6yAOyeswDsnrQA7J61AOyetgDsnrcA7J64AOyeuQDsnroA7J67AOyevADsnr0A7J6+AOyevwDsn4AA7J+BAOyfggDsn4MA7J+EAOyfhQDsn4YA7J+HAOyfiADsn4kA7J+KAOyfiwDsn4wA7J+NAOyfjgDsn48A7J+QAOyfkQDsn5IA7J+TAOyflADsn5UA7J+WAOyflwDsn5gA7J+ZAOyfmgDsn5sA7J+cAOyfnQDsn54A7J+fAOyfoADsn6EA7J+iAOyfowDsn6QA7J+lAOyfpgDsn6cA7J+oAOyfqQDsn6oA7J+rAOyfrADsn60A7J+uAOyfrwDsn7AA7J+xAOyfsgDsn7MA7J+0AOyftQDsn7YA7J+3AOyfuADsn7kA7J+6AOyfuwDsn7wA7J+9AOyfvgDsn78A7KCAAOyggQDsoIIA7KCDAOyghADsoIUA7KCGAOyghwDsoIgA7KCJAOygigDsoIsA7KCMAOygjQDsoI4A7KCPAOygkADsoJEA7KCSAOygkwDsoJQA7KCVAOyglgDsoJcA7KCYAOygmQDsoJoA7KCbAOygnADsoJ0A7KCeAOygnwDsoKAA7KChAOygogDsoKMA7KCkAOygpQDsoKYA7KCnAOygqADsoKkA7KCqAOygqwDsoKwA7KCtAOygrgDsoK8A7KCwAOygsQDsoLIA7KCzAOygtADsoLUA7KC2AOygtwDsoLgA7KC5AOygugDsoLsA7KC8AOygvQDsoL4A7KC/AOyhgADsoYEA7KGCAOyhgwDsoYQA7KGFAOyhhgDsoYcA7KGIAOyhiQDsoYoA7KGLAOyhjADsoY0A7KGOAOyhjwDsoZAA7KGRAOyhkgDsoZMA7KGUAOyhlQDsoZYA7KGXAOyhmADsoZkA7KGaAOyhmwDsoZwA7KGdAOyhngDsoZ8A7KGgAOyhoQDsoaIA7KGjAOyhpADsoaUA7KGmAOyhpwDsoagA7KGpAOyhqgDsoasA7KGsAOyhrQDsoa4A7KGvAOyhsADsobEA7KGyAOyhswDsobQA7KG1AOyhtgDsobcA7KG4AOyhuQDsoboA7KG7AOyhvADsob0A7KG+AOyhvwDsooAA7KKBAOyiggDsooMA7KKEAOyihQDsooYA7KKHAOyiiADsookA7KKKAOyiiwDsoowA7KKNAOyijgDsoo8A7KKQAOyikQDsopIA7KKTAOyilADsopUA7KKWAOyilwDsopgA7KKZAOyimgDsopsA7KKcAOyinQDsop4A7KKfAOyioADsoqEA7KKiAOyiowDsoqQA7KKlAOyipgDsoqcA7KKoAOyiqQDsoqoA7KKrAOyirADsoq0A7KKuAOyirwDsorAA7KKxAOyisgDsorMA7KK0AOyitQDsorYA7KK3AOyiuADsorkA7KK6AOyiuwDsorwA7KK9AOyivgDsor8A7KOAAOyjgQDso4IA7KODAOyjhADso4UA7KOGAOyjhwDso4gA7KOJAOyjigDso4sA7KOMAOyjjQDso44A7KOPAOyjkADso5EA7KOSAOyjkwDso5QA7KOVAOyjlgDso5cA7KOYAOyjmQDso5oA7KObAOyjnADso50A7KOeAOyjnwDso6AA7KOhAOyjogDso6MA7KOkAOyjpQDso6YA7KOnAOyjqADso6kA7KOqAOyjqwDso6wA7KOtAOyjrgDso68A7KOwAOyjsQDso7IA7KOzAOyjtADso7UA7KO2AOyjtwDso7gA7KO5AOyjugDso7sA7KO8AOyjvOydmADso70A7KO+AOyjvwDspIAA7KSBAOykggDspIMA7KSEAOykhQDspIYA7KSHAOykiADspIkA7KSKAOykiwDspIwA7KSNAOykjgDspI8A7KSQAOykkQDspJIA7KSTAOyklADspJUA7KSWAOyklwDspJgA7KSZAOykmgDspJsA7KScAOyknQDspJ4A7KSfAOykoADspKEA7KSiAOykowDspKQA7KSlAOykpgDspKcA7KSoAOykqQDspKoA7KSrAOykrADspK0A7KSuAOykrwDspLAA7KSxAOyksgDspLMA7KS0AOyktQDspLYA7KS3AOykuADspLkA7KS6AOykuwDspLwA7KS9AOykvgDspL8A7KWAAOylgQDspYIA7KWDAOylhADspYUA7KWGAOylhwDspYgA7KWJAOyligDspYsA7KWMAOyljQDspY4A7KWPAOylkADspZEA7KWSAOylkwDspZQA7KWVAOyllgDspZcA7KWYAOylmQDspZoA7KWbAOylnADspZ0A7KWeAOylnwDspaAA7KWhAOylogDspaMA7KWkAOylpQDspaYA7KWnAOylqADspakA7KWqAOylqwDspawA7KWtAOylrgDspa8A7KWwAOylsQDspbIA7KWzAOyltADspbUA7KW2AOyltwDspbgA7KW5AOylugDspbsA7KW8AOylvQDspb4A7KW/AOymgADspoEA7KaCAOymgwDspoQA7KaFAOymhgDspocA7KaIAOymiQDspooA7KaLAOymjADspo0A7KaOAOymjwDsppAA7KaRAOymkgDsppMA7KaUAOymlQDsppYA7KaXAOymmADsppkA7KaaAOymmwDsppwA7KadAOymngDspp8A7KagAOymoQDspqIA7KajAOympADspqUA7KamAOympwDspqgA7KapAOymqgDspqsA7KasAOymrQDspq4A7KavAOymsADsprEA7KayAOymswDsprQA7Ka1AOymtgDsprcA7Ka4AOymuQDsproA7Ka7AOymvADspr0A7Ka+AOymvwDsp4AA7KeBAOynggDsp4MA7KeEAOynhQDsp4YA7KeHAOyniADsp4kA7KeKAOyniwDsp4wA7KeNAOynjgDsp48A7KeQAOynkQDsp5IA7KeTAOynlADsp5UA7KeWAOynlwDsp5gA7KeZAOynmgDsp5sA7KecAOynnQDsp54A7KefAOynoADsp6EA7KeiAOynowDsp6QA7KelAOynpgDsp6cA7KeoAOynqQDsp6oA7KerAOynrADsp60A7KeuAOynrwDsp7AA7KexAOynsgDsp7MA7Ke0AOyntQDsp7YA7Ke3AOynuADsp7kA7Ke6AOynuwDsp7wA7Ke9AOynvgDsp78A7KiAAOyogQDsqIIA7KiDAOyohADsqIUA7KiGAOyohwDsqIgA7KiJAOyoigDsqIsA7KiMAOyojQDsqI4A7KiPAOyokADsqJEA7KiSAOyokwDsqJQA7KiVAOyolgDsqJcA7KiYAOyomQDsqJoA7KibAOyonADsqJ0A7KieAOyonwDsqKAA7KihAOyoogDsqKMA7KikAOyopQDsqKYA7KinAOyoqADsqKkA7KiqAOyoqwDsqKwA7KitAOyorgDsqK8A7KiwAOyosQDsqLIA7KizAOyotADsqLUA7Ki2AOyotwDsqLgA7Ki5AOyougDsqLsA7Ki8AOyovQDsqL4A7Ki/AOypgADsqYEA7KmCAOypgwDsqYQA7KmFAOyphgDsqYcA7KmIAOypiQDsqYoA7KmLAOypjADsqY0A7KmOAOypjwDsqZAA7KmRAOypkgDsqZMA7KmUAOyplQDsqZYA7KmXAOypmADsqZkA7KmaAOypmwDsqZwA7KmdAOypngDsqZ8A7KmgAOypoQDsqaIA7KmjAOyppADsqaUA7KmmAOyppwDsqagA7KmpAOypqgDsqasA7KmsAOyprQDsqa4A7KmvAOypsADsqbEA7KmyAOypswDsqbQA7Km1AOyptgDsqbcA7Km4AOypuQDsqboA7Km7AOypvADsqb0A7Km+AOypvwDsqoAA7KqBAOyqggDsqoMA7KqEAOyqhQDsqoYA7KqHAOyqiADsqokA7KqKAOyqiwDsqowA7KqNAOyqjgDsqo8A7KqQAOyqkQDsqpIA7KqTAOyqlADsqpUA7KqWAOyqlwDsqpgA7KqZAOyqmgDsqpsA7KqcAOyqnQDsqp4A7KqfAOyqoADsqqEA7KqiAOyqowDsqqQA7KqlAOyqpgDsqqcA7KqoAOyqqQDsqqoA7KqrAOyqrADsqq0A7KquAOyqrwDsqrAA7KqxAOyqsgDsqrMA7Kq0AOyqtQDsqrYA7Kq3AOyquADsqrkA7Kq6AOyquwDsqrwA7Kq9AOyqvgDsqr8A7KuAAOyrgQDsq4IA7KuDAOyrhADsq4UA7KuGAOyrhwDsq4gA7KuJAOyrigDsq4sA7KuMAOyrjQDsq44A7KuPAOyrkADsq5EA7KuSAOyrkwDsq5QA7KuVAOyrlgDsq5cA7KuYAOyrmQDsq5oA7KubAOyrnADsq50A7KueAOyrnwDsq6AA7KuhAOyrogDsq6MA7KukAOyrpQDsq6YA7KunAOyrqADsq6kA7KuqAOyrqwDsq6wA7KutAOyrrgDsq68A7KuwAOyrsQDsq7IA7KuzAOyrtADsq7UA7Ku2AOyrtwDsq7gA7Ku5AOyrugDsq7sA7Ku8AOyrvQDsq74A7Ku/AOysgADsrIEA7KyCAOysgwDsrIQA7KyFAOyshgDsrIcA7KyIAOysiQDsrIoA7KyLAOysjADsrI0A7KyOAOysjwDsrJAA7KyRAOyskgDsrJMA7KyUAOyslQDsrJYA7KyXAOysmADsrJkA7KyaAOysmwDsrJwA7KydAOysngDsrJ8A7KygAOysoQDsrKIA7KyjAOyspADsrKUA7KymAOyspwDsrKgA7KypAOysqgDsrKsA7KysAOysrQDsrK4A7KyvAOyssADsrLEA7KyyAOysswDsrLQA7Ky1AOystgDsrLcA7Ky4AOysuQDsrLoA7Ky7AOysvADsrL0A7Ky+AOysvwDsrYAA7K2BAOytggDsrYMA7K2EAOythQDsrYYA7K2HAOytiADsrYkA7K2KAOytiwDsrYwA7K2NAOytjgDsrY8A7K2QAOytkQDsrZIA7K2TAOytlADsrZUA7K2WAOytlwDsrZgA7K2ZAOytmgDsrZsA7K2cAOytnQDsrZ4A7K2fAOytoADsraEA7K2iAOytowDsraQA7K2lAOytpgDsracA7K2oAOytqQDsraoA7K2rAOytrADsra0A7K2uAOytrwDsrbAA7K2xAOytsgDsrbMA7K20AOyttQDsrbYA7K23AOytuADsrbkA7K26AOytuwDsrbwA7K29AOytvgDsrb8A7K6AAOyugQDsroIA7K6DAOyuhADsroUA7K6GAOyuhwDsrogA7K6JAOyuigDsrosA7K6MAOyujQDsro4A7K6PAOyukADsrpEA7K6SAOyukwDsrpQA7K6VAOyulgDsrpcA7K6YAOyumQDsrpoA7K6bAOyunADsrp0A7K6eAOyunwDsrqAA7K6hAOyuogDsrqMA7K6kAOyupQDsrqYA7K6nAOyuqADsrqkA7K6qAOyuqwDsrqwA7K6tAOyurgDsrq8A7K6wAOyusQDsrrIA7K6zAOyutADsrrUA7K62AOyutwDsrrgA7K65AOyuugDsrrsA7K68AOyuvQDsrr4A7K6/AOyvgADsr4EA7K+CAOyvgwDsr4QA7K+FAOyvhgDsr4cA7K+IAOyviQDsr4oA7K+LAOyvjADsr40A7K+OAOyvjwDsr5AA7K+RAOyvkgDsr5MA7K+UAOyvlQDsr5YA7K+XAOyvmADsr5kA7K+aAOyvmwDsr5wA7K+dAOyvngDsr58A7K+gAOyvoQDsr6IA7K+jAOyvpADsr6UA7K+mAOyvpwDsr6gA7K+pAOyvqgDsr6sA7K+sAOyvrQDsr64A7K+vAOyvsADsr7EA7K+yAOyvswDsr7QA7K+1AOyvtgDsr7cA7K+4AOyvuQDsr7oA7K+7AOyvvADsr70A7K++AOyvvwDssIAA7LCBAOywggDssIMA7LCEAOywhQDssIYA7LCHAOywiADssIkA7LCKAOywiwDssIwA7LCNAOywjgDssI8A7LCQAOywkQDssJIA7LCTAOywlADssJUA7LCWAOywlwDssJgA7LCZAOywmgDssJsA7LCcAOywnQDssJ4A7LCfAOywoADssKEA7LCiAOywowDssKQA7LClAOywpgDssKcA7LCoAOywqQDssKoA7LCrAOywrADssK0A7LCuAOywrwDssLAA7LCxAOywsgDssLMA7LC0AOywtQDssLYA7LC3AOywuADssLjqs6AA7LC5AOywugDssLsA7LC8AOywvQDssL4A7LC/AOyxgADssYEA7LGCAOyxgwDssYQA7LGFAOyxhgDssYcA7LGIAOyxiQDssYoA7LGLAOyxjADssY0A7LGOAOyxjwDssZAA7LGRAOyxkgDssZMA7LGUAOyxlQDssZYA7LGXAOyxmADssZkA7LGaAOyxmwDssZwA7LGdAOyxngDssZ8A7LGgAOyxoQDssaIA7LGjAOyxpADssaUA7LGmAOyxpwDssagA7LGpAOyxqgDssasA7LGsAOyxrQDssa4A7LGvAOyxsADssbEA7LGyAOyxswDssbQA7LG1AOyxtgDssbcA7LG4AOyxuQDssboA7LG7AOyxvADssb0A7LG+AOyxvwDssoAA7LKBAOyyggDssoMA7LKEAOyyhQDssoYA7LKHAOyyiADssokA7LKKAOyyiwDssowA7LKNAOyyjgDsso8A7LKQAOyykQDsspIA7LKTAOyylADsspUA7LKWAOyylwDsspgA7LKZAOyymgDsspsA7LKcAOyynQDssp4A7LKfAOyyoADssqEA7LKiAOyyowDssqQA7LKlAOyypgDssqcA7LKoAOyyqQDssqoA7LKrAOyyrADssq0A7LKuAOyyrwDssrAA7LKxAOyysgDssrMA7LK0AOyytQDssrYA7LK3AOyyuADssrkA7LK6AOyyuwDssrwA7LK9AOyyvgDssr8A7LOAAOyzgQDss4IA7LODAOyzhADss4UA7LOGAOyzhwDss4gA7LOJAOyzigDss4sA7LOMAOyzjQDss44A7LOPAOyzkADss5EA7LOSAOyzkwDss5QA7LOVAOyzlgDss5cA7LOYAOyzmQDss5oA7LObAOyznADss50A7LOeAOyznwDss6AA7LOhAOyzogDss6MA7LOkAOyzpQDss6YA7LOnAOyzqADss6kA7LOqAOyzqwDss6wA7LOtAOyzrgDss68A7LOwAOyzsQDss7IA7LOzAOyztADss7UA7LO2AOyztwDss7gA7LO5AOyzugDss7sA7LO8AOyzvQDss74A7LO/AOy0gADstIEA7LSCAOy0gwDstIQA7LSFAOy0hgDstIcA7LSIAOy0iQDstIoA7LSLAOy0jADstI0A7LSOAOy0jwDstJAA7LSRAOy0kgDstJMA7LSUAOy0lQDstJYA7LSXAOy0mADstJkA7LSaAOy0mwDstJwA7LSdAOy0ngDstJ8A7LSgAOy0oQDstKIA7LSjAOy0pADstKUA7LSmAOy0pwDstKgA7LSpAOy0qgDstKsA7LSsAOy0rQDstK4A7LSvAOy0sADstLEA7LSyAOy0swDstLQA7LS1AOy0tgDstLcA7LS4AOy0uQDstLoA7LS7AOy0vADstL0A7LS+AOy0vwDstYAA7LWBAOy1ggDstYMA7LWEAOy1hQDstYYA7LWHAOy1iADstYkA7LWKAOy1iwDstYwA7LWNAOy1jgDstY8A7LWQAOy1kQDstZIA7LWTAOy1lADstZUA7LWWAOy1lwDstZgA7LWZAOy1mgDstZsA7LWcAOy1nQDstZ4A7LWfAOy1oADstaEA7LWiAOy1owDstaQA7LWlAOy1pgDstacA7LWoAOy1qQDstaoA7LWrAOy1rADsta0A7LWuAOy1rwDstbAA7LWxAOy1sgDstbMA7LW0AOy1tQDstbYA7LW3AOy1uADstbkA7LW6AOy1uwDstbwA7LW9AOy1vgDstb8A7LaAAOy2gQDstoIA7LaDAOy2hADstoUA7LaGAOy2hwDstogA7LaJAOy2igDstosA7LaMAOy2jQDsto4A7LaPAOy2kADstpEA7LaSAOy2kwDstpQA7LaVAOy2lgDstpcA7LaYAOy2mQDstpoA7LabAOy2nADstp0A7LaeAOy2nwDstqAA7LahAOy2ogDstqMA7LakAOy2pQDstqYA7LanAOy2qADstqkA7LaqAOy2qwDstqwA7LatAOy2rgDstq8A7LawAOy2sQDstrIA7LazAOy2tADstrUA7La2AOy2twDstrgA7La5AOy2ugDstrsA7La8AOy2vQDstr4A7La/AOy3gADst4EA7LeCAOy3gwDst4QA7LeFAOy3hgDst4cA7LeIAOy3iQDst4oA7LeLAOy3jADst40A7LeOAOy3jwDst5AA7LeRAOy3kgDst5MA7LeUAOy3lQDst5YA7LeXAOy3mADst5kA7LeaAOy3mwDst5wA7LedAOy3ngDst58A7LegAOy3oQDst6IA7LejAOy3pADst6UA7LemAOy3pwDst6gA7LepAOy3qgDst6sA7LesAOy3rQDst64A7LevAOy3sADst7EA7LeyAOy3swDst7QA7Le1AOy3tgDst7cA7Le4AOy3uQDst7oA7Le7AOy3vADst70A7Le+AOy3vwDsuIAA7LiBAOy4ggDsuIMA7LiEAOy4hQDsuIYA7LiHAOy4iADsuIkA7LiKAOy4iwDsuIwA7LiNAOy4jgDsuI8A7LiQAOy4kQDsuJIA7LiTAOy4lADsuJUA7LiWAOy4lwDsuJgA7LiZAOy4mgDsuJsA7LicAOy4nQDsuJ4A7LifAOy4oADsuKEA7LiiAOy4owDsuKQA7LilAOy4pgDsuKcA7LioAOy4qQDsuKoA7LirAOy4rADsuK0A7LiuAOy4rwDsuLAA7LixAOy4sgDsuLMA7Li0AOy4tQDsuLYA7Li3AOy4uADsuLkA7Li6AOy4uwDsuLwA7Li9AOy4vgDsuL8A7LmAAOy5gQDsuYIA7LmDAOy5hADsuYUA7LmGAOy5hwDsuYgA7LmJAOy5igDsuYsA7LmMAOy5jQDsuY4A7LmPAOy5kADsuZEA7LmSAOy5kwDsuZQA7LmVAOy5lgDsuZcA7LmYAOy5mQDsuZoA7LmbAOy5nADsuZ0A7LmeAOy5nwDsuaAA7LmhAOy5ogDsuaMA7LmkAOy5pQDsuaYA7LmnAOy5qADsuakA7LmqAOy5qwDsuawA7LmtAOy5rgDsua8A7LmwAOy5sQDsubIA7LmzAOy5tADsubUA7Lm2AOy5twDsubgA7Lm5AOy5ugDsubsA7Lm8AOy5vQDsub4A7Lm/AOy6gADsuoEA7LqCAOy6gwDsuoQA7LqFAOy6hgDsuocA7LqIAOy6iQDsuooA7LqLAOy6jADsuo0A7LqOAOy6jwDsupAA7LqRAOy6kgDsupMA7LqUAOy6lQDsupYA7LqXAOy6mADsupkA7LqaAOy6mwDsupwA7LqdAOy6ngDsup8A7LqgAOy6oQDsuqIA7LqjAOy6pADsuqUA7LqmAOy6pwDsuqgA7LqpAOy6qgDsuqsA7LqsAOy6rQDsuq4A7LqvAOy6sADsurEA7LqyAOy6swDsurQA7Lq1AOy6tgDsurcA7Lq4AOy6uQDsuroA7Lq7AOy6vADsur0A7Lq+AOy6vwDsu4AA7LuBAOy7ggDsu4MA7LuEAOy7hQDsu4YA7LuHAOy7iADsu4kA7LuKAOy7iwDsu4wA7LuNAOy7jgDsu48A7LuQAOy7kQDsu5IA7LuTAOy7lADsu5UA7LuWAOy7lwDsu5gA7LuZAOy7mgDsu5sA7LucAOy7nQDsu54A7LufAOy7oADsu6EA7LuiAOy7owDsu6QA7LulAOy7pgDsu6cA7LuoAOy7qQDsu6oA7LurAOy7rADsu60A7LuuAOy7rwDsu7AA7LuxAOy7sgDsu7MA7Lu0AOy7tQDsu7YA7Lu3AOy7uADsu7kA7Lu6AOy7uwDsu7wA7Lu9AOy7vgDsu78A7LyAAOy8gQDsvIIA7LyDAOy8hADsvIUA7LyGAOy8hwDsvIgA7LyJAOy8igDsvIsA7LyMAOy8jQDsvI4A7LyPAOy8kADsvJEA7LySAOy8kwDsvJQA7LyVAOy8lgDsvJcA7LyYAOy8mQDsvJoA7LybAOy8nADsvJ0A7LyeAOy8nwDsvKAA7LyhAOy8ogDsvKMA7LykAOy8pQDsvKYA7LynAOy8qADsvKkA7LyqAOy8qwDsvKwA7LytAOy8rgDsvK8A7LywAOy8sQDsvLIA7LyzAOy8tADsvLUA7Ly2AOy8twDsvLgA7Ly5AOy8ugDsvLsA7Ly8AOy8vQDsvL4A7Ly/AOy9gADsvYEA7L2CAOy9gwDsvYQA7L2FAOy9hgDsvYcA7L2IAOy9iQDsvYoA7L2LAOy9jADsvY0A7L2OAOy9jwDsvZAA7L2RAOy9kgDsvZMA7L2UAOy9lQDsvZYA7L2XAOy9mADsvZkA7L2aAOy9mwDsvZwA7L2dAOy9ngDsvZ8A7L2gAOy9oQDsvaIA7L2jAOy9pADsvaUA7L2mAOy9pwDsvagA7L2pAOy9qgDsvasA7L2sAOy9rQDsva4A7L2vAOy9sADsvbEA7L2yAOy9swDsvbQA7L21AOy9tgDsvbcA7L24AOy9uQDsvboA7L27AOy9vADsvb0A7L2+AOy9vwDsvoAA7L6BAOy+ggDsvoMA7L6EAOy+hQDsvoYA7L6HAOy+iADsvokA7L6KAOy+iwDsvowA7L6NAOy+jgDsvo8A7L6QAOy+kQDsvpIA7L6TAOy+lADsvpUA7L6WAOy+lwDsvpgA7L6ZAOy+mgDsvpsA7L6cAOy+nQDsvp4A7L6fAOy+oADsvqEA7L6iAOy+owDsvqQA7L6lAOy+pgDsvqcA7L6oAOy+qQDsvqoA7L6rAOy+rADsvq0A7L6uAOy+rwDsvrAA7L6xAOy+sgDsvrMA7L60AOy+tQDsvrYA7L63AOy+uADsvrkA7L66AOy+uwDsvrwA7L69AOy+vgDsvr8A7L+AAOy/gQDsv4IA7L+DAOy/hADsv4UA7L+GAOy/hwDsv4gA7L+JAOy/igDsv4sA7L+MAOy/jQDsv44A7L+PAOy/kADsv5EA7L+SAOy/kwDsv5QA7L+VAOy/lgDsv5cA7L+YAOy/mQDsv5oA7L+bAOy/nADsv50A7L+eAOy/nwDsv6AA7L+hAOy/ogDsv6MA7L+kAOy/pQDsv6YA7L+nAOy/qADsv6kA7L+qAOy/qwDsv6wA7L+tAOy/rgDsv68A7L+wAOy/sQDsv7IA7L+zAOy/tADsv7UA7L+2AOy/twDsv7gA7L+5AOy/ugDsv7sA7L+8AOy/vQDsv74A7L+/AO2AgADtgIEA7YCCAO2AgwDtgIQA7YCFAO2AhgDtgIcA7YCIAO2AiQDtgIoA7YCLAO2AjADtgI0A7YCOAO2AjwDtgJAA7YCRAO2AkgDtgJMA7YCUAO2AlQDtgJYA7YCXAO2AmADtgJkA7YCaAO2AmwDtgJwA7YCdAO2AngDtgJ8A7YCgAO2AoQDtgKIA7YCjAO2ApADtgKUA7YCmAO2ApwDtgKgA7YCpAO2AqgDtgKsA7YCsAO2ArQDtgK4A7YCvAO2AsADtgLEA7YCyAO2AswDtgLQA7YC1AO2AtgDtgLcA7YC4AO2AuQDtgLoA7YC7AO2AvADtgL0A7YC+AO2AvwDtgYAA7YGBAO2BggDtgYMA7YGEAO2BhQDtgYYA7YGHAO2BiADtgYkA7YGKAO2BiwDtgYwA7YGNAO2BjgDtgY8A7YGQAO2BkQDtgZIA7YGTAO2BlADtgZUA7YGWAO2BlwDtgZgA7YGZAO2BmgDtgZsA7YGcAO2BnQDtgZ4A7YGfAO2BoADtgaEA7YGiAO2BowDtgaQA7YGlAO2BpgDtgacA7YGoAO2BqQDtgaoA7YGrAO2BrADtga0A7YGuAO2BrwDtgbAA7YGxAO2BsgDtgbMA7YG0AO2BtQDtgbYA7YG3AO2BuADtgbkA7YG6AO2BuwDtgbwA7YG9AO2BvgDtgb8A7YKAAO2CgQDtgoIA7YKDAO2ChADtgoUA7YKGAO2ChwDtgogA7YKJAO2CigDtgosA7YKMAO2CjQDtgo4A7YKPAO2CkADtgpEA7YKSAO2CkwDtgpQA7YKVAO2ClgDtgpcA7YKYAO2CmQDtgpoA7YKbAO2CnADtgp0A7YKeAO2CnwDtgqAA7YKhAO2CogDtgqMA7YKkAO2CpQDtgqYA7YKnAO2CqADtgqkA7YKqAO2CqwDtgqwA7YKtAO2CrgDtgq8A7YKwAO2CsQDtgrIA7YKzAO2CtADtgrUA7YK2AO2CtwDtgrgA7YK5AO2CugDtgrsA7YK8AO2CvQDtgr4A7YK/AO2DgADtg4EA7YOCAO2DgwDtg4QA7YOFAO2DhgDtg4cA7YOIAO2DiQDtg4oA7YOLAO2DjADtg40A7YOOAO2DjwDtg5AA7YORAO2DkgDtg5MA7YOUAO2DlQDtg5YA7YOXAO2DmADtg5kA7YOaAO2DmwDtg5wA7YOdAO2DngDtg58A7YOgAO2DoQDtg6IA7YOjAO2DpADtg6UA7YOmAO2DpwDtg6gA7YOpAO2DqgDtg6sA7YOsAO2DrQDtg64A7YOvAO2DsADtg7EA7YOyAO2DswDtg7QA7YO1AO2DtgDtg7cA7YO4AO2DuQDtg7oA7YO7AO2DvADtg70A7YO+AO2DvwDthIAA7YSBAO2EggDthIMA7YSEAO2EhQDthIYA7YSHAO2EiADthIkA7YSKAO2EiwDthIwA7YSNAO2EjgDthI8A7YSQAO2EkQDthJIA7YSTAO2ElADthJUA7YSWAO2ElwDthJgA7YSZAO2EmgDthJsA7YScAO2EnQDthJ4A7YSfAO2EoADthKEA7YSiAO2EowDthKQA7YSlAO2EpgDthKcA7YSoAO2EqQDthKoA7YSrAO2ErADthK0A7YSuAO2ErwDthLAA7YSxAO2EsgDthLMA7YS0AO2EtQDthLYA7YS3AO2EuADthLkA7YS6AO2EuwDthLwA7YS9AO2EvgDthL8A7YWAAO2FgQDthYIA7YWDAO2FhADthYUA7YWGAO2FhwDthYgA7YWJAO2FigDthYsA7YWMAO2FjQDthY4A7YWPAO2FkADthZEA7YWSAO2FkwDthZQA7YWVAO2FlgDthZcA7YWYAO2FmQDthZoA7YWbAO2FnADthZ0A7YWeAO2FnwDthaAA7YWhAO2FogDthaMA7YWkAO2FpQDthaYA7YWnAO2FqADthakA7YWqAO2FqwDthawA7YWtAO2FrgDtha8A7YWwAO2FsQDthbIA7YWzAO2FtADthbUA7YW2AO2FtwDthbgA7YW5AO2FugDthbsA7YW8AO2FvQDthb4A7YW/AO2GgADthoEA7YaCAO2GgwDthoQA7YaFAO2GhgDthocA7YaIAO2GiQDthooA7YaLAO2GjADtho0A7YaOAO2GjwDthpAA7YaRAO2GkgDthpMA7YaUAO2GlQDthpYA7YaXAO2GmADthpkA7YaaAO2GmwDthpwA7YadAO2GngDthp8A7YagAO2GoQDthqIA7YajAO2GpADthqUA7YamAO2GpwDthqgA7YapAO2GqgDthqsA7YasAO2GrQDthq4A7YavAO2GsADthrEA7YayAO2GswDthrQA7Ya1AO2GtgDthrcA7Ya4AO2GuQDthroA7Ya7AO2GvADthr0A7Ya+AO2GvwDth4AA7YeBAO2HggDth4MA7YeEAO2HhQDth4YA7YeHAO2HiADth4kA7YeKAO2HiwDth4wA7YeNAO2HjgDth48A7YeQAO2HkQDth5IA7YeTAO2HlADth5UA7YeWAO2HlwDth5gA7YeZAO2HmgDth5sA7YecAO2HnQDth54A7YefAO2HoADth6EA7YeiAO2HowDth6QA7YelAO2HpgDth6cA7YeoAO2HqQDth6oA7YerAO2HrADth60A7YeuAO2HrwDth7AA7YexAO2HsgDth7MA7Ye0AO2HtQDth7YA7Ye3AO2HuADth7kA7Ye6AO2HuwDth7wA7Ye9AO2HvgDth78A7YiAAO2IgQDtiIIA7YiDAO2IhADtiIUA7YiGAO2IhwDtiIgA7YiJAO2IigDtiIsA7YiMAO2IjQDtiI4A7YiPAO2IkADtiJEA7YiSAO2IkwDtiJQA7YiVAO2IlgDtiJcA7YiYAO2ImQDtiJoA7YibAO2InADtiJ0A7YieAO2InwDtiKAA7YihAO2IogDtiKMA7YikAO2IpQDtiKYA7YinAO2IqADtiKkA7YiqAO2IqwDtiKwA7YitAO2IrgDtiK8A7YiwAO2IsQDtiLIA7YizAO2ItADtiLUA7Yi2AO2ItwDtiLgA7Yi5AO2IugDtiLsA7Yi8AO2IvQDtiL4A7Yi/AO2JgADtiYEA7YmCAO2JgwDtiYQA7YmFAO2JhgDtiYcA7YmIAO2JiQDtiYoA7YmLAO2JjADtiY0A7YmOAO2JjwDtiZAA7YmRAO2JkgDtiZMA7YmUAO2JlQDtiZYA7YmXAO2JmADtiZkA7YmaAO2JmwDtiZwA7YmdAO2JngDtiZ8A7YmgAO2JoQDtiaIA7YmjAO2JpADtiaUA7YmmAO2JpwDtiagA7YmpAO2JqgDtiasA7YmsAO2JrQDtia4A7YmvAO2JsADtibEA7YmyAO2JswDtibQA7Ym1AO2JtgDtibcA7Ym4AO2JuQDtiboA7Ym7AO2JvADtib0A7Ym+AO2JvwDtioAA7YqBAO2KggDtioMA7YqEAO2KhQDtioYA7YqHAO2KiADtiokA7YqKAO2KiwDtiowA7YqNAO2KjgDtio8A7YqQAO2KkQDtipIA7YqTAO2KlADtipUA7YqWAO2KlwDtipgA7YqZAO2KmgDtipsA7YqcAO2KnQDtip4A7YqfAO2KoADtiqEA7YqiAO2KowDtiqQA7YqlAO2KpgDtiqcA7YqoAO2KqQDtiqoA7YqrAO2KrADtiq0A7YquAO2KrwDtirAA7YqxAO2KsgDtirMA7Yq0AO2KtQDtirYA7Yq3AO2KuADtirkA7Yq6AO2KuwDtirwA7Yq9AO2KvgDtir8A7YuAAO2LgQDti4IA7YuDAO2LhADti4UA7YuGAO2LhwDti4gA7YuJAO2LigDti4sA7YuMAO2LjQDti44A7YuPAO2LkADti5EA7YuSAO2LkwDti5QA7YuVAO2LlgDti5cA7YuYAO2LmQDti5oA7YubAO2LnADti50A7YueAO2LnwDti6AA7YuhAO2LogDti6MA7YukAO2LpQDti6YA7YunAO2LqADti6kA7YuqAO2LqwDti6wA7YutAO2LrgDti68A7YuwAO2LsQDti7IA7YuzAO2LtADti7UA7Yu2AO2LtwDti7gA7Yu5AO2LugDti7sA7Yu8AO2LvQDti74A7Yu/AO2MgADtjIEA7YyCAO2MgwDtjIQA7YyFAO2MhgDtjIcA7YyIAO2MiQDtjIoA7YyLAO2MjADtjI0A7YyOAO2MjwDtjJAA7YyRAO2MkgDtjJMA7YyUAO2MlQDtjJYA7YyXAO2MmADtjJkA7YyaAO2MmwDtjJwA7YydAO2MngDtjJ8A7YygAO2MoQDtjKIA7YyjAO2MpADtjKUA7YymAO2MpwDtjKgA7YypAO2MqgDtjKsA7YysAO2MrQDtjK4A7YyvAO2MsADtjLEA7YyyAO2MswDtjLQA7Yy1AO2MtgDtjLcA7Yy4AO2MuQDtjLoA7Yy7AO2MvADtjL0A7Yy+AO2MvwDtjYAA7Y2BAO2NggDtjYMA7Y2EAO2NhQDtjYYA7Y2HAO2NiADtjYkA7Y2KAO2NiwDtjYwA7Y2NAO2NjgDtjY8A7Y2QAO2NkQDtjZIA7Y2TAO2NlADtjZUA7Y2WAO2NlwDtjZgA7Y2ZAO2NmgDtjZsA7Y2cAO2NnQDtjZ4A7Y2fAO2NoADtjaEA7Y2iAO2NowDtjaQA7Y2lAO2NpgDtjacA7Y2oAO2NqQDtjaoA7Y2rAO2NrADtja0A7Y2uAO2NrwDtjbAA7Y2xAO2NsgDtjbMA7Y20AO2NtQDtjbYA7Y23AO2NuADtjbkA7Y26AO2NuwDtjbwA7Y29AO2NvgDtjb8A7Y6AAO2OgQDtjoIA7Y6DAO2OhADtjoUA7Y6GAO2OhwDtjogA7Y6JAO2OigDtjosA7Y6MAO2OjQDtjo4A7Y6PAO2OkADtjpEA7Y6SAO2OkwDtjpQA7Y6VAO2OlgDtjpcA7Y6YAO2OmQDtjpoA7Y6bAO2OnADtjp0A7Y6eAO2OnwDtjqAA7Y6hAO2OogDtjqMA7Y6kAO2OpQDtjqYA7Y6nAO2OqADtjqkA7Y6qAO2OqwDtjqwA7Y6tAO2OrgDtjq8A7Y6wAO2OsQDtjrIA7Y6zAO2OtADtjrUA7Y62AO2OtwDtjrgA7Y65AO2OugDtjrsA7Y68AO2OvQDtjr4A7Y6/AO2PgADtj4EA7Y+CAO2PgwDtj4QA7Y+FAO2PhgDtj4cA7Y+IAO2PiQDtj4oA7Y+LAO2PjADtj40A7Y+OAO2PjwDtj5AA7Y+RAO2PkgDtj5MA7Y+UAO2PlQDtj5YA7Y+XAO2PmADtj5kA7Y+aAO2PmwDtj5wA7Y+dAO2PngDtj58A7Y+gAO2PoQDtj6IA7Y+jAO2PpADtj6UA7Y+mAO2PpwDtj6gA7Y+pAO2PqgDtj6sA7Y+sAO2PrQDtj64A7Y+vAO2PsADtj7EA7Y+yAO2PswDtj7QA7Y+1AO2PtgDtj7cA7Y+4AO2PuQDtj7oA7Y+7AO2PvADtj70A7Y++AO2PvwDtkIAA7ZCBAO2QggDtkIMA7ZCEAO2QhQDtkIYA7ZCHAO2QiADtkIkA7ZCKAO2QiwDtkIwA7ZCNAO2QjgDtkI8A7ZCQAO2QkQDtkJIA7ZCTAO2QlADtkJUA7ZCWAO2QlwDtkJgA7ZCZAO2QmgDtkJsA7ZCcAO2QnQDtkJ4A7ZCfAO2QoADtkKEA7ZCiAO2QowDtkKQA7ZClAO2QpgDtkKcA7ZCoAO2QqQDtkKoA7ZCrAO2QrADtkK0A7ZCuAO2QrwDtkLAA7ZCxAO2QsgDtkLMA7ZC0AO2QtQDtkLYA7ZC3AO2QuADtkLkA7ZC6AO2QuwDtkLwA7ZC9AO2QvgDtkL8A7ZGAAO2RgQDtkYIA7ZGDAO2RhADtkYUA7ZGGAO2RhwDtkYgA7ZGJAO2RigDtkYsA7ZGMAO2RjQDtkY4A7ZGPAO2RkADtkZEA7ZGSAO2RkwDtkZQA7ZGVAO2RlgDtkZcA7ZGYAO2RmQDtkZoA7ZGbAO2RnADtkZ0A7ZGeAO2RnwDtkaAA7ZGhAO2RogDtkaMA7ZGkAO2RpQDtkaYA7ZGnAO2RqADtkakA7ZGqAO2RqwDtkawA7ZGtAO2RrgDtka8A7ZGwAO2RsQDtkbIA7ZGzAO2RtADtkbUA7ZG2AO2RtwDtkbgA7ZG5AO2RugDtkbsA7ZG8AO2RvQDtkb4A7ZG/AO2SgADtkoEA7ZKCAO2SgwDtkoQA7ZKFAO2ShgDtkocA7ZKIAO2SiQDtkooA7ZKLAO2SjADtko0A7ZKOAO2SjwDtkpAA7ZKRAO2SkgDtkpMA7ZKUAO2SlQDtkpYA7ZKXAO2SmADtkpkA7ZKaAO2SmwDtkpwA7ZKdAO2SngDtkp8A7ZKgAO2SoQDtkqIA7ZKjAO2SpADtkqUA7ZKmAO2SpwDtkqgA7ZKpAO2SqgDtkqsA7ZKsAO2SrQDtkq4A7ZKvAO2SsADtkrEA7ZKyAO2SswDtkrQA7ZK1AO2StgDtkrcA7ZK4AO2SuQDtkroA7ZK7AO2SvADtkr0A7ZK+AO2SvwDtk4AA7ZOBAO2TggDtk4MA7ZOEAO2ThQDtk4YA7ZOHAO2TiADtk4kA7ZOKAO2TiwDtk4wA7ZONAO2TjgDtk48A7ZOQAO2TkQDtk5IA7ZOTAO2TlADtk5UA7ZOWAO2TlwDtk5gA7ZOZAO2TmgDtk5sA7ZOcAO2TnQDtk54A7ZOfAO2ToADtk6EA7ZOiAO2TowDtk6QA7ZOlAO2TpgDtk6cA7ZOoAO2TqQDtk6oA7ZOrAO2TrADtk60A7ZOuAO2TrwDtk7AA7ZOxAO2TsgDtk7MA7ZO0AO2TtQDtk7YA7ZO3AO2TuADtk7kA7ZO6AO2TuwDtk7wA7ZO9AO2TvgDtk78A7ZSAAO2UgQDtlIIA7ZSDAO2UhADtlIUA7ZSGAO2UhwDtlIgA7ZSJAO2UigDtlIsA7ZSMAO2UjQDtlI4A7ZSPAO2UkADtlJEA7ZSSAO2UkwDtlJQA7ZSVAO2UlgDtlJcA7ZSYAO2UmQDtlJoA7ZSbAO2UnADtlJ0A7ZSeAO2UnwDtlKAA7ZShAO2UogDtlKMA7ZSkAO2UpQDtlKYA7ZSnAO2UqADtlKkA7ZSqAO2UqwDtlKwA7ZStAO2UrgDtlK8A7ZSwAO2UsQDtlLIA7ZSzAO2UtADtlLUA7ZS2AO2UtwDtlLgA7ZS5AO2UugDtlLsA7ZS8AO2UvQDtlL4A7ZS/AO2VgADtlYEA7ZWCAO2VgwDtlYQA7ZWFAO2VhgDtlYcA7ZWIAO2ViQDtlYoA7ZWLAO2VjADtlY0A7ZWOAO2VjwDtlZAA7ZWRAO2VkgDtlZMA7ZWUAO2VlQDtlZYA7ZWXAO2VmADtlZkA7ZWaAO2VmwDtlZwA7ZWdAO2VngDtlZ8A7ZWgAO2VoQDtlaIA7ZWjAO2VpADtlaUA7ZWmAO2VpwDtlagA7ZWpAO2VqgDtlasA7ZWsAO2VrQDtla4A7ZWvAO2VsADtlbEA7ZWyAO2VswDtlbQA7ZW1AO2VtgDtlbcA7ZW4AO2VuQDtlboA7ZW7AO2VvADtlb0A7ZW+AO2VvwDtloAA7ZaBAO2WggDtloMA7ZaEAO2WhQDtloYA7ZaHAO2WiADtlokA7ZaKAO2WiwDtlowA7ZaNAO2WjgDtlo8A7ZaQAO2WkQDtlpIA7ZaTAO2WlADtlpUA7ZaWAO2WlwDtlpgA7ZaZAO2WmgDtlpsA7ZacAO2WnQDtlp4A7ZafAO2WoADtlqEA7ZaiAO2WowDtlqQA7ZalAO2WpgDtlqcA7ZaoAO2WqQDtlqoA7ZarAO2WrADtlq0A7ZauAO2WrwDtlrAA7ZaxAO2WsgDtlrMA7Za0AO2WtQDtlrYA7Za3AO2WuADtlrkA7Za6AO2WuwDtlrwA7Za9AO2WvgDtlr8A7ZeAAO2XgQDtl4IA7ZeDAO2XhADtl4UA7ZeGAO2XhwDtl4gA7ZeJAO2XigDtl4sA7ZeMAO2XjQDtl44A7ZePAO2XkADtl5EA7ZeSAO2XkwDtl5QA7ZeVAO2XlgDtl5cA7ZeYAO2XmQDtl5oA7ZebAO2XnADtl50A7ZeeAO2XnwDtl6AA7ZehAO2XogDtl6MA7ZekAO2XpQDtl6YA7ZenAO2XqADtl6kA7ZeqAO2XqwDtl6wA7ZetAO2XrgDtl68A7ZewAO2XsQDtl7IA7ZezAO2XtADtl7UA7Ze2AO2XtwDtl7gA7Ze5AO2XugDtl7sA7Ze8AO2XvQDtl74A7Ze/AO2YgADtmIEA7ZiCAO2YgwDtmIQA7ZiFAO2YhgDtmIcA7ZiIAO2YiQDtmIoA7ZiLAO2YjADtmI0A7ZiOAO2YjwDtmJAA7ZiRAO2YkgDtmJMA7ZiUAO2YlQDtmJYA7ZiXAO2YmADtmJkA7ZiaAO2YmwDtmJwA7ZidAO2YngDtmJ8A7ZigAO2YoQDtmKIA7ZijAO2YpADtmKUA7ZimAO2YpwDtmKgA7ZipAO2YqgDtmKsA7ZisAO2YrQDtmK4A7ZivAO2YsADtmLEA7ZiyAO2YswDtmLQA7Zi1AO2YtgDtmLcA7Zi4AO2YuQDtmLoA7Zi7AO2YvADtmL0A7Zi+AO2YvwDtmYAA7ZmBAO2ZggDtmYMA7ZmEAO2ZhQDtmYYA7ZmHAO2ZiADtmYkA7ZmKAO2ZiwDtmYwA7ZmNAO2ZjgDtmY8A7ZmQAO2ZkQDtmZIA7ZmTAO2ZlADtmZUA7ZmWAO2ZlwDtmZgA7ZmZAO2ZmgDtmZsA7ZmcAO2ZnQDtmZ4A7ZmfAO2ZoADtmaEA7ZmiAO2ZowDtmaQA7ZmlAO2ZpgDtmacA7ZmoAO2ZqQDtmaoA7ZmrAO2ZrADtma0A7ZmuAO2ZrwDtmbAA7ZmxAO2ZsgDtmbMA7Zm0AO2ZtQDtmbYA7Zm3AO2ZuADtmbkA7Zm6AO2ZuwDtmbwA7Zm9AO2ZvgDtmb8A7ZqAAO2agQDtmoIA7ZqDAO2ahADtmoUA7ZqGAO2ahwDtmogA7ZqJAO2aigDtmosA7ZqMAO2ajQDtmo4A7ZqPAO2akADtmpEA7ZqSAO2akwDtmpQA7ZqVAO2algDtmpcA7ZqYAO2amQDtmpoA7ZqbAO2anADtmp0A7ZqeAO2anwDtmqAA7ZqhAO2aogDtmqMA7ZqkAO2apQDtmqYA7ZqnAO2aqADtmqkA7ZqqAO2aqwDtmqwA7ZqtAO2argDtmq8A7ZqwAO2asQDtmrIA7ZqzAO2atADtmrUA7Zq2AO2atwDtmrgA7Zq5AO2augDtmrsA7Zq8AO2avQDtmr4A7Zq/AO2bgADtm4EA7ZuCAO2bgwDtm4QA7ZuFAO2bhgDtm4cA7ZuIAO2biQDtm4oA7ZuLAO2bjADtm40A7ZuOAO2bjwDtm5AA7ZuRAO2bkgDtm5MA7ZuUAO2blQDtm5YA7ZuXAO2bmADtm5kA7ZuaAO2bmwDtm5wA7ZudAO2bngDtm58A7ZugAO2boQDtm6IA7ZujAO2bpADtm6UA7ZumAO2bpwDtm6gA7ZupAO2bqgDtm6sA7ZusAO2brQDtm64A7ZuvAO2bsADtm7EA7ZuyAO2bswDtm7QA7Zu1AO2btgDtm7cA7Zu4AO2buQDtm7oA7Zu7AO2bvADtm70A7Zu+AO2bvwDtnIAA7ZyBAO2cggDtnIMA7ZyEAO2chQDtnIYA7ZyHAO2ciADtnIkA7ZyKAO2ciwDtnIwA7ZyNAO2cjgDtnI8A7ZyQAO2ckQDtnJIA7ZyTAO2clADtnJUA7ZyWAO2clwDtnJgA7ZyZAO2cmgDtnJsA7ZycAO2cnQDtnJ4A7ZyfAO2coADtnKEA7ZyiAO2cowDtnKQA7ZylAO2cpgDtnKcA7ZyoAO2cqQDtnKoA7ZyrAO2crADtnK0A7ZyuAO2crwDtnLAA7ZyxAO2csgDtnLMA7Zy0AO2ctQDtnLYA7Zy3AO2cuADtnLkA7Zy6AO2cuwDtnLwA7Zy9AO2cvgDtnL8A7Z2AAO2dgQDtnYIA7Z2DAO2dhADtnYUA7Z2GAO2dhwDtnYgA7Z2JAO2digDtnYsA7Z2MAO2djQDtnY4A7Z2PAO2dkADtnZEA7Z2SAO2dkwDtnZQA7Z2VAO2dlgDtnZcA7Z2YAO2dmQDtnZoA7Z2bAO2dnADtnZ0A7Z2eAO2dnwDtnaAA7Z2hAO2dogDtnaMA7Z2kAO2dpQDtnaYA7Z2nAO2dqADtnakA7Z2qAO2dqwDtnawA7Z2tAO2drgDtna8A7Z2wAO2dsQDtnbIA7Z2zAO2dtADtnbUA7Z22AO2dtwDtnbgA7Z25AO2dugDtnbsA7Z28AO2dvQDtnb4A7Z2/AO2egADtnoEA7Z6CAO2egwDtnoQA7Z6FAO2ehgDtnocA7Z6IAO2eiQDtnooA7Z6LAO2ejADtno0A7Z6OAO2ejwDtnpAA7Z6RAO2ekgDtnpMA7Z6UAO2elQDtnpYA7Z6XAO2emADtnpkA7Z6aAO2emwDtnpwA7Z6dAO2engDtnp8A7Z6gAO2eoQDtnqIA7Z6jAPCRgpoA8JGCnADwkYKrAPCRhK4A8JGErwDwkY2LAPCRjYwA8JGSuwDwkZK8APCRkr4A8JGWugDwkZa7APCdhZfwnYWlAPCdhZjwnYWlAPCdhZjwnYWl8J2FrgDwnYWY8J2FpfCdha8A8J2FmPCdhaXwnYWwAPCdhZjwnYWl8J2FsQDwnYWY8J2FpfCdhbIA8J2GufCdhaUA8J2GufCdhaXwnYWuAPCdhrnwnYWl8J2FrwDwnYa68J2FpQDwnYa68J2FpfCdha4A8J2GuvCdhaXwnYWvAPCghKIA8KCUnADwoJSlAPCglYsA8KCYugDwoKCEAPCgo54A8KCorADwoK2jAPChk6QA8KGaqADwoZuqAPChp4gA8KGsmADwobSLAPCht6QA8KG3pgDwooaDAPCihp8A8KKMsQDwopuUAPCioYQA8KKhigDwoqyMAPCir7EA8KOAigDwo4q4APCjjZ8A8KOOkwDwo46cAPCjj4MA8KOPlQDwo5GtAPCjmqMA8KOipwDwo6qNAPCjq7oA8KOyvADwo7SeAPCju5EA8KO9ngDwo76OAPCkiaMA8KSLrgDwpI6rAPCkmIgA8KSctQDwpKCUAPCksLYA8KSykgDwpL6hAPCkvrgA8KWBhADwpYOyAPClg7MA8KWEmQDwpYSzAPCliYkA8KWQnQDwpZimAPClmpoA8KWbhQDwpaW8APClqqcA8KWuqwDwpbKAAPCls5AA8KW+hgDwpoeaAPCmiKgA8KaJhwDwpouZAPCmjL4A8KaTmgDwppSjAPCmlqgA8KaepwDwpp61APCmrLwA8KawtgDwprOVAPCmtasA8Ka8rADwpr6xAPCng5IA8KePigDwp5mnAPCnoq4A8KelpgDwp7KoAPCnu5MA8Ke8rwDwqJeSAPCol60A8KicrgDwqK+6APCotbcA8KmFhQDwqYefAPCpiJoA8KmQigDwqZKWAPCplrYA8KmssADwqoOOAPCqhIUA8KqIjgDwqoqRAPCqjpIA8KqYgAA=" + }, + { + "type": "Replace", + "pattern": { + "Regex": " {2,}" + }, + "content": " " + } + ] + }, + "pre_tokenizer": { + "type": "Sequence", + "pretokenizers": [ + { + "type": "Metaspace", + "replacement": "▁", + "add_prefix_space": true + } + ] + }, + "post_processor": { + "type": "TemplateProcessing", + "single": [ + { + "SpecialToken": { + "id": "[CLS]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 0 + } + } + ], + "pair": [ + { + "SpecialToken": { + "id": "[CLS]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "B", + "type_id": 1 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 1 + } + } + ], + "special_tokens": { + "[CLS]": { + "id": "[CLS]", + "ids": [ + 1 + ], + "tokens": [ + "[CLS]" + ] + }, + "[SEP]": { + "id": "[SEP]", + "ids": [ + 2 + ], + "tokens": [ + "[SEP]" + ] + } + } + }, + "decoder": { + "type": "Metaspace", + "replacement": "▁", + "add_prefix_space": true + }, + "model": { + "type": "Unigram", + "unk_id": 3, + "vocab": [ + [ + "[PAD]", + 0.0 + ], + [ + "[CLS]", + 0.0 + ], + [ + "[SEP]", + 0.0 + ], + [ + "[UNK]", + 0.0 + ], + [ + "<0x00>", + 0.0 + ], + [ + "<0x01>", + 0.0 + ], + [ + "<0x02>", + 0.0 + ], + [ + "<0x03>", + 0.0 + ], + [ + "<0x04>", + 0.0 + ], + [ + "<0x05>", + 0.0 + ], + [ + "<0x06>", + 0.0 + ], + [ + "<0x07>", + 0.0 + ], + [ + "<0x08>", + 0.0 + ], + [ + "<0x09>", + 0.0 + ], + [ + "<0x0A>", + 0.0 + ], + [ + "<0x0B>", + 0.0 + ], + [ + "<0x0C>", + 0.0 + ], + [ + "<0x0D>", + 0.0 + ], + [ + "<0x0E>", + 0.0 + ], + [ + "<0x0F>", + 0.0 + ], + [ + "<0x10>", + 0.0 + ], + [ + "<0x11>", + 0.0 + ], + [ + "<0x12>", + 0.0 + ], + [ + "<0x13>", + 0.0 + ], + [ + "<0x14>", + 0.0 + ], + [ + "<0x15>", + 0.0 + ], + [ + "<0x16>", + 0.0 + ], + [ + "<0x17>", + 0.0 + ], + [ + "<0x18>", + 0.0 + ], + [ + "<0x19>", + 0.0 + ], + [ + "<0x1A>", + 0.0 + ], + [ + "<0x1B>", + 0.0 + ], + [ + "<0x1C>", + 0.0 + ], + [ + "<0x1D>", + 0.0 + ], + [ + "<0x1E>", + 0.0 + ], + [ + "<0x1F>", + 0.0 + ], + [ + "<0x20>", + 0.0 + ], + [ + "<0x21>", + 0.0 + ], + [ + "<0x22>", + 0.0 + ], + [ + "<0x23>", + 0.0 + ], + [ + "<0x24>", + 0.0 + ], + [ + "<0x25>", + 0.0 + ], + [ + "<0x26>", + 0.0 + ], + [ + "<0x27>", + 0.0 + ], + [ + "<0x28>", + 0.0 + ], + [ + "<0x29>", + 0.0 + ], + [ + "<0x2A>", + 0.0 + ], + [ + "<0x2B>", + 0.0 + ], + [ + "<0x2C>", + 0.0 + ], + [ + "<0x2D>", + 0.0 + ], + [ + "<0x2E>", + 0.0 + ], + [ + "<0x2F>", + 0.0 + ], + [ + "<0x30>", + 0.0 + ], + [ + "<0x31>", + 0.0 + ], + [ + "<0x32>", + 0.0 + ], + [ + "<0x33>", + 0.0 + ], + [ + "<0x34>", + 0.0 + ], + [ + "<0x35>", + 0.0 + ], + [ + "<0x36>", + 0.0 + ], + [ + "<0x37>", + 0.0 + ], + [ + "<0x38>", + 0.0 + ], + [ + "<0x39>", + 0.0 + ], + [ + "<0x3A>", + 0.0 + ], + [ + "<0x3B>", + 0.0 + ], + [ + "<0x3C>", + 0.0 + ], + [ + "<0x3D>", + 0.0 + ], + [ + "<0x3E>", + 0.0 + ], + [ + "<0x3F>", + 0.0 + ], + [ + "<0x40>", + 0.0 + ], + [ + "<0x41>", + 0.0 + ], + [ + "<0x42>", + 0.0 + ], + [ + "<0x43>", + 0.0 + ], + [ + "<0x44>", + 0.0 + ], + [ + "<0x45>", + 0.0 + ], + [ + "<0x46>", + 0.0 + ], + [ + "<0x47>", + 0.0 + ], + [ + "<0x48>", + 0.0 + ], + [ + "<0x49>", + 0.0 + ], + [ + "<0x4A>", + 0.0 + ], + [ + "<0x4B>", + 0.0 + ], + [ + "<0x4C>", + 0.0 + ], + [ + "<0x4D>", + 0.0 + ], + [ + "<0x4E>", + 0.0 + ], + [ + "<0x4F>", + 0.0 + ], + [ + "<0x50>", + 0.0 + ], + [ + "<0x51>", + 0.0 + ], + [ + "<0x52>", + 0.0 + ], + [ + "<0x53>", + 0.0 + ], + [ + "<0x54>", + 0.0 + ], + [ + "<0x55>", + 0.0 + ], + [ + "<0x56>", + 0.0 + ], + [ + "<0x57>", + 0.0 + ], + [ + "<0x58>", + 0.0 + ], + [ + "<0x59>", + 0.0 + ], + [ + "<0x5A>", + 0.0 + ], + [ + "<0x5B>", + 0.0 + ], + [ + "<0x5C>", + 0.0 + ], + [ + "<0x5D>", + 0.0 + ], + [ + "<0x5E>", + 0.0 + ], + [ + "<0x5F>", + 0.0 + ], + [ + "<0x60>", + 0.0 + ], + [ + "<0x61>", + 0.0 + ], + [ + "<0x62>", + 0.0 + ], + [ + "<0x63>", + 0.0 + ], + [ + "<0x64>", + 0.0 + ], + [ + "<0x65>", + 0.0 + ], + [ + "<0x66>", + 0.0 + ], + [ + "<0x67>", + 0.0 + ], + [ + "<0x68>", + 0.0 + ], + [ + "<0x69>", + 0.0 + ], + [ + "<0x6A>", + 0.0 + ], + [ + "<0x6B>", + 0.0 + ], + [ + "<0x6C>", + 0.0 + ], + [ + "<0x6D>", + 0.0 + ], + [ + "<0x6E>", + 0.0 + ], + [ + "<0x6F>", + 0.0 + ], + [ + "<0x70>", + 0.0 + ], + [ + "<0x71>", + 0.0 + ], + [ + "<0x72>", + 0.0 + ], + [ + "<0x73>", + 0.0 + ], + [ + "<0x74>", + 0.0 + ], + [ + "<0x75>", + 0.0 + ], + [ + "<0x76>", + 0.0 + ], + [ + "<0x77>", + 0.0 + ], + [ + "<0x78>", + 0.0 + ], + [ + "<0x79>", + 0.0 + ], + [ + "<0x7A>", + 0.0 + ], + [ + "<0x7B>", + 0.0 + ], + [ + "<0x7C>", + 0.0 + ], + [ + "<0x7D>", + 0.0 + ], + [ + "<0x7E>", + 0.0 + ], + [ + "<0x7F>", + 0.0 + ], + [ + "<0x80>", + 0.0 + ], + [ + "<0x81>", + 0.0 + ], + [ + "<0x82>", + 0.0 + ], + [ + "<0x83>", + 0.0 + ], + [ + "<0x84>", + 0.0 + ], + [ + "<0x85>", + 0.0 + ], + [ + "<0x86>", + 0.0 + ], + [ + "<0x87>", + 0.0 + ], + [ + "<0x88>", + 0.0 + ], + [ + "<0x89>", + 0.0 + ], + [ + "<0x8A>", + 0.0 + ], + [ + "<0x8B>", + 0.0 + ], + [ + "<0x8C>", + 0.0 + ], + [ + "<0x8D>", + 0.0 + ], + [ + "<0x8E>", + 0.0 + ], + [ + "<0x8F>", + 0.0 + ], + [ + "<0x90>", + 0.0 + ], + [ + "<0x91>", + 0.0 + ], + [ + "<0x92>", + 0.0 + ], + [ + "<0x93>", + 0.0 + ], + [ + "<0x94>", + 0.0 + ], + [ + "<0x95>", + 0.0 + ], + [ + "<0x96>", + 0.0 + ], + [ + "<0x97>", + 0.0 + ], + [ + "<0x98>", + 0.0 + ], + [ + "<0x99>", + 0.0 + ], + [ + "<0x9A>", + 0.0 + ], + [ + "<0x9B>", + 0.0 + ], + [ + "<0x9C>", + 0.0 + ], + [ + "<0x9D>", + 0.0 + ], + [ + "<0x9E>", + 0.0 + ], + [ + "<0x9F>", + 0.0 + ], + [ + "<0xA0>", + 0.0 + ], + [ + "<0xA1>", + 0.0 + ], + [ + "<0xA2>", + 0.0 + ], + [ + "<0xA3>", + 0.0 + ], + [ + "<0xA4>", + 0.0 + ], + [ + "<0xA5>", + 0.0 + ], + [ + "<0xA6>", + 0.0 + ], + [ + "<0xA7>", + 0.0 + ], + [ + "<0xA8>", + 0.0 + ], + [ + "<0xA9>", + 0.0 + ], + [ + "<0xAA>", + 0.0 + ], + [ + "<0xAB>", + 0.0 + ], + [ + "<0xAC>", + 0.0 + ], + [ + "<0xAD>", + 0.0 + ], + [ + "<0xAE>", + 0.0 + ], + [ + "<0xAF>", + 0.0 + ], + [ + "<0xB0>", + 0.0 + ], + [ + "<0xB1>", + 0.0 + ], + [ + "<0xB2>", + 0.0 + ], + [ + "<0xB3>", + 0.0 + ], + [ + "<0xB4>", + 0.0 + ], + [ + "<0xB5>", + 0.0 + ], + [ + "<0xB6>", + 0.0 + ], + [ + "<0xB7>", + 0.0 + ], + [ + "<0xB8>", + 0.0 + ], + [ + "<0xB9>", + 0.0 + ], + [ + "<0xBA>", + 0.0 + ], + [ + "<0xBB>", + 0.0 + ], + [ + "<0xBC>", + 0.0 + ], + [ + "<0xBD>", + 0.0 + ], + [ + "<0xBE>", + 0.0 + ], + [ + "<0xBF>", + 0.0 + ], + [ + "<0xC0>", + 0.0 + ], + [ + "<0xC1>", + 0.0 + ], + [ + "<0xC2>", + 0.0 + ], + [ + "<0xC3>", + 0.0 + ], + [ + "<0xC4>", + 0.0 + ], + [ + "<0xC5>", + 0.0 + ], + [ + "<0xC6>", + 0.0 + ], + [ + "<0xC7>", + 0.0 + ], + [ + "<0xC8>", + 0.0 + ], + [ + "<0xC9>", + 0.0 + ], + [ + "<0xCA>", + 0.0 + ], + [ + "<0xCB>", + 0.0 + ], + [ + "<0xCC>", + 0.0 + ], + [ + "<0xCD>", + 0.0 + ], + [ + "<0xCE>", + 0.0 + ], + [ + "<0xCF>", + 0.0 + ], + [ + "<0xD0>", + 0.0 + ], + [ + "<0xD1>", + 0.0 + ], + [ + "<0xD2>", + 0.0 + ], + [ + "<0xD3>", + 0.0 + ], + [ + "<0xD4>", + 0.0 + ], + [ + "<0xD5>", + 0.0 + ], + [ + "<0xD6>", + 0.0 + ], + [ + "<0xD7>", + 0.0 + ], + [ + "<0xD8>", + 0.0 + ], + [ + "<0xD9>", + 0.0 + ], + [ + "<0xDA>", + 0.0 + ], + [ + "<0xDB>", + 0.0 + ], + [ + "<0xDC>", + 0.0 + ], + [ + "<0xDD>", + 0.0 + ], + [ + "<0xDE>", + 0.0 + ], + [ + "<0xDF>", + 0.0 + ], + [ + "<0xE0>", + 0.0 + ], + [ + "<0xE1>", + 0.0 + ], + [ + "<0xE2>", + 0.0 + ], + [ + "<0xE3>", + 0.0 + ], + [ + "<0xE4>", + 0.0 + ], + [ + "<0xE5>", + 0.0 + ], + [ + "<0xE6>", + 0.0 + ], + [ + "<0xE7>", + 0.0 + ], + [ + "<0xE8>", + 0.0 + ], + [ + "<0xE9>", + 0.0 + ], + [ + "<0xEA>", + 0.0 + ], + [ + "<0xEB>", + 0.0 + ], + [ + "<0xEC>", + 0.0 + ], + [ + "<0xED>", + 0.0 + ], + [ + "<0xEE>", + 0.0 + ], + [ + "<0xEF>", + 0.0 + ], + [ + "<0xF0>", + 0.0 + ], + [ + "<0xF1>", + 0.0 + ], + [ + "<0xF2>", + 0.0 + ], + [ + "<0xF3>", + 0.0 + ], + [ + "<0xF4>", + 0.0 + ], + [ + "<0xF5>", + 0.0 + ], + [ + "<0xF6>", + 0.0 + ], + [ + "<0xF7>", + 0.0 + ], + [ + "<0xF8>", + 0.0 + ], + [ + "<0xF9>", + 0.0 + ], + [ + "<0xFA>", + 0.0 + ], + [ + "<0xFB>", + 0.0 + ], + [ + "<0xFC>", + 0.0 + ], + [ + "<0xFD>", + 0.0 + ], + [ + "<0xFE>", + 0.0 + ], + [ + "<0xFF>", + 0.0 + ], + [ + ".", + -3.095722198486328 + ], + [ + ",", + -3.2606236934661865 + ], + [ + "▁the", + -3.294761896133423 + ], + [ + "▁and", + -3.796011447906494 + ], + [ + "▁to", + -3.8229689598083496 + ], + [ + "▁of", + -3.9138824939727783 + ], + [ + "▁a", + -4.052096843719482 + ], + [ + "▁in", + -4.314146041870117 + ], + [ + "s", + -4.483578205108643 + ], + [ + "▁is", + -4.681629657745361 + ], + [ + "▁for", + -4.792233943939209 + ], + [ + "-", + -4.8428144454956055 + ], + [ + "▁that", + -4.871318340301514 + ], + [ + "▁I", + -4.936946868896484 + ], + [ + "▁you", + -5.062524318695068 + ], + [ + "▁with", + -5.085147857666016 + ], + [ + "’", + -5.1092424392700195 + ], + [ + "▁on", + -5.127946376800537 + ], + [ + "▁it", + -5.232791423797607 + ], + [ + "▁The", + -5.355691432952881 + ], + [ + "'", + -5.381543159484863 + ], + [ + "▁are", + -5.396990776062012 + ], + [ + "▁be", + -5.423416614532471 + ], + [ + "▁as", + -5.4715800285339355 + ], + [ + "▁was", + -5.530472278594971 + ], + [ + ")", + -5.578611373901367 + ], + [ + "▁have", + -5.6353840827941895 + ], + [ + "▁(", + -5.6521501541137695 + ], + [ + "▁at", + -5.657050132751465 + ], + [ + "▁or", + -5.668798446655273 + ], + [ + "▁your", + -5.677766799926758 + ], + [ + "▁this", + -5.686938762664795 + ], + [ + "▁from", + -5.697742938995361 + ], + [ + "▁by", + -5.751555919647217 + ], + [ + ":", + -5.818023204803467 + ], + [ + "▁can", + -5.875428199768066 + ], + [ + "▁will", + -5.8763861656188965 + ], + [ + "t", + -5.876521587371826 + ], + [ + "▁not", + -5.90477991104126 + ], + [ + "▁an", + -5.911834239959717 + ], + [ + "!", + -6.008203029632568 + ], + [ + "▁we", + -6.055449485778809 + ], + [ + "?", + -6.074051380157471 + ], + [ + "▁has", + -6.1105122566223145 + ], + [ + "▁but", + -6.16851282119751 + ], + [ + "▁all", + -6.174750328063965 + ], + [ + "▁they", + -6.238425254821777 + ], + [ + "▁\"", + -6.267860412597656 + ], + [ + "▁their", + -6.26979923248291 + ], + [ + "\"", + -6.274217128753662 + ], + [ + "▁more", + -6.290916919708252 + ], + [ + "▁one", + -6.304107666015625 + ], + [ + "▁my", + -6.327486515045166 + ], + [ + "▁he", + -6.3693060874938965 + ], + [ + "▁about", + -6.371062278747559 + ], + [ + "▁his", + -6.38395357131958 + ], + [ + "▁our", + -6.393300533294678 + ], + [ + "▁“", + -6.434513092041016 + ], + [ + "”", + -6.440919876098633 + ], + [ + "▁which", + -6.44210147857666 + ], + [ + "/", + -6.4478278160095215 + ], + [ + "▁out", + -6.458395481109619 + ], + [ + "▁up", + -6.4608154296875 + ], + [ + "▁.", + -6.4814229011535645 + ], + [ + "▁so", + -6.496372699737549 + ], + [ + "▁It", + -6.502237319946289 + ], + [ + "▁time", + -6.547300338745117 + ], + [ + "▁also", + -6.5718841552734375 + ], + [ + "▁who", + -6.582934379577637 + ], + [ + "▁This", + -6.631011486053467 + ], + [ + "▁had", + -6.632156848907471 + ], + [ + "▁been", + -6.638617992401123 + ], + [ + "▁were", + -6.6581621170043945 + ], + [ + "▁do", + -6.661325454711914 + ], + [ + "▁like", + -6.66315221786499 + ], + [ + "▁when", + -6.679382801055908 + ], + [ + "▁A", + -6.697320461273193 + ], + [ + "▁if", + -6.7023396492004395 + ], + [ + "▁would", + -6.707554340362549 + ], + [ + "▁what", + -6.7166056632995605 + ], + [ + "▁other", + -6.7423014640808105 + ], + [ + "▁-", + -6.744027137756348 + ], + [ + "▁her", + -6.750887393951416 + ], + [ + "▁there", + -6.7612690925598145 + ], + [ + "▁In", + -6.768721580505371 + ], + [ + "▁We", + -6.784876823425293 + ], + [ + ";", + -6.785900592803955 + ], + [ + "▁some", + -6.788465976715088 + ], + [ + "▁just", + -6.793222427368164 + ], + [ + "▁them", + -6.8142781257629395 + ], + [ + "▁get", + -6.8324198722839355 + ], + [ + "▁me", + -6.840675354003906 + ], + [ + "▁into", + -6.846591472625732 + ], + [ + "▁new", + -6.8644514083862305 + ], + [ + "▁than", + -6.901846408843994 + ], + [ + "▁people", + -6.914368629455566 + ], + [ + "▁any", + -6.916411876678467 + ], + [ + "▁said", + -6.927781105041504 + ], + [ + "m", + -6.929420471191406 + ], + [ + "▁its", + -6.98076868057251 + ], + [ + "▁over", + -6.997141361236572 + ], + [ + "▁how", + -7.001303672790527 + ], + [ + "▁first", + -7.005992889404297 + ], + [ + "▁no", + -7.018628120422363 + ], + [ + "▁only", + -7.022021293640137 + ], + [ + "▁make", + -7.024875164031982 + ], + [ + "▁,", + -7.06172513961792 + ], + [ + "▁You", + -7.070372581481934 + ], + [ + "re", + -7.101592540740967 + ], + [ + "▁If", + -7.110229969024658 + ], + [ + "▁most", + -7.114969730377197 + ], + [ + "▁well", + -7.11997652053833 + ], + [ + "▁may", + -7.1228461265563965 + ], + [ + "▁she", + -7.1233062744140625 + ], + [ + "▁work", + -7.131098747253418 + ], + [ + "▁two", + -7.1377482414245605 + ], + [ + "▁1", + -7.148660659790039 + ], + [ + "▁–", + -7.156854152679443 + ], + [ + "▁these", + -7.156909465789795 + ], + [ + "▁very", + -7.1603899002075195 + ], + [ + "▁use", + -7.174038887023926 + ], + [ + "▁us", + -7.1902031898498535 + ], + [ + "▁'", + -7.195028305053711 + ], + [ + "▁He", + -7.2182416915893555 + ], + [ + "▁way", + -7.218630313873291 + ], + [ + "▁after", + -7.221478462219238 + ], + [ + "▁many", + -7.23982048034668 + ], + [ + "▁could", + -7.24078893661499 + ], + [ + "▁years", + -7.2473015785217285 + ], + [ + "▁need", + -7.249032020568848 + ], + [ + "▁through", + -7.2533159255981445 + ], + [ + "▁know", + -7.2537736892700195 + ], + [ + "▁2", + -7.254401206970215 + ], + [ + "▁then", + -7.256400108337402 + ], + [ + "▁now", + -7.275218486785889 + ], + [ + "▁year", + -7.279636859893799 + ], + [ + "▁back", + -7.287919998168945 + ], + [ + "▁good", + -7.289829730987549 + ], + [ + "▁see", + -7.30565881729126 + ], + [ + "▁where", + -7.324766159057617 + ], + [ + "▁much", + -7.33089017868042 + ], + [ + "▁because", + -7.332029342651367 + ], + [ + "▁even", + -7.352560997009277 + ], + [ + "▁should", + -7.381158351898193 + ], + [ + "▁3", + -7.388257026672363 + ], + [ + "▁such", + -7.39616584777832 + ], + [ + "▁day", + -7.404929161071777 + ], + [ + "d", + -7.413202285766602 + ], + [ + "▁help", + -7.4249958992004395 + ], + [ + "▁want", + -7.4321608543396 + ], + [ + "▁best", + -7.433241844177246 + ], + [ + "▁being", + -7.437198162078857 + ], + [ + "▁made", + -7.452442646026611 + ], + [ + "▁take", + -7.452496528625488 + ], + [ + "▁And", + -7.453657627105713 + ], + [ + "ve", + -7.455406665802002 + ], + [ + "▁before", + -7.456062316894531 + ], + [ + "▁him", + -7.457040786743164 + ], + [ + "▁don", + -7.459134578704834 + ], + [ + "▁$", + -7.467458724975586 + ], + [ + "▁But", + -7.488068580627441 + ], + [ + "▁those", + -7.491278648376465 + ], + [ + "▁here", + -7.5057854652404785 + ], + [ + "▁right", + -7.51711368560791 + ], + [ + "▁go", + -7.51833963394165 + ], + [ + "▁home", + -7.521515369415283 + ], + [ + "▁great", + -7.532033920288086 + ], + [ + "▁used", + -7.539065837860107 + ], + [ + "▁think", + -7.552218437194824 + ], + [ + "▁&", + -7.564727783203125 + ], + [ + "S", + -7.56948184967041 + ], + [ + "▁really", + -7.5752482414245605 + ], + [ + "▁life", + -7.578488349914551 + ], + [ + "▁find", + -7.578620910644531 + ], + [ + "▁For", + -7.586489200592041 + ], + [ + "1", + -7.589986801147461 + ], + [ + "ll", + -7.593456745147705 + ], + [ + "▁last", + -7.596517086029053 + ], + [ + "▁while", + -7.60280704498291 + ], + [ + "▁information", + -7.620732307434082 + ], + [ + "%", + -7.623448848724365 + ], + [ + "▁around", + -7.624897480010986 + ], + [ + "▁off", + -7.628186225891113 + ], + [ + "▁There", + -7.629728317260742 + ], + [ + "▁down", + -7.631466865539551 + ], + [ + "2", + -7.63414192199707 + ], + [ + "▁going", + -7.649209976196289 + ], + [ + "▁world", + -7.652633190155029 + ], + [ + "▁each", + -7.6559014320373535 + ], + [ + "▁still", + -7.660345077514648 + ], + [ + "▁They", + -7.665223121643066 + ], + [ + "▁own", + -7.665489196777344 + ], + [ + "a", + -7.7030534744262695 + ], + [ + "▁4", + -7.703341960906982 + ], + [ + "▁same", + -7.7044830322265625 + ], + [ + "▁long", + -7.709322452545166 + ], + [ + "▁5", + -7.722304344177246 + ], + [ + "▁between", + -7.726352214813232 + ], + [ + "▁What", + -7.729930877685547 + ], + [ + "▁high", + -7.731393814086914 + ], + [ + "▁business", + -7.734927654266357 + ], + [ + "▁too", + -7.7357988357543945 + ], + [ + "▁both", + -7.7370076179504395 + ], + [ + "▁As", + -7.737480640411377 + ], + [ + "▁did", + -7.739621162414551 + ], + [ + "▁part", + -7.742921829223633 + ], + [ + "▁10", + -7.758246421813965 + ], + [ + "▁different", + -7.7763671875 + ], + [ + "▁look", + -7.778420925140381 + ], + [ + "▁every", + -7.781109809875488 + ], + [ + "▁place", + -7.791166305541992 + ], + [ + "▁So", + -7.791812896728516 + ], + [ + "▁love", + -7.796391010284424 + ], + [ + "e", + -7.8068013191223145 + ], + [ + "th", + -7.817499160766602 + ], + [ + "▁three", + -7.8281402587890625 + ], + [ + "I", + -7.831930637359619 + ], + [ + "▁few", + -7.8334269523620605 + ], + [ + "▁using", + -7.836438179016113 + ], + [ + "▁things", + -7.841005802154541 + ], + [ + "▁little", + -7.8455119132995605 + ], + [ + "▁am", + -7.850593566894531 + ], + [ + "▁during", + -7.856110572814941 + ], + [ + "▁company", + -7.874791145324707 + ], + [ + "▁free", + -7.881827354431152 + ], + [ + "▁New", + -7.884216785430908 + ], + [ + "▁When", + -7.88719367980957 + ], + [ + "▁set", + -7.889543533325195 + ], + [ + "▁come", + -7.889712333679199 + ], + [ + "▁always", + -7.909032821655273 + ], + [ + "▁does", + -7.91448974609375 + ], + [ + "▁something", + -7.915238857269287 + ], + [ + "▁system", + -7.930423259735107 + ], + [ + "▁better", + -7.933384895324707 + ], + [ + "▁under", + -7.934290885925293 + ], + [ + "▁family", + -7.934852123260498 + ], + [ + "▁number", + -7.935378074645996 + ], + [ + "▁without", + -7.940354347229004 + ], + [ + "▁next", + -7.940475940704346 + ], + [ + "▁available", + -7.943024635314941 + ], + [ + "▁including", + -7.945444583892822 + ], + [ + "▁another", + -7.949407577514648 + ], + [ + "▁To", + -7.951395511627197 + ], + [ + "▁She", + -7.951730251312256 + ], + [ + "▁say", + -7.958926677703857 + ], + [ + "▁found", + -7.965456008911133 + ], + [ + "▁service", + -7.969894886016846 + ], + [ + "▁", + -7.970246315002441 + ], + [ + "3", + -7.971007823944092 + ], + [ + "▁lot", + -7.9732866287231445 + ], + [ + "ing", + -7.974853038787842 + ], + [ + "▁team", + -7.974880695343018 + ], + [ + "▁That", + -7.976154327392578 + ], + [ + "▁end", + -7.9818949699401855 + ], + [ + "▁data", + -7.983184814453125 + ], + [ + "▁since", + -7.991227149963379 + ], + [ + "▁must", + -7.992891311645508 + ], + [ + "▁experience", + -7.993281364440918 + ], + [ + "▁never", + -7.999676704406738 + ], + [ + "▁got", + -8.020455360412598 + ], + [ + "▁might", + -8.020577430725098 + ], + [ + "▁sure", + -8.029751777648926 + ], + [ + "▁game", + -8.031197547912598 + ], + [ + "▁support", + -8.037379264831543 + ], + [ + "5", + -8.057631492614746 + ], + [ + "▁6", + -8.061527252197266 + ], + [ + "▁able", + -8.062442779541016 + ], + [ + "▁give", + -8.074350357055664 + ], + [ + "000", + -8.075563430786133 + ], + [ + "▁water", + -8.078011512756348 + ], + [ + "▁top", + -8.093605041503906 + ], + [ + "▁provide", + -8.096013069152832 + ], + [ + "▁against", + -8.098567962646484 + ], + [ + "▁—", + -8.098841667175293 + ], + [ + "▁‘", + -8.101156234741211 + ], + [ + "▁online", + -8.105287551879883 + ], + [ + "▁small", + -8.10777473449707 + ], + [ + "▁area", + -8.10799789428711 + ], + [ + "▁days", + -8.109240531921387 + ], + [ + "▁important", + -8.113070487976074 + ], + [ + "▁full", + -8.11390495300293 + ], + [ + "▁again", + -8.121164321899414 + ], + [ + "▁week", + -8.123393058776855 + ], + [ + "▁U", + -8.129072189331055 + ], + [ + "▁services", + -8.12990665435791 + ], + [ + "▁All", + -8.133018493652344 + ], + [ + "▁within", + -8.135037422180176 + ], + [ + "in", + -8.140740394592285 + ], + [ + "▁keep", + -8.141366958618164 + ], + [ + "com", + -8.144430160522461 + ], + [ + "▁book", + -8.150748252868652 + ], + [ + "▁feel", + -8.150765419006348 + ], + [ + "▁put", + -8.153739929199219 + ], + [ + "▁show", + -8.157003402709961 + ], + [ + "4", + -8.166590690612793 + ], + [ + "(", + -8.1712646484375 + ], + [ + "▁order", + -8.171348571777344 + ], + [ + "▁away", + -8.177654266357422 + ], + [ + "A", + -8.179644584655762 + ], + [ + "▁With", + -8.180334091186523 + ], + [ + "▁working", + -8.182650566101074 + ], + [ + "▁today", + -8.185820579528809 + ], + [ + "▁looking", + -8.187315940856934 + ], + [ + "▁school", + -8.188291549682617 + ], + [ + "▁start", + -8.190484046936035 + ], + [ + "▁state", + -8.191048622131348 + ], + [ + "▁site", + -8.195173263549805 + ], + [ + "▁second", + -8.195287704467773 + ], + [ + "▁process", + -8.195648193359375 + ], + [ + "ed", + -8.196213722229004 + ], + [ + "▁making", + -8.200624465942383 + ], + [ + "▁case", + -8.212385177612305 + ], + [ + "▁children", + -8.214910507202148 + ], + [ + "▁My", + -8.224452018737793 + ], + [ + "▁7", + -8.22707462310791 + ], + [ + "▁change", + -8.228530883789062 + ], + [ + "▁thing", + -8.230267524719238 + ], + [ + "▁How", + -8.230799674987793 + ], + [ + "▁8", + -8.246213912963867 + ], + [ + "▁why", + -8.248011589050293 + ], + [ + "▁money", + -8.252334594726562 + ], + [ + "▁Our", + -8.25236701965332 + ], + [ + "▁point", + -8.252485275268555 + ], + [ + "▁until", + -8.253753662109375 + ], + [ + "▁i", + -8.256924629211426 + ], + [ + "▁No", + -8.261804580688477 + ], + [ + "▁course", + -8.262879371643066 + ], + [ + "▁design", + -8.269977569580078 + ], + [ + "▁local", + -8.273029327392578 + ], + [ + "▁On", + -8.280566215515137 + ], + [ + "▁didn", + -8.286759376525879 + ], + [ + "▁having", + -8.288729667663574 + ], + [ + "]", + -8.28892707824707 + ], + [ + "▁One", + -8.291282653808594 + ], + [ + "▁market", + -8.295900344848633 + ], + [ + "▁left", + -8.29773235321045 + ], + [ + "▁group", + -8.299873352050781 + ], + [ + "▁old", + -8.301813125610352 + ], + [ + "▁students", + -8.303215980529785 + ], + [ + "▁care", + -8.304200172424316 + ], + [ + "▁post", + -8.30599308013916 + ], + [ + "▁name", + -8.308266639709473 + ], + [ + "▁20", + -8.314239501953125 + ], + [ + "▁together", + -8.315962791442871 + ], + [ + "▁person", + -8.317983627319336 + ], + [ + "▁per", + -8.321277618408203 + ], + [ + "▁These", + -8.322608947753906 + ], + [ + "▁quality", + -8.322683334350586 + ], + [ + "y", + -8.330179214477539 + ], + [ + "▁real", + -8.33061408996582 + ], + [ + "▁big", + -8.330860137939453 + ], + [ + "▁often", + -8.331233978271484 + ], + [ + "▁play", + -8.338884353637695 + ], + [ + "▁public", + -8.341713905334473 + ], + [ + "▁large", + -8.346471786499023 + ], + [ + "▁open", + -8.34708023071289 + ], + [ + "_", + -8.348142623901367 + ], + [ + "▁power", + -8.351442337036133 + ], + [ + "▁enough", + -8.351860046386719 + ], + [ + "▁done", + -8.352030754089355 + ], + [ + "▁At", + -8.354424476623535 + ], + [ + "▁12", + -8.354873657226562 + ], + [ + "▁health", + -8.357659339904785 + ], + [ + "▁read", + -8.358290672302246 + ], + [ + "▁website", + -8.358527183532715 + ], + [ + "▁less", + -8.359740257263184 + ], + [ + "▁side", + -8.359943389892578 + ], + [ + "▁God", + -8.366392135620117 + ], + [ + "▁possible", + -8.367222785949707 + ], + [ + "▁room", + -8.367329597473145 + ], + [ + "▁offer", + -8.371807098388672 + ], + [ + "▁times", + -8.374143600463867 + ], + [ + "▁ever", + -8.376226425170898 + ], + [ + "▁products", + -8.37671947479248 + ], + [ + "▁needs", + -8.377120971679688 + ], + [ + "The", + -8.380390167236328 + ], + [ + "▁based", + -8.3815336227417 + ], + [ + "▁already", + -8.382102966308594 + ], + [ + "▁become", + -8.383594512939453 + ], + [ + "▁easy", + -8.390649795532227 + ], + [ + "▁car", + -8.390742301940918 + ], + [ + "▁along", + -8.391611099243164 + ], + [ + "▁man", + -8.394974708557129 + ], + [ + "▁After", + -8.395566940307617 + ], + [ + "—", + -8.396578788757324 + ], + [ + "▁food", + -8.399638175964355 + ], + [ + "▁getting", + -8.401721954345703 + ], + [ + "▁[", + -8.405013084411621 + ], + [ + "▁community", + -8.405326843261719 + ], + [ + "er", + -8.406973838806152 + ], + [ + "▁called", + -8.409152030944824 + ], + [ + "▁though", + -8.409486770629883 + ], + [ + "▁says", + -8.417341232299805 + ], + [ + "▁doing", + -8.420838356018066 + ], + [ + "▁four", + -8.422601699829102 + ], + [ + "▁program", + -8.427382469177246 + ], + [ + "▁several", + -8.427777290344238 + ], + [ + "▁hard", + -8.429949760437012 + ], + [ + "▁country", + -8.431191444396973 + ], + [ + "▁far", + -8.432790756225586 + ], + [ + "▁call", + -8.433321952819824 + ], + [ + "▁night", + -8.435227394104004 + ], + [ + "▁S", + -8.436699867248535 + ], + [ + "▁project", + -8.438552856445312 + ], + [ + "▁page", + -8.439428329467773 + ], + [ + "▁body", + -8.439676284790039 + ], + [ + "▁means", + -8.440455436706543 + ], + [ + "i", + -8.440485000610352 + ], + [ + "▁least", + -8.441049575805664 + ], + [ + "▁house", + -8.442648887634277 + ], + [ + "▁came", + -8.448369026184082 + ], + [ + "▁government", + -8.449216842651367 + ], + [ + "▁However", + -8.449971199035645 + ], + [ + "n", + -8.450481414794922 + ], + [ + "▁level", + -8.452653884887695 + ], + [ + "▁actually", + -8.453539848327637 + ], + [ + "▁create", + -8.461668014526367 + ], + [ + "▁research", + -8.462347984313965 + ], + [ + "▁let", + -8.46381664276123 + ], + [ + "▁across", + -8.46512508392334 + ], + [ + "▁include", + -8.465928077697754 + ], + [ + "▁took", + -8.467795372009277 + ], + [ + "▁makes", + -8.468666076660156 + ], + [ + "▁line", + -8.470358848571777 + ], + [ + "▁run", + -8.47054672241211 + ], + [ + "▁live", + -8.472572326660156 + ], + [ + "▁list", + -8.472654342651367 + ], + [ + "▁try", + -8.475236892700195 + ], + [ + "▁job", + -8.478621482849121 + ], + [ + "▁University", + -8.479227066040039 + ], + [ + "▁others", + -8.480298042297363 + ], + [ + "D", + -8.481586456298828 + ], + [ + "▁2018", + -8.48314380645752 + ], + [ + "0", + -8.48383617401123 + ], + [ + "▁women", + -8.48923110961914 + ], + [ + "▁past", + -8.4912691116333 + ], + [ + "▁started", + -8.49231243133545 + ], + [ + "▁story", + -8.492725372314453 + ], + [ + "or", + -8.492963790893555 + ], + [ + "▁comes", + -8.49368953704834 + ], + [ + "▁went", + -8.49519157409668 + ], + [ + "ly", + -8.495499610900879 + ], + [ + "▁doesn", + -8.497597694396973 + ], + [ + "▁30", + -8.50110149383545 + ], + [ + "▁once", + -8.501928329467773 + ], + [ + "▁million", + -8.503528594970703 + ], + [ + "▁15", + -8.5056791305542 + ], + [ + "▁city", + -8.510326385498047 + ], + [ + "▁thought", + -8.510361671447754 + ], + [ + "▁season", + -8.512474060058594 + ], + [ + "▁price", + -8.513236045837402 + ], + [ + "C", + -8.516657829284668 + ], + [ + "▁9", + -8.51709270477295 + ], + [ + "▁fact", + -8.521280288696289 + ], + [ + "▁product", + -8.522011756896973 + ], + [ + "and", + -8.522971153259277 + ], + [ + "▁C", + -8.524751663208008 + ], + [ + "▁bit", + -8.526384353637695 + ], + [ + "▁de", + -8.527113914489746 + ], + [ + "▁control", + -8.530609130859375 + ], + [ + "▁event", + -8.530961990356445 + ], + [ + "▁hand", + -8.532280921936035 + ], + [ + "▁won", + -8.532316207885742 + ], + [ + "▁future", + -8.533459663391113 + ], + [ + "the", + -8.53459644317627 + ], + [ + "to", + -8.537704467773438 + ], + [ + "▁form", + -8.539010047912598 + ], + [ + "▁development", + -8.540507316589355 + ], + [ + "▁social", + -8.540544509887695 + ], + [ + "▁yet", + -8.54297161102295 + ], + [ + "▁Your", + -8.548614501953125 + ], + [ + "▁light", + -8.554759979248047 + ], + [ + "▁told", + -8.555274963378906 + ], + [ + "▁American", + -8.55747127532959 + ], + [ + "▁later", + -8.559404373168945 + ], + [ + "▁problem", + -8.563830375671387 + ], + [ + "▁B", + -8.564983367919922 + ], + [ + "▁early", + -8.565017700195312 + ], + [ + "▁example", + -8.567883491516113 + ], + [ + "▁access", + -8.570626258850098 + ], + [ + "▁months", + -8.573515892028809 + ], + [ + "▁plan", + -8.576912879943848 + ], + [ + "▁members", + -8.581891059875488 + ], + [ + "▁hours", + -8.5847806930542 + ], + [ + "▁given", + -8.587932586669922 + ], + [ + "▁non", + -8.588562965393066 + ], + [ + "▁download", + -8.59390640258789 + ], + [ + "▁kind", + -8.595368385314941 + ], + [ + "▁below", + -8.595745086669922 + ], + [ + "▁M", + -8.596452713012695 + ], + [ + "▁video", + -8.596698760986328 + ], + [ + "▁cost", + -8.597728729248047 + ], + [ + "▁share", + -8.599540710449219 + ], + [ + "▁personal", + -8.600284576416016 + ], + [ + "▁space", + -8.601310729980469 + ], + [ + "▁music", + -8.604588508605957 + ], + [ + "▁known", + -8.606216430664062 + ], + [ + "▁seen", + -8.609288215637207 + ], + [ + "▁everything", + -8.614863395690918 + ], + [ + "▁low", + -8.616067886352539 + ], + [ + "▁someone", + -8.617532730102539 + ], + [ + "▁head", + -8.61980152130127 + ], + [ + "▁11", + -8.627371788024902 + ], + [ + "▁current", + -8.630043029785156 + ], + [ + "▁above", + -8.635753631591797 + ], + [ + "6", + -8.636775970458984 + ], + [ + "▁companies", + -8.642233848571777 + ], + [ + "▁0", + -8.642699241638184 + ], + [ + "▁minutes", + -8.643045425415039 + ], + [ + "▁industry", + -8.644559860229492 + ], + [ + "▁believe", + -8.645662307739258 + ], + [ + "▁Do", + -8.647112846374512 + ], + [ + "▁value", + -8.648430824279785 + ], + [ + "▁five", + -8.649113655090332 + ], + [ + "▁friends", + -8.652191162109375 + ], + [ + "▁due", + -8.652201652526855 + ], + [ + "▁following", + -8.652593612670898 + ], + [ + "▁single", + -8.657072067260742 + ], + [ + "▁range", + -8.660077095031738 + ], + [ + "▁special", + -8.664332389831543 + ], + [ + "▁United", + -8.66539478302002 + ], + [ + "▁idea", + -8.672391891479492 + ], + [ + "▁short", + -8.672514915466309 + ], + [ + "▁whole", + -8.67253589630127 + ], + [ + "▁anything", + -8.67381763458252 + ], + [ + "▁fun", + -8.67623519897461 + ], + [ + "▁whether", + -8.678324699401855 + ], + [ + "▁taking", + -8.678747177124023 + ], + [ + "▁month", + -8.679713249206543 + ], + [ + "▁contact", + -8.682998657226562 + ], + [ + "▁Now", + -8.68407917022705 + ], + [ + "▁mind", + -8.684186935424805 + ], + [ + "▁building", + -8.684945106506348 + ], + [ + "▁results", + -8.68533992767334 + ], + [ + "▁pay", + -8.68620491027832 + ], + [ + "o", + -8.691787719726562 + ], + [ + "▁understand", + -8.693076133728027 + ], + [ + "▁study", + -8.69332218170166 + ], + [ + "▁2017", + -8.696728706359863 + ], + [ + "▁learn", + -8.701272964477539 + ], + [ + "▁add", + -8.70366382598877 + ], + [ + "▁perfect", + -8.706212043762207 + ], + [ + "▁D", + -8.707818984985352 + ], + [ + "▁100", + -8.711563110351562 + ], + [ + "8", + -8.715822219848633 + ], + [ + "▁While", + -8.715943336486816 + ], + [ + "▁media", + -8.716322898864746 + ], + [ + "▁check", + -8.717363357543945 + ], + [ + "▁issues", + -8.717427253723145 + ], + [ + "▁buy", + -8.717594146728516 + ], + [ + "▁type", + -8.72264289855957 + ], + [ + "▁please", + -8.722976684570312 + ], + [ + "▁face", + -8.723129272460938 + ], + [ + "▁series", + -8.724066734313965 + ], + [ + "▁either", + -8.72440242767334 + ], + [ + "▁report", + -8.726677894592285 + ], + [ + "▁An", + -8.735485076904297 + ], + [ + "▁quite", + -8.73647403717041 + ], + [ + "▁law", + -8.73819351196289 + ], + [ + "7", + -8.738869667053223 + ], + [ + "▁history", + -8.743756294250488 + ], + [ + "▁living", + -8.743796348571777 + ], + [ + "▁content", + -8.745156288146973 + ], + [ + "▁almost", + -8.746249198913574 + ], + [ + "▁ago", + -8.748613357543945 + ], + [ + "▁move", + -8.751218795776367 + ], + [ + "▁offers", + -8.751452445983887 + ], + [ + "▁half", + -8.75301456451416 + ], + [ + "▁close", + -8.753256797790527 + ], + [ + "▁E", + -8.755291938781738 + ], + [ + "▁features", + -8.755489349365234 + ], + [ + "▁front", + -8.759681701660156 + ], + [ + "▁office", + -8.759818077087402 + ], + [ + "▁trying", + -8.759984016418457 + ], + [ + "r", + -8.762212753295898 + ], + [ + "▁technology", + -8.765852928161621 + ], + [ + "▁visit", + -8.767491340637207 + ], + [ + "▁everyone", + -8.768145561218262 + ], + [ + "▁training", + -8.769407272338867 + ], + [ + "▁further", + -8.770200729370117 + ], + [ + "▁/", + -8.77141284942627 + ], + [ + "▁questions", + -8.772226333618164 + ], + [ + "▁men", + -8.772404670715332 + ], + [ + "▁energy", + -8.772476196289062 + ], + [ + "▁City", + -8.773591041564941 + ], + [ + "▁p", + -8.774006843566895 + ], + [ + "▁US", + -8.774105072021484 + ], + [ + "▁various", + -8.774356842041016 + ], + [ + "▁tell", + -8.777875900268555 + ], + [ + "▁wanted", + -8.779167175292969 + ], + [ + "▁complete", + -8.780848503112793 + ], + [ + "▁J", + -8.781152725219727 + ], + [ + "▁major", + -8.782032012939453 + ], + [ + "▁child", + -8.783687591552734 + ], + [ + "▁taken", + -8.784605979919434 + ], + [ + "▁His", + -8.785611152648926 + ], + [ + "▁young", + -8.788010597229004 + ], + [ + "▁human", + -8.78947925567627 + ], + [ + "▁needed", + -8.790260314941406 + ], + [ + "▁added", + -8.79063606262207 + ], + [ + "▁simple", + -8.790650367736816 + ], + [ + "▁bring", + -8.795502662658691 + ], + [ + "▁games", + -8.80052661895752 + ], + [ + "▁Please", + -8.800553321838379 + ], + [ + "▁percent", + -8.80134105682373 + ], + [ + "▁e", + -8.803502082824707 + ], + [ + "▁view", + -8.803804397583008 + ], + [ + "▁State", + -8.805331230163574 + ], + [ + "▁result", + -8.805497169494629 + ], + [ + "▁especially", + -8.807546615600586 + ], + [ + "▁property", + -8.809863090515137 + ], + [ + "▁email", + -8.810333251953125 + ], + [ + "▁main", + -8.810341835021973 + ], + [ + "▁probably", + -8.811969757080078 + ], + [ + "▁beautiful", + -8.81286334991455 + ], + [ + "▁hope", + -8.8130521774292 + ], + [ + "▁performance", + -8.8148193359375 + ], + [ + "▁:", + -8.814983367919922 + ], + [ + "▁likely", + -8.815154075622559 + ], + [ + "▁Some", + -8.816584587097168 + ], + [ + "▁among", + -8.81668758392334 + ], + [ + "▁white", + -8.817681312561035 + ], + [ + "▁coming", + -8.817991256713867 + ], + [ + "▁third", + -8.818190574645996 + ], + [ + "▁size", + -8.81962776184082 + ], + [ + "▁works", + -8.824016571044922 + ], + [ + "▁required", + -8.824787139892578 + ], + [ + "▁customers", + -8.8250150680542 + ], + [ + "▁provides", + -8.827706336975098 + ], + [ + "▁issue", + -8.828973770141602 + ], + [ + "▁pretty", + -8.82979679107666 + ], + [ + "▁simply", + -8.829955101013184 + ], + [ + "▁2016", + -8.830020904541016 + ], + [ + "▁areas", + -8.830540657043457 + ], + [ + "10", + -8.830676078796387 + ], + [ + "▁management", + -8.832720756530762 + ], + [ + "▁key", + -8.833662033081055 + ], + [ + "▁T", + -8.835512161254883 + ], + [ + "▁writing", + -8.836882591247559 + ], + [ + "▁rather", + -8.843472480773926 + ], + [ + "▁question", + -8.844648361206055 + ], + [ + "▁however", + -8.844776153564453 + ], + [ + "▁National", + -8.845512390136719 + ], + [ + "▁May", + -8.848843574523926 + ], + [ + "▁professional", + -8.848918914794922 + ], + [ + "▁age", + -8.849081039428711 + ], + [ + "▁amount", + -8.849568367004395 + ], + [ + "▁deal", + -8.850377082824707 + ], + [ + "▁addition", + -8.851991653442383 + ], + [ + "▁R", + -8.854236602783203 + ], + [ + "▁present", + -8.856568336486816 + ], + [ + "▁points", + -8.860687255859375 + ], + [ + "▁matter", + -8.860782623291016 + ], + [ + "▁clear", + -8.86398983001709 + ], + [ + "▁account", + -8.8653564453125 + ], + [ + "▁party", + -8.865364074707031 + ], + [ + "▁P", + -8.865816116333008 + ], + [ + "▁lead", + -8.867566108703613 + ], + [ + "▁John", + -8.868135452270508 + ], + [ + "▁reason", + -8.868545532226562 + ], + [ + "▁York", + -8.869035720825195 + ], + [ + "▁asked", + -8.869551658630371 + ], + [ + "▁16", + -8.874039649963379 + ], + [ + "▁South", + -8.875597953796387 + ], + [ + "▁heart", + -8.875980377197266 + ], + [ + "▁air", + -8.87786865234375 + ], + [ + "▁period", + -8.87872314453125 + ], + [ + "▁By", + -8.878933906555176 + ], + [ + "▁isn", + -8.88334846496582 + ], + [ + "▁enjoy", + -8.883713722229004 + ], + [ + "▁turn", + -8.883920669555664 + ], + [ + "▁behind", + -8.8842191696167 + ], + [ + "▁phone", + -8.884604454040527 + ], + [ + "▁film", + -8.885493278503418 + ], + [ + "▁self", + -8.886770248413086 + ], + [ + "on", + -8.888283729553223 + ], + [ + "▁14", + -8.888327598571777 + ], + [ + "▁black", + -8.889460563659668 + ], + [ + "▁class", + -8.89085865020752 + ], + [ + "▁forward", + -8.89193344116211 + ], + [ + "▁18", + -8.892549514770508 + ], + [ + "▁near", + -8.893939018249512 + ], + [ + "▁nothing", + -8.895577430725098 + ], + [ + "year", + -8.895914077758789 + ], + [ + "▁Here", + -8.896350860595703 + ], + [ + "▁Mr", + -8.896374702453613 + ], + [ + "▁field", + -8.898076057434082 + ], + [ + "▁problems", + -8.898094177246094 + ], + [ + "g", + -8.898459434509277 + ], + [ + "▁provided", + -8.898820877075195 + ], + [ + "▁soon", + -8.900126457214355 + ], + [ + "▁Not", + -8.900153160095215 + ], + [ + "▁mean", + -8.90147590637207 + ], + [ + "▁#", + -8.902661323547363 + ], + [ + "▁outside", + -8.902719497680664 + ], + [ + "▁yourself", + -8.907879829406738 + ], + [ + "▁blog", + -8.908781051635742 + ], + [ + "▁meet", + -8.90914249420166 + ], + [ + "–", + -8.91041374206543 + ], + [ + "▁continue", + -8.910462379455566 + ], + [ + "▁50", + -8.910703659057617 + ], + [ + "▁re", + -8.91125202178955 + ], + [ + "00", + -8.911582946777344 + ], + [ + "▁insurance", + -8.91205883026123 + ], + [ + "▁World", + -8.91589069366455 + ], + [ + "▁etc", + -8.916739463806152 + ], + [ + "▁bad", + -8.917031288146973 + ], + [ + "▁web", + -8.918144226074219 + ], + [ + "▁held", + -8.920256614685059 + ], + [ + "▁24", + -8.922913551330566 + ], + [ + "▁according", + -8.923940658569336 + ], + [ + "▁security", + -8.925552368164062 + ], + [ + "▁designed", + -8.925698280334473 + ], + [ + "▁art", + -8.925934791564941 + ], + [ + "&", + -8.927717208862305 + ], + [ + "▁North", + -8.928349494934082 + ], + [ + "▁events", + -8.929179191589355 + ], + [ + "▁25", + -8.930408477783203 + ], + [ + "▁kids", + -8.931020736694336 + ], + [ + "▁staff", + -8.931883811950684 + ], + [ + "▁true", + -8.931984901428223 + ], + [ + "▁interest", + -8.934844970703125 + ], + [ + "x", + -8.937308311462402 + ], + [ + "B", + -8.941444396972656 + ], + [ + "▁news", + -8.941478729248047 + ], + [ + "▁role", + -8.942450523376465 + ], + [ + "▁strong", + -8.942620277404785 + ], + [ + "▁St", + -8.94273567199707 + ], + [ + "▁unique", + -8.94327449798584 + ], + [ + "▁13", + -8.943276405334473 + ], + [ + "▁address", + -8.944259643554688 + ], + [ + "▁certain", + -8.944456100463867 + ], + [ + "▁stay", + -8.94594955444336 + ], + [ + "▁increase", + -8.946386337280273 + ], + [ + "▁created", + -8.946697235107422 + ], + [ + "▁else", + -8.946951866149902 + ], + [ + "▁specific", + -8.947209358215332 + ], + [ + "▁running", + -8.947583198547363 + ], + [ + "▁couple", + -8.947600364685059 + ], + [ + "▁financial", + -8.947912216186523 + ], + [ + "▁ideas", + -8.949163436889648 + ], + [ + "▁stop", + -8.949594497680664 + ], + [ + "▁Trump", + -8.949740409851074 + ], + [ + "▁choose", + -8.950437545776367 + ], + [ + "▁search", + -8.952004432678223 + ], + [ + "▁happy", + -8.952452659606934 + ], + [ + "▁includes", + -8.95305347442627 + ], + [ + "▁From", + -8.953784942626953 + ], + [ + "▁natural", + -8.954963684082031 + ], + [ + "▁style", + -8.954963684082031 + ], + [ + "▁test", + -8.956530570983887 + ], + [ + "▁Dr", + -8.956681251525879 + ], + [ + "▁anyone", + -8.95709228515625 + ], + [ + "▁inside", + -8.958050727844238 + ], + [ + "▁March", + -8.958062171936035 + ], + [ + "▁seems", + -8.9581880569458 + ], + [ + "▁action", + -8.958266258239746 + ], + [ + "▁States", + -8.958630561828613 + ], + [ + "▁received", + -8.95884895324707 + ], + [ + "▁common", + -8.959213256835938 + ], + [ + "▁original", + -8.962357521057129 + ], + [ + "▁leave", + -8.963619232177734 + ], + [ + "▁position", + -8.96441650390625 + ], + [ + "▁words", + -8.96531867980957 + ], + [ + "▁ask", + -8.967134475708008 + ], + [ + "up", + -8.967683792114258 + ], + [ + "▁higher", + -8.9688720703125 + ], + [ + "▁options", + -8.969030380249023 + ], + [ + "▁changes", + -8.969977378845215 + ], + [ + "▁ways", + -8.971959114074707 + ], + [ + "▁article", + -8.972760200500488 + ], + [ + "▁recent", + -8.972975730895996 + ], + [ + "▁longer", + -8.97397518157959 + ], + [ + "▁weeks", + -8.974271774291992 + ], + [ + "▁member", + -8.974984169006348 + ], + [ + "▁treatment", + -8.976972579956055 + ], + [ + "▁software", + -8.97769832611084 + ], + [ + "▁cannot", + -8.97879695892334 + ], + [ + "▁version", + -8.9791898727417 + ], + [ + "▁rate", + -8.979532241821289 + ], + [ + "▁model", + -8.9798583984375 + ], + [ + "▁ready", + -8.979949951171875 + ], + [ + "▁general", + -8.983695983886719 + ], + [ + "▁date", + -8.98498821258545 + ], + [ + "▁build", + -8.985115051269531 + ], + [ + "▁details", + -8.986693382263184 + ], + [ + "▁takes", + -8.987515449523926 + ], + [ + "▁total", + -8.989469528198242 + ], + [ + "▁usually", + -8.990011215209961 + ], + [ + "▁currently", + -8.990659713745117 + ], + [ + "▁systems", + -8.991693496704102 + ], + [ + "▁risk", + -8.992403030395508 + ], + [ + "▁allow", + -8.993337631225586 + ], + [ + "▁saw", + -8.9938383102417 + ], + [ + "▁2015", + -8.995988845825195 + ], + [ + "▁application", + -8.996264457702637 + ], + [ + "▁individual", + -8.998272895812988 + ], + [ + "▁shows", + -8.998448371887207 + ], + [ + "▁similar", + -8.998948097229004 + ], + [ + "▁School", + -9.0015230178833 + ], + [ + "▁Then", + -9.003926277160645 + ], + [ + "▁final", + -9.004725456237793 + ], + [ + "▁opportunity", + -9.005702018737793 + ], + [ + "▁Just", + -9.006034851074219 + ], + [ + "▁upon", + -9.006440162658691 + ], + [ + "▁ensure", + -9.006760597229004 + ], + [ + "▁morning", + -9.006904602050781 + ], + [ + "▁return", + -9.010836601257324 + ], + [ + "▁potential", + -9.011421203613281 + ], + [ + "▁receive", + -9.012179374694824 + ], + [ + "▁particular", + -9.013322830200195 + ], + [ + "▁Of", + -9.013583183288574 + ], + [ + "▁talk", + -9.013773918151855 + ], + [ + "▁six", + -9.014936447143555 + ], + [ + "▁growth", + -9.015668869018555 + ], + [ + "▁throughout", + -9.015695571899414 + ], + [ + "30", + -9.015926361083984 + ], + [ + "▁reading", + -9.01705265045166 + ], + [ + "▁review", + -9.017544746398926 + ], + [ + "▁win", + -9.018136978149414 + ], + [ + "▁oil", + -9.018158912658691 + ], + [ + "▁card", + -9.018830299377441 + ], + [ + "▁education", + -9.021178245544434 + ], + [ + "▁President", + -9.022686958312988 + ], + [ + "▁!", + -9.025724411010742 + ], + [ + "▁nice", + -9.027874946594238 + ], + [ + "We", + -9.029495239257812 + ], + [ + "▁focus", + -9.031225204467773 + ], + [ + "9", + -9.032797813415527 + ], + [ + "▁paper", + -9.033164024353027 + ], + [ + "▁rest", + -9.034090042114258 + ], + [ + "▁County", + -9.035452842712402 + ], + [ + "▁file", + -9.03599739074707 + ], + [ + "▁L", + -9.037057876586914 + ], + [ + "▁private", + -9.039891242980957 + ], + [ + "▁step", + -9.041748046875 + ], + [ + "▁via", + -9.042872428894043 + ], + [ + "▁House", + -9.045331954956055 + ], + [ + "▁G", + -9.046903610229492 + ], + [ + "▁customer", + -9.049695014953613 + ], + [ + "▁sense", + -9.049907684326172 + ], + [ + "▁learning", + -9.051631927490234 + ], + [ + "▁?", + -9.051807403564453 + ], + [ + "▁worked", + -9.052260398864746 + ], + [ + "▁recently", + -9.053183555603027 + ], + [ + "▁practice", + -9.05338191986084 + ], + [ + "▁store", + -9.054056167602539 + ], + [ + "▁F", + -9.054182052612305 + ], + [ + "▁table", + -9.05567741394043 + ], + [ + "▁late", + -9.058436393737793 + ], + [ + "es", + -9.060649871826172 + ], + [ + "▁follow", + -9.062299728393555 + ], + [ + "▁2019", + -9.064438819885254 + ], + [ + "▁myself", + -9.065335273742676 + ], + [ + "▁additional", + -9.065906524658203 + ], + [ + "▁image", + -9.068554878234863 + ], + [ + "▁books", + -9.069523811340332 + ], + [ + "▁production", + -9.06995964050293 + ], + [ + "▁knowledge", + -9.070379257202148 + ], + [ + "▁built", + -9.071279525756836 + ], + [ + "▁latest", + -9.074219703674316 + ], + [ + "▁America", + -9.074299812316895 + ], + [ + "▁meeting", + -9.07534408569336 + ], + [ + "▁popular", + -9.075346946716309 + ], + [ + "▁*", + -9.076077461242676 + ], + [ + "▁lost", + -9.076900482177734 + ], + [ + "▁quickly", + -9.077079772949219 + ], + [ + "▁looks", + -9.077255249023438 + ], + [ + "▁entire", + -9.079809188842773 + ], + [ + "▁decision", + -9.080122947692871 + ], + [ + "▁O", + -9.081387519836426 + ], + [ + "▁lives", + -9.081697463989258 + ], + [ + "▁policy", + -9.083015441894531 + ], + [ + "▁users", + -9.084623336791992 + ], + [ + "▁cover", + -9.085227966308594 + ], + [ + "M", + -9.085281372070312 + ], + [ + "▁items", + -9.085403442382812 + ], + [ + "▁located", + -9.087261199951172 + ], + [ + "▁cause", + -9.090335845947266 + ], + [ + "▁hit", + -9.0939359664917 + ], + [ + "▁included", + -9.095030784606934 + ], + [ + "▁choice", + -9.095362663269043 + ], + [ + "▁death", + -9.096648216247559 + ], + [ + "▁user", + -9.097076416015625 + ], + [ + "▁related", + -9.098254203796387 + ], + [ + "▁instead", + -9.098884582519531 + ], + [ + "▁material", + -9.099546432495117 + ], + [ + "▁themselves", + -9.099691390991211 + ], + [ + "▁K", + -9.099908828735352 + ], + [ + "▁N", + -9.10116195678711 + ], + [ + "▁wasn", + -9.10218334197998 + ], + [ + "▁2014", + -9.103550910949707 + ], + [ + "▁former", + -9.104100227355957 + ], + [ + "▁players", + -9.104280471801758 + ], + [ + "▁17", + -9.104662895202637 + ], + [ + "▁international", + -9.10671329498291 + ], + [ + "▁friend", + -9.107524871826172 + ], + [ + "▁activities", + -9.107871055603027 + ], + [ + "▁skin", + -9.108161926269531 + ], + [ + "▁medical", + -9.108379364013672 + ], + [ + "▁sales", + -9.108661651611328 + ], + [ + "▁itself", + -9.111454963684082 + ], + [ + "▁record", + -9.11286735534668 + ], + [ + "▁color", + -9.113847732543945 + ], + [ + "▁police", + -9.11386775970459 + ], + [ + "k", + -9.114543914794922 + ], + [ + "▁easily", + -9.115396499633789 + ], + [ + "▁Why", + -9.116394996643066 + ], + [ + "▁drive", + -9.117105484008789 + ], + [ + "▁terms", + -9.117694854736328 + ], + [ + "▁moment", + -9.117883682250977 + ], + [ + "▁patients", + -9.11987590789795 + ], + [ + "▁June", + -9.122637748718262 + ], + [ + "based", + -9.122709274291992 + ], + [ + "▁cut", + -9.123519897460938 + ], + [ + "▁giving", + -9.124224662780762 + ], + [ + "▁Center", + -9.125554084777832 + ], + [ + "▁chance", + -9.12672233581543 + ], + [ + "▁Friday", + -9.126982688903809 + ], + [ + "▁difficult", + -9.127243041992188 + ], + [ + "▁word", + -9.128640174865723 + ], + [ + "▁became", + -9.129599571228027 + ], + [ + "▁wide", + -9.131192207336426 + ], + [ + "▁write", + -9.132290840148926 + ], + [ + "▁Also", + -9.13305377960205 + ], + [ + "▁playing", + -9.13342571258545 + ], + [ + "+", + -9.134111404418945 + ], + [ + "▁clients", + -9.134300231933594 + ], + [ + "▁skills", + -9.134940147399902 + ], + [ + "▁tax", + -9.13556957244873 + ], + [ + "▁involved", + -9.135930061340332 + ], + [ + "▁network", + -9.136528968811035 + ], + [ + "▁environment", + -9.138350486755371 + ], + [ + "T", + -9.1393404006958 + ], + [ + "▁Can", + -9.139419555664062 + ], + [ + "▁Thanks", + -9.143457412719727 + ], + [ + "▁began", + -9.14359188079834 + ], + [ + "▁code", + -9.144445419311523 + ], + [ + "▁political", + -9.144811630249023 + ], + [ + "▁felt", + -9.145159721374512 + ], + [ + "▁national", + -9.145537376403809 + ], + [ + "▁amazing", + -9.146663665771484 + ], + [ + "▁summer", + -9.14793586730957 + ], + [ + "▁parents", + -9.148456573486328 + ], + [ + "▁x", + -9.148921012878418 + ], + [ + "▁projects", + -9.149515151977539 + ], + [ + "▁career", + -9.149922370910645 + ], + [ + "c", + -9.150287628173828 + ], + [ + "▁China", + -9.151002883911133 + ], + [ + "▁option", + -9.153243064880371 + ], + [ + "▁average", + -9.153549194335938 + ], + [ + "▁ability", + -9.154882431030273 + ], + [ + "▁road", + -9.155622482299805 + ], + [ + "▁save", + -9.155900955200195 + ], + [ + "▁computer", + -9.156171798706055 + ], + [ + "▁lower", + -9.157581329345703 + ], + [ + "▁decided", + -9.157910346984863 + ], + [ + "▁April", + -9.157967567443848 + ], + [ + "▁approach", + -9.158400535583496 + ], + [ + "▁door", + -9.159598350524902 + ], + [ + "▁woman", + -9.159952163696289 + ], + [ + "▁remember", + -9.160022735595703 + ], + [ + "▁UK", + -9.160368919372559 + ], + [ + "▁written", + -9.162182807922363 + ], + [ + "▁brand", + -9.163467407226562 + ], + [ + "*", + -9.163825988769531 + ], + [ + "▁countries", + -9.164687156677246 + ], + [ + "▁extra", + -9.16787338256836 + ], + [ + "▁success", + -9.168522834777832 + ], + [ + "▁hold", + -9.16887378692627 + ], + [ + "P", + -9.17064094543457 + ], + [ + "▁worth", + -9.173338890075684 + ], + [ + "▁conditions", + -9.173572540283203 + ], + [ + "▁H", + -9.174779891967773 + ], + [ + "▁student", + -9.175553321838379 + ], + [ + "▁sound", + -9.177239418029785 + ], + [ + "▁credit", + -9.177868843078613 + ], + [ + "▁favorite", + -9.179926872253418 + ], + [ + "▁goal", + -9.180166244506836 + ], + [ + "▁impact", + -9.180182456970215 + ], + [ + "▁town", + -9.18089485168457 + ], + [ + "▁necessary", + -9.18131160736084 + ], + [ + "▁goes", + -9.181915283203125 + ], + [ + "▁shall", + -9.182244300842285 + ], + [ + "▁First", + -9.185235977172852 + ], + [ + "▁hair", + -9.185416221618652 + ], + [ + "man", + -9.188404083251953 + ], + [ + "▁board", + -9.19015884399414 + ], + [ + "▁travel", + -9.190505027770996 + ], + [ + "▁leading", + -9.190847396850586 + ], + [ + "▁location", + -9.191832542419434 + ], + [ + "▁attention", + -9.19351577758789 + ], + [ + "▁modern", + -9.194031715393066 + ], + [ + "▁sent", + -9.19509220123291 + ], + [ + "▁plans", + -9.196223258972168 + ], + [ + "▁gave", + -9.197175025939941 + ], + [ + "▁expected", + -9.197949409484863 + ], + [ + "▁interesting", + -9.199520111083984 + ], + [ + "▁Most", + -9.199850082397461 + ], + [ + "▁21", + -9.200383186340332 + ], + [ + "▁West", + -9.20042610168457 + ], + [ + "▁variety", + -9.201205253601074 + ], + [ + "▁levels", + -9.202109336853027 + ], + [ + "▁)", + -9.202496528625488 + ], + [ + "▁standard", + -9.203265190124512 + ], + [ + "▁loss", + -9.203312873840332 + ], + [ + "▁saying", + -9.203989028930664 + ], + [ + "▁red", + -9.20435905456543 + ], + [ + "▁consider", + -9.2045316696167 + ], + [ + "▁Park", + -9.20572280883789 + ], + [ + "▁release", + -9.207803726196289 + ], + [ + "▁source", + -9.209219932556152 + ], + [ + "▁weight", + -9.209427833557129 + ], + [ + "▁parts", + -9.209855079650879 + ], + [ + "▁fast", + -9.211408615112305 + ], + [ + "▁hear", + -9.211909294128418 + ], + [ + "E", + -9.212146759033203 + ], + [ + "▁July", + -9.212430000305176 + ], + [ + "▁January", + -9.212895393371582 + ], + [ + "▁allows", + -9.21349048614502 + ], + [ + "▁India", + -9.215753555297852 + ], + [ + "▁cases", + -9.216618537902832 + ], + [ + "▁International", + -9.216771125793457 + ], + [ + "▁collection", + -9.217636108398438 + ], + [ + "▁subject", + -9.218011856079102 + ], + [ + "b", + -9.219350814819336 + ], + [ + "▁Day", + -9.219408988952637 + ], + [ + "▁effective", + -9.219706535339355 + ], + [ + "▁huge", + -9.220379829406738 + ], + [ + "▁Even", + -9.221895217895508 + ], + [ + "▁effect", + -9.221936225891113 + ], + [ + "▁thinking", + -9.223248481750488 + ], + [ + "▁2013", + -9.224183082580566 + ], + [ + "▁stock", + -9.22475814819336 + ], + [ + "▁costs", + -9.226786613464355 + ], + [ + "▁safe", + -9.228384971618652 + ], + [ + "▁sale", + -9.228684425354004 + ], + [ + "▁40", + -9.229071617126465 + ], + [ + "▁completely", + -9.229873657226562 + ], + [ + "▁wrong", + -9.232510566711426 + ], + [ + "▁improve", + -9.234786987304688 + ], + [ + "K", + -9.235604286193848 + ], + [ + "▁piece", + -9.235921859741211 + ], + [ + "▁groups", + -9.236665725708008 + ], + [ + "▁Many", + -9.239704132080078 + ], + [ + "▁marketing", + -9.239974975585938 + ], + [ + "▁providing", + -9.240670204162598 + ], + [ + "▁global", + -9.240986824035645 + ], + [ + "▁purchase", + -9.242620468139648 + ], + [ + "▁programs", + -9.24276065826416 + ], + [ + "▁Don", + -9.243921279907227 + ], + [ + "▁land", + -9.245536804199219 + ], + [ + "▁hands", + -9.24599552154541 + ], + [ + "▁played", + -9.246150016784668 + ], + [ + "▁watch", + -9.246692657470703 + ], + [ + "▁released", + -9.24671459197998 + ], + [ + "▁19", + -9.246996879577637 + ], + [ + "▁section", + -9.247142791748047 + ], + [ + "▁significant", + -9.248072624206543 + ], + [ + "en", + -9.24905776977539 + ], + [ + "▁court", + -9.25078296661377 + ], + [ + "▁link", + -9.25137710571289 + ], + [ + "▁knew", + -9.25139331817627 + ], + [ + "▁daily", + -9.251526832580566 + ], + [ + "▁equipment", + -9.25196647644043 + ], + [ + "It", + -9.252540588378906 + ], + [ + "▁Inc", + -9.253641128540039 + ], + [ + "▁solution", + -9.25472640991211 + ], + [ + "▁relationship", + -9.254828453063965 + ], + [ + "▁seem", + -9.255372047424316 + ], + [ + "▁answer", + -9.255863189697266 + ], + [ + "▁heard", + -9.258034706115723 + ], + [ + "▁device", + -9.2582368850708 + ], + [ + "▁Sunday", + -9.258363723754883 + ], + [ + "▁legal", + -9.261858940124512 + ], + [ + "▁rights", + -9.262262344360352 + ], + [ + "▁London", + -9.262462615966797 + ], + [ + "▁multiple", + -9.26267147064209 + ], + [ + "▁born", + -9.26278305053711 + ], + [ + "▁send", + -9.262795448303223 + ], + [ + "▁fit", + -9.264187812805176 + ], + [ + "▁TV", + -9.264302253723145 + ], + [ + "▁English", + -9.264863014221191 + ], + [ + "▁safety", + -9.265379905700684 + ], + [ + "▁highly", + -9.266619682312012 + ], + [ + "▁Saturday", + -9.266654014587402 + ], + [ + "▁mother", + -9.267752647399902 + ], + [ + "▁clean", + -9.26937198638916 + ], + [ + "▁pre", + -9.269576072692871 + ], + [ + "R", + -9.269594192504883 + ], + [ + "▁2012", + -9.270713806152344 + ], + [ + "▁fire", + -9.271021842956543 + ], + [ + "▁box", + -9.273614883422852 + ], + [ + "▁ground", + -9.275607109069824 + ], + [ + "▁Google", + -9.276130676269531 + ], + [ + "▁picture", + -9.276564598083496 + ], + [ + "▁towards", + -9.277381896972656 + ], + [ + "▁Christmas", + -9.280235290527344 + ], + [ + "▁walk", + -9.280679702758789 + ], + [ + "▁sometimes", + -9.282115936279297 + ], + [ + "▁gives", + -9.282402992248535 + ], + [ + "▁types", + -9.283135414123535 + ], + [ + "▁track", + -9.283589363098145 + ], + [ + "▁click", + -9.283622741699219 + ], + [ + "▁situation", + -9.283714294433594 + ], + [ + "▁eyes", + -9.284080505371094 + ], + [ + "▁More", + -9.285266876220703 + ], + [ + "▁tried", + -9.286147117614746 + ], + [ + "▁September", + -9.287832260131836 + ], + [ + "▁Well", + -9.288352012634277 + ], + [ + "▁October", + -9.288406372070312 + ], + [ + "old", + -9.289060592651367 + ], + [ + "▁directly", + -9.289148330688477 + ], + [ + "▁Department", + -9.290478706359863 + ], + [ + "▁December", + -9.293045043945312 + ], + [ + "▁materials", + -9.293530464172363 + ], + [ + "▁co", + -9.293754577636719 + ], + [ + "▁resources", + -9.295943260192871 + ], + [ + "▁published", + -9.29599380493164 + ], + [ + "▁led", + -9.296128273010254 + ], + [ + "▁mobile", + -9.29861831665039 + ], + [ + "▁looked", + -9.29902172088623 + ], + [ + "▁benefits", + -9.299127578735352 + ], + [ + "▁hot", + -9.299951553344727 + ], + [ + "▁term", + -9.300044059753418 + ], + [ + "▁himself", + -9.300102233886719 + ], + [ + "▁center", + -9.300431251525879 + ], + [ + "▁turned", + -9.300539016723633 + ], + [ + "▁Since", + -9.300848007202148 + ], + [ + "▁feature", + -9.301000595092773 + ], + [ + "▁excellent", + -9.301373481750488 + ], + [ + "▁Thank", + -9.301813125610352 + ], + [ + "▁starting", + -9.302183151245117 + ], + [ + "▁Home", + -9.302990913391113 + ], + [ + "▁fall", + -9.303526878356934 + ], + [ + "▁San", + -9.30411434173584 + ], + [ + "▁Are", + -9.305784225463867 + ], + [ + "▁floor", + -9.306876182556152 + ], + [ + "an", + -9.30841064453125 + ], + [ + "▁fine", + -9.308759689331055 + ], + [ + "▁trip", + -9.309200286865234 + ], + [ + "▁Facebook", + -9.309880256652832 + ], + [ + "▁language", + -9.311756134033203 + ], + [ + "▁considered", + -9.312273025512695 + ], + [ + "▁previous", + -9.31395149230957 + ], + [ + "▁wall", + -9.315078735351562 + ], + [ + "l", + -9.316202163696289 + ], + [ + "▁V", + -9.31623649597168 + ], + [ + "▁interested", + -9.316312789916992 + ], + [ + "▁request", + -9.316950798034668 + ], + [ + "▁app", + -9.317636489868164 + ], + [ + "▁reported", + -9.317717552185059 + ], + [ + "▁digital", + -9.317727088928223 + ], + [ + "▁November", + -9.318306922912598 + ], + [ + "▁Once", + -9.318769454956055 + ], + [ + "▁tools", + -9.32000732421875 + ], + [ + "▁organization", + -9.320121765136719 + ], + [ + "▁nature", + -9.320574760437012 + ], + [ + "▁High", + -9.320699691772461 + ], + [ + "▁fully", + -9.321824073791504 + ], + [ + "▁Monday", + -9.322590827941895 + ], + [ + "▁movie", + -9.32288646697998 + ], + [ + "▁Co", + -9.32449722290039 + ], + [ + "▁analysis", + -9.3251371383667 + ], + [ + "▁message", + -9.325543403625488 + ], + [ + "▁sign", + -9.327449798583984 + ], + [ + "▁images", + -9.32830810546875 + ], + [ + "▁pain", + -9.330063819885254 + ], + [ + "▁prices", + -9.332870483398438 + ], + [ + "▁brought", + -9.33371353149414 + ], + [ + "▁posted", + -9.333747863769531 + ], + [ + "▁reach", + -9.33527660369873 + ], + [ + "12", + -9.335450172424316 + ], + [ + "▁happen", + -9.336433410644531 + ], + [ + "▁Or", + -9.336684226989746 + ], + [ + "20", + -9.336944580078125 + ], + [ + "▁base", + -9.338419914245605 + ], + [ + "▁wish", + -9.338557243347168 + ], + [ + "▁response", + -9.341882705688477 + ], + [ + "▁feeling", + -9.34284782409668 + ], + [ + "▁spent", + -9.345410346984863 + ], + [ + "▁son", + -9.34627914428711 + ], + [ + "▁war", + -9.34783935546875 + ], + [ + "▁planning", + -9.348285675048828 + ], + [ + "▁exactly", + -9.349061012268066 + ], + [ + "time", + -9.349531173706055 + ], + [ + "▁spend", + -9.349716186523438 + ], + [ + "▁Great", + -9.35103702545166 + ], + [ + "▁Let", + -9.35156536102295 + ], + [ + "▁require", + -9.3517427444458 + ], + [ + "▁definitely", + -9.352710723876953 + ], + [ + "▁stuff", + -9.353426933288574 + ], + [ + "▁blood", + -9.35400676727295 + ], + [ + "▁positive", + -9.354010581970215 + ], + [ + "▁developed", + -9.355360984802246 + ], + [ + "▁develop", + -9.355727195739746 + ], + [ + "▁photo", + -9.356292724609375 + ], + [ + "▁stand", + -9.356525421142578 + ], + [ + "▁moving", + -9.35833740234375 + ], + [ + "▁method", + -9.359781265258789 + ], + [ + "▁22", + -9.360848426818848 + ], + [ + "▁maybe", + -9.361031532287598 + ], + [ + "▁W", + -9.362543106079102 + ], + [ + "▁trade", + -9.363018989562988 + ], + [ + "▁break", + -9.363218307495117 + ], + [ + "▁finally", + -9.36400032043457 + ], + [ + "▁limited", + -9.364139556884766 + ], + [ + "▁Get", + -9.364928245544434 + ], + [ + "▁physical", + -9.36579704284668 + ], + [ + "▁pick", + -9.368051528930664 + ], + [ + "▁character", + -9.369123458862305 + ], + [ + "▁traditional", + -9.370996475219727 + ], + [ + "▁player", + -9.373340606689453 + ], + [ + "▁successful", + -9.373391151428223 + ], + [ + "G", + -9.374429702758789 + ], + [ + "▁certainly", + -9.37446117401123 + ], + [ + "▁hour", + -9.374505996704102 + ], + [ + "▁X", + -9.374756813049316 + ], + [ + "▁difference", + -9.37477970123291 + ], + [ + "▁growing", + -9.374860763549805 + ], + [ + "▁sites", + -9.374887466430664 + ], + [ + "▁regular", + -9.375713348388672 + ], + [ + "▁California", + -9.378092765808105 + ], + [ + "▁baby", + -9.378111839294434 + ], + [ + "▁stage", + -9.379894256591797 + ], + [ + "▁photos", + -9.380897521972656 + ], + [ + "▁gets", + -9.382298469543457 + ], + [ + "▁paid", + -9.382619857788086 + ], + [ + "▁region", + -9.382678031921387 + ], + [ + "▁round", + -9.382837295532227 + ], + [ + "F", + -9.384867668151855 + ], + [ + "▁kitchen", + -9.384885787963867 + ], + [ + "p", + -9.388679504394531 + ], + [ + "▁ones", + -9.389093399047852 + ], + [ + "▁machine", + -9.38972282409668 + ], + [ + "▁wait", + -9.389739990234375 + ], + [ + "▁wonderful", + -9.390142440795898 + ], + [ + "▁stories", + -9.390539169311523 + ], + [ + "▁Be", + -9.391992568969727 + ], + [ + "▁August", + -9.392633438110352 + ], + [ + "▁individuals", + -9.395523071289062 + ], + [ + "▁White", + -9.397099494934082 + ], + [ + "L", + -9.397147178649902 + ], + [ + "▁father", + -9.400382041931152 + ], + [ + ">", + -9.401811599731445 + ], + [ + "▁economic", + -9.403698921203613 + ], + [ + "▁activity", + -9.405457496643066 + ], + [ + "▁understanding", + -9.40697193145752 + ], + [ + "▁vehicle", + -9.408370971679688 + ], + [ + "▁green", + -9.408721923828125 + ], + [ + "=", + -9.409107208251953 + ], + [ + "▁match", + -9.409213066101074 + ], + [ + "▁creating", + -9.410700798034668 + ], + [ + "▁2011", + -9.410717964172363 + ], + [ + "▁apply", + -9.411067962646484 + ], + [ + "▁construction", + -9.411404609680176 + ], + [ + "▁Health", + -9.411466598510742 + ], + [ + "▁pressure", + -9.412092208862305 + ], + [ + "▁bed", + -9.41268253326416 + ], + [ + "▁evidence", + -9.413414001464844 + ], + [ + "▁loved", + -9.413869857788086 + ], + [ + "▁note", + -9.413870811462402 + ], + [ + "▁weekend", + -9.414525032043457 + ], + [ + "▁begin", + -9.415349960327148 + ], + [ + "▁2010", + -9.417181015014648 + ], + [ + "ers", + -9.417211532592773 + ], + [ + "▁feet", + -9.417640686035156 + ], + [ + "▁solutions", + -9.418057441711426 + ], + [ + "▁campaign", + -9.419442176818848 + ], + [ + "▁text", + -9.419694900512695 + ], + [ + "▁helps", + -9.420053482055664 + ], + [ + "▁screen", + -9.420153617858887 + ], + [ + "▁earlier", + -9.420226097106934 + ], + [ + "▁nearly", + -9.420251846313477 + ], + [ + "15", + -9.422207832336426 + ], + [ + "▁David", + -9.422475814819336 + ], + [ + "▁places", + -9.42259407043457 + ], + [ + "h", + -9.422713279724121 + ], + [ + "▁quick", + -9.42367172241211 + ], + [ + "▁deep", + -9.42391586303711 + ], + [ + "▁|", + -9.42421817779541 + ], + [ + "▁charge", + -9.426478385925293 + ], + [ + "▁Free", + -9.427559852600098 + ], + [ + "▁Group", + -9.427642822265625 + ], + [ + "al", + -9.427769660949707 + ], + [ + "▁expect", + -9.428533554077148 + ], + [ + "▁requirements", + -9.428542137145996 + ], + [ + "▁beginning", + -9.430142402648926 + ], + [ + "▁statement", + -9.43304443359375 + ], + [ + "▁families", + -9.434966087341309 + ], + [ + "▁s", + -9.437440872192383 + ], + [ + "▁culture", + -9.437768936157227 + ], + [ + "▁Black", + -9.438807487487793 + ], + [ + "▁wife", + -9.440065383911133 + ], + [ + "11", + -9.440114974975586 + ], + [ + "▁February", + -9.441399574279785 + ], + [ + "▁Street", + -9.441557884216309 + ], + [ + "▁businesses", + -9.441699028015137 + ], + [ + "▁Canada", + -9.441826820373535 + ], + [ + "▁European", + -9.44308853149414 + ], + [ + "▁dog", + -9.443558692932129 + ], + [ + "▁Thursday", + -9.444809913635254 + ], + [ + "▁Service", + -9.446516990661621 + ], + [ + "▁effects", + -9.447419166564941 + ], + [ + "▁al", + -9.449170112609863 + ], + [ + "▁internet", + -9.450032234191895 + ], + [ + "▁+", + -9.450481414794922 + ], + [ + "▁applications", + -9.450645446777344 + ], + [ + "▁employees", + -9.452874183654785 + ], + [ + "▁shown", + -9.45425796508789 + ], + [ + "▁cool", + -9.45470905303955 + ], + [ + "▁function", + -9.454994201660156 + ], + [ + "▁eye", + -9.45794677734375 + ], + [ + "▁couldn", + -9.458059310913086 + ], + [ + "▁president", + -9.45818042755127 + ], + [ + "▁college", + -9.458739280700684 + ], + [ + "▁fresh", + -9.45905876159668 + ], + [ + "▁announced", + -9.459291458129883 + ], + [ + "▁investment", + -9.460676193237305 + ], + [ + "▁beyond", + -9.460845947265625 + ], + [ + "of", + -9.461023330688477 + ], + [ + "▁damage", + -9.461193084716797 + ], + [ + "▁healthy", + -9.461193084716797 + ], + [ + "▁race", + -9.463139533996582 + ], + [ + "▁speed", + -9.463261604309082 + ], + [ + "▁alone", + -9.464771270751953 + ], + [ + "▁Tuesday", + -9.464839935302734 + ], + [ + "▁immediately", + -9.46577262878418 + ], + [ + "▁bar", + -9.467900276184082 + ], + [ + "▁Although", + -9.467920303344727 + ], + [ + "▁moved", + -9.46829891204834 + ], + [ + "▁benefit", + -9.471353530883789 + ], + [ + "▁increased", + -9.471992492675781 + ], + [ + "▁goals", + -9.475398063659668 + ], + [ + "▁changed", + -9.476200103759766 + ], + [ + "▁Yes", + -9.476231575012207 + ], + [ + "▁Washington", + -9.478046417236328 + ], + [ + "▁wrote", + -9.47829532623291 + ], + [ + "▁THE", + -9.478412628173828 + ], + [ + "▁basis", + -9.479048728942871 + ], + [ + "▁23", + -9.479912757873535 + ], + [ + "▁particularly", + -9.480476379394531 + ], + [ + "▁purpose", + -9.481425285339355 + ], + [ + "▁states", + -9.481588363647461 + ], + [ + "▁opportunities", + -9.482087135314941 + ], + [ + "▁talking", + -9.482378005981445 + ], + [ + "st", + -9.482563018798828 + ], + [ + "▁shot", + -9.483569145202637 + ], + [ + "▁Jesus", + -9.484668731689453 + ], + [ + "N", + -9.484989166259766 + ], + [ + "▁truly", + -9.48520278930664 + ], + [ + "▁Europe", + -9.485642433166504 + ], + [ + "▁hotel", + -9.485769271850586 + ], + [ + "▁commercial", + -9.487223625183105 + ], + [ + "▁allowed", + -9.487801551818848 + ], + [ + "▁billion", + -9.487932205200195 + ], + [ + "▁although", + -9.488776206970215 + ], + [ + "▁East", + -9.488960266113281 + ], + [ + "▁grow", + -9.48913860321045 + ], + [ + "▁offered", + -9.489906311035156 + ], + [ + "▁Her", + -9.490900039672852 + ], + [ + "▁church", + -9.492340087890625 + ], + [ + "▁effort", + -9.492653846740723 + ], + [ + "▁Wednesday", + -9.492831230163574 + ], + [ + "▁rates", + -9.493127822875977 + ], + [ + "▁happened", + -9.493215560913086 + ], + [ + "▁met", + -9.493252754211426 + ], + [ + "▁60", + -9.495131492614746 + ], + [ + "as", + -9.49644660949707 + ], + [ + "▁overall", + -9.49661636352539 + ], + [ + "▁Each", + -9.496768951416016 + ], + [ + "▁pictures", + -9.497359275817871 + ], + [ + "it", + -9.499773025512695 + ], + [ + "▁pass", + -9.499899864196777 + ], + [ + "▁storage", + -9.50205135345459 + ], + [ + "▁associated", + -9.502492904663086 + ], + [ + "▁active", + -9.504135131835938 + ], + [ + "▁tool", + -9.504816055297852 + ], + [ + "▁shop", + -9.504849433898926 + ], + [ + "▁reports", + -9.504965782165527 + ], + [ + "▁platform", + -9.50814151763916 + ], + [ + "▁heat", + -9.509332656860352 + ], + [ + "▁sell", + -9.509967803955078 + ], + [ + "▁serve", + -9.510322570800781 + ], + [ + "▁thanks", + -9.513612747192383 + ], + [ + "▁ahead", + -9.513688087463379 + ], + [ + "▁join", + -9.514238357543945 + ], + [ + "▁vote", + -9.514904022216797 + ], + [ + "▁client", + -9.516671180725098 + ], + [ + "▁entry", + -9.51675796508789 + ], + [ + "▁title", + -9.517001152038574 + ], + [ + "▁girl", + -9.517044067382812 + ], + [ + "▁Best", + -9.517744064331055 + ], + [ + "▁guide", + -9.518299102783203 + ], + [ + "▁wants", + -9.518380165100098 + ], + [ + "▁un", + -9.51880168914795 + ], + [ + "▁offering", + -9.519343376159668 + ], + [ + "▁schools", + -9.519559860229492 + ], + [ + "▁official", + -9.519566535949707 + ], + [ + "▁compared", + -9.5201416015625 + ], + [ + "▁easier", + -9.520835876464844 + ], + [ + "▁whose", + -9.521370887756348 + ], + [ + "▁avoid", + -9.521408081054688 + ], + [ + "▁According", + -9.521964073181152 + ], + [ + "▁double", + -9.522711753845215 + ], + [ + "▁Because", + -9.52302360534668 + ], + [ + "▁helped", + -9.525064468383789 + ], + [ + "▁sort", + -9.525506019592285 + ], + [ + "▁British", + -9.52672004699707 + ], + [ + "▁pages", + -9.527064323425293 + ], + [ + "▁direct", + -9.527627944946289 + ], + [ + "▁basic", + -9.527891159057617 + ], + [ + "▁eat", + -9.530014991760254 + ], + [ + "▁recommend", + -9.530318260192871 + ], + [ + "▁claim", + -9.530682563781738 + ], + [ + "▁died", + -9.531335830688477 + ], + [ + "▁College", + -9.5316162109375 + ], + [ + "▁cash", + -9.53271770477295 + ], + [ + "▁advice", + -9.5328369140625 + ], + [ + "▁Company", + -9.533554077148438 + ], + [ + "▁setting", + -9.533761024475098 + ], + [ + "▁military", + -9.533872604370117 + ], + [ + "▁disease", + -9.5355224609375 + ], + [ + "@", + -9.535541534423828 + ], + [ + "▁reduce", + -9.535642623901367 + ], + [ + "▁rules", + -9.537808418273926 + ], + [ + "▁middle", + -9.53790283203125 + ], + [ + "▁numbers", + -9.538025856018066 + ], + [ + "▁anti", + -9.53831958770752 + ], + [ + "▁display", + -9.538358688354492 + ], + [ + "▁degree", + -9.539379119873047 + ], + [ + "▁touch", + -9.53977108001709 + ], + [ + "▁unit", + -9.5399751663208 + ], + [ + "▁science", + -9.54155158996582 + ], + [ + "▁surface", + -9.5423002243042 + ], + [ + "▁firm", + -9.542768478393555 + ], + [ + "▁plant", + -9.544519424438477 + ], + [ + "▁normal", + -9.544855117797852 + ], + [ + "▁gas", + -9.545493125915527 + ], + [ + "▁gone", + -9.547163009643555 + ], + [ + "▁Australia", + -9.547503471374512 + ], + [ + "▁Click", + -9.548264503479004 + ], + [ + "O", + -9.548606872558594 + ], + [ + "▁studies", + -9.550481796264648 + ], + [ + "▁band", + -9.550814628601074 + ], + [ + "▁largest", + -9.550832748413086 + ], + [ + "▁condition", + -9.551209449768066 + ], + [ + "▁blue", + -9.55207347869873 + ], + [ + "▁followed", + -9.552303314208984 + ], + [ + "▁supply", + -9.552851676940918 + ], + [ + "▁song", + -9.554243087768555 + ], + [ + "▁force", + -9.555961608886719 + ], + [ + "▁regarding", + -9.557245254516602 + ], + [ + "▁gold", + -9.557439804077148 + ], + [ + "▁comment", + -9.55803108215332 + ], + [ + "▁Today", + -9.558829307556152 + ], + [ + "▁Court", + -9.560776710510254 + ], + [ + "▁During", + -9.561681747436523 + ], + [ + "▁voice", + -9.561694145202637 + ], + [ + "▁challenge", + -9.562878608703613 + ], + [ + "▁seven", + -9.563002586364746 + ], + [ + "▁serious", + -9.564165115356445 + ], + [ + "▁Paul", + -9.565167427062988 + ], + [ + "▁finish", + -9.56686782836914 + ], + [ + "▁Services", + -9.568081855773926 + ], + [ + "▁reasons", + -9.569218635559082 + ], + [ + "▁devices", + -9.569392204284668 + ], + [ + "▁act", + -9.570012092590332 + ], + [ + "▁lines", + -9.57053279876709 + ], + [ + "▁Q", + -9.571663856506348 + ], + [ + "▁structure", + -9.571908950805664 + ], + [ + "▁gift", + -9.572638511657715 + ], + [ + "▁powerful", + -9.572735786437988 + ], + [ + "▁perhaps", + -9.572760581970215 + ], + [ + "▁See", + -9.573478698730469 + ], + [ + "▁served", + -9.574554443359375 + ], + [ + "▁28", + -9.574594497680664 + ], + [ + "▁teams", + -9.577905654907227 + ], + [ + "▁lots", + -9.578025817871094 + ], + [ + "▁complex", + -9.578351974487305 + ], + [ + "▁comments", + -9.578742980957031 + ], + [ + "▁bottom", + -9.579813957214355 + ], + [ + "▁weather", + -9.580163955688477 + ], + [ + "▁uses", + -9.58200740814209 + ], + [ + "▁responsible", + -9.58249282836914 + ], + [ + "▁husband", + -9.583473205566406 + ], + [ + "▁protect", + -9.583709716796875 + ], + [ + "▁miles", + -9.584739685058594 + ], + [ + "▁annual", + -9.585013389587402 + ], + [ + "▁James", + -9.585180282592773 + ], + [ + "▁produce", + -9.587695121765137 + ], + [ + "▁glass", + -9.587932586669922 + ], + [ + "▁War", + -9.588226318359375 + ], + [ + "▁budget", + -9.588837623596191 + ], + [ + "▁finished", + -9.589004516601562 + ], + [ + "▁population", + -9.590514183044434 + ], + [ + "▁kept", + -9.59056568145752 + ], + [ + "▁agree", + -9.591385841369629 + ], + [ + "▁sold", + -9.59212589263916 + ], + [ + "▁existing", + -9.59304428100586 + ], + [ + "▁26", + -9.59390926361084 + ], + [ + "▁greater", + -9.594576835632324 + ], + [ + "▁cold", + -9.595122337341309 + ], + [ + "▁Internet", + -9.595656394958496 + ], + [ + "am", + -9.59582805633545 + ], + [ + "▁Business", + -9.595927238464355 + ], + [ + "▁income", + -9.596307754516602 + ], + [ + "▁aren", + -9.59640884399414 + ], + [ + "▁Have", + -9.596576690673828 + ], + [ + "▁seeing", + -9.596863746643066 + ], + [ + "▁et", + -9.597060203552246 + ], + [ + "▁cancer", + -9.597110748291016 + ], + [ + "▁useful", + -9.597302436828613 + ], + [ + "H", + -9.598642349243164 + ], + [ + "▁experienced", + -9.60043716430664 + ], + [ + "▁window", + -9.60046672821045 + ], + [ + "▁extremely", + -9.60054874420166 + ], + [ + "▁dark", + -9.601391792297363 + ], + [ + "▁prior", + -9.602202415466309 + ], + [ + "▁delivery", + -9.602394104003906 + ], + [ + "▁Council", + -9.604475021362305 + ], + [ + "▁Re", + -9.604731559753418 + ], + [ + "▁target", + -9.6065034866333 + ], + [ + "▁plus", + -9.606586456298828 + ], + [ + "▁named", + -9.606659889221191 + ], + [ + "▁driving", + -9.60687255859375 + ], + [ + "▁director", + -9.607551574707031 + ], + [ + "▁wedding", + -9.60776138305664 + ], + [ + "▁club", + -9.60808277130127 + ], + [ + "▁helping", + -9.60914421081543 + ], + [ + "▁fans", + -9.609448432922363 + ], + [ + "▁haven", + -9.61103343963623 + ], + [ + "▁People", + -9.612805366516113 + ], + [ + "▁highest", + -9.613247871398926 + ], + [ + "50", + -9.615287780761719 + ], + [ + "▁•", + -9.615962028503418 + ], + [ + "▁French", + -9.616693496704102 + ], + [ + "▁completed", + -9.617167472839355 + ], + [ + "▁Good", + -9.617473602294922 + ], + [ + "▁patient", + -9.618094444274902 + ], + [ + "▁comfortable", + -9.620095252990723 + ], + [ + "▁fight", + -9.622536659240723 + ], + [ + "▁opening", + -9.622572898864746 + ], + [ + "nd", + -9.624241828918457 + ], + [ + "▁wouldn", + -9.625535011291504 + ], + [ + "▁figure", + -9.625574111938477 + ], + [ + "▁author", + -9.627082824707031 + ], + [ + "▁movement", + -9.628387451171875 + ], + [ + "▁strategy", + -9.62839412689209 + ], + [ + "▁remain", + -9.629753112792969 + ], + [ + "▁quarter", + -9.630558967590332 + ], + [ + "▁Another", + -9.631335258483887 + ], + [ + "▁2009", + -9.634003639221191 + ], + [ + "▁Red", + -9.636080741882324 + ], + [ + "$", + -9.63625717163086 + ], + [ + "▁attack", + -9.637399673461914 + ], + [ + "▁daughter", + -9.637507438659668 + ], + [ + "▁2008", + -9.638226509094238 + ], + [ + "▁coffee", + -9.638530731201172 + ], + [ + "▁federal", + -9.639410972595215 + ], + [ + "▁ball", + -9.640953063964844 + ], + [ + "▁larger", + -9.64133358001709 + ], + [ + "▁camera", + -9.64193344116211 + ], + [ + "▁appear", + -9.64204216003418 + ], + [ + "▁27", + -9.642692565917969 + ], + [ + "▁appropriate", + -9.642912864685059 + ], + [ + "▁onto", + -9.644140243530273 + ], + [ + "▁efforts", + -9.644465446472168 + ], + [ + "▁speak", + -9.644556045532227 + ], + [ + "▁Research", + -9.645063400268555 + ], + [ + "▁essential", + -9.645929336547852 + ], + [ + "▁bank", + -9.646413803100586 + ], + [ + "▁spot", + -9.64654541015625 + ], + [ + "▁passed", + -9.647350311279297 + ], + [ + "▁Association", + -9.647736549377441 + ], + [ + "▁creative", + -9.648860931396484 + ], + [ + "▁models", + -9.650158882141113 + ], + [ + "▁letter", + -9.650345802307129 + ], + [ + "▁lack", + -9.650702476501465 + ], + [ + "▁established", + -9.651827812194824 + ], + [ + "▁leaders", + -9.652180671691895 + ], + [ + "▁Michael", + -9.652609825134277 + ], + [ + "▁=", + -9.653814315795898 + ], + [ + "▁prevent", + -9.654117584228516 + ], + [ + "▁files", + -9.654816627502441 + ], + [ + "▁tour", + -9.655187606811523 + ], + [ + "▁society", + -9.655324935913086 + ], + [ + "▁wood", + -9.655546188354492 + ], + [ + "▁shared", + -9.655936241149902 + ], + [ + "▁General", + -9.656654357910156 + ], + [ + "▁super", + -9.65764331817627 + ], + [ + "▁jobs", + -9.658385276794434 + ], + [ + "▁Two", + -9.658390045166016 + ], + [ + "▁connection", + -9.659469604492188 + ], + [ + "▁actual", + -9.659523010253906 + ], + [ + "▁characters", + -9.660059928894043 + ], + [ + "▁protection", + -9.660531044006348 + ], + [ + "▁selection", + -9.66104507446289 + ], + [ + "▁straight", + -9.66157054901123 + ], + [ + "▁learned", + -9.662882804870605 + ], + [ + "▁guys", + -9.662896156311035 + ], + [ + "▁generally", + -9.664649963378906 + ], + [ + "▁primary", + -9.667226791381836 + ], + [ + "▁guy", + -9.667461395263672 + ], + [ + "▁News", + -9.668718338012695 + ], + [ + "▁Other", + -9.668931007385254 + ], + [ + "▁continued", + -9.669365882873535 + ], + [ + "us", + -9.669513702392578 + ], + [ + "▁engine", + -9.671304702758789 + ], + [ + "▁biggest", + -9.6743745803833 + ], + [ + "▁methods", + -9.674461364746094 + ], + [ + "▁http", + -9.675066947937012 + ], + [ + "▁Office", + -9.675117492675781 + ], + [ + "▁sleep", + -9.675233840942383 + ], + [ + "▁cell", + -9.677128791809082 + ], + [ + "▁Make", + -9.678142547607422 + ], + [ + "▁Who", + -9.678689002990723 + ], + [ + "▁drug", + -9.679813385009766 + ], + [ + "▁Act", + -9.680054664611816 + ], + [ + "▁finding", + -9.680173873901367 + ], + [ + "▁century", + -9.680191993713379 + ], + [ + "▁sharing", + -9.680928230285645 + ], + [ + "▁evening", + -9.680965423583984 + ], + [ + "25", + -9.681159973144531 + ], + [ + "▁steps", + -9.681489944458008 + ], + [ + "▁Windows", + -9.681872367858887 + ], + [ + "▁carry", + -9.681879043579102 + ], + [ + "▁Will", + -9.682149887084961 + ], + [ + "▁pieces", + -9.682489395141602 + ], + [ + "▁Texas", + -9.683709144592285 + ], + [ + "is", + -9.683740615844727 + ], + [ + "▁cells", + -9.685147285461426 + ], + [ + "f", + -9.68567180633545 + ], + [ + "▁leader", + -9.686223030090332 + ], + [ + "▁Church", + -9.686497688293457 + ], + [ + "z", + -9.686779975891113 + ], + [ + "▁notice", + -9.686904907226562 + ], + [ + "▁described", + -9.687615394592285 + ], + [ + "▁album", + -9.687816619873047 + ], + [ + "▁Last", + -9.688406944274902 + ], + [ + "day", + -9.6892671585083 + ], + [ + "▁reality", + -9.689382553100586 + ], + [ + "co", + -9.689461708068848 + ], + [ + "▁trust", + -9.690041542053223 + ], + [ + "▁payment", + -9.690464973449707 + ], + [ + "▁item", + -9.691537857055664 + ], + [ + "▁eight", + -9.6915864944458 + ], + [ + "▁owner", + -9.691927909851074 + ], + [ + "▁cards", + -9.692774772644043 + ], + [ + "▁capital", + -9.692878723144531 + ], + [ + "▁Board", + -9.694341659545898 + ], + [ + "▁covered", + -9.6991605758667 + ], + [ + "▁achieve", + -9.699740409851074 + ], + [ + "▁King", + -9.701562881469727 + ], + [ + "▁Like", + -9.701925277709961 + ], + [ + "▁traffic", + -9.702191352844238 + ], + [ + "▁enter", + -9.702899932861328 + ], + [ + "▁m", + -9.703351974487305 + ], + [ + "▁Chinese", + -9.703944206237793 + ], + [ + "▁workers", + -9.704419136047363 + ], + [ + "▁produced", + -9.707545280456543 + ], + [ + "▁older", + -9.70814037322998 + ], + [ + "▁Use", + -9.708206176757812 + ], + [ + "▁critical", + -9.708320617675781 + ], + [ + "▁press", + -9.70888614654541 + ], + [ + "▁waiting", + -9.709149360656738 + ], + [ + "▁warm", + -9.709159851074219 + ], + [ + "▁heavy", + -9.70917797088623 + ], + [ + "▁therefore", + -9.709212303161621 + ], + [ + "▁wear", + -9.711079597473145 + ], + [ + "▁journey", + -9.71251106262207 + ], + [ + "▁d", + -9.713083267211914 + ], + [ + "▁opened", + -9.714882850646973 + ], + [ + "▁economy", + -9.715024948120117 + ], + [ + "▁Check", + -9.71518325805664 + ], + [ + "▁demand", + -9.715251922607422 + ], + [ + "▁respect", + -9.715479850769043 + ], + [ + "▁reviews", + -9.71695613861084 + ], + [ + "▁showed", + -9.717277526855469 + ], + [ + "▁memory", + -9.717490196228027 + ], + [ + "▁partner", + -9.718801498413086 + ], + [ + "▁t", + -9.719036102294922 + ], + [ + "▁v", + -9.720229148864746 + ], + [ + "▁cross", + -9.72028923034668 + ], + [ + "▁@", + -9.720561981201172 + ], + [ + "▁whatever", + -9.721085548400879 + ], + [ + "▁button", + -9.722126007080078 + ], + [ + "▁31", + -9.722147941589355 + ], + [ + "▁sports", + -9.722311973571777 + ], + [ + "▁ideal", + -9.723237037658691 + ], + [ + "able", + -9.723967552185059 + ], + [ + "▁advantage", + -9.724007606506348 + ], + [ + "▁server", + -9.724028587341309 + ], + [ + "▁tree", + -9.724244117736816 + ], + [ + "▁drop", + -9.724695205688477 + ], + [ + "▁toward", + -9.724954605102539 + ], + [ + "▁requires", + -9.726198196411133 + ], + [ + "▁conference", + -9.726761817932129 + ], + [ + "▁placed", + -9.727086067199707 + ], + [ + "▁brain", + -9.727612495422363 + ], + [ + "▁host", + -9.727910041809082 + ], + [ + "▁Love", + -9.729822158813477 + ], + [ + "▁contract", + -9.730453491210938 + ], + [ + "▁remove", + -9.730554580688477 + ], + [ + "u", + -9.730765342712402 + ], + [ + "www", + -9.730782508850098 + ], + [ + "▁dry", + -9.731356620788574 + ], + [ + "no", + -9.731452941894531 + ], + [ + "▁Go", + -9.731484413146973 + ], + [ + "▁custom", + -9.732233047485352 + ], + [ + "▁poor", + -9.732243537902832 + ], + [ + "▁select", + -9.733316421508789 + ], + [ + "▁scene", + -9.733922958374023 + ], + [ + "▁girls", + -9.736167907714844 + ], + [ + "▁values", + -9.736485481262207 + ], + [ + "W", + -9.73827075958252 + ], + [ + "▁audience", + -9.738513946533203 + ], + [ + "▁views", + -9.739005088806152 + ], + [ + "▁estate", + -9.739286422729492 + ], + [ + "▁mentioned", + -9.74003791809082 + ], + [ + "▁status", + -9.740684509277344 + ], + [ + "▁update", + -9.741314888000488 + ], + [ + "▁Life", + -9.74158000946045 + ], + [ + "▁direction", + -9.742594718933105 + ], + [ + "16", + -9.742807388305664 + ], + [ + "▁truth", + -9.744918823242188 + ], + [ + "▁driver", + -9.744946479797363 + ], + [ + "▁steel", + -9.745549201965332 + ], + [ + "▁correct", + -9.746217727661133 + ], + [ + "V", + -9.74633502960205 + ], + [ + "▁balance", + -9.74819564819336 + ], + [ + "▁England", + -9.74893569946289 + ], + [ + "▁presented", + -9.749567985534668 + ], + [ + "▁Florida", + -9.750503540039062 + ], + [ + "▁Air", + -9.751388549804688 + ], + [ + "▁Art", + -9.752665519714355 + ], + [ + "▁parties", + -9.753278732299805 + ], + [ + "▁handle", + -9.753410339355469 + ], + [ + "▁path", + -9.754720687866211 + ], + [ + "▁keeping", + -9.755016326904297 + ], + [ + "▁multi", + -9.757533073425293 + ], + [ + "▁communication", + -9.758065223693848 + ], + [ + "▁homes", + -9.759200096130371 + ], + [ + "▁determine", + -9.759736061096191 + ], + [ + "▁remains", + -9.759778022766113 + ], + [ + "▁happens", + -9.760176658630371 + ], + [ + "▁maintain", + -9.760266304016113 + ], + [ + "term", + -9.761221885681152 + ], + [ + "▁background", + -9.761431694030762 + ], + [ + "▁pool", + -9.761435508728027 + ], + [ + "▁park", + -9.76234245300293 + ], + [ + "▁street", + -9.76243782043457 + ], + [ + "▁shape", + -9.763519287109375 + ], + [ + "▁Apple", + -9.763689041137695 + ], + [ + "▁winter", + -9.764695167541504 + ], + [ + "▁dead", + -9.765335083007812 + ], + [ + "▁adding", + -9.765403747558594 + ], + [ + "▁shopping", + -9.766388893127441 + ], + [ + "▁teaching", + -9.767068862915039 + ], + [ + "▁elements", + -9.767531394958496 + ], + [ + "▁cars", + -9.767887115478516 + ], + [ + "ness", + -9.76821231842041 + ], + [ + "▁thank", + -9.768701553344727 + ], + [ + "▁ten", + -9.768903732299805 + ], + [ + "▁Management", + -9.769081115722656 + ], + [ + "▁La", + -9.769499778747559 + ], + [ + "▁ended", + -9.769699096679688 + ], + [ + "▁competition", + -9.770387649536133 + ], + [ + "▁Lord", + -9.770824432373047 + ], + [ + "▁session", + -9.771627426147461 + ], + [ + "▁n", + -9.771968841552734 + ], + [ + "▁bought", + -9.773329734802246 + ], + [ + "▁metal", + -9.774053573608398 + ], + [ + "▁ice", + -9.77407169342041 + ], + [ + "▁tips", + -9.775918960571289 + ], + [ + "▁organizations", + -9.776607513427734 + ], + [ + "▁Green", + -9.777237892150879 + ], + [ + "▁Africa", + -9.777414321899414 + ], + [ + "▁lose", + -9.777544975280762 + ], + [ + "▁standards", + -9.778621673583984 + ], + [ + "▁factors", + -9.778831481933594 + ], + [ + "▁star", + -9.77895736694336 + ], + [ + "▁leaving", + -9.779915809631348 + ], + [ + "▁29", + -9.780733108520508 + ], + [ + "▁caused", + -9.780863761901855 + ], + [ + "▁majority", + -9.780912399291992 + ], + [ + "▁holiday", + -9.781376838684082 + ], + [ + "▁contains", + -9.782553672790527 + ], + [ + "18", + -9.783190727233887 + ], + [ + "▁operations", + -9.784605979919434 + ], + [ + "▁seemed", + -9.785282135009766 + ], + [ + "▁aware", + -9.785809516906738 + ], + [ + "▁soft", + -9.786109924316406 + ], + [ + "▁plenty", + -9.78624153137207 + ], + [ + "▁Indian", + -9.78652572631836 + ], + [ + "▁Road", + -9.786728858947754 + ], + [ + "▁experiences", + -9.786821365356445 + ], + [ + "▁Club", + -9.787270545959473 + ], + [ + "▁garden", + -9.787409782409668 + ], + [ + "▁manage", + -9.787620544433594 + ], + [ + "▁De", + -9.788809776306152 + ], + [ + "▁Christ", + -9.789219856262207 + ], + [ + "▁developing", + -9.78925609588623 + ], + [ + "▁Every", + -9.789434432983398 + ], + [ + "▁technical", + -9.78944206237793 + ], + [ + "▁discuss", + -9.789600372314453 + ], + [ + "▁fan", + -9.789911270141602 + ], + [ + "▁strength", + -9.790054321289062 + ], + [ + "▁selected", + -9.790738105773926 + ], + [ + "▁showing", + -9.79257869720459 + ], + [ + "▁challenges", + -9.79301643371582 + ], + [ + "▁claims", + -9.793354988098145 + ], + [ + "▁station", + -9.794262886047363 + ], + [ + "▁communities", + -9.794413566589355 + ], + [ + "▁deliver", + -9.79493522644043 + ], + [ + "▁furniture", + -9.795431137084961 + ], + [ + "▁officials", + -9.795910835266113 + ], + [ + "▁Over", + -9.796178817749023 + ], + [ + "▁calls", + -9.797300338745117 + ], + [ + "▁registered", + -9.797820091247559 + ], + [ + "▁nation", + -9.797933578491211 + ], + [ + "▁separate", + -9.798319816589355 + ], + [ + "▁fish", + -9.799205780029297 + ], + [ + "org", + -9.79924488067627 + ], + [ + "▁wine", + -9.800053596496582 + ], + [ + "▁foreign", + -9.800201416015625 + ], + [ + "pm", + -9.801105499267578 + ], + [ + "X", + -9.801664352416992 + ], + [ + "▁gain", + -9.80200481414795 + ], + [ + "▁welcome", + -9.802803993225098 + ], + [ + "▁thus", + -9.804169654846191 + ], + [ + "▁perform", + -9.804171562194824 + ], + [ + "▁minute", + -9.804288864135742 + ], + [ + "▁schedule", + -9.805083274841309 + ], + [ + "▁meaning", + -9.805098533630371 + ], + [ + "▁block", + -9.805177688598633 + ], + [ + "▁hospital", + -9.805484771728516 + ], + [ + "▁2007", + -9.805608749389648 + ], + [ + "▁coverage", + -9.806587219238281 + ], + [ + "▁Take", + -9.807452201843262 + ], + [ + "▁closed", + -9.807674407958984 + ], + [ + "▁agreement", + -9.808004379272461 + ], + [ + "for", + -9.808019638061523 + ], + [ + "free", + -9.808398246765137 + ], + [ + "▁copy", + -9.808454513549805 + ], + [ + "▁links", + -9.808573722839355 + ], + [ + "▁watching", + -9.8087158203125 + ], + [ + "▁raised", + -9.809433937072754 + ], + [ + "▁>", + -9.809630393981934 + ], + [ + "▁interview", + -9.81002140045166 + ], + [ + "▁buying", + -9.812223434448242 + ], + [ + "▁exercise", + -9.812557220458984 + ], + [ + "▁shares", + -9.812617301940918 + ], + [ + "▁thousands", + -9.813016891479492 + ], + [ + "▁becoming", + -9.813238143920898 + ], + [ + "▁Where", + -9.81335163116455 + ], + [ + "▁decide", + -9.813583374023438 + ], + [ + "▁clearly", + -9.813882827758789 + ], + [ + "▁print", + -9.814583778381348 + ], + [ + "▁sun", + -9.814735412597656 + ], + [ + "▁names", + -9.815406799316406 + ], + [ + "▁listed", + -9.815415382385254 + ], + [ + "▁Bank", + -9.815573692321777 + ], + [ + "▁Institute", + -9.816076278686523 + ], + [ + "▁central", + -9.81649398803711 + ], + [ + "▁Twitter", + -9.816617012023926 + ], + [ + "▁testing", + -9.816652297973633 + ], + [ + "▁senior", + -9.819073677062988 + ], + [ + "▁despite", + -9.819783210754395 + ], + [ + "▁forms", + -9.8204345703125 + ], + [ + "▁capacity", + -9.820502281188965 + ], + [ + "▁runs", + -9.820606231689453 + ], + [ + "▁Christian", + -9.821028709411621 + ], + [ + "▁concept", + -9.821115493774414 + ], + [ + "▁smaller", + -9.822335243225098 + ], + [ + "▁Their", + -9.82247257232666 + ], + [ + "▁helpful", + -9.822543144226074 + ], + [ + "▁otherwise", + -9.822844505310059 + ], + [ + "▁residents", + -9.823062896728516 + ], + [ + "®", + -9.824304580688477 + ], + [ + "▁manager", + -9.824335098266602 + ], + [ + "▁classes", + -9.825054168701172 + ], + [ + "▁independent", + -9.825369834899902 + ], + [ + "mm", + -9.826355934143066 + ], + [ + "▁Any", + -9.826780319213867 + ], + [ + "▁funds", + -9.828688621520996 + ], + [ + "▁sit", + -9.82974624633789 + ], + [ + "▁Both", + -9.829994201660156 + ], + [ + "▁stress", + -9.830190658569336 + ], + [ + "▁prepared", + -9.830511093139648 + ], + [ + "▁waste", + -9.830750465393066 + ], + [ + "▁mission", + -9.83093547821045 + ], + [ + "▁bill", + -9.830964088439941 + ], + [ + "▁80", + -9.832322120666504 + ], + [ + "▁previously", + -9.832401275634766 + ], + [ + "▁flow", + -9.832670211791992 + ], + [ + "▁90", + -9.832752227783203 + ], + [ + "▁River", + -9.832889556884766 + ], + [ + "▁secure", + -9.834373474121094 + ], + [ + "▁becomes", + -9.834671974182129 + ], + [ + "14", + -9.835445404052734 + ], + [ + "▁operating", + -9.835891723632812 + ], + [ + "▁spring", + -9.83721923828125 + ], + [ + "▁sounds", + -9.837382316589355 + ], + [ + "▁sea", + -9.837692260742188 + ], + [ + "▁b", + -9.838115692138672 + ], + [ + "▁friendly", + -9.838479042053223 + ], + [ + "▁famous", + -9.838741302490234 + ], + [ + "▁dedicated", + -9.839187622070312 + ], + [ + "▁Design", + -9.839884757995605 + ], + [ + "▁absolutely", + -9.840551376342773 + ], + [ + "▁advanced", + -9.842148780822754 + ], + [ + "▁sweet", + -9.842986106872559 + ], + [ + "▁fill", + -9.843398094177246 + ], + [ + "▁rock", + -9.843470573425293 + ], + [ + "▁sources", + -9.84349250793457 + ], + [ + "▁solid", + -9.843520164489746 + ], + [ + "▁spending", + -9.843936920166016 + ], + [ + "▁killed", + -9.8452730178833 + ], + [ + "v", + -9.845702171325684 + ], + [ + "rd", + -9.84626579284668 + ], + [ + "▁la", + -9.847411155700684 + ], + [ + "▁reached", + -9.847885131835938 + ], + [ + "▁loan", + -9.848021507263184 + ], + [ + "▁train", + -9.848136901855469 + ], + [ + "▁posts", + -9.84882640838623 + ], + [ + "▁managed", + -9.85010814666748 + ], + [ + "▁election", + -9.850235939025879 + ], + [ + "▁owners", + -9.850740432739258 + ], + [ + "▁fear", + -9.850836753845215 + ], + [ + "▁sector", + -9.851250648498535 + ], + [ + "▁Pro", + -9.852469444274902 + ], + [ + "▁presence", + -9.852751731872559 + ], + [ + "▁relevant", + -9.852776527404785 + ], + [ + "▁appears", + -9.852945327758789 + ], + [ + "▁dinner", + -9.85315990447998 + ], + [ + "▁facilities", + -9.853440284729004 + ], + [ + "▁mid", + -9.853862762451172 + ], + [ + "▁changing", + -9.854509353637695 + ], + [ + "▁excited", + -9.8545560836792 + ], + [ + "▁Big", + -9.854896545410156 + ], + [ + "▁progress", + -9.854963302612305 + ], + [ + "▁Lake", + -9.855481147766113 + ], + [ + "▁experts", + -9.856632232666016 + ], + [ + "▁task", + -9.857407569885254 + ], + [ + "▁classic", + -9.85770034790039 + ], + [ + "▁properties", + -9.858261108398438 + ], + [ + "like", + -9.858452796936035 + ], + [ + "▁bag", + -9.858927726745605 + ], + [ + "13", + -9.859021186828613 + ], + [ + "▁Time", + -9.86079216003418 + ], + [ + "▁repair", + -9.862066268920898 + ], + [ + "▁knows", + -9.862357139587402 + ], + [ + "▁restaurant", + -9.86278247833252 + ], + [ + "▁mix", + -9.863507270812988 + ], + [ + "▁mostly", + -9.863899230957031 + ], + [ + "▁attempt", + -9.865288734436035 + ], + [ + "▁numerous", + -9.865726470947266 + ], + [ + "▁guess", + -9.866256713867188 + ], + [ + "▁proper", + -9.866745948791504 + ], + [ + "▁walking", + -9.869105339050293 + ], + [ + "▁opinion", + -9.869170188903809 + ], + [ + "▁USA", + -9.869954109191895 + ], + [ + "▁enjoyed", + -9.87077522277832 + ], + [ + "▁ride", + -9.870935440063477 + ], + [ + "▁transfer", + -9.870951652526855 + ], + [ + "ie", + -9.87134075164795 + ], + [ + "▁records", + -9.871565818786621 + ], + [ + "▁agency", + -9.871850967407227 + ], + [ + "▁Whether", + -9.872121810913086 + ], + [ + "▁thoughts", + -9.872247695922852 + ], + [ + "▁length", + -9.872735977172852 + ], + [ + "▁animals", + -9.87364673614502 + ], + [ + "▁core", + -9.874518394470215 + ], + [ + "▁administration", + -9.874588012695312 + ], + [ + "▁George", + -9.874588966369629 + ], + [ + "▁cleaning", + -9.874773979187012 + ], + [ + "▁putting", + -9.875127792358398 + ], + [ + "▁meant", + -9.87629222869873 + ], + [ + "▁plants", + -9.877311706542969 + ], + [ + "▁continues", + -9.87984848022461 + ], + [ + "▁rich", + -9.880127906799316 + ], + [ + "▁football", + -9.880499839782715 + ], + [ + "▁operation", + -9.880902290344238 + ], + [ + "▁techniques", + -9.88095474243164 + ], + [ + "▁artist", + -9.881512641906738 + ], + [ + "▁Mark", + -9.882827758789062 + ], + [ + "▁temperature", + -9.884880065917969 + ], + [ + "▁Science", + -9.885035514831543 + ], + [ + "▁distance", + -9.885193824768066 + ], + [ + "▁colors", + -9.885475158691406 + ], + [ + "17", + -9.886765480041504 + ], + [ + "J", + -9.886971473693848 + ], + [ + "▁awesome", + -9.887203216552734 + ], + [ + "▁combination", + -9.887398719787598 + ], + [ + "▁actions", + -9.887677192687988 + ], + [ + "This", + -9.887874603271484 + ], + [ + "▁beauty", + -9.887920379638672 + ], + [ + "▁Find", + -9.888361930847168 + ], + [ + "▁trading", + -9.889073371887207 + ], + [ + "▁species", + -9.889347076416016 + ], + [ + "▁Amazon", + -9.889404296875 + ], + [ + "▁initial", + -9.889466285705566 + ], + [ + "▁assist", + -9.890212059020996 + ], + [ + "▁performed", + -9.89026927947998 + ], + [ + "▁alternative", + -9.890605926513672 + ], + [ + "▁Government", + -9.891040802001953 + ], + [ + "▁die", + -9.891134262084961 + ], + [ + "one", + -9.891669273376465 + ], + [ + "▁map", + -9.892027854919434 + ], + [ + "▁topic", + -9.892136573791504 + ], + [ + "▁score", + -9.892147064208984 + ], + [ + "▁accept", + -9.89218807220459 + ], + [ + "100", + -9.892297744750977 + ], + [ + "▁teacher", + -9.892629623413086 + ], + [ + "▁eventually", + -9.892801284790039 + ], + [ + "You", + -9.894100189208984 + ], + [ + "▁Web", + -9.894218444824219 + ], + [ + "▁doctor", + -9.894369125366211 + ], + [ + "▁Education", + -9.894383430480957 + ], + [ + "▁joined", + -9.894680976867676 + ], + [ + "▁expensive", + -9.895100593566895 + ], + [ + "▁focused", + -9.895116806030273 + ], + [ + "▁pair", + -9.895511627197266 + ], + [ + "▁70", + -9.896153450012207 + ], + [ + "▁c", + -9.896208763122559 + ], + [ + "▁returned", + -9.896512031555176 + ], + [ + "▁injury", + -9.896810531616211 + ], + [ + "▁package", + -9.897174835205078 + ], + [ + "▁Oh", + -9.898348808288574 + ], + [ + "▁200", + -9.900177955627441 + ], + [ + "line", + -9.900288581848145 + ], + [ + "▁Year", + -9.900774002075195 + ], + [ + "▁peace", + -9.900874137878418 + ], + [ + "▁policies", + -9.901266098022461 + ], + [ + "▁IT", + -9.9015474319458 + ], + [ + "▁connected", + -9.903042793273926 + ], + [ + "▁leadership", + -9.903505325317383 + ], + [ + "▁Press", + -9.903548240661621 + ], + [ + "▁Director", + -9.906973838806152 + ], + [ + "▁Online", + -9.908038139343262 + ], + [ + "▁documents", + -9.908699035644531 + ], + [ + "▁discussion", + -9.90898609161377 + ], + [ + "▁Bay", + -9.91014575958252 + ], + [ + "▁selling", + -9.910643577575684 + ], + [ + "▁coach", + -9.912607192993164 + ], + [ + "▁Before", + -9.913092613220215 + ], + [ + "▁department", + -9.913125991821289 + ], + [ + "▁forget", + -9.913595199584961 + ], + [ + "▁trial", + -9.913722038269043 + ], + [ + "▁rule", + -9.914012908935547 + ], + [ + "▁filled", + -9.914326667785645 + ], + [ + "▁applied", + -9.914556503295898 + ], + [ + "▁identify", + -9.91490650177002 + ], + [ + "▁explore", + -9.915468215942383 + ], + [ + "▁cheap", + -9.915575981140137 + ], + [ + "▁Y", + -9.915793418884277 + ], + [ + "▁foot", + -9.915794372558594 + ], + [ + "▁Police", + -9.916397094726562 + ], + [ + "by", + -9.916963577270508 + ], + [ + "▁slightly", + -9.91711711883545 + ], + [ + "▁Law", + -9.917280197143555 + ], + [ + "▁faith", + -9.91831111907959 + ], + [ + "▁Maybe", + -9.920798301696777 + ], + [ + "▁German", + -9.92101001739502 + ], + [ + "▁appeared", + -9.922103881835938 + ], + [ + "▁laws", + -9.922515869140625 + ], + [ + "▁Open", + -9.923154830932617 + ], + [ + "▁seat", + -9.923812866210938 + ], + [ + "▁Committee", + -9.923901557922363 + ], + [ + "▁negative", + -9.924941062927246 + ], + [ + "▁asking", + -9.925289154052734 + ], + [ + "▁Central", + -9.925925254821777 + ], + [ + "▁fashion", + -9.926239967346191 + ], + [ + "▁beach", + -9.92625904083252 + ], + [ + "▁fair", + -9.92689037322998 + ], + [ + "▁unless", + -9.9276123046875 + ], + [ + "▁reference", + -9.929115295410156 + ], + [ + "▁mental", + -9.9293212890625 + ], + [ + "▁units", + -9.931245803833008 + ], + [ + "▁videos", + -9.932296752929688 + ], + [ + "▁funding", + -9.932668685913086 + ], + [ + "▁eating", + -9.933138847351074 + ], + [ + "▁award", + -9.93332290649414 + ], + [ + "▁professionals", + -9.933929443359375 + ], + [ + "▁vision", + -9.93393611907959 + ], + [ + "▁signed", + -9.934236526489258 + ], + [ + "▁Man", + -9.934261322021484 + ], + [ + "▁practices", + -9.934551239013672 + ], + [ + "▁scale", + -9.934718132019043 + ], + [ + "▁cities", + -9.935188293457031 + ], + [ + "▁starts", + -9.935429573059082 + ], + [ + "▁comfort", + -9.935444831848145 + ], + [ + "▁detail", + -9.936034202575684 + ], + [ + "▁dream", + -9.936275482177734 + ], + [ + "out", + -9.936511039733887 + ], + [ + "▁Those", + -9.936595916748047 + ], + [ + "▁Minister", + -9.938172340393066 + ], + [ + "▁hearing", + -9.938742637634277 + ], + [ + "▁decisions", + -9.939440727233887 + ], + [ + "▁Post", + -9.940237045288086 + ], + [ + "▁winning", + -9.940286636352539 + ], + [ + "▁corner", + -9.942022323608398 + ], + [ + "▁edge", + -9.942211151123047 + ], + [ + "▁slow", + -9.942389488220215 + ], + [ + "▁Island", + -9.942556381225586 + ], + [ + "▁guests", + -9.942851066589355 + ], + [ + "▁missing", + -9.942975997924805 + ], + [ + "▁en", + -9.943106651306152 + ], + [ + "▁visitors", + -9.943425178527832 + ], + [ + "▁Only", + -9.943506240844727 + ], + [ + "▁generation", + -9.94442367553711 + ], + [ + "▁concerns", + -9.944710731506348 + ], + [ + "▁Add", + -9.944925308227539 + ], + [ + "▁miss", + -9.945413589477539 + ], + [ + "▁theme", + -9.945791244506836 + ], + [ + "▁increasing", + -9.945961952209473 + ], + [ + "▁League", + -9.946171760559082 + ], + [ + "▁France", + -9.94686508178711 + ], + [ + "▁suggest", + -9.947617530822754 + ], + [ + "▁maximum", + -9.947854995727539 + ], + [ + "▁markets", + -9.947867393493652 + ], + [ + "▁rooms", + -9.948022842407227 + ], + [ + "▁fee", + -9.948421478271484 + ], + [ + "▁Public", + -9.948844909667969 + ], + [ + "▁error", + -9.949057579040527 + ], + [ + "▁sitting", + -9.949347496032715 + ], + [ + "▁brother", + -9.949429512023926 + ], + [ + "▁boy", + -9.949883460998535 + ], + [ + "▁rise", + -9.950525283813477 + ], + [ + "▁expert", + -9.950664520263672 + ], + [ + "▁fantastic", + -9.950919151306152 + ], + [ + "▁Japan", + -9.95138931274414 + ], + [ + "▁teachers", + -9.95151424407959 + ], + [ + "▁corporate", + -9.951681137084961 + ], + [ + "▁exchange", + -9.95173168182373 + ], + [ + "▁frame", + -9.95196533203125 + ], + [ + "▁songs", + -9.954050064086914 + ], + [ + "▁II", + -9.95422077178955 + ], + [ + "▁influence", + -9.95443344116211 + ], + [ + "▁AND", + -9.957000732421875 + ], + [ + "at", + -9.957389831542969 + ], + [ + "▁holding", + -9.9577054977417 + ], + [ + "▁totally", + -9.958361625671387 + ], + [ + "▁2006", + -9.958663940429688 + ], + [ + "▁Next", + -9.959391593933105 + ], + [ + "▁maintenance", + -9.959851264953613 + ], + [ + "▁approximately", + -9.963337898254395 + ], + [ + "▁minimum", + -9.96338939666748 + ], + [ + "▁allowing", + -9.963809967041016 + ], + [ + "▁married", + -9.964232444763184 + ], + [ + "▁District", + -9.964262008666992 + ], + [ + "▁artists", + -9.964970588684082 + ], + [ + "▁Israel", + -9.964978218078613 + ], + [ + "▁Party", + -9.965221405029297 + ], + [ + "▁essay", + -9.96575927734375 + ], + [ + "▁female", + -9.966038703918457 + ], + [ + "▁plastic", + -9.966619491577148 + ], + [ + "▁busy", + -9.966769218444824 + ], + [ + "▁document", + -9.966864585876465 + ], + [ + "▁bathroom", + -9.967350006103516 + ], + [ + "▁removed", + -9.967731475830078 + ], + [ + "▁processes", + -9.967991828918457 + ], + [ + "▁leaves", + -9.968655586242676 + ], + [ + "▁climate", + -9.968950271606445 + ], + [ + "▁Russia", + -9.969217300415039 + ], + [ + "▁exciting", + -9.969602584838867 + ], + [ + "▁Hall", + -9.969717979431152 + ], + [ + "▁sets", + -9.969928741455078 + ], + [ + "500", + -9.970961570739746 + ], + [ + "▁Smith", + -9.971579551696777 + ], + [ + "▁relationships", + -9.97314739227295 + ], + [ + "▁Union", + -9.97446060180664 + ], + [ + "▁Read", + -9.97490406036377 + ], + [ + "▁medium", + -9.976409912109375 + ], + [ + "▁treat", + -9.976428031921387 + ], + [ + "▁Me", + -9.979477882385254 + ], + [ + "▁debt", + -9.979482650756836 + ], + [ + "▁afternoon", + -9.98088264465332 + ], + [ + "▁Germany", + -9.98192024230957 + ], + [ + "▁Obama", + -9.982705116271973 + ], + [ + "▁possibly", + -9.982823371887207 + ], + [ + "▁radio", + -9.98294448852539 + ], + [ + "▁spread", + -9.983126640319824 + ], + [ + "▁bus", + -9.98375129699707 + ], + [ + "▁Star", + -9.983946800231934 + ], + [ + "▁facility", + -9.984375953674316 + ], + [ + "▁calling", + -9.985042572021484 + ], + [ + "▁taste", + -9.985376358032227 + ], + [ + "▁brings", + -9.985548973083496 + ], + [ + "▁wind", + -9.986784934997559 + ], + [ + "▁Note", + -9.987815856933594 + ], + [ + "▁explain", + -9.987950325012207 + ], + [ + "▁35", + -9.988800048828125 + ], + [ + "▁www", + -9.988941192626953 + ], + [ + "▁flat", + -9.989068984985352 + ], + [ + "▁south", + -9.98967170715332 + ], + [ + "▁manner", + -9.989992141723633 + ], + [ + "▁2000", + -9.99026870727539 + ], + [ + "▁Russian", + -9.990412712097168 + ], + [ + "▁Chicago", + -9.990615844726562 + ], + [ + "▁responsibility", + -9.9907865524292 + ], + [ + "▁whom", + -9.992162704467773 + ], + [ + "▁Ltd", + -9.992788314819336 + ], + [ + "▁lived", + -9.992928504943848 + ], + [ + "▁Blue", + -9.993375778198242 + ], + [ + "▁processing", + -9.993839263916016 + ], + [ + "▁Does", + -9.994385719299316 + ], + [ + "▁Foundation", + -9.996288299560547 + ], + [ + "▁smart", + -9.996627807617188 + ], + [ + "▁info", + -9.99685001373291 + ], + [ + "▁trees", + -9.999290466308594 + ], + [ + "▁assistance", + -9.999595642089844 + ], + [ + "▁menu", + -10.000238418579102 + ], + [ + "▁connect", + -10.000249862670898 + ], + [ + "▁format", + -10.001083374023438 + ], + [ + "▁pattern", + -10.00109577178955 + ], + [ + "▁drink", + -10.00136661529541 + ], + [ + "▁detailed", + -10.00170612335205 + ], + [ + "▁Super", + -10.003045082092285 + ], + [ + "▁north", + -10.004753112792969 + ], + [ + "▁volume", + -10.005029678344727 + ], + [ + "▁Top", + -10.005186080932617 + ], + [ + "▁lovely", + -10.005833625793457 + ], + [ + "▁committed", + -10.005951881408691 + ], + [ + "▁investigation", + -10.006046295166016 + ], + [ + "▁500", + -10.00615119934082 + ], + [ + "▁OF", + -10.006688117980957 + ], + [ + "▁except", + -10.006783485412598 + ], + [ + "▁yes", + -10.006851196289062 + ], + [ + "▁seconds", + -10.006937980651855 + ], + [ + "▁Social", + -10.007705688476562 + ], + [ + "▁Bill", + -10.008137702941895 + ], + [ + "▁Data", + -10.008565902709961 + ], + [ + "▁stone", + -10.008679389953613 + ], + [ + "▁doubt", + -10.009496688842773 + ], + [ + "▁centre", + -10.009910583496094 + ], + [ + "▁properly", + -10.01038932800293 + ], + [ + "▁nor", + -10.010978698730469 + ], + [ + "▁forces", + -10.011395454406738 + ], + [ + "▁vehicles", + -10.012199401855469 + ], + [ + "▁notes", + -10.012226104736328 + ], + [ + "▁articles", + -10.013675689697266 + ], + [ + "▁Development", + -10.013731956481934 + ], + [ + "▁proud", + -10.014530181884766 + ], + [ + "▁net", + -10.015158653259277 + ], + [ + "▁failed", + -10.015486717224121 + ], + [ + "▁stores", + -10.016251564025879 + ], + [ + "▁internal", + -10.016705513000488 + ], + [ + "▁category", + -10.01754379272461 + ], + [ + "▁ourselves", + -10.017911911010742 + ], + [ + "▁serving", + -10.019071578979492 + ], + [ + "▁raise", + -10.019370079040527 + ], + [ + "▁Al", + -10.019475936889648 + ], + [ + "In", + -10.020309448242188 + ], + [ + "▁Music", + -10.021209716796875 + ], + [ + "▁fees", + -10.021228790283203 + ], + [ + "▁Power", + -10.021544456481934 + ], + [ + "▁typically", + -10.021878242492676 + ], + [ + "▁Robert", + -10.022756576538086 + ], + [ + "▁measure", + -10.022948265075684 + ], + [ + "▁charges", + -10.023064613342285 + ], + [ + "▁panel", + -10.023433685302734 + ], + [ + "▁African", + -10.023492813110352 + ], + [ + "▁Western", + -10.024150848388672 + ], + [ + "▁arrived", + -10.02427864074707 + ], + [ + "▁district", + -10.024340629577637 + ], + [ + "▁recommended", + -10.024506568908691 + ], + [ + "▁combined", + -10.024520874023438 + ], + [ + "▁launch", + -10.024580955505371 + ], + [ + "▁ran", + -10.025142669677734 + ], + [ + "▁l", + -10.025616645812988 + ], + [ + "▁fourth", + -10.026546478271484 + ], + [ + "▁updated", + -10.026692390441895 + ], + [ + "▁discovered", + -10.027080535888672 + ], + [ + "▁cent", + -10.027835845947266 + ], + [ + "▁advance", + -10.027864456176758 + ], + [ + "▁wonder", + -10.028168678283691 + ], + [ + "▁Book", + -10.0287504196167 + ], + [ + "▁ship", + -10.02876091003418 + ], + [ + "▁conversation", + -10.02936840057373 + ], + [ + "▁flight", + -10.029794692993164 + ], + [ + "▁specifically", + -10.03005599975586 + ], + [ + "▁environmental", + -10.030059814453125 + ], + [ + "▁realize", + -10.030505180358887 + ], + [ + "▁animal", + -10.030824661254883 + ], + [ + "▁cultural", + -10.03115463256836 + ], + [ + "▁outdoor", + -10.031218528747559 + ], + [ + "▁Z", + -10.032508850097656 + ], + [ + "▁master", + -10.032957077026367 + ], + [ + "[", + -10.03361988067627 + ], + [ + "▁worry", + -10.033808708190918 + ], + [ + "▁instance", + -10.034457206726074 + ], + [ + "▁bedroom", + -10.034581184387207 + ], + [ + "40", + -10.034687042236328 + ], + [ + "▁mine", + -10.035168647766113 + ], + [ + "▁Congress", + -10.035305976867676 + ], + [ + "▁Peter", + -10.036111831665039 + ], + [ + "▁importance", + -10.036317825317383 + ], + [ + "▁designs", + -10.036907196044922 + ], + [ + "▁supported", + -10.037177085876465 + ], + [ + "▁System", + -10.03790283203125 + ], + [ + "▁Valley", + -10.038643836975098 + ], + [ + "▁auto", + -10.038908004760742 + ], + [ + "▁stopped", + -10.039628028869629 + ], + [ + "▁behavior", + -10.040438652038574 + ], + [ + "▁standing", + -10.040484428405762 + ], + [ + "▁efficient", + -10.040618896484375 + ], + [ + "▁Women", + -10.040694236755371 + ], + [ + "▁<", + -10.041296005249023 + ], + [ + "▁dress", + -10.0413818359375 + ], + [ + "▁square", + -10.041386604309082 + ], + [ + "▁Community", + -10.041550636291504 + ], + [ + "19", + -10.0430269241333 + ], + [ + "▁earth", + -10.043651580810547 + ], + [ + "▁Society", + -10.043937683105469 + ], + [ + "▁feels", + -10.044211387634277 + ], + [ + "off", + -10.044718742370605 + ], + [ + "▁installation", + -10.045876502990723 + ], + [ + "▁listen", + -10.045916557312012 + ], + [ + "▁draw", + -10.046005249023438 + ], + [ + "▁introduced", + -10.047361373901367 + ], + [ + "▁fuel", + -10.048595428466797 + ], + [ + "▁caught", + -10.048834800720215 + ], + [ + "▁beat", + -10.048918724060059 + ], + [ + "▁affect", + -10.049230575561523 + ], + [ + "▁paint", + -10.049407958984375 + ], + [ + "▁battle", + -10.049674987792969 + ], + [ + "▁measures", + -10.05008602142334 + ], + [ + "▁2005", + -10.050542831420898 + ], + [ + "▁Security", + -10.051178932189941 + ], + [ + "▁dating", + -10.052373886108398 + ], + [ + "▁aspects", + -10.05261516571045 + ], + [ + "▁leads", + -10.052923202514648 + ], + [ + "▁housing", + -10.053177833557129 + ], + [ + "▁Los", + -10.053178787231445 + ], + [ + "▁sugar", + -10.05524730682373 + ], + [ + "▁Which", + -10.055273056030273 + ], + [ + "▁Microsoft", + -10.055776596069336 + ], + [ + "▁fell", + -10.056278228759766 + ], + [ + "▁;", + -10.056593894958496 + ], + [ + "▁vs", + -10.058516502380371 + ], + [ + "▁recipe", + -10.05869197845459 + ], + [ + "▁seek", + -10.058934211730957 + ], + [ + "▁profile", + -10.05900764465332 + ], + [ + "▁Information", + -10.059488296508789 + ], + [ + "▁revenue", + -10.060428619384766 + ], + [ + "▁discover", + -10.060653686523438 + ], + [ + "▁willing", + -10.060784339904785 + ], + [ + "▁diet", + -10.061637878417969 + ], + [ + "▁Earth", + -10.062066078186035 + ], + [ + "▁readers", + -10.062993049621582 + ], + [ + "▁Mary", + -10.0631685256958 + ], + [ + "▁confidence", + -10.063400268554688 + ], + [ + "▁adults", + -10.063721656799316 + ], + [ + "▁mention", + -10.063794136047363 + ], + [ + "▁Beach", + -10.064212799072266 + ], + [ + "▁push", + -10.064789772033691 + ], + [ + "▁writer", + -10.064872741699219 + ], + [ + "▁anywhere", + -10.06622314453125 + ], + [ + "\\", + -10.066812515258789 + ], + [ + "▁delivered", + -10.066872596740723 + ], + [ + "▁locations", + -10.067170143127441 + ], + [ + "▁island", + -10.067262649536133 + ], + [ + "le", + -10.068099021911621 + ], + [ + "▁install", + -10.068201065063477 + ], + [ + "▁novel", + -10.068222045898438 + ], + [ + "▁installed", + -10.068358421325684 + ], + [ + "U", + -10.069947242736816 + ], + [ + "▁desire", + -10.070213317871094 + ], + [ + "▁issued", + -10.070304870605469 + ], + [ + "▁components", + -10.070833206176758 + ], + [ + "▁seeking", + -10.072240829467773 + ], + [ + "▁mode", + -10.072606086730957 + ], + [ + "▁library", + -10.07316780090332 + ], + [ + "▁carried", + -10.073981285095215 + ], + [ + "▁pro", + -10.074137687683105 + ], + [ + "which", + -10.074776649475098 + ], + [ + "▁strategies", + -10.07496166229248 + ], + [ + "▁nine", + -10.07525634765625 + ], + [ + "▁proposed", + -10.075607299804688 + ], + [ + "▁factor", + -10.07636547088623 + ], + [ + "▁limit", + -10.076709747314453 + ], + [ + "▁battery", + -10.077411651611328 + ], + [ + "▁emergency", + -10.07818603515625 + ], + [ + "▁agent", + -10.079349517822266 + ], + [ + "▁decades", + -10.079587936401367 + ], + [ + "▁pull", + -10.079756736755371 + ], + [ + "▁cast", + -10.080427169799805 + ], + [ + "▁sister", + -10.08092975616455 + ], + [ + "▁Instead", + -10.081709861755371 + ], + [ + "▁Thomas", + -10.081724166870117 + ], + [ + "▁fat", + -10.081783294677734 + ], + [ + "▁Commission", + -10.08209228515625 + ], + [ + "▁theory", + -10.083001136779785 + ], + [ + "▁promote", + -10.083770751953125 + ], + [ + "▁partners", + -10.08382797241211 + ], + [ + "▁lunch", + -10.084181785583496 + ], + [ + "▁appearance", + -10.084715843200684 + ], + [ + "▁Program", + -10.08591365814209 + ], + [ + "▁TO", + -10.08655834197998 + ], + [ + "▁paying", + -10.086982727050781 + ], + [ + "▁determined", + -10.087306022644043 + ], + [ + "▁faster", + -10.087523460388184 + ], + [ + "▁approved", + -10.087578773498535 + ], + [ + "▁birth", + -10.087921142578125 + ], + [ + "▁executive", + -10.08800220489502 + ], + [ + "▁officer", + -10.088706016540527 + ], + [ + "▁intended", + -10.089159965515137 + ], + [ + "#", + -10.089963912963867 + ], + [ + "▁tend", + -10.090283393859863 + ], + [ + "▁academic", + -10.091893196105957 + ], + [ + "▁browser", + -10.093416213989258 + ], + [ + "▁o", + -10.09445858001709 + ], + [ + "▁dance", + -10.094841003417969 + ], + [ + "▁mass", + -10.095008850097656 + ], + [ + "▁attend", + -10.095231056213379 + ], + [ + "▁provider", + -10.095349311828613 + ], + [ + "▁bringing", + -10.095603942871094 + ], + [ + "▁Project", + -10.096203804016113 + ], + [ + "▁surgery", + -10.09732723236084 + ], + [ + "▁accounts", + -10.097687721252441 + ], + [ + "▁launched", + -10.098342895507812 + ], + [ + "▁windows", + -10.098411560058594 + ], + [ + "▁Hi", + -10.098991394042969 + ], + [ + "▁appreciate", + -10.099400520324707 + ], + [ + "▁32", + -10.100238800048828 + ], + [ + "▁worse", + -10.100699424743652 + ], + [ + "▁affordable", + -10.101025581359863 + ], + [ + "▁inspired", + -10.101186752319336 + ], + [ + "▁broken", + -10.102444648742676 + ], + [ + "less", + -10.103154182434082 + ], + [ + "▁parking", + -10.103253364562988 + ], + [ + "▁dogs", + -10.104839324951172 + ], + [ + "▁failure", + -10.104979515075684 + ], + [ + "▁noted", + -10.105433464050293 + ], + [ + "▁tea", + -10.105927467346191 + ], + [ + "▁concerned", + -10.106049537658691 + ], + [ + "▁sub", + -10.106684684753418 + ], + [ + "▁websites", + -10.1072359085083 + ], + [ + "▁encourage", + -10.107704162597656 + ], + [ + "▁catch", + -10.108351707458496 + ], + [ + "▁owned", + -10.108444213867188 + ], + [ + "′", + -10.109232902526855 + ], + [ + "▁dining", + -10.110597610473633 + ], + [ + "▁forced", + -10.111113548278809 + ], + [ + "▁functions", + -10.111506462097168 + ], + [ + "▁automatically", + -10.1121187210083 + ], + [ + "▁45", + -10.11225414276123 + ], + [ + "▁Did", + -10.113664627075195 + ], + [ + "▁Journal", + -10.113815307617188 + ], + [ + "▁Gold", + -10.113982200622559 + ], + [ + "▁agreed", + -10.114301681518555 + ], + [ + "▁object", + -10.114826202392578 + ], + [ + "▁suitable", + -10.115138053894043 + ], + [ + "▁stated", + -10.115750312805176 + ], + [ + "▁prepare", + -10.115787506103516 + ], + [ + "ton", + -10.116792678833008 + ], + [ + "▁courses", + -10.116904258728027 + ], + [ + "▁depending", + -10.116918563842773 + ], + [ + "▁tickets", + -10.117334365844727 + ], + [ + "▁Team", + -10.117545127868652 + ], + [ + "▁Japanese", + -10.117578506469727 + ], + [ + "▁identified", + -10.117602348327637 + ], + [ + "▁purposes", + -10.119058609008789 + ], + [ + "apos", + -10.12044906616211 + ], + [ + "▁interests", + -10.120450973510742 + ], + [ + "▁cream", + -10.121158599853516 + ], + [ + "▁reduced", + -10.12142276763916 + ], + [ + "▁signs", + -10.121594429016113 + ], + [ + "▁doors", + -10.121822357177734 + ], + [ + "▁ingredients", + -10.121881484985352 + ], + [ + "▁PC", + -10.122061729431152 + ], + [ + "▁dollars", + -10.12244701385498 + ], + [ + "▁university", + -10.122621536254883 + ], + [ + "▁Call", + -10.123363494873047 + ], + [ + "▁twice", + -10.123905181884766 + ], + [ + "▁technologies", + -10.123944282531738 + ], + [ + "▁audio", + -10.124046325683594 + ], + [ + "▁hundreds", + -10.124251365661621 + ], + [ + "▁Americans", + -10.124343872070312 + ], + [ + "▁shipping", + -10.124488830566406 + ], + [ + "▁violence", + -10.12460994720459 + ], + [ + "▁Brown", + -10.125083923339844 + ], + [ + "▁Technology", + -10.126089096069336 + ], + [ + "▁Up", + -10.126155853271484 + ], + [ + "▁industrial", + -10.126164436340332 + ], + [ + "▁Australian", + -10.126357078552246 + ], + [ + "▁fixed", + -10.12637996673584 + ], + [ + "▁sexual", + -10.126448631286621 + ], + [ + "▁boat", + -10.126465797424316 + ], + [ + "▁About", + -10.127764701843262 + ], + [ + "▁familiar", + -10.12784481048584 + ], + [ + "▁Chris", + -10.1279296875 + ], + [ + "▁participants", + -10.128060340881348 + ], + [ + "▁imagine", + -10.128756523132324 + ], + [ + "▁Hill", + -10.129251480102539 + ], + [ + "▁telling", + -10.131080627441406 + ], + [ + "▁context", + -10.131571769714355 + ], + [ + "▁treated", + -10.132232666015625 + ], + [ + "▁fix", + -10.132878303527832 + ], + [ + "▁greatest", + -10.132878303527832 + ], + [ + "▁bigger", + -10.133901596069336 + ], + [ + "▁database", + -10.134149551391602 + ], + [ + "▁Centre", + -10.134275436401367 + ], + [ + "▁religious", + -10.134686470031738 + ], + [ + "▁exist", + -10.134739875793457 + ], + [ + "ia", + -10.136007308959961 + ], + [ + "▁Canadian", + -10.136337280273438 + ], + [ + "▁considering", + -10.137524604797363 + ], + [ + "▁tough", + -10.138267517089844 + ], + [ + "▁snow", + -10.139446258544922 + ], + [ + "▁bike", + -10.139852523803711 + ], + [ + "▁therapy", + -10.13989543914795 + ], + [ + "▁defense", + -10.140144348144531 + ], + [ + "▁improved", + -10.140375137329102 + ], + [ + "▁practical", + -10.141103744506836 + ], + [ + "▁aid", + -10.142060279846191 + ], + [ + "▁Download", + -10.142179489135742 + ], + [ + "▁suit", + -10.142648696899414 + ], + [ + "▁mark", + -10.14322280883789 + ], + [ + "▁feedback", + -10.14353084564209 + ], + [ + "▁village", + -10.144086837768555 + ], + [ + "▁sample", + -10.144146919250488 + ], + [ + "▁planned", + -10.144575119018555 + ], + [ + "▁chief", + -10.144755363464355 + ], + [ + "▁Mike", + -10.144767761230469 + ], + [ + "▁plays", + -10.144994735717773 + ], + [ + "▁route", + -10.145506858825684 + ], + [ + "▁birthday", + -10.145983695983887 + ], + [ + "▁Tom", + -10.146013259887695 + ], + [ + "▁drugs", + -10.146072387695312 + ], + [ + "▁perspective", + -10.146363258361816 + ], + [ + "▁sides", + -10.14784049987793 + ], + [ + "▁officers", + -10.148348808288574 + ], + [ + "▁count", + -10.149505615234375 + ], + [ + "▁dumpster", + -10.150009155273438 + ], + [ + "▁updates", + -10.150544166564941 + ], + [ + "▁deals", + -10.150601387023926 + ], + [ + "▁grade", + -10.151026725769043 + ], + [ + "▁lights", + -10.151982307434082 + ], + [ + "▁obtain", + -10.152369499206543 + ], + [ + "▁employee", + -10.152637481689453 + ], + [ + "▁trouble", + -10.152745246887207 + ], + [ + "▁wearing", + -10.152750968933105 + ], + [ + "▁EU", + -10.153138160705566 + ], + [ + "▁significantly", + -10.153748512268066 + ], + [ + "▁yesterday", + -10.154046058654785 + ], + [ + "▁casino", + -10.15412425994873 + ], + [ + "▁freedom", + -10.154592514038086 + ], + [ + "▁distribution", + -10.154655456542969 + ], + [ + "▁choices", + -10.155068397521973 + ], + [ + "▁pop", + -10.155284881591797 + ], + [ + "▁adult", + -10.15536880493164 + ], + [ + "▁revealed", + -10.155452728271484 + ], + [ + "▁affected", + -10.155753135681152 + ], + [ + "▁spirit", + -10.156272888183594 + ], + [ + "▁mom", + -10.156696319580078 + ], + [ + "▁massive", + -10.157480239868164 + ], + [ + "▁ID", + -10.15749454498291 + ], + [ + "▁creation", + -10.158079147338867 + ], + [ + "▁Water", + -10.158285140991211 + ], + [ + "▁Family", + -10.158551216125488 + ], + [ + "24", + -10.159481048583984 + ], + [ + "▁charged", + -10.159577369689941 + ], + [ + "▁boys", + -10.16002368927002 + ], + [ + "▁Long", + -10.160268783569336 + ], + [ + "▁speaking", + -10.160353660583496 + ], + [ + "▁electric", + -10.161312103271484 + ], + [ + "▁prefer", + -10.161446571350098 + ], + [ + "▁comprehensive", + -10.161904335021973 + ], + [ + "▁interior", + -10.162093162536621 + ], + [ + "▁Cup", + -10.162391662597656 + ], + [ + "▁William", + -10.16354751586914 + ], + [ + "▁remaining", + -10.163778305053711 + ], + [ + "▁television", + -10.16429615020752 + ], + [ + "▁contain", + -10.164711952209473 + ], + [ + "we", + -10.165056228637695 + ], + [ + "▁chair", + -10.16510009765625 + ], + [ + "▁PM", + -10.165404319763184 + ], + [ + "▁concern", + -10.166376113891602 + ], + [ + "▁recorded", + -10.166377067565918 + ], + [ + "▁fund", + -10.166967391967773 + ], + [ + "▁knowing", + -10.16711139678955 + ], + [ + "▁male", + -10.167135238647461 + ], + [ + "de", + -10.167768478393555 + ], + [ + "▁Jan", + -10.168102264404297 + ], + [ + "▁picked", + -10.168646812438965 + ], + [ + "▁investors", + -10.168911933898926 + ], + [ + "▁herself", + -10.169096946716309 + ], + [ + "▁tests", + -10.16923713684082 + ], + [ + "▁closer", + -10.170970916748047 + ], + [ + "▁monthly", + -10.170977592468262 + ], + [ + "▁supporting", + -10.171314239501953 + ], + [ + "▁missed", + -10.172270774841309 + ], + [ + "▁marriage", + -10.172669410705566 + ], + [ + "▁expression", + -10.17270565032959 + ], + [ + "▁chain", + -10.173002243041992 + ], + [ + "▁Real", + -10.173164367675781 + ], + [ + "▁covers", + -10.17326545715332 + ], + [ + "▁2004", + -10.173702239990234 + ], + [ + "▁episode", + -10.175325393676758 + ], + [ + "▁roll", + -10.175776481628418 + ], + [ + "▁gun", + -10.176798820495605 + ], + [ + "▁effectively", + -10.177870750427246 + ], + [ + "▁Michigan", + -10.178030967712402 + ], + [ + "▁enable", + -10.178169250488281 + ], + [ + "▁meal", + -10.178548812866211 + ], + [ + "▁visiting", + -10.178548812866211 + ], + [ + "▁valuable", + -10.178874969482422 + ], + [ + "▁perfectly", + -10.17908763885498 + ], + [ + "▁consumer", + -10.179359436035156 + ], + [ + "▁Finally", + -10.180255889892578 + ], + [ + "▁purchased", + -10.18062973022461 + ], + [ + "▁educational", + -10.180780410766602 + ], + [ + "▁Asia", + -10.181758880615234 + ], + [ + "▁Keep", + -10.182048797607422 + ], + [ + "▁clinical", + -10.182497024536133 + ], + [ + "▁bright", + -10.182821273803711 + ], + [ + "▁fruit", + -10.183004379272461 + ], + [ + "▁Medical", + -10.18354606628418 + ], + [ + "▁expertise", + -10.183771133422852 + ], + [ + "▁advertising", + -10.184672355651855 + ], + [ + "▁movies", + -10.184761047363281 + ], + [ + "▁causes", + -10.184976577758789 + ], + [ + "▁drivers", + -10.185230255126953 + ], + [ + "na", + -10.186883926391602 + ], + [ + "▁Sometimes", + -10.18707275390625 + ], + [ + "▁consumers", + -10.187084197998047 + ], + [ + "▁cloud", + -10.187493324279785 + ], + [ + "▁speech", + -10.18779468536377 + ], + [ + "▁Using", + -10.187847137451172 + ], + [ + "▁shooting", + -10.187982559204102 + ], + [ + "▁Android", + -10.18865966796875 + ], + [ + "▁rain", + -10.190019607543945 + ], + [ + "not", + -10.190023422241211 + ], + [ + "▁buildings", + -10.19027328491211 + ], + [ + "▁commitment", + -10.190923690795898 + ], + [ + "▁crime", + -10.191275596618652 + ], + [ + "▁reliable", + -10.191328048706055 + ], + [ + "▁teach", + -10.191615104675293 + ], + [ + "▁Mexico", + -10.19182014465332 + ], + [ + "▁supposed", + -10.192816734313965 + ], + [ + "▁Angeles", + -10.192948341369629 + ], + [ + "▁Plus", + -10.194310188293457 + ], + [ + "▁g", + -10.194473266601562 + ], + [ + "▁stars", + -10.194726943969727 + ], + [ + "▁glad", + -10.194831848144531 + ], + [ + "▁turns", + -10.194927215576172 + ], + [ + "▁colour", + -10.195310592651367 + ], + [ + "but", + -10.195707321166992 + ], + [ + "▁surrounding", + -10.19619369506836 + ], + [ + "▁happening", + -10.197452545166016 + ], + [ + "▁portion", + -10.197700500488281 + ], + [ + "▁formed", + -10.1980562210083 + ], + [ + "▁chosen", + -10.19811725616455 + ], + [ + "▁Media", + -10.19864559173584 + ], + [ + "21", + -10.19914436340332 + ], + [ + "▁accepted", + -10.199224472045898 + ], + [ + "▁ring", + -10.199410438537598 + ], + [ + "▁tells", + -10.19941234588623 + ], + [ + "▁Times", + -10.199784278869629 + ], + [ + "▁competitive", + -10.199935913085938 + ], + [ + "▁surprise", + -10.20065975189209 + ], + [ + "▁examples", + -10.200753211975098 + ], + [ + "▁switch", + -10.202596664428711 + ], + [ + "▁Care", + -10.202600479125977 + ], + [ + "▁protein", + -10.202921867370605 + ], + [ + "▁historical", + -10.20345401763916 + ], + [ + "▁load", + -10.204008102416992 + ], + [ + "▁Conference", + -10.204253196716309 + ], + [ + "if", + -10.206238746643066 + ], + [ + "▁survey", + -10.206717491149902 + ], + [ + "▁mouth", + -10.20679759979248 + ], + [ + "ism", + -10.207478523254395 + ], + [ + "▁symptoms", + -10.207710266113281 + ], + [ + "▁relatively", + -10.20789623260498 + ], + [ + "▁smooth", + -10.208066940307617 + ], + [ + "▁fields", + -10.208425521850586 + ], + [ + "▁electronic", + -10.208845138549805 + ], + [ + "▁providers", + -10.209151268005371 + ], + [ + "▁replace", + -10.209516525268555 + ], + [ + "▁rare", + -10.209563255310059 + ], + [ + "▁resource", + -10.2100830078125 + ], + [ + "22", + -10.210196495056152 + ], + [ + "▁entirely", + -10.210224151611328 + ], + [ + "▁resolution", + -10.21039867401123 + ], + [ + "▁cutting", + -10.210532188415527 + ], + [ + "▁flowers", + -10.210594177246094 + ], + [ + "▁rating", + -10.211681365966797 + ], + [ + "▁extensive", + -10.212533950805664 + ], + [ + "▁Old", + -10.212789535522461 + ], + [ + "▁Its", + -10.212828636169434 + ], + [ + "▁assets", + -10.213597297668457 + ], + [ + "▁infrastructure", + -10.214455604553223 + ], + [ + "▁emotional", + -10.214776039123535 + ], + [ + "▁usual", + -10.214823722839355 + ], + [ + "▁shoes", + -10.215109825134277 + ], + [ + "▁regularly", + -10.215872764587402 + ], + [ + "▁incredible", + -10.215885162353516 + ], + [ + "▁noticed", + -10.21593189239502 + ], + [ + "▁candidates", + -10.216409683227539 + ], + [ + "▁breakfast", + -10.216596603393555 + ], + [ + "▁Martin", + -10.219084739685059 + ], + [ + "▁camp", + -10.219793319702148 + ], + [ + "do", + -10.219988822937012 + ], + [ + "▁zone", + -10.220006942749023 + ], + [ + "▁Lee", + -10.22031021118164 + ], + [ + "▁delicious", + -10.220815658569336 + ], + [ + "▁recovery", + -10.220830917358398 + ], + [ + "▁kinds", + -10.220952987670898 + ], + [ + "▁receiving", + -10.220991134643555 + ], + [ + "▁truck", + -10.221363067626953 + ], + [ + "▁matters", + -10.221424102783203 + ], + [ + "▁Global", + -10.221614837646484 + ], + [ + "▁feed", + -10.221760749816895 + ], + [ + "▁w", + -10.222040176391602 + ], + [ + "▁innovative", + -10.223052024841309 + ], + [ + "▁Under", + -10.224170684814453 + ], + [ + "▁begins", + -10.224523544311523 + ], + [ + "▁Very", + -10.224967956542969 + ], + [ + "▁engineering", + -10.225034713745117 + ], + [ + "▁y", + -10.225069046020508 + ], + [ + "▁register", + -10.227509498596191 + ], + [ + "▁layer", + -10.227529525756836 + ], + [ + "w", + -10.227842330932617 + ], + [ + "▁Food", + -10.228257179260254 + ], + [ + "▁settings", + -10.228541374206543 + ], + [ + "▁Bar", + -10.231075286865234 + ], + [ + "▁license", + -10.231389045715332 + ], + [ + "▁Museum", + -10.231485366821289 + ], + [ + "▁obvious", + -10.231904029846191 + ], + [ + "▁accident", + -10.232696533203125 + ], + [ + "▁represent", + -10.23298168182373 + ], + [ + "▁f", + -10.233510971069336 + ], + [ + "▁answers", + -10.233633041381836 + ], + [ + "▁explained", + -10.233933448791504 + ], + [ + "▁upper", + -10.234099388122559 + ], + [ + "▁studio", + -10.234488487243652 + ], + [ + "▁taught", + -10.234725952148438 + ], + [ + "▁participate", + -10.236002922058105 + ], + [ + "▁grew", + -10.236910820007324 + ], + [ + "▁secret", + -10.237204551696777 + ], + [ + "▁respond", + -10.237397193908691 + ], + [ + "TM", + -10.23769760131836 + ], + [ + "▁Award", + -10.238240242004395 + ], + [ + "▁brands", + -10.238517761230469 + ], + [ + "▁stick", + -10.23997688293457 + ], + [ + "▁walked", + -10.239989280700684 + ], + [ + "▁Despite", + -10.240777969360352 + ], + [ + "▁arms", + -10.240921020507812 + ], + [ + "▁presentation", + -10.241205215454102 + ], + [ + "▁manufacturing", + -10.241693496704102 + ], + [ + "▁walls", + -10.242647171020508 + ], + [ + "▁Having", + -10.243218421936035 + ], + [ + "▁agencies", + -10.243486404418945 + ], + [ + "▁milk", + -10.243542671203613 + ], + [ + "▁procedure", + -10.243664741516113 + ], + [ + "▁suggested", + -10.244123458862305 + ], + [ + "▁visual", + -10.244206428527832 + ], + [ + "▁youth", + -10.244732856750488 + ], + [ + "Y", + -10.245677947998047 + ], + [ + "▁wild", + -10.24582290649414 + ], + [ + "▁Back", + -10.24642276763916 + ], + [ + "▁channel", + -10.246432304382324 + ], + [ + "▁authority", + -10.247437477111816 + ], + [ + "▁iPhone", + -10.247674942016602 + ], + [ + "▁accurate", + -10.247780799865723 + ], + [ + "▁fabric", + -10.248183250427246 + ], + [ + "▁Grand", + -10.248444557189941 + ], + [ + "▁criminal", + -10.24846363067627 + ], + [ + "▁rental", + -10.248733520507812 + ], + [ + "▁conducted", + -10.248735427856445 + ], + [ + "▁CEO", + -10.248762130737305 + ], + [ + "▁defined", + -10.248981475830078 + ], + [ + "▁retail", + -10.249005317687988 + ], + [ + "▁element", + -10.249202728271484 + ], + [ + "▁2003", + -10.250749588012695 + ], + [ + "▁shower", + -10.251276969909668 + ], + [ + "▁kill", + -10.251306533813477 + ], + [ + "▁entered", + -10.251564025878906 + ], + [ + "▁Sun", + -10.251965522766113 + ], + [ + "▁apart", + -10.251972198486328 + ], + [ + "▁guest", + -10.252058029174805 + ], + [ + "▁identity", + -10.25208854675293 + ], + [ + "▁Paris", + -10.252803802490234 + ], + [ + "▁Series", + -10.253679275512695 + ], + [ + "▁300", + -10.253833770751953 + ], + [ + "▁signal", + -10.254997253417969 + ], + [ + "▁border", + -10.255195617675781 + ], + [ + "▁candidate", + -10.255258560180664 + ], + [ + "▁dangerous", + -10.255438804626465 + ], + [ + "▁Scott", + -10.255915641784668 + ], + [ + "▁roof", + -10.256057739257812 + ], + [ + "▁throw", + -10.256710052490234 + ], + [ + "▁apps", + -10.25818920135498 + ], + [ + "▁indeed", + -10.25904655456543 + ], + [ + "▁farm", + -10.260176658630371 + ], + [ + "▁replacement", + -10.260276794433594 + ], + [ + "▁cycle", + -10.260418891906738 + ], + [ + "▁passion", + -10.260499954223633 + ], + [ + "▁circumstances", + -10.261133193969727 + ], + [ + "▁topics", + -10.261722564697266 + ], + [ + "▁citizens", + -10.261961936950684 + ], + [ + "▁moments", + -10.262449264526367 + ], + [ + "▁Hotel", + -10.262707710266113 + ], + [ + "▁committee", + -10.26280403137207 + ], + [ + "▁rent", + -10.263293266296387 + ], + [ + "all", + -10.263432502746582 + ], + [ + "▁grown", + -10.263530731201172 + ], + [ + "so", + -10.263532638549805 + ], + [ + "▁honest", + -10.26506519317627 + ], + [ + "▁successfully", + -10.265745162963867 + ], + [ + "▁holds", + -10.266633033752441 + ], + [ + "He", + -10.266972541809082 + ], + [ + "▁pet", + -10.266974449157715 + ], + [ + "▁Mac", + -10.266993522644043 + ], + [ + "▁instructions", + -10.267207145690918 + ], + [ + "▁IN", + -10.267319679260254 + ], + [ + "▁extended", + -10.26738452911377 + ], + [ + "▁occur", + -10.267431259155273 + ], + [ + "▁authorities", + -10.267508506774902 + ], + [ + "▁messages", + -10.268033027648926 + ], + [ + "▁none", + -10.268135070800781 + ], + [ + "▁output", + -10.269891738891602 + ], + [ + "01", + -10.270009994506836 + ], + [ + "▁exam", + -10.27088737487793 + ], + [ + "un", + -10.271249771118164 + ], + [ + "If", + -10.271395683288574 + ], + [ + "▁Therefore", + -10.271407127380371 + ], + [ + "▁domestic", + -10.27204704284668 + ], + [ + "▁Show", + -10.272322654724121 + ], + [ + "▁reasonable", + -10.272488594055176 + ], + [ + "▁regional", + -10.272875785827637 + ], + [ + "▁believed", + -10.2731294631958 + ], + [ + "▁clothes", + -10.273143768310547 + ], + [ + "▁attacks", + -10.27346420288086 + ], + [ + "▁restaurants", + -10.273897171020508 + ], + [ + "▁constantly", + -10.274005889892578 + ], + [ + "▁houses", + -10.274300575256348 + ], + [ + "▁equal", + -10.27443790435791 + ], + [ + "▁Right", + -10.274876594543457 + ], + [ + "▁filed", + -10.274972915649414 + ], + [ + "▁featured", + -10.275300025939941 + ], + [ + "▁turning", + -10.275375366210938 + ], + [ + "▁pack", + -10.276261329650879 + ], + [ + "▁facing", + -10.276689529418945 + ], + [ + "▁films", + -10.27761459350586 + ], + [ + "▁river", + -10.278502464294434 + ], + [ + "▁crisis", + -10.279410362243652 + ], + [ + "▁ends", + -10.279752731323242 + ], + [ + "▁painting", + -10.281052589416504 + ], + [ + "45", + -10.281131744384766 + ], + [ + "▁lighting", + -10.281538963317871 + ], + [ + "▁confirmed", + -10.281804084777832 + ], + [ + "▁spoke", + -10.283350944519043 + ], + [ + "ic", + -10.283879280090332 + ], + [ + "▁fellow", + -10.283990859985352 + ], + [ + "▁counter", + -10.284134864807129 + ], + [ + "▁frequently", + -10.284366607666016 + ], + [ + "▁silver", + -10.284791946411133 + ], + [ + "▁apartment", + -10.285810470581055 + ], + [ + "▁scientific", + -10.286029815673828 + ], + [ + "▁arm", + -10.286904335021973 + ], + [ + "▁abuse", + -10.287210464477539 + ], + [ + "What", + -10.288201332092285 + ], + [ + "▁solar", + -10.28821849822998 + ], + [ + "▁victory", + -10.289192199707031 + ], + [ + "▁judge", + -10.28957748413086 + ], + [ + "▁positions", + -10.2897310256958 + ], + [ + "▁worst", + -10.290329933166504 + ], + [ + "▁Market", + -10.291055679321289 + ], + [ + "▁Federal", + -10.291321754455566 + ], + [ + "▁cooking", + -10.291383743286133 + ], + [ + "▁winner", + -10.291454315185547 + ], + [ + "▁chicken", + -10.292146682739258 + ], + [ + "▁Master", + -10.292398452758789 + ], + [ + "▁plate", + -10.29279899597168 + ], + [ + "▁phase", + -10.29282283782959 + ], + [ + "▁losing", + -10.292871475219727 + ], + [ + "▁aim", + -10.293267250061035 + ], + [ + "▁crowd", + -10.293363571166992 + ], + [ + "▁contemporary", + -10.293981552124023 + ], + [ + "▁improvement", + -10.294057846069336 + ], + [ + "▁league", + -10.294645309448242 + ], + [ + "▁parent", + -10.29529094696045 + ], + [ + "▁orders", + -10.295320510864258 + ], + [ + "▁Italian", + -10.295378684997559 + ], + [ + "▁El", + -10.295550346374512 + ], + [ + "▁NOT", + -10.295750617980957 + ], + [ + "▁chocolate", + -10.295814514160156 + ], + [ + "▁Royal", + -10.295894622802734 + ], + [ + "▁folks", + -10.296163558959961 + ], + [ + "▁carefully", + -10.296466827392578 + ], + [ + "▁fighting", + -10.2973051071167 + ], + [ + "▁Richard", + -10.297438621520996 + ], + [ + "▁quiet", + -10.29832935333252 + ], + [ + "▁pulled", + -10.298466682434082 + ], + [ + "▁patterns", + -10.29857063293457 + ], + [ + "▁institutions", + -10.298962593078613 + ], + [ + "land", + -10.299149513244629 + ], + [ + "▁Johnson", + -10.299853324890137 + ], + [ + "▁Contact", + -10.299918174743652 + ], + [ + "net", + -10.30066967010498 + ], + [ + "▁realized", + -10.30108642578125 + ], + [ + "▁Joe", + -10.3013334274292 + ], + [ + "▁Car", + -10.30162525177002 + ], + [ + "▁nearby", + -10.302008628845215 + ], + [ + "▁Yet", + -10.302313804626465 + ], + [ + "▁unable", + -10.303032875061035 + ], + [ + "▁scheduled", + -10.303412437438965 + ], + [ + "▁motion", + -10.304300308227539 + ], + [ + "▁liked", + -10.304869651794434 + ], + [ + "▁Jack", + -10.305572509765625 + ], + [ + "▁Children", + -10.305694580078125 + ], + [ + "▁description", + -10.305826187133789 + ], + [ + "▁guarantee", + -10.306218147277832 + ], + [ + "▁domain", + -10.306378364562988 + ], + [ + "▁capable", + -10.306674003601074 + ], + [ + "▁Game", + -10.307662010192871 + ], + [ + "▁efficiency", + -10.308247566223145 + ], + [ + "▁upcoming", + -10.308576583862305 + ], + [ + "▁researchers", + -10.308631896972656 + ], + [ + "▁Network", + -10.308757781982422 + ], + [ + "▁civil", + -10.308817863464355 + ], + [ + "▁cat", + -10.30886459350586 + ], + [ + "▁assessment", + -10.309192657470703 + ], + [ + "▁worldwide", + -10.309279441833496 + ], + [ + "▁cheese", + -10.310334205627441 + ], + [ + "▁cup", + -10.310781478881836 + ], + [ + "▁transport", + -10.311503410339355 + ], + [ + "▁typical", + -10.311667442321777 + ], + [ + "▁employment", + -10.311760902404785 + ], + [ + "▁surprised", + -10.311761856079102 + ], + [ + "▁salt", + -10.312582969665527 + ], + [ + "▁organic", + -10.312596321105957 + ], + [ + "▁Still", + -10.312993049621582 + ], + [ + "▁Part", + -10.31322193145752 + ], + [ + "▁appointment", + -10.313432693481445 + ], + [ + "▁joint", + -10.31398868560791 + ], + [ + "▁meat", + -10.315472602844238 + ], + [ + "▁justice", + -10.3156156539917 + ], + [ + "▁expectations", + -10.315665245056152 + ], + [ + "▁degrees", + -10.315691947937012 + ], + [ + "“", + -10.316154479980469 + ], + [ + "▁exact", + -10.316554069519043 + ], + [ + "Z", + -10.316977500915527 + ], + [ + "▁leather", + -10.31706428527832 + ], + [ + "▁sat", + -10.317764282226562 + ], + [ + "▁Review", + -10.318175315856934 + ], + [ + "▁input", + -10.318443298339844 + ], + [ + "▁impossible", + -10.31844711303711 + ], + [ + "el", + -10.318862915039062 + ], + [ + "▁payments", + -10.318893432617188 + ], + [ + "▁registration", + -10.319204330444336 + ], + [ + "▁soul", + -10.31921100616455 + ], + [ + "▁Three", + -10.31923770904541 + ], + [ + "▁Virginia", + -10.319259643554688 + ], + [ + "▁seriously", + -10.319543838500977 + ], + [ + "▁cake", + -10.319555282592773 + ], + [ + "▁Donald", + -10.319992065429688 + ], + [ + "▁kid", + -10.320120811462402 + ], + [ + "▁Senate", + -10.320571899414062 + ], + [ + "99", + -10.321176528930664 + ], + [ + "▁stands", + -10.321276664733887 + ], + [ + "▁external", + -10.321911811828613 + ], + [ + "▁edition", + -10.321968078613281 + ], + [ + "▁dropped", + -10.322257041931152 + ], + [ + "▁scored", + -10.32291030883789 + ], + [ + "▁exclusive", + -10.323148727416992 + ], + [ + "▁mixed", + -10.32349967956543 + ], + [ + "▁48", + -10.324813842773438 + ], + [ + "▁discussed", + -10.325024604797363 + ], + [ + "▁ordered", + -10.325126647949219 + ], + [ + "▁Chief", + -10.325523376464844 + ], + [ + "▁Buy", + -10.325642585754395 + ], + [ + "▁Energy", + -10.326047897338867 + ], + [ + "▁yellow", + -10.326790809631348 + ], + [ + "▁obtained", + -10.327215194702148 + ], + [ + "▁threat", + -10.327311515808105 + ], + [ + "▁impressive", + -10.327404022216797 + ], + [ + "▁attorney", + -10.327452659606934 + ], + [ + "▁Set", + -10.327888488769531 + ], + [ + "▁medicine", + -10.327996253967285 + ], + [ + "▁goods", + -10.328208923339844 + ], + [ + "▁Learn", + -10.329211235046387 + ], + [ + "▁Carolina", + -10.329466819763184 + ], + [ + "▁fly", + -10.329474449157715 + ], + [ + "▁procedures", + -10.329734802246094 + ], + [ + "▁agents", + -10.330159187316895 + ], + [ + "▁awareness", + -10.330476760864258 + ], + [ + "te", + -10.330573081970215 + ], + [ + "▁politics", + -10.331092834472656 + ], + [ + "▁Jones", + -10.331332206726074 + ], + [ + "▁hate", + -10.331453323364258 + ], + [ + "▁Republican", + -10.33198356628418 + ], + [ + "▁Though", + -10.332229614257812 + ], + [ + "ville", + -10.332783699035645 + ], + [ + "▁brown", + -10.332854270935059 + ], + [ + "▁originally", + -10.333562850952148 + ], + [ + "ar", + -10.333907127380371 + ], + [ + "▁teeth", + -10.335687637329102 + ], + [ + "▁tiny", + -10.336238861083984 + ], + [ + "▁Academy", + -10.336270332336426 + ], + [ + "▁recognized", + -10.337061882019043 + ], + [ + "▁featuring", + -10.337103843688965 + ], + [ + "▁trained", + -10.337665557861328 + ], + [ + "▁hurt", + -10.33771800994873 + ], + [ + "▁collect", + -10.33785629272461 + ], + [ + "▁hire", + -10.338068008422852 + ], + [ + "▁funny", + -10.33832836151123 + ], + [ + "▁Ben", + -10.338350296020508 + ], + [ + "▁possibility", + -10.338682174682617 + ], + [ + "▁incident", + -10.338757514953613 + ], + [ + "▁Arts", + -10.338767051696777 + ], + [ + "▁tomorrow", + -10.339327812194824 + ], + [ + "▁native", + -10.339577674865723 + ], + [ + "▁informed", + -10.341084480285645 + ], + [ + "▁sizes", + -10.341222763061523 + ], + [ + "▁personally", + -10.341279983520508 + ], + [ + "▁entertainment", + -10.341883659362793 + ], + [ + "▁earn", + -10.342069625854492 + ], + [ + "▁command", + -10.342121124267578 + ], + [ + "▁searching", + -10.342185974121094 + ], + [ + "▁Sea", + -10.34218692779541 + ], + [ + "▁Wall", + -10.342896461486816 + ], + [ + "▁crazy", + -10.343131065368652 + ], + [ + "▁fairly", + -10.34348201751709 + ], + [ + "▁Festival", + -10.344110488891602 + ], + [ + "▁Unfortunately", + -10.344181060791016 + ], + [ + "▁beer", + -10.34465503692627 + ], + [ + "▁rear", + -10.345026016235352 + ], + [ + "▁smile", + -10.345185279846191 + ], + [ + "▁hoping", + -10.345272064208984 + ], + [ + "▁sport", + -10.345523834228516 + ], + [ + "▁earned", + -10.345983505249023 + ], + [ + "▁objects", + -10.34630298614502 + ], + [ + "▁ancient", + -10.346356391906738 + ], + [ + "▁remote", + -10.34657096862793 + ], + [ + "▁Steve", + -10.347067832946777 + ], + [ + "▁foods", + -10.347200393676758 + ], + [ + "▁loans", + -10.347918510437012 + ], + [ + "see", + -10.348278999328613 + ], + [ + "▁prove", + -10.348325729370117 + ], + [ + "23", + -10.348600387573242 + ], + [ + "▁hardware", + -10.349187850952148 + ], + [ + "▁Full", + -10.349425315856934 + ], + [ + "▁machines", + -10.34951400756836 + ], + [ + "end", + -10.349700927734375 + ], + [ + "▁talent", + -10.349879264831543 + ], + [ + "ist", + -10.349931716918945 + ], + [ + "▁Boston", + -10.350418090820312 + ], + [ + "▁figures", + -10.35078239440918 + ], + [ + "▁alcohol", + -10.351107597351074 + ], + [ + "▁banks", + -10.351458549499512 + ], + [ + "▁meetings", + -10.352178573608398 + ], + [ + "▁ticket", + -10.35247802734375 + ], + [ + "▁inspiration", + -10.353206634521484 + ], + [ + "▁Photo", + -10.353507995605469 + ], + [ + "▁Looking", + -10.354545593261719 + ], + [ + "▁anyway", + -10.35464859008789 + ], + [ + "ta", + -10.355018615722656 + ], + [ + "▁aspect", + -10.355292320251465 + ], + [ + "▁ongoing", + -10.355629920959473 + ], + [ + "▁sessions", + -10.355897903442383 + ], + [ + "▁mainly", + -10.356328964233398 + ], + [ + "▁county", + -10.356359481811523 + ], + [ + "▁favourite", + -10.357268333435059 + ], + [ + "▁slowly", + -10.357320785522461 + ], + [ + "▁represents", + -10.357856750488281 + ], + [ + "▁returns", + -10.357893943786621 + ], + [ + "▁privacy", + -10.358078002929688 + ], + [ + "▁foundation", + -10.35841178894043 + ], + [ + "▁crew", + -10.358633041381836 + ], + [ + "▁discount", + -10.358718872070312 + ], + [ + "▁situations", + -10.358861923217773 + ], + [ + "son", + -10.360809326171875 + ], + [ + "▁enhance", + -10.360852241516113 + ], + [ + "▁appeal", + -10.360955238342285 + ], + [ + "▁2002", + -10.361528396606445 + ], + [ + "▁Middle", + -10.361658096313477 + ], + [ + "▁challenging", + -10.361858367919922 + ], + [ + "ley", + -10.362142562866211 + ], + [ + "▁everyday", + -10.362749099731445 + ], + [ + "▁tasks", + -10.362886428833008 + ], + [ + "▁supplies", + -10.363975524902344 + ], + [ + "60", + -10.364036560058594 + ], + [ + "▁Little", + -10.3641357421875 + ], + [ + "▁Thus", + -10.364222526550293 + ], + [ + "▁premium", + -10.364336013793945 + ], + [ + "▁airport", + -10.364542007446289 + ], + [ + "▁2001", + -10.364801406860352 + ], + [ + "▁Special", + -10.365143775939941 + ], + [ + "▁regulations", + -10.36577033996582 + ], + [ + "be", + -10.366165161132812 + ], + [ + "▁operate", + -10.366597175598145 + ], + [ + "▁Rock", + -10.366683006286621 + ], + [ + "▁Second", + -10.366861343383789 + ], + [ + "▁younger", + -10.36713981628418 + ], + [ + "uk", + -10.367594718933105 + ], + [ + "▁conduct", + -10.367764472961426 + ], + [ + "▁submit", + -10.368355751037598 + ], + [ + "▁bodies", + -10.368708610534668 + ], + [ + "▁cute", + -10.368769645690918 + ], + [ + "▁Watch", + -10.369248390197754 + ], + [ + "▁Sam", + -10.369546890258789 + ], + [ + "▁Spanish", + -10.369590759277344 + ], + [ + "▁luxury", + -10.369922637939453 + ], + [ + "▁reporting", + -10.370598793029785 + ], + [ + "▁decade", + -10.370901107788086 + ], + [ + "▁Fire", + -10.371280670166016 + ], + [ + "▁Students", + -10.372456550598145 + ], + [ + "▁36", + -10.37269401550293 + ], + [ + "▁outstanding", + -10.373373031616211 + ], + [ + "▁nuclear", + -10.37404727935791 + ], + [ + "▁Korea", + -10.374266624450684 + ], + [ + "ity", + -10.374471664428711 + ], + [ + "35", + -10.375018119812012 + ], + [ + "▁dealing", + -10.375092506408691 + ], + [ + "▁Library", + -10.375260353088379 + ], + [ + "▁injuries", + -10.375280380249023 + ], + [ + "▁CD", + -10.377004623413086 + ], + [ + "▁Perhaps", + -10.377524375915527 + ], + [ + "▁listening", + -10.377568244934082 + ], + [ + "▁atmosphere", + -10.378402709960938 + ], + [ + "▁west", + -10.378646850585938 + ], + [ + "j", + -10.378929138183594 + ], + [ + "▁Ireland", + -10.37930679321289 + ], + [ + "▁View", + -10.37962818145752 + ], + [ + "▁debate", + -10.38039493560791 + ], + [ + "▁closely", + -10.380970001220703 + ], + [ + "▁celebrate", + -10.3815279006958 + ], + [ + "▁consistent", + -10.382125854492188 + ], + [ + "▁taxes", + -10.382402420043945 + ], + [ + "▁passing", + -10.383159637451172 + ], + [ + "▁technique", + -10.38355827331543 + ], + [ + "▁protected", + -10.383586883544922 + ], + [ + "▁diverse", + -10.383929252624512 + ], + [ + "▁somewhere", + -10.384516716003418 + ], + [ + "▁joy", + -10.38456916809082 + ], + [ + "▁interface", + -10.384580612182617 + ], + [ + "▁History", + -10.38501262664795 + ], + [ + "▁spiritual", + -10.38522720336914 + ], + [ + "▁port", + -10.386245727539062 + ], + [ + "▁Bible", + -10.386484146118164 + ], + [ + "▁Un", + -10.386584281921387 + ], + [ + "▁normally", + -10.387048721313477 + ], + [ + "▁Human", + -10.387194633483887 + ], + [ + "▁Manager", + -10.38733959197998 + ], + [ + "▁differences", + -10.387869834899902 + ], + [ + "mail", + -10.387985229492188 + ], + [ + "▁skill", + -10.388556480407715 + ], + [ + "▁saving", + -10.388971328735352 + ], + [ + "▁Look", + -10.389181137084961 + ], + [ + "▁intelligence", + -10.389385223388672 + ], + [ + "▁Le", + -10.389842987060547 + ], + [ + "▁vital", + -10.389910697937012 + ], + [ + "▁Mar", + -10.3900728225708 + ], + [ + "32", + -10.390576362609863 + ], + [ + "▁sheet", + -10.391034126281738 + ], + [ + "▁recognize", + -10.391178131103516 + ], + [ + "▁magazine", + -10.391793251037598 + ], + [ + "▁collected", + -10.393820762634277 + ], + [ + "▁conflict", + -10.394560813903809 + ], + [ + "▁ex", + -10.394960403442383 + ], + [ + "▁keeps", + -10.395031929016113 + ], + [ + "▁shift", + -10.395272254943848 + ], + [ + "la", + -10.395997047424316 + ], + [ + "▁cable", + -10.39640998840332 + ], + [ + "▁Light", + -10.396427154541016 + ], + [ + "▁musical", + -10.396720886230469 + ], + [ + "▁Live", + -10.39692497253418 + ], + [ + "▁Should", + -10.397086143493652 + ], + [ + "he", + -10.397515296936035 + ], + [ + "▁motor", + -10.397579193115234 + ], + [ + "▁landscape", + -10.397819519042969 + ], + [ + "▁template", + -10.398396492004395 + ], + [ + "▁campus", + -10.398696899414062 + ], + [ + "▁constant", + -10.398843765258789 + ], + [ + "▁mountain", + -10.399064064025879 + ], + [ + "▁trend", + -10.400259017944336 + ], + [ + "▁increases", + -10.400283813476562 + ], + [ + "▁serves", + -10.400812149047852 + ], + [ + "▁describe", + -10.400833129882812 + ], + [ + "▁lifestyle", + -10.400888442993164 + ], + [ + "▁programme", + -10.400935173034668 + ], + [ + "▁attended", + -10.4027738571167 + ], + [ + "▁mail", + -10.405271530151367 + ], + [ + "▁attached", + -10.40701961517334 + ], + [ + "▁horse", + -10.407349586486816 + ], + [ + "▁implementation", + -10.407450675964355 + ], + [ + "▁visited", + -10.407746315002441 + ], + [ + "go", + -10.40798282623291 + ], + [ + "▁ultimately", + -10.408557891845703 + ], + [ + "▁basically", + -10.409175872802734 + ], + [ + "▁Such", + -10.409477233886719 + ], + [ + "with", + -10.409964561462402 + ], + [ + "▁tested", + -10.410174369812012 + ], + [ + "▁log", + -10.410197257995605 + ], + [ + "▁Plan", + -10.41057300567627 + ], + [ + "▁Santa", + -10.411238670349121 + ], + [ + "▁risks", + -10.412010192871094 + ], + [ + "▁Justice", + -10.41260051727295 + ], + [ + "▁neighborhood", + -10.412759780883789 + ], + [ + "▁iron", + -10.412896156311035 + ], + [ + "▁residential", + -10.413341522216797 + ], + [ + "▁Work", + -10.415130615234375 + ], + [ + "▁legs", + -10.415657043457031 + ], + [ + "▁ease", + -10.41586685180664 + ], + [ + "▁accessible", + -10.416680335998535 + ], + [ + "▁immediate", + -10.417019844055176 + ], + [ + "▁carbon", + -10.417122840881348 + ], + [ + "▁engage", + -10.417305946350098 + ], + [ + "▁replaced", + -10.417556762695312 + ], + [ + "▁profit", + -10.417810440063477 + ], + [ + "▁linked", + -10.419135093688965 + ], + [ + "▁minor", + -10.419278144836426 + ], + [ + "▁bottle", + -10.41948413848877 + ], + [ + "▁relief", + -10.420039176940918 + ], + [ + "▁Italy", + -10.420496940612793 + ], + [ + "▁component", + -10.42073917388916 + ], + [ + "▁saved", + -10.420974731445312 + ], + [ + "▁authors", + -10.421531677246094 + ], + [ + "▁pleased", + -10.42166805267334 + ], + [ + "▁claimed", + -10.421724319458008 + ], + [ + "▁organized", + -10.421854972839355 + ], + [ + "▁resistance", + -10.422314643859863 + ], + [ + "related", + -10.423587799072266 + ], + [ + "▁obviously", + -10.423588752746582 + ], + [ + "▁CA", + -10.423711776733398 + ], + [ + "▁Out", + -10.424195289611816 + ], + [ + "▁Britain", + -10.424599647521973 + ], + [ + "▁Through", + -10.424601554870605 + ], + [ + "▁neck", + -10.424827575683594 + ], + [ + "▁chapter", + -10.424878120422363 + ], + [ + "▁healthcare", + -10.42569351196289 + ], + [ + "▁talks", + -10.425899505615234 + ], + [ + "There", + -10.427019119262695 + ], + [ + "▁struggle", + -10.427066802978516 + ], + [ + "▁height", + -10.427199363708496 + ], + [ + "▁resulting", + -10.427610397338867 + ], + [ + "▁bowl", + -10.427909851074219 + ], + [ + "▁estimated", + -10.428077697753906 + ], + [ + "▁inches", + -10.428081512451172 + ], + [ + "▁referred", + -10.428683280944824 + ], + [ + "▁Hospital", + -10.428827285766602 + ], + [ + "▁Code", + -10.429195404052734 + ], + [ + "▁monitor", + -10.43001651763916 + ], + [ + "▁destination", + -10.430037498474121 + ], + [ + "▁generate", + -10.430106163024902 + ], + [ + "▁brief", + -10.430803298950195 + ], + [ + "▁Southern", + -10.431254386901855 + ], + [ + "▁concrete", + -10.43142318725586 + ], + [ + "▁innovation", + -10.432182312011719 + ], + [ + "▁©", + -10.432973861694336 + ], + [ + "▁Room", + -10.433009147644043 + ], + [ + "▁OR", + -10.433867454528809 + ], + [ + "▁garage", + -10.43457317352295 + ], + [ + "▁Prime", + -10.434670448303223 + ], + [ + "▁Charles", + -10.434737205505371 + ], + [ + "▁default", + -10.435172080993652 + ], + [ + "▁guidance", + -10.435269355773926 + ], + [ + "▁networks", + -10.435566902160645 + ], + [ + "▁adventure", + -10.436034202575684 + ], + [ + "▁luck", + -10.436059951782227 + ], + [ + "▁hosting", + -10.436123847961426 + ], + [ + "▁yards", + -10.437925338745117 + ], + [ + "▁letters", + -10.437990188598633 + ], + [ + "▁Instagram", + -10.43806266784668 + ], + [ + "▁integrated", + -10.438432693481445 + ], + [ + "▁suffering", + -10.438436508178711 + ], + [ + "▁partnership", + -10.438680648803711 + ], + [ + "▁recording", + -10.439899444580078 + ], + [ + "▁Control", + -10.440140724182129 + ], + [ + "▁exposure", + -10.440171241760254 + ], + [ + "▁watched", + -10.440353393554688 + ], + [ + "▁Town", + -10.440855979919434 + ], + [ + "▁chose", + -10.44180965423584 + ], + [ + "▁widely", + -10.44186019897461 + ], + [ + "▁tech", + -10.442049980163574 + ], + [ + "▁leg", + -10.442378044128418 + ], + [ + "▁Search", + -10.442671775817871 + ], + [ + "▁33", + -10.443116188049316 + ], + [ + "▁millions", + -10.443302154541016 + ], + [ + "▁promise", + -10.443562507629395 + ], + [ + "▁stunning", + -10.443567276000977 + ], + [ + "▁Young", + -10.44381332397461 + ], + [ + "▁duty", + -10.443856239318848 + ], + [ + "▁designer", + -10.443900108337402 + ], + [ + "▁Would", + -10.444087982177734 + ], + [ + "▁talked", + -10.444175720214844 + ], + [ + "▁gifts", + -10.444494247436523 + ], + [ + "▁mini", + -10.444902420043945 + ], + [ + "▁reflect", + -10.445175170898438 + ], + [ + "▁quote", + -10.445366859436035 + ], + [ + "▁Being", + -10.445499420166016 + ], + [ + "▁pm", + -10.445596694946289 + ], + [ + "▁supports", + -10.445598602294922 + ], + [ + "▁Jewish", + -10.446795463562012 + ], + [ + "▁Play", + -10.447868347167969 + ], + [ + "▁performing", + -10.449677467346191 + ], + [ + "▁Ohio", + -10.450392723083496 + ], + [ + "▁kit", + -10.450493812561035 + ], + [ + "▁somewhat", + -10.450692176818848 + ], + [ + "▁papers", + -10.452072143554688 + ], + [ + "▁stood", + -10.453490257263184 + ], + [ + "▁expand", + -10.453699111938477 + ], + [ + "▁severe", + -10.455374717712402 + ], + [ + "▁planet", + -10.455460548400879 + ], + [ + "▁crucial", + -10.455666542053223 + ], + [ + "▁invited", + -10.455998420715332 + ], + [ + "▁lucky", + -10.456006050109863 + ], + [ + "▁extent", + -10.456010818481445 + ], + [ + "▁qualified", + -10.456409454345703 + ], + [ + "▁Army", + -10.456514358520508 + ], + [ + "▁streets", + -10.45651912689209 + ], + [ + "▁primarily", + -10.457426071166992 + ], + [ + "▁achieved", + -10.457732200622559 + ], + [ + "200", + -10.45815658569336 + ], + [ + "▁bridge", + -10.458420753479004 + ], + [ + "▁Men", + -10.458744049072266 + ], + [ + "▁hasn", + -10.458754539489746 + ], + [ + "▁feelings", + -10.45881462097168 + ], + [ + "▁chemical", + -10.459432601928711 + ], + [ + "▁acid", + -10.459717750549316 + ], + [ + "▁argument", + -10.459924697875977 + ], + [ + "05", + -10.4600830078125 + ], + [ + "▁jump", + -10.460285186767578 + ], + [ + "▁75", + -10.460318565368652 + ], + [ + "▁rose", + -10.460774421691895 + ], + [ + "▁Place", + -10.461237907409668 + ], + [ + "▁monitoring", + -10.461332321166992 + ], + [ + "▁soil", + -10.461491584777832 + ], + [ + "▁fishing", + -10.461609840393066 + ], + [ + "▁facts", + -10.46269416809082 + ], + [ + "▁manufacturer", + -10.463642120361328 + ], + [ + "▁trends", + -10.463693618774414 + ], + [ + "▁https", + -10.464926719665527 + ], + [ + "▁pan", + -10.465901374816895 + ], + [ + "▁urban", + -10.46638298034668 + ], + [ + "▁vast", + -10.466893196105957 + ], + [ + "▁empty", + -10.467201232910156 + ], + [ + "▁hundred", + -10.467894554138184 + ], + [ + "os", + -10.468134880065918 + ], + [ + "rs", + -10.468225479125977 + ], + [ + "▁hidden", + -10.468459129333496 + ], + [ + "you", + -10.46850299835205 + ], + [ + "▁ages", + -10.468544960021973 + ], + [ + "ra", + -10.468620300292969 + ], + [ + "▁improving", + -10.469215393066406 + ], + [ + "▁expressed", + -10.469916343688965 + ], + [ + "▁east", + -10.470062255859375 + ], + [ + "▁magic", + -10.470401763916016 + ], + [ + "▁depth", + -10.470402717590332 + ], + [ + "▁express", + -10.471638679504395 + ], + [ + "ne", + -10.47171688079834 + ], + [ + "▁noise", + -10.471855163574219 + ], + [ + "▁Williams", + -10.471942901611328 + ], + [ + "▁legislation", + -10.4722318649292 + ], + [ + "▁Francisco", + -10.472824096679688 + ], + [ + "▁lessons", + -10.473189353942871 + ], + [ + "▁dates", + -10.473363876342773 + ], + [ + "▁comparison", + -10.473372459411621 + ], + [ + "▁percentage", + -10.473825454711914 + ], + [ + "▁Small", + -10.474123001098633 + ], + [ + "▁memories", + -10.474339485168457 + ], + [ + "▁extension", + -10.474493980407715 + ], + [ + "▁boost", + -10.474785804748535 + ], + [ + "▁choosing", + -10.474787712097168 + ], + [ + "▁forever", + -10.475234031677246 + ], + [ + "▁scheme", + -10.475496292114258 + ], + [ + "▁Digital", + -10.47573184967041 + ], + [ + "▁savings", + -10.47584056854248 + ], + [ + "▁capture", + -10.47603702545166 + ], + [ + "▁solve", + -10.476496696472168 + ], + [ + "▁increasingly", + -10.476661682128906 + ], + [ + "▁u", + -10.476755142211914 + ], + [ + "▁causing", + -10.476967811584473 + ], + [ + "▁r", + -10.477249145507812 + ], + [ + "▁clothing", + -10.477396011352539 + ], + [ + "▁strategic", + -10.47746753692627 + ], + [ + "▁prison", + -10.477804183959961 + ], + [ + "▁collaboration", + -10.477960586547852 + ], + [ + "▁drawing", + -10.477996826171875 + ], + [ + "▁Jim", + -10.47809886932373 + ], + [ + "▁approval", + -10.478547096252441 + ], + [ + "▁bonus", + -10.478618621826172 + ], + [ + "▁aside", + -10.478693962097168 + ], + [ + "▁reputation", + -10.47925853729248 + ], + [ + "▁contribute", + -10.479334831237793 + ], + [ + "▁sending", + -10.479730606079102 + ], + [ + "▁occurred", + -10.48033332824707 + ], + [ + "▁writers", + -10.48060131072998 + ], + [ + "▁transportation", + -10.480881690979004 + ], + [ + "▁spaces", + -10.4818115234375 + ], + [ + "▁directed", + -10.482141494750977 + ], + [ + "▁compare", + -10.482163429260254 + ], + [ + "▁desk", + -10.482398986816406 + ], + [ + "▁broad", + -10.482571601867676 + ], + [ + "▁shouldn", + -10.484539031982422 + ], + [ + "▁suggests", + -10.48466682434082 + ], + [ + "▁Spring", + -10.484869956970215 + ], + [ + "▁Sports", + -10.48518180847168 + ], + [ + "▁remained", + -10.485187530517578 + ], + [ + "▁removal", + -10.486437797546387 + ], + [ + "▁graduate", + -10.487842559814453 + ], + [ + "▁reduction", + -10.488485336303711 + ], + [ + "▁stuck", + -10.48868179321289 + ], + [ + "27", + -10.488883972167969 + ], + [ + "▁chat", + -10.489357948303223 + ], + [ + "▁expenses", + -10.489400863647461 + ], + [ + "▁split", + -10.489616394042969 + ], + [ + "▁flexible", + -10.489765167236328 + ], + [ + "▁vacation", + -10.49055290222168 + ], + [ + "AP", + -10.490740776062012 + ], + [ + "▁muscle", + -10.492283821105957 + ], + [ + "▁thread", + -10.49297046661377 + ], + [ + "▁labor", + -10.492971420288086 + ], + [ + "▁ratio", + -10.494284629821777 + ], + [ + "▁founded", + -10.49452018737793 + ], + [ + "▁opposite", + -10.494632720947266 + ], + [ + "▁weapons", + -10.494891166687012 + ], + [ + "▁membership", + -10.495194435119629 + ], + [ + "▁arts", + -10.495221138000488 + ], + [ + "▁reader", + -10.495270729064941 + ], + [ + "▁dynamic", + -10.495283126831055 + ], + [ + "28", + -10.495626449584961 + ], + [ + "▁versions", + -10.495682716369629 + ], + [ + "▁reaction", + -10.495697021484375 + ], + [ + "▁moves", + -10.495837211608887 + ], + [ + "▁seats", + -10.496063232421875 + ], + [ + "▁humans", + -10.496092796325684 + ], + [ + "▁Ford", + -10.496317863464355 + ], + [ + "▁hole", + -10.49693489074707 + ], + [ + "▁festival", + -10.496953010559082 + ], + [ + "▁potentially", + -10.49769115447998 + ], + [ + "▁principles", + -10.498392105102539 + ], + [ + "▁gallery", + -10.498806953430176 + ], + [ + "▁engagement", + -10.498969078063965 + ], + [ + "▁managing", + -10.499529838562012 + ], + [ + "▁Iran", + -10.500080108642578 + ], + [ + "▁illegal", + -10.50021743774414 + ], + [ + "▁Price", + -10.500985145568848 + ], + [ + "▁fail", + -10.501099586486816 + ], + [ + "▁weekly", + -10.501330375671387 + ], + [ + "▁Zealand", + -10.502071380615234 + ], + [ + "▁virtual", + -10.502450942993164 + ], + [ + "▁trail", + -10.502456665039062 + ], + [ + "▁historic", + -10.502574920654297 + ], + [ + "▁gear", + -10.502741813659668 + ], + [ + "▁lawyer", + -10.502941131591797 + ], + [ + "▁Northern", + -10.503037452697754 + ], + [ + "▁cook", + -10.50308895111084 + ], + [ + "▁bags", + -10.503384590148926 + ], + [ + "▁generated", + -10.50343132019043 + ], + [ + "level", + -10.503643035888672 + ], + [ + "▁transition", + -10.503714561462402 + ], + [ + "▁yard", + -10.503725051879883 + ], + [ + "▁cookies", + -10.504076957702637 + ], + [ + "▁manual", + -10.504405975341797 + ], + [ + "▁Dan", + -10.504626274108887 + ], + [ + "▁loves", + -10.504672050476074 + ], + [ + "▁Matt", + -10.504934310913086 + ], + [ + "▁mining", + -10.505256652832031 + ], + [ + "No", + -10.505276679992676 + ], + [ + "26", + -10.505804061889648 + ], + [ + "▁alongside", + -10.5065336227417 + ], + [ + "that", + -10.506580352783203 + ], + [ + "▁largely", + -10.508624076843262 + ], + [ + "▁Financial", + -10.509078025817871 + ], + [ + "▁drinking", + -10.509600639343262 + ], + [ + "▁anymore", + -10.509716033935547 + ], + [ + "▁150", + -10.510361671447754 + ], + [ + "▁contrast", + -10.510380744934082 + ], + [ + "▁label", + -10.510493278503418 + ], + [ + "▁observed", + -10.510542869567871 + ], + [ + "▁fitness", + -10.511066436767578 + ], + [ + "▁sorry", + -10.511791229248047 + ], + [ + "▁tradition", + -10.512012481689453 + ], + [ + "▁Coast", + -10.512171745300293 + ], + [ + "▁arrested", + -10.51224136352539 + ], + [ + "▁statements", + -10.512420654296875 + ], + [ + "▁definition", + -10.51278305053711 + ], + [ + "▁shots", + -10.513165473937988 + ], + [ + "▁Jersey", + -10.513189315795898 + ], + [ + "▁establish", + -10.513270378112793 + ], + [ + "▁era", + -10.513325691223145 + ], + [ + "▁permanent", + -10.513729095458984 + ], + [ + "▁broke", + -10.51400089263916 + ], + [ + "▁Welcome", + -10.5142822265625 + ], + [ + "▁styles", + -10.514608383178711 + ], + [ + "▁Table", + -10.514885902404785 + ], + [ + "▁di", + -10.514951705932617 + ], + [ + "▁arrive", + -10.515205383300781 + ], + [ + "▁acting", + -10.5158052444458 + ], + [ + "▁400", + -10.516280174255371 + ], + [ + "▁sad", + -10.516705513000488 + ], + [ + "▁pleasure", + -10.51695728302002 + ], + [ + "▁engaged", + -10.51711368560791 + ], + [ + "▁deck", + -10.517492294311523 + ], + [ + "▁victims", + -10.517658233642578 + ], + [ + "▁submitted", + -10.518205642700195 + ], + [ + "▁alive", + -10.518326759338379 + ], + [ + "▁headed", + -10.519037246704102 + ], + [ + "▁carrying", + -10.520556449890137 + ], + [ + "▁Local", + -10.52168083190918 + ], + [ + "▁DC", + -10.521905899047852 + ], + [ + "back", + -10.521995544433594 + ], + [ + "▁1990", + -10.522255897521973 + ], + [ + "▁finance", + -10.523134231567383 + ], + [ + "▁false", + -10.523139953613281 + ], + [ + "▁Pacific", + -10.523283004760742 + ], + [ + "▁weren", + -10.523414611816406 + ], + [ + "▁YOU", + -10.523634910583496 + ], + [ + "▁inner", + -10.524053573608398 + ], + [ + "▁tip", + -10.524081230163574 + ], + [ + "▁sauce", + -10.52444076538086 + ], + [ + "▁Secretary", + -10.524835586547852 + ], + [ + "▁relative", + -10.524877548217773 + ], + [ + "▁printed", + -10.524922370910645 + ], + [ + "▁Video", + -10.525908470153809 + ], + [ + "▁architecture", + -10.525988578796387 + ], + [ + "▁pink", + -10.526420593261719 + ], + [ + "way", + -10.526586532592773 + ], + [ + "▁logo", + -10.526680946350098 + ], + [ + "▁doctors", + -10.526727676391602 + ], + [ + "▁routine", + -10.527140617370605 + ], + [ + "▁driven", + -10.527470588684082 + ], + [ + "▁creates", + -10.527472496032715 + ], + [ + "ch", + -10.52783489227295 + ], + [ + "▁gender", + -10.528281211853027 + ], + [ + "▁regions", + -10.528487205505371 + ], + [ + "▁religion", + -10.528890609741211 + ], + [ + "▁tight", + -10.529214859008789 + ], + [ + "▁Executive", + -10.529565811157227 + ], + [ + "▁controlled", + -10.529629707336426 + ], + [ + "▁Head", + -10.529991149902344 + ], + [ + "▁confident", + -10.53026294708252 + ], + [ + "▁incredibly", + -10.531477928161621 + ], + [ + "е", + -10.531539916992188 + ], + [ + "▁aircraft", + -10.531554222106934 + ], + [ + "▁editor", + -10.531621932983398 + ], + [ + "▁34", + -10.532065391540527 + ], + [ + "▁proposal", + -10.53217601776123 + ], + [ + "▁Remember", + -10.532179832458496 + ], + [ + "▁Ryan", + -10.532464027404785 + ], + [ + "▁extreme", + -10.532659530639648 + ], + [ + "▁h", + -10.533018112182617 + ], + [ + "▁sick", + -10.533148765563965 + ], + [ + "▁communications", + -10.533990859985352 + ], + [ + "▁Pre", + -10.53402328491211 + ], + [ + "▁dad", + -10.53454875946045 + ], + [ + "▁Andrew", + -10.535310745239258 + ], + [ + "▁proven", + -10.536252975463867 + ], + [ + "▁adds", + -10.536554336547852 + ], + [ + "▁believes", + -10.536575317382812 + ], + [ + "▁valid", + -10.536966323852539 + ], + [ + "▁pace", + -10.537569046020508 + ], + [ + "▁electrical", + -10.538419723510742 + ], + [ + "▁Games", + -10.538422584533691 + ], + [ + "▁^", + -10.538680076599121 + ], + [ + "▁necessarily", + -10.539243698120117 + ], + [ + "▁preparation", + -10.539863586425781 + ], + [ + "▁Division", + -10.539916038513184 + ], + [ + "▁Report", + -10.540257453918457 + ], + [ + "▁whenever", + -10.54089641571045 + ], + [ + "▁honor", + -10.541574478149414 + ], + [ + "▁afraid", + -10.542238235473633 + ], + [ + "▁pure", + -10.542421340942383 + ], + [ + "▁bread", + -10.5426607131958 + ], + [ + "▁manufacturers", + -10.543113708496094 + ], + [ + "me", + -10.544090270996094 + ], + [ + "▁follows", + -10.544272422790527 + ], + [ + "▁proof", + -10.544306755065918 + ], + [ + "▁Ms", + -10.544547080993652 + ], + [ + "▁continuing", + -10.544562339782715 + ], + [ + "▁acts", + -10.545198440551758 + ], + [ + "▁tank", + -10.545462608337402 + ], + [ + "▁Clinton", + -10.545563697814941 + ], + [ + "▁literally", + -10.545607566833496 + ], + [ + "▁row", + -10.545613288879395 + ], + [ + "▁shoot", + -10.54627799987793 + ], + [ + "▁gorgeous", + -10.546390533447266 + ], + [ + "▁posting", + -10.546544075012207 + ], + [ + "▁structures", + -10.546623229980469 + ], + [ + "▁filter", + -10.547553062438965 + ], + [ + "▁AM", + -10.54782772064209 + ], + [ + "▁Visit", + -10.548216819763184 + ], + [ + "▁dollar", + -10.549513816833496 + ], + [ + "▁involving", + -10.551274299621582 + ], + [ + "▁expansion", + -10.551308631896973 + ], + [ + "▁attractive", + -10.551440238952637 + ], + [ + "▁firms", + -10.551962852478027 + ], + [ + "▁plane", + -10.552228927612305 + ], + [ + "▁Class", + -10.552404403686523 + ], + [ + "▁Systems", + -10.552506446838379 + ], + [ + "▁division", + -10.55274486541748 + ], + [ + "▁enjoying", + -10.552934646606445 + ], + [ + "▁Page", + -10.553096771240234 + ], + [ + "▁grant", + -10.553194999694824 + ], + [ + "▁FREE", + -10.553267478942871 + ], + [ + "▁existence", + -10.5533447265625 + ], + [ + "▁raw", + -10.553755760192871 + ], + [ + "▁wheel", + -10.553786277770996 + ], + [ + "▁awarded", + -10.553926467895508 + ], + [ + "▁giant", + -10.554301261901855 + ], + [ + "▁tracks", + -10.55433177947998 + ], + [ + "▁forum", + -10.555322647094727 + ], + [ + "▁Mrs", + -10.555420875549316 + ], + [ + "▁golf", + -10.555573463439941 + ], + [ + "house", + -10.555686950683594 + ], + [ + "▁sand", + -10.557456970214844 + ], + [ + "▁bear", + -10.55764102935791 + ], + [ + "29", + -10.55865478515625 + ], + [ + "▁convenient", + -10.559250831604004 + ], + [ + "▁producing", + -10.559459686279297 + ], + [ + "▁evil", + -10.559734344482422 + ], + [ + "▁Bob", + -10.559894561767578 + ], + [ + "▁ultimate", + -10.560173988342285 + ], + [ + "▁twenty", + -10.56035041809082 + ], + [ + "▁assume", + -10.560782432556152 + ], + [ + "▁Catholic", + -10.560873985290527 + ], + [ + "▁introduction", + -10.561214447021484 + ], + [ + "▁shops", + -10.561269760131836 + ], + [ + "▁index", + -10.56169605255127 + ], + [ + "▁desired", + -10.561999320983887 + ], + [ + "▁refer", + -10.56240463256836 + ], + [ + "▁photography", + -10.563076972961426 + ], + [ + "▁Try", + -10.563898086547852 + ], + [ + "▁sustainable", + -10.564094543457031 + ], + [ + "▁victim", + -10.564156532287598 + ], + [ + "▁recommendations", + -10.564414024353027 + ], + [ + "▁Auto", + -10.564640998840332 + ], + [ + "▁regard", + -10.564823150634766 + ], + [ + "▁samples", + -10.564841270446777 + ], + [ + "▁Asian", + -10.564897537231445 + ], + [ + "da", + -10.565665245056152 + ], + [ + "▁lies", + -10.565670013427734 + ], + [ + "▁depends", + -10.56568431854248 + ], + [ + "▁neither", + -10.565741539001465 + ], + [ + "▁apparently", + -10.565834999084473 + ], + [ + "▁thick", + -10.566779136657715 + ], + [ + "▁Dec", + -10.566877365112305 + ], + [ + "▁faces", + -10.567072868347168 + ], + [ + "▁matches", + -10.567253112792969 + ], + [ + "▁Insurance", + -10.56736946105957 + ], + [ + "▁Again", + -10.567439079284668 + ], + [ + "▁sky", + -10.568867683410645 + ], + [ + "▁Colorado", + -10.569013595581055 + ], + [ + "▁amounts", + -10.569778442382812 + ], + [ + "▁behalf", + -10.569993019104004 + ], + [ + "▁zero", + -10.569994926452637 + ], + [ + "▁coast", + -10.570108413696289 + ], + [ + "▁household", + -10.571043014526367 + ], + [ + "▁Professor", + -10.57150650024414 + ], + [ + "▁equipped", + -10.57174015045166 + ], + [ + "▁Happy", + -10.572230339050293 + ], + [ + "▁joining", + -10.57278060913086 + ], + [ + "▁ending", + -10.57280445098877 + ], + [ + "▁Democratic", + -10.57283878326416 + ], + [ + "▁king", + -10.573065757751465 + ], + [ + "▁draft", + -10.57330322265625 + ], + [ + "▁industries", + -10.573332786560059 + ], + [ + "▁implement", + -10.573436737060547 + ], + [ + "▁crusher", + -10.574553489685059 + ], + [ + "▁till", + -10.574950218200684 + ], + [ + "▁developers", + -10.574963569641113 + ], + [ + "▁LLC", + -10.575220108032227 + ], + [ + "▁falling", + -10.5753173828125 + ], + [ + "ian", + -10.575746536254883 + ], + [ + "▁roles", + -10.57589340209961 + ], + [ + "▁minister", + -10.576203346252441 + ], + [ + "▁Hope", + -10.576498031616211 + ], + [ + "ies", + -10.576589584350586 + ], + [ + "▁certified", + -10.576655387878418 + ], + [ + "75", + -10.576933860778809 + ], + [ + "▁covering", + -10.577224731445312 + ], + [ + "▁consideration", + -10.577536582946777 + ], + [ + "▁platforms", + -10.57772445678711 + ], + [ + "▁reducing", + -10.577969551086426 + ], + [ + "▁thin", + -10.5781831741333 + ], + [ + "▁sight", + -10.579191207885742 + ], + [ + "▁outcome", + -10.579593658447266 + ], + [ + "▁tables", + -10.579901695251465 + ], + [ + "▁Jackson", + -10.579935073852539 + ], + [ + "▁hopes", + -10.580275535583496 + ], + [ + "▁respectively", + -10.580568313598633 + ], + [ + "▁Queen", + -10.580973625183105 + ], + [ + "▁regardless", + -10.581055641174316 + ], + [ + "▁literature", + -10.581750869750977 + ], + [ + "▁everywhere", + -10.581886291503906 + ], + [ + "▁rising", + -10.582075119018555 + ], + [ + "▁heads", + -10.583220481872559 + ], + [ + "▁Georgia", + -10.583850860595703 + ], + [ + "my", + -10.583968162536621 + ], + [ + "▁root", + -10.584000587463379 + ], + [ + "▁workshop", + -10.585273742675781 + ], + [ + "▁handling", + -10.585553169250488 + ], + [ + "▁vary", + -10.585572242736816 + ], + [ + "▁scientists", + -10.585948944091797 + ], + [ + "▁involves", + -10.586016654968262 + ], + [ + "▁stream", + -10.586085319519043 + ], + [ + "▁boxes", + -10.586243629455566 + ], + [ + "▁craft", + -10.58632755279541 + ], + [ + "▁km", + -10.586569786071777 + ], + [ + "▁concerning", + -10.586777687072754 + ], + [ + "▁Area", + -10.58677864074707 + ], + [ + "▁1999", + -10.586880683898926 + ], + [ + "▁dreams", + -10.58690357208252 + ], + [ + "▁suddenly", + -10.588092803955078 + ], + [ + "▁council", + -10.588128089904785 + ], + [ + "▁Enjoy", + -10.588150978088379 + ], + [ + "▁formal", + -10.588359832763672 + ], + [ + "▁requested", + -10.58837604522705 + ], + [ + "▁presents", + -10.588501930236816 + ], + [ + "▁lay", + -10.588872909545898 + ], + [ + "▁wealth", + -10.589012145996094 + ], + [ + "▁meals", + -10.589143753051758 + ], + [ + "▁CO", + -10.589524269104004 + ], + [ + "▁visible", + -10.589801788330078 + ], + [ + "▁eligible", + -10.589895248413086 + ], + [ + "▁strange", + -10.589900016784668 + ], + [ + "▁injured", + -10.590252876281738 + ], + [ + "▁priority", + -10.590838432312012 + ], + [ + "03", + -10.591135025024414 + ], + [ + "▁healing", + -10.591292381286621 + ], + [ + "▁careful", + -10.591611862182617 + ], + [ + "▁butter", + -10.592549324035645 + ], + [ + "▁debut", + -10.592591285705566 + ], + [ + "▁IP", + -10.592658996582031 + ], + [ + "▁drawn", + -10.5927734375 + ], + [ + "▁Mobile", + -10.592775344848633 + ], + [ + "men", + -10.5928316116333 + ], + [ + "▁portfolio", + -10.593208312988281 + ], + [ + "▁recognition", + -10.593894958496094 + ], + [ + "▁bunch", + -10.594659805297852 + ], + [ + "▁bath", + -10.594961166381836 + ], + [ + "▁YouTube", + -10.595365524291992 + ], + [ + "▁stored", + -10.595721244812012 + ], + [ + "▁relations", + -10.595978736877441 + ], + [ + "▁limits", + -10.596687316894531 + ], + [ + "▁Toronto", + -10.596796035766602 + ], + [ + "▁categories", + -10.59715461730957 + ], + [ + "▁consumption", + -10.597780227661133 + ], + [ + "▁Come", + -10.59778881072998 + ], + [ + "▁Night", + -10.5980224609375 + ], + [ + "▁persons", + -10.598817825317383 + ], + [ + "▁OK", + -10.598855018615723 + ], + [ + "80", + -10.599018096923828 + ], + [ + "▁newly", + -10.599120140075684 + ], + [ + "▁elected", + -10.599242210388184 + ], + [ + "▁breaking", + -10.599813461303711 + ], + [ + "▁Engineering", + -10.600013732910156 + ], + [ + "▁sensitive", + -10.600661277770996 + ], + [ + "▁micro", + -10.602163314819336 + ], + [ + "▁framework", + -10.60267162322998 + ], + [ + "▁wire", + -10.603025436401367 + ], + [ + "▁guidelines", + -10.603537559509277 + ], + [ + "▁blocks", + -10.603605270385742 + ], + [ + "▁Kim", + -10.603670120239258 + ], + [ + "▁Holy", + -10.604106903076172 + ], + [ + "▁flying", + -10.6041259765625 + ], + [ + "▁string", + -10.604986190795898 + ], + [ + "▁tonight", + -10.605133056640625 + ], + [ + "▁Nov", + -10.60539722442627 + ], + [ + "▁mixture", + -10.605843544006348 + ], + [ + "▁enterprise", + -10.606532096862793 + ], + [ + "▁electricity", + -10.606715202331543 + ], + [ + "▁murder", + -10.606821060180664 + ], + [ + "▁Trust", + -10.60684871673584 + ], + [ + "▁offices", + -10.607112884521484 + ], + [ + "▁Without", + -10.60763931274414 + ], + [ + "▁Force", + -10.607976913452148 + ], + [ + "▁accessories", + -10.608433723449707 + ], + [ + "▁association", + -10.608833312988281 + ], + [ + "▁Supreme", + -10.609458923339844 + ], + [ + "▁Van", + -10.609890937805176 + ], + [ + "▁stable", + -10.609969139099121 + ], + [ + "▁inch", + -10.610123634338379 + ], + [ + "▁understood", + -10.610148429870605 + ], + [ + "▁cap", + -10.61026668548584 + ], + [ + "▁invest", + -10.610677719116211 + ], + [ + "▁Everyone", + -10.610737800598145 + ], + [ + "▁Guide", + -10.611517906188965 + ], + [ + "ca", + -10.611547470092773 + ], + [ + "▁Was", + -10.612003326416016 + ], + [ + "▁escape", + -10.612491607666016 + ], + [ + "▁chart", + -10.612541198730469 + ], + [ + "▁rice", + -10.612690925598145 + ], + [ + "▁Section", + -10.613030433654785 + ], + [ + "▁programming", + -10.61424732208252 + ], + [ + "▁heading", + -10.614808082580566 + ], + [ + "<", + -10.614814758300781 + ], + [ + "▁bills", + -10.614898681640625 + ], + [ + "▁forest", + -10.615107536315918 + ], + [ + "▁HD", + -10.615618705749512 + ], + [ + "▁mg", + -10.61596393585205 + ], + [ + "▁dental", + -10.616198539733887 + ], + [ + "▁occasion", + -10.616222381591797 + ], + [ + "▁Wood", + -10.61635684967041 + ], + [ + "▁Joseph", + -10.616463661193848 + ], + [ + "▁preferred", + -10.616580963134766 + ], + [ + "▁exposed", + -10.616890907287598 + ], + [ + "▁tone", + -10.617048263549805 + ], + [ + "▁naturally", + -10.61781120300293 + ], + [ + "▁Join", + -10.617894172668457 + ], + [ + "▁guitar", + -10.617944717407227 + ], + [ + "▁Kingdom", + -10.617998123168945 + ], + [ + "▁permission", + -10.6181001663208 + ], + [ + "▁hits", + -10.618109703063965 + ], + [ + "▁capabilities", + -10.618197441101074 + ], + [ + "▁anxiety", + -10.618368148803711 + ], + [ + "▁Spirit", + -10.618796348571777 + ], + [ + "▁pounds", + -10.619629859924316 + ], + [ + "▁Site", + -10.619726181030273 + ], + [ + "▁van", + -10.620223999023438 + ], + [ + "um", + -10.620376586914062 + ], + [ + "▁Order", + -10.620779991149902 + ], + [ + "▁rid", + -10.620843887329102 + ], + [ + "▁awards", + -10.621397018432617 + ], + [ + "▁stronger", + -10.621445655822754 + ], + [ + "▁Additionally", + -10.622295379638672 + ], + [ + "▁Jr", + -10.622358322143555 + ], + [ + "▁personality", + -10.622465133666992 + ], + [ + "▁storm", + -10.622729301452637 + ], + [ + "▁Feb", + -10.622936248779297 + ], + [ + "▁containing", + -10.622992515563965 + ], + [ + "▁Following", + -10.623587608337402 + ], + [ + "▁slot", + -10.624015808105469 + ], + [ + "▁Store", + -10.624194145202637 + ], + [ + "Q", + -10.624260902404785 + ], + [ + "▁consists", + -10.624551773071289 + ], + [ + "▁suffered", + -10.624612808227539 + ], + [ + "▁array", + -10.624716758728027 + ], + [ + "▁random", + -10.624763488769531 + ], + [ + "▁tournament", + -10.625167846679688 + ], + [ + "▁afford", + -10.625897407531738 + ], + [ + "▁accused", + -10.62610912322998 + ], + [ + "▁Building", + -10.62618637084961 + ], + [ + "▁commonly", + -10.626296043395996 + ], + [ + "▁harder", + -10.62718677520752 + ], + [ + "▁transaction", + -10.627243041992188 + ], + [ + "▁staying", + -10.627384185791016 + ], + [ + "▁shoulder", + -10.628225326538086 + ], + [ + "▁specialist", + -10.628484725952148 + ], + [ + "▁communicate", + -10.629050254821777 + ], + [ + "▁viewed", + -10.629133224487305 + ], + [ + "▁Land", + -10.629171371459961 + ], + [ + "90", + -10.629535675048828 + ], + [ + "▁birds", + -10.62954330444336 + ], + [ + "▁objective", + -10.629704475402832 + ], + [ + "▁tired", + -10.629866600036621 + ], + [ + "▁oven", + -10.629949569702148 + ], + [ + "▁Daniel", + -10.629972457885742 + ], + [ + "▁initially", + -10.630012512207031 + ], + [ + "▁requests", + -10.630098342895508 + ], + [ + "▁Daily", + -10.630292892456055 + ], + [ + "▁connections", + -10.630313873291016 + ], + [ + "ling", + -10.630331993103027 + ], + [ + "▁usage", + -10.630548477172852 + ], + [ + "▁functional", + -10.630965232849121 + ], + [ + "▁Adam", + -10.632105827331543 + ], + [ + "▁laid", + -10.63220500946045 + ], + [ + "▁closing", + -10.63259506225586 + ], + [ + "▁bars", + -10.632866859436035 + ], + [ + "▁enforcement", + -10.632884979248047 + ], + [ + "▁granted", + -10.633005142211914 + ], + [ + "▁rural", + -10.633604049682617 + ], + [ + "▁gotten", + -10.633859634399414 + ], + [ + "▁suspect", + -10.634051322937012 + ], + [ + "▁dish", + -10.635313034057617 + ], + [ + "▁faced", + -10.635834693908691 + ], + [ + "▁liquid", + -10.635932922363281 + ], + [ + "▁indicate", + -10.636155128479004 + ], + [ + "▁Meanwhile", + -10.636238098144531 + ], + [ + "▁Copyright", + -10.636319160461426 + ], + [ + "▁Spain", + -10.63640308380127 + ], + [ + "▁printing", + -10.636737823486328 + ], + [ + "▁findings", + -10.637117385864258 + ], + [ + "▁Irish", + -10.637351036071777 + ], + [ + "▁Shop", + -10.637455940246582 + ], + [ + "▁killing", + -10.637639045715332 + ], + [ + "▁latter", + -10.637898445129395 + ], + [ + "▁chances", + -10.63860034942627 + ], + [ + "▁kick", + -10.638628005981445 + ], + [ + "▁requirement", + -10.639053344726562 + ], + [ + "▁Pakistan", + -10.639610290527344 + ], + [ + "ma", + -10.639761924743652 + ], + [ + "▁suggestions", + -10.639806747436523 + ], + [ + "▁tag", + -10.640576362609863 + ], + [ + "▁Living", + -10.640846252441406 + ], + [ + "▁semi", + -10.640865325927734 + ], + [ + "▁treatments", + -10.642151832580566 + ], + [ + "▁whilst", + -10.64268684387207 + ], + [ + "▁professor", + -10.643430709838867 + ], + [ + "▁checking", + -10.643583297729492 + ], + [ + "▁publication", + -10.644390106201172 + ], + [ + "▁explains", + -10.644694328308105 + ], + [ + "▁marks", + -10.644725799560547 + ], + [ + "02", + -10.644845962524414 + ], + [ + "▁displayed", + -10.645036697387695 + ], + [ + "▁channels", + -10.645156860351562 + ], + [ + "▁Summer", + -10.6458740234375 + ], + [ + "▁complicated", + -10.645912170410156 + ], + [ + "▁wooden", + -10.646090507507324 + ], + [ + "▁represented", + -10.646170616149902 + ], + [ + "▁Henry", + -10.646488189697266 + ], + [ + "▁eggs", + -10.646851539611816 + ], + [ + "▁lift", + -10.647490501403809 + ], + [ + "▁warning", + -10.647658348083496 + ], + [ + "▁availability", + -10.64852523803711 + ], + [ + "▁swimming", + -10.64900016784668 + ], + [ + "▁sufficient", + -10.649153709411621 + ], + [ + "▁opposition", + -10.649213790893555 + ], + [ + "▁Start", + -10.649748802185059 + ], + [ + "▁unknown", + -10.649864196777344 + ], + [ + "▁grand", + -10.649897575378418 + ], + [ + "▁Support", + -10.650538444519043 + ], + [ + "▁lesson", + -10.651033401489258 + ], + [ + "▁gained", + -10.651409149169922 + ], + [ + "▁tall", + -10.651576042175293 + ], + [ + "▁retirement", + -10.6516695022583 + ], + [ + "▁Studies", + -10.651756286621094 + ], + [ + "per", + -10.65201473236084 + ], + [ + "▁breath", + -10.652303695678711 + ], + [ + "▁Tim", + -10.653021812438965 + ], + [ + "▁password", + -10.65339183807373 + ], + [ + "▁App", + -10.65361499786377 + ], + [ + "▁controls", + -10.653624534606934 + ], + [ + "▁edit", + -10.653815269470215 + ], + [ + "▁applicable", + -10.653908729553223 + ], + [ + "well", + -10.654413223266602 + ], + [ + "▁upgrade", + -10.654475212097168 + ], + [ + "They", + -10.655295372009277 + ], + [ + "▁Word", + -10.655540466308594 + ], + [ + "▁wave", + -10.655797958374023 + ], + [ + "▁contained", + -10.656707763671875 + ], + [ + "▁superior", + -10.656811714172363 + ], + [ + "▁Rights", + -10.657856941223145 + ], + [ + "▁Taylor", + -10.658044815063477 + ], + [ + "▁compliance", + -10.65922737121582 + ], + [ + "▁tissue", + -10.659600257873535 + ], + [ + "▁Training", + -10.659647941589355 + ], + [ + "▁Democrats", + -10.659683227539062 + ], + [ + "▁Space", + -10.659996032714844 + ], + [ + "▁Republic", + -10.66022777557373 + ], + [ + "▁Four", + -10.66032886505127 + ], + [ + "▁pot", + -10.660642623901367 + ], + [ + "▁trash", + -10.661025047302246 + ], + [ + "▁Bush", + -10.661136627197266 + ], + [ + "▁hell", + -10.661714553833008 + ], + [ + "▁Him", + -10.661785125732422 + ], + [ + "▁concepts", + -10.66207504272461 + ], + [ + "▁strongly", + -10.662460327148438 + ], + [ + "▁ad", + -10.663225173950195 + ], + [ + "▁Garden", + -10.663334846496582 + ], + [ + "▁hotels", + -10.663389205932617 + ], + [ + "▁stayed", + -10.664647102355957 + ], + [ + "▁purchasing", + -10.664942741394043 + ], + [ + "▁k", + -10.66505241394043 + ], + [ + "side", + -10.665255546569824 + ], + [ + "▁sought", + -10.665281295776367 + ], + [ + "▁Oct", + -10.66555404663086 + ], + [ + "▁38", + -10.665575981140137 + ], + [ + "▁Fox", + -10.665781021118164 + ], + [ + "▁subjects", + -10.666410446166992 + ], + [ + "▁Rose", + -10.666457176208496 + ], + [ + "▁42", + -10.666566848754883 + ], + [ + "▁prime", + -10.666688919067383 + ], + [ + "▁returning", + -10.666976928710938 + ], + [ + "31", + -10.6672945022583 + ], + [ + "▁factory", + -10.667405128479004 + ], + [ + "▁Stone", + -10.667495727539062 + ], + [ + "▁·", + -10.667604446411133 + ], + [ + "▁shut", + -10.667627334594727 + ], + [ + "▁marked", + -10.6683931350708 + ], + [ + "▁loving", + -10.668581008911133 + ], + [ + "▁DNA", + -10.669249534606934 + ], + [ + "field", + -10.669306755065918 + ], + [ + "▁recipes", + -10.669352531433105 + ], + [ + "▁approaches", + -10.669462203979492 + ], + [ + "▁Cross", + -10.669519424438477 + ], + [ + "▁hadn", + -10.669994354248047 + ], + [ + "▁forth", + -10.670044898986816 + ], + [ + "▁powder", + -10.670244216918945 + ], + [ + "▁1980", + -10.670897483825684 + ], + [ + "▁exhibition", + -10.671016693115234 + ], + [ + "▁resume", + -10.671329498291016 + ], + [ + "▁fifth", + -10.67178726196289 + ], + [ + "▁37", + -10.671991348266602 + ], + [ + "▁consequences", + -10.672063827514648 + ], + [ + "▁Fund", + -10.672239303588867 + ], + [ + "▁mortgage", + -10.672260284423828 + ], + [ + "▁diseases", + -10.672451972961426 + ], + [ + "ka", + -10.672597885131836 + ], + [ + "▁Mountain", + -10.672961235046387 + ], + [ + "▁gap", + -10.673453330993652 + ], + [ + "▁pointed", + -10.673569679260254 + ], + [ + "▁classroom", + -10.673871994018555 + ], + [ + "▁calendar", + -10.674630165100098 + ], + [ + "▁pricing", + -10.676054000854492 + ], + [ + "▁encouraged", + -10.676166534423828 + ], + [ + "▁IS", + -10.676310539245605 + ], + [ + "And", + -10.676485061645508 + ], + [ + "▁deeply", + -10.676957130432129 + ], + [ + "▁wanting", + -10.677749633789062 + ], + [ + "▁Disney", + -10.677776336669922 + ], + [ + "▁managers", + -10.678285598754883 + ], + [ + "▁guard", + -10.678345680236816 + ], + [ + "▁brilliant", + -10.678553581237793 + ], + [ + "▁traveling", + -10.6788330078125 + ], + [ + "▁ceremony", + -10.67884635925293 + ], + [ + "ED", + -10.678926467895508 + ], + [ + "▁mistake", + -10.680526733398438 + ], + [ + "▁Radio", + -10.680618286132812 + ], + [ + "▁greatly", + -10.680932998657227 + ], + [ + "▁strike", + -10.680952072143555 + ], + [ + "▁39", + -10.681242942810059 + ], + [ + "▁plot", + -10.68201732635498 + ], + [ + "▁Frank", + -10.68213939666748 + ], + [ + "▁ads", + -10.682891845703125 + ], + [ + "▁demands", + -10.682957649230957 + ], + [ + "▁wondering", + -10.683218955993652 + ], + [ + "▁Alex", + -10.683472633361816 + ], + [ + "▁favor", + -10.683636665344238 + ], + [ + "70", + -10.683660507202148 + ], + [ + "▁1998", + -10.683707237243652 + ], + [ + "age", + -10.683783531188965 + ], + [ + "My", + -10.68442440032959 + ], + [ + "▁riding", + -10.684821128845215 + ], + [ + "▁representative", + -10.685157775878906 + ], + [ + "▁evaluation", + -10.685258865356445 + ], + [ + "▁enables", + -10.685332298278809 + ], + [ + "▁everybody", + -10.685696601867676 + ], + [ + "▁checked", + -10.685871124267578 + ], + [ + "▁Greek", + -10.687087059020996 + ], + [ + "▁rely", + -10.687450408935547 + ], + [ + "▁army", + -10.68751049041748 + ], + [ + "▁downtown", + -10.687585830688477 + ], + [ + "friendly", + -10.687779426574707 + ], + [ + "▁55", + -10.688091278076172 + ], + [ + "▁equivalent", + -10.688286781311035 + ], + [ + "▁wake", + -10.68835163116455 + ], + [ + "▁entering", + -10.688363075256348 + ], + [ + "including", + -10.689020156860352 + ], + [ + "▁Based", + -10.689072608947754 + ], + [ + "▁stretch", + -10.689708709716797 + ], + [ + "▁entrance", + -10.68985652923584 + ], + [ + "▁newspaper", + -10.690093994140625 + ], + [ + "▁Marketing", + -10.69082260131836 + ], + [ + "▁maintaining", + -10.690869331359863 + ], + [ + "▁breast", + -10.69107723236084 + ], + [ + "▁belief", + -10.691267967224121 + ], + [ + "▁southern", + -10.691644668579102 + ], + [ + "▁currency", + -10.692658424377441 + ], + [ + "▁FOR", + -10.692941665649414 + ], + [ + "▁temporary", + -10.693485260009766 + ], + [ + "▁hanging", + -10.693511009216309 + ], + [ + "▁Brian", + -10.693828582763672 + ], + [ + "▁mile", + -10.694432258605957 + ], + [ + "300", + -10.694478034973145 + ], + [ + "▁codes", + -10.694571495056152 + ], + [ + "▁hosted", + -10.695122718811035 + ], + [ + "▁setup", + -10.695291519165039 + ], + [ + "▁Arizona", + -10.69543743133545 + ], + [ + "▁crash", + -10.695456504821777 + ], + [ + "▁65", + -10.695606231689453 + ], + [ + "▁compensation", + -10.695622444152832 + ], + [ + "▁script", + -10.69637680053711 + ], + [ + "▁faculty", + -10.696619033813477 + ], + [ + "▁roads", + -10.696688652038574 + ], + [ + "▁colleagues", + -10.696879386901855 + ], + [ + "▁Steel", + -10.697097778320312 + ], + [ + "▁lock", + -10.69717788696289 + ], + [ + "▁secondary", + -10.6974515914917 + ], + [ + "▁lie", + -10.698444366455078 + ], + [ + "▁Week", + -10.698805809020996 + ], + [ + "▁correctly", + -10.69886302947998 + ], + [ + "▁outcomes", + -10.699090957641602 + ], + [ + "▁earnings", + -10.699189186096191 + ], + [ + "▁shirt", + -10.699495315551758 + ], + [ + "▁sections", + -10.700340270996094 + ], + [ + "▁bone", + -10.700413703918457 + ], + [ + "▁NFL", + -10.701338768005371 + ], + [ + "▁Louis", + -10.70144271850586 + ], + [ + "▁studied", + -10.701604843139648 + ], + [ + "▁pocket", + -10.701750755310059 + ], + [ + "▁adopted", + -10.702574729919434 + ], + [ + "▁merely", + -10.702776908874512 + ], + [ + "▁SEO", + -10.703144073486328 + ], + [ + "▁Software", + -10.70351505279541 + ], + [ + "▁participation", + -10.704076766967773 + ], + [ + "▁admit", + -10.704279899597168 + ], + [ + "▁deposit", + -10.70439338684082 + ], + [ + "▁contest", + -10.704580307006836 + ], + [ + "▁Father", + -10.704586029052734 + ], + [ + "▁Eastern", + -10.705012321472168 + ], + [ + "ry", + -10.705565452575684 + ], + [ + "▁Golden", + -10.706331253051758 + ], + [ + "▁thousand", + -10.706864356994629 + ], + [ + "▁ensuring", + -10.707047462463379 + ], + [ + "▁criteria", + -10.707341194152832 + ], + [ + "▁Kevin", + -10.707756042480469 + ], + [ + "▁Corporation", + -10.708237648010254 + ], + [ + "ally", + -10.708972930908203 + ], + [ + "04", + -10.70898723602295 + ], + [ + "▁Oil", + -10.709111213684082 + ], + [ + "▁studying", + -10.70937728881836 + ], + [ + "▁appointed", + -10.710020065307617 + ], + [ + "▁absolute", + -10.71009349822998 + ], + [ + "▁maintained", + -10.710749626159668 + ], + [ + "▁tagged", + -10.71096134185791 + ], + [ + "▁exists", + -10.711421966552734 + ], + [ + "▁scenes", + -10.711578369140625 + ], + [ + "▁guilty", + -10.711732864379883 + ], + [ + "▁somehow", + -10.71185302734375 + ], + [ + "▁dust", + -10.711858749389648 + ], + [ + "▁specified", + -10.712477684020996 + ], + [ + "▁sentence", + -10.712486267089844 + ], + [ + "em", + -10.712522506713867 + ], + [ + "quality", + -10.712790489196777 + ], + [ + "▁venue", + -10.713068962097168 + ], + [ + "▁elections", + -10.713414192199707 + ], + [ + "▁ocean", + -10.714045524597168 + ], + [ + "▁Hot", + -10.714071273803711 + ], + [ + "▁okay", + -10.714104652404785 + ], + [ + "▁reveal", + -10.71483039855957 + ], + [ + "▁illness", + -10.715350151062012 + ], + [ + "▁extend", + -10.715445518493652 + ], + [ + "▁attitude", + -10.715718269348145 + ], + [ + "▁Modern", + -10.716024398803711 + ], + [ + "▁initiative", + -10.716155052185059 + ], + [ + "▁Houston", + -10.716219902038574 + ], + [ + "▁spots", + -10.716248512268066 + ], + [ + "▁acquired", + -10.716339111328125 + ], + [ + "▁reaching", + -10.71658706665039 + ], + [ + "▁lady", + -10.716726303100586 + ], + [ + "▁characteristics", + -10.71702766418457 + ], + [ + "▁voters", + -10.717411994934082 + ], + [ + "▁depression", + -10.717852592468262 + ], + [ + "▁Point", + -10.718329429626465 + ], + [ + "▁assigned", + -10.718426704406738 + ], + [ + "▁j", + -10.71870231628418 + ], + [ + "▁wins", + -10.718703269958496 + ], + [ + "▁blend", + -10.71871280670166 + ], + [ + "▁Want", + -10.718864440917969 + ], + [ + "▁childhood", + -10.718947410583496 + ], + [ + "▁occurs", + -10.719122886657715 + ], + [ + "▁Singapore", + -10.719522476196289 + ], + [ + "▁integration", + -10.71963119506836 + ], + [ + "down", + -10.7196683883667 + ], + [ + "▁laptop", + -10.719939231872559 + ], + [ + "▁Avenue", + -10.720081329345703 + ], + [ + "▁NY", + -10.720101356506348 + ], + [ + "▁wireless", + -10.720196723937988 + ], + [ + "▁pride", + -10.72029972076416 + ], + [ + "▁graphics", + -10.720355987548828 + ], + [ + "▁volunteers", + -10.720989227294922 + ], + [ + "▁decent", + -10.721268653869629 + ], + [ + "▁museum", + -10.721296310424805 + ], + [ + "▁Airport", + -10.721325874328613 + ], + [ + "▁lake", + -10.721376419067383 + ], + [ + "▁applying", + -10.722871780395508 + ], + [ + "▁phones", + -10.723343849182129 + ], + [ + "▁Policy", + -10.72348403930664 + ], + [ + "08", + -10.723679542541504 + ], + [ + "▁preparing", + -10.724102020263672 + ], + [ + "▁harm", + -10.724149703979492 + ], + [ + "▁fundamental", + -10.72484016418457 + ], + [ + "▁hang", + -10.72488784790039 + ], + [ + "▁concert", + -10.724947929382324 + ], + [ + "▁indicated", + -10.72545051574707 + ], + [ + "▁Test", + -10.725748062133789 + ], + [ + "▁satisfaction", + -10.72778606414795 + ], + [ + "▁Vegas", + -10.728131294250488 + ], + [ + "▁actor", + -10.728171348571777 + ], + [ + "▁frequency", + -10.728341102600098 + ], + [ + "ner", + -10.728711128234863 + ], + [ + "▁union", + -10.728829383850098 + ], + [ + "▁Image", + -10.729143142700195 + ], + [ + "▁entitled", + -10.729391098022461 + ], + [ + "her", + -10.729771614074707 + ], + [ + "▁PDF", + -10.730270385742188 + ], + [ + "▁mm", + -10.730944633483887 + ], + [ + "▁drinks", + -10.730969429016113 + ], + [ + "▁personnel", + -10.731134414672852 + ], + [ + "▁stages", + -10.731182098388672 + ], + [ + "▁deeper", + -10.731304168701172 + ], + [ + "▁lowest", + -10.731813430786133 + ], + [ + "▁estimate", + -10.731908798217773 + ], + [ + "▁Harry", + -10.732051849365234 + ], + [ + "▁equally", + -10.732070922851562 + ], + [ + "▁Scotland", + -10.732340812683105 + ], + [ + "▁raising", + -10.73249340057373 + ], + [ + "▁ceiling", + -10.732539176940918 + ], + [ + "▁orange", + -10.732588768005371 + ], + [ + "http", + -10.733037948608398 + ], + [ + "95", + -10.733306884765625 + ], + [ + "▁chest", + -10.733341217041016 + ], + [ + "▁speaker", + -10.733667373657227 + ], + [ + "▁stations", + -10.734488487243652 + ], + [ + "▁attempts", + -10.735057830810547 + ], + [ + "▁tracking", + -10.735504150390625 + ], + [ + "▁cuts", + -10.735906600952148 + ], + [ + "▁Ideas", + -10.736101150512695 + ], + [ + "▁smoke", + -10.736135482788086 + ], + [ + "▁Agency", + -10.736355781555176 + ], + [ + "▁Silver", + -10.736736297607422 + ], + [ + "▁Hollywood", + -10.737133026123047 + ], + [ + "▁Help", + -10.737445831298828 + ], + [ + "▁Max", + -10.738380432128906 + ], + [ + "▁Everything", + -10.738382339477539 + ], + [ + "▁bond", + -10.738476753234863 + ], + [ + "▁packed", + -10.739264488220215 + ], + [ + "▁egg", + -10.739547729492188 + ], + [ + "▁Capital", + -10.739553451538086 + ], + [ + "▁buyers", + -10.73963451385498 + ], + [ + "▁rapidly", + -10.739933013916016 + ], + [ + "class", + -10.740060806274414 + ], + [ + "ING", + -10.740312576293945 + ], + [ + "▁Administration", + -10.7411527633667 + ], + [ + "▁flavor", + -10.741290092468262 + ], + [ + "▁gaming", + -10.741631507873535 + ], + [ + "▁interaction", + -10.741829872131348 + ], + [ + "▁arrival", + -10.74184513092041 + ], + [ + "wood", + -10.742234230041504 + ], + [ + "▁lifetime", + -10.742253303527832 + ], + [ + "▁pp", + -10.743338584899902 + ], + [ + "▁Card", + -10.743633270263672 + ], + [ + "▁Line", + -10.743657112121582 + ], + [ + "▁Senior", + -10.743780136108398 + ], + [ + "▁Professional", + -10.743915557861328 + ], + [ + "▁suffer", + -10.744294166564941 + ], + [ + "▁poker", + -10.74445629119873 + ], + [ + "▁western", + -10.744690895080566 + ], + [ + "▁farmers", + -10.745622634887695 + ], + [ + "▁infection", + -10.745634078979492 + ], + [ + "▁Port", + -10.745760917663574 + ], + [ + "▁holidays", + -10.745865821838379 + ], + [ + "▁scores", + -10.745989799499512 + ], + [ + "▁scope", + -10.746166229248047 + ], + [ + "▁MP", + -10.747105598449707 + ], + [ + "li", + -10.747129440307617 + ], + [ + "▁essentially", + -10.74714183807373 + ], + [ + "▁errors", + -10.74721908569336 + ], + [ + "09", + -10.747225761413574 + ], + [ + "▁introduce", + -10.747817039489746 + ], + [ + "▁packages", + -10.748319625854492 + ], + [ + "▁que", + -10.749502182006836 + ], + [ + "▁Step", + -10.749885559082031 + ], + [ + "▁organisation", + -10.74992561340332 + ], + [ + "▁pushed", + -10.74992847442627 + ], + [ + "led", + -10.750646591186523 + ], + [ + "▁residence", + -10.750654220581055 + ], + [ + "▁damaged", + -10.750940322875977 + ], + [ + "▁worried", + -10.750967979431152 + ], + [ + "▁Iraq", + -10.751502990722656 + ], + [ + "▁centers", + -10.751609802246094 + ], + [ + "▁opposed", + -10.751713752746582 + ], + [ + "▁asset", + -10.751940727233887 + ], + [ + "▁mirror", + -10.752079963684082 + ], + [ + "▁unusual", + -10.752087593078613 + ], + [ + "▁drama", + -10.752453804016113 + ], + [ + "▁bird", + -10.753060340881348 + ], + [ + "▁insight", + -10.753510475158691 + ], + [ + "That", + -10.753573417663574 + ], + [ + "▁resort", + -10.753644943237305 + ], + [ + "▁Drive", + -10.753705978393555 + ], + [ + "▁improvements", + -10.753846168518066 + ], + [ + "▁Awards", + -10.753992080688477 + ], + [ + "▁assistant", + -10.754353523254395 + ], + [ + "▁mood", + -10.755141258239746 + ], + [ + "io", + -10.755356788635254 + ], + [ + "▁conclusion", + -10.755378723144531 + ], + [ + "▁contribution", + -10.756002426147461 + ], + [ + "▁lists", + -10.756173133850098 + ], + [ + "▁seasons", + -10.756260871887207 + ], + [ + "▁Sarah", + -10.757194519042969 + ], + [ + "▁lens", + -10.757987022399902 + ], + [ + "▁heating", + -10.758010864257812 + ], + [ + "▁viewing", + -10.758028984069824 + ], + [ + "▁trips", + -10.758035659790039 + ], + [ + "▁focusing", + -10.758140563964844 + ], + [ + "▁struck", + -10.75920295715332 + ], + [ + "▁Among", + -10.759706497192383 + ], + [ + "▁Quality", + -10.75997543334961 + ], + [ + "▁LED", + -10.760102272033691 + ], + [ + "▁column", + -10.760441780090332 + ], + [ + "▁emails", + -10.76077651977539 + ], + [ + "▁pump", + -10.760846138000488 + ], + [ + "▁tie", + -10.761067390441895 + ], + [ + "▁exceptional", + -10.761601448059082 + ], + [ + "▁Roman", + -10.761922836303711 + ], + [ + "q", + -10.76192855834961 + ], + [ + "▁Medicine", + -10.76193904876709 + ], + [ + "▁Yeah", + -10.76220417022705 + ], + [ + "▁prayer", + -10.762456893920898 + ], + [ + "▁se", + -10.762738227844238 + ], + [ + "▁beneficial", + -10.76336669921875 + ], + [ + "06", + -10.763423919677734 + ], + [ + "▁USB", + -10.763781547546387 + ], + [ + "▁PA", + -10.764243125915527 + ], + [ + "▁philosophy", + -10.764253616333008 + ], + [ + "▁gene", + -10.764307022094727 + ], + [ + "▁licensed", + -10.764832496643066 + ], + [ + "▁cabinet", + -10.765071868896484 + ], + [ + "▁quotes", + -10.76522445678711 + ], + [ + "▁filling", + -10.765652656555176 + ], + [ + "▁weak", + -10.766000747680664 + ], + [ + "▁Film", + -10.766030311584473 + ], + [ + "▁northern", + -10.766453742980957 + ], + [ + "▁arrangements", + -10.76651382446289 + ], + [ + "ment", + -10.766532897949219 + ], + [ + "▁lets", + -10.76699161529541 + ], + [ + "▁vegetables", + -10.767005920410156 + ], + [ + "▁Ministry", + -10.767046928405762 + ], + [ + "▁container", + -10.767173767089844 + ], + [ + "▁automatic", + -10.767555236816406 + ], + [ + "▁define", + -10.767899513244629 + ], + [ + "▁implemented", + -10.768068313598633 + ], + [ + "▁telephone", + -10.768393516540527 + ], + [ + "▁clock", + -10.768546104431152 + ], + [ + "2018", + -10.768635749816895 + ], + [ + "▁Need", + -10.768884658813477 + ], + [ + "▁grab", + -10.76912784576416 + ], + [ + "▁Sydney", + -10.769429206848145 + ], + [ + "▁letting", + -10.76986026763916 + ], + [ + "▁peak", + -10.769970893859863 + ], + [ + "▁grateful", + -10.770007133483887 + ], + [ + "▁module", + -10.770169258117676 + ], + [ + "▁Tour", + -10.770514488220215 + ], + [ + "▁narrow", + -10.77077865600586 + ], + [ + "▁confirm", + -10.77112865447998 + ], + [ + "ion", + -10.771175384521484 + ], + [ + "long", + -10.77125358581543 + ], + [ + "▁delay", + -10.771265029907227 + ], + [ + "▁elegant", + -10.772031784057617 + ], + [ + "▁prize", + -10.772605895996094 + ], + [ + "▁reserved", + -10.772845268249512 + ], + [ + "▁vintage", + -10.772878646850586 + ], + [ + "over", + -10.77359390258789 + ], + [ + "▁survive", + -10.773685455322266 + ], + [ + "style", + -10.773947715759277 + ], + [ + "▁diversity", + -10.774091720581055 + ], + [ + "▁64", + -10.774568557739258 + ], + [ + "▁heavily", + -10.774698257446289 + ], + [ + "▁Way", + -10.774752616882324 + ], + [ + "▁dishes", + -10.774754524230957 + ], + [ + "▁certificate", + -10.775046348571777 + ], + [ + "▁substantial", + -10.77563762664795 + ], + [ + "▁sharp", + -10.775744438171387 + ], + [ + "▁flower", + -10.77631664276123 + ], + [ + "36", + -10.776429176330566 + ], + [ + "▁Natural", + -10.776480674743652 + ], + [ + "▁liability", + -10.776516914367676 + ], + [ + "ish", + -10.776630401611328 + ], + [ + "▁branch", + -10.777105331420898 + ], + [ + "▁attending", + -10.777557373046875 + ], + [ + "▁Miami", + -10.777567863464355 + ], + [ + "▁employer", + -10.77777099609375 + ], + [ + "▁struggling", + -10.778436660766602 + ], + [ + "▁booking", + -10.778497695922852 + ], + [ + "▁satisfied", + -10.778556823730469 + ], + [ + "▁Key", + -10.778900146484375 + ], + [ + "▁vice", + -10.778928756713867 + ], + [ + "▁consent", + -10.779048919677734 + ], + [ + "▁photographs", + -10.779192924499512 + ], + [ + "▁Safety", + -10.779396057128906 + ], + [ + "▁basketball", + -10.779472351074219 + ], + [ + "33", + -10.779502868652344 + ], + [ + "▁celebration", + -10.779617309570312 + ], + [ + "▁Country", + -10.779902458190918 + ], + [ + "ation", + -10.7801513671875 + ], + [ + "▁Officer", + -10.780294418334961 + ], + [ + "▁edited", + -10.780739784240723 + ], + [ + "▁addresses", + -10.781099319458008 + ], + [ + "▁con", + -10.782234191894531 + ], + [ + "▁seed", + -10.782327651977539 + ], + [ + "▁Has", + -10.782535552978516 + ], + [ + "▁%", + -10.782772064208984 + ], + [ + "▁Illinois", + -10.783044815063477 + ], + [ + "▁Square", + -10.783498764038086 + ], + [ + "▁titles", + -10.783534049987793 + ], + [ + "▁ill", + -10.784420013427734 + ], + [ + "▁statistics", + -10.784642219543457 + ], + [ + "▁Am", + -10.784648895263672 + ], + [ + "▁emotions", + -10.78471565246582 + ], + [ + "▁UN", + -10.784811019897461 + ], + [ + "▁enemy", + -10.785419464111328 + ], + [ + "07", + -10.785639762878418 + ], + [ + "▁combine", + -10.786394119262695 + ], + [ + "▁relax", + -10.786396980285645 + ], + [ + "▁relation", + -10.78641414642334 + ], + [ + "▁Las", + -10.786463737487793 + ], + [ + "▁chairs", + -10.787322998046875 + ], + [ + "▁1997", + -10.787384033203125 + ], + [ + "▁loose", + -10.788077354431152 + ], + [ + "▁nights", + -10.788328170776367 + ], + [ + "▁Jeff", + -10.788863182067871 + ], + [ + "▁computers", + -10.789027214050293 + ], + [ + "▁universe", + -10.789331436157227 + ], + [ + "▁transmission", + -10.789409637451172 + ], + [ + "▁fits", + -10.789591789245605 + ], + [ + "▁anniversary", + -10.78981876373291 + ], + [ + "▁accordance", + -10.790230751037598 + ], + [ + "▁Save", + -10.790939331054688 + ], + [ + "ized", + -10.790972709655762 + ], + [ + "▁Think", + -10.791259765625 + ], + [ + "▁Station", + -10.79147720336914 + ], + [ + "▁intense", + -10.792179107666016 + ], + [ + "▁Due", + -10.792318344116211 + ], + [ + "▁distinct", + -10.792322158813477 + ], + [ + "▁racing", + -10.79269027709961 + ], + [ + "use", + -10.792805671691895 + ], + [ + "▁NO", + -10.792869567871094 + ], + [ + "▁demonstrate", + -10.792940139770508 + ], + [ + "▁Furthermore", + -10.793203353881836 + ], + [ + "▁listing", + -10.793296813964844 + ], + [ + "▁rarely", + -10.794068336486816 + ], + [ + "▁losses", + -10.794078826904297 + ], + [ + "▁decline", + -10.794089317321777 + ], + [ + "▁1970", + -10.794191360473633 + ], + [ + "▁Moreover", + -10.794326782226562 + ], + [ + "▁formula", + -10.794358253479004 + ], + [ + "▁Pass", + -10.794363021850586 + ], + [ + "▁wash", + -10.794380187988281 + ], + [ + "▁engaging", + -10.794418334960938 + ], + [ + "▁completion", + -10.794700622558594 + ], + [ + "▁pitch", + -10.794907569885254 + ], + [ + "▁transactions", + -10.795473098754883 + ], + [ + "▁Davis", + -10.795760154724121 + ], + [ + "▁49", + -10.795830726623535 + ], + [ + "▁Prince", + -10.79592227935791 + ], + [ + "▁focuses", + -10.795966148376465 + ], + [ + "▁meets", + -10.796548843383789 + ], + [ + "▁languages", + -10.796576499938965 + ], + [ + "▁Chapter", + -10.796867370605469 + ], + [ + "▁Several", + -10.796932220458984 + ], + [ + "▁promotion", + -10.796947479248047 + ], + [ + "▁Kitchen", + -10.796954154968262 + ], + [ + "▁targeted", + -10.797146797180176 + ], + [ + "▁List", + -10.797316551208496 + ], + [ + "point", + -10.79797649383545 + ], + [ + "▁aims", + -10.798118591308594 + ], + [ + "▁exception", + -10.79826831817627 + ], + [ + "▁consultation", + -10.798429489135742 + ], + [ + "▁nations", + -10.79914379119873 + ], + [ + "▁Trade", + -10.799588203430176 + ], + [ + "▁suppliers", + -10.799657821655273 + ], + [ + "▁layout", + -10.79985237121582 + ], + [ + "▁Machine", + -10.79996395111084 + ], + [ + "▁generic", + -10.800043106079102 + ], + [ + "ko", + -10.800113677978516 + ], + [ + "▁opinions", + -10.800545692443848 + ], + [ + "▁Access", + -10.80058479309082 + ], + [ + "▁Smart", + -10.80067253112793 + ], + [ + "▁institution", + -10.800930976867676 + ], + [ + "But", + -10.801173210144043 + ], + [ + "▁Non", + -10.801369667053223 + ], + [ + "▁instant", + -10.80165958404541 + ], + [ + "▁officially", + -10.801719665527344 + ], + [ + "▁resident", + -10.802343368530273 + ], + [ + "▁HP", + -10.802647590637207 + ], + [ + "55", + -10.802692413330078 + ], + [ + "▁speakers", + -10.804625511169434 + ], + [ + "▁employed", + -10.804865837097168 + ], + [ + "▁Miller", + -10.805015563964844 + ], + [ + "▁Made", + -10.805028915405273 + ], + [ + "▁Ed", + -10.805227279663086 + ], + [ + "▁utility", + -10.8054780960083 + ], + [ + "▁Off", + -10.805832862854004 + ], + [ + "▁yoga", + -10.807583808898926 + ], + [ + "▁powers", + -10.807828903198242 + ], + [ + "▁gay", + -10.807963371276855 + ], + [ + "▁founder", + -10.808091163635254 + ], + [ + "▁Learning", + -10.808146476745605 + ], + [ + "▁exploring", + -10.808271408081055 + ], + [ + "▁falls", + -10.808572769165039 + ], + [ + "▁highlight", + -10.808951377868652 + ], + [ + "▁Fort", + -10.80900764465332 + ], + [ + "▁surely", + -10.810016632080078 + ], + [ + "▁alleged", + -10.810049057006836 + ], + [ + "▁interactive", + -10.810192108154297 + ], + [ + "▁temperatures", + -10.810203552246094 + ], + [ + "▁painted", + -10.810354232788086 + ], + [ + "▁Korean", + -10.81052017211914 + ], + [ + "ya", + -10.811147689819336 + ], + [ + "▁tape", + -10.811222076416016 + ], + [ + "known", + -10.811305046081543 + ], + [ + "▁Jordan", + -10.81179428100586 + ], + [ + "â", + -10.81192398071289 + ], + [ + "▁hat", + -10.81214427947998 + ], + [ + "▁nose", + -10.812760353088379 + ], + [ + "▁configuration", + -10.812979698181152 + ], + [ + "▁compete", + -10.813268661499023 + ], + [ + "more", + -10.81331729888916 + ], + [ + "€", + -10.81403923034668 + ], + [ + "ur", + -10.814041137695312 + ], + [ + "▁finds", + -10.814088821411133 + ], + [ + "ro", + -10.814868927001953 + ], + [ + "▁fiction", + -10.815176963806152 + ], + [ + "▁aged", + -10.815362930297852 + ], + [ + "▁juice", + -10.815366744995117 + ], + [ + "▁moral", + -10.815702438354492 + ], + [ + "▁danger", + -10.816415786743164 + ], + [ + "id", + -10.81661319732666 + ], + [ + "▁Nick", + -10.817015647888184 + ], + [ + "▁signature", + -10.817057609558105 + ], + [ + "▁combat", + -10.817708015441895 + ], + [ + "▁intellectual", + -10.817737579345703 + ], + [ + "▁pilot", + -10.818076133728027 + ], + [ + "▁soldiers", + -10.818741798400879 + ], + [ + "▁Estate", + -10.818831443786621 + ], + [ + "▁1996", + -10.818860054016113 + ], + [ + "▁Main", + -10.819757461547852 + ], + [ + "34", + -10.819911003112793 + ], + [ + "▁proved", + -10.820390701293945 + ], + [ + "▁Stephen", + -10.820619583129883 + ], + [ + "▁Wilson", + -10.821517944335938 + ], + [ + "▁III", + -10.821630477905273 + ], + [ + "▁Republicans", + -10.821882247924805 + ], + [ + "▁Creek", + -10.822132110595703 + ], + [ + "▁contributions", + -10.822153091430664 + ], + [ + "▁fewer", + -10.822220802307129 + ], + [ + "▁medication", + -10.822351455688477 + ], + [ + "▁Muslim", + -10.822366714477539 + ], + [ + "▁targets", + -10.822379112243652 + ], + [ + "▁hall", + -10.822471618652344 + ], + [ + "▁delivering", + -10.822761535644531 + ], + [ + "▁cotton", + -10.822896957397461 + ], + [ + "▁sequence", + -10.823358535766602 + ], + [ + "▁volunteer", + -10.824091911315918 + ], + [ + "▁functionality", + -10.824217796325684 + ], + [ + "▁Sign", + -10.824614524841309 + ], + [ + "▁aimed", + -10.824710845947266 + ], + [ + "▁tons", + -10.825637817382812 + ], + [ + "▁versus", + -10.825826644897461 + ], + [ + "▁ban", + -10.825931549072266 + ], + [ + "cm", + -10.826103210449219 + ], + [ + "▁Seattle", + -10.826778411865234 + ], + [ + "▁contracts", + -10.826871871948242 + ], + [ + "▁Much", + -10.8269624710083 + ], + [ + "▁Website", + -10.827046394348145 + ], + [ + "▁Turkey", + -10.827362060546875 + ], + [ + "▁singer", + -10.827372550964355 + ], + [ + "▁circle", + -10.828649520874023 + ], + [ + "▁reply", + -10.828970909118652 + ], + [ + "▁grass", + -10.829337120056152 + ], + [ + "▁44", + -10.829365730285645 + ], + [ + "▁~", + -10.829793930053711 + ], + [ + "▁permit", + -10.829846382141113 + ], + [ + "▁120", + -10.829917907714844 + ], + [ + "▁panels", + -10.829995155334473 + ], + [ + "▁investments", + -10.830212593078613 + ], + [ + "▁Rs", + -10.83028793334961 + ], + [ + "▁accuracy", + -10.830344200134277 + ], + [ + "▁colours", + -10.831068992614746 + ], + [ + "▁rapid", + -10.831294059753418 + ], + [ + "▁promoting", + -10.83130168914795 + ], + [ + "▁stability", + -10.831822395324707 + ], + [ + "ization", + -10.83206844329834 + ], + [ + "hour", + -10.832083702087402 + ], + [ + "▁Working", + -10.83234691619873 + ], + [ + "▁circuit", + -10.832581520080566 + ], + [ + "▁engines", + -10.833450317382812 + ], + [ + "▁Kong", + -10.833883285522461 + ], + [ + "▁Syria", + -10.833971977233887 + ], + [ + "▁plain", + -10.834124565124512 + ], + [ + "▁flexibility", + -10.834410667419434 + ], + [ + "new", + -10.834468841552734 + ], + [ + "▁pregnancy", + -10.835087776184082 + ], + [ + "▁cameras", + -10.835183143615723 + ], + [ + "▁viagra", + -10.835217475891113 + ], + [ + "life", + -10.835309028625488 + ], + [ + "▁producer", + -10.83541202545166 + ], + [ + "800", + -10.835522651672363 + ], + [ + "▁measured", + -10.835732460021973 + ], + [ + "▁seeds", + -10.835762977600098 + ], + [ + "▁terrible", + -10.836250305175781 + ], + [ + "▁resulted", + -10.836686134338379 + ], + [ + "ni", + -10.83674144744873 + ], + [ + "‘", + -10.836973190307617 + ], + [ + "▁charity", + -10.838399887084961 + ], + [ + "▁decrease", + -10.838483810424805 + ], + [ + "▁formation", + -10.838523864746094 + ], + [ + "▁declared", + -10.838768005371094 + ], + [ + "▁announcement", + -10.839456558227539 + ], + [ + "▁calm", + -10.839727401733398 + ], + [ + "▁Model", + -10.839827537536621 + ], + [ + "▁segment", + -10.840653419494629 + ], + [ + "▁singing", + -10.841779708862305 + ], + [ + "▁guaranteed", + -10.842414855957031 + ], + [ + "▁Never", + -10.842863082885742 + ], + [ + "▁OS", + -10.842954635620117 + ], + [ + "▁immigration", + -10.843111038208008 + ], + [ + "▁inform", + -10.843216896057129 + ], + [ + "▁elsewhere", + -10.843475341796875 + ], + [ + "▁Dave", + -10.843677520751953 + ], + [ + "▁ownership", + -10.84374713897705 + ], + [ + "▁Elizabeth", + -10.84388542175293 + ], + [ + "▁excess", + -10.84418773651123 + ], + [ + "▁boss", + -10.844204902648926 + ], + [ + "▁flag", + -10.844625473022461 + ], + [ + "▁genuine", + -10.845455169677734 + ], + [ + "▁bid", + -10.846041679382324 + ], + [ + "▁DVD", + -10.846291542053223 + ], + [ + "▁mechanism", + -10.846293449401855 + ], + [ + "▁accommodation", + -10.84671688079834 + ], + [ + "▁Eric", + -10.846857070922852 + ], + [ + "▁sleeping", + -10.846909523010254 + ], + [ + "▁pregnant", + -10.84717082977295 + ], + [ + "▁conventional", + -10.847484588623047 + ], + [ + "▁solo", + -10.84768009185791 + ], + [ + "|", + -10.847825050354004 + ], + [ + "▁mill", + -10.848021507263184 + ], + [ + "▁Nothing", + -10.848207473754883 + ], + [ + "▁assembly", + -10.848499298095703 + ], + [ + "▁Columbia", + -10.849546432495117 + ], + [ + "▁equity", + -10.849785804748535 + ], + [ + "▁Miss", + -10.850125312805176 + ], + [ + "▁holes", + -10.850143432617188 + ], + [ + "▁journal", + -10.8502197265625 + ], + [ + "▁95", + -10.850571632385254 + ], + [ + "▁describes", + -10.850674629211426 + ], + [ + "▁Limited", + -10.851738929748535 + ], + [ + "▁250", + -10.851789474487305 + ], + [ + "▁operated", + -10.851850509643555 + ], + [ + "▁Jason", + -10.853201866149902 + ], + [ + "▁divided", + -10.853255271911621 + ], + [ + "▁dual", + -10.853736877441406 + ], + [ + "▁End", + -10.853906631469727 + ], + [ + "▁principal", + -10.854043006896973 + ], + [ + "▁sin", + -10.854058265686035 + ], + [ + "▁Box", + -10.85407829284668 + ], + [ + "▁visits", + -10.854438781738281 + ], + [ + "400", + -10.85512924194336 + ], + [ + "▁copies", + -10.855276107788086 + ], + [ + "▁Give", + -10.85541820526123 + ], + [ + "making", + -10.855515480041504 + ], + [ + "▁Product", + -10.855578422546387 + ], + [ + "▁Credit", + -10.855803489685059 + ], + [ + "▁emerging", + -10.855921745300293 + ], + [ + "▁carpet", + -10.8560791015625 + ], + [ + "▁amongst", + -10.85643196105957 + ], + [ + "▁convenience", + -10.857084274291992 + ], + [ + "▁Civil", + -10.857381820678711 + ], + [ + "▁designers", + -10.857922554016113 + ], + [ + "▁certification", + -10.857969284057617 + ], + [ + "▁Sale", + -10.85834789276123 + ], + [ + "▁periods", + -10.858490943908691 + ], + [ + "▁involve", + -10.858540534973145 + ], + [ + "▁Hong", + -10.85860538482666 + ], + [ + "▁coat", + -10.858698844909668 + ], + [ + "▁talented", + -10.858922004699707 + ], + [ + "▁Travel", + -10.859652519226074 + ], + [ + "▁skilled", + -10.86001968383789 + ], + [ + "ey", + -10.860088348388672 + ], + [ + "▁ear", + -10.860198974609375 + ], + [ + "▁pushing", + -10.860485076904297 + ], + [ + "▁Tony", + -10.860662460327148 + ], + [ + "▁participating", + -10.8614501953125 + ], + [ + "38", + -10.8615140914917 + ], + [ + "▁golden", + -10.861714363098145 + ], + [ + "▁mistakes", + -10.861780166625977 + ], + [ + "▁ALL", + -10.862052917480469 + ], + [ + "▁Samsung", + -10.862053871154785 + ], + [ + "▁weird", + -10.862234115600586 + ], + [ + "▁Standard", + -10.862320899963379 + ], + [ + "▁distributed", + -10.862932205200195 + ], + [ + "▁Victoria", + -10.862998008728027 + ], + [ + "▁expanded", + -10.863271713256836 + ], + [ + "▁belt", + -10.863824844360352 + ], + [ + "▁responses", + -10.863997459411621 + ], + [ + "▁Pennsylvania", + -10.864623069763184 + ], + [ + "▁Tech", + -10.86506462097168 + ], + [ + "▁bound", + -10.865382194519043 + ], + [ + "▁Oklahoma", + -10.865674018859863 + ], + [ + "▁commission", + -10.86597728729248 + ], + [ + "▁abilities", + -10.866300582885742 + ], + [ + "▁Theatre", + -10.86630630493164 + ], + [ + "▁contributed", + -10.866399765014648 + ], + [ + "▁Diego", + -10.866581916809082 + ], + [ + "▁Saint", + -10.86658763885498 + ], + [ + "▁voted", + -10.866918563842773 + ], + [ + "39", + -10.866983413696289 + ], + [ + "▁Agreement", + -10.86805248260498 + ], + [ + "▁tied", + -10.868193626403809 + ], + [ + "▁Minnesota", + -10.868367195129395 + ], + [ + "▁fired", + -10.868487358093262 + ], + [ + "▁coal", + -10.868998527526855 + ], + [ + "▁Products", + -10.869050979614258 + ], + [ + "▁answered", + -10.869461059570312 + ], + [ + "▁chronic", + -10.86982250213623 + ], + [ + "▁captured", + -10.869881629943848 + ], + [ + "ah", + -10.869972229003906 + ], + [ + "▁Available", + -10.870429992675781 + ], + [ + "▁denied", + -10.871086120605469 + ], + [ + "▁performances", + -10.871356010437012 + ], + [ + "▁Sir", + -10.87154769897461 + ], + [ + "▁Low", + -10.871587753295898 + ], + [ + "▁laugh", + -10.871894836425781 + ], + [ + "▁discussions", + -10.871931076049805 + ], + [ + "▁Kelly", + -10.871932029724121 + ], + [ + "▁ought", + -10.871962547302246 + ], + [ + "▁principle", + -10.872321128845215 + ], + [ + "▁hopefully", + -10.872401237487793 + ], + [ + "▁attract", + -10.87249755859375 + ], + [ + "▁puts", + -10.872551918029785 + ], + [ + "▁broadcast", + -10.872751235961914 + ], + [ + "▁ministry", + -10.873345375061035 + ], + [ + "▁experiment", + -10.873604774475098 + ], + [ + "au", + -10.874011039733887 + ], + [ + "▁Annual", + -10.874388694763184 + ], + [ + "▁interviews", + -10.874507904052734 + ], + [ + "▁layers", + -10.874595642089844 + ], + [ + "▁directions", + -10.874754905700684 + ], + [ + "▁overnight", + -10.875054359436035 + ], + [ + "▁refused", + -10.875081062316895 + ], + [ + "▁explanation", + -10.876214981079102 + ], + [ + "▁impressed", + -10.876422882080078 + ], + [ + "▁difficulty", + -10.876532554626465 + ], + [ + "▁graphic", + -10.876578330993652 + ], + [ + "▁gym", + -10.876609802246094 + ], + [ + "▁respective", + -10.876724243164062 + ], + [ + "▁smell", + -10.877214431762695 + ], + [ + "▁1000", + -10.87723159790039 + ], + [ + "▁clubs", + -10.8777494430542 + ], + [ + "▁1995", + -10.877832412719727 + ], + [ + "▁Below", + -10.87784194946289 + ], + [ + "▁Choose", + -10.877878189086914 + ], + [ + "▁subsequent", + -10.878335952758789 + ], + [ + "mg", + -10.878686904907227 + ], + [ + "▁rolling", + -10.87901782989502 + ], + [ + "▁Aug", + -10.879046440124512 + ], + [ + "▁signing", + -10.879047393798828 + ], + [ + "▁picking", + -10.87911605834961 + ], + [ + "▁Latin", + -10.879379272460938 + ], + [ + "GB", + -10.879380226135254 + ], + [ + "▁passes", + -10.879732131958008 + ], + [ + "art", + -10.87987232208252 + ], + [ + "▁baseball", + -10.879963874816895 + ], + [ + "▁accounting", + -10.879982948303223 + ], + [ + "▁icon", + -10.880104064941406 + ], + [ + "▁Austin", + -10.880187034606934 + ], + [ + "▁Type", + -10.880329132080078 + ], + [ + "▁encounter", + -10.880468368530273 + ], + [ + "▁tab", + -10.880491256713867 + ], + [ + "▁addressed", + -10.881630897521973 + ], + [ + "▁regulatory", + -10.882671356201172 + ], + [ + "▁admitted", + -10.882698059082031 + ], + [ + "▁developer", + -10.882739067077637 + ], + [ + "▁settlement", + -10.882855415344238 + ], + [ + "▁pursue", + -10.88320255279541 + ], + [ + "▁overcome", + -10.883257865905762 + ], + [ + "▁continuous", + -10.883378028869629 + ], + [ + "▁lab", + -10.883423805236816 + ], + [ + "▁Islamic", + -10.883517265319824 + ], + [ + "▁Winter", + -10.883794784545898 + ], + [ + "▁Heart", + -10.88461971282959 + ], + [ + "▁importantly", + -10.884979248046875 + ], + [ + "▁presidential", + -10.884987831115723 + ], + [ + "▁hide", + -10.884991645812988 + ], + [ + "▁Manchester", + -10.88576889038086 + ], + [ + "▁creativity", + -10.885804176330566 + ], + [ + "▁adjust", + -10.886129379272461 + ], + [ + "▁opens", + -10.886195182800293 + ], + [ + "▁absence", + -10.88625431060791 + ], + [ + "▁Follow", + -10.8864164352417 + ], + [ + "▁responded", + -10.886487007141113 + ], + [ + "made", + -10.88658332824707 + ], + [ + "▁Customer", + -10.887104034423828 + ], + [ + "▁tube", + -10.887104034423828 + ], + [ + "▁grey", + -10.88761043548584 + ], + [ + "▁coaching", + -10.88791561126709 + ], + [ + "▁smartphone", + -10.887960433959961 + ], + [ + "▁impression", + -10.888166427612305 + ], + [ + "▁cm", + -10.888492584228516 + ], + [ + "▁mountains", + -10.888797760009766 + ], + [ + "▁relating", + -10.889720916748047 + ], + [ + "▁Kids", + -10.890057563781738 + ], + [ + "▁diabetes", + -10.89010238647461 + ], + [ + "▁conversion", + -10.89016342163086 + ], + [ + "▁laser", + -10.890501976013184 + ], + [ + "inch", + -10.891995429992676 + ], + [ + "▁safely", + -10.8920259475708 + ], + [ + "▁abroad", + -10.892064094543457 + ], + [ + "▁evolution", + -10.892070770263672 + ], + [ + "▁Could", + -10.892318725585938 + ], + [ + "▁provision", + -10.892680168151855 + ], + [ + "▁mess", + -10.893290519714355 + ], + [ + "▁expense", + -10.893320083618164 + ], + [ + "When", + -10.893805503845215 + ], + [ + "▁somebody", + -10.89400577545166 + ], + [ + "▁wet", + -10.894179344177246 + ], + [ + "▁modified", + -10.894192695617676 + ], + [ + "▁examination", + -10.894253730773926 + ], + [ + "▁gathered", + -10.89434814453125 + ], + [ + "▁rough", + -10.894463539123535 + ], + [ + "▁destroyed", + -10.894647598266602 + ], + [ + "▁angle", + -10.8948974609375 + ], + [ + "▁copyright", + -10.895162582397461 + ], + [ + "▁maps", + -10.895356178283691 + ], + [ + "▁invite", + -10.895359992980957 + ], + [ + "▁brush", + -10.895442962646484 + ], + [ + "▁packaging", + -10.895764350891113 + ], + [ + "▁Things", + -10.89579963684082 + ], + [ + "▁drove", + -10.895938873291016 + ], + [ + "▁ON", + -10.895944595336914 + ], + [ + "▁52", + -10.89635181427002 + ], + [ + "▁disaster", + -10.896709442138672 + ], + [ + "▁2020", + -10.896737098693848 + ], + [ + "▁regulation", + -10.897056579589844 + ], + [ + "▁Change", + -10.897135734558105 + ], + [ + "▁consistently", + -10.897679328918457 + ], + [ + "▁der", + -10.898585319519043 + ], + [ + "▁odd", + -10.89925479888916 + ], + [ + "▁venture", + -10.899273872375488 + ], + [ + "▁reform", + -10.899404525756836 + ], + [ + "▁finishing", + -10.899776458740234 + ], + [ + "▁Sorry", + -10.899918556213379 + ], + [ + "▁Philadelphia", + -10.900384902954102 + ], + [ + "▁Village", + -10.9005708694458 + ], + [ + "▁governments", + -10.900899887084961 + ], + [ + "▁fake", + -10.900936126708984 + ], + [ + "▁Easy", + -10.901131629943848 + ], + [ + "▁Action", + -10.901165962219238 + ], + [ + "▁boards", + -10.901525497436523 + ], + [ + "▁Lady", + -10.901660919189453 + ], + [ + "▁fingers", + -10.901663780212402 + ], + [ + "▁Forest", + -10.902009963989258 + ], + [ + "▁highlights", + -10.902188301086426 + ], + [ + "▁brothers", + -10.902810096740723 + ], + [ + "▁estimates", + -10.902957916259766 + ], + [ + "et", + -10.90320110321045 + ], + [ + "▁bands", + -10.90369701385498 + ], + [ + "▁inter", + -10.903698921203613 + ], + [ + "▁bench", + -10.903762817382812 + ], + [ + "▁scenario", + -10.903791427612305 + ], + [ + "ter", + -10.9041166305542 + ], + [ + "▁Fair", + -10.904512405395508 + ], + [ + "▁Atlanta", + -10.90490436553955 + ], + [ + "▁themes", + -10.90492057800293 + ], + [ + "▁cheaper", + -10.904943466186523 + ], + [ + "▁Personal", + -10.904982566833496 + ], + [ + "star", + -10.904985427856445 + ], + [ + "▁examine", + -10.905086517333984 + ], + [ + "▁passionate", + -10.905119895935059 + ], + [ + "▁behaviour", + -10.905196189880371 + ], + [ + "▁hiring", + -10.905326843261719 + ], + [ + "▁Mount", + -10.906014442443848 + ], + [ + "▁composition", + -10.906143188476562 + ], + [ + "▁ordinary", + -10.906150817871094 + ], + [ + "▁Bridge", + -10.906301498413086 + ], + [ + "▁shortly", + -10.906919479370117 + ], + [ + "▁800", + -10.906944274902344 + ], + [ + "▁Kansas", + -10.906996726989746 + ], + [ + "▁happiness", + -10.907125473022461 + ], + [ + "from", + -10.907421112060547 + ], + [ + "▁argue", + -10.907461166381836 + ], + [ + "▁roots", + -10.907561302185059 + ], + [ + "▁depend", + -10.90762710571289 + ], + [ + "▁dose", + -10.908267974853516 + ], + [ + "▁Studio", + -10.908312797546387 + ], + [ + "▁barely", + -10.908761978149414 + ], + [ + "▁Patrick", + -10.909220695495605 + ], + [ + "▁votes", + -10.909400939941406 + ], + [ + "▁sole", + -10.909493446350098 + ], + [ + "▁burning", + -10.909520149230957 + ], + [ + "▁instrument", + -10.90960693359375 + ], + [ + "▁baking", + -10.910042762756348 + ], + [ + "▁flash", + -10.91054630279541 + ], + [ + "▁trusted", + -10.910724639892578 + ], + [ + "▁finger", + -10.910798072814941 + ], + [ + "ier", + -10.910951614379883 + ], + [ + "▁burn", + -10.911020278930664 + ], + [ + "▁agenda", + -10.911324501037598 + ], + [ + "▁wisdom", + -10.911443710327148 + ], + [ + "▁shock", + -10.911611557006836 + ], + [ + "▁matching", + -10.911723136901855 + ], + [ + "▁41", + -10.91244125366211 + ], + [ + "▁eliminate", + -10.91266918182373 + ], + [ + "▁fault", + -10.912753105163574 + ], + [ + "▁complaint", + -10.91299819946289 + ], + [ + "▁announce", + -10.913021087646484 + ], + [ + "▁Oregon", + -10.913054466247559 + ], + [ + "▁wheels", + -10.913130760192871 + ], + [ + "▁applies", + -10.913189888000488 + ], + [ + "▁voting", + -10.913230895996094 + ], + [ + "▁resolve", + -10.91362476348877 + ], + [ + "▁babies", + -10.91382122039795 + ], + [ + "▁acquire", + -10.913947105407715 + ], + [ + "▁retired", + -10.914033889770508 + ], + [ + "ine", + -10.914053916931152 + ], + [ + "44", + -10.914294242858887 + ], + [ + "▁decor", + -10.914420127868652 + ], + [ + "▁insights", + -10.914447784423828 + ], + [ + "▁gonna", + -10.914773941040039 + ], + [ + "▁banking", + -10.915014266967773 + ], + [ + "▁warranty", + -10.915362358093262 + ], + [ + "▁diagnosis", + -10.915444374084473 + ], + [ + "▁instruments", + -10.915569305419922 + ], + [ + "▁representing", + -10.915639877319336 + ], + [ + "▁und", + -10.91565227508545 + ], + [ + "▁Description", + -10.915766716003418 + ], + [ + "▁Ray", + -10.915843963623047 + ], + [ + "▁dramatic", + -10.91586685180664 + ], + [ + "▁Age", + -10.916069984436035 + ], + [ + "ri", + -10.916691780090332 + ], + [ + "▁Dark", + -10.917415618896484 + ], + [ + "town", + -10.917797088623047 + ], + [ + "▁ranging", + -10.917813301086426 + ], + [ + "▁settled", + -10.917892456054688 + ], + [ + "▁promised", + -10.917999267578125 + ], + [ + "▁el", + -10.918164253234863 + ], + [ + "▁Exchange", + -10.918294906616211 + ], + [ + "To", + -10.918309211730957 + ], + [ + "▁Sales", + -10.918490409851074 + ], + [ + "▁texture", + -10.918540954589844 + ], + [ + "▁inventory", + -10.918543815612793 + ], + [ + "▁_", + -10.918627738952637 + ], + [ + "▁Dallas", + -10.918652534484863 + ], + [ + "▁flights", + -10.918806076049805 + ], + [ + "▁substance", + -10.918883323669434 + ], + [ + "se", + -10.919215202331543 + ], + [ + "▁poverty", + -10.920031547546387 + ], + [ + "▁sensor", + -10.920236587524414 + ], + [ + "▁pray", + -10.920588493347168 + ], + [ + "▁Ontario", + -10.920671463012695 + ], + [ + "▁knee", + -10.920674324035645 + ], + [ + "▁Mother", + -10.921161651611328 + ], + [ + "▁representation", + -10.922030448913574 + ], + [ + "ler", + -10.922653198242188 + ], + [ + "▁43", + -10.923141479492188 + ], + [ + "▁desktop", + -10.923592567443848 + ], + [ + "▁stocks", + -10.924057960510254 + ], + [ + "▁Gallery", + -10.92406177520752 + ], + [ + "▁penalty", + -10.924091339111328 + ], + [ + "▁gather", + -10.924201965332031 + ], + [ + "▁finest", + -10.924236297607422 + ], + [ + "▁surrounded", + -10.924930572509766 + ], + [ + "▁Select", + -10.92514419555664 + ], + [ + "lin", + -10.925383567810059 + ], + [ + "▁territory", + -10.925554275512695 + ], + [ + "For", + -10.925642967224121 + ], + [ + "▁repeat", + -10.926085472106934 + ], + [ + "▁discovery", + -10.926135063171387 + ], + [ + "di", + -10.926557540893555 + ], + [ + "▁Posted", + -10.926557540893555 + ], + [ + "▁Jews", + -10.926597595214844 + ], + [ + "▁wider", + -10.926799774169922 + ], + [ + "▁acquisition", + -10.926985740661621 + ], + [ + "49", + -10.927613258361816 + ], + [ + "▁hardly", + -10.928105354309082 + ], + [ + "▁evaluate", + -10.929287910461426 + ], + [ + "site", + -10.929364204406738 + ], + [ + "▁assess", + -10.929365158081055 + ], + [ + "▁Besides", + -10.929473876953125 + ], + [ + "▁hearts", + -10.929783821105957 + ], + [ + "▁parameters", + -10.929885864257812 + ], + [ + "▁concentration", + -10.929978370666504 + ], + [ + "▁unlikely", + -10.930088996887207 + ], + [ + "▁initiatives", + -10.930291175842285 + ], + [ + "▁meaningful", + -10.930459976196289 + ], + [ + "▁courts", + -10.930679321289062 + ], + [ + "▁clicking", + -10.931090354919434 + ], + [ + "▁globe", + -10.931211471557617 + ], + [ + "▁wise", + -10.931469917297363 + ], + [ + "▁gathering", + -10.931562423706055 + ], + [ + "▁advantages", + -10.931594848632812 + ], + [ + "▁99", + -10.931830406188965 + ], + [ + "▁whereas", + -10.93252182006836 + ], + [ + "▁employers", + -10.932600021362305 + ], + [ + "▁Baby", + -10.93289566040039 + ], + [ + "▁muscles", + -10.932997703552246 + ], + [ + "▁Within", + -10.933032035827637 + ], + [ + "▁supporters", + -10.93356990814209 + ], + [ + "▁signals", + -10.933653831481934 + ], + [ + "▁Figure", + -10.93386173248291 + ], + [ + "▁remarkable", + -10.93394660949707 + ], + [ + "▁servers", + -10.933972358703613 + ], + [ + "▁LA", + -10.934353828430176 + ], + [ + "▁grounds", + -10.934430122375488 + ], + [ + "▁trailer", + -10.93458080291748 + ], + [ + "▁recall", + -10.93465805053711 + ], + [ + "▁visitor", + -10.934760093688965 + ], + [ + "▁oral", + -10.93497085571289 + ], + [ + "▁fabulous", + -10.935016632080078 + ], + [ + "▁movements", + -10.93519401550293 + ], + [ + "▁campaigns", + -10.935246467590332 + ], + [ + "▁scoring", + -10.93554401397705 + ], + [ + "▁universities", + -10.935663223266602 + ], + [ + "As", + -10.9357328414917 + ], + [ + "▁experiencing", + -10.936089515686035 + ], + [ + "▁representatives", + -10.936311721801758 + ], + [ + "▁Create", + -10.936325073242188 + ], + [ + "How", + -10.936335563659668 + ], + [ + "▁Moon", + -10.936381340026855 + ], + [ + "▁reserve", + -10.936694145202637 + ], + [ + "▁keys", + -10.936766624450684 + ], + [ + "▁Casino", + -10.936786651611328 + ], + [ + "est", + -10.936978340148926 + ], + [ + "▁frequent", + -10.937047958374023 + ], + [ + "▁Cloud", + -10.937350273132324 + ], + [ + "▁survival", + -10.937699317932129 + ], + [ + "▁nursing", + -10.9378023147583 + ], + [ + "▁documentation", + -10.937922477722168 + ], + [ + "▁tap", + -10.938082695007324 + ], + [ + "▁prescription", + -10.938153266906738 + ], + [ + "▁Early", + -10.938202857971191 + ], + [ + "▁lawyers", + -10.938206672668457 + ], + [ + "▁constructed", + -10.938222885131836 + ], + [ + "▁deserve", + -10.938429832458496 + ], + [ + "▁Per", + -10.938587188720703 + ], + [ + "▁narrative", + -10.938679695129395 + ], + [ + "So", + -10.938754081726074 + ], + [ + "▁rated", + -10.940771102905273 + ], + [ + "▁witness", + -10.9409761428833 + ], + [ + "▁mouse", + -10.941800117492676 + ], + [ + "▁Brazil", + -10.941815376281738 + ], + [ + "▁moon", + -10.942182540893555 + ], + [ + "▁stainless", + -10.942453384399414 + ], + [ + "▁fluid", + -10.942459106445312 + ], + [ + "▁Computer", + -10.942577362060547 + ], + [ + "▁romantic", + -10.943095207214355 + ], + [ + "▁hitting", + -10.94330883026123 + ], + [ + "▁instantly", + -10.943538665771484 + ], + [ + "▁Sky", + -10.94465446472168 + ], + [ + "▁Bell", + -10.944707870483398 + ], + [ + "▁roughly", + -10.94478988647461 + ], + [ + "▁editing", + -10.94577693939209 + ], + [ + "▁removing", + -10.946009635925293 + ], + [ + "▁math", + -10.946371078491211 + ], + [ + "▁assault", + -10.946404457092285 + ], + [ + "▁organisations", + -10.94643497467041 + ], + [ + "▁actively", + -10.946563720703125 + ], + [ + "▁demonstrated", + -10.946731567382812 + ], + [ + "▁breaks", + -10.946763038635254 + ], + [ + "▁Nations", + -10.946821212768555 + ], + [ + "▁Field", + -10.947101593017578 + ], + [ + "▁1994", + -10.947237014770508 + ], + [ + "▁precious", + -10.947265625 + ], + [ + "▁Vice", + -10.947725296020508 + ], + [ + "▁MS", + -10.947818756103516 + ], + [ + "month", + -10.948452949523926 + ], + [ + "42", + -10.948518753051758 + ], + [ + "▁possibilities", + -10.948636054992676 + ], + [ + "▁blame", + -10.949289321899414 + ], + [ + "▁Student", + -10.94937801361084 + ], + [ + "▁workshops", + -10.949454307556152 + ], + [ + "▁displays", + -10.949552536010742 + ], + [ + "▁summary", + -10.9500150680542 + ], + [ + "▁duties", + -10.950578689575195 + ], + [ + "▁investing", + -10.950678825378418 + ], + [ + "called", + -10.950984954833984 + ], + [ + "▁Mill", + -10.951371192932129 + ], + [ + "▁reverse", + -10.95168685913086 + ], + [ + "▁Retrieved", + -10.951897621154785 + ], + [ + "▁Saudi", + -10.952005386352539 + ], + [ + "▁BBC", + -10.95210075378418 + ], + [ + "▁worship", + -10.95219612121582 + ], + [ + "▁loud", + -10.952242851257324 + ], + [ + "▁workplace", + -10.952371597290039 + ], + [ + "▁Member", + -10.952718734741211 + ], + [ + "▁exit", + -10.952959060668945 + ], + [ + "▁arrest", + -10.95313835144043 + ], + [ + "▁virtually", + -10.953690528869629 + ], + [ + "▁Five", + -10.953843116760254 + ], + [ + "▁Currently", + -10.95386028289795 + ], + [ + "▁drives", + -10.954035758972168 + ], + [ + "▁Members", + -10.9550199508667 + ], + [ + "▁fraud", + -10.955170631408691 + ], + [ + "▁Israeli", + -10.95528507232666 + ], + [ + "▁worn", + -10.955480575561523 + ], + [ + "▁600", + -10.95557975769043 + ], + [ + "▁repairs", + -10.956094741821289 + ], + [ + "▁sofa", + -10.956302642822266 + ], + [ + "▁virus", + -10.956302642822266 + ], + [ + "▁cats", + -10.956306457519531 + ], + [ + "▁convert", + -10.956352233886719 + ], + [ + "▁Private", + -10.95651912689209 + ], + [ + "▁makeup", + -10.956905364990234 + ], + [ + "▁Protection", + -10.957529067993164 + ], + [ + "▁environments", + -10.957590103149414 + ], + [ + "this", + -10.95785140991211 + ], + [ + "▁indicates", + -10.957968711853027 + ], + [ + "▁objectives", + -10.958070755004883 + ], + [ + "▁Anyone", + -10.95906925201416 + ], + [ + "▁Really", + -10.959182739257812 + ], + [ + "▁curious", + -10.95994758605957 + ], + [ + "▁minimal", + -10.96007251739502 + ], + [ + "▁vulnerable", + -10.960428237915039 + ], + [ + "▁conversations", + -10.960636138916016 + ], + [ + "▁le", + -10.960968971252441 + ], + [ + "▁offensive", + -10.961487770080566 + ], + [ + "48", + -10.961718559265137 + ], + [ + "▁angry", + -10.961769104003906 + ], + [ + "▁1960", + -10.962149620056152 + ], + [ + "▁waves", + -10.962214469909668 + ], + [ + "▁unlike", + -10.962313652038574 + ], + [ + "ft", + -10.962323188781738 + ], + [ + "▁weapon", + -10.96240234375 + ], + [ + "▁variable", + -10.962450981140137 + ], + [ + "▁productivity", + -10.962480545043945 + ], + [ + "▁Camp", + -10.96274471282959 + ], + [ + "▁tries", + -10.96345329284668 + ], + [ + "▁Hello", + -10.96396255493164 + ], + [ + "▁»", + -10.964234352111816 + ], + [ + "▁prominent", + -10.964253425598145 + ], + [ + "▁grace", + -10.965174674987793 + ], + [ + "▁minds", + -10.965363502502441 + ], + [ + "ha", + -10.96558666229248 + ], + [ + "▁instruction", + -10.966041564941406 + ], + [ + "▁Story", + -10.966972351074219 + ], + [ + "▁investigate", + -10.967090606689453 + ], + [ + "▁hip", + -10.967666625976562 + ], + [ + "▁blow", + -10.967844009399414 + ], + [ + "▁succeed", + -10.967893600463867 + ], + [ + "▁conservative", + -10.968559265136719 + ], + [ + "▁appreciated", + -10.969002723693848 + ], + [ + "▁stomach", + -10.969612121582031 + ], + [ + "▁pleasant", + -10.969643592834473 + ], + [ + "▁supplier", + -10.969747543334961 + ], + [ + "▁restrictions", + -10.969855308532715 + ], + [ + "▁reviewed", + -10.96989917755127 + ], + [ + "▁quantity", + -10.971365928649902 + ], + [ + "▁des", + -10.971839904785156 + ], + [ + "▁del", + -10.971847534179688 + ], + [ + "▁asks", + -10.972073554992676 + ], + [ + "▁Hey", + -10.972092628479004 + ], + [ + "▁operational", + -10.97213077545166 + ], + [ + "▁judgment", + -10.972217559814453 + ], + [ + "▁Further", + -10.972221374511719 + ], + [ + "▁origin", + -10.973233222961426 + ], + [ + "▁threats", + -10.97343921661377 + ], + [ + "▁passengers", + -10.975181579589844 + ], + [ + "▁horses", + -10.975286483764648 + ], + [ + "Re", + -10.975306510925293 + ], + [ + "▁MA", + -10.975314140319824 + ], + [ + "▁massage", + -10.975419044494629 + ], + [ + "don", + -10.975666999816895 + ], + [ + "▁nobody", + -10.975738525390625 + ], + [ + "▁mechanical", + -10.976183891296387 + ], + [ + "▁cooperation", + -10.976363182067871 + ], + [ + "▁newsletter", + -10.976456642150879 + ], + [ + "▁46", + -10.976761817932129 + ], + [ + "▁Blog", + -10.97792911529541 + ], + [ + "▁troops", + -10.978497505187988 + ], + [ + "▁worker", + -10.9786376953125 + ], + [ + "▁Ball", + -10.978638648986816 + ], + [ + "▁generations", + -10.97891616821289 + ], + [ + "▁Beautiful", + -10.979641914367676 + ], + [ + "▁administrative", + -10.979851722717285 + ], + [ + "▁champion", + -10.979930877685547 + ], + [ + "▁artistic", + -10.979973793029785 + ], + [ + "▁Simply", + -10.98005485534668 + ], + [ + "izing", + -10.980224609375 + ], + [ + "▁Collection", + -10.98043441772461 + ], + [ + "▁coloring", + -10.980894088745117 + ], + [ + "▁Attorney", + -10.981314659118652 + ], + [ + "▁hunting", + -10.981465339660645 + ], + [ + "▁physically", + -10.981468200683594 + ], + [ + "▁actors", + -10.981477737426758 + ], + [ + "37", + -10.981675148010254 + ], + [ + "▁pin", + -10.981954574584961 + ], + [ + "▁Lewis", + -10.982108116149902 + ], + [ + "▁du", + -10.982378959655762 + ], + [ + "▁defeat", + -10.982389450073242 + ], + [ + "▁ruling", + -10.982902526855469 + ], + [ + "▁involvement", + -10.98354434967041 + ], + [ + "▁01", + -10.983595848083496 + ], + [ + "▁fascinating", + -10.983622550964355 + ], + [ + "▁invention", + -10.983675003051758 + ], + [ + "▁rescue", + -10.983729362487793 + ], + [ + "▁symbol", + -10.984112739562988 + ], + [ + "▁publicly", + -10.984469413757324 + ], + [ + "bit", + -10.984662055969238 + ], + [ + "▁rubber", + -10.984700202941895 + ], + [ + "▁Simon", + -10.985458374023438 + ], + [ + "▁Express", + -10.985708236694336 + ], + [ + "▁publishing", + -10.98575210571289 + ], + [ + "▁plug", + -10.985960006713867 + ], + [ + "▁dozen", + -10.986298561096191 + ], + [ + "▁Finance", + -10.98676586151123 + ], + [ + "▁iPad", + -10.987396240234375 + ], + [ + "▁defensive", + -10.98831844329834 + ], + [ + "▁Name", + -10.988419532775879 + ], + [ + "▁jewelry", + -10.988707542419434 + ], + [ + "▁Nature", + -10.988855361938477 + ], + [ + "ke", + -10.989303588867188 + ], + [ + "▁wishes", + -10.989627838134766 + ], + [ + "▁Memorial", + -10.98971939086914 + ], + [ + "▁Edition", + -10.990517616271973 + ], + [ + "▁AT", + -10.99087142944336 + ], + [ + "▁Christians", + -10.991106986999512 + ], + [ + "▁marijuana", + -10.991127967834473 + ], + [ + "▁winners", + -10.991474151611328 + ], + [ + "▁heritage", + -10.991531372070312 + ], + [ + "US", + -10.99201488494873 + ], + [ + "▁hired", + -10.992154121398926 + ], + [ + "`", + -10.99222469329834 + ], + [ + "▁Farm", + -10.992541313171387 + ], + [ + "▁restore", + -10.992680549621582 + ], + [ + "▁recover", + -10.992778778076172 + ], + [ + "foot", + -10.993414878845215 + ], + [ + "▁Money", + -10.993617057800293 + ], + [ + "▁spin", + -10.993638038635254 + ], + [ + "American", + -10.993907928466797 + ], + [ + "▁athletes", + -10.994060516357422 + ], + [ + "▁durable", + -10.994095802307129 + ], + [ + "▁enhanced", + -10.994187355041504 + ], + [ + "▁thinks", + -10.994720458984375 + ], + [ + "▁transformation", + -10.994749069213867 + ], + [ + "▁sink", + -10.995109558105469 + ], + [ + "▁utilize", + -10.995168685913086 + ], + [ + "▁Given", + -10.995656967163086 + ], + [ + "▁profits", + -10.995882987976074 + ], + [ + "▁immune", + -10.996070861816406 + ], + [ + "minute", + -10.996345520019531 + ], + [ + "▁accommodate", + -10.996382713317871 + ], + [ + "▁exercises", + -10.996407508850098 + ], + [ + "▁portable", + -10.996454238891602 + ], + [ + "▁Allen", + -10.996459007263184 + ], + [ + "▁pdf", + -10.996586799621582 + ], + [ + "▁reception", + -10.996659278869629 + ], + [ + "▁Later", + -10.997163772583008 + ], + [ + "▁Tax", + -10.997323989868164 + ], + [ + "il", + -10.997649192810059 + ], + [ + "▁forecast", + -10.997654914855957 + ], + [ + "▁salary", + -10.997926712036133 + ], + [ + "▁indoor", + -10.998064994812012 + ], + [ + "▁nervous", + -10.998106002807617 + ], + [ + "▁Study", + -10.998613357543945 + ], + [ + "▁Unlike", + -10.998662948608398 + ], + [ + "▁translation", + -10.998810768127441 + ], + [ + "▁toys", + -10.998943328857422 + ], + [ + "▁pipe", + -10.999249458312988 + ], + [ + "▁rank", + -10.99948787689209 + ], + [ + "▁sum", + -10.999547004699707 + ], + [ + "▁Mass", + -10.999759674072266 + ], + [ + "▁contents", + -11.000187873840332 + ], + [ + "▁writes", + -11.000345230102539 + ], + [ + "▁tablet", + -11.001016616821289 + ], + [ + "▁gate", + -11.001550674438477 + ], + [ + "▁pen", + -11.001575469970703 + ], + [ + "▁stylish", + -11.001614570617676 + ], + [ + "▁reward", + -11.00167179107666 + ], + [ + "▁logic", + -11.001873970031738 + ], + [ + "▁Delhi", + -11.002378463745117 + ], + [ + "▁divorce", + -11.002418518066406 + ], + [ + "▁WordPress", + -11.002521514892578 + ], + [ + "▁Books", + -11.00284194946289 + ], + [ + "▁inspection", + -11.003061294555664 + ], + [ + "▁ships", + -11.003141403198242 + ], + [ + "▁ft", + -11.003213882446289 + ], + [ + "▁directory", + -11.00344467163086 + ], + [ + "▁opt", + -11.003484725952148 + ], + [ + "▁Ann", + -11.003564834594727 + ], + [ + "▁province", + -11.003804206848145 + ], + [ + "▁Navy", + -11.004393577575684 + ], + [ + "▁backup", + -11.004501342773438 + ], + [ + "▁thoroughly", + -11.00483512878418 + ], + [ + "▁folder", + -11.005729675292969 + ], + [ + "▁ok", + -11.00611686706543 + ], + [ + "▁networking", + -11.006125450134277 + ], + [ + "▁hosts", + -11.006505012512207 + ], + [ + "▁sorts", + -11.006552696228027 + ], + [ + "▁Perfect", + -11.006633758544922 + ], + [ + "▁Economic", + -11.006719589233398 + ], + [ + "▁lying", + -11.006836891174316 + ], + [ + "▁authentic", + -11.00684642791748 + ], + [ + "▁tears", + -11.00690746307373 + ], + [ + "▁trigger", + -11.007012367248535 + ], + [ + "▁provisions", + -11.007157325744629 + ], + [ + "▁possession", + -11.00753116607666 + ], + [ + "▁subscription", + -11.007555961608887 + ], + [ + "▁fiber", + -11.008058547973633 + ], + [ + "▁AI", + -11.008201599121094 + ], + [ + "▁Run", + -11.008670806884766 + ], + [ + "▁floors", + -11.008869171142578 + ], + [ + "▁templates", + -11.00897216796875 + ], + [ + "▁Solutions", + -11.009204864501953 + ], + [ + "▁duration", + -11.009323120117188 + ], + [ + "▁artificial", + -11.009546279907227 + ], + [ + "▁ratings", + -11.009899139404297 + ], + [ + "▁genetic", + -11.010467529296875 + ], + [ + "▁iOS", + -11.010486602783203 + ], + [ + "▁curriculum", + -11.010522842407227 + ], + [ + "box", + -11.010885238647461 + ], + [ + "▁cart", + -11.011198043823242 + ], + [ + "▁Premier", + -11.011666297912598 + ], + [ + "▁comedy", + -11.01198673248291 + ], + [ + "▁intention", + -11.01219367980957 + ], + [ + "▁locally", + -11.012362480163574 + ], + [ + "▁integrity", + -11.012894630432129 + ], + [ + "▁bug", + -11.012919425964355 + ], + [ + "▁unexpected", + -11.013042449951172 + ], + [ + "▁collective", + -11.013195037841797 + ], + [ + "▁apparent", + -11.013569831848145 + ], + [ + "▁Sure", + -11.013644218444824 + ], + [ + "▁Championship", + -11.013670921325684 + ], + [ + "▁emphasis", + -11.013738632202148 + ], + [ + "▁Server", + -11.013753890991211 + ], + [ + "▁publish", + -11.014113426208496 + ], + [ + "head", + -11.014399528503418 + ], + [ + "▁loaded", + -11.014843940734863 + ], + [ + "▁beds", + -11.01516056060791 + ], + [ + "▁bacteria", + -11.015237808227539 + ], + [ + "▁extraordinary", + -11.015251159667969 + ], + [ + "▁Li", + -11.016399383544922 + ], + [ + "▁exterior", + -11.016708374023438 + ], + [ + "▁Number", + -11.016802787780762 + ], + [ + "run", + -11.017293930053711 + ], + [ + "▁Wisconsin", + -11.017413139343262 + ], + [ + "▁spectacular", + -11.018468856811523 + ], + [ + "▁tackle", + -11.018718719482422 + ], + [ + "▁Egypt", + -11.01893424987793 + ], + [ + "den", + -11.019026756286621 + ], + [ + "▁ladies", + -11.019172668457031 + ], + [ + "▁Share", + -11.019331932067871 + ], + [ + "▁Overall", + -11.019430160522461 + ], + [ + "▁meters", + -11.019486427307129 + ], + [ + "▁screening", + -11.019740104675293 + ], + [ + "▁protecting", + -11.019858360290527 + ], + [ + "▁Wales", + -11.019935607910156 + ], + [ + "▁underlying", + -11.020102500915527 + ], + [ + "▁Ten", + -11.020191192626953 + ], + [ + "▁occasionally", + -11.02060317993164 + ], + [ + "▁dirt", + -11.020846366882324 + ], + [ + "ate", + -11.021007537841797 + ], + [ + "▁regime", + -11.02140998840332 + ], + [ + "▁suite", + -11.021594047546387 + ], + [ + "▁blogs", + -11.021698951721191 + ], + [ + "▁Always", + -11.022015571594238 + ], + [ + "▁Magazine", + -11.022371292114258 + ], + [ + "64", + -11.022459030151367 + ], + [ + "▁defend", + -11.022530555725098 + ], + [ + "▁Construction", + -11.022616386413574 + ], + [ + "▁Anyway", + -11.022825241088867 + ], + [ + "▁Ocean", + -11.022854804992676 + ], + [ + "▁Anderson", + -11.023107528686523 + ], + [ + "▁enabled", + -11.023580551147461 + ], + [ + "▁patio", + -11.023893356323242 + ], + [ + "▁intervention", + -11.024372100830078 + ], + [ + "▁oldest", + -11.02475357055664 + ], + [ + "▁disorder", + -11.025130271911621 + ], + [ + "ti", + -11.025410652160645 + ], + [ + "▁Ask", + -11.025586128234863 + ], + [ + "▁Analysis", + -11.025960922241211 + ], + [ + "how", + -11.026010513305664 + ], + [ + "scale", + -11.026015281677246 + ], + [ + "▁Cancer", + -11.026143074035645 + ], + [ + "▁processed", + -11.02621841430664 + ], + [ + "▁races", + -11.026652336120605 + ], + [ + "profit", + -11.026969909667969 + ], + [ + "▁smoking", + -11.027022361755371 + ], + [ + "▁sheets", + -11.02712345123291 + ], + [ + "▁tile", + -11.027290344238281 + ], + [ + "▁interact", + -11.027520179748535 + ], + [ + "▁Bio", + -11.0275239944458 + ], + [ + "▁scan", + -11.027771949768066 + ], + [ + "▁landing", + -11.028132438659668 + ], + [ + "▁47", + -11.028410911560059 + ], + [ + "▁dialogue", + -11.028660774230957 + ], + [ + "▁spoken", + -11.028944969177246 + ], + [ + "▁Experience", + -11.028979301452637 + ], + [ + "▁shade", + -11.029389381408691 + ], + [ + "▁followers", + -11.02951717376709 + ], + [ + "▁rail", + -11.029662132263184 + ], + [ + "▁compatible", + -11.029993057250977 + ], + [ + "▁attempted", + -11.03005313873291 + ], + [ + "▁Nice", + -11.030121803283691 + ], + [ + "▁NEW", + -11.030285835266113 + ], + [ + "▁slide", + -11.030545234680176 + ], + [ + "▁mystery", + -11.030774116516113 + ], + [ + "▁walks", + -11.0308256149292 + ], + [ + "▁balanced", + -11.030848503112793 + ], + [ + "▁binary", + -11.030949592590332 + ], + [ + "▁Atlantic", + -11.030978202819824 + ], + [ + "▁aggressive", + -11.031415939331055 + ], + [ + "▁stops", + -11.032100677490234 + ], + [ + "▁produces", + -11.03232479095459 + ], + [ + "▁celebrated", + -11.032668113708496 + ], + [ + "▁buyer", + -11.032800674438477 + ], + [ + "▁analysts", + -11.032906532287598 + ], + [ + "▁confused", + -11.033004760742188 + ], + [ + "▁yield", + -11.03328800201416 + ], + [ + "▁fiscal", + -11.033366203308105 + ], + [ + "▁expanding", + -11.033594131469727 + ], + [ + "▁Industry", + -11.03359603881836 + ], + [ + "▁sees", + -11.033597946166992 + ], + [ + "▁casual", + -11.033670425415039 + ], + [ + "▁photographer", + -11.033973693847656 + ], + [ + "▁armed", + -11.034265518188477 + ], + [ + "▁hero", + -11.034348487854004 + ], + [ + "ting", + -11.03459358215332 + ], + [ + "▁trials", + -11.035077095031738 + ], + [ + "▁spare", + -11.035115242004395 + ], + [ + "▁Self", + -11.03543472290039 + ], + [ + "▁occasions", + -11.035469055175781 + ], + [ + "▁engineers", + -11.035481452941895 + ], + [ + "▁beautifully", + -11.035565376281738 + ], + [ + "▁operator", + -11.03567886352539 + ], + [ + "▁Orange", + -11.036632537841797 + ], + [ + "▁connecting", + -11.036762237548828 + ], + [ + "hand", + -11.036920547485352 + ], + [ + "▁Level", + -11.036928176879883 + ], + [ + "▁ranked", + -11.037364959716797 + ], + [ + "2017", + -11.03779125213623 + ], + [ + "▁Enter", + -11.037809371948242 + ], + [ + "▁thrown", + -11.038040161132812 + ], + [ + "▁Stock", + -11.038066864013672 + ], + [ + "▁transferred", + -11.038189888000488 + ], + [ + "▁Matthew", + -11.038249969482422 + ], + [ + "▁designing", + -11.038256645202637 + ], + [ + "▁differently", + -11.038745880126953 + ], + [ + "▁User", + -11.03891658782959 + ], + [ + "▁Child", + -11.039021492004395 + ], + [ + "▁habits", + -11.039389610290527 + ], + [ + "▁neutral", + -11.039494514465332 + ], + [ + "▁Mom", + -11.039505958557129 + ], + [ + "▁Color", + -11.039948463439941 + ], + [ + "▁Vietnam", + -11.040017127990723 + ], + [ + "▁powered", + -11.040483474731445 + ], + [ + "▁Large", + -11.040608406066895 + ], + [ + "▁Halloween", + -11.041156768798828 + ], + [ + "▁emissions", + -11.041807174682617 + ], + [ + "▁encouraging", + -11.042210578918457 + ], + [ + "▁situated", + -11.042540550231934 + ], + [ + "▁Sen", + -11.04269790649414 + ], + [ + "▁Put", + -11.04273796081543 + ], + [ + "▁ignore", + -11.042856216430664 + ], + [ + "▁beliefs", + -11.042900085449219 + ], + [ + "▁supplied", + -11.043099403381348 + ], + [ + "▁anger", + -11.043302536010742 + ], + [ + "▁spray", + -11.043387413024902 + ], + [ + "▁transform", + -11.043388366699219 + ], + [ + "▁pizza", + -11.043644905090332 + ], + [ + "law", + -11.043768882751465 + ], + [ + "▁Wild", + -11.043960571289062 + ], + [ + "con", + -11.04426097869873 + ], + [ + "▁fallen", + -11.044310569763184 + ], + [ + "▁surprising", + -11.044761657714844 + ], + [ + "▁Mini", + -11.045157432556152 + ], + [ + "▁timing", + -11.04544734954834 + ], + [ + "▁franchise", + -11.045450210571289 + ], + [ + "▁workout", + -11.045478820800781 + ], + [ + "▁newest", + -11.045686721801758 + ], + [ + "▁Massachusetts", + -11.04602336883545 + ], + [ + "▁coupon", + -11.046751976013184 + ], + [ + "▁Moore", + -11.046944618225098 + ], + [ + "who", + -11.047008514404297 + ], + [ + "▁Paper", + -11.047119140625 + ], + [ + "winning", + -11.04716682434082 + ], + [ + "▁mounted", + -11.047346115112305 + ], + [ + "▁cooked", + -11.047839164733887 + ], + [ + "▁toilet", + -11.047944068908691 + ], + [ + "▁sing", + -11.048392295837402 + ], + [ + "▁Season", + -11.048626899719238 + ], + [ + "46", + -11.048797607421875 + ], + [ + "▁min", + -11.048891067504883 + ], + [ + "ham", + -11.048932075500488 + ], + [ + "▁Wi", + -11.049684524536133 + ], + [ + "▁Fall", + -11.05018138885498 + ], + [ + "▁Anthony", + -11.050206184387207 + ], + [ + "▁Classic", + -11.050514221191406 + ], + [ + "▁Too", + -11.050578117370605 + ], + [ + "▁advised", + -11.050799369812012 + ], + [ + "▁Detroit", + -11.05108642578125 + ], + [ + "▁arrangement", + -11.051137924194336 + ], + [ + "▁shapes", + -11.051224708557129 + ], + [ + "tech", + -11.051740646362305 + ], + [ + "▁flour", + -11.051753997802734 + ], + [ + "▁Environmental", + -11.05177116394043 + ], + [ + "▁financing", + -11.052240371704102 + ], + [ + "▁dancing", + -11.052299499511719 + ], + [ + "home", + -11.052781105041504 + ], + [ + "▁Application", + -11.05290699005127 + ], + [ + "All", + -11.052998542785645 + ], + [ + "▁fantasy", + -11.053075790405273 + ], + [ + "▁facilitate", + -11.053098678588867 + ], + [ + "▁1993", + -11.0535306930542 + ], + [ + "▁phrase", + -11.054262161254883 + ], + [ + "▁85", + -11.054765701293945 + ], + [ + "▁Melbourne", + -11.054788589477539 + ], + [ + "▁stupid", + -11.054840087890625 + ], + [ + "▁copper", + -11.0549898147583 + ], + [ + "▁Wow", + -11.055020332336426 + ], + [ + "▁hospitals", + -11.0554838180542 + ], + [ + "▁delete", + -11.055804252624512 + ], + [ + "book", + -11.055901527404785 + ], + [ + "ty", + -11.056037902832031 + ], + [ + "▁jail", + -11.05604076385498 + ], + [ + "▁swing", + -11.056057929992676 + ], + [ + "47", + -11.056092262268066 + ], + [ + "▁references", + -11.056117057800293 + ], + [ + "▁figured", + -11.056224822998047 + ], + [ + "▁uk", + -11.056732177734375 + ], + [ + "▁Nigeria", + -11.05676555633545 + ], + [ + "▁sectors", + -11.057137489318848 + ], + [ + "▁Cape", + -11.057147026062012 + ], + [ + "▁72", + -11.057225227355957 + ], + [ + "▁offense", + -11.057432174682617 + ], + [ + "▁1992", + -11.05747127532959 + ], + [ + "▁Dog", + -11.057886123657227 + ], + [ + "▁Indiana", + -11.058117866516113 + ], + [ + "▁graduated", + -11.058192253112793 + ], + [ + "▁regards", + -11.058218955993652 + ], + [ + "▁destroy", + -11.058489799499512 + ], + [ + "▁Linux", + -11.05871868133545 + ], + [ + "▁productive", + -11.058802604675293 + ], + [ + "▁Regional", + -11.058905601501465 + ], + [ + "▁cruise", + -11.059144973754883 + ], + [ + "▁competitors", + -11.05935287475586 + ], + [ + "▁gentle", + -11.059819221496582 + ], + [ + "▁universal", + -11.059857368469238 + ], + [ + "▁Major", + -11.0598726272583 + ], + [ + "▁outfit", + -11.059921264648438 + ], + [ + "▁anybody", + -11.060083389282227 + ], + [ + "▁Parliament", + -11.060455322265625 + ], + [ + "▁accomplish", + -11.060741424560547 + ], + [ + "▁Foreign", + -11.060885429382324 + ], + [ + "▁corn", + -11.060955047607422 + ], + [ + "mo", + -11.06130599975586 + ], + [ + "▁hill", + -11.061530113220215 + ], + [ + "▁chemicals", + -11.061589241027832 + ], + [ + "▁releases", + -11.0617036819458 + ], + [ + "▁corresponding", + -11.061739921569824 + ], + [ + "▁placing", + -11.061813354492188 + ], + [ + "▁compact", + -11.062081336975098 + ], + [ + "▁adoption", + -11.062397003173828 + ], + [ + "▁Authority", + -11.062397956848145 + ], + [ + "▁violent", + -11.062478065490723 + ], + [ + "▁legacy", + -11.062840461730957 + ], + [ + "▁fence", + -11.063071250915527 + ], + [ + "▁Morgan", + -11.063724517822266 + ], + [ + "▁MD", + -11.064617156982422 + ], + [ + "▁jacket", + -11.06470012664795 + ], + [ + "ray", + -11.065197944641113 + ], + [ + "▁Sept", + -11.065581321716309 + ], + [ + "▁dependent", + -11.065670013427734 + ], + [ + "▁locked", + -11.06576919555664 + ], + [ + "▁carrier", + -11.065773963928223 + ], + [ + "▁pets", + -11.065984725952148 + ], + [ + "▁Indeed", + -11.06672477722168 + ], + [ + "▁API", + -11.066726684570312 + ], + [ + "▁wildlife", + -11.066965103149414 + ], + [ + "▁likes", + -11.067268371582031 + ], + [ + "▁Jane", + -11.067272186279297 + ], + [ + "▁Advanced", + -11.067343711853027 + ], + [ + "▁criticism", + -11.06774616241455 + ], + [ + "59", + -11.067835807800293 + ], + [ + "▁damages", + -11.068169593811035 + ], + [ + "▁Forum", + -11.068280220031738 + ], + [ + "▁Size", + -11.06829833984375 + ], + [ + "▁expecting", + -11.06833267211914 + ], + [ + "▁wrap", + -11.06848430633545 + ], + [ + "▁AC", + -11.069478988647461 + ], + [ + "▁completing", + -11.069829940795898 + ], + [ + "▁producers", + -11.06995677947998 + ], + [ + "▁bold", + -11.07001781463623 + ], + [ + "▁Band", + -11.070088386535645 + ], + [ + "▁guns", + -11.070173263549805 + ], + [ + "▁settle", + -11.070354461669922 + ], + [ + "▁begun", + -11.070721626281738 + ], + [ + "▁Assembly", + -11.07087230682373 + ], + [ + "▁Content", + -11.071155548095703 + ], + [ + "▁salad", + -11.071292877197266 + ], + [ + "▁suppose", + -11.071661949157715 + ], + [ + "▁vertical", + -11.071797370910645 + ], + [ + "▁Iowa", + -11.07214069366455 + ], + [ + "▁spectrum", + -11.072265625 + ], + [ + "▁Sciences", + -11.072266578674316 + ], + [ + "▁loop", + -11.072423934936523 + ], + [ + "600", + -11.072665214538574 + ], + [ + "▁collections", + -11.072701454162598 + ], + [ + "▁Maryland", + -11.072809219360352 + ], + [ + "world", + -11.073709487915039 + ], + [ + "▁politicians", + -11.074097633361816 + ], + [ + "▁chips", + -11.074134826660156 + ], + [ + "▁bass", + -11.075064659118652 + ], + [ + "▁interactions", + -11.07606315612793 + ], + [ + "▁sophisticated", + -11.076258659362793 + ], + [ + "▁Berlin", + -11.076448440551758 + ], + [ + "▁refers", + -11.07654857635498 + ], + [ + "▁boots", + -11.076787948608398 + ], + [ + "▁Making", + -11.076964378356934 + ], + [ + "▁comic", + -11.077027320861816 + ], + [ + "▁solely", + -11.077143669128418 + ], + [ + "43", + -11.077199935913086 + ], + [ + "▁specialized", + -11.077256202697754 + ], + [ + "▁complaints", + -11.077861785888672 + ], + [ + "▁Cook", + -11.078282356262207 + ], + [ + "▁Third", + -11.078489303588867 + ], + [ + "▁Cambridge", + -11.078495979309082 + ], + [ + "▁Captain", + -11.078683853149414 + ], + [ + "▁Iron", + -11.078715324401855 + ], + [ + "▁adequate", + -11.078858375549316 + ], + [ + "▁crimes", + -11.07896614074707 + ], + [ + "é", + -11.078997611999512 + ], + [ + "▁Case", + -11.079267501831055 + ], + [ + "▁glasses", + -11.079329490661621 + ], + [ + "▁blind", + -11.079413414001465 + ], + [ + "▁Dutch", + -11.079431533813477 + ], + [ + "fi", + -11.079922676086426 + ], + [ + "▁excitement", + -11.080131530761719 + ], + [ + "▁da", + -11.080181121826172 + ], + [ + "▁Golf", + -11.080403327941895 + ], + [ + "▁knife", + -11.08046817779541 + ], + [ + "▁parks", + -11.0805082321167 + ], + [ + "▁vendors", + -11.080670356750488 + ], + [ + "▁acceptable", + -11.080991744995117 + ], + [ + "▁generous", + -11.081117630004883 + ], + [ + "▁shaped", + -11.081223487854004 + ], + [ + "▁Judge", + -11.081521987915039 + ], + [ + "▁Fast", + -11.081733703613281 + ], + [ + "▁intent", + -11.081863403320312 + ], + [ + "▁deaths", + -11.082067489624023 + ], + [ + "▁Mo", + -11.082104682922363 + ], + [ + "▁Alexander", + -11.08244800567627 + ], + [ + "ize", + -11.082598686218262 + ], + [ + "▁Sound", + -11.082599639892578 + ], + [ + "▁theatre", + -11.082886695861816 + ], + [ + "▁handy", + -11.083062171936035 + ], + [ + "▁pepper", + -11.083251953125 + ], + [ + "▁Mexican", + -11.083378791809082 + ], + [ + "▁Net", + -11.084342956542969 + ], + [ + "▁delivers", + -11.084394454956055 + ], + [ + "▁entity", + -11.084582328796387 + ], + [ + "▁foam", + -11.084776878356934 + ], + [ + "▁commit", + -11.08481216430664 + ], + [ + "▁capability", + -11.084823608398438 + ], + [ + "▁rolled", + -11.08494758605957 + ], + [ + "▁upload", + -11.084986686706543 + ], + [ + "▁disappointed", + -11.085101127624512 + ], + [ + "▁PS", + -11.085245132446289 + ], + [ + "▁establishment", + -11.0853271484375 + ], + [ + "▁enjoyable", + -11.085746765136719 + ], + [ + "▁boot", + -11.08611011505127 + ], + [ + "▁Stay", + -11.08655071258545 + ], + [ + "▁robust", + -11.086956024169922 + ], + [ + "ng", + -11.087061882019043 + ], + [ + "▁Howard", + -11.087368965148926 + ], + [ + "▁tours", + -11.08742618560791 + ], + [ + "▁popularity", + -11.087940216064453 + ], + [ + "▁Anti", + -11.088007926940918 + ], + [ + "▁discounts", + -11.088152885437012 + ], + [ + "▁bulk", + -11.088234901428223 + ], + [ + "▁Body", + -11.08830451965332 + ], + [ + "▁developments", + -11.088372230529785 + ], + [ + "▁Glass", + -11.088922500610352 + ], + [ + "▁Writing", + -11.089677810668945 + ], + [ + "▁declined", + -11.089770317077637 + ], + [ + "▁accomplished", + -11.090646743774414 + ], + [ + "▁Creative", + -11.09068489074707 + ], + [ + "▁piano", + -11.090818405151367 + ], + [ + "▁difficulties", + -11.090851783752441 + ], + [ + "▁Death", + -11.090928077697754 + ], + [ + "▁streaming", + -11.090971946716309 + ], + [ + "▁SO", + -11.091498374938965 + ], + [ + "▁Ken", + -11.091712951660156 + ], + [ + "41", + -11.091778755187988 + ], + [ + "▁stopping", + -11.092013359069824 + ], + [ + "▁Jay", + -11.092021942138672 + ], + [ + "▁promises", + -11.092228889465332 + ], + [ + "▁Getting", + -11.092300415039062 + ], + [ + "▁filing", + -11.092597961425781 + ], + [ + "▁convinced", + -11.092702865600586 + ], + [ + "▁lasting", + -11.092985153198242 + ], + [ + "▁Governor", + -11.093278884887695 + ], + [ + "▁flooring", + -11.09343433380127 + ], + [ + "▁tension", + -11.093478202819824 + ], + [ + "▁Assistant", + -11.093504905700684 + ], + [ + "▁designated", + -11.093661308288574 + ], + [ + "▁protest", + -11.093701362609863 + ], + [ + "▁handed", + -11.093806266784668 + ], + [ + "▁Girl", + -11.0938138961792 + ], + [ + "ite", + -11.094195365905762 + ], + [ + "▁prevention", + -11.094438552856445 + ], + [ + "▁execution", + -11.094521522521973 + ], + [ + "▁feeding", + -11.094555854797363 + ], + [ + "▁heaven", + -11.09455680847168 + ], + [ + "▁preserve", + -11.094679832458496 + ], + [ + "bar", + -11.09485912322998 + ], + [ + "▁exclusively", + -11.094952583312988 + ], + [ + "▁enormous", + -11.09498119354248 + ], + [ + "▁beef", + -11.095122337341309 + ], + [ + "▁51", + -11.095380783081055 + ], + [ + "▁fruits", + -11.095504760742188 + ], + [ + "game", + -11.095829963684082 + ], + [ + "she", + -11.095943450927734 + ], + [ + "▁identification", + -11.096034049987793 + ], + [ + "▁overseas", + -11.096076965332031 + ], + [ + "▁ultra", + -11.096116065979004 + ], + [ + "▁True", + -11.09636402130127 + ], + [ + "▁episodes", + -11.096409797668457 + ], + [ + "▁aluminum", + -11.096427917480469 + ], + [ + "▁repeated", + -11.096575736999512 + ], + [ + "▁forgotten", + -11.096634864807129 + ], + [ + "▁Down", + -11.096735954284668 + ], + [ + "▁Tree", + -11.097024917602539 + ], + [ + "▁operates", + -11.097590446472168 + ], + [ + "▁admission", + -11.0980224609375 + ], + [ + "▁backed", + -11.098034858703613 + ], + [ + "▁churches", + -11.098196029663086 + ], + [ + "▁precise", + -11.098222732543945 + ], + [ + "▁disorders", + -11.09844970703125 + ], + [ + "▁Industrial", + -11.0986328125 + ], + [ + "type", + -11.098793983459473 + ], + [ + "▁Double", + -11.099050521850586 + ], + [ + "▁upset", + -11.099339485168457 + ], + [ + "▁lawsuit", + -11.099529266357422 + ], + [ + "▁horror", + -11.099808692932129 + ], + [ + "right", + -11.10008716583252 + ], + [ + "▁god", + -11.100122451782227 + ], + [ + "▁paintings", + -11.100356101989746 + ], + [ + "ant", + -11.100388526916504 + ], + [ + "▁specialists", + -11.10051155090332 + ], + [ + "▁artwork", + -11.100964546203613 + ], + [ + "▁Ever", + -11.101384162902832 + ], + [ + "▁interpretation", + -11.101449966430664 + ], + [ + "▁Bowl", + -11.101964950561523 + ], + [ + "▁clip", + -11.102499961853027 + ], + [ + "▁Youth", + -11.10254192352295 + ], + [ + "▁deadline", + -11.10280704498291 + ], + [ + "▁inspire", + -11.103453636169434 + ], + [ + "▁Defense", + -11.103499412536621 + ], + [ + "▁theater", + -11.103562355041504 + ], + [ + "▁Football", + -11.103567123413086 + ], + [ + "▁concluded", + -11.104053497314453 + ], + [ + "▁Pay", + -11.104145050048828 + ], + [ + "▁bio", + -11.104192733764648 + ], + [ + "car", + -11.104278564453125 + ], + [ + "▁garbage", + -11.104422569274902 + ], + [ + "▁Short", + -11.104918479919434 + ], + [ + "▁odds", + -11.104990005493164 + ], + [ + "▁FBI", + -11.105069160461426 + ], + [ + "▁speaks", + -11.105165481567383 + ], + [ + "▁suicide", + -11.105292320251465 + ], + [ + "▁Olympic", + -11.10544204711914 + ], + [ + "▁trick", + -11.105619430541992 + ], + [ + "▁diagram", + -11.105621337890625 + ], + [ + "▁veteran", + -11.105720520019531 + ], + [ + "▁Alabama", + -11.105770111083984 + ], + [ + "▁entertaining", + -11.105917930603027 + ], + [ + "▁washing", + -11.105927467346191 + ], + [ + "▁detection", + -11.10621166229248 + ], + [ + "▁overview", + -11.106456756591797 + ], + [ + "▁Form", + -11.106501579284668 + ], + [ + "▁considerable", + -11.106645584106445 + ], + [ + "а", + -11.106664657592773 + ], + [ + "▁warned", + -11.10689926147461 + ], + [ + "▁funded", + -11.107115745544434 + ], + [ + "▁pulling", + -11.107263565063477 + ], + [ + "ul", + -11.107420921325684 + ], + [ + "ba", + -11.107423782348633 + ], + [ + "▁badly", + -11.10793399810791 + ], + [ + "▁Rome", + -11.10815143585205 + ], + [ + "▁chairman", + -11.108379364013672 + ], + [ + "▁sudden", + -11.108673095703125 + ], + [ + "▁gray", + -11.108747482299805 + ], + [ + "▁Grant", + -11.10899543762207 + ], + [ + "▁export", + -11.109251976013184 + ], + [ + "▁entries", + -11.109366416931152 + ], + [ + "▁Mayor", + -11.109383583068848 + ], + [ + "ge", + -11.10973834991455 + ], + [ + "▁arguments", + -11.110200881958008 + ], + [ + "date", + -11.11030387878418 + ], + [ + "▁checks", + -11.110315322875977 + ], + [ + "▁accompanied", + -11.1107816696167 + ], + [ + "52", + -11.11108684539795 + ], + [ + "▁poetry", + -11.11128044128418 + ], + [ + "▁steady", + -11.111383438110352 + ], + [ + "▁purchases", + -11.111639976501465 + ], + [ + "▁junior", + -11.111753463745117 + ], + [ + "▁assured", + -11.111759185791016 + ], + [ + "▁ties", + -11.111870765686035 + ], + [ + "▁relaxing", + -11.111886978149414 + ], + [ + "▁locate", + -11.11198616027832 + ], + [ + "▁apple", + -11.112579345703125 + ], + [ + "▁gains", + -11.113242149353027 + ], + [ + "▁passenger", + -11.113608360290527 + ], + [ + "▁structural", + -11.113787651062012 + ], + [ + "▁directors", + -11.114107131958008 + ], + [ + "▁climb", + -11.114293098449707 + ], + [ + "▁retain", + -11.11524486541748 + ], + [ + "work", + -11.115314483642578 + ], + [ + "▁parallel", + -11.115713119506836 + ], + [ + "▁par", + -11.115765571594238 + ], + [ + "▁nutrition", + -11.116087913513184 + ], + [ + "▁rush", + -11.11609172821045 + ], + [ + "▁secured", + -11.11623764038086 + ], + [ + "▁Clark", + -11.11644458770752 + ], + [ + "▁dressed", + -11.116612434387207 + ], + [ + "▁democracy", + -11.116771697998047 + ], + [ + "▁Resources", + -11.117259979248047 + ], + [ + "▁photograph", + -11.117317199707031 + ], + [ + "▁Win", + -11.117472648620605 + ], + [ + "▁composed", + -11.11754035949707 + ], + [ + "▁En", + -11.117551803588867 + ], + [ + "▁edges", + -11.117709159851074 + ], + [ + "▁bedrooms", + -11.117798805236816 + ], + [ + "▁Oxford", + -11.117923736572266 + ], + [ + "▁Cat", + -11.1180419921875 + ], + [ + "▁ears", + -11.11818790435791 + ], + [ + "53", + -11.118313789367676 + ], + [ + "▁Edward", + -11.118496894836426 + ], + [ + "▁responsibilities", + -11.118608474731445 + ], + [ + "▁Multi", + -11.118682861328125 + ], + [ + "▁navigate", + -11.11933422088623 + ], + [ + "▁attempting", + -11.119877815246582 + ], + [ + "▁54", + -11.119938850402832 + ], + [ + "▁Corp", + -11.120201110839844 + ], + [ + "▁acres", + -11.120748519897461 + ], + [ + "▁associate", + -11.120862007141113 + ], + [ + "ce", + -11.12086296081543 + ], + [ + "▁Plant", + -11.121193885803223 + ], + [ + "▁rejected", + -11.121411323547363 + ], + [ + "▁Property", + -11.121642112731934 + ], + [ + "let", + -11.121673583984375 + ], + [ + "▁Chair", + -11.12174129486084 + ], + [ + "▁cry", + -11.12178897857666 + ], + [ + "▁1991", + -11.122239112854004 + ], + [ + "▁Son", + -11.12253475189209 + ], + [ + "▁HIV", + -11.122562408447266 + ], + [ + "▁steam", + -11.122564315795898 + ], + [ + "▁neighbors", + -11.122940063476562 + ], + [ + "▁throwing", + -11.123303413391113 + ], + [ + "▁caring", + -11.12336254119873 + ], + [ + "▁Ross", + -11.123431205749512 + ], + [ + "▁Ave", + -11.12370777130127 + ], + [ + "▁Total", + -11.123716354370117 + ], + [ + "▁Whatever", + -11.123826026916504 + ], + [ + "▁contractor", + -11.1244478225708 + ], + [ + "▁Along", + -11.124463081359863 + ], + [ + "▁Job", + -11.124537467956543 + ], + [ + "▁Tell", + -11.124702453613281 + ], + [ + "▁slight", + -11.124892234802246 + ], + [ + "▁Bureau", + -11.125068664550781 + ], + [ + "▁Anna", + -11.125304222106934 + ], + [ + "▁cooling", + -11.125484466552734 + ], + [ + "▁operators", + -11.125764846801758 + ], + [ + "▁efficiently", + -11.1259765625 + ], + [ + "▁nurse", + -11.126441955566406 + ], + [ + "65", + -11.12651538848877 + ], + [ + "▁championship", + -11.12693977355957 + ], + [ + "▁Jean", + -11.127070426940918 + ], + [ + "▁breathing", + -11.127212524414062 + ], + [ + "born", + -11.12728214263916 + ], + [ + "▁balls", + -11.127325057983398 + ], + [ + "▁patch", + -11.127716064453125 + ], + [ + "Fi", + -11.127836227416992 + ], + [ + "▁lease", + -11.12786865234375 + ], + [ + "▁Channel", + -11.127981185913086 + ], + [ + "▁satellite", + -11.128096580505371 + ], + [ + "▁printer", + -11.128294944763184 + ], + [ + "▁Prior", + -11.128434181213379 + ], + [ + "▁measurement", + -11.128453254699707 + ], + [ + "▁permitted", + -11.128571510314941 + ], + [ + "▁qualify", + -11.129192352294922 + ], + [ + "▁valued", + -11.129387855529785 + ], + [ + "▁sits", + -11.129788398742676 + ], + [ + "▁soup", + -11.130160331726074 + ], + [ + "▁advise", + -11.13016414642334 + ], + [ + "▁governor", + -11.130529403686523 + ], + [ + "▁slots", + -11.130606651306152 + ], + [ + "▁keyboard", + -11.130682945251465 + ], + [ + "▁genes", + -11.131083488464355 + ], + [ + "▁physician", + -11.131326675415039 + ], + [ + "▁arranged", + -11.131361961364746 + ], + [ + "▁processor", + -11.131361961364746 + ], + [ + "▁endless", + -11.131402015686035 + ], + [ + "▁relaxed", + -11.131638526916504 + ], + [ + "▁na", + -11.131710052490234 + ], + [ + "▁Vancouver", + -11.131772994995117 + ], + [ + "▁Tennessee", + -11.131871223449707 + ], + [ + "▁soccer", + -11.132014274597168 + ], + [ + "▁Planning", + -11.132108688354492 + ], + [ + "▁honestly", + -11.132125854492188 + ], + [ + "▁destruction", + -11.132204055786133 + ], + [ + "▁ensures", + -11.132433891296387 + ], + [ + "▁alert", + -11.13249397277832 + ], + [ + "▁inspiring", + -11.132709503173828 + ], + [ + "▁crystal", + -11.132715225219727 + ], + [ + "▁strip", + -11.133100509643555 + ], + [ + "2016", + -11.133341789245605 + ], + [ + "▁wing", + -11.133638381958008 + ], + [ + "▁carries", + -11.134004592895508 + ], + [ + "▁keen", + -11.13425350189209 + ], + [ + "▁affects", + -11.13444709777832 + ], + [ + "ful", + -11.134696006774902 + ], + [ + "▁Bad", + -11.135086059570312 + ], + [ + "ups", + -11.135181427001953 + ], + [ + "▁shell", + -11.135231971740723 + ], + [ + "▁twin", + -11.135242462158203 + ], + [ + "▁plates", + -11.13530445098877 + ], + [ + "▁passage", + -11.135396003723145 + ], + [ + "▁centuries", + -11.135489463806152 + ], + [ + "▁remind", + -11.135518074035645 + ], + [ + "▁manufactured", + -11.135665893554688 + ], + [ + "▁precisely", + -11.136039733886719 + ], + [ + "▁charging", + -11.136133193969727 + ], + [ + "▁reportedly", + -11.13619613647461 + ], + [ + "▁magical", + -11.136396408081055 + ], + [ + "▁Arab", + -11.136529922485352 + ], + [ + "▁Front", + -11.136540412902832 + ], + [ + "▁painful", + -11.136758804321289 + ], + [ + "▁coaches", + -11.136802673339844 + ], + [ + "▁handled", + -11.137106895446777 + ], + [ + "▁argued", + -11.137563705444336 + ], + [ + "▁pants", + -11.137711524963379 + ], + [ + "▁Chairman", + -11.138423919677734 + ], + [ + "▁limitations", + -11.138517379760742 + ], + [ + "▁tune", + -11.13891315460205 + ], + [ + "party", + -11.1389799118042 + ], + [ + "▁Reading", + -11.139006614685059 + ], + [ + "▁Lincoln", + -11.13902473449707 + ], + [ + "▁genre", + -11.139142990112305 + ], + [ + "mi", + -11.139204978942871 + ], + [ + "▁donation", + -11.139304161071777 + ], + [ + "▁Performance", + -11.139907836914062 + ], + [ + "ir", + -11.139927864074707 + ], + [ + "▁PR", + -11.139965057373047 + ], + [ + "▁tourist", + -11.13997745513916 + ], + [ + "▁Cover", + -11.140032768249512 + ], + [ + "▁Unit", + -11.140064239501953 + ], + [ + "▁shorter", + -11.140972137451172 + ], + [ + "▁documentary", + -11.1410493850708 + ], + [ + "▁slip", + -11.14145565032959 + ], + [ + "▁Kate", + -11.141478538513184 + ], + [ + "150", + -11.141530990600586 + ], + [ + "▁assignment", + -11.141958236694336 + ], + [ + "▁Stop", + -11.142206192016602 + ], + [ + "▁calculated", + -11.142230987548828 + ], + [ + "▁AP", + -11.142451286315918 + ], + [ + "▁Di", + -11.142532348632812 + ], + [ + "▁File", + -11.142549514770508 + ], + [ + "▁mount", + -11.142605781555176 + ], + [ + "▁Rob", + -11.142748832702637 + ], + [ + "▁allegations", + -11.143022537231445 + ], + [ + "▁couch", + -11.143290519714355 + ], + [ + "▁DJ", + -11.143631935119629 + ], + [ + "▁Luke", + -11.143718719482422 + ], + [ + "▁Side", + -11.143990516662598 + ], + [ + "▁tower", + -11.14404296875 + ], + [ + "▁Dad", + -11.144274711608887 + ], + [ + "▁para", + -11.144340515136719 + ], + [ + "▁travelling", + -11.144983291625977 + ], + [ + "set", + -11.145001411437988 + ], + [ + "▁Us", + -11.14504337310791 + ], + [ + "▁burden", + -11.145181655883789 + ], + [ + "▁Gary", + -11.145896911621094 + ], + [ + "▁hook", + -11.146456718444824 + ], + [ + "▁shelf", + -11.146940231323242 + ], + [ + "high", + -11.147198677062988 + ], + [ + "▁tail", + -11.147273063659668 + ], + [ + "▁com", + -11.147302627563477 + ], + [ + "▁dear", + -11.14734935760498 + ], + [ + "▁sixth", + -11.147396087646484 + ], + [ + "▁fought", + -11.147435188293457 + ], + [ + "▁Article", + -11.147867202758789 + ], + [ + "▁intelligent", + -11.148056030273438 + ], + [ + "▁effectiveness", + -11.1487455368042 + ], + [ + "▁drops", + -11.148900985717773 + ], + [ + "▁beans", + -11.14891242980957 + ], + [ + "▁liver", + -11.149040222167969 + ], + [ + "ee", + -11.149283409118652 + ], + [ + "▁Ali", + -11.149799346923828 + ], + [ + "▁Marine", + -11.150130271911621 + ], + [ + "▁guides", + -11.150155067443848 + ], + [ + "▁iconic", + -11.150163650512695 + ], + [ + "▁Future", + -11.150405883789062 + ], + [ + "▁vibrant", + -11.150450706481934 + ], + [ + "▁realistic", + -11.150516510009766 + ], + [ + "▁humanity", + -11.15178108215332 + ], + [ + "▁seller", + -11.15205192565918 + ], + [ + "▁Pat", + -11.152567863464355 + ], + [ + "▁hence", + -11.152569770812988 + ], + [ + "▁Missouri", + -11.15275764465332 + ], + [ + "▁achievement", + -11.152864456176758 + ], + [ + "▁Vol", + -11.153159141540527 + ], + [ + "▁dying", + -11.153250694274902 + ], + [ + "▁margin", + -11.153960227966309 + ], + [ + "▁independence", + -11.15396785736084 + ], + [ + "▁FIG", + -11.154060363769531 + ], + [ + "▁Doctor", + -11.15464973449707 + ], + [ + "▁subtle", + -11.154777526855469 + ], + [ + "▁donations", + -11.155200004577637 + ], + [ + "▁engineer", + -11.155200958251953 + ], + [ + "▁honey", + -11.155308723449707 + ], + [ + "▁dimensions", + -11.155595779418945 + ], + [ + "▁reveals", + -11.155972480773926 + ], + [ + "▁Empire", + -11.156889915466309 + ], + [ + "▁Know", + -11.157037734985352 + ], + [ + "▁enemies", + -11.157360076904297 + ], + [ + "▁consulting", + -11.15773868560791 + ], + [ + "▁Records", + -11.158012390136719 + ], + [ + "▁maker", + -11.15866470336914 + ], + [ + "▁refund", + -11.158683776855469 + ], + [ + "▁participated", + -11.158820152282715 + ], + [ + "▁customized", + -11.159098625183105 + ], + [ + "▁contractors", + -11.159196853637695 + ], + [ + "▁trucks", + -11.15943431854248 + ], + [ + "▁Denver", + -11.159521102905273 + ], + [ + "im", + -11.159610748291016 + ], + [ + "▁priced", + -11.159738540649414 + ], + [ + "▁shoe", + -11.160066604614258 + ], + [ + "▁silence", + -11.160125732421875 + ], + [ + "▁disabled", + -11.160181045532227 + ], + [ + "▁batteries", + -11.160449028015137 + ], + [ + "▁Better", + -11.160561561584473 + ], + [ + "▁Galaxy", + -11.160593032836914 + ], + [ + "▁Bitcoin", + -11.160825729370117 + ], + [ + "▁imagination", + -11.16105842590332 + ], + [ + "▁strengthen", + -11.1618013381958 + ], + [ + "▁credits", + -11.161904335021973 + ], + [ + "km", + -11.16191291809082 + ], + [ + "▁spokesman", + -11.162320137023926 + ], + [ + "▁relate", + -11.163026809692383 + ], + [ + "▁Sony", + -11.163244247436523 + ], + [ + "▁blessed", + -11.163488388061523 + ], + [ + "51", + -11.163656234741211 + ], + [ + "▁cultures", + -11.163955688476562 + ], + [ + "▁waters", + -11.164114952087402 + ], + [ + "▁surfaces", + -11.164216995239258 + ], + [ + "▁wrapped", + -11.164314270019531 + ], + [ + "▁Kit", + -11.164861679077148 + ], + [ + "▁loads", + -11.165122032165527 + ], + [ + "▁buttons", + -11.165400505065918 + ], + [ + "▁chip", + -11.165462493896484 + ], + [ + "▁peaceful", + -11.165749549865723 + ], + [ + "56", + -11.166032791137695 + ], + [ + "▁stepped", + -11.1661376953125 + ], + [ + "▁FL", + -11.166731834411621 + ], + [ + "ford", + -11.166869163513184 + ], + [ + "▁fitted", + -11.166996002197266 + ], + [ + "such", + -11.167464256286621 + ], + [ + "▁alike", + -11.167499542236328 + ], + [ + "▁BC", + -11.167550086975098 + ], + [ + "▁clinic", + -11.167616844177246 + ], + [ + "▁Rather", + -11.16762924194336 + ], + [ + "▁amenities", + -11.167835235595703 + ], + [ + "▁frames", + -11.16824722290039 + ], + [ + "▁thirty", + -11.168283462524414 + ], + [ + "▁affairs", + -11.168338775634766 + ], + [ + "▁terminal", + -11.168381690979004 + ], + [ + "▁temple", + -11.168457984924316 + ], + [ + "▁import", + -11.16860294342041 + ], + [ + "▁Easter", + -11.16914176940918 + ], + [ + "▁handful", + -11.169249534606934 + ], + [ + "▁Dean", + -11.169384002685547 + ], + [ + "▁density", + -11.16948127746582 + ], + [ + "▁]", + -11.169507026672363 + ], + [ + "▁fancy", + -11.169642448425293 + ], + [ + "She", + -11.16980266571045 + ], + [ + "▁Crusher", + -11.169833183288574 + ], + [ + "▁moisture", + -11.170019149780273 + ], + [ + "only", + -11.170023918151855 + ], + [ + "▁extract", + -11.170105934143066 + ], + [ + "▁Gas", + -11.170234680175781 + ], + [ + "New", + -11.17036247253418 + ], + [ + "▁bottles", + -11.170445442199707 + ], + [ + "▁authorized", + -11.17065143585205 + ], + [ + "▁threw", + -11.170763969421387 + ], + [ + "One", + -11.171096801757812 + ], + [ + "▁grid", + -11.171121597290039 + ], + [ + "ability", + -11.17127799987793 + ], + [ + "▁stolen", + -11.171318054199219 + ], + [ + "250", + -11.171393394470215 + ], + [ + "▁appliances", + -11.171748161315918 + ], + [ + "wide", + -11.171792984008789 + ], + [ + "▁biological", + -11.172028541564941 + ], + [ + "▁Email", + -11.172463417053223 + ], + [ + "▁psychological", + -11.172516822814941 + ], + [ + "2015", + -11.172608375549316 + ], + [ + "▁musicians", + -11.172979354858398 + ], + [ + "ii", + -11.17314624786377 + ], + [ + "▁tooth", + -11.173219680786133 + ], + [ + "▁discussing", + -11.173318862915039 + ], + [ + "html", + -11.173454284667969 + ], + [ + "▁Upon", + -11.17370891571045 + ], + [ + "▁outer", + -11.173730850219727 + ], + [ + "▁requiring", + -11.173795700073242 + ], + [ + "▁marine", + -11.17410659790039 + ], + [ + "▁Jon", + -11.174227714538574 + ], + [ + "▁Wars", + -11.174391746520996 + ], + [ + "▁Common", + -11.174420356750488 + ], + [ + "▁collecting", + -11.174660682678223 + ], + [ + "ER", + -11.175143241882324 + ], + [ + "▁Final", + -11.17520523071289 + ], + [ + "▁Talk", + -11.175372123718262 + ], + [ + "▁selecting", + -11.17566204071045 + ], + [ + "▁controller", + -11.175992965698242 + ], + [ + "▁Constitution", + -11.176058769226074 + ], + [ + "▁1950", + -11.176285743713379 + ], + [ + "▁derived", + -11.176857948303223 + ], + [ + "▁corruption", + -11.1773042678833 + ], + [ + "what", + -11.17742919921875 + ], + [ + "▁branches", + -11.177474975585938 + ], + [ + "▁gardens", + -11.177553176879883 + ], + [ + "▁oh", + -11.177645683288574 + ], + [ + "▁retailers", + -11.177834510803223 + ], + [ + "▁dozens", + -11.177881240844727 + ], + [ + "▁Andy", + -11.177960395812988 + ], + [ + "▁failing", + -11.178242683410645 + ], + [ + "▁exhibit", + -11.178765296936035 + ], + [ + "▁superb", + -11.178784370422363 + ], + [ + "they", + -11.178827285766602 + ], + [ + "▁purple", + -11.178839683532715 + ], + [ + "▁addiction", + -11.178942680358887 + ], + [ + "▁converted", + -11.17917537689209 + ], + [ + "▁quit", + -11.179238319396973 + ], + [ + "▁proceed", + -11.179366111755371 + ], + [ + "▁embrace", + -11.17971420288086 + ], + [ + "▁lately", + -11.179726600646973 + ], + [ + "Our", + -11.18000316619873 + ], + [ + "▁unfortunately", + -11.180181503295898 + ], + [ + "▁discipline", + -11.180383682250977 + ], + [ + "▁shed", + -11.180672645568848 + ], + [ + "▁comply", + -11.181459426879883 + ], + [ + "▁progressive", + -11.181509971618652 + ], + [ + "▁tourism", + -11.181739807128906 + ], + [ + "▁Phil", + -11.181875228881836 + ], + [ + "▁binding", + -11.182138442993164 + ], + [ + "▁exploration", + -11.182257652282715 + ], + [ + "▁Custom", + -11.182305335998535 + ], + [ + "▁Justin", + -11.182483673095703 + ], + [ + "▁frozen", + -11.182605743408203 + ], + [ + "▁Friends", + -11.182804107666016 + ], + [ + "▁Affairs", + -11.182942390441895 + ], + [ + "▁acceptance", + -11.183124542236328 + ], + [ + "▁56", + -11.183148384094238 + ], + [ + "▁oxygen", + -11.183276176452637 + ], + [ + "▁profession", + -11.18335247039795 + ], + [ + "▁fastest", + -11.183469772338867 + ], + [ + "▁treating", + -11.18355941772461 + ], + [ + "▁titled", + -11.18379020690918 + ], + [ + "54", + -11.183826446533203 + ], + [ + "▁striking", + -11.184249877929688 + ], + [ + "▁towns", + -11.184735298156738 + ], + [ + "▁gently", + -11.18474006652832 + ], + [ + "▁Commercial", + -11.184978485107422 + ], + [ + "▁NC", + -11.185408592224121 + ], + [ + "▁Sub", + -11.185419082641602 + ], + [ + "▁Scottish", + -11.185480117797852 + ], + [ + "▁Kentucky", + -11.18590259552002 + ], + [ + "▁possess", + -11.186043739318848 + ], + [ + "▁Castle", + -11.186135292053223 + ], + [ + "za", + -11.186209678649902 + ], + [ + "▁sized", + -11.186293601989746 + ], + [ + "▁reminded", + -11.186326026916504 + ], + [ + "▁memorable", + -11.18639850616455 + ], + [ + "▁rocks", + -11.186661720275879 + ], + [ + "▁shelter", + -11.18692684173584 + ], + [ + "▁beaches", + -11.18707275390625 + ], + [ + "▁incorporate", + -11.187253952026367 + ], + [ + "▁bite", + -11.187440872192383 + ], + [ + "▁separated", + -11.187580108642578 + ], + [ + "▁Reserve", + -11.188597679138184 + ], + [ + "▁TX", + -11.188838005065918 + ], + [ + "▁thesis", + -11.18891716003418 + ], + [ + "▁moderate", + -11.189360618591309 + ], + [ + "▁dont", + -11.189655303955078 + ], + [ + "▁essays", + -11.190156936645508 + ], + [ + "▁timely", + -11.190762519836426 + ], + [ + "▁Dumpster", + -11.190840721130371 + ], + [ + "▁suspension", + -11.190879821777344 + ], + [ + "▁alarm", + -11.191030502319336 + ], + [ + "▁wherever", + -11.19129753112793 + ], + [ + "▁identifying", + -11.191609382629395 + ], + [ + "▁Ph", + -11.191751480102539 + ], + [ + "▁Hills", + -11.191892623901367 + ], + [ + "▁disability", + -11.1920747756958 + ], + [ + "can", + -11.19214153289795 + ], + [ + "▁53", + -11.192177772521973 + ], + [ + "▁achieving", + -11.192182540893555 + ], + [ + "▁pollution", + -11.192461013793945 + ], + [ + "▁Six", + -11.192534446716309 + ], + [ + "being", + -11.1925630569458 + ], + [ + "▁im", + -11.192587852478027 + ], + [ + "▁mattress", + -11.192981719970703 + ], + [ + "▁footage", + -11.193137168884277 + ], + [ + "▁Something", + -11.193177223205566 + ], + [ + "▁voices", + -11.193258285522461 + ], + [ + "▁motivation", + -11.193437576293945 + ], + [ + "▁pour", + -11.193683624267578 + ], + [ + "▁NBA", + -11.193709373474121 + ], + [ + "just", + -11.193748474121094 + ], + [ + "▁determination", + -11.194083213806152 + ], + [ + "▁counts", + -11.194446563720703 + ], + [ + "▁ebook", + -11.19465160369873 + ], + [ + "▁squad", + -11.195266723632812 + ], + [ + "▁Hand", + -11.195355415344238 + ], + [ + "▁Harris", + -11.195382118225098 + ], + [ + "▁garlic", + -11.195406913757324 + ], + [ + "▁Simple", + -11.195834159851074 + ], + [ + "▁seemingly", + -11.196377754211426 + ], + [ + "▁conservation", + -11.196388244628906 + ], + [ + "▁agricultural", + -11.196696281433105 + ], + [ + "▁departments", + -11.196764945983887 + ], + [ + "▁width", + -11.196819305419922 + ], + [ + "▁placement", + -11.196821212768555 + ], + [ + "▁Inter", + -11.19686222076416 + ], + [ + "▁VA", + -11.196893692016602 + ], + [ + "▁tale", + -11.197226524353027 + ], + [ + "▁recommendation", + -11.197300910949707 + ], + [ + "▁demanding", + -11.197562217712402 + ], + [ + "▁remembered", + -11.197635650634766 + ], + [ + "ists", + -11.197739601135254 + ], + [ + "▁eastern", + -11.197854995727539 + ], + [ + "ana", + -11.197877883911133 + ], + [ + "▁silent", + -11.198415756225586 + ], + [ + "▁blocked", + -11.198678970336914 + ], + [ + "▁Ma", + -11.19886589050293 + ], + [ + "▁personalized", + -11.198983192443848 + ], + [ + "▁stem", + -11.1992826461792 + ], + [ + "▁flood", + -11.199407577514648 + ], + [ + "▁Magic", + -11.199628829956055 + ], + [ + "▁Anne", + -11.200248718261719 + ], + [ + "▁nicely", + -11.200586318969727 + ], + [ + "▁mainstream", + -11.200600624084473 + ], + [ + "▁arrange", + -11.20081901550293 + ], + [ + "▁Gen", + -11.201200485229492 + ], + [ + "▁anytime", + -11.201848983764648 + ], + [ + "▁dirty", + -11.201862335205078 + ], + [ + "▁competing", + -11.201932907104492 + ], + [ + "▁pic", + -11.20226764678955 + ], + [ + "▁instances", + -11.202486038208008 + ], + [ + "▁Labour", + -11.203082084655762 + ], + [ + "▁mild", + -11.203235626220703 + ], + [ + "▁secretary", + -11.203413963317871 + ], + [ + "▁Hard", + -11.203551292419434 + ], + [ + "▁beneath", + -11.203668594360352 + ], + [ + "▁experiments", + -11.203784942626953 + ], + [ + "▁z", + -11.203849792480469 + ], + [ + "round", + -11.204146385192871 + ], + [ + "▁beloved", + -11.204198837280273 + ], + [ + "▁emerged", + -11.204355239868164 + ], + [ + "▁Lane", + -11.204379081726074 + ], + [ + "▁BE", + -11.20469856262207 + ], + [ + "▁basement", + -11.20508861541748 + ], + [ + "top", + -11.2056245803833 + ], + [ + "▁Complete", + -11.20569896697998 + ], + [ + "▁grain", + -11.20577621459961 + ], + [ + "▁drag", + -11.20599365234375 + ], + [ + "ac", + -11.206323623657227 + ], + [ + "▁Ron", + -11.206355094909668 + ], + [ + "▁defence", + -11.206408500671387 + ], + [ + "▁1989", + -11.206978797912598 + ], + [ + "▁Bo", + -11.208000183105469 + ], + [ + "▁repeatedly", + -11.2081937789917 + ], + [ + "▁assumed", + -11.208271026611328 + ], + [ + "board", + -11.208396911621094 + ], + [ + "▁Terms", + -11.209039688110352 + ], + [ + "▁Far", + -11.209235191345215 + ], + [ + "▁laboratory", + -11.209484100341797 + ], + [ + "▁Located", + -11.209526062011719 + ], + [ + "▁optimal", + -11.210368156433105 + ], + [ + "▁diameter", + -11.210387229919434 + ], + [ + "▁automated", + -11.210447311401367 + ], + [ + "Do", + -11.210580825805664 + ], + [ + "▁experimental", + -11.210609436035156 + ], + [ + "▁Portland", + -11.210623741149902 + ], + [ + "▁restoration", + -11.211043357849121 + ], + [ + "▁fitting", + -11.211065292358398 + ], + [ + "▁diagnosed", + -11.211358070373535 + ], + [ + "▁strive", + -11.211359977722168 + ], + [ + "57", + -11.211370468139648 + ], + [ + "▁violation", + -11.211563110351562 + ], + [ + "▁corporations", + -11.212441444396973 + ], + [ + "▁referring", + -11.212529182434082 + ], + [ + "▁HR", + -11.212785720825195 + ], + [ + "▁medications", + -11.213284492492676 + ], + [ + "▁couples", + -11.21346378326416 + ], + [ + "ary", + -11.213533401489258 + ], + [ + "▁Utah", + -11.213683128356934 + ], + [ + "▁hoped", + -11.213831901550293 + ], + [ + "▁poll", + -11.214086532592773 + ], + [ + "▁Cleveland", + -11.214259147644043 + ], + [ + "▁strict", + -11.214730262756348 + ], + [ + "▁brick", + -11.214927673339844 + ], + [ + "▁Afghanistan", + -11.215018272399902 + ], + [ + "▁routes", + -11.215043067932129 + ], + [ + "▁Equipment", + -11.215197563171387 + ], + [ + "▁stake", + -11.215475082397461 + ], + [ + "▁dispute", + -11.215560913085938 + ], + [ + "sized", + -11.21557331085205 + ], + [ + "▁vitamin", + -11.215658187866211 + ], + [ + "▁Interior", + -11.215932846069336 + ], + [ + "▁identical", + -11.215933799743652 + ], + [ + "▁profiles", + -11.216001510620117 + ], + [ + "▁Until", + -11.2160062789917 + ], + [ + "▁varied", + -11.2163667678833 + ], + [ + "▁jury", + -11.216935157775879 + ], + [ + "sen", + -11.216970443725586 + ], + [ + "▁th", + -11.217185974121094 + ], + [ + "▁acknowledge", + -11.217424392700195 + ], + [ + "ten", + -11.21774959564209 + ], + [ + "▁Stadium", + -11.217811584472656 + ], + [ + "▁Walker", + -11.217811584472656 + ], + [ + "▁IBM", + -11.217875480651855 + ], + [ + "lo", + -11.218094825744629 + ], + [ + "▁agreements", + -11.218286514282227 + ], + [ + "our", + -11.21838665008545 + ], + [ + "▁yeah", + -11.218486785888672 + ], + [ + "▁Maria", + -11.218963623046875 + ], + [ + "▁annually", + -11.219133377075195 + ], + [ + "▁rack", + -11.21926498413086 + ], + [ + "▁Josh", + -11.219817161560059 + ], + [ + "▁boundaries", + -11.219847679138184 + ], + [ + "▁Chi", + -11.22007942199707 + ], + [ + "ina", + -11.220206260681152 + ], + [ + "▁counsel", + -11.220318794250488 + ], + [ + "▁significance", + -11.220970153808594 + ], + [ + "▁Peace", + -11.221269607543945 + ], + [ + "▁Boy", + -11.221485137939453 + ], + [ + "▁lips", + -11.221670150756836 + ], + [ + "▁drew", + -11.221906661987305 + ], + [ + "▁lightweight", + -11.222023010253906 + ], + [ + "TV", + -11.222176551818848 + ], + [ + "▁sons", + -11.222450256347656 + ], + [ + "▁laundry", + -11.222524642944336 + ], + [ + "▁patent", + -11.222823143005371 + ], + [ + "▁consultant", + -11.222854614257812 + ], + [ + "▁Source", + -11.222909927368164 + ], + [ + "▁claiming", + -11.223001480102539 + ], + [ + "▁hunt", + -11.223098754882812 + ], + [ + "va", + -11.22314739227295 + ], + [ + "▁overwhelming", + -11.223268508911133 + ], + [ + "▁tennis", + -11.223581314086914 + ], + [ + "▁Rep", + -11.223637580871582 + ], + [ + "▁spell", + -11.22402286529541 + ], + [ + "▁Bruce", + -11.224059104919434 + ], + [ + "▁threatened", + -11.224544525146484 + ], + [ + "▁Temple", + -11.224615097045898 + ], + [ + "op", + -11.224761009216309 + ], + [ + "pa", + -11.224828720092773 + ], + [ + "▁wage", + -11.224958419799805 + ], + [ + "▁abandoned", + -11.225031852722168 + ], + [ + "▁impacts", + -11.225144386291504 + ], + [ + "▁Alliance", + -11.225225448608398 + ], + [ + "о", + -11.225306510925293 + ], + [ + "▁Alan", + -11.225634574890137 + ], + [ + "▁ruled", + -11.225959777832031 + ], + [ + "▁supplement", + -11.22624683380127 + ], + [ + "▁habit", + -11.22631549835205 + ], + [ + "▁simultaneously", + -11.22707462310791 + ], + [ + "▁rings", + -11.227272987365723 + ], + [ + "▁login", + -11.227367401123047 + ], + [ + "wa", + -11.227550506591797 + ], + [ + "url", + -11.227622985839844 + ], + [ + "▁allegedly", + -11.227754592895508 + ], + [ + "▁URL", + -11.22797966003418 + ], + [ + "▁closest", + -11.22838020324707 + ], + [ + "▁tremendous", + -11.228429794311523 + ], + [ + "are", + -11.228614807128906 + ], + [ + "▁Electric", + -11.228697776794434 + ], + [ + "▁cabinets", + -11.229186058044434 + ], + [ + "ise", + -11.22933578491211 + ], + [ + "▁mask", + -11.229520797729492 + ], + [ + "even", + -11.229804992675781 + ], + [ + "▁reflects", + -11.229836463928223 + ], + [ + "▁Update", + -11.229893684387207 + ], + [ + "▁implementing", + -11.230257034301758 + ], + [ + "▁Practice", + -11.230463981628418 + ], + [ + "▁protocol", + -11.23050308227539 + ], + [ + "▁measurements", + -11.230803489685059 + ], + [ + "▁motivated", + -11.230849266052246 + ], + [ + "▁Labor", + -11.230850219726562 + ], + [ + "▁mechanisms", + -11.23088264465332 + ], + [ + "▁Companies", + -11.230974197387695 + ], + [ + "▁wherein", + -11.231614112854004 + ], + [ + "▁crack", + -11.231788635253906 + ], + [ + "▁Islam", + -11.231921195983887 + ], + [ + "▁installing", + -11.231924057006836 + ], + [ + "▁implications", + -11.232002258300781 + ], + [ + "▁Soviet", + -11.232428550720215 + ], + [ + "▁celebrating", + -11.232555389404297 + ], + [ + "▁Previous", + -11.232561111450195 + ], + [ + "▁Francis", + -11.232595443725586 + ], + [ + "▁publications", + -11.23293685913086 + ], + [ + "▁influenced", + -11.233024597167969 + ], + [ + "▁invested", + -11.23331069946289 + ], + [ + "state", + -11.233479499816895 + ], + [ + "▁Charlie", + -11.23355770111084 + ], + [ + "▁Dead", + -11.233683586120605 + ], + [ + "▁inflation", + -11.2343111038208 + ], + [ + "▁Images", + -11.234381675720215 + ], + [ + "▁analyze", + -11.234381675720215 + ], + [ + "▁crop", + -11.234500885009766 + ], + [ + "▁viewers", + -11.23454761505127 + ], + [ + "▁suits", + -11.234590530395508 + ], + [ + "▁Pan", + -11.234779357910156 + ], + [ + "▁gambling", + -11.235451698303223 + ], + [ + "▁hybrid", + -11.235626220703125 + ], + [ + "▁Rick", + -11.235973358154297 + ], + [ + "▁bay", + -11.236034393310547 + ], + [ + "▁Ice", + -11.23633098602295 + ], + [ + "▁survived", + -11.236462593078613 + ], + [ + "▁disk", + -11.236961364746094 + ], + [ + "▁detect", + -11.236989974975586 + ], + [ + "▁notion", + -11.237133979797363 + ], + [ + "2019", + -11.23757553100586 + ], + [ + "▁tourists", + -11.237833023071289 + ], + [ + "▁grocery", + -11.238457679748535 + ], + [ + "▁tags", + -11.238672256469727 + ], + [ + "▁PhD", + -11.238752365112305 + ], + [ + "▁spa", + -11.238807678222656 + ], + [ + "▁calories", + -11.239433288574219 + ], + [ + "▁bin", + -11.239439010620117 + ], + [ + "▁bits", + -11.239635467529297 + ], + [ + "▁stroke", + -11.239741325378418 + ], + [ + "▁lemon", + -11.240033149719238 + ], + [ + "▁wore", + -11.240148544311523 + ], + [ + "▁gradually", + -11.240352630615234 + ], + [ + "▁attacked", + -11.24040699005127 + ], + [ + "▁tablets", + -11.240666389465332 + ], + [ + "▁grants", + -11.2407865524292 + ], + [ + "▁Jonathan", + -11.240825653076172 + ], + [ + "ja", + -11.24099349975586 + ], + [ + "▁Springs", + -11.241049766540527 + ], + [ + "▁lawn", + -11.24117374420166 + ], + [ + "▁radiation", + -11.241220474243164 + ], + [ + "▁fed", + -11.241445541381836 + ], + [ + "▁Highway", + -11.241588592529297 + ], + [ + "▁Between", + -11.241676330566406 + ], + [ + "▁magnetic", + -11.241868019104004 + ], + [ + "▁qualities", + -11.241979598999023 + ], + [ + "▁harmful", + -11.242096900939941 + ], + [ + "▁THIS", + -11.242138862609863 + ], + [ + "▁contacts", + -11.242344856262207 + ], + [ + "▁zip", + -11.24258804321289 + ], + [ + "▁Had", + -11.242850303649902 + ], + [ + "▁olive", + -11.242895126342773 + ], + [ + "▁lamp", + -11.243546485900879 + ], + [ + "specific", + -11.243592262268066 + ], + [ + "▁observe", + -11.243692398071289 + ], + [ + "▁reserves", + -11.24409008026123 + ], + [ + "▁belong", + -11.244097709655762 + ], + [ + "▁makers", + -11.244556427001953 + ], + [ + "▁seal", + -11.244815826416016 + ], + [ + "▁fleet", + -11.245599746704102 + ], + [ + "▁Bring", + -11.246127128601074 + ], + [ + "▁contacted", + -11.246142387390137 + ], + [ + "▁Speaking", + -11.246254920959473 + ], + [ + "▁actress", + -11.24630355834961 + ], + [ + "▁shame", + -11.246614456176758 + ], + [ + "▁bearing", + -11.246639251708984 + ], + [ + "▁podcast", + -11.247124671936035 + ], + [ + "▁Core", + -11.247282028198242 + ], + [ + "▁buried", + -11.247467041015625 + ], + [ + "▁incorporated", + -11.247495651245117 + ], + [ + "▁ski", + -11.247514724731445 + ], + [ + "▁leaf", + -11.247628211975098 + ], + [ + "▁disc", + -11.24766731262207 + ], + [ + "▁welfare", + -11.248023986816406 + ], + [ + "▁boring", + -11.248167037963867 + ], + [ + "▁auction", + -11.248291015625 + ], + [ + "▁replacing", + -11.248369216918945 + ], + [ + "▁proteins", + -11.24890422821045 + ], + [ + "▁proposals", + -11.249152183532715 + ], + [ + "▁perception", + -11.249309539794922 + ], + [ + "▁Hamilton", + -11.249448776245117 + ], + [ + "▁glory", + -11.249479293823242 + ], + [ + "▁liberal", + -11.249917030334473 + ], + [ + "ised", + -11.25014591217041 + ], + [ + "▁oils", + -11.250507354736328 + ], + [ + "▁diamond", + -11.250622749328613 + ], + [ + "▁confirmation", + -11.250687599182129 + ], + [ + "▁Rev", + -11.250693321228027 + ], + [ + "▁nail", + -11.250943183898926 + ], + [ + "▁classical", + -11.250946998596191 + ], + [ + "▁demo", + -11.251394271850586 + ], + [ + "▁Wedding", + -11.251458168029785 + ], + [ + "▁suspended", + -11.251681327819824 + ], + [ + "▁peer", + -11.251964569091797 + ], + [ + "▁attendance", + -11.25202751159668 + ], + [ + "▁coconut", + -11.252331733703613 + ], + [ + "▁dough", + -11.252334594726562 + ], + [ + "▁Challenge", + -11.25268268585205 + ], + [ + "▁excessive", + -11.25280475616455 + ], + [ + "▁mature", + -11.252893447875977 + ], + [ + "▁consecutive", + -11.253044128417969 + ], + [ + "▁cookie", + -11.253077507019043 + ], + [ + "▁Sport", + -11.253335952758789 + ], + [ + "▁twist", + -11.253422737121582 + ], + [ + "▁DO", + -11.253575325012207 + ], + [ + "▁Additional", + -11.254098892211914 + ], + [ + "▁holder", + -11.254331588745117 + ], + [ + "▁disposal", + -11.254515647888184 + ], + [ + "▁console", + -11.254611015319824 + ], + [ + "▁Girls", + -11.254868507385254 + ], + [ + "▁delighted", + -11.25488567352295 + ], + [ + "ga", + -11.255013465881348 + ], + [ + "▁Actually", + -11.255337715148926 + ], + [ + "▁Meeting", + -11.255374908447266 + ], + [ + "▁outlet", + -11.255407333374023 + ], + [ + "▁suggesting", + -11.255659103393555 + ], + [ + "▁sponsored", + -11.255961418151855 + ], + [ + "ji", + -11.256030082702637 + ], + [ + "▁blogging", + -11.256052017211914 + ], + [ + "▁Phoenix", + -11.256305694580078 + ], + [ + "▁IL", + -11.256497383117676 + ], + [ + "▁YOUR", + -11.256558418273926 + ], + [ + "▁technological", + -11.256623268127441 + ], + [ + "▁intensity", + -11.256865501403809 + ], + [ + "▁opponent", + -11.256969451904297 + ], + [ + "▁junk", + -11.257537841796875 + ], + [ + "▁nuts", + -11.257811546325684 + ], + [ + "▁labels", + -11.257854461669922 + ], + [ + "58", + -11.25786018371582 + ], + [ + "▁thereby", + -11.258232116699219 + ], + [ + "▁crossed", + -11.258478164672852 + ], + [ + "▁excellence", + -11.258760452270508 + ], + [ + "▁obligation", + -11.259114265441895 + ], + [ + "▁Cash", + -11.259154319763184 + ], + [ + "▁Metal", + -11.259222984313965 + ], + [ + "▁apartments", + -11.259449005126953 + ], + [ + "▁enabling", + -11.259450912475586 + ], + [ + "▁vinyl", + -11.259510040283203 + ], + [ + "▁spacious", + -11.25964641571045 + ], + [ + "▁Style", + -11.259864807128906 + ], + [ + "▁replied", + -11.259895324707031 + ], + [ + "▁scratch", + -11.259902000427246 + ], + [ + "▁ABC", + -11.259937286376953 + ], + [ + "▁Khan", + -11.260104179382324 + ], + [ + "▁legitimate", + -11.26042366027832 + ], + [ + "▁worthy", + -11.260429382324219 + ], + [ + "▁Jo", + -11.260683059692383 + ], + [ + "▁cancel", + -11.260814666748047 + ], + [ + "▁trails", + -11.260889053344727 + ], + [ + "▁restricted", + -11.260973930358887 + ], + [ + "▁Greece", + -11.2611665725708 + ], + [ + "▁tutorial", + -11.261265754699707 + ], + [ + "▁judges", + -11.261475563049316 + ], + [ + "▁bet", + -11.262065887451172 + ], + [ + "▁friendship", + -11.262716293334961 + ], + [ + "▁Investment", + -11.262866020202637 + ], + [ + "▁computing", + -11.263463020324707 + ], + [ + "▁sake", + -11.2640380859375 + ], + [ + "▁colorful", + -11.264081001281738 + ], + [ + "▁negotiations", + -11.264238357543945 + ], + [ + "▁Lisa", + -11.264362335205078 + ], + [ + "▁jazz", + -11.26443862915039 + ], + [ + "▁confusion", + -11.264456748962402 + ], + [ + "era", + -11.26446533203125 + ], + [ + "▁Trail", + -11.264543533325195 + ], + [ + "▁voltage", + -11.264840126037598 + ], + [ + "▁guided", + -11.264932632446289 + ], + [ + "▁variables", + -11.265127182006836 + ], + [ + "▁workforce", + -11.265179634094238 + ], + [ + "▁swim", + -11.265231132507324 + ], + [ + "▁attorneys", + -11.265283584594727 + ], + [ + "▁strain", + -11.265335083007812 + ], + [ + "▁tender", + -11.265408515930176 + ], + [ + "▁sisters", + -11.26547622680664 + ], + [ + "▁dealer", + -11.265507698059082 + ], + [ + "▁trim", + -11.265548706054688 + ], + [ + "▁reflection", + -11.26555061340332 + ], + [ + "▁Java", + -11.265639305114746 + ], + [ + "▁gross", + -11.266143798828125 + ], + [ + "▁versatile", + -11.266338348388672 + ], + [ + "▁elite", + -11.266800880432129 + ], + [ + "▁cannabis", + -11.26683235168457 + ], + [ + "▁Single", + -11.267086029052734 + ], + [ + "▁defeated", + -11.267131805419922 + ], + [ + "▁funeral", + -11.26714038848877 + ], + [ + "▁alternatives", + -11.267216682434082 + ], + [ + "▁jumped", + -11.267553329467773 + ], + [ + "▁visa", + -11.267664909362793 + ], + [ + "▁reduces", + -11.267693519592285 + ], + [ + "▁Thailand", + -11.268186569213867 + ], + [ + "▁boats", + -11.268373489379883 + ], + [ + "▁desert", + -11.268573760986328 + ], + [ + "page", + -11.26865005493164 + ], + [ + "▁fails", + -11.268808364868164 + ], + [ + "▁browse", + -11.269695281982422 + ], + [ + "▁Ha", + -11.269696235656738 + ], + [ + "▁colored", + -11.270522117614746 + ], + [ + "▁citizen", + -11.270853042602539 + ], + [ + "▁Dance", + -11.271124839782715 + ], + [ + "▁climbing", + -11.271612167358398 + ], + [ + "▁hub", + -11.27168083190918 + ], + [ + "▁labour", + -11.271928787231445 + ], + [ + "▁tear", + -11.271937370300293 + ], + [ + "▁Repair", + -11.272159576416016 + ], + [ + "▁Malaysia", + -11.272183418273926 + ], + [ + "▁revolution", + -11.27270221710205 + ], + [ + "▁departure", + -11.272836685180664 + ], + [ + "ki", + -11.27294921875 + ], + [ + "▁loading", + -11.273219108581543 + ], + [ + "▁essence", + -11.273268699645996 + ], + [ + "▁Cut", + -11.273975372314453 + ], + [ + "▁devoted", + -11.273995399475098 + ], + [ + "▁anticipated", + -11.274125099182129 + ], + [ + "▁utilizing", + -11.27440071105957 + ], + [ + "▁approached", + -11.27453899383545 + ], + [ + "▁isolated", + -11.274923324584961 + ], + [ + "▁jaw", + -11.275691986083984 + ], + [ + "▁reporters", + -11.276436805725098 + ], + [ + "▁scared", + -11.276749610900879 + ], + [ + "▁Con", + -11.277107238769531 + ], + [ + "▁Enterprise", + -11.277286529541016 + ], + [ + "▁optional", + -11.277413368225098 + ], + [ + "▁Often", + -11.277440071105957 + ], + [ + "▁audiences", + -11.277518272399902 + ], + [ + "▁Fun", + -11.2777681350708 + ], + [ + "▁highway", + -11.278234481811523 + ], + [ + "▁Round", + -11.278521537780762 + ], + [ + "▁shoulders", + -11.278749465942383 + ], + [ + "▁offerings", + -11.27880859375 + ], + [ + "▁complexity", + -11.278840065002441 + ], + [ + "▁Quick", + -11.278862953186035 + ], + [ + "▁mutual", + -11.278912544250488 + ], + [ + "▁suited", + -11.279014587402344 + ], + [ + "▁deemed", + -11.279212951660156 + ], + [ + "▁Sri", + -11.279267311096191 + ], + [ + "▁promising", + -11.279338836669922 + ], + [ + "good", + -11.279533386230469 + ], + [ + "▁scholarship", + -11.279644012451172 + ], + [ + "▁specifications", + -11.279690742492676 + ], + [ + "▁countless", + -11.279699325561523 + ], + [ + "▁adjusted", + -11.279936790466309 + ], + [ + "▁trans", + -11.28000545501709 + ], + [ + "▁twelve", + -11.280136108398438 + ], + [ + "▁thorough", + -11.280170440673828 + ], + [ + "▁Inside", + -11.280498504638672 + ], + [ + "▁Door", + -11.280797004699707 + ], + [ + "▁satisfy", + -11.281509399414062 + ], + [ + "▁66", + -11.281559944152832 + ], + [ + "▁Okay", + -11.28166389465332 + ], + [ + "▁consciousness", + -11.281900405883789 + ], + [ + "▁elderly", + -11.281949996948242 + ], + [ + "▁Date", + -11.28200912475586 + ], + [ + "▁wiring", + -11.282333374023438 + ], + [ + "▁Thanksgiving", + -11.282341957092285 + ], + [ + "▁Staff", + -11.2823486328125 + ], + [ + "▁Moscow", + -11.282753944396973 + ], + [ + "▁Event", + -11.28349781036377 + ], + [ + "▁submission", + -11.283609390258789 + ], + [ + "▁cabin", + -11.284001350402832 + ], + [ + "▁dressing", + -11.284003257751465 + ], + [ + "▁agriculture", + -11.284205436706543 + ], + [ + "▁downloaded", + -11.284210205078125 + ], + [ + "▁Sweden", + -11.284211158752441 + ], + [ + "▁differ", + -11.2842435836792 + ], + [ + "▁earning", + -11.28445816040039 + ], + [ + "▁Cool", + -11.28449535369873 + ], + [ + "▁shadow", + -11.284577369689941 + ], + [ + "▁appreciation", + -11.284600257873535 + ], + [ + "▁Tri", + -11.28529167175293 + ], + [ + "▁addressing", + -11.285531044006348 + ], + [ + "▁captain", + -11.285603523254395 + ], + [ + "2014", + -11.285609245300293 + ], + [ + "week", + -11.285723686218262 + ], + [ + "▁Amy", + -11.285959243774414 + ], + [ + "▁traditions", + -11.286065101623535 + ], + [ + "▁intake", + -11.286486625671387 + ], + [ + "▁rally", + -11.286795616149902 + ], + [ + "▁ranking", + -11.286913871765137 + ], + [ + "light", + -11.287213325500488 + ], + [ + "▁verify", + -11.287863731384277 + ], + [ + "▁Player", + -11.28796672821045 + ], + [ + "▁reliability", + -11.28807258605957 + ], + [ + "▁refuse", + -11.288115501403809 + ], + [ + "▁containers", + -11.288118362426758 + ], + [ + "▁basket", + -11.28815746307373 + ], + [ + "▁Netflix", + -11.288204193115234 + ], + [ + "▁populations", + -11.288773536682129 + ], + [ + "▁closet", + -11.288825035095215 + ], + [ + "▁affiliate", + -11.28956413269043 + ], + [ + "▁Turn", + -11.28968334197998 + ], + [ + "▁Language", + -11.289896965026855 + ], + [ + "▁adopt", + -11.289949417114258 + ], + [ + "▁beating", + -11.289993286132812 + ], + [ + "▁aging", + -11.290504455566406 + ], + [ + "▁ignored", + -11.290624618530273 + ], + [ + "▁Together", + -11.290759086608887 + ], + [ + "▁bones", + -11.290780067443848 + ], + [ + "▁Cost", + -11.290876388549805 + ], + [ + "▁Works", + -11.290983200073242 + ], + [ + "▁bonds", + -11.291080474853516 + ], + [ + "▁mice", + -11.291410446166992 + ], + [ + "▁Communications", + -11.291717529296875 + ], + [ + "▁mad", + -11.291913032531738 + ], + [ + "▁58", + -11.2919340133667 + ], + [ + "▁uniform", + -11.29269027709961 + ], + [ + "▁Organization", + -11.292926788330078 + ], + [ + "▁Current", + -11.2931489944458 + ], + [ + "▁prospects", + -11.293257713317871 + ], + [ + "▁Islands", + -11.29380989074707 + ], + [ + "▁Battle", + -11.293869018554688 + ], + [ + "▁CT", + -11.294184684753418 + ], + [ + "▁drain", + -11.294563293457031 + ], + [ + "▁immigrants", + -11.294779777526855 + ], + [ + "▁fears", + -11.29517650604248 + ], + [ + "▁Brexit", + -11.295641899108887 + ], + [ + "▁Years", + -11.296073913574219 + ], + [ + "▁Da", + -11.296249389648438 + ], + [ + "▁rounds", + -11.296387672424316 + ], + [ + "~", + -11.296424865722656 + ], + [ + "▁grip", + -11.296518325805664 + ], + [ + "▁transparent", + -11.296548843383789 + ], + [ + "▁Tower", + -11.296870231628418 + ], + [ + "▁Susan", + -11.296914100646973 + ], + [ + "▁Metro", + -11.296957015991211 + ], + [ + "▁warming", + -11.29720401763916 + ], + [ + "▁reminder", + -11.297518730163574 + ], + [ + "▁entities", + -11.297569274902344 + ], + [ + "▁organize", + -11.297602653503418 + ], + [ + "ex", + -11.297714233398438 + ], + [ + "▁Course", + -11.29854679107666 + ], + [ + "▁ranks", + -11.29886531829834 + ], + [ + "▁cited", + -11.299306869506836 + ], + [ + "▁hike", + -11.299323081970215 + ], + [ + "sh", + -11.29966926574707 + ], + [ + "▁joke", + -11.300065994262695 + ], + [ + "▁receives", + -11.30018424987793 + ], + [ + "air", + -11.300195693969727 + ], + [ + "▁mixing", + -11.300287246704102 + ], + [ + "▁beta", + -11.30068588256836 + ], + [ + "▁creatures", + -11.300741195678711 + ], + [ + "▁romance", + -11.301177024841309 + ], + [ + "▁quest", + -11.302143096923828 + ], + [ + "▁Jose", + -11.30219554901123 + ], + [ + "care", + -11.302214622497559 + ], + [ + "▁controversial", + -11.302348136901855 + ], + [ + "▁Coffee", + -11.302350044250488 + ], + [ + "▁360", + -11.30302619934082 + ], + [ + "▁Russell", + -11.30317211151123 + ], + [ + "▁Entertainment", + -11.303276062011719 + ], + [ + "▁Del", + -11.303284645080566 + ], + [ + "▁presentations", + -11.303365707397461 + ], + [ + "▁unlimited", + -11.30359172821045 + ], + [ + "▁obligations", + -11.304641723632812 + ], + [ + "▁Micro", + -11.304686546325684 + ], + [ + "▁assisted", + -11.304697036743164 + ], + [ + "▁Tea", + -11.304913520812988 + ], + [ + "▁measuring", + -11.305273056030273 + ], + [ + "▁stakeholders", + -11.305285453796387 + ], + [ + "▁Link", + -11.305802345275879 + ], + [ + "▁winds", + -11.306116104125977 + ], + [ + "▁cure", + -11.306732177734375 + ], + [ + "▁showcase", + -11.307342529296875 + ], + [ + "▁Greg", + -11.307390213012695 + ], + [ + "Oh", + -11.307424545288086 + ], + [ + "▁110", + -11.307621955871582 + ], + [ + "▁corporation", + -11.30764102935791 + ], + [ + "▁rewards", + -11.307948112487793 + ], + [ + "▁lyrics", + -11.308089256286621 + ], + [ + "▁Junior", + -11.308128356933594 + ], + [ + "▁foster", + -11.308277130126953 + ], + [ + "▁chamber", + -11.308595657348633 + ], + [ + "▁besides", + -11.308625221252441 + ], + [ + "▁renowned", + -11.308627128601074 + ], + [ + "▁marketplace", + -11.308632850646973 + ], + [ + "▁1988", + -11.308706283569336 + ], + [ + "▁listings", + -11.308958053588867 + ], + [ + "▁seeks", + -11.309015274047852 + ], + [ + "▁Resort", + -11.309276580810547 + ], + [ + "▁reactions", + -11.30929183959961 + ], + [ + "▁headquarters", + -11.30930233001709 + ], + [ + "▁receiver", + -11.309407234191895 + ], + [ + "owned", + -11.309431076049805 + ], + [ + "▁vacuum", + -11.309550285339355 + ], + [ + "▁Brand", + -11.309806823730469 + ], + [ + "▁candy", + -11.309905052185059 + ], + [ + "▁Grace", + -11.309968948364258 + ], + [ + "▁analytics", + -11.310111999511719 + ], + [ + "2013", + -11.310256004333496 + ], + [ + "▁Gulf", + -11.310423851013184 + ], + [ + "On", + -11.310476303100586 + ], + [ + "▁investor", + -11.310476303100586 + ], + [ + "▁prospect", + -11.31051254272461 + ], + [ + "▁variation", + -11.310625076293945 + ], + [ + "▁reflected", + -11.310635566711426 + ], + [ + "▁Map", + -11.310763359069824 + ], + [ + "▁USD", + -11.310874938964844 + ], + [ + "▁cloth", + -11.310906410217285 + ], + [ + "▁resistant", + -11.311209678649902 + ], + [ + "▁Clean", + -11.311258316040039 + ], + [ + "▁57", + -11.311260223388672 + ], + [ + "min", + -11.311346054077148 + ], + [ + "▁00", + -11.311543464660645 + ], + [ + "ted", + -11.311649322509766 + ], + [ + "▁seating", + -11.311797142028809 + ], + [ + "▁crushing", + -11.311827659606934 + ], + [ + "▁Thompson", + -11.311832427978516 + ], + [ + "▁Mid", + -11.311895370483398 + ], + [ + "▁potatoes", + -11.311901092529297 + ], + [ + "▁Mission", + -11.311909675598145 + ], + [ + "▁Convention", + -11.312041282653809 + ], + [ + "▁deciding", + -11.312054634094238 + ], + [ + "▁adapt", + -11.312162399291992 + ], + [ + "▁dropping", + -11.312705993652344 + ], + [ + "▁conscious", + -11.31295108795166 + ], + [ + "▁separation", + -11.31313705444336 + ], + [ + "▁knowledgeable", + -11.31326961517334 + ], + [ + "▁Recently", + -11.313273429870605 + ], + [ + "▁prints", + -11.313387870788574 + ], + [ + "der", + -11.314552307128906 + ], + [ + "▁Netherlands", + -11.314562797546387 + ], + [ + "▁pad", + -11.314732551574707 + ], + [ + "ad", + -11.314859390258789 + ], + [ + "▁invitation", + -11.314997673034668 + ], + [ + "▁Antonio", + -11.315220832824707 + ], + [ + "▁crossing", + -11.315321922302246 + ], + [ + "▁touched", + -11.315438270568848 + ], + [ + "▁Charlotte", + -11.315446853637695 + ], + [ + "▁Taking", + -11.315706253051758 + ], + [ + "▁stones", + -11.315752029418945 + ], + [ + "▁Orleans", + -11.315855979919434 + ], + [ + "Star", + -11.31615161895752 + ], + [ + "▁Eve", + -11.316324234008789 + ], + [ + "gen", + -11.316423416137695 + ], + [ + "▁traded", + -11.316529273986816 + ], + [ + "▁attractions", + -11.31655502319336 + ], + [ + "▁summit", + -11.316617012023926 + ], + [ + "▁́", + -11.316668510437012 + ], + [ + "▁Dream", + -11.316720962524414 + ], + [ + "▁modify", + -11.316729545593262 + ], + [ + "▁islands", + -11.316734313964844 + ], + [ + "▁grinding", + -11.316912651062012 + ], + [ + "▁Furniture", + -11.317130088806152 + ], + [ + "▁betting", + -11.317193984985352 + ], + [ + "▁uncomfortable", + -11.317364692687988 + ], + [ + "▁pie", + -11.317370414733887 + ], + [ + "▁nationwide", + -11.317931175231934 + ], + [ + "ny", + -11.3179349899292 + ], + [ + "▁meditation", + -11.317963600158691 + ], + [ + "▁tongue", + -11.318325996398926 + ], + [ + "▁lighter", + -11.318472862243652 + ], + [ + "▁mold", + -11.318857192993164 + ], + [ + "▁hungry", + -11.319058418273926 + ], + [ + "▁backyard", + -11.31908130645752 + ], + [ + "▁62", + -11.31931209564209 + ], + [ + "▁advocate", + -11.319523811340332 + ], + [ + "▁poster", + -11.31964111328125 + ], + [ + "▁ordering", + -11.319927215576172 + ], + [ + "▁Liverpool", + -11.32013988494873 + ], + [ + "▁Cal", + -11.320186614990234 + ], + [ + "▁suggestion", + -11.320528030395508 + ], + [ + "▁Philippines", + -11.320880889892578 + ], + [ + "▁Kennedy", + -11.3212251663208 + ], + [ + "▁treats", + -11.32144546508789 + ], + [ + "▁conditioning", + -11.321462631225586 + ], + [ + "▁vessel", + -11.322056770324707 + ], + [ + "▁IV", + -11.322148323059082 + ], + [ + "▁Used", + -11.322335243225098 + ], + [ + "▁Usually", + -11.322508811950684 + ], + [ + "war", + -11.322532653808594 + ], + [ + "speed", + -11.3226900100708 + ], + [ + "▁Urban", + -11.32296371459961 + ], + [ + "▁excuse", + -11.323238372802734 + ], + [ + "▁separately", + -11.323415756225586 + ], + [ + "▁fireplace", + -11.323576927185059 + ], + [ + "▁compelling", + -11.323638916015625 + ], + [ + "▁Ukraine", + -11.323665618896484 + ], + [ + "▁determining", + -11.323676109313965 + ], + [ + "▁accidents", + -11.323919296264648 + ], + [ + "▁Heritage", + -11.323972702026367 + ], + [ + "▁curve", + -11.323988914489746 + ], + [ + "▁Legal", + -11.324012756347656 + ], + [ + "▁Brooklyn", + -11.324043273925781 + ], + [ + "▁welcomed", + -11.32412338256836 + ], + [ + "▁Direct", + -11.324246406555176 + ], + [ + "▁Roll", + -11.324379920959473 + ], + [ + "▁paragraph", + -11.324634552001953 + ], + [ + "▁teaches", + -11.3247652053833 + ], + [ + "▁teen", + -11.324813842773438 + ], + [ + "▁proceedings", + -11.32481861114502 + ], + [ + "▁Hopefully", + -11.325467109680176 + ], + [ + "rich", + -11.325725555419922 + ], + [ + "▁fulfill", + -11.325942993164062 + ], + [ + "▁entrepreneurs", + -11.32613754272461 + ], + [ + "▁accepting", + -11.326332092285156 + ], + [ + "▁sacrifice", + -11.326595306396484 + ], + [ + "▁underground", + -11.326701164245605 + ], + [ + "▁Muslims", + -11.326805114746094 + ], + [ + "▁shades", + -11.32692813873291 + ], + [ + "▁scary", + -11.32697868347168 + ], + [ + "▁darkness", + -11.327048301696777 + ], + [ + "▁Technical", + -11.327281951904297 + ], + [ + "▁Hawaii", + -11.327402114868164 + ], + [ + "▁shipped", + -11.32785701751709 + ], + [ + "▁Flash", + -11.32789134979248 + ], + [ + "▁airline", + -11.328064918518066 + ], + [ + "▁gaining", + -11.328328132629395 + ], + [ + "▁bi", + -11.328378677368164 + ], + [ + "▁predict", + -11.328508377075195 + ], + [ + "▁informative", + -11.328584671020508 + ], + [ + "▁executed", + -11.329118728637695 + ], + [ + "▁Phone", + -11.32919692993164 + ], + [ + "▁radical", + -11.329628944396973 + ], + [ + "▁HTML", + -11.329899787902832 + ], + [ + "▁presenting", + -11.330182075500488 + ], + [ + "▁humor", + -11.330415725708008 + ], + [ + "▁exceed", + -11.330596923828125 + ], + [ + "▁assists", + -11.330842971801758 + ], + [ + "▁dried", + -11.3311128616333 + ], + [ + "▁ME", + -11.331254005432129 + ], + [ + "▁explaining", + -11.331541061401367 + ], + [ + "▁intimate", + -11.331645965576172 + ], + [ + "▁preferences", + -11.331711769104004 + ], + [ + "▁regarded", + -11.331787109375 + ], + [ + "kin", + -11.33212661743164 + ], + [ + "▁physics", + -11.332183837890625 + ], + [ + "▁utilized", + -11.332271575927734 + ], + [ + "▁Falls", + -11.332276344299316 + ], + [ + "▁subsequently", + -11.332327842712402 + ], + [ + "▁ha", + -11.33287239074707 + ], + [ + "▁literary", + -11.332893371582031 + ], + [ + "▁cognitive", + -11.33299446105957 + ], + [ + "▁Graham", + -11.333765983581543 + ], + [ + "▁hiking", + -11.333927154541016 + ], + [ + "▁dive", + -11.334056854248047 + ], + [ + "▁mere", + -11.33407974243164 + ], + [ + "▁tropical", + -11.334193229675293 + ], + [ + "▁decreased", + -11.334219932556152 + ], + [ + "▁Century", + -11.334274291992188 + ], + [ + "▁canvas", + -11.334294319152832 + ], + [ + "▁Fresh", + -11.334376335144043 + ], + [ + "▁Title", + -11.334485054016113 + ], + [ + "▁mineral", + -11.33510971069336 + ], + [ + "▁Jerusalem", + -11.335261344909668 + ], + [ + "▁wondered", + -11.335346221923828 + ], + [ + "nt", + -11.335611343383789 + ], + [ + "▁Laura", + -11.335784912109375 + ], + [ + "▁readily", + -11.33586597442627 + ], + [ + "▁HERE", + -11.335929870605469 + ], + [ + "▁supportive", + -11.336005210876465 + ], + [ + "▁protective", + -11.336241722106934 + ], + [ + "▁GPS", + -11.336299896240234 + ], + [ + "▁preventing", + -11.33676815032959 + ], + [ + "red", + -11.336854934692383 + ], + [ + "▁detected", + -11.33696460723877 + ], + [ + "▁Results", + -11.336974143981934 + ], + [ + "▁veterans", + -11.336989402770996 + ], + [ + "▁Lab", + -11.337224006652832 + ], + [ + "▁combines", + -11.337230682373047 + ], + [ + "▁reaches", + -11.3373441696167 + ], + [ + "▁shine", + -11.337591171264648 + ], + [ + "▁Indonesia", + -11.337677955627441 + ], + [ + "▁texts", + -11.338423728942871 + ], + [ + "▁consensus", + -11.338955879211426 + ], + [ + "▁Duke", + -11.340057373046875 + ], + [ + "▁highlighted", + -11.3401517868042 + ], + [ + "▁broader", + -11.340568542480469 + ], + [ + "▁opponents", + -11.341073036193848 + ], + [ + "▁lands", + -11.341111183166504 + ], + [ + "▁instructor", + -11.341140747070312 + ], + [ + "▁praise", + -11.341147422790527 + ], + [ + "water", + -11.341177940368652 + ], + [ + "▁outdoors", + -11.341253280639648 + ], + [ + "▁stays", + -11.341343879699707 + ], + [ + "▁enjoys", + -11.341444969177246 + ], + [ + "▁Culture", + -11.341550827026367 + ], + [ + "▁widespread", + -11.34158992767334 + ], + [ + "▁particles", + -11.341599464416504 + ], + [ + "▁Technologies", + -11.341893196105957 + ], + [ + "▁custody", + -11.341944694519043 + ], + [ + "▁Coach", + -11.34196949005127 + ], + [ + "▁charm", + -11.341984748840332 + ], + [ + "▁Deep", + -11.342076301574707 + ], + [ + "▁Got", + -11.342437744140625 + ], + [ + "▁floating", + -11.342484474182129 + ], + [ + "▁wines", + -11.34261703491211 + ], + [ + "▁districts", + -11.34277057647705 + ], + [ + "▁Fine", + -11.342855453491211 + ], + [ + "▁journalist", + -11.342857360839844 + ], + [ + "▁additionally", + -11.342878341674805 + ], + [ + "▁homework", + -11.343055725097656 + ], + [ + "▁Harvard", + -11.343233108520508 + ], + [ + "▁LOVE", + -11.34351921081543 + ], + [ + "▁spouse", + -11.343633651733398 + ], + [ + "▁waited", + -11.343697547912598 + ], + [ + "▁Alaska", + -11.343729972839355 + ], + [ + "▁query", + -11.344208717346191 + ], + [ + "▁camping", + -11.34447193145752 + ], + [ + "▁Jennifer", + -11.344511985778809 + ], + [ + "▁Throughout", + -11.344559669494629 + ], + [ + "▁pointing", + -11.344626426696777 + ], + [ + "▁Account", + -11.345173835754395 + ], + [ + "▁charts", + -11.3454008102417 + ], + [ + "▁forex", + -11.346123695373535 + ], + [ + "▁epic", + -11.346647262573242 + ], + [ + "▁partial", + -11.346920013427734 + ], + [ + "▁arise", + -11.347634315490723 + ], + [ + "▁Schools", + -11.347944259643555 + ], + [ + "▁predicted", + -11.34841251373291 + ], + [ + "▁Beijing", + -11.348499298095703 + ], + [ + "▁Steven", + -11.348504066467285 + ], + [ + "85", + -11.348584175109863 + ], + [ + "▁Christopher", + -11.348609924316406 + ], + [ + "▁courage", + -11.349472999572754 + ], + [ + "▁Baltimore", + -11.350001335144043 + ], + [ + "▁contributing", + -11.350361824035645 + ], + [ + "▁Register", + -11.350460052490234 + ], + [ + "▁cialis", + -11.350669860839844 + ], + [ + "▁terrorist", + -11.350835800170898 + ], + [ + "▁struggled", + -11.351009368896484 + ], + [ + "bo", + -11.351076126098633 + ], + [ + "▁landed", + -11.351449012756348 + ], + [ + "▁Native", + -11.351659774780273 + ], + [ + "▁blade", + -11.351665496826172 + ], + [ + "▁affecting", + -11.351702690124512 + ], + [ + "yard", + -11.351884841918945 + ], + [ + "▁specialty", + -11.351914405822754 + ], + [ + "▁screens", + -11.35204029083252 + ], + [ + "▁Dubai", + -11.352079391479492 + ], + [ + "▁Aaron", + -11.352088928222656 + ], + [ + "▁forming", + -11.352274894714355 + ], + [ + "▁Oak", + -11.352356910705566 + ], + [ + "▁Maine", + -11.352455139160156 + ], + [ + "▁solving", + -11.352507591247559 + ], + [ + "▁establishing", + -11.352624893188477 + ], + [ + "▁barrier", + -11.352761268615723 + ], + [ + "▁flavors", + -11.352986335754395 + ], + [ + "▁Ok", + -11.353218078613281 + ], + [ + "▁pit", + -11.353228569030762 + ], + [ + "▁Remove", + -11.353564262390137 + ], + [ + "▁GM", + -11.353894233703613 + ], + [ + "▁bow", + -11.353952407836914 + ], + [ + "▁Consider", + -11.353964805603027 + ], + [ + "size", + -11.354019165039062 + ], + [ + "▁resolved", + -11.354348182678223 + ], + [ + "▁notification", + -11.354388236999512 + ], + [ + "▁Gordon", + -11.354520797729492 + ], + [ + "▁folk", + -11.354532241821289 + ], + [ + "▁crown", + -11.35476303100586 + ], + [ + "▁patience", + -11.35483169555664 + ], + [ + "▁toxic", + -11.35540771484375 + ], + [ + "▁unnecessary", + -11.355430603027344 + ], + [ + "▁Prize", + -11.355450630187988 + ], + [ + "▁examined", + -11.355704307556152 + ], + [ + "▁Toyota", + -11.355803489685059 + ], + [ + "▁peers", + -11.35600471496582 + ], + [ + "▁libraries", + -11.356409072875977 + ], + [ + "▁tends", + -11.356759071350098 + ], + [ + "▁Ho", + -11.356975555419922 + ], + [ + "▁flip", + -11.357043266296387 + ], + [ + "▁variations", + -11.35708999633789 + ], + [ + "▁adventures", + -11.3571195602417 + ], + [ + "▁optical", + -11.357257843017578 + ], + [ + "▁Euro", + -11.357776641845703 + ], + [ + "berg", + -11.357873916625977 + ], + [ + "▁Sean", + -11.358830451965332 + ], + [ + "▁abstract", + -11.358978271484375 + ], + [ + "▁debris", + -11.359320640563965 + ], + [ + "▁plugin", + -11.359320640563965 + ], + [ + "▁Heat", + -11.35932731628418 + ], + [ + "▁investigating", + -11.359773635864258 + ], + [ + "▁Holiday", + -11.35996150970459 + ], + [ + "▁dated", + -11.35996150970459 + ], + [ + "▁pockets", + -11.360084533691406 + ], + [ + "▁continuously", + -11.360160827636719 + ], + [ + "▁notable", + -11.360306739807129 + ], + [ + "▁Tokyo", + -11.3604736328125 + ], + [ + "▁straightforward", + -11.360857009887695 + ], + [ + "▁filters", + -11.361125946044922 + ], + [ + "▁minority", + -11.36113166809082 + ], + [ + "▁03", + -11.361238479614258 + ], + [ + "▁Others", + -11.361274719238281 + ], + [ + "▁navigation", + -11.361285209655762 + ], + [ + "▁courtesy", + -11.361471176147461 + ], + [ + "▁facial", + -11.361557960510254 + ], + [ + "▁targeting", + -11.362421989440918 + ], + [ + "▁Nelson", + -11.362492561340332 + ], + [ + "▁modules", + -11.363016128540039 + ], + [ + "▁Swiss", + -11.363101959228516 + ], + [ + "▁kingdom", + -11.363571166992188 + ], + [ + "▁preference", + -11.363637924194336 + ], + [ + "▁Sweet", + -11.363765716552734 + ], + [ + "▁Palace", + -11.363853454589844 + ], + [ + "▁precision", + -11.363943099975586 + ], + [ + "▁girlfriend", + -11.364187240600586 + ], + [ + "▁careers", + -11.364463806152344 + ], + [ + "▁1986", + -11.364555358886719 + ], + [ + "▁dimension", + -11.364559173583984 + ], + [ + "▁Turkish", + -11.364592552185059 + ], + [ + "▁thankful", + -11.364762306213379 + ], + [ + "▁boyfriend", + -11.365013122558594 + ], + [ + "▁ISO", + -11.365105628967285 + ], + [ + "▁stack", + -11.365401268005371 + ], + [ + "▁analyst", + -11.365410804748535 + ], + [ + "▁booked", + -11.365506172180176 + ], + [ + "▁Carter", + -11.365528106689453 + ], + [ + "▁Storage", + -11.365571022033691 + ], + [ + "▁broker", + -11.36570930480957 + ], + [ + "▁SC", + -11.36578369140625 + ], + [ + "▁§", + -11.365802764892578 + ], + [ + "▁adjacent", + -11.36582088470459 + ], + [ + "▁350", + -11.365832328796387 + ], + [ + "▁cleaner", + -11.366019248962402 + ], + [ + "▁Certified", + -11.366186141967773 + ], + [ + "▁Craig", + -11.366449356079102 + ], + [ + "▁compound", + -11.366630554199219 + ], + [ + "▁Fish", + -11.366921424865723 + ], + [ + "▁innocent", + -11.366950988769531 + ], + [ + "69", + -11.367146492004395 + ], + [ + "looking", + -11.367157936096191 + ], + [ + "▁appealing", + -11.367177963256836 + ], + [ + "▁favorites", + -11.367688179016113 + ], + [ + "▁Index", + -11.368293762207031 + ], + [ + "▁sooner", + -11.368575096130371 + ], + [ + "▁royal", + -11.368631362915039 + ], + [ + "▁momentum", + -11.368938446044922 + ], + [ + "gov", + -11.369281768798828 + ], + [ + "▁Blood", + -11.369766235351562 + ], + [ + "▁blank", + -11.369941711425781 + ], + [ + "▁101", + -11.370514869689941 + ], + [ + "depth", + -11.370573997497559 + ], + [ + "▁logical", + -11.370658874511719 + ], + [ + "700", + -11.370721817016602 + ], + [ + "▁Motor", + -11.370777130126953 + ], + [ + "▁google", + -11.371139526367188 + ], + [ + "les", + -11.371164321899414 + ], + [ + "▁wound", + -11.371224403381348 + ], + [ + "▁symbols", + -11.3714017868042 + ], + [ + "▁perceived", + -11.37141227722168 + ], + [ + "▁sensors", + -11.371768951416016 + ], + [ + "▁Switzerland", + -11.371809959411621 + ], + [ + "▁holy", + -11.372039794921875 + ], + [ + "▁easiest", + -11.372406959533691 + ], + [ + "▁seasonal", + -11.372418403625488 + ], + [ + "▁discrimination", + -11.372798919677734 + ], + [ + "▁valve", + -11.372952461242676 + ], + [ + "▁internationally", + -11.372953414916992 + ], + [ + "▁electronics", + -11.373109817504883 + ], + [ + "▁embodiment", + -11.373247146606445 + ], + [ + "▁inclusion", + -11.373285293579102 + ], + [ + "▁Song", + -11.373323440551758 + ], + [ + "▁voter", + -11.373537063598633 + ], + [ + "▁functioning", + -11.373844146728516 + ], + [ + "▁dig", + -11.373930931091309 + ], + [ + "▁killer", + -11.373955726623535 + ], + [ + "ol", + -11.374129295349121 + ], + [ + "▁queen", + -11.374412536621094 + ], + [ + "▁legally", + -11.374446868896484 + ], + [ + "▁Parker", + -11.37490463256836 + ], + [ + "▁colleges", + -11.375 + ], + [ + "▁AS", + -11.37508487701416 + ], + [ + "▁grows", + -11.375176429748535 + ], + [ + "▁migration", + -11.37533950805664 + ], + [ + "mer", + -11.375389099121094 + ], + [ + "▁ink", + -11.375468254089355 + ], + [ + "▁1987", + -11.375785827636719 + ], + [ + "▁reasonably", + -11.37594223022461 + ], + [ + "▁consult", + -11.376439094543457 + ], + [ + "service", + -11.376849174499512 + ], + [ + "▁thermal", + -11.376885414123535 + ], + [ + "▁trauma", + -11.376958847045898 + ], + [ + "▁journalists", + -11.377110481262207 + ], + [ + "2012", + -11.377412796020508 + ], + [ + "▁Cooper", + -11.37747573852539 + ], + [ + "▁heated", + -11.377776145935059 + ], + [ + "▁sustainability", + -11.377904891967773 + ], + [ + "▁algorithm", + -11.378127098083496 + ], + [ + "▁horrible", + -11.37917709350586 + ], + [ + "▁fridge", + -11.379317283630371 + ], + [ + "▁classified", + -11.37933349609375 + ], + [ + "▁generating", + -11.379388809204102 + ], + [ + "▁Mix", + -11.379414558410645 + ], + [ + "▁None", + -11.379725456237793 + ], + [ + "▁formats", + -11.379796028137207 + ], + [ + "▁integrate", + -11.379871368408203 + ], + [ + "▁surgical", + -11.380070686340332 + ], + [ + "▁costly", + -11.380082130432129 + ], + [ + "▁attracted", + -11.380229949951172 + ], + [ + "▁Earlier", + -11.380301475524902 + ], + [ + "room", + -11.380328178405762 + ], + [ + "▁employ", + -11.38039493560791 + ], + [ + "▁ethical", + -11.380414009094238 + ], + [ + "▁forgot", + -11.380627632141113 + ], + [ + "▁cleaned", + -11.380703926086426 + ], + [ + "▁daughters", + -11.380844116210938 + ], + [ + "▁Dragon", + -11.38094711303711 + ], + [ + "▁donated", + -11.381010055541992 + ], + [ + "▁accessed", + -11.381049156188965 + ], + [ + "▁beside", + -11.381109237670898 + ], + [ + "▁Associated", + -11.381196975708008 + ], + [ + "▁imaging", + -11.381473541259766 + ], + [ + "▁individually", + -11.381534576416016 + ], + [ + "▁grades", + -11.381569862365723 + ], + [ + "▁cord", + -11.381608963012695 + ], + [ + "▁Du", + -11.381752967834473 + ], + [ + "▁pipeline", + -11.381786346435547 + ], + [ + "▁Pa", + -11.382026672363281 + ], + [ + "▁conducting", + -11.382271766662598 + ], + [ + "▁Nevertheless", + -11.382502555847168 + ], + [ + "▁Hair", + -11.382522583007812 + ], + [ + "▁Intel", + -11.38253116607666 + ], + [ + "▁tiles", + -11.382542610168457 + ], + [ + "ous", + -11.382628440856934 + ], + [ + "▁transit", + -11.382745742797852 + ], + [ + "▁sex", + -11.382759094238281 + ], + [ + "▁Senator", + -11.382761001586914 + ], + [ + "▁resist", + -11.382824897766113 + ], + [ + "now", + -11.382832527160645 + ], + [ + "▁recycling", + -11.382965087890625 + ], + [ + "▁portal", + -11.383004188537598 + ], + [ + "▁Na", + -11.383259773254395 + ], + [ + "▁Medicare", + -11.383732795715332 + ], + [ + "▁lovers", + -11.38375186920166 + ], + [ + "▁speeds", + -11.384003639221191 + ], + [ + "▁linear", + -11.384057998657227 + ], + [ + "▁challenged", + -11.384130477905273 + ], + [ + "▁soap", + -11.384294509887695 + ], + [ + "ney", + -11.384833335876465 + ], + [ + "▁poem", + -11.384875297546387 + ], + [ + "▁59", + -11.384990692138672 + ], + [ + "▁Ad", + -11.384992599487305 + ], + [ + "▁wallpaper", + -11.38516902923584 + ], + [ + "▁teens", + -11.38554859161377 + ], + [ + "▁Bed", + -11.385773658752441 + ], + [ + "▁Walk", + -11.38605785369873 + ], + [ + "▁barrel", + -11.38634967803955 + ], + [ + "▁trains", + -11.386360168457031 + ], + [ + "▁Send", + -11.386390686035156 + ], + [ + "▁ka", + -11.386421203613281 + ], + [ + "▁coins", + -11.386534690856934 + ], + [ + "▁accurately", + -11.387303352355957 + ], + [ + "▁substitute", + -11.387350082397461 + ], + [ + "▁Almost", + -11.387605667114258 + ], + [ + "some", + -11.387833595275879 + ], + [ + "▁supplements", + -11.387932777404785 + ], + [ + "▁cleared", + -11.38803482055664 + ], + [ + "▁pile", + -11.38812255859375 + ], + [ + "▁critics", + -11.388259887695312 + ], + [ + "▁ed", + -11.388267517089844 + ], + [ + "▁Freedom", + -11.388394355773926 + ], + [ + "▁Fashion", + -11.3885498046875 + ], + [ + "Man", + -11.388655662536621 + ], + [ + "▁paths", + -11.388724327087402 + ], + [ + "▁breach", + -11.388754844665527 + ], + [ + "▁ethnic", + -11.388930320739746 + ], + [ + "▁bomb", + -11.389181137084961 + ], + [ + "▁coin", + -11.389493942260742 + ], + [ + "▁institutional", + -11.389568328857422 + ], + [ + "▁Pop", + -11.389874458312988 + ], + [ + "kg", + -11.389907836914062 + ], + [ + "▁flows", + -11.391024589538574 + ], + [ + "▁delicate", + -11.391077041625977 + ], + [ + "▁Thai", + -11.391337394714355 + ], + [ + "▁Independent", + -11.391414642333984 + ], + [ + "▁mobility", + -11.39157485961914 + ], + [ + "▁intend", + -11.391576766967773 + ], + [ + "▁Caribbean", + -11.391674995422363 + ], + [ + "▁distinctive", + -11.391905784606934 + ], + [ + "▁phenomenon", + -11.391931533813477 + ], + [ + "▁lounge", + -11.392053604125977 + ], + [ + "▁clarity", + -11.392143249511719 + ], + [ + "▁freely", + -11.392196655273438 + ], + [ + "▁wings", + -11.392359733581543 + ], + [ + "▁DIY", + -11.392630577087402 + ], + [ + "▁recipient", + -11.392637252807617 + ], + [ + "▁automotive", + -11.392683029174805 + ], + [ + "▁syndrome", + -11.392905235290527 + ], + [ + "▁prayers", + -11.392924308776855 + ], + [ + "▁Beyond", + -11.393016815185547 + ], + [ + "▁pose", + -11.393109321594238 + ], + [ + "▁partially", + -11.393299102783203 + ], + [ + "▁stairs", + -11.39332103729248 + ], + [ + "▁audit", + -11.393519401550293 + ], + [ + "▁priorities", + -11.39359188079834 + ], + [ + "▁Base", + -11.39383602142334 + ], + [ + "▁tub", + -11.393921852111816 + ], + [ + "▁vocal", + -11.394133567810059 + ], + [ + "▁picks", + -11.394692420959473 + ], + [ + "▁Excellent", + -11.394806861877441 + ], + [ + "▁vessels", + -11.39554500579834 + ], + [ + "▁automation", + -11.395881652832031 + ], + [ + "▁executives", + -11.395913124084473 + ], + [ + "▁flesh", + -11.395954132080078 + ], + [ + "▁heal", + -11.396746635437012 + ], + [ + "▁eager", + -11.39716625213623 + ], + [ + "▁vendor", + -11.39719009399414 + ], + [ + "▁Syrian", + -11.397236824035645 + ], + [ + "▁abortion", + -11.39746379852295 + ], + [ + "▁observation", + -11.397507667541504 + ], + [ + "▁subscribe", + -11.397605895996094 + ], + [ + "▁luxurious", + -11.397811889648438 + ], + [ + "▁Wayne", + -11.398002624511719 + ], + [ + "▁valley", + -11.398153305053711 + ], + [ + "▁shake", + -11.398256301879883 + ], + [ + "▁infections", + -11.398375511169434 + ], + [ + "▁chemistry", + -11.398653030395508 + ], + [ + "▁embedded", + -11.398812294006348 + ], + [ + "▁tailored", + -11.398818969726562 + ], + [ + "▁suspected", + -11.399206161499023 + ], + [ + "▁alter", + -11.399372100830078 + ], + [ + "▁premier", + -11.399385452270508 + ], + [ + "white", + -11.399412155151367 + ], + [ + "▁Singh", + -11.39951229095459 + ], + [ + "▁dealt", + -11.399689674377441 + ], + [ + "▁dresses", + -11.399805068969727 + ], + [ + "▁Spa", + -11.399908065795898 + ], + [ + "▁specially", + -11.400128364562988 + ], + [ + "▁occasional", + -11.400165557861328 + ], + [ + "▁Med", + -11.400716781616211 + ], + [ + "▁promoted", + -11.400728225708008 + ], + [ + "▁98", + -11.400971412658691 + ], + [ + "▁Palm", + -11.401128768920898 + ], + [ + "wing", + -11.401257514953613 + ], + [ + "▁continually", + -11.401272773742676 + ], + [ + "▁Gray", + -11.401285171508789 + ], + [ + "ns", + -11.401522636413574 + ], + [ + "▁revenues", + -11.401710510253906 + ], + [ + "▁dedication", + -11.401755332946777 + ], + [ + "▁serial", + -11.40187931060791 + ], + [ + "▁Days", + -11.401915550231934 + ], + [ + "get", + -11.401927947998047 + ], + [ + "▁testimony", + -11.401952743530273 + ], + [ + "▁Barbara", + -11.402109146118164 + ], + [ + "▁transformed", + -11.402172088623047 + ], + [ + "▁afterwards", + -11.402195930480957 + ], + [ + "▁catalog", + -11.402310371398926 + ], + [ + "▁hesitate", + -11.402531623840332 + ], + [ + "▁Pet", + -11.40272045135498 + ], + [ + "▁nerve", + -11.402729034423828 + ], + [ + "▁occupied", + -11.403116226196289 + ], + [ + "▁lined", + -11.403141021728516 + ], + [ + "▁Question", + -11.403570175170898 + ], + [ + "▁controlling", + -11.403678894042969 + ], + [ + "▁Mars", + -11.403887748718262 + ], + [ + "▁barriers", + -11.404047966003418 + ], + [ + "▁Pi", + -11.404308319091797 + ], + [ + "▁silly", + -11.404841423034668 + ], + [ + "▁longest", + -11.404977798461914 + ], + [ + "▁recruitment", + -11.405025482177734 + ], + [ + "ins", + -11.405308723449707 + ], + [ + "▁sustained", + -11.405332565307617 + ], + [ + "▁legendary", + -11.405394554138184 + ], + [ + "▁63", + -11.405856132507324 + ], + [ + "▁Imagine", + -11.406047821044922 + ], + [ + "▁Animal", + -11.406702995300293 + ], + [ + "▁secrets", + -11.407115936279297 + ], + [ + "▁Letter", + -11.40714168548584 + ], + [ + "▁backing", + -11.407333374023438 + ], + [ + "▁venues", + -11.407384872436523 + ], + [ + "▁convince", + -11.407694816589355 + ], + [ + "▁manufacture", + -11.407702445983887 + ], + [ + "▁pharmacy", + -11.407712936401367 + ], + [ + "▁Especially", + -11.407938957214355 + ], + [ + "▁dramatically", + -11.408066749572754 + ], + [ + "▁tricks", + -11.408171653747559 + ], + [ + "▁coupled", + -11.408370018005371 + ], + [ + "▁Intelligence", + -11.408388137817383 + ], + [ + "▁dynamics", + -11.408738136291504 + ], + [ + "▁Funeral", + -11.40890121459961 + ], + [ + "▁pickup", + -11.40897274017334 + ], + [ + "▁receipt", + -11.409035682678223 + ], + [ + "▁surveillance", + -11.409621238708496 + ], + [ + "▁attributes", + -11.40967845916748 + ], + [ + "step", + -11.409936904907227 + ], + [ + "▁68", + -11.409998893737793 + ], + [ + "▁Arabia", + -11.410059928894043 + ], + [ + "▁Obviously", + -11.410160064697266 + ], + [ + "▁restored", + -11.41032886505127 + ], + [ + "▁Poland", + -11.410689353942871 + ], + [ + "▁Premium", + -11.411012649536133 + ], + [ + "▁Baker", + -11.411172866821289 + ], + [ + "▁stir", + -11.411340713500977 + ], + [ + "▁Warren", + -11.411371231079102 + ], + [ + "▁dominant", + -11.411409378051758 + ], + [ + "▁Mail", + -11.411483764648438 + ], + [ + "▁Hillary", + -11.41157341003418 + ], + [ + "▁magnificent", + -11.411718368530273 + ], + [ + "▁briefly", + -11.411744117736816 + ], + [ + "▁Speed", + -11.411748886108398 + ], + [ + "▁underneath", + -11.411795616149902 + ], + [ + "▁awful", + -11.412006378173828 + ], + [ + "▁Jacob", + -11.412049293518066 + ], + [ + "chi", + -11.412062644958496 + ], + [ + "▁gang", + -11.412333488464355 + ], + [ + "▁cups", + -11.412469863891602 + ], + [ + "▁coastal", + -11.412492752075195 + ], + [ + "▁prospective", + -11.412576675415039 + ], + [ + "▁skip", + -11.412835121154785 + ], + [ + "there", + -11.412890434265137 + ], + [ + "▁tent", + -11.412924766540527 + ], + [ + "▁pics", + -11.413211822509766 + ], + [ + "▁collaborative", + -11.413558006286621 + ], + [ + "▁AR", + -11.413732528686523 + ], + [ + "ities", + -11.41391658782959 + ], + [ + "86", + -11.413946151733398 + ], + [ + "▁publisher", + -11.414210319519043 + ], + [ + "▁disclosure", + -11.414316177368164 + ], + [ + "▁startup", + -11.414473533630371 + ], + [ + "▁banned", + -11.414636611938477 + ], + [ + "▁shelves", + -11.414731979370117 + ], + [ + "▁1984", + -11.414823532104492 + ], + [ + "▁harsh", + -11.414909362792969 + ], + [ + "▁charming", + -11.415016174316406 + ], + [ + "▁chef", + -11.415733337402344 + ], + [ + "ak", + -11.41623592376709 + ], + [ + "▁Text", + -11.416360855102539 + ], + [ + "▁varieties", + -11.416596412658691 + ], + [ + "▁surprisingly", + -11.416741371154785 + ], + [ + "▁NASA", + -11.417092323303223 + ], + [ + "▁governance", + -11.417160034179688 + ], + [ + "▁Feel", + -11.417189598083496 + ], + [ + "▁uncertainty", + -11.417328834533691 + ], + [ + "▁Federation", + -11.417461395263672 + ], + [ + "▁Salt", + -11.417532920837402 + ], + [ + "▁robot", + -11.417726516723633 + ], + [ + "ini", + -11.417847633361816 + ], + [ + "▁gel", + -11.41796875 + ], + [ + "▁programmes", + -11.418657302856445 + ], + [ + "▁privilege", + -11.418811798095703 + ], + [ + "▁permits", + -11.418912887573242 + ], + [ + "▁1985", + -11.41910171508789 + ], + [ + "▁Picture", + -11.419242858886719 + ], + [ + "▁strikes", + -11.419546127319336 + ], + [ + "▁paste", + -11.4197359085083 + ], + [ + "▁Arthur", + -11.419878959655762 + ], + [ + "▁wellness", + -11.42036247253418 + ], + [ + "▁applicants", + -11.420592308044434 + ], + [ + "▁Gift", + -11.421024322509766 + ], + [ + "▁clever", + -11.42111873626709 + ], + [ + "▁recovered", + -11.421119689941406 + ], + [ + "▁nowhere", + -11.421721458435059 + ], + [ + "▁corners", + -11.421774864196777 + ], + [ + "▁promotional", + -11.421819686889648 + ], + [ + "▁Chelsea", + -11.421960830688477 + ], + [ + "▁blast", + -11.422619819641113 + ], + [ + "▁Adams", + -11.422688484191895 + ], + [ + "▁lap", + -11.423112869262695 + ], + [ + "▁Bear", + -11.423264503479004 + ], + [ + "▁Hence", + -11.423343658447266 + ], + [ + "▁CNN", + -11.423552513122559 + ], + [ + "▁lip", + -11.423653602600098 + ], + [ + "▁fate", + -11.423920631408691 + ], + [ + "▁Region", + -11.423990249633789 + ], + [ + "▁Guys", + -11.424210548400879 + ], + [ + "ard", + -11.4244384765625 + ], + [ + "mar", + -11.424720764160156 + ], + [ + "▁Cold", + -11.424765586853027 + ], + [ + "Â", + -11.424891471862793 + ], + [ + "▁Rich", + -11.424896240234375 + ], + [ + "▁Author", + -11.425145149230957 + ], + [ + "▁albums", + -11.425582885742188 + ], + [ + "▁Details", + -11.425602912902832 + ], + [ + "▁animation", + -11.425765037536621 + ], + [ + "▁Hunter", + -11.4258451461792 + ], + [ + "▁comparable", + -11.426175117492676 + ], + [ + "▁struggles", + -11.426192283630371 + ], + [ + "▁61", + -11.426506996154785 + ], + [ + "▁mothers", + -11.426656723022461 + ], + [ + "▁educated", + -11.426725387573242 + ], + [ + "▁respected", + -11.42731761932373 + ], + [ + "▁Rachel", + -11.427518844604492 + ], + [ + "si", + -11.427619934082031 + ], + [ + "▁Diamond", + -11.427682876586914 + ], + [ + "▁incidents", + -11.427825927734375 + ], + [ + "▁Roger", + -11.428058624267578 + ], + [ + "▁theories", + -11.428092002868652 + ], + [ + "▁Wine", + -11.428159713745117 + ], + [ + "▁outlets", + -11.42821216583252 + ], + [ + "▁hockey", + -11.42850399017334 + ], + [ + "▁indicator", + -11.42900276184082 + ], + [ + "▁obtaining", + -11.429076194763184 + ], + [ + "▁Kings", + -11.429520606994629 + ], + [ + "▁Discover", + -11.429661750793457 + ], + [ + "▁pressing", + -11.42972469329834 + ], + [ + "▁deny", + -11.429808616638184 + ], + [ + "▁partly", + -11.429924964904785 + ], + [ + "▁tire", + -11.430036544799805 + ], + [ + "▁destinations", + -11.431050300598145 + ], + [ + "▁companion", + -11.431112289428711 + ], + [ + "▁Grey", + -11.431178092956543 + ], + [ + "▁Movie", + -11.431229591369629 + ], + [ + "non", + -11.43136215209961 + ], + [ + "▁02", + -11.431400299072266 + ], + [ + "▁thrilled", + -11.431769371032715 + ], + [ + "▁adorable", + -11.43183708190918 + ], + [ + "▁renewable", + -11.431888580322266 + ], + [ + "▁magazines", + -11.431930541992188 + ], + [ + "▁Crown", + -11.432304382324219 + ], + [ + "▁THAT", + -11.432425498962402 + ], + [ + "▁Say", + -11.432467460632324 + ], + [ + "▁refugees", + -11.432551383972168 + ], + [ + "▁tasty", + -11.432577133178711 + ], + [ + "▁disabilities", + -11.432760238647461 + ], + [ + "▁welcoming", + -11.432827949523926 + ], + [ + "▁Nevada", + -11.432875633239746 + ], + [ + "▁Wright", + -11.432881355285645 + ], + [ + "▁neighbor", + -11.433025360107422 + ], + [ + "▁batch", + -11.433069229125977 + ], + [ + "▁Grade", + -11.433168411254883 + ], + [ + "▁Shipping", + -11.433289527893066 + ], + [ + "▁NJ", + -11.433379173278809 + ], + [ + "▁Ex", + -11.433647155761719 + ], + [ + "▁NYC", + -11.433690071105957 + ], + [ + "▁evolved", + -11.4338960647583 + ], + [ + "▁semester", + -11.43393611907959 + ], + [ + "▁Rd", + -11.434198379516602 + ], + [ + "▁volumes", + -11.434333801269531 + ], + [ + "▁quoted", + -11.43441104888916 + ], + [ + "▁decorating", + -11.434749603271484 + ], + [ + "▁Mississippi", + -11.434868812561035 + ], + [ + "▁Editor", + -11.43518352508545 + ], + [ + "about", + -11.43558120727539 + ], + [ + "▁Angel", + -11.435873985290527 + ], + [ + "▁Commerce", + -11.435921669006348 + ], + [ + "low", + -11.436013221740723 + ], + [ + "▁WE", + -11.436212539672852 + ], + [ + "▁contrary", + -11.436530113220215 + ], + [ + "▁delight", + -11.436548233032227 + ], + [ + "▁borders", + -11.436637878417969 + ], + [ + "▁comprises", + -11.437126159667969 + ], + [ + "▁emotion", + -11.437129020690918 + ], + [ + "▁Tickets", + -11.437129974365234 + ], + [ + "▁consume", + -11.437410354614258 + ], + [ + "▁Speaker", + -11.437478065490723 + ], + [ + "▁tires", + -11.43748950958252 + ], + [ + "▁ANY", + -11.437557220458984 + ], + [ + "▁Cell", + -11.437565803527832 + ], + [ + "▁hung", + -11.438005447387695 + ], + [ + "▁spotted", + -11.438224792480469 + ], + [ + "▁seventh", + -11.438246726989746 + ], + [ + "▁Either", + -11.438312530517578 + ], + [ + "▁reporter", + -11.438373565673828 + ], + [ + "▁Depending", + -11.438374519348145 + ], + [ + "▁nearest", + -11.43848705291748 + ], + [ + "▁jeans", + -11.438720703125 + ], + [ + "▁08", + -11.439095497131348 + ], + [ + "▁alumni", + -11.439199447631836 + ], + [ + "▁compromise", + -11.439207077026367 + ], + [ + "▁healthier", + -11.43952751159668 + ], + [ + "▁reminds", + -11.439552307128906 + ], + [ + "▁evident", + -11.439724922180176 + ], + [ + "▁Print", + -11.440011024475098 + ], + [ + "▁Location", + -11.44018268585205 + ], + [ + "▁nonprofit", + -11.440228462219238 + ], + [ + "▁Pittsburgh", + -11.440393447875977 + ], + [ + "▁Pinterest", + -11.4404878616333 + ], + [ + "▁stressed", + -11.440605163574219 + ], + [ + "▁WITH", + -11.440635681152344 + ], + [ + "▁relatives", + -11.440666198730469 + ], + [ + "▁Original", + -11.440858840942383 + ], + [ + "▁infected", + -11.441072463989258 + ], + [ + "▁Eye", + -11.44134521484375 + ], + [ + "▁700", + -11.441402435302734 + ], + [ + "▁pairs", + -11.441527366638184 + ], + [ + "▁Pages", + -11.44153881072998 + ], + [ + "▁packing", + -11.44184398651123 + ], + [ + "▁Revolution", + -11.441916465759277 + ], + [ + "▁collapse", + -11.441959381103516 + ], + [ + "▁Write", + -11.442154884338379 + ], + [ + "▁appearing", + -11.442253112792969 + ], + [ + "▁Jimmy", + -11.442641258239746 + ], + [ + "▁Ko", + -11.442975044250488 + ], + [ + "▁Yoga", + -11.443163871765137 + ], + [ + "▁convention", + -11.443174362182617 + ], + [ + "▁mandatory", + -11.44328498840332 + ], + [ + "▁coupons", + -11.443596839904785 + ], + [ + "▁leverage", + -11.443778991699219 + ], + [ + "▁monster", + -11.443933486938477 + ], + [ + "ster", + -11.444411277770996 + ], + [ + "▁lean", + -11.44455337524414 + ], + [ + "▁Audio", + -11.444872856140137 + ], + [ + "ek", + -11.444963455200195 + ], + [ + "▁Drug", + -11.445028305053711 + ], + [ + "▁Ian", + -11.445063591003418 + ], + [ + "▁psychology", + -11.445096969604492 + ], + [ + "▁premises", + -11.445247650146484 + ], + [ + "▁Mind", + -11.445609092712402 + ], + [ + "▁needing", + -11.445876121520996 + ], + [ + "▁encountered", + -11.44594955444336 + ], + [ + "play", + -11.445953369140625 + ], + [ + "▁180", + -11.445996284484863 + ], + [ + "▁ports", + -11.44602108001709 + ], + [ + "▁76", + -11.446022987365723 + ], + [ + "▁Universal", + -11.446178436279297 + ], + [ + "▁bare", + -11.446196556091309 + ], + [ + "▁honored", + -11.446270942687988 + ], + [ + "▁Louisiana", + -11.44637680053711 + ], + [ + "ship", + -11.446389198303223 + ], + [ + "▁manually", + -11.446433067321777 + ], + [ + "▁inquiry", + -11.446444511413574 + ], + [ + "▁mi", + -11.446573257446289 + ], + [ + "▁tactics", + -11.446854591369629 + ], + [ + "▁lane", + -11.447399139404297 + ], + [ + "▁forums", + -11.447583198547363 + ], + [ + "▁07", + -11.447739601135254 + ], + [ + "▁launching", + -11.447890281677246 + ], + [ + "▁describing", + -11.447936058044434 + ], + [ + "Well", + -11.448070526123047 + ], + [ + "▁Lawrence", + -11.448203086853027 + ], + [ + "▁nutrients", + -11.448454856872559 + ], + [ + "▁optimization", + -11.448471069335938 + ], + [ + "▁handles", + -11.448687553405762 + ], + [ + "▁conjunction", + -11.448737144470215 + ], + [ + "▁adjustable", + -11.448814392089844 + ], + [ + "▁hills", + -11.448891639709473 + ], + [ + "▁bother", + -11.448952674865723 + ], + [ + "▁queries", + -11.449041366577148 + ], + [ + "▁deserves", + -11.449088096618652 + ], + [ + "▁traveled", + -11.449113845825195 + ], + [ + "▁tomatoes", + -11.449135780334473 + ], + [ + "▁sanctions", + -11.449140548706055 + ], + [ + "▁Commissioner", + -11.449159622192383 + ], + [ + "▁Nation", + -11.449263572692871 + ], + [ + "▁closure", + -11.450165748596191 + ], + [ + "▁hiding", + -11.450239181518555 + ], + [ + "▁prompt", + -11.450637817382812 + ], + [ + "▁architectural", + -11.451326370239258 + ], + [ + "▁grabbed", + -11.452306747436523 + ], + [ + "▁racial", + -11.452387809753418 + ], + [ + "▁consistency", + -11.45251178741455 + ], + [ + "▁Mc", + -11.45255184173584 + ], + [ + "key", + -11.452560424804688 + ], + [ + "▁novels", + -11.452643394470215 + ], + [ + "▁burned", + -11.452756881713867 + ], + [ + "▁Guard", + -11.453023910522461 + ], + [ + "▁wages", + -11.453144073486328 + ], + [ + "▁activists", + -11.453323364257812 + ], + [ + "2010", + -11.453340530395508 + ], + [ + "▁pays", + -11.453706741333008 + ], + [ + "▁Resume", + -11.45373821258545 + ], + [ + "▁segments", + -11.45397663116455 + ], + [ + "▁terror", + -11.454373359680176 + ], + [ + "▁mysterious", + -11.454524993896484 + ], + [ + "▁rival", + -11.45473861694336 + ], + [ + "▁bikes", + -11.454777717590332 + ], + [ + "▁petition", + -11.455042839050293 + ], + [ + "▁retreat", + -11.455078125 + ], + [ + "▁preview", + -11.455119132995605 + ], + [ + "▁Someone", + -11.455191612243652 + ], + [ + "▁jet", + -11.455381393432617 + ], + [ + "▁unto", + -11.455865859985352 + ], + [ + "▁ca", + -11.455891609191895 + ], + [ + "▁Fortunately", + -11.45596981048584 + ], + [ + "▁practicing", + -11.45620059967041 + ], + [ + "▁draws", + -11.456582069396973 + ], + [ + "▁delayed", + -11.456881523132324 + ], + [ + "▁Going", + -11.456998825073242 + ], + [ + "▁67", + -11.457158088684082 + ], + [ + "▁Born", + -11.457525253295898 + ], + [ + "▁scholars", + -11.457746505737305 + ], + [ + "▁execute", + -11.457795143127441 + ], + [ + "▁eco", + -11.457843780517578 + ], + [ + "▁damn", + -11.45791244506836 + ], + [ + "▁loyalty", + -11.457962036132812 + ], + [ + "▁lifted", + -11.45812702178955 + ], + [ + "▁Cleaning", + -11.458208084106445 + ], + [ + "▁Douglas", + -11.458263397216797 + ], + [ + "▁Murray", + -11.4584321975708 + ], + [ + "▁FDA", + -11.458465576171875 + ], + [ + "▁Deputy", + -11.458806037902832 + ], + [ + "▁Ram", + -11.459136962890625 + ], + [ + "PM", + -11.45914363861084 + ], + [ + "▁villages", + -11.459175109863281 + ], + [ + "▁sunny", + -11.459242820739746 + ], + [ + "▁independently", + -11.459307670593262 + ], + [ + "▁Franklin", + -11.459927558898926 + ], + [ + "▁divine", + -11.460938453674316 + ], + [ + "▁Summit", + -11.461020469665527 + ], + [ + "▁kits", + -11.461660385131836 + ], + [ + "▁Inn", + -11.461792945861816 + ], + [ + "▁organised", + -11.461838722229004 + ], + [ + "▁crying", + -11.461882591247559 + ], + [ + "▁VPN", + -11.461926460266113 + ], + [ + "▁cyber", + -11.46242618560791 + ], + [ + "▁Unless", + -11.46250057220459 + ], + [ + "▁steal", + -11.462618827819824 + ], + [ + "▁machinery", + -11.462656021118164 + ], + [ + "▁Connecticut", + -11.462668418884277 + ], + [ + "▁vegetable", + -11.462698936462402 + ], + [ + "▁von", + -11.462798118591309 + ], + [ + "▁desires", + -11.46294116973877 + ], + [ + "▁Corporate", + -11.462966918945312 + ], + [ + "▁Engine", + -11.463323593139648 + ], + [ + "isation", + -11.463451385498047 + ], + [ + "▁Barcelona", + -11.463558197021484 + ], + [ + "▁homeowners", + -11.463604927062988 + ], + [ + "▁Race", + -11.463611602783203 + ], + [ + "▁homeless", + -11.463967323303223 + ], + [ + "▁Mining", + -11.464055061340332 + ], + [ + "▁shocked", + -11.464506149291992 + ], + [ + "▁observations", + -11.4645414352417 + ], + [ + "▁minimize", + -11.464606285095215 + ], + [ + "▁aesthetic", + -11.46461296081543 + ], + [ + "▁graduation", + -11.46478271484375 + ], + [ + "▁safer", + -11.464909553527832 + ], + [ + "▁costume", + -11.465054512023926 + ], + [ + "▁profitable", + -11.465069770812988 + ], + [ + "▁acute", + -11.465094566345215 + ], + [ + "stone", + -11.465102195739746 + ], + [ + "▁sensitivity", + -11.465219497680664 + ], + [ + "▁existed", + -11.46523666381836 + ], + [ + "▁warrant", + -11.465282440185547 + ], + [ + "▁approaching", + -11.465349197387695 + ], + [ + "▁dairy", + -11.465349197387695 + ], + [ + "LY", + -11.465673446655273 + ], + [ + "▁responsive", + -11.465681076049805 + ], + [ + "▁Solar", + -11.46621322631836 + ], + [ + "ola", + -11.466251373291016 + ], + [ + "▁bias", + -11.466269493103027 + ], + [ + "▁indication", + -11.466452598571777 + ], + [ + "school", + -11.466483116149902 + ], + [ + "▁listened", + -11.466550827026367 + ], + [ + "▁000", + -11.466571807861328 + ], + [ + "▁chapters", + -11.466626167297363 + ], + [ + "▁crafted", + -11.466771125793457 + ], + [ + "▁ate", + -11.46684455871582 + ], + [ + "▁Seven", + -11.466967582702637 + ], + [ + "▁bugs", + -11.467103004455566 + ], + [ + "▁singles", + -11.467406272888184 + ], + [ + "▁span", + -11.467499732971191 + ], + [ + "▁construct", + -11.467666625976562 + ], + [ + "▁Honda", + -11.467964172363281 + ], + [ + "▁Palestinian", + -11.468204498291016 + ], + [ + "▁median", + -11.468244552612305 + ], + [ + "▁triple", + -11.468546867370605 + ], + [ + "▁donate", + -11.468615531921387 + ], + [ + "▁introducing", + -11.468657493591309 + ], + [ + "▁farming", + -11.469118118286133 + ], + [ + "▁Stewart", + -11.469183921813965 + ], + [ + "▁fold", + -11.469388008117676 + ], + [ + "▁asleep", + -11.469636917114258 + ], + [ + "▁acknowledged", + -11.469976425170898 + ], + [ + "driven", + -11.470776557922363 + ], + [ + "▁circles", + -11.470908164978027 + ], + [ + "▁proportion", + -11.470911979675293 + ], + [ + "▁integral", + -11.471023559570312 + ], + [ + "▁Starting", + -11.471240997314453 + ], + [ + "▁pension", + -11.471334457397461 + ], + [ + "▁stamp", + -11.471443176269531 + ], + [ + "▁desperate", + -11.47158432006836 + ], + [ + "▁snap", + -11.471715927124023 + ], + [ + "▁max", + -11.471734046936035 + ], + [ + "▁statistical", + -11.471874237060547 + ], + [ + "▁09", + -11.471996307373047 + ], + [ + "▁lit", + -11.472275733947754 + ], + [ + "▁Awesome", + -11.472344398498535 + ], + [ + "▁legislative", + -11.472400665283203 + ], + [ + "▁lenses", + -11.47240924835205 + ], + [ + "ring", + -11.472944259643555 + ], + [ + "▁Larry", + -11.473052978515625 + ], + [ + "Why", + -11.473252296447754 + ], + [ + "▁palm", + -11.473311424255371 + ], + [ + "▁jumping", + -11.473428726196289 + ], + [ + "▁Mi", + -11.473713874816895 + ], + [ + "▁appearances", + -11.473945617675781 + ], + [ + "▁traders", + -11.474552154541016 + ], + [ + "▁bat", + -11.47465991973877 + ], + [ + "vi", + -11.47476863861084 + ], + [ + "▁households", + -11.474964141845703 + ], + [ + "▁theft", + -11.475008010864258 + ], + [ + "▁oak", + -11.475457191467285 + ], + [ + "2011", + -11.475595474243164 + ], + [ + "▁kicked", + -11.476029396057129 + ], + [ + "▁Marie", + -11.476612091064453 + ], + [ + "67", + -11.477105140686035 + ], + [ + "▁Leave", + -11.477727890014648 + ], + [ + "▁globally", + -11.477958679199219 + ], + [ + "▁jurisdiction", + -11.478022575378418 + ], + [ + "▁panic", + -11.478170394897461 + ], + [ + "▁Pack", + -11.478394508361816 + ], + [ + "▁adjustment", + -11.478506088256836 + ], + [ + "▁talents", + -11.478525161743164 + ], + [ + "▁liable", + -11.479191780090332 + ], + [ + "▁consisting", + -11.47932243347168 + ], + [ + "▁GOP", + -11.479631423950195 + ], + [ + "▁93", + -11.479681968688965 + ], + [ + "▁insert", + -11.479765892028809 + ], + [ + "▁translated", + -11.480008125305176 + ], + [ + "▁owns", + -11.480073928833008 + ], + [ + "▁Pink", + -11.48038387298584 + ], + [ + "view", + -11.480473518371582 + ], + [ + "ance", + -11.480513572692871 + ], + [ + "▁niche", + -11.480528831481934 + ], + [ + "▁adapted", + -11.480537414550781 + ], + [ + "、", + -11.480712890625 + ], + [ + "▁Campbell", + -11.480810165405273 + ], + [ + "▁reads", + -11.480857849121094 + ], + [ + "▁Dublin", + -11.4810209274292 + ], + [ + "▁Left", + -11.481179237365723 + ], + [ + "▁investigations", + -11.481374740600586 + ], + [ + "▁throat", + -11.482110977172852 + ], + [ + "▁den", + -11.482473373413086 + ], + [ + "▁Beauty", + -11.482644081115723 + ], + [ + "▁taxi", + -11.482870101928711 + ], + [ + "ger", + -11.482894897460938 + ], + [ + "▁transparency", + -11.483015060424805 + ], + [ + "▁rolls", + -11.483223915100098 + ], + [ + "▁arriving", + -11.483260154724121 + ], + [ + "▁prescribed", + -11.483514785766602 + ], + [ + "▁molecular", + -11.483941078186035 + ], + [ + "▁ore", + -11.484036445617676 + ], + [ + "▁visibility", + -11.48413372039795 + ], + [ + "▁Ridge", + -11.48421859741211 + ], + [ + "▁Fed", + -11.484381675720215 + ], + [ + "▁Former", + -11.484405517578125 + ], + [ + "▁newer", + -11.484576225280762 + ], + [ + "▁protests", + -11.484619140625 + ], + [ + "▁indicating", + -11.485156059265137 + ], + [ + "▁SA", + -11.485472679138184 + ], + [ + "▁monetary", + -11.485616683959961 + ], + [ + "▁Costa", + -11.485684394836426 + ], + [ + "▁FC", + -11.485895156860352 + ], + [ + "▁Ultra", + -11.486078262329102 + ], + [ + "▁Kindle", + -11.4862060546875 + ], + [ + "▁snack", + -11.48629093170166 + ], + [ + "win", + -11.486433029174805 + ], + [ + "▁Chamber", + -11.486451148986816 + ], + [ + "▁pound", + -11.486818313598633 + ], + [ + "▁therapeutic", + -11.486932754516602 + ], + [ + "▁Emily", + -11.487168312072754 + ], + [ + "▁mayor", + -11.48717975616455 + ], + [ + "▁Karen", + -11.487382888793945 + ], + [ + "▁Restaurant", + -11.487396240234375 + ], + [ + "▁Leader", + -11.487770080566406 + ], + [ + "▁Bi", + -11.487998962402344 + ], + [ + "▁pork", + -11.488053321838379 + ], + [ + "▁clay", + -11.488421440124512 + ], + [ + "▁Trans", + -11.488658905029297 + ], + [ + "▁react", + -11.488658905029297 + ], + [ + "▁woods", + -11.488838195800781 + ], + [ + "hi", + -11.488890647888184 + ], + [ + "▁ya", + -11.488893508911133 + ], + [ + "▁Lots", + -11.489013671875 + ], + [ + "▁affair", + -11.48928165435791 + ], + [ + "▁educate", + -11.489714622497559 + ], + [ + "▁Alice", + -11.489789009094238 + ], + [ + "▁Fan", + -11.48989486694336 + ], + [ + "ball", + -11.490286827087402 + ], + [ + "▁convicted", + -11.490376472473145 + ], + [ + "▁sponsor", + -11.490411758422852 + ], + [ + "▁Roy", + -11.490734100341797 + ], + [ + "▁discretion", + -11.49075698852539 + ], + [ + "▁Madison", + -11.490849494934082 + ], + [ + "▁varying", + -11.490941047668457 + ], + [ + "▁ridiculous", + -11.491071701049805 + ], + [ + "▁quarterback", + -11.491141319274902 + ], + [ + "▁outline", + -11.49116039276123 + ], + [ + "▁Manhattan", + -11.491381645202637 + ], + [ + "▁allies", + -11.491910934448242 + ], + [ + "▁wheat", + -11.491926193237305 + ], + [ + "▁orientation", + -11.49194622039795 + ], + [ + "▁Crystal", + -11.492124557495117 + ], + [ + "ang", + -11.492256164550781 + ], + [ + "▁attraction", + -11.492323875427246 + ], + [ + "▁prestigious", + -11.492597579956055 + ], + [ + "▁conferences", + -11.492940902709961 + ], + [ + "▁annoying", + -11.493179321289062 + ], + [ + "▁concentrate", + -11.493265151977539 + ], + [ + "2000", + -11.493281364440918 + ], + [ + "▁comparing", + -11.49372673034668 + ], + [ + "▁fur", + -11.494033813476562 + ], + [ + "▁synthetic", + -11.494378089904785 + ], + [ + "▁deadly", + -11.494414329528809 + ], + [ + "▁admin", + -11.494452476501465 + ], + [ + "▁tribute", + -11.494540214538574 + ], + [ + "▁neat", + -11.494637489318848 + ], + [ + "▁CBS", + -11.494665145874023 + ], + [ + "▁Jerry", + -11.495138168334961 + ], + [ + "▁Robinson", + -11.495369911193848 + ], + [ + "▁legend", + -11.4954195022583 + ], + [ + "▁amid", + -11.495471954345703 + ], + [ + "▁CBD", + -11.495586395263672 + ], + [ + "▁Meet", + -11.495701789855957 + ], + [ + "▁Trading", + -11.495804786682129 + ], + [ + "▁Build", + -11.496271133422852 + ], + [ + "▁Ka", + -11.496317863464355 + ], + [ + "▁prizes", + -11.496594429016113 + ], + [ + "▁96", + -11.49666690826416 + ], + [ + "▁Michelle", + -11.497271537780762 + ], + [ + "▁catching", + -11.497328758239746 + ], + [ + "▁advances", + -11.4973783493042 + ], + [ + "▁organizing", + -11.497662544250488 + ], + [ + "▁Around", + -11.49790096282959 + ], + [ + "▁unemployment", + -11.497907638549805 + ], + [ + "▁Environment", + -11.49821949005127 + ], + [ + "▁laughing", + -11.498282432556152 + ], + [ + "▁litigation", + -11.498424530029297 + ], + [ + "▁scenarios", + -11.498869895935059 + ], + [ + "▁88", + -11.499144554138184 + ], + [ + "▁Die", + -11.499168395996094 + ], + [ + "▁Amazing", + -11.499606132507324 + ], + [ + "▁decorative", + -11.499983787536621 + ], + [ + "▁Valentine", + -11.50015926361084 + ], + [ + "▁enthusiasm", + -11.500509262084961 + ], + [ + "▁accordingly", + -11.500513076782227 + ], + [ + "▁Bachelor", + -11.500661849975586 + ], + [ + "▁maximize", + -11.500665664672852 + ], + [ + "▁tastes", + -11.500948905944824 + ], + [ + "person", + -11.501277923583984 + ], + [ + "▁decorated", + -11.501289367675781 + ], + [ + "ino", + -11.501296043395996 + ], + [ + "▁builds", + -11.501435279846191 + ], + [ + "▁04", + -11.50143814086914 + ], + [ + "▁clouds", + -11.501460075378418 + ], + [ + "shirt", + -11.501590728759766 + ], + [ + "▁Yellow", + -11.501738548278809 + ], + [ + "▁plumbing", + -11.501840591430664 + ], + [ + "▁considerably", + -11.501903533935547 + ], + [ + "▁AD", + -11.5021333694458 + ], + [ + "▁Otherwise", + -11.502245903015137 + ], + [ + "▁avoiding", + -11.502408981323242 + ], + [ + "▁screw", + -11.502470016479492 + ], + [ + "▁Soon", + -11.502606391906738 + ], + [ + "lan", + -11.502942085266113 + ], + [ + "▁promo", + -11.502951622009277 + ], + [ + "▁rides", + -11.503142356872559 + ], + [ + "▁Chrome", + -11.503290176391602 + ], + [ + "▁Orlando", + -11.503299713134766 + ], + [ + "▁matched", + -11.503702163696289 + ], + [ + "▁investigated", + -11.503922462463379 + ], + [ + "▁Princess", + -11.504063606262207 + ], + [ + "▁Edge", + -11.50424575805664 + ], + [ + "▁cycling", + -11.504293441772461 + ], + [ + "▁shore", + -11.504572868347168 + ], + [ + "▁Panel", + -11.504578590393066 + ], + [ + "▁Robin", + -11.504642486572266 + ], + [ + "▁goodness", + -11.5049409866333 + ], + [ + "▁sa", + -11.504963874816895 + ], + [ + "▁organ", + -11.50592041015625 + ], + [ + "▁trainer", + -11.506129264831543 + ], + [ + "▁Homes", + -11.506199836730957 + ], + [ + "edu", + -11.506569862365723 + ], + [ + "▁Leadership", + -11.506664276123047 + ], + [ + "▁alternate", + -11.507038116455078 + ], + [ + "cut", + -11.507119178771973 + ], + [ + "▁basics", + -11.507452964782715 + ], + [ + "▁regret", + -11.507538795471191 + ], + [ + "▁nurses", + -11.507705688476562 + ], + [ + "▁ARE", + -11.507728576660156 + ], + [ + "▁bankruptcy", + -11.508034706115723 + ], + [ + "▁specify", + -11.50844669342041 + ], + [ + "▁lover", + -11.508505821228027 + ], + [ + "▁77", + -11.508526802062988 + ], + [ + "▁gut", + -11.508793830871582 + ], + [ + "▁Partners", + -11.508832931518555 + ], + [ + "▁deleted", + -11.509015083312988 + ], + [ + "two", + -11.50906753540039 + ], + [ + "▁tumor", + -11.509289741516113 + ], + [ + "▁RAM", + -11.5098876953125 + ], + [ + "▁counties", + -11.510231018066406 + ], + [ + "▁consist", + -11.510251998901367 + ], + [ + "▁Marvel", + -11.510259628295898 + ], + [ + "▁Madrid", + -11.510295867919922 + ], + [ + "▁tanks", + -11.51057243347168 + ], + [ + "▁Must", + -11.511027336120605 + ], + [ + "▁refreshing", + -11.511131286621094 + ], + [ + "▁boasts", + -11.511702537536621 + ], + [ + "▁cluster", + -11.511767387390137 + ], + [ + "▁combining", + -11.511772155761719 + ], + [ + "▁motorcycle", + -11.5119047164917 + ], + [ + "▁riders", + -11.512154579162598 + ], + [ + "▁Albert", + -11.512544631958008 + ], + [ + "66", + -11.512969017028809 + ], + [ + "▁substantially", + -11.513128280639648 + ], + [ + "▁Half", + -11.513232231140137 + ], + [ + "▁Clear", + -11.51335334777832 + ], + [ + "▁terrorism", + -11.513678550720215 + ], + [ + "▁static", + -11.513789176940918 + ], + [ + "▁μ", + -11.513859748840332 + ], + [ + "▁imposed", + -11.513861656188965 + ], + [ + "▁steep", + -11.51401424407959 + ], + [ + "▁democratic", + -11.514045715332031 + ], + [ + "▁lineup", + -11.514314651489258 + ], + [ + "▁metres", + -11.514613151550293 + ], + [ + "▁technicians", + -11.514724731445312 + ], + [ + "▁floral", + -11.515398979187012 + ], + [ + "▁assessed", + -11.515680313110352 + ], + [ + "ck", + -11.51568603515625 + ], + [ + "▁strictly", + -11.515851974487305 + ], + [ + "▁practically", + -11.516082763671875 + ], + [ + "▁Hell", + -11.516263961791992 + ], + [ + "▁Clinical", + -11.516417503356934 + ], + [ + "▁pub", + -11.516548156738281 + ], + [ + "▁Regardless", + -11.51655387878418 + ], + [ + "▁brass", + -11.516695976257324 + ], + [ + "▁Oscar", + -11.51675033569336 + ], + [ + "▁Events", + -11.516880989074707 + ], + [ + "▁physicians", + -11.516940116882324 + ], + [ + "▁cents", + -11.517008781433105 + ], + [ + "▁distant", + -11.517147064208984 + ], + [ + "Yes", + -11.517292976379395 + ], + [ + "▁herbs", + -11.517314910888672 + ], + [ + "▁proceeds", + -11.517433166503906 + ], + [ + "pro", + -11.517549514770508 + ], + [ + "▁Safe", + -11.517634391784668 + ], + [ + "▁drill", + -11.51766586303711 + ], + [ + "▁favour", + -11.517731666564941 + ], + [ + "▁dis", + -11.517823219299316 + ], + [ + "▁Pope", + -11.517882347106934 + ], + [ + "▁Snow", + -11.517983436584473 + ], + [ + "▁graduates", + -11.5180025100708 + ], + [ + "▁topped", + -11.51812744140625 + ], + [ + "▁chaos", + -11.518189430236816 + ], + [ + "▁tuned", + -11.518280029296875 + ], + [ + "▁deficit", + -11.518393516540527 + ], + [ + "▁finishes", + -11.51893424987793 + ], + [ + "▁threshold", + -11.519471168518066 + ], + [ + "▁node", + -11.519513130187988 + ], + [ + "▁pursuing", + -11.519696235656738 + ], + [ + "▁meter", + -11.5198974609375 + ], + [ + "▁sheep", + -11.51993465423584 + ], + [ + "▁cuisine", + -11.520405769348145 + ], + [ + "▁snacks", + -11.521004676818848 + ], + [ + "▁drum", + -11.521249771118164 + ], + [ + "▁puzzle", + -11.52140998840332 + ], + [ + "que", + -11.521419525146484 + ], + [ + "▁trademark", + -11.521553993225098 + ], + [ + "▁homemade", + -11.521573066711426 + ], + [ + "▁Notice", + -11.521627426147461 + ], + [ + "▁Brad", + -11.521722793579102 + ], + [ + "▁fortunate", + -11.521759986877441 + ], + [ + "▁editorial", + -11.52183723449707 + ], + [ + "▁switching", + -11.522150039672852 + ], + [ + "▁counting", + -11.522385597229004 + ], + [ + "▁loyal", + -11.522645950317383 + ], + [ + "▁sporting", + -11.523017883300781 + ], + [ + "▁Mumbai", + -11.523499488830566 + ], + [ + "▁tv", + -11.523677825927734 + ], + [ + "▁crops", + -11.523722648620605 + ], + [ + "▁Rio", + -11.523908615112305 + ], + [ + "▁pasta", + -11.524120330810547 + ], + [ + "▁Comments", + -11.524192810058594 + ], + [ + "▁Ring", + -11.52426815032959 + ], + [ + "▁Emergency", + -11.524360656738281 + ], + [ + "▁merchandise", + -11.524615287780762 + ], + [ + "ker", + -11.5247220993042 + ], + [ + "▁offset", + -11.525075912475586 + ], + [ + "▁Cheap", + -11.525077819824219 + ], + [ + "▁GA", + -11.525090217590332 + ], + [ + "▁structured", + -11.525242805480957 + ], + [ + "▁Congratulations", + -11.52528190612793 + ], + [ + "▁firmly", + -11.525383949279785 + ], + [ + "▁Similarly", + -11.52573013305664 + ], + [ + "▁SD", + -11.525979995727539 + ], + [ + "po", + -11.5260009765625 + ], + [ + "▁pressed", + -11.526203155517578 + ], + [ + "▁Bag", + -11.526615142822266 + ], + [ + "▁Dakota", + -11.526697158813477 + ], + [ + "▁steering", + -11.526837348937988 + ], + [ + "▁punishment", + -11.526926040649414 + ], + [ + "▁vegan", + -11.527098655700684 + ], + [ + "▁dentist", + -11.527242660522461 + ], + [ + "ik", + -11.527286529541016 + ], + [ + "▁Mitchell", + -11.527323722839355 + ], + [ + "°", + -11.527454376220703 + ], + [ + "▁drawings", + -11.527565002441406 + ], + [ + "▁economics", + -11.52796459197998 + ], + [ + "▁Olympics", + -11.528058052062988 + ], + [ + "▁dessert", + -11.528225898742676 + ], + [ + "88", + -11.528275489807129 + ], + [ + "▁achievements", + -11.528342247009277 + ], + [ + "▁Carl", + -11.528504371643066 + ], + [ + "▁compounds", + -11.528885841369629 + ], + [ + "62", + -11.528904914855957 + ], + [ + "▁VR", + -11.528947830200195 + ], + [ + "▁witnessed", + -11.529483795166016 + ], + [ + "▁nominated", + -11.529637336730957 + ], + [ + "▁unclear", + -11.529654502868652 + ], + [ + "▁Wind", + -11.529938697814941 + ], + [ + "▁Secret", + -11.530502319335938 + ], + [ + "▁heroes", + -11.530603408813477 + ], + [ + "▁WA", + -11.530745506286621 + ], + [ + "▁urged", + -11.530858039855957 + ], + [ + "ung", + -11.530930519104004 + ], + [ + "▁Democrat", + -11.531831741333008 + ], + [ + "‐", + -11.532605171203613 + ], + [ + "▁Bathroom", + -11.53272819519043 + ], + [ + "▁BMW", + -11.532881736755371 + ], + [ + "▁outlook", + -11.532989501953125 + ], + [ + "▁ONE", + -11.533219337463379 + ], + [ + "link", + -11.53322696685791 + ], + [ + "▁encourages", + -11.533507347106934 + ], + [ + "under", + -11.53367805480957 + ], + [ + "▁Amendment", + -11.533689498901367 + ], + [ + "▁runner", + -11.53385066986084 + ], + [ + "▁browsing", + -11.534621238708496 + ], + [ + "▁connectivity", + -11.534759521484375 + ], + [ + "▁Basic", + -11.53476333618164 + ], + [ + "▁projected", + -11.534908294677734 + ], + [ + "▁warehouse", + -11.535150527954102 + ], + [ + "▁Housing", + -11.535453796386719 + ], + [ + "▁threatening", + -11.535487174987793 + ], + [ + "▁sword", + -11.53554630279541 + ], + [ + "▁Applications", + -11.535629272460938 + ], + [ + "▁Fred", + -11.53576946258545 + ], + [ + "▁Woman", + -11.535787582397461 + ], + [ + "▁partnerships", + -11.535811424255371 + ], + [ + "▁roster", + -11.53598403930664 + ], + [ + "▁blessing", + -11.535988807678223 + ], + [ + "▁lung", + -11.536169052124023 + ], + [ + "▁releasing", + -11.536243438720703 + ], + [ + "▁mesh", + -11.53636646270752 + ], + [ + "▁renovation", + -11.53659439086914 + ], + [ + "iness", + -11.536773681640625 + ], + [ + "▁Sheriff", + -11.53684139251709 + ], + [ + "▁Collins", + -11.536974906921387 + ], + [ + "▁Billy", + -11.537025451660156 + ], + [ + "▁SQL", + -11.537300109863281 + ], + [ + "▁mat", + -11.537575721740723 + ], + [ + "▁Oracle", + -11.538030624389648 + ], + [ + "▁portrait", + -11.538128852844238 + ], + [ + "▁influences", + -11.538229942321777 + ], + [ + "72", + -11.538335800170898 + ], + [ + "▁illustrated", + -11.538485527038574 + ], + [ + "▁rod", + -11.5385160446167 + ], + [ + "ml", + -11.538641929626465 + ], + [ + "▁inflammation", + -11.53879165649414 + ], + [ + "▁exams", + -11.538900375366211 + ], + [ + "Voter", + -11.538955688476562 + ], + [ + "▁buses", + -11.539201736450195 + ], + [ + "▁Mon", + -11.53930377960205 + ], + [ + "▁arrives", + -11.539738655090332 + ], + [ + "▁urge", + -11.53976821899414 + ], + [ + "▁revised", + -11.539825439453125 + ], + [ + "aka", + -11.540449142456055 + ], + [ + "list", + -11.540472030639648 + ], + [ + "▁Plans", + -11.540475845336914 + ], + [ + "▁deployed", + -11.540492057800293 + ], + [ + "▁ingredient", + -11.540550231933594 + ], + [ + "▁adverse", + -11.540956497192383 + ], + [ + "▁Lead", + -11.541099548339844 + ], + [ + "▁weekends", + -11.541149139404297 + ], + [ + "▁Survey", + -11.54116439819336 + ], + [ + "▁deployment", + -11.541264533996582 + ], + [ + "▁grandmother", + -11.54154109954834 + ], + [ + "▁probability", + -11.541584968566895 + ], + [ + "▁documented", + -11.541699409484863 + ], + [ + "▁knock", + -11.541839599609375 + ], + [ + "▁responding", + -11.54191780090332 + ], + [ + "▁Bedroom", + -11.542075157165527 + ], + [ + "▁coalition", + -11.542184829711914 + ], + [ + "CO", + -11.542367935180664 + ], + [ + "▁1983", + -11.542434692382812 + ], + [ + "▁manages", + -11.542547225952148 + ], + [ + "▁Value", + -11.5426025390625 + ], + [ + "▁160", + -11.54296588897705 + ], + [ + "▁inclusive", + -11.543071746826172 + ], + [ + "▁starter", + -11.54316520690918 + ], + [ + "▁analyzed", + -11.543615341186523 + ], + [ + "▁Marshall", + -11.543724060058594 + ], + [ + "▁newspapers", + -11.543906211853027 + ], + [ + "▁Military", + -11.544047355651855 + ], + [ + "▁surroundings", + -11.544251441955566 + ], + [ + "▁fundraising", + -11.54439640045166 + ], + [ + "▁1979", + -11.54444408416748 + ], + [ + "▁cement", + -11.544513702392578 + ], + [ + "▁forcing", + -11.54482364654541 + ], + [ + "▁dominated", + -11.545260429382324 + ], + [ + "▁69", + -11.545612335205078 + ], + [ + "▁pills", + -11.545654296875 + ], + [ + "▁coating", + -11.545662879943848 + ], + [ + "▁injection", + -11.545795440673828 + ], + [ + "▁Bishop", + -11.54593563079834 + ], + [ + "▁administrator", + -11.54609489440918 + ], + [ + "▁ethics", + -11.54617691040039 + ], + [ + "▁EP", + -11.546225547790527 + ], + [ + "▁Dental", + -11.546366691589355 + ], + [ + "▁Apparently", + -11.54652214050293 + ], + [ + "▁founding", + -11.546808242797852 + ], + [ + "▁sheer", + -11.546963691711426 + ], + [ + "▁holders", + -11.547266006469727 + ], + [ + "▁cooler", + -11.547355651855469 + ], + [ + "▁treasure", + -11.547506332397461 + ], + [ + "ze", + -11.547550201416016 + ], + [ + "AM", + -11.548027038574219 + ], + [ + "▁stadium", + -11.548057556152344 + ], + [ + "▁evaluated", + -11.548285484313965 + ], + [ + "▁Keith", + -11.548380851745605 + ], + [ + "▁Yu", + -11.548418998718262 + ], + [ + "▁rotation", + -11.548587799072266 + ], + [ + "▁Communication", + -11.548906326293945 + ], + [ + "mon", + -11.548922538757324 + ], + [ + "▁Innovation", + -11.54897403717041 + ], + [ + "▁78", + -11.548977851867676 + ], + [ + "▁lightly", + -11.549046516418457 + ], + [ + "▁Address", + -11.549154281616211 + ], + [ + "▁customize", + -11.549464225769043 + ], + [ + "▁lid", + -11.54951000213623 + ], + [ + "▁flu", + -11.549711227416992 + ], + [ + "▁Reuters", + -11.550098419189453 + ], + [ + "▁creature", + -11.550150871276855 + ], + [ + "je", + -11.55020809173584 + ], + [ + "▁Swedish", + -11.550333023071289 + ], + [ + "▁remarks", + -11.550599098205566 + ], + [ + "▁castle", + -11.550817489624023 + ], + [ + "▁Weight", + -11.550920486450195 + ], + [ + "▁generator", + -11.55107307434082 + ], + [ + "▁Process", + -11.551276206970215 + ], + [ + "▁positioned", + -11.551322937011719 + ], + [ + "ria", + -11.551512718200684 + ], + [ + "▁diesel", + -11.551589012145996 + ], + [ + "▁keywords", + -11.55163288116455 + ], + [ + "▁complications", + -11.551934242248535 + ], + [ + "▁Treatment", + -11.552022933959961 + ], + [ + "98", + -11.552042007446289 + ], + [ + "▁undergraduate", + -11.552562713623047 + ], + [ + "▁Delta", + -11.552872657775879 + ], + [ + "▁flew", + -11.55316162109375 + ], + [ + "▁duo", + -11.553178787231445 + ], + [ + "▁tobacco", + -11.553254127502441 + ], + [ + "▁punch", + -11.553317070007324 + ], + [ + "▁Transportation", + -11.55339527130127 + ], + [ + "▁Close", + -11.553892135620117 + ], + [ + "▁Kent", + -11.554008483886719 + ], + [ + "▁Samuel", + -11.554033279418945 + ], + [ + "▁reviewing", + -11.554227828979492 + ], + [ + "▁commands", + -11.55438232421875 + ], + [ + "▁Floor", + -11.554388046264648 + ], + [ + "▁Directors", + -11.554396629333496 + ], + [ + "▁mud", + -11.554685592651367 + ], + [ + "▁innings", + -11.55471420288086 + ], + [ + "▁NBC", + -11.55507755279541 + ], + [ + "▁strengths", + -11.555173873901367 + ], + [ + "▁Zone", + -11.555194854736328 + ], + [ + "century", + -11.555235862731934 + ], + [ + "▁reservation", + -11.555423736572266 + ], + [ + "▁hyper", + -11.55543327331543 + ], + [ + "▁Christianity", + -11.555492401123047 + ], + [ + "▁grasp", + -11.555502891540527 + ], + [ + "▁elementary", + -11.555651664733887 + ], + [ + "▁Adobe", + -11.555798530578613 + ], + [ + "▁1982", + -11.555854797363281 + ], + [ + "▁Birthday", + -11.555889129638672 + ], + [ + "▁calculate", + -11.555928230285645 + ], + [ + "▁assignments", + -11.556741714477539 + ], + [ + "▁zones", + -11.556937217712402 + ], + [ + "▁1930", + -11.557045936584473 + ], + [ + "▁Ready", + -11.557130813598633 + ], + [ + "▁railway", + -11.557178497314453 + ], + [ + "▁Visual", + -11.557229042053223 + ], + [ + "▁mis", + -11.5573148727417 + ], + [ + "▁notified", + -11.55733871459961 + ], + [ + "▁defendant", + -11.557418823242188 + ], + [ + "▁altogether", + -11.557705879211426 + ], + [ + "▁spine", + -11.557721138000488 + ], + [ + "ology", + -11.557795524597168 + ], + [ + "▁ugly", + -11.558832168579102 + ], + [ + "▁Masters", + -11.55897045135498 + ], + [ + "▁Pick", + -11.558989524841309 + ], + [ + "▁Theory", + -11.559052467346191 + ], + [ + "▁lawmakers", + -11.559181213378906 + ], + [ + "▁durability", + -11.559206008911133 + ], + [ + "▁consequence", + -11.55922794342041 + ], + [ + "▁stating", + -11.55936336517334 + ], + [ + "▁Includes", + -11.559396743774414 + ], + [ + "▁trace", + -11.559678077697754 + ], + [ + "▁schemes", + -11.559723854064941 + ], + [ + "▁advisor", + -11.559779167175293 + ], + [ + "▁intensive", + -11.559978485107422 + ], + [ + "▁frustration", + -11.5601167678833 + ], + [ + "▁Users", + -11.560477256774902 + ], + [ + "▁Ver", + -11.560600280761719 + ], + [ + "▁centres", + -11.560821533203125 + ], + [ + "▁Cruz", + -11.560834884643555 + ], + [ + "▁spreading", + -11.560853958129883 + ], + [ + "▁abundance", + -11.56093692779541 + ], + [ + "▁confusing", + -11.560946464538574 + ], + [ + "▁securities", + -11.561037063598633 + ], + [ + "▁modeling", + -11.561212539672852 + ], + [ + "▁Boys", + -11.561240196228027 + ], + [ + "▁camps", + -11.561291694641113 + ], + [ + "▁smoothly", + -11.561384201049805 + ], + [ + "▁tweet", + -11.561479568481445 + ], + [ + "read", + -11.561715126037598 + ], + [ + "▁Questions", + -11.561935424804688 + ], + [ + "▁minerals", + -11.561967849731445 + ], + [ + "▁withdrawal", + -11.56205940246582 + ], + [ + "▁planted", + -11.562127113342285 + ], + [ + "▁printable", + -11.562445640563965 + ], + [ + "▁Kenya", + -11.562535285949707 + ], + [ + "▁Jun", + -11.56258487701416 + ], + [ + "▁breathe", + -11.562670707702637 + ], + [ + "▁surveys", + -11.562740325927734 + ], + [ + "face", + -11.562796592712402 + ], + [ + "▁Primary", + -11.562891006469727 + ], + [ + "▁130", + -11.563005447387695 + ], + [ + "▁spirits", + -11.563151359558105 + ], + [ + "▁distinction", + -11.563536643981934 + ], + [ + "▁hassle", + -11.56360912322998 + ], + [ + "▁scientist", + -11.563721656799316 + ], + [ + "63", + -11.56381607055664 + ], + [ + "▁poly", + -11.563858032226562 + ], + [ + "▁tunnel", + -11.563980102539062 + ], + [ + "▁belongs", + -11.56419849395752 + ], + [ + "▁midnight", + -11.564435005187988 + ], + [ + "ho", + -11.564529418945312 + ], + [ + "▁Nor", + -11.564915657043457 + ], + [ + "▁1920", + -11.564953804016113 + ], + [ + "▁Related", + -11.565083503723145 + ], + [ + "▁avoided", + -11.56518268585205 + ], + [ + "▁pole", + -11.565247535705566 + ], + [ + "▁wealthy", + -11.565443992614746 + ], + [ + "where", + -11.565620422363281 + ], + [ + "▁Linda", + -11.56563949584961 + ], + [ + "Ã", + -11.565821647644043 + ], + [ + "▁pending", + -11.565855026245117 + ], + [ + "mann", + -11.566275596618652 + ], + [ + "▁Philip", + -11.566313743591309 + ], + [ + "▁ST", + -11.56636905670166 + ], + [ + "▁firing", + -11.56662368774414 + ], + [ + "▁elevated", + -11.566818237304688 + ], + [ + "▁distribute", + -11.566917419433594 + ], + [ + "▁acids", + -11.567051887512207 + ], + [ + "▁cope", + -11.567091941833496 + ], + [ + "▁lifting", + -11.567280769348145 + ], + [ + "▁inevitable", + -11.567452430725098 + ], + [ + "▁quietly", + -11.567544937133789 + ], + [ + "▁realise", + -11.56799030303955 + ], + [ + "▁wallet", + -11.568024635314941 + ], + [ + "▁profound", + -11.568029403686523 + ], + [ + "▁tomato", + -11.568221092224121 + ], + [ + "▁Sand", + -11.568230628967285 + ], + [ + "▁frustrated", + -11.568469047546387 + ], + [ + "▁constitutional", + -11.568876266479492 + ], + [ + "▁genuinely", + -11.568970680236816 + ], + [ + "▁Registration", + -11.568973541259766 + ], + [ + "▁cargo", + -11.570001602172852 + ], + [ + "▁sweat", + -11.570130348205566 + ], + [ + "▁lacking", + -11.570158004760742 + ], + [ + "▁Emma", + -11.570160865783691 + ], + [ + "▁font", + -11.570234298706055 + ], + [ + "▁shirts", + -11.570477485656738 + ], + [ + "68", + -11.570478439331055 + ], + [ + "ette", + -11.57075309753418 + ], + [ + "rate", + -11.570916175842285 + ], + [ + "▁practitioners", + -11.571152687072754 + ], + [ + "▁appointments", + -11.571357727050781 + ], + [ + "▁logged", + -11.571763038635254 + ], + [ + "▁Active", + -11.571784019470215 + ], + [ + "▁Tyler", + -11.572015762329102 + ], + [ + "▁dividend", + -11.572216987609863 + ], + [ + "▁onion", + -11.572659492492676 + ], + [ + "▁behaviors", + -11.57274341583252 + ], + [ + "▁Nike", + -11.572750091552734 + ], + [ + "▁adjustments", + -11.57286548614502 + ], + [ + "▁hi", + -11.572906494140625 + ], + [ + "▁laughed", + -11.572976112365723 + ], + [ + "▁seniors", + -11.573121070861816 + ], + [ + "▁oz", + -11.57341194152832 + ], + [ + "▁deputy", + -11.573470115661621 + ], + [ + "Pro", + -11.573514938354492 + ], + [ + "▁crisp", + -11.573543548583984 + ], + [ + "▁recognised", + -11.573651313781738 + ], + [ + "▁conflicts", + -11.573801040649414 + ], + [ + "▁theoretical", + -11.573803901672363 + ], + [ + "▁ecosystem", + -11.5738525390625 + ], + [ + "▁Options", + -11.574009895324707 + ], + [ + "▁necessity", + -11.57429027557373 + ], + [ + "▁activation", + -11.574308395385742 + ], + [ + "▁Stanley", + -11.574559211730957 + ], + [ + "▁accent", + -11.574567794799805 + ], + [ + "▁baked", + -11.575080871582031 + ], + [ + "sky", + -11.57528018951416 + ], + [ + "▁modes", + -11.57529354095459 + ], + [ + "▁Lu", + -11.5753173828125 + ], + [ + "▁140", + -11.57535457611084 + ], + [ + "▁Outdoor", + -11.575787544250488 + ], + [ + "▁dismissed", + -11.57596206665039 + ], + [ + "▁Agent", + -11.575997352600098 + ], + [ + "▁influential", + -11.576180458068848 + ], + [ + "▁saves", + -11.576733589172363 + ], + [ + "▁Apply", + -11.577184677124023 + ], + [ + "▁flowing", + -11.57730484008789 + ], + [ + "cha", + -11.577333450317383 + ], + [ + "▁Morning", + -11.577371597290039 + ], + [ + "▁knees", + -11.577414512634277 + ], + [ + "▁vol", + -11.577774047851562 + ], + [ + "▁jam", + -11.577788352966309 + ], + [ + "▁SE", + -11.577868461608887 + ], + [ + "▁Template", + -11.57788372039795 + ], + [ + "▁Guy", + -11.578241348266602 + ], + [ + "▁attendees", + -11.578277587890625 + ], + [ + "▁crap", + -11.578329086303711 + ], + [ + "▁brave", + -11.578518867492676 + ], + [ + "▁consuming", + -11.57868480682373 + ], + [ + "▁occurring", + -11.578932762145996 + ], + [ + "▁Return", + -11.579192161560059 + ], + [ + "▁Kyle", + -11.579264640808105 + ], + [ + "▁mounting", + -11.579333305358887 + ], + [ + "screen", + -11.579378128051758 + ], + [ + "▁celebrity", + -11.579566955566406 + ], + [ + "▁roller", + -11.580266952514648 + ], + [ + "▁washed", + -11.580424308776855 + ], + [ + "▁Perry", + -11.580577850341797 + ], + [ + "▁fifty", + -11.58057975769043 + ], + [ + "▁athletic", + -11.580930709838867 + ], + [ + "▁lecture", + -11.580997467041016 + ], + [ + "▁modest", + -11.581117630004883 + ], + [ + "▁travels", + -11.58118724822998 + ], + [ + "▁Target", + -11.581245422363281 + ], + [ + "▁equality", + -11.581425666809082 + ], + [ + "▁rewarding", + -11.5814790725708 + ], + [ + "ani", + -11.581554412841797 + ], + [ + "▁temporarily", + -11.581583023071289 + ], + [ + "▁disappeared", + -11.581599235534668 + ], + [ + "▁blanket", + -11.581786155700684 + ], + [ + "▁Economics", + -11.58202075958252 + ], + [ + "ron", + -11.582205772399902 + ], + [ + "▁skirt", + -11.582466125488281 + ], + [ + "▁gluten", + -11.582499504089355 + ], + [ + "▁bears", + -11.582587242126465 + ], + [ + "▁Jake", + -11.582911491394043 + ], + [ + "▁pools", + -11.582915306091309 + ], + [ + "▁Murphy", + -11.583017349243164 + ], + [ + "▁noon", + -11.583159446716309 + ], + [ + "▁Truth", + -11.583325386047363 + ], + [ + "Go", + -11.583352088928223 + ], + [ + "▁cellular", + -11.583551406860352 + ], + [ + "▁Birmingham", + -11.583695411682129 + ], + [ + "▁Jessica", + -11.583709716796875 + ], + [ + "▁trap", + -11.583868026733398 + ], + [ + "▁sells", + -11.584386825561523 + ], + [ + "▁associations", + -11.584405899047852 + ], + [ + "ci", + -11.584446907043457 + ], + [ + "▁touching", + -11.584500312805176 + ], + [ + "▁Manual", + -11.584583282470703 + ], + [ + "▁cousin", + -11.584610939025879 + ], + [ + "▁likewise", + -11.584952354431152 + ], + [ + "▁Ward", + -11.584973335266113 + ], + [ + "▁amazed", + -11.58527660369873 + ], + [ + "▁74", + -11.585310935974121 + ], + [ + "900", + -11.585336685180664 + ], + [ + "▁defending", + -11.585360527038574 + ], + [ + "▁organizational", + -11.585776329040527 + ], + [ + "▁sometime", + -11.585787773132324 + ], + [ + "▁Fe", + -11.585887908935547 + ], + [ + "▁upgraded", + -11.58592414855957 + ], + [ + "▁Bird", + -11.586005210876465 + ], + [ + "▁Johnny", + -11.586018562316895 + ], + [ + "stop", + -11.586162567138672 + ], + [ + "port", + -11.58653450012207 + ], + [ + "▁wholesale", + -11.58653736114502 + ], + [ + "▁musician", + -11.586783409118652 + ], + [ + "▁«", + -11.58797550201416 + ], + [ + "An", + -11.587980270385742 + ], + [ + "▁st", + -11.587987899780273 + ], + [ + "▁Buffalo", + -11.588226318359375 + ], + [ + "▁Terry", + -11.58830738067627 + ], + [ + "▁silk", + -11.588455200195312 + ], + [ + "▁Forex", + -11.588746070861816 + ], + [ + "▁RV", + -11.58881950378418 + ], + [ + "▁waist", + -11.588873863220215 + ], + [ + "▁Penn", + -11.588981628417969 + ], + [ + "▁warmth", + -11.589081764221191 + ], + [ + "▁probe", + -11.58927059173584 + ], + [ + "Don", + -11.589738845825195 + ], + [ + "▁arena", + -11.589740753173828 + ], + [ + "ov", + -11.589747428894043 + ], + [ + "▁charter", + -11.590051651000977 + ], + [ + "▁diagnostic", + -11.590238571166992 + ], + [ + "▁happily", + -11.590463638305664 + ], + [ + "▁Bus", + -11.590598106384277 + ], + [ + "▁solved", + -11.590618133544922 + ], + [ + "▁chains", + -11.590865135192871 + ], + [ + "best", + -11.59160327911377 + ], + [ + "▁canada", + -11.591646194458008 + ], + [ + "▁architect", + -11.59179973602295 + ], + [ + "▁towel", + -11.591851234436035 + ], + [ + "▁Apart", + -11.591940879821777 + ], + [ + "▁ranges", + -11.591999053955078 + ], + [ + "▁characterized", + -11.592082023620605 + ], + [ + "▁terrain", + -11.592292785644531 + ], + [ + "▁earliest", + -11.592660903930664 + ], + [ + "ive", + -11.593058586120605 + ], + [ + "▁horizontal", + -11.593291282653809 + ], + [ + "▁viable", + -11.593362808227539 + ], + [ + "▁biology", + -11.593392372131348 + ], + [ + "▁cave", + -11.593406677246094 + ], + [ + "▁Bond", + -11.593695640563965 + ], + [ + "▁pupils", + -11.593807220458984 + ], + [ + "▁breed", + -11.593849182128906 + ], + [ + "▁smiled", + -11.593952178955078 + ], + [ + "▁Cameron", + -11.593986511230469 + ], + [ + "▁animated", + -11.594008445739746 + ], + [ + "▁°", + -11.594138145446777 + ], + [ + "▁Nancy", + -11.594237327575684 + ], + [ + "▁acted", + -11.594281196594238 + ], + [ + "▁occupation", + -11.594409942626953 + ], + [ + "▁RE", + -11.59453296661377 + ], + [ + "▁Continue", + -11.594606399536133 + ], + [ + "▁Cabinet", + -11.594732284545898 + ], + [ + "▁complement", + -11.594985961914062 + ], + [ + "▁Wolf", + -11.595152854919434 + ], + [ + "▁sq", + -11.595344543457031 + ], + [ + "▁bubble", + -11.595346450805664 + ], + [ + "season", + -11.595376014709473 + ], + [ + "▁streams", + -11.595412254333496 + ], + [ + "▁creator", + -11.595808982849121 + ], + [ + "▁Sep", + -11.595840454101562 + ], + [ + "▁disagree", + -11.595965385437012 + ], + [ + "▁heater", + -11.596193313598633 + ], + [ + "▁blocking", + -11.59619426727295 + ], + [ + "▁Voice", + -11.596220016479492 + ], + [ + "pe", + -11.596308708190918 + ], + [ + "▁sacred", + -11.596342086791992 + ], + [ + "▁bitter", + -11.596532821655273 + ], + [ + "▁cheapest", + -11.596536636352539 + ], + [ + "▁Excel", + -11.596552848815918 + ], + [ + "▁watches", + -11.596565246582031 + ], + [ + "dis", + -11.596738815307617 + ], + [ + "▁meantime", + -11.596844673156738 + ], + [ + "▁hop", + -11.596940994262695 + ], + [ + "▁cocktail", + -11.597006797790527 + ], + [ + "▁71", + -11.597225189208984 + ], + [ + "▁MI", + -11.597264289855957 + ], + [ + "▁drunk", + -11.59732437133789 + ], + [ + "▁06", + -11.597770690917969 + ], + [ + "▁preliminary", + -11.59804630279541 + ], + [ + "▁substances", + -11.598052024841309 + ], + [ + "▁Margaret", + -11.598166465759277 + ], + [ + "▁ambitious", + -11.598188400268555 + ], + [ + "▁Soft", + -11.598265647888184 + ], + [ + "▁Ca", + -11.59847354888916 + ], + [ + "▁potato", + -11.598543167114258 + ], + [ + "▁slice", + -11.598714828491211 + ], + [ + "▁naked", + -11.598896980285645 + ], + [ + "▁gauge", + -11.599380493164062 + ], + [ + "▁participant", + -11.599682807922363 + ], + [ + "▁assuming", + -11.599947929382324 + ], + [ + "▁verse", + -11.599960327148438 + ], + [ + "▁parameter", + -11.600110054016113 + ], + [ + "▁cinema", + -11.600175857543945 + ], + [ + "▁slower", + -11.600186347961426 + ], + [ + "▁unwanted", + -11.60027027130127 + ], + [ + "▁analyses", + -11.600391387939453 + ], + [ + "▁algorithms", + -11.600484848022461 + ], + [ + "▁searches", + -11.600545883178711 + ], + [ + "▁bases", + -11.600555419921875 + ], + [ + "▁Rent", + -11.600617408752441 + ], + [ + "▁hack", + -11.600738525390625 + ], + [ + "▁Weather", + -11.60114574432373 + ], + [ + "▁poorly", + -11.601226806640625 + ], + [ + "▁Official", + -11.60124683380127 + ], + [ + "▁mapping", + -11.601369857788086 + ], + [ + "▁Pictures", + -11.601424217224121 + ], + [ + "▁farms", + -11.601608276367188 + ], + [ + "have", + -11.601781845092773 + ], + [ + "▁Consumer", + -11.601916313171387 + ], + [ + "▁tendency", + -11.602209091186523 + ], + [ + "▁Production", + -11.602323532104492 + ], + [ + "▁Eventually", + -11.602405548095703 + ], + [ + "▁namely", + -11.602584838867188 + ], + [ + "▁Greater", + -11.602914810180664 + ], + [ + "after", + -11.602920532226562 + ], + [ + "▁viral", + -11.602923393249512 + ], + [ + "part", + -11.602971076965332 + ], + [ + "▁circulation", + -11.603002548217773 + ], + [ + "▁shy", + -11.603050231933594 + ], + [ + "▁exotic", + -11.603405952453613 + ], + [ + "▁Mediterranean", + -11.603416442871094 + ], + [ + "▁recreational", + -11.60351276397705 + ], + [ + "▁frustrating", + -11.603599548339844 + ], + [ + "▁packs", + -11.603832244873047 + ], + [ + "▁vanilla", + -11.60390567779541 + ], + [ + "▁demonstrates", + -11.603978157043457 + ], + [ + "77", + -11.604222297668457 + ], + [ + "▁retailer", + -11.604244232177734 + ], + [ + "▁GB", + -11.604449272155762 + ], + [ + "▁MORE", + -11.60460376739502 + ], + [ + "ai", + -11.604646682739258 + ], + [ + "▁configured", + -11.604783058166504 + ], + [ + "▁permanently", + -11.604812622070312 + ], + [ + "jo", + -11.604846000671387 + ], + [ + "▁Marc", + -11.604897499084473 + ], + [ + "▁uploaded", + -11.604957580566406 + ], + [ + "▁onions", + -11.60506820678711 + ], + [ + "▁discusses", + -11.60539722442627 + ], + [ + "▁Glen", + -11.605419158935547 + ], + [ + "▁Probably", + -11.605432510375977 + ], + [ + "▁lining", + -11.605462074279785 + ], + [ + "▁touches", + -11.60567855834961 + ], + [ + "▁paired", + -11.605721473693848 + ], + [ + "▁investigators", + -11.606073379516602 + ], + [ + "▁inviting", + -11.606152534484863 + ], + [ + "▁Face", + -11.606165885925293 + ], + [ + "▁Han", + -11.606860160827637 + ], + [ + "▁Montreal", + -11.607166290283203 + ], + [ + "shaped", + -11.607390403747559 + ], + [ + "▁lbs", + -11.607439041137695 + ], + [ + "▁harvest", + -11.607686996459961 + ], + [ + "▁medicines", + -11.60775375366211 + ], + [ + "▁tri", + -11.607879638671875 + ], + [ + "▁Connect", + -11.607928276062012 + ], + [ + "ig", + -11.607962608337402 + ], + [ + "▁tray", + -11.60816478729248 + ], + [ + "▁deer", + -11.608248710632324 + ], + [ + "▁sealed", + -11.608986854553223 + ], + [ + "▁op", + -11.6090726852417 + ], + [ + "61", + -11.609139442443848 + ], + [ + "▁hint", + -11.609580993652344 + ], + [ + "▁Corps", + -11.609776496887207 + ], + [ + "▁sends", + -11.61021900177002 + ], + [ + "▁consumed", + -11.61058235168457 + ], + [ + "▁commentary", + -11.610589027404785 + ], + [ + "king", + -11.61069393157959 + ], + [ + "▁delays", + -11.611117362976074 + ], + [ + "▁glue", + -11.611146926879883 + ], + [ + "▁compassion", + -11.611881256103516 + ], + [ + "store", + -11.612165451049805 + ], + [ + "▁Associate", + -11.612277030944824 + ], + [ + "▁ceramic", + -11.612277030944824 + ], + [ + "▁Risk", + -11.612302780151367 + ], + [ + "▁MY", + -11.612312316894531 + ], + [ + "▁Therapy", + -11.612349510192871 + ], + [ + "▁missions", + -11.612442970275879 + ], + [ + "▁understands", + -11.612465858459473 + ], + [ + "▁woke", + -11.612500190734863 + ], + [ + "▁extending", + -11.612531661987305 + ], + [ + "▁Climate", + -11.612580299377441 + ], + [ + "▁approve", + -11.612654685974121 + ], + [ + "▁kidney", + -11.612822532653809 + ], + [ + "▁Pen", + -11.612825393676758 + ], + [ + "▁Lower", + -11.61298656463623 + ], + [ + "▁bucket", + -11.613064765930176 + ], + [ + "▁blogger", + -11.613269805908203 + ], + [ + "▁progression", + -11.613393783569336 + ], + [ + "▁sentences", + -11.613492012023926 + ], + [ + "▁82", + -11.613497734069824 + ], + [ + "▁lol", + -11.613590240478516 + ], + [ + "▁Vision", + -11.613677978515625 + ], + [ + "At", + -11.61373519897461 + ], + [ + "▁forests", + -11.613736152648926 + ], + [ + "▁Putin", + -11.61379337310791 + ], + [ + "▁Extra", + -11.613937377929688 + ], + [ + "▁activated", + -11.614073753356934 + ], + [ + "▁antique", + -11.614355087280273 + ], + [ + "▁graph", + -11.614385604858398 + ], + [ + "▁runners", + -11.614842414855957 + ], + [ + "▁shareholders", + -11.614920616149902 + ], + [ + "▁decides", + -11.614960670471191 + ], + [ + "▁counseling", + -11.615256309509277 + ], + [ + "▁Sanders", + -11.61526107788086 + ], + [ + "▁relaxation", + -11.615324974060059 + ], + [ + "▁expects", + -11.615471839904785 + ], + [ + "97", + -11.615477561950684 + ], + [ + "▁Rental", + -11.615574836730957 + ], + [ + "gate", + -11.615592002868652 + ], + [ + "▁Morris", + -11.61563491821289 + ], + [ + "also", + -11.616044998168945 + ], + [ + "▁descriptions", + -11.616052627563477 + ], + [ + "▁Political", + -11.616255760192871 + ], + [ + "▁73", + -11.616331100463867 + ], + [ + "real", + -11.616459846496582 + ], + [ + "▁amendment", + -11.616640090942383 + ], + [ + "▁Norway", + -11.616659164428711 + ], + [ + "2009", + -11.617000579833984 + ], + [ + "▁Block", + -11.617023468017578 + ], + [ + "▁Track", + -11.617189407348633 + ], + [ + "▁simulation", + -11.617369651794434 + ], + [ + "▁burst", + -11.6173734664917 + ], + [ + "most", + -11.617424011230469 + ], + [ + "▁Volume", + -11.617481231689453 + ], + [ + "▁Rules", + -11.617497444152832 + ], + [ + "▁switched", + -11.618051528930664 + ], + [ + "▁submitting", + -11.618091583251953 + ], + [ + "▁commented", + -11.618292808532715 + ], + [ + "MP", + -11.618341445922852 + ], + [ + "▁violations", + -11.618511199951172 + ], + [ + "▁89", + -11.618635177612305 + ], + [ + "ver", + -11.618659019470215 + ], + [ + "▁clearance", + -11.618697166442871 + ], + [ + "▁interviewed", + -11.61882495880127 + ], + [ + "▁Taiwan", + -11.619307518005371 + ], + [ + "▁satisfying", + -11.619426727294922 + ], + [ + "▁beam", + -11.61983871459961 + ], + [ + "▁1981", + -11.619993209838867 + ], + [ + "ru", + -11.620327949523926 + ], + [ + "▁inexpensive", + -11.62049388885498 + ], + [ + "▁Tan", + -11.620603561401367 + ], + [ + "▁penalties", + -11.620954513549805 + ], + [ + "▁harassment", + -11.62096118927002 + ], + [ + "▁bronze", + -11.62104320526123 + ], + [ + "▁pursuit", + -11.621086120605469 + ], + [ + "2008", + -11.621147155761719 + ], + [ + "▁attach", + -11.621183395385742 + ], + [ + "very", + -11.621269226074219 + ], + [ + "▁DE", + -11.621342658996582 + ], + [ + "▁grill", + -11.621434211730957 + ], + [ + "▁rope", + -11.621454238891602 + ], + [ + "▁Reviews", + -11.621556282043457 + ], + [ + "▁discharge", + -11.621905326843262 + ], + [ + "yes", + -11.622048377990723 + ], + [ + "▁casting", + -11.622260093688965 + ], + [ + "▁Liberty", + -11.622440338134766 + ], + [ + "▁updating", + -11.62283992767334 + ], + [ + "▁Xbox", + -11.62313461303711 + ], + [ + "▁dip", + -11.623181343078613 + ], + [ + "▁er", + -11.623311996459961 + ], + [ + "▁tragedy", + -11.623344421386719 + ], + [ + "▁terrific", + -11.62352180480957 + ], + [ + "▁Polish", + -11.623628616333008 + ], + [ + "▁decoration", + -11.623653411865234 + ], + [ + "▁shifting", + -11.623799324035645 + ], + [ + "▁Si", + -11.623823165893555 + ], + [ + "▁Jamie", + -11.623856544494629 + ], + [ + "▁Lo", + -11.623906135559082 + ], + [ + "▁advocates", + -11.624031066894531 + ], + [ + "cc", + -11.624067306518555 + ], + [ + "▁complain", + -11.624098777770996 + ], + [ + "▁eaten", + -11.62414264678955 + ], + [ + "▁weakness", + -11.62424373626709 + ], + [ + "▁booth", + -11.62437629699707 + ], + [ + "▁spam", + -11.624552726745605 + ], + [ + "▁Ted", + -11.624712944030762 + ], + [ + "▁Dining", + -11.624801635742188 + ], + [ + "▁Knight", + -11.624862670898438 + ], + [ + "▁Electronic", + -11.625006675720215 + ], + [ + "▁explored", + -11.62548828125 + ], + [ + "▁wool", + -11.625494956970215 + ], + [ + "▁characteristic", + -11.625553131103516 + ], + [ + "▁professionally", + -11.62586784362793 + ], + [ + "96", + -11.62588119506836 + ], + [ + "▁92", + -11.625953674316406 + ], + [ + "▁conviction", + -11.626106262207031 + ], + [ + "▁perspectives", + -11.626510620117188 + ], + [ + "▁Rule", + -11.6270170211792 + ], + [ + "▁crude", + -11.62717056274414 + ], + [ + "▁diving", + -11.627347946166992 + ], + [ + "▁Generally", + -11.627408027648926 + ], + [ + "Con", + -11.627411842346191 + ], + [ + "▁Same", + -11.627534866333008 + ], + [ + "br", + -11.627562522888184 + ], + [ + "name", + -11.627572059631348 + ], + [ + "▁tricky", + -11.627615928649902 + ], + [ + "oriented", + -11.627707481384277 + ], + [ + "▁05", + -11.627717971801758 + ], + [ + "▁Benjamin", + -11.6278076171875 + ], + [ + "▁demonstration", + -11.627854347229004 + ], + [ + "ID", + -11.628084182739258 + ], + [ + "▁84", + -11.628180503845215 + ], + [ + "plus", + -11.628308296203613 + ], + [ + "▁97", + -11.628317832946777 + ], + [ + "▁Bluetooth", + -11.628389358520508 + ], + [ + "▁performs", + -11.628422737121582 + ], + [ + "▁meta", + -11.628445625305176 + ], + [ + "▁travelers", + -11.628654479980469 + ], + [ + "▁fried", + -11.628693580627441 + ], + [ + "▁vector", + -11.62869644165039 + ], + [ + "▁trades", + -11.628698348999023 + ], + [ + "▁beaten", + -11.628905296325684 + ], + [ + "▁ET", + -11.629027366638184 + ], + [ + "▁Jazz", + -11.629228591918945 + ], + [ + "▁Brothers", + -11.629303932189941 + ], + [ + "ane", + -11.629390716552734 + ], + [ + "▁fraction", + -11.629603385925293 + ], + [ + "▁curtains", + -11.629888534545898 + ], + [ + "▁Neil", + -11.630319595336914 + ], + [ + "▁Associates", + -11.630387306213379 + ], + [ + "▁prohibited", + -11.630419731140137 + ], + [ + "▁dealers", + -11.630793571472168 + ], + [ + "▁sellers", + -11.630949020385742 + ], + [ + "▁Log", + -11.63099479675293 + ], + [ + "▁Looks", + -11.631031036376953 + ], + [ + "▁assure", + -11.631385803222656 + ], + [ + "▁Certificate", + -11.631668090820312 + ], + [ + "▁mate", + -11.63202953338623 + ], + [ + "▁lengthy", + -11.632163047790527 + ], + [ + "▁wounded", + -11.632287979125977 + ], + [ + "▁Operations", + -11.632699966430664 + ], + [ + "▁Iranian", + -11.63293743133545 + ], + [ + "▁Alberta", + -11.633009910583496 + ], + [ + "▁wars", + -11.633076667785645 + ], + [ + "▁laying", + -11.63323974609375 + ], + [ + "▁anonymous", + -11.633394241333008 + ], + [ + "▁witnesses", + -11.63369369506836 + ], + [ + "▁AL", + -11.633825302124023 + ], + [ + "▁Champions", + -11.633916854858398 + ], + [ + "▁Walter", + -11.633960723876953 + ], + [ + "▁mentor", + -11.63397216796875 + ], + [ + "▁hospitality", + -11.634112358093262 + ], + [ + "▁Jeremy", + -11.63415813446045 + ], + [ + "▁Designed", + -11.634322166442871 + ], + [ + "▁reset", + -11.634679794311523 + ], + [ + "79", + -11.634790420532227 + ], + [ + "▁midst", + -11.634889602661133 + ], + [ + "cost", + -11.634949684143066 + ], + [ + "▁belly", + -11.635015487670898 + ], + [ + "▁supervision", + -11.635207176208496 + ], + [ + "▁Impact", + -11.63542652130127 + ], + [ + "▁curtain", + -11.635512351989746 + ], + [ + "▁brake", + -11.635724067687988 + ], + [ + "▁sustain", + -11.635730743408203 + ], + [ + "▁applicant", + -11.63575553894043 + ], + [ + "▁`", + -11.635865211486816 + ], + [ + "▁cattle", + -11.636223793029785 + ], + [ + "▁clue", + -11.636251449584961 + ], + [ + "▁controversy", + -11.63664436340332 + ], + [ + "▁enrolled", + -11.636655807495117 + ], + [ + "▁UV", + -11.636666297912598 + ], + [ + "▁te", + -11.63669204711914 + ], + [ + "▁prompted", + -11.63683032989502 + ], + [ + "▁imagined", + -11.63702392578125 + ], + [ + "ura", + -11.637117385864258 + ], + [ + "▁Evans", + -11.637131690979004 + ], + [ + "▁Waste", + -11.637545585632324 + ], + [ + "▁Prof", + -11.637629508972168 + ], + [ + "▁fever", + -11.637760162353516 + ], + [ + "▁gospel", + -11.638160705566406 + ], + [ + "▁incorrect", + -11.638239860534668 + ], + [ + "▁Broadway", + -11.638306617736816 + ], + [ + "▁enterprises", + -11.638541221618652 + ], + [ + "▁Carol", + -11.638829231262207 + ], + [ + "▁bathrooms", + -11.638853073120117 + ], + [ + "han", + -11.639080047607422 + ], + [ + "▁Faith", + -11.639118194580078 + ], + [ + "▁nails", + -11.639362335205078 + ], + [ + "▁heels", + -11.639423370361328 + ], + [ + "▁eternal", + -11.63949203491211 + ], + [ + "▁Mad", + -11.639748573303223 + ], + [ + "▁Upper", + -11.639921188354492 + ], + [ + "▁Stage", + -11.640275001525879 + ], + [ + "dy", + -11.640292167663574 + ], + [ + "▁rehabilitation", + -11.64064884185791 + ], + [ + "▁Notes", + -11.6406888961792 + ], + [ + "▁united", + -11.640745162963867 + ], + [ + "▁scent", + -11.640939712524414 + ], + [ + "▁socks", + -11.641142845153809 + ], + [ + "▁Belgium", + -11.641231536865234 + ], + [ + "▁Published", + -11.64123821258545 + ], + [ + "▁mentally", + -11.641434669494629 + ], + [ + "▁Barry", + -11.64144515991211 + ], + [ + "▁kiss", + -11.641563415527344 + ], + [ + "▁leak", + -11.641733169555664 + ], + [ + "▁wardrobe", + -11.641952514648438 + ], + [ + "▁Gun", + -11.64207649230957 + ], + [ + "▁attacking", + -11.642593383789062 + ], + [ + "▁porch", + -11.64302921295166 + ], + [ + "▁maintains", + -11.643317222595215 + ], + [ + "▁Physical", + -11.643362998962402 + ], + [ + "▁blockchain", + -11.643445014953613 + ], + [ + "▁Uber", + -11.643601417541504 + ], + [ + "▁indicators", + -11.643691062927246 + ], + [ + "▁Rice", + -11.643888473510742 + ], + [ + "▁rhythm", + -11.64401626586914 + ], + [ + "▁deposits", + -11.644072532653809 + ], + [ + "▁fortune", + -11.644201278686523 + ], + [ + "▁Pool", + -11.64428997039795 + ], + [ + "▁therapist", + -11.644413948059082 + ], + [ + "five", + -11.644596099853516 + ], + [ + "▁raises", + -11.644742012023926 + ], + [ + "▁CPU", + -11.64540958404541 + ], + [ + "▁pharmaceutical", + -11.645586967468262 + ], + [ + "▁methodology", + -11.645638465881348 + ], + [ + "▁Arkansas", + -11.645821571350098 + ], + [ + "▁retention", + -11.645925521850586 + ], + [ + "dale", + -11.645949363708496 + ], + [ + "▁carriers", + -11.646095275878906 + ], + [ + "▁justify", + -11.646096229553223 + ], + [ + "▁Range", + -11.64614200592041 + ], + [ + "▁cancelled", + -11.646221160888672 + ], + [ + "▁Les", + -11.64644718170166 + ], + [ + "▁obstacles", + -11.646724700927734 + ], + [ + "▁mp", + -11.646993637084961 + ], + [ + "▁fires", + -11.647011756896973 + ], + [ + "▁Screen", + -11.647071838378906 + ], + [ + "▁financially", + -11.647187232971191 + ], + [ + "▁sewing", + -11.647199630737305 + ], + [ + "bi", + -11.647236824035645 + ], + [ + "▁lazy", + -11.647242546081543 + ], + [ + "▁tasting", + -11.6474027633667 + ], + [ + "▁clips", + -11.647591590881348 + ], + [ + "▁Eagle", + -11.647602081298828 + ], + [ + "▁dial", + -11.647613525390625 + ], + [ + "▁Transport", + -11.647722244262695 + ], + [ + "▁attachment", + -11.648087501525879 + ], + [ + "▁circular", + -11.648093223571777 + ], + [ + "▁backgrounds", + -11.648382186889648 + ], + [ + "▁fatigue", + -11.648417472839355 + ], + [ + "▁Lodge", + -11.648540496826172 + ], + [ + "▁worries", + -11.648805618286133 + ], + [ + "▁barn", + -11.649018287658691 + ], + [ + "▁Knowledge", + -11.649186134338379 + ], + [ + "▁Puerto", + -11.64941120147705 + ], + [ + "▁Tips", + -11.649518966674805 + ], + [ + "▁grief", + -11.649606704711914 + ], + [ + "▁Circuit", + -11.649741172790527 + ], + [ + "▁composite", + -11.649752616882324 + ], + [ + "▁Brain", + -11.64991283416748 + ], + [ + "▁cozy", + -11.649917602539062 + ], + [ + "▁withdraw", + -11.650083541870117 + ], + [ + "▁sticks", + -11.650300979614258 + ], + [ + "▁faithful", + -11.650935173034668 + ], + [ + "▁1978", + -11.650957107543945 + ], + [ + "▁mechanics", + -11.651010513305664 + ], + [ + "▁pipes", + -11.651100158691406 + ], + [ + "▁microwave", + -11.651448249816895 + ], + [ + "▁UP", + -11.651464462280273 + ], + [ + "▁bride", + -11.651741027832031 + ], + [ + "▁Woods", + -11.651745796203613 + ], + [ + "▁extends", + -11.651819229125977 + ], + [ + "first", + -11.652358055114746 + ], + [ + "▁Oliver", + -11.65256118774414 + ], + [ + "▁Juan", + -11.652653694152832 + ], + [ + "▁Su", + -11.652658462524414 + ], + [ + "▁lesser", + -11.653139114379883 + ], + [ + "▁1940", + -11.65316104888916 + ], + [ + "71", + -11.653214454650879 + ], + [ + "pp", + -11.653280258178711 + ], + [ + "▁tissues", + -11.65329360961914 + ], + [ + "▁gaps", + -11.65330696105957 + ], + [ + "▁Materials", + -11.653335571289062 + ], + [ + "▁translate", + -11.65363597869873 + ], + [ + "▁Storm", + -11.653803825378418 + ], + [ + "when", + -11.654008865356445 + ], + [ + "▁remedy", + -11.654111862182617 + ], + [ + "▁collar", + -11.654166221618652 + ], + [ + "▁locks", + -11.65429973602295 + ], + [ + "▁Jobs", + -11.654343605041504 + ], + [ + "▁archive", + -11.654359817504883 + ], + [ + "▁Cole", + -11.65463638305664 + ], + [ + "▁grave", + -11.654866218566895 + ], + [ + "La", + -11.654892921447754 + ], + [ + "▁Canon", + -11.654962539672852 + ], + [ + "▁Client", + -11.6554594039917 + ], + [ + "▁Whenever", + -11.655728340148926 + ], + [ + "▁Apr", + -11.6558198928833 + ], + [ + "▁pillow", + -11.656355857849121 + ], + [ + "▁Moving", + -11.656453132629395 + ], + [ + "▁urgent", + -11.656563758850098 + ], + [ + "OR", + -11.65661907196045 + ], + [ + "▁automobile", + -11.656628608703613 + ], + [ + "▁Luckily", + -11.656639099121094 + ], + [ + "▁iTunes", + -11.657014846801758 + ], + [ + "▁columns", + -11.657109260559082 + ], + [ + "▁Sa", + -11.657303810119629 + ], + [ + "minded", + -11.657776832580566 + ], + [ + "▁priest", + -11.65787124633789 + ], + [ + "▁Photos", + -11.657992362976074 + ], + [ + "▁Par", + -11.65858268737793 + ], + [ + "ita", + -11.658723831176758 + ], + [ + "▁smartphones", + -11.65887451171875 + ], + [ + "▁invalid", + -11.65916633605957 + ], + [ + "▁glance", + -11.659218788146973 + ], + [ + "▁86", + -11.65981674194336 + ], + [ + "▁outlined", + -11.660019874572754 + ], + [ + "▁thickness", + -11.660025596618652 + ], + [ + "▁Nashville", + -11.660058975219727 + ], + [ + "▁Soul", + -11.660090446472168 + ], + [ + "oh", + -11.660172462463379 + ], + [ + "▁ballot", + -11.660346984863281 + ], + [ + "▁Indians", + -11.66071891784668 + ], + [ + "▁Yesterday", + -11.66087818145752 + ], + [ + "▁divide", + -11.660895347595215 + ], + [ + "▁të", + -11.660919189453125 + ], + [ + "▁87", + -11.661402702331543 + ], + [ + "▁Transfer", + -11.661837577819824 + ], + [ + "▁Privacy", + -11.662016868591309 + ], + [ + "▁trapped", + -11.662032127380371 + ], + [ + "NET", + -11.66204833984375 + ], + [ + "▁classification", + -11.662109375 + ], + [ + "▁portions", + -11.662158012390137 + ], + [ + "▁sliding", + -11.662208557128906 + ], + [ + "76", + -11.662283897399902 + ], + [ + "▁Brazilian", + -11.662367820739746 + ], + [ + "▁Mall", + -11.662379264831543 + ], + [ + "▁emotionally", + -11.662443161010742 + ], + [ + "▁Stars", + -11.6626615524292 + ], + [ + "▁Victorian", + -11.662795066833496 + ], + [ + "▁Joint", + -11.662999153137207 + ], + [ + "▁dump", + -11.663000106811523 + ], + [ + "▁males", + -11.663084983825684 + ], + [ + "▁demanded", + -11.663086891174316 + ], + [ + "▁Features", + -11.6631441116333 + ], + [ + "▁advocacy", + -11.663568496704102 + ], + [ + "▁Virtual", + -11.663994789123535 + ], + [ + "▁nevertheless", + -11.664026260375977 + ], + [ + "▁unlock", + -11.664060592651367 + ], + [ + "▁bake", + -11.664127349853516 + ], + [ + "▁revealing", + -11.664651870727539 + ], + [ + "▁Sara", + -11.664652824401855 + ], + [ + "▁Bath", + -11.664848327636719 + ], + [ + "▁lending", + -11.665140151977539 + ], + [ + "▁Driver", + -11.66520881652832 + ], + [ + "▁attribute", + -11.665343284606934 + ], + [ + "▁realm", + -11.6657075881958 + ], + [ + "▁formerly", + -11.665766716003418 + ], + [ + "▁Theater", + -11.665817260742188 + ], + [ + "▁simpler", + -11.665826797485352 + ], + [ + "▁Ah", + -11.665861129760742 + ], + [ + "▁spite", + -11.665909767150879 + ], + [ + "▁Gov", + -11.665977478027344 + ], + [ + "▁guilt", + -11.666006088256836 + ], + [ + "▁soldier", + -11.66601848602295 + ], + [ + "▁coding", + -11.66604232788086 + ], + [ + "▁Delivery", + -11.666152000427246 + ], + [ + "▁SP", + -11.666302680969238 + ], + [ + "▁youngest", + -11.666328430175781 + ], + [ + "▁Opera", + -11.666372299194336 + ], + [ + "▁Barack", + -11.666471481323242 + ], + [ + "With", + -11.66649055480957 + ], + [ + "▁Hart", + -11.666556358337402 + ], + [ + "▁improves", + -11.666810035705566 + ], + [ + "▁excel", + -11.666852951049805 + ], + [ + "▁prevents", + -11.667296409606934 + ], + [ + "▁fabrics", + -11.66762638092041 + ], + [ + "▁Columbus", + -11.667695045471191 + ], + [ + "zo", + -11.668268203735352 + ], + [ + "yo", + -11.6685209274292 + ], + [ + "▁fame", + -11.668543815612793 + ], + [ + "▁NOW", + -11.668622970581055 + ], + [ + "▁Residential", + -11.669037818908691 + ], + [ + "▁grandfather", + -11.669106483459473 + ], + [ + "▁Argentina", + -11.669282913208008 + ], + [ + "▁leisure", + -11.669465065002441 + ], + [ + "▁arising", + -11.669546127319336 + ], + [ + "▁Exam", + -11.670031547546387 + ], + [ + "▁teenager", + -11.670100212097168 + ], + [ + "▁mall", + -11.67027473449707 + ], + [ + "▁thereof", + -11.670319557189941 + ], + [ + "ising", + -11.670389175415039 + ], + [ + "▁finances", + -11.670401573181152 + ], + [ + "ara", + -11.670422554016113 + ], + [ + "▁initiated", + -11.670473098754883 + ], + [ + "half", + -11.670543670654297 + ], + [ + "▁Baptist", + -11.670699119567871 + ], + [ + "▁competent", + -11.670816421508789 + ], + [ + "▁upgrades", + -11.670973777770996 + ], + [ + "▁licensing", + -11.671091079711914 + ], + [ + "▁complimentary", + -11.671345710754395 + ], + [ + "▁Budget", + -11.671372413635254 + ], + [ + "▁decorations", + -11.67175579071045 + ], + [ + "▁FM", + -11.671818733215332 + ], + [ + "▁Choice", + -11.67197322845459 + ], + [ + "▁pros", + -11.672099113464355 + ], + [ + "▁mod", + -11.672123908996582 + ], + [ + "▁sounded", + -11.672191619873047 + ], + [ + "▁desirable", + -11.672286033630371 + ], + [ + "▁eighth", + -11.67261791229248 + ], + [ + "buy", + -11.672653198242188 + ], + [ + "▁radar", + -11.673073768615723 + ], + [ + "▁specializes", + -11.67310619354248 + ], + [ + "▁Gardens", + -11.673161506652832 + ], + [ + "▁overhead", + -11.673604965209961 + ], + [ + "▁Arena", + -11.67365550994873 + ], + [ + "▁Danny", + -11.673928260803223 + ], + [ + "▁regulated", + -11.674278259277344 + ], + [ + "▁Fig", + -11.674397468566895 + ], + [ + "▁Alpha", + -11.674673080444336 + ], + [ + "▁Ar", + -11.674727439880371 + ], + [ + "▁transfers", + -11.674742698669434 + ], + [ + "▁roofing", + -11.675013542175293 + ], + [ + "的", + -11.675124168395996 + ], + [ + "▁alien", + -11.675222396850586 + ], + [ + "order", + -11.675559043884277 + ], + [ + "▁emerge", + -11.675764083862305 + ], + [ + "▁rug", + -11.675765037536621 + ], + [ + "▁Edinburgh", + -11.675829887390137 + ], + [ + "▁guards", + -11.675992012023926 + ], + [ + "▁Coming", + -11.676000595092773 + ], + [ + "▁noting", + -11.67624282836914 + ], + [ + "▁kinda", + -11.676258087158203 + ], + [ + "▁rentals", + -11.676305770874023 + ], + [ + "▁stressful", + -11.676847457885742 + ], + [ + "master", + -11.677114486694336 + ], + [ + "▁Queensland", + -11.677145957946777 + ], + [ + "▁tuition", + -11.677149772644043 + ], + [ + "▁Parents", + -11.677177429199219 + ], + [ + "▁intentions", + -11.677370071411133 + ], + [ + "▁Mt", + -11.677667617797852 + ], + [ + "core", + -11.677759170532227 + ], + [ + "▁declare", + -11.677766799926758 + ], + [ + "▁combinations", + -11.677865028381348 + ], + [ + "▁Material", + -11.678045272827148 + ], + [ + "▁Gene", + -11.678064346313477 + ], + [ + "▁OH", + -11.678109169006348 + ], + [ + "▁disclosed", + -11.678183555603027 + ], + [ + "▁conclude", + -11.678403854370117 + ], + [ + "▁jar", + -11.678529739379883 + ], + [ + "ula", + -11.678594589233398 + ], + [ + "▁fatal", + -11.678791046142578 + ], + [ + "▁Chicken", + -11.678801536560059 + ], + [ + "▁cycles", + -11.678938865661621 + ], + [ + "▁Higher", + -11.678984642028809 + ], + [ + "▁banner", + -11.678993225097656 + ], + [ + "▁fifteen", + -11.679120063781738 + ], + [ + "yl", + -11.679346084594727 + ], + [ + "▁disclose", + -11.679391860961914 + ], + [ + "▁compiled", + -11.67961597442627 + ], + [ + "▁quicker", + -11.679638862609863 + ], + [ + "▁Different", + -11.67989444732666 + ], + [ + "▁sponsors", + -11.679941177368164 + ], + [ + "▁Mason", + -11.680015563964844 + ], + [ + "▁neighborhoods", + -11.680020332336426 + ], + [ + "▁Route", + -11.680033683776855 + ], + [ + "▁Listen", + -11.680068969726562 + ], + [ + "▁Com", + -11.680095672607422 + ], + [ + "▁Factory", + -11.68012523651123 + ], + [ + "▁94", + -11.680148124694824 + ], + [ + "▁Leather", + -11.680264472961426 + ], + [ + "▁sciences", + -11.680429458618164 + ], + [ + "▁breakdown", + -11.680501937866211 + ], + [ + "▁Todd", + -11.680598258972168 + ], + [ + "▁Discussion", + -11.680648803710938 + ], + [ + "▁mph", + -11.680922508239746 + ], + [ + "▁MB", + -11.681024551391602 + ], + [ + "▁shifts", + -11.681050300598145 + ], + [ + "▁Villa", + -11.68134880065918 + ], + [ + "▁Neither", + -11.681694984436035 + ], + [ + "▁bullet", + -11.681894302368164 + ], + [ + "▁lobby", + -11.681934356689453 + ], + [ + "Co", + -11.681936264038086 + ], + [ + "▁Po", + -11.682188034057617 + ], + [ + "▁festivals", + -11.682320594787598 + ], + [ + "▁connects", + -11.682336807250977 + ], + [ + "▁promotes", + -11.68239974975586 + ], + [ + "▁Strong", + -11.682514190673828 + ], + [ + "▁questioned", + -11.682605743408203 + ], + [ + "▁farmer", + -11.682644844055176 + ], + [ + "▁Tools", + -11.683055877685547 + ], + [ + "▁refrigerator", + -11.683177947998047 + ], + [ + "▁1975", + -11.683429718017578 + ], + [ + "▁1976", + -11.683603286743164 + ], + [ + "▁explores", + -11.683609008789062 + ], + [ + "▁ne", + -11.683658599853516 + ], + [ + "▁Sounds", + -11.683686256408691 + ], + [ + "▁marble", + -11.683979034423828 + ], + [ + "▁comprised", + -11.684144973754883 + ], + [ + "▁125", + -11.6842679977417 + ], + [ + "▁alignment", + -11.684561729431152 + ], + [ + "▁Mario", + -11.684585571289062 + ], + [ + "▁parliament", + -11.684616088867188 + ], + [ + "ated", + -11.684638977050781 + ], + [ + "▁Version", + -11.684799194335938 + ], + [ + "▁Richmond", + -11.684850692749023 + ], + [ + "▁Disease", + -11.684946060180664 + ], + [ + "▁quilt", + -11.685001373291016 + ], + [ + "▁triggered", + -11.685039520263672 + ], + [ + "▁equation", + -11.685157775878906 + ], + [ + "▁EPA", + -11.685197830200195 + ], + [ + "▁Cohen", + -11.685199737548828 + ], + [ + "▁eBay", + -11.685606956481934 + ], + [ + "▁79", + -11.685616493225098 + ], + [ + "▁Stand", + -11.68598747253418 + ], + [ + "▁stove", + -11.686009407043457 + ], + [ + "▁los", + -11.686010360717773 + ], + [ + "▁Tool", + -11.686159133911133 + ], + [ + "Up", + -11.68635082244873 + ], + [ + "▁honour", + -11.68667984008789 + ], + [ + "▁promptly", + -11.686717987060547 + ], + [ + "▁pale", + -11.68699836730957 + ], + [ + "commerce", + -11.68721866607666 + ], + [ + "▁aggregate", + -11.687383651733398 + ], + [ + "▁gravity", + -11.687397956848145 + ], + [ + "nes", + -11.687442779541016 + ], + [ + "OS", + -11.687676429748535 + ], + [ + "▁shield", + -11.688000679016113 + ], + [ + "▁thumb", + -11.688039779663086 + ], + [ + "▁traditionally", + -11.688084602355957 + ], + [ + "▁thrive", + -11.688129425048828 + ], + [ + "▁march", + -11.688472747802734 + ], + [ + "▁smiling", + -11.68861198425293 + ], + [ + "▁toy", + -11.688754081726074 + ], + [ + "▁Publishing", + -11.688770294189453 + ], + [ + "▁gloves", + -11.689424514770508 + ], + [ + "▁1968", + -11.689445495605469 + ], + [ + "▁freeze", + -11.689574241638184 + ], + [ + "▁humble", + -11.689720153808594 + ], + [ + "▁medal", + -11.689859390258789 + ], + [ + "▁sleeve", + -11.68990707397461 + ], + [ + "▁athlete", + -11.690144538879395 + ], + [ + "▁Nintendo", + -11.690335273742676 + ], + [ + "▁Finding", + -11.690337181091309 + ], + [ + "89", + -11.690690994262695 + ], + [ + "▁stats", + -11.690886497497559 + ], + [ + "▁Dis", + -11.690979957580566 + ], + [ + "▁realised", + -11.691181182861328 + ], + [ + "▁promotions", + -11.691425323486328 + ], + [ + "▁nomination", + -11.691435813903809 + ], + [ + "▁adaptation", + -11.691493034362793 + ], + [ + "Not", + -11.69168758392334 + ], + [ + "ES", + -11.691788673400879 + ], + [ + "▁similarly", + -11.691977500915527 + ], + [ + "▁autumn", + -11.692113876342773 + ], + [ + "grade", + -11.692176818847656 + ], + [ + "▁Phase", + -11.69221305847168 + ], + [ + "your", + -11.692519187927246 + ], + [ + "▁altered", + -11.692585945129395 + ], + [ + "▁Chef", + -11.692642211914062 + ], + [ + "▁researcher", + -11.692850112915039 + ], + [ + "▁revolutionary", + -11.692896842956543 + ], + [ + "▁explosion", + -11.692953109741211 + ], + [ + "▁notify", + -11.693045616149902 + ], + [ + "▁Oakland", + -11.693709373474121 + ], + [ + "▁habitat", + -11.69373893737793 + ], + [ + "▁Va", + -11.693991661071777 + ], + [ + "▁needle", + -11.694032669067383 + ], + [ + "▁SEC", + -11.694072723388672 + ], + [ + "▁confidential", + -11.69410228729248 + ], + [ + "78", + -11.694206237792969 + ], + [ + "▁ankle", + -11.69438362121582 + ], + [ + "Now", + -11.694557189941406 + ], + [ + "84", + -11.694589614868164 + ], + [ + "▁Pretty", + -11.694692611694336 + ], + [ + "▁varies", + -11.694849014282227 + ], + [ + "▁granite", + -11.69493293762207 + ], + [ + "was", + -11.695220947265625 + ], + [ + "の", + -11.695422172546387 + ], + [ + "▁Contemporary", + -11.69545841217041 + ], + [ + "▁Shanghai", + -11.695466041564941 + ], + [ + "▁matrix", + -11.69569206237793 + ], + [ + "▁chic", + -11.6958589553833 + ], + [ + "▁forty", + -11.6959228515625 + ], + [ + "ons", + -11.695996284484863 + ], + [ + "▁strongest", + -11.696024894714355 + ], + [ + "▁Grove", + -11.696417808532715 + ], + [ + "▁logistics", + -11.696418762207031 + ], + [ + "▁calcium", + -11.69670581817627 + ], + [ + "▁vaccine", + -11.696711540222168 + ], + [ + "ella", + -11.696971893310547 + ], + [ + "fish", + -11.697016716003418 + ], + [ + "▁Adult", + -11.697104454040527 + ], + [ + "▁Montana", + -11.69723129272461 + ], + [ + "▁alerts", + -11.697550773620605 + ], + [ + "▁Eagles", + -11.697905540466309 + ], + [ + "▁infant", + -11.697916984558105 + ], + [ + "▁Mercedes", + -11.698301315307617 + ], + [ + "▁Doug", + -11.698318481445312 + ], + [ + "▁Ham", + -11.698342323303223 + ], + [ + "▁rivers", + -11.698651313781738 + ], + [ + "▁journalism", + -11.698786735534668 + ], + [ + "▁polls", + -11.698860168457031 + ], + [ + "▁sentiment", + -11.699056625366211 + ], + [ + "▁mindset", + -11.699146270751953 + ], + [ + "▁likelihood", + -11.69914722442627 + ], + [ + "▁Healthcare", + -11.69918155670166 + ], + [ + "▁verified", + -11.699661254882812 + ], + [ + "▁undoubtedly", + -11.699706077575684 + ], + [ + "▁strings", + -11.699725151062012 + ], + [ + "pur", + -11.699880599975586 + ], + [ + "effective", + -11.700643539428711 + ], + [ + "▁Strategy", + -11.700716972351074 + ], + [ + "▁Resource", + -11.700730323791504 + ], + [ + "▁insulation", + -11.700738906860352 + ], + [ + "▁quarters", + -11.700757026672363 + ], + [ + "▁bacon", + -11.700788497924805 + ], + [ + "▁branding", + -11.700909614562988 + ], + [ + "green", + -11.701146125793457 + ], + [ + "▁\\", + -11.701241493225098 + ], + [ + "▁Harvey", + -11.701469421386719 + ], + [ + "▁Julie", + -11.701644897460938 + ], + [ + "▁Suite", + -11.701849937438965 + ], + [ + "▁useless", + -11.701943397521973 + ], + [ + "▁instrumental", + -11.702194213867188 + ], + [ + "▁1972", + -11.70222282409668 + ], + [ + "▁renewed", + -11.702535629272461 + ], + [ + "ning", + -11.702606201171875 + ], + [ + "▁BY", + -11.702940940856934 + ], + [ + "▁rushed", + -11.702946662902832 + ], + [ + "▁Harbor", + -11.70304012298584 + ], + [ + "▁traits", + -11.703185081481934 + ], + [ + "▁Focus", + -11.703313827514648 + ], + [ + "▁Pete", + -11.70358657836914 + ], + [ + "hr", + -11.703968048095703 + ], + [ + "▁Canyon", + -11.704334259033203 + ], + [ + "▁insisted", + -11.704428672790527 + ], + [ + "worth", + -11.70447063446045 + ], + [ + "▁Less", + -11.704568862915039 + ], + [ + "▁Lin", + -11.704778671264648 + ], + [ + "▁CC", + -11.704841613769531 + ], + [ + "▁joints", + -11.705044746398926 + ], + [ + "▁mum", + -11.705157279968262 + ], + [ + "▁slave", + -11.705251693725586 + ], + [ + "▁sunlight", + -11.705331802368164 + ], + [ + "▁Turner", + -11.70567798614502 + ], + [ + "▁Watson", + -11.70589828491211 + ], + [ + "▁bicycle", + -11.705973625183105 + ], + [ + "▁Wang", + -11.706108093261719 + ], + [ + "91", + -11.706111907958984 + ], + [ + "▁mathematics", + -11.70612907409668 + ], + [ + "▁develops", + -11.706223487854004 + ], + [ + "▁Agriculture", + -11.706232070922852 + ], + [ + "▁assembled", + -11.706321716308594 + ], + [ + "ez", + -11.706900596618652 + ], + [ + "▁Cream", + -11.707204818725586 + ], + [ + "▁nationally", + -11.707220077514648 + ], + [ + "▁negotiate", + -11.707242012023926 + ], + [ + "▁purely", + -11.707561492919922 + ], + [ + "Me", + -11.707673072814941 + ], + [ + "▁phrases", + -11.707744598388672 + ], + [ + "▁quarterly", + -11.707748413085938 + ], + [ + "▁NHS", + -11.707839965820312 + ], + [ + "especially", + -11.707942008972168 + ], + [ + "▁brokers", + -11.707944869995117 + ], + [ + "▁convey", + -11.708382606506348 + ], + [ + "▁proprietary", + -11.708638191223145 + ], + [ + "▁Twin", + -11.708647727966309 + ], + [ + "▁technically", + -11.708761215209961 + ], + [ + "▁Helen", + -11.709138870239258 + ], + [ + "▁GP", + -11.709147453308105 + ], + [ + "▁limitation", + -11.709578514099121 + ], + [ + "▁Studios", + -11.709738731384277 + ], + [ + "▁Commons", + -11.709992408752441 + ], + [ + "74", + -11.710176467895508 + ], + [ + "▁Players", + -11.710185050964355 + ], + [ + "▁si", + -11.710200309753418 + ], + [ + "▁memorial", + -11.710310935974121 + ], + [ + "▁lenders", + -11.710355758666992 + ], + [ + "▁Cultural", + -11.711350440979004 + ], + [ + "▁cottage", + -11.71135425567627 + ], + [ + "ably", + -11.711777687072754 + ], + [ + "▁Skin", + -11.712051391601562 + ], + [ + "▁comprising", + -11.71213436126709 + ], + [ + "▁amp", + -11.712150573730469 + ], + [ + "▁linking", + -11.712212562561035 + ], + [ + "▁shallow", + -11.712396621704102 + ], + [ + "▁Mel", + -11.712791442871094 + ], + [ + "▁knocked", + -11.713022232055664 + ], + [ + "▁anxious", + -11.713117599487305 + ], + [ + "▁coordination", + -11.713184356689453 + ], + [ + "▁quantities", + -11.713227272033691 + ], + [ + "▁£1", + -11.713435173034668 + ], + [ + "▁vitamins", + -11.713512420654297 + ], + [ + "▁sailing", + -11.713576316833496 + ], + [ + "▁rankings", + -11.713854789733887 + ], + [ + "▁hood", + -11.713967323303223 + ], + [ + "▁es", + -11.714068412780762 + ], + [ + "▁Gospel", + -11.714310646057129 + ], + [ + "▁subscribers", + -11.714395523071289 + ], + [ + "click", + -11.714536666870117 + ], + [ + "92", + -11.71493148803711 + ], + [ + "▁NHL", + -11.715010643005371 + ], + [ + "▁believing", + -11.715047836303711 + ], + [ + "▁cakes", + -11.715217590332031 + ], + [ + "▁offline", + -11.715218544006348 + ], + [ + "▁recordings", + -11.715231895446777 + ], + [ + "▁timber", + -11.715278625488281 + ], + [ + "▁marry", + -11.71538257598877 + ], + [ + "▁mailing", + -11.715396881103516 + ], + [ + "will", + -11.715461730957031 + ], + [ + "▁fixtures", + -11.715598106384277 + ], + [ + "tu", + -11.715925216674805 + ], + [ + "▁Photography", + -11.71594524383545 + ], + [ + "online", + -11.71596622467041 + ], + [ + "ky", + -11.71624755859375 + ], + [ + "▁header", + -11.716264724731445 + ], + [ + "94", + -11.716466903686523 + ], + [ + "▁gratitude", + -11.71651554107666 + ], + [ + "▁devastating", + -11.716535568237305 + ], + [ + "▁illustrations", + -11.716665267944336 + ], + [ + "▁poet", + -11.716811180114746 + ], + [ + "▁poems", + -11.716832160949707 + ], + [ + "▁imported", + -11.717082977294922 + ], + [ + "▁sentenced", + -11.717114448547363 + ], + [ + "▁chase", + -11.717242240905762 + ], + [ + "▁Hunt", + -11.71734619140625 + ], + [ + "▁su", + -11.717495918273926 + ], + [ + "▁sunset", + -11.717534065246582 + ], + [ + "▁battles", + -11.717726707458496 + ], + [ + "▁GDP", + -11.718184471130371 + ], + [ + "▁concerts", + -11.718273162841797 + ], + [ + "1000", + -11.71876049041748 + ], + [ + "▁relates", + -11.71880054473877 + ], + [ + "▁href", + -11.718896865844727 + ], + [ + "▁rocket", + -11.719038009643555 + ], + [ + "▁assessments", + -11.719186782836914 + ], + [ + "▁Warner", + -11.71928596496582 + ], + [ + "▁Info", + -11.719559669494629 + ], + [ + "▁survivors", + -11.719608306884766 + ], + [ + "▁dietary", + -11.719785690307617 + ], + [ + "▁reforms", + -11.719825744628906 + ], + [ + "▁Sugar", + -11.720529556274414 + ], + [ + "▁smallest", + -11.7206449508667 + ], + [ + "▁Touch", + -11.720685005187988 + ], + [ + "▁checkout", + -11.72076416015625 + ], + [ + "MB", + -11.720829010009766 + ], + [ + "▁strap", + -11.720952033996582 + ], + [ + "▁bloggers", + -11.72096061706543 + ], + [ + "▁parade", + -11.721098899841309 + ], + [ + "▁editors", + -11.721216201782227 + ], + [ + "▁ample", + -11.721244812011719 + ], + [ + "▁refined", + -11.721580505371094 + ], + [ + "▁invasion", + -11.721646308898926 + ], + [ + "▁83", + -11.721702575683594 + ], + [ + "▁Basically", + -11.722044944763184 + ], + [ + "▁salmon", + -11.722123146057129 + ], + [ + "▁WILL", + -11.72218132019043 + ], + [ + "▁streak", + -11.722447395324707 + ], + [ + "▁Parts", + -11.722601890563965 + ], + [ + "▁puppy", + -11.722601890563965 + ], + [ + "▁kindness", + -11.722615242004395 + ], + [ + "▁Roberts", + -11.722667694091797 + ], + [ + "▁attitudes", + -11.7227144241333 + ], + [ + "▁BA", + -11.722813606262207 + ], + [ + "▁1973", + -11.722914695739746 + ], + [ + "▁Workshop", + -11.722990036010742 + ], + [ + "▁NCAA", + -11.723255157470703 + ], + [ + "▁elaborate", + -11.72347354888916 + ], + [ + "▁Abraham", + -11.723821640014648 + ], + [ + "120", + -11.724034309387207 + ], + [ + "▁prep", + -11.724205017089844 + ], + [ + "▁CAN", + -11.724372863769531 + ], + [ + "▁turkey", + -11.724446296691895 + ], + [ + "▁answering", + -11.724456787109375 + ], + [ + "ator", + -11.724544525146484 + ], + [ + "▁blown", + -11.724699020385742 + ], + [ + "▁damaging", + -11.7247314453125 + ], + [ + "▁scandal", + -11.724822998046875 + ], + [ + "▁pine", + -11.72484016418457 + ], + [ + "▁Lost", + -11.724994659423828 + ], + [ + "▁lender", + -11.725141525268555 + ], + [ + "▁informal", + -11.725204467773438 + ], + [ + "▁females", + -11.7256441116333 + ], + [ + "▁upside", + -11.7257080078125 + ], + [ + "▁conspiracy", + -11.725920677185059 + ], + [ + "▁activist", + -11.726016998291016 + ], + [ + "▁awkward", + -11.726434707641602 + ], + [ + "▁insulin", + -11.726503372192383 + ], + [ + "▁lo", + -11.727020263671875 + ], + [ + "▁Archives", + -11.72706127166748 + ], + [ + "▁Brandon", + -11.72718334197998 + ], + [ + "87", + -11.727568626403809 + ], + [ + "▁searched", + -11.727921485900879 + ], + [ + "▁fare", + -11.727947235107422 + ], + [ + "▁Hudson", + -11.727982521057129 + ], + [ + "▁accountable", + -11.728068351745605 + ], + [ + "ut", + -11.728209495544434 + ], + [ + "edge", + -11.72838306427002 + ], + [ + "▁pads", + -11.728652954101562 + ], + [ + "▁cables", + -11.72872257232666 + ], + [ + "▁Cuba", + -11.728738784790039 + ], + [ + "▁Organic", + -11.728741645812988 + ], + [ + "▁à", + -11.728775978088379 + ], + [ + "▁tin", + -11.728806495666504 + ], + [ + "▁prisoners", + -11.729166030883789 + ], + [ + "▁facebook", + -11.729180335998535 + ], + [ + "▁pond", + -11.729218482971191 + ], + [ + "▁pastor", + -11.729236602783203 + ], + [ + "▁Eco", + -11.729418754577637 + ], + [ + "▁Fat", + -11.729475021362305 + ], + [ + "▁happier", + -11.729846954345703 + ], + [ + "▁les", + -11.730140686035156 + ], + [ + "▁glow", + -11.730283737182617 + ], + [ + "▁Cisco", + -11.7304048538208 + ], + [ + "▁Episode", + -11.73047161102295 + ], + [ + "▁planting", + -11.730551719665527 + ], + [ + "▁eliminated", + -11.730669021606445 + ], + [ + "▁IRS", + -11.730720520019531 + ], + [ + "▁societies", + -11.730899810791016 + ], + [ + "▁insured", + -11.731032371520996 + ], + [ + "income", + -11.731064796447754 + ], + [ + "▁Gate", + -11.731112480163574 + ], + [ + "▁crowded", + -11.731114387512207 + ], + [ + "▁exhaust", + -11.731389999389648 + ], + [ + "▁cosmetic", + -11.73144245147705 + ], + [ + "ika", + -11.731560707092285 + ], + [ + "▁Nu", + -11.732282638549805 + ], + [ + "▁Ni", + -11.732344627380371 + ], + [ + "▁delightful", + -11.732433319091797 + ], + [ + "▁clearing", + -11.732709884643555 + ], + [ + "▁consultants", + -11.732881546020508 + ], + [ + "▁Month", + -11.733074188232422 + ], + [ + "fire", + -11.733163833618164 + ], + [ + "▁rustic", + -11.733233451843262 + ], + [ + "▁rows", + -11.7334623336792 + ], + [ + "▁Horse", + -11.733487129211426 + ], + [ + "▁metals", + -11.733614921569824 + ], + [ + "▁bleeding", + -11.733741760253906 + ], + [ + "▁1969", + -11.733894348144531 + ], + [ + "▁illustration", + -11.733918190002441 + ], + [ + "▁tolerance", + -11.734130859375 + ], + [ + "▁Ottawa", + -11.734275817871094 + ], + [ + "▁flooding", + -11.734447479248047 + ], + [ + "▁incentives", + -11.734545707702637 + ], + [ + "▁1974", + -11.734648704528809 + ], + [ + "▁verification", + -11.734721183776855 + ], + [ + "▁Vista", + -11.734729766845703 + ], + [ + "▁unity", + -11.734810829162598 + ], + [ + "▁Tesla", + -11.734868049621582 + ], + [ + "▁perfection", + -11.735140800476074 + ], + [ + "▁accountability", + -11.735147476196289 + ], + [ + "▁genius", + -11.735254287719727 + ], + [ + "▁Er", + -11.735379219055176 + ], + [ + "range", + -11.73538875579834 + ], + [ + "▁municipal", + -11.73538875579834 + ], + [ + "82", + -11.735508918762207 + ], + [ + "▁mortality", + -11.735563278198242 + ], + [ + "▁belonging", + -11.735631942749023 + ], + [ + "▁Record", + -11.735729217529297 + ], + [ + "▁combo", + -11.735882759094238 + ], + [ + "▁anchor", + -11.735910415649414 + ], + [ + "pdf", + -11.736051559448242 + ], + [ + "▁pill", + -11.736215591430664 + ], + [ + "▁incentive", + -11.736239433288574 + ], + [ + "73", + -11.736287117004395 + ], + [ + "ell", + -11.73635482788086 + ], + [ + "▁dies", + -11.736456871032715 + ], + [ + "▁1977", + -11.736477851867676 + ], + [ + "▁Airlines", + -11.73654842376709 + ], + [ + "83", + -11.736566543579102 + ], + [ + "▁UI", + -11.736568450927734 + ], + [ + "▁enhancing", + -11.736742973327637 + ], + [ + "▁Prices", + -11.736767768859863 + ], + [ + "▁cherry", + -11.73678970336914 + ], + [ + "▁scenery", + -11.736870765686035 + ], + [ + "▁Explore", + -11.73696517944336 + ], + [ + "▁grandchildren", + -11.736998558044434 + ], + [ + "bed", + -11.737117767333984 + ], + [ + "▁exports", + -11.737343788146973 + ], + [ + "media", + -11.737387657165527 + ], + [ + "▁constitute", + -11.737390518188477 + ], + [ + "▁Treasury", + -11.737397193908691 + ], + [ + "▁surgeon", + -11.737441062927246 + ], + [ + "▁Chocolate", + -11.737846374511719 + ], + [ + "▁Circle", + -11.73786735534668 + ], + [ + "▁id", + -11.738073348999023 + ], + [ + "▁lace", + -11.738496780395508 + ], + [ + "▁Competition", + -11.73849868774414 + ], + [ + "81", + -11.73864459991455 + ], + [ + "▁Mine", + -11.738691329956055 + ], + [ + "▁hardest", + -11.738712310791016 + ], + [ + "▁Ashley", + -11.739152908325195 + ], + [ + "▁em", + -11.73917293548584 + ], + [ + "▁Pearl", + -11.739383697509766 + ], + [ + "▁affiliated", + -11.739409446716309 + ], + [ + "▁locals", + -11.73949146270752 + ], + [ + "▁VIP", + -11.739550590515137 + ], + [ + "▁rounded", + -11.739612579345703 + ], + [ + "eth", + -11.740159034729004 + ], + [ + "▁unprecedented", + -11.740208625793457 + ], + [ + "▁fighter", + -11.74035930633545 + ], + [ + "▁fighters", + -11.740377426147461 + ], + [ + "▁limiting", + -11.740617752075195 + ], + [ + "▁teenage", + -11.740850448608398 + ], + [ + "▁Chen", + -11.741036415100098 + ], + [ + "▁81", + -11.741192817687988 + ], + [ + "▁1967", + -11.741211891174316 + ], + [ + "▁Flight", + -11.741390228271484 + ], + [ + "▁compression", + -11.741446495056152 + ], + [ + "▁sandwich", + -11.741565704345703 + ], + [ + "▁attributed", + -11.741630554199219 + ], + [ + "mile", + -11.741645812988281 + ], + [ + "▁Chase", + -11.741714477539062 + ], + [ + "million", + -11.741924285888672 + ], + [ + "▁dissertation", + -11.742164611816406 + ], + [ + "▁Testament", + -11.74228572845459 + ], + [ + "▁CV", + -11.742701530456543 + ], + [ + "▁positively", + -11.742929458618164 + ], + [ + "▁protects", + -11.743123054504395 + ], + [ + "▁ch", + -11.743184089660645 + ], + [ + "▁Tampa", + -11.743597030639648 + ], + [ + "▁publishers", + -11.743624687194824 + ], + [ + "▁Historical", + -11.744121551513672 + ], + [ + "▁threads", + -11.744359970092773 + ], + [ + "▁propose", + -11.744409561157227 + ], + [ + "▁polished", + -11.744454383850098 + ], + [ + "▁Jefferson", + -11.74450397491455 + ], + [ + "▁sequences", + -11.744559288024902 + ], + [ + "▁Dennis", + -11.744617462158203 + ], + [ + "▁timeline", + -11.74467658996582 + ], + [ + "▁weigh", + -11.74496841430664 + ], + [ + "▁Virgin", + -11.745055198669434 + ], + [ + "than", + -11.745201110839844 + ], + [ + "▁mirrors", + -11.745254516601562 + ], + [ + "▁Hampshire", + -11.745442390441895 + ], + [ + "▁passive", + -11.745819091796875 + ], + [ + "▁messaging", + -11.746044158935547 + ], + [ + "▁prevented", + -11.746173858642578 + ], + [ + "▁constitution", + -11.746228218078613 + ], + [ + "▁disappear", + -11.74622917175293 + ], + [ + "▁pumpkin", + -11.74623966217041 + ], + [ + "▁extensions", + -11.746438980102539 + ], + [ + "ok", + -11.746443748474121 + ], + [ + "▁recruiting", + -11.746488571166992 + ], + [ + "▁Academic", + -11.746747970581055 + ], + [ + "▁Introduction", + -11.746747970581055 + ], + [ + "▁bail", + -11.746857643127441 + ], + [ + "▁Egyptian", + -11.746865272521973 + ], + [ + "▁Teaching", + -11.747040748596191 + ], + [ + "▁Yahoo", + -11.747090339660645 + ], + [ + "í", + -11.747214317321777 + ], + [ + "▁intersection", + -11.747564315795898 + ], + [ + "though", + -11.74760913848877 + ], + [ + "data", + -11.747703552246094 + ], + [ + "▁billing", + -11.747771263122559 + ], + [ + "▁nutritional", + -11.748030662536621 + ], + [ + "▁educators", + -11.748038291931152 + ], + [ + "post", + -11.74846076965332 + ], + [ + "▁lasted", + -11.748538970947266 + ], + [ + "▁impacted", + -11.748624801635742 + ], + [ + "web", + -11.748636245727539 + ], + [ + "tic", + -11.748882293701172 + ], + [ + "iya", + -11.749176979064941 + ], + [ + "▁glimpse", + -11.74917984008789 + ], + [ + "▁Artist", + -11.74942398071289 + ], + [ + "AL", + -11.749571800231934 + ], + [ + "▁Built", + -11.749763488769531 + ], + [ + "▁Elementary", + -11.749847412109375 + ], + [ + "▁unions", + -11.749958038330078 + ], + [ + "▁Guest", + -11.750093460083008 + ], + [ + "▁defining", + -11.750195503234863 + ], + [ + "▁premiere", + -11.750365257263184 + ], + [ + "▁Racing", + -11.750455856323242 + ], + [ + "▁membrane", + -11.750561714172363 + ], + [ + "▁bored", + -11.75065803527832 + ], + [ + "▁dense", + -11.750662803649902 + ], + [ + "▁economies", + -11.750680923461914 + ], + [ + "▁Switch", + -11.750879287719727 + ], + [ + "▁Platform", + -11.751384735107422 + ], + [ + "▁racist", + -11.751485824584961 + ], + [ + "▁implies", + -11.75159740447998 + ], + [ + "rock", + -11.751605033874512 + ], + [ + "▁CIA", + -11.751605987548828 + ], + [ + "▁qualifying", + -11.751786231994629 + ], + [ + "▁schedules", + -11.751850128173828 + ], + [ + "▁isolation", + -11.752001762390137 + ], + [ + "▁interference", + -11.752166748046875 + ], + [ + "▁racism", + -11.752233505249023 + ], + [ + "ata", + -11.752326965332031 + ], + [ + "hard", + -11.752532005310059 + ], + [ + "through", + -11.752559661865234 + ], + [ + "▁entrepreneur", + -11.752748489379883 + ], + [ + "▁Purchase", + -11.752973556518555 + ], + [ + "▁discomfort", + -11.753047943115234 + ], + [ + "ium", + -11.753064155578613 + ], + [ + "▁Czech", + -11.753524780273438 + ], + [ + "▁Supply", + -11.753530502319336 + ], + [ + "▁LG", + -11.753552436828613 + ], + [ + "▁hunger", + -11.753789901733398 + ], + [ + "▁passport", + -11.753874778747559 + ], + [ + "▁guarantees", + -11.7539644241333 + ], + [ + "▁fixing", + -11.754067420959473 + ], + [ + "▁databases", + -11.754181861877441 + ], + [ + "▁Guardian", + -11.754420280456543 + ], + [ + "▁journals", + -11.755112648010254 + ], + [ + "▁sticking", + -11.755169868469238 + ], + [ + "▁recycled", + -11.755212783813477 + ], + [ + "▁stance", + -11.755287170410156 + ], + [ + "▁indigenous", + -11.755358695983887 + ], + [ + "▁cholesterol", + -11.755434036254883 + ], + [ + "▁behavioral", + -11.755516052246094 + ], + [ + "▁absent", + -11.755661964416504 + ], + [ + "▁predictions", + -11.75572681427002 + ], + [ + "▁concentrated", + -11.755786895751953 + ], + [ + "▁swap", + -11.755841255187988 + ], + [ + "pre", + -11.755890846252441 + ], + [ + "▁overwhelmed", + -11.755961418151855 + ], + [ + "ries", + -11.756250381469727 + ], + [ + "▁icons", + -11.756348609924316 + ], + [ + "▁assumptions", + -11.756430625915527 + ], + [ + "▁Lauren", + -11.756589889526367 + ], + [ + "▁comics", + -11.756817817687988 + ], + [ + "▁wrist", + -11.757079124450684 + ], + [ + "▁underway", + -11.75710391998291 + ], + [ + "▁Pin", + -11.757120132446289 + ], + [ + "▁donors", + -11.757140159606934 + ], + [ + "▁proximity", + -11.757150650024414 + ], + [ + "▁plasma", + -11.757408142089844 + ], + [ + "▁nonetheless", + -11.757665634155273 + ], + [ + "▁remainder", + -11.757795333862305 + ], + [ + "▁Portugal", + -11.757866859436035 + ], + [ + "▁Austria", + -11.758222579956055 + ], + [ + "ever", + -11.758453369140625 + ], + [ + "These", + -11.758569717407227 + ], + [ + "ica", + -11.758909225463867 + ], + [ + "▁drilling", + -11.75915241241455 + ], + [ + "▁Worth", + -11.759214401245117 + ], + [ + "▁LP", + -11.759246826171875 + ], + [ + "▁McDonald", + -11.75927734375 + ], + [ + "▁Potter", + -11.759336471557617 + ], + [ + "oz", + -11.759845733642578 + ], + [ + "▁assisting", + -11.760005950927734 + ], + [ + "▁Late", + -11.76025104522705 + ], + [ + "^", + -11.760379791259766 + ], + [ + "Net", + -11.760428428649902 + ], + [ + "▁wax", + -11.760496139526367 + ], + [ + "▁cow", + -11.761399269104004 + ], + [ + "▁Haven", + -11.761497497558594 + ], + [ + "▁je", + -11.761521339416504 + ], + [ + "▁Clinic", + -11.761540412902832 + ], + [ + "▁proves", + -11.761812210083008 + ], + [ + "form", + -11.76187515258789 + ], + [ + "▁Teacher", + -11.761940002441406 + ], + [ + "▁GT", + -11.762062072753906 + ], + [ + "▁reject", + -11.762147903442383 + ], + [ + "▁flame", + -11.762155532836914 + ], + [ + "▁Cam", + -11.762157440185547 + ], + [ + "▁Growth", + -11.762286186218262 + ], + [ + "▁SS", + -11.762604713439941 + ], + [ + "sville", + -11.762833595275879 + ], + [ + "▁thoughtful", + -11.762948036193848 + ], + [ + "▁unfortunate", + -11.76301097869873 + ], + [ + "▁playoff", + -11.763384819030762 + ], + [ + "▁wished", + -11.763810157775879 + ], + [ + "і", + -11.763906478881836 + ], + [ + "▁tweeted", + -11.763927459716797 + ], + [ + "▁Blues", + -11.764086723327637 + ], + [ + "▁evolving", + -11.76413345336914 + ], + [ + "▁voluntary", + -11.76421070098877 + ], + [ + "ix", + -11.764461517333984 + ], + [ + "▁Sierra", + -11.764816284179688 + ], + [ + "▁Southeast", + -11.764838218688965 + ], + [ + "▁breeze", + -11.764920234680176 + ], + [ + "▁failures", + -11.765042304992676 + ], + [ + "▁Blake", + -11.765180587768555 + ], + [ + "▁cricket", + -11.765320777893066 + ], + [ + "▁Northwest", + -11.76539134979248 + ], + [ + "▁invisible", + -11.765799522399902 + ], + [ + "▁competitions", + -11.765975952148438 + ], + [ + "▁stepping", + -11.766337394714355 + ], + [ + "ó", + -11.766342163085938 + ], + [ + "▁Dating", + -11.766380310058594 + ], + [ + "▁handmade", + -11.766478538513184 + ], + [ + "▁notably", + -11.766502380371094 + ], + [ + "▁exchanges", + -11.766592025756836 + ], + [ + "▁qualifications", + -11.766677856445312 + ], + [ + "▁Norman", + -11.766685485839844 + ], + [ + "▁â", + -11.766901016235352 + ], + [ + "2007", + -11.766935348510742 + ], + [ + "93", + -11.766946792602539 + ], + [ + "▁customs", + -11.767213821411133 + ], + [ + "▁prone", + -11.76741886138916 + ], + [ + "ran", + -11.76755428314209 + ], + [ + "ada", + -11.767560958862305 + ], + [ + "▁Wait", + -11.767590522766113 + ], + [ + "▁Camera", + -11.767834663391113 + ], + [ + "Let", + -11.768162727355957 + ], + [ + "▁acquiring", + -11.768416404724121 + ], + [ + "night", + -11.769227981567383 + ], + [ + "▁commissioned", + -11.769269943237305 + ], + [ + "▁assumption", + -11.769634246826172 + ], + [ + "▁pathway", + -11.769801139831543 + ], + [ + "▁alliance", + -11.7698335647583 + ], + [ + "test", + -11.770228385925293 + ], + [ + "▁crafts", + -11.770236015319824 + ], + [ + "▁souls", + -11.77073860168457 + ], + [ + "▁Commonwealth", + -11.770806312561035 + ], + [ + "▁researching", + -11.77091121673584 + ], + [ + "▁strips", + -11.770979881286621 + ], + [ + "▁interventions", + -11.771112442016602 + ], + [ + "▁kg", + -11.771343231201172 + ], + [ + "▁disciplines", + -11.772162437438965 + ], + [ + "▁breeding", + -11.772533416748047 + ], + [ + "▁balcony", + -11.772595405578613 + ], + [ + "▁tones", + -11.772757530212402 + ], + [ + "▁Ground", + -11.772929191589355 + ], + [ + "▁Medicaid", + -11.772929191589355 + ], + [ + "▁stranger", + -11.772941589355469 + ], + [ + "▁worrying", + -11.772995948791504 + ], + [ + "▁Standards", + -11.773035049438477 + ], + [ + "▁Ash", + -11.773100852966309 + ], + [ + "▁SF", + -11.7731351852417 + ], + [ + "Can", + -11.773207664489746 + ], + [ + "▁openly", + -11.773417472839355 + ], + [ + "▁absorb", + -11.773561477661133 + ], + [ + "▁gods", + -11.773701667785645 + ], + [ + "▁Se", + -11.773703575134277 + ], + [ + "▁discovering", + -11.773757934570312 + ], + [ + "▁conclusions", + -11.773859024047852 + ], + [ + "▁Reports", + -11.773910522460938 + ], + [ + "▁Tiger", + -11.774060249328613 + ], + [ + "▁siblings", + -11.774194717407227 + ], + [ + "market", + -11.774500846862793 + ], + [ + "▁opera", + -11.77454662322998 + ], + [ + "▁builder", + -11.77454948425293 + ], + [ + "▁provincial", + -11.774898529052734 + ], + [ + "▁91", + -11.775003433227539 + ], + [ + "ett", + -11.775015830993652 + ], + [ + "▁casinos", + -11.775386810302734 + ], + [ + "▁certificates", + -11.77554702758789 + ], + [ + "▁Abu", + -11.77596378326416 + ], + [ + "▁throws", + -11.776378631591797 + ], + [ + "▁GO", + -11.77704906463623 + ], + [ + "▁whatsoever", + -11.777583122253418 + ], + [ + "▁vocals", + -11.777607917785645 + ], + [ + "▁bundle", + -11.777632713317871 + ], + [ + "Photo", + -11.777783393859863 + ], + [ + "▁respondents", + -11.77835750579834 + ], + [ + "zi", + -11.778679847717285 + ], + [ + "▁administered", + -11.778768539428711 + ], + [ + "▁Relations", + -11.778865814208984 + ], + [ + "▁notifications", + -11.77895450592041 + ], + [ + "▁router", + -11.779064178466797 + ], + [ + "▁Col", + -11.77910327911377 + ], + [ + "▁pumps", + -11.779143333435059 + ], + [ + "▁posters", + -11.779401779174805 + ], + [ + "▁modifications", + -11.779414176940918 + ], + [ + "▁boom", + -11.77946949005127 + ], + [ + "▁ribbon", + -11.779529571533203 + ], + [ + "▁trillion", + -11.779722213745117 + ], + [ + "▁constraints", + -11.7799654006958 + ], + [ + "▁Des", + -11.780035018920898 + ], + [ + "▁coordinator", + -11.780179977416992 + ], + [ + "▁License", + -11.780192375183105 + ], + [ + "▁Detail", + -11.7802152633667 + ], + [ + "▁extraction", + -11.780298233032227 + ], + [ + "▁distinguished", + -11.780428886413574 + ], + [ + "▁rebounds", + -11.780482292175293 + ], + [ + "▁drone", + -11.780616760253906 + ], + [ + "▁offshore", + -11.780704498291016 + ], + [ + "▁Window", + -11.78092098236084 + ], + [ + "▁correlation", + -11.781167030334473 + ], + [ + "▁soda", + -11.781524658203125 + ], + [ + "▁lime", + -11.781737327575684 + ], + [ + "▁arguing", + -11.782122611999512 + ], + [ + "▁keyword", + -11.782135009765625 + ], + [ + "ou", + -11.782181739807129 + ], + [ + "▁administrators", + -11.78220272064209 + ], + [ + "▁Mountains", + -11.782266616821289 + ], + [ + "▁gates", + -11.782333374023438 + ], + [ + "▁expectation", + -11.782334327697754 + ], + [ + "▁Para", + -11.782368659973145 + ], + [ + "yn", + -11.782393455505371 + ], + [ + "▁Universe", + -11.782400131225586 + ], + [ + "▁advisory", + -11.782687187194824 + ], + [ + "lock", + -11.783023834228516 + ], + [ + "▁cone", + -11.78311824798584 + ], + [ + "▁Joy", + -11.783227920532227 + ], + [ + "▁1971", + -11.783280372619629 + ], + [ + "▁Nathan", + -11.783507347106934 + ], + [ + "hot", + -11.783726692199707 + ], + [ + "▁Denmark", + -11.783924102783203 + ], + [ + "▁Leo", + -11.783926963806152 + ], + [ + "▁retained", + -11.784261703491211 + ], + [ + "▁paperwork", + -11.784452438354492 + ], + [ + "dimensional", + -11.784807205200195 + ], + [ + "▁caps", + -11.784814834594727 + ], + [ + "▁planes", + -11.784956932067871 + ], + [ + "▁Chuck", + -11.785025596618652 + ], + [ + "▁museums", + -11.785061836242676 + ], + [ + "istic", + -11.785401344299316 + ], + [ + "▁lectures", + -11.785564422607422 + ], + [ + "▁Garage", + -11.785639762878418 + ], + [ + "▁yarn", + -11.785648345947266 + ], + [ + "tz", + -11.785869598388672 + ], + [ + "▁curiosity", + -11.786249160766602 + ], + [ + "▁markers", + -11.786376953125 + ], + [ + "▁Recent", + -11.786611557006836 + ], + [ + "▁Architecture", + -11.786989212036133 + ], + [ + "▁correction", + -11.787094116210938 + ], + [ + "▁scheduling", + -11.787360191345215 + ], + [ + "▁counted", + -11.787446022033691 + ], + [ + "▁manuscript", + -11.787476539611816 + ], + [ + "▁angles", + -11.787652969360352 + ], + [ + "▁appropriately", + -11.7876558303833 + ], + [ + "▁boundary", + -11.787737846374512 + ], + [ + "▁activate", + -11.78787899017334 + ], + [ + "▁sins", + -11.787939071655273 + ], + [ + "▁photographers", + -11.788015365600586 + ], + [ + "▁sights", + -11.78805160522461 + ], + [ + "▁XP", + -11.788198471069336 + ], + [ + "▁Designs", + -11.788264274597168 + ], + [ + "info", + -11.788440704345703 + ], + [ + "▁Sat", + -11.788451194763184 + ], + [ + "▁Flat", + -11.789328575134277 + ], + [ + "▁credentials", + -11.789389610290527 + ], + [ + "▁angel", + -11.789417266845703 + ], + [ + "RE", + -11.789421081542969 + ], + [ + "▁Reed", + -11.789515495300293 + ], + [ + "▁continent", + -11.789789199829102 + ], + [ + "▁modification", + -11.789822578430176 + ], + [ + "▁Statistics", + -11.789937973022461 + ], + [ + "▁sturdy", + -11.790119171142578 + ], + [ + "▁collision", + -11.790121078491211 + ], + [ + "▁Fisher", + -11.790190696716309 + ], + [ + "▁rifle", + -11.790496826171875 + ], + [ + "▁Bull", + -11.790766716003418 + ], + [ + "▁governing", + -11.791278839111328 + ], + [ + "▁downloading", + -11.791330337524414 + ], + [ + "▁intuitive", + -11.791473388671875 + ], + [ + "▁missile", + -11.791545867919922 + ], + [ + "▁wonders", + -11.791586875915527 + ], + [ + "▁boil", + -11.79183578491211 + ], + [ + "▁scroll", + -11.791842460632324 + ], + [ + "▁ghost", + -11.79190731048584 + ], + [ + "▁Alzheimer", + -11.791939735412598 + ], + [ + "▁metrics", + -11.792156219482422 + ], + [ + "▁assurance", + -11.792207717895508 + ], + [ + "▁Running", + -11.792328834533691 + ], + [ + "▁ye", + -11.792536735534668 + ], + [ + "▁Val", + -11.792542457580566 + ], + [ + "▁candle", + -11.792850494384766 + ], + [ + "▁tragic", + -11.792926788330078 + ], + [ + "▁cried", + -11.793017387390137 + ], + [ + "▁hormone", + -11.793096542358398 + ], + [ + "▁Yard", + -11.79313850402832 + ], + [ + "▁domains", + -11.793218612670898 + ], + [ + "▁persistent", + -11.793259620666504 + ], + [ + "▁SW", + -11.793351173400879 + ], + [ + "▁Pure", + -11.79362678527832 + ], + [ + "▁pulse", + -11.793649673461914 + ], + [ + "▁expressing", + -11.79367733001709 + ], + [ + "▁Faculty", + -11.793760299682617 + ], + [ + "▁Te", + -11.793815612792969 + ], + [ + "▁Bristol", + -11.79382038116455 + ], + [ + "▁headlines", + -11.793901443481445 + ], + [ + "open", + -11.793927192687988 + ], + [ + "Tech", + -11.794105529785156 + ], + [ + "▁Dear", + -11.794267654418945 + ], + [ + "▁shifted", + -11.794390678405762 + ], + [ + "▁reasoning", + -11.794471740722656 + ], + [ + "▁Amsterdam", + -11.794519424438477 + ], + [ + "▁optimize", + -11.794693946838379 + ], + [ + "▁WiFi", + -11.795021057128906 + ], + [ + "▁simplicity", + -11.795037269592285 + ], + [ + "▁Assessment", + -11.795040130615234 + ], + [ + "▁Ku", + -11.795060157775879 + ], + [ + "▁picnic", + -11.795110702514648 + ], + [ + "▁molecules", + -11.795454025268555 + ], + [ + "▁Tip", + -11.79557991027832 + ], + [ + "▁Success", + -11.795609474182129 + ], + [ + "▁harmony", + -11.7960844039917 + ], + [ + "pin", + -11.79649543762207 + ], + [ + "▁sampling", + -11.796892166137695 + ], + [ + "▁Traditional", + -11.797178268432617 + ], + [ + "▁Release", + -11.797280311584473 + ], + [ + "▁spark", + -11.79748249053955 + ], + [ + "card", + -11.797572135925293 + ], + [ + "▁rivals", + -11.797794342041016 + ], + [ + "ski", + -11.797927856445312 + ], + [ + "▁hobby", + -11.79806137084961 + ], + [ + "▁Hat", + -11.798064231872559 + ], + [ + "▁brutal", + -11.798184394836426 + ], + [ + "▁expressions", + -11.798198699951172 + ], + [ + "▁horizon", + -11.79849910736084 + ], + [ + "▁colleague", + -11.798524856567383 + ], + [ + "▁flavour", + -11.798584938049316 + ], + [ + "▁tenants", + -11.798720359802246 + ], + [ + "ware", + -11.79886531829834 + ], + [ + "▁encouragement", + -11.799273490905762 + ], + [ + "▁Alternatively", + -11.799367904663086 + ], + [ + "▁Added", + -11.799385070800781 + ], + [ + "▁eliminating", + -11.799426078796387 + ], + [ + "▁Scientific", + -11.799444198608398 + ], + [ + "▁masses", + -11.799494743347168 + ], + [ + "▁slim", + -11.799676895141602 + ], + [ + "▁recalled", + -11.799924850463867 + ], + [ + "▁Browse", + -11.799939155578613 + ], + [ + "▁licence", + -11.799949645996094 + ], + [ + "▁Heaven", + -11.799996376037598 + ], + [ + "▁Multiple", + -11.800179481506348 + ], + [ + "▁Rod", + -11.800765991210938 + ], + [ + "▁bulbs", + -11.800979614257812 + ], + [ + "▁Normal", + -11.801153182983398 + ], + [ + "▁undertaking", + -11.801426887512207 + ], + [ + "▁Dell", + -11.801660537719727 + ], + [ + "▁judicial", + -11.801730155944824 + ], + [ + "▁learners", + -11.801889419555664 + ], + [ + "▁Outside", + -11.801891326904297 + ], + [ + "▁outreach", + -11.801895141601562 + ], + [ + "▁teenagers", + -11.801953315734863 + ], + [ + "▁Industries", + -11.801973342895508 + ], + [ + "▁enjoyment", + -11.80197525024414 + ], + [ + "ano", + -11.802014350891113 + ], + [ + "▁Fame", + -11.802047729492188 + ], + [ + "▁Stanford", + -11.802063941955566 + ], + [ + "▁performers", + -11.802103042602539 + ], + [ + "▁caution", + -11.802179336547852 + ], + [ + "▁Securities", + -11.802388191223145 + ], + [ + "▁enthusiastic", + -11.802519798278809 + ], + [ + "▁preserved", + -11.802693367004395 + ], + [ + "▁renting", + -11.803304672241211 + ], + [ + "▁nasty", + -11.803465843200684 + ], + [ + "▁drying", + -11.803486824035645 + ], + [ + "▁styling", + -11.803567886352539 + ], + [ + "▁Deal", + -11.803617477416992 + ], + [ + "▁energetic", + -11.803643226623535 + ], + [ + "power", + -11.80367660522461 + ], + [ + "▁acoustic", + -11.804800033569336 + ], + [ + "▁shiny", + -11.804825782775879 + ], + [ + "▁comfortably", + -11.805347442626953 + ], + [ + "▁countryside", + -11.805482864379883 + ], + [ + "bank", + -11.805583000183105 + ], + [ + "▁doubled", + -11.805644035339355 + ], + [ + "▁catering", + -11.805728912353516 + ], + [ + "▁spice", + -11.805771827697754 + ], + [ + "▁Katie", + -11.805838584899902 + ], + [ + "▁Sample", + -11.805879592895508 + ], + [ + "▁nodes", + -11.805907249450684 + ], + [ + "▁defines", + -11.805946350097656 + ], + [ + "▁beats", + -11.806511878967285 + ], + [ + "▁champions", + -11.806562423706055 + ], + [ + "▁glucose", + -11.806803703308105 + ], + [ + "▁shaft", + -11.80687427520752 + ], + [ + "▁Visa", + -11.80700969696045 + ], + [ + "▁GMT", + -11.807074546813965 + ], + [ + "▁Solid", + -11.807100296020508 + ], + [ + "▁glorious", + -11.8074312210083 + ], + [ + "▁Cards", + -11.80745792388916 + ], + [ + "▁Ke", + -11.80761432647705 + ], + [ + "▁fossil", + -11.807619094848633 + ], + [ + "▁bell", + -11.807978630065918 + ], + [ + "▁salvation", + -11.807984352111816 + ], + [ + "▁sensible", + -11.808231353759766 + ], + [ + "▁undertaken", + -11.808271408081055 + ], + [ + "▁sculpture", + -11.808281898498535 + ], + [ + "▁scanning", + -11.808310508728027 + ], + [ + "▁×", + -11.80891227722168 + ], + [ + "▁Chat", + -11.809083938598633 + ], + [ + "▁innovations", + -11.8091459274292 + ], + [ + "▁Heavy", + -11.809700012207031 + ], + [ + "▁MO", + -11.809906005859375 + ], + [ + "▁Psychology", + -11.809928894042969 + ], + [ + "COM", + -11.80996322631836 + ], + [ + "▁NOTE", + -11.810079574584961 + ], + [ + "▁centered", + -11.81021499633789 + ], + [ + "▁BBQ", + -11.8102388381958 + ], + [ + "ap", + -11.810371398925781 + ], + [ + "▁pencil", + -11.810529708862305 + ], + [ + "▁argues", + -11.810571670532227 + ], + [ + "▁marathon", + -11.810714721679688 + ], + [ + "▁Moses", + -11.81082534790039 + ], + [ + "▁sensation", + -11.810867309570312 + ], + [ + "▁Offer", + -11.811078071594238 + ], + [ + "▁Payment", + -11.811151504516602 + ], + [ + "▁organs", + -11.81141471862793 + ], + [ + "▁politically", + -11.811494827270508 + ], + [ + "▁proxy", + -11.811554908752441 + ], + [ + "▁dull", + -11.811713218688965 + ], + [ + "▁arc", + -11.811731338500977 + ], + [ + "▁Avoid", + -11.811856269836426 + ], + [ + "▁Command", + -11.812029838562012 + ], + [ + "▁coordinate", + -11.81286907196045 + ], + [ + "▁quantum", + -11.813203811645508 + ], + [ + "▁Mega", + -11.813241004943848 + ], + [ + "▁proudly", + -11.813360214233398 + ], + [ + "▁hammer", + -11.813408851623535 + ], + [ + "▁touring", + -11.813623428344727 + ], + [ + "▁intermediate", + -11.813942909240723 + ], + [ + "▁payday", + -11.813981056213379 + ], + [ + "▁spices", + -11.814106941223145 + ], + [ + "▁acne", + -11.81411361694336 + ], + [ + "ial", + -11.814371109008789 + ], + [ + "▁Karl", + -11.814414978027344 + ], + [ + "ong", + -11.814522743225098 + ], + [ + "ating", + -11.814571380615234 + ], + [ + "black", + -11.814605712890625 + ], + [ + "▁Customers", + -11.81460952758789 + ], + [ + "▁recognise", + -11.814630508422852 + ], + [ + "▁screaming", + -11.814669609069824 + ], + [ + "▁Ga", + -11.81472110748291 + ], + [ + "▁bridges", + -11.814773559570312 + ], + [ + "left", + -11.815730094909668 + ], + [ + "▁Fu", + -11.815776824951172 + ], + [ + "▁AG", + -11.81589412689209 + ], + [ + "▁Holland", + -11.81591796875 + ], + [ + "▁Zero", + -11.815918922424316 + ], + [ + "▁recreation", + -11.815921783447266 + ], + [ + "▁enrollment", + -11.815940856933594 + ], + [ + "tel", + -11.815979957580566 + ], + [ + "▁considers", + -11.816110610961914 + ], + [ + "▁intriguing", + -11.816322326660156 + ], + [ + "▁Hurricane", + -11.816496849060059 + ], + [ + "▁Campaign", + -11.816690444946289 + ], + [ + "▁Rogers", + -11.816818237304688 + ], + [ + "▁syrup", + -11.816875457763672 + ], + [ + "Fig", + -11.816961288452148 + ], + [ + "▁viewer", + -11.817069053649902 + ], + [ + "▁historically", + -11.817121505737305 + ], + [ + "▁festive", + -11.81722640991211 + ], + [ + "▁corrupt", + -11.817418098449707 + ], + [ + "▁Mills", + -11.81770133972168 + ], + [ + "NA", + -11.817983627319336 + ], + [ + "▁Branch", + -11.81805419921875 + ], + [ + "▁prediction", + -11.818133354187012 + ], + [ + "▁doi", + -11.818519592285156 + ], + [ + "▁marker", + -11.818558692932129 + ], + [ + "▁Harrison", + -11.818588256835938 + ], + [ + "ren", + -11.818613052368164 + ], + [ + "ery", + -11.81881046295166 + ], + [ + "▁Catherine", + -11.818999290466309 + ], + [ + "▁Wikipedia", + -11.819034576416016 + ], + [ + "▁shortage", + -11.819079399108887 + ], + [ + "▁beverage", + -11.819140434265137 + ], + [ + "▁specification", + -11.819364547729492 + ], + [ + "▁clause", + -11.819558143615723 + ], + [ + "▁vanity", + -11.81961441040039 + ], + [ + "▁greenhouse", + -11.820029258728027 + ], + [ + "▁civilian", + -11.820103645324707 + ], + [ + "▁Champion", + -11.820143699645996 + ], + [ + "▁rider", + -11.820196151733398 + ], + [ + "▁wishing", + -11.820204734802246 + ], + [ + "▁medieval", + -11.8202486038208 + ], + [ + "▁sunshine", + -11.820270538330078 + ], + [ + "▁void", + -11.820355415344238 + ], + [ + "▁installations", + -11.820536613464355 + ], + [ + "▁Fill", + -11.820570945739746 + ], + [ + "▁disputes", + -11.821027755737305 + ], + [ + "▁questioning", + -11.821074485778809 + ], + [ + "▁systematic", + -11.821102142333984 + ], + [ + "ble", + -11.82119083404541 + ], + [ + "▁creamy", + -11.821386337280273 + ], + [ + "▁succeeded", + -11.821474075317383 + ], + [ + "▁por", + -11.821495056152344 + ], + [ + "▁lively", + -11.82158374786377 + ], + [ + "sch", + -11.82168197631836 + ], + [ + "▁interval", + -11.821685791015625 + ], + [ + "▁ladder", + -11.821685791015625 + ], + [ + "▁Ch", + -11.821818351745605 + ], + [ + "▁warmer", + -11.822017669677734 + ], + [ + "▁herein", + -11.82228946685791 + ], + [ + "▁Ruth", + -11.822321891784668 + ], + [ + "ff", + -11.822552680969238 + ], + [ + "▁900", + -11.822973251342773 + ], + [ + "▁Conditions", + -11.82303237915039 + ], + [ + "▁starring", + -11.823060035705566 + ], + [ + "▁foundations", + -11.823225021362305 + ], + [ + "▁renewal", + -11.823473930358887 + ], + [ + "▁accredited", + -11.823556900024414 + ], + [ + "▁evolve", + -11.823691368103027 + ], + [ + "▁accessing", + -11.823709487915039 + ], + [ + "▁mega", + -11.823800086975098 + ], + [ + "▁statue", + -11.823953628540039 + ], + [ + "▁Managing", + -11.823975563049316 + ], + [ + "▁rational", + -11.824049949645996 + ], + [ + "▁transmitted", + -11.824210166931152 + ], + [ + "▁labeled", + -11.824286460876465 + ], + [ + "▁ko", + -11.824467658996582 + ], + [ + "▁Vermont", + -11.824494361877441 + ], + [ + "▁Schedule", + -11.824530601501465 + ], + [ + "▁Movement", + -11.824657440185547 + ], + [ + "▁severely", + -11.824740409851074 + ], + [ + "▁origins", + -11.824742317199707 + ], + [ + "▁Various", + -11.825440406799316 + ], + [ + "▁Brother", + -11.825475692749023 + ], + [ + "Be", + -11.825569152832031 + ], + [ + "▁Against", + -11.82559585571289 + ], + [ + "▁Wireless", + -11.825614929199219 + ], + [ + "▁vet", + -11.825663566589355 + ], + [ + "▁mathematical", + -11.82567024230957 + ], + [ + "▁switches", + -11.825915336608887 + ], + [ + "▁Sadly", + -11.825952529907227 + ], + [ + "▁aligned", + -11.826004981994629 + ], + [ + "▁undertake", + -11.826355934143066 + ], + [ + "IN", + -11.826367378234863 + ], + [ + "▁Shopping", + -11.826387405395508 + ], + [ + "▁Graduate", + -11.826545715332031 + ], + [ + "▁ma", + -11.826990127563477 + ], + [ + "▁Recovery", + -11.827057838439941 + ], + [ + "story", + -11.827345848083496 + ], + [ + "▁sleeves", + -11.827388763427734 + ], + [ + "▁extensively", + -11.827540397644043 + ], + [ + "▁parish", + -11.827600479125977 + ], + [ + "▁retro", + -11.82761287689209 + ], + [ + "▁Heights", + -11.827632904052734 + ], + [ + "ab", + -11.827704429626465 + ], + [ + "▁securing", + -11.827744483947754 + ], + [ + "▁helmet", + -11.82790756225586 + ], + [ + "▁Vitamin", + -11.828001976013184 + ], + [ + "▁obesity", + -11.82870101928711 + ], + [ + "▁Breakfast", + -11.828714370727539 + ], + [ + "▁slides", + -11.828754425048828 + ], + [ + "NYSE", + -11.828768730163574 + ], + [ + "001", + -11.829004287719727 + ], + [ + "▁seamless", + -11.829075813293457 + ], + [ + "▁Partner", + -11.829245567321777 + ], + [ + "because", + -11.829436302185059 + ], + [ + "▁clinics", + -11.829812049865723 + ], + [ + "place", + -11.83004379272461 + ], + [ + "▁Calgary", + -11.830097198486328 + ], + [ + "space", + -11.830161094665527 + ], + [ + "▁Victor", + -11.830192565917969 + ], + [ + "▁tens", + -11.830633163452148 + ], + [ + "▁suspects", + -11.8307466506958 + ], + [ + "▁Understanding", + -11.830763816833496 + ], + [ + "risk", + -11.830949783325195 + ], + [ + "▁nut", + -11.831045150756836 + ], + [ + "▁spokesperson", + -11.83143424987793 + ], + [ + "▁mercy", + -11.831513404846191 + ], + [ + "▁Nobody", + -11.831524848937988 + ], + [ + "▁trio", + -11.831639289855957 + ], + [ + "▁Similar", + -11.83167839050293 + ], + [ + "▁celebrities", + -11.831695556640625 + ], + [ + "▁metabolism", + -11.831696510314941 + ], + [ + "▁stuffed", + -11.831725120544434 + ], + [ + "▁melt", + -11.831780433654785 + ], + [ + "▁unfair", + -11.831886291503906 + ], + [ + "▁bonuses", + -11.832208633422852 + ], + [ + "▁reflecting", + -11.832450866699219 + ], + [ + "▁wires", + -11.832539558410645 + ], + [ + "wise", + -11.832975387573242 + ], + [ + "php", + -11.833086013793945 + ], + [ + "▁hilarious", + -11.833308219909668 + ], + [ + "▁patches", + -11.833585739135742 + ], + [ + "II", + -11.833621978759766 + ], + [ + "▁Vincent", + -11.833730697631836 + ], + [ + "▁seminar", + -11.833827018737793 + ], + [ + "▁Cap", + -11.83385181427002 + ], + [ + "▁badge", + -11.833888053894043 + ], + [ + "▁recession", + -11.834051132202148 + ], + [ + "love", + -11.834121704101562 + ], + [ + "▁Degree", + -11.834236145019531 + ], + [ + "▁buffer", + -11.83443832397461 + ], + [ + "▁scattered", + -11.834691047668457 + ], + [ + "▁robots", + -11.834697723388672 + ], + [ + "▁defects", + -11.835037231445312 + ], + [ + "▁regulate", + -11.83504581451416 + ], + [ + "▁inherent", + -11.835062026977539 + ], + [ + "▁overly", + -11.835357666015625 + ], + [ + "▁spicy", + -11.83541488647461 + ], + [ + "has", + -11.835678100585938 + ], + [ + "vo", + -11.835719108581543 + ], + [ + "▁Planet", + -11.835880279541016 + ], + [ + "ado", + -11.83590030670166 + ], + [ + "▁Nova", + -11.835902214050293 + ], + [ + "▁Analytics", + -11.835970878601074 + ], + [ + "▁LinkedIn", + -11.8360013961792 + ], + [ + "san", + -11.836069107055664 + ], + [ + "▁uncle", + -11.83660888671875 + ], + [ + "▁communicating", + -11.83675479888916 + ], + [ + "▁ver", + -11.8367919921875 + ], + [ + "▁fights", + -11.836854934692383 + ], + [ + "▁Campus", + -11.836957931518555 + ], + [ + "▁invoice", + -11.837549209594727 + ], + [ + "▁Mode", + -11.837629318237305 + ], + [ + "ku", + -11.837806701660156 + ], + [ + "▁agrees", + -11.837904930114746 + ], + [ + "▁euro", + -11.838016510009766 + ], + [ + "▁NE", + -11.83818531036377 + ], + [ + "▁Nursing", + -11.838334083557129 + ], + [ + "▁admire", + -11.83838176727295 + ], + [ + "▁Advisory", + -11.838382720947266 + ], + [ + "▁Coloring", + -11.83846664428711 + ], + [ + "▁Patients", + -11.838848114013672 + ], + [ + "▁Jul", + -11.838982582092285 + ], + [ + "▁yields", + -11.839006423950195 + ], + [ + "▁displaying", + -11.83935260772705 + ], + [ + "▁Above", + -11.839445114135742 + ], + [ + "▁tan", + -11.839539527893066 + ], + [ + "▁tales", + -11.839641571044922 + ], + [ + "▁Ultimate", + -11.839728355407715 + ], + [ + "▁pixels", + -11.839995384216309 + ], + [ + "▁praying", + -11.840168952941895 + ], + [ + "▁aboard", + -11.840253829956055 + ], + [ + "▁appeals", + -11.84028148651123 + ], + [ + "▁Amanda", + -11.840303421020508 + ], + [ + "▁Wide", + -11.84033203125 + ], + [ + "▁sexually", + -11.840500831604004 + ], + [ + "▁wasted", + -11.840551376342773 + ], + [ + "▁enters", + -11.840584754943848 + ], + [ + "▁Nebraska", + -11.840888023376465 + ], + [ + "▁Stan", + -11.840925216674805 + ], + [ + "▁exhausted", + -11.841161727905273 + ], + [ + "▁magnitude", + -11.841516494750977 + ], + [ + "ST", + -11.841523170471191 + ], + [ + "▁donor", + -11.842106819152832 + ], + [ + "▁apples", + -11.842589378356934 + ], + [ + "▁Plastic", + -11.842622756958008 + ], + [ + "▁Bryan", + -11.842884063720703 + ], + [ + "▁tubes", + -11.843177795410156 + ], + [ + "▁Except", + -11.84324836730957 + ], + [ + "▁accidentally", + -11.843317985534668 + ], + [ + "▁reservations", + -11.843538284301758 + ], + [ + "▁terrace", + -11.844074249267578 + ], + [ + "▁joins", + -11.844138145446777 + ], + [ + "▁freezing", + -11.844398498535156 + ], + [ + "although", + -11.844500541687012 + ], + [ + "▁Laboratory", + -11.844568252563477 + ], + [ + "▁Warriors", + -11.844647407531738 + ], + [ + "▁wounds", + -11.844661712646484 + ], + [ + "▁mandate", + -11.84472942352295 + ], + [ + "▁favorable", + -11.844766616821289 + ], + [ + "▁disappointment", + -11.844852447509766 + ], + [ + "▁Julia", + -11.845037460327148 + ], + [ + "▁utilities", + -11.845399856567383 + ], + [ + "▁Bangladesh", + -11.845499992370605 + ], + [ + "▁Delaware", + -11.845505714416504 + ], + [ + "▁expose", + -11.845524787902832 + ], + [ + "▁Originally", + -11.845582008361816 + ], + [ + "▁uncertain", + -11.845718383789062 + ], + [ + "▁Answer", + -11.84574031829834 + ], + [ + "▁bull", + -11.845779418945312 + ], + [ + "▁declaration", + -11.846028327941895 + ], + [ + "gar", + -11.846234321594238 + ], + [ + "▁appetite", + -11.846449851989746 + ], + [ + "▁Milwaukee", + -11.8464994430542 + ], + [ + "▁Milan", + -11.846503257751465 + ], + [ + "ach", + -11.846735954284668 + ], + [ + "▁Walmart", + -11.84675121307373 + ], + [ + "▁aiming", + -11.84686279296875 + ], + [ + "filled", + -11.847128868103027 + ], + [ + "boy", + -11.847151756286621 + ], + [ + "▁Mal", + -11.847305297851562 + ], + [ + "▁Tournament", + -11.84733772277832 + ], + [ + "▁helicopter", + -11.847345352172852 + ], + [ + "▁Aside", + -11.847402572631836 + ], + [ + "tan", + -11.847667694091797 + ], + [ + "▁Typically", + -11.847779273986816 + ], + [ + "max", + -11.847872734069824 + ], + [ + "▁exceptions", + -11.848410606384277 + ], + [ + "▁playoffs", + -11.848490715026855 + ], + [ + "▁intact", + -11.848509788513184 + ], + [ + "▁foil", + -11.848589897155762 + ], + [ + "▁Programme", + -11.84868335723877 + ], + [ + "▁Capitol", + -11.848804473876953 + ], + [ + "▁laughter", + -11.848916053771973 + ], + [ + "har", + -11.849059104919434 + ], + [ + "▁protocols", + -11.849090576171875 + ], + [ + "▁Explorer", + -11.849111557006836 + ], + [ + "。", + -11.849191665649414 + ], + [ + "▁concentrations", + -11.849222183227539 + ], + [ + "band", + -11.849261283874512 + ], + [ + "▁vinegar", + -11.849349021911621 + ], + [ + "▁feeds", + -11.849466323852539 + ], + [ + "▁citizenship", + -11.849547386169434 + ], + [ + "▁nowadays", + -11.84965991973877 + ], + [ + "▁ritual", + -11.849685668945312 + ], + [ + "▁nursery", + -11.850165367126465 + ], + [ + "▁opener", + -11.850479125976562 + ], + [ + "▁axis", + -11.850671768188477 + ], + [ + "bound", + -11.851079940795898 + ], + [ + "▁composer", + -11.851149559020996 + ], + [ + "ev", + -11.851635932922363 + ], + [ + "▁q", + -11.851828575134277 + ], + [ + "▁flies", + -11.852002143859863 + ], + [ + "▁calculations", + -11.852058410644531 + ], + [ + "▁twitter", + -11.852503776550293 + ], + [ + "▁Teachers", + -11.8525390625 + ], + [ + "rin", + -11.852753639221191 + ], + [ + "▁darker", + -11.852836608886719 + ], + [ + "▁assign", + -11.852950096130371 + ], + [ + "▁anticipate", + -11.853033065795898 + ], + [ + "▁incoming", + -11.853418350219727 + ], + [ + "iv", + -11.853799819946289 + ], + [ + "▁Giants", + -11.853836059570312 + ], + [ + "2006", + -11.853898048400879 + ], + [ + "▁tailor", + -11.854118347167969 + ], + [ + "▁nest", + -11.854754447937012 + ], + [ + "▁Drop", + -11.854937553405762 + ], + [ + "▁terrorists", + -11.855001449584961 + ], + [ + "▁Shi", + -11.855133056640625 + ], + [ + "▁bent", + -11.855257987976074 + ], + [ + "▁AA", + -11.85525894165039 + ], + [ + "▁malware", + -11.855544090270996 + ], + [ + "▁Adventure", + -11.85587215423584 + ], + [ + "du", + -11.855891227722168 + ], + [ + "▁crowds", + -11.855958938598633 + ], + [ + "▁tenant", + -11.856240272521973 + ], + [ + "▁clarify", + -11.856278419494629 + ], + [ + "▁Wildlife", + -11.856301307678223 + ], + [ + "▁drawer", + -11.856504440307617 + ], + [ + "▁Criminal", + -11.856561660766602 + ], + [ + "▁synthesis", + -11.856816291809082 + ], + [ + "▁referendum", + -11.85687255859375 + ], + [ + "base", + -11.856986999511719 + ], + [ + "▁Zoo", + -11.857172012329102 + ], + [ + "body", + -11.857184410095215 + ], + [ + "▁Fitness", + -11.857279777526855 + ], + [ + "▁apparatus", + -11.857595443725586 + ], + [ + "▁wow", + -11.857671737670898 + ], + [ + "▁invented", + -11.857735633850098 + ], + [ + "▁Finland", + -11.857780456542969 + ], + [ + "▁Lanka", + -11.85816764831543 + ], + [ + "▁pretend", + -11.858378410339355 + ], + [ + "▁opposing", + -11.858430862426758 + ], + [ + "▁Vintage", + -11.858438491821289 + ], + [ + "▁lamps", + -11.858656883239746 + ], + [ + "▁freezer", + -11.858807563781738 + ], + [ + "founder", + -11.858919143676758 + ], + [ + "▁termination", + -11.858968734741211 + ], + [ + "▁MC", + -11.859041213989258 + ], + [ + "▁Poly", + -11.8590726852417 + ], + [ + "▁Match", + -11.859074592590332 + ], + [ + "▁earthquake", + -11.859087944030762 + ], + [ + "▁immense", + -11.859328269958496 + ], + [ + "Free", + -11.859614372253418 + ], + [ + "▁inappropriate", + -11.85978889465332 + ], + [ + "▁yeast", + -11.860113143920898 + ], + [ + "350", + -11.860173225402832 + ], + [ + "▁considerations", + -11.860349655151367 + ], + [ + "▁privately", + -11.860368728637695 + ], + [ + "▁365", + -11.86079216003418 + ], + [ + "▁gem", + -11.860795021057129 + ], + [ + "▁suspicious", + -11.860799789428711 + ], + [ + "▁pause", + -11.860807418823242 + ], + [ + "▁themed", + -11.860960006713867 + ], + [ + "▁inning", + -11.860993385314941 + ], + [ + "▁seafood", + -11.861059188842773 + ], + [ + "▁dragon", + -11.861180305480957 + ], + [ + "ari", + -11.861481666564941 + ], + [ + "▁imagery", + -11.861482620239258 + ], + [ + "▁visually", + -11.861483573913574 + ], + [ + "▁Arsenal", + -11.861662864685059 + ], + [ + "▁insects", + -11.861751556396484 + ], + [ + "▁marking", + -11.86190128326416 + ], + [ + "▁calculation", + -11.861910820007324 + ], + [ + "▁costumes", + -11.86196517944336 + ], + [ + "▁sequel", + -11.862305641174316 + ], + [ + "▁Phillips", + -11.862808227539062 + ], + [ + "▁torture", + -11.863019943237305 + ], + [ + "▁cafe", + -11.863102912902832 + ], + [ + "▁Championships", + -11.863127708435059 + ], + [ + "▁formally", + -11.863295555114746 + ], + [ + "▁trunk", + -11.863824844360352 + ], + [ + "▁galleries", + -11.86386775970459 + ], + [ + "▁Aid", + -11.863948822021484 + ], + [ + "ent", + -11.86440372467041 + ], + [ + "▁transported", + -11.864789009094238 + ], + [ + "▁rendered", + -11.864797592163086 + ], + [ + "▁Mueller", + -11.864799499511719 + ], + [ + "▁excluded", + -11.86489200592041 + ], + [ + "▁disappointing", + -11.864933967590332 + ], + [ + "▁Luxury", + -11.864943504333496 + ], + [ + "▁contacting", + -11.865184783935547 + ], + [ + "▁introduces", + -11.865206718444824 + ], + [ + "▁Lighting", + -11.865219116210938 + ], + [ + "▁willingness", + -11.865239143371582 + ], + [ + "hill", + -11.865242004394531 + ], + [ + "fa", + -11.865357398986816 + ], + [ + "▁forgive", + -11.865368843078613 + ], + [ + "Your", + -11.86542797088623 + ], + [ + "▁1965", + -11.865509033203125 + ], + [ + "▁crushed", + -11.865891456604004 + ], + [ + "▁Edwards", + -11.865898132324219 + ], + [ + "▁collaborate", + -11.865992546081543 + ], + [ + "▁phases", + -11.86603832244873 + ], + [ + "▁cache", + -11.866167068481445 + ], + [ + "▁driveway", + -11.866437911987305 + ], + [ + "▁condo", + -11.866547584533691 + ], + [ + "▁logs", + -11.866633415222168 + ], + [ + "▁packet", + -11.866670608520508 + ], + [ + "▁hats", + -11.86672306060791 + ], + [ + "▁backdrop", + -11.866815567016602 + ], + [ + "che", + -11.8671236038208 + ], + [ + "á", + -11.86744499206543 + ], + [ + "▁Cincinnati", + -11.867547035217285 + ], + [ + "PA", + -11.867552757263184 + ], + [ + "▁qualification", + -11.867653846740723 + ], + [ + "▁Bobby", + -11.867664337158203 + ], + [ + "▁macro", + -11.86790943145752 + ], + [ + "▁desperately", + -11.868057250976562 + ], + [ + "▁literacy", + -11.868167877197266 + ], + [ + "▁Loan", + -11.868311882019043 + ], + [ + "▁Foster", + -11.86834716796875 + ], + [ + "building", + -11.868690490722656 + ], + [ + "▁explicitly", + -11.868844985961914 + ], + [ + "▁Designer", + -11.868911743164062 + ], + [ + "▁heel", + -11.869501113891602 + ], + [ + "▁critically", + -11.869553565979004 + ], + [ + "med", + -11.869636535644531 + ], + [ + "▁positioning", + -11.86967945098877 + ], + [ + "▁Unique", + -11.869720458984375 + ], + [ + "▁Berkeley", + -11.869776725769043 + ], + [ + "▁jokes", + -11.869877815246582 + ], + [ + "▁lakes", + -11.869938850402832 + ], + [ + "▁palette", + -11.870009422302246 + ], + [ + "kar", + -11.870244026184082 + ], + [ + "Black", + -11.870556831359863 + ], + [ + "▁Sue", + -11.870556831359863 + ], + [ + "▁Package", + -11.870600700378418 + ], + [ + "MS", + -11.870723724365234 + ], + [ + "▁polish", + -11.871036529541016 + ], + [ + "▁grams", + -11.871301651000977 + ], + [ + "▁Hotels", + -11.871429443359375 + ], + [ + "▁tops", + -11.871469497680664 + ], + [ + "▁token", + -11.871493339538574 + ], + [ + "other", + -11.871903419494629 + ], + [ + "▁tenure", + -11.871922492980957 + ], + [ + "▁coated", + -11.872076034545898 + ], + [ + "▁impose", + -11.872112274169922 + ], + [ + "▁hints", + -11.872138977050781 + ], + [ + "▁demographic", + -11.872196197509766 + ], + [ + "Figure", + -11.87221908569336 + ], + [ + "▁sleek", + -11.872596740722656 + ], + [ + "▁doctrine", + -11.872760772705078 + ], + [ + "▁rebuild", + -11.872831344604492 + ], + [ + "▁supplying", + -11.87298583984375 + ], + [ + "»", + -11.872992515563965 + ], + [ + "log", + -11.873104095458984 + ], + [ + "▁LCD", + -11.873197555541992 + ], + [ + "▁Shakespeare", + -11.873720169067383 + ], + [ + "▁fatty", + -11.874258041381836 + ], + [ + "▁thy", + -11.874409675598145 + ], + [ + "▁aviation", + -11.874584197998047 + ], + [ + "▁opted", + -11.874618530273438 + ], + [ + "▁Career", + -11.874619483947754 + ], + [ + "▁Lions", + -11.874809265136719 + ], + [ + "▁referral", + -11.875070571899414 + ], + [ + "▁Liberal", + -11.875265121459961 + ], + [ + "▁Batman", + -11.875276565551758 + ], + [ + "▁Quebec", + -11.87553596496582 + ], + [ + "▁determines", + -11.875758171081543 + ], + [ + "▁render", + -11.875777244567871 + ], + [ + "▁adviser", + -11.875885009765625 + ], + [ + "▁Steam", + -11.875893592834473 + ], + [ + "▁CE", + -11.875957489013672 + ], + [ + "▁Summary", + -11.876124382019043 + ], + [ + "▁Allah", + -11.876205444335938 + ], + [ + "▁interpret", + -11.876636505126953 + ], + [ + "both", + -11.876819610595703 + ], + [ + "away", + -11.87710189819336 + ], + [ + "▁evaluating", + -11.877111434936523 + ], + [ + "par", + -11.877141952514648 + ], + [ + "▁licenses", + -11.877262115478516 + ], + [ + "source", + -11.877355575561523 + ], + [ + "▁sadly", + -11.877557754516602 + ], + [ + "▁Ya", + -11.877657890319824 + ], + [ + "▁Rate", + -11.87781047821045 + ], + [ + "▁CI", + -11.877958297729492 + ], + [ + "▁airlines", + -11.877958297729492 + ], + [ + "▁staring", + -11.878175735473633 + ], + [ + "▁celebrations", + -11.878192901611328 + ], + [ + "IT", + -11.878308296203613 + ], + [ + "▁fled", + -11.878599166870117 + ], + [ + "▁Idaho", + -11.87861442565918 + ], + [ + "▁arrow", + -11.878629684448242 + ], + [ + "▁Initiative", + -11.87881088256836 + ], + [ + "▁illustrate", + -11.87882137298584 + ], + [ + "▁Orchestra", + -11.878976821899414 + ], + [ + "▁tattoo", + -11.879274368286133 + ], + [ + "▁folding", + -11.879472732543945 + ], + [ + "▁Harper", + -11.879749298095703 + ], + [ + "▁remodeling", + -11.87979793548584 + ], + [ + "▁1500", + -11.880239486694336 + ], + [ + "▁scales", + -11.880661964416504 + ], + [ + "▁gameplay", + -11.880743980407715 + ], + [ + "▁beings", + -11.880887985229492 + ], + [ + "▁Ana", + -11.880891799926758 + ], + [ + "▁abundant", + -11.881025314331055 + ], + [ + "▁citing", + -11.881096839904785 + ], + [ + "▁Latest", + -11.88120174407959 + ], + [ + "▁weddings", + -11.88120174407959 + ], + [ + "▁Conservation", + -11.881220817565918 + ], + [ + "▁correspondence", + -11.881325721740723 + ], + [ + "▁dosage", + -11.881329536437988 + ], + [ + "▁necklace", + -11.881513595581055 + ], + [ + "▁rubbish", + -11.881519317626953 + ], + [ + "▁MBA", + -11.8815336227417 + ], + [ + "▁Yorkshire", + -11.881818771362305 + ], + [ + "▁Township", + -11.881922721862793 + ], + [ + "eg", + -11.882436752319336 + ], + [ + "▁Ghost", + -11.882574081420898 + ], + [ + "▁Forces", + -11.882683753967285 + ], + [ + "▁Sandy", + -11.882708549499512 + ], + [ + "▁optimistic", + -11.882719993591309 + ], + [ + "mark", + -11.882739067077637 + ], + [ + "pi", + -11.882760047912598 + ], + [ + "ps", + -11.882801055908203 + ], + [ + "▁exhibits", + -11.882974624633789 + ], + [ + "▁gum", + -11.882981300354004 + ], + [ + "▁dumpsters", + -11.883040428161621 + ], + [ + "▁jack", + -11.883101463317871 + ], + [ + "▁enthusiasts", + -11.883514404296875 + ], + [ + "▁Prevention", + -11.883672714233398 + ], + [ + "▁humanitarian", + -11.883728981018066 + ], + [ + "▁Nazi", + -11.883732795715332 + ], + [ + "▁Cafe", + -11.883931159973145 + ], + [ + "▁showers", + -11.884400367736816 + ], + [ + "kan", + -11.884665489196777 + ], + [ + "▁105", + -11.884795188903809 + ], + [ + "▁WHAT", + -11.8848237991333 + ], + [ + "degree", + -11.884900093078613 + ], + [ + "▁cancellation", + -11.8850679397583 + ], + [ + "▁toddler", + -11.885113716125488 + ], + [ + "▁Whilst", + -11.885353088378906 + ], + [ + "▁yearly", + -11.885765075683594 + ], + [ + "kind", + -11.886170387268066 + ], + [ + "▁1964", + -11.886219024658203 + ], + [ + "ay", + -11.886312484741211 + ], + [ + "▁Stories", + -11.886455535888672 + ], + [ + "▁Carbon", + -11.886466026306152 + ], + [ + "▁margins", + -11.886550903320312 + ], + [ + "▁dryer", + -11.886651039123535 + ], + [ + "▁Brisbane", + -11.886899948120117 + ], + [ + "▁SMS", + -11.886930465698242 + ], + [ + "▁shadows", + -11.886943817138672 + ], + [ + "▁monitored", + -11.887001037597656 + ], + [ + "▁luggage", + -11.887165069580078 + ], + [ + "▁Marcus", + -11.887303352355957 + ], + [ + "table", + -11.887304306030273 + ], + [ + "▁worlds", + -11.887414932250977 + ], + [ + "▁monitors", + -11.887455940246582 + ], + [ + "▁Fourth", + -11.887835502624512 + ], + [ + "▁configure", + -11.8878755569458 + ], + [ + "▁Forward", + -11.887944221496582 + ], + [ + "▁torn", + -11.88794994354248 + ], + [ + "Just", + -11.887978553771973 + ], + [ + "▁hooked", + -11.888239860534668 + ], + [ + "▁hated", + -11.88835334777832 + ], + [ + "burg", + -11.888396263122559 + ], + [ + "▁shook", + -11.88843059539795 + ], + [ + "▁speculation", + -11.888459205627441 + ], + [ + "▁cared", + -11.888630867004395 + ], + [ + "amp", + -11.888740539550781 + ], + [ + "▁Chemical", + -11.888750076293945 + ], + [ + "▁Saints", + -11.888772964477539 + ], + [ + "▁hose", + -11.888794898986816 + ], + [ + "▁Tommy", + -11.888802528381348 + ], + [ + "▁Keeping", + -11.888919830322266 + ], + [ + "▁Florence", + -11.889115333557129 + ], + [ + "▁Stainless", + -11.889192581176758 + ], + [ + "▁pest", + -11.889198303222656 + ], + [ + "tar", + -11.889385223388672 + ], + [ + "▁viruses", + -11.88939380645752 + ], + [ + "▁blues", + -11.88953971862793 + ], + [ + "▁Walking", + -11.889946937561035 + ], + [ + "▁surge", + -11.890077590942383 + ], + [ + "▁Glasgow", + -11.890168190002441 + ], + [ + "▁Shot", + -11.890213966369629 + ], + [ + "▁oriented", + -11.890249252319336 + ], + [ + "▁credibility", + -11.890253067016602 + ], + [ + "▁sang", + -11.890338897705078 + ], + [ + "▁Rangers", + -11.890565872192383 + ], + [ + "▁spinning", + -11.890583038330078 + ], + [ + "▁Veterans", + -11.890646934509277 + ], + [ + "▁imperative", + -11.890724182128906 + ], + [ + "▁dangers", + -11.89074993133545 + ], + [ + "▁cater", + -11.891022682189941 + ], + [ + "stage", + -11.891128540039062 + ], + [ + "lu", + -11.891134262084961 + ], + [ + "▁dementia", + -11.891138076782227 + ], + [ + "▁beads", + -11.891291618347168 + ], + [ + "▁cryptocurrency", + -11.891337394714355 + ], + [ + "▁giveaway", + -11.891660690307617 + ], + [ + "ken", + -11.891840934753418 + ], + [ + "May", + -11.892203330993652 + ], + [ + "▁SUV", + -11.89249038696289 + ], + [ + "▁masters", + -11.89252758026123 + ], + [ + "▁Shadow", + -11.892590522766113 + ], + [ + "▁capturing", + -11.892680168151855 + ], + [ + "▁vibe", + -11.89268970489502 + ], + [ + "Reuters", + -11.892820358276367 + ], + [ + "▁Ki", + -11.893564224243164 + ], + [ + "▁validation", + -11.893760681152344 + ], + [ + "▁surf", + -11.89383602142334 + ], + [ + "▁Spencer", + -11.894210815429688 + ], + [ + "▁thru", + -11.894475936889648 + ], + [ + "▁Lucas", + -11.89466381072998 + ], + [ + "▁grammar", + -11.89487075805664 + ], + [ + "▁Cable", + -11.895498275756836 + ], + [ + "▁prosecution", + -11.895523071289062 + ], + [ + "▁VI", + -11.895715713500977 + ], + [ + "▁dignity", + -11.895758628845215 + ], + [ + "▁Math", + -11.895759582519531 + ], + [ + "▁inability", + -11.895827293395996 + ], + [ + "▁Carlos", + -11.896059036254883 + ], + [ + "▁android", + -11.896069526672363 + ], + [ + "▁cage", + -11.896125793457031 + ], + [ + "bn", + -11.896269798278809 + ], + [ + "▁Cyber", + -11.896687507629395 + ], + [ + "▁Crime", + -11.897101402282715 + ], + [ + "▁Compare", + -11.897216796875 + ], + [ + "▁ve", + -11.897284507751465 + ], + [ + "▁inserted", + -11.897302627563477 + ], + [ + "▁waterproof", + -11.897385597229004 + ], + [ + "Day", + -11.89738655090332 + ], + [ + "▁pins", + -11.897629737854004 + ], + [ + "▁spelling", + -11.897857666015625 + ], + [ + "▁pc", + -11.89792537689209 + ], + [ + "bridge", + -11.897974014282227 + ], + [ + "van", + -11.898160934448242 + ], + [ + "maker", + -11.898207664489746 + ], + [ + "▁Claire", + -11.898274421691895 + ], + [ + "▁highlighting", + -11.898536682128906 + ], + [ + "▁float", + -11.898909568786621 + ], + [ + "▁spotlight", + -11.898996353149414 + ], + [ + "▁Expert", + -11.899023056030273 + ], + [ + "▁dare", + -11.899130821228027 + ], + [ + "▁Parks", + -11.899139404296875 + ], + [ + "▁Brussels", + -11.89918041229248 + ], + [ + "▁cylinder", + -11.899517059326172 + ], + [ + "▁Wells", + -11.89958667755127 + ], + [ + "▁prosecutors", + -11.899632453918457 + ], + [ + "▁squeeze", + -11.899652481079102 + ], + [ + "▁amateur", + -11.899801254272461 + ], + [ + "group", + -11.899869918823242 + ], + [ + "▁NATO", + -11.899873733520508 + ], + [ + "▁crashed", + -11.899994850158691 + ], + [ + "▁Joshua", + -11.900022506713867 + ], + [ + "▁ke", + -11.900139808654785 + ], + [ + "▁jersey", + -11.900184631347656 + ], + [ + "▁Anything", + -11.900325775146484 + ], + [ + "▁recipients", + -11.900700569152832 + ], + [ + "ow", + -11.900733947753906 + ], + [ + "▁eligibility", + -11.900777816772461 + ], + [ + "anti", + -11.900839805603027 + ], + [ + "▁tweets", + -11.900863647460938 + ], + [ + "▁foremost", + -11.90096378326416 + ], + [ + "▁liberty", + -11.901017189025879 + ], + [ + "▁conveniently", + -11.90112590789795 + ], + [ + "▁Internal", + -11.90120792388916 + ], + [ + "▁climbed", + -11.90128231048584 + ], + [ + "▁freshman", + -11.901450157165527 + ], + [ + "▁Isn", + -11.901460647583008 + ], + [ + "yan", + -11.901576042175293 + ], + [ + "▁strengthening", + -11.901598930358887 + ], + [ + "▁poses", + -11.901673316955566 + ], + [ + "▁civilians", + -11.901996612548828 + ], + [ + "▁relies", + -11.902007102966309 + ], + [ + "▁Near", + -11.902064323425293 + ], + [ + "▁loses", + -11.902203559875488 + ], + [ + "▁undergo", + -11.902239799499512 + ], + [ + "▁Task", + -11.902240753173828 + ], + [ + "▁Dry", + -11.902262687683105 + ], + [ + "▁specialize", + -11.902355194091797 + ], + [ + "▁landscapes", + -11.902377128601074 + ], + [ + "fold", + -11.902713775634766 + ], + [ + "cy", + -11.903039932250977 + ], + [ + "▁Nissan", + -11.903189659118652 + ], + [ + "▁hardwood", + -11.903218269348145 + ], + [ + "▁Featuring", + -11.903456687927246 + ], + [ + "▁Bin", + -11.90376091003418 + ], + [ + "▁spatial", + -11.903786659240723 + ], + [ + "▁Tu", + -11.903857231140137 + ], + [ + "ice", + -11.904022216796875 + ], + [ + "▁CS", + -11.904082298278809 + ], + [ + "▁kilometers", + -11.904975891113281 + ], + [ + "▁Pine", + -11.905155181884766 + ], + [ + "▁Pour", + -11.905173301696777 + ], + [ + "changing", + -11.90523910522461 + ], + [ + "▁randomly", + -11.905332565307617 + ], + [ + "▁metallic", + -11.905445098876953 + ], + [ + "▁recommends", + -11.905701637268066 + ], + [ + "▁gardening", + -11.905909538269043 + ], + [ + "▁invites", + -11.905919075012207 + ], + [ + "▁WI", + -11.906020164489746 + ], + [ + "▁inhabitants", + -11.906025886535645 + ], + [ + "▁tribe", + -11.906256675720215 + ], + [ + "iz", + -11.906399726867676 + ], + [ + "illa", + -11.906513214111328 + ], + [ + "▁commander", + -11.906532287597656 + ], + [ + "▁blowing", + -11.906745910644531 + ], + [ + "▁analyzing", + -11.907048225402832 + ], + [ + "▁worthwhile", + -11.907135009765625 + ], + [ + "cell", + -11.907506942749023 + ], + [ + "▁overlooking", + -11.907623291015625 + ], + [ + "▁hydrogen", + -11.907979011535645 + ], + [ + "aw", + -11.908087730407715 + ], + [ + "▁migrants", + -11.908228874206543 + ], + [ + "▁IF", + -11.908248901367188 + ], + [ + "▁bend", + -11.908319473266602 + ], + [ + "▁envelope", + -11.908417701721191 + ], + [ + "▁Lucy", + -11.908426284790039 + ], + [ + "▁parenting", + -11.908595085144043 + ], + [ + "▁deploy", + -11.908684730529785 + ], + [ + "big", + -11.908709526062012 + ], + [ + "▁stretching", + -11.90891170501709 + ], + [ + "▁resting", + -11.909139633178711 + ], + [ + "▁armor", + -11.909214973449707 + ], + [ + "▁Lovely", + -11.909408569335938 + ], + [ + "▁Ralph", + -11.909944534301758 + ], + [ + "▁empire", + -11.910205841064453 + ], + [ + "▁insane", + -11.910287857055664 + ], + [ + "▁cult", + -11.910303115844727 + ], + [ + "gi", + -11.910329818725586 + ], + [ + "▁analytical", + -11.910547256469727 + ], + [ + "▁senses", + -11.910758018493652 + ], + [ + "▁india", + -11.910866737365723 + ], + [ + "▁stain", + -11.910880088806152 + ], + [ + "▁Colin", + -11.910959243774414 + ], + [ + "▁pursuant", + -11.910964965820312 + ], + [ + "▁hedge", + -11.910978317260742 + ], + [ + "▁PayPal", + -11.91109561920166 + ], + [ + "▁respiratory", + -11.911168098449707 + ], + [ + "▁Chapel", + -11.911181449890137 + ], + [ + "▁Train", + -11.911189079284668 + ], + [ + "▁scrap", + -11.91120433807373 + ], + [ + "▁cardiovascular", + -11.911330223083496 + ], + [ + "▁sodium", + -11.911370277404785 + ], + [ + "▁borrow", + -11.911413192749023 + ], + [ + "▁serum", + -11.911434173583984 + ], + [ + "▁tightly", + -11.911487579345703 + ], + [ + "▁PHP", + -11.91180419921875 + ], + [ + "▁Elite", + -11.911861419677734 + ], + [ + "▁prototype", + -11.912216186523438 + ], + [ + "▁Rain", + -11.91224479675293 + ], + [ + "four", + -11.912477493286133 + ], + [ + "▁cab", + -11.912569046020508 + ], + [ + "▁scam", + -11.912792205810547 + ], + [ + "▁Fr", + -11.912837982177734 + ], + [ + "▁iPod", + -11.913018226623535 + ], + [ + "▁ministers", + -11.913118362426758 + ], + [ + "▁chrome", + -11.913130760192871 + ], + [ + "▁realizing", + -11.913147926330566 + ], + [ + "▁Fixed", + -11.913229942321777 + ], + [ + "▁sync", + -11.913368225097656 + ], + [ + "ena", + -11.913481712341309 + ], + [ + "▁wanna", + -11.913521766662598 + ], + [ + "▁examining", + -11.913543701171875 + ], + [ + "▁touchdown", + -11.913737297058105 + ], + [ + "▁miracle", + -11.913740158081055 + ], + [ + "▁pulls", + -11.913783073425293 + ], + [ + "▁SAP", + -11.91403865814209 + ], + [ + "▁bloody", + -11.914222717285156 + ], + [ + "▁Television", + -11.914230346679688 + ], + [ + "▁flagship", + -11.914274215698242 + ], + [ + "Mo", + -11.914443016052246 + ], + [ + "▁kicks", + -11.9144868850708 + ], + [ + "▁scripts", + -11.914511680603027 + ], + [ + "▁AB", + -11.91464614868164 + ], + [ + "HD", + -11.914667129516602 + ], + [ + "cher", + -11.914735794067383 + ], + [ + "▁playground", + -11.914798736572266 + ], + [ + "▁Bright", + -11.914814949035645 + ], + [ + "▁Glad", + -11.914871215820312 + ], + [ + "2005", + -11.914962768554688 + ], + [ + "▁Rebecca", + -11.915006637573242 + ], + [ + "▁sketch", + -11.915157318115234 + ], + [ + "▁storing", + -11.915345191955566 + ], + [ + "▁Railway", + -11.915388107299805 + ], + [ + "▁dysfunction", + -11.915444374084473 + ], + [ + "▁pathways", + -11.915494918823242 + ], + [ + "▁Res", + -11.915722846984863 + ], + [ + "See", + -11.915946960449219 + ], + [ + "ber", + -11.91602611541748 + ], + [ + "▁Kay", + -11.916031837463379 + ], + [ + "▁enforce", + -11.91603946685791 + ], + [ + "▁mint", + -11.916118621826172 + ], + [ + "▁problematic", + -11.916202545166016 + ], + [ + "▁flags", + -11.916275978088379 + ], + [ + "▁sour", + -11.916333198547363 + ], + [ + "▁variant", + -11.916338920593262 + ], + [ + "▁Educational", + -11.916540145874023 + ], + [ + "▁Har", + -11.916586875915527 + ], + [ + "▁Sleep", + -11.916807174682617 + ], + [ + "▁drums", + -11.916836738586426 + ], + [ + "▁Lynn", + -11.916994094848633 + ], + [ + "▁census", + -11.91699504852295 + ], + [ + "▁Popular", + -11.917354583740234 + ], + [ + "▁Whole", + -11.91740608215332 + ], + [ + "▁Arctic", + -11.91759967803955 + ], + [ + "rie", + -11.917784690856934 + ], + [ + "▁lightning", + -11.918060302734375 + ], + [ + "▁kindly", + -11.918177604675293 + ], + [ + "▁Move", + -11.918231964111328 + ], + [ + "▁charitable", + -11.918366432189941 + ], + [ + "news", + -11.918587684631348 + ], + [ + "▁preservation", + -11.918638229370117 + ], + [ + "▁proving", + -11.918667793273926 + ], + [ + "▁replica", + -11.918739318847656 + ], + [ + "MA", + -11.91886043548584 + ], + [ + "▁leap", + -11.918889045715332 + ], + [ + "▁shocking", + -11.918987274169922 + ], + [ + "▁premiums", + -11.9190673828125 + ], + [ + "▁ruin", + -11.919181823730469 + ], + [ + "▁allocated", + -11.919219017028809 + ], + [ + "▁Ultimately", + -11.919323921203613 + ], + [ + "▁thou", + -11.919452667236328 + ], + [ + "▁rendering", + -11.919530868530273 + ], + [ + "iest", + -11.919604301452637 + ], + [ + "▁Dinner", + -11.919647216796875 + ], + [ + "▁strangers", + -11.919768333435059 + ], + [ + "ON", + -11.919872283935547 + ], + [ + "▁bedding", + -11.920060157775879 + ], + [ + "▁ESPN", + -11.920064926147461 + ], + [ + "▁rushing", + -11.920138359069824 + ], + [ + "▁accompanying", + -11.920402526855469 + ], + [ + "▁Electrical", + -11.920409202575684 + ], + [ + "▁spinal", + -11.920475959777832 + ], + [ + "▁а", + -11.920506477355957 + ], + [ + "▁Mental", + -11.92051887512207 + ], + [ + "▁Butler", + -11.920536994934082 + ], + [ + "▁Knowing", + -11.92054557800293 + ], + [ + "▁supposedly", + -11.920676231384277 + ], + [ + "▁selections", + -11.920757293701172 + ], + [ + "▁reputable", + -11.920928001403809 + ], + [ + "▁unveiled", + -11.920977592468262 + ], + [ + "▁baseline", + -11.921180725097656 + ], + [ + "▁unsure", + -11.92142391204834 + ], + [ + "▁NSW", + -11.922415733337402 + ], + [ + "▁Conservative", + -11.922541618347168 + ], + [ + "case", + -11.922643661499023 + ], + [ + "▁parked", + -11.922772407531738 + ], + [ + "dar", + -11.9227933883667 + ], + [ + "▁Essay", + -11.922910690307617 + ], + [ + "▁Comment", + -11.923089027404785 + ], + [ + "▁subsidiary", + -11.923171043395996 + ], + [ + "▁noble", + -11.923225402832031 + ], + [ + "▁Bradley", + -11.923638343811035 + ], + [ + "▁overlooked", + -11.923726081848145 + ], + [ + "▁distress", + -11.923807144165039 + ], + [ + "▁accommodations", + -11.92420482635498 + ], + [ + "▁culinary", + -11.924304008483887 + ], + [ + "▁practiced", + -11.92431354522705 + ], + [ + "▁Downtown", + -11.924480438232422 + ], + [ + "▁Retail", + -11.924700736999512 + ], + [ + "▁ginger", + -11.9247465133667 + ], + [ + "▁murdered", + -11.92475700378418 + ], + [ + "tal", + -11.924762725830078 + ], + [ + "▁depot", + -11.925095558166504 + ], + [ + "proof", + -11.925104141235352 + ], + [ + "▁Memory", + -11.925592422485352 + ], + [ + "▁distinguish", + -11.925759315490723 + ], + [ + "▁freight", + -11.926002502441406 + ], + [ + "▁awake", + -11.926145553588867 + ], + [ + "▁Example", + -11.92625904083252 + ], + [ + "▁humidity", + -11.926259994506836 + ], + [ + "▁Beth", + -11.926457405090332 + ], + [ + "▁kills", + -11.926469802856445 + ], + [ + "▁Blu", + -11.926624298095703 + ], + [ + "▁awhile", + -11.926800727844238 + ], + [ + "▁Biology", + -11.926834106445312 + ], + [ + "▁headache", + -11.926973342895508 + ], + [ + "▁mono", + -11.927029609680176 + ], + [ + "▁Doors", + -11.927129745483398 + ], + [ + "▁dock", + -11.92733383178711 + ], + [ + "▁gig", + -11.927424430847168 + ], + [ + "▁Kar", + -11.92747688293457 + ], + [ + "▁exceptionally", + -11.927624702453613 + ], + [ + "▁est", + -11.927628517150879 + ], + [ + "▁MN", + -11.92774772644043 + ], + [ + "▁owe", + -11.927938461303711 + ], + [ + "▁Cemetery", + -11.9282865524292 + ], + [ + "lee", + -11.928321838378906 + ], + [ + "▁Yo", + -11.928421974182129 + ], + [ + "▁commitments", + -11.928437232971191 + ], + [ + "▁Manufacturing", + -11.928521156311035 + ], + [ + "▁fusion", + -11.928707122802734 + ], + [ + "▁framed", + -11.928853988647461 + ], + [ + "▁Heather", + -11.928881645202637 + ], + [ + "▁Imperial", + -11.929071426391602 + ], + [ + "▁Nicholas", + -11.929076194763184 + ], + [ + "▁1800", + -11.929082870483398 + ], + [ + "▁Sterling", + -11.929182052612305 + ], + [ + "▁appliance", + -11.929418563842773 + ], + [ + "▁bounce", + -11.92944622039795 + ], + [ + "▁ninth", + -11.92944622039795 + ], + [ + "ping", + -11.929553985595703 + ], + [ + "▁ego", + -11.929561614990234 + ], + [ + "▁crust", + -11.929605484008789 + ], + [ + "▁Tigers", + -11.929657936096191 + ], + [ + "▁Bel", + -11.929733276367188 + ], + [ + "▁BB", + -11.929743766784668 + ], + [ + "▁Tap", + -11.929923057556152 + ], + [ + "▁norm", + -11.930015563964844 + ], + [ + "▁vocabulary", + -11.93011474609375 + ], + [ + "▁Display", + -11.93016242980957 + ], + [ + "▁induced", + -11.930233001708984 + ], + [ + "▁Beer", + -11.930238723754883 + ], + [ + "▁overtime", + -11.93072509765625 + ], + [ + "▁1966", + -11.93076229095459 + ], + [ + "▁tide", + -11.930801391601562 + ], + [ + "▁imports", + -11.931159019470215 + ], + [ + "▁amino", + -11.931199073791504 + ], + [ + "▁defender", + -11.931282043457031 + ], + [ + "▁slipped", + -11.931587219238281 + ], + [ + "▁accessory", + -11.931842803955078 + ], + [ + "going", + -11.932000160217285 + ], + [ + "▁hey", + -11.932147026062012 + ], + [ + "▁Wonder", + -11.932161331176758 + ], + [ + "▁drought", + -11.932867050170898 + ], + [ + "▁Brooks", + -11.933064460754395 + ], + [ + "▁Hold", + -11.933112144470215 + ], + [ + "▁broadband", + -11.93326187133789 + ], + [ + "▁bitcoin", + -11.933401107788086 + ], + [ + "▁utterly", + -11.933614730834961 + ], + [ + "▁halfway", + -11.933627128601074 + ], + [ + "▁digging", + -11.933636665344238 + ], + [ + "▁associates", + -11.933727264404297 + ], + [ + "▁Weekly", + -11.933746337890625 + ], + [ + "▁Healthy", + -11.93377685546875 + ], + [ + "▁praised", + -11.93384075164795 + ], + [ + "▁incorporating", + -11.933873176574707 + ], + [ + "▁implied", + -11.933880805969238 + ], + [ + "▁Examples", + -11.93392276763916 + ], + [ + "▁Met", + -11.933996200561523 + ], + [ + "▁Fit", + -11.934144020080566 + ], + [ + "▁Ruby", + -11.93421459197998 + ], + [ + "▁absorbed", + -11.934684753417969 + ], + [ + "▁Physics", + -11.934808731079102 + ], + [ + "▁Shah", + -11.935125350952148 + ], + [ + "▁bachelor", + -11.935302734375 + ], + [ + "▁metro", + -11.935331344604492 + ], + [ + "▁explicit", + -11.935376167297363 + ], + [ + "▁Hebrew", + -11.935876846313477 + ], + [ + "▁Trinity", + -11.93587875366211 + ], + [ + "▁divisions", + -11.93600082397461 + ], + [ + "▁cartoon", + -11.9361572265625 + ], + [ + "▁Gaza", + -11.936209678649902 + ], + [ + "IP", + -11.936300277709961 + ], + [ + "▁amended", + -11.936614036560059 + ], + [ + "▁Nicole", + -11.936713218688965 + ], + [ + "▁autism", + -11.936721801757812 + ], + [ + "▁Twenty", + -11.936873435974121 + ], + [ + "▁tee", + -11.93696117401123 + ], + [ + "▁Seriously", + -11.937029838562012 + ], + [ + "▁shoppers", + -11.937029838562012 + ], + [ + "his", + -11.937031745910645 + ], + [ + "▁recovering", + -11.937051773071289 + ], + [ + "fer", + -11.937098503112793 + ], + [ + "▁Audi", + -11.937177658081055 + ], + [ + "▁relieve", + -11.937321662902832 + ], + [ + "▁Joel", + -11.937396049499512 + ], + [ + "▁Arabic", + -11.937840461730957 + ], + [ + "▁vulnerability", + -11.938278198242188 + ], + [ + "▁102", + -11.938302993774414 + ], + [ + "▁consolidation", + -11.938403129577637 + ], + [ + "▁logging", + -11.938488960266113 + ], + [ + "▁slept", + -11.938868522644043 + ], + [ + "var", + -11.9389066696167 + ], + [ + "▁Banks", + -11.93928337097168 + ], + [ + "▁pH", + -11.939705848693848 + ], + [ + "▁diamonds", + -11.939770698547363 + ], + [ + "▁Revenue", + -11.939839363098145 + ], + [ + "▁generates", + -11.939875602722168 + ], + [ + "▁buzz", + -11.940150260925293 + ], + [ + "▁nightmare", + -11.940247535705566 + ], + [ + "▁Zen", + -11.940324783325195 + ], + [ + "▁freelance", + -11.940530776977539 + ], + [ + "ene", + -11.940816879272461 + ], + [ + "▁adapter", + -11.941089630126953 + ], + [ + "▁Kid", + -11.941202163696289 + ], + [ + "▁inspirational", + -11.9412841796875 + ], + [ + "▁Paint", + -11.941373825073242 + ], + [ + "▁shuttle", + -11.941527366638184 + ], + [ + "▁contributes", + -11.941818237304688 + ], + [ + "▁Past", + -11.941990852355957 + ], + [ + "▁beast", + -11.942255020141602 + ], + [ + "▁Creating", + -11.942370414733887 + ], + [ + "▁seized", + -11.942383766174316 + ], + [ + "▁Flower", + -11.942408561706543 + ], + [ + "▁Ranch", + -11.942431449890137 + ], + [ + "▁Dar", + -11.942625999450684 + ], + [ + "▁Foods", + -11.942733764648438 + ], + [ + "▁archives", + -11.94274616241455 + ], + [ + "CD", + -11.942861557006836 + ], + [ + "▁um", + -11.942892074584961 + ], + [ + "▁empower", + -11.942991256713867 + ], + [ + "▁budgets", + -11.943002700805664 + ], + [ + "▁interim", + -11.943047523498535 + ], + [ + "▁mo", + -11.943077087402344 + ], + [ + "▁discounted", + -11.943093299865723 + ], + [ + "▁Rico", + -11.943145751953125 + ], + [ + "▁posed", + -11.943572044372559 + ], + [ + "▁carved", + -11.943646430969238 + ], + [ + "▁spy", + -11.943741798400879 + ], + [ + "▁Ban", + -11.943781852722168 + ], + [ + "▁Nearly", + -11.943913459777832 + ], + [ + "▁Viagra", + -11.944000244140625 + ], + [ + "▁fog", + -11.94400691986084 + ], + [ + "▁beverages", + -11.944128036499023 + ], + [ + "▁scenic", + -11.944167137145996 + ], + [ + "▁rat", + -11.944171905517578 + ], + [ + "▁duck", + -11.944357872009277 + ], + [ + "▁в", + -11.944498062133789 + ], + [ + "▁skiing", + -11.944633483886719 + ], + [ + "▁AN", + -11.944694519042969 + ], + [ + "▁Historic", + -11.944781303405762 + ], + [ + "▁Geo", + -11.944783210754395 + ], + [ + "▁Ro", + -11.944798469543457 + ], + [ + "▁Den", + -11.944892883300781 + ], + [ + "▁Plaza", + -11.945151329040527 + ], + [ + "length", + -11.945494651794434 + ], + [ + "▁escaped", + -11.945502281188965 + ], + [ + "▁chill", + -11.9456148147583 + ], + [ + "▁protesters", + -11.945722579956055 + ], + [ + "check", + -11.946304321289062 + ], + [ + "▁explosive", + -11.946327209472656 + ], + [ + "▁verbal", + -11.946480751037598 + ], + [ + "▁Bass", + -11.946503639221191 + ], + [ + "▁cushion", + -11.947013854980469 + ], + [ + "▁billions", + -11.947114944458008 + ], + [ + "▁Item", + -11.947136878967285 + ], + [ + "Good", + -11.94725513458252 + ], + [ + "▁dialog", + -11.947698593139648 + ], + [ + "▁Were", + -11.947942733764648 + ], + [ + "▁lanes", + -11.948013305664062 + ], + [ + "▁Norwegian", + -11.94809627532959 + ], + [ + "ile", + -11.948225021362305 + ], + [ + "▁diplomatic", + -11.948307991027832 + ], + [ + "▁surviving", + -11.94836711883545 + ], + [ + "▁elevation", + -11.948746681213379 + ], + [ + "▁Principal", + -11.94881820678711 + ], + [ + "▁Hannah", + -11.948863983154297 + ], + [ + "▁Dawn", + -11.94888687133789 + ], + [ + "▁cons", + -11.948908805847168 + ], + [ + "▁ONLY", + -11.94893741607666 + ], + [ + "▁convincing", + -11.948954582214355 + ], + [ + "▁Doing", + -11.948979377746582 + ], + [ + "▁Lights", + -11.949103355407715 + ], + [ + "▁seasoned", + -11.949108123779297 + ], + [ + "uri", + -11.949172973632812 + ], + [ + "▁Generation", + -11.949213027954102 + ], + [ + "app", + -11.949268341064453 + ], + [ + "zer", + -11.949446678161621 + ], + [ + "▁candles", + -11.949509620666504 + ], + [ + "▁Membership", + -11.949711799621582 + ], + [ + "▁oversight", + -11.950207710266113 + ], + [ + "▁Pot", + -11.950308799743652 + ], + [ + "▁merit", + -11.950401306152344 + ], + [ + "▁lonely", + -11.950465202331543 + ], + [ + "▁Jam", + -11.950550079345703 + ], + [ + "▁rookie", + -11.950617790222168 + ], + [ + "▁Politics", + -11.950638771057129 + ], + [ + "▁socially", + -11.950703620910645 + ], + [ + "▁footprint", + -11.950774192810059 + ], + [ + "God", + -11.95101261138916 + ], + [ + "▁Installation", + -11.951094627380371 + ], + [ + "DS", + -11.951184272766113 + ], + [ + "powered", + -11.951272010803223 + ], + [ + "▁FA", + -11.951560974121094 + ], + [ + "▁disturbing", + -11.95156192779541 + ], + [ + "▁instructors", + -11.951929092407227 + ], + [ + "▁Personally", + -11.952033042907715 + ], + [ + "▁environmentally", + -11.952075004577637 + ], + [ + "▁fool", + -11.952075004577637 + ], + [ + "▁snake", + -11.952173233032227 + ], + [ + "ju", + -11.95219612121582 + ], + [ + "▁Motion", + -11.952348709106445 + ], + [ + "▁connector", + -11.952385902404785 + ], + [ + "▁receptor", + -11.95246696472168 + ], + [ + "▁Poor", + -11.952483177185059 + ], + [ + "▁lush", + -11.952566146850586 + ], + [ + "▁lowered", + -11.952606201171875 + ], + [ + "▁taxpayers", + -11.952621459960938 + ], + [ + "▁Certification", + -11.952637672424316 + ], + [ + "▁criminals", + -11.952638626098633 + ], + [ + "▁debts", + -11.952638626098633 + ], + [ + "▁hopeful", + -11.952643394470215 + ], + [ + "▁consisted", + -11.952850341796875 + ], + [ + "▁Sr", + -11.952888488769531 + ], + [ + "▁Census", + -11.952919006347656 + ], + [ + "▁Shaw", + -11.952919006347656 + ], + [ + "▁Vehicle", + -11.952981948852539 + ], + [ + "▁Gar", + -11.953025817871094 + ], + [ + "▁commerce", + -11.953092575073242 + ], + [ + "del", + -11.953097343444824 + ], + [ + "▁towels", + -11.953277587890625 + ], + [ + "▁lengths", + -11.953470230102539 + ], + [ + "▁1945", + -11.953472137451172 + ], + [ + "▁Python", + -11.953702926635742 + ], + [ + "▁complained", + -11.953706741333008 + ], + [ + "▁FROM", + -11.953834533691406 + ], + [ + "▁Lou", + -11.95390510559082 + ], + [ + "▁Sci", + -11.954304695129395 + ], + [ + "▁Surgery", + -11.954329490661621 + ], + [ + "▁sticky", + -11.954383850097656 + ], + [ + "▁attain", + -11.954432487487793 + ], + [ + "▁tier", + -11.954512596130371 + ], + [ + "ure", + -11.954634666442871 + ], + [ + "family", + -11.954718589782715 + ], + [ + "▁learnt", + -11.95475959777832 + ], + [ + "▁PE", + -11.955031394958496 + ], + [ + "▁Fantasy", + -11.955290794372559 + ], + [ + "▁filming", + -11.955484390258789 + ], + [ + "▁surprises", + -11.9555025100708 + ], + [ + "▁infinite", + -11.955880165100098 + ], + [ + "▁Processing", + -11.955944061279297 + ], + [ + "▁shorts", + -11.956183433532715 + ], + [ + "▁rented", + -11.956398963928223 + ], + [ + "▁accessibility", + -11.956489562988281 + ], + [ + "▁Spider", + -11.956645011901855 + ], + [ + "▁surround", + -11.956727981567383 + ], + [ + "▁fairy", + -11.95692253112793 + ], + [ + "▁Wash", + -11.957195281982422 + ], + [ + "▁brakes", + -11.957501411437988 + ], + [ + "▁landmark", + -11.957599639892578 + ], + [ + "▁Bal", + -11.957600593566895 + ], + [ + "▁Belt", + -11.957618713378906 + ], + [ + "▁Diet", + -11.957772254943848 + ], + [ + "▁Newton", + -11.957793235778809 + ], + [ + "▁Fri", + -11.957860946655273 + ], + [ + "▁bra", + -11.957951545715332 + ], + [ + "▁complaining", + -11.958073616027832 + ], + [ + "▁Absolutely", + -11.958175659179688 + ], + [ + "▁Income", + -11.95844554901123 + ], + [ + "▁evenly", + -11.958565711975098 + ], + [ + "▁encryption", + -11.958879470825195 + ], + [ + "▁refugee", + -11.958885192871094 + ], + [ + "ily", + -11.959004402160645 + ], + [ + "▁Truck", + -11.959274291992188 + ], + [ + "▁GE", + -11.959443092346191 + ], + [ + "▁bargain", + -11.95954418182373 + ], + [ + "▁holistic", + -11.95955753326416 + ], + [ + "▁authentication", + -11.95960807800293 + ], + [ + "▁Representatives", + -11.95963191986084 + ], + [ + "▁acclaimed", + -11.959851264953613 + ], + [ + "▁cares", + -11.959871292114258 + ], + [ + "▁Workers", + -11.96001148223877 + ], + [ + "▁Miles", + -11.960139274597168 + ], + [ + "DC", + -11.960208892822266 + ], + [ + "▁denial", + -11.96045207977295 + ], + [ + "▁sail", + -11.960697174072266 + ], + [ + "▁honesty", + -11.960853576660156 + ], + [ + "▁accepts", + -11.960986137390137 + ], + [ + "▁beers", + -11.960991859436035 + ], + [ + "LA", + -11.961029052734375 + ], + [ + "John", + -11.961105346679688 + ], + [ + "▁practitioner", + -11.961119651794434 + ], + [ + "▁Tar", + -11.961135864257812 + ], + [ + "▁Programs", + -11.961160659790039 + ], + [ + "▁Trek", + -11.961318016052246 + ], + [ + "▁Discovery", + -11.961355209350586 + ], + [ + "▁ISBN", + -11.961617469787598 + ], + [ + "▁Specialist", + -11.961721420288086 + ], + [ + "ius", + -11.961738586425781 + ], + [ + "▁travelled", + -11.961752891540527 + ], + [ + "af", + -11.96181869506836 + ], + [ + "▁branded", + -11.962010383605957 + ], + [ + "▁tariffs", + -11.962082862854004 + ], + [ + "▁dash", + -11.962166786193848 + ], + [ + "▁personalities", + -11.962209701538086 + ], + [ + "▁TN", + -11.962276458740234 + ], + [ + "▁Portuguese", + -11.96243953704834 + ], + [ + "▁Participants", + -11.962505340576172 + ], + [ + "ward", + -11.962590217590332 + ], + [ + "▁neglect", + -11.96267318725586 + ], + [ + "▁ISIS", + -11.962721824645996 + ], + [ + "▁sir", + -11.962783813476562 + ], + [ + "▁Bonus", + -11.962919235229492 + ], + [ + "▁Lebanon", + -11.962944030761719 + ], + [ + "▁criticized", + -11.9629545211792 + ], + [ + "su", + -11.962969779968262 + ], + [ + "▁accelerate", + -11.963032722473145 + ], + [ + "▁Regular", + -11.96316909790039 + ], + [ + "▁Medium", + -11.963363647460938 + ], + [ + "sey", + -11.963397026062012 + ], + [ + "▁pilots", + -11.963607788085938 + ], + [ + "▁fond", + -11.963761329650879 + ], + [ + "▁rats", + -11.96403694152832 + ], + [ + "▁jewellery", + -11.964129447937012 + ], + [ + "▁longtime", + -11.964397430419922 + ], + [ + "▁Swift", + -11.9644775390625 + ], + [ + "▁Angela", + -11.9647798538208 + ], + [ + "▁obsessed", + -11.964871406555176 + ], + [ + "▁torque", + -11.964971542358398 + ], + [ + "▁colonial", + -11.965253829956055 + ], + [ + "▁Gear", + -11.965288162231445 + ], + [ + "Time", + -11.965314865112305 + ], + [ + "▁Tourism", + -11.965388298034668 + ], + [ + "▁Testing", + -11.965487480163574 + ], + [ + "▁slavery", + -11.96562671661377 + ], + [ + "▁definitions", + -11.965728759765625 + ], + [ + "▁wipe", + -11.965750694274902 + ], + [ + "▁payroll", + -11.965897560119629 + ], + [ + "▁merchant", + -11.965954780578613 + ], + [ + "▁detailing", + -11.965982437133789 + ], + [ + "▁supervisor", + -11.966304779052734 + ], + [ + "▁engineered", + -11.966346740722656 + ], + [ + "code", + -11.9664306640625 + ], + [ + "▁toast", + -11.96644401550293 + ], + [ + "▁Average", + -11.966606140136719 + ], + [ + "▁compatibility", + -11.9673490524292 + ], + [ + "piece", + -11.967358589172363 + ], + [ + "▁Traffic", + -11.96739673614502 + ], + [ + "▁Cor", + -11.967453956604004 + ], + [ + "▁BUT", + -11.967460632324219 + ], + [ + "built", + -11.967633247375488 + ], + [ + "▁Hughes", + -11.967938423156738 + ], + [ + "▁bless", + -11.967941284179688 + ], + [ + "▁invaluable", + -11.968087196350098 + ], + [ + "▁stiff", + -11.968100547790527 + ], + [ + "▁typing", + -11.968152046203613 + ], + [ + "▁submissions", + -11.96820068359375 + ], + [ + "▁MT", + -11.96854305267334 + ], + [ + "▁benchmark", + -11.968801498413086 + ], + [ + "▁propaganda", + -11.969032287597656 + ], + [ + "▁Engineer", + -11.969143867492676 + ], + [ + "▁calculator", + -11.969189643859863 + ], + [ + "▁Jesse", + -11.969191551208496 + ], + [ + "▁hypothesis", + -11.969285011291504 + ], + [ + "▁shutdown", + -11.969801902770996 + ], + [ + "▁springs", + -11.96994686126709 + ], + [ + "▁dumb", + -11.970022201538086 + ], + [ + "▁allocation", + -11.970035552978516 + ], + [ + "▁recruit", + -11.970117568969727 + ], + [ + "ston", + -11.970157623291016 + ], + [ + "▁fulfilled", + -11.970199584960938 + ], + [ + "▁requesting", + -11.970218658447266 + ], + [ + "125", + -11.970375061035156 + ], + [ + "▁fellowship", + -11.970455169677734 + ], + [ + "▁debit", + -11.97050952911377 + ], + [ + "▁remotely", + -11.970634460449219 + ], + [ + "▁resolutions", + -11.97069263458252 + ], + [ + "▁Eddie", + -11.970708847045898 + ], + [ + "▁Row", + -11.970976829528809 + ], + [ + "▁Problem", + -11.971025466918945 + ], + [ + "▁inbox", + -11.971092224121094 + ], + [ + "▁cinnamon", + -11.971277236938477 + ], + [ + "▁pronounced", + -11.971492767333984 + ], + [ + "▁potent", + -11.971650123596191 + ], + [ + "▁Solution", + -11.971830368041992 + ], + [ + "▁competitor", + -11.971928596496582 + ], + [ + "▁regulators", + -11.972033500671387 + ], + [ + "▁Bit", + -11.97225284576416 + ], + [ + "▁stereo", + -11.97230339050293 + ], + [ + "▁harness", + -11.972373962402344 + ], + [ + "▁therapies", + -11.972433090209961 + ], + [ + "▁headphones", + -11.972586631774902 + ], + [ + "UK", + -11.972644805908203 + ], + [ + "NO", + -11.972787857055664 + ], + [ + "▁valuation", + -11.972909927368164 + ], + [ + "▁hometown", + -11.972918510437012 + ], + [ + "▁rage", + -11.97301959991455 + ], + [ + "▁Provide", + -11.973204612731934 + ], + [ + "▁breathtaking", + -11.973339080810547 + ], + [ + "▁poured", + -11.973483085632324 + ], + [ + "▁rises", + -11.973624229431152 + ], + [ + "▁1900", + -11.973630905151367 + ], + [ + "▁studios", + -11.973645210266113 + ], + [ + "▁stretched", + -11.973648071289062 + ], + [ + "▁align", + -11.97382640838623 + ], + [ + "▁storms", + -11.97382640838623 + ], + [ + "Life", + -11.973828315734863 + ], + [ + "▁rub", + -11.973937034606934 + ], + [ + "▁deliberately", + -11.97411823272705 + ], + [ + "ich", + -11.974150657653809 + ], + [ + "▁Nepal", + -11.974356651306152 + ], + [ + "▁pig", + -11.974380493164062 + ], + [ + "▁Logan", + -11.974650382995605 + ], + [ + "▁Hitler", + -11.974716186523438 + ], + [ + "▁gifted", + -11.974780082702637 + ], + [ + "▁spoon", + -11.974990844726562 + ], + [ + "▁Thankfully", + -11.975007057189941 + ], + [ + "nik", + -11.975044250488281 + ], + [ + "▁politician", + -11.975258827209473 + ], + [ + "▁Min", + -11.975446701049805 + ], + [ + "▁Lion", + -11.975451469421387 + ], + [ + "ala", + -11.97546100616455 + ], + [ + "▁detention", + -11.975667953491211 + ], + [ + "works", + -11.975692749023438 + ], + [ + "▁Decor", + -11.975759506225586 + ], + [ + "▁premise", + -11.975847244262695 + ], + [ + "profile", + -11.976048469543457 + ], + [ + "city", + -11.976109504699707 + ], + [ + "▁technician", + -11.976339340209961 + ], + [ + "sha", + -11.976484298706055 + ], + [ + "▁acrylic", + -11.976622581481934 + ], + [ + "▁Method", + -11.976627349853516 + ], + [ + "▁Iraqi", + -11.976675987243652 + ], + [ + "▁fulfilling", + -11.976707458496094 + ], + [ + "▁pertaining", + -11.976713180541992 + ], + [ + "▁relevance", + -11.97673225402832 + ], + [ + "▁outfits", + -11.976733207702637 + ], + [ + "bad", + -11.976906776428223 + ], + [ + "ira", + -11.977169036865234 + ], + [ + "▁differential", + -11.977394104003906 + ], + [ + "user", + -11.97767448425293 + ], + [ + "rated", + -11.977753639221191 + ], + [ + "▁banana", + -11.977806091308594 + ], + [ + "▁preferably", + -11.977948188781738 + ], + [ + "▁graduating", + -11.978086471557617 + ], + [ + "▁cu", + -11.978110313415527 + ], + [ + "▁Honor", + -11.978246688842773 + ], + [ + "▁eleven", + -11.978260040283203 + ], + [ + "▁restrict", + -11.978304862976074 + ], + [ + "▁UC", + -11.978604316711426 + ], + [ + "▁Clay", + -11.978641510009766 + ], + [ + "▁boarding", + -11.97868537902832 + ], + [ + "▁Chile", + -11.979110717773438 + ], + [ + "▁salon", + -11.979701042175293 + ], + [ + "▁arguably", + -11.979873657226562 + ], + [ + "▁Stuart", + -11.97996711730957 + ], + [ + "▁RSS", + -11.979986190795898 + ], + [ + "▁Rated", + -11.98015308380127 + ], + [ + "▁Baseball", + -11.980276107788086 + ], + [ + "▁headline", + -11.980361938476562 + ], + [ + "▁apologize", + -11.980626106262207 + ], + [ + "▁Bailey", + -11.980630874633789 + ], + [ + "ā", + -11.980636596679688 + ], + [ + "▁litter", + -11.980649948120117 + ], + [ + "▁128", + -11.980806350708008 + ], + [ + "▁Request", + -11.980978965759277 + ], + [ + "▁Fly", + -11.981181144714355 + ], + [ + "▁anime", + -11.981246948242188 + ], + [ + "▁grains", + -11.981361389160156 + ], + [ + "▁Sacramento", + -11.981473922729492 + ], + [ + "▁bandwidth", + -11.982047080993652 + ], + [ + "▁Leonard", + -11.982084274291992 + ], + [ + "▁Officers", + -11.982114791870117 + ], + [ + "▁ensemble", + -11.982379913330078 + ], + [ + "▁scholarships", + -11.982667922973633 + ], + [ + "▁Bookmark", + -11.982918739318848 + ], + [ + "▁Partnership", + -11.983015060424805 + ], + [ + "▁DS", + -11.983043670654297 + ], + [ + "▁nap", + -11.983067512512207 + ], + [ + "▁Southwest", + -11.983074188232422 + ], + [ + "▁Bennett", + -11.983185768127441 + ], + [ + "▁Ellen", + -11.983208656311035 + ], + [ + "De", + -11.983322143554688 + ], + [ + "▁developmental", + -11.983516693115234 + ], + [ + "▁greens", + -11.983766555786133 + ], + [ + "craft", + -11.983802795410156 + ], + [ + "CA", + -11.983892440795898 + ], + [ + "TH", + -11.983912467956543 + ], + [ + "generation", + -11.983949661254883 + ], + [ + "▁mushrooms", + -11.984028816223145 + ], + [ + "▁slices", + -11.984050750732422 + ], + [ + "2004", + -11.984140396118164 + ], + [ + "▁earrings", + -11.984155654907227 + ], + [ + "AC", + -11.984297752380371 + ], + [ + "twitter", + -11.984384536743164 + ], + [ + "▁shaking", + -11.984427452087402 + ], + [ + "▁Experts", + -11.98447036743164 + ], + [ + "▁beginners", + -11.984487533569336 + ], + [ + "▁Wear", + -11.984551429748535 + ], + [ + "▁Laser", + -11.984676361083984 + ], + [ + "▁intervals", + -11.98479175567627 + ], + [ + "▁ramp", + -11.984854698181152 + ], + [ + "▁civilization", + -11.984912872314453 + ], + [ + "▁Ba", + -11.984931945800781 + ], + [ + "▁ferry", + -11.9850492477417 + ], + [ + "▁advertisements", + -11.985151290893555 + ], + [ + "▁arch", + -11.985379219055176 + ], + [ + "▁Ti", + -11.98538589477539 + ], + [ + "▁roasted", + -11.985679626464844 + ], + [ + "▁yogurt", + -11.985701560974121 + ], + [ + "▁advertisement", + -11.985709190368652 + ], + [ + "▁Ideal", + -11.985908508300781 + ], + [ + "▁Response", + -11.986197471618652 + ], + [ + "▁fragrance", + -11.986331939697266 + ], + [ + "▁1963", + -11.986391067504883 + ], + [ + "value", + -11.986527442932129 + ], + [ + "▁Statement", + -11.986740112304688 + ], + [ + "▁credited", + -11.986794471740723 + ], + [ + "▁backwards", + -11.986801147460938 + ], + [ + "▁Newcastle", + -11.98682975769043 + ], + [ + "▁Tel", + -11.987195014953613 + ], + [ + "▁RM", + -11.987571716308594 + ], + [ + "▁Drew", + -11.987615585327148 + ], + [ + "▁inputs", + -11.987631797790527 + ], + [ + "▁Methods", + -11.98768138885498 + ], + [ + "▁salaries", + -11.987707138061523 + ], + [ + "▁Poker", + -11.988003730773926 + ], + [ + "▁Representative", + -11.988052368164062 + ], + [ + "▁peanut", + -11.98824691772461 + ], + [ + "▁knit", + -11.988585472106934 + ], + [ + "▁identifies", + -11.988861083984375 + ], + [ + "▁occurrence", + -11.988863945007324 + ], + [ + "▁feasible", + -11.989450454711914 + ], + [ + "▁Hero", + -11.98957347869873 + ], + [ + "▁cheer", + -11.989785194396973 + ], + [ + "▁optimized", + -11.990023612976074 + ], + [ + "▁crews", + -11.990266799926758 + ], + [ + "▁Cars", + -11.990601539611816 + ], + [ + "▁Grab", + -11.99060344696045 + ], + [ + "▁upstairs", + -11.990625381469727 + ], + [ + "▁villa", + -11.990691184997559 + ], + [ + "▁asthma", + -11.990832328796387 + ], + [ + "▁boutique", + -11.990862846374512 + ], + [ + "▁Rescue", + -11.990970611572266 + ], + [ + "▁Venezuela", + -11.991048812866211 + ], + [ + "▁shrimp", + -11.99107551574707 + ], + [ + "▁Mat", + -11.991086959838867 + ], + [ + "▁kicking", + -11.991291046142578 + ], + [ + "▁stirring", + -11.991314888000488 + ], + [ + "▁particle", + -11.99131965637207 + ], + [ + "▁builders", + -11.991387367248535 + ], + [ + "▁Written", + -11.99152660369873 + ], + [ + "▁Brady", + -11.99158000946045 + ], + [ + "▁blades", + -11.99159049987793 + ], + [ + "▁noticeable", + -11.99163818359375 + ], + [ + "▁chopped", + -11.991742134094238 + ], + [ + "via", + -11.991865158081055 + ], + [ + "▁Papers", + -11.99189567565918 + ], + [ + "▁startups", + -11.991918563842773 + ], + [ + "three", + -11.992292404174805 + ], + [ + "▁PT", + -11.992427825927734 + ], + [ + "▁virtue", + -11.992609024047852 + ], + [ + "URL", + -11.992656707763672 + ], + [ + "cast", + -11.992718696594238 + ], + [ + "▁Cotton", + -11.993047714233398 + ], + [ + "▁Shore", + -11.993178367614746 + ], + [ + "▁Ghana", + -11.993241310119629 + ], + [ + "selling", + -11.993249893188477 + ], + [ + "▁behave", + -11.993315696716309 + ], + [ + "▁HAVE", + -11.993648529052734 + ], + [ + "▁Chemistry", + -11.993753433227539 + ], + [ + "▁antenna", + -11.993812561035156 + ], + [ + "▁teammates", + -11.993983268737793 + ], + [ + "▁buffet", + -11.99402141571045 + ], + [ + "▁urine", + -11.994024276733398 + ], + [ + "▁subjected", + -11.994032859802246 + ], + [ + "▁storytelling", + -11.994091033935547 + ], + [ + "▁911", + -11.99423599243164 + ], + [ + "▁smiles", + -11.994314193725586 + ], + [ + "▁workflow", + -11.994369506835938 + ], + [ + "▁doses", + -11.994745254516602 + ], + [ + "▁disruption", + -11.9949312210083 + ], + [ + "▁Corner", + -11.994980812072754 + ], + [ + "▁princess", + -11.995083808898926 + ], + [ + "▁assortment", + -11.99520492553711 + ], + [ + "▁Allow", + -11.995475769042969 + ], + [ + "▁Noah", + -11.995563507080078 + ], + [ + "▁220", + -11.995569229125977 + ], + [ + "▁UAE", + -11.995970726013184 + ], + [ + "▁retire", + -11.996023178100586 + ], + [ + "▁securely", + -11.996166229248047 + ], + [ + "▁Clearly", + -11.996188163757324 + ], + [ + "▁Parish", + -11.996207237243652 + ], + [ + "▁slope", + -11.99623966217041 + ], + [ + "▁uniquely", + -11.996602058410645 + ], + [ + "induced", + -11.996686935424805 + ], + [ + "▁Hub", + -11.996696472167969 + ], + [ + "▁bracket", + -11.996834754943848 + ], + [ + "▁comfy", + -11.997313499450684 + ], + [ + "▁Hours", + -11.997321128845215 + ], + [ + "▁placeholder", + -11.997344017028809 + ], + [ + "▁relying", + -11.997398376464844 + ], + [ + "▁bulb", + -11.997611999511719 + ], + [ + "▁antibiotics", + -11.997772216796875 + ], + [ + "▁deceased", + -11.99779224395752 + ], + [ + "▁cushions", + -11.998189926147461 + ], + [ + "▁forthcoming", + -11.998376846313477 + ], + [ + "▁caption", + -11.99848461151123 + ], + [ + "▁Eat", + -11.998799324035645 + ], + [ + "▁Colombia", + -11.998834609985352 + ], + [ + "▁Maintenance", + -11.998920440673828 + ], + [ + "▁adhere", + -11.998967170715332 + ], + [ + "▁justified", + -11.999027252197266 + ], + [ + "Love", + -11.999119758605957 + ], + [ + "▁Subscribe", + -11.999290466308594 + ], + [ + "py", + -11.999444007873535 + ], + [ + "▁bizarre", + -11.999454498291016 + ], + [ + "▁devil", + -11.999547958374023 + ], + [ + "▁Lakes", + -11.999650001525879 + ], + [ + "▁martial", + -11.999714851379395 + ], + [ + "▁abused", + -11.99976634979248 + ], + [ + "▁Opening", + -12.000057220458984 + ], + [ + "▁balancing", + -12.00025463104248 + ], + [ + "▁Isaac", + -12.000409126281738 + ], + [ + "wall", + -12.000428199768066 + ], + [ + "▁Operation", + -12.000544548034668 + ], + [ + "▁Election", + -12.000551223754883 + ], + [ + "▁pictured", + -12.000597953796387 + ], + [ + "▁Nokia", + -12.00092601776123 + ], + [ + "▁Dual", + -12.000991821289062 + ], + [ + "ros", + -12.001089096069336 + ], + [ + "▁demonstrating", + -12.001494407653809 + ], + [ + "▁flush", + -12.001507759094238 + ], + [ + "▁cracks", + -12.001514434814453 + ], + [ + "▁Dogs", + -12.001633644104004 + ], + [ + "any", + -12.001758575439453 + ], + [ + "color", + -12.00186538696289 + ], + [ + "▁Leeds", + -12.001867294311523 + ], + [ + "▁Certainly", + -12.001897811889648 + ], + [ + "▁navy", + -12.002013206481934 + ], + [ + "▁Superior", + -12.002130508422852 + ], + [ + "▁450", + -12.002154350280762 + ], + [ + "▁lifelong", + -12.002288818359375 + ], + [ + "▁prosperity", + -12.00229549407959 + ], + [ + "▁haul", + -12.002471923828125 + ], + [ + "▁asylum", + -12.002677917480469 + ], + [ + "▁inclined", + -12.002726554870605 + ], + [ + "▁rejection", + -12.002751350402832 + ], + [ + "▁wellbeing", + -12.002961158752441 + ], + [ + "▁lungs", + -12.003033638000488 + ], + [ + "▁cardiac", + -12.00309944152832 + ], + [ + "▁Vienna", + -12.003341674804688 + ], + [ + "▁Tonight", + -12.003425598144531 + ], + [ + "▁stems", + -12.003530502319336 + ], + [ + "too", + -12.003602981567383 + ], + [ + "▁institute", + -12.003642082214355 + ], + [ + "▁Tai", + -12.003843307495117 + ], + [ + "▁Excellence", + -12.003952026367188 + ], + [ + "▁timeless", + -12.00396728515625 + ], + [ + "▁civic", + -12.004220008850098 + ], + [ + "▁chasing", + -12.004385948181152 + ], + [ + "▁swept", + -12.004392623901367 + ], + [ + "▁velocity", + -12.00450325012207 + ], + [ + "▁🙂", + -12.004526138305664 + ], + [ + "▁screws", + -12.004841804504395 + ], + [ + "▁coloured", + -12.00497055053711 + ], + [ + "▁exhibitions", + -12.005024909973145 + ], + [ + "▁abandon", + -12.005248069763184 + ], + [ + "▁optimum", + -12.005256652832031 + ], + [ + "▁Wave", + -12.005345344543457 + ], + [ + "▁veggies", + -12.005389213562012 + ], + [ + "▁Dress", + -12.005404472351074 + ], + [ + "▁renew", + -12.005517959594727 + ], + [ + "ens", + -12.005587577819824 + ], + [ + "▁и", + -12.005675315856934 + ], + [ + "cap", + -12.006513595581055 + ], + [ + "▁una", + -12.006580352783203 + ], + [ + "▁104", + -12.006747245788574 + ], + [ + "▁bolt", + -12.006936073303223 + ], + [ + "▁Kill", + -12.006937980651855 + ], + [ + "▁plea", + -12.006989479064941 + ], + [ + "▁Considering", + -12.007061958312988 + ], + [ + "▁incomplete", + -12.007080078125 + ], + [ + "▁Subject", + -12.007096290588379 + ], + [ + "▁presidency", + -12.007204055786133 + ], + [ + "▁CSS", + -12.007326126098633 + ], + [ + "▁Coalition", + -12.007450103759766 + ], + [ + "▁guiding", + -12.007524490356445 + ], + [ + "▁lend", + -12.007701873779297 + ], + [ + "▁weed", + -12.007795333862305 + ], + [ + "▁efficacy", + -12.007915496826172 + ], + [ + "mont", + -12.008060455322266 + ], + [ + "▁pixel", + -12.008070945739746 + ], + [ + "▁buddy", + -12.008157730102539 + ], + [ + "▁rigorous", + -12.008184432983398 + ], + [ + "▁melted", + -12.008223533630371 + ], + [ + "▁Wheel", + -12.008349418640137 + ], + [ + "▁linen", + -12.008377075195312 + ], + [ + "▁Path", + -12.0086030960083 + ], + [ + "▁ancestors", + -12.008665084838867 + ], + [ + "▁gotta", + -12.008728981018066 + ], + [ + "People", + -12.008756637573242 + ], + [ + "101", + -12.008944511413574 + ], + [ + "its", + -12.009017944335938 + ], + [ + "hole", + -12.00905990600586 + ], + [ + "▁Firefox", + -12.009462356567383 + ], + [ + "▁shooter", + -12.00953197479248 + ], + [ + "▁tunes", + -12.009923934936523 + ], + [ + "▁entertain", + -12.009978294372559 + ], + [ + "▁shaping", + -12.009982109069824 + ], + [ + "▁Pizza", + -12.010103225708008 + ], + [ + "▁Melissa", + -12.01017951965332 + ], + [ + "▁canal", + -12.010200500488281 + ], + [ + "▁Cox", + -12.010577201843262 + ], + [ + "у", + -12.010706901550293 + ], + [ + "▁Nigerian", + -12.010730743408203 + ], + [ + "▁quantitative", + -12.010811805725098 + ], + [ + "▁LOL", + -12.011330604553223 + ], + [ + "hu", + -12.011368751525879 + ], + [ + "▁resin", + -12.011374473571777 + ], + [ + "▁substrate", + -12.0114107131958 + ], + [ + "▁vegetarian", + -12.011431694030762 + ], + [ + "▁Montgomery", + -12.011580467224121 + ], + [ + "▁workouts", + -12.011616706848145 + ], + [ + "▁honors", + -12.011754989624023 + ], + [ + "▁inquiries", + -12.011772155761719 + ], + [ + "▁Ta", + -12.011785507202148 + ], + [ + "▁textures", + -12.011970520019531 + ], + [ + "▁grandparents", + -12.012042999267578 + ], + [ + "By", + -12.01211166381836 + ], + [ + "▁Martha", + -12.012155532836914 + ], + [ + "▁architects", + -12.012256622314453 + ], + [ + "▁Sox", + -12.012385368347168 + ], + [ + "▁illnesses", + -12.012389183044434 + ], + [ + "▁Modi", + -12.012556076049805 + ], + [ + "▁fork", + -12.012662887573242 + ], + [ + "▁charities", + -12.012850761413574 + ], + [ + "▁Divine", + -12.012855529785156 + ], + [ + "▁coil", + -12.013211250305176 + ], + [ + "▁impress", + -12.013258934020996 + ], + [ + "▁wrestling", + -12.013352394104004 + ], + [ + "▁Bee", + -12.013370513916016 + ], + [ + "▁bucks", + -12.013384819030762 + ], + [ + "mp", + -12.013435363769531 + ], + [ + "ington", + -12.013470649719238 + ], + [ + "▁170", + -12.013517379760742 + ], + [ + "▁remedies", + -12.013598442077637 + ], + [ + "▁tract", + -12.013691902160645 + ], + [ + "▁crush", + -12.01371955871582 + ], + [ + "▁Calif", + -12.01374626159668 + ], + [ + "▁Points", + -12.013761520385742 + ], + [ + "▁McCain", + -12.013792991638184 + ], + [ + "▁stealing", + -12.013866424560547 + ], + [ + "▁Ancient", + -12.013936042785645 + ], + [ + "▁allergies", + -12.014098167419434 + ], + [ + "▁hazardous", + -12.01419448852539 + ], + [ + "▁zoom", + -12.014395713806152 + ], + [ + "▁inevitably", + -12.014639854431152 + ], + [ + "▁brains", + -12.01468276977539 + ], + [ + "▁Cathedral", + -12.014771461486816 + ], + [ + "▁Lastly", + -12.01491641998291 + ], + [ + "▁Neo", + -12.015096664428711 + ], + [ + "▁trademarks", + -12.015220642089844 + ], + [ + "▁Dylan", + -12.015329360961914 + ], + [ + "▁commodity", + -12.015497207641602 + ], + [ + "▁Lot", + -12.015534400939941 + ], + [ + "▁comprise", + -12.015790939331055 + ], + [ + "ati", + -12.015825271606445 + ], + [ + "▁Hu", + -12.015829086303711 + ], + [ + "▁immigrant", + -12.015894889831543 + ], + [ + "▁Patriots", + -12.015929222106934 + ], + [ + "▁pots", + -12.015984535217285 + ], + [ + "▁umbrella", + -12.016143798828125 + ], + [ + "▁Proceedings", + -12.016169548034668 + ], + [ + "▁wilderness", + -12.016185760498047 + ], + [ + "▁exploit", + -12.01622200012207 + ], + [ + "▁counterparts", + -12.01642894744873 + ], + [ + "▁exquisite", + -12.016495704650879 + ], + [ + "▁hottest", + -12.016585350036621 + ], + [ + "▁Bears", + -12.016613960266113 + ], + [ + "▁vent", + -12.016740798950195 + ], + [ + "▁warnings", + -12.016953468322754 + ], + [ + "▁Nine", + -12.016990661621094 + ], + [ + "▁Kai", + -12.01704216003418 + ], + [ + "eu", + -12.01705265045166 + ], + [ + "second", + -12.017127990722656 + ], + [ + "▁Properties", + -12.017146110534668 + ], + [ + "▁Edit", + -12.01715087890625 + ], + [ + "clock", + -12.017326354980469 + ], + [ + "▁Pain", + -12.017400741577148 + ], + [ + "▁il", + -12.017550468444824 + ], + [ + "▁Likewise", + -12.017585754394531 + ], + [ + "View", + -12.017974853515625 + ], + [ + "▁depressed", + -12.018293380737305 + ], + [ + "▁analog", + -12.018416404724121 + ], + [ + "▁monsters", + -12.018476486206055 + ], + [ + "om", + -12.018511772155762 + ], + [ + "▁focal", + -12.018536567687988 + ], + [ + "▁240", + -12.018677711486816 + ], + [ + "▁handsome", + -12.018855094909668 + ], + [ + "▁Ensure", + -12.018872261047363 + ], + [ + "▁surfing", + -12.018948554992676 + ], + [ + "▁sweeping", + -12.019103050231934 + ], + [ + "tra", + -12.0192289352417 + ], + [ + "▁Applied", + -12.019305229187012 + ], + [ + "pan", + -12.0193452835083 + ], + [ + "▁landscaping", + -12.019424438476562 + ], + [ + "▁airports", + -12.019471168518066 + ], + [ + "▁risky", + -12.019488334655762 + ], + [ + "▁Skills", + -12.019515037536621 + ], + [ + "▁EN", + -12.019567489624023 + ], + [ + "▁announcing", + -12.019665718078613 + ], + [ + "▁hug", + -12.02001953125 + ], + [ + "▁interpreted", + -12.020167350769043 + ], + [ + "▁Province", + -12.020220756530762 + ], + [ + "▁mighty", + -12.020232200622559 + ], + [ + "▁spends", + -12.020662307739258 + ], + [ + "▁bump", + -12.02070426940918 + ], + [ + "▁marketers", + -12.020734786987305 + ], + [ + "▁Tamil", + -12.021021842956543 + ], + [ + "▁messy", + -12.021044731140137 + ], + [ + "▁Complex", + -12.02114486694336 + ], + [ + "▁Earl", + -12.02135944366455 + ], + [ + "▁Perth", + -12.021526336669922 + ], + [ + "lon", + -12.021527290344238 + ], + [ + "▁stimulate", + -12.021596908569336 + ], + [ + "▁hydraulic", + -12.021600723266602 + ], + [ + "▁philosophical", + -12.021885871887207 + ], + [ + "▁committees", + -12.02225112915039 + ], + [ + "▁ham", + -12.022315979003906 + ], + [ + "110", + -12.022618293762207 + ], + [ + "▁myth", + -12.022747993469238 + ], + [ + "▁rep", + -12.022919654846191 + ], + [ + "▁volatility", + -12.022919654846191 + ], + [ + "ph", + -12.023097038269043 + ], + [ + "▁herbal", + -12.023287773132324 + ], + [ + "▁Defence", + -12.023536682128906 + ], + [ + "▁Male", + -12.023723602294922 + ], + [ + "shot", + -12.023789405822754 + ], + [ + "human", + -12.023829460144043 + ], + [ + "▁arthritis", + -12.023967742919922 + ], + [ + "▁steadily", + -12.024007797241211 + ], + [ + "Who", + -12.024026870727539 + ], + [ + "▁dam", + -12.02415657043457 + ], + [ + "▁cracked", + -12.02437973022461 + ], + [ + "take", + -12.024412155151367 + ], + [ + "▁revision", + -12.024537086486816 + ], + [ + "▁heights", + -12.02483081817627 + ], + [ + "full", + -12.024879455566406 + ], + [ + "▁extracted", + -12.024930000305176 + ], + [ + "▁purse", + -12.024978637695312 + ], + [ + "▁INC", + -12.025074005126953 + ], + [ + "▁Bon", + -12.025260925292969 + ], + [ + "▁nodded", + -12.025266647338867 + ], + [ + "▁unhappy", + -12.025538444519043 + ], + [ + "▁Gay", + -12.025736808776855 + ], + [ + "▁electoral", + -12.025792121887207 + ], + [ + "▁DB", + -12.02580738067627 + ], + [ + "▁retaining", + -12.025870323181152 + ], + [ + "▁partnered", + -12.026216506958008 + ], + [ + "▁MR", + -12.026274681091309 + ], + [ + "▁Athens", + -12.02639389038086 + ], + [ + "▁blended", + -12.02649211883545 + ], + [ + "▁Battery", + -12.026598930358887 + ], + [ + "▁Firm", + -12.02686882019043 + ], + [ + "▁Pastor", + -12.026981353759766 + ], + [ + "▁presently", + -12.027031898498535 + ], + [ + "▁Cruise", + -12.027100563049316 + ], + [ + "▁nano", + -12.027356147766113 + ], + [ + "resistant", + -12.027364730834961 + ], + [ + "▁stole", + -12.027504920959473 + ], + [ + "▁alpha", + -12.02757740020752 + ], + [ + "▁accompany", + -12.027762413024902 + ], + [ + "▁Metropolitan", + -12.027798652648926 + ], + [ + "▁creators", + -12.027812957763672 + ], + [ + "pop", + -12.02835464477539 + ], + [ + "ot", + -12.028660774230957 + ], + [ + "▁Bake", + -12.028841018676758 + ], + [ + "▁autonomous", + -12.028857231140137 + ], + [ + "▁variants", + -12.029166221618652 + ], + [ + "▁freshly", + -12.029258728027344 + ], + [ + "▁gateway", + -12.02932357788086 + ], + [ + "▁hello", + -12.02940845489502 + ], + [ + "▁Hindu", + -12.029419898986816 + ], + [ + "▁reign", + -12.029454231262207 + ], + [ + "▁distributor", + -12.029509544372559 + ], + [ + "▁doubts", + -12.029598236083984 + ], + [ + "▁Bike", + -12.02997875213623 + ], + [ + "▁advancement", + -12.030045509338379 + ], + [ + "ence", + -12.03006362915039 + ], + [ + "▁strains", + -12.030220031738281 + ], + [ + "▁Tag", + -12.030332565307617 + ], + [ + "▁Profile", + -12.03039836883545 + ], + [ + "▁Nutrition", + -12.030506134033203 + ], + [ + "▁seated", + -12.030518531799316 + ], + [ + "▁Individual", + -12.030545234680176 + ], + [ + "▁batter", + -12.03063678741455 + ], + [ + "▁Glenn", + -12.030852317810059 + ], + [ + "▁collectively", + -12.031137466430664 + ], + [ + "▁absorption", + -12.031214714050293 + ], + [ + "▁risen", + -12.031390190124512 + ], + [ + "▁Desert", + -12.031482696533203 + ], + [ + "▁Cities", + -12.031497955322266 + ], + [ + "▁internship", + -12.031546592712402 + ], + [ + "▁economical", + -12.03172779083252 + ], + [ + "▁Employment", + -12.031800270080566 + ], + [ + "▁assessing", + -12.031801223754883 + ], + [ + "▁Electronics", + -12.031830787658691 + ], + [ + "CH", + -12.03187370300293 + ], + [ + "▁ER", + -12.031936645507812 + ], + [ + "▁fixture", + -12.031984329223633 + ], + [ + "▁cop", + -12.032083511352539 + ], + [ + "▁Chain", + -12.032212257385254 + ], + [ + "ban", + -12.032355308532715 + ], + [ + "▁unaware", + -12.032367706298828 + ], + [ + "▁Peru", + -12.03243350982666 + ], + [ + "▁congregation", + -12.033003807067871 + ], + [ + "▁indirect", + -12.033188819885254 + ], + [ + "▁Consulting", + -12.033548355102539 + ], + [ + "▁revelation", + -12.033595085144043 + ], + [ + "▁reside", + -12.03365421295166 + ], + [ + "▁Fellow", + -12.03393840789795 + ], + [ + "▁Wu", + -12.033955574035645 + ], + [ + "▁Buddhist", + -12.033970832824707 + ], + [ + "▁Photoshop", + -12.033989906311035 + ], + [ + "▁Andrea", + -12.034090042114258 + ], + [ + "▁transforming", + -12.03421688079834 + ], + [ + "ua", + -12.03431510925293 + ], + [ + "▁decorate", + -12.034341812133789 + ], + [ + "▁webpage", + -12.0343599319458 + ], + [ + "bu", + -12.034368515014648 + ], + [ + "▁homeowner", + -12.034775733947754 + ], + [ + "soft", + -12.034836769104004 + ], + [ + "▁tabs", + -12.035228729248047 + ], + [ + "▁congressional", + -12.035316467285156 + ], + [ + "▁ambassador", + -12.035346984863281 + ], + [ + "▁heavier", + -12.035355567932129 + ], + [ + "email", + -12.035486221313477 + ], + [ + "▁queue", + -12.035615921020508 + ], + [ + "▁Der", + -12.03562068939209 + ], + [ + "▁exhibited", + -12.035672187805176 + ], + [ + "▁Ty", + -12.036092758178711 + ], + [ + "▁pressures", + -12.036093711853027 + ], + [ + "▁severity", + -12.03612232208252 + ], + [ + "▁NZ", + -12.036164283752441 + ], + [ + "▁blew", + -12.03627872467041 + ], + [ + "General", + -12.036325454711914 + ], + [ + "▁1962", + -12.036344528198242 + ], + [ + "▁gaze", + -12.036492347717285 + ], + [ + "▁nominee", + -12.036579132080078 + ], + [ + "▁destroying", + -12.03664493560791 + ], + [ + "▁Triple", + -12.036676406860352 + ], + [ + "▁hygiene", + -12.036860466003418 + ], + [ + "▁coordinated", + -12.036867141723633 + ], + [ + "▁accumulated", + -12.037034034729004 + ], + [ + "Best", + -12.037397384643555 + ], + [ + "handed", + -12.037409782409668 + ], + [ + "▁incorporates", + -12.037613868713379 + ], + [ + "▁beginner", + -12.037670135498047 + ], + [ + "▁corrected", + -12.037688255310059 + ], + [ + "▁lodge", + -12.037781715393066 + ], + [ + "working", + -12.037948608398438 + ], + [ + "▁Memphis", + -12.038028717041016 + ], + [ + "▁Literature", + -12.038103103637695 + ], + [ + "ative", + -12.0383939743042 + ], + [ + "▁sorted", + -12.038469314575195 + ], + [ + "▁recognizes", + -12.038501739501953 + ], + [ + "▁Thinking", + -12.038541793823242 + ], + [ + "▁adjusting", + -12.038793563842773 + ], + [ + "▁Derek", + -12.03893756866455 + ], + [ + "▁HVAC", + -12.039012908935547 + ], + [ + "▁multitude", + -12.0390625 + ], + [ + "▁meanwhile", + -12.039091110229492 + ], + [ + "sub", + -12.039104461669922 + ], + [ + "▁discourse", + -12.039139747619629 + ], + [ + "▁106", + -12.039249420166016 + ], + [ + "▁validity", + -12.039267539978027 + ], + [ + "az", + -12.039288520812988 + ], + [ + "▁whoever", + -12.039440155029297 + ], + [ + "ora", + -12.039498329162598 + ], + [ + "around", + -12.03953742980957 + ], + [ + "▁Dollar", + -12.039746284484863 + ], + [ + "▁traction", + -12.039931297302246 + ], + [ + "▁trendy", + -12.039963722229004 + ], + [ + "▁resigned", + -12.039971351623535 + ], + [ + "▁readings", + -12.039977073669434 + ], + [ + "▁uncommon", + -12.040030479431152 + ], + [ + "ero", + -12.040067672729492 + ], + [ + "▁aids", + -12.040108680725098 + ], + [ + "▁Sharon", + -12.040223121643066 + ], + [ + "stein", + -12.040403366088867 + ], + [ + "▁Strategic", + -12.040531158447266 + ], + [ + "▁mit", + -12.040701866149902 + ], + [ + "▁Database", + -12.040809631347656 + ], + [ + "▁curb", + -12.040879249572754 + ], + [ + "▁aerial", + -12.040916442871094 + ], + [ + "▁pleaded", + -12.040973663330078 + ], + [ + "▁furnished", + -12.041025161743164 + ], + [ + "▁merger", + -12.041309356689453 + ], + [ + "▁rumors", + -12.04137897491455 + ], + [ + "▁registry", + -12.041401863098145 + ], + [ + "▁Wholesale", + -12.041747093200684 + ], + [ + "▁Gates", + -12.0420503616333 + ], + [ + "▁advancing", + -12.042128562927246 + ], + [ + "▁Globe", + -12.042242050170898 + ], + [ + "▁rooted", + -12.04227066040039 + ], + [ + "▁filmed", + -12.042369842529297 + ], + [ + "▁euros", + -12.042418479919434 + ], + [ + "▁Angels", + -12.042473793029785 + ], + [ + "▁LORD", + -12.042508125305176 + ], + [ + "▁invasive", + -12.043025970458984 + ], + [ + "▁Copper", + -12.043033599853516 + ], + [ + "▁Sar", + -12.043078422546387 + ], + [ + "▁turnover", + -12.043083190917969 + ], + [ + "▁trainers", + -12.043254852294922 + ], + [ + "USA", + -12.043285369873047 + ], + [ + "▁Posts", + -12.043377876281738 + ], + [ + "▁Definitely", + -12.043389320373535 + ], + [ + "▁goodbye", + -12.043633460998535 + ], + [ + "▁Monster", + -12.043655395507812 + ], + [ + "▁barrels", + -12.043838500976562 + ], + [ + "▁backpack", + -12.044532775878906 + ], + [ + "hop", + -12.044663429260254 + ], + [ + "▁soundtrack", + -12.044745445251465 + ], + [ + "bin", + -12.044764518737793 + ], + [ + "▁Words", + -12.04476547241211 + ], + [ + "▁Brett", + -12.044894218444824 + ], + [ + "ea", + -12.045063972473145 + ], + [ + "ME", + -12.045242309570312 + ], + [ + "▁sphere", + -12.045249938964844 + ], + [ + "▁Hal", + -12.045565605163574 + ], + [ + "▁foul", + -12.04569149017334 + ], + [ + "▁crypto", + -12.045957565307617 + ], + [ + "▁washer", + -12.046131134033203 + ], + [ + "TS", + -12.046172142028809 + ], + [ + "▁Sheet", + -12.046215057373047 + ], + [ + "▁awaiting", + -12.046366691589355 + ], + [ + "▁Regarding", + -12.046454429626465 + ], + [ + "▁Boeing", + -12.046638488769531 + ], + [ + "▁repaired", + -12.046813011169434 + ], + [ + "▁rewarded", + -12.047150611877441 + ], + [ + "▁metric", + -12.047416687011719 + ], + [ + "▁mins", + -12.047521591186523 + ], + [ + "▁dawn", + -12.04771900177002 + ], + [ + "▁incurred", + -12.047749519348145 + ], + [ + "▁dancers", + -12.047867774963379 + ], + [ + "▁rhetoric", + -12.047929763793945 + ], + [ + "▁Kirk", + -12.047934532165527 + ], + [ + "▁disciples", + -12.048038482666016 + ], + [ + "control", + -12.048255920410156 + ], + [ + "▁Gabriel", + -12.04832649230957 + ], + [ + "▁leaks", + -12.048474311828613 + ], + [ + "▁encounters", + -12.048643112182617 + ], + [ + "▁Pradesh", + -12.048722267150879 + ], + [ + "▁Dam", + -12.048747062683105 + ], + [ + "▁blonde", + -12.04907512664795 + ], + [ + "▁Shell", + -12.049633026123047 + ], + [ + "▁chin", + -12.049759864807129 + ], + [ + "▁believers", + -12.049933433532715 + ], + [ + "▁Genesis", + -12.050090789794922 + ], + [ + "▁Danish", + -12.050128936767578 + ], + [ + "makers", + -12.050162315368652 + ], + [ + "▁tribal", + -12.050164222717285 + ], + [ + "▁Rocky", + -12.05016803741455 + ], + [ + "road", + -12.050274848937988 + ], + [ + "inspired", + -12.050450325012207 + ], + [ + "▁seminars", + -12.050575256347656 + ], + [ + "▁Formula", + -12.050642967224121 + ], + [ + "▁Serve", + -12.050817489624023 + ], + [ + "ians", + -12.050864219665527 + ], + [ + "▁illustrates", + -12.050890922546387 + ], + [ + "▁drainage", + -12.050965309143066 + ], + [ + "▁Quite", + -12.051005363464355 + ], + [ + "▁Craft", + -12.051203727722168 + ], + [ + "World", + -12.051410675048828 + ], + [ + "▁expenditure", + -12.051790237426758 + ], + [ + "▁copied", + -12.05179500579834 + ], + [ + "▁enhancement", + -12.051970481872559 + ], + [ + "▁pledge", + -12.051981925964355 + ], + [ + "▁stumbled", + -12.052048683166504 + ], + [ + "▁forgiveness", + -12.052255630493164 + ], + [ + "▁Issue", + -12.052315711975098 + ], + [ + "▁bean", + -12.052382469177246 + ], + [ + "▁Wal", + -12.052444458007812 + ], + [ + "▁OUT", + -12.052495002746582 + ], + [ + "elle", + -12.052726745605469 + ], + [ + "▁nerves", + -12.052952766418457 + ], + [ + "▁troubles", + -12.05302619934082 + ], + [ + "shop", + -12.0531644821167 + ], + [ + "▁Rest", + -12.053232192993164 + ], + [ + "▁Reference", + -12.0533447265625 + ], + [ + "▁Adding", + -12.053351402282715 + ], + [ + "▁finale", + -12.053391456604004 + ], + [ + "▁Flow", + -12.053414344787598 + ], + [ + "▁rigid", + -12.05380916595459 + ], + [ + "▁Items", + -12.053825378417969 + ], + [ + "▁captures", + -12.053840637207031 + ], + [ + "▁elegance", + -12.054021835327148 + ], + [ + "▁Break", + -12.054145812988281 + ], + [ + "▁secular", + -12.054278373718262 + ], + [ + "▁Discount", + -12.054362297058105 + ], + [ + "▁Flowers", + -12.05445671081543 + ], + [ + "▁EC", + -12.054616928100586 + ], + [ + "▁Sh", + -12.05488395690918 + ], + [ + "▁Cu", + -12.054962158203125 + ], + [ + "▁tournaments", + -12.054963111877441 + ], + [ + "▁curved", + -12.055018424987793 + ], + [ + "▁Regulation", + -12.055075645446777 + ], + [ + "▁tutorials", + -12.055112838745117 + ], + [ + "▁greeted", + -12.055118560791016 + ], + [ + "▁authorization", + -12.05522346496582 + ], + [ + "Al", + -12.055432319641113 + ], + [ + "▁Troy", + -12.055500030517578 + ], + [ + "▁balloon", + -12.055549621582031 + ], + [ + "ida", + -12.055723190307617 + ], + [ + "▁Jet", + -12.055865287780762 + ], + [ + "▁Remote", + -12.056005477905273 + ], + [ + "▁towers", + -12.056110382080078 + ], + [ + "▁avail", + -12.056220054626465 + ], + [ + "shirts", + -12.056259155273438 + ], + [ + "▁hatred", + -12.056279182434082 + ], + [ + "▁Rail", + -12.05650520324707 + ], + [ + "▁blamed", + -12.056513786315918 + ], + [ + "▁oppose", + -12.056600570678711 + ], + [ + "RS", + -12.056683540344238 + ], + [ + "▁Ukrainian", + -12.05703353881836 + ], + [ + "▁judged", + -12.057106971740723 + ], + [ + "▁fierce", + -12.05716609954834 + ], + [ + "▁directing", + -12.057353973388672 + ], + [ + "▁Porter", + -12.057465553283691 + ], + [ + "▁resignation", + -12.057600021362305 + ], + [ + "▁milestone", + -12.057685852050781 + ], + [ + "▁suites", + -12.057750701904297 + ], + [ + "Get", + -12.057795524597168 + ], + [ + "▁landlord", + -12.058024406433105 + ], + [ + "▁sur", + -12.058039665222168 + ], + [ + "▁Prepare", + -12.058097839355469 + ], + [ + "▁statute", + -12.05823040008545 + ], + [ + "olo", + -12.058479309082031 + ], + [ + "▁Wire", + -12.058481216430664 + ], + [ + "▁proposition", + -12.05860710144043 + ], + [ + "▁WHO", + -12.058609008789062 + ], + [ + "2003", + -12.058658599853516 + ], + [ + "▁Resolution", + -12.059160232543945 + ], + [ + "▁Wish", + -12.059174537658691 + ], + [ + "▁Definition", + -12.059198379516602 + ], + [ + "▁stamps", + -12.059379577636719 + ], + [ + "ye", + -12.059467315673828 + ], + [ + "▁Independence", + -12.059479713439941 + ], + [ + "▁warn", + -12.059747695922852 + ], + [ + "▁hormones", + -12.059788703918457 + ], + [ + "lie", + -12.059791564941406 + ], + [ + "ram", + -12.059829711914062 + ], + [ + "▁Sha", + -12.059921264648438 + ], + [ + "▁Welsh", + -12.060056686401367 + ], + [ + "▁interfere", + -12.060203552246094 + ], + [ + "ical", + -12.060213088989258 + ], + [ + "▁Mu", + -12.060296058654785 + ], + [ + "▁bush", + -12.060351371765137 + ], + [ + "▁currencies", + -12.060416221618652 + ], + [ + "▁collapsed", + -12.060595512390137 + ], + [ + "▁routinely", + -12.06096363067627 + ], + [ + "▁posture", + -12.061056137084961 + ], + [ + "▁palace", + -12.061071395874023 + ], + [ + "▁descent", + -12.061251640319824 + ], + [ + "▁resorts", + -12.061443328857422 + ], + [ + "▁straps", + -12.061483383178711 + ], + [ + "After", + -12.061625480651855 + ], + [ + "▁thriving", + -12.061701774597168 + ], + [ + "▁unforgettable", + -12.061781883239746 + ], + [ + "▁boiler", + -12.062058448791504 + ], + [ + "▁ignoring", + -12.062089920043945 + ], + [ + "▁feast", + -12.062204360961914 + ], + [ + "▁Holmes", + -12.062228202819824 + ], + [ + "▁distances", + -12.062387466430664 + ], + [ + "▁procurement", + -12.062402725219727 + ], + [ + "▁lion", + -12.062725067138672 + ], + [ + "▁statutory", + -12.062809944152832 + ], + [ + "▁Yang", + -12.062835693359375 + ], + [ + "▁territories", + -12.06297779083252 + ], + [ + "▁Lock", + -12.063006401062012 + ], + [ + "▁weaknesses", + -12.063231468200684 + ], + [ + "▁notch", + -12.063252449035645 + ], + [ + "▁Venice", + -12.063257217407227 + ], + [ + "▁Desk", + -12.06325912475586 + ], + [ + "row", + -12.063271522521973 + ], + [ + "▁geographic", + -12.063300132751465 + ], + [ + "▁elastic", + -12.063313484191895 + ], + [ + "▁folded", + -12.063481330871582 + ], + [ + "▁performer", + -12.063699722290039 + ], + [ + "▁Category", + -12.063865661621094 + ], + [ + "▁gesture", + -12.063888549804688 + ], + [ + "▁Calendar", + -12.063916206359863 + ], + [ + "▁Satan", + -12.063918113708496 + ], + [ + "▁misleading", + -12.063942909240723 + ], + [ + "▁troubled", + -12.064029693603516 + ], + [ + "▁Cherry", + -12.064294815063477 + ], + [ + "▁professionalism", + -12.064321517944336 + ], + [ + "▁compliant", + -12.064359664916992 + ], + [ + "▁108", + -12.064393997192383 + ], + [ + "ify", + -12.064431190490723 + ], + [ + "▁±", + -12.064505577087402 + ], + [ + "▁assemble", + -12.064736366271973 + ], + [ + "▁hurry", + -12.064743041992188 + ], + [ + "▁spiral", + -12.064799308776855 + ], + [ + "▁las", + -12.064947128295898 + ], + [ + "▁converting", + -12.064966201782227 + ], + [ + "▁stickers", + -12.065089225769043 + ], + [ + "▁staple", + -12.065338134765625 + ], + [ + "▁pa", + -12.065351486206055 + ], + [ + "▁rays", + -12.065828323364258 + ], + [ + "▁wears", + -12.065845489501953 + ], + [ + "▁Reid", + -12.06588363647461 + ], + [ + "▁Chad", + -12.065900802612305 + ], + [ + "▁servant", + -12.066086769104004 + ], + [ + "▁halt", + -12.066143989562988 + ], + [ + "▁prolonged", + -12.066218376159668 + ], + [ + "▁modular", + -12.066299438476562 + ], + [ + "ites", + -12.066326141357422 + ], + [ + "▁weights", + -12.066362380981445 + ], + [ + "▁Peak", + -12.066385269165039 + ], + [ + "▁publicity", + -12.066428184509277 + ], + [ + "vis", + -12.066668510437012 + ], + [ + "▁TD", + -12.066771507263184 + ], + [ + "▁Sessions", + -12.066845893859863 + ], + [ + "▁sufficiently", + -12.066863059997559 + ], + [ + "▁illegally", + -12.066996574401855 + ], + [ + "▁negotiating", + -12.067021369934082 + ], + [ + "▁destructive", + -12.06717300415039 + ], + [ + "ag", + -12.06721305847168 + ], + [ + "▁evenings", + -12.067272186279297 + ], + [ + "▁rap", + -12.067301750183105 + ], + [ + "▁Ra", + -12.067338943481445 + ], + [ + "▁ranch", + -12.067525863647461 + ], + [ + "▁celebrates", + -12.067544937133789 + ], + [ + "▁Indianapolis", + -12.067595481872559 + ], + [ + "▁Tomorrow", + -12.067916870117188 + ], + [ + "▁microphone", + -12.067992210388184 + ], + [ + "▁Plate", + -12.068116188049316 + ], + [ + "▁Joan", + -12.068133354187012 + ], + [ + "▁Few", + -12.068194389343262 + ], + [ + "▁Networks", + -12.068244934082031 + ], + [ + "▁Border", + -12.068329811096191 + ], + [ + "750", + -12.068530082702637 + ], + [ + "▁simplest", + -12.068532943725586 + ], + [ + "▁Rush", + -12.068652153015137 + ], + [ + "▁Entry", + -12.068723678588867 + ], + [ + "▁SB", + -12.069013595581055 + ], + [ + "▁outdated", + -12.069403648376465 + ], + [ + "▁catches", + -12.069446563720703 + ], + [ + "▁pitcher", + -12.06949520111084 + ], + [ + "▁upward", + -12.069653511047363 + ], + [ + "▁crore", + -12.069744110107422 + ], + [ + "▁Broad", + -12.06981086730957 + ], + [ + "▁Mirror", + -12.06991195678711 + ], + [ + "▁suspicion", + -12.069957733154297 + ], + [ + "▁diy", + -12.070053100585938 + ], + [ + "gel", + -12.070087432861328 + ], + [ + "▁scrutiny", + -12.070093154907227 + ], + [ + "▁Option", + -12.070157051086426 + ], + [ + "의", + -12.070181846618652 + ], + [ + "▁headaches", + -12.070284843444824 + ], + [ + "▁cigarette", + -12.070417404174805 + ], + [ + "▁cease", + -12.070500373840332 + ], + [ + "▁bore", + -12.070514678955078 + ], + [ + "▁BS", + -12.070523262023926 + ], + [ + "▁packaged", + -12.07094669342041 + ], + [ + "▁china", + -12.070969581604004 + ], + [ + "▁soak", + -12.070992469787598 + ], + [ + "▁Ge", + -12.07105541229248 + ], + [ + "▁Dale", + -12.071060180664062 + ], + [ + "▁Leon", + -12.071062088012695 + ], + [ + "▁flaws", + -12.071084022521973 + ], + [ + "▁genres", + -12.071183204650879 + ], + [ + "▁successes", + -12.071202278137207 + ], + [ + "▁wheelchair", + -12.07123851776123 + ], + [ + "▁mac", + -12.071438789367676 + ], + [ + "▁roses", + -12.071457862854004 + ], + [ + "▁examines", + -12.071824073791504 + ], + [ + "▁dashboard", + -12.071842193603516 + ], + [ + "▁classrooms", + -12.071885108947754 + ], + [ + "▁tensions", + -12.071919441223145 + ], + [ + "▁wholly", + -12.071976661682129 + ], + [ + "▁steak", + -12.072164535522461 + ], + [ + "▁teachings", + -12.072314262390137 + ], + [ + "▁XML", + -12.072324752807617 + ], + [ + "▁lottery", + -12.072440147399902 + ], + [ + "▁reproduction", + -12.072515487670898 + ], + [ + "▁relay", + -12.072529792785645 + ], + [ + "▁trophy", + -12.072535514831543 + ], + [ + "▁Researchers", + -12.072566986083984 + ], + [ + "▁dumped", + -12.072626113891602 + ], + [ + "▁Commander", + -12.072660446166992 + ], + [ + "▁Outlook", + -12.07267951965332 + ], + [ + "▁feminine", + -12.072731018066406 + ], + [ + "▁Fantastic", + -12.072848320007324 + ], + [ + "▁sh", + -12.072914123535156 + ], + [ + "standing", + -12.072980880737305 + ], + [ + "▁Buddha", + -12.073284149169922 + ], + [ + "▁Automatic", + -12.073373794555664 + ], + [ + "eh", + -12.073439598083496 + ], + [ + "▁Operating", + -12.073494911193848 + ], + [ + "▁dataset", + -12.07370376586914 + ], + [ + "▁Reform", + -12.073959350585938 + ], + [ + "▁cocktails", + -12.074109077453613 + ], + [ + "▁Gaming", + -12.074362754821777 + ], + [ + "▁ecological", + -12.074813842773438 + ], + [ + "▁bamboo", + -12.07491397857666 + ], + [ + "▁CH", + -12.07497787475586 + ], + [ + "▁sourced", + -12.075212478637695 + ], + [ + "▁lb", + -12.075279235839844 + ], + [ + "▁Bros", + -12.075400352478027 + ], + [ + "▁zu", + -12.075409889221191 + ], + [ + "▁sandwiches", + -12.076181411743164 + ], + [ + "▁jungle", + -12.076277732849121 + ], + [ + "▁swelling", + -12.076369285583496 + ], + [ + "▁notebook", + -12.076370239257812 + ], + [ + "▁Scripture", + -12.076559066772461 + ], + [ + "▁dominate", + -12.076610565185547 + ], + [ + "▁smells", + -12.076630592346191 + ], + [ + "▁Economy", + -12.076640129089355 + ], + [ + "▁neighboring", + -12.076744079589844 + ], + [ + "▁peppers", + -12.076834678649902 + ], + [ + "TO", + -12.07706356048584 + ], + [ + "▁DR", + -12.077067375183105 + ], + [ + "▁888", + -12.0770845413208 + ], + [ + "▁locking", + -12.077351570129395 + ], + [ + "▁ignorance", + -12.077458381652832 + ], + [ + "▁Replacement", + -12.077629089355469 + ], + [ + "▁RNA", + -12.077852249145508 + ], + [ + "▁waking", + -12.078044891357422 + ], + [ + "▁Settings", + -12.07812213897705 + ], + [ + "▁Kerry", + -12.078483581542969 + ], + [ + "▁slaves", + -12.078492164611816 + ], + [ + "▁Ne", + -12.078595161437988 + ], + [ + "▁attracting", + -12.078609466552734 + ], + [ + "▁stained", + -12.07862663269043 + ], + [ + "▁collector", + -12.078760147094727 + ], + [ + "▁HE", + -12.078880310058594 + ], + [ + "▁Diana", + -12.078923225402832 + ], + [ + "▁vivid", + -12.079144477844238 + ], + [ + "▁undergoing", + -12.079246520996094 + ], + [ + "▁Reserved", + -12.07933235168457 + ], + [ + "▁dioxide", + -12.079504013061523 + ], + [ + "▁payable", + -12.079536437988281 + ], + [ + "▁Ambassador", + -12.079656600952148 + ], + [ + "▁Effect", + -12.07972240447998 + ], + [ + "▁menus", + -12.07983684539795 + ], + [ + "▁grounded", + -12.079998970031738 + ], + [ + "▁paradise", + -12.080082893371582 + ], + [ + "▁priests", + -12.080743789672852 + ], + [ + "▁bothered", + -12.080772399902344 + ], + [ + "▁fade", + -12.080788612365723 + ], + [ + "▁elevator", + -12.080831527709961 + ], + [ + "▁deserved", + -12.081032752990723 + ], + [ + "▁embraced", + -12.08120346069336 + ], + [ + "▁ward", + -12.081323623657227 + ], + [ + "▁maturity", + -12.081369400024414 + ], + [ + "▁gravel", + -12.08139705657959 + ], + [ + "▁emphasize", + -12.081413269042969 + ], + [ + "▁Draft", + -12.081429481506348 + ], + [ + "▁exceeded", + -12.081476211547852 + ], + [ + "▁guessing", + -12.081659317016602 + ], + [ + "▁repository", + -12.0816650390625 + ], + [ + "▁RS", + -12.081683158874512 + ], + [ + "▁Blair", + -12.081742286682129 + ], + [ + "▁violated", + -12.081802368164062 + ], + [ + "▁Guests", + -12.081831932067871 + ], + [ + "▁prostate", + -12.081928253173828 + ], + [ + "ending", + -12.08219051361084 + ], + [ + "▁endure", + -12.08224105834961 + ], + [ + "▁Own", + -12.082330703735352 + ], + [ + "▁gasoline", + -12.082392692565918 + ], + [ + "▁Kumar", + -12.082464218139648 + ], + [ + "▁Christine", + -12.082474708557129 + ], + [ + "▁insist", + -12.082499504089355 + ], + [ + "▁Thunder", + -12.082513809204102 + ], + [ + "▁demonstrations", + -12.082565307617188 + ], + [ + "▁owning", + -12.082655906677246 + ], + [ + "▁Message", + -12.082762718200684 + ], + [ + "▁yummy", + -12.082868576049805 + ], + [ + "▁Chan", + -12.082987785339355 + ], + [ + "▁Coordinator", + -12.083081245422363 + ], + [ + "▁realization", + -12.083206176757812 + ], + [ + "▁shining", + -12.083403587341309 + ], + [ + "▁curves", + -12.083498001098633 + ], + [ + "▁Wing", + -12.08350944519043 + ], + [ + "▁definite", + -12.083858489990234 + ], + [ + "▁albeit", + -12.084004402160645 + ], + [ + "ese", + -12.084114074707031 + ], + [ + "▁restriction", + -12.084380149841309 + ], + [ + "▁clash", + -12.084474563598633 + ], + [ + "▁Stephanie", + -12.084579467773438 + ], + [ + "▁weighing", + -12.084659576416016 + ], + [ + "▁hay", + -12.084665298461914 + ], + [ + "▁Directory", + -12.084689140319824 + ], + [ + "▁compliment", + -12.084691047668457 + ], + [ + "▁Powell", + -12.084766387939453 + ], + [ + "▁Lang", + -12.084861755371094 + ], + [ + "▁PRO", + -12.084939002990723 + ], + [ + "▁revenge", + -12.08499813079834 + ], + [ + "▁Garcia", + -12.085126876831055 + ], + [ + "▁grilled", + -12.085132598876953 + ], + [ + "blue", + -12.085320472717285 + ], + [ + "▁signaling", + -12.085579872131348 + ], + [ + "▁dwelling", + -12.085617065429688 + ], + [ + "▁Arnold", + -12.085817337036133 + ], + [ + "pay", + -12.086145401000977 + ], + [ + "▁crashes", + -12.086153984069824 + ], + [ + "▁underwater", + -12.086250305175781 + ], + [ + "▁Maple", + -12.086268424987793 + ], + [ + "SE", + -12.086548805236816 + ], + [ + "▁1961", + -12.08659553527832 + ], + [ + "▁Fans", + -12.086777687072754 + ], + [ + "▁Stir", + -12.086791038513184 + ], + [ + "▁115", + -12.086841583251953 + ], + [ + "▁reflective", + -12.08704948425293 + ], + [ + "▁fuels", + -12.087122917175293 + ], + [ + "▁Expo", + -12.087359428405762 + ], + [ + "content", + -12.087403297424316 + ], + [ + "▁Consequently", + -12.087411880493164 + ], + [ + "performance", + -12.087456703186035 + ], + [ + "▁Palestinians", + -12.087607383728027 + ], + [ + "▁angels", + -12.08778190612793 + ], + [ + "gas", + -12.087841987609863 + ], + [ + "▁launches", + -12.08791732788086 + ], + [ + "▁frankly", + -12.087971687316895 + ], + [ + "▁electro", + -12.08797836303711 + ], + [ + "▁IoT", + -12.088014602661133 + ], + [ + "▁Lloyd", + -12.088068962097168 + ], + [ + "▁manipulation", + -12.088115692138672 + ], + [ + "▁explanations", + -12.088122367858887 + ], + [ + "▁throne", + -12.088172912597656 + ], + [ + "▁Wallace", + -12.088279724121094 + ], + [ + "▁inequality", + -12.088347434997559 + ], + [ + "Un", + -12.088499069213867 + ], + [ + "▁Cake", + -12.088624954223633 + ], + [ + "▁HS", + -12.088672637939453 + ], + [ + "▁hurricane", + -12.08868408203125 + ], + [ + "sp", + -12.088692665100098 + ], + [ + "meter", + -12.088761329650879 + ], + [ + "▁interfaces", + -12.088780403137207 + ], + [ + "▁AIDS", + -12.088847160339355 + ], + [ + "▁hostile", + -12.089285850524902 + ], + [ + "▁Duncan", + -12.089373588562012 + ], + [ + "▁forefront", + -12.089601516723633 + ], + [ + "tion", + -12.08960247039795 + ], + [ + "▁mentions", + -12.08961009979248 + ], + [ + "▁Abstract", + -12.089855194091797 + ], + [ + "▁remembering", + -12.089868545532227 + ], + [ + "▁Shower", + -12.089895248413086 + ], + [ + "▁tangible", + -12.090041160583496 + ], + [ + "▁IEEE", + -12.090255737304688 + ], + [ + "▁splash", + -12.090821266174316 + ], + [ + "▁Person", + -12.090980529785156 + ], + [ + "▁wasting", + -12.091010093688965 + ], + [ + "▁apparel", + -12.09106731414795 + ], + [ + "▁comprehend", + -12.09119701385498 + ], + [ + "▁pleasing", + -12.091432571411133 + ], + [ + "▁Mor", + -12.091663360595703 + ], + [ + "▁intentionally", + -12.091712951660156 + ], + [ + "▁fragile", + -12.091747283935547 + ], + [ + "▁perceive", + -12.091755867004395 + ], + [ + "▁Wonderful", + -12.091849327087402 + ], + [ + "▁skies", + -12.091897964477539 + ], + [ + "▁notices", + -12.092203140258789 + ], + [ + "▁presumably", + -12.092209815979004 + ], + [ + "▁Honey", + -12.092466354370117 + ], + [ + "▁sneak", + -12.092516899108887 + ], + [ + "▁restart", + -12.092707633972168 + ], + [ + "ei", + -12.09287166595459 + ], + [ + "▁Ore", + -12.092926979064941 + ], + [ + "▁po", + -12.093002319335938 + ], + [ + "▁twisted", + -12.093039512634277 + ], + [ + "▁creations", + -12.09316635131836 + ], + [ + "▁supermarket", + -12.093194961547852 + ], + [ + "gun", + -12.0931978225708 + ], + [ + "▁indie", + -12.093379974365234 + ], + [ + "▁Beat", + -12.093459129333496 + ], + [ + "▁colourful", + -12.093584060668945 + ], + [ + "▁figuring", + -12.093636512756348 + ], + [ + "▁Copy", + -12.093761444091797 + ], + [ + "acre", + -12.093826293945312 + ], + [ + "FM", + -12.093840599060059 + ], + [ + "▁Emperor", + -12.093871116638184 + ], + [ + "▁reluctant", + -12.094189643859863 + ], + [ + "cat", + -12.094352722167969 + ], + [ + "▁stitch", + -12.094354629516602 + ], + [ + "▁Host", + -12.094411849975586 + ], + [ + "▁Boat", + -12.094663619995117 + ], + [ + "oni", + -12.094734191894531 + ], + [ + "▁residency", + -12.094970703125 + ], + [ + "lar", + -12.095085144042969 + ], + [ + "▁Journey", + -12.095280647277832 + ], + [ + "len", + -12.095437049865723 + ], + [ + "▁woven", + -12.095499038696289 + ], + [ + "tec", + -12.095510482788086 + ], + [ + "▁shout", + -12.095579147338867 + ], + [ + "▁drafted", + -12.095670700073242 + ], + [ + "▁Canadians", + -12.095688819885254 + ], + [ + "▁liking", + -12.095727920532227 + ], + [ + "▁cleanup", + -12.095938682556152 + ], + [ + "▁Hon", + -12.095979690551758 + ], + [ + "▁employing", + -12.096256256103516 + ], + [ + "▁critic", + -12.096467971801758 + ], + [ + "▁lowering", + -12.096644401550293 + ], + [ + "▁replies", + -12.096894264221191 + ], + [ + "▁ideology", + -12.09689998626709 + ], + [ + "▁instructed", + -12.096961975097656 + ], + [ + "public", + -12.097018241882324 + ], + [ + "▁factories", + -12.097206115722656 + ], + [ + "▁organizers", + -12.097270965576172 + ], + [ + "▁Ronald", + -12.097323417663574 + ], + [ + "▁lamb", + -12.097355842590332 + ], + [ + "▁reconstruction", + -12.097542762756348 + ], + [ + "▁Minneapolis", + -12.097546577453613 + ], + [ + "▁Liz", + -12.09764289855957 + ], + [ + "business", + -12.097716331481934 + ], + [ + "▁Marina", + -12.097783088684082 + ], + [ + "▁cubic", + -12.097845077514648 + ], + [ + "▁CRM", + -12.09826946258545 + ], + [ + "▁Luther", + -12.098333358764648 + ], + [ + "▁planets", + -12.098387718200684 + ], + [ + "▁soy", + -12.09844970703125 + ], + [ + "▁RF", + -12.09846019744873 + ], + [ + "ip", + -12.098784446716309 + ], + [ + "▁endeavor", + -12.098862648010254 + ], + [ + "▁ge", + -12.099183082580566 + ], + [ + "▁infants", + -12.099555969238281 + ], + [ + "▁Driving", + -12.099634170532227 + ], + [ + "▁Sullivan", + -12.099855422973633 + ], + [ + "▁blessings", + -12.100244522094727 + ], + [ + "▁cruel", + -12.100362777709961 + ], + [ + "▁bracelet", + -12.100410461425781 + ], + [ + "west", + -12.100663185119629 + ], + [ + "▁WP", + -12.100728988647461 + ], + [ + "eye", + -12.100790023803711 + ], + [ + "bus", + -12.100799560546875 + ], + [ + "▁wolf", + -12.100897789001465 + ], + [ + "▁Hour", + -12.100963592529297 + ], + [ + "▁Kat", + -12.100982666015625 + ], + [ + "‚", + -12.101117134094238 + ], + [ + "▁Monte", + -12.10134220123291 + ], + [ + "▁tense", + -12.101430892944336 + ], + [ + "▁Nonetheless", + -12.10180377960205 + ], + [ + "▁spokeswoman", + -12.101909637451172 + ], + [ + "▁elimination", + -12.101949691772461 + ], + [ + "▁imply", + -12.101959228515625 + ], + [ + "▁elephant", + -12.102204322814941 + ], + [ + "▁bees", + -12.102503776550293 + ], + [ + "▁Surface", + -12.102771759033203 + ], + [ + "▁alloy", + -12.10309886932373 + ], + [ + "▁Standing", + -12.103320121765137 + ], + [ + "▁Charter", + -12.10354232788086 + ], + [ + "▁coats", + -12.103584289550781 + ], + [ + "▁cows", + -12.103608131408691 + ], + [ + "▁Gal", + -12.10368537902832 + ], + [ + "mate", + -12.103774070739746 + ], + [ + "▁retrieve", + -12.103826522827148 + ], + [ + "▁Behind", + -12.103938102722168 + ], + [ + "▁Bali", + -12.104009628295898 + ], + [ + "▁Interesting", + -12.104277610778809 + ], + [ + "▁Fix", + -12.104544639587402 + ], + [ + "▁accomplishments", + -12.104592323303223 + ], + [ + "From", + -12.104766845703125 + ], + [ + "▁Hockey", + -12.104783058166504 + ], + [ + "▁initiate", + -12.104795455932617 + ], + [ + "▁illusion", + -12.104884147644043 + ], + [ + "mine", + -12.105035781860352 + ], + [ + "▁relied", + -12.105217933654785 + ], + [ + "▁upgrading", + -12.105531692504883 + ], + [ + "weight", + -12.105557441711426 + ], + [ + "▁thereafter", + -12.105635643005371 + ], + [ + "▁Lucky", + -12.105688095092773 + ], + [ + "▁minus", + -12.105995178222656 + ], + [ + "▁wonderfully", + -12.106094360351562 + ], + [ + "▁VAT", + -12.106181144714355 + ], + [ + "IC", + -12.106217384338379 + ], + [ + "RA", + -12.106339454650879 + ], + [ + "▁pedestrian", + -12.10634994506836 + ], + [ + "▁Travis", + -12.106443405151367 + ], + [ + "▁governed", + -12.106597900390625 + ], + [ + "▁utmost", + -12.106637001037598 + ], + [ + "door", + -12.10676383972168 + ], + [ + "▁Indigenous", + -12.106804847717285 + ], + [ + "▁Iceland", + -12.1071138381958 + ], + [ + "▁prosecutor", + -12.107124328613281 + ], + [ + "▁Ski", + -12.107266426086426 + ], + [ + "▁tribes", + -12.10727310180664 + ], + [ + "▁Jeffrey", + -12.107405662536621 + ], + [ + "▁airplane", + -12.107501983642578 + ], + [ + "nan", + -12.10754680633545 + ], + [ + "▁Error", + -12.107575416564941 + ], + [ + "▁tracked", + -12.107583999633789 + ], + [ + "AS", + -12.107593536376953 + ], + [ + "▁mixer", + -12.107695579528809 + ], + [ + "News", + -12.107717514038086 + ], + [ + "▁Fla", + -12.108007431030273 + ], + [ + "▁unavailable", + -12.108085632324219 + ], + [ + "▁distracted", + -12.108111381530762 + ], + [ + "▁concise", + -12.108150482177734 + ], + [ + "▁XL", + -12.108174324035645 + ], + [ + "▁rugs", + -12.10826301574707 + ], + [ + "▁hazard", + -12.108272552490234 + ], + [ + "▁Bernard", + -12.108345031738281 + ], + [ + "▁implants", + -12.108349800109863 + ], + [ + "▁Luis", + -12.108445167541504 + ], + [ + "▁Reagan", + -12.108500480651855 + ], + [ + "▁Rosa", + -12.108527183532715 + ], + [ + "▁Specifically", + -12.108563423156738 + ], + [ + "▁Sal", + -12.108567237854004 + ], + [ + "BA", + -12.10867977142334 + ], + [ + "▁Mercury", + -12.108806610107422 + ], + [ + "▁Sell", + -12.108946800231934 + ], + [ + "tax", + -12.109064102172852 + ], + [ + "▁pendant", + -12.109184265136719 + ], + [ + "▁metabolic", + -12.109209060668945 + ], + [ + "▁Casey", + -12.109318733215332 + ], + [ + "▁username", + -12.109600067138672 + ], + [ + "▁RC", + -12.109759330749512 + ], + [ + "▁Cha", + -12.109941482543945 + ], + [ + "then", + -12.109979629516602 + ], + [ + "▁Raymond", + -12.110143661499023 + ], + [ + "▁gallon", + -12.110323905944824 + ], + [ + "action", + -12.110337257385254 + ], + [ + "▁fixes", + -12.110556602478027 + ], + [ + "▁Ladies", + -12.110648155212402 + ], + [ + "▁aforementioned", + -12.110702514648438 + ], + [ + "show", + -12.110719680786133 + ], + [ + "▁anticipation", + -12.110721588134766 + ], + [ + "▁adopting", + -12.110727310180664 + ], + [ + "▁Holly", + -12.110759735107422 + ], + [ + "Com", + -12.11076545715332 + ], + [ + "▁Qatar", + -12.110868453979492 + ], + [ + "▁disable", + -12.110902786254883 + ], + [ + "▁french", + -12.111138343811035 + ], + [ + "▁sincere", + -12.111188888549805 + ], + [ + "▁Nat", + -12.111257553100586 + ], + [ + "▁mankind", + -12.111345291137695 + ], + [ + "▁upright", + -12.111373901367188 + ], + [ + "▁Annie", + -12.111702919006348 + ], + [ + "▁rode", + -12.111797332763672 + ], + [ + "▁ho", + -12.111888885498047 + ], + [ + "▁Peninsula", + -12.111927032470703 + ], + [ + "▁Markets", + -12.112019538879395 + ], + [ + "▁Projects", + -12.112021446228027 + ], + [ + "▁Dame", + -12.112074851989746 + ], + [ + "▁3000", + -12.112107276916504 + ], + [ + "▁withstand", + -12.112156867980957 + ], + [ + "▁Oz", + -12.112314224243164 + ], + [ + "▁defended", + -12.11237907409668 + ], + [ + "▁Framework", + -12.11255168914795 + ], + [ + "dan", + -12.112565040588379 + ], + [ + "▁firmware", + -12.112814903259277 + ], + [ + "oma", + -12.112961769104004 + ], + [ + "▁Session", + -12.113079071044922 + ], + [ + "▁о", + -12.11315631866455 + ], + [ + "▁bacterial", + -12.113187789916992 + ], + [ + "▁Marathon", + -12.113242149353027 + ], + [ + "▁prop", + -12.113585472106934 + ], + [ + "▁starters", + -12.113662719726562 + ], + [ + "▁implant", + -12.113715171813965 + ], + [ + "▁prey", + -12.114026069641113 + ], + [ + "▁contributor", + -12.114052772521973 + ], + [ + "election", + -12.114062309265137 + ], + [ + "▁amendments", + -12.11428451538086 + ], + [ + "▁refresh", + -12.11439037322998 + ], + [ + "▁bookmark", + -12.114500999450684 + ], + [ + "▁rehab", + -12.114542007446289 + ], + [ + "SA", + -12.114846229553223 + ], + [ + "▁maple", + -12.115038871765137 + ], + [ + "▁christmas", + -12.115071296691895 + ], + [ + "▁Milk", + -12.115235328674316 + ], + [ + "MM", + -12.11532974243164 + ], + [ + "something", + -12.115341186523438 + ], + [ + "▁bang", + -12.115565299987793 + ], + [ + "▁Benefits", + -12.115835189819336 + ], + [ + "▁spins", + -12.11591911315918 + ], + [ + "▁trafficking", + -12.116013526916504 + ], + [ + "▁adhesive", + -12.116048812866211 + ], + [ + "▁Dodge", + -12.116125106811523 + ], + [ + "▁fibers", + -12.116246223449707 + ], + [ + "▁decay", + -12.116288185119629 + ], + [ + "▁sadness", + -12.116508483886719 + ], + [ + "▁constitutes", + -12.116538047790527 + ], + [ + "▁approx", + -12.116630554199219 + ], + [ + "▁orbit", + -12.116731643676758 + ], + [ + "▁debates", + -12.116897583007812 + ], + [ + "▁printers", + -12.116901397705078 + ], + [ + "ona", + -12.11695384979248 + ], + [ + "▁feat", + -12.116983413696289 + ], + [ + "▁Barnes", + -12.117164611816406 + ], + [ + "▁heck", + -12.11748218536377 + ], + [ + "▁rip", + -12.117506980895996 + ], + [ + "▁Effects", + -12.117569923400879 + ], + [ + "▁surrender", + -12.117774963378906 + ], + [ + "▁liner", + -12.117860794067383 + ], + [ + "▁grind", + -12.118053436279297 + ], + [ + "▁WWE", + -12.118288040161133 + ], + [ + "▁feared", + -12.118422508239746 + ], + [ + "▁capitalism", + -12.118592262268066 + ], + [ + "▁dots", + -12.118720054626465 + ], + [ + "▁Friend", + -12.118786811828613 + ], + [ + "▁advertised", + -12.118810653686523 + ], + [ + "stock", + -12.118947982788086 + ], + [ + "▁Philosophy", + -12.119007110595703 + ], + [ + "▁bullying", + -12.119453430175781 + ], + [ + "▁supporter", + -12.119497299194336 + ], + [ + "▁Crew", + -12.119632720947266 + ], + [ + "▁hazards", + -12.119662284851074 + ], + [ + "▁Geneva", + -12.119776725769043 + ], + [ + "▁stakes", + -12.119833946228027 + ], + [ + "▁inadequate", + -12.119842529296875 + ], + [ + "food", + -12.120138168334961 + ], + [ + "▁drawers", + -12.12017822265625 + ], + [ + "▁specializing", + -12.120194435119629 + ], + [ + "▁Contest", + -12.12053394317627 + ], + [ + "▁vague", + -12.120620727539062 + ], + [ + "▁credible", + -12.120657920837402 + ], + [ + "▁rugged", + -12.120795249938965 + ], + [ + "▁straw", + -12.121047019958496 + ], + [ + "▁Interest", + -12.12105655670166 + ], + [ + "▁mug", + -12.12132453918457 + ], + [ + "▁VP", + -12.121423721313477 + ], + [ + "▁compromised", + -12.121448516845703 + ], + [ + "▁pillows", + -12.121529579162598 + ], + [ + "▁Seeing", + -12.121541023254395 + ], + [ + "▁Jeep", + -12.12170124053955 + ], + [ + "▁Counter", + -12.121752738952637 + ], + [ + "▁elbow", + -12.122015953063965 + ], + [ + "▁Updated", + -12.122053146362305 + ], + [ + "▁Previously", + -12.12214469909668 + ], + [ + "Or", + -12.12216567993164 + ], + [ + "▁Install", + -12.122316360473633 + ], + [ + "oc", + -12.1223783493042 + ], + [ + "▁disasters", + -12.12246322631836 + ], + [ + "▁с", + -12.12251091003418 + ], + [ + "▁€", + -12.122665405273438 + ], + [ + "▁sophomore", + -12.12277889251709 + ], + [ + "▁phenomena", + -12.122784614562988 + ], + [ + "front", + -12.122788429260254 + ], + [ + "▁roast", + -12.12279224395752 + ], + [ + "▁quiz", + -12.122793197631836 + ], + [ + "▁LGBT", + -12.122831344604492 + ], + [ + "▁incidence", + -12.122843742370605 + ], + [ + "▁offence", + -12.122941970825195 + ], + [ + "▁furnishings", + -12.12297248840332 + ], + [ + "▁Concrete", + -12.123249053955078 + ], + [ + "▁Gibson", + -12.123321533203125 + ], + [ + "lb", + -12.123615264892578 + ], + [ + "▁spells", + -12.123869895935059 + ], + [ + "▁Maps", + -12.123879432678223 + ], + [ + "tone", + -12.124027252197266 + ], + [ + "▁Founded", + -12.124120712280273 + ], + [ + "Please", + -12.124227523803711 + ], + [ + "▁lacks", + -12.124284744262695 + ], + [ + "▁advertise", + -12.124305725097656 + ], + [ + "▁Muhammad", + -12.12435531616211 + ], + [ + "▁twins", + -12.124380111694336 + ], + [ + "▁popped", + -12.124457359313965 + ], + [ + "▁cautious", + -12.12453842163086 + ], + [ + "▁proceeding", + -12.124540328979492 + ], + [ + "▁Reader", + -12.124547958374023 + ], + [ + "▁proactive", + -12.124846458435059 + ], + [ + "team", + -12.124855995178223 + ], + [ + "▁Amber", + -12.124995231628418 + ], + [ + "▁predictable", + -12.125100135803223 + ], + [ + "▁vegetation", + -12.125102043151855 + ], + [ + "▁prevalence", + -12.125418663024902 + ], + [ + "▁patrol", + -12.125505447387695 + ], + [ + "TB", + -12.125666618347168 + ], + [ + "▁Lynch", + -12.125734329223633 + ], + [ + "▁sweep", + -12.125808715820312 + ], + [ + "tri", + -12.125855445861816 + ], + [ + "▁nitrogen", + -12.125861167907715 + ], + [ + "▁inherited", + -12.125943183898926 + ], + [ + "▁australia", + -12.126119613647461 + ], + [ + "▁Eight", + -12.126132011413574 + ], + [ + "▁Period", + -12.126176834106445 + ], + [ + "▁Uncle", + -12.126306533813477 + ], + [ + "▁transmit", + -12.126331329345703 + ], + [ + "▁Soccer", + -12.12633991241455 + ], + [ + "Of", + -12.126362800598145 + ], + [ + "controlled", + -12.126458168029785 + ], + [ + "▁coral", + -12.126607894897461 + ], + [ + "ERS", + -12.126763343811035 + ], + [ + "▁servants", + -12.126770973205566 + ], + [ + "▁trustworthy", + -12.126935958862305 + ], + [ + "▁shipment", + -12.12695026397705 + ], + [ + "▁cardboard", + -12.127006530761719 + ], + [ + "▁BEST", + -12.127037048339844 + ], + [ + "▁hurts", + -12.12708854675293 + ], + [ + "▁CR", + -12.12716293334961 + ], + [ + "▁Ellis", + -12.127462387084961 + ], + [ + "▁Normally", + -12.127673149108887 + ], + [ + "▁judging", + -12.12778091430664 + ], + [ + "▁railroad", + -12.128122329711914 + ], + [ + "tr", + -12.128249168395996 + ], + [ + "▁Bro", + -12.128301620483398 + ], + [ + "▁preserving", + -12.128327369689941 + ], + [ + "▁swear", + -12.128331184387207 + ], + [ + "▁invitations", + -12.12855052947998 + ], + [ + "▁Secure", + -12.128576278686523 + ], + [ + "▁sensory", + -12.128580093383789 + ], + [ + "▁horn", + -12.12862777709961 + ], + [ + "▁Jenny", + -12.12879467010498 + ], + [ + "▁amazon", + -12.129119873046875 + ], + [ + "▁Contract", + -12.129206657409668 + ], + [ + "▁embodiments", + -12.129215240478516 + ], + [ + "▁selective", + -12.129233360290527 + ], + [ + "▁contamination", + -12.129263877868652 + ], + [ + "▁verdict", + -12.12967586517334 + ], + [ + "text", + -12.129716873168945 + ], + [ + "▁Owner", + -12.12978458404541 + ], + [ + "▁doll", + -12.129891395568848 + ], + [ + "▁hugely", + -12.129892349243164 + ], + [ + "▁Hop", + -12.129895210266113 + ], + [ + "▁bespoke", + -12.13001537322998 + ], + [ + "▁Found", + -12.130157470703125 + ], + [ + "▁ceilings", + -12.130341529846191 + ], + [ + "▁bets", + -12.130450248718262 + ], + [ + "▁peaks", + -12.130465507507324 + ], + [ + "▁weighed", + -12.130616188049316 + ], + [ + "▁Che", + -12.130751609802246 + ], + [ + "▁declining", + -12.130943298339844 + ], + [ + "▁myriad", + -12.13102912902832 + ], + [ + "▁rotating", + -12.131065368652344 + ], + [ + "▁projection", + -12.131146430969238 + ], + [ + "▁Tags", + -12.131159782409668 + ], + [ + "▁polymer", + -12.131246566772461 + ], + [ + "▁bombs", + -12.131261825561523 + ], + [ + "▁fictional", + -12.131281852722168 + ], + [ + "▁Depot", + -12.131662368774414 + ], + [ + "▁penny", + -12.131725311279297 + ], + [ + "▁Immigration", + -12.131793975830078 + ], + [ + "saving", + -12.131832122802734 + ], + [ + "▁geometry", + -12.131926536560059 + ], + [ + "▁delegates", + -12.13201904296875 + ], + [ + "▁plaintiff", + -12.132220268249512 + ], + [ + "▁Ride", + -12.132286071777344 + ], + [ + "▁Purple", + -12.132425308227539 + ], + [ + "Is", + -12.132453918457031 + ], + [ + "▁Engineers", + -12.132457733154297 + ], + [ + "except", + -12.132771492004395 + ], + [ + "▁Owen", + -12.132957458496094 + ], + [ + "▁Diagram", + -12.133071899414062 + ], + [ + "▁enclosed", + -12.133087158203125 + ], + [ + "▁RBI", + -12.133185386657715 + ], + [ + "▁Archive", + -12.133252143859863 + ], + [ + "▁prevalent", + -12.133289337158203 + ], + [ + "▁rim", + -12.133296012878418 + ], + [ + "▁Simpson", + -12.133718490600586 + ], + [ + "zen", + -12.133746147155762 + ], + [ + "▁Randy", + -12.133769989013672 + ], + [ + "▁Uni", + -12.13388729095459 + ], + [ + "▁Hilton", + -12.134032249450684 + ], + [ + "▁Chevrolet", + -12.134062767028809 + ], + [ + "▁Evidence", + -12.134202003479004 + ], + [ + "▁reinforced", + -12.134233474731445 + ], + [ + "▁sp", + -12.134441375732422 + ], + [ + "▁Highly", + -12.134526252746582 + ], + [ + "▁professors", + -12.134584426879883 + ], + [ + "▁committing", + -12.13473129272461 + ], + [ + "▁resilience", + -12.134775161743164 + ], + [ + "▁terminate", + -12.134963035583496 + ], + [ + "▁locksmith", + -12.13497543334961 + ], + [ + "▁biblical", + -12.135101318359375 + ], + [ + "▁nonsense", + -12.135164260864258 + ], + [ + "▁Starbucks", + -12.135279655456543 + ], + [ + "▁livestock", + -12.135395050048828 + ], + [ + "▁adequately", + -12.135415077209473 + ], + [ + "gmail", + -12.13554573059082 + ], + [ + "▁outbreak", + -12.13555908203125 + ], + [ + "▁1948", + -12.135565757751465 + ], + [ + "DB", + -12.135607719421387 + ], + [ + "ification", + -12.135746955871582 + ], + [ + "▁affiliates", + -12.135809898376465 + ], + [ + "▁daunting", + -12.136009216308594 + ], + [ + "▁recurring", + -12.136301040649414 + ], + [ + "▁indoors", + -12.136492729187012 + ], + [ + "▁broadly", + -12.136595726013184 + ], + [ + "▁Paradise", + -12.136699676513672 + ], + [ + "▁stains", + -12.136700630187988 + ], + [ + "▁fats", + -12.13692569732666 + ], + [ + "▁Binary", + -12.13708209991455 + ], + [ + "▁installment", + -12.137102127075195 + ], + [ + "▁vibration", + -12.137106895446777 + ], + [ + "▁commenting", + -12.137397766113281 + ], + [ + "ova", + -12.137432098388672 + ], + [ + "▁religions", + -12.137541770935059 + ], + [ + "▁Berry", + -12.137670516967773 + ], + [ + "▁Dana", + -12.137673377990723 + ], + [ + "▁settling", + -12.137823104858398 + ], + [ + "▁sponsorship", + -12.137899398803711 + ], + [ + "▁Interestingly", + -12.137935638427734 + ], + [ + "▁portraits", + -12.137957572937012 + ], + [ + "▁integrating", + -12.138026237487793 + ], + [ + "DE", + -12.138070106506348 + ], + [ + "▁Hungary", + -12.138172149658203 + ], + [ + "▁Jen", + -12.138331413269043 + ], + [ + "▁Chart", + -12.138383865356445 + ], + [ + "▁Duration", + -12.138504981994629 + ], + [ + "ue", + -12.13851547241211 + ], + [ + "▁Beginning", + -12.138570785522461 + ], + [ + "▁announcements", + -12.138592720031738 + ], + [ + "▁newborn", + -12.138633728027344 + ], + [ + "▁OEM", + -12.138716697692871 + ], + [ + "▁planner", + -12.138880729675293 + ], + [ + "▁UFC", + -12.139165878295898 + ], + [ + "▁stimulation", + -12.139294624328613 + ], + [ + "▁stroll", + -12.139324188232422 + ], + [ + "▁ripped", + -12.139388084411621 + ], + [ + "ae", + -12.139445304870605 + ], + [ + "▁ideally", + -12.13955307006836 + ], + [ + "▁Pierre", + -12.139735221862793 + ], + [ + "▁recognizing", + -12.139779090881348 + ], + [ + "▁zoo", + -12.139871597290039 + ], + [ + "▁Mama", + -12.139881134033203 + ], + [ + "▁sunglasses", + -12.140097618103027 + ], + [ + "▁rust", + -12.140116691589355 + ], + [ + "▁internally", + -12.140183448791504 + ], + [ + "▁sheriff", + -12.140349388122559 + ], + [ + "▁Bella", + -12.140531539916992 + ], + [ + "▁malicious", + -12.14060115814209 + ], + [ + "▁BP", + -12.140691757202148 + ], + [ + "▁altitude", + -12.140717506408691 + ], + [ + "▁KS", + -12.140759468078613 + ], + [ + "▁elect", + -12.140776634216309 + ], + [ + "▁SR", + -12.140846252441406 + ], + [ + "▁Marco", + -12.141007423400879 + ], + [ + "▁Safari", + -12.141035079956055 + ], + [ + "▁Bottom", + -12.141059875488281 + ], + [ + "130", + -12.141140937805176 + ], + [ + "▁employs", + -12.141217231750488 + ], + [ + "▁norms", + -12.141327857971191 + ], + [ + "▁Hood", + -12.141463279724121 + ], + [ + "▁Palmer", + -12.14164924621582 + ], + [ + "Where", + -12.141656875610352 + ], + [ + "Big", + -12.141679763793945 + ], + [ + "▁Authorities", + -12.141711235046387 + ], + [ + "2002", + -12.142009735107422 + ], + [ + "▁Sustainable", + -12.14212417602539 + ], + [ + "▁legislature", + -12.14215087890625 + ], + [ + "▁Kan", + -12.142154693603516 + ], + [ + "▁Silicon", + -12.142250061035156 + ], + [ + "▁Cedar", + -12.14225959777832 + ], + [ + "▁Deck", + -12.14237117767334 + ], + [ + "▁sanctuary", + -12.142455101013184 + ], + [ + "▁Fortune", + -12.142577171325684 + ], + [ + "▁exercising", + -12.14275074005127 + ], + [ + "▁Timothy", + -12.142767906188965 + ], + [ + "▁digestive", + -12.142804145812988 + ], + [ + "▁kilometres", + -12.142868995666504 + ], + [ + "▁moms", + -12.142952919006348 + ], + [ + "▁Accounting", + -12.142986297607422 + ], + [ + "▁Dow", + -12.143028259277344 + ], + [ + "lit", + -12.143034934997559 + ], + [ + "file", + -12.143088340759277 + ], + [ + "yr", + -12.143310546875 + ], + [ + "▁Anniversary", + -12.143416404724121 + ], + [ + "▁hurting", + -12.143702507019043 + ], + [ + "▁accounted", + -12.144075393676758 + ], + [ + "▁Mas", + -12.14417839050293 + ], + [ + "natural", + -12.144468307495117 + ], + [ + "▁Kane", + -12.144624710083008 + ], + [ + "▁flames", + -12.14468002319336 + ], + [ + "▁Mag", + -12.144742965698242 + ], + [ + "▁Weekend", + -12.144972801208496 + ], + [ + "▁subway", + -12.145008087158203 + ], + [ + "▁Affordable", + -12.145074844360352 + ], + [ + "▁negotiation", + -12.145112991333008 + ], + [ + "▁tempted", + -12.145129203796387 + ], + [ + "▁accumulation", + -12.145188331604004 + ], + [ + "▁wrapping", + -12.145246505737305 + ], + [ + "▁fashionable", + -12.145281791687012 + ], + [ + "▁fireworks", + -12.145383834838867 + ], + [ + "▁originated", + -12.145401000976562 + ], + [ + "Home", + -12.145546913146973 + ], + [ + "▁ventilation", + -12.145551681518555 + ], + [ + "▁intricate", + -12.14559268951416 + ], + [ + "▁MLS", + -12.145806312561035 + ], + [ + "▁permalink", + -12.145927429199219 + ], + [ + "▁Walt", + -12.145975112915039 + ], + [ + "▁organisms", + -12.14600944519043 + ], + [ + "▁outright", + -12.146257400512695 + ], + [ + "▁profitability", + -12.14626407623291 + ], + [ + "▁Trip", + -12.146305084228516 + ], + [ + "▁atmospheric", + -12.146403312683105 + ], + [ + "▁rainbow", + -12.146520614624023 + ], + [ + "▁subjective", + -12.146644592285156 + ], + [ + "▁verses", + -12.146810531616211 + ], + [ + "▁sparkling", + -12.146831512451172 + ], + [ + "fe", + -12.146883964538574 + ], + [ + "▁Lamb", + -12.147104263305664 + ], + [ + "▁inspect", + -12.147305488586426 + ], + [ + "▁Than", + -12.14755630493164 + ], + [ + "▁manifest", + -12.147576332092285 + ], + [ + "▁surplus", + -12.14765453338623 + ], + [ + "▁750", + -12.14782428741455 + ], + [ + "▁conditioner", + -12.147838592529297 + ], + [ + "▁catalogue", + -12.147884368896484 + ], + [ + "▁ml", + -12.148106575012207 + ], + [ + "▁listeners", + -12.148168563842773 + ], + [ + "▁AZ", + -12.148187637329102 + ], + [ + "▁dude", + -12.148273468017578 + ], + [ + "▁Drake", + -12.148330688476562 + ], + [ + "▁Fear", + -12.148568153381348 + ], + [ + "▁arises", + -12.148624420166016 + ], + [ + "▁dictionary", + -12.148645401000977 + ], + [ + "▁skull", + -12.149174690246582 + ], + [ + "▁scholar", + -12.149272918701172 + ], + [ + "▁sounding", + -12.149404525756836 + ], + [ + "▁deficiency", + -12.149470329284668 + ], + [ + "▁Raw", + -12.149574279785156 + ], + [ + "▁observing", + -12.149612426757812 + ], + [ + "▁scare", + -12.150047302246094 + ], + [ + "▁choir", + -12.150116920471191 + ], + [ + "▁dispose", + -12.150156021118164 + ], + [ + "▁Ab", + -12.150247573852539 + ], + [ + "▁Length", + -12.150294303894043 + ], + [ + "▁Handbook", + -12.150398254394531 + ], + [ + "▁stretches", + -12.150420188903809 + ], + [ + "μ", + -12.150459289550781 + ], + [ + "▁sweater", + -12.15051555633545 + ], + [ + "▁Ber", + -12.15058422088623 + ], + [ + "watch", + -12.15075397491455 + ], + [ + "▁ACT", + -12.150911331176758 + ], + [ + "▁Monitor", + -12.150921821594238 + ], + [ + "▁judgement", + -12.151130676269531 + ], + [ + "▁utilization", + -12.151222229003906 + ], + [ + "▁Symphony", + -12.151333808898926 + ], + [ + "▁ta", + -12.151424407958984 + ], + [ + "▁housed", + -12.151461601257324 + ], + [ + "▁Mathematics", + -12.151678085327148 + ], + [ + "▁Munich", + -12.151728630065918 + ], + [ + "▁frequencies", + -12.151823043823242 + ], + [ + "tier", + -12.15191650390625 + ], + [ + "ground", + -12.151941299438477 + ], + [ + "▁Wyoming", + -12.152030944824219 + ], + [ + "▁ambition", + -12.15211009979248 + ], + [ + "▁Eli", + -12.152356147766113 + ], + [ + "ming", + -12.15248966217041 + ], + [ + "▁farther", + -12.15277099609375 + ], + [ + "▁Led", + -12.15292739868164 + ], + [ + "▁sparked", + -12.153017044067383 + ], + [ + "▁comeback", + -12.153294563293457 + ], + [ + "▁cleansing", + -12.153380393981934 + ], + [ + "▁Yale", + -12.153646469116211 + ], + [ + "▁deadlines", + -12.15386962890625 + ], + [ + "2001", + -12.153882026672363 + ], + [ + "▁Derby", + -12.154244422912598 + ], + [ + "▁Julian", + -12.154358863830566 + ], + [ + "▁RT", + -12.154389381408691 + ], + [ + "▁Believe", + -12.154476165771484 + ], + [ + "▁Cuban", + -12.154507637023926 + ], + [ + "ali", + -12.154547691345215 + ], + [ + "▁Lounge", + -12.154634475708008 + ], + [ + "▁crystals", + -12.15485668182373 + ], + [ + "▁artifacts", + -12.154870986938477 + ], + [ + "▁faux", + -12.15493106842041 + ], + [ + "▁EA", + -12.154969215393066 + ], + [ + "▁accusations", + -12.155092239379883 + ], + [ + "▁uncover", + -12.15511703491211 + ], + [ + "▁cigarettes", + -12.155231475830078 + ], + [ + "▁Returns", + -12.155293464660645 + ], + [ + "▁Zimbabwe", + -12.155409812927246 + ], + [ + "▁inaugural", + -12.155438423156738 + ], + [ + "▁awe", + -12.155444145202637 + ], + [ + "▁neural", + -12.155561447143555 + ], + [ + "▁crafting", + -12.155620574951172 + ], + [ + "▁biography", + -12.155658721923828 + ], + [ + "▁merchants", + -12.155691146850586 + ], + [ + "burn", + -12.155749320983887 + ], + [ + "▁Auckland", + -12.155829429626465 + ], + [ + "▁ruins", + -12.155998229980469 + ], + [ + "▁negligence", + -12.15611743927002 + ], + [ + "▁aunt", + -12.156167030334473 + ], + [ + "▁negatively", + -12.15626049041748 + ], + [ + "▁comp", + -12.156343460083008 + ], + [ + "▁advisors", + -12.156538963317871 + ], + [ + "▁homepage", + -12.156588554382324 + ], + [ + "▁Uncategorized", + -12.156622886657715 + ], + [ + "wheel", + -12.156973838806152 + ], + [ + "▁additions", + -12.157098770141602 + ], + [ + "▁Basketball", + -12.157154083251953 + ], + [ + "▁Status", + -12.1571626663208 + ], + [ + "oli", + -12.157415390014648 + ], + [ + "▁Griffin", + -12.157421112060547 + ], + [ + "▁neighbourhood", + -12.157732963562012 + ], + [ + "▁rescued", + -12.15774917602539 + ], + [ + "▁intends", + -12.157769203186035 + ], + [ + "West", + -12.15785026550293 + ], + [ + "▁Donna", + -12.15787410736084 + ], + [ + "https", + -12.158072471618652 + ], + [ + "▁colony", + -12.158257484436035 + ], + [ + "▁Candidates", + -12.158289909362793 + ], + [ + "▁Cast", + -12.158306121826172 + ], + [ + "EU", + -12.158318519592285 + ], + [ + "▁reproduce", + -12.15853500366211 + ], + [ + "fest", + -12.158590316772461 + ], + [ + "▁conceptual", + -12.158756256103516 + ], + [ + "▁cooperative", + -12.15877628326416 + ], + [ + "▁Xi", + -12.159037590026855 + ], + [ + "▁rabbit", + -12.159263610839844 + ], + [ + "▁successor", + -12.159649848937988 + ], + [ + "▁Aviation", + -12.159658432006836 + ], + [ + "▁dishwasher", + -12.159708023071289 + ], + [ + "▁forecasts", + -12.159743309020996 + ], + [ + "▁genome", + -12.1597900390625 + ], + [ + "▁smarter", + -12.160353660583496 + ], + [ + "▁infamous", + -12.160496711730957 + ], + [ + "▁english", + -12.160554885864258 + ], + [ + "▁clues", + -12.160653114318848 + ], + [ + "▁empathy", + -12.161258697509766 + ], + [ + "▁taxpayer", + -12.161381721496582 + ], + [ + "▁transcription", + -12.16178035736084 + ], + [ + "▁economically", + -12.1619291305542 + ], + [ + "▁Instant", + -12.162168502807617 + ], + [ + "▁jointly", + -12.162230491638184 + ], + [ + "▁CMS", + -12.162253379821777 + ], + [ + "ela", + -12.16232681274414 + ], + [ + "▁Caroline", + -12.162371635437012 + ], + [ + "▁Monica", + -12.162578582763672 + ], + [ + "focused", + -12.162677764892578 + ], + [ + "blog", + -12.162787437438965 + ], + [ + "mat", + -12.162839889526367 + ], + [ + "▁dan", + -12.16308879852295 + ], + [ + "▁aired", + -12.163289070129395 + ], + [ + "▁aluminium", + -12.16344928741455 + ], + [ + "▁Families", + -12.163488388061523 + ], + [ + "▁enhances", + -12.163941383361816 + ], + [ + "▁painter", + -12.163987159729004 + ], + [ + "▁endorsed", + -12.164142608642578 + ], + [ + "▁geographical", + -12.164349555969238 + ], + [ + "▁logos", + -12.164593696594238 + ], + [ + "▁Lily", + -12.165002822875977 + ], + [ + "▁neglected", + -12.165034294128418 + ], + [ + "▁aftermath", + -12.165066719055176 + ], + [ + "▁Romney", + -12.165074348449707 + ], + [ + "▁organizer", + -12.165265083312988 + ], + [ + "▁peel", + -12.165339469909668 + ], + [ + "▁Term", + -12.16538143157959 + ], + [ + "▁pioneer", + -12.16538143157959 + ], + [ + "▁squash", + -12.165432929992676 + ], + [ + "▁equations", + -12.165550231933594 + ], + [ + "▁treaty", + -12.165570259094238 + ], + [ + "hold", + -12.165663719177246 + ], + [ + "Some", + -12.165728569030762 + ], + [ + "▁brighter", + -12.165742874145508 + ], + [ + "▁slowing", + -12.165746688842773 + ], + [ + "▁puck", + -12.165976524353027 + ], + [ + "▁Foot", + -12.16633415222168 + ], + [ + "▁Parking", + -12.166486740112305 + ], + [ + "▁laptops", + -12.166621208190918 + ], + [ + "▁Format", + -12.166816711425781 + ], + [ + "▁Centers", + -12.166959762573242 + ], + [ + "▁gamers", + -12.16698932647705 + ], + [ + "▁Roof", + -12.166990280151367 + ], + [ + "gan", + -12.167414665222168 + ], + [ + "▁geo", + -12.167523384094238 + ], + [ + "▁Skype", + -12.167680740356445 + ], + [ + "▁Clarke", + -12.167752265930176 + ], + [ + "▁rig", + -12.167804718017578 + ], + [ + "▁Bloomberg", + -12.167854309082031 + ], + [ + "▁trader", + -12.16788387298584 + ], + [ + "start", + -12.167943954467773 + ], + [ + "wan", + -12.16798210144043 + ], + [ + "▁Janet", + -12.168045997619629 + ], + [ + "▁Hit", + -12.168049812316895 + ], + [ + "▁Idea", + -12.16834545135498 + ], + [ + "▁polite", + -12.168482780456543 + ], + [ + "▁boiling", + -12.168550491333008 + ], + [ + "▁Midwest", + -12.168695449829102 + ], + [ + "▁Sally", + -12.168707847595215 + ], + [ + "▁proceeded", + -12.168822288513184 + ], + [ + "die", + -12.168951988220215 + ], + [ + "lia", + -12.169110298156738 + ], + [ + "▁compose", + -12.169218063354492 + ], + [ + "▁gadgets", + -12.16940689086914 + ], + [ + "nia", + -12.169502258300781 + ], + [ + "▁vein", + -12.169618606567383 + ], + [ + "▁Hay", + -12.169988632202148 + ], + [ + "wear", + -12.170097351074219 + ], + [ + "▁transgender", + -12.170114517211914 + ], + [ + "▁Carson", + -12.170178413391113 + ], + [ + "▁induction", + -12.170207977294922 + ], + [ + "▁breakthrough", + -12.170257568359375 + ], + [ + "▁TB", + -12.170573234558105 + ], + [ + "▁Initially", + -12.170633316040039 + ], + [ + "▁PG", + -12.17066764831543 + ], + [ + "▁Hyper", + -12.170687675476074 + ], + [ + "▁acre", + -12.170733451843262 + ], + [ + "ging", + -12.170804023742676 + ], + [ + "ified", + -12.170992851257324 + ], + [ + "Link", + -12.171016693115234 + ], + [ + "▁stellar", + -12.171415328979492 + ], + [ + "▁sore", + -12.171530723571777 + ], + [ + "▁preceding", + -12.171538352966309 + ], + [ + "▁whereby", + -12.171564102172852 + ], + [ + "▁NH", + -12.171797752380371 + ], + [ + "▁detained", + -12.172082901000977 + ], + [ + "Ex", + -12.172414779663086 + ], + [ + "▁Nano", + -12.172479629516602 + ], + [ + "▁Growing", + -12.172602653503418 + ], + [ + "▁Gregory", + -12.17276668548584 + ], + [ + "▁symbolic", + -12.172780990600586 + ], + [ + "▁cam", + -12.172785758972168 + ], + [ + "▁depicted", + -12.172801971435547 + ], + [ + "▁VERY", + -12.172811508178711 + ], + [ + "▁READ", + -12.173316955566406 + ], + [ + "▁Ag", + -12.173443794250488 + ], + [ + "▁gentleman", + -12.17349624633789 + ], + [ + "▁enzyme", + -12.173500061035156 + ], + [ + "▁Horn", + -12.173567771911621 + ], + [ + "▁tick", + -12.173630714416504 + ], + [ + "Hey", + -12.173685073852539 + ], + [ + "▁patents", + -12.173701286315918 + ], + [ + "▁periodically", + -12.173785209655762 + ], + [ + "▁conscience", + -12.173812866210938 + ], + [ + "▁Giving", + -12.174056053161621 + ], + [ + "cho", + -12.17410945892334 + ], + [ + "▁lawsuits", + -12.174120903015137 + ], + [ + "▁representations", + -12.174171447753906 + ], + [ + "▁Certain", + -12.174199104309082 + ], + [ + "▁allergic", + -12.174715995788574 + ], + [ + "▁Important", + -12.174848556518555 + ], + [ + "hit", + -12.175264358520508 + ], + [ + "▁Million", + -12.175604820251465 + ], + [ + "ridge", + -12.175626754760742 + ], + [ + "nu", + -12.175907135009766 + ], + [ + "▁hollow", + -12.175935745239258 + ], + [ + "▁Realty", + -12.176053047180176 + ], + [ + "▁pedal", + -12.176223754882812 + ], + [ + "▁exchanged", + -12.176494598388672 + ], + [ + "▁MIT", + -12.176515579223633 + ], + [ + "▁berries", + -12.176578521728516 + ], + [ + "▁Interested", + -12.176976203918457 + ], + [ + "▁Stream", + -12.177045822143555 + ], + [ + "▁Yankees", + -12.177046775817871 + ], + [ + "▁Buying", + -12.177172660827637 + ], + [ + "MAN", + -12.17723560333252 + ], + [ + "▁Carr", + -12.177336692810059 + ], + [ + "▁Frame", + -12.177361488342285 + ], + [ + "▁Boss", + -12.177474021911621 + ], + [ + "▁Sets", + -12.177750587463379 + ], + [ + "▁Athletic", + -12.178147315979004 + ], + [ + "help", + -12.178409576416016 + ], + [ + "▁irrelevant", + -12.178533554077148 + ], + [ + "▁Communist", + -12.178828239440918 + ], + [ + "▁manipulate", + -12.178847312927246 + ], + [ + "▁Belgian", + -12.179058074951172 + ], + [ + "▁infectious", + -12.179075241088867 + ], + [ + "▁Liu", + -12.179125785827637 + ], + [ + "▁Aqua", + -12.17914867401123 + ], + [ + "▁Loss", + -12.179176330566406 + ], + [ + "▁Fellowship", + -12.17923641204834 + ], + [ + "▁Shoes", + -12.179378509521484 + ], + [ + "▁founders", + -12.17938232421875 + ], + [ + "▁traces", + -12.179387092590332 + ], + [ + "▁Knights", + -12.179601669311523 + ], + [ + "▁dragged", + -12.179655075073242 + ], + [ + "▁Holdings", + -12.17979907989502 + ], + [ + "▁kernel", + -12.17990779876709 + ], + [ + "▁youtube", + -12.179998397827148 + ], + [ + "▁nutrient", + -12.18014144897461 + ], + [ + "ick", + -12.180158615112305 + ], + [ + "▁Brighton", + -12.180305480957031 + ], + [ + "▁Guild", + -12.180389404296875 + ], + [ + "▁unchanged", + -12.180801391601562 + ], + [ + "▁passwords", + -12.1808500289917 + ], + [ + "▁tu", + -12.181087493896484 + ], + [ + "▁Hopkins", + -12.181127548217773 + ], + [ + "▁Investors", + -12.181243896484375 + ], + [ + "▁103", + -12.181262016296387 + ], + [ + "▁suburban", + -12.181262969970703 + ], + [ + "▁Thor", + -12.181312561035156 + ], + [ + "▁Banking", + -12.181316375732422 + ], + [ + "▁refusing", + -12.181367874145508 + ], + [ + "▁BIG", + -12.181410789489746 + ], + [ + "▁confined", + -12.181437492370605 + ], + [ + "▁112", + -12.181892395019531 + ], + [ + "▁pitched", + -12.182026863098145 + ], + [ + "▁Frederick", + -12.182092666625977 + ], + [ + "▁seamlessly", + -12.182106971740723 + ], + [ + "▁preparations", + -12.182735443115234 + ], + [ + "▁plugins", + -12.182769775390625 + ], + [ + "wire", + -12.182785034179688 + ], + [ + "▁HA", + -12.182881355285645 + ], + [ + "▁servicing", + -12.18321418762207 + ], + [ + "▁mines", + -12.183236122131348 + ], + [ + "▁misconduct", + -12.183298110961914 + ], + [ + "safe", + -12.183385848999023 + ], + [ + "▁tactical", + -12.183747291564941 + ], + [ + "mes", + -12.183889389038086 + ], + [ + "▁vacant", + -12.18411636352539 + ], + [ + "▁pinch", + -12.184133529663086 + ], + [ + "▁uncovered", + -12.184135437011719 + ], + [ + "▁Sol", + -12.184209823608398 + ], + [ + "fat", + -12.184255599975586 + ], + [ + "▁lateral", + -12.184295654296875 + ], + [ + "▁definitive", + -12.184379577636719 + ], + [ + "▁volunteering", + -12.18438720703125 + ], + [ + "▁Riley", + -12.184412002563477 + ], + [ + "▁clicks", + -12.184429168701172 + ], + [ + "▁clutch", + -12.184438705444336 + ], + [ + "▁renovated", + -12.184469223022461 + ], + [ + "ud", + -12.184488296508789 + ], + [ + "▁rugby", + -12.184599876403809 + ], + [ + "▁Essential", + -12.184688568115234 + ], + [ + "▁CM", + -12.184704780578613 + ], + [ + "▁Fuel", + -12.184728622436523 + ], + [ + "▁Adelaide", + -12.184792518615723 + ], + [ + "▁denying", + -12.184948921203613 + ], + [ + "▁designation", + -12.184958457946777 + ], + [ + "▁tasted", + -12.185029029846191 + ], + [ + "▁CP", + -12.185148239135742 + ], + [ + "▁unified", + -12.18535041809082 + ], + [ + "▁Receive", + -12.185358047485352 + ], + [ + "▁obscure", + -12.185440063476562 + ], + [ + "ѕ", + -12.185623168945312 + ], + [ + "▁Beta", + -12.185784339904785 + ], + [ + "▁soothing", + -12.185859680175781 + ], + [ + "▁aka", + -12.18596363067627 + ], + [ + "zone", + -12.186056137084961 + ], + [ + "▁cemetery", + -12.1860990524292 + ], + [ + "EN", + -12.186171531677246 + ], + [ + "▁charger", + -12.186197280883789 + ], + [ + "▁pouring", + -12.186259269714355 + ], + [ + "UP", + -12.186649322509766 + ], + [ + "▁trek", + -12.186712265014648 + ], + [ + "▁slate", + -12.186867713928223 + ], + [ + "▁Scale", + -12.186959266662598 + ], + [ + "GA", + -12.187040328979492 + ], + [ + "▁neighbours", + -12.187115669250488 + ], + [ + "▁Mai", + -12.187230110168457 + ], + [ + "▁projections", + -12.187379837036133 + ], + [ + "▁emission", + -12.187488555908203 + ], + [ + "▁rainy", + -12.187506675720215 + ], + [ + "▁transferring", + -12.187581062316895 + ], + [ + "▁echo", + -12.187675476074219 + ], + [ + "▁adore", + -12.187886238098145 + ], + [ + "share", + -12.187893867492676 + ], + [ + "▁duplicate", + -12.188071250915527 + ], + [ + "▁fibre", + -12.188077926635742 + ], + [ + "Are", + -12.188084602355957 + ], + [ + "▁predominantly", + -12.18811321258545 + ], + [ + "▁FX", + -12.188140869140625 + ], + [ + "▁downloads", + -12.18814468383789 + ], + [ + "▁radius", + -12.18819522857666 + ], + [ + "▁firearms", + -12.188218116760254 + ], + [ + "▁specs", + -12.188408851623535 + ], + [ + "▁compassionate", + -12.188433647155762 + ], + [ + "▁systemic", + -12.18847370147705 + ], + [ + "▁tossed", + -12.188642501831055 + ], + [ + "▁furnace", + -12.188724517822266 + ], + [ + "▁endorsement", + -12.188745498657227 + ], + [ + "▁expired", + -12.188844680786133 + ], + [ + "▁BJP", + -12.188937187194824 + ], + [ + "▁threaten", + -12.189047813415527 + ], + [ + "▁Nuclear", + -12.189083099365234 + ], + [ + "▁Hire", + -12.18911075592041 + ], + [ + "▁Canal", + -12.189157485961914 + ], + [ + "▁mills", + -12.1893310546875 + ], + [ + "▁collectors", + -12.18940258026123 + ], + [ + "▁Eden", + -12.189631462097168 + ], + [ + "▁Pride", + -12.189640998840332 + ], + [ + "▁aroma", + -12.18972110748291 + ], + [ + "▁Sim", + -12.189774513244629 + ], + [ + "▁gown", + -12.189812660217285 + ], + [ + "▁onset", + -12.189848899841309 + ], + [ + "▁Sch", + -12.189859390258789 + ], + [ + "▁Everybody", + -12.189889907836914 + ], + [ + "▁burger", + -12.18993091583252 + ], + [ + "▁voucher", + -12.1899995803833 + ], + [ + "▁relieved", + -12.190169334411621 + ], + [ + "▁winding", + -12.190284729003906 + ], + [ + "▁regulator", + -12.190423965454102 + ], + [ + "▁felony", + -12.190443992614746 + ], + [ + "▁tonnes", + -12.190572738647461 + ], + [ + "▁finals", + -12.190633773803711 + ], + [ + "▁boxing", + -12.190751075744629 + ], + [ + "▁confronted", + -12.190911293029785 + ], + [ + "▁Grande", + -12.190942764282227 + ], + [ + "▁Scholarship", + -12.190969467163086 + ], + [ + "450", + -12.191027641296387 + ], + [ + "▁wont", + -12.191044807434082 + ], + [ + "▁interacting", + -12.191095352172852 + ], + [ + "▁Combine", + -12.19134521484375 + ], + [ + "▁Bang", + -12.191400527954102 + ], + [ + "▁fathers", + -12.191411972045898 + ], + [ + "dia", + -12.191413879394531 + ], + [ + "▁Louisville", + -12.191476821899414 + ], + [ + "▁SL", + -12.191699981689453 + ], + [ + "▁consequently", + -12.191777229309082 + ], + [ + "▁Jill", + -12.19188404083252 + ], + [ + "▁tumors", + -12.192291259765625 + ], + [ + "▁Quest", + -12.19234848022461 + ], + [ + "▁academics", + -12.192831993103027 + ], + [ + "▁mitigate", + -12.192935943603516 + ], + [ + "▁cooperate", + -12.192961692810059 + ], + [ + "▁zinc", + -12.19307804107666 + ], + [ + "▁unauthorized", + -12.193081855773926 + ], + [ + "mu", + -12.193214416503906 + ], + [ + "▁registering", + -12.193342208862305 + ], + [ + "▁1959", + -12.193380355834961 + ], + [ + "▁peripheral", + -12.193459510803223 + ], + [ + "▁Rams", + -12.193595886230469 + ], + [ + "▁defect", + -12.193896293640137 + ], + [ + "▁hackers", + -12.193949699401855 + ], + [ + "ase", + -12.193961143493652 + ], + [ + "people", + -12.194086074829102 + ], + [ + "▁grapes", + -12.194238662719727 + ], + [ + "▁decreasing", + -12.194244384765625 + ], + [ + "▁intra", + -12.194302558898926 + ], + [ + "▁suburbs", + -12.194440841674805 + ], + [ + "▁unpleasant", + -12.194601058959961 + ], + [ + "▁hips", + -12.19465160369873 + ], + [ + "160", + -12.19483757019043 + ], + [ + "▁Sin", + -12.194965362548828 + ], + [ + "gr", + -12.195230484008789 + ], + [ + "▁Grill", + -12.19525146484375 + ], + [ + "▁Verizon", + -12.195786476135254 + ], + [ + "▁damp", + -12.195786476135254 + ], + [ + "▁elder", + -12.19640827178955 + ], + [ + "▁Panama", + -12.196542739868164 + ], + [ + "▁delegation", + -12.196554183959961 + ], + [ + "▁Secondly", + -12.196561813354492 + ], + [ + "▁Effective", + -12.196572303771973 + ], + [ + "▁insurers", + -12.196573257446289 + ], + [ + "▁DA", + -12.19666862487793 + ], + [ + "▁hooks", + -12.196861267089844 + ], + [ + "▁Fifth", + -12.197028160095215 + ], + [ + "growing", + -12.19710636138916 + ], + [ + "▁cops", + -12.197128295898438 + ], + [ + "▁someday", + -12.197357177734375 + ], + [ + "AR", + -12.197373390197754 + ], + [ + "▁burns", + -12.197434425354004 + ], + [ + "social", + -12.197537422180176 + ], + [ + "▁Tank", + -12.197580337524414 + ], + [ + "▁Carpet", + -12.197691917419434 + ], + [ + "▁endurance", + -12.197751998901367 + ], + [ + "workers", + -12.19797420501709 + ], + [ + "▁insufficient", + -12.198063850402832 + ], + [ + "▁emailed", + -12.198174476623535 + ], + [ + "▁reversed", + -12.19849967956543 + ], + [ + "▁allowance", + -12.198509216308594 + ], + [ + "Red", + -12.198569297790527 + ], + [ + "▁similarities", + -12.198790550231934 + ], + [ + "▁oxide", + -12.198833465576172 + ], + [ + "▁Apps", + -12.198911666870117 + ], + [ + "▁naming", + -12.199044227600098 + ], + [ + "▁dealership", + -12.199079513549805 + ], + [ + "▁shoots", + -12.199446678161621 + ], + [ + "track", + -12.199742317199707 + ], + [ + "▁Sites", + -12.199960708618164 + ], + [ + "▁liquor", + -12.200082778930664 + ], + [ + "▁ia", + -12.200149536132812 + ], + [ + "▁Critical", + -12.200407028198242 + ], + [ + "▁mileage", + -12.200421333312988 + ], + [ + "met", + -12.200536727905273 + ], + [ + "tes", + -12.200545310974121 + ], + [ + "▁MAC", + -12.200672149658203 + ], + [ + "▁Henderson", + -12.20071792602539 + ], + [ + "▁victories", + -12.201112747192383 + ], + [ + "▁thanked", + -12.201176643371582 + ], + [ + "▁parcel", + -12.201239585876465 + ], + [ + "▁repeating", + -12.201716423034668 + ], + [ + "▁Em", + -12.201873779296875 + ], + [ + "▁Armstrong", + -12.201979637145996 + ], + [ + "▁bust", + -12.202298164367676 + ], + [ + "▁1944", + -12.202329635620117 + ], + [ + "▁Packers", + -12.202332496643066 + ], + [ + "think", + -12.202391624450684 + ], + [ + "▁battling", + -12.202591896057129 + ], + [ + "▁Fruit", + -12.20266056060791 + ], + [ + "▁motivate", + -12.203025817871094 + ], + [ + "▁Makes", + -12.203120231628418 + ], + [ + "books", + -12.20313549041748 + ], + [ + "shi", + -12.203335762023926 + ], + [ + "▁stripped", + -12.203401565551758 + ], + [ + "▁Reynolds", + -12.20343017578125 + ], + [ + "▁detective", + -12.203548431396484 + ], + [ + "ante", + -12.203596115112305 + ], + [ + "▁cliff", + -12.203963279724121 + ], + [ + "▁Naturally", + -12.203995704650879 + ], + [ + "▁pursued", + -12.204022407531738 + ], + [ + "▁portrayed", + -12.204073905944824 + ], + [ + "AA", + -12.204115867614746 + ], + [ + "▁irrigation", + -12.20424747467041 + ], + [ + "▁accents", + -12.204358100891113 + ], + [ + "make", + -12.204381942749023 + ], + [ + "▁contributors", + -12.204568862915039 + ], + [ + "▁theaters", + -12.204730987548828 + ], + [ + "▁bind", + -12.20486068725586 + ], + [ + "▁bowls", + -12.204952239990234 + ], + [ + "▁ash", + -12.204995155334473 + ], + [ + "▁MUST", + -12.204996109008789 + ], + [ + "▁carrots", + -12.20500659942627 + ], + [ + "▁Ser", + -12.205194473266602 + ], + [ + "▁northwest", + -12.205389976501465 + ], + [ + "▁decks", + -12.205467224121094 + ], + [ + "▁certainty", + -12.2055025100708 + ], + [ + "▁neo", + -12.20563793182373 + ], + [ + "▁diets", + -12.205777168273926 + ], + [ + "▁Tab", + -12.205826759338379 + ], + [ + "▁mentioning", + -12.205930709838867 + ], + [ + "▁southwest", + -12.205999374389648 + ], + [ + "▁Document", + -12.206369400024414 + ], + [ + "▁critique", + -12.206422805786133 + ], + [ + "▁academy", + -12.206437110900879 + ], + [ + "▁punk", + -12.206477165222168 + ], + [ + "economic", + -12.2064847946167 + ], + [ + "▁removes", + -12.206579208374023 + ], + [ + "▁Fiction", + -12.206653594970703 + ], + [ + "▁1958", + -12.206730842590332 + ], + [ + "▁Balance", + -12.206788063049316 + ], + [ + "▁pat", + -12.206880569458008 + ], + [ + "▁hype", + -12.206896781921387 + ], + [ + "State", + -12.206929206848145 + ], + [ + "▁Kind", + -12.206963539123535 + ], + [ + "▁admissions", + -12.207090377807617 + ], + [ + "▁thrust", + -12.207098960876465 + ], + [ + "▁Adrian", + -12.207113265991211 + ], + [ + "▁bypass", + -12.207132339477539 + ], + [ + "AD", + -12.20732307434082 + ], + [ + "▁123", + -12.20742130279541 + ], + [ + "▁geared", + -12.207423210144043 + ], + [ + "▁tuning", + -12.207545280456543 + ], + [ + "▁Tele", + -12.207660675048828 + ], + [ + "▁multimedia", + -12.207674980163574 + ], + [ + "▁Orthodox", + -12.207756042480469 + ], + [ + "▁raid", + -12.20786190032959 + ], + [ + "▁polyester", + -12.207958221435547 + ], + [ + "ological", + -12.20803451538086 + ], + [ + "▁Huawei", + -12.208288192749023 + ], + [ + "▁NW", + -12.208330154418945 + ], + [ + "▁Duty", + -12.20837116241455 + ], + [ + "▁unfamiliar", + -12.20838451385498 + ], + [ + "▁removable", + -12.2084379196167 + ], + [ + "▁rainfall", + -12.208500862121582 + ], + [ + "▁Into", + -12.208609580993652 + ], + [ + "▁realities", + -12.208760261535645 + ], + [ + "GO", + -12.209117889404297 + ], + [ + "▁locker", + -12.20921802520752 + ], + [ + "breaking", + -12.209250450134277 + ], + [ + "square", + -12.209489822387695 + ], + [ + "▁1956", + -12.2095947265625 + ], + [ + "▁socket", + -12.209637641906738 + ], + [ + "IS", + -12.209802627563477 + ], + [ + "▁transplant", + -12.209869384765625 + ], + [ + "▁unconscious", + -12.20997428894043 + ], + [ + "▁Belle", + -12.209991455078125 + ], + [ + "▁chassis", + -12.210281372070312 + ], + [ + "▁Loans", + -12.210336685180664 + ], + [ + "▁Cookies", + -12.210497856140137 + ], + [ + "using", + -12.21066951751709 + ], + [ + "▁Edmonton", + -12.210695266723633 + ], + [ + "live", + -12.210914611816406 + ], + [ + "▁comparisons", + -12.210936546325684 + ], + [ + "▁northeast", + -12.211008071899414 + ], + [ + "▁Queens", + -12.211048126220703 + ], + [ + "▁Megan", + -12.211289405822754 + ], + [ + "▁routines", + -12.21129035949707 + ], + [ + "centric", + -12.211529731750488 + ], + [ + "Thank", + -12.211576461791992 + ], + [ + "▁privileged", + -12.211627960205078 + ], + [ + "dependent", + -12.211701393127441 + ], + [ + "▁smoked", + -12.211736679077148 + ], + [ + "▁Kon", + -12.211950302124023 + ], + [ + "▁Hip", + -12.212055206298828 + ], + [ + "▁provinces", + -12.212199211120605 + ], + [ + "▁triangle", + -12.212247848510742 + ], + [ + "▁Sheffield", + -12.212553024291992 + ], + [ + "▁historian", + -12.212638854980469 + ], + [ + "▁drastically", + -12.212714195251465 + ], + [ + "gy", + -12.212812423706055 + ], + [ + "▁che", + -12.21284294128418 + ], + [ + "▁belonged", + -12.212847709655762 + ], + [ + "▁Alfred", + -12.212968826293945 + ], + [ + "▁gases", + -12.213022232055664 + ], + [ + "▁upwards", + -12.213043212890625 + ], + [ + "▁picturesque", + -12.213088035583496 + ], + [ + "▁Presidential", + -12.21352481842041 + ], + [ + "▁chefs", + -12.213529586791992 + ], + [ + "▁Morrison", + -12.213692665100098 + ], + [ + "▁SM", + -12.213709831237793 + ], + [ + "▁peek", + -12.213728904724121 + ], + [ + "▁chatting", + -12.213785171508789 + ], + [ + "▁acceleration", + -12.213848114013672 + ], + [ + "▁stool", + -12.213854789733887 + ], + [ + "▁Protein", + -12.213920593261719 + ], + [ + "▁downside", + -12.214005470275879 + ], + [ + "▁prisoner", + -12.21402645111084 + ], + [ + "▁Funny", + -12.21408462524414 + ], + [ + "▁hunter", + -12.214134216308594 + ], + [ + "▁Powder", + -12.214140892028809 + ], + [ + "▁goat", + -12.214354515075684 + ], + [ + "▁averaged", + -12.21447467803955 + ], + [ + "▁identities", + -12.214507102966309 + ], + [ + "▁MPs", + -12.214675903320312 + ], + [ + "▁Erin", + -12.214723587036133 + ], + [ + "▁susceptible", + -12.214743614196777 + ], + [ + "▁Portable", + -12.214828491210938 + ], + [ + "▁Autumn", + -12.215035438537598 + ], + [ + "▁Playing", + -12.215117454528809 + ], + [ + "▁Zhang", + -12.21512508392334 + ], + [ + "▁Wade", + -12.215526580810547 + ], + [ + "▁Progress", + -12.215560913085938 + ], + [ + "▁Visitors", + -12.21557903289795 + ], + [ + "▁moist", + -12.215723991394043 + ], + [ + "▁BT", + -12.215725898742676 + ], + [ + "▁neurons", + -12.21577262878418 + ], + [ + "▁exclude", + -12.216107368469238 + ], + [ + "▁regain", + -12.216137886047363 + ], + [ + "lay", + -12.216168403625488 + ], + [ + "▁ce", + -12.216195106506348 + ], + [ + "▁FIFA", + -12.216531753540039 + ], + [ + "▁daylight", + -12.216718673706055 + ], + [ + "▁arbitration", + -12.216731071472168 + ], + [ + "▁Hans", + -12.216801643371582 + ], + [ + "Table", + -12.21682357788086 + ], + [ + "▁fertility", + -12.216936111450195 + ], + [ + "▁triggers", + -12.216949462890625 + ], + [ + "▁Olive", + -12.216989517211914 + ], + [ + "▁Sudan", + -12.217352867126465 + ], + [ + "▁circumstance", + -12.217602729797363 + ], + [ + "▁sympathy", + -12.217802047729492 + ], + [ + "▁Devil", + -12.217869758605957 + ], + [ + "▁glowing", + -12.217968940734863 + ], + [ + "▁Become", + -12.218006134033203 + ], + [ + "▁Renaissance", + -12.218201637268066 + ], + [ + "▁continuity", + -12.21822738647461 + ], + [ + "▁Ship", + -12.218330383300781 + ], + [ + "third", + -12.218424797058105 + ], + [ + "▁Rodriguez", + -12.218771934509277 + ], + [ + "▁shells", + -12.21898365020752 + ], + [ + "▁Vladimir", + -12.219233512878418 + ], + [ + "▁inspections", + -12.219453811645508 + ], + [ + "▁rude", + -12.219466209411621 + ], + [ + "PC", + -12.219646453857422 + ], + [ + "▁ultrasound", + -12.219684600830078 + ], + [ + "▁impaired", + -12.21986198425293 + ], + [ + "IL", + -12.219942092895508 + ], + [ + "▁compilation", + -12.220019340515137 + ], + [ + "▁Evan", + -12.220274925231934 + ], + [ + "▁Leaf", + -12.220314025878906 + ], + [ + "▁miserable", + -12.220412254333496 + ], + [ + "▁snapped", + -12.220611572265625 + ], + [ + "▁embarrassing", + -12.220673561096191 + ], + [ + "▁steer", + -12.220792770385742 + ], + [ + "had", + -12.2208251953125 + ], + [ + "▁emphasized", + -12.220878601074219 + ], + [ + "▁HOW", + -12.221362113952637 + ], + [ + "▁Leaders", + -12.221369743347168 + ], + [ + "▁Il", + -12.221444129943848 + ], + [ + "▁Egg", + -12.221586227416992 + ], + [ + "▁Charleston", + -12.221634864807129 + ], + [ + "Book", + -12.221686363220215 + ], + [ + "ama", + -12.221834182739258 + ], + [ + "▁Vietnamese", + -12.221948623657227 + ], + [ + "fit", + -12.221981048583984 + ], + [ + "▁Solomon", + -12.222206115722656 + ], + [ + "Mr", + -12.222570419311523 + ], + [ + "sell", + -12.22302532196045 + ], + [ + "▁processors", + -12.223278999328613 + ], + [ + "▁arbitrary", + -12.223285675048828 + ], + [ + "▁slowed", + -12.223329544067383 + ], + [ + "▁Mile", + -12.223665237426758 + ], + [ + "bel", + -12.223980903625488 + ], + [ + "▁Advertising", + -12.223987579345703 + ], + [ + "▁speeches", + -12.224346160888672 + ], + [ + "▁simplify", + -12.224468231201172 + ], + [ + "▁blends", + -12.224525451660156 + ], + [ + "▁spider", + -12.224616050720215 + ], + [ + "▁Dev", + -12.224641799926758 + ], + [ + "▁poison", + -12.224682807922363 + ], + [ + "▁Count", + -12.224861145019531 + ], + [ + "▁Alexa", + -12.225046157836914 + ], + [ + "▁playful", + -12.22510814666748 + ], + [ + "▁Corn", + -12.225142478942871 + ], + [ + "▁clerk", + -12.225159645080566 + ], + [ + "▁Palestine", + -12.225232124328613 + ], + [ + "▁thrilling", + -12.225366592407227 + ], + [ + "▁timer", + -12.22537612915039 + ], + [ + "▁despair", + -12.225386619567871 + ], + [ + "▁Listing", + -12.225541114807129 + ], + [ + "▁scanner", + -12.225582122802734 + ], + [ + "pl", + -12.225679397583008 + ], + [ + "▁Mint", + -12.225754737854004 + ], + [ + "▁downward", + -12.225757598876953 + ], + [ + "far", + -12.22603702545166 + ], + [ + "▁classics", + -12.226095199584961 + ], + [ + "▁dubbed", + -12.226149559020996 + ], + [ + "▁enroll", + -12.226340293884277 + ], + [ + "▁Jar", + -12.22638988494873 + ], + [ + "▁1947", + -12.22658920288086 + ], + [ + "▁burnt", + -12.226592063903809 + ], + [ + "▁compartment", + -12.22663402557373 + ], + [ + "▁Maya", + -12.22668170928955 + ], + [ + "▁1200", + -12.226728439331055 + ], + [ + "▁Westminster", + -12.226757049560547 + ], + [ + "▁1080", + -12.226776123046875 + ], + [ + "▁nickel", + -12.226848602294922 + ], + [ + "▁Desktop", + -12.226936340332031 + ], + [ + "▁mock", + -12.226980209350586 + ], + [ + "member", + -12.227049827575684 + ], + [ + "▁geography", + -12.227133750915527 + ], + [ + "▁butterfly", + -12.227346420288086 + ], + [ + "▁weaker", + -12.227348327636719 + ], + [ + "▁Bangkok", + -12.227397918701172 + ], + [ + "▁1957", + -12.227447509765625 + ], + [ + "▁wives", + -12.227556228637695 + ], + [ + "▁Songs", + -12.227574348449707 + ], + [ + "▁Lunch", + -12.22771167755127 + ], + [ + "▁destiny", + -12.227718353271484 + ], + [ + "▁Manufacturer", + -12.227807998657227 + ], + [ + "▁thyroid", + -12.227941513061523 + ], + [ + "180", + -12.227962493896484 + ], + [ + "▁bombing", + -12.228065490722656 + ], + [ + "▁evolutionary", + -12.228153228759766 + ], + [ + "▁{", + -12.228163719177246 + ], + [ + "▁wandering", + -12.228414535522461 + ], + [ + "▁Already", + -12.228463172912598 + ], + [ + "▁Hy", + -12.228475570678711 + ], + [ + "▁Diane", + -12.228477478027344 + ], + [ + "▁distributors", + -12.228558540344238 + ], + [ + "▁Offering", + -12.228644371032715 + ], + [ + "▁terrifying", + -12.228696823120117 + ], + [ + "▁Asset", + -12.228885650634766 + ], + [ + "▁corrosion", + -12.229033470153809 + ], + [ + "▁confront", + -12.22915267944336 + ], + [ + "▁Betty", + -12.22918701171875 + ], + [ + "▁affection", + -12.229267120361328 + ], + [ + "▁TIME", + -12.229269027709961 + ], + [ + "▁exempt", + -12.229349136352539 + ], + [ + "▁advertisers", + -12.229375839233398 + ], + [ + "▁unhealthy", + -12.22979736328125 + ], + [ + "▁Assistance", + -12.22988510131836 + ], + [ + "▁Romans", + -12.230121612548828 + ], + [ + "▁pitching", + -12.23012638092041 + ], + [ + "ila", + -12.230143547058105 + ], + [ + "▁folders", + -12.230169296264648 + ], + [ + "▁loft", + -12.230262756347656 + ], + [ + "▁filtering", + -12.23031234741211 + ], + [ + "▁Uganda", + -12.230439186096191 + ], + [ + "▁disposed", + -12.230523109436035 + ], + [ + "▁Yep", + -12.230660438537598 + ], + [ + "▁chunk", + -12.230770111083984 + ], + [ + "▁obstacle", + -12.230830192565918 + ], + [ + "▁dye", + -12.230875015258789 + ], + [ + "▁Mortgage", + -12.23095417022705 + ], + [ + "without", + -12.231003761291504 + ], + [ + "▁Cinema", + -12.2310209274292 + ], + [ + "▁configurations", + -12.231023788452148 + ], + [ + "▁signatures", + -12.231042861938477 + ], + [ + "▁clusters", + -12.231101036071777 + ], + [ + "▁Libya", + -12.231173515319824 + ], + [ + "▁Barn", + -12.231256484985352 + ], + [ + "▁Methodist", + -12.231374740600586 + ], + [ + "▁condemned", + -12.231549263000488 + ], + [ + "▁corridor", + -12.231568336486816 + ], + [ + "▁Jackie", + -12.23161506652832 + ], + [ + "▁Artists", + -12.231888771057129 + ], + [ + "▁ni", + -12.232013702392578 + ], + [ + "▁supreme", + -12.232048034667969 + ], + [ + "▁Rhode", + -12.232253074645996 + ], + [ + "▁Armed", + -12.232328414916992 + ], + [ + "▁Device", + -12.232426643371582 + ], + [ + "▁shark", + -12.232536315917969 + ], + [ + "▁weighs", + -12.232654571533203 + ], + [ + "▁Jaw", + -12.232685089111328 + ], + [ + "▁Finish", + -12.232701301574707 + ], + [ + "▁orchestra", + -12.232756614685059 + ], + [ + "▁drones", + -12.232830047607422 + ], + [ + "▁Isle", + -12.23285961151123 + ], + [ + "▁sausage", + -12.232942581176758 + ], + [ + "▁epidemic", + -12.233051300048828 + ], + [ + "ux", + -12.233078956604004 + ], + [ + "HA", + -12.233154296875 + ], + [ + "index", + -12.23326301574707 + ], + [ + "▁exploitation", + -12.233268737792969 + ], + [ + "▁squares", + -12.233287811279297 + ], + [ + "▁Coal", + -12.233494758605957 + ], + [ + "force", + -12.233878135681152 + ], + [ + "nis", + -12.234044075012207 + ], + [ + "▁Letters", + -12.234233856201172 + ], + [ + "▁Integrated", + -12.234341621398926 + ], + [ + "▁defendants", + -12.23443603515625 + ], + [ + "▁MRI", + -12.234505653381348 + ], + [ + "▁Princeton", + -12.234657287597656 + ], + [ + "▁missiles", + -12.23478889465332 + ], + [ + "▁buck", + -12.234835624694824 + ], + [ + "▁conceived", + -12.234881401062012 + ], + [ + "▁hallway", + -12.234923362731934 + ], + [ + "▁Apollo", + -12.234971046447754 + ], + [ + "▁Gilbert", + -12.235088348388672 + ], + [ + "▁merge", + -12.235149383544922 + ], + [ + "▁warrior", + -12.235328674316406 + ], + [ + "▁inflammatory", + -12.235445022583008 + ], + [ + "▁acquisitions", + -12.23550796508789 + ], + [ + "▁refuses", + -12.235730171203613 + ], + [ + "▁↑", + -12.235856056213379 + ], + [ + "▁Score", + -12.235868453979492 + ], + [ + "360", + -12.236199378967285 + ], + [ + "NE", + -12.236247062683105 + ], + [ + "▁Gran", + -12.236248970031738 + ], + [ + "call", + -12.236336708068848 + ], + [ + "▁obsession", + -12.236457824707031 + ], + [ + "▁107", + -12.236462593078613 + ], + [ + "ct", + -12.236532211303711 + ], + [ + "▁Automotive", + -12.236543655395508 + ], + [ + "▁Movies", + -12.236563682556152 + ], + [ + "▁galaxy", + -12.236566543579102 + ], + [ + "▁Hugh", + -12.236603736877441 + ], + [ + "▁puzzles", + -12.23711109161377 + ], + [ + "140", + -12.237113952636719 + ], + [ + "▁cleaners", + -12.237264633178711 + ], + [ + "▁predecessor", + -12.237393379211426 + ], + [ + "▁researched", + -12.237658500671387 + ], + [ + "▁rocky", + -12.237666130065918 + ], + [ + "▁ng", + -12.237833976745605 + ], + [ + "▁Inspired", + -12.23785400390625 + ], + [ + "great", + -12.23793888092041 + ], + [ + "bot", + -12.237974166870117 + ], + [ + "exe", + -12.238011360168457 + ], + [ + "▁runway", + -12.238077163696289 + ], + [ + "▁Portal", + -12.238097190856934 + ], + [ + "▁residing", + -12.23819637298584 + ], + [ + "▁cartridge", + -12.238221168518066 + ], + [ + "▁Mouse", + -12.238362312316895 + ], + [ + "▁CB", + -12.238417625427246 + ], + [ + "▁Evil", + -12.238447189331055 + ], + [ + "▁Curtis", + -12.238504409790039 + ], + [ + "▁spill", + -12.238513946533203 + ], + [ + "First", + -12.238598823547363 + ], + [ + "pack", + -12.23876953125 + ], + [ + "▁photographic", + -12.23884105682373 + ], + [ + "▁reproductive", + -12.23894214630127 + ], + [ + "▁stared", + -12.23896312713623 + ], + [ + "DA", + -12.238968849182129 + ], + [ + "▁warfare", + -12.239012718200684 + ], + [ + "▁Mod", + -12.23902416229248 + ], + [ + "▁Ye", + -12.23911190032959 + ], + [ + "▁flavours", + -12.239137649536133 + ], + [ + "▁issuing", + -12.239194869995117 + ], + [ + "ties", + -12.23920726776123 + ], + [ + "▁friction", + -12.239592552185059 + ], + [ + "▁impressions", + -12.239727020263672 + ], + [ + "▁PD", + -12.239790916442871 + ], + [ + "▁circuits", + -12.239856719970703 + ], + [ + "▁fulfillment", + -12.239972114562988 + ], + [ + "▁Seth", + -12.239994049072266 + ], + [ + "▁Administrator", + -12.240055084228516 + ], + [ + "▁Links", + -12.240087509155273 + ], + [ + "demand", + -12.240203857421875 + ], + [ + "▁Cheese", + -12.24036693572998 + ], + [ + "vin", + -12.240482330322266 + ], + [ + "▁„", + -12.240543365478516 + ], + [ + "▁decreases", + -12.240588188171387 + ], + [ + "bert", + -12.240604400634766 + ], + [ + "▁Louise", + -12.240761756896973 + ], + [ + "▁Scout", + -12.24087142944336 + ], + [ + "▁stacked", + -12.24089241027832 + ], + [ + "▁Bur", + -12.240915298461914 + ], + [ + "▁Shane", + -12.241451263427734 + ], + [ + "▁motors", + -12.241459846496582 + ], + [ + "▁assumes", + -12.24153995513916 + ], + [ + "▁stall", + -12.241572380065918 + ], + [ + "▁abusive", + -12.241595268249512 + ], + [ + "▁lettuce", + -12.241734504699707 + ], + [ + "▁outlines", + -12.24181842803955 + ], + [ + "▁bubbles", + -12.241826057434082 + ], + [ + "NY", + -12.241847038269043 + ], + [ + "ric", + -12.241958618164062 + ], + [ + "▁immunity", + -12.242022514343262 + ], + [ + "▁Bend", + -12.242249488830566 + ], + [ + "▁inception", + -12.242361068725586 + ], + [ + "▁avid", + -12.242390632629395 + ], + [ + "▁Springfield", + -12.242566108703613 + ], + [ + "▁Pressure", + -12.242578506469727 + ], + [ + "▁Leading", + -12.242656707763672 + ], + [ + "NT", + -12.242915153503418 + ], + [ + "▁deliberate", + -12.242962837219238 + ], + [ + "▁parental", + -12.242997169494629 + ], + [ + "fast", + -12.243107795715332 + ], + [ + "▁Legend", + -12.243115425109863 + ], + [ + "▁understandable", + -12.243121147155762 + ], + [ + "▁Windsor", + -12.243285179138184 + ], + [ + "▁allergy", + -12.243427276611328 + ], + [ + "▁clearer", + -12.243453025817871 + ], + [ + "ib", + -12.243475914001465 + ], + [ + "▁bins", + -12.24351978302002 + ], + [ + "▁Rochester", + -12.2435302734375 + ], + [ + "▁openings", + -12.243658065795898 + ], + [ + "▁Machinery", + -12.24388313293457 + ], + [ + "▁diary", + -12.244221687316895 + ], + [ + "bury", + -12.244275093078613 + ], + [ + "▁ga", + -12.24437427520752 + ], + [ + "tron", + -12.244447708129883 + ], + [ + "path", + -12.244561195373535 + ], + [ + "▁gems", + -12.24471664428711 + ], + [ + "▁patrons", + -12.24483871459961 + ], + [ + "▁scream", + -12.244860649108887 + ], + [ + "▁Tara", + -12.244880676269531 + ], + [ + "word", + -12.244973182678223 + ], + [ + "▁Massage", + -12.245013236999512 + ], + [ + "▁mentoring", + -12.245051383972168 + ], + [ + "▁friendships", + -12.245173454284668 + ], + [ + "▁Seems", + -12.245667457580566 + ], + [ + "▁Congressional", + -12.245805740356445 + ], + [ + "▁Background", + -12.245808601379395 + ], + [ + "▁kindergarten", + -12.24588680267334 + ], + [ + "cal", + -12.246060371398926 + ], + [ + "▁breasts", + -12.246135711669922 + ], + [ + "▁worksheets", + -12.246296882629395 + ], + [ + "▁tolerate", + -12.24631118774414 + ], + [ + "▁Activity", + -12.246382713317871 + ], + [ + "country", + -12.246467590332031 + ], + [ + "▁competence", + -12.246475219726562 + ], + [ + "▁OFF", + -12.246596336364746 + ], + [ + "▁Das", + -12.246885299682617 + ], + [ + "▁fascinated", + -12.24703311920166 + ], + [ + "▁Stevens", + -12.247047424316406 + ], + [ + "▁Azure", + -12.247106552124023 + ], + [ + "▁Officials", + -12.2473726272583 + ], + [ + "▁Jacksonville", + -12.247537612915039 + ], + [ + "▁footwear", + -12.247598648071289 + ], + [ + "ide", + -12.247716903686523 + ], + [ + "▁Patient", + -12.247774124145508 + ], + [ + "▁temples", + -12.247876167297363 + ], + [ + "normal", + -12.248021125793457 + ], + [ + "▁Sussex", + -12.248092651367188 + ], + [ + "flow", + -12.248162269592285 + ], + [ + "▁masks", + -12.24817943572998 + ], + [ + "▁pens", + -12.248190879821777 + ], + [ + "▁Th", + -12.248202323913574 + ], + [ + "▁fax", + -12.2486572265625 + ], + [ + "▁devotion", + -12.248675346374512 + ], + [ + "NASDAQ", + -12.2487154006958 + ], + [ + "▁expedition", + -12.248758316040039 + ], + [ + "▁Shield", + -12.248846054077148 + ], + [ + "▁Via", + -12.24886703491211 + ], + [ + "fu", + -12.248891830444336 + ], + [ + "▁Peterson", + -12.248956680297852 + ], + [ + "▁humour", + -12.24920654296875 + ], + [ + "▁Wendy", + -12.249272346496582 + ], + [ + "▁slopes", + -12.249282836914062 + ], + [ + "▁scalp", + -12.249314308166504 + ], + [ + "▁Wiring", + -12.249513626098633 + ], + [ + "▁1955", + -12.249560356140137 + ], + [ + "▁commissioner", + -12.249646186828613 + ], + [ + "▁OUR", + -12.249695777893066 + ], + [ + "▁intentional", + -12.249817848205566 + ], + [ + "▁Jets", + -12.249868392944336 + ], + [ + "▁parliamentary", + -12.250112533569336 + ], + [ + "▁111", + -12.250120162963867 + ], + [ + "▁Shares", + -12.250199317932129 + ], + [ + "▁Theresa", + -12.250232696533203 + ], + [ + "▁sued", + -12.25033187866211 + ], + [ + "▁exceeds", + -12.250828742980957 + ], + [ + "pen", + -12.250865936279297 + ], + [ + "EC", + -12.250875473022461 + ], + [ + "▁respectful", + -12.250892639160156 + ], + [ + "▁sickness", + -12.250898361206055 + ], + [ + "▁Ferguson", + -12.250971794128418 + ], + [ + "▁NA", + -12.251060485839844 + ], + [ + "▁sticker", + -12.25106143951416 + ], + [ + "▁contracted", + -12.25106430053711 + ], + [ + "▁Sister", + -12.251114845275879 + ], + [ + "▁Celtic", + -12.251155853271484 + ], + [ + "Hot", + -12.251228332519531 + ], + [ + "▁cheating", + -12.251428604125977 + ], + [ + "▁PlayStation", + -12.251591682434082 + ], + [ + "▁fines", + -12.251656532287598 + ], + [ + "▁Asked", + -12.25182819366455 + ], + [ + "▁Employees", + -12.252143859863281 + ], + [ + "▁ally", + -12.25217342376709 + ], + [ + "▁settlements", + -12.252196311950684 + ], + [ + "▁blender", + -12.252226829528809 + ], + [ + "ade", + -12.25226879119873 + ], + [ + "▁volatile", + -12.252408027648926 + ], + [ + "▁flooded", + -12.252885818481445 + ], + [ + "▁remarkably", + -12.253110885620117 + ], + [ + "▁chemotherapy", + -12.253161430358887 + ], + [ + "▁probable", + -12.253172874450684 + ], + [ + "▁Firstly", + -12.253181457519531 + ], + [ + "▁Romania", + -12.253355026245117 + ], + [ + "▁Sector", + -12.253541946411133 + ], + [ + "▁grease", + -12.253620147705078 + ], + [ + "▁Evolution", + -12.253697395324707 + ], + [ + "▁Northeast", + -12.253793716430664 + ], + [ + "▁Zach", + -12.253793716430664 + ], + [ + "hood", + -12.253829956054688 + ], + [ + "▁bodily", + -12.253859519958496 + ], + [ + "pc", + -12.253889083862305 + ], + [ + "▁Painting", + -12.253966331481934 + ], + [ + "▁caffeine", + -12.253999710083008 + ], + [ + "▁Bryant", + -12.25406265258789 + ], + [ + "▁terribly", + -12.254100799560547 + ], + [ + "▁Reality", + -12.25421142578125 + ], + [ + "▁Arm", + -12.25422191619873 + ], + [ + "▁Advisor", + -12.254231452941895 + ], + [ + "▁Myanmar", + -12.254287719726562 + ], + [ + "▁popping", + -12.254345893859863 + ], + [ + "▁Female", + -12.25487232208252 + ], + [ + "ello", + -12.25490665435791 + ], + [ + "ob", + -12.2549409866333 + ], + [ + "▁Articles", + -12.255196571350098 + ], + [ + "▁mainland", + -12.255280494689941 + ], + [ + "▁Hispanic", + -12.255305290222168 + ], + [ + "▁Domain", + -12.255440711975098 + ], + [ + "▁Daddy", + -12.255548477172852 + ], + [ + "▁Herald", + -12.255611419677734 + ], + [ + "▁feminist", + -12.255683898925781 + ], + [ + "tie", + -12.255684852600098 + ], + [ + "designed", + -12.255733489990234 + ], + [ + "▁magnet", + -12.255741119384766 + ], + [ + "▁bites", + -12.255754470825195 + ], + [ + "▁Newport", + -12.255912780761719 + ], + [ + "▁pas", + -12.25604248046875 + ], + [ + "▁Evaluation", + -12.256052017211914 + ], + [ + "▁Arch", + -12.256183624267578 + ], + [ + "▁restoring", + -12.256281852722168 + ], + [ + "▁Puck", + -12.25635814666748 + ], + [ + "▁Noble", + -12.256401062011719 + ], + [ + "▁Platinum", + -12.25643253326416 + ], + [ + "▁Acid", + -12.256475448608398 + ], + [ + "▁Grinding", + -12.256521224975586 + ], + [ + "▁Gil", + -12.256579399108887 + ], + [ + "ú", + -12.25664234161377 + ], + [ + "▁asphalt", + -12.257083892822266 + ], + [ + "▁toilets", + -12.257238388061523 + ], + [ + "▁Monroe", + -12.257405281066895 + ], + [ + "▁Ticket", + -12.257558822631836 + ], + [ + "▁ruined", + -12.257622718811035 + ], + [ + "▁wit", + -12.257832527160645 + ], + [ + "▁Shannon", + -12.258049964904785 + ], + [ + "▁belongings", + -12.25815486907959 + ], + [ + "▁deliveries", + -12.258164405822754 + ], + [ + "▁exemption", + -12.258199691772461 + ], + [ + "ami", + -12.258302688598633 + ], + [ + "▁Extension", + -12.258376121520996 + ], + [ + "▁ambient", + -12.25847053527832 + ], + [ + "▁webinar", + -12.258668899536133 + ], + [ + "▁unpredictable", + -12.2589750289917 + ], + [ + "▁basin", + -12.259003639221191 + ], + [ + "▁atop", + -12.259032249450684 + ], + [ + "▁Elliott", + -12.259140014648438 + ], + [ + "▁formulated", + -12.259156227111816 + ], + [ + "▁Bangalore", + -12.259207725524902 + ], + [ + "▁fundamentally", + -12.259385108947754 + ], + [ + "▁privileges", + -12.259488105773926 + ], + [ + "▁fuse", + -12.259502410888672 + ], + [ + "▁Klein", + -12.25951862335205 + ], + [ + "▁lone", + -12.259533882141113 + ], + [ + "▁PVC", + -12.259627342224121 + ], + [ + "▁herb", + -12.25974178314209 + ], + [ + "▁urging", + -12.259799003601074 + ], + [ + "▁Honestly", + -12.259800910949707 + ], + [ + "▁Hindi", + -12.260014533996582 + ], + [ + "▁UT", + -12.260108947753906 + ], + [ + "▁melting", + -12.26047420501709 + ], + [ + "▁toxins", + -12.26061725616455 + ], + [ + "▁paradigm", + -12.260782241821289 + ], + [ + "▁Been", + -12.260985374450684 + ], + [ + "▁Boulevard", + -12.261032104492188 + ], + [ + "▁Wake", + -12.261164665222168 + ], + [ + "▁governmental", + -12.261265754699707 + ], + [ + "▁Sur", + -12.261300086975098 + ], + [ + "▁SSL", + -12.261301040649414 + ], + [ + "val", + -12.261322975158691 + ], + [ + "▁concludes", + -12.26150894165039 + ], + [ + "berry", + -12.261632919311523 + ], + [ + "▁insider", + -12.261695861816406 + ], + [ + "▁Sie", + -12.2617826461792 + ], + [ + "▁Buck", + -12.261818885803223 + ], + [ + "▁browsers", + -12.261890411376953 + ], + [ + "▁emergence", + -12.261990547180176 + ], + [ + "▁touchdowns", + -12.262543678283691 + ], + [ + "▁violate", + -12.262613296508789 + ], + [ + "written", + -12.262804985046387 + ], + [ + "▁Legacy", + -12.263395309448242 + ], + [ + "nie", + -12.263554573059082 + ], + [ + "▁Rainbow", + -12.263609886169434 + ], + [ + "▁Vi", + -12.263630867004395 + ], + [ + "▁Interview", + -12.263692855834961 + ], + [ + "yu", + -12.263724327087402 + ], + [ + "tro", + -12.263829231262207 + ], + [ + "▁tucked", + -12.263871192932129 + ], + [ + "▁borrowed", + -12.263893127441406 + ], + [ + "▁plots", + -12.263904571533203 + ], + [ + "▁Rural", + -12.263940811157227 + ], + [ + "▁doubles", + -12.2639799118042 + ], + [ + "▁STEM", + -12.264251708984375 + ], + [ + "▁Ethics", + -12.264384269714355 + ], + [ + "▁generosity", + -12.264398574829102 + ], + [ + "▁scoop", + -12.264532089233398 + ], + [ + "▁Democracy", + -12.264555931091309 + ], + [ + "▁ERA", + -12.264909744262695 + ], + [ + "press", + -12.265029907226562 + ], + [ + "▁halls", + -12.265225410461426 + ], + [ + "▁Fi", + -12.265297889709473 + ], + [ + "▁alleviate", + -12.265342712402344 + ], + [ + "▁Legislature", + -12.265361785888672 + ], + [ + "▁Depression", + -12.265480041503906 + ], + [ + "▁comparative", + -12.265560150146484 + ], + [ + "HR", + -12.2655611038208 + ], + [ + "▁authenticity", + -12.265583038330078 + ], + [ + "▁recycle", + -12.265840530395508 + ], + [ + "▁shampoo", + -12.266091346740723 + ], + [ + "▁photographed", + -12.266131401062012 + ], + [ + "▁dug", + -12.266146659851074 + ], + [ + "▁Giant", + -12.26633358001709 + ], + [ + "▁enduring", + -12.266487121582031 + ], + [ + "▁Richardson", + -12.266642570495605 + ], + [ + "▁Lopez", + -12.266772270202637 + ], + [ + "▁Fabric", + -12.26691722869873 + ], + [ + "▁Menu", + -12.267184257507324 + ], + [ + "▁1939", + -12.26729965209961 + ], + [ + "▁jealous", + -12.267338752746582 + ], + [ + "▁Brook", + -12.267353057861328 + ], + [ + "▁Doc", + -12.267366409301758 + ], + [ + "▁Tor", + -12.267468452453613 + ], + [ + "▁CAD", + -12.267606735229492 + ], + [ + "oo", + -12.267979621887207 + ], + [ + "▁coup", + -12.268129348754883 + ], + [ + "▁owing", + -12.268409729003906 + ], + [ + "▁leaning", + -12.268753051757812 + ], + [ + "▁miniature", + -12.268815994262695 + ], + [ + "▁reinforce", + -12.269006729125977 + ], + [ + "▁EST", + -12.26913070678711 + ], + [ + "▁Motors", + -12.269158363342285 + ], + [ + "▁Flag", + -12.26917552947998 + ], + [ + "▁quo", + -12.269194602966309 + ], + [ + "▁Spot", + -12.26921272277832 + ], + [ + "▁Atlas", + -12.269577026367188 + ], + [ + "▁Teen", + -12.269580841064453 + ], + [ + "▁contests", + -12.269667625427246 + ], + [ + "▁Gateway", + -12.27005386352539 + ], + [ + "▁petrol", + -12.270184516906738 + ], + [ + "▁populated", + -12.270190238952637 + ], + [ + "▁knitting", + -12.270271301269531 + ], + [ + "▁Springer", + -12.270272254943848 + ], + [ + "▁reunion", + -12.270308494567871 + ], + [ + "▁unbelievable", + -12.270363807678223 + ], + [ + "▁succession", + -12.270421981811523 + ], + [ + "©", + -12.27051830291748 + ], + [ + "tree", + -12.270593643188477 + ], + [ + "local", + -12.27068042755127 + ], + [ + "▁accomplishment", + -12.270820617675781 + ], + [ + "▁striker", + -12.270915031433105 + ], + [ + "▁é", + -12.271346092224121 + ], + [ + "▁remodel", + -12.27161979675293 + ], + [ + "CE", + -12.271782875061035 + ], + [ + "▁5000", + -12.271953582763672 + ], + [ + "▁triumph", + -12.272119522094727 + ], + [ + "▁Lamp", + -12.272234916687012 + ], + [ + "▁warranties", + -12.272266387939453 + ], + [ + "▁noodles", + -12.272469520568848 + ], + [ + "▁thriller", + -12.272652626037598 + ], + [ + "▁mechanic", + -12.272705078125 + ], + [ + "▁fountain", + -12.27270793914795 + ], + [ + "▁Porsche", + -12.27272891998291 + ], + [ + "▁editions", + -12.272817611694336 + ], + [ + "elli", + -12.272828102111816 + ], + [ + "▁Suddenly", + -12.272957801818848 + ], + [ + "▁Pub", + -12.272961616516113 + ], + [ + "▁depths", + -12.273088455200195 + ], + [ + "ë", + -12.273096084594727 + ], + [ + "▁beforehand", + -12.273115158081055 + ], + [ + "▁insect", + -12.273496627807617 + ], + [ + "▁regression", + -12.273513793945312 + ], + [ + "▁skeptical", + -12.273533821105957 + ], + [ + "wick", + -12.273740768432617 + ], + [ + "▁biking", + -12.273920059204102 + ], + [ + "quarter", + -12.274046897888184 + ], + [ + "▁Hydro", + -12.274346351623535 + ], + [ + "▁hacking", + -12.274359703063965 + ], + [ + "▁wiki", + -12.274378776550293 + ], + [ + "▁travellers", + -12.274953842163086 + ], + [ + "▁witch", + -12.274955749511719 + ], + [ + "▁attic", + -12.274985313415527 + ], + [ + "▁Gel", + -12.275060653686523 + ], + [ + "▁cheat", + -12.275115966796875 + ], + [ + "▁Expect", + -12.27511978149414 + ], + [ + "▁coordinates", + -12.275177001953125 + ], + [ + "▁broth", + -12.275209426879883 + ], + [ + "▁questionable", + -12.275259017944336 + ], + [ + "ned", + -12.275547981262207 + ], + [ + "▁refuge", + -12.275728225708008 + ], + [ + "St", + -12.275739669799805 + ], + [ + "▁SIM", + -12.275779724121094 + ], + [ + "▁ambitions", + -12.275856018066406 + ], + [ + "▁EUR", + -12.275992393493652 + ], + [ + "▁guitarist", + -12.27605152130127 + ], + [ + "▁Chip", + -12.276124954223633 + ], + [ + "▁chickens", + -12.276169776916504 + ], + [ + "▁Yemen", + -12.27646541595459 + ], + [ + "▁Ju", + -12.276542663574219 + ], + [ + "▁pigs", + -12.276573181152344 + ], + [ + "▁mutations", + -12.276605606079102 + ], + [ + "▁prince", + -12.276629447937012 + ], + [ + "▁unused", + -12.276693344116211 + ], + [ + "▁rebound", + -12.276765823364258 + ], + [ + "▁stimulus", + -12.276833534240723 + ], + [ + "rise", + -12.276885032653809 + ], + [ + "tha", + -12.277077674865723 + ], + [ + "▁complementary", + -12.277202606201172 + ], + [ + "▁greeting", + -12.277323722839355 + ], + [ + "▁chili", + -12.27733039855957 + ], + [ + "▁Abbey", + -12.277572631835938 + ], + [ + "▁Repeat", + -12.277573585510254 + ], + [ + "▁jackets", + -12.277633666992188 + ], + [ + "▁Mer", + -12.277735710144043 + ], + [ + "▁constructive", + -12.277959823608398 + ], + [ + "center", + -12.278079986572266 + ], + [ + "area", + -12.278133392333984 + ], + [ + "▁Alternative", + -12.278524398803711 + ], + [ + "BE", + -12.279021263122559 + ], + [ + "▁Individuals", + -12.279083251953125 + ], + [ + "▁suffers", + -12.2791109085083 + ], + [ + "▁recruited", + -12.279217720031738 + ], + [ + "tis", + -12.279295921325684 + ], + [ + "▁Nobel", + -12.279326438903809 + ], + [ + "LE", + -12.279377937316895 + ], + [ + "▁DNS", + -12.279397010803223 + ], + [ + "▁owed", + -12.279446601867676 + ], + [ + "▁exclusion", + -12.279773712158203 + ], + [ + "▁hydro", + -12.279976844787598 + ], + [ + "▁Domestic", + -12.280169486999512 + ], + [ + "▁Doctors", + -12.280197143554688 + ], + [ + "▁Residents", + -12.280247688293457 + ], + [ + "ding", + -12.280263900756836 + ], + [ + "▁baths", + -12.280338287353516 + ], + [ + "▁Minor", + -12.28035831451416 + ], + [ + "▁sci", + -12.280370712280273 + ], + [ + "▁upholstery", + -12.28045654296875 + ], + [ + "▁unacceptable", + -12.280495643615723 + ], + [ + "▁stamped", + -12.28055477142334 + ], + [ + "▁referenced", + -12.28067684173584 + ], + [ + "▁admits", + -12.280745506286621 + ], + [ + "▁traumatic", + -12.280762672424316 + ], + [ + "mb", + -12.280879974365234 + ], + [ + "▁monument", + -12.280885696411133 + ], + [ + "▁Casa", + -12.280888557434082 + ], + [ + "▁occupy", + -12.280921936035156 + ], + [ + "▁Ace", + -12.280961036682129 + ], + [ + "▁costing", + -12.280998229980469 + ], + [ + "▁Mont", + -12.281075477600098 + ], + [ + "▁Pu", + -12.281098365783691 + ], + [ + "▁dependence", + -12.281163215637207 + ], + [ + "girl", + -12.281183242797852 + ], + [ + "▁paddle", + -12.28128719329834 + ], + [ + "▁Distribution", + -12.281330108642578 + ], + [ + "▁Pakistani", + -12.281466484069824 + ], + [ + "SO", + -12.281502723693848 + ], + [ + "uma", + -12.2815580368042 + ], + [ + "▁blankets", + -12.281684875488281 + ], + [ + "▁mindful", + -12.281835556030273 + ], + [ + "▁ambulance", + -12.281978607177734 + ], + [ + "▁Merry", + -12.282154083251953 + ], + [ + "▁chess", + -12.282231330871582 + ], + [ + "▁plaque", + -12.2822904586792 + ], + [ + "OK", + -12.282333374023438 + ], + [ + "▁exceeding", + -12.282402038574219 + ], + [ + "▁memo", + -12.282491683959961 + ], + [ + "▁Afghan", + -12.282641410827637 + ], + [ + "▁southeast", + -12.282678604125977 + ], + [ + "▁bloom", + -12.28271484375 + ], + [ + "▁sorting", + -12.2827730178833 + ], + [ + "▁diagnose", + -12.282841682434082 + ], + [ + "▁competed", + -12.28298568725586 + ], + [ + "▁Stick", + -12.283111572265625 + ], + [ + "used", + -12.283123970031738 + ], + [ + "·", + -12.283225059509277 + ], + [ + "▁Gandhi", + -12.283238410949707 + ], + [ + "▁beard", + -12.283309936523438 + ], + [ + "▁spinach", + -12.283751487731934 + ], + [ + "▁antibody", + -12.283843994140625 + ], + [ + "▁attracts", + -12.283889770507812 + ], + [ + "▁respects", + -12.283968925476074 + ], + [ + "▁curse", + -12.284109115600586 + ], + [ + "▁Mohammed", + -12.284131050109863 + ], + [ + "▁Tile", + -12.28420639038086 + ], + [ + "system", + -12.284219741821289 + ], + [ + "▁phenomenal", + -12.284340858459473 + ], + [ + "▁electron", + -12.28446102142334 + ], + [ + "▁Trial", + -12.284626007080078 + ], + [ + "▁qualitative", + -12.284661293029785 + ], + [ + "▁Kara", + -12.284708976745605 + ], + [ + "▁Za", + -12.28471851348877 + ], + [ + "aged", + -12.284854888916016 + ], + [ + "▁1941", + -12.285089492797852 + ], + [ + "esh", + -12.285171508789062 + ], + [ + "▁Recreation", + -12.285177230834961 + ], + [ + "▁favourites", + -12.285187721252441 + ], + [ + "▁sandy", + -12.28538990020752 + ], + [ + "▁pumping", + -12.28541374206543 + ], + [ + "lib", + -12.285428047180176 + ], + [ + "▁canopy", + -12.285590171813965 + ], + [ + "▁brightness", + -12.285630226135254 + ], + [ + "▁counselor", + -12.285667419433594 + ], + [ + "ele", + -12.285676002502441 + ], + [ + "▁AF", + -12.285956382751465 + ], + [ + "▁fills", + -12.286310195922852 + ], + [ + "▁silicone", + -12.286460876464844 + ], + [ + "▁Medal", + -12.286556243896484 + ], + [ + "lasting", + -12.2868013381958 + ], + [ + "▁perceptions", + -12.286832809448242 + ], + [ + "dr", + -12.28689956665039 + ], + [ + "▁entertained", + -12.286928176879883 + ], + [ + "▁←", + -12.287203788757324 + ], + [ + "▁crawl", + -12.28736686706543 + ], + [ + "▁Beck", + -12.287403106689453 + ], + [ + "▁believer", + -12.287544250488281 + ], + [ + "▁baskets", + -12.287590980529785 + ], + [ + "▁whip", + -12.287639617919922 + ], + [ + "▁educating", + -12.287644386291504 + ], + [ + "ute", + -12.287721633911133 + ], + [ + "▁Issues", + -12.287748336791992 + ], + [ + "▁Theme", + -12.28789234161377 + ], + [ + "▁Russians", + -12.287903785705566 + ], + [ + "▁nod", + -12.288002014160156 + ], + [ + "▁Mir", + -12.288040161132812 + ], + [ + "▁fonts", + -12.288119316101074 + ], + [ + "▁Religion", + -12.288146018981934 + ], + [ + "▁Creator", + -12.288302421569824 + ], + [ + "▁1942", + -12.288346290588379 + ], + [ + "MO", + -12.28851318359375 + ], + [ + "▁senator", + -12.288545608520508 + ], + [ + "▁Archived", + -12.288715362548828 + ], + [ + "▁indirectly", + -12.288857460021973 + ], + [ + "▁Meta", + -12.28901481628418 + ], + [ + "▁yo", + -12.289087295532227 + ], + [ + "▁capsule", + -12.289464950561523 + ], + [ + "stream", + -12.28947925567627 + ], + [ + "fall", + -12.2894868850708 + ], + [ + "▁Extract", + -12.289546966552734 + ], + [ + "▁Kenneth", + -12.289555549621582 + ], + [ + "▁Snap", + -12.289724349975586 + ], + [ + "▁Across", + -12.289972305297852 + ], + [ + "ima", + -12.290037155151367 + ], + [ + "▁abnormal", + -12.290224075317383 + ], + [ + "▁Marriage", + -12.29029369354248 + ], + [ + "▁Agricultural", + -12.290389060974121 + ], + [ + "▁Registered", + -12.290412902832031 + ], + [ + "▁Patrol", + -12.290605545043945 + ], + [ + "here", + -12.290606498718262 + ], + [ + "▁Carroll", + -12.290617942810059 + ], + [ + "osa", + -12.290836334228516 + ], + [ + "▁surveyed", + -12.290940284729004 + ], + [ + "▁scarf", + -12.291070938110352 + ], + [ + "▁borrowing", + -12.29135799407959 + ], + [ + "▁Scientists", + -12.291411399841309 + ], + [ + "CT", + -12.291491508483887 + ], + [ + "▁Removal", + -12.29159927368164 + ], + [ + "▁forehead", + -12.291834831237793 + ], + [ + "▁Kin", + -12.291838645935059 + ], + [ + "▁checklist", + -12.292014122009277 + ], + [ + "Mar", + -12.292024612426758 + ], + [ + "α", + -12.292169570922852 + ], + [ + "▁writings", + -12.292196273803711 + ], + [ + "▁Manufacturers", + -12.292267799377441 + ], + [ + "▁royalty", + -12.292304992675781 + ], + [ + "▁Echo", + -12.292384147644043 + ], + [ + "▁dreaming", + -12.292632102966309 + ], + [ + "▁Wellington", + -12.292759895324707 + ], + [ + "▁prayed", + -12.292791366577148 + ], + [ + "TA", + -12.292866706848145 + ], + [ + "▁enzymes", + -12.29306697845459 + ], + [ + "zu", + -12.293074607849121 + ], + [ + "wp", + -12.293148040771484 + ], + [ + "▁Exercise", + -12.2931547164917 + ], + [ + "à", + -12.293174743652344 + ], + [ + "self", + -12.293190002441406 + ], + [ + "pot", + -12.293310165405273 + ], + [ + "▁keynote", + -12.293336868286133 + ], + [ + "▁Secondary", + -12.293379783630371 + ], + [ + "rum", + -12.293527603149414 + ], + [ + "▁curated", + -12.293609619140625 + ], + [ + "▁accelerated", + -12.293756484985352 + ], + [ + "▁Shortly", + -12.293867111206055 + ], + [ + "▁fries", + -12.29387378692627 + ], + [ + "active", + -12.29395580291748 + ], + [ + "▁citrus", + -12.294081687927246 + ], + [ + "White", + -12.294129371643066 + ], + [ + "Men", + -12.294166564941406 + ], + [ + "▁compensate", + -12.294191360473633 + ], + [ + "▁Cricket", + -12.294201850891113 + ], + [ + "▁Quinn", + -12.294219017028809 + ], + [ + "▁showcasing", + -12.294243812561035 + ], + [ + "cent", + -12.294323921203613 + ], + [ + "▁Elegant", + -12.294424057006836 + ], + [ + "▁amazingly", + -12.294500350952148 + ], + [ + "▁compares", + -12.294575691223145 + ], + [ + "▁converter", + -12.29465103149414 + ], + [ + "▁Neuro", + -12.294722557067871 + ], + [ + "▁Bet", + -12.294787406921387 + ], + [ + "▁Ferrari", + -12.295047760009766 + ], + [ + "▁wired", + -12.295389175415039 + ], + [ + "aging", + -12.295498847961426 + ], + [ + "▁Norfolk", + -12.295538902282715 + ], + [ + "▁Sage", + -12.295547485351562 + ], + [ + "RF", + -12.295655250549316 + ], + [ + "▁Brent", + -12.29566478729248 + ], + [ + "▁Fight", + -12.29566478729248 + ], + [ + "▁revival", + -12.295817375183105 + ], + [ + "▁Stress", + -12.29590129852295 + ], + [ + "▁dismiss", + -12.296072959899902 + ], + [ + "▁ED", + -12.296305656433105 + ], + [ + "▁Emirates", + -12.296343803405762 + ], + [ + "▁opioid", + -12.296370506286621 + ], + [ + "▁Flying", + -12.296507835388184 + ], + [ + "▁bidding", + -12.296576499938965 + ], + [ + "▁1954", + -12.296587944030762 + ], + [ + "▁preschool", + -12.296675682067871 + ], + [ + "▁AMD", + -12.296819686889648 + ], + [ + "▁Durham", + -12.297110557556152 + ], + [ + "▁FB", + -12.297131538391113 + ], + [ + "▁roulette", + -12.297133445739746 + ], + [ + "▁Infrastructure", + -12.297163963317871 + ], + [ + "▁passages", + -12.297479629516602 + ], + [ + "▁Silk", + -12.297628402709961 + ], + [ + "▁robbery", + -12.29783821105957 + ], + [ + "▁versatility", + -12.297842979431152 + ], + [ + "▁youngsters", + -12.29802417755127 + ], + [ + "▁Writer", + -12.29803466796875 + ], + [ + "▁Chester", + -12.2980375289917 + ], + [ + "▁temp", + -12.298140525817871 + ], + [ + "▁hierarchy", + -12.298401832580566 + ], + [ + "▁clan", + -12.298492431640625 + ], + [ + "▁stripes", + -12.298542976379395 + ], + [ + "▁Ri", + -12.298733711242676 + ], + [ + "▁refusal", + -12.29896354675293 + ], + [ + "▁dividends", + -12.299029350280762 + ], + [ + "▁embarrassed", + -12.2991361618042 + ], + [ + "▁LTD", + -12.299240112304688 + ], + [ + "▁junction", + -12.299437522888184 + ], + [ + "▁commissions", + -12.299500465393066 + ], + [ + "▁shareholder", + -12.299619674682617 + ], + [ + "▁fundamentals", + -12.299910545349121 + ], + [ + "▁sovereign", + -12.299933433532715 + ], + [ + "▁liabilities", + -12.300131797790527 + ], + [ + "BC", + -12.30018424987793 + ], + [ + "▁Changes", + -12.300222396850586 + ], + [ + "▁Writers", + -12.300227165222168 + ], + [ + "▁Seat", + -12.300280570983887 + ], + [ + "itis", + -12.300496101379395 + ], + [ + "▁patented", + -12.300504684448242 + ], + [ + "▁garment", + -12.300727844238281 + ], + [ + "▁RA", + -12.300750732421875 + ], + [ + "▁Away", + -12.300952911376953 + ], + [ + "▁canceled", + -12.300982475280762 + ], + [ + "▁Taliban", + -12.30100154876709 + ], + [ + "▁pairing", + -12.301024436950684 + ], + [ + "HP", + -12.30109977722168 + ], + [ + "Out", + -12.301114082336426 + ], + [ + "▁ballet", + -12.301280975341797 + ], + [ + "▁Pad", + -12.301314353942871 + ], + [ + "wi", + -12.3013916015625 + ], + [ + "▁Mechanical", + -12.30146312713623 + ], + [ + "pr", + -12.301465034484863 + ], + [ + "▁relocation", + -12.301477432250977 + ], + [ + "▁textile", + -12.301633834838867 + ], + [ + "▁Tours", + -12.301709175109863 + ], + [ + "▁sexuality", + -12.301836013793945 + ], + [ + "▁Joyce", + -12.301924705505371 + ], + [ + "▁eventual", + -12.302101135253906 + ], + [ + "▁Regulations", + -12.302207946777344 + ], + [ + "▁batting", + -12.302216529846191 + ], + [ + "▁theology", + -12.302278518676758 + ], + [ + "mel", + -12.302536964416504 + ], + [ + "▁Austrian", + -12.302550315856934 + ], + [ + "js", + -12.302553176879883 + ], + [ + "▁interrupted", + -12.302591323852539 + ], + [ + "eta", + -12.302682876586914 + ], + [ + "▁Exhibition", + -12.302698135375977 + ], + [ + "▁Char", + -12.302837371826172 + ], + [ + "▁commercially", + -12.302996635437012 + ], + [ + "▁Tre", + -12.303132057189941 + ], + [ + "▁DM", + -12.303201675415039 + ], + [ + "▁polar", + -12.303226470947266 + ], + [ + "▁Interactive", + -12.30333423614502 + ], + [ + "▁socio", + -12.303372383117676 + ], + [ + "▁scans", + -12.303594589233398 + ], + [ + "lite", + -12.303740501403809 + ], + [ + "▁210", + -12.303834915161133 + ], + [ + "▁Pentagon", + -12.303937911987305 + ], + [ + "▁1⁄2", + -12.30411148071289 + ], + [ + "▁reminiscent", + -12.304121017456055 + ], + [ + "▁mistaken", + -12.304168701171875 + ], + [ + "▁Solo", + -12.304210662841797 + ], + [ + "brook", + -12.304296493530273 + ], + [ + "▁Bow", + -12.304354667663574 + ], + [ + "▁Raj", + -12.304422378540039 + ], + [ + "▁pantry", + -12.30445671081543 + ], + [ + "GS", + -12.304579734802246 + ], + [ + "▁welding", + -12.304916381835938 + ], + [ + "VA", + -12.305107116699219 + ], + [ + "bra", + -12.305109977722168 + ], + [ + "▁£5", + -12.305126190185547 + ], + [ + "▁prepares", + -12.30518913269043 + ], + [ + "▁paints", + -12.305318832397461 + ], + [ + "▁neuro", + -12.305474281311035 + ], + [ + "▁possessions", + -12.305493354797363 + ], + [ + "▁Rugby", + -12.305511474609375 + ], + [ + "▁ignorant", + -12.30586051940918 + ], + [ + "put", + -12.305863380432129 + ], + [ + "aro", + -12.305975914001465 + ], + [ + "tail", + -12.306013107299805 + ], + [ + "▁bark", + -12.306097030639648 + ], + [ + "design", + -12.306440353393555 + ], + [ + "av", + -12.306450843811035 + ], + [ + "▁wander", + -12.306478500366211 + ], + [ + "try", + -12.306480407714844 + ], + [ + "▁masterpiece", + -12.306601524353027 + ], + [ + "▁Patricia", + -12.306666374206543 + ], + [ + "March", + -12.306711196899414 + ], + [ + "▁Thing", + -12.306782722473145 + ], + [ + "▁Activities", + -12.306814193725586 + ], + [ + "▁conception", + -12.307021141052246 + ], + [ + "▁Vatican", + -12.30711555480957 + ], + [ + "▁Quotes", + -12.307135581970215 + ], + [ + "▁daytime", + -12.307138442993164 + ], + [ + "eo", + -12.307159423828125 + ], + [ + "▁lifts", + -12.307198524475098 + ], + [ + "▁Musical", + -12.307295799255371 + ], + [ + "▁Mostly", + -12.307729721069336 + ], + [ + "PS", + -12.307733535766602 + ], + [ + "▁Bud", + -12.30773639678955 + ], + [ + "▁Martinez", + -12.307967185974121 + ], + [ + "▁afterward", + -12.307979583740234 + ], + [ + "phone", + -12.308177947998047 + ], + [ + "drive", + -12.308344841003418 + ], + [ + "▁pediatric", + -12.308423042297363 + ], + [ + "▁medals", + -12.308574676513672 + ], + [ + "▁faint", + -12.308749198913574 + ], + [ + "▁Files", + -12.308783531188965 + ], + [ + "▁cocoa", + -12.308849334716797 + ], + [ + "SS", + -12.308892250061035 + ], + [ + "▁Rica", + -12.308931350708008 + ], + [ + "▁Burns", + -12.308972358703613 + ], + [ + "▁Ny", + -12.308987617492676 + ], + [ + "▁backward", + -12.309025764465332 + ], + [ + "▁Templates", + -12.309052467346191 + ], + [ + "▁Patio", + -12.309072494506836 + ], + [ + "▁inquire", + -12.309178352355957 + ], + [ + "▁welcomes", + -12.309184074401855 + ], + [ + "▁cracking", + -12.309209823608398 + ], + [ + "lyn", + -12.309236526489258 + ], + [ + "▁effortlessly", + -12.309268951416016 + ], + [ + "▁Bernie", + -12.309419631958008 + ], + [ + "▁Finn", + -12.309481620788574 + ], + [ + "▁pushes", + -12.30948543548584 + ], + [ + "▁bridal", + -12.309537887573242 + ], + [ + "▁aggression", + -12.309696197509766 + ], + [ + "▁sharply", + -12.30984878540039 + ], + [ + "▁rotate", + -12.309896469116211 + ], + [ + "section", + -12.310029029846191 + ], + [ + "▁Accessories", + -12.310040473937988 + ], + [ + "▁burial", + -12.310052871704102 + ], + [ + "▁Prophet", + -12.3101167678833 + ], + [ + "▁loops", + -12.310123443603516 + ], + [ + "▁drift", + -12.3102445602417 + ], + [ + "▁Selection", + -12.310293197631836 + ], + [ + "▁villain", + -12.310440063476562 + ], + [ + "▁disrupt", + -12.31045150756836 + ], + [ + "▁Rating", + -12.310458183288574 + ], + [ + "▁creepy", + -12.310807228088379 + ], + [ + "BL", + -12.310954093933105 + ], + [ + "FA", + -12.31102180480957 + ], + [ + "▁ripe", + -12.311102867126465 + ], + [ + "▁Setting", + -12.311277389526367 + ], + [ + "▁Meyer", + -12.311283111572266 + ], + [ + "▁qui", + -12.311382293701172 + ], + [ + "▁Rapid", + -12.311384201049805 + ], + [ + "▁Harold", + -12.311509132385254 + ], + [ + "▁thrill", + -12.311542510986328 + ], + [ + "▁Stein", + -12.311722755432129 + ], + [ + "▁tilt", + -12.312053680419922 + ], + [ + "▁Pit", + -12.312079429626465 + ], + [ + "▁alot", + -12.312154769897461 + ], + [ + "▁Leslie", + -12.312164306640625 + ], + [ + "▁comforting", + -12.312187194824219 + ], + [ + "▁empowering", + -12.312348365783691 + ], + [ + "backed", + -12.312400817871094 + ], + [ + "▁conservatives", + -12.31264877319336 + ], + [ + "▁recalls", + -12.31270694732666 + ], + [ + "▁getaway", + -12.31283950805664 + ], + [ + "▁bowling", + -12.312959671020508 + ], + [ + "▁Myers", + -12.313102722167969 + ], + [ + "map", + -12.31348705291748 + ], + [ + "▁230", + -12.313531875610352 + ], + [ + "PDF", + -12.31357192993164 + ], + [ + "▁abide", + -12.313580513000488 + ], + [ + "▁dice", + -12.313684463500977 + ], + [ + "lands", + -12.313942909240723 + ], + [ + "▁Rear", + -12.314048767089844 + ], + [ + "▁oneself", + -12.314098358154297 + ], + [ + "▁treasures", + -12.314311027526855 + ], + [ + "▁swift", + -12.314314842224121 + ], + [ + "▁Kris", + -12.314481735229492 + ], + [ + "▁needles", + -12.31450080871582 + ], + [ + "▁polling", + -12.314501762390137 + ], + [ + "▁superhero", + -12.314668655395508 + ], + [ + "author", + -12.31479263305664 + ], + [ + "▁Nurse", + -12.315018653869629 + ], + [ + "▁oval", + -12.31503963470459 + ], + [ + "small", + -12.315354347229004 + ], + [ + "cor", + -12.31536865234375 + ], + [ + "▁AV", + -12.315467834472656 + ], + [ + "jet", + -12.315567016601562 + ], + [ + "▁crosses", + -12.315613746643066 + ], + [ + "din", + -12.31564712524414 + ], + [ + "leading", + -12.315690040588379 + ], + [ + "▁briefing", + -12.315722465515137 + ], + [ + "▁solidarity", + -12.315728187561035 + ], + [ + "▁accustomed", + -12.31581974029541 + ], + [ + "▁hunters", + -12.315923690795898 + ], + [ + "▁testosterone", + -12.315940856933594 + ], + [ + "▁averaging", + -12.316004753112793 + ], + [ + "▁cancers", + -12.316011428833008 + ], + [ + "▁utilizes", + -12.316084861755371 + ], + [ + "▁Matter", + -12.31609058380127 + ], + [ + "▁gourmet", + -12.31610107421875 + ], + [ + "▁Jump", + -12.316165924072266 + ], + [ + "▁gallons", + -12.31638240814209 + ], + [ + "▁Concert", + -12.316385269165039 + ], + [ + "▁cheek", + -12.316399574279785 + ], + [ + "▁MLB", + -12.316411972045898 + ], + [ + "▁Gu", + -12.316442489624023 + ], + [ + "▁versa", + -12.31650161743164 + ], + [ + "▁Videos", + -12.316611289978027 + ], + [ + "▁partition", + -12.316658973693848 + ], + [ + "▁Birth", + -12.316683769226074 + ], + [ + "▁KY", + -12.316716194152832 + ], + [ + "▁absurd", + -12.316771507263184 + ], + [ + "▁aspirations", + -12.316838264465332 + ], + [ + "▁sue", + -12.31689739227295 + ], + [ + "▁crushers", + -12.316910743713379 + ], + [ + "▁wrinkles", + -12.316977500915527 + ], + [ + "▁Kathy", + -12.317110061645508 + ], + [ + "▁inmates", + -12.317124366760254 + ], + [ + "▁1953", + -12.317179679870605 + ], + [ + "▁Beast", + -12.317232131958008 + ], + [ + "▁WW", + -12.31725025177002 + ], + [ + "DO", + -12.3173189163208 + ], + [ + "▁standardized", + -12.317374229431152 + ], + [ + "▁mentality", + -12.317447662353516 + ], + [ + "▁Liquid", + -12.317462921142578 + ], + [ + "▁compositions", + -12.317538261413574 + ], + [ + "▁bladder", + -12.317570686340332 + ], + [ + "▁Chu", + -12.317573547363281 + ], + [ + "▁american", + -12.317671775817871 + ], + [ + "▁adventurous", + -12.317718505859375 + ], + [ + "▁adaptive", + -12.31772518157959 + ], + [ + "▁Aurora", + -12.317891120910645 + ], + [ + "▁reel", + -12.31792163848877 + ], + [ + "▁Naval", + -12.317924499511719 + ], + [ + "▁Forbes", + -12.317987442016602 + ], + [ + "▁Judy", + -12.318134307861328 + ], + [ + "▁wraps", + -12.318696022033691 + ], + [ + "▁benefited", + -12.318696975708008 + ], + [ + "▁redemption", + -12.318697929382324 + ], + [ + "▁empirical", + -12.318733215332031 + ], + [ + "▁beams", + -12.318831443786621 + ], + [ + "▁Butter", + -12.318835258483887 + ], + [ + "▁tractor", + -12.31898307800293 + ], + [ + "▁401", + -12.319121360778809 + ], + [ + "▁digits", + -12.319180488586426 + ], + [ + "▁bait", + -12.319255828857422 + ], + [ + "▁rebel", + -12.319268226623535 + ], + [ + "▁Talking", + -12.31928825378418 + ], + [ + "▁satisfactory", + -12.319391250610352 + ], + [ + "▁boosting", + -12.31943130493164 + ], + [ + "▁holdings", + -12.319442749023438 + ], + [ + "▁belts", + -12.319602012634277 + ], + [ + "▁Hawaiian", + -12.319659233093262 + ], + [ + "Ed", + -12.319887161254883 + ], + [ + "▁sliced", + -12.31995677947998 + ], + [ + "▁discoveries", + -12.320006370544434 + ], + [ + "▁screened", + -12.320023536682129 + ], + [ + "gal", + -12.32011890411377 + ], + [ + "▁WASHINGTON", + -12.320143699645996 + ], + [ + "▁Cyprus", + -12.320161819458008 + ], + [ + "▁layered", + -12.320198059082031 + ], + [ + "▁entirety", + -12.320361137390137 + ], + [ + "▁longevity", + -12.320402145385742 + ], + [ + "▁Volkswagen", + -12.320775985717773 + ], + [ + "▁deepest", + -12.320775985717773 + ], + [ + "▁Parent", + -12.320865631103516 + ], + [ + "▁vicinity", + -12.321269035339355 + ], + [ + "▁energies", + -12.3213529586792 + ], + [ + "▁Olivia", + -12.321454048156738 + ], + [ + "▁GET", + -12.321463584899902 + ], + [ + "▁dire", + -12.32169246673584 + ], + [ + "▁aliens", + -12.32172679901123 + ], + [ + "▁inconsistent", + -12.32187271118164 + ], + [ + "▁businessman", + -12.321873664855957 + ], + [ + "▁Warning", + -12.321917533874512 + ], + [ + "sided", + -12.322050094604492 + ], + [ + "▁Sharp", + -12.322070121765137 + ], + [ + "▁guardian", + -12.322287559509277 + ], + [ + "▁Ethiopia", + -12.322304725646973 + ], + [ + "105", + -12.322467803955078 + ], + [ + "eau", + -12.322505950927734 + ], + [ + "▁OP", + -12.322576522827148 + ], + [ + "▁Guess", + -12.322582244873047 + ], + [ + "late", + -12.322611808776855 + ], + [ + "▁encrypted", + -12.322729110717773 + ], + [ + "▁literal", + -12.322866439819336 + ], + [ + "▁sculptures", + -12.32287311553955 + ], + [ + "▁constructing", + -12.323226928710938 + ], + [ + "▁rectangular", + -12.323351860046387 + ], + [ + "taking", + -12.323441505432129 + ], + [ + "pet", + -12.323484420776367 + ], + [ + "▁nominations", + -12.32355785369873 + ], + [ + "IE", + -12.323637008666992 + ], + [ + "▁curry", + -12.32368278503418 + ], + [ + "hy", + -12.32374382019043 + ], + [ + "▁Holocaust", + -12.323771476745605 + ], + [ + "▁dancer", + -12.3239107131958 + ], + [ + "▁lucrative", + -12.323923110961914 + ], + [ + "▁leaked", + -12.32402229309082 + ], + [ + "▁Symposium", + -12.3240327835083 + ], + [ + "▁Buyer", + -12.324130058288574 + ], + [ + "WA", + -12.324254989624023 + ], + [ + "▁Superman", + -12.32427978515625 + ], + [ + "▁secretly", + -12.324430465698242 + ], + [ + "▁translates", + -12.32448673248291 + ], + [ + "▁juvenile", + -12.324691772460938 + ], + [ + "▁Croatia", + -12.324950218200684 + ], + [ + "▁dislike", + -12.325169563293457 + ], + [ + "▁embracing", + -12.325366020202637 + ], + [ + "▁municipality", + -12.32542896270752 + ], + [ + "▁pledged", + -12.325499534606934 + ], + [ + "▁downstairs", + -12.325550079345703 + ], + [ + "▁responds", + -12.325590133666992 + ], + [ + "▁giants", + -12.325613975524902 + ], + [ + "▁advisable", + -12.325627326965332 + ], + [ + "▁Raiders", + -12.325703620910645 + ], + [ + "last", + -12.32576847076416 + ], + [ + "▁Ink", + -12.325861930847168 + ], + [ + "▁EPS", + -12.326020240783691 + ], + [ + "▁cocaine", + -12.326051712036133 + ], + [ + "▁£2", + -12.326311111450195 + ], + [ + "▁Ahmed", + -12.326602935791016 + ], + [ + "ible", + -12.326623916625977 + ], + [ + "▁glitter", + -12.326642990112305 + ], + [ + "▁Jamaica", + -12.326786994934082 + ], + [ + "June", + -12.32682991027832 + ], + [ + "ec", + -12.326885223388672 + ], + [ + "▁HTTP", + -12.327019691467285 + ], + [ + "▁almond", + -12.327032089233398 + ], + [ + "▁trailers", + -12.32706356048584 + ], + [ + "▁justification", + -12.327274322509766 + ], + [ + "▁Slot", + -12.327367782592773 + ], + [ + "▁Terminal", + -12.327749252319336 + ], + [ + "sburg", + -12.327860832214355 + ], + [ + "▁wiped", + -12.327863693237305 + ], + [ + "tek", + -12.327983856201172 + ], + [ + "▁oversized", + -12.328017234802246 + ], + [ + "▁Citizens", + -12.328083992004395 + ], + [ + "▁mic", + -12.328160285949707 + ], + [ + "▁nylon", + -12.328252792358398 + ], + [ + "health", + -12.328255653381348 + ], + [ + "▁resilient", + -12.328275680541992 + ], + [ + "▁excluding", + -12.328285217285156 + ], + [ + "▁Hammer", + -12.328344345092773 + ], + [ + "▁saturated", + -12.328415870666504 + ], + [ + "▁supernatural", + -12.328475952148438 + ], + [ + "▁135", + -12.328553199768066 + ], + [ + "▁vaccines", + -12.328617095947266 + ], + [ + "▁demon", + -12.328722953796387 + ], + [ + "▁dreamed", + -12.32876205444336 + ], + [ + "rt", + -12.328764915466309 + ], + [ + "▁Jared", + -12.328861236572266 + ], + [ + "▁Civic", + -12.32896614074707 + ], + [ + "▁Harbour", + -12.32902717590332 + ], + [ + "▁Blvd", + -12.32935905456543 + ], + [ + "why", + -12.329366683959961 + ], + [ + "▁dependable", + -12.329378128051758 + ], + [ + "▁Administrative", + -12.329421043395996 + ], + [ + "funded", + -12.329444885253906 + ], + [ + "▁dilemma", + -12.329665184020996 + ], + [ + "▁Trying", + -12.329754829406738 + ], + [ + "▁lord", + -12.329815864562988 + ], + [ + "PT", + -12.329911231994629 + ], + [ + "▁whale", + -12.330105781555176 + ], + [ + "▁Failure", + -12.330113410949707 + ], + [ + "▁Bone", + -12.330121994018555 + ], + [ + "▁Germans", + -12.330127716064453 + ], + [ + "▁compelled", + -12.330204010009766 + ], + [ + "▁jumps", + -12.330279350280762 + ], + [ + "▁catalyst", + -12.330381393432617 + ], + [ + "▁endangered", + -12.330493927001953 + ], + [ + "▁avocado", + -12.330520629882812 + ], + [ + "▁1949", + -12.330533981323242 + ], + [ + "▁champagne", + -12.330723762512207 + ], + [ + "▁detector", + -12.330806732177734 + ], + [ + "▁collateral", + -12.330820083618164 + ], + [ + "▁Founder", + -12.330886840820312 + ], + [ + "▁siding", + -12.330899238586426 + ], + [ + "▁midfielder", + -12.331022262573242 + ], + [ + "▁fundraiser", + -12.331060409545898 + ], + [ + "▁Protect", + -12.331381797790527 + ], + [ + "▁approximate", + -12.331448554992676 + ], + [ + "▁insurer", + -12.331636428833008 + ], + [ + "▁notorious", + -12.331823348999023 + ], + [ + "▁Wii", + -12.331827163696289 + ], + [ + "HS", + -12.331965446472168 + ], + [ + "▁turf", + -12.332076072692871 + ], + [ + "▁selfish", + -12.3322114944458 + ], + [ + "▁Arc", + -12.332242965698242 + ], + [ + "▁sidewalk", + -12.332317352294922 + ], + [ + "▁Filter", + -12.332368850708008 + ], + [ + "▁expansive", + -12.332369804382324 + ], + [ + "▁Ger", + -12.332402229309082 + ], + [ + "▁wicked", + -12.332488059997559 + ], + [ + "▁denim", + -12.332601547241211 + ], + [ + "▁modelling", + -12.332616806030273 + ], + [ + "▁Istanbul", + -12.3326997756958 + ], + [ + "▁Crazy", + -12.332799911499023 + ], + [ + "▁Essex", + -12.332998275756836 + ], + [ + "▁brushed", + -12.333062171936035 + ], + [ + "▁Bug", + -12.333125114440918 + ], + [ + "▁Venus", + -12.333136558532715 + ], + [ + "▁Wellness", + -12.333163261413574 + ], + [ + "CC", + -12.33318042755127 + ], + [ + "▁Thousands", + -12.3331880569458 + ], + [ + "▁Rolling", + -12.33338451385498 + ], + [ + "DM", + -12.333478927612305 + ], + [ + "▁broadcasting", + -12.333523750305176 + ], + [ + "▁yacht", + -12.333598136901855 + ], + [ + "plan", + -12.333771705627441 + ], + [ + "▁depart", + -12.333962440490723 + ], + [ + "▁Bat", + -12.334260940551758 + ], + [ + "▁Mann", + -12.334282875061035 + ], + [ + "▁productions", + -12.334296226501465 + ], + [ + "▁statewide", + -12.334491729736328 + ], + [ + "cultural", + -12.334564208984375 + ], + [ + "▁waiver", + -12.334607124328613 + ], + [ + "▁overweight", + -12.3347806930542 + ], + [ + "▁coping", + -12.334821701049805 + ], + [ + "▁harmless", + -12.33488655090332 + ], + [ + "▁Devon", + -12.335016250610352 + ], + [ + "▁ribs", + -12.335041046142578 + ], + [ + "▁Fraser", + -12.335050582885742 + ], + [ + "▁Hack", + -12.335057258605957 + ], + [ + "▁minorities", + -12.335762977600098 + ], + [ + "}", + -12.335824012756348 + ], + [ + "▁singers", + -12.336050987243652 + ], + [ + "▁firefighters", + -12.336082458496094 + ], + [ + "may", + -12.336089134216309 + ], + [ + "▁Pie", + -12.336101531982422 + ], + [ + "▁harbor", + -12.33615779876709 + ], + [ + "▁Panthers", + -12.336254119873047 + ], + [ + "▁routing", + -12.336284637451172 + ], + [ + "▁Strip", + -12.336311340332031 + ], + [ + "▁ol", + -12.3363676071167 + ], + [ + "▁aspiring", + -12.336427688598633 + ], + [ + "▁ion", + -12.336430549621582 + ], + [ + "▁overlap", + -12.33643627166748 + ], + [ + "des", + -12.336546897888184 + ], + [ + "▁knives", + -12.336586952209473 + ], + [ + "▁intercepted", + -12.336714744567871 + ], + [ + "▁Fleet", + -12.336756706237793 + ], + [ + "▁на", + -12.337254524230957 + ], + [ + "▁cousins", + -12.337316513061523 + ], + [ + "▁Municipal", + -12.337461471557617 + ], + [ + "Data", + -12.33754825592041 + ], + [ + "pad", + -12.337549209594727 + ], + [ + "▁Lt", + -12.337552070617676 + ], + [ + "▁periodic", + -12.33761215209961 + ], + [ + "▁desserts", + -12.337647438049316 + ], + [ + "▁numerical", + -12.33768081665039 + ], + [ + "sia", + -12.337690353393555 + ], + [ + "▁teamed", + -12.337839126586914 + ], + [ + "▁Mae", + -12.337876319885254 + ], + [ + "▁impairment", + -12.337916374206543 + ], + [ + "▁entrepreneurial", + -12.338132858276367 + ], + [ + "▁Providing", + -12.338367462158203 + ], + [ + "▁sewer", + -12.338369369506836 + ], + [ + "▁poles", + -12.338472366333008 + ], + [ + "▁Hands", + -12.338621139526367 + ], + [ + "language", + -12.338658332824707 + ], + [ + "▁rebels", + -12.338708877563477 + ], + [ + "▁Didn", + -12.338776588439941 + ], + [ + "▁Drawing", + -12.338826179504395 + ], + [ + "▁Farmers", + -12.338881492614746 + ], + [ + "▁blinds", + -12.338887214660645 + ], + [ + "▁valves", + -12.338985443115234 + ], + [ + "▁Persian", + -12.339057922363281 + ], + [ + "▁Trevor", + -12.339071273803711 + ], + [ + "bet", + -12.339106559753418 + ], + [ + "SC", + -12.339120864868164 + ], + [ + "▁seekers", + -12.339160919189453 + ], + [ + "▁Minimum", + -12.339310646057129 + ], + [ + "▁Kashmir", + -12.3394193649292 + ], + [ + "▁transcript", + -12.339482307434082 + ], + [ + "▁obliged", + -12.339542388916016 + ], + [ + "▁optimism", + -12.339559555053711 + ], + [ + "▁tar", + -12.339674949645996 + ], + [ + "▁mates", + -12.339957237243652 + ], + [ + "▁Eating", + -12.340326309204102 + ], + [ + "▁velvet", + -12.34055233001709 + ], + [ + "▁seals", + -12.340559959411621 + ], + [ + "▁TM", + -12.340778350830078 + ], + [ + "▁fluids", + -12.340802192687988 + ], + [ + "▁brochure", + -12.340927124023438 + ], + [ + "▁deposited", + -12.340958595275879 + ], + [ + "▁Chancellor", + -12.341068267822266 + ], + [ + "이", + -12.341090202331543 + ], + [ + "▁skinny", + -12.341221809387207 + ], + [ + "oid", + -12.34126091003418 + ], + [ + "Thanks", + -12.341303825378418 + ], + [ + "mouth", + -12.341668128967285 + ], + [ + "▁distraction", + -12.34177303314209 + ], + [ + "▁1946", + -12.3418607711792 + ], + [ + "▁bookings", + -12.341864585876465 + ], + [ + "▁ridge", + -12.34206485748291 + ], + [ + "pass", + -12.342357635498047 + ], + [ + "▁staged", + -12.342382431030273 + ], + [ + "▁Alcohol", + -12.342575073242188 + ], + [ + "▁Surely", + -12.34260368347168 + ], + [ + "▁Beverly", + -12.342706680297852 + ], + [ + "▁Maker", + -12.342724800109863 + ], + [ + "▁Um", + -12.342782974243164 + ], + [ + "▁sterling", + -12.342809677124023 + ], + [ + "▁Scheme", + -12.342844009399414 + ], + [ + "▁AAA", + -12.342970848083496 + ], + [ + "▁bolts", + -12.343146324157715 + ], + [ + "▁knocking", + -12.343317985534668 + ], + [ + "▁Musk", + -12.343411445617676 + ], + [ + "▁Flex", + -12.34343147277832 + ], + [ + "▁formulation", + -12.343454360961914 + ], + [ + "ben", + -12.343539237976074 + ], + [ + "▁Sec", + -12.343546867370605 + ], + [ + "sson", + -12.34363079071045 + ], + [ + "▁rocking", + -12.34371280670166 + ], + [ + "▁therapists", + -12.343990325927734 + ], + [ + "▁Feed", + -12.344080924987793 + ], + [ + "tv", + -12.344109535217285 + ], + [ + "▁atomic", + -12.344147682189941 + ], + [ + "▁laughs", + -12.344247817993164 + ], + [ + "ido", + -12.344252586364746 + ], + [ + "▁unlawful", + -12.344403266906738 + ], + [ + "▁agreeing", + -12.344498634338379 + ], + [ + "▁Malcolm", + -12.344517707824707 + ], + [ + "▁merged", + -12.344725608825684 + ], + [ + "Le", + -12.344758033752441 + ], + [ + "▁terminated", + -12.344778060913086 + ], + [ + "▁cloudy", + -12.344826698303223 + ], + [ + "▁Doesn", + -12.344941139221191 + ], + [ + "▁Fee", + -12.3450345993042 + ], + [ + "▁Basin", + -12.345184326171875 + ], + [ + "▁brew", + -12.345192909240723 + ], + [ + "▁clicked", + -12.345215797424316 + ], + [ + "▁FAQ", + -12.345405578613281 + ], + [ + "▁Reply", + -12.345413208007812 + ], + [ + "▁toss", + -12.345492362976074 + ], + [ + "▁Kenny", + -12.345503807067871 + ], + [ + "▁framing", + -12.345538139343262 + ], + [ + "▁taxation", + -12.34580135345459 + ], + [ + "▁Prayer", + -12.345858573913574 + ], + [ + "▁displaced", + -12.34593677520752 + ], + [ + "▁kitchens", + -12.345992088317871 + ], + [ + "roll", + -12.345996856689453 + ], + [ + "TR", + -12.346071243286133 + ], + [ + "▁negotiated", + -12.346074104309082 + ], + [ + "▁preceded", + -12.34620189666748 + ], + [ + "▁Curry", + -12.346334457397461 + ], + [ + "▁cough", + -12.346380233764648 + ], + [ + "▁Mum", + -12.346531867980957 + ], + [ + "▁tidy", + -12.346627235412598 + ], + [ + "▁disposable", + -12.346758842468262 + ], + [ + "▁Flynn", + -12.346839904785156 + ], + [ + "▁chorus", + -12.346857070922852 + ], + [ + "channel", + -12.347206115722656 + ], + [ + "▁Worldwide", + -12.347246170043945 + ], + [ + "cu", + -12.34732437133789 + ], + [ + "▁ratios", + -12.347329139709473 + ], + [ + "▁maternal", + -12.347378730773926 + ], + [ + "▁Chem", + -12.347437858581543 + ], + [ + "▁Candy", + -12.347476959228516 + ], + [ + "▁QB", + -12.347576141357422 + ], + [ + "▁questionnaire", + -12.34758186340332 + ], + [ + "nic", + -12.347664833068848 + ], + [ + "▁Developer", + -12.347704887390137 + ], + [ + "▁symptom", + -12.348026275634766 + ], + [ + "▁faucet", + -12.34803295135498 + ], + [ + "▁Molly", + -12.348137855529785 + ], + [ + "▁abdominal", + -12.348142623901367 + ], + [ + "▁Roosevelt", + -12.348228454589844 + ], + [ + "▁DUI", + -12.348243713378906 + ], + [ + "▁tempting", + -12.348551750183105 + ], + [ + "▁Thought", + -12.348673820495605 + ], + [ + "▁Lemon", + -12.34870719909668 + ], + [ + "▁fencing", + -12.348753929138184 + ], + [ + "▁Ethernet", + -12.348872184753418 + ], + [ + "▁knot", + -12.348896980285645 + ], + [ + "▁Whereas", + -12.348978042602539 + ], + [ + "wo", + -12.348984718322754 + ], + [ + "▁Winston", + -12.349310874938965 + ], + [ + "▁ur", + -12.34937572479248 + ], + [ + "▁Orders", + -12.349377632141113 + ], + [ + "▁goodies", + -12.349409103393555 + ], + [ + "▁Lightning", + -12.349564552307129 + ], + [ + "▁Dun", + -12.349781036376953 + ], + [ + "▁confirms", + -12.350110054016113 + ], + [ + "▁diploma", + -12.350183486938477 + ], + [ + "▁Quarter", + -12.35021686553955 + ], + [ + "▁Dynamic", + -12.350252151489258 + ], + [ + "eri", + -12.350284576416016 + ], + [ + "ls", + -12.350311279296875 + ], + [ + "pal", + -12.350475311279297 + ], + [ + "▁apology", + -12.350481986999512 + ], + [ + "▁pe", + -12.350665092468262 + ], + [ + "While", + -12.350712776184082 + ], + [ + "east", + -12.350794792175293 + ], + [ + "▁lump", + -12.350809097290039 + ], + [ + "▁listener", + -12.35086441040039 + ], + [ + "▁Sophie", + -12.350890159606934 + ], + [ + "Green", + -12.351343154907227 + ], + [ + "sea", + -12.35141372680664 + ], + [ + "▁Provider", + -12.351685523986816 + ], + [ + "▁spike", + -12.351825714111328 + ], + [ + "▁Comics", + -12.352002143859863 + ], + [ + "▁traps", + -12.352049827575684 + ], + [ + "▁demolition", + -12.352068901062012 + ], + [ + "▁saddle", + -12.352212905883789 + ], + [ + "Box", + -12.352282524108887 + ], + [ + "themed", + -12.352359771728516 + ], + [ + "▁Provides", + -12.35240364074707 + ], + [ + "▁magnesium", + -12.352417945861816 + ], + [ + "▁contexts", + -12.352462768554688 + ], + [ + "standard", + -12.352533340454102 + ], + [ + "▁continuation", + -12.352761268615723 + ], + [ + "▁referrals", + -12.352967262268066 + ], + [ + "aa", + -12.353059768676758 + ], + [ + "▁pitches", + -12.35325813293457 + ], + [ + "▁Omega", + -12.35336685180664 + ], + [ + "▁Burke", + -12.353850364685059 + ], + [ + "▁Winner", + -12.353918075561523 + ], + [ + "▁executing", + -12.353938102722168 + ], + [ + "▁repetitive", + -12.35400676727295 + ], + [ + "▁lacked", + -12.354037284851074 + ], + [ + "Source", + -12.354157447814941 + ], + [ + "▁plurality", + -12.354158401489258 + ], + [ + "colored", + -12.354166030883789 + ], + [ + "▁Inspector", + -12.354259490966797 + ], + [ + "▁veins", + -12.354334831237793 + ], + [ + "▁stimulating", + -12.354338645935059 + ], + [ + "▁FY", + -12.354426383972168 + ], + [ + "▁Ark", + -12.354485511779785 + ], + [ + "▁aisle", + -12.354613304138184 + ], + [ + "▁cohort", + -12.354683876037598 + ], + [ + "▁renamed", + -12.354762077331543 + ], + [ + "▁MVP", + -12.354830741882324 + ], + [ + "▁Reg", + -12.354965209960938 + ], + [ + "▁simplified", + -12.35497760772705 + ], + [ + "▁McCarthy", + -12.355297088623047 + ], + [ + "▁spec", + -12.35555648803711 + ], + [ + "▁groove", + -12.35559368133545 + ], + [ + "▁labs", + -12.355616569519043 + ], + [ + "▁mornings", + -12.355630874633789 + ], + [ + "▁leagues", + -12.35571575164795 + ], + [ + "▁consultancy", + -12.355834007263184 + ], + [ + "outs", + -12.355835914611816 + ], + [ + "▁Connection", + -12.35596752166748 + ], + [ + "bal", + -12.35599422454834 + ], + [ + "▁Fully", + -12.356115341186523 + ], + [ + "▁Liam", + -12.356164932250977 + ], + [ + "▁rods", + -12.356340408325195 + ], + [ + "▁Coupon", + -12.356371879577637 + ], + [ + "▁für", + -12.35638427734375 + ], + [ + "More", + -12.356403350830078 + ], + [ + "▁Kal", + -12.356412887573242 + ], + [ + "▁pod", + -12.356443405151367 + ], + [ + "loss", + -12.35647201538086 + ], + [ + "▁Â", + -12.356595039367676 + ], + [ + "▁Pros", + -12.356823921203613 + ], + [ + "El", + -12.356898307800293 + ], + [ + "zy", + -12.356943130493164 + ], + [ + "▁Exactly", + -12.35706615447998 + ], + [ + "▁compressed", + -12.357170104980469 + ], + [ + "▁bible", + -12.357255935668945 + ], + [ + "▁Dynamics", + -12.357863426208496 + ], + [ + "▁detached", + -12.357950210571289 + ], + [ + "wy", + -12.357999801635742 + ], + [ + "▁booklet", + -12.358006477355957 + ], + [ + "EP", + -12.358068466186523 + ], + [ + "China", + -12.358109474182129 + ], + [ + "▁mustard", + -12.358124732971191 + ], + [ + "duty", + -12.35816764831543 + ], + [ + "▁harbour", + -12.358185768127441 + ], + [ + "ori", + -12.358450889587402 + ], + [ + "▁diligence", + -12.358451843261719 + ], + [ + "▁taller", + -12.358465194702148 + ], + [ + "ris", + -12.358481407165527 + ], + [ + "▁Jenkins", + -12.358625411987305 + ], + [ + "▁Rising", + -12.358719825744629 + ], + [ + "▁Cho", + -12.358787536621094 + ], + [ + "▁Seed", + -12.358810424804688 + ], + [ + "▁Pilot", + -12.35891342163086 + ], + [ + "▁tackling", + -12.358949661254883 + ], + [ + "▁dominance", + -12.358990669250488 + ], + [ + "running", + -12.359293937683105 + ], + [ + "▁Unity", + -12.35932731628418 + ], + [ + "▁monkey", + -12.359332084655762 + ], + [ + "▁Indonesian", + -12.359391212463379 + ], + [ + "▁testified", + -12.359426498413086 + ], + [ + "▁odor", + -12.359631538391113 + ], + [ + "▁Pixel", + -12.359634399414062 + ], + [ + "▁Suppliers", + -12.359663009643555 + ], + [ + "▁Christie", + -12.35968017578125 + ], + [ + "▁primitive", + -12.35977840423584 + ], + [ + "▁reboot", + -12.359861373901367 + ], + [ + "▁pinterest", + -12.35989761352539 + ], + [ + "▁educator", + -12.359979629516602 + ], + [ + "▁topping", + -12.359997749328613 + ], + [ + "▁Pipe", + -12.360021591186523 + ], + [ + "▁në", + -12.360075950622559 + ], + [ + "▁demons", + -12.360167503356934 + ], + [ + "pound", + -12.360169410705566 + ], + [ + "▁protagonist", + -12.360315322875977 + ], + [ + "▁Pac", + -12.360360145568848 + ], + [ + "▁Artificial", + -12.360387802124023 + ], + [ + "▁unsafe", + -12.36039924621582 + ], + [ + "▁Demand", + -12.360481262207031 + ], + [ + "Ð", + -12.360498428344727 + ], + [ + "▁Dee", + -12.360637664794922 + ], + [ + "▁pastry", + -12.360771179199219 + ], + [ + "▁Bor", + -12.360942840576172 + ], + [ + "▁govern", + -12.361017227172852 + ], + [ + "▁repairing", + -12.361018180847168 + ], + [ + "▁Drama", + -12.361124038696289 + ], + [ + "▁obey", + -12.361144065856934 + ], + [ + "▁1952", + -12.361196517944336 + ], + [ + "▁veterinary", + -12.36120891571045 + ], + [ + "▁LOT", + -12.361242294311523 + ], + [ + "▁resurrection", + -12.361257553100586 + ], + [ + "▁persuade", + -12.361346244812012 + ], + [ + "▁Chennai", + -12.3613862991333 + ], + [ + "▁Enforcement", + -12.361454010009766 + ], + [ + "▁singular", + -12.361496925354004 + ], + [ + "▁subsidies", + -12.361533164978027 + ], + [ + "▁contaminated", + -12.361608505249023 + ], + [ + "▁Drink", + -12.361783981323242 + ], + [ + "▁courtyard", + -12.3618803024292 + ], + [ + "▁Ji", + -12.36208724975586 + ], + [ + "▁Created", + -12.362133979797363 + ], + [ + "▁itinerary", + -12.362244606018066 + ], + [ + "▁Comfort", + -12.362262725830078 + ], + [ + "▁brushes", + -12.362382888793945 + ], + [ + "▁Mitch", + -12.36242389678955 + ], + [ + "▁tougher", + -12.362656593322754 + ], + [ + "dom", + -12.36268138885498 + ], + [ + "▁MW", + -12.362754821777344 + ], + [ + "▁resides", + -12.362772941589355 + ], + [ + "▁Sandra", + -12.36279010772705 + ], + [ + "▁tokens", + -12.362855911254883 + ], + [ + "▁za", + -12.362887382507324 + ], + [ + "izer", + -12.362896919250488 + ], + [ + "▁investigator", + -12.362907409667969 + ], + [ + "load", + -12.362931251525879 + ], + [ + "▁dim", + -12.362982749938965 + ], + [ + "Name", + -12.362985610961914 + ], + [ + "▁empowered", + -12.36314582824707 + ], + [ + "bach", + -12.36318302154541 + ], + [ + "▁imposing", + -12.363221168518066 + ], + [ + "▁Volunteer", + -12.363231658935547 + ], + [ + "▁EV", + -12.363253593444824 + ], + [ + "▁interiors", + -12.363302230834961 + ], + [ + "▁Cardinals", + -12.363607406616211 + ], + [ + "▁Won", + -12.363665580749512 + ], + [ + "▁Sons", + -12.363710403442383 + ], + [ + "▁MM", + -12.363764762878418 + ], + [ + "▁bonding", + -12.363889694213867 + ], + [ + "▁palate", + -12.364212989807129 + ], + [ + "▁degradation", + -12.364371299743652 + ], + [ + "▁Eva", + -12.364437103271484 + ], + [ + "▁ceremonies", + -12.36459732055664 + ], + [ + "▁ATM", + -12.364707946777344 + ], + [ + "▁inferior", + -12.364798545837402 + ], + [ + "▁youthful", + -12.364862442016602 + ], + [ + "▁flawed", + -12.364886283874512 + ], + [ + "▁bilateral", + -12.365038871765137 + ], + [ + "▁conserve", + -12.365252494812012 + ], + [ + "233", + -12.365317344665527 + ], + [ + "▁undermine", + -12.365334510803223 + ], + [ + "▁favored", + -12.365403175354004 + ], + [ + "▁Maggie", + -12.365410804748535 + ], + [ + "▁protections", + -12.365476608276367 + ], + [ + "▁receptors", + -12.365494728088379 + ], + [ + "▁vest", + -12.36551284790039 + ], + [ + "AI", + -12.365618705749512 + ], + [ + "host", + -12.365716934204102 + ], + [ + "▁alcoholic", + -12.365790367126465 + ], + [ + "▁Morocco", + -12.365936279296875 + ], + [ + "▁caregivers", + -12.3661527633667 + ], + [ + "▁ammunition", + -12.366327285766602 + ], + [ + "▁barbecue", + -12.366347312927246 + ], + [ + "▁Cart", + -12.366388320922852 + ], + [ + "▁expressly", + -12.366569519042969 + ], + [ + "▁Root", + -12.36663818359375 + ], + [ + "bro", + -12.366813659667969 + ], + [ + "▁Nowadays", + -12.366945266723633 + ], + [ + "▁Seller", + -12.36715316772461 + ], + [ + "▁Computing", + -12.36720085144043 + ], + [ + "▁Models", + -12.367220878601074 + ], + [ + "▁Known", + -12.367253303527832 + ], + [ + "▁differentiate", + -12.367424964904785 + ], + [ + "▁gloss", + -12.36757755279541 + ], + [ + "▁fragments", + -12.367642402648926 + ], + [ + "▁reservoir", + -12.367654800415039 + ], + [ + "▁futures", + -12.367682456970215 + ], + [ + "▁Op", + -12.367812156677246 + ], + [ + "을", + -12.36807632446289 + ], + [ + "▁null", + -12.368179321289062 + ], + [ + "▁utter", + -12.368196487426758 + ], + [ + "▁introductory", + -12.368206977844238 + ], + [ + "▁Protocol", + -12.368257522583008 + ], + [ + "▁ram", + -12.368424415588379 + ], + [ + "hen", + -12.368626594543457 + ], + [ + "▁infringement", + -12.368719100952148 + ], + [ + "▁Fo", + -12.368749618530273 + ], + [ + "▁Jupiter", + -12.368831634521484 + ], + [ + "▁Appeals", + -12.369156837463379 + ], + [ + "▁overhaul", + -12.369199752807617 + ], + [ + "▁GC", + -12.36941909790039 + ], + [ + "▁insure", + -12.369537353515625 + ], + [ + "▁Choosing", + -12.36958122253418 + ], + [ + "▁naval", + -12.369656562805176 + ], + [ + "▁Petersburg", + -12.369734764099121 + ], + [ + "▁das", + -12.369832992553711 + ], + [ + "writing", + -12.369842529296875 + ], + [ + "mph", + -12.37006664276123 + ], + [ + "▁carpets", + -12.370140075683594 + ], + [ + "▁sums", + -12.37015438079834 + ], + [ + "▁insightful", + -12.37016487121582 + ], + [ + "horn", + -12.370253562927246 + ], + [ + "▁Congrats", + -12.370347023010254 + ], + [ + "▁strokes", + -12.370759010314941 + ], + [ + "▁Bronze", + -12.37088680267334 + ], + [ + "▁commodities", + -12.370965003967285 + ], + [ + "▁Clara", + -12.371075630187988 + ], + [ + "▁divorced", + -12.371262550354004 + ], + [ + "talk", + -12.371308326721191 + ], + [ + "cam", + -12.371359825134277 + ], + [ + "▁Comic", + -12.371382713317871 + ], + [ + "▁shelters", + -12.371416091918945 + ], + [ + "▁Coleman", + -12.371460914611816 + ], + [ + "▁quirky", + -12.371509552001953 + ], + [ + "▁ashamed", + -12.371513366699219 + ], + [ + "PR", + -12.371622085571289 + ], + [ + "thirds", + -12.371655464172363 + ], + [ + "▁Cambodia", + -12.371816635131836 + ], + [ + "▁indulge", + -12.371991157531738 + ], + [ + "▁charcoal", + -12.3721284866333 + ], + [ + "▁antibodies", + -12.37221622467041 + ], + [ + "▁withdrawn", + -12.372223854064941 + ], + [ + "▁packets", + -12.372262001037598 + ], + [ + "▁Hardware", + -12.372315406799316 + ], + [ + "▁Youtube", + -12.372386932373047 + ], + [ + "▁Shin", + -12.372390747070312 + ], + [ + "▁motive", + -12.372546195983887 + ], + [ + "▁ruler", + -12.372568130493164 + ], + [ + "print", + -12.372723579406738 + ], + [ + "iii", + -12.372751235961914 + ], + [ + "aj", + -12.372756004333496 + ], + [ + "▁confirming", + -12.37281608581543 + ], + [ + "▁confidentiality", + -12.372993469238281 + ], + [ + "▁textbook", + -12.373188972473145 + ], + [ + "▁onboard", + -12.373236656188965 + ], + [ + "▁Ce", + -12.373259544372559 + ], + [ + "▁Papa", + -12.373286247253418 + ], + [ + "▁Hook", + -12.373329162597656 + ], + [ + "▁Cowboys", + -12.373540878295898 + ], + [ + "▁Advance", + -12.373690605163574 + ], + [ + "BB", + -12.373859405517578 + ], + [ + "▁Cave", + -12.373860359191895 + ], + [ + "▁proliferation", + -12.374189376831055 + ], + [ + "▁TR", + -12.37443733215332 + ], + [ + "▁Labs", + -12.374715805053711 + ], + [ + "▁calorie", + -12.374746322631836 + ], + [ + "▁CF", + -12.374786376953125 + ], + [ + "▁sixty", + -12.374861717224121 + ], + [ + "▁109", + -12.374927520751953 + ], + [ + "▁Agents", + -12.375042915344238 + ], + [ + "▁lag", + -12.375192642211914 + ], + [ + "▁Lawyers", + -12.37532901763916 + ], + [ + "image", + -12.375493049621582 + ], + [ + "▁hereby", + -12.375531196594238 + ], + [ + "▁accidental", + -12.375595092773438 + ], + [ + "▁commute", + -12.375740051269531 + ], + [ + "を", + -12.37575912475586 + ], + [ + "▁Customs", + -12.37591552734375 + ], + [ + "▁Unknown", + -12.376038551330566 + ], + [ + "▁kings", + -12.376051902770996 + ], + [ + "sley", + -12.376057624816895 + ], + [ + "▁Poetry", + -12.37608814239502 + ], + [ + "▁rails", + -12.376118659973145 + ], + [ + "aga", + -12.376166343688965 + ], + [ + "▁safeguard", + -12.376387596130371 + ], + [ + "▁Ry", + -12.376410484313965 + ], + [ + "▁tactic", + -12.376641273498535 + ], + [ + "▁excuses", + -12.376679420471191 + ], + [ + "▁Seoul", + -12.376794815063477 + ], + [ + "rn", + -12.376830101013184 + ], + [ + "▁Milton", + -12.376999855041504 + ], + [ + "▁bearings", + -12.377077102661133 + ], + [ + "▁fry", + -12.377079010009766 + ], + [ + "▁silicon", + -12.37708568572998 + ], + [ + "▁thicker", + -12.377107620239258 + ], + [ + "▁Taste", + -12.37714672088623 + ], + [ + "▁Mis", + -12.377155303955078 + ], + [ + "▁Fishing", + -12.377551078796387 + ], + [ + "Web", + -12.377645492553711 + ], + [ + "▁sec", + -12.377720832824707 + ], + [ + "▁bumper", + -12.377845764160156 + ], + [ + "▁cavity", + -12.377909660339355 + ], + [ + "▁Elder", + -12.377915382385254 + ], + [ + "▁keeper", + -12.378210067749023 + ], + [ + "▁enacted", + -12.378432273864746 + ], + [ + "▁Sit", + -12.378522872924805 + ], + [ + "▁Lift", + -12.378534317016602 + ], + [ + "▁collects", + -12.378717422485352 + ], + [ + "▁sensing", + -12.378824234008789 + ], + [ + "▁Rand", + -12.378838539123535 + ], + [ + "▁Factor", + -12.378884315490723 + ], + [ + "▁campuses", + -12.379171371459961 + ], + [ + "▁diagrams", + -12.379251480102539 + ], + [ + "▁Pull", + -12.379361152648926 + ], + [ + "▁communal", + -12.379481315612793 + ], + [ + "▁Nam", + -12.379606246948242 + ], + [ + "▁capacities", + -12.379640579223633 + ], + [ + "▁Salon", + -12.379756927490234 + ], + [ + "▁Burton", + -12.379844665527344 + ], + [ + "▁Sharing", + -12.380061149597168 + ], + [ + "▁Equity", + -12.38016128540039 + ], + [ + "una", + -12.380203247070312 + ], + [ + "▁320", + -12.38022518157959 + ], + [ + "▁Goldman", + -12.380268096923828 + ], + [ + "price", + -12.380383491516113 + ], + [ + "▁morality", + -12.380685806274414 + ], + [ + "act", + -12.38070011138916 + ], + [ + "▁rinse", + -12.380722999572754 + ], + [ + "▁Diabetes", + -12.380759239196777 + ], + [ + "▁£3", + -12.381122589111328 + ], + [ + "▁Brock", + -12.381170272827148 + ], + [ + "▁PLEASE", + -12.381266593933105 + ], + [ + "▁Kerala", + -12.381522178649902 + ], + [ + "▁WAS", + -12.381550788879395 + ], + [ + "▁Dal", + -12.381709098815918 + ], + [ + "▁medicinal", + -12.381745338439941 + ], + [ + "▁Tennis", + -12.381855010986328 + ], + [ + "mis", + -12.381933212280273 + ], + [ + "▁trait", + -12.38199520111084 + ], + [ + "learning", + -12.382035255432129 + ], + [ + "▁possessed", + -12.382043838500977 + ], + [ + "▁Haiti", + -12.382080078125 + ], + [ + "od", + -12.38224983215332 + ], + [ + "▁USE", + -12.38230037689209 + ], + [ + "▁advising", + -12.382356643676758 + ], + [ + "▁nausea", + -12.382412910461426 + ], + [ + "▁MG", + -12.38245677947998 + ], + [ + "▁Harley", + -12.382529258728027 + ], + [ + "Brien", + -12.382730484008789 + ], + [ + "▁1943", + -12.382811546325684 + ], + [ + "▁Slow", + -12.382927894592285 + ], + [ + "South", + -12.382974624633789 + ], + [ + "▁unrelated", + -12.382999420166016 + ], + [ + "▁Moss", + -12.383004188537598 + ], + [ + "▁toes", + -12.383097648620605 + ], + [ + "▁PO", + -12.383171081542969 + ], + [ + "▁Floyd", + -12.383301734924316 + ], + [ + "▁instructional", + -12.383353233337402 + ], + [ + "▁Albany", + -12.383374214172363 + ], + [ + "energy", + -12.383438110351562 + ], + [ + "▁Au", + -12.38359260559082 + ], + [ + "▁Embassy", + -12.383808135986328 + ], + [ + "▁brewing", + -12.383904457092285 + ], + [ + "▁Offers", + -12.383923530578613 + ], + [ + "▁beneficiaries", + -12.384136199951172 + ], + [ + "▁conventions", + -12.384163856506348 + ], + [ + "▁Kil", + -12.384180068969727 + ], + [ + "iko", + -12.38427734375 + ], + [ + "▁Unlimited", + -12.3843355178833 + ], + [ + "▁Eugene", + -12.384355545043945 + ], + [ + "▁reminding", + -12.384653091430664 + ], + [ + "▁Tin", + -12.384729385375977 + ], + [ + "▁irritation", + -12.384769439697266 + ], + [ + "▁Rooms", + -12.384824752807617 + ], + [ + "▁NT", + -12.38482666015625 + ], + [ + "▁pristine", + -12.384929656982422 + ], + [ + "▁salads", + -12.385141372680664 + ], + [ + "▁Kurt", + -12.385232925415039 + ], + [ + "MD", + -12.385239601135254 + ], + [ + "▁tutor", + -12.385417938232422 + ], + [ + "gg", + -12.385502815246582 + ], + [ + "▁addicted", + -12.38563060760498 + ], + [ + "▁garments", + -12.385721206665039 + ], + [ + "▁tapping", + -12.385821342468262 + ], + [ + "course", + -12.385854721069336 + ], + [ + "▁Ros", + -12.385933876037598 + ], + [ + "Car", + -12.386104583740234 + ], + [ + "▁Compared", + -12.386125564575195 + ], + [ + "▁Jin", + -12.386125564575195 + ], + [ + "▁leasing", + -12.386141777038574 + ], + [ + "etc", + -12.386256217956543 + ], + [ + "▁crashing", + -12.386306762695312 + ], + [ + "▁fraudulent", + -12.386384010314941 + ], + [ + "▁VM", + -12.386510848999023 + ], + [ + "▁Levi", + -12.386520385742188 + ], + [ + "▁emergencies", + -12.386716842651367 + ], + [ + "▁Hybrid", + -12.386785507202148 + ], + [ + "▁myths", + -12.387078285217285 + ], + [ + "▁replicate", + -12.38708209991455 + ], + [ + "▁subscriber", + -12.38723087310791 + ], + [ + "▁primer", + -12.387513160705566 + ], + [ + "▁Manning", + -12.387611389160156 + ], + [ + "▁duct", + -12.387688636779785 + ], + [ + "▁Attack", + -12.3877592086792 + ], + [ + "▁insists", + -12.387796401977539 + ], + [ + "▁caramel", + -12.387872695922852 + ], + [ + "▁limestone", + -12.387879371643066 + ], + [ + "▁metaphor", + -12.38790512084961 + ], + [ + "▁lever", + -12.387940406799316 + ], + [ + "aria", + -12.388018608093262 + ], + [ + "▁Alexandria", + -12.388181686401367 + ], + [ + "eng", + -12.388496398925781 + ], + [ + "▁hemp", + -12.388704299926758 + ], + [ + "EE", + -12.388731956481934 + ], + [ + "▁consolidated", + -12.388794898986816 + ], + [ + "▁handing", + -12.388812065124512 + ], + [ + "between", + -12.388935089111328 + ], + [ + "▁prejudice", + -12.389007568359375 + ], + [ + "ven", + -12.389039039611816 + ], + [ + "▁forensic", + -12.38923454284668 + ], + [ + "▁wagon", + -12.389264106750488 + ], + [ + "▁dissolved", + -12.389348030090332 + ], + [ + "fo", + -12.389419555664062 + ], + [ + "▁deductible", + -12.389488220214844 + ], + [ + "▁Fusion", + -12.389530181884766 + ], + [ + "▁spreadsheet", + -12.389595985412598 + ], + [ + "▁fabrication", + -12.389638900756836 + ], + [ + "strong", + -12.389776229858398 + ], + [ + "▁Penny", + -12.38979721069336 + ], + [ + "▁astonishing", + -12.389799118041992 + ], + [ + "▁Monthly", + -12.389854431152344 + ], + [ + "▁Duck", + -12.38988208770752 + ], + [ + "▁firearm", + -12.389909744262695 + ], + [ + "▁cooker", + -12.390021324157715 + ], + [ + "▁Evening", + -12.390142440795898 + ], + [ + "▁CL", + -12.39023494720459 + ], + [ + "lis", + -12.39043140411377 + ], + [ + "▁companions", + -12.390446662902832 + ], + [ + "▁ABS", + -12.390579223632812 + ], + [ + "▁Roth", + -12.39059066772461 + ], + [ + "▁ounce", + -12.390741348266602 + ], + [ + "▁Sebastian", + -12.390844345092773 + ], + [ + "ras", + -12.39093017578125 + ], + [ + "ă", + -12.390969276428223 + ], + [ + "▁geometric", + -12.391125679016113 + ], + [ + "▁pains", + -12.391379356384277 + ], + [ + "▁whites", + -12.391515731811523 + ], + [ + "lich", + -12.391615867614746 + ], + [ + "▁Ren", + -12.391624450683594 + ], + [ + "▁occupational", + -12.39181900024414 + ], + [ + "▁Andrews", + -12.391990661621094 + ], + [ + "▁Saw", + -12.392062187194824 + ], + [ + "▁Talent", + -12.392308235168457 + ], + [ + "▁appealed", + -12.392492294311523 + ], + [ + "▁blending", + -12.392560958862305 + ], + [ + "▁championships", + -12.392578125 + ], + [ + "mal", + -12.39264965057373 + ], + [ + "▁Ja", + -12.392900466918945 + ], + [ + "▁staging", + -12.392940521240234 + ], + [ + "LP", + -12.393024444580078 + ], + [ + "▁Hearing", + -12.393061637878418 + ], + [ + "▁storyline", + -12.393080711364746 + ], + [ + "▁concealed", + -12.393125534057617 + ], + [ + "▁exposing", + -12.393281936645508 + ], + [ + "▁funnel", + -12.393349647521973 + ], + [ + "lab", + -12.393502235412598 + ], + [ + "▁Needless", + -12.393590927124023 + ], + [ + "▁zombie", + -12.39362621307373 + ], + [ + "▁Powered", + -12.393698692321777 + ], + [ + "▁controllers", + -12.393722534179688 + ], + [ + "▁Transit", + -12.393811225891113 + ], + [ + "▁Ivan", + -12.393951416015625 + ], + [ + "▁metadata", + -12.393966674804688 + ], + [ + "enberg", + -12.39399242401123 + ], + [ + "Pacific", + -12.394021034240723 + ], + [ + "▁Hungarian", + -12.394047737121582 + ], + [ + "▁dumps", + -12.394105911254883 + ], + [ + "▁Comedy", + -12.394123077392578 + ], + [ + "▁conform", + -12.394177436828613 + ], + [ + "▁induce", + -12.394246101379395 + ], + [ + "PE", + -12.394259452819824 + ], + [ + "▁reconciliation", + -12.394501686096191 + ], + [ + "▁reliance", + -12.394745826721191 + ], + [ + "▁Productions", + -12.395023345947266 + ], + [ + "▁mutation", + -12.395033836364746 + ], + [ + "▁outgoing", + -12.395051956176758 + ], + [ + "hat", + -12.39505386352539 + ], + [ + "▁perimeter", + -12.395275115966797 + ], + [ + "inflammatory", + -12.395450592041016 + ], + [ + "▁Gr", + -12.395496368408203 + ], + [ + "▁ROI", + -12.395587921142578 + ], + [ + "▁usable", + -12.395604133605957 + ], + [ + "▁Punjab", + -12.395818710327148 + ], + [ + "▁advent", + -12.39591121673584 + ], + [ + "▁Alt", + -12.395920753479004 + ], + [ + "▁coordinating", + -12.396036148071289 + ], + [ + "▁porcelain", + -12.396048545837402 + ], + [ + "▁Sad", + -12.39608097076416 + ], + [ + "▁differs", + -12.396220207214355 + ], + [ + "bio", + -12.396281242370605 + ], + [ + "▁proportions", + -12.396328926086426 + ], + [ + "▁suspend", + -12.396352767944336 + ], + [ + "▁sovereignty", + -12.39651870727539 + ], + [ + "▁separating", + -12.396589279174805 + ], + [ + "▁bo", + -12.397130012512207 + ], + [ + "IA", + -12.397314071655273 + ], + [ + "▁Tur", + -12.397374153137207 + ], + [ + "usually", + -12.397379875183105 + ], + [ + "▁Guinea", + -12.397457122802734 + ], + [ + "▁Included", + -12.397558212280273 + ], + [ + "▁Guru", + -12.397699356079102 + ], + [ + "▁reductions", + -12.397708892822266 + ], + [ + "▁ja", + -12.397875785827637 + ], + [ + "▁destined", + -12.39813232421875 + ], + [ + "▁650", + -12.398184776306152 + ], + [ + "▁drank", + -12.398248672485352 + ], + [ + "BR", + -12.39842414855957 + ], + [ + "▁au", + -12.398445129394531 + ], + [ + "▁tents", + -12.398659706115723 + ], + [ + "▁ensured", + -12.398787498474121 + ], + [ + "▁Employee", + -12.398853302001953 + ], + [ + "ui", + -12.399009704589844 + ], + [ + "RO", + -12.399036407470703 + ], + [ + "▁collagen", + -12.399293899536133 + ], + [ + "▁114", + -12.399435997009277 + ], + [ + "▁Ubuntu", + -12.399601936340332 + ], + [ + "▁Gross", + -12.399611473083496 + ], + [ + "▁Darwin", + -12.399750709533691 + ], + [ + "▁greet", + -12.399758338928223 + ], + [ + "▁Selling", + -12.39977741241455 + ], + [ + "▁baggage", + -12.399796485900879 + ], + [ + "▁Grid", + -12.399866104125977 + ], + [ + "▁possesses", + -12.399901390075684 + ], + [ + "▁Places", + -12.400198936462402 + ], + [ + "▁Pharmacy", + -12.40027904510498 + ], + [ + "▁hourly", + -12.400279998779297 + ], + [ + "▁Riverside", + -12.400280952453613 + ], + [ + "▁brackets", + -12.40040397644043 + ], + [ + "▁wreck", + -12.40045166015625 + ], + [ + "▁Colonel", + -12.400511741638184 + ], + [ + "▁Spend", + -12.400585174560547 + ], + [ + "▁jars", + -12.400769233703613 + ], + [ + "uf", + -12.400803565979004 + ], + [ + "▁softer", + -12.400836944580078 + ], + [ + "▁UPS", + -12.400996208190918 + ], + [ + "▁legends", + -12.401117324829102 + ], + [ + "ale", + -12.401247024536133 + ], + [ + "▁Hyundai", + -12.401352882385254 + ], + [ + "▁Guidelines", + -12.401556968688965 + ], + [ + "▁numbered", + -12.401617050170898 + ], + [ + "▁seldom", + -12.401620864868164 + ], + [ + "mos", + -12.401741981506348 + ], + [ + "▁guessed", + -12.40201473236084 + ], + [ + "SP", + -12.402027130126953 + ], + [ + "▁Surrey", + -12.402054786682129 + ], + [ + "▁NV", + -12.402056694030762 + ], + [ + "¢", + -12.40225601196289 + ], + [ + "▁Fest", + -12.402369499206543 + ], + [ + "▁temporal", + -12.40257453918457 + ], + [ + "production", + -12.402613639831543 + ], + [ + "▁cider", + -12.402798652648926 + ], + [ + "HC", + -12.402826309204102 + ], + [ + "▁Nan", + -12.402836799621582 + ], + [ + "▁Heroes", + -12.40291690826416 + ], + [ + "▁UCLA", + -12.402957916259766 + ], + [ + "▁penetration", + -12.402990341186523 + ], + [ + "▁Tracy", + -12.403078079223633 + ], + [ + "tus", + -12.403079986572266 + ], + [ + "1999", + -12.403217315673828 + ], + [ + "▁Meghan", + -12.40331745147705 + ], + [ + "ä", + -12.403413772583008 + ], + [ + "ien", + -12.40346908569336 + ], + [ + "▁unparalleled", + -12.403565406799316 + ], + [ + "▁inspires", + -12.403582572937012 + ], + [ + "▁Hampton", + -12.403667449951172 + ], + [ + "▁haha", + -12.40383243560791 + ], + [ + "▁Davidson", + -12.403986930847168 + ], + [ + "▁pistol", + -12.404120445251465 + ], + [ + "MT", + -12.40412712097168 + ], + [ + "▁Toy", + -12.4042329788208 + ], + [ + "▁rapper", + -12.40424633026123 + ], + [ + "▁VS", + -12.404295921325684 + ], + [ + "▁filmmaker", + -12.404333114624023 + ], + [ + "▁foreigners", + -12.404340744018555 + ], + [ + "eva", + -12.404494285583496 + ], + [ + "▁Aboriginal", + -12.404509544372559 + ], + [ + "▁facilitating", + -12.404987335205078 + ], + [ + "defined", + -12.40499210357666 + ], + [ + "▁mob", + -12.405169486999512 + ], + [ + "▁Speech", + -12.405245780944824 + ], + [ + "DR", + -12.40524959564209 + ], + [ + "▁embroidery", + -12.405454635620117 + ], + [ + "▁Publisher", + -12.405509948730469 + ], + [ + "▁verb", + -12.40554141998291 + ], + [ + "▁paved", + -12.405583381652832 + ], + [ + "court", + -12.405813217163086 + ], + [ + "▁jelly", + -12.405864715576172 + ], + [ + "▁Chang", + -12.406027793884277 + ], + [ + "▁probation", + -12.406060218811035 + ], + [ + "▁Apache", + -12.406132698059082 + ], + [ + "▁Fields", + -12.406133651733398 + ], + [ + "▁validate", + -12.406172752380371 + ], + [ + "▁Classes", + -12.406198501586914 + ], + [ + "▁unstable", + -12.40623950958252 + ], + [ + "▁Rivers", + -12.406332969665527 + ], + [ + "▁weeds", + -12.406357765197754 + ], + [ + "▁String", + -12.406367301940918 + ], + [ + "▁Crawford", + -12.406381607055664 + ], + [ + "▁Kingston", + -12.406424522399902 + ], + [ + "▁Warm", + -12.406561851501465 + ], + [ + "▁stresses", + -12.406800270080566 + ], + [ + "▁Animals", + -12.406843185424805 + ], + [ + "▁по", + -12.406905174255371 + ], + [ + "▁legislators", + -12.407247543334961 + ], + [ + "▁eliminates", + -12.407266616821289 + ], + [ + "▁announces", + -12.40737533569336 + ], + [ + "▁RB", + -12.407503128051758 + ], + [ + "▁Sanchez", + -12.407577514648438 + ], + [ + "▁Sunshine", + -12.407753944396973 + ], + [ + "▁entrepreneurship", + -12.407861709594727 + ], + [ + "▁analyse", + -12.407958030700684 + ], + [ + "▁balances", + -12.408003807067871 + ], + [ + "▁GREAT", + -12.408041954040527 + ], + [ + "▁amusement", + -12.408086776733398 + ], + [ + "▁HBO", + -12.408568382263184 + ], + [ + "▁Podcast", + -12.408682823181152 + ], + [ + "▁Plymouth", + -12.408770561218262 + ], + [ + "▁metropolitan", + -12.408803939819336 + ], + [ + "▁Role", + -12.408814430236816 + ], + [ + "▁Joey", + -12.408884048461914 + ], + [ + "▁Landscape", + -12.408927917480469 + ], + [ + "▁hp", + -12.409000396728516 + ], + [ + "▁agile", + -12.409037590026855 + ], + [ + "▁arrests", + -12.409095764160156 + ], + [ + "▁skillet", + -12.409143447875977 + ], + [ + "▁merits", + -12.409156799316406 + ], + [ + "▁Natalie", + -12.4091796875 + ], + [ + "에", + -12.40919303894043 + ], + [ + "▁overlook", + -12.409303665161133 + ], + [ + "Care", + -12.40937614440918 + ], + [ + "▁aesthetics", + -12.409536361694336 + ], + [ + "▁telecommunications", + -12.409820556640625 + ], + [ + "▁Boot", + -12.409961700439453 + ], + [ + "▁FCC", + -12.410055160522461 + ], + [ + "▁postal", + -12.410091400146484 + ], + [ + "▁bullets", + -12.410416603088379 + ], + [ + "▁Height", + -12.41049575805664 + ], + [ + "▁computational", + -12.410530090332031 + ], + [ + "▁puppies", + -12.410685539245605 + ], + [ + "▁}", + -12.410696983337402 + ], + [ + "▁mansion", + -12.410709381103516 + ], + [ + "six", + -12.410971641540527 + ], + [ + "▁extracts", + -12.411026000976562 + ], + [ + "▁wildly", + -12.411044120788574 + ], + [ + "▁scaling", + -12.41108226776123 + ], + [ + "▁kidding", + -12.411113739013672 + ], + [ + "▁Cove", + -12.411199569702148 + ], + [ + "▁showcases", + -12.411269187927246 + ], + [ + "▁crab", + -12.411296844482422 + ], + [ + "▁retiring", + -12.411316871643066 + ], + [ + "Here", + -12.411457061767578 + ], + [ + "▁Admission", + -12.411593437194824 + ], + [ + "▁Debbie", + -12.411643981933594 + ], + [ + "▁Rapids", + -12.41165542602539 + ], + [ + "▁Jong", + -12.411730766296387 + ], + [ + "▁Album", + -12.411735534667969 + ], + [ + "▁Marion", + -12.411848068237305 + ], + [ + "▁resemble", + -12.41187858581543 + ], + [ + "▁Apartment", + -12.411914825439453 + ], + [ + "final", + -12.411952018737793 + ], + [ + "▁essentials", + -12.411995887756348 + ], + [ + "▁Tier", + -12.412056922912598 + ], + [ + "▁standpoint", + -12.412100791931152 + ], + [ + "▁matte", + -12.412131309509277 + ], + [ + "Line", + -12.412137985229492 + ], + [ + "▁psychiatric", + -12.412261962890625 + ], + [ + "▁grape", + -12.412283897399902 + ], + [ + "▁Tribune", + -12.412291526794434 + ], + [ + "▁underwent", + -12.412556648254395 + ], + [ + "maybe", + -12.412723541259766 + ], + [ + "▁sealing", + -12.412765502929688 + ], + [ + "▁eclectic", + -12.412871360778809 + ], + [ + "▁purity", + -12.412904739379883 + ], + [ + "TMs", + -12.41291332244873 + ], + [ + "▁Gender", + -12.41291618347168 + ], + [ + "▁lesbian", + -12.413002014160156 + ], + [ + "▁Era", + -12.413021087646484 + ], + [ + "▁Notify", + -12.413119316101074 + ], + [ + "▁personalised", + -12.413128852844238 + ], + [ + "▁counterpart", + -12.413168907165527 + ], + [ + "▁Pocket", + -12.413372993469238 + ], + [ + "ches", + -12.413484573364258 + ], + [ + "▁Pam", + -12.413619995117188 + ], + [ + "▁tenth", + -12.413636207580566 + ], + [ + "▁skating", + -12.41364860534668 + ], + [ + "▁commence", + -12.413742065429688 + ], + [ + "▁clutter", + -12.413755416870117 + ], + [ + "mic", + -12.413832664489746 + ], + [ + "▁continental", + -12.413835525512695 + ], + [ + "▁tackles", + -12.413847923278809 + ], + [ + "▁Approximately", + -12.413898468017578 + ], + [ + "▁boast", + -12.413934707641602 + ], + [ + "▁turnaround", + -12.413973808288574 + ], + [ + "▁Norton", + -12.414067268371582 + ], + [ + "ska", + -12.414295196533203 + ], + [ + "▁Fur", + -12.414352416992188 + ], + [ + "▁residual", + -12.414584159851074 + ], + [ + "▁Davies", + -12.414604187011719 + ], + [ + "▁Skip", + -12.414616584777832 + ], + [ + "▁copying", + -12.414835929870605 + ], + [ + "FT", + -12.415132522583008 + ], + [ + "▁vpn", + -12.415141105651855 + ], + [ + "▁Mickey", + -12.415196418762207 + ], + [ + "April", + -12.415247917175293 + ], + [ + "▁theatrical", + -12.41527271270752 + ], + [ + "▁Said", + -12.415329933166504 + ], + [ + "▁MK", + -12.415356636047363 + ], + [ + "▁cd", + -12.415454864501953 + ], + [ + "▁flown", + -12.415546417236328 + ], + [ + "▁molecule", + -12.415660858154297 + ], + [ + "▁nephew", + -12.415921211242676 + ], + [ + "mas", + -12.4159574508667 + ], + [ + "▁gradual", + -12.416028022766113 + ], + [ + "▁shrink", + -12.41606616973877 + ], + [ + "▁observers", + -12.416078567504883 + ], + [ + "ato", + -12.416085243225098 + ], + [ + "▁permissions", + -12.41614818572998 + ], + [ + "Mobile", + -12.416322708129883 + ], + [ + "▁exemplary", + -12.416359901428223 + ], + [ + "▁Lancaster", + -12.416464805603027 + ], + [ + "▁wa", + -12.416553497314453 + ], + [ + "▁flashing", + -12.41660213470459 + ], + [ + "▁cube", + -12.416671752929688 + ], + [ + "▁maritime", + -12.416675567626953 + ], + [ + "▁Investigation", + -12.416751861572266 + ], + [ + "▁punished", + -12.416777610778809 + ], + [ + "▁YES", + -12.41680908203125 + ], + [ + "▁enforced", + -12.416813850402832 + ], + [ + "▁unemployed", + -12.416850090026855 + ], + [ + "▁visualization", + -12.416901588439941 + ], + [ + "▁Present", + -12.416929244995117 + ], + [ + "с", + -12.416935920715332 + ], + [ + "▁Brick", + -12.416947364807129 + ], + [ + "▁outputs", + -12.41695785522461 + ], + [ + "▁shutter", + -12.416972160339355 + ], + [ + "▁sew", + -12.417014122009277 + ], + [ + "lane", + -12.417022705078125 + ], + [ + "▁Breast", + -12.417034149169922 + ], + [ + "▁flock", + -12.4170503616333 + ], + [ + "▁scanned", + -12.417119026184082 + ], + [ + "▁Cy", + -12.417208671569824 + ], + [ + "▁breastfeeding", + -12.417248725891113 + ], + [ + "Posted", + -12.417380332946777 + ], + [ + "▁Monitoring", + -12.41739273071289 + ], + [ + "▁501", + -12.417619705200195 + ], + [ + "▁layouts", + -12.417736053466797 + ], + [ + "▁expenditures", + -12.417781829833984 + ], + [ + "▁Erik", + -12.417807579040527 + ], + [ + "▁chaotic", + -12.41782283782959 + ], + [ + "▁savvy", + -12.417838096618652 + ], + [ + "▁PowerPoint", + -12.417908668518066 + ], + [ + "Hi", + -12.417941093444824 + ], + [ + "▁Pokemon", + -12.417948722839355 + ], + [ + "▁Topics", + -12.417972564697266 + ], + [ + "▁Sofa", + -12.417976379394531 + ], + [ + "▁congestion", + -12.41806697845459 + ], + [ + "▁1918", + -12.418456077575684 + ], + [ + "Yeah", + -12.418476104736328 + ], + [ + "▁café", + -12.41851806640625 + ], + [ + "▁Spread", + -12.418563842773438 + ], + [ + "▁Loop", + -12.418580055236816 + ], + [ + "▁inheritance", + -12.418686866760254 + ], + [ + "▁pal", + -12.41881275177002 + ], + [ + "▁Rex", + -12.418878555297852 + ], + [ + "▁bells", + -12.418902397155762 + ], + [ + "▁waterfall", + -12.418917655944824 + ], + [ + "ening", + -12.418968200683594 + ], + [ + "▁Manor", + -12.419012069702148 + ], + [ + "▁partnering", + -12.419062614440918 + ], + [ + "▁flawless", + -12.419316291809082 + ], + [ + "▁Facility", + -12.419318199157715 + ], + [ + "▁fluffy", + -12.419404029846191 + ], + [ + "▁Recruitment", + -12.419454574584961 + ], + [ + "ax", + -12.419508934020996 + ], + [ + "▁Accordingly", + -12.419646263122559 + ], + [ + "rk", + -12.419700622558594 + ], + [ + "▁Highland", + -12.419953346252441 + ], + [ + "▁Rise", + -12.41995620727539 + ], + [ + "▁Prague", + -12.41999626159668 + ], + [ + "▁grabbing", + -12.420187950134277 + ], + [ + "▁testament", + -12.420255661010742 + ], + [ + "▁Vikings", + -12.42029857635498 + ], + [ + "▁carbs", + -12.4203519821167 + ], + [ + "▁tended", + -12.420376777648926 + ], + [ + "▁Random", + -12.420478820800781 + ], + [ + "▁gal", + -12.420642852783203 + ], + [ + "IV", + -12.420677185058594 + ], + [ + "▁descriptive", + -12.420724868774414 + ], + [ + "▁staffing", + -12.42073917388916 + ], + [ + "▁Arlington", + -12.420819282531738 + ], + [ + "▁expire", + -12.420894622802734 + ], + [ + "▁heroin", + -12.420928955078125 + ], + [ + "▁accreditation", + -12.42103385925293 + ], + [ + "▁senators", + -12.421121597290039 + ], + [ + "say", + -12.421127319335938 + ], + [ + "▁Mack", + -12.421141624450684 + ], + [ + "▁silhouette", + -12.42121410369873 + ], + [ + "▁amusing", + -12.421218872070312 + ], + [ + "▁Fa", + -12.42136001586914 + ], + [ + "▁stunned", + -12.421369552612305 + ], + [ + "▁erosion", + -12.421371459960938 + ], + [ + "▁colonies", + -12.421452522277832 + ], + [ + "▁stark", + -12.421595573425293 + ], + [ + "▁minded", + -12.421627044677734 + ], + [ + "PD", + -12.421643257141113 + ], + [ + "▁scholarly", + -12.421751022338867 + ], + [ + "ili", + -12.421805381774902 + ], + [ + "▁injustice", + -12.421911239624023 + ], + [ + "▁exploded", + -12.422002792358398 + ], + [ + "▁faulty", + -12.422078132629395 + ], + [ + "▁Ru", + -12.422118186950684 + ], + [ + "▁KW", + -12.422124862670898 + ], + [ + "▁histories", + -12.422185897827148 + ], + [ + "▁Wagner", + -12.422332763671875 + ], + [ + "▁sweetness", + -12.42237663269043 + ], + [ + "▁Comp", + -12.422385215759277 + ], + [ + "cl", + -12.422471046447754 + ], + [ + "▁Gala", + -12.422496795654297 + ], + [ + "▁coincidence", + -12.422557830810547 + ], + [ + "▁creditors", + -12.422722816467285 + ], + [ + "▁chunks", + -12.422844886779785 + ], + [ + "▁slated", + -12.422931671142578 + ], + [ + "bird", + -12.422968864440918 + ], + [ + "▁Prix", + -12.422977447509766 + ], + [ + "Bo", + -12.423016548156738 + ], + [ + "▁sunrise", + -12.423035621643066 + ], + [ + "▁Wiki", + -12.42304515838623 + ], + [ + "▁spontaneous", + -12.423050880432129 + ], + [ + "▁outing", + -12.423083305358887 + ], + [ + "▁widow", + -12.423134803771973 + ], + [ + "án", + -12.42322063446045 + ], + [ + "▁Exclusive", + -12.42324447631836 + ], + [ + "▁Leicester", + -12.42325210571289 + ], + [ + "▁shouting", + -12.423257827758789 + ], + [ + "▁Might", + -12.423280715942383 + ], + [ + "▁Guitar", + -12.42351245880127 + ], + [ + "▁guitars", + -12.42356014251709 + ], + [ + "▁suburb", + -12.423819541931152 + ], + [ + "▁Heating", + -12.42387866973877 + ], + [ + "ped", + -12.424151420593262 + ], + [ + "▁drafting", + -12.424155235290527 + ], + [ + "▁Latino", + -12.42422103881836 + ], + [ + "▁unexpectedly", + -12.424474716186523 + ], + [ + "▁1951", + -12.424501419067383 + ], + [ + "Blue", + -12.42453384399414 + ], + [ + "▁petroleum", + -12.424901962280273 + ], + [ + "▁Walsh", + -12.425395965576172 + ], + [ + "▁snapshot", + -12.425397872924805 + ], + [ + "▁translations", + -12.425582885742188 + ], + [ + "▁Andre", + -12.425651550292969 + ], + [ + "▁Mil", + -12.426019668579102 + ], + [ + "look", + -12.426230430603027 + ], + [ + "▁progressed", + -12.426322937011719 + ], + [ + "▁Nixon", + -12.426326751708984 + ], + [ + "▁Kickstarter", + -12.426329612731934 + ], + [ + "▁flee", + -12.426366806030273 + ], + [ + "▁faded", + -12.426382064819336 + ], + [ + "▁Sonic", + -12.426438331604004 + ], + [ + "▁buds", + -12.42648696899414 + ], + [ + "▁carriage", + -12.426518440246582 + ], + [ + "▁hon", + -12.426630020141602 + ], + [ + "▁Push", + -12.426657676696777 + ], + [ + "▁seam", + -12.42678165435791 + ], + [ + "▁Origin", + -12.426791191101074 + ], + [ + "dal", + -12.426875114440918 + ], + [ + "▁shouted", + -12.426963806152344 + ], + [ + "▁Catch", + -12.427087783813477 + ], + [ + "bee", + -12.427128791809082 + ], + [ + "▁GI", + -12.427142143249512 + ], + [ + "▁Bean", + -12.42720890045166 + ], + [ + "▁Ol", + -12.427240371704102 + ], + [ + "▁Ci", + -12.427305221557617 + ], + [ + "▁Michel", + -12.427570343017578 + ], + [ + "▁bosses", + -12.42761516571045 + ], + [ + "gram", + -12.427659034729004 + ], + [ + "▁WR", + -12.427788734436035 + ], + [ + "▁Spin", + -12.427924156188965 + ], + [ + "Great", + -12.428008079528809 + ], + [ + "▁Notre", + -12.428129196166992 + ], + [ + "▁socialist", + -12.42843246459961 + ], + [ + "▁disappoint", + -12.428442001342773 + ], + [ + "rod", + -12.42846393585205 + ], + [ + "▁Semi", + -12.42846965789795 + ], + [ + "▁decisive", + -12.428675651550293 + ], + [ + "▁Blade", + -12.428892135620117 + ], + [ + "▁IA", + -12.429025650024414 + ], + [ + "▁Gore", + -12.429178237915039 + ], + [ + "▁whipped", + -12.429369926452637 + ], + [ + "▁transitions", + -12.429583549499512 + ], + [ + "▁laminate", + -12.429584503173828 + ], + [ + "▁spanning", + -12.429646492004395 + ], + [ + "▁PI", + -12.429722785949707 + ], + [ + "sta", + -12.429739952087402 + ], + [ + "▁vi", + -12.42979621887207 + ], + [ + "▁arose", + -12.429933547973633 + ], + [ + "▁Draw", + -12.429997444152832 + ], + [ + "▁BI", + -12.430076599121094 + ], + [ + "▁fairness", + -12.430082321166992 + ], + [ + "▁bricks", + -12.430133819580078 + ], + [ + "▁175", + -12.430166244506836 + ], + [ + "oka", + -12.430188179016113 + ], + [ + "▁Problems", + -12.430387496948242 + ], + [ + "▁forbidden", + -12.430479049682617 + ], + [ + "▁repeal", + -12.430510520935059 + ], + [ + "▁informational", + -12.43053150177002 + ], + [ + "▁reps", + -12.430566787719727 + ], + [ + "▁antibiotic", + -12.430596351623535 + ], + [ + "child", + -12.430785179138184 + ], + [ + "▁estimation", + -12.430800437927246 + ], + [ + "▁reuse", + -12.430808067321777 + ], + [ + "▁strengthened", + -12.43087387084961 + ], + [ + "▁Integration", + -12.430936813354492 + ], + [ + "▁discharged", + -12.431029319763184 + ], + [ + "▁Var", + -12.431031227111816 + ], + [ + "▁municipalities", + -12.431099891662598 + ], + [ + "▁deduction", + -12.431243896484375 + ], + [ + "▁contracting", + -12.431304931640625 + ], + [ + "▁Phillip", + -12.43132495880127 + ], + [ + "RT", + -12.431427001953125 + ], + [ + "▁Cute", + -12.431475639343262 + ], + [ + "nick", + -12.43150806427002 + ], + [ + "NC", + -12.431654930114746 + ], + [ + "▁scar", + -12.43195915222168 + ], + [ + "▁Malta", + -12.432121276855469 + ], + [ + "▁drummer", + -12.432161331176758 + ], + [ + "▁Adventures", + -12.432178497314453 + ], + [ + "esteem", + -12.432181358337402 + ], + [ + "▁Robertson", + -12.432328224182129 + ], + [ + "▁Label", + -12.43233871459961 + ], + [ + "▁counters", + -12.432596206665039 + ], + [ + "▁Epic", + -12.432652473449707 + ], + [ + "▁Groups", + -12.43280029296875 + ], + [ + "▁glove", + -12.432884216308594 + ], + [ + "mus", + -12.432950973510742 + ], + [ + "▁Connor", + -12.43299674987793 + ], + [ + "▁Clare", + -12.433260917663574 + ], + [ + "▁Carrie", + -12.433290481567383 + ], + [ + "▁judgments", + -12.433429718017578 + ], + [ + "▁tow", + -12.433445930480957 + ], + [ + "national", + -12.433518409729004 + ], + [ + "▁assistants", + -12.433575630187988 + ], + [ + "▁fashioned", + -12.433672904968262 + ], + [ + "▁signage", + -12.433684349060059 + ], + [ + "▁idiot", + -12.433955192565918 + ], + [ + "▁idle", + -12.43400764465332 + ], + [ + "▁Changing", + -12.434123039245605 + ], + [ + "▁Supplier", + -12.434183120727539 + ], + [ + "▁urgency", + -12.434195518493652 + ], + [ + "▁deeds", + -12.434240341186523 + ], + [ + "▁statistically", + -12.434261322021484 + ], + [ + "▁organise", + -12.434286117553711 + ], + [ + "isa", + -12.434332847595215 + ], + [ + "▁Grow", + -12.434358596801758 + ], + [ + "▁Bra", + -12.434534072875977 + ], + [ + "▁brunch", + -12.434550285339355 + ], + [ + "▁HTC", + -12.434600830078125 + ], + [ + "▁Lines", + -12.434630393981934 + ], + [ + "▁fox", + -12.434637069702148 + ], + [ + "▁Favorite", + -12.434639930725098 + ], + [ + "▁Pal", + -12.434683799743652 + ], + [ + "▁creek", + -12.434767723083496 + ], + [ + "▁Religious", + -12.434855461120605 + ], + [ + "▁economists", + -12.43490219116211 + ], + [ + "une", + -12.43506145477295 + ], + [ + "▁Vinyl", + -12.43506908416748 + ], + [ + "▁mentors", + -12.435073852539062 + ], + [ + "▁NS", + -12.435131072998047 + ], + [ + "▁classmates", + -12.435203552246094 + ], + [ + "▁customizable", + -12.43535327911377 + ], + [ + "dor", + -12.435587882995605 + ], + [ + "▁premature", + -12.435623168945312 + ], + [ + "ET", + -12.435647010803223 + ], + [ + "▁Yi", + -12.435647010803223 + ], + [ + "ago", + -12.435722351074219 + ], + [ + "▁newsletters", + -12.435742378234863 + ], + [ + "▁administer", + -12.435770034790039 + ], + [ + "▁Beatles", + -12.4358549118042 + ], + [ + "▁ounces", + -12.435896873474121 + ], + [ + "▁hearings", + -12.435988426208496 + ], + [ + "SH", + -12.43600082397461 + ], + [ + "▁Boulder", + -12.436148643493652 + ], + [ + "▁Tru", + -12.436161994934082 + ], + [ + "▁blackjack", + -12.436244010925293 + ], + [ + "▁Advertisement", + -12.436568260192871 + ], + [ + "▁TODAY", + -12.4365816116333 + ], + [ + "▁limbs", + -12.436612129211426 + ], + [ + "▁identifiable", + -12.436635971069336 + ], + [ + "▁placebo", + -12.436799049377441 + ], + [ + "▁strategically", + -12.436810493469238 + ], + [ + "▁departed", + -12.436856269836426 + ], + [ + "▁mats", + -12.43690299987793 + ], + [ + "▁classy", + -12.436905860900879 + ], + [ + "▁Gifts", + -12.436962127685547 + ], + [ + "▁Lakers", + -12.43706226348877 + ], + [ + "▁Katherine", + -12.437064170837402 + ], + [ + "▁correspond", + -12.437140464782715 + ], + [ + "▁popcorn", + -12.437360763549805 + ], + [ + "▁cultivate", + -12.437435150146484 + ], + [ + "▁immensely", + -12.437580108642578 + ], + [ + "▁Shepherd", + -12.437743186950684 + ], + [ + "▁downstream", + -12.437811851501465 + ], + [ + "▁famed", + -12.43789291381836 + ], + [ + "▁Lori", + -12.438074111938477 + ], + [ + "▁cardio", + -12.438109397888184 + ], + [ + "▁addictive", + -12.438277244567871 + ], + [ + "▁refine", + -12.438497543334961 + ], + [ + "▁subsection", + -12.438519477844238 + ], + [ + "▁cereal", + -12.43868350982666 + ], + [ + "▁Spotify", + -12.438770294189453 + ], + [ + "▁autonomy", + -12.438796043395996 + ], + [ + "▁CDC", + -12.438905715942383 + ], + [ + "▁psychic", + -12.438909530639648 + ], + [ + "▁pests", + -12.438983917236328 + ], + [ + "▁reels", + -12.438983917236328 + ], + [ + "▁Minutes", + -12.439452171325684 + ], + [ + "▁stigma", + -12.439529418945312 + ], + [ + "▁AK", + -12.439570426940918 + ], + [ + "▁buddies", + -12.439577102661133 + ], + [ + "▁neatly", + -12.43970775604248 + ], + [ + "▁fin", + -12.439920425415039 + ], + [ + "▁virgin", + -12.439973831176758 + ], + [ + "ste", + -12.440016746520996 + ], + [ + "▁historians", + -12.44009017944336 + ], + [ + "▁Saturn", + -12.440230369567871 + ], + [ + "▁resign", + -12.440411567687988 + ], + [ + "aba", + -12.440415382385254 + ], + [ + "▁grandson", + -12.440435409545898 + ], + [ + "▁rituals", + -12.440543174743652 + ], + [ + "dog", + -12.440556526184082 + ], + [ + "▁muscular", + -12.44066333770752 + ], + [ + "▁juices", + -12.440732955932617 + ], + [ + "▁pseudo", + -12.440744400024414 + ], + [ + "▁props", + -12.440793991088867 + ], + [ + "▁Vo", + -12.44080924987793 + ], + [ + "▁cutter", + -12.440851211547852 + ], + [ + "▁Preston", + -12.440862655639648 + ], + [ + "▁Christina", + -12.44088363647461 + ], + [ + "▁Frost", + -12.440895080566406 + ], + [ + "sharing", + -12.441035270690918 + ], + [ + "▁groom", + -12.441062927246094 + ], + [ + "▁IQ", + -12.441146850585938 + ], + [ + "▁Jewelry", + -12.44127082824707 + ], + [ + "elo", + -12.441346168518066 + ], + [ + "▁décor", + -12.441368103027344 + ], + [ + "▁Parade", + -12.441385269165039 + ], + [ + "▁equip", + -12.441568374633789 + ], + [ + "▁Reach", + -12.441683769226074 + ], + [ + "IR", + -12.441771507263184 + ], + [ + "▁electronically", + -12.441910743713379 + ], + [ + "▁Pitt", + -12.44193172454834 + ], + [ + "▁manga", + -12.442113876342773 + ], + [ + "▁racks", + -12.4421968460083 + ], + [ + "▁Freeman", + -12.442214012145996 + ], + [ + "▁Yan", + -12.442391395568848 + ], + [ + "▁upfront", + -12.442455291748047 + ], + [ + "▁Dash", + -12.442543029785156 + ], + [ + "eur", + -12.442622184753418 + ], + [ + "▁116", + -12.442825317382812 + ], + [ + "ants", + -12.442855834960938 + ], + [ + "▁Biblical", + -12.442898750305176 + ], + [ + "▁pearl", + -12.443026542663574 + ], + [ + "xx", + -12.443063735961914 + ], + [ + "▁closes", + -12.443134307861328 + ], + [ + "worthy", + -12.443158149719238 + ], + [ + "▁supervised", + -12.44327163696289 + ], + [ + "▁Tube", + -12.443526268005371 + ], + [ + "▁Awareness", + -12.44357681274414 + ], + [ + "▁turbo", + -12.443628311157227 + ], + [ + "▁yourselves", + -12.443774223327637 + ], + [ + "ations", + -12.443780899047852 + ], + [ + "▁Ly", + -12.443819046020508 + ], + [ + "▁Positive", + -12.443912506103516 + ], + [ + "science", + -12.443976402282715 + ], + [ + "▁permitting", + -12.444167137145996 + ], + [ + "SU", + -12.444247245788574 + ], + [ + "▁militants", + -12.444299697875977 + ], + [ + "▁experimenting", + -12.4443359375 + ], + [ + "▁hash", + -12.444438934326172 + ], + [ + "▁annoyed", + -12.444483757019043 + ], + [ + "▁declaring", + -12.444530487060547 + ], + [ + "▁Finnish", + -12.444543838500977 + ], + [ + "ole", + -12.444559097290039 + ], + [ + "▁Deer", + -12.444602966308594 + ], + [ + "▁Meaning", + -12.444670677185059 + ], + [ + "▁rightly", + -12.444842338562012 + ], + [ + "▁NEVER", + -12.444854736328125 + ], + [ + "▁Birds", + -12.44488525390625 + ], + [ + "▁comedian", + -12.44503116607666 + ], + [ + "ash", + -12.445053100585938 + ], + [ + "▁pivotal", + -12.445104598999023 + ], + [ + "▁BR", + -12.445703506469727 + ], + [ + "▁retains", + -12.445734024047852 + ], + [ + "GP", + -12.445755004882812 + ], + [ + "digit", + -12.445782661437988 + ], + [ + "▁Auburn", + -12.445844650268555 + ], + [ + "▁intrigued", + -12.445899963378906 + ], + [ + "▁enclosure", + -12.445939064025879 + ], + [ + "▁chooses", + -12.445958137512207 + ], + [ + "Class", + -12.446174621582031 + ], + [ + "▁GPU", + -12.446245193481445 + ], + [ + "▁Outstanding", + -12.446249008178711 + ], + [ + "▁aggressively", + -12.446495056152344 + ], + [ + "▁Swan", + -12.446565628051758 + ], + [ + "−", + -12.446747779846191 + ], + [ + "▁programmed", + -12.44681167602539 + ], + [ + "▁Hamas", + -12.446895599365234 + ], + [ + "▁defective", + -12.447101593017578 + ], + [ + "PL", + -12.447308540344238 + ], + [ + "sec", + -12.447358131408691 + ], + [ + "▁horrific", + -12.447464942932129 + ], + [ + "▁Silva", + -12.447604179382324 + ], + [ + "▁colon", + -12.447610855102539 + ], + [ + "▁bout", + -12.447614669799805 + ], + [ + "▁leaking", + -12.447674751281738 + ], + [ + "▁uniforms", + -12.447898864746094 + ], + [ + "▁Maximum", + -12.448028564453125 + ], + [ + "▁Bloom", + -12.448078155517578 + ], + [ + "▁rebuilding", + -12.448107719421387 + ], + [ + "▁Hayes", + -12.448168754577637 + ], + [ + "▁Drivers", + -12.448260307312012 + ], + [ + "▁spreads", + -12.44836139678955 + ], + [ + "Top", + -12.448370933532715 + ], + [ + "▁AWS", + -12.448448181152344 + ], + [ + "▁rash", + -12.448634147644043 + ], + [ + "▁Cycle", + -12.448831558227539 + ], + [ + "▁Cornell", + -12.448921203613281 + ], + [ + "ious", + -12.449017524719238 + ], + [ + "▁asbestos", + -12.449172019958496 + ], + [ + "▁dwell", + -12.449230194091797 + ], + [ + "▁Clients", + -12.449252128601074 + ], + [ + "▁composing", + -12.449478149414062 + ], + [ + "▁Colour", + -12.449501037597656 + ], + [ + "▁Pump", + -12.449522972106934 + ], + [ + "▁1917", + -12.4495267868042 + ], + [ + "▁Salem", + -12.44982624053955 + ], + [ + "nn", + -12.44985580444336 + ], + [ + "▁journeys", + -12.45003604888916 + ], + [ + "に", + -12.45019245147705 + ], + [ + "▁Quote", + -12.450207710266113 + ], + [ + "▁noisy", + -12.450272560119629 + ], + [ + "▁meats", + -12.450279235839844 + ], + [ + "▁resembles", + -12.45050048828125 + ], + [ + "▁Por", + -12.45052719116211 + ], + [ + "▁quartz", + -12.45064640045166 + ], + [ + "ando", + -12.45069408416748 + ], + [ + "▁altar", + -12.450794219970703 + ], + [ + "CL", + -12.45079517364502 + ], + [ + "▁mixes", + -12.4508056640625 + ], + [ + "▁Units", + -12.450986862182617 + ], + [ + "▁Legion", + -12.45106315612793 + ], + [ + "ique", + -12.451181411743164 + ], + [ + "▁burgers", + -12.451473236083984 + ], + [ + "▁renovations", + -12.451560020446777 + ], + [ + "▁blows", + -12.451595306396484 + ], + [ + "bedroom", + -12.451709747314453 + ], + [ + "stick", + -12.451824188232422 + ], + [ + "▁playback", + -12.451891899108887 + ], + [ + "▁Develop", + -12.452115058898926 + ], + [ + "▁characterization", + -12.452298164367676 + ], + [ + "▁enthusiast", + -12.45235824584961 + ], + [ + "▁Comprehensive", + -12.452519416809082 + ], + [ + "▁traveler", + -12.452838897705078 + ], + [ + "▁bunk", + -12.452924728393555 + ], + [ + "▁viewpoint", + -12.45295238494873 + ], + [ + "▁prophet", + -12.45334243774414 + ], + [ + "▁oversee", + -12.453348159790039 + ], + [ + "▁feathers", + -12.453598022460938 + ], + [ + "▁fingertips", + -12.45359992980957 + ], + [ + "▁filtered", + -12.453853607177734 + ], + [ + "▁compile", + -12.453959465026855 + ], + [ + "▁tasked", + -12.454136848449707 + ], + [ + "▁trout", + -12.454171180725098 + ], + [ + "▁Charity", + -12.45419692993164 + ], + [ + "▁Stockholm", + -12.454261779785156 + ], + [ + "▁societal", + -12.45431137084961 + ], + [ + "usa", + -12.454317092895508 + ], + [ + "▁marginal", + -12.454446792602539 + ], + [ + "▁Fin", + -12.454459190368652 + ], + [ + "▁stare", + -12.454516410827637 + ], + [ + "English", + -12.454533576965332 + ], + [ + "▁epub", + -12.45459270477295 + ], + [ + "▁rains", + -12.454794883728027 + ], + [ + "▁biased", + -12.45497989654541 + ], + [ + "▁Comes", + -12.455001831054688 + ], + [ + "▁effortless", + -12.455065727233887 + ], + [ + "office", + -12.455267906188965 + ], + [ + "▁installer", + -12.455427169799805 + ], + [ + "fan", + -12.45561408996582 + ], + [ + "eyed", + -12.455658912658691 + ], + [ + "▁Hidden", + -12.455695152282715 + ], + [ + "▁incumbent", + -12.45580005645752 + ], + [ + "▁poisoning", + -12.455875396728516 + ], + [ + "aries", + -12.455896377563477 + ], + [ + "▁communicated", + -12.455958366394043 + ], + [ + "▁Colors", + -12.456003189086914 + ], + [ + "▁Crisis", + -12.45604419708252 + ], + [ + "▁mar", + -12.456218719482422 + ], + [ + "▁Baldwin", + -12.456244468688965 + ], + [ + "▁defenders", + -12.456644058227539 + ], + [ + "▁Lineup", + -12.456708908081055 + ], + [ + "▁Elvis", + -12.456920623779297 + ], + [ + "▁flex", + -12.45704174041748 + ], + [ + "sale", + -12.457178115844727 + ], + [ + "▁Pioneer", + -12.45728588104248 + ], + [ + "▁Tall", + -12.457321166992188 + ], + [ + "anna", + -12.457353591918945 + ], + [ + "▁Builder", + -12.457378387451172 + ], + [ + "▁algebra", + -12.457404136657715 + ], + [ + "▁arranging", + -12.457559585571289 + ], + [ + "▁cooled", + -12.457600593566895 + ], + [ + "▁icing", + -12.457810401916504 + ], + [ + "▁appoint", + -12.457846641540527 + ], + [ + "▁Communities", + -12.45792007446289 + ], + [ + "▁Molecular", + -12.457955360412598 + ], + [ + "▁craving", + -12.457959175109863 + ], + [ + "▁vapor", + -12.457963943481445 + ], + [ + "▁attacker", + -12.457992553710938 + ], + [ + "db", + -12.458105087280273 + ], + [ + "▁Messenger", + -12.458230018615723 + ], + [ + "▁Manila", + -12.458300590515137 + ], + [ + "▁Calvin", + -12.458487510681152 + ], + [ + "β", + -12.458497047424316 + ], + [ + "▁Kavanaugh", + -12.458758354187012 + ], + [ + "▁vascular", + -12.458998680114746 + ], + [ + "▁preaching", + -12.459001541137695 + ], + [ + "▁Flooring", + -12.459012031555176 + ], + [ + "FC", + -12.459038734436035 + ], + [ + "▁restructuring", + -12.459066390991211 + ], + [ + "▁spacecraft", + -12.45907211303711 + ], + [ + "▁Ages", + -12.459073066711426 + ], + [ + "▁commenced", + -12.45913028717041 + ], + [ + "▁Lan", + -12.459151268005371 + ], + [ + "▁Continental", + -12.459183692932129 + ], + [ + "▁Ft", + -12.459239959716797 + ], + [ + "search", + -12.459402084350586 + ], + [ + "▁ES", + -12.459433555603027 + ], + [ + "▁CDs", + -12.459490776062012 + ], + [ + "▁flats", + -12.459548950195312 + ], + [ + "▁memoir", + -12.459672927856445 + ], + [ + "Master", + -12.459726333618164 + ], + [ + "▁ace", + -12.459734916687012 + ], + [ + "▁mutually", + -12.45974063873291 + ], + [ + "▁Patent", + -12.459803581237793 + ], + [ + "▁scrub", + -12.460026741027832 + ], + [ + "▁differentiation", + -12.460147857666016 + ], + [ + "▁cheeks", + -12.46021556854248 + ], + [ + "government", + -12.460373878479004 + ], + [ + "▁temptation", + -12.460430145263672 + ], + [ + "▁Pepper", + -12.460556983947754 + ], + [ + "▁Pier", + -12.460562705993652 + ], + [ + "▁specimens", + -12.461076736450195 + ], + [ + "▁onsite", + -12.46109676361084 + ], + [ + "▁surgeries", + -12.46134090423584 + ], + [ + "▁Sisters", + -12.461359977722168 + ], + [ + "▁doc", + -12.461402893066406 + ], + [ + "▁Improvement", + -12.461471557617188 + ], + [ + "▁mushroom", + -12.461526870727539 + ], + [ + "▁establishments", + -12.46155071258545 + ], + [ + "▁amend", + -12.461668014526367 + ], + [ + "▁economist", + -12.461670875549316 + ], + [ + "▁Mean", + -12.461824417114258 + ], + [ + "▁alright", + -12.461860656738281 + ], + [ + "▁Goods", + -12.461875915527344 + ], + [ + "packed", + -12.461969375610352 + ], + [ + "▁poised", + -12.462101936340332 + ], + [ + "▁expiration", + -12.46211051940918 + ], + [ + "▁Teams", + -12.46215534210205 + ], + [ + "▁Wallpaper", + -12.462209701538086 + ], + [ + "▁physiological", + -12.462355613708496 + ], + [ + "▁Acts", + -12.462593078613281 + ], + [ + "▁ventures", + -12.462693214416504 + ], + [ + "▁Login", + -12.462827682495117 + ], + [ + "▁mediation", + -12.462862014770508 + ], + [ + "frame", + -12.462989807128906 + ], + [ + "▁auf", + -12.463041305541992 + ], + [ + "▁imprisonment", + -12.463047981262207 + ], + [ + "▁brokerage", + -12.463053703308105 + ], + [ + "▁confess", + -12.463263511657715 + ], + [ + "▁Appeal", + -12.46332836151123 + ], + [ + "uc", + -12.463384628295898 + ], + [ + "▁Coin", + -12.463472366333008 + ], + [ + "▁Strange", + -12.463508605957031 + ], + [ + "▁striving", + -12.463554382324219 + ], + [ + "▁Counsel", + -12.463563919067383 + ], + [ + "▁PV", + -12.46357536315918 + ], + [ + "▁Treaty", + -12.463583946228027 + ], + [ + "▁Brands", + -12.463651657104492 + ], + [ + "▁vitro", + -12.46379566192627 + ], + [ + "efficient", + -12.463821411132812 + ], + [ + "▁Consultant", + -12.463831901550293 + ], + [ + "ML", + -12.463857650756836 + ], + [ + "▁unsuccessful", + -12.46386432647705 + ], + [ + "fr", + -12.46389389038086 + ], + [ + "Type", + -12.463973045349121 + ], + [ + "▁GST", + -12.464069366455078 + ], + [ + "▁sectional", + -12.46429443359375 + ], + [ + "▁discs", + -12.464374542236328 + ], + [ + "▁Trends", + -12.46444034576416 + ], + [ + "▁Dictionary", + -12.464488983154297 + ], + [ + "▁perfume", + -12.464503288269043 + ], + [ + "▁fi", + -12.464753150939941 + ], + [ + "▁potassium", + -12.46478271484375 + ], + [ + "itz", + -12.464801788330078 + ], + [ + "▁Coral", + -12.464974403381348 + ], + [ + "▁jurisdictions", + -12.465014457702637 + ], + [ + "▁inherently", + -12.465052604675293 + ], + [ + "▁evaluations", + -12.465182304382324 + ], + [ + "▁1914", + -12.465282440185547 + ], + [ + "▁dia", + -12.465343475341797 + ], + [ + "▁Gill", + -12.46539306640625 + ], + [ + "▁healed", + -12.465436935424805 + ], + [ + "TE", + -12.465669631958008 + ], + [ + "▁nm", + -12.465688705444336 + ], + [ + "▁vacancies", + -12.465739250183105 + ], + [ + "FS", + -12.46596908569336 + ], + [ + "▁survivor", + -12.466001510620117 + ], + [ + "▁motto", + -12.466045379638672 + ], + [ + "▁psychologist", + -12.466259002685547 + ], + [ + "▁contingent", + -12.466265678405762 + ], + [ + "▁Bach", + -12.466444969177246 + ], + [ + "ready", + -12.466448783874512 + ], + [ + "Art", + -12.466532707214355 + ], + [ + "▁Deluxe", + -12.466611862182617 + ], + [ + "▁Cardiff", + -12.466897964477539 + ], + [ + "▁whichever", + -12.467008590698242 + ], + [ + "▁atoms", + -12.467334747314453 + ], + [ + "▁simulations", + -12.46752643585205 + ], + [ + "▁prose", + -12.467608451843262 + ], + [ + "▁Zip", + -12.467710494995117 + ], + [ + "▁platinum", + -12.467850685119629 + ], + [ + "note", + -12.467878341674805 + ], + [ + "▁accumulate", + -12.467904090881348 + ], + [ + "▁Turbo", + -12.467917442321777 + ], + [ + "▁Chance", + -12.468061447143555 + ], + [ + "FL", + -12.468279838562012 + ], + [ + "sic", + -12.46837329864502 + ], + [ + "wave", + -12.46845817565918 + ], + [ + "▁paragraphs", + -12.46847915649414 + ], + [ + "AT", + -12.468557357788086 + ], + [ + "centered", + -12.468708038330078 + ], + [ + "▁liquidity", + -12.468709945678711 + ], + [ + "▁catastrophic", + -12.468789100646973 + ], + [ + "▁Launch", + -12.468826293945312 + ], + [ + "▁pulp", + -12.468929290771484 + ], + [ + "▁Engagement", + -12.46894645690918 + ], + [ + "▁receipts", + -12.469084739685059 + ], + [ + "bb", + -12.469202995300293 + ], + [ + "▁plunge", + -12.469206809997559 + ], + [ + "▁Reporting", + -12.469243049621582 + ], + [ + "speaking", + -12.469258308410645 + ], + [ + "▁customization", + -12.469263076782227 + ], + [ + "▁unpaid", + -12.469473838806152 + ], + [ + "▁schooling", + -12.46954345703125 + ], + [ + "▁injected", + -12.469592094421387 + ], + [ + "▁melody", + -12.469804763793945 + ], + [ + "Look", + -12.469852447509766 + ], + [ + "▁usa", + -12.469861030578613 + ], + [ + "▁terrified", + -12.47010326385498 + ], + [ + "▁smoother", + -12.470114707946777 + ], + [ + "Am", + -12.470303535461426 + ], + [ + "▁Aluminum", + -12.470315933227539 + ], + [ + "▁Dimensions", + -12.470386505126953 + ], + [ + "purpose", + -12.470406532287598 + ], + [ + "▁adolescents", + -12.470495223999023 + ], + [ + "▁endured", + -12.470503807067871 + ], + [ + "▁speedy", + -12.470553398132324 + ], + [ + "▁constituents", + -12.470675468444824 + ], + [ + "▁ikea", + -12.470836639404297 + ], + [ + "▁fittings", + -12.470840454101562 + ], + [ + "▁breadth", + -12.47109603881836 + ], + [ + "▁MAN", + -12.47113037109375 + ], + [ + "▁YORK", + -12.47114372253418 + ], + [ + "▁ICE", + -12.471213340759277 + ], + [ + "▁terminals", + -12.471389770507812 + ], + [ + "▁Singer", + -12.471405029296875 + ], + [ + "▁crispy", + -12.471763610839844 + ], + [ + "▁sinks", + -12.47192668914795 + ], + [ + "▁Syndrome", + -12.472009658813477 + ], + [ + "▁scars", + -12.472113609313965 + ], + [ + "▁deaf", + -12.472198486328125 + ], + [ + "▁Breaking", + -12.472284317016602 + ], + [ + "▁violating", + -12.472354888916016 + ], + [ + "▁seize", + -12.472383499145508 + ], + [ + "▁Holidays", + -12.472426414489746 + ], + [ + "▁pineapple", + -12.472502708435059 + ], + [ + "▁watering", + -12.472681045532227 + ], + [ + "▁Je", + -12.472845077514648 + ], + [ + "▁Spark", + -12.472904205322266 + ], + [ + "▁nickname", + -12.473007202148438 + ], + [ + "▁TC", + -12.473062515258789 + ], + [ + "▁harvested", + -12.473082542419434 + ], + [ + "cross", + -12.473340034484863 + ], + [ + "▁speeding", + -12.473447799682617 + ], + [ + "▁wizard", + -12.47359848022461 + ], + [ + "▁satin", + -12.473712921142578 + ], + [ + "▁strawberry", + -12.473835945129395 + ], + [ + "▁Mono", + -12.473901748657227 + ], + [ + "▁boosted", + -12.474125862121582 + ], + [ + "▁Businesses", + -12.474187850952148 + ], + [ + "▁Trophy", + -12.474292755126953 + ], + [ + "▁ordinance", + -12.474296569824219 + ], + [ + "▁Gardner", + -12.474310874938965 + ], + [ + "240", + -12.474364280700684 + ], + [ + "▁starred", + -12.474428176879883 + ], + [ + "▁Creation", + -12.474509239196777 + ], + [ + "▁renal", + -12.4745512008667 + ], + [ + "▁covenant", + -12.474595069885254 + ], + [ + "▁Providence", + -12.474767684936523 + ], + [ + "▁LIVE", + -12.474853515625 + ], + [ + "▁ray", + -12.474910736083984 + ], + [ + "Then", + -12.47499942779541 + ], + [ + "▁Wings", + -12.47500228881836 + ], + [ + "▁Cialis", + -12.475101470947266 + ], + [ + "▁Printing", + -12.475116729736328 + ], + [ + "▁NM", + -12.475275039672852 + ], + [ + "▁reef", + -12.475325584411621 + ], + [ + "▁swinging", + -12.475358009338379 + ], + [ + "etti", + -12.475394248962402 + ], + [ + "tag", + -12.475492477416992 + ], + [ + "▁Shawn", + -12.475664138793945 + ], + [ + "▁haunted", + -12.475688934326172 + ], + [ + "▁conductor", + -12.475905418395996 + ], + [ + "▁strawberries", + -12.476239204406738 + ], + [ + "▁shipments", + -12.47636604309082 + ], + [ + "fin", + -12.476372718811035 + ], + [ + "▁mysteries", + -12.476430892944336 + ], + [ + "iva", + -12.47647762298584 + ], + [ + "▁Lagos", + -12.476551055908203 + ], + [ + "▁rebuilt", + -12.476590156555176 + ], + [ + "▁panoramic", + -12.476648330688477 + ], + [ + "▁pops", + -12.476662635803223 + ], + [ + "▁●", + -12.47667121887207 + ], + [ + "▁quarry", + -12.476807594299316 + ], + [ + "▁artery", + -12.476810455322266 + ], + [ + "▁Character", + -12.476812362670898 + ], + [ + "▁breeds", + -12.477017402648926 + ], + [ + "▁Abbott", + -12.47702407836914 + ], + [ + "▁wifi", + -12.477045059204102 + ], + [ + "▁simmer", + -12.477100372314453 + ], + [ + "fly", + -12.477113723754883 + ], + [ + "▁empowerment", + -12.477141380310059 + ], + [ + "▁vampire", + -12.477173805236816 + ], + [ + "▁precipitation", + -12.477225303649902 + ], + [ + "▁Deals", + -12.477288246154785 + ], + [ + "▁1933", + -12.47749137878418 + ], + [ + "▁calculating", + -12.47762680053711 + ], + [ + "▁waterfront", + -12.477631568908691 + ], + [ + "▁Dodgers", + -12.477656364440918 + ], + [ + "▁planners", + -12.477726936340332 + ], + [ + "▁Willow", + -12.47773551940918 + ], + [ + "▁donating", + -12.477851867675781 + ], + [ + "▁Identity", + -12.47785472869873 + ], + [ + "▁monuments", + -12.477995872497559 + ], + [ + "▁encompasses", + -12.478007316589355 + ], + [ + "▁Parties", + -12.478217124938965 + ], + [ + "▁chi", + -12.478232383728027 + ], + [ + "▁sixteen", + -12.478663444519043 + ], + [ + "dollar", + -12.478835105895996 + ], + [ + "▁Pe", + -12.478888511657715 + ], + [ + "▁weblog", + -12.478926658630371 + ], + [ + "▁genetics", + -12.47906494140625 + ], + [ + "▁gears", + -12.479109764099121 + ], + [ + "▁Indoor", + -12.479124069213867 + ], + [ + "IO", + -12.479382514953613 + ], + [ + "▁Plain", + -12.479459762573242 + ], + [ + "▁tad", + -12.479509353637695 + ], + [ + "▁Pedro", + -12.479637145996094 + ], + [ + "▁resonance", + -12.479669570922852 + ], + [ + "▁Rabbi", + -12.479779243469238 + ], + [ + "▁recommending", + -12.4797945022583 + ], + [ + "▁Healing", + -12.47984790802002 + ], + [ + "▁scripture", + -12.479857444763184 + ], + [ + "▁Gone", + -12.479884147644043 + ], + [ + "▁ser", + -12.479937553405762 + ], + [ + "▁lure", + -12.480039596557617 + ], + [ + "▁Ste", + -12.480060577392578 + ], + [ + "▁vastly", + -12.480301856994629 + ], + [ + "▁articulate", + -12.480435371398926 + ], + [ + "▁Debt", + -12.480541229248047 + ], + [ + "▁deed", + -12.48059368133545 + ], + [ + "▁Lives", + -12.48068618774414 + ], + [ + "▁sympathetic", + -12.480768203735352 + ], + [ + "▁Logic", + -12.4807710647583 + ], + [ + "▁Pol", + -12.480856895446777 + ], + [ + "▁minimalist", + -12.480868339538574 + ], + [ + "▁heavenly", + -12.480873107910156 + ], + [ + "▁comprehension", + -12.480878829956055 + ], + [ + "▁Ale", + -12.480951309204102 + ], + [ + "р", + -12.48099422454834 + ], + [ + "▁Allison", + -12.48108959197998 + ], + [ + "▁Pierce", + -12.481101989746094 + ], + [ + "▁Cottage", + -12.48111343383789 + ], + [ + "▁infrared", + -12.481203079223633 + ], + [ + "▁Ranger", + -12.481220245361328 + ], + [ + "▁debuted", + -12.481283187866211 + ], + [ + "before", + -12.481405258178711 + ], + [ + "▁fist", + -12.481548309326172 + ], + [ + "▁marketed", + -12.481552124023438 + ], + [ + "▁Lutheran", + -12.481560707092285 + ], + [ + "▁cartridges", + -12.48165512084961 + ], + [ + "▁bouquet", + -12.481761932373047 + ], + [ + "▁jets", + -12.481978416442871 + ], + [ + "▁conversions", + -12.48202896118164 + ], + [ + "▁intro", + -12.482036590576172 + ], + [ + "▁Cindy", + -12.48216438293457 + ], + [ + "▁jerseys", + -12.482172966003418 + ], + [ + "▁bot", + -12.482401847839355 + ], + [ + "▁bids", + -12.482403755187988 + ], + [ + "block", + -12.482413291931152 + ], + [ + "▁Forget", + -12.482514381408691 + ], + [ + "trained", + -12.482686996459961 + ], + [ + "aki", + -12.482744216918945 + ], + [ + "▁meanings", + -12.482848167419434 + ], + [ + "Save", + -12.482931137084961 + ], + [ + "▁IR", + -12.483119010925293 + ], + [ + "▁conquer", + -12.483194351196289 + ], + [ + "ema", + -12.48320484161377 + ], + [ + "▁improper", + -12.483230590820312 + ], + [ + "▁ICT", + -12.483292579650879 + ], + [ + "▁groceries", + -12.483419418334961 + ], + [ + "▁stocked", + -12.48342227935791 + ], + [ + "▁sung", + -12.483694076538086 + ], + [ + "positive", + -12.48377513885498 + ], + [ + "▁antioxidant", + -12.483874320983887 + ], + [ + "▁floods", + -12.48398208618164 + ], + [ + "▁Cody", + -12.483985900878906 + ], + [ + "▁forged", + -12.483999252319336 + ], + [ + "▁Conduct", + -12.484066009521484 + ], + [ + "▁inspector", + -12.484163284301758 + ], + [ + "held", + -12.484223365783691 + ], + [ + "▁dentistry", + -12.484224319458008 + ], + [ + "▁screenshot", + -12.484232902526855 + ], + [ + "▁Bread", + -12.484309196472168 + ], + [ + "gon", + -12.484363555908203 + ], + [ + "▁slick", + -12.484366416931152 + ], + [ + "▁digest", + -12.484370231628418 + ], + [ + "AB", + -12.484394073486328 + ], + [ + "▁190", + -12.484463691711426 + ], + [ + "▁Tina", + -12.484479904174805 + ], + [ + "Mark", + -12.4844970703125 + ], + [ + "▁Lieutenant", + -12.484512329101562 + ], + [ + "▁Arms", + -12.48465347290039 + ], + [ + "▁swings", + -12.484709739685059 + ], + [ + "▁Café", + -12.484724044799805 + ], + [ + "▁Submit", + -12.4847412109375 + ], + [ + "▁righteous", + -12.484882354736328 + ], + [ + "▁stools", + -12.484953880310059 + ], + [ + "▁Grammy", + -12.485036849975586 + ], + [ + "▁downtime", + -12.485405921936035 + ], + [ + "▁disadvantage", + -12.485452651977539 + ], + [ + "▁lookout", + -12.485548973083496 + ], + [ + "▁Moto", + -12.485800743103027 + ], + [ + "▁volleyball", + -12.48581600189209 + ], + [ + "▁padded", + -12.485868453979492 + ], + [ + "▁leaned", + -12.486150741577148 + ], + [ + "▁swiftly", + -12.48619556427002 + ], + [ + "▁Pattern", + -12.486282348632812 + ], + [ + "▁Rat", + -12.486369132995605 + ], + [ + "▁admired", + -12.486452102661133 + ], + [ + "▁juicy", + -12.486525535583496 + ], + [ + "▁homeland", + -12.486680030822754 + ], + [ + "▁hrs", + -12.486747741699219 + ], + [ + "Max", + -12.487264633178711 + ], + [ + "▁frameworks", + -12.487271308898926 + ], + [ + "▁Opportunity", + -12.487324714660645 + ], + [ + "▁Relief", + -12.487421035766602 + ], + [ + "▁advisers", + -12.487552642822266 + ], + [ + "▁finite", + -12.487610816955566 + ], + [ + "▁dragging", + -12.487659454345703 + ], + [ + "▁irregular", + -12.487852096557617 + ], + [ + "ico", + -12.487956047058105 + ], + [ + "▁bonded", + -12.487958908081055 + ], + [ + "rah", + -12.488088607788086 + ], + [ + "▁Sho", + -12.488182067871094 + ], + [ + "▁Admin", + -12.488298416137695 + ], + [ + "▁Sprint", + -12.488314628601074 + ], + [ + "▁Editing", + -12.488348960876465 + ], + [ + "▁Chairs", + -12.488357543945312 + ], + [ + "▁PCs", + -12.488389015197754 + ], + [ + "esque", + -12.48854923248291 + ], + [ + "▁embassy", + -12.488568305969238 + ], + [ + "▁accord", + -12.48862361907959 + ], + [ + "▁successive", + -12.488927841186523 + ], + [ + "▁bakery", + -12.489042282104492 + ], + [ + "▁textured", + -12.48914909362793 + ], + [ + "▁Prairie", + -12.489253997802734 + ], + [ + "▁brewery", + -12.489328384399414 + ], + [ + "tive", + -12.489432334899902 + ], + [ + "▁sponge", + -12.489439964294434 + ], + [ + "▁cultivation", + -12.489461898803711 + ], + [ + "▁chop", + -12.489564895629883 + ], + [ + "established", + -12.489625930786133 + ], + [ + "▁sincerely", + -12.489689826965332 + ], + [ + "▁Homeland", + -12.489734649658203 + ], + [ + "▁HI", + -12.489778518676758 + ], + [ + "▁Blind", + -12.4898681640625 + ], + [ + "▁LC", + -12.489949226379395 + ], + [ + "▁Logo", + -12.49001407623291 + ], + [ + "▁quotation", + -12.490073204040527 + ], + [ + "▁Plants", + -12.490126609802246 + ], + [ + "▁arrows", + -12.490140914916992 + ], + [ + "▁passions", + -12.49017333984375 + ], + [ + "heart", + -12.49019718170166 + ], + [ + "▁irony", + -12.490405082702637 + ], + [ + "▁Volvo", + -12.490506172180176 + ], + [ + "▁Cardinal", + -12.490625381469727 + ], + [ + "gold", + -12.490734100341797 + ], + [ + "▁lib", + -12.490859985351562 + ], + [ + "▁basil", + -12.490872383117676 + ], + [ + "▁256", + -12.490950584411621 + ], + [ + "▁Himself", + -12.490987777709961 + ], + [ + "▁examinations", + -12.491013526916504 + ], + [ + "▁thinner", + -12.491034507751465 + ], + [ + "▁CW", + -12.49112319946289 + ], + [ + "▁gatherings", + -12.4911527633667 + ], + [ + "▁Including", + -12.491183280944824 + ], + [ + "▁inaccurate", + -12.491259574890137 + ], + [ + "▁SK", + -12.491473197937012 + ], + [ + "▁USC", + -12.491540908813477 + ], + [ + "▁vicious", + -12.491875648498535 + ], + [ + "▁sneakers", + -12.49193286895752 + ], + [ + "▁lied", + -12.491984367370605 + ], + [ + "▁warriors", + -12.492128372192383 + ], + [ + "▁2021", + -12.492369651794434 + ], + [ + "1⁄2", + -12.492371559143066 + ], + [ + "▁fl", + -12.492465019226074 + ], + [ + "▁Isaiah", + -12.492527961730957 + ], + [ + "▁Bulgaria", + -12.492568969726562 + ], + [ + "▁misses", + -12.492806434631348 + ], + [ + "CI", + -12.49293327331543 + ], + [ + "▁outrage", + -12.493010520935059 + ], + [ + "▁Lindsay", + -12.493121147155762 + ], + [ + "▁ku", + -12.493268013000488 + ], + [ + "▁strives", + -12.493535995483398 + ], + [ + "chen", + -12.493552207946777 + ], + [ + "▁banners", + -12.493589401245117 + ], + [ + "▁Films", + -12.493658065795898 + ], + [ + "▁lethal", + -12.493743896484375 + ], + [ + "▁Ideally", + -12.49393081665039 + ], + [ + "▁1938", + -12.494016647338867 + ], + [ + "▁Fiber", + -12.494266510009766 + ], + [ + "jpg", + -12.4943208694458 + ], + [ + "▁JD", + -12.49432373046875 + ], + [ + "▁Copenhagen", + -12.494378089904785 + ], + [ + "nce", + -12.494743347167969 + ], + [ + "▁contention", + -12.494781494140625 + ], + [ + "▁Rover", + -12.494821548461914 + ], + [ + "iel", + -12.494912147521973 + ], + [ + "▁Rotary", + -12.49499797821045 + ], + [ + "▁trusting", + -12.495012283325195 + ], + [ + "▁pupil", + -12.495176315307617 + ], + [ + "▁downhill", + -12.495396614074707 + ], + [ + "▁Sherman", + -12.495410919189453 + ], + [ + "▁ecosystems", + -12.495439529418945 + ], + [ + "▁convictions", + -12.495543479919434 + ], + [ + "▁Ethan", + -12.49564266204834 + ], + [ + "▁Philippine", + -12.495657920837402 + ], + [ + "▁Holding", + -12.495702743530273 + ], + [ + "▁Vote", + -12.495721817016602 + ], + [ + "▁Roma", + -12.495745658874512 + ], + [ + "▁worksheet", + -12.49575424194336 + ], + [ + "PO", + -12.49583911895752 + ], + [ + "▁Cause", + -12.49599552154541 + ], + [ + "▁payout", + -12.496079444885254 + ], + [ + "▁Allan", + -12.496269226074219 + ], + [ + "▁foreclosure", + -12.496466636657715 + ], + [ + "▁Escape", + -12.496488571166992 + ], + [ + "▁Graphic", + -12.49653434753418 + ], + [ + "woman", + -12.496658325195312 + ], + [ + "▁levitra", + -12.496661186218262 + ], + [ + "▁traced", + -12.496710777282715 + ], + [ + "July", + -12.496758460998535 + ], + [ + "▁Mystery", + -12.49680233001709 + ], + [ + "▁wisely", + -12.49680233001709 + ], + [ + "▁Established", + -12.496843338012695 + ], + [ + "▁stationary", + -12.496935844421387 + ], + [ + "▁Structure", + -12.496950149536133 + ], + [ + "▁syntax", + -12.497007369995117 + ], + [ + "Power", + -12.497016906738281 + ], + [ + "▁Advisors", + -12.497045516967773 + ], + [ + "ö", + -12.497220039367676 + ], + [ + "▁compost", + -12.497293472290039 + ], + [ + "▁nurture", + -12.497306823730469 + ], + [ + "▁cafes", + -12.497363090515137 + ], + [ + "ments", + -12.497453689575195 + ], + [ + "▁twists", + -12.497602462768555 + ], + [ + "▁Mur", + -12.497730255126953 + ], + [ + "▁surgeons", + -12.497770309448242 + ], + [ + "▁ornaments", + -12.497817039489746 + ], + [ + "▁Feature", + -12.497852325439453 + ], + [ + "sel", + -12.497919082641602 + ], + [ + "365", + -12.497954368591309 + ], + [ + "▁Strategies", + -12.497961044311523 + ], + [ + "▁ideological", + -12.49806022644043 + ], + [ + "▁poetic", + -12.498099327087402 + ], + [ + "perfect", + -12.498190879821777 + ], + [ + "▁terminology", + -12.49821949005127 + ], + [ + "▁118", + -12.498376846313477 + ], + [ + "▁shores", + -12.498470306396484 + ], + [ + "▁lavender", + -12.498550415039062 + ], + [ + "▁standalone", + -12.498571395874023 + ], + [ + "▁JP", + -12.498590469360352 + ], + [ + "paced", + -12.498610496520996 + ], + [ + "BO", + -12.498729705810547 + ], + [ + "▁Ky", + -12.498763084411621 + ], + [ + "▁Vin", + -12.498775482177734 + ], + [ + "▁dome", + -12.498804092407227 + ], + [ + "▁thirteen", + -12.498889923095703 + ], + [ + "▁voluntarily", + -12.499212265014648 + ], + [ + "▁foolish", + -12.499565124511719 + ], + [ + "kov", + -12.499580383300781 + ], + [ + "▁£10", + -12.499582290649414 + ], + [ + "▁predicting", + -12.499650001525879 + ], + [ + "▁Brewing", + -12.499713897705078 + ], + [ + "▁Arrow", + -12.499716758728027 + ], + [ + "▁Chrysler", + -12.49975299835205 + ], + [ + "▁Ur", + -12.499762535095215 + ], + [ + "▁plethora", + -12.499764442443848 + ], + [ + "▁offenders", + -12.49976921081543 + ], + [ + "pu", + -12.500100135803223 + ], + [ + "102", + -12.500160217285156 + ], + [ + "Based", + -12.500271797180176 + ], + [ + "FF", + -12.500295639038086 + ], + [ + "▁generators", + -12.5003662109375 + ], + [ + "▁Citizen", + -12.500495910644531 + ], + [ + "▁spans", + -12.500741958618164 + ], + [ + "etta", + -12.50076675415039 + ], + [ + "hearted", + -12.501020431518555 + ], + [ + "▁dolls", + -12.501072883605957 + ], + [ + "▁robotic", + -12.501078605651855 + ], + [ + "▁craftsmanship", + -12.501134872436523 + ], + [ + "▁Object", + -12.501225471496582 + ], + [ + "▁toughest", + -12.501232147216797 + ], + [ + "▁Mineral", + -12.501481056213379 + ], + [ + "chan", + -12.501611709594727 + ], + [ + "▁Berg", + -12.50169849395752 + ], + [ + "▁intervene", + -12.501762390136719 + ], + [ + "▁residue", + -12.501779556274414 + ], + [ + "▁Chiefs", + -12.501888275146484 + ], + [ + "▁mag", + -12.501919746398926 + ], + [ + "▁Darren", + -12.501959800720215 + ], + [ + "iser", + -12.501971244812012 + ], + [ + "▁Gap", + -12.501972198486328 + ], + [ + "again", + -12.502104759216309 + ], + [ + "▁granting", + -12.502106666564941 + ], + [ + "rio", + -12.50221061706543 + ], + [ + "▁attachments", + -12.502245903015137 + ], + [ + "▁pans", + -12.502326965332031 + ], + [ + "▁Spray", + -12.502543449401855 + ], + [ + "▁Principles", + -12.50256633758545 + ], + [ + "▁uneven", + -12.5026216506958 + ], + [ + "▁roofs", + -12.50263786315918 + ], + [ + "▁podium", + -12.502646446228027 + ], + [ + "▁showroom", + -12.502696990966797 + ], + [ + "▁alterations", + -12.502739906311035 + ], + [ + "▁Hang", + -12.502867698669434 + ], + [ + "▁SAN", + -12.503276824951172 + ], + [ + "▁fracture", + -12.503337860107422 + ], + [ + "neck", + -12.503338813781738 + ], + [ + "ava", + -12.503606796264648 + ], + [ + "▁CAR", + -12.503664016723633 + ], + [ + "▁Catholics", + -12.503674507141113 + ], + [ + "▁IRA", + -12.503674507141113 + ], + [ + "▁Tro", + -12.503683090209961 + ], + [ + "▁ob", + -12.503941535949707 + ], + [ + "▁compliments", + -12.50404167175293 + ], + [ + "▁pavement", + -12.504087448120117 + ], + [ + "▁Lay", + -12.50423812866211 + ], + [ + "operative", + -12.504311561584473 + ], + [ + "ep", + -12.504339218139648 + ], + [ + "▁referee", + -12.504383087158203 + ], + [ + "▁Pokémon", + -12.50438404083252 + ], + [ + "▁Thomson", + -12.504491806030273 + ], + [ + "▁Extreme", + -12.50452709197998 + ], + [ + "▁Charge", + -12.504592895507812 + ], + [ + "▁posing", + -12.504598617553711 + ], + [ + "▁outsourcing", + -12.50461483001709 + ], + [ + "EX", + -12.50465202331543 + ], + [ + "▁trousers", + -12.504704475402832 + ], + [ + "▁KB", + -12.504820823669434 + ], + [ + "▁stitches", + -12.50485610961914 + ], + [ + "▁Castro", + -12.505002975463867 + ], + [ + "▁Progressive", + -12.505020141601562 + ], + [ + "▁Button", + -12.505086898803711 + ], + [ + "▁Eyes", + -12.505142211914062 + ], + [ + "▁madness", + -12.505237579345703 + ], + [ + "▁discarded", + -12.50526237487793 + ], + [ + "WD", + -12.505291938781738 + ], + [ + "▁Scroll", + -12.505463600158691 + ], + [ + "▁Piece", + -12.505495071411133 + ], + [ + "lets", + -12.505529403686523 + ], + [ + "▁truths", + -12.505602836608887 + ], + [ + "▁repertoire", + -12.505690574645996 + ], + [ + "▁apt", + -12.505704879760742 + ], + [ + "aya", + -12.505738258361816 + ], + [ + "▁cumulative", + -12.505870819091797 + ], + [ + "▁yang", + -12.506134986877441 + ], + [ + "▁KC", + -12.50627326965332 + ], + [ + "▁Inner", + -12.506349563598633 + ], + [ + "▁didnt", + -12.506454467773438 + ], + [ + "▁YA", + -12.506697654724121 + ], + [ + "▁imminent", + -12.506819725036621 + ], + [ + "▁limb", + -12.506881713867188 + ], + [ + "▁attire", + -12.506916999816895 + ], + [ + "▁Sunset", + -12.506941795349121 + ], + [ + "threatening", + -12.506996154785156 + ], + [ + "▁interdisciplinary", + -12.507013320922852 + ], + [ + "▁sperm", + -12.507047653198242 + ], + [ + "320", + -12.507068634033203 + ], + [ + "▁Throw", + -12.507227897644043 + ], + [ + "mini", + -12.50736141204834 + ], + [ + "▁farmhouse", + -12.507429122924805 + ], + [ + "▁cryptocurrencies", + -12.507573127746582 + ], + [ + "▁eclipse", + -12.507648468017578 + ], + [ + "▁yelling", + -12.507706642150879 + ], + [ + "▁graphs", + -12.507729530334473 + ], + [ + "▁Declaration", + -12.507819175720215 + ], + [ + "Like", + -12.507991790771484 + ], + [ + "▁motives", + -12.508054733276367 + ], + [ + "▁fasting", + -12.50809383392334 + ], + [ + "ory", + -12.508234977722168 + ], + [ + "▁reimbursement", + -12.508251190185547 + ], + [ + "rat", + -12.508259773254395 + ], + [ + "▁prolific", + -12.508476257324219 + ], + [ + "▁Satellite", + -12.508506774902344 + ], + [ + "▁disconnect", + -12.50853157043457 + ], + [ + "650", + -12.508556365966797 + ], + [ + "ito", + -12.508671760559082 + ], + [ + "▁depicts", + -12.508695602416992 + ], + [ + "▁plush", + -12.508805274963379 + ], + [ + "▁Holder", + -12.508819580078125 + ], + [ + "▁fourteen", + -12.508849143981934 + ], + [ + "▁iphone", + -12.508930206298828 + ], + [ + "▁Programming", + -12.509020805358887 + ], + [ + "gu", + -12.509089469909668 + ], + [ + "▁sip", + -12.509336471557617 + ], + [ + "▁tele", + -12.509622573852539 + ], + [ + "▁noticing", + -12.509658813476562 + ], + [ + "▁await", + -12.509851455688477 + ], + [ + "▁mortgages", + -12.509908676147461 + ], + [ + "▁predictive", + -12.509949684143066 + ], + [ + "▁Simmons", + -12.510251998901367 + ], + [ + "nor", + -12.51039981842041 + ], + [ + "turn", + -12.510469436645508 + ], + [ + "▁Airways", + -12.510655403137207 + ], + [ + "▁Sing", + -12.510900497436523 + ], + [ + "▁Falcon", + -12.511013984680176 + ], + [ + "▁SG", + -12.511021614074707 + ], + [ + "▁forgetting", + -12.511030197143555 + ], + [ + "video", + -12.511054992675781 + ], + [ + "dev", + -12.511091232299805 + ], + [ + "▁Compact", + -12.511109352111816 + ], + [ + "AH", + -12.511367797851562 + ], + [ + "ement", + -12.51145076751709 + ], + [ + "▁dr", + -12.511536598205566 + ], + [ + "▁facilitated", + -12.511719703674316 + ], + [ + "▁intuition", + -12.511787414550781 + ], + [ + "▁validated", + -12.51180362701416 + ], + [ + "▁stalls", + -12.511846542358398 + ], + [ + "▁miners", + -12.511892318725586 + ], + [ + "▁Forms", + -12.511923789978027 + ], + [ + "▁var", + -12.51197624206543 + ], + [ + "▁TS", + -12.512249946594238 + ], + [ + "▁revisions", + -12.512289047241211 + ], + [ + "▁laps", + -12.51236343383789 + ], + [ + "▁disturbed", + -12.51240348815918 + ], + [ + "▁Oral", + -12.512412071228027 + ], + [ + "Every", + -12.512444496154785 + ], + [ + "▁bathing", + -12.512516021728516 + ], + [ + "▁mortar", + -12.512550354003906 + ], + [ + "▁displacement", + -12.51265811920166 + ], + [ + "▁Hosting", + -12.512778282165527 + ], + [ + "▁casualties", + -12.51280689239502 + ], + [ + "▁Hyderabad", + -12.512886047363281 + ], + [ + "▁Cork", + -12.51294994354248 + ], + [ + "Bar", + -12.513077735900879 + ], + [ + "Na", + -12.513092041015625 + ], + [ + "▁Shu", + -12.51310920715332 + ], + [ + "▁ki", + -12.51314640045166 + ], + [ + "▁Vernon", + -12.513148307800293 + ], + [ + "▁bending", + -12.513192176818848 + ], + [ + "och", + -12.513218879699707 + ], + [ + "▁Meat", + -12.513225555419922 + ], + [ + "▁Trudeau", + -12.51327133178711 + ], + [ + "▁pores", + -12.513364791870117 + ], + [ + "along", + -12.51340389251709 + ], + [ + "▁Tucker", + -12.51347541809082 + ], + [ + "▁rebellion", + -12.513594627380371 + ], + [ + "▁lodging", + -12.51372241973877 + ], + [ + "▁Hull", + -12.513792037963867 + ], + [ + "cheap", + -12.513851165771484 + ], + [ + "▁collaborating", + -12.513886451721191 + ], + [ + "▁Pirates", + -12.513895034790039 + ], + [ + "▁proposes", + -12.513981819152832 + ], + [ + "▁ein", + -12.514071464538574 + ], + [ + "▁Thread", + -12.51436710357666 + ], + [ + "yet", + -12.514403343200684 + ], + [ + "File", + -12.51455020904541 + ], + [ + "▁Dreams", + -12.514667510986328 + ], + [ + "▁eternity", + -12.514734268188477 + ], + [ + "▁Steps", + -12.514755249023438 + ], + [ + "▁disastrous", + -12.514774322509766 + ], + [ + "▁splendid", + -12.514792442321777 + ], + [ + "▁cabbage", + -12.514803886413574 + ], + [ + "▁Nikon", + -12.514824867248535 + ], + [ + "▁Wooden", + -12.51489543914795 + ], + [ + "▁trajectory", + -12.514899253845215 + ], + [ + "▁Professionals", + -12.514931678771973 + ], + [ + "▁discrete", + -12.515006065368652 + ], + [ + "▁1910", + -12.515069007873535 + ], + [ + "▁Violence", + -12.515092849731445 + ], + [ + "▁commanded", + -12.51523208618164 + ], + [ + "SD", + -12.515388488769531 + ], + [ + "▁Nar", + -12.515892028808594 + ], + [ + "series", + -12.515960693359375 + ], + [ + "▁Parkinson", + -12.516009330749512 + ], + [ + "▁canned", + -12.516023635864258 + ], + [ + "▁investigative", + -12.516192436218262 + ], + [ + "▁FR", + -12.516241073608398 + ], + [ + "VR", + -12.516390800476074 + ], + [ + "▁Greene", + -12.516508102416992 + ], + [ + "▁neighbouring", + -12.516509056091309 + ], + [ + "▁hypertension", + -12.51676082611084 + ], + [ + "▁chord", + -12.516980171203613 + ], + [ + "▁Generic", + -12.516997337341309 + ], + [ + "▁derivative", + -12.517043113708496 + ], + [ + "▁carb", + -12.517105102539062 + ], + [ + "super", + -12.51719856262207 + ], + [ + "▁tying", + -12.517271041870117 + ], + [ + "▁chapel", + -12.517361640930176 + ], + [ + "▁WOW", + -12.517434120178223 + ], + [ + "▁GS", + -12.517531394958496 + ], + [ + "▁Rates", + -12.517586708068848 + ], + [ + "CS", + -12.517587661743164 + ], + [ + "▁Sundays", + -12.517646789550781 + ], + [ + "▁rooftop", + -12.51782512664795 + ], + [ + "THE", + -12.517899513244629 + ], + [ + "▁Manuel", + -12.517900466918945 + ], + [ + "▁FF", + -12.517972946166992 + ], + [ + "▁sc", + -12.51799488067627 + ], + [ + "iti", + -12.518035888671875 + ], + [ + "▁Rubber", + -12.518132209777832 + ], + [ + "Pre", + -12.518243789672852 + ], + [ + "matic", + -12.518502235412598 + ], + [ + "▁për", + -12.518511772155762 + ], + [ + "▁laboratories", + -12.518519401550293 + ], + [ + "▁Matrix", + -12.518570899963379 + ], + [ + "▁enhancements", + -12.518588066101074 + ], + [ + "▁Cubs", + -12.518664360046387 + ], + [ + "▁Ballet", + -12.518725395202637 + ], + [ + "▁righteousness", + -12.518793106079102 + ], + [ + "▁Lance", + -12.518885612487793 + ], + [ + "▁spun", + -12.519022941589355 + ], + [ + "▁formatting", + -12.51904296875 + ], + [ + "Add", + -12.51905345916748 + ], + [ + "▁burner", + -12.51906681060791 + ], + [ + "▁endorse", + -12.519309997558594 + ], + [ + "▁DL", + -12.519401550292969 + ], + [ + "▁Jew", + -12.519424438476562 + ], + [ + "▁fulfil", + -12.519538879394531 + ], + [ + "▁murders", + -12.519539833068848 + ], + [ + "Air", + -12.519871711730957 + ], + [ + "▁poultry", + -12.520047187805176 + ], + [ + "▁WC", + -12.520052909851074 + ], + [ + "▁Diploma", + -12.520242691040039 + ], + [ + "▁teammate", + -12.520284652709961 + ], + [ + "▁quad", + -12.520289421081543 + ], + [ + "▁staircase", + -12.520303726196289 + ], + [ + "▁mosque", + -12.52033805847168 + ], + [ + "▁weave", + -12.520471572875977 + ], + [ + "▁2030", + -12.520671844482422 + ], + [ + "Per", + -12.520716667175293 + ], + [ + "▁prevailing", + -12.520812034606934 + ], + [ + "▁tiger", + -12.520821571350098 + ], + [ + "▁correlated", + -12.520885467529297 + ], + [ + "▁Pra", + -12.52088737487793 + ], + [ + "▁mercury", + -12.520918846130371 + ], + [ + "▁Recommended", + -12.52094554901123 + ], + [ + "▁doorstep", + -12.521066665649414 + ], + [ + "LL", + -12.521100997924805 + ], + [ + "▁Rings", + -12.521306991577148 + ], + [ + "▁Nate", + -12.521317481994629 + ], + [ + "forward", + -12.521331787109375 + ], + [ + "▁Booth", + -12.52133560180664 + ], + [ + "▁testify", + -12.521336555480957 + ], + [ + "▁violin", + -12.521401405334473 + ], + [ + "▁DAY", + -12.521408081054688 + ], + [ + "▁daring", + -12.521418571472168 + ], + [ + "▁Luck", + -12.521448135375977 + ], + [ + "▁WWII", + -12.521613121032715 + ], + [ + "▁frightening", + -12.521652221679688 + ], + [ + "▁Strength", + -12.5217866897583 + ], + [ + "▁Sacred", + -12.522130012512207 + ], + [ + "▁amidst", + -12.52237319946289 + ], + [ + "▁Miguel", + -12.522444725036621 + ], + [ + "▁sprinkle", + -12.522472381591797 + ], + [ + "▁interpretations", + -12.522565841674805 + ], + [ + "▁expands", + -12.522584915161133 + ], + [ + "▁PBS", + -12.5226411819458 + ], + [ + "cia", + -12.522652626037598 + ], + [ + "▁113", + -12.522812843322754 + ], + [ + "▁bathtub", + -12.5228910446167 + ], + [ + "▁Winnipeg", + -12.52299976348877 + ], + [ + "▁Thu", + -12.52306842803955 + ], + [ + "▁unlocked", + -12.523204803466797 + ], + [ + "▁Rocket", + -12.523213386535645 + ], + [ + "▁flyer", + -12.523314476013184 + ], + [ + "▁widget", + -12.5233154296875 + ], + [ + "▁Bollywood", + -12.523387908935547 + ], + [ + "▁misuse", + -12.523439407348633 + ], + [ + "▁WhatsApp", + -12.523446083068848 + ], + [ + "Over", + -12.523447036743164 + ], + [ + "▁stubborn", + -12.523486137390137 + ], + [ + "▁Interstate", + -12.523510932922363 + ], + [ + "▁tr", + -12.523561477661133 + ], + [ + "▁Abdul", + -12.524127006530762 + ], + [ + "▁Fer", + -12.524169921875 + ], + [ + "Lo", + -12.524251937866211 + ], + [ + "▁vulnerabilities", + -12.524330139160156 + ], + [ + "▁topical", + -12.524428367614746 + ], + [ + "▁Behavior", + -12.5244722366333 + ], + [ + "▁Belfast", + -12.524499893188477 + ], + [ + "▁digestion", + -12.524529457092285 + ], + [ + "▁narrator", + -12.524541854858398 + ], + [ + "MC", + -12.52464771270752 + ], + [ + "▁akin", + -12.524765968322754 + ], + [ + "▁Heath", + -12.52479362487793 + ], + [ + "▁ii", + -12.524858474731445 + ], + [ + "▁san", + -12.525010108947754 + ], + [ + "▁Answers", + -12.52531909942627 + ], + [ + "▁Abe", + -12.5253267288208 + ], + [ + "▁shit", + -12.52538013458252 + ], + [ + "▁Pur", + -12.525521278381348 + ], + [ + "▁Tiffany", + -12.525545120239258 + ], + [ + "▁vain", + -12.525558471679688 + ], + [ + "▁glossy", + -12.525614738464355 + ], + [ + "iro", + -12.525713920593262 + ], + [ + "▁diaper", + -12.525799751281738 + ], + [ + "▁Aunt", + -12.525907516479492 + ], + [ + "▁Spiritual", + -12.525993347167969 + ], + [ + "▁redeem", + -12.526050567626953 + ], + [ + "▁inspected", + -12.526182174682617 + ], + [ + "▁Detective", + -12.526376724243164 + ], + [ + "aire", + -12.526446342468262 + ], + [ + "▁ranged", + -12.526453018188477 + ], + [ + "▁Somehow", + -12.526497840881348 + ], + [ + "▁hikes", + -12.526557922363281 + ], + [ + "▁oppression", + -12.526837348937988 + ], + [ + "▁Forever", + -12.52706241607666 + ], + [ + "▁sucked", + -12.527304649353027 + ], + [ + "jar", + -12.527641296386719 + ], + [ + "1998", + -12.52769660949707 + ], + [ + "▁Publications", + -12.527749061584473 + ], + [ + "illo", + -12.527787208557129 + ], + [ + "▁oceans", + -12.527860641479492 + ], + [ + "▁Signal", + -12.527867317199707 + ], + [ + "▁sketches", + -12.527891159057617 + ], + [ + "▁Scan", + -12.527929306030273 + ], + [ + "▁Newman", + -12.527936935424805 + ], + [ + "▁Actor", + -12.52807903289795 + ], + [ + "ral", + -12.528091430664062 + ], + [ + "▁pity", + -12.528156280517578 + ], + [ + "▁Wise", + -12.528263092041016 + ], + [ + "EF", + -12.528416633605957 + ], + [ + "▁manageable", + -12.528554916381836 + ], + [ + "▁confrontation", + -12.528776168823242 + ], + [ + "▁Mol", + -12.528815269470215 + ], + [ + "▁Tanzania", + -12.528831481933594 + ], + [ + "▁espresso", + -12.528918266296387 + ], + [ + "AG", + -12.528965950012207 + ], + [ + "▁flourish", + -12.52902603149414 + ], + [ + "▁720", + -12.52914810180664 + ], + [ + "▁filmmakers", + -12.529165267944336 + ], + [ + "▁Samantha", + -12.529257774353027 + ], + [ + "▁Newsletter", + -12.529370307922363 + ], + [ + "▁marvelous", + -12.529394149780273 + ], + [ + "▁1936", + -12.529420852661133 + ], + [ + "▁foliage", + -12.5297212600708 + ], + [ + "▁Bradford", + -12.529753684997559 + ], + [ + "uh", + -12.529887199401855 + ], + [ + "▁Ways", + -12.529930114746094 + ], + [ + "▁assert", + -12.529943466186523 + ], + [ + "▁precautions", + -12.530315399169922 + ], + [ + "▁Loved", + -12.530375480651855 + ], + [ + "▁Fargo", + -12.530426025390625 + ], + [ + "▁Sigma", + -12.530455589294434 + ], + [ + "▁alt", + -12.530550956726074 + ], + [ + "▁Clerk", + -12.530622482299805 + ], + [ + "▁Topic", + -12.53066635131836 + ], + [ + "▁superstar", + -12.53074836730957 + ], + [ + "▁Sid", + -12.530811309814453 + ], + [ + "1990", + -12.530974388122559 + ], + [ + "Dr", + -12.531000137329102 + ], + [ + "▁tempo", + -12.531007766723633 + ], + [ + "▁Stuff", + -12.531012535095215 + ], + [ + "▁peas", + -12.531013488769531 + ], + [ + "▁outward", + -12.531182289123535 + ], + [ + "▁narratives", + -12.531341552734375 + ], + [ + "sensitive", + -12.531356811523438 + ], + [ + "▁Audit", + -12.531441688537598 + ], + [ + "▁Graphics", + -12.531621932983398 + ], + [ + "money", + -12.531654357910156 + ], + [ + "Gen", + -12.531715393066406 + ], + [ + "▁unite", + -12.531753540039062 + ], + [ + "▁Buddhism", + -12.531908988952637 + ], + [ + "mid", + -12.531922340393066 + ], + [ + "▁incur", + -12.531993865966797 + ], + [ + "▁headset", + -12.532033920288086 + ], + [ + "▁Brush", + -12.53207015991211 + ], + [ + "▁Southampton", + -12.532134056091309 + ], + [ + "▁Hardy", + -12.532235145568848 + ], + [ + "▁Pole", + -12.532235145568848 + ], + [ + "▁freak", + -12.53239631652832 + ], + [ + "▁pottery", + -12.532515525817871 + ], + [ + "▁HQ", + -12.532586097717285 + ], + [ + "▁weighted", + -12.532588005065918 + ], + [ + "▁tapes", + -12.532732009887695 + ], + [ + "▁sigh", + -12.532736778259277 + ], + [ + "104", + -12.532792091369629 + ], + [ + "▁Warrior", + -12.532883644104004 + ], + [ + "▁Obamacare", + -12.532915115356445 + ], + [ + "fashioned", + -12.533058166503906 + ], + [ + "▁nutritious", + -12.533106803894043 + ], + [ + "race", + -12.533143997192383 + ], + [ + "▁twentieth", + -12.533167839050293 + ], + [ + "▁Churchill", + -12.53332805633545 + ], + [ + "▁wary", + -12.533346176147461 + ], + [ + "▁gadget", + -12.533455848693848 + ], + [ + "▁SH", + -12.533493041992188 + ], + [ + "▁spirituality", + -12.533674240112305 + ], + [ + "▁encoding", + -12.533857345581055 + ], + [ + "▁visuals", + -12.534002304077148 + ], + [ + "▁Population", + -12.534088134765625 + ], + [ + "President", + -12.53409194946289 + ], + [ + "dos", + -12.5341215133667 + ], + [ + "▁Mets", + -12.534141540527344 + ], + [ + "▁Victory", + -12.534191131591797 + ], + [ + "match", + -12.534342765808105 + ], + [ + "▁REALLY", + -12.534441947937012 + ], + [ + "▁Readers", + -12.534452438354492 + ], + [ + "▁IE", + -12.534561157226562 + ], + [ + "▁Coastal", + -12.534579277038574 + ], + [ + "▁alphabet", + -12.534721374511719 + ], + [ + "▁cosmetics", + -12.534721374511719 + ], + [ + "fully", + -12.534836769104004 + ], + [ + "Point", + -12.534856796264648 + ], + [ + "▁Laws", + -12.53492259979248 + ], + [ + "brand", + -12.535113334655762 + ], + [ + "▁chambers", + -12.53519344329834 + ], + [ + "GE", + -12.53524112701416 + ], + [ + "▁cite", + -12.535248756408691 + ], + [ + "▁Wool", + -12.53559684753418 + ], + [ + "▁Wizard", + -12.53565788269043 + ], + [ + "123", + -12.53571891784668 + ], + [ + "Live", + -12.535755157470703 + ], + [ + "▁coastline", + -12.5357666015625 + ], + [ + "▁HB", + -12.53577709197998 + ], + [ + "▁reap", + -12.535820960998535 + ], + [ + "▁GOD", + -12.535929679870605 + ], + [ + "▁equals", + -12.535934448242188 + ], + [ + "ew", + -12.53600025177002 + ], + [ + "tte", + -12.536087036132812 + ], + [ + "walk", + -12.5361328125 + ], + [ + "▁DH", + -12.536137580871582 + ], + [ + "▁Developing", + -12.53619384765625 + ], + [ + "▁Patch", + -12.536273002624512 + ], + [ + "▁cyclists", + -12.536276817321777 + ], + [ + "▁Password", + -12.536334991455078 + ], + [ + "220", + -12.536399841308594 + ], + [ + "▁SI", + -12.53640079498291 + ], + [ + "▁Aero", + -12.5364408493042 + ], + [ + "▁goalkeeper", + -12.536458969116211 + ], + [ + "alone", + -12.536465644836426 + ], + [ + "▁playlist", + -12.536561012268066 + ], + [ + "▁vaccination", + -12.536602020263672 + ], + [ + "▁inconvenience", + -12.536665916442871 + ], + [ + "▁volcano", + -12.53676700592041 + ], + [ + "▁disciplinary", + -12.53681468963623 + ], + [ + "▁Friendly", + -12.53682804107666 + ], + [ + "Back", + -12.536849021911621 + ], + [ + "▁Piano", + -12.53691577911377 + ], + [ + "▁Brunswick", + -12.536978721618652 + ], + [ + "sun", + -12.537016868591309 + ], + [ + "▁Straight", + -12.53725814819336 + ], + [ + "▁pulmonary", + -12.537296295166016 + ], + [ + "▁Apartments", + -12.537309646606445 + ], + [ + "▁hd", + -12.537415504455566 + ], + [ + "▁Baron", + -12.537542343139648 + ], + [ + "▁footsteps", + -12.537629127502441 + ], + [ + "▁Serbia", + -12.53769302368164 + ], + [ + "▁disappearance", + -12.537745475769043 + ], + [ + "▁demise", + -12.53775405883789 + ], + [ + "▁cheerful", + -12.537769317626953 + ], + [ + "▁underwear", + -12.5377779006958 + ], + [ + "▁Proof", + -12.53809642791748 + ], + [ + "▁Cornwall", + -12.53816032409668 + ], + [ + "▁slid", + -12.538193702697754 + ], + [ + "▁visions", + -12.538337707519531 + ], + [ + "quot", + -12.53866958618164 + ], + [ + "▁solitary", + -12.538675308227539 + ], + [ + "guard", + -12.538698196411133 + ], + [ + "▁Broncos", + -12.53876781463623 + ], + [ + "170", + -12.538810729980469 + ], + [ + "▁joyful", + -12.538840293884277 + ], + [ + "▁organism", + -12.538986206054688 + ], + [ + "▁Tucson", + -12.539052963256836 + ], + [ + "▁Ker", + -12.53908920288086 + ], + [ + "▁Ant", + -12.539104461669922 + ], + [ + "▁calming", + -12.53912353515625 + ], + [ + "▁Herbert", + -12.5391845703125 + ], + [ + "▁devote", + -12.539216995239258 + ], + [ + "▁Cooking", + -12.53927230834961 + ], + [ + "▁regimen", + -12.539324760437012 + ], + [ + "▁stray", + -12.539336204528809 + ], + [ + "▁antioxidants", + -12.539460182189941 + ], + [ + "▁Printable", + -12.539552688598633 + ], + [ + "▁similarity", + -12.539600372314453 + ], + [ + "RR", + -12.539860725402832 + ], + [ + "RM", + -12.539907455444336 + ], + [ + "▁Vic", + -12.540133476257324 + ], + [ + "PP", + -12.540371894836426 + ], + [ + "▁Deposit", + -12.540552139282227 + ], + [ + "▁Ratings", + -12.540626525878906 + ], + [ + "▁dismissal", + -12.540657043457031 + ], + [ + "▁trilogy", + -12.540743827819824 + ], + [ + "▁subsidiaries", + -12.540761947631836 + ], + [ + "trade", + -12.540864944458008 + ], + [ + "▁precedent", + -12.541001319885254 + ], + [ + "▁Daniels", + -12.541101455688477 + ], + [ + "North", + -12.541175842285156 + ], + [ + "▁interviewing", + -12.541216850280762 + ], + [ + "▁regulating", + -12.541640281677246 + ], + [ + "▁rang", + -12.541825294494629 + ], + [ + "▁persecution", + -12.54193115234375 + ], + [ + "▁978", + -12.54218578338623 + ], + [ + "▁intern", + -12.54228687286377 + ], + [ + "lik", + -12.542302131652832 + ], + [ + "▁Watching", + -12.542304039001465 + ], + [ + "▁Wheels", + -12.542373657226562 + ], + [ + "▁mantra", + -12.542581558227539 + ], + [ + "▁staggering", + -12.542582511901855 + ], + [ + "▁anonymity", + -12.542654037475586 + ], + [ + "▁ou", + -12.54272747039795 + ], + [ + "▁Webb", + -12.542899131774902 + ], + [ + "▁Brass", + -12.543052673339844 + ], + [ + "▁harvesting", + -12.543118476867676 + ], + [ + "▁festivities", + -12.543150901794434 + ], + [ + "999", + -12.5433349609375 + ], + [ + "▁BTC", + -12.543535232543945 + ], + [ + "▁manufactures", + -12.543682098388672 + ], + [ + "▁vowed", + -12.543722152709961 + ], + [ + "▁Performing", + -12.543730735778809 + ], + [ + "▁Increase", + -12.543819427490234 + ], + [ + "▁recreate", + -12.543831825256348 + ], + [ + "fix", + -12.543883323669434 + ], + [ + "▁anatomy", + -12.543967247009277 + ], + [ + "▁diabetic", + -12.543997764587402 + ], + [ + "▁highways", + -12.544098854064941 + ], + [ + "▁GOOD", + -12.544256210327148 + ], + [ + "▁Flint", + -12.544299125671387 + ], + [ + "▁chilly", + -12.54430103302002 + ], + [ + "▁Roofing", + -12.54440975189209 + ], + [ + "▁Include", + -12.544417381286621 + ], + [ + "nen", + -12.544620513916016 + ], + [ + "▁Willie", + -12.544757843017578 + ], + [ + "▁piles", + -12.544772148132324 + ], + [ + "IF", + -12.544820785522461 + ], + [ + "▁substitution", + -12.544879913330078 + ], + [ + "▁Lip", + -12.544963836669922 + ], + [ + "consuming", + -12.545059204101562 + ], + [ + "▁RPG", + -12.545121192932129 + ], + [ + "▁Mick", + -12.545125961303711 + ], + [ + "▁pertinent", + -12.545151710510254 + ], + [ + "rel", + -12.545172691345215 + ], + [ + "▁Toys", + -12.545265197753906 + ], + [ + "bat", + -12.545310020446777 + ], + [ + "▁contested", + -12.545402526855469 + ], + [ + "▁vivo", + -12.545476913452148 + ], + [ + "▁insult", + -12.545577049255371 + ], + [ + "▁mist", + -12.545799255371094 + ], + [ + "▁Funds", + -12.545853614807129 + ], + [ + "jan", + -12.545857429504395 + ], + [ + "hp", + -12.545897483825684 + ], + [ + "▁Bing", + -12.54593563079834 + ], + [ + "▁observer", + -12.546053886413574 + ], + [ + "▁Suzuki", + -12.546188354492188 + ], + [ + "▁crossover", + -12.546263694763184 + ], + [ + "▁firewall", + -12.546338081359863 + ], + [ + "▁corresponds", + -12.546379089355469 + ], + [ + "▁Seal", + -12.546467781066895 + ], + [ + "LT", + -12.546473503112793 + ], + [ + "▁Mesa", + -12.546483993530273 + ], + [ + "▁threatens", + -12.546536445617676 + ], + [ + "▁sworn", + -12.546563148498535 + ], + [ + "▁alley", + -12.546629905700684 + ], + [ + "▁pesticides", + -12.54672622680664 + ], + [ + "▁slammed", + -12.546870231628418 + ], + [ + "▁Benefit", + -12.546873092651367 + ], + [ + "▁sourcing", + -12.546918869018555 + ], + [ + "▁corrections", + -12.546947479248047 + ], + [ + "▁contrasting", + -12.547089576721191 + ], + [ + "OH", + -12.547298431396484 + ], + [ + "▁edible", + -12.547327995300293 + ], + [ + "▁Sold", + -12.547771453857422 + ], + [ + "▁pioneering", + -12.547872543334961 + ], + [ + "park", + -12.547916412353516 + ], + [ + "▁punish", + -12.548162460327148 + ], + [ + "▁1937", + -12.548197746276855 + ], + [ + "mind", + -12.548254013061523 + ], + [ + "▁pudding", + -12.54828929901123 + ], + [ + "▁freed", + -12.548300743103027 + ], + [ + "▁Wealth", + -12.548323631286621 + ], + [ + "▁Nordic", + -12.548584938049316 + ], + [ + "▁podcasts", + -12.548602104187012 + ], + [ + "lines", + -12.548851013183594 + ], + [ + "▁MAY", + -12.54892349243164 + ], + [ + "cus", + -12.548957824707031 + ], + [ + "▁tariff", + -12.548974990844727 + ], + [ + "▁diminished", + -12.549054145812988 + ], + [ + "▁methodologies", + -12.54920768737793 + ], + [ + "▁favors", + -12.549234390258789 + ], + [ + "Mart", + -12.549328804016113 + ], + [ + "dry", + -12.549396514892578 + ], + [ + "는", + -12.549409866333008 + ], + [ + "sport", + -12.549538612365723 + ], + [ + "▁remembers", + -12.549646377563477 + ], + [ + "▁tyres", + -12.54966926574707 + ], + [ + "▁inhibition", + -12.549681663513184 + ], + [ + "▁ter", + -12.549717903137207 + ], + [ + "▁crunch", + -12.549734115600586 + ], + [ + "▁Done", + -12.549814224243164 + ], + [ + "▁temper", + -12.549875259399414 + ], + [ + "▁distributing", + -12.549906730651855 + ], + [ + "▁carbohydrates", + -12.550030708312988 + ], + [ + "▁Huge", + -12.550125122070312 + ], + [ + "▁Assad", + -12.55032730102539 + ], + [ + "▁Superintendent", + -12.550332069396973 + ], + [ + "▁maternity", + -12.550481796264648 + ], + [ + "▁480", + -12.550561904907227 + ], + [ + "▁tattoos", + -12.5505952835083 + ], + [ + "▁mattresses", + -12.550616264343262 + ], + [ + "▁lesions", + -12.550661087036133 + ], + [ + "street", + -12.550944328308105 + ], + [ + "▁Signature", + -12.550985336303711 + ], + [ + "▁equilibrium", + -12.551054954528809 + ], + [ + "▁multiplayer", + -12.551180839538574 + ], + [ + "▁grinder", + -12.551443099975586 + ], + [ + "▁Managers", + -12.551543235778809 + ], + [ + "bag", + -12.551545143127441 + ], + [ + "een", + -12.551682472229004 + ], + [ + "▁splitting", + -12.551701545715332 + ], + [ + "▁Devils", + -12.551718711853027 + ], + [ + "ire", + -12.551734924316406 + ], + [ + "▁elders", + -12.551955223083496 + ], + [ + "▁Edgar", + -12.55199146270752 + ], + [ + "▁obedience", + -12.552023887634277 + ], + [ + "▁Codes", + -12.552050590515137 + ], + [ + "server", + -12.552180290222168 + ], + [ + "▁handheld", + -12.552237510681152 + ], + [ + "▁mu", + -12.552258491516113 + ], + [ + "▁sim", + -12.552302360534668 + ], + [ + "▁Successful", + -12.552337646484375 + ], + [ + "▁analogy", + -12.552348136901855 + ], + [ + "NS", + -12.55241870880127 + ], + [ + "▁styled", + -12.55252456665039 + ], + [ + "▁preventive", + -12.55254077911377 + ], + [ + "▁turnout", + -12.552711486816406 + ], + [ + "▁Condition", + -12.552809715270996 + ], + [ + "▁Rad", + -12.552811622619629 + ], + [ + "▁cybersecurity", + -12.55282974243164 + ], + [ + "▁Alert", + -12.55285930633545 + ], + [ + "▁Congo", + -12.55286693572998 + ], + [ + "▁patron", + -12.553000450134277 + ], + [ + "▁plugged", + -12.553057670593262 + ], + [ + "▁Practical", + -12.553183555603027 + ], + [ + "release", + -12.553221702575684 + ], + [ + "▁Anglo", + -12.553251266479492 + ], + [ + "▁digitally", + -12.553350448608398 + ], + [ + "▁hull", + -12.553383827209473 + ], + [ + "▁Retirement", + -12.553396224975586 + ], + [ + "▁Dominican", + -12.553499221801758 + ], + [ + "Because", + -12.553566932678223 + ], + [ + "▁Ole", + -12.553573608398438 + ], + [ + "▁connectors", + -12.553584098815918 + ], + [ + "▁Patterson", + -12.553693771362305 + ], + [ + "▁Titan", + -12.553730964660645 + ], + [ + "▁Understand", + -12.553796768188477 + ], + [ + "▁Savings", + -12.553943634033203 + ], + [ + "▁detecting", + -12.553979873657227 + ], + [ + "▁soils", + -12.554081916809082 + ], + [ + "▁Matthews", + -12.554105758666992 + ], + [ + "rey", + -12.554230690002441 + ], + [ + "▁Numbers", + -12.554262161254883 + ], + [ + "▁Tehran", + -12.554269790649414 + ], + [ + "▁Spurs", + -12.554287910461426 + ], + [ + "▁facilitates", + -12.55449390411377 + ], + [ + "▁Getty", + -12.554726600646973 + ], + [ + "▁Mara", + -12.554763793945312 + ], + [ + "▁Decision", + -12.554810523986816 + ], + [ + "▁refrain", + -12.554832458496094 + ], + [ + "▁navigating", + -12.554964065551758 + ], + [ + "▁warrants", + -12.55504035949707 + ], + [ + "rus", + -12.5550537109375 + ], + [ + "▁Syracuse", + -12.55532169342041 + ], + [ + "touch", + -12.555420875549316 + ], + [ + "▁calf", + -12.555474281311035 + ], + [ + "▁battlefield", + -12.555527687072754 + ], + [ + "▁Initial", + -12.555597305297852 + ], + [ + "▁USDA", + -12.555651664733887 + ], + [ + "▁Split", + -12.555662155151367 + ], + [ + "▁sedan", + -12.55569076538086 + ], + [ + "▁Sources", + -12.55580997467041 + ], + [ + "iri", + -12.55581283569336 + ], + [ + "▁electrode", + -12.555855751037598 + ], + [ + "▁stitching", + -12.55586051940918 + ], + [ + "▁brushing", + -12.555948257446289 + ], + [ + "▁Arbor", + -12.555956840515137 + ], + [ + "▁disruptive", + -12.556073188781738 + ], + [ + "▁Paula", + -12.556118965148926 + ], + [ + "Sweet", + -12.55612850189209 + ], + [ + "▁Drum", + -12.556154251098633 + ], + [ + "▁Restoration", + -12.556191444396973 + ], + [ + "shire", + -12.556221961975098 + ], + [ + "▁hath", + -12.556236267089844 + ], + [ + "▁upstream", + -12.55627727508545 + ], + [ + "SL", + -12.556331634521484 + ], + [ + "skin", + -12.556341171264648 + ], + [ + "▁archaeological", + -12.556356430053711 + ], + [ + "▁sacrifices", + -12.556445121765137 + ], + [ + "Ha", + -12.556504249572754 + ], + [ + "TON", + -12.556597709655762 + ], + [ + "▁Pvt", + -12.556671142578125 + ], + [ + "▁Hundreds", + -12.556676864624023 + ], + [ + "mode", + -12.556867599487305 + ], + [ + "facing", + -12.556949615478516 + ], + [ + "▁ba", + -12.556995391845703 + ], + [ + "▁Dorothy", + -12.557043075561523 + ], + [ + "▁swallow", + -12.557077407836914 + ], + [ + "▁sober", + -12.557084083557129 + ], + [ + "888", + -12.557147979736328 + ], + [ + "▁Machines", + -12.557196617126465 + ], + [ + "▁coherent", + -12.55731201171875 + ], + [ + "sum", + -12.557318687438965 + ], + [ + "Buy", + -12.557438850402832 + ], + [ + "▁indications", + -12.55753231048584 + ], + [ + "▁Lite", + -12.557543754577637 + ], + [ + "▁Organisation", + -12.557610511779785 + ], + [ + "▁AJ", + -12.557616233825684 + ], + [ + "▁calibration", + -12.557671546936035 + ], + [ + "▁cues", + -12.557860374450684 + ], + [ + "▁Carnival", + -12.558055877685547 + ], + [ + "▁redesign", + -12.558509826660156 + ], + [ + "▁Bru", + -12.55851936340332 + ], + [ + "ose", + -12.558538436889648 + ], + [ + "▁hashtag", + -12.558579444885254 + ], + [ + "▁incorrectly", + -12.558810234069824 + ], + [ + "short", + -12.558834075927734 + ], + [ + "unless", + -12.558943748474121 + ], + [ + "▁lessen", + -12.558989524841309 + ], + [ + "▁exported", + -12.558996200561523 + ], + [ + "▁Decorating", + -12.559006690979004 + ], + [ + "▁Hole", + -12.559036254882812 + ], + [ + "▁Mayo", + -12.559072494506836 + ], + [ + "▁balloons", + -12.559358596801758 + ], + [ + "▁NPR", + -12.559404373168945 + ], + [ + "▁remark", + -12.559516906738281 + ], + [ + "▁va", + -12.559525489807129 + ], + [ + "modern", + -12.559539794921875 + ], + [ + "▁leftover", + -12.559550285339355 + ], + [ + "▁UPDATE", + -12.559792518615723 + ], + [ + "▁fuss", + -12.560041427612305 + ], + [ + "Ka", + -12.560063362121582 + ], + [ + "▁gossip", + -12.56018352508545 + ], + [ + "▁bowel", + -12.5602388381958 + ], + [ + "▁Alison", + -12.560311317443848 + ], + [ + "▁Mercy", + -12.560511589050293 + ], + [ + "▁sorrow", + -12.560571670532227 + ], + [ + "▁GL", + -12.560718536376953 + ], + [ + "▁discovers", + -12.560782432556152 + ], + [ + "▁randomized", + -12.560857772827148 + ], + [ + "▁extinction", + -12.560898780822754 + ], + [ + "Ar", + -12.56096363067627 + ], + [ + "▁Controller", + -12.560978889465332 + ], + [ + "▁glamorous", + -12.561070442199707 + ], + [ + "▁Advice", + -12.561084747314453 + ], + [ + "▁safest", + -12.56113052368164 + ], + [ + "▁learner", + -12.561155319213867 + ], + [ + "▁readiness", + -12.561235427856445 + ], + [ + "▁Result", + -12.561249732971191 + ], + [ + "▁imaginative", + -12.561412811279297 + ], + [ + "▁eve", + -12.561468124389648 + ], + [ + "▁instability", + -12.561661720275879 + ], + [ + "▁Cairo", + -12.56169319152832 + ], + [ + "▁Boo", + -12.56174087524414 + ], + [ + "▁dependency", + -12.561771392822266 + ], + [ + "▁tuna", + -12.56196403503418 + ], + [ + "▁1600", + -12.562187194824219 + ], + [ + "▁genus", + -12.562601089477539 + ], + [ + "▁Ability", + -12.562705993652344 + ], + [ + "▁Hernandez", + -12.562714576721191 + ], + [ + "▁Hugo", + -12.562744140625 + ], + [ + "▁Disclaimer", + -12.56275463104248 + ], + [ + "elect", + -12.562758445739746 + ], + [ + "▁appraisal", + -12.56278133392334 + ], + [ + "▁dinners", + -12.562810897827148 + ], + [ + "▁Einstein", + -12.562813758850098 + ], + [ + "▁kissed", + -12.562952995300293 + ], + [ + "▁Slim", + -12.562958717346191 + ], + [ + "▁1929", + -12.562962532043457 + ], + [ + "▁plastics", + -12.56300163269043 + ], + [ + "▁activism", + -12.563076972961426 + ], + [ + "▁Horizon", + -12.563117980957031 + ], + [ + "▁capsules", + -12.563135147094727 + ], + [ + "▁baptism", + -12.563179016113281 + ], + [ + "▁whales", + -12.56319522857666 + ], + [ + "▁dispatched", + -12.563265800476074 + ], + [ + "▁assertion", + -12.563395500183105 + ], + [ + "▁scratches", + -12.563492774963379 + ], + [ + "▁Started", + -12.563508987426758 + ], + [ + "▁torch", + -12.563596725463867 + ], + [ + "▁prompting", + -12.563643455505371 + ], + [ + "▁Sharma", + -12.563699722290039 + ], + [ + "▁assay", + -12.563817977905273 + ], + [ + "▁peculiar", + -12.563819885253906 + ], + [ + "▁Vera", + -12.56383228302002 + ], + [ + "▁distressed", + -12.563880920410156 + ], + [ + "▁capitalist", + -12.563920021057129 + ], + [ + "▁ND", + -12.563948631286621 + ], + [ + "▁UNESCO", + -12.564033508300781 + ], + [ + "lic", + -12.564279556274414 + ], + [ + "▁Fact", + -12.564322471618652 + ], + [ + "▁Railroad", + -12.564624786376953 + ], + [ + "▁ropes", + -12.564751625061035 + ], + [ + "▁undergone", + -12.564886093139648 + ], + [ + "▁225", + -12.565165519714355 + ], + [ + "▁Ran", + -12.565200805664062 + ], + [ + "▁Zi", + -12.565227508544922 + ], + [ + "leg", + -12.565266609191895 + ], + [ + "▁neighbour", + -12.565316200256348 + ], + [ + "ended", + -12.56534481048584 + ], + [ + "▁tedious", + -12.565631866455078 + ], + [ + "▁volcanic", + -12.565637588500977 + ], + [ + "▁Gerald", + -12.565682411193848 + ], + [ + "UN", + -12.565695762634277 + ], + [ + "▁ignition", + -12.565893173217773 + ], + [ + "▁doctoral", + -12.565902709960938 + ], + [ + "▁Comey", + -12.566091537475586 + ], + [ + "▁Manage", + -12.566100120544434 + ], + [ + "▁backbone", + -12.566349029541016 + ], + [ + "▁drills", + -12.56640911102295 + ], + [ + "▁emphasizes", + -12.566425323486328 + ], + [ + "▁sequencing", + -12.566429138183594 + ], + [ + "▁PL", + -12.566516876220703 + ], + [ + "GT", + -12.56669807434082 + ], + [ + "▁Avengers", + -12.566707611083984 + ], + [ + "ug", + -12.566716194152832 + ], + [ + "▁Slots", + -12.566743850708008 + ], + [ + "sex", + -12.566794395446777 + ], + [ + "lies", + -12.566986083984375 + ], + [ + "▁nominal", + -12.56701946258545 + ], + [ + "115", + -12.56709098815918 + ], + [ + "▁movers", + -12.567103385925293 + ], + [ + "▁certifications", + -12.567190170288086 + ], + [ + "▁Marx", + -12.567212104797363 + ], + [ + "▁vomiting", + -12.567243576049805 + ], + [ + "▁Plenty", + -12.567292213439941 + ], + [ + "▁sprint", + -12.567362785339355 + ], + [ + "▁loudly", + -12.567394256591797 + ], + [ + "▁Specific", + -12.567490577697754 + ], + [ + "▁α", + -12.567523956298828 + ], + [ + "▁mitigation", + -12.56760311126709 + ], + [ + "▁repay", + -12.567742347717285 + ], + [ + "▁repayment", + -12.56775188446045 + ], + [ + "▁caravan", + -12.567764282226562 + ], + [ + "▁cue", + -12.567828178405762 + ], + [ + "▁Clayton", + -12.567968368530273 + ], + [ + "▁cured", + -12.567968368530273 + ], + [ + "▁butterflies", + -12.568123817443848 + ], + [ + "▁soaked", + -12.568124771118164 + ], + [ + "fed", + -12.568214416503906 + ], + [ + "▁circus", + -12.568233489990234 + ], + [ + "Most", + -12.56829833984375 + ], + [ + "▁Adults", + -12.568493843078613 + ], + [ + "▁accountant", + -12.568785667419434 + ], + [ + "▁HOME", + -12.568830490112305 + ], + [ + "▁culturally", + -12.569062232971191 + ], + [ + "▁drip", + -12.569130897521973 + ], + [ + "▁VT", + -12.56918716430664 + ], + [ + "SM", + -12.569189071655273 + ], + [ + "▁Export", + -12.569402694702148 + ], + [ + "▁Rouge", + -12.569452285766602 + ], + [ + "▁behold", + -12.569500923156738 + ], + [ + "▁revisit", + -12.569519996643066 + ], + [ + "ы", + -12.569597244262695 + ], + [ + "▁recharge", + -12.569873809814453 + ], + [ + "▁Chevy", + -12.569881439208984 + ], + [ + "▁convertible", + -12.570013046264648 + ], + [ + "▁jackpot", + -12.570014953613281 + ], + [ + "▁ACC", + -12.570046424865723 + ], + [ + "▁rib", + -12.570053100585938 + ], + [ + "▁Ivy", + -12.570084571838379 + ], + [ + "FE", + -12.570194244384766 + ], + [ + "▁Gang", + -12.570358276367188 + ], + [ + "▁converts", + -12.570389747619629 + ], + [ + "▁semiconductor", + -12.57065200805664 + ], + [ + "▁relocated", + -12.57073974609375 + ], + [ + "▁Cone", + -12.57075309753418 + ], + [ + "▁Deb", + -12.571077346801758 + ], + [ + "▁resolving", + -12.571093559265137 + ], + [ + "▁niece", + -12.571146011352539 + ], + [ + "▁standout", + -12.57126235961914 + ], + [ + "Note", + -12.571280479431152 + ], + [ + "▁reflections", + -12.571463584899902 + ], + [ + "▁CNC", + -12.571465492248535 + ], + [ + "▁mosquito", + -12.571492195129395 + ], + [ + "▁Accounts", + -12.571613311767578 + ], + [ + "▁onwards", + -12.571701049804688 + ], + [ + "▁AU", + -12.5718412399292 + ], + [ + "▁arcade", + -12.571921348571777 + ], + [ + "▁scarce", + -12.571937561035156 + ], + [ + "Today", + -12.571938514709473 + ], + [ + "▁stud", + -12.571972846984863 + ], + [ + "▁Ak", + -12.571986198425293 + ], + [ + "▁Alumni", + -12.571991920471191 + ], + [ + "▁lieu", + -12.5721435546875 + ], + [ + "▁rum", + -12.572163581848145 + ], + [ + "▁intimidating", + -12.57245922088623 + ], + [ + "▁dans", + -12.572664260864258 + ], + [ + "▁Lawn", + -12.572669982910156 + ], + [ + "▁Ninja", + -12.572725296020508 + ], + [ + "sten", + -12.572775840759277 + ], + [ + "▁persist", + -12.572924613952637 + ], + [ + "▁Approach", + -12.572931289672852 + ], + [ + "▁ineffective", + -12.572982788085938 + ], + [ + "▁flair", + -12.573013305664062 + ], + [ + "▁discontinued", + -12.573047637939453 + ], + [ + "▁grabs", + -12.5730619430542 + ], + [ + "bl", + -12.573087692260742 + ], + [ + "ome", + -12.573177337646484 + ], + [ + "▁expresses", + -12.573224067687988 + ], + [ + "▁countertops", + -12.57325553894043 + ], + [ + "106", + -12.573278427124023 + ], + [ + "EST", + -12.57337474822998 + ], + [ + "▁FT", + -12.573451042175293 + ], + [ + "▁poets", + -12.57372760772705 + ], + [ + "▁impulse", + -12.573760986328125 + ], + [ + "▁nurturing", + -12.573797225952148 + ], + [ + "▁furthermore", + -12.573843955993652 + ], + [ + "▁Gym", + -12.57388687133789 + ], + [ + "▁clone", + -12.573938369750977 + ], + [ + "▁walmart", + -12.574106216430664 + ], + [ + "▁dividing", + -12.574353218078613 + ], + [ + "▁worm", + -12.57455062866211 + ], + [ + "▁Flood", + -12.574606895446777 + ], + [ + "EL", + -12.574838638305664 + ], + [ + "▁Allied", + -12.574851036071777 + ], + [ + "▁lithium", + -12.574858665466309 + ], + [ + "▁Jacobs", + -12.574923515319824 + ], + [ + "▁homage", + -12.575035095214844 + ], + [ + "▁FOX", + -12.575257301330566 + ], + [ + "ere", + -12.575273513793945 + ], + [ + "▁trivial", + -12.575387954711914 + ], + [ + "▁proposing", + -12.575456619262695 + ], + [ + "▁Cow", + -12.575488090515137 + ], + [ + "▁hefty", + -12.575543403625488 + ], + [ + "▁perks", + -12.575562477111816 + ], + [ + "▁eats", + -12.575570106506348 + ], + [ + "▁Continuing", + -12.57561206817627 + ], + [ + "▁cupcakes", + -12.575726509094238 + ], + [ + "▁genetically", + -12.575726509094238 + ], + [ + "▁mindfulness", + -12.575772285461426 + ], + [ + "nar", + -12.575850486755371 + ], + [ + "special", + -12.57600212097168 + ], + [ + "▁gen", + -12.576022148132324 + ], + [ + "▁SAT", + -12.576140403747559 + ], + [ + "▁Stark", + -12.576178550720215 + ], + [ + "▁attentive", + -12.576221466064453 + ], + [ + "▁eighteen", + -12.576224327087402 + ], + [ + "▁richer", + -12.576262474060059 + ], + [ + "lang", + -12.57627010345459 + ], + [ + "▁til", + -12.576372146606445 + ], + [ + "▁skincare", + -12.576404571533203 + ], + [ + "▁External", + -12.576414108276367 + ], + [ + "kel", + -12.576624870300293 + ], + [ + "▁Funding", + -12.576631546020508 + ], + [ + "▁Barrett", + -12.576753616333008 + ], + [ + "▁Krishna", + -12.576767921447754 + ], + [ + "▁capped", + -12.576900482177734 + ], + [ + "▁humorous", + -12.576919555664062 + ], + [ + "▁117", + -12.57693099975586 + ], + [ + "▁CCTV", + -12.576931953430176 + ], + [ + "▁pricey", + -12.576960563659668 + ], + [ + "▁devastated", + -12.576991081237793 + ], + [ + "▁lumber", + -12.577085494995117 + ], + [ + "▁Warranty", + -12.577242851257324 + ], + [ + "▁generously", + -12.577247619628906 + ], + [ + "▁enquiry", + -12.577473640441895 + ], + [ + "▁Trent", + -12.577601432800293 + ], + [ + "▁peninsula", + -12.577655792236328 + ], + [ + "▁Tales", + -12.577668190002441 + ], + [ + "IM", + -12.57778263092041 + ], + [ + "▁reminders", + -12.577967643737793 + ], + [ + "▁1934", + -12.578024864196777 + ], + [ + "▁honeymoon", + -12.578069686889648 + ], + [ + "▁specialised", + -12.578232765197754 + ], + [ + "▁Chapman", + -12.578300476074219 + ], + [ + "▁Hyde", + -12.578391075134277 + ], + [ + "▁gram", + -12.578402519226074 + ], + [ + "▁slogan", + -12.578446388244629 + ], + [ + "▁Owners", + -12.578557014465332 + ], + [ + "▁eagle", + -12.578689575195312 + ], + [ + "▁Devices", + -12.578722953796387 + ], + [ + "▁migrant", + -12.578755378723145 + ], + [ + "ld", + -12.578948020935059 + ], + [ + "▁Categories", + -12.578993797302246 + ], + [ + "ets", + -12.579061508178711 + ], + [ + "▁suppression", + -12.579065322875977 + ], + [ + "▁hobbies", + -12.579093933105469 + ], + [ + "ION", + -12.57921028137207 + ], + [ + "▁descendants", + -12.579313278198242 + ], + [ + "▁evacuation", + -12.579402923583984 + ], + [ + "▁Sp", + -12.579535484313965 + ], + [ + "▁tremendously", + -12.579607963562012 + ], + [ + "▁majestic", + -12.579797744750977 + ], + [ + "▁broccoli", + -12.579811096191406 + ], + [ + "▁Keys", + -12.57987117767334 + ], + [ + "▁collaborated", + -12.579936027526855 + ], + [ + "▁122", + -12.579965591430664 + ], + [ + "cock", + -12.580057144165039 + ], + [ + "▁Brooke", + -12.580062866210938 + ], + [ + "▁digit", + -12.580078125 + ], + [ + "▁Tables", + -12.58018684387207 + ], + [ + "▁Preview", + -12.58021354675293 + ], + [ + "▁Gor", + -12.580378532409668 + ], + [ + "▁Pune", + -12.580382347106934 + ], + [ + "Even", + -12.58040714263916 + ], + [ + "▁offseason", + -12.58057975769043 + ], + [ + "▁pirate", + -12.580649375915527 + ], + [ + "▁toxicity", + -12.580708503723145 + ], + [ + "▁POS", + -12.580745697021484 + ], + [ + "▁Bengal", + -12.58087158203125 + ], + [ + "▁cruising", + -12.581236839294434 + ], + [ + "▁acknowledges", + -12.58130168914795 + ], + [ + "▁Cats", + -12.581668853759766 + ], + [ + "uka", + -12.581772804260254 + ], + [ + "▁frost", + -12.581792831420898 + ], + [ + "▁ERP", + -12.581944465637207 + ], + [ + "mod", + -12.581949234008789 + ], + [ + "own", + -12.5819673538208 + ], + [ + "drop", + -12.582035064697266 + ], + [ + "▁Treat", + -12.58231258392334 + ], + [ + "▁saints", + -12.582411766052246 + ], + [ + "▁aquatic", + -12.582427024841309 + ], + [ + "▁Br", + -12.582437515258789 + ], + [ + "▁thighs", + -12.58250904083252 + ], + [ + "▁Boost", + -12.582514762878418 + ], + [ + "▁flare", + -12.582615852355957 + ], + [ + "▁injections", + -12.58285903930664 + ], + [ + "▁Anonymous", + -12.583080291748047 + ], + [ + "int", + -12.583089828491211 + ], + [ + "▁Frankfurt", + -12.58322525024414 + ], + [ + "▁lipstick", + -12.583287239074707 + ], + [ + "▁VW", + -12.583477973937988 + ], + [ + "▁whistle", + -12.583479881286621 + ], + [ + "His", + -12.583488464355469 + ], + [ + "▁graphical", + -12.583490371704102 + ], + [ + "▁gestures", + -12.583632469177246 + ], + [ + "▁LS", + -12.583866119384766 + ], + [ + "▁grading", + -12.583932876586914 + ], + [ + "▁enriched", + -12.583940505981445 + ], + [ + "▁consulted", + -12.584224700927734 + ], + [ + "▁Enough", + -12.584253311157227 + ], + [ + "▁SSD", + -12.584335327148438 + ], + [ + "bay", + -12.584427833557129 + ], + [ + "▁marriages", + -12.584439277648926 + ], + [ + "▁trending", + -12.584451675415039 + ], + [ + "lbs", + -12.584490776062012 + ], + [ + "▁crises", + -12.584569931030273 + ], + [ + "RC", + -12.58457088470459 + ], + [ + "▁slipping", + -12.58462142944336 + ], + [ + "▁Immediately", + -12.584705352783203 + ], + [ + "▁Folk", + -12.584712982177734 + ], + [ + "▁surrounds", + -12.584782600402832 + ], + [ + "▁Cab", + -12.584795951843262 + ], + [ + "▁nu", + -12.584959030151367 + ], + [ + "▁whiskey", + -12.585025787353516 + ], + [ + "arm", + -12.585103988647461 + ], + [ + "ao", + -12.58511734008789 + ], + [ + "▁upscale", + -12.58513069152832 + ], + [ + "▁Lean", + -12.585172653198242 + ], + [ + "▁statues", + -12.585176467895508 + ], + [ + "▁LAN", + -12.585201263427734 + ], + [ + "▁instinct", + -12.585269927978516 + ], + [ + "▁145", + -12.585351943969727 + ], + [ + "111", + -12.585569381713867 + ], + [ + "▁tapped", + -12.58580207824707 + ], + [ + "▁affiliation", + -12.585975646972656 + ], + [ + "▁Gorgeous", + -12.585976600646973 + ], + [ + "▁grassroots", + -12.5859956741333 + ], + [ + "▁derivatives", + -12.586040496826172 + ], + [ + "▁IC", + -12.586064338684082 + ], + [ + "▁Libraries", + -12.586124420166016 + ], + [ + "▁settlers", + -12.58614730834961 + ], + [ + "▁infused", + -12.586323738098145 + ], + [ + "▁streamlined", + -12.586342811584473 + ], + [ + "▁paramount", + -12.586400032043457 + ], + [ + "▁knots", + -12.586471557617188 + ], + [ + "eb", + -12.586668014526367 + ], + [ + "▁combustion", + -12.586809158325195 + ], + [ + "▁immersive", + -12.586843490600586 + ], + [ + "▁Affiliate", + -12.586891174316406 + ], + [ + "550", + -12.586926460266113 + ], + [ + "ways", + -12.586969375610352 + ], + [ + "▁novice", + -12.587170600891113 + ], + [ + "▁erase", + -12.587271690368652 + ], + [ + "▁faults", + -12.587407112121582 + ], + [ + "▁worms", + -12.587416648864746 + ], + [ + "▁hostel", + -12.587423324584961 + ], + [ + "103", + -12.587455749511719 + ], + [ + "▁relentless", + -12.587464332580566 + ], + [ + "▁colder", + -12.587506294250488 + ], + [ + "▁variability", + -12.587570190429688 + ], + [ + "▁Lego", + -12.58768081665039 + ], + [ + "▁windshield", + -12.587682723999023 + ], + [ + "▁Compliance", + -12.587845802307129 + ], + [ + "▁Torah", + -12.587889671325684 + ], + [ + "▁REAL", + -12.587922096252441 + ], + [ + "▁raced", + -12.5879487991333 + ], + [ + "▁ditch", + -12.587965965270996 + ], + [ + "▁Perez", + -12.587977409362793 + ], + [ + "▁Waters", + -12.588103294372559 + ], + [ + "▁Malaysian", + -12.588138580322266 + ], + [ + "▁Mp", + -12.588150024414062 + ], + [ + "225", + -12.588229179382324 + ], + [ + "▁attained", + -12.588251113891602 + ], + [ + "▁Tiny", + -12.58826732635498 + ], + [ + "please", + -12.588310241699219 + ], + [ + "▁sentencing", + -12.588374137878418 + ], + [ + "▁milling", + -12.588541984558105 + ], + [ + "▁fingerprint", + -12.588714599609375 + ], + [ + "▁ML", + -12.588732719421387 + ], + [ + "▁integrates", + -12.588829040527344 + ], + [ + "▁TA", + -12.589010238647461 + ], + [ + "▁Serving", + -12.58910083770752 + ], + [ + "▁Scholar", + -12.589102745056152 + ], + [ + "▁Lil", + -12.589244842529297 + ], + [ + "virus", + -12.589293479919434 + ], + [ + "▁tearing", + -12.58934211730957 + ], + [ + "▁sack", + -12.589387893676758 + ], + [ + "▁Barr", + -12.589444160461426 + ], + [ + "▁Purpose", + -12.589580535888672 + ], + [ + "▁ADHD", + -12.589587211608887 + ], + [ + "para", + -12.58962631225586 + ], + [ + "▁rubbing", + -12.589670181274414 + ], + [ + "paid", + -12.589970588684082 + ], + [ + "▁Zo", + -12.590059280395508 + ], + [ + "▁persona", + -12.590124130249023 + ], + [ + "▁councils", + -12.590188980102539 + ], + [ + "▁Automation", + -12.590215682983398 + ], + [ + "▁Garrett", + -12.590217590332031 + ], + [ + "▁regeneration", + -12.590229988098145 + ], + [ + "▁receivers", + -12.59023380279541 + ], + [ + "▁stint", + -12.590312957763672 + ], + [ + "▁biodiversity", + -12.590495109558105 + ], + [ + "▁Schmidt", + -12.590496063232422 + ], + [ + "large", + -12.590544700622559 + ], + [ + "▁mailed", + -12.590621948242188 + ], + [ + "▁bumps", + -12.590737342834473 + ], + [ + "GC", + -12.59080696105957 + ], + [ + "▁pretending", + -12.590808868408203 + ], + [ + "▁erected", + -12.590852737426758 + ], + [ + "▁Reason", + -12.590855598449707 + ], + [ + "III", + -12.59089183807373 + ], + [ + "▁intrinsic", + -12.591208457946777 + ], + [ + "phase", + -12.591226577758789 + ], + [ + "▁Bu", + -12.591614723205566 + ], + [ + "▁offspring", + -12.591634750366211 + ], + [ + "▁fertilizer", + -12.591643333435059 + ], + [ + "▁Expression", + -12.591703414916992 + ], + [ + "▁neurological", + -12.591876029968262 + ], + [ + "▁gladly", + -12.592062950134277 + ], + [ + "Really", + -12.592185020446777 + ], + [ + "▁impacting", + -12.592194557189941 + ], + [ + "▁Rewards", + -12.592286109924316 + ], + [ + "▁Nest", + -12.592290878295898 + ], + [ + "flight", + -12.592429161071777 + ], + [ + "▁1935", + -12.592445373535156 + ], + [ + "add", + -12.592575073242188 + ], + [ + "▁Sense", + -12.592588424682617 + ], + [ + "▁Junction", + -12.592714309692383 + ], + [ + "▁consultations", + -12.5928955078125 + ], + [ + "▁braces", + -12.593033790588379 + ], + [ + "▁Whitney", + -12.593037605285645 + ], + [ + "▁fluorescent", + -12.593132019042969 + ], + [ + "▁groundbreaking", + -12.593147277832031 + ], + [ + "▁330", + -12.593283653259277 + ], + [ + "▁bats", + -12.593489646911621 + ], + [ + "▁motions", + -12.593536376953125 + ], + [ + "▁voyage", + -12.593650817871094 + ], + [ + "▁soaking", + -12.593676567077637 + ], + [ + "dot", + -12.593777656555176 + ], + [ + "▁sharks", + -12.593857765197754 + ], + [ + "▁Santiago", + -12.593935012817383 + ], + [ + "▁Roller", + -12.594160079956055 + ], + [ + "▁ro", + -12.594210624694824 + ], + [ + "▁NSA", + -12.594364166259766 + ], + [ + "▁anthem", + -12.59437370300293 + ], + [ + "▁shines", + -12.594488143920898 + ], + [ + "▁Broken", + -12.594536781311035 + ], + [ + "▁Marriott", + -12.594608306884766 + ], + [ + "▁Cr", + -12.594637870788574 + ], + [ + "▁obsolete", + -12.594703674316406 + ], + [ + "▁influencing", + -12.594829559326172 + ], + [ + "▁toddlers", + -12.594943046569824 + ], + [ + "▁heaters", + -12.594950675964355 + ], + [ + "zero", + -12.594963073730469 + ], + [ + "▁Ads", + -12.595013618469238 + ], + [ + "▁advocating", + -12.595052719116211 + ], + [ + "since", + -12.595064163208008 + ], + [ + "lot", + -12.595244407653809 + ], + [ + "▁Harvest", + -12.5952730178833 + ], + [ + "▁Guarantee", + -12.595307350158691 + ], + [ + "▁assaulted", + -12.59537410736084 + ], + [ + "▁Cliff", + -12.595407485961914 + ], + [ + "idae", + -12.595409393310547 + ], + [ + "▁Mia", + -12.595458984375 + ], + [ + "▁depicting", + -12.595547676086426 + ], + [ + "▁Buddy", + -12.595666885375977 + ], + [ + "▁helm", + -12.595763206481934 + ], + [ + "▁formulas", + -12.595826148986816 + ], + [ + "▁Kia", + -12.595841407775879 + ], + [ + "▁inhibitors", + -12.595908164978027 + ], + [ + "▁portray", + -12.596117973327637 + ], + [ + "ND", + -12.596122741699219 + ], + [ + "▁aromatic", + -12.596139907836914 + ], + [ + "▁Needs", + -12.596190452575684 + ], + [ + "til", + -12.596220016479492 + ], + [ + "mill", + -12.596222877502441 + ], + [ + "▁facets", + -12.596245765686035 + ], + [ + "▁unusually", + -12.596436500549316 + ], + [ + "▁tunnels", + -12.596447944641113 + ], + [ + "▁Combat", + -12.596457481384277 + ], + [ + "▁Numerous", + -12.596488952636719 + ], + [ + "▁softly", + -12.596564292907715 + ], + [ + "▁embark", + -12.596746444702148 + ], + [ + "build", + -12.596929550170898 + ], + [ + "▁fuzzy", + -12.597003936767578 + ], + [ + "▁unfold", + -12.59713077545166 + ], + [ + "▁2022", + -12.597150802612305 + ], + [ + "cr", + -12.597281455993652 + ], + [ + "▁Weber", + -12.597305297851562 + ], + [ + "deep", + -12.597396850585938 + ], + [ + "▁PB", + -12.597399711608887 + ], + [ + "headed", + -12.597490310668945 + ], + [ + "▁mil", + -12.597509384155273 + ], + [ + "Super", + -12.597594261169434 + ], + [ + "▁Lyon", + -12.597607612609863 + ], + [ + "▁salsa", + -12.597636222839355 + ], + [ + "▁Australians", + -12.597722053527832 + ], + [ + "▁boiled", + -12.597746849060059 + ], + [ + "▁volunteered", + -12.5977783203125 + ], + [ + "1997", + -12.598026275634766 + ], + [ + "▁hubby", + -12.598173141479492 + ], + [ + "▁manuals", + -12.598401069641113 + ], + [ + "▁differing", + -12.598499298095703 + ], + [ + "▁Coaching", + -12.598511695861816 + ], + [ + "▁chores", + -12.598618507385254 + ], + [ + "▁LLP", + -12.598647117614746 + ], + [ + "▁Savannah", + -12.59865665435791 + ], + [ + "▁attackers", + -12.598733901977539 + ], + [ + "▁Beau", + -12.598817825317383 + ], + [ + "▁Combined", + -12.599004745483398 + ], + [ + "▁Pest", + -12.599117279052734 + ], + [ + "mates", + -12.59914493560791 + ], + [ + "▁Saving", + -12.599448204040527 + ], + [ + "▁Pearson", + -12.599605560302734 + ], + [ + "▁growers", + -12.599608421325684 + ], + [ + "▁Tam", + -12.599631309509277 + ], + [ + "▁communist", + -12.599823951721191 + ], + [ + "▁rot", + -12.600075721740723 + ], + [ + "▁misery", + -12.600174903869629 + ], + [ + "▁sushi", + -12.600235939025879 + ], + [ + "▁Classical", + -12.60030460357666 + ], + [ + "▁aquarium", + -12.60031509399414 + ], + [ + "▁reversal", + -12.600319862365723 + ], + [ + "▁Registry", + -12.600513458251953 + ], + [ + "vision", + -12.60053539276123 + ], + [ + "▁finely", + -12.600539207458496 + ], + [ + "▁detox", + -12.600611686706543 + ], + [ + "▁Exit", + -12.600817680358887 + ], + [ + "▁GW", + -12.601036071777344 + ], + [ + "▁courtroom", + -12.601083755493164 + ], + [ + "▁razor", + -12.601195335388184 + ], + [ + "▁vacations", + -12.6011962890625 + ], + [ + "▁territorial", + -12.601387023925781 + ], + [ + "▁screwed", + -12.601396560668945 + ], + [ + "many", + -12.601656913757324 + ], + [ + "▁hypo", + -12.602056503295898 + ], + [ + "▁Senators", + -12.602065086364746 + ], + [ + "▁slab", + -12.602102279663086 + ], + [ + "▁whispered", + -12.602127075195312 + ], + [ + "▁eagerly", + -12.602222442626953 + ], + [ + "▁caves", + -12.602376937866211 + ], + [ + "▁Hawks", + -12.602495193481445 + ], + [ + "▁Essentially", + -12.602907180786133 + ], + [ + "▁Burger", + -12.602916717529297 + ], + [ + "▁Position", + -12.603150367736816 + ], + [ + "▁cubes", + -12.603172302246094 + ], + [ + "▁DON", + -12.60317325592041 + ], + [ + "whether", + -12.603235244750977 + ], + [ + "America", + -12.603290557861328 + ], + [ + "culture", + -12.603483200073242 + ], + [ + "gin", + -12.603533744812012 + ], + [ + "▁endeavors", + -12.603617668151855 + ], + [ + "▁learns", + -12.603719711303711 + ], + [ + "▁workload", + -12.603766441345215 + ], + [ + "±", + -12.603816986083984 + ], + [ + "▁LGBTQ", + -12.603827476501465 + ], + [ + "▁VC", + -12.60390853881836 + ], + [ + "▁Hawk", + -12.603971481323242 + ], + [ + "▁lava", + -12.604068756103516 + ], + [ + "▁Confederate", + -12.604164123535156 + ], + [ + "▁cabins", + -12.604218482971191 + ], + [ + "▁Preheat", + -12.60430908203125 + ], + [ + "▁offended", + -12.6043119430542 + ], + [ + "Ra", + -12.604342460632324 + ], + [ + "▁550", + -12.604514122009277 + ], + [ + "▁Vince", + -12.604734420776367 + ], + [ + "▁Georgetown", + -12.604973793029785 + ], + [ + "▁Kathleen", + -12.605037689208984 + ], + [ + "▁saga", + -12.605042457580566 + ], + [ + "▁labeling", + -12.605083465576172 + ], + [ + "▁lobbying", + -12.60513973236084 + ], + [ + "▁HAS", + -12.605202674865723 + ], + [ + "▁aided", + -12.605253219604492 + ], + [ + "rr", + -12.605264663696289 + ], + [ + "▁toggle", + -12.605278968811035 + ], + [ + "▁Enterprises", + -12.60531234741211 + ], + [ + "▁exploited", + -12.605441093444824 + ], + [ + "▁Ceiling", + -12.605538368225098 + ], + [ + "▁Canvas", + -12.605545043945312 + ], + [ + "▁wording", + -12.605595588684082 + ], + [ + "catching", + -12.60561752319336 + ], + [ + "▁Brilliant", + -12.60567569732666 + ], + [ + "▁plaintiffs", + -12.605730056762695 + ], + [ + "zel", + -12.605734825134277 + ], + [ + "▁unfinished", + -12.605912208557129 + ], + [ + "▁pumped", + -12.606003761291504 + ], + [ + "▁singled", + -12.606325149536133 + ], + [ + "▁Turns", + -12.606396675109863 + ], + [ + "▁contend", + -12.606444358825684 + ], + [ + "lam", + -12.60657787322998 + ], + [ + "▁replaces", + -12.606698989868164 + ], + [ + "▁Somerset", + -12.606762886047363 + ], + [ + "Right", + -12.606794357299805 + ], + [ + "player", + -12.606799125671387 + ], + [ + "▁crib", + -12.606810569763184 + ], + [ + "▁stringent", + -12.606846809387207 + ], + [ + "▁distortion", + -12.60690689086914 + ], + [ + "CR", + -12.606910705566406 + ], + [ + "shan", + -12.606961250305176 + ], + [ + "▁hacked", + -12.607173919677734 + ], + [ + "approved", + -12.60720443725586 + ], + [ + "▁Gi", + -12.607275009155273 + ], + [ + "▁Corey", + -12.607339859008789 + ], + [ + "▁Mari", + -12.607382774353027 + ], + [ + "▁rationale", + -12.607718467712402 + ], + [ + "▁Trailer", + -12.607720375061035 + ], + [ + "▁bureau", + -12.607904434204102 + ], + [ + "kon", + -12.607924461364746 + ], + [ + "▁satellites", + -12.607983589172363 + ], + [ + "▁distributions", + -12.608110427856445 + ], + [ + "•", + -12.608139038085938 + ], + [ + "▁hesitation", + -12.608325958251953 + ], + [ + "political", + -12.608369827270508 + ], + [ + "▁Diesel", + -12.608409881591797 + ], + [ + "▁Promotion", + -12.608437538146973 + ], + [ + "▁Omar", + -12.6084566116333 + ], + [ + "▁innocence", + -12.608540534973145 + ], + [ + "coming", + -12.608551979064941 + ], + [ + "▁columnist", + -12.60859489440918 + ], + [ + "▁wi", + -12.608644485473633 + ], + [ + "▁embed", + -12.608708381652832 + ], + [ + "▁cruelty", + -12.60881233215332 + ], + [ + "▁lifespan", + -12.608834266662598 + ], + [ + "▁Burn", + -12.608926773071289 + ], + [ + "▁Kel", + -12.608978271484375 + ], + [ + "▁Oaks", + -12.609050750732422 + ], + [ + "▁cosmic", + -12.60906982421875 + ], + [ + "▁detrimental", + -12.609183311462402 + ], + [ + "▁habitats", + -12.60928726196289 + ], + [ + "ucci", + -12.60931396484375 + ], + [ + "ō", + -12.609508514404297 + ], + [ + "▁Von", + -12.60968017578125 + ], + [ + "▁Nexus", + -12.609712600708008 + ], + [ + "▁vitality", + -12.609777450561523 + ], + [ + "▁invoices", + -12.609829902648926 + ], + [ + "▁cedar", + -12.609833717346191 + ], + [ + "▁Grass", + -12.610052108764648 + ], + [ + "nation", + -12.6101655960083 + ], + [ + "▁drained", + -12.610212326049805 + ], + [ + "▁chew", + -12.610383987426758 + ], + [ + "▁ethic", + -12.610465049743652 + ], + [ + "▁Tory", + -12.610516548156738 + ], + [ + "▁caller", + -12.610555648803711 + ], + [ + "▁Rai", + -12.610798835754395 + ], + [ + "▁follower", + -12.61101245880127 + ], + [ + "▁Bulls", + -12.611056327819824 + ], + [ + "▁Grandma", + -12.611069679260254 + ], + [ + "▁144", + -12.611083984375 + ], + [ + "▁Demo", + -12.611084938049316 + ], + [ + "▁Crushing", + -12.611106872558594 + ], + [ + "▁Netanyahu", + -12.611160278320312 + ], + [ + "▁acupuncture", + -12.611248016357422 + ], + [ + "▁Raleigh", + -12.611302375793457 + ], + [ + "▁yr", + -12.611340522766113 + ], + [ + "▁Thirty", + -12.611394882202148 + ], + [ + "iki", + -12.611407279968262 + ], + [ + "▁Cher", + -12.611498832702637 + ], + [ + "▁Richards", + -12.611506462097168 + ], + [ + "▁yelled", + -12.611506462097168 + ], + [ + "▁Concept", + -12.611518859863281 + ], + [ + "▁Nina", + -12.611536979675293 + ], + [ + "▁famously", + -12.61153793334961 + ], + [ + "▁malaria", + -12.611635208129883 + ], + [ + "TP", + -12.61166763305664 + ], + [ + "nine", + -12.611668586730957 + ], + [ + "▁Mixed", + -12.611742973327637 + ], + [ + "pat", + -12.611759185791016 + ], + [ + "▁Institution", + -12.611835479736328 + ], + [ + "▁pillars", + -12.611920356750488 + ], + [ + "▁Rey", + -12.612136840820312 + ], + [ + "▁supper", + -12.612141609191895 + ], + [ + "▁outpatient", + -12.612149238586426 + ], + [ + "▁safari", + -12.612285614013672 + ], + [ + "ann", + -12.612310409545898 + ], + [ + "▁Lotus", + -12.612335205078125 + ], + [ + "▁goats", + -12.61236572265625 + ], + [ + "▁grooming", + -12.61239242553711 + ], + [ + "▁dimensional", + -12.612545013427734 + ], + [ + "yne", + -12.612654685974121 + ], + [ + "▁prioritize", + -12.612695693969727 + ], + [ + "▁billed", + -12.612948417663574 + ], + [ + "gl", + -12.612998962402344 + ], + [ + "MI", + -12.613126754760742 + ], + [ + "▁Universities", + -12.613234519958496 + ], + [ + "▁reactive", + -12.613245964050293 + ], + [ + "▁Eng", + -12.613251686096191 + ], + [ + "▁Mustang", + -12.61341381072998 + ], + [ + "▁ROM", + -12.613755226135254 + ], + [ + "▁GDPR", + -12.613856315612793 + ], + [ + "▁rested", + -12.613893508911133 + ], + [ + "▁Kor", + -12.61396598815918 + ], + [ + "still", + -12.613971710205078 + ], + [ + "▁ethanol", + -12.61397647857666 + ], + [ + "▁diarrhea", + -12.614096641540527 + ], + [ + "▁sinking", + -12.614163398742676 + ], + [ + "▁Blend", + -12.614185333251953 + ], + [ + "tur", + -12.614234924316406 + ], + [ + "▁borrowers", + -12.614276885986328 + ], + [ + "▁sermon", + -12.614287376403809 + ], + [ + "▁bishop", + -12.614307403564453 + ], + [ + "San", + -12.614317893981934 + ], + [ + "▁amplifier", + -12.614362716674805 + ], + [ + "▁envy", + -12.614534378051758 + ], + [ + "driving", + -12.614561080932617 + ], + [ + "▁Insider", + -12.614701271057129 + ], + [ + "▁Granite", + -12.614789009094238 + ], + [ + "Come", + -12.614890098571777 + ], + [ + "▁dances", + -12.615010261535645 + ], + [ + "▁pup", + -12.615043640136719 + ], + [ + "▁Marsh", + -12.615059852600098 + ], + [ + "▁promoter", + -12.615113258361816 + ], + [ + "▁Mormon", + -12.615167617797852 + ], + [ + "▁Wa", + -12.615224838256836 + ], + [ + "living", + -12.615248680114746 + ], + [ + "smart", + -12.615517616271973 + ], + [ + "UL", + -12.615595817565918 + ], + [ + "▁notions", + -12.615655899047852 + ], + [ + "▁turmoil", + -12.615663528442383 + ], + [ + "▁CLICK", + -12.615735054016113 + ], + [ + "▁trailing", + -12.61575984954834 + ], + [ + "▁fading", + -12.61579704284668 + ], + [ + "▁darling", + -12.616005897521973 + ], + [ + "▁ju", + -12.61604118347168 + ], + [ + "▁Territory", + -12.616052627563477 + ], + [ + "▁Nash", + -12.616057395935059 + ], + [ + "▁informing", + -12.61610221862793 + ], + [ + "▁prefers", + -12.616154670715332 + ], + [ + "▁fringe", + -12.61620807647705 + ], + [ + "▁begging", + -12.616252899169922 + ], + [ + "▁Possible", + -12.616265296936035 + ], + [ + "▁1919", + -12.616290092468262 + ], + [ + "▁OT", + -12.616439819335938 + ], + [ + "▁Overview", + -12.616487503051758 + ], + [ + "▁cultivated", + -12.61665153503418 + ], + [ + "▁Interface", + -12.616861343383789 + ], + [ + "▁sandals", + -12.61726188659668 + ], + [ + "▁specimen", + -12.617308616638184 + ], + [ + "mobile", + -12.617323875427246 + ], + [ + "bon", + -12.617401123046875 + ], + [ + "▁simultaneous", + -12.617433547973633 + ], + [ + "▁pancakes", + -12.617560386657715 + ], + [ + "▁EM", + -12.617744445800781 + ], + [ + "did", + -12.617825508117676 + ], + [ + "▁Speak", + -12.617857933044434 + ], + [ + "▁complexes", + -12.618157386779785 + ], + [ + "▁Dia", + -12.61816692352295 + ], + [ + "▁Savior", + -12.618185043334961 + ], + [ + "offs", + -12.618343353271484 + ], + [ + "▁Petroleum", + -12.61839771270752 + ], + [ + "▁throttle", + -12.618494033813477 + ], + [ + "▁breaches", + -12.618684768676758 + ], + [ + "▁realizes", + -12.618724822998047 + ], + [ + "Pay", + -12.618729591369629 + ], + [ + "▁char", + -12.618961334228516 + ], + [ + "asi", + -12.61899471282959 + ], + [ + "▁Celebrate", + -12.619002342224121 + ], + [ + "char", + -12.619026184082031 + ], + [ + "▁ecology", + -12.619136810302734 + ], + [ + "▁Contractors", + -12.619169235229492 + ], + [ + "▁aide", + -12.619178771972656 + ], + [ + "▁textbooks", + -12.619194030761719 + ], + [ + "▁bead", + -12.619220733642578 + ], + [ + "▁Sunny", + -12.619243621826172 + ], + [ + "▁disposition", + -12.61928653717041 + ], + [ + "▁objections", + -12.619297981262207 + ], + [ + "▁Bench", + -12.619298934936523 + ], + [ + "SON", + -12.619308471679688 + ], + [ + "▁pouch", + -12.619365692138672 + ], + [ + "▁thankfully", + -12.619485855102539 + ], + [ + "OP", + -12.6195068359375 + ], + [ + "▁elevate", + -12.619522094726562 + ], + [ + "personal", + -12.619598388671875 + ], + [ + "▁revive", + -12.61970043182373 + ], + [ + "▁Invest", + -12.619721412658691 + ], + [ + "▁Squad", + -12.619749069213867 + ], + [ + "▁denies", + -12.619783401489258 + ], + [ + "▁sings", + -12.619866371154785 + ], + [ + "▁Pleasant", + -12.61989974975586 + ], + [ + "PH", + -12.620024681091309 + ], + [ + "▁hairstyles", + -12.620057106018066 + ], + [ + "▁landlords", + -12.620201110839844 + ], + [ + "▁Americas", + -12.620315551757812 + ], + [ + "▁cathedral", + -12.62039852142334 + ], + [ + "▁Inspiration", + -12.620431900024414 + ], + [ + "▁Bert", + -12.620437622070312 + ], + [ + "▁redistributed", + -12.620447158813477 + ], + [ + "▁suppress", + -12.620464324951172 + ], + [ + "▁JR", + -12.620628356933594 + ], + [ + "▁Layer", + -12.620708465576172 + ], + [ + "▁MacBook", + -12.620813369750977 + ], + [ + "▁bananas", + -12.621031761169434 + ], + [ + "▁noises", + -12.62115478515625 + ], + [ + "▁Documents", + -12.621315956115723 + ], + [ + "▁stereotypes", + -12.62142562866211 + ], + [ + "▁Feeling", + -12.621429443359375 + ], + [ + "▁Prep", + -12.621465682983398 + ], + [ + "▁Composite", + -12.621476173400879 + ], + [ + "Mac", + -12.62149715423584 + ], + [ + "▁une", + -12.621562004089355 + ], + [ + "▁seizures", + -12.621631622314453 + ], + [ + "▁stat", + -12.621699333190918 + ], + [ + "▁feasibility", + -12.621819496154785 + ], + [ + "En", + -12.621851921081543 + ], + [ + "▁HDMI", + -12.621901512145996 + ], + [ + "▁feather", + -12.621907234191895 + ], + [ + "▁sofas", + -12.621953964233398 + ], + [ + "▁simulator", + -12.621973991394043 + ], + [ + "▁caliber", + -12.622060775756836 + ], + [ + "Level", + -12.622145652770996 + ], + [ + "▁chalk", + -12.62218189239502 + ], + [ + "▁visualize", + -12.622302055358887 + ], + [ + "Two", + -12.622419357299805 + ], + [ + "▁scalable", + -12.622513771057129 + ], + [ + "EA", + -12.622543334960938 + ], + [ + "▁Ap", + -12.622580528259277 + ], + [ + "▁Cir", + -12.622627258300781 + ], + [ + "▁Volunteers", + -12.622797012329102 + ], + [ + "▁funky", + -12.622832298278809 + ], + [ + "▁weaving", + -12.622894287109375 + ], + [ + "▁124", + -12.622901916503906 + ], + [ + "▁fu", + -12.622932434082031 + ], + [ + "FR", + -12.622942924499512 + ], + [ + "▁zipper", + -12.622949600219727 + ], + [ + "▁greatness", + -12.623021125793457 + ], + [ + "▁Deborah", + -12.623042106628418 + ], + [ + "Make", + -12.623078346252441 + ], + [ + "를", + -12.623098373413086 + ], + [ + "▁imaginary", + -12.623191833496094 + ], + [ + "▁distract", + -12.623208999633789 + ], + [ + "▁dem", + -12.623241424560547 + ], + [ + "eight", + -12.623348236083984 + ], + [ + "▁Rabbit", + -12.623370170593262 + ], + [ + "▁migrate", + -12.623576164245605 + ], + [ + "▁TT", + -12.623579025268555 + ], + [ + "nz", + -12.623589515686035 + ], + [ + "▁clocks", + -12.623627662658691 + ], + [ + "▁Diversity", + -12.623717308044434 + ], + [ + "▁ceased", + -12.62401294708252 + ], + [ + "▁systematically", + -12.62401294708252 + ], + [ + "▁bedtime", + -12.624228477478027 + ], + [ + "▁miracles", + -12.624333381652832 + ], + [ + "▁MTV", + -12.624351501464844 + ], + [ + "▁flux", + -12.624391555786133 + ], + [ + "▁fueled", + -12.624482154846191 + ], + [ + "▁embroidered", + -12.624567031860352 + ], + [ + "▁1880", + -12.624673843383789 + ], + [ + "▁testimonials", + -12.624786376953125 + ], + [ + "▁Calling", + -12.624791145324707 + ], + [ + "▁Inspection", + -12.624820709228516 + ], + [ + "▁conditional", + -12.624842643737793 + ], + [ + "LC", + -12.624855995178223 + ], + [ + "▁Shirley", + -12.624889373779297 + ], + [ + "▁conflicting", + -12.624914169311523 + ], + [ + "▁leveraging", + -12.625028610229492 + ], + [ + "▁Alto", + -12.625043869018555 + ], + [ + "▁Dixon", + -12.625061988830566 + ], + [ + "▁heightened", + -12.625131607055664 + ], + [ + "▁aperture", + -12.62513256072998 + ], + [ + "▁therein", + -12.625218391418457 + ], + [ + "▁bottled", + -12.625238418579102 + ], + [ + "▁benches", + -12.625374794006348 + ], + [ + "▁−", + -12.62537670135498 + ], + [ + "▁snakes", + -12.625438690185547 + ], + [ + "▁consolidate", + -12.625510215759277 + ], + [ + "▁Architects", + -12.625530242919922 + ], + [ + "▁Abuse", + -12.625699043273926 + ], + [ + "▁PH", + -12.625720024108887 + ], + [ + "▁Tulsa", + -12.62575626373291 + ], + [ + "▁fullest", + -12.625859260559082 + ], + [ + "▁greed", + -12.625946998596191 + ], + [ + "▁MySQL", + -12.625982284545898 + ], + [ + "▁coveted", + -12.626059532165527 + ], + [ + "▁affinity", + -12.626174926757812 + ], + [ + "double", + -12.626192092895508 + ], + [ + "▁Borough", + -12.626192092895508 + ], + [ + "▁Horror", + -12.626255989074707 + ], + [ + "sponsored", + -12.626410484313965 + ], + [ + "▁Older", + -12.626446723937988 + ], + [ + "▁Ter", + -12.626644134521484 + ], + [ + "▁Teresa", + -12.626664161682129 + ], + [ + "▁Lowe", + -12.626757621765137 + ], + [ + "▁booster", + -12.626758575439453 + ], + [ + "▁algae", + -12.626819610595703 + ], + [ + "▁oath", + -12.627006530761719 + ], + [ + "while", + -12.627055168151855 + ], + [ + "fiction", + -12.62706184387207 + ], + [ + "AF", + -12.627145767211914 + ], + [ + "▁ideals", + -12.627269744873047 + ], + [ + "▁121", + -12.62741756439209 + ], + [ + "▁Goals", + -12.627534866333008 + ], + [ + "▁4000", + -12.627569198608398 + ], + [ + "▁Jerseys", + -12.627580642700195 + ], + [ + "▁Wil", + -12.627584457397461 + ], + [ + "hara", + -12.62762451171875 + ], + [ + "▁Az", + -12.627692222595215 + ], + [ + "mit", + -12.627817153930664 + ], + [ + "▁OTHER", + -12.627947807312012 + ], + [ + "▁wolves", + -12.628244400024414 + ], + [ + "▁flap", + -12.628406524658203 + ], + [ + "gh", + -12.628491401672363 + ], + [ + "▁mon", + -12.62851619720459 + ], + [ + "▁uni", + -12.628589630126953 + ], + [ + "▁seas", + -12.6286039352417 + ], + [ + "▁counselling", + -12.628632545471191 + ], + [ + "tex", + -12.628707885742188 + ], + [ + "needed", + -12.628776550292969 + ], + [ + "lived", + -12.62881088256836 + ], + [ + "▁Turning", + -12.62881088256836 + ], + [ + "▁rewritten", + -12.628851890563965 + ], + [ + "▁Tibetan", + -12.628856658935547 + ], + [ + "▁1911", + -12.629012107849121 + ], + [ + "▁Sai", + -12.629045486450195 + ], + [ + "inter", + -12.629212379455566 + ], + [ + "▁redundant", + -12.629249572753906 + ], + [ + "▁collaborations", + -12.62927532196045 + ], + [ + "▁gin", + -12.629283905029297 + ], + [ + "▁troubleshooting", + -12.629424095153809 + ], + [ + "▁Venture", + -12.62951374053955 + ], + [ + "mount", + -12.629515647888184 + ], + [ + "▁Drain", + -12.629538536071777 + ], + [ + "▁variance", + -12.629554748535156 + ], + [ + "stra", + -12.629557609558105 + ], + [ + "▁ironic", + -12.629716873168945 + ], + [ + "▁Distance", + -12.629847526550293 + ], + [ + "▁expires", + -12.629997253417969 + ], + [ + "▁daddy", + -12.63002872467041 + ], + [ + "▁eBook", + -12.630032539367676 + ], + [ + "suite", + -12.630067825317383 + ], + [ + "▁Pavilion", + -12.630067825317383 + ], + [ + "▁handbook", + -12.630074501037598 + ], + [ + "floor", + -12.630086898803711 + ], + [ + "▁Wan", + -12.630167007446289 + ], + [ + "▁circulating", + -12.630282402038574 + ], + [ + "qu", + -12.630317687988281 + ], + [ + "▁Rec", + -12.630348205566406 + ], + [ + "▁Steelers", + -12.630516052246094 + ], + [ + "▁weakened", + -12.630541801452637 + ], + [ + "▁Disability", + -12.630681991577148 + ], + [ + "▁programmer", + -12.63068962097168 + ], + [ + "▁ebay", + -12.630743026733398 + ], + [ + "▁defeating", + -12.630776405334473 + ], + [ + "▁steroids", + -12.630823135375977 + ], + [ + "▁flipped", + -12.630890846252441 + ], + [ + "▁bro", + -12.63096809387207 + ], + [ + "▁teaspoon", + -12.631002426147461 + ], + [ + "unit", + -12.631040573120117 + ], + [ + "▁119", + -12.631146430969238 + ], + [ + "▁Mazda", + -12.631157875061035 + ], + [ + "▁spit", + -12.631242752075195 + ], + [ + "▁transporting", + -12.631321907043457 + ], + [ + "▁obese", + -12.631349563598633 + ], + [ + "▁thigh", + -12.631521224975586 + ], + [ + "hal", + -12.63154411315918 + ], + [ + "▁AFP", + -12.631573677062988 + ], + [ + "▁stash", + -12.631625175476074 + ], + [ + "▁Resistance", + -12.631739616394043 + ], + [ + "▁spur", + -12.631772994995117 + ], + [ + "▁adulthood", + -12.631982803344727 + ], + [ + "▁fleeing", + -12.632034301757812 + ], + [ + "August", + -12.632038116455078 + ], + [ + "▁Yamaha", + -12.632152557373047 + ], + [ + "▁Pic", + -12.632160186767578 + ], + [ + "▁Sexual", + -12.632295608520508 + ], + [ + "▁plated", + -12.632387161254883 + ], + [ + "▁proficient", + -12.63239860534668 + ], + [ + "▁grandma", + -12.632683753967285 + ], + [ + "▁filler", + -12.632802963256836 + ], + [ + "▁hid", + -12.63280963897705 + ], + [ + "▁grin", + -12.632881164550781 + ], + [ + "▁Pike", + -12.632927894592285 + ], + [ + "▁Robot", + -12.632966041564941 + ], + [ + "▁admitting", + -12.633152961730957 + ], + [ + "▁Goal", + -12.633262634277344 + ], + [ + "▁Terra", + -12.633275032043457 + ], + [ + "▁beneficiary", + -12.633278846740723 + ], + [ + "▁humid", + -12.63330078125 + ], + [ + "▁conditioned", + -12.633440017700195 + ], + [ + "▁carrot", + -12.633577346801758 + ], + [ + "▁bun", + -12.63358211517334 + ], + [ + "▁thieves", + -12.633721351623535 + ], + [ + "▁Celebration", + -12.633757591247559 + ], + [ + "▁Dust", + -12.633840560913086 + ], + [ + "▁hearty", + -12.634026527404785 + ], + [ + "ison", + -12.63405704498291 + ], + [ + "▁hardship", + -12.634090423583984 + ], + [ + "▁automate", + -12.63416862487793 + ], + [ + "write", + -12.634263038635254 + ], + [ + "▁landfill", + -12.634289741516113 + ], + [ + "▁Underground", + -12.634392738342285 + ], + [ + "▁Webster", + -12.634407997131348 + ], + [ + "▁coronary", + -12.634604454040527 + ], + [ + "▁indictment", + -12.634689331054688 + ], + [ + "▁Boyd", + -12.634697914123535 + ], + [ + "▁165", + -12.634790420532227 + ], + [ + "▁Putting", + -12.634832382202148 + ], + [ + "▁DD", + -12.634905815124512 + ], + [ + "▁uh", + -12.634967803955078 + ], + [ + "ici", + -12.635065078735352 + ], + [ + "▁elephants", + -12.635066986083984 + ], + [ + "▁hail", + -12.635098457336426 + ], + [ + "▁stocking", + -12.635126113891602 + ], + [ + "▁elusive", + -12.635309219360352 + ], + [ + "▁fences", + -12.635381698608398 + ], + [ + "Open", + -12.635509490966797 + ], + [ + "cer", + -12.635520935058594 + ], + [ + "▁glued", + -12.635565757751465 + ], + [ + "▁dictate", + -12.635642051696777 + ], + [ + "▁deter", + -12.63565444946289 + ], + [ + "▁TWO", + -12.635706901550293 + ], + [ + "▁humility", + -12.63577651977539 + ], + [ + "CON", + -12.635814666748047 + ], + [ + "▁streamline", + -12.635833740234375 + ], + [ + "▁reviewers", + -12.636219024658203 + ], + [ + "▁Finals", + -12.636226654052734 + ], + [ + "▁lakh", + -12.636238098144531 + ], + [ + "▁contractual", + -12.636555671691895 + ], + [ + "▁Applicants", + -12.636632919311523 + ], + [ + "▁tart", + -12.636686325073242 + ], + [ + "▁Bruno", + -12.636783599853516 + ], + [ + "▁Gonzalez", + -12.63679027557373 + ], + [ + "▁Quantum", + -12.636819839477539 + ], + [ + "▁MX", + -12.636938095092773 + ], + [ + "ota", + -12.636956214904785 + ], + [ + "▁compulsory", + -12.637042045593262 + ], + [ + "▁Pod", + -12.637099266052246 + ], + [ + "▁Rosen", + -12.637101173400879 + ], + [ + "▁predators", + -12.63715648651123 + ], + [ + "▁Caesar", + -12.637207984924316 + ], + [ + "▁Damage", + -12.637256622314453 + ], + [ + "▁indicative", + -12.637275695800781 + ], + [ + "▁Farms", + -12.637314796447754 + ], + [ + "▁mammals", + -12.637359619140625 + ], + [ + "aux", + -12.637463569641113 + ], + [ + "Call", + -12.637544631958008 + ], + [ + "National", + -12.637731552124023 + ], + [ + "▁Scotia", + -12.638023376464844 + ], + [ + "▁inserts", + -12.638242721557617 + ], + [ + "▁Rim", + -12.63833236694336 + ], + [ + "▁Hank", + -12.638484001159668 + ], + [ + "▁Featured", + -12.638541221618652 + ], + [ + "▁Infinity", + -12.638629913330078 + ], + [ + "ther", + -12.638725280761719 + ], + [ + "▁cleanse", + -12.638733863830566 + ], + [ + "▁hatch", + -12.638858795166016 + ], + [ + "City", + -12.638906478881836 + ], + [ + "▁Supplies", + -12.63897705078125 + ], + [ + "▁CITY", + -12.639179229736328 + ], + [ + "▁enamel", + -12.639256477355957 + ], + [ + "▁FIRST", + -12.639368057250977 + ], + [ + "▁Meg", + -12.639400482177734 + ], + [ + "▁Reduce", + -12.63940143585205 + ], + [ + "▁Vale", + -12.639459609985352 + ], + [ + "▁carving", + -12.639507293701172 + ], + [ + "▁270", + -12.639612197875977 + ], + [ + "lly", + -12.639896392822266 + ], + [ + "▁disregard", + -12.639949798583984 + ], + [ + "▁distractions", + -12.640033721923828 + ], + [ + "▁conveyor", + -12.640159606933594 + ], + [ + "▁plague", + -12.640443801879883 + ], + [ + "▁Nottingham", + -12.640463829040527 + ], + [ + "▁Areas", + -12.640474319458008 + ], + [ + "true", + -12.640523910522461 + ], + [ + "wen", + -12.640632629394531 + ], + [ + "▁pits", + -12.640643119812012 + ], + [ + "▁BTW", + -12.640676498413086 + ], + [ + "▁Shape", + -12.640725135803223 + ], + [ + "▁acknowledging", + -12.640814781188965 + ], + [ + "▁tighter", + -12.640926361083984 + ], + [ + "▁compressor", + -12.640955924987793 + ], + [ + "▁doesnt", + -12.641103744506836 + ], + [ + "▁eh", + -12.641164779663086 + ], + [ + "▁lays", + -12.641253471374512 + ], + [ + "▁derive", + -12.641261100769043 + ], + [ + "▁accusing", + -12.641335487365723 + ], + [ + "▁glazed", + -12.641345024108887 + ], + [ + "▁li", + -12.641519546508789 + ], + [ + "▁whisk", + -12.64162540435791 + ], + [ + "EM", + -12.641677856445312 + ], + [ + "auto", + -12.641719818115234 + ], + [ + "uff", + -12.641738891601562 + ], + [ + "▁Johnston", + -12.64179515838623 + ], + [ + "▁insulated", + -12.641919136047363 + ], + [ + "▁lawful", + -12.642147064208984 + ], + [ + "▁smash", + -12.642187118530273 + ], + [ + "▁rape", + -12.642254829406738 + ], + [ + "▁clinicians", + -12.642422676086426 + ], + [ + "▁Ala", + -12.642908096313477 + ], + [ + "▁assassination", + -12.642951965332031 + ], + [ + "▁inhibitor", + -12.642952919006348 + ], + [ + "Watch", + -12.642970085144043 + ], + [ + "MU", + -12.64299201965332 + ], + [ + "▁Acting", + -12.643242835998535 + ], + [ + "▁eyebrows", + -12.64334487915039 + ], + [ + "▁filtration", + -12.643424034118652 + ], + [ + "▁Niagara", + -12.643630981445312 + ], + [ + "tum", + -12.643757820129395 + ], + [ + "▁nineteenth", + -12.643834114074707 + ], + [ + "▁Potential", + -12.643835067749023 + ], + [ + "▁bargaining", + -12.643898963928223 + ], + [ + "▁bee", + -12.644009590148926 + ], + [ + "HT", + -12.6441011428833 + ], + [ + "BP", + -12.644176483154297 + ], + [ + "▁Billboard", + -12.644220352172852 + ], + [ + "ions", + -12.644240379333496 + ], + [ + "▁offences", + -12.64436149597168 + ], + [ + "▁dispatch", + -12.644454956054688 + ], + [ + "▁respectable", + -12.644482612609863 + ], + [ + "▁Wong", + -12.644515037536621 + ], + [ + "sur", + -12.644586563110352 + ], + [ + "▁verge", + -12.644598960876465 + ], + [ + "▁Zu", + -12.644676208496094 + ], + [ + "175", + -12.64476490020752 + ], + [ + "▁cosy", + -12.644793510437012 + ], + [ + "▁feeder", + -12.644960403442383 + ], + [ + "▁maze", + -12.644963264465332 + ], + [ + "▁Beef", + -12.644974708557129 + ], + [ + "▁Titans", + -12.644996643066406 + ], + [ + "▁Module", + -12.645136833190918 + ], + [ + "▁bounds", + -12.645329475402832 + ], + [ + "▁genocide", + -12.645350456237793 + ], + [ + "▁vouchers", + -12.64538860321045 + ], + [ + "▁plugs", + -12.645496368408203 + ], + [ + "▁pi", + -12.645587921142578 + ], + [ + "▁Snapchat", + -12.645604133605957 + ], + [ + "▁directories", + -12.645718574523926 + ], + [ + "▁tomb", + -12.645721435546875 + ], + [ + "▁revise", + -12.645858764648438 + ], + [ + "▁Halifax", + -12.645984649658203 + ], + [ + "▁alarming", + -12.646042823791504 + ], + [ + "▁termed", + -12.64614200592041 + ], + [ + "▁ghosts", + -12.646238327026367 + ], + [ + "▁documenting", + -12.646303176879883 + ], + [ + "glass", + -12.646327018737793 + ], + [ + "▁strands", + -12.646397590637207 + ], + [ + "▁linguistic", + -12.646546363830566 + ], + [ + "▁drastic", + -12.646673202514648 + ], + [ + "▁animations", + -12.646707534790039 + ], + [ + "▁Luna", + -12.646783828735352 + ], + [ + "▁subset", + -12.646907806396484 + ], + [ + "▁hue", + -12.646939277648926 + ], + [ + "know", + -12.646954536437988 + ], + [ + "▁Omni", + -12.646970748901367 + ], + [ + "▁cherish", + -12.6471529006958 + ], + [ + "▁nostalgia", + -12.647175788879395 + ], + [ + "▁Tire", + -12.64726734161377 + ], + [ + "▁Translation", + -12.647452354431152 + ], + [ + "▁lifestyles", + -12.64752197265625 + ], + [ + "▁Ob", + -12.64757251739502 + ], + [ + "▁bingo", + -12.647604942321777 + ], + [ + "▁replication", + -12.647705078125 + ], + [ + "▁crochet", + -12.647909164428711 + ], + [ + "▁Chloe", + -12.647918701171875 + ], + [ + "conscious", + -12.647919654846191 + ], + [ + "▁landmarks", + -12.647958755493164 + ], + [ + "training", + -12.648176193237305 + ], + [ + "ü", + -12.648177146911621 + ], + [ + "notch", + -12.648204803466797 + ], + [ + "▁Emmanuel", + -12.648274421691895 + ], + [ + "▁Hai", + -12.648284912109375 + ], + [ + "▁Canberra", + -12.648508071899414 + ], + [ + "▁gutter", + -12.64857006072998 + ], + [ + "operation", + -12.648740768432617 + ], + [ + "come", + -12.648749351501465 + ], + [ + "▁Lie", + -12.648957252502441 + ], + [ + "▁confuse", + -12.649022102355957 + ], + [ + "▁Served", + -12.649076461791992 + ], + [ + "▁outrageous", + -12.64915657043457 + ], + [ + "▁Vector", + -12.649164199829102 + ], + [ + "ranked", + -12.649174690246582 + ], + [ + "▁Filipino", + -12.649216651916504 + ], + [ + "aq", + -12.64924144744873 + ], + [ + "▁hates", + -12.649249076843262 + ], + [ + "▁Herman", + -12.649284362792969 + ], + [ + "▁desks", + -12.649388313293457 + ], + [ + "▁Disc", + -12.649417877197266 + ], + [ + "▁citation", + -12.649422645568848 + ], + [ + "▁Rare", + -12.64942741394043 + ], + [ + "▁Coconut", + -12.64946460723877 + ], + [ + "▁Requirements", + -12.649596214294434 + ], + [ + "▁zoning", + -12.649627685546875 + ], + [ + "▁seams", + -12.649837493896484 + ], + [ + "▁Welfare", + -12.65001392364502 + ], + [ + "▁1915", + -12.65019702911377 + ], + [ + "heads", + -12.6502685546875 + ], + [ + "ters", + -12.650287628173828 + ], + [ + "▁Franco", + -12.650310516357422 + ], + [ + "▁CPA", + -12.650369644165039 + ], + [ + "▁mastered", + -12.650755882263184 + ], + [ + "▁Bulletin", + -12.650823593139648 + ], + [ + "▁clarification", + -12.650994300842285 + ], + [ + "▁1916", + -12.651009559631348 + ], + [ + "▁proficiency", + -12.65102481842041 + ], + [ + "▁unwilling", + -12.65103816986084 + ], + [ + "▁Saskatchewan", + -12.651142120361328 + ], + [ + "▁enrich", + -12.651199340820312 + ], + [ + "▁oily", + -12.651293754577637 + ], + [ + "▁Maxwell", + -12.651333808898926 + ], + [ + "▁Stella", + -12.651354789733887 + ], + [ + "▁uploading", + -12.651626586914062 + ], + [ + "▁HUGE", + -12.651875495910645 + ], + [ + "▁turtle", + -12.651952743530273 + ], + [ + "▁altering", + -12.651992797851562 + ], + [ + "▁presenter", + -12.652010917663574 + ], + [ + "▁electromagnetic", + -12.65204906463623 + ], + [ + "uch", + -12.652063369750977 + ], + [ + "▁tyre", + -12.652077674865723 + ], + [ + "▁Cheers", + -12.652098655700684 + ], + [ + "▁fo", + -12.652254104614258 + ], + [ + "▁Carey", + -12.652329444885254 + ], + [ + "▁Spectrum", + -12.652381896972656 + ], + [ + "tab", + -12.652443885803223 + ], + [ + "▁sunscreen", + -12.65246868133545 + ], + [ + "▁sightseeing", + -12.652676582336426 + ], + [ + "▁loosely", + -12.652692794799805 + ], + [ + "Ma", + -12.65269660949707 + ], + [ + "▁Disclosure", + -12.652791976928711 + ], + [ + "▁Messiah", + -12.652828216552734 + ], + [ + "▁β", + -12.652905464172363 + ], + [ + "▁Phantom", + -12.652915954589844 + ], + [ + "▁preach", + -12.653007507324219 + ], + [ + "▁discouraged", + -12.653192520141602 + ], + [ + "▁compute", + -12.653264999389648 + ], + [ + "▁tho", + -12.653299331665039 + ], + [ + "chat", + -12.653359413146973 + ], + [ + "download", + -12.6533842086792 + ], + [ + "▁dipped", + -12.653406143188477 + ], + [ + "▁Boots", + -12.65357780456543 + ], + [ + "▁fined", + -12.653580665588379 + ], + [ + "▁multinational", + -12.653675079345703 + ], + [ + "Service", + -12.653698921203613 + ], + [ + "▁Serial", + -12.653755187988281 + ], + [ + "▁horns", + -12.653759002685547 + ], + [ + "▁coolest", + -12.653766632080078 + ], + [ + "tia", + -12.6538667678833 + ], + [ + "▁mundane", + -12.653874397277832 + ], + [ + "▁shattered", + -12.653962135314941 + ], + [ + "▁Manitoba", + -12.654053688049316 + ], + [ + "▁Antique", + -12.654054641723633 + ], + [ + "▁Chandler", + -12.65421199798584 + ], + [ + "▁Courses", + -12.6542387008667 + ], + [ + "▁LTE", + -12.654256820678711 + ], + [ + "▁trustee", + -12.654282569885254 + ], + [ + "▁nominees", + -12.654302597045898 + ], + [ + "▁descended", + -12.654313087463379 + ], + [ + "▁tracker", + -12.65440559387207 + ], + [ + "▁mythology", + -12.65446949005127 + ], + [ + "▁NFC", + -12.654539108276367 + ], + [ + "▁factual", + -12.65456485748291 + ], + [ + "▁med", + -12.65456485748291 + ], + [ + "▁categorized", + -12.65468692779541 + ], + [ + "▁stranded", + -12.65471076965332 + ], + [ + "▁Bolton", + -12.654751777648926 + ], + [ + "▁disgusting", + -12.654803276062012 + ], + [ + "▁Telegraph", + -12.654824256896973 + ], + [ + "▁Hartford", + -12.654891014099121 + ], + [ + "▁serviced", + -12.654922485351562 + ], + [ + "▁→", + -12.6549711227417 + ], + [ + "October", + -12.654988288879395 + ], + [ + "osis", + -12.654993057250977 + ], + [ + "cf", + -12.655292510986328 + ], + [ + "▁constituency", + -12.655567169189453 + ], + [ + "▁EL", + -12.655622482299805 + ], + [ + "▁remake", + -12.655725479125977 + ], + [ + "▁experimentation", + -12.655814170837402 + ], + [ + "▁Stores", + -12.655927658081055 + ], + [ + "music", + -12.655929565429688 + ], + [ + "▁tighten", + -12.656000137329102 + ], + [ + "mond", + -12.656105995178223 + ], + [ + "▁Bou", + -12.65613079071045 + ], + [ + "▁Sitting", + -12.656294822692871 + ], + [ + "VI", + -12.656317710876465 + ], + [ + "▁Plains", + -12.656387329101562 + ], + [ + "▁divers", + -12.656425476074219 + ], + [ + "▁Hor", + -12.656495094299316 + ], + [ + "▁Organizations", + -12.656614303588867 + ], + [ + "▁Neu", + -12.656636238098145 + ], + [ + "▁Tang", + -12.656797409057617 + ], + [ + "▁backlash", + -12.6569242477417 + ], + [ + "▁alarms", + -12.657092094421387 + ], + [ + "▁126", + -12.65715217590332 + ], + [ + "▁transmitter", + -12.65732479095459 + ], + [ + "▁132", + -12.657371520996094 + ], + [ + "▁Cutting", + -12.657414436340332 + ], + [ + "▁Brigade", + -12.657476425170898 + ], + [ + "1996", + -12.657559394836426 + ], + [ + "▁Begin", + -12.657578468322754 + ], + [ + "¡", + -12.65761661529541 + ], + [ + "▁Coca", + -12.657641410827637 + ], + [ + "▁Flip", + -12.657649993896484 + ], + [ + "private", + -12.657691955566406 + ], + [ + "▁intimacy", + -12.657844543457031 + ], + [ + "▁initiation", + -12.657848358154297 + ], + [ + "▁Legends", + -12.657853126525879 + ], + [ + "yon", + -12.658023834228516 + ], + [ + "▁radiant", + -12.65804386138916 + ], + [ + "▁Baba", + -12.658073425292969 + ], + [ + "▁Famous", + -12.658092498779297 + ], + [ + "▁PP", + -12.658095359802246 + ], + [ + "▁Laptop", + -12.65826416015625 + ], + [ + "owner", + -12.658329963684082 + ], + [ + "management", + -12.658452987670898 + ], + [ + "▁refunds", + -12.658626556396484 + ], + [ + "▁liberation", + -12.658648490905762 + ], + [ + "▁whopping", + -12.658763885498047 + ], + [ + "▁Situated", + -12.658818244934082 + ], + [ + "▁slap", + -12.658971786499023 + ], + [ + "USD", + -12.659116744995117 + ], + [ + "GM", + -12.659171104431152 + ], + [ + "▁JC", + -12.659172058105469 + ], + [ + "▁matchup", + -12.659274101257324 + ], + [ + "▁liquids", + -12.659687042236328 + ], + [ + "▁Hear", + -12.659811973571777 + ], + [ + "▁slightest", + -12.65994644165039 + ], + [ + "▁Precision", + -12.659997940063477 + ], + [ + "▁vocational", + -12.660042762756348 + ], + [ + "▁Dunn", + -12.660065650939941 + ], + [ + "▁reckless", + -12.660225868225098 + ], + [ + "bell", + -12.660261154174805 + ], + [ + "▁dedicate", + -12.66026782989502 + ], + [ + "▁Rodgers", + -12.66044807434082 + ], + [ + "▁280", + -12.660500526428223 + ], + [ + "▁CJ", + -12.660507202148438 + ], + [ + "ill", + -12.660578727722168 + ], + [ + "▁silently", + -12.660622596740723 + ], + [ + "▁allied", + -12.660645484924316 + ], + [ + "▁locating", + -12.6607027053833 + ], + [ + "▁chilled", + -12.6608304977417 + ], + [ + "▁lingering", + -12.660981178283691 + ], + [ + "▁Irving", + -12.661001205444336 + ], + [ + "Sc", + -12.661080360412598 + ], + [ + "▁deputies", + -12.661093711853027 + ], + [ + "▁Pond", + -12.66109848022461 + ], + [ + "▁Carpenter", + -12.66110897064209 + ], + [ + "▁Cass", + -12.661184310913086 + ], + [ + "▁Reno", + -12.661205291748047 + ], + [ + "▁Landing", + -12.66130256652832 + ], + [ + "▁striped", + -12.661385536193848 + ], + [ + "▁Utility", + -12.661396980285645 + ], + [ + "▁fiberglass", + -12.661458015441895 + ], + [ + "Ho", + -12.661613464355469 + ], + [ + "▁disputed", + -12.661626815795898 + ], + [ + "▁overdose", + -12.661629676818848 + ], + [ + "Li", + -12.661698341369629 + ], + [ + "▁Biological", + -12.661728858947754 + ], + [ + "▁310", + -12.661746978759766 + ], + [ + "▁piping", + -12.661786079406738 + ], + [ + "▁£4", + -12.661798477172852 + ], + [ + "▁sage", + -12.661870956420898 + ], + [ + "▁Bart", + -12.661977767944336 + ], + [ + "▁Raven", + -12.662209510803223 + ], + [ + "▁Hearts", + -12.662359237670898 + ], + [ + "cash", + -12.662531852722168 + ], + [ + "▁solvent", + -12.662606239318848 + ], + [ + "▁shortest", + -12.66269302368164 + ], + [ + "change", + -12.662862777709961 + ], + [ + "▁disadvantages", + -12.662911415100098 + ], + [ + "▁neon", + -12.662940979003906 + ], + [ + "▁overseeing", + -12.663042068481445 + ], + [ + "▁spouses", + -12.663069725036621 + ], + [ + "lier", + -12.66310977935791 + ], + [ + "▁simulated", + -12.663216590881348 + ], + [ + "sure", + -12.663224220275879 + ], + [ + "▁Lenovo", + -12.663400650024414 + ], + [ + "▁makeover", + -12.66346263885498 + ], + [ + "▁spiritually", + -12.663490295410156 + ], + [ + "▁Mich", + -12.663694381713867 + ], + [ + "▁ubiquitous", + -12.66369915008545 + ], + [ + "▁Farmer", + -12.66372013092041 + ], + [ + "▁om", + -12.663722038269043 + ], + [ + "▁cupboard", + -12.663750648498535 + ], + [ + "▁seizure", + -12.663820266723633 + ], + [ + "▁heroic", + -12.66385269165039 + ], + [ + "▁hectic", + -12.663862228393555 + ], + [ + "▁Regiment", + -12.66387939453125 + ], + [ + "▁showcased", + -12.6638822555542 + ], + [ + "▁201", + -12.663888931274414 + ], + [ + "▁rehearsal", + -12.663985252380371 + ], + [ + "▁formidable", + -12.66408920288086 + ], + [ + "▁purchaser", + -12.664133071899414 + ], + [ + "▁Ethereum", + -12.664151191711426 + ], + [ + "House", + -12.664209365844727 + ], + [ + "▁Hansen", + -12.66424560546875 + ], + [ + "▁Vacation", + -12.664371490478516 + ], + [ + "lt", + -12.664459228515625 + ], + [ + "▁Rom", + -12.664459228515625 + ], + [ + "App", + -12.664538383483887 + ], + [ + "▁127", + -12.664639472961426 + ], + [ + "▁organising", + -12.66479206085205 + ], + [ + "iron", + -12.664946556091309 + ], + [ + "kit", + -12.664957046508789 + ], + [ + "▁refreshed", + -12.664960861206055 + ], + [ + "▁demographics", + -12.664981842041016 + ], + [ + "▁horsepower", + -12.665230751037598 + ], + [ + "å", + -12.665273666381836 + ], + [ + "▁ministries", + -12.66529655456543 + ], + [ + "dam", + -12.665387153625488 + ], + [ + "▁ASP", + -12.665546417236328 + ], + [ + "▁Incredible", + -12.665589332580566 + ], + [ + "▁engages", + -12.665733337402344 + ], + [ + "▁Load", + -12.66579818725586 + ], + [ + "Will", + -12.665928840637207 + ], + [ + "▁Thin", + -12.665928840637207 + ], + [ + "▁reproduced", + -12.665945053100586 + ], + [ + "1995", + -12.665962219238281 + ], + [ + "▁prohibit", + -12.666268348693848 + ], + [ + "▁pointer", + -12.666329383850098 + ], + [ + "▁skirts", + -12.666387557983398 + ], + [ + "▁Browns", + -12.666492462158203 + ], + [ + "DD", + -12.666613578796387 + ], + [ + "▁Emmy", + -12.666621208190918 + ], + [ + "▁nasal", + -12.666633605957031 + ], + [ + "▁ti", + -12.666709899902344 + ], + [ + "▁establishes", + -12.666725158691406 + ], + [ + "▁Omaha", + -12.666781425476074 + ], + [ + "▁voiced", + -12.666813850402832 + ], + [ + "▁Ze", + -12.666829109191895 + ], + [ + "▁Gavin", + -12.666844367980957 + ], + [ + "▁Koch", + -12.66689395904541 + ], + [ + "▁jewel", + -12.667014122009277 + ], + [ + "▁darn", + -12.66707992553711 + ], + [ + "rays", + -12.667460441589355 + ], + [ + "▁Drag", + -12.6675386428833 + ], + [ + "▁persistence", + -12.667673110961914 + ], + [ + "break", + -12.667750358581543 + ], + [ + "▁embarrassment", + -12.667795181274414 + ], + [ + "▁coupling", + -12.667800903320312 + ], + [ + "▁Peters", + -12.667962074279785 + ], + [ + "▁salty", + -12.667967796325684 + ], + [ + "▁abdomen", + -12.668037414550781 + ], + [ + "▁saint", + -12.668106079101562 + ], + [ + "▁Tate", + -12.668275833129883 + ], + [ + "▁260", + -12.668304443359375 + ], + [ + "▁captivating", + -12.668344497680664 + ], + [ + "▁Tee", + -12.66845989227295 + ], + [ + "▁overcoming", + -12.668624877929688 + ], + [ + "▁DI", + -12.668693542480469 + ], + [ + "▁modem", + -12.66879940032959 + ], + [ + "adi", + -12.668828010559082 + ], + [ + "▁Hamburg", + -12.669066429138184 + ], + [ + "owski", + -12.669147491455078 + ], + [ + "ego", + -12.669254302978516 + ], + [ + "cycle", + -12.669315338134766 + ], + [ + "▁Feng", + -12.669353485107422 + ], + [ + "wal", + -12.669389724731445 + ], + [ + "Part", + -12.669441223144531 + ], + [ + "▁congratulations", + -12.66954231262207 + ], + [ + "▁resumes", + -12.66954517364502 + ], + [ + "▁Monkey", + -12.669559478759766 + ], + [ + "▁DVDs", + -12.669572830200195 + ], + [ + "▁Zoe", + -12.669597625732422 + ], + [ + "œ", + -12.669744491577148 + ], + [ + "▁Mit", + -12.669812202453613 + ], + [ + "seat", + -12.669917106628418 + ], + [ + "metal", + -12.669930458068848 + ], + [ + "▁plausible", + -12.669955253601074 + ], + [ + "▁Admiral", + -12.670029640197754 + ], + [ + "▁SAS", + -12.670195579528809 + ], + [ + "▁pointless", + -12.670304298400879 + ], + [ + "▁Wy", + -12.670326232910156 + ], + [ + "px", + -12.67044734954834 + ], + [ + "▁Roland", + -12.67049503326416 + ], + [ + "High", + -12.670586585998535 + ], + [ + "▁WHY", + -12.67068862915039 + ], + [ + "▁mutant", + -12.6707181930542 + ], + [ + "▁herd", + -12.67072582244873 + ], + [ + "▁Sy", + -12.670762062072754 + ], + [ + "▁Keller", + -12.670767784118652 + ], + [ + "▁entails", + -12.670888900756836 + ], + [ + "oil", + -12.670974731445312 + ], + [ + "▁Frontier", + -12.670981407165527 + ], + [ + "135", + -12.671000480651855 + ], + [ + "▁Lau", + -12.671034812927246 + ], + [ + "▁rec", + -12.67105770111084 + ], + [ + "atory", + -12.671300888061523 + ], + [ + "▁titanium", + -12.67147445678711 + ], + [ + "Po", + -12.671689987182617 + ], + [ + "▁Shake", + -12.671711921691895 + ], + [ + "▁reusable", + -12.671725273132324 + ], + [ + "▁gigantic", + -12.671899795532227 + ], + [ + "▁Chambers", + -12.671923637390137 + ], + [ + "hall", + -12.671958923339844 + ], + [ + "▁Guatemala", + -12.672049522399902 + ], + [ + "▁objection", + -12.672152519226074 + ], + [ + "▁Stack", + -12.672289848327637 + ], + [ + "▁academia", + -12.672298431396484 + ], + [ + "▁frog", + -12.672323226928711 + ], + [ + "col", + -12.672384262084961 + ], + [ + "▁Plug", + -12.672597885131836 + ], + [ + "uz", + -12.672813415527344 + ], + [ + "▁Paso", + -12.67288875579834 + ], + [ + "▁mal", + -12.673309326171875 + ], + [ + "▁cinematic", + -12.67332649230957 + ], + [ + "▁Danielle", + -12.673624992370605 + ], + [ + "▁dumping", + -12.673683166503906 + ], + [ + "َ", + -12.673707962036133 + ], + [ + "pictured", + -12.673799514770508 + ], + [ + "vy", + -12.67402458190918 + ], + [ + "oon", + -12.674032211303711 + ], + [ + "▁dread", + -12.674099922180176 + ], + [ + "▁Lessons", + -12.674171447753906 + ], + [ + "▁Tropical", + -12.67431640625 + ], + [ + "▁Passion", + -12.674365997314453 + ], + [ + "▁Suitable", + -12.674434661865234 + ], + [ + "ub", + -12.674633979797363 + ], + [ + "▁WV", + -12.674652099609375 + ], + [ + "East", + -12.67479133605957 + ], + [ + "▁Kardashian", + -12.675141334533691 + ], + [ + "▁Facilities", + -12.675230026245117 + ], + [ + "▁Savage", + -12.67528247833252 + ], + [ + "▁Discuss", + -12.675357818603516 + ], + [ + "▁rogue", + -12.675415992736816 + ], + [ + "▁spectacle", + -12.675436019897461 + ], + [ + "▁Examination", + -12.675477981567383 + ], + [ + "▁pleasantly", + -12.675699234008789 + ], + [ + "▁subscriptions", + -12.675752639770508 + ], + [ + "▁imprisoned", + -12.67576789855957 + ], + [ + "▁advises", + -12.676074028015137 + ], + [ + "▁Printer", + -12.676143646240234 + ], + [ + "▁vertically", + -12.67617416381836 + ], + [ + "▁JUST", + -12.676262855529785 + ], + [ + "▁hubs", + -12.676287651062012 + ], + [ + "▁furious", + -12.676368713378906 + ], + [ + "▁publishes", + -12.6766357421875 + ], + [ + "▁Colonial", + -12.676785469055176 + ], + [ + "▁coached", + -12.676831245422363 + ], + [ + "▁Collective", + -12.676898956298828 + ], + [ + "▁JS", + -12.676918983459473 + ], + [ + "▁Viking", + -12.67692756652832 + ], + [ + "▁Electro", + -12.67711353302002 + ], + [ + "▁knob", + -12.677148818969727 + ], + [ + "▁sibling", + -12.677237510681152 + ], + [ + "▁adolescent", + -12.677291870117188 + ], + [ + "Da", + -12.677301406860352 + ], + [ + "▁Lexington", + -12.677305221557617 + ], + [ + "▁Suites", + -12.677424430847168 + ], + [ + "▁motif", + -12.67745590209961 + ], + [ + "▁Oriental", + -12.677727699279785 + ], + [ + "▁Pig", + -12.677827835083008 + ], + [ + "ef", + -12.67784595489502 + ], + [ + "▁headquartered", + -12.678169250488281 + ], + [ + "▁bytes", + -12.678427696228027 + ], + [ + "▁FS", + -12.678445816040039 + ], + [ + "▁skate", + -12.678528785705566 + ], + [ + "rest", + -12.678544044494629 + ], + [ + "ción", + -12.678659439086914 + ], + [ + "▁Fernando", + -12.678701400756836 + ], + [ + "▁Aberdeen", + -12.67880916595459 + ], + [ + "▁PCR", + -12.678930282592773 + ], + [ + "▁ringing", + -12.679104804992676 + ], + [ + "▁tandem", + -12.679118156433105 + ], + [ + "▁Lifetime", + -12.679158210754395 + ], + [ + "asa", + -12.679171562194824 + ], + [ + "▁engraved", + -12.67921257019043 + ], + [ + "▁Katy", + -12.67924976348877 + ], + [ + "▁lecturer", + -12.679301261901855 + ], + [ + "▁Pence", + -12.67931079864502 + ], + [ + "▁radically", + -12.679344177246094 + ], + [ + "▁Elements", + -12.679365158081055 + ], + [ + "▁oversees", + -12.679457664489746 + ], + [ + "December", + -12.679476737976074 + ], + [ + "▁noteworthy", + -12.67956256866455 + ], + [ + "▁centralized", + -12.679600715637207 + ], + [ + "▁wallpapers", + -12.679691314697266 + ], + [ + "▁JA", + -12.67984676361084 + ], + [ + "List", + -12.679855346679688 + ], + [ + "▁Function", + -12.679951667785645 + ], + [ + "▁Brendan", + -12.67995834350586 + ], + [ + "Take", + -12.680041313171387 + ], + [ + "SF", + -12.680085182189941 + ], + [ + "▁mosaic", + -12.680089950561523 + ], + [ + "Ray", + -12.680143356323242 + ], + [ + "▁scaled", + -12.6802339553833 + ], + [ + "▁Neal", + -12.6802396774292 + ], + [ + "yer", + -12.68027114868164 + ], + [ + "Check", + -12.680274963378906 + ], + [ + "▁theological", + -12.68029499053955 + ], + [ + "▁Strike", + -12.680318832397461 + ], + [ + "▁Ella", + -12.680407524108887 + ], + [ + "▁doorway", + -12.680428504943848 + ], + [ + "▁fr", + -12.68059253692627 + ], + [ + "nya", + -12.680740356445312 + ], + [ + "▁Kiss", + -12.680743217468262 + ], + [ + "ī", + -12.680887222290039 + ], + [ + "▁ASAP", + -12.680939674377441 + ], + [ + "▁Woo", + -12.680980682373047 + ], + [ + "▁Polo", + -12.680996894836426 + ], + [ + "▁recognizable", + -12.681069374084473 + ], + [ + "▁heartbeat", + -12.681180953979492 + ], + [ + "▁Portfolio", + -12.68121337890625 + ], + [ + "pt", + -12.681299209594727 + ], + [ + "▁philosopher", + -12.681358337402344 + ], + [ + "sometimes", + -12.681506156921387 + ], + [ + "▁GR", + -12.68155288696289 + ], + [ + "▁ETF", + -12.68157958984375 + ], + [ + "September", + -12.68173599243164 + ], + [ + "pole", + -12.681784629821777 + ], + [ + "▁toured", + -12.681821823120117 + ], + [ + "tta", + -12.681828498840332 + ], + [ + "▁thirst", + -12.68183708190918 + ], + [ + "▁Selected", + -12.681848526000977 + ], + [ + "▁Booking", + -12.681878089904785 + ], + [ + "▁correspondent", + -12.681889533996582 + ], + [ + "▁Lifestyle", + -12.681989669799805 + ], + [ + "▁motorcycles", + -12.682340621948242 + ], + [ + "▁queer", + -12.682467460632324 + ], + [ + "▁tubing", + -12.682493209838867 + ], + [ + "▁Katrina", + -12.682936668395996 + ], + [ + "▁atom", + -12.683008193969727 + ], + [ + "▁Presbyterian", + -12.683086395263672 + ], + [ + "▁snaps", + -12.683121681213379 + ], + [ + "▁Daisy", + -12.683136940002441 + ], + [ + "INE", + -12.683234214782715 + ], + [ + "▁IM", + -12.683289527893066 + ], + [ + "▁Nazis", + -12.683348655700684 + ], + [ + "▁mapped", + -12.683430671691895 + ], + [ + "▁Rehabilitation", + -12.68353271484375 + ], + [ + "▁prosperous", + -12.683656692504883 + ], + [ + "▁pier", + -12.68373966217041 + ], + [ + "▁taxable", + -12.683749198913574 + ], + [ + "▁PGA", + -12.683794975280762 + ], + [ + "▁molding", + -12.683821678161621 + ], + [ + "▁Salvador", + -12.683881759643555 + ], + [ + "▁Plumbing", + -12.683981895446777 + ], + [ + "existing", + -12.684073448181152 + ], + [ + "RD", + -12.684093475341797 + ], + [ + "▁arsenal", + -12.684118270874023 + ], + [ + "HL", + -12.684149742126465 + ], + [ + "▁Authors", + -12.684194564819336 + ], + [ + "▁Slide", + -12.684206008911133 + ], + [ + "▁Wife", + -12.684231758117676 + ], + [ + "▁Scouts", + -12.684349060058594 + ], + [ + "▁impending", + -12.684433937072754 + ], + [ + "▁Oval", + -12.684515953063965 + ], + [ + "▁Dancing", + -12.684525489807129 + ], + [ + "▁grad", + -12.684612274169922 + ], + [ + "▁cigar", + -12.684626579284668 + ], + [ + "▁Licensed", + -12.684674263000488 + ], + [ + "▁bushes", + -12.684713363647461 + ], + [ + "ario", + -12.684802055358887 + ], + [ + "▁sauna", + -12.684834480285645 + ], + [ + "ees", + -12.684897422790527 + ], + [ + "▁mural", + -12.684980392456055 + ], + [ + "▁Measure", + -12.685054779052734 + ], + [ + "▁programmers", + -12.685097694396973 + ], + [ + "▁NGOs", + -12.685214042663574 + ], + [ + "▁reliably", + -12.685256958007812 + ], + [ + "▁Bot", + -12.685277938842773 + ], + [ + "▁accommodating", + -12.685412406921387 + ], + [ + "▁Constitutional", + -12.685486793518066 + ], + [ + "imi", + -12.685562133789062 + ], + [ + "▁longing", + -12.685614585876465 + ], + [ + "▁spoil", + -12.685640335083008 + ], + [ + "smith", + -12.685670852661133 + ], + [ + "▁Maritime", + -12.685697555541992 + ], + [ + "▁Leaving", + -12.685894012451172 + ], + [ + "▁continual", + -12.68594741821289 + ], + [ + "▁delegate", + -12.685992240905762 + ], + [ + "▁Deutsche", + -12.686088562011719 + ], + [ + "▁Romance", + -12.686102867126465 + ], + [ + "▁contempt", + -12.686123847961426 + ], + [ + "▁imperial", + -12.686149597167969 + ], + [ + "▁halftime", + -12.686150550842285 + ], + [ + "▁Wheeler", + -12.68623161315918 + ], + [ + "▁2025", + -12.686264991760254 + ], + [ + "▁messenger", + -12.686281204223633 + ], + [ + "▁fearful", + -12.686308860778809 + ], + [ + "▁Consumers", + -12.686322212219238 + ], + [ + "▁dazzling", + -12.686389923095703 + ], + [ + "▁Thrones", + -12.686494827270508 + ], + [ + "▁Rally", + -12.68651008605957 + ], + [ + "▁sparkle", + -12.686592102050781 + ], + [ + "▁Ecuador", + -12.686614990234375 + ], + [ + "▁Miranda", + -12.686724662780762 + ], + [ + "▁Practices", + -12.686738014221191 + ], + [ + "▁doubling", + -12.686826705932617 + ], + [ + "▁creep", + -12.686834335327148 + ], + [ + "▁Compensation", + -12.686948776245117 + ], + [ + "▁Smooth", + -12.68702507019043 + ], + [ + "▁emerges", + -12.687134742736816 + ], + [ + "▁Difference", + -12.687152862548828 + ], + [ + "▁Que", + -12.68718433380127 + ], + [ + "▁Identify", + -12.687237739562988 + ], + [ + "▁insertion", + -12.687251091003418 + ], + [ + "India", + -12.687252044677734 + ], + [ + "▁immersed", + -12.687275886535645 + ], + [ + "▁pony", + -12.687376976013184 + ], + [ + "▁Valencia", + -12.687471389770508 + ], + [ + "▁fa", + -12.68749713897705 + ], + [ + "▁disco", + -12.687529563903809 + ], + [ + "▁Witch", + -12.687531471252441 + ], + [ + "▁icy", + -12.687539100646973 + ], + [ + "109", + -12.687716484069824 + ], + [ + "▁NL", + -12.687755584716797 + ], + [ + "▁progresses", + -12.687803268432617 + ], + [ + "▁commercials", + -12.687887191772461 + ], + [ + "▁maximise", + -12.687897682189941 + ], + [ + "▁fishermen", + -12.687962532043457 + ], + [ + "▁blah", + -12.6880464553833 + ], + [ + "▁clinically", + -12.688105583190918 + ], + [ + "▁smashed", + -12.688204765319824 + ], + [ + "▁EX", + -12.68822956085205 + ], + [ + "▁teamwork", + -12.688322067260742 + ], + [ + "▁meaningless", + -12.688400268554688 + ], + [ + "▁scooter", + -12.688420295715332 + ], + [ + "▁ART", + -12.68847370147705 + ], + [ + "cause", + -12.688569068908691 + ], + [ + "▁flora", + -12.688812255859375 + ], + [ + "▁presidents", + -12.68887710571289 + ], + [ + "▁armies", + -12.688981056213379 + ], + [ + "▁homelessness", + -12.68903923034668 + ], + [ + "▁OC", + -12.689234733581543 + ], + [ + "▁cheering", + -12.689242362976074 + ], + [ + "▁Chronicle", + -12.689373016357422 + ], + [ + "▁Murder", + -12.689376831054688 + ], + [ + "▁155", + -12.689393997192383 + ], + [ + "▁guru", + -12.689596176147461 + ], + [ + "▁skeleton", + -12.689740180969238 + ], + [ + "▁congress", + -12.689920425415039 + ], + [ + "uli", + -12.69011116027832 + ], + [ + "▁Bonnie", + -12.690164566040039 + ], + [ + "▁swipe", + -12.690173149108887 + ], + [ + "▁NASCAR", + -12.690268516540527 + ], + [ + "avi", + -12.690336227416992 + ], + [ + "г", + -12.690336227416992 + ], + [ + "▁gradient", + -12.690414428710938 + ], + [ + "▁Etsy", + -12.690460205078125 + ], + [ + "▁yen", + -12.690496444702148 + ], + [ + "▁McConnell", + -12.6905517578125 + ], + [ + "▁techno", + -12.690621376037598 + ], + [ + "▁Ginger", + -12.69067096710205 + ], + [ + "▁Courtesy", + -12.69069766998291 + ], + [ + "▁aerospace", + -12.690714836120605 + ], + [ + "▁Wo", + -12.690787315368652 + ], + [ + "▁skipped", + -12.690821647644043 + ], + [ + "▁moreover", + -12.690857887268066 + ], + [ + "▁cal", + -12.690886497497559 + ], + [ + "▁screenshots", + -12.690935134887695 + ], + [ + "▁biscuits", + -12.69109058380127 + ], + [ + "▁GUI", + -12.691277503967285 + ], + [ + "▁Judaism", + -12.691350936889648 + ], + [ + "▁ballots", + -12.691532135009766 + ], + [ + "cel", + -12.691542625427246 + ], + [ + "▁louder", + -12.691619873046875 + ], + [ + "▁deviation", + -12.691718101501465 + ], + [ + "▁Advantage", + -12.691727638244629 + ], + [ + "▁restrictive", + -12.691813468933105 + ], + [ + "▁RP", + -12.6918363571167 + ], + [ + "▁incremental", + -12.691859245300293 + ], + [ + "▁advancements", + -12.692065238952637 + ], + [ + "▁Carlo", + -12.692090034484863 + ], + [ + "▁Torres", + -12.69209098815918 + ], + [ + "▁agility", + -12.692148208618164 + ], + [ + "▁repetition", + -12.692241668701172 + ], + [ + "▁decking", + -12.692426681518555 + ], + [ + "▁GmbH", + -12.692435264587402 + ], + [ + "▁cerebral", + -12.692458152770996 + ], + [ + "Play", + -12.692490577697754 + ], + [ + "ech", + -12.692601203918457 + ], + [ + "trans", + -12.692607879638672 + ], + [ + "▁tread", + -12.692620277404785 + ], + [ + "▁enquiries", + -12.692754745483398 + ], + [ + "liter", + -12.692761421203613 + ], + [ + "product", + -12.692874908447266 + ], + [ + "▁Converter", + -12.692973136901855 + ], + [ + "▁tranquil", + -12.693065643310547 + ], + [ + "▁mould", + -12.693219184875488 + ], + [ + "Set", + -12.693278312683105 + ], + [ + "▁Swing", + -12.693286895751953 + ], + [ + "wer", + -12.693292617797852 + ], + [ + "▁Leg", + -12.693333625793457 + ], + [ + "baby", + -12.693363189697266 + ], + [ + "feld", + -12.693384170532227 + ], + [ + "hair", + -12.69352912902832 + ], + [ + "▁Anton", + -12.69365119934082 + ], + [ + "▁Covenant", + -12.693653106689453 + ], + [ + "▁Dawson", + -12.693741798400879 + ], + [ + "▁pubs", + -12.693784713745117 + ], + [ + "▁1890", + -12.693939208984375 + ], + [ + "▁reacted", + -12.694046020507812 + ], + [ + "▁NP", + -12.69417667388916 + ], + [ + "▁ashes", + -12.694368362426758 + ], + [ + "▁deposition", + -12.694690704345703 + ], + [ + "▁Swimming", + -12.6947603225708 + ], + [ + "▁rifles", + -12.694781303405762 + ], + [ + "▁Mah", + -12.694831848144531 + ], + [ + "▁Updates", + -12.69523811340332 + ], + [ + "▁huh", + -12.695257186889648 + ], + [ + "▁warns", + -12.695406913757324 + ], + [ + "▁adapting", + -12.695535659790039 + ], + [ + "▁contender", + -12.695606231689453 + ], + [ + "▁fluctuations", + -12.695610046386719 + ], + [ + "ering", + -12.695651054382324 + ], + [ + "▁issuance", + -12.695708274841309 + ], + [ + "▁trays", + -12.695719718933105 + ], + [ + "▁Crow", + -12.6957426071167 + ], + [ + "▁peach", + -12.69577407836914 + ], + [ + "▁Hale", + -12.695779800415039 + ], + [ + "interest", + -12.695805549621582 + ], + [ + "▁Analyst", + -12.695840835571289 + ], + [ + "▁interrupt", + -12.696089744567871 + ], + [ + "▁prom", + -12.696128845214844 + ], + [ + "▁WAY", + -12.696158409118652 + ], + [ + "▁Trash", + -12.69639778137207 + ], + [ + "▁reactor", + -12.696402549743652 + ], + [ + "should", + -12.69652271270752 + ], + [ + "▁villagers", + -12.696557998657227 + ], + [ + "▁Et", + -12.6967191696167 + ], + [ + "PRO", + -12.696857452392578 + ], + [ + "▁Neck", + -12.696922302246094 + ], + [ + "LS", + -12.6969633102417 + ], + [ + "▁Shift", + -12.696980476379395 + ], + [ + "▁Suffolk", + -12.697020530700684 + ], + [ + "▁mango", + -12.697128295898438 + ], + [ + "strom", + -12.697208404541016 + ], + [ + "▁continents", + -12.697243690490723 + ], + [ + "support", + -12.69726848602295 + ], + [ + "▁bulky", + -12.697299003601074 + ], + [ + "SR", + -12.697402954101562 + ], + [ + "▁Spy", + -12.697427749633789 + ], + [ + "▁mama", + -12.697442054748535 + ], + [ + "▁flaw", + -12.69745922088623 + ], + [ + "▁flowering", + -12.697482109069824 + ], + [ + "hurst", + -12.697622299194336 + ], + [ + "▁authored", + -12.69762897491455 + ], + [ + "▁residences", + -12.697643280029297 + ], + [ + "▁Saul", + -12.6976957321167 + ], + [ + "▁compensated", + -12.69770336151123 + ], + [ + "rp", + -12.697708129882812 + ], + [ + "▁isolate", + -12.69775104522705 + ], + [ + "▁troubling", + -12.697914123535156 + ], + [ + "▁frontier", + -12.698163986206055 + ], + [ + "▁Jung", + -12.698363304138184 + ], + [ + "▁declines", + -12.698405265808105 + ], + [ + "▁massacre", + -12.698506355285645 + ], + [ + "▁plaster", + -12.698508262634277 + ], + [ + "▁omega", + -12.698527336120605 + ], + [ + "▁kayak", + -12.698576927185059 + ], + [ + "▁prompts", + -12.698673248291016 + ], + [ + "▁Trees", + -12.69868278503418 + ], + [ + "▁Contractor", + -12.69869327545166 + ], + [ + "▁marching", + -12.698874473571777 + ], + [ + "uta", + -12.698930740356445 + ], + [ + "▁thumbs", + -12.698946952819824 + ], + [ + "▁Shows", + -12.699116706848145 + ], + [ + "counter", + -12.699130058288574 + ], + [ + "security", + -12.699195861816406 + ], + [ + "got", + -12.699230194091797 + ], + [ + "their", + -12.699332237243652 + ], + [ + "▁chimney", + -12.699337005615234 + ], + [ + "▁RD", + -12.699411392211914 + ], + [ + "▁gentlemen", + -12.69959545135498 + ], + [ + "▁cellar", + -12.699630737304688 + ], + [ + "▁Cara", + -12.69971752166748 + ], + [ + "▁Ravens", + -12.699824333190918 + ], + [ + "▁usability", + -12.699885368347168 + ], + [ + "▁transforms", + -12.699973106384277 + ], + [ + "▁postage", + -12.700028419494629 + ], + [ + "each", + -12.700081825256348 + ], + [ + "▁Gujarat", + -12.70010757446289 + ], + [ + "▁grim", + -12.700160026550293 + ], + [ + "▁lame", + -12.7001953125 + ], + [ + "▁Terrace", + -12.700493812561035 + ], + [ + "▁Tottenham", + -12.700514793395996 + ], + [ + "kh", + -12.700515747070312 + ], + [ + "sign", + -12.700677871704102 + ], + [ + "▁omitted", + -12.700690269470215 + ], + [ + "▁Wrong", + -12.70077896118164 + ], + [ + "▁portfolios", + -12.700806617736816 + ], + [ + "ο", + -12.70093822479248 + ], + [ + "▁Armenian", + -12.700998306274414 + ], + [ + "▁Reddit", + -12.701042175292969 + ], + [ + "▁Alibaba", + -12.701065063476562 + ], + [ + "▁coarse", + -12.70133113861084 + ], + [ + "▁prescriptions", + -12.701351165771484 + ], + [ + "▁vase", + -12.701620101928711 + ], + [ + "▁novelty", + -12.701705932617188 + ], + [ + "▁Cabinets", + -12.70174789428711 + ], + [ + "▁MMA", + -12.701889038085938 + ], + [ + "▁avenue", + -12.701932907104492 + ], + [ + "anne", + -12.70215892791748 + ], + [ + "▁takeover", + -12.702159881591797 + ], + [ + "▁thermostat", + -12.702189445495605 + ], + [ + "▁consciously", + -12.702205657958984 + ], + [ + "▁Smoke", + -12.702245712280273 + ], + [ + "▁Dhabi", + -12.702316284179688 + ], + [ + "rick", + -12.702357292175293 + ], + [ + "resolution", + -12.702361106872559 + ], + [ + "▁1928", + -12.702414512634277 + ], + [ + "▁Hoffman", + -12.702495574951172 + ], + [ + "▁unanimously", + -12.702664375305176 + ], + [ + "▁telescope", + -12.702887535095215 + ], + [ + "founded", + -12.70289421081543 + ], + [ + "▁compromising", + -12.702925682067871 + ], + [ + "▁slider", + -12.703051567077637 + ], + [ + "▁aloud", + -12.70329475402832 + ], + [ + "▁turbine", + -12.703372955322266 + ], + [ + "▁Capacity", + -12.703513145446777 + ], + [ + "▁deprived", + -12.703561782836914 + ], + [ + "▁ARM", + -12.703653335571289 + ], + [ + "▁Halo", + -12.703665733337402 + ], + [ + "▁trimmed", + -12.703668594360352 + ], + [ + "sar", + -12.703775405883789 + ], + [ + "stand", + -12.703778266906738 + ], + [ + "▁PAC", + -12.703932762145996 + ], + [ + "▁Shoe", + -12.703971862792969 + ], + [ + "▁Ava", + -12.703986167907715 + ], + [ + "▁LB", + -12.704004287719727 + ], + [ + "Health", + -12.704007148742676 + ], + [ + "club", + -12.70412540435791 + ], + [ + "▁Lam", + -12.704150199890137 + ], + [ + "▁Veterinary", + -12.704328536987305 + ], + [ + "▁Prison", + -12.704374313354492 + ], + [ + "CM", + -12.704407691955566 + ], + [ + "▁spectators", + -12.70448112487793 + ], + [ + "▁downloadable", + -12.704541206359863 + ], + [ + "▁OMG", + -12.704720497131348 + ], + [ + "▁cha", + -12.704769134521484 + ], + [ + "analysis", + -12.704778671264648 + ], + [ + "▁monkeys", + -12.704779624938965 + ], + [ + "▁richest", + -12.704977989196777 + ], + [ + "▁CBC", + -12.705012321472168 + ], + [ + "Her", + -12.70502758026123 + ], + [ + "▁innate", + -12.705058097839355 + ], + [ + "▁piled", + -12.705177307128906 + ], + [ + "▁mandated", + -12.705202102661133 + ], + [ + "▁Europa", + -12.705245018005371 + ], + [ + "▁Jess", + -12.705328941345215 + ], + [ + "Show", + -12.705648422241211 + ], + [ + "▁tendencies", + -12.705697059631348 + ], + [ + "▁raped", + -12.705698013305664 + ], + [ + "▁Merkel", + -12.705745697021484 + ], + [ + "scape", + -12.70578384399414 + ], + [ + "▁Sears", + -12.706098556518555 + ], + [ + "▁Mask", + -12.706284523010254 + ], + [ + "▁Adidas", + -12.706337928771973 + ], + [ + "▁APIs", + -12.706366539001465 + ], + [ + "▁Tie", + -12.706430435180664 + ], + [ + "▁avenues", + -12.70645809173584 + ], + [ + "▁nicer", + -12.706573486328125 + ], + [ + "▁goddess", + -12.706682205200195 + ], + [ + "▁finalists", + -12.706833839416504 + ], + [ + "▁Alexis", + -12.706850051879883 + ], + [ + "▁frightened", + -12.706889152526855 + ], + [ + "WP", + -12.706901550292969 + ], + [ + "▁overload", + -12.707027435302734 + ], + [ + "position", + -12.707173347473145 + ], + [ + "▁Replace", + -12.707223892211914 + ], + [ + "▁Cheryl", + -12.70729923248291 + ], + [ + "▁predetermined", + -12.7073335647583 + ], + [ + "▁Mate", + -12.707383155822754 + ], + [ + "▁brightly", + -12.707518577575684 + ], + [ + "▁Brief", + -12.707563400268555 + ], + [ + "▁Basement", + -12.70765495300293 + ], + [ + "▁pedestrians", + -12.707849502563477 + ], + [ + "▁Courtney", + -12.707894325256348 + ], + [ + "uni", + -12.707895278930664 + ], + [ + "▁transitional", + -12.708069801330566 + ], + [ + "formerly", + -12.70809268951416 + ], + [ + "els", + -12.708123207092285 + ], + [ + "▁debated", + -12.708211898803711 + ], + [ + "▁Falcons", + -12.70833683013916 + ], + [ + "▁slippery", + -12.708369255065918 + ], + [ + "▁Nikki", + -12.708405494689941 + ], + [ + "▁explorer", + -12.708439826965332 + ], + [ + "hn", + -12.708528518676758 + ], + [ + "billion", + -12.70890998840332 + ], + [ + "▁Vanity", + -12.708939552307129 + ], + [ + "▁saucepan", + -12.708939552307129 + ], + [ + "▁Panda", + -12.709024429321289 + ], + [ + "▁chiropractic", + -12.70903205871582 + ], + [ + "▁Motorola", + -12.709075927734375 + ], + [ + "▁cries", + -12.709087371826172 + ], + [ + "▁hangs", + -12.70913028717041 + ], + [ + "ista", + -12.709209442138672 + ], + [ + "▁flick", + -12.70925521850586 + ], + [ + "▁Kitty", + -12.709352493286133 + ], + [ + "▁blur", + -12.709420204162598 + ], + [ + "▁fetch", + -12.709467887878418 + ], + [ + "▁witnessing", + -12.709480285644531 + ], + [ + "▁captive", + -12.709589958190918 + ], + [ + "▁HK", + -12.709593772888184 + ], + [ + "▁blooms", + -12.709640502929688 + ], + [ + "▁transcripts", + -12.709674835205078 + ], + [ + "▁canon", + -12.70980167388916 + ], + [ + "▁SEE", + -12.709820747375488 + ], + [ + "Trump", + -12.709833145141602 + ], + [ + "▁occupancy", + -12.709863662719727 + ], + [ + "▁enlisted", + -12.710014343261719 + ], + [ + "▁RED", + -12.710095405578613 + ], + [ + "Light", + -12.710132598876953 + ], + [ + "▁Signs", + -12.710179328918457 + ], + [ + "▁retrieved", + -12.710295677185059 + ], + [ + "▁texting", + -12.7103271484375 + ], + [ + "▁Qu", + -12.710380554199219 + ], + [ + "▁lunches", + -12.710389137268066 + ], + [ + "▁cockpit", + -12.71040153503418 + ], + [ + "▁gracious", + -12.71052360534668 + ], + [ + "▁kissing", + -12.710752487182617 + ], + [ + "▁exhausting", + -12.710783958435059 + ], + [ + "▁windy", + -12.710884094238281 + ], + [ + "▁blunt", + -12.710956573486328 + ], + [ + "▁necessities", + -12.710982322692871 + ], + [ + "▁protector", + -12.711015701293945 + ], + [ + "▁1932", + -12.7110595703125 + ], + [ + "▁Stefan", + -12.711146354675293 + ], + [ + "▁Spike", + -12.711180686950684 + ], + [ + "▁Truly", + -12.711195945739746 + ], + [ + "▁Poll", + -12.711203575134277 + ], + [ + "▁capita", + -12.711283683776855 + ], + [ + "rc", + -12.71139144897461 + ], + [ + "▁Ottoman", + -12.711400032043457 + ], + [ + "amine", + -12.711603164672852 + ], + [ + "▁cartoons", + -12.711700439453125 + ], + [ + "▁penetrate", + -12.71170711517334 + ], + [ + "▁diapers", + -12.711912155151367 + ], + [ + "▁TE", + -12.711941719055176 + ], + [ + "▁Injury", + -12.712044715881348 + ], + [ + "▁crane", + -12.71204662322998 + ], + [ + "▁courteous", + -12.712078094482422 + ], + [ + "traditional", + -12.712101936340332 + ], + [ + "▁og", + -12.712141036987305 + ], + [ + "▁glanced", + -12.712157249450684 + ], + [ + "▁HER", + -12.712164878845215 + ], + [ + "▁soaring", + -12.712179183959961 + ], + [ + "▁ICC", + -12.712259292602539 + ], + [ + "▁steals", + -12.71229362487793 + ], + [ + "▁Lok", + -12.712336540222168 + ], + [ + "▁unreasonable", + -12.712409973144531 + ], + [ + "▁heap", + -12.712435722351074 + ], + [ + "Mail", + -12.712577819824219 + ], + [ + "▁paving", + -12.712689399719238 + ], + [ + "gro", + -12.712706565856934 + ], + [ + "▁Intelligent", + -12.71277141571045 + ], + [ + "European", + -12.7128324508667 + ], + [ + "▁LIFE", + -12.71291732788086 + ], + [ + "ATION", + -12.71312427520752 + ], + [ + "▁breakout", + -12.713251113891602 + ], + [ + "▁como", + -12.713321685791016 + ], + [ + "▁Benedict", + -12.713353157043457 + ], + [ + "▁transient", + -12.713478088378906 + ], + [ + "▁peacefully", + -12.71354866027832 + ], + [ + "▁Eu", + -12.71356201171875 + ], + [ + "▁liberals", + -12.713571548461914 + ], + [ + "Di", + -12.713632583618164 + ], + [ + "sol", + -12.713723182678223 + ], + [ + "▁bud", + -12.713728904724121 + ], + [ + "▁anterior", + -12.713753700256348 + ], + [ + "▁paused", + -12.713788986206055 + ], + [ + "Ne", + -12.713798522949219 + ], + [ + "▁mimic", + -12.713847160339355 + ], + [ + "▁squeezed", + -12.713950157165527 + ], + [ + "▁thunder", + -12.71410846710205 + ], + [ + "▁Fitzgerald", + -12.714119911193848 + ], + [ + "▁obstruction", + -12.714234352111816 + ], + [ + "▁disconnected", + -12.714261054992676 + ], + [ + "▁Planned", + -12.71428394317627 + ], + [ + "210", + -12.714363098144531 + ], + [ + "▁Drugs", + -12.714369773864746 + ], + [ + "▁confession", + -12.714406967163086 + ], + [ + "BS", + -12.714497566223145 + ], + [ + "▁Rita", + -12.714590072631836 + ], + [ + "▁vineyards", + -12.714642524719238 + ], + [ + "▁Gem", + -12.71473503112793 + ], + [ + "▁Novel", + -12.715007781982422 + ], + [ + "▁lavish", + -12.71511173248291 + ], + [ + "umi", + -12.71526050567627 + ], + [ + "▁depressing", + -12.71530818939209 + ], + [ + "▁postseason", + -12.715378761291504 + ], + [ + "▁brace", + -12.715736389160156 + ], + [ + "▁Countries", + -12.715751647949219 + ], + [ + "moving", + -12.715810775756836 + ], + [ + "Ca", + -12.715846061706543 + ], + [ + "▁billionaire", + -12.716005325317383 + ], + [ + "isi", + -12.716017723083496 + ], + [ + "▁synonymous", + -12.716021537780762 + ], + [ + "those", + -12.716123580932617 + ], + [ + "▁staining", + -12.716144561767578 + ], + [ + "▁Sachs", + -12.716171264648438 + ], + [ + "ern", + -12.716238021850586 + ], + [ + "▁PET", + -12.71628475189209 + ], + [ + "▁discard", + -12.716292381286621 + ], + [ + "▁tipped", + -12.716297149658203 + ], + [ + "▁Imaging", + -12.716315269470215 + ], + [ + "▁offenses", + -12.716357231140137 + ], + [ + "▁typed", + -12.716389656066895 + ], + [ + "▁slam", + -12.71639633178711 + ], + [ + "▁RI", + -12.716440200805664 + ], + [ + "▁thief", + -12.716445922851562 + ], + [ + "▁drains", + -12.716452598571777 + ], + [ + "▁AFC", + -12.716601371765137 + ], + [ + "▁fab", + -12.71662425994873 + ], + [ + "▁Explain", + -12.7166748046875 + ], + [ + "▁naive", + -12.71676254272461 + ], + [ + "▁PMID", + -12.716764450073242 + ], + [ + "▁diluted", + -12.716809272766113 + ], + [ + "▁enrichment", + -12.716817855834961 + ], + [ + "▁Salmon", + -12.716897964477539 + ], + [ + "▁cervical", + -12.716951370239258 + ], + [ + "▁ZIP", + -12.717161178588867 + ], + [ + "▁Roe", + -12.71717643737793 + ], + [ + "▁pillar", + -12.717225074768066 + ], + [ + "▁Tweet", + -12.717239379882812 + ], + [ + "▁Peel", + -12.717299461364746 + ], + [ + "▁Fry", + -12.71749496459961 + ], + [ + "los", + -12.717681884765625 + ], + [ + "▁professions", + -12.717718124389648 + ], + [ + "▁projector", + -12.717961311340332 + ], + [ + "▁stationed", + -12.718013763427734 + ], + [ + "▁Veteran", + -12.718070983886719 + ], + [ + "▁acquainted", + -12.718206405639648 + ], + [ + "▁stabilize", + -12.718297004699707 + ], + [ + "▁Lindsey", + -12.718323707580566 + ], + [ + "▁zombies", + -12.718547821044922 + ], + [ + "▁Holt", + -12.71871566772461 + ], + [ + "▁maiden", + -12.71876049041748 + ], + [ + "▁exercised", + -12.718775749206543 + ], + [ + "xi", + -12.719039916992188 + ], + [ + "▁TIP", + -12.71911334991455 + ], + [ + "▁mounts", + -12.71912956237793 + ], + [ + "▁resumed", + -12.719137191772461 + ], + [ + "▁Helping", + -12.719141006469727 + ], + [ + "▁Watts", + -12.719175338745117 + ], + [ + "pool", + -12.719207763671875 + ], + [ + "▁refurbished", + -12.719277381896973 + ], + [ + "▁authoritative", + -12.719322204589844 + ], + [ + "▁torrent", + -12.719326972961426 + ], + [ + "CP", + -12.719348907470703 + ], + [ + "▁milestones", + -12.719385147094727 + ], + [ + "▁astounding", + -12.719401359558105 + ], + [ + "▁relocate", + -12.719420433044434 + ], + [ + "border", + -12.719503402709961 + ], + [ + "topic", + -12.719522476196289 + ], + [ + "inger", + -12.719536781311035 + ], + [ + "▁subdivision", + -12.719549179077148 + ], + [ + "lle", + -12.719573020935059 + ], + [ + "ré", + -12.719625473022461 + ], + [ + "▁Sgt", + -12.71978759765625 + ], + [ + "▁incomes", + -12.719988822937012 + ], + [ + "▁openness", + -12.719990730285645 + ], + [ + "▁Byron", + -12.719996452331543 + ], + [ + "▁Nord", + -12.719996452331543 + ], + [ + "▁asserted", + -12.720006942749023 + ], + [ + "▁Revelation", + -12.720169067382812 + ], + [ + "ride", + -12.720361709594727 + ], + [ + "▁concentrating", + -12.720686912536621 + ], + [ + "▁jo", + -12.720709800720215 + ], + [ + "▁radiator", + -12.72071647644043 + ], + [ + "▁coatings", + -12.720813751220703 + ], + [ + "▁visas", + -12.720986366271973 + ], + [ + "▁collage", + -12.721170425415039 + ], + [ + "▁cliffs", + -12.721173286437988 + ], + [ + "▁paced", + -12.721363067626953 + ], + [ + "iga", + -12.721424102783203 + ], + [ + "▁APC", + -12.72152328491211 + ], + [ + "▁shave", + -12.72167682647705 + ], + [ + "▁Glory", + -12.721773147583008 + ], + [ + "▁Chin", + -12.722062110900879 + ], + [ + "RP", + -12.722161293029785 + ], + [ + "inc", + -12.722297668457031 + ], + [ + "▁Wrap", + -12.722399711608887 + ], + [ + "▁audition", + -12.722407341003418 + ], + [ + "▁quaint", + -12.72249698638916 + ], + [ + "▁manifestation", + -12.722536087036133 + ], + [ + "cs", + -12.722567558288574 + ], + [ + "▁wastewater", + -12.722615242004395 + ], + [ + "▁exile", + -12.722630500793457 + ], + [ + "▁roadside", + -12.722664833068848 + ], + [ + "▁swivel", + -12.72274112701416 + ], + [ + "version", + -12.722748756408691 + ], + [ + "▁Improve", + -12.722846031188965 + ], + [ + "▁Kurdish", + -12.722871780395508 + ], + [ + "▁VII", + -12.722882270812988 + ], + [ + "▁Reich", + -12.723006248474121 + ], + [ + "shaw", + -12.723174095153809 + ], + [ + "▁fares", + -12.723228454589844 + ], + [ + "these", + -12.723258018493652 + ], + [ + "▁pianist", + -12.723304748535156 + ], + [ + "▁expressive", + -12.723443031311035 + ], + [ + "▁Leigh", + -12.723503112792969 + ], + [ + "▁Yay", + -12.723556518554688 + ], + [ + "▁Magnetic", + -12.723579406738281 + ], + [ + "▁Russ", + -12.723825454711914 + ], + [ + "zan", + -12.723897933959961 + ], + [ + "▁parole", + -12.723901748657227 + ], + [ + "▁Wouldn", + -12.723938941955566 + ], + [ + "▁advantageous", + -12.723960876464844 + ], + [ + "▁wedge", + -12.723970413208008 + ], + [ + "▁Clin", + -12.724065780639648 + ], + [ + "▁directive", + -12.724085807800293 + ], + [ + "▁concessions", + -12.724178314208984 + ], + [ + "▁sizing", + -12.724211692810059 + ], + [ + "Benz", + -12.724544525146484 + ], + [ + "heim", + -12.724650382995605 + ], + [ + "▁Snyder", + -12.7246675491333 + ], + [ + "▁Insert", + -12.724702835083008 + ], + [ + "PG", + -12.724732398986816 + ], + [ + "covered", + -12.724740028381348 + ], + [ + "▁disturbance", + -12.724854469299316 + ], + [ + "▁Warehouse", + -12.724874496459961 + ], + [ + "▁Huntington", + -12.72488021850586 + ], + [ + "pit", + -12.724934577941895 + ], + [ + "▁Bacon", + -12.724950790405273 + ], + [ + "▁translator", + -12.724967002868652 + ], + [ + "è", + -12.724993705749512 + ], + [ + "BF", + -12.725120544433594 + ], + [ + "▁dentists", + -12.725146293640137 + ], + [ + "sweet", + -12.72519588470459 + ], + [ + "▁automobiles", + -12.725308418273926 + ], + [ + "▁Slam", + -12.72538948059082 + ], + [ + "▁doomed", + -12.72554874420166 + ], + [ + "▁Gmail", + -12.725724220275879 + ], + [ + "CN", + -12.725729942321777 + ], + [ + "fill", + -12.726030349731445 + ], + [ + "▁sock", + -12.726097106933594 + ], + [ + "▁Bai", + -12.726154327392578 + ], + [ + "▁authorised", + -12.726183891296387 + ], + [ + "kai", + -12.726189613342285 + ], + [ + "▁psycho", + -12.726228713989258 + ], + [ + "▁TOP", + -12.72630500793457 + ], + [ + "▁illuminated", + -12.72645092010498 + ], + [ + "▁turquoise", + -12.726508140563965 + ], + [ + "▁gums", + -12.726557731628418 + ], + [ + "107", + -12.726753234863281 + ], + [ + "▁prisons", + -12.72676944732666 + ], + [ + "128", + -12.726859092712402 + ], + [ + "project", + -12.726869583129883 + ], + [ + "▁Stern", + -12.726920127868652 + ], + [ + "▁clergy", + -12.726947784423828 + ], + [ + "▁Movers", + -12.726973533630371 + ], + [ + "▁curl", + -12.727010726928711 + ], + [ + "▁Carnegie", + -12.727034568786621 + ], + [ + "▁ethnicity", + -12.727092742919922 + ], + [ + "▁imbalance", + -12.72714614868164 + ], + [ + "▁progressing", + -12.727384567260742 + ], + [ + "▁motorists", + -12.727413177490234 + ], + [ + "▁VMware", + -12.727436065673828 + ], + [ + "▁Rack", + -12.72746467590332 + ], + [ + "▁monastery", + -12.727487564086914 + ], + [ + "▁sailed", + -12.727522850036621 + ], + [ + "▁Northwestern", + -12.72775650024414 + ], + [ + "▁proclaimed", + -12.727795600891113 + ], + [ + "▁Wesley", + -12.727879524230957 + ], + [ + "▁Marble", + -12.727887153625488 + ], + [ + "giving", + -12.7279691696167 + ], + [ + "▁RN", + -12.728121757507324 + ], + [ + "▁danced", + -12.728240013122559 + ], + [ + "▁textiles", + -12.728240966796875 + ], + [ + "▁cellphone", + -12.728301048278809 + ], + [ + "▁scratching", + -12.728344917297363 + ], + [ + "▁Seeking", + -12.72849178314209 + ], + [ + "tl", + -12.728548049926758 + ], + [ + "▁borrower", + -12.728551864624023 + ], + [ + "▁Claus", + -12.728703498840332 + ], + [ + "▁Hwy", + -12.728856086730957 + ], + [ + "kat", + -12.728897094726562 + ], + [ + "▁muddy", + -12.728924751281738 + ], + [ + "▁Instructions", + -12.728935241699219 + ], + [ + "▁superficial", + -12.728971481323242 + ], + [ + "▁Missing", + -12.729061126708984 + ], + [ + "▁Georgian", + -12.729105949401855 + ], + [ + "▁surreal", + -12.729124069213867 + ], + [ + "yi", + -12.729130744934082 + ], + [ + "▁Limit", + -12.729296684265137 + ], + [ + "▁Inch", + -12.729376792907715 + ], + [ + "SW", + -12.729436874389648 + ], + [ + "▁Alpine", + -12.729464530944824 + ], + [ + "ied", + -12.72949504852295 + ], + [ + "▁analysed", + -12.729744911193848 + ], + [ + "▁booming", + -12.729771614074707 + ], + [ + "▁rulers", + -12.72980785369873 + ], + [ + "▁Millennium", + -12.729901313781738 + ], + [ + "▁Trustees", + -12.729981422424316 + ], + [ + "▁infusion", + -12.730008125305176 + ], + [ + "PF", + -12.730061531066895 + ], + [ + "▁Mul", + -12.730316162109375 + ], + [ + "FO", + -12.730527877807617 + ], + [ + "▁Stones", + -12.73066234588623 + ], + [ + "▁republic", + -12.73072624206543 + ], + [ + "▁tweak", + -12.730803489685059 + ], + [ + "▁Totally", + -12.730890274047852 + ], + [ + "▁paperback", + -12.731010437011719 + ], + [ + "▁mastery", + -12.731016159057617 + ], + [ + "anga", + -12.7311429977417 + ], + [ + "▁LEGO", + -12.731161117553711 + ], + [ + "Pa", + -12.731186866760254 + ], + [ + "▁opting", + -12.731257438659668 + ], + [ + "▁replay", + -12.73145866394043 + ], + [ + "▁supplemental", + -12.731501579284668 + ], + [ + "▁Listed", + -12.731546401977539 + ], + [ + "▁practise", + -12.731721878051758 + ], + [ + "yama", + -12.731729507446289 + ], + [ + "▁Occasionally", + -12.731749534606934 + ], + [ + "ates", + -12.731789588928223 + ], + [ + "▁Abby", + -12.73180866241455 + ], + [ + "▁Printed", + -12.73196029663086 + ], + [ + "▁influx", + -12.732077598571777 + ], + [ + "▁lobster", + -12.732108116149902 + ], + [ + "▁crank", + -12.732134819030762 + ], + [ + "▁cherished", + -12.73214054107666 + ], + [ + "▁Relationship", + -12.732239723205566 + ], + [ + "model", + -12.732462882995605 + ], + [ + "▁202", + -12.732470512390137 + ], + [ + "clean", + -12.732475280761719 + ], + [ + "▁persuasive", + -12.732478141784668 + ], + [ + "▁DP", + -12.732479095458984 + ], + [ + "▁excursion", + -12.732500076293945 + ], + [ + "▁Vertical", + -12.732502937316895 + ], + [ + "string", + -12.732653617858887 + ], + [ + "▁CG", + -12.732921600341797 + ], + [ + "close", + -12.732970237731934 + ], + [ + "▁raining", + -12.73302173614502 + ], + [ + "▁Dragons", + -12.733034133911133 + ], + [ + "▁Nope", + -12.73311996459961 + ], + [ + "▁honoring", + -12.73322868347168 + ], + [ + "▁uphold", + -12.73326587677002 + ], + [ + "▁rubbed", + -12.733269691467285 + ], + [ + "▁Reef", + -12.733283996582031 + ], + [ + "▁influenza", + -12.733355522155762 + ], + [ + "▁Felix", + -12.733431816101074 + ], + [ + "▁DT", + -12.733444213867188 + ], + [ + "▁Peer", + -12.733468055725098 + ], + [ + "▁dhe", + -12.73350715637207 + ], + [ + "▁assorted", + -12.733518600463867 + ], + [ + "ij", + -12.733627319335938 + ], + [ + "▁confidently", + -12.733794212341309 + ], + [ + "▁rivalry", + -12.733806610107422 + ], + [ + "▁leash", + -12.733881950378418 + ], + [ + "▁partisan", + -12.733893394470215 + ], + [ + "▁illumination", + -12.733963012695312 + ], + [ + "dra", + -12.733979225158691 + ], + [ + "▁Residence", + -12.734000205993652 + ], + [ + "▁Retro", + -12.73402214050293 + ], + [ + "▁Goa", + -12.734112739562988 + ], + [ + "▁Disaster", + -12.734245300292969 + ], + [ + "Fire", + -12.734343528747559 + ], + [ + "▁labelled", + -12.734369277954102 + ], + [ + "▁Soup", + -12.734375 + ], + [ + "▁KO", + -12.734432220458984 + ], + [ + "▁spacing", + -12.73451042175293 + ], + [ + "present", + -12.734576225280762 + ], + [ + "▁heartfelt", + -12.734578132629395 + ], + [ + "▁Rank", + -12.734587669372559 + ], + [ + "▁Newark", + -12.734609603881836 + ], + [ + "▁escaping", + -12.734649658203125 + ], + [ + "▁Fighting", + -12.734667778015137 + ], + [ + "▁linebacker", + -12.73475456237793 + ], + [ + "▁Wisdom", + -12.734772682189941 + ], + [ + "▁pyramid", + -12.734792709350586 + ], + [ + "{", + -12.734813690185547 + ], + [ + "Connor", + -12.734834671020508 + ], + [ + "▁consortium", + -12.734884262084961 + ], + [ + "▁banning", + -12.73497486114502 + ], + [ + "▁childcare", + -12.734979629516602 + ], + [ + "▁killings", + -12.735139846801758 + ], + [ + "cloud", + -12.735140800476074 + ], + [ + "nk", + -12.735189437866211 + ], + [ + "women", + -12.735201835632324 + ], + [ + "▁specifics", + -12.735333442687988 + ], + [ + "▁Gin", + -12.73535442352295 + ], + [ + "▁Maj", + -12.735381126403809 + ], + [ + "iu", + -12.735397338867188 + ], + [ + "▁campaigning", + -12.735414505004883 + ], + [ + "▁guideline", + -12.73542594909668 + ], + [ + "▁cookbook", + -12.735529899597168 + ], + [ + "▁Optimization", + -12.73558235168457 + ], + [ + "ox", + -12.735605239868164 + ], + [ + "▁Rhodes", + -12.735620498657227 + ], + [ + "▁hurdles", + -12.7356538772583 + ], + [ + "▁Kam", + -12.735766410827637 + ], + [ + "▁microscope", + -12.735782623291016 + ], + [ + "▁sighed", + -12.735796928405762 + ], + [ + "▁absorbing", + -12.735879898071289 + ], + [ + "▁Tracking", + -12.736023902893066 + ], + [ + "▁Dot", + -12.736043930053711 + ], + [ + "OT", + -12.736271858215332 + ], + [ + "▁Easily", + -12.736288070678711 + ], + [ + "uro", + -12.736434936523438 + ], + [ + "▁chewing", + -12.73659896850586 + ], + [ + "▁sway", + -12.736654281616211 + ], + [ + "▁boycott", + -12.73677921295166 + ], + [ + "▁rhythms", + -12.73681640625 + ], + [ + "▁augmented", + -12.736929893493652 + ], + [ + "▁Bronx", + -12.736939430236816 + ], + [ + "▁prevail", + -12.737190246582031 + ], + [ + "▁gigs", + -12.737299919128418 + ], + [ + "▁diversified", + -12.737337112426758 + ], + [ + "▁Legislative", + -12.737454414367676 + ], + [ + "▁enlarged", + -12.737472534179688 + ], + [ + "▁biomass", + -12.737509727478027 + ], + [ + "▁Bentley", + -12.737617492675781 + ], + [ + "▁Sto", + -12.737845420837402 + ], + [ + "▁crate", + -12.738075256347656 + ], + [ + "▁Baltic", + -12.73816204071045 + ], + [ + "▁Critics", + -12.738276481628418 + ], + [ + "▁Raspberry", + -12.738329887390137 + ], + [ + "▁Nolan", + -12.738475799560547 + ], + [ + "▁manuscripts", + -12.738479614257812 + ], + [ + "▁remarked", + -12.738486289978027 + ], + [ + "▁defenses", + -12.738502502441406 + ], + [ + "▁Crack", + -12.738565444946289 + ], + [ + "▁Runner", + -12.738597869873047 + ], + [ + "▁Tal", + -12.738706588745117 + ], + [ + "▁url", + -12.738744735717773 + ], + [ + "▁indispensable", + -12.738774299621582 + ], + [ + "meaning", + -12.738807678222656 + ], + [ + "▁diminish", + -12.738838195800781 + ], + [ + "▁screamed", + -12.738870620727539 + ], + [ + "▁unmatched", + -12.738936424255371 + ], + [ + "▁Paulo", + -12.739021301269531 + ], + [ + "main", + -12.739059448242188 + ], + [ + "▁Resident", + -12.739133834838867 + ], + [ + "wind", + -12.739154815673828 + ], + [ + "▁loaf", + -12.739167213439941 + ], + [ + "▁contemplating", + -12.739266395568848 + ], + [ + "▁mailbox", + -12.739273071289062 + ], + [ + "▁Marty", + -12.739361763000488 + ], + [ + "▁cooks", + -12.739362716674805 + ], + [ + "paper", + -12.739612579345703 + ], + [ + "access", + -12.739672660827637 + ], + [ + "▁familiarity", + -12.739700317382812 + ], + [ + "▁stabbed", + -12.739723205566406 + ], + [ + "▁Celebrity", + -12.739750862121582 + ], + [ + "▁farewell", + -12.739948272705078 + ], + [ + "thy", + -12.739962577819824 + ], + [ + "▁manipulated", + -12.739986419677734 + ], + [ + "▁selfie", + -12.740220069885254 + ], + [ + "▁coursework", + -12.74030876159668 + ], + [ + "cup", + -12.740311622619629 + ], + [ + "▁Thames", + -12.740358352661133 + ], + [ + "▁stripe", + -12.740372657775879 + ], + [ + "▁Kolkata", + -12.740467071533203 + ], + [ + "▁Williamson", + -12.740470886230469 + ], + [ + "▁audits", + -12.740478515625 + ], + [ + "▁quoting", + -12.740487098693848 + ], + [ + "▁Kuwait", + -12.740643501281738 + ], + [ + "lor", + -12.740737915039062 + ], + [ + "▁workmanship", + -12.740784645080566 + ], + [ + "▁mortal", + -12.740848541259766 + ], + [ + "iso", + -12.740850448608398 + ], + [ + "▁vacancy", + -12.74094295501709 + ], + [ + "ators", + -12.74100399017334 + ], + [ + "▁KNOW", + -12.74105167388916 + ], + [ + "▁Sustainability", + -12.741122245788574 + ], + [ + "▁Willis", + -12.741134643554688 + ], + [ + "▁LT", + -12.741155624389648 + ], + [ + "▁epi", + -12.741166114807129 + ], + [ + "▁killexams", + -12.741169929504395 + ], + [ + "would", + -12.741259574890137 + ], + [ + "▁supervisors", + -12.741528511047363 + ], + [ + "pel", + -12.741633415222168 + ], + [ + "▁echoed", + -12.74166488647461 + ], + [ + "▁boating", + -12.741671562194824 + ], + [ + "▁Fountain", + -12.741704940795898 + ], + [ + "▁Bottle", + -12.74179458618164 + ], + [ + "▁lust", + -12.741840362548828 + ], + [ + "▁Cons", + -12.742110252380371 + ], + [ + "▁Pas", + -12.742119789123535 + ], + [ + "thanks", + -12.742151260375977 + ], + [ + "▁rotary", + -12.742164611816406 + ], + [ + "LM", + -12.742209434509277 + ], + [ + "▁blaming", + -12.74231243133545 + ], + [ + "easy", + -12.742317199707031 + ], + [ + "▁deserving", + -12.742413520812988 + ], + [ + "Download", + -12.7424955368042 + ], + [ + "▁fostering", + -12.742764472961426 + ], + [ + "▁consoles", + -12.743000030517578 + ], + [ + "▁compass", + -12.743012428283691 + ], + [ + "▁Essays", + -12.743196487426758 + ], + [ + "▁Dub", + -12.743267059326172 + ], + [ + "▁disguise", + -12.743287086486816 + ], + [ + "▁Bolt", + -12.743345260620117 + ], + [ + "▁pinned", + -12.743383407592773 + ], + [ + "tai", + -12.743553161621094 + ], + [ + "▁Mus", + -12.743656158447266 + ], + [ + "▁handcrafted", + -12.743666648864746 + ], + [ + "▁contemplate", + -12.743703842163086 + ], + [ + "▁USS", + -12.743731498718262 + ], + [ + "▁sweets", + -12.74373722076416 + ], + [ + "▁marched", + -12.743886947631836 + ], + [ + "▁Amp", + -12.74403190612793 + ], + [ + "▁eu", + -12.744067192077637 + ], + [ + "▁ivory", + -12.744194984436035 + ], + [ + "▁Dairy", + -12.744275093078613 + ], + [ + "▁ageing", + -12.744426727294922 + ], + [ + "▁braking", + -12.744441986083984 + ], + [ + "years", + -12.744597434997559 + ], + [ + "▁identifier", + -12.744741439819336 + ], + [ + "digital", + -12.744743347167969 + ], + [ + "850", + -12.744806289672852 + ], + [ + "Christian", + -12.744889259338379 + ], + [ + "▁Governance", + -12.744962692260742 + ], + [ + "igo", + -12.744994163513184 + ], + [ + "▁yielded", + -12.745135307312012 + ], + [ + "AN", + -12.745266914367676 + ], + [ + "▁Clothing", + -12.745292663574219 + ], + [ + "▁sensational", + -12.745360374450684 + ], + [ + "▁Actress", + -12.745384216308594 + ], + [ + "▁erectile", + -12.745488166809082 + ], + [ + "▁biting", + -12.745489120483398 + ], + [ + "▁Hammond", + -12.745512962341309 + ], + [ + "в", + -12.745704650878906 + ], + [ + "▁clientele", + -12.745765686035156 + ], + [ + "▁Naples", + -12.745792388916016 + ], + [ + "380", + -12.745979309082031 + ], + [ + "ore", + -12.745987892150879 + ], + [ + "▁admiration", + -12.746091842651367 + ], + [ + "▁garnered", + -12.746131896972656 + ], + [ + "▁equities", + -12.746158599853516 + ], + [ + "▁township", + -12.746228218078613 + ], + [ + "▁wearable", + -12.746283531188965 + ], + [ + "▁Functional", + -12.746362686157227 + ], + [ + "▁informs", + -12.746370315551758 + ], + [ + "▁PCI", + -12.746654510498047 + ], + [ + "▁Regulatory", + -12.746688842773438 + ], + [ + "▁submarine", + -12.74670696258545 + ], + [ + "▁SU", + -12.746722221374512 + ], + [ + "logic", + -12.746769905090332 + ], + [ + "▁chick", + -12.746792793273926 + ], + [ + "▁bred", + -12.74682331085205 + ], + [ + "▁chandelier", + -12.74693489074707 + ], + [ + "▁Piper", + -12.747050285339355 + ], + [ + "▁Crypto", + -12.7471923828125 + ], + [ + "▁adherence", + -12.747209548950195 + ], + [ + "▁Auction", + -12.74728775024414 + ], + [ + "▁NGO", + -12.747431755065918 + ], + [ + "▁stern", + -12.74761962890625 + ], + [ + "▁fleece", + -12.74763298034668 + ], + [ + "▁Logistics", + -12.747736930847168 + ], + [ + "aid", + -12.748117446899414 + ], + [ + "GR", + -12.748257637023926 + ], + [ + "▁preseason", + -12.748401641845703 + ], + [ + "ios", + -12.748440742492676 + ], + [ + "▁yrs", + -12.748453140258789 + ], + [ + "▁chords", + -12.748783111572266 + ], + [ + "▁padding", + -12.748818397521973 + ], + [ + "▁jumper", + -12.748836517333984 + ], + [ + "▁ecommerce", + -12.748851776123047 + ], + [ + "▁Dur", + -12.74886417388916 + ], + [ + "▁viability", + -12.748958587646484 + ], + [ + "IST", + -12.749019622802734 + ], + [ + "▁hectares", + -12.749106407165527 + ], + [ + "▁Mitt", + -12.74923038482666 + ], + [ + "▁unwind", + -12.749235153198242 + ], + [ + "▁prohibition", + -12.749273300170898 + ], + [ + "▁delta", + -12.74929141998291 + ], + [ + "▁Protestant", + -12.749383926391602 + ], + [ + "▁pun", + -12.749442100524902 + ], + [ + "TY", + -12.749466896057129 + ], + [ + "▁Fees", + -12.749577522277832 + ], + [ + "▁Budapest", + -12.749650955200195 + ], + [ + "▁SharePoint", + -12.749693870544434 + ], + [ + "▁Py", + -12.749872207641602 + ], + [ + "▁Backup", + -12.749898910522461 + ], + [ + "▁prophecy", + -12.750106811523438 + ], + [ + "rad", + -12.750133514404297 + ], + [ + "▁Boom", + -12.75017261505127 + ], + [ + "▁Burlington", + -12.750255584716797 + ], + [ + "▁Shark", + -12.750262260437012 + ], + [ + "▁chased", + -12.750306129455566 + ], + [ + "▁fragment", + -12.750892639160156 + ], + [ + "▁Jade", + -12.750984191894531 + ], + [ + "▁conducts", + -12.751112937927246 + ], + [ + "▁brilliantly", + -12.751312255859375 + ], + [ + "▁irrespective", + -12.751347541809082 + ], + [ + "▁disciplined", + -12.751448631286621 + ], + [ + "▁Trim", + -12.751643180847168 + ], + [ + "▁1925", + -12.751686096191406 + ], + [ + "▁spoiled", + -12.751690864562988 + ], + [ + "▁restraint", + -12.751708984375 + ], + [ + "DP", + -12.751733779907227 + ], + [ + "und", + -12.75173568725586 + ], + [ + "▁Twelve", + -12.751786231994629 + ], + [ + "▁shutting", + -12.751852989196777 + ], + [ + "▁Fence", + -12.751980781555176 + ], + [ + "KO", + -12.752087593078613 + ], + [ + "▁militant", + -12.752191543579102 + ], + [ + "▁grouped", + -12.752243041992188 + ], + [ + "▁deficiencies", + -12.752452850341797 + ], + [ + "▁crave", + -12.752467155456543 + ], + [ + "▁soften", + -12.752494812011719 + ], + [ + "▁doom", + -12.75252914428711 + ], + [ + "▁songwriter", + -12.75259017944336 + ], + [ + "▁Parkway", + -12.752593040466309 + ], + [ + "wash", + -12.752662658691406 + ], + [ + "▁forge", + -12.75273323059082 + ], + [ + "▁Buzz", + -12.752764701843262 + ], + [ + "▁assemblies", + -12.752787590026855 + ], + [ + "▁universally", + -12.7528076171875 + ], + [ + "▁Presentation", + -12.752859115600586 + ], + [ + "confidence", + -12.752923011779785 + ], + [ + "Paul", + -12.752992630004883 + ], + [ + "▁ip", + -12.753073692321777 + ], + [ + "Rock", + -12.75308895111084 + ], + [ + "▁Showing", + -12.753125190734863 + ], + [ + "▁plumber", + -12.753138542175293 + ], + [ + "▁dat", + -12.753170013427734 + ], + [ + "Post", + -12.753314018249512 + ], + [ + "kins", + -12.7533597946167 + ], + [ + "rl", + -12.753389358520508 + ], + [ + "▁specialties", + -12.753486633300781 + ], + [ + "▁instincts", + -12.753487586975098 + ], + [ + "lined", + -12.753511428833008 + ], + [ + "▁explode", + -12.753597259521484 + ], + [ + "▁canyon", + -12.753639221191406 + ], + [ + "▁Jedi", + -12.753665924072266 + ], + [ + "hua", + -12.753671646118164 + ], + [ + "London", + -12.753774642944336 + ], + [ + "▁Humanities", + -12.753775596618652 + ], + [ + "▁LE", + -12.753778457641602 + ], + [ + "▁pasture", + -12.753830909729004 + ], + [ + "▁seaside", + -12.75395393371582 + ], + [ + "▁lions", + -12.754021644592285 + ], + [ + "▁2500", + -12.754127502441406 + ], + [ + "eck", + -12.754138946533203 + ], + [ + "▁looming", + -12.754311561584473 + ], + [ + "▁Cord", + -12.754365921020508 + ], + [ + "▁abuses", + -12.754365921020508 + ], + [ + "▁tablespoon", + -12.75437068939209 + ], + [ + "mac", + -12.754441261291504 + ], + [ + "▁Subaru", + -12.754525184631348 + ], + [ + "▁Eclipse", + -12.7545804977417 + ], + [ + "▁Thousand", + -12.754651069641113 + ], + [ + "▁Lawyer", + -12.754734992980957 + ], + [ + "▁carnival", + -12.754875183105469 + ], + [ + "▁perpetual", + -12.754962921142578 + ], + [ + "DT", + -12.755108833312988 + ], + [ + "▁missionary", + -12.755232810974121 + ], + [ + "eria", + -12.755379676818848 + ], + [ + "▁pivot", + -12.755475044250488 + ], + [ + "▁modifying", + -12.755494117736816 + ], + [ + "▁eldest", + -12.755597114562988 + ], + [ + "▁Banner", + -12.755830764770508 + ], + [ + "mix", + -12.755831718444824 + ], + [ + "▁geek", + -12.755840301513672 + ], + [ + "Click", + -12.756050109863281 + ], + [ + "▁tornado", + -12.756062507629395 + ], + [ + "▁Profiles", + -12.756068229675293 + ], + [ + "▁decree", + -12.756084442138672 + ], + [ + "▁fascination", + -12.756111145019531 + ], + [ + "ess", + -12.756143569946289 + ], + [ + "▁woodland", + -12.756373405456543 + ], + [ + "film", + -12.756379127502441 + ], + [ + "▁slew", + -12.756428718566895 + ], + [ + "loving", + -12.756467819213867 + ], + [ + "▁Spice", + -12.756539344787598 + ], + [ + "often", + -12.756555557250977 + ], + [ + "▁sentiments", + -12.75658893585205 + ], + [ + "▁drilled", + -12.756649017333984 + ], + [ + "▁minors", + -12.756795883178711 + ], + [ + "▁Winning", + -12.756848335266113 + ], + [ + "▁Pharma", + -12.757013320922852 + ], + [ + "▁Crossing", + -12.757125854492188 + ], + [ + "▁PIN", + -12.757180213928223 + ], + [ + "▁surpassed", + -12.757216453552246 + ], + [ + "▁Networking", + -12.757226943969727 + ], + [ + "▁Walton", + -12.757320404052734 + ], + [ + "UC", + -12.7573881149292 + ], + [ + "sheet", + -12.757492065429688 + ], + [ + "▁Cer", + -12.757558822631836 + ], + [ + "▁benign", + -12.75759220123291 + ], + [ + "▁Jaguar", + -12.757631301879883 + ], + [ + "lings", + -12.75767707824707 + ], + [ + "AGE", + -12.757680892944336 + ], + [ + "▁dine", + -12.757696151733398 + ], + [ + "▁modeled", + -12.75778579711914 + ], + [ + "▁chilling", + -12.757916450500488 + ], + [ + "▁lowes", + -12.7579927444458 + ], + [ + "commercial", + -12.75815200805664 + ], + [ + "▁homicide", + -12.758402824401855 + ], + [ + "bie", + -12.758435249328613 + ], + [ + "▁behaviours", + -12.758505821228027 + ], + [ + "▁Choir", + -12.758605003356934 + ], + [ + "camp", + -12.758752822875977 + ], + [ + "▁Twilight", + -12.758811950683594 + ], + [ + "shore", + -12.758855819702148 + ], + [ + "▁mods", + -12.758857727050781 + ], + [ + "▁shortcut", + -12.75900936126709 + ], + [ + "▁auctions", + -12.759014129638672 + ], + [ + "▁apologies", + -12.759101867675781 + ], + [ + "▁calendars", + -12.759182929992676 + ], + [ + "due", + -12.759191513061523 + ], + [ + "▁Battalion", + -12.759214401245117 + ], + [ + "▁deploying", + -12.759214401245117 + ], + [ + "dell", + -12.75927734375 + ], + [ + "▁bolster", + -12.759326934814453 + ], + [ + "▁messed", + -12.75939655303955 + ], + [ + "▁legitimacy", + -12.759408950805664 + ], + [ + "▁forwarded", + -12.759454727172852 + ], + [ + "108", + -12.759631156921387 + ], + [ + "▁Salesforce", + -12.759637832641602 + ], + [ + "▁monopoly", + -12.759679794311523 + ], + [ + "▁Jail", + -12.759725570678711 + ], + [ + "▁Sutton", + -12.759744644165039 + ], + [ + "▁Erie", + -12.759778022766113 + ], + [ + "▁awaits", + -12.760028839111328 + ], + [ + "▁Secrets", + -12.760088920593262 + ], + [ + "▁dodge", + -12.760160446166992 + ], + [ + "▁overwhelmingly", + -12.760189056396484 + ], + [ + "▁1927", + -12.760375022888184 + ], + [ + "▁Neighborhood", + -12.760396003723145 + ], + [ + "▁1912", + -12.760442733764648 + ], + [ + "▁athletics", + -12.760531425476074 + ], + [ + "Have", + -12.760544776916504 + ], + [ + "▁uncertainties", + -12.760567665100098 + ], + [ + "▁supermarkets", + -12.760762214660645 + ], + [ + "ige", + -12.760764122009277 + ], + [ + "▁sponsoring", + -12.760843276977539 + ], + [ + "▁Assist", + -12.760913848876953 + ], + [ + "▁tightening", + -12.760947227478027 + ], + [ + "▁Trend", + -12.761012077331543 + ], + [ + "▁priceless", + -12.761128425598145 + ], + [ + "▁preferable", + -12.761551856994629 + ], + [ + "▁McG", + -12.761626243591309 + ], + [ + "▁Marks", + -12.761760711669922 + ], + [ + "▁mystical", + -12.761797904968262 + ], + [ + "▁bounced", + -12.761821746826172 + ], + [ + "▁Says", + -12.761848449707031 + ], + [ + "▁Emerald", + -12.761927604675293 + ], + [ + "▁wrought", + -12.761940956115723 + ], + [ + "igan", + -12.76201057434082 + ], + [ + "▁trusts", + -12.762053489685059 + ], + [ + "▁Wheat", + -12.762258529663086 + ], + [ + "▁fertile", + -12.762283325195312 + ], + [ + "▁colouring", + -12.762292861938477 + ], + [ + "sim", + -12.762313842773438 + ], + [ + "axis", + -12.76235580444336 + ], + [ + "1994", + -12.762386322021484 + ], + [ + "gle", + -12.762550354003906 + ], + [ + "▁Investments", + -12.762558937072754 + ], + [ + "▁Coverage", + -12.762578964233398 + ], + [ + "▁Granted", + -12.7627534866333 + ], + [ + "▁Kerr", + -12.762770652770996 + ], + [ + "▁Investigators", + -12.762777328491211 + ], + [ + "▁competitiveness", + -12.762886047363281 + ], + [ + "▁Vanessa", + -12.763083457946777 + ], + [ + "▁anesthesia", + -12.763102531433105 + ], + [ + "▁afforded", + -12.763115882873535 + ], + [ + "▁gr", + -12.763239860534668 + ], + [ + "▁pies", + -12.7632417678833 + ], + [ + "▁Tale", + -12.763291358947754 + ], + [ + "▁Gro", + -12.76329231262207 + ], + [ + "▁binge", + -12.763296127319336 + ], + [ + "▁profoundly", + -12.763330459594727 + ], + [ + "▁039", + -12.763355255126953 + ], + [ + "▁circa", + -12.763768196105957 + ], + [ + "▁stacks", + -12.76380443572998 + ], + [ + "▁dorm", + -12.763829231262207 + ], + [ + "▁Statistical", + -12.76393985748291 + ], + [ + "Ga", + -12.763960838317871 + ], + [ + "▁Sel", + -12.76403522491455 + ], + [ + "▁у", + -12.764090538024902 + ], + [ + "stad", + -12.76412296295166 + ], + [ + "▁Dept", + -12.764158248901367 + ], + [ + "▁Teach", + -12.76423168182373 + ], + [ + "▁Midlands", + -12.764259338378906 + ], + [ + "▁havoc", + -12.76427173614502 + ], + [ + "factor", + -12.764559745788574 + ], + [ + "▁cucumber", + -12.764581680297852 + ], + [ + "▁Ikea", + -12.764594078063965 + ], + [ + "▁veil", + -12.764704704284668 + ], + [ + "▁upbeat", + -12.76473617553711 + ], + [ + "▁shootings", + -12.764822006225586 + ], + [ + "▁Provincial", + -12.764838218688965 + ], + [ + "must", + -12.76491928100586 + ], + [ + "▁Forums", + -12.764954566955566 + ], + [ + "▁strand", + -12.765036582946777 + ], + [ + "▁excursions", + -12.765049934387207 + ], + [ + "▁Rum", + -12.765083312988281 + ], + [ + "FP", + -12.765262603759766 + ], + [ + "▁sheds", + -12.76540470123291 + ], + [ + "▁Lesson", + -12.765603065490723 + ], + [ + "▁С", + -12.765742301940918 + ], + [ + "▁intestinal", + -12.765836715698242 + ], + [ + "▁Marilyn", + -12.765878677368164 + ], + [ + "King", + -12.765909194946289 + ], + [ + "は", + -12.766040802001953 + ], + [ + "▁QR", + -12.766100883483887 + ], + [ + "▁lunar", + -12.76611042022705 + ], + [ + "▁postponed", + -12.766117095947266 + ], + [ + "▁sanitation", + -12.7661714553833 + ], + [ + "LF", + -12.766179084777832 + ], + [ + "▁pallet", + -12.766271591186523 + ], + [ + "▁telecom", + -12.766291618347168 + ], + [ + "▁siege", + -12.766304969787598 + ], + [ + "▁THC", + -12.766343116760254 + ], + [ + "toxic", + -12.766345977783203 + ], + [ + "▁Doyle", + -12.766382217407227 + ], + [ + "▁Ricky", + -12.766430854797363 + ], + [ + "▁EVER", + -12.766457557678223 + ], + [ + "▁Panther", + -12.7664794921875 + ], + [ + "▁urinary", + -12.766490936279297 + ], + [ + "▁Freddie", + -12.7665433883667 + ], + [ + "▁Kristen", + -12.766913414001465 + ], + [ + "priced", + -12.767004013061523 + ], + [ + "▁Dip", + -12.76718521118164 + ], + [ + "▁LM", + -12.767304420471191 + ], + [ + "▁Flickr", + -12.767380714416504 + ], + [ + "▁Bold", + -12.767520904541016 + ], + [ + "▁helpless", + -12.767555236816406 + ], + [ + "▁Cherokee", + -12.76763916015625 + ], + [ + "▁Required", + -12.767651557922363 + ], + [ + "▁Dai", + -12.767751693725586 + ], + [ + "▁bipartisan", + -12.767756462097168 + ], + [ + "ih", + -12.767818450927734 + ], + [ + "▁Extended", + -12.767990112304688 + ], + [ + "▁Cognitive", + -12.768217086791992 + ], + [ + "Plus", + -12.768245697021484 + ], + [ + "▁Sophia", + -12.768245697021484 + ], + [ + "▁Fletcher", + -12.768275260925293 + ], + [ + "▁commemorate", + -12.76829719543457 + ], + [ + "▁grit", + -12.768312454223633 + ], + [ + "▁Gloria", + -12.768339157104492 + ], + [ + "▁turtles", + -12.768491744995117 + ], + [ + "seven", + -12.768508911132812 + ], + [ + "▁sophistication", + -12.768521308898926 + ], + [ + "▁malls", + -12.76854133605957 + ], + [ + "▁Perkins", + -12.768908500671387 + ], + [ + "▁canine", + -12.769011497497559 + ], + [ + "▁condemn", + -12.769078254699707 + ], + [ + "▁forgiven", + -12.769309997558594 + ], + [ + "▁THEY", + -12.76932144165039 + ], + [ + "▁Rug", + -12.76944351196289 + ], + [ + "▁Lime", + -12.76945686340332 + ], + [ + "▁Juice", + -12.769561767578125 + ], + [ + "▁Bills", + -12.769577980041504 + ], + [ + "▁Becky", + -12.769637107849121 + ], + [ + "▁graffiti", + -12.769697189331055 + ], + [ + "▁patiently", + -12.769721984863281 + ], + [ + "▁hesitant", + -12.769756317138672 + ], + [ + "rating", + -12.769765853881836 + ], + [ + "▁Lib", + -12.769783020019531 + ], + [ + "▁waving", + -12.7698392868042 + ], + [ + "▁Promo", + -12.769845962524414 + ], + [ + "layer", + -12.769913673400879 + ], + [ + "▁Silent", + -12.770072937011719 + ], + [ + "▁exhibiting", + -12.770232200622559 + ], + [ + "▁bookstore", + -12.770241737365723 + ], + [ + "uda", + -12.770248413085938 + ], + [ + "produced", + -12.770295143127441 + ], + [ + "▁weekday", + -12.770424842834473 + ], + [ + "▁vineyard", + -12.770463943481445 + ], + [ + "▁winery", + -12.770646095275879 + ], + [ + "▁jailed", + -12.770846366882324 + ], + [ + "▁Dick", + -12.770857810974121 + ], + [ + "izes", + -12.770955085754395 + ], + [ + "Getty", + -12.770965576171875 + ], + [ + "▁readable", + -12.771048545837402 + ], + [ + "▁Shelby", + -12.771084785461426 + ], + [ + "▁multiply", + -12.771160125732422 + ], + [ + "Ro", + -12.771217346191406 + ], + [ + "▁dev", + -12.771218299865723 + ], + [ + "▁Surf", + -12.771252632141113 + ], + [ + "▁fabricated", + -12.771397590637207 + ], + [ + "Works", + -12.771428108215332 + ], + [ + "▁hues", + -12.771442413330078 + ], + [ + "borne", + -12.771459579467773 + ], + [ + "▁interpreting", + -12.771489143371582 + ], + [ + "cum", + -12.771571159362793 + ], + [ + "nell", + -12.771749496459961 + ], + [ + "▁Fried", + -12.771897315979004 + ], + [ + "▁Romanian", + -12.771900177001953 + ], + [ + "▁COM", + -12.771967887878418 + ], + [ + "▁Lets", + -12.77197551727295 + ], + [ + "▁Marines", + -12.772061347961426 + ], + [ + "▁midfield", + -12.772165298461914 + ], + [ + "▁blush", + -12.772194862365723 + ], + [ + "▁tutoring", + -12.77229118347168 + ], + [ + "▁Values", + -12.772319793701172 + ], + [ + "▁composers", + -12.772515296936035 + ], + [ + "▁counselors", + -12.77252197265625 + ], + [ + "▁MJ", + -12.772543907165527 + ], + [ + "▁UW", + -12.772558212280273 + ], + [ + "375", + -12.772721290588379 + ], + [ + "▁wrath", + -12.772826194763184 + ], + [ + "▁Treasure", + -12.77290153503418 + ], + [ + "▁lu", + -12.772981643676758 + ], + [ + "direct", + -12.773076057434082 + ], + [ + "▁recap", + -12.773118019104004 + ], + [ + "▁warmed", + -12.773136138916016 + ], + [ + "▁Maha", + -12.77315616607666 + ], + [ + "▁cork", + -12.773249626159668 + ], + [ + "Ad", + -12.773276329040527 + ], + [ + "▁markings", + -12.773296356201172 + ], + [ + "▁Dom", + -12.773473739624023 + ], + [ + "▁percussion", + -12.773578643798828 + ], + [ + "▁BD", + -12.773700714111328 + ], + [ + "▁wo", + -12.773774147033691 + ], + [ + "▁pollen", + -12.773816108703613 + ], + [ + "fl", + -12.773856163024902 + ], + [ + "▁Literary", + -12.773894309997559 + ], + [ + "▁bloc", + -12.773905754089355 + ], + [ + "▁reviewer", + -12.773951530456543 + ], + [ + "won", + -12.773953437805176 + ], + [ + "▁Kha", + -12.774025917053223 + ], + [ + "▁vines", + -12.774067878723145 + ], + [ + "▁interpersonal", + -12.774070739746094 + ], + [ + "▁Console", + -12.774158477783203 + ], + [ + "▁Schneider", + -12.774205207824707 + ], + [ + "▁Pair", + -12.774298667907715 + ], + [ + "▁Vor", + -12.774299621582031 + ], + [ + "▁pr", + -12.774332046508789 + ], + [ + "▁freaking", + -12.774380683898926 + ], + [ + "electric", + -12.774423599243164 + ], + [ + "▁bliss", + -12.774443626403809 + ], + [ + "ace", + -12.774486541748047 + ], + [ + "▁Vegan", + -12.774495124816895 + ], + [ + "▁loneliness", + -12.774495124816895 + ], + [ + "▁broaden", + -12.774557113647461 + ], + [ + "▁Cas", + -12.774599075317383 + ], + [ + "▁slack", + -12.774700164794922 + ], + [ + "▁pissed", + -12.774812698364258 + ], + [ + "▁redirect", + -12.77486515045166 + ], + [ + "▁timetable", + -12.774880409240723 + ], + [ + "Old", + -12.774992942810059 + ], + [ + "▁meds", + -12.775141716003418 + ], + [ + "▁legit", + -12.775245666503906 + ], + [ + "▁Fairy", + -12.775299072265625 + ], + [ + "▁robotics", + -12.775312423706055 + ], + [ + "▁procedural", + -12.77532958984375 + ], + [ + "▁bouncing", + -12.775434494018555 + ], + [ + "▁evidenced", + -12.775470733642578 + ], + [ + "▁Laurie", + -12.775562286376953 + ], + [ + "▁Carrier", + -12.775811195373535 + ], + [ + "▁perennial", + -12.775811195373535 + ], + [ + "▁Lisbon", + -12.7758207321167 + ], + [ + "▁borne", + -12.775917053222656 + ], + [ + "▁Sims", + -12.77593994140625 + ], + [ + "▁Lim", + -12.775940895080566 + ], + [ + "▁Damn", + -12.775960922241211 + ], + [ + "▁deception", + -12.775979995727539 + ], + [ + "▁almonds", + -12.7760009765625 + ], + [ + "▁Gur", + -12.776067733764648 + ], + [ + "Gold", + -12.776196479797363 + ], + [ + "▁Payne", + -12.776259422302246 + ], + [ + "job", + -12.776273727416992 + ], + [ + "plate", + -12.776299476623535 + ], + [ + "▁1931", + -12.776318550109863 + ], + [ + "▁Zoom", + -12.776318550109863 + ], + [ + "▁java", + -12.776368141174316 + ], + [ + "fun", + -12.776402473449707 + ], + [ + "▁MHz", + -12.776435852050781 + ], + [ + "▁Pricing", + -12.776473999023438 + ], + [ + "Ta", + -12.776527404785156 + ], + [ + "▁sidebar", + -12.776723861694336 + ], + [ + "▁ISP", + -12.776782035827637 + ], + [ + "▁Ernest", + -12.776814460754395 + ], + [ + "▁serene", + -12.776901245117188 + ], + [ + "anda", + -12.777022361755371 + ], + [ + "▁Ve", + -12.777117729187012 + ], + [ + "▁artillery", + -12.777144432067871 + ], + [ + "▁flashes", + -12.777164459228516 + ], + [ + "▁Ferry", + -12.77717113494873 + ], + [ + "▁immersion", + -12.777190208435059 + ], + [ + "▁Claims", + -12.77728271484375 + ], + [ + "▁unconventional", + -12.777369499206543 + ], + [ + "fen", + -12.777515411376953 + ], + [ + "▁Names", + -12.777518272399902 + ], + [ + "▁Permanent", + -12.777620315551758 + ], + [ + "▁Archbishop", + -12.777631759643555 + ], + [ + "▁Tablet", + -12.777726173400879 + ], + [ + "▁campers", + -12.777865409851074 + ], + [ + "thinking", + -12.777936935424805 + ], + [ + "▁Ari", + -12.778007507324219 + ], + [ + "▁Views", + -12.778021812438965 + ], + [ + "▁masculine", + -12.778119087219238 + ], + [ + "▁dusty", + -12.778301239013672 + ], + [ + "▁monks", + -12.778321266174316 + ], + [ + "sys", + -12.778385162353516 + ], + [ + "▁minimizing", + -12.778414726257324 + ], + [ + "▁Seahawks", + -12.778597831726074 + ], + [ + "▁sewage", + -12.778679847717285 + ], + [ + "▁Geographic", + -12.778742790222168 + ], + [ + "▁iteration", + -12.778766632080078 + ], + [ + "▁inland", + -12.778782844543457 + ], + [ + "▁stunt", + -12.778883934020996 + ], + [ + "▁dean", + -12.77890396118164 + ], + [ + "▁batches", + -12.779017448425293 + ], + [ + "▁uphill", + -12.779191017150879 + ], + [ + "▁Romeo", + -12.779224395751953 + ], + [ + "▁aura", + -12.779266357421875 + ], + [ + "▁Sanctuary", + -12.779279708862305 + ], + [ + "▁Winners", + -12.779315948486328 + ], + [ + "▁disagreement", + -12.77932357788086 + ], + [ + "nal", + -12.779339790344238 + ], + [ + "ón", + -12.779375076293945 + ], + [ + "▁posterior", + -12.779396057128906 + ], + [ + "▁revelations", + -12.779635429382324 + ], + [ + "▁sailors", + -12.779674530029297 + ], + [ + "▁prophets", + -12.779679298400879 + ], + [ + "▁punched", + -12.779824256896973 + ], + [ + "eno", + -12.779838562011719 + ], + [ + "▁Salad", + -12.779916763305664 + ], + [ + "▁Experimental", + -12.779993057250977 + ], + [ + "▁Rap", + -12.780091285705566 + ], + [ + "▁moderately", + -12.78010082244873 + ], + [ + "chy", + -12.780173301696777 + ], + [ + "oi", + -12.780255317687988 + ], + [ + "▁gutters", + -12.780289649963379 + ], + [ + "▁Otto", + -12.780336380004883 + ], + [ + "▁inactive", + -12.780381202697754 + ], + [ + "▁condos", + -12.780399322509766 + ], + [ + "▁banquet", + -12.780406951904297 + ], + [ + "▁Disneyland", + -12.780640602111816 + ], + [ + "▁triggering", + -12.780820846557617 + ], + [ + "▁Hogan", + -12.78095531463623 + ], + [ + "▁attendant", + -12.780970573425293 + ], + [ + "▁catchy", + -12.78097915649414 + ], + [ + "230", + -12.781146049499512 + ], + [ + "▁pearls", + -12.7811918258667 + ], + [ + "▁guild", + -12.781439781188965 + ], + [ + "▁faction", + -12.781496047973633 + ], + [ + "Si", + -12.781523704528809 + ], + [ + "▁Bulldogs", + -12.781676292419434 + ], + [ + "nel", + -12.781773567199707 + ], + [ + "▁Childhood", + -12.781781196594238 + ], + [ + "▁walnut", + -12.78178882598877 + ], + [ + "▁intensely", + -12.781800270080566 + ], + [ + "▁Polar", + -12.781826972961426 + ], + [ + "▁possessing", + -12.781916618347168 + ], + [ + "▁Ahmad", + -12.78201675415039 + ], + [ + "▁malt", + -12.7820463180542 + ], + [ + "▁Matters", + -12.782054901123047 + ], + [ + "▁roadmap", + -12.782072067260742 + ], + [ + "Key", + -12.782109260559082 + ], + [ + "▁Blockchain", + -12.78214168548584 + ], + [ + "ê", + -12.782265663146973 + ], + [ + "▁Laurel", + -12.782312393188477 + ], + [ + "▁heavens", + -12.782328605651855 + ], + [ + "▁Types", + -12.782355308532715 + ], + [ + "▁Dayton", + -12.782407760620117 + ], + [ + "▁Aussie", + -12.782511711120605 + ], + [ + "▁deferred", + -12.782690048217773 + ], + [ + "▁forecasting", + -12.782824516296387 + ], + [ + "▁Emerging", + -12.7828950881958 + ], + [ + "▁deficits", + -12.782946586608887 + ], + [ + "enabled", + -12.782949447631836 + ], + [ + "▁kidnapped", + -12.782979965209961 + ], + [ + "▁coils", + -12.782990455627441 + ], + [ + "▁beginnings", + -12.783007621765137 + ], + [ + "▁rectangle", + -12.783010482788086 + ], + [ + "▁Av", + -12.783143997192383 + ], + [ + "▁Barton", + -12.783214569091797 + ], + [ + "▁Kazakhstan", + -12.78326416015625 + ], + [ + "▁Conservatives", + -12.783271789550781 + ], + [ + "January", + -12.783289909362793 + ], + [ + "▁PTSD", + -12.783407211303711 + ], + [ + "CF", + -12.783491134643555 + ], + [ + "boat", + -12.783499717712402 + ], + [ + "▁Opportunities", + -12.783550262451172 + ], + [ + "jack", + -12.783564567565918 + ], + [ + "▁Autism", + -12.783591270446777 + ], + [ + "▁Hide", + -12.783710479736328 + ], + [ + "▁1926", + -12.783748626708984 + ], + [ + "▁prescribe", + -12.783771514892578 + ], + [ + "▁Postal", + -12.784018516540527 + ], + [ + "▁ducks", + -12.78405475616455 + ], + [ + "▁BlackBerry", + -12.784300804138184 + ], + [ + "▁Clock", + -12.784355163574219 + ], + [ + "▁thinkers", + -12.784358978271484 + ], + [ + "▁pint", + -12.78442668914795 + ], + [ + "NP", + -12.784451484680176 + ], + [ + "▁Cannabis", + -12.78450870513916 + ], + [ + "▁buckle", + -12.78475570678711 + ], + [ + "▁FAA", + -12.784791946411133 + ], + [ + "▁undo", + -12.784818649291992 + ], + [ + "▁pronunciation", + -12.7848482131958 + ], + [ + "▁mound", + -12.784950256347656 + ], + [ + "112", + -12.785005569458008 + ], + [ + "▁moderation", + -12.78501033782959 + ], + [ + "▁Patel", + -12.7850980758667 + ], + [ + "▁Shri", + -12.78521728515625 + ], + [ + "▁Bun", + -12.785368919372559 + ], + [ + "▁Somalia", + -12.785380363464355 + ], + [ + "▁measurable", + -12.785380363464355 + ], + [ + "Last", + -12.785674095153809 + ], + [ + "▁Bucks", + -12.785795211791992 + ], + [ + "▁shakes", + -12.785829544067383 + ], + [ + "▁Gain", + -12.78589153289795 + ], + [ + "▁Sharks", + -12.785975456237793 + ], + [ + "hai", + -12.786041259765625 + ], + [ + "▁Highlands", + -12.786043167114258 + ], + [ + "▁leases", + -12.78626537322998 + ], + [ + "▁scams", + -12.786284446716309 + ], + [ + "▁shredded", + -12.786338806152344 + ], + [ + "▁Denise", + -12.78651237487793 + ], + [ + "▁wandered", + -12.786635398864746 + ], + [ + "▁customary", + -12.786704063415527 + ], + [ + "▁CPR", + -12.78671646118164 + ], + [ + "▁coaster", + -12.786722183227539 + ], + [ + "VO", + -12.786818504333496 + ], + [ + "find", + -12.786845207214355 + ], + [ + "▁distorted", + -12.786853790283203 + ], + [ + "▁gamble", + -12.786882400512695 + ], + [ + "Smith", + -12.786930084228516 + ], + [ + "▁Ven", + -12.787026405334473 + ], + [ + "▁interstate", + -12.787069320678711 + ], + [ + "▁Transmission", + -12.787178039550781 + ], + [ + "▁Kali", + -12.787188529968262 + ], + [ + "▁ants", + -12.787337303161621 + ], + [ + "▁Hen", + -12.787367820739746 + ], + [ + "▁pensions", + -12.787521362304688 + ], + [ + "▁shrubs", + -12.787745475769043 + ], + [ + "▁Wei", + -12.787898063659668 + ], + [ + "▁Broadcasting", + -12.787908554077148 + ], + [ + "▁config", + -12.78793716430664 + ], + [ + "▁Rogue", + -12.787962913513184 + ], + [ + "▁1300", + -12.787967681884766 + ], + [ + "▁devised", + -12.78805923461914 + ], + [ + "▁inflatable", + -12.788063049316406 + ], + [ + "▁fruitful", + -12.788232803344727 + ], + [ + "▁Warsaw", + -12.788259506225586 + ], + [ + "genic", + -12.788407325744629 + ], + [ + "Real", + -12.788590431213379 + ], + [ + "▁Mali", + -12.788647651672363 + ], + [ + "▁additives", + -12.788749694824219 + ], + [ + "▁Owens", + -12.78885269165039 + ], + [ + "▁sank", + -12.789095878601074 + ], + [ + "▁uplifting", + -12.78921890258789 + ], + [ + "ink", + -12.789278984069824 + ], + [ + "critical", + -12.789339065551758 + ], + [ + "▁Pray", + -12.789349555969238 + ], + [ + "script", + -12.789519309997559 + ], + [ + "▁pee", + -12.789535522460938 + ], + [ + "lf", + -12.789599418640137 + ], + [ + "▁Soil", + -12.789774894714355 + ], + [ + "▁insomnia", + -12.789803504943848 + ], + [ + "▁Waterloo", + -12.789937973022461 + ], + [ + "UM", + -12.789972305297852 + ], + [ + "▁Facts", + -12.790009498596191 + ], + [ + "▁slips", + -12.790011405944824 + ], + [ + "current", + -12.790040016174316 + ], + [ + "▁touchscreen", + -12.790044784545898 + ], + [ + "▁304", + -12.790120124816895 + ], + [ + "spring", + -12.790177345275879 + ], + [ + "▁occupants", + -12.790251731872559 + ], + [ + "▁1850", + -12.79045295715332 + ], + [ + "▁Mud", + -12.790460586547852 + ], + [ + "▁indefinitely", + -12.79049015045166 + ], + [ + "▁Producer", + -12.790509223937988 + ], + [ + "▁equitable", + -12.790542602539062 + ], + [ + "eer", + -12.790549278259277 + ], + [ + "▁contestants", + -12.790574073791504 + ], + [ + "▁Hassan", + -12.790596008300781 + ], + [ + "▁Quad", + -12.790610313415527 + ], + [ + "▁idol", + -12.790682792663574 + ], + [ + "ENT", + -12.790816307067871 + ], + [ + "little", + -12.790820121765137 + ], + [ + "▁fiery", + -12.790836334228516 + ], + [ + "▁Loving", + -12.790870666503906 + ], + [ + "▁Architect", + -12.790993690490723 + ], + [ + "▁bald", + -12.791054725646973 + ], + [ + "▁recruits", + -12.791097640991211 + ], + [ + "▁Till", + -12.79111099243164 + ], + [ + "setting", + -12.791234016418457 + ], + [ + "▁sam", + -12.791335105895996 + ], + [ + "▁slaughter", + -12.791342735290527 + ], + [ + "▁Raja", + -12.79136848449707 + ], + [ + "▁filings", + -12.791389465332031 + ], + [ + "▁stair", + -12.791412353515625 + ], + [ + "▁Mohammad", + -12.79141616821289 + ], + [ + "Did", + -12.791460037231445 + ], + [ + "▁shortages", + -12.791507720947266 + ], + [ + "probably", + -12.791529655456543 + ], + [ + "▁redesigned", + -12.791666030883789 + ], + [ + "▁monumental", + -12.791762351989746 + ], + [ + "leigh", + -12.791790962219238 + ], + [ + "▁courageous", + -12.791952133178711 + ], + [ + "▁lashes", + -12.792116165161133 + ], + [ + "▁finalized", + -12.79212474822998 + ], + [ + "▁Bis", + -12.792140007019043 + ], + [ + "▁busiest", + -12.792141914367676 + ], + [ + "▁overlapping", + -12.79222583770752 + ], + [ + "▁bustling", + -12.7922945022583 + ], + [ + "▁grips", + -12.792326927185059 + ], + [ + "▁Shenzhen", + -12.792383193969727 + ], + [ + "▁Wiley", + -12.792662620544434 + ], + [ + "▁kan", + -12.792682647705078 + ], + [ + "thing", + -12.792756080627441 + ], + [ + "▁Johns", + -12.79280948638916 + ], + [ + "▁Cynthia", + -12.792838096618652 + ], + [ + "▁helicopters", + -12.792848587036133 + ], + [ + "▁Cory", + -12.793009757995605 + ], + [ + "▁Vehicles", + -12.793033599853516 + ], + [ + "▁Pelosi", + -12.793054580688477 + ], + [ + "▁Dial", + -12.793103218078613 + ], + [ + "▁Ada", + -12.793225288391113 + ], + [ + "▁silky", + -12.793391227722168 + ], + [ + "▁rob", + -12.793502807617188 + ], + [ + "▁Bedford", + -12.793525695800781 + ], + [ + "▁Shan", + -12.793612480163574 + ], + [ + "Many", + -12.793643951416016 + ], + [ + "▁Plot", + -12.793815612792969 + ], + [ + "▁realism", + -12.793869018554688 + ], + [ + "htm", + -12.793913841247559 + ], + [ + "worker", + -12.793915748596191 + ], + [ + "▁carcinoma", + -12.793967247009277 + ], + [ + "▁Builders", + -12.794074058532715 + ], + [ + "▁Buhari", + -12.794093132019043 + ], + [ + "▁bracelets", + -12.794156074523926 + ], + [ + "▁nicotine", + -12.794206619262695 + ], + [ + "▁Moody", + -12.794357299804688 + ], + [ + "▁deluxe", + -12.79435920715332 + ], + [ + "▁bu", + -12.794458389282227 + ], + [ + "▁Wed", + -12.794587135314941 + ], + [ + "November", + -12.794596672058105 + ], + [ + "▁discourage", + -12.794673919677734 + ], + [ + "▁Hate", + -12.794710159301758 + ], + [ + "▁withdrew", + -12.794891357421875 + ], + [ + "▁Directions", + -12.794896125793457 + ], + [ + "dir", + -12.794934272766113 + ], + [ + "abi", + -12.794962882995605 + ], + [ + "▁Payments", + -12.79518985748291 + ], + [ + "▁recorder", + -12.795199394226074 + ], + [ + "ische", + -12.795319557189941 + ], + [ + "BT", + -12.7953462600708 + ], + [ + "▁fermentation", + -12.795416831970215 + ], + [ + "▁Aston", + -12.795502662658691 + ], + [ + "▁trustees", + -12.795507431030273 + ], + [ + "nc", + -12.795720100402832 + ], + [ + "▁1922", + -12.79572868347168 + ], + [ + "▁STAR", + -12.795741081237793 + ], + [ + "▁preventative", + -12.795787811279297 + ], + [ + "▁riot", + -12.795812606811523 + ], + [ + "▁Santos", + -12.795815467834473 + ], + [ + "president", + -12.795825958251953 + ], + [ + "▁raffle", + -12.795881271362305 + ], + [ + "Neill", + -12.79589557647705 + ], + [ + "▁unconstitutional", + -12.796162605285645 + ], + [ + "Online", + -12.796212196350098 + ], + [ + "beck", + -12.796300888061523 + ], + [ + "▁ailments", + -12.79641056060791 + ], + [ + "▁Maharashtra", + -12.796415328979492 + ], + [ + "▁paycheck", + -12.79642391204834 + ], + [ + "▁Animation", + -12.796462059020996 + ], + [ + "listed", + -12.796632766723633 + ], + [ + "▁handset", + -12.796688079833984 + ], + [ + "Year", + -12.796825408935547 + ], + [ + "▁scissors", + -12.796875 + ], + [ + "bur", + -12.796920776367188 + ], + [ + "▁citations", + -12.79694938659668 + ], + [ + "▁Treasurer", + -12.796977043151855 + ], + [ + "▁IMF", + -12.79703140258789 + ], + [ + "▁narrowly", + -12.797065734863281 + ], + [ + "▁Cage", + -12.79715347290039 + ], + [ + "▁Rama", + -12.797164916992188 + ], + [ + "▁Rolls", + -12.7971773147583 + ], + [ + "▁simulate", + -12.797208786010742 + ], + [ + "▁sided", + -12.797211647033691 + ], + [ + "▁Frances", + -12.797284126281738 + ], + [ + "▁rpm", + -12.797493934631348 + ], + [ + "credit", + -12.797830581665039 + ], + [ + "▁dresser", + -12.79792594909668 + ], + [ + "arian", + -12.79796028137207 + ], + [ + "XL", + -12.798014640808105 + ], + [ + "が", + -12.798032760620117 + ], + [ + "▁NB", + -12.798100471496582 + ], + [ + "▁Midnight", + -12.798192024230957 + ], + [ + "▁Packaging", + -12.798197746276855 + ], + [ + "▁Liability", + -12.798371315002441 + ], + [ + "▁pinpoint", + -12.798392295837402 + ], + [ + "▁SITE", + -12.798394203186035 + ], + [ + "▁gland", + -12.79841423034668 + ], + [ + "▁Jacket", + -12.798456192016602 + ], + [ + "▁sacrificing", + -12.798498153686523 + ], + [ + "ient", + -12.798545837402344 + ], + [ + "▁goose", + -12.798569679260254 + ], + [ + "WS", + -12.798578262329102 + ], + [ + "▁Alien", + -12.798652648925781 + ], + [ + "chin", + -12.798657417297363 + ], + [ + "▁Fold", + -12.798667907714844 + ], + [ + "▁drowning", + -12.798758506774902 + ], + [ + "▁Conditioning", + -12.798783302307129 + ], + [ + "▁concession", + -12.79896354675293 + ], + [ + "ete", + -12.799134254455566 + ], + [ + "▁incapable", + -12.799137115478516 + ], + [ + "▁Cathy", + -12.799163818359375 + ], + [ + "▁Kur", + -12.799163818359375 + ], + [ + "▁replacements", + -12.79917049407959 + ], + [ + "▁magnets", + -12.799216270446777 + ], + [ + "▁Blogger", + -12.799260139465332 + ], + [ + "▁Recipe", + -12.799427032470703 + ], + [ + "▁Agile", + -12.799478530883789 + ], + [ + "certified", + -12.799538612365723 + ], + [ + "das", + -12.799559593200684 + ], + [ + "▁scrolling", + -12.799577713012695 + ], + [ + "linked", + -12.799578666687012 + ], + [ + "▁tally", + -12.799598693847656 + ], + [ + "▁brow", + -12.799614906311035 + ], + [ + "▁Ras", + -12.799646377563477 + ], + [ + "▁Minecraft", + -12.79964828491211 + ], + [ + "dark", + -12.799713134765625 + ], + [ + "root", + -12.799844741821289 + ], + [ + "▁Import", + -12.799858093261719 + ], + [ + "never", + -12.799873352050781 + ], + [ + "168", + -12.799941062927246 + ], + [ + "hl", + -12.799993515014648 + ], + [ + "▁Sponsor", + -12.800175666809082 + ], + [ + "▁hum", + -12.800189971923828 + ], + [ + "average", + -12.80024242401123 + ], + [ + "▁Macron", + -12.800244331359863 + ], + [ + "▁violates", + -12.800315856933594 + ], + [ + "▁extras", + -12.800323486328125 + ], + [ + "▁Upgrade", + -12.800457000732422 + ], + [ + "▁accelerating", + -12.800695419311523 + ], + [ + "▁abruptly", + -12.800738334655762 + ], + [ + "▁closures", + -12.800774574279785 + ], + [ + "▁tutors", + -12.800840377807617 + ], + [ + "▁honoured", + -12.80090618133545 + ], + [ + "▁hairstyle", + -12.800971031188965 + ], + [ + "▁Amen", + -12.801015853881836 + ], + [ + "▁Canterbury", + -12.801015853881836 + ], + [ + "▁newcomers", + -12.801058769226074 + ], + [ + "▁rallies", + -12.801087379455566 + ], + [ + "director", + -12.80131721496582 + ], + [ + "▁disappears", + -12.801322937011719 + ], + [ + "▁Intellectual", + -12.801356315612793 + ], + [ + "▁formations", + -12.801392555236816 + ], + [ + "LO", + -12.801395416259766 + ], + [ + "▁Icon", + -12.801528930664062 + ], + [ + "▁tortured", + -12.801575660705566 + ], + [ + "▁Carolyn", + -12.801629066467285 + ], + [ + "▁allocate", + -12.801656723022461 + ], + [ + "thank", + -12.801764488220215 + ], + [ + "alo", + -12.801830291748047 + ], + [ + "▁Mutual", + -12.801918029785156 + ], + [ + "▁hustle", + -12.801919937133789 + ], + [ + "▁uptake", + -12.801944732666016 + ], + [ + "▁blink", + -12.80196475982666 + ], + [ + "ened", + -12.802019119262695 + ], + [ + "▁waved", + -12.802201271057129 + ], + [ + "▁minimise", + -12.802207946777344 + ], + [ + "kill", + -12.802215576171875 + ], + [ + "nam", + -12.802215576171875 + ], + [ + "▁Xavier", + -12.802225112915039 + ], + [ + "▁commanding", + -12.80245590209961 + ], + [ + "iana", + -12.802518844604492 + ], + [ + "ée", + -12.802555084228516 + ], + [ + "▁tummy", + -12.802628517150879 + ], + [ + "▁Corinthians", + -12.80263900756836 + ], + [ + "▁CON", + -12.802769660949707 + ], + [ + "▁MH", + -12.802770614624023 + ], + [ + "▁dinosaur", + -12.80284595489502 + ], + [ + "▁waterfalls", + -12.803051948547363 + ], + [ + "▁Ling", + -12.803141593933105 + ], + [ + "▁tsunami", + -12.80316162109375 + ], + [ + "▁rabbits", + -12.803367614746094 + ], + [ + "▁Sixth", + -12.803644180297852 + ], + [ + "enko", + -12.803736686706543 + ], + [ + "▁Kas", + -12.80380630493164 + ], + [ + "▁Lauderdale", + -12.803890228271484 + ], + [ + "isha", + -12.803930282592773 + ], + [ + "▁138", + -12.804030418395996 + ], + [ + "▁Disorder", + -12.804091453552246 + ], + [ + "▁Identification", + -12.804430961608887 + ], + [ + "▁rewrite", + -12.804481506347656 + ], + [ + "▁Heck", + -12.804625511169434 + ], + [ + "▁sustaining", + -12.80463695526123 + ], + [ + "▁LEDs", + -12.804658889770508 + ], + [ + "hours", + -12.804680824279785 + ], + [ + "▁dotted", + -12.804691314697266 + ], + [ + "▁Photograph", + -12.804725646972656 + ], + [ + "services", + -12.804728507995605 + ], + [ + "▁Techniques", + -12.804890632629395 + ], + [ + "▁Seminar", + -12.804908752441406 + ], + [ + "▁crunchy", + -12.804941177368164 + ], + [ + "▁Schwartz", + -12.804976463317871 + ], + [ + "▁Kick", + -12.805154800415039 + ], + [ + "▁financed", + -12.805219650268555 + ], + [ + "▁suffice", + -12.805425643920898 + ], + [ + "▁endeavour", + -12.805471420288086 + ], + [ + "SB", + -12.805542945861816 + ], + [ + "cool", + -12.80557918548584 + ], + [ + "▁Cannon", + -12.805597305297852 + ], + [ + "▁substituted", + -12.805628776550293 + ], + [ + "▁Cooperative", + -12.805702209472656 + ], + [ + "▁unseen", + -12.805729866027832 + ], + [ + "▁nostalgic", + -12.805875778198242 + ], + [ + "▁glaze", + -12.80594539642334 + ], + [ + "▁shotgun", + -12.805981636047363 + ], + [ + "▁congratulate", + -12.806015014648438 + ], + [ + "▁Uk", + -12.806187629699707 + ], + [ + "▁lotion", + -12.80620002746582 + ], + [ + "▁owl", + -12.80626106262207 + ], + [ + "▁Publishers", + -12.806389808654785 + ], + [ + "▁screams", + -12.806415557861328 + ], + [ + "▁cortex", + -12.806428909301758 + ], + [ + "▁Sergeant", + -12.806462287902832 + ], + [ + "largest", + -12.80649185180664 + ], + [ + "▁Gan", + -12.806675910949707 + ], + [ + "▁sacks", + -12.806729316711426 + ], + [ + "▁handler", + -12.806743621826172 + ], + [ + "nl", + -12.806745529174805 + ], + [ + "▁Regina", + -12.806841850280762 + ], + [ + "▁backups", + -12.80717658996582 + ], + [ + "▁brightest", + -12.807330131530762 + ], + [ + "▁Encyclopedia", + -12.807356834411621 + ], + [ + "mostly", + -12.80739974975586 + ], + [ + "▁uranium", + -12.807400703430176 + ], + [ + "▁Riding", + -12.8075590133667 + ], + [ + "▁Tata", + -12.80758285522461 + ], + [ + "heavy", + -12.807610511779785 + ], + [ + "▁worthless", + -12.807610511779785 + ], + [ + "hart", + -12.807642936706543 + ], + [ + "▁alteration", + -12.807827949523926 + ], + [ + "▁Monaco", + -12.807842254638672 + ], + [ + "▁Opposition", + -12.807985305786133 + ], + [ + "201", + -12.80800724029541 + ], + [ + "▁vanished", + -12.808062553405762 + ], + [ + "count", + -12.808161735534668 + ], + [ + "photo", + -12.808250427246094 + ], + [ + "▁Alexandra", + -12.808252334594727 + ], + [ + "▁Nicolas", + -12.808307647705078 + ], + [ + "▁mediocre", + -12.808371543884277 + ], + [ + "▁Panasonic", + -12.808418273925781 + ], + [ + "almost", + -12.808466911315918 + ], + [ + "wife", + -12.808502197265625 + ], + [ + "▁Tibet", + -12.808557510375977 + ], + [ + "▁802", + -12.808672904968262 + ], + [ + "▁В", + -12.808694839477539 + ], + [ + "▁ABOUT", + -12.808765411376953 + ], + [ + "▁Preparation", + -12.808813095092773 + ], + [ + "▁Claim", + -12.80890941619873 + ], + [ + "▁Ay", + -12.808926582336426 + ], + [ + "IB", + -12.80893611907959 + ], + [ + "▁melodies", + -12.808937072753906 + ], + [ + "create", + -12.808952331542969 + ], + [ + "▁Mommy", + -12.809154510498047 + ], + [ + "330", + -12.809173583984375 + ], + [ + "▁Sta", + -12.809203147888184 + ], + [ + "▁Tagged", + -12.809257507324219 + ], + [ + "▁barred", + -12.809283256530762 + ], + [ + "▁ponder", + -12.809479713439941 + ], + [ + "▁hugs", + -12.809516906738281 + ], + [ + "▁PER", + -12.809619903564453 + ], + [ + "▁kettle", + -12.809652328491211 + ], + [ + "▁Rajasthan", + -12.809700965881348 + ], + [ + "▁IPO", + -12.809760093688965 + ], + [ + "▁Cube", + -12.809849739074707 + ], + [ + "▁maths", + -12.809990882873535 + ], + [ + "▁Rafael", + -12.810171127319336 + ], + [ + "▁Stamp", + -12.810200691223145 + ], + [ + "▁affordability", + -12.810225486755371 + ], + [ + "vers", + -12.810294151306152 + ], + [ + "▁Survival", + -12.810403823852539 + ], + [ + "▁Angle", + -12.810410499572754 + ], + [ + "▁footing", + -12.810471534729004 + ], + [ + "▁parchment", + -12.81050968170166 + ], + [ + "▁ridiculously", + -12.810539245605469 + ], + [ + "▁WB", + -12.81055736541748 + ], + [ + "▁operative", + -12.810604095458984 + ], + [ + "▁smokers", + -12.810699462890625 + ], + [ + "▁Sc", + -12.810746192932129 + ], + [ + "▁Guides", + -12.81076717376709 + ], + [ + "▁pathology", + -12.810791969299316 + ], + [ + "▁refining", + -12.81081771850586 + ], + [ + "▁hailed", + -12.810826301574707 + ], + [ + "▁bankers", + -12.810873985290527 + ], + [ + "▁kale", + -12.81087589263916 + ], + [ + "▁cuff", + -12.810935974121094 + ], + [ + "▁CAT", + -12.810980796813965 + ], + [ + "▁Directive", + -12.81101131439209 + ], + [ + "▁Naomi", + -12.811013221740723 + ], + [ + "▁morally", + -12.811184883117676 + ], + [ + "▁Visiting", + -12.811253547668457 + ], + [ + "▁Punch", + -12.811260223388672 + ], + [ + "▁Trainer", + -12.811338424682617 + ], + [ + "▁optimizing", + -12.811381340026855 + ], + [ + "▁1924", + -12.81143569946289 + ], + [ + "▁Powers", + -12.8114595413208 + ], + [ + "▁inhibit", + -12.811474800109863 + ], + [ + "▁latex", + -12.811518669128418 + ], + [ + "▁Kos", + -12.811575889587402 + ], + [ + "▁Shelter", + -12.811638832092285 + ], + [ + "▁Accessed", + -12.811655044555664 + ], + [ + "▁UTC", + -12.811805725097656 + ], + [ + "▁Johannesburg", + -12.811914443969727 + ], + [ + "▁Vimeo", + -12.811922073364258 + ], + [ + "▁cursor", + -12.81196117401123 + ], + [ + "BY", + -12.812012672424316 + ], + [ + "▁spikes", + -12.812088966369629 + ], + [ + "▁emailing", + -12.812183380126953 + ], + [ + "▁XI", + -12.812188148498535 + ], + [ + "1993", + -12.812347412109375 + ], + [ + "Ch", + -12.812392234802246 + ], + [ + "▁premiered", + -12.812409400939941 + ], + [ + "▁Hmm", + -12.812532424926758 + ], + [ + "▁Cry", + -12.81255054473877 + ], + [ + "▁departing", + -12.812605857849121 + ], + [ + "▁bursting", + -12.812617301940918 + ], + [ + "▁Gravity", + -12.812621116638184 + ], + [ + "▁Armenia", + -12.812666893005371 + ], + [ + "▁nestled", + -12.812756538391113 + ], + [ + "▁Napoleon", + -12.812798500061035 + ], + [ + "▁frosting", + -12.812911033630371 + ], + [ + "▁Chess", + -12.812915802001953 + ], + [ + "▁dinosaurs", + -12.81295394897461 + ], + [ + "▁1913", + -12.812980651855469 + ], + [ + "playing", + -12.812999725341797 + ], + [ + "bc", + -12.813029289245605 + ], + [ + "▁coli", + -12.813050270080566 + ], + [ + "▁responders", + -12.813056945800781 + ], + [ + "▁tuck", + -12.81306266784668 + ], + [ + "▁avoidance", + -12.813138008117676 + ], + [ + "▁Qualcomm", + -12.813155174255371 + ], + [ + "▁plantation", + -12.81324577331543 + ], + [ + "HO", + -12.813358306884766 + ], + [ + "ن", + -12.813372611999512 + ], + [ + "▁Carmen", + -12.81348705291748 + ], + [ + "▁vault", + -12.813587188720703 + ], + [ + "awa", + -12.813617706298828 + ], + [ + "▁superintendent", + -12.813825607299805 + ], + [ + "▁Bags", + -12.81389045715332 + ], + [ + "▁complexities", + -12.813905715942383 + ], + [ + "▁leakage", + -12.813925743103027 + ], + [ + "VE", + -12.814069747924805 + ], + [ + "▁Elk", + -12.814116477966309 + ], + [ + "▁Cadillac", + -12.814180374145508 + ], + [ + "▁Rust", + -12.814238548278809 + ], + [ + "▁cape", + -12.814287185668945 + ], + [ + "▁Bingo", + -12.814380645751953 + ], + [ + "▁Dolphins", + -12.814637184143066 + ], + [ + "▁1921", + -12.814794540405273 + ], + [ + "▁Geoff", + -12.814902305603027 + ], + [ + "▁Implementation", + -12.814908981323242 + ], + [ + "▁interruption", + -12.814918518066406 + ], + [ + "▁marital", + -12.814934730529785 + ], + [ + "▁1923", + -12.815089225769043 + ], + [ + "▁Triangle", + -12.815096855163574 + ], + [ + "▁Fab", + -12.815176010131836 + ], + [ + "▁Giveaway", + -12.815377235412598 + ], + [ + "mails", + -12.815387725830078 + ], + [ + "▁palms", + -12.81545639038086 + ], + [ + "War", + -12.815472602844238 + ], + [ + "▁vis", + -12.815584182739258 + ], + [ + "rent", + -12.815619468688965 + ], + [ + "▁Nigel", + -12.815640449523926 + ], + [ + "▁impeccable", + -12.815703392028809 + ], + [ + "▁policing", + -12.815826416015625 + ], + [ + "ichi", + -12.815837860107422 + ], + [ + "▁indexes", + -12.815857887268066 + ], + [ + "▁1860", + -12.816252708435059 + ], + [ + "Once", + -12.816314697265625 + ], + [ + "▁Huang", + -12.816323280334473 + ], + [ + "▁RIGHT", + -12.816605567932129 + ], + [ + "▁emperor", + -12.816812515258789 + ], + [ + "▁REUTERS", + -12.816819190979004 + ], + [ + "▁duly", + -12.816893577575684 + ], + [ + "▁plateau", + -12.816899299621582 + ], + [ + "▁Blessed", + -12.816938400268555 + ], + [ + "▁Structural", + -12.817007064819336 + ], + [ + "▁carts", + -12.817113876342773 + ], + [ + "▁trimming", + -12.817245483398438 + ], + [ + "ign", + -12.81734561920166 + ], + [ + "▁comb", + -12.817350387573242 + ], + [ + "▁efficiencies", + -12.817459106445312 + ], + [ + "trip", + -12.817482948303223 + ], + [ + "▁Thoughts", + -12.817493438720703 + ], + [ + "▁honorable", + -12.81767749786377 + ], + [ + "▁outset", + -12.817682266235352 + ], + [ + "▁poop", + -12.817683219909668 + ], + [ + "▁Brew", + -12.8177490234375 + ], + [ + "chain", + -12.81787395477295 + ], + [ + "▁Remodel", + -12.817975044250488 + ], + [ + "▁Feedback", + -12.818185806274414 + ], + [ + "▁SDK", + -12.818225860595703 + ], + [ + "▁bland", + -12.818278312683105 + ], + [ + "▁radioactive", + -12.818282127380371 + ], + [ + "▁Imp", + -12.818349838256836 + ], + [ + "▁dissolve", + -12.818387031555176 + ], + [ + "▁VoIP", + -12.818405151367188 + ], + [ + "▁Responsible", + -12.818568229675293 + ], + [ + "232", + -12.81867790222168 + ], + [ + "но", + -12.818718910217285 + ], + [ + "▁downright", + -12.818743705749512 + ], + [ + "▁freshwater", + -12.818763732910156 + ], + [ + "▁Arabian", + -12.818774223327637 + ], + [ + "▁imagining", + -12.81883716583252 + ], + [ + "▁frying", + -12.819032669067383 + ], + [ + "▁optic", + -12.81904125213623 + ], + [ + "▁haunting", + -12.819051742553711 + ], + [ + "▁Stunning", + -12.819098472595215 + ], + [ + "▁datasets", + -12.819214820861816 + ], + [ + "▁har", + -12.81927490234375 + ], + [ + "▁Bruins", + -12.819299697875977 + ], + [ + "▁hr", + -12.819334983825684 + ], + [ + "▁205", + -12.819419860839844 + ], + [ + "▁caregiver", + -12.819437980651855 + ], + [ + "▁Transformation", + -12.81954288482666 + ], + [ + "above", + -12.819604873657227 + ], + [ + "▁Providers", + -12.819673538208008 + ], + [ + "▁sweating", + -12.819829940795898 + ], + [ + "imo", + -12.819937705993652 + ], + [ + "rose", + -12.819937705993652 + ], + [ + "▁headboard", + -12.81998348236084 + ], + [ + "▁Qui", + -12.820050239562988 + ], + [ + "▁NAS", + -12.820087432861328 + ], + [ + "▁Afterwards", + -12.820144653320312 + ], + [ + "isse", + -12.820235252380371 + ], + [ + "▁PF", + -12.820276260375977 + ], + [ + "ular", + -12.820390701293945 + ], + [ + "▁PCB", + -12.820549964904785 + ], + [ + "▁Goddess", + -12.820565223693848 + ], + [ + "▁blaze", + -12.820647239685059 + ], + [ + "▁Assuming", + -12.8207368850708 + ], + [ + "▁excerpt", + -12.820938110351562 + ], + [ + "sion", + -12.820988655090332 + ], + [ + "▁polishing", + -12.821142196655273 + ], + [ + "▁Barber", + -12.821236610412598 + ], + [ + "▁sch", + -12.82137393951416 + ], + [ + "ifying", + -12.821374893188477 + ], + [ + "▁Everyday", + -12.821417808532715 + ], + [ + "Dec", + -12.821451187133789 + ], + [ + "▁Shirt", + -12.82150936126709 + ], + [ + "▁Lit", + -12.82160472869873 + ], + [ + "ranging", + -12.821605682373047 + ], + [ + "▁persuaded", + -12.821606636047363 + ], + [ + "▁towing", + -12.821642875671387 + ], + [ + "▁molded", + -12.821664810180664 + ], + [ + "▁overdue", + -12.821700096130371 + ], + [ + "▁massively", + -12.821718215942383 + ], + [ + "Only", + -12.821817398071289 + ], + [ + "professional", + -12.82182788848877 + ], + [ + "▁furry", + -12.8218994140625 + ], + [ + "▁stuffing", + -12.821937561035156 + ], + [ + "DI", + -12.821946144104004 + ], + [ + "▁LIKE", + -12.821983337402344 + ], + [ + "▁Jerome", + -12.822076797485352 + ], + [ + "▁Baghdad", + -12.822110176086426 + ], + [ + "▁Phi", + -12.822165489196777 + ], + [ + "▁Foam", + -12.822291374206543 + ], + [ + "▁Vita", + -12.822393417358398 + ], + [ + "▁reinforcement", + -12.822461128234863 + ], + [ + "haus", + -12.822577476501465 + ], + [ + "▁coded", + -12.822649955749512 + ], + [ + "▁Highlights", + -12.822710037231445 + ], + [ + "sports", + -12.822732925415039 + ], + [ + "▁Penguin", + -12.82275676727295 + ], + [ + "once", + -12.822782516479492 + ], + [ + "▁Exterior", + -12.822810173034668 + ], + [ + "▁Camden", + -12.8228759765625 + ], + [ + "▁groundwater", + -12.823009490966797 + ], + [ + "LR", + -12.823039054870605 + ], + [ + "▁intellect", + -12.823177337646484 + ], + [ + "▁constituted", + -12.82327651977539 + ], + [ + "▁INFORMATION", + -12.823412895202637 + ], + [ + "▁diplomacy", + -12.823434829711914 + ], + [ + "games", + -12.823466300964355 + ], + [ + "▁Champagne", + -12.823529243469238 + ], + [ + "▁suspense", + -12.82361888885498 + ], + [ + "▁vodka", + -12.82361888885498 + ], + [ + "mounted", + -12.823680877685547 + ], + [ + "▁1870", + -12.82369327545166 + ], + [ + "▁valleys", + -12.823750495910645 + ], + [ + "▁distinctly", + -12.823868751525879 + ], + [ + "▁estrogen", + -12.824161529541016 + ], + [ + "▁cheque", + -12.824163436889648 + ], + [ + "▁Waiting", + -12.824206352233887 + ], + [ + "▁leased", + -12.824206352233887 + ], + [ + "▁Salman", + -12.82421588897705 + ], + [ + "▁Ventures", + -12.824393272399902 + ], + [ + "▁Yourself", + -12.824403762817383 + ], + [ + "▁Marketplace", + -12.8245267868042 + ], + [ + "▁Epi", + -12.824533462524414 + ], + [ + "cialis", + -12.82453441619873 + ], + [ + "▁Ai", + -12.824556350708008 + ], + [ + "▁polo", + -12.824631690979004 + ], + [ + "▁earthquakes", + -12.82468032836914 + ], + [ + "▁Pulse", + -12.824825286865234 + ], + [ + "▁unofficial", + -12.824844360351562 + ], + [ + "▁scout", + -12.82485580444336 + ], + [ + "▁Ein", + -12.824980735778809 + ], + [ + "▁Achievement", + -12.82499885559082 + ], + [ + "▁Bern", + -12.825119972229004 + ], + [ + "NI", + -12.825247764587402 + ], + [ + "▁envisioned", + -12.825308799743652 + ], + [ + "▁indices", + -12.825337409973145 + ], + [ + "▁pigment", + -12.825362205505371 + ], + [ + "▁surname", + -12.825387001037598 + ], + [ + "▁seventy", + -12.825634956359863 + ], + [ + "▁Tribunal", + -12.825647354125977 + ], + [ + "▁Lambert", + -12.825711250305176 + ], + [ + "▁marrow", + -12.825790405273438 + ], + [ + "▁phosphate", + -12.825879096984863 + ], + [ + "▁motivating", + -12.825891494750977 + ], + [ + "▁133", + -12.825905799865723 + ], + [ + "▁dime", + -12.825905799865723 + ], + [ + "▁beige", + -12.825922966003418 + ], + [ + "Space", + -12.825928688049316 + ], + [ + "▁212", + -12.825963973999023 + ], + [ + "▁commencement", + -12.826026916503906 + ], + [ + "▁Mona", + -12.82603931427002 + ], + [ + "▁bully", + -12.826077461242676 + ], + [ + "▁regimes", + -12.826106071472168 + ], + [ + "▁averages", + -12.826129913330078 + ], + [ + "HE", + -12.826336860656738 + ], + [ + "▁surfaced", + -12.826382637023926 + ], + [ + "▁Luxembourg", + -12.826424598693848 + ], + [ + "▁youths", + -12.826570510864258 + ], + [ + "▁presses", + -12.82664680480957 + ], + [ + "▁Hol", + -12.826834678649902 + ], + [ + "▁Haley", + -12.826848983764648 + ], + [ + "▁Roberto", + -12.826899528503418 + ], + [ + "▁bikini", + -12.82697582244873 + ], + [ + "▁brighten", + -12.826990127563477 + ], + [ + "▁NEWS", + -12.826998710632324 + ], + [ + "▁False", + -12.82701587677002 + ], + [ + "▁mash", + -12.827095031738281 + ], + [ + "▁embarked", + -12.82734203338623 + ], + [ + "much", + -12.827345848083496 + ], + [ + "▁demolished", + -12.827465057373047 + ], + [ + "fair", + -12.82752513885498 + ], + [ + "▁exhaustion", + -12.827560424804688 + ], + [ + "▁Philly", + -12.827692031860352 + ], + [ + "▁robbed", + -12.82774829864502 + ], + [ + "▁Europeans", + -12.827795028686523 + ], + [ + "secret", + -12.827898025512695 + ], + [ + "▁pilgrimage", + -12.827963829040527 + ], + [ + "▁Sheikh", + -12.828035354614258 + ], + [ + "▁brides", + -12.828088760375977 + ], + [ + "▁Bir", + -12.828133583068848 + ], + [ + "▁progressively", + -12.828210830688477 + ], + [ + "MW", + -12.82828140258789 + ], + [ + "▁hepatitis", + -12.82828426361084 + ], + [ + "▁poke", + -12.8283052444458 + ], + [ + "▁gala", + -12.82839298248291 + ], + [ + "▁Scene", + -12.828486442565918 + ], + [ + "▁specials", + -12.828615188598633 + ], + [ + "▁bankrupt", + -12.828629493713379 + ], + [ + "▁enlarge", + -12.828825950622559 + ], + [ + "▁pneumonia", + -12.828825950622559 + ], + [ + "▁predicts", + -12.828911781311035 + ], + [ + "▁Greatest", + -12.8289213180542 + ], + [ + "stroke", + -12.829012870788574 + ], + [ + "▁apologized", + -12.82911205291748 + ], + [ + "▁TCP", + -12.829193115234375 + ], + [ + "▁booths", + -12.82927417755127 + ], + [ + "▁blueprint", + -12.829275131225586 + ], + [ + "▁oxidation", + -12.829296112060547 + ], + [ + "▁disadvantaged", + -12.829513549804688 + ], + [ + "kt", + -12.829615592956543 + ], + [ + "ages", + -12.829641342163086 + ], + [ + "▁envision", + -12.82967472076416 + ], + [ + "▁Helena", + -12.829705238342285 + ], + [ + "equipped", + -12.829706192016602 + ], + [ + "▁dominating", + -12.829724311828613 + ], + [ + "▁UX", + -12.829916954040527 + ], + [ + "▁PJ", + -12.829925537109375 + ], + [ + "vir", + -12.829997062683105 + ], + [ + "▁ra", + -12.829998016357422 + ], + [ + "▁vans", + -12.830007553100586 + ], + [ + "▁Beam", + -12.830138206481934 + ], + [ + "▁eccentric", + -12.830355644226074 + ], + [ + "▁vectors", + -12.830429077148438 + ], + [ + "▁offender", + -12.830652236938477 + ], + [ + "▁Sprinkle", + -12.830656051635742 + ], + [ + "▁inauguration", + -12.83074951171875 + ], + [ + "▁Tyson", + -12.830760955810547 + ], + [ + "▁Brenda", + -12.830854415893555 + ], + [ + "235", + -12.830891609191895 + ], + [ + "▁adrenaline", + -12.830921173095703 + ], + [ + "▁Setup", + -12.830944061279297 + ], + [ + "▁Lac", + -12.830976486206055 + ], + [ + "▁Zion", + -12.831049919128418 + ], + [ + "songwriter", + -12.831184387207031 + ], + [ + "▁Lamar", + -12.83132266998291 + ], + [ + "▁detectors", + -12.831343650817871 + ], + [ + "té", + -12.831400871276855 + ], + [ + "▁Cain", + -12.831400871276855 + ], + [ + "Share", + -12.831437110900879 + ], + [ + "▁socialism", + -12.831476211547852 + ], + [ + "▁expertly", + -12.831510543823242 + ], + [ + "▁rag", + -12.831535339355469 + ], + [ + "▁Weaver", + -12.831538200378418 + ], + [ + "▁Elm", + -12.83154010772705 + ], + [ + "gard", + -12.83156967163086 + ], + [ + "▁Cooperation", + -12.831704139709473 + ], + [ + "▁Innovative", + -12.831979751586914 + ], + [ + "▁FILE", + -12.832033157348633 + ], + [ + "▁clamp", + -12.832084655761719 + ], + [ + "ester", + -12.832120895385742 + ], + [ + "▁roommate", + -12.83212947845459 + ], + [ + "▁Kir", + -12.832134246826172 + ], + [ + "▁Comparison", + -12.832148551940918 + ], + [ + "▁Node", + -12.832164764404297 + ], + [ + "▁Haha", + -12.83216667175293 + ], + [ + "▁Tests", + -12.832220077514648 + ], + [ + "functional", + -12.832365989685059 + ], + [ + "▁construed", + -12.832368850708008 + ], + [ + "▁Noel", + -12.832398414611816 + ], + [ + "▁flipping", + -12.832406044006348 + ], + [ + "▁bishops", + -12.832414627075195 + ], + [ + "▁catastrophe", + -12.832416534423828 + ], + [ + "▁Retreat", + -12.832419395446777 + ], + [ + "loop", + -12.83242416381836 + ], + [ + "▁Capt", + -12.832496643066406 + ], + [ + "▁sugars", + -12.832536697387695 + ], + [ + "shell", + -12.832649230957031 + ], + [ + "ía", + -12.832681655883789 + ], + [ + "▁Boris", + -12.832730293273926 + ], + [ + "▁din", + -12.83277702331543 + ], + [ + "general", + -12.832788467407227 + ], + [ + "▁Avery", + -12.832965850830078 + ], + [ + "▁Mala", + -12.832984924316406 + ], + [ + "▁PLC", + -12.83304500579834 + ], + [ + "▁Fireplace", + -12.833157539367676 + ], + [ + "▁SERVICES", + -12.833196640014648 + ], + [ + "▁Sabbath", + -12.833264350891113 + ], + [ + "▁dipping", + -12.833449363708496 + ], + [ + "▁speculate", + -12.833457946777344 + ], + [ + "▁granddaughter", + -12.83346176147461 + ], + [ + "▁Alma", + -12.833481788635254 + ], + [ + "▁spiders", + -12.833566665649414 + ], + [ + "better", + -12.833579063415527 + ], + [ + "▁quilting", + -12.833605766296387 + ], + [ + "Search", + -12.833617210388184 + ], + [ + "▁outskirts", + -12.833648681640625 + ], + [ + "Little", + -12.833669662475586 + ], + [ + "▁Nielsen", + -12.833725929260254 + ], + [ + "▁refreshments", + -12.833756446838379 + ], + [ + "brown", + -12.83376693725586 + ], + [ + "▁supra", + -12.833818435668945 + ], + [ + "dig", + -12.834187507629395 + ], + [ + "▁Colts", + -12.83423900604248 + ], + [ + "▁Teddy", + -12.834282875061035 + ], + [ + "▁shrinking", + -12.834282875061035 + ], + [ + "▁Lack", + -12.83428955078125 + ], + [ + "WE", + -12.834310531616211 + ], + [ + "tti", + -12.834364891052246 + ], + [ + "Se", + -12.834412574768066 + ], + [ + "▁adorned", + -12.834423065185547 + ], + [ + "Boy", + -12.834444999694824 + ], + [ + "▁Lens", + -12.834494590759277 + ], + [ + "▁ascertain", + -12.834694862365723 + ], + [ + "▁Walnut", + -12.83474349975586 + ], + [ + "▁bestselling", + -12.834821701049805 + ], + [ + "▁upheld", + -12.83484172821045 + ], + [ + "▁Attention", + -12.834901809692383 + ], + [ + "▁Chronic", + -12.834969520568848 + ], + [ + "▁Bates", + -12.835031509399414 + ], + [ + "▁Nile", + -12.835274696350098 + ], + [ + "nin", + -12.835286140441895 + ], + [ + "▁Augustine", + -12.835403442382812 + ], + [ + "▁Ramsey", + -12.835480690002441 + ], + [ + "▁morale", + -12.835481643676758 + ], + [ + "▁casually", + -12.83552074432373 + ], + [ + "▁treadmill", + -12.83553409576416 + ], + [ + "▁starch", + -12.835597038269043 + ], + [ + "▁maneuver", + -12.835678100585938 + ], + [ + "▁Rider", + -12.835765838623047 + ], + [ + "▁Steele", + -12.835851669311523 + ], + [ + "▁importing", + -12.835887908935547 + ], + [ + "dl", + -12.83602237701416 + ], + [ + "▁factions", + -12.836215019226074 + ], + [ + "chief", + -12.836267471313477 + ], + [ + "▁Lecture", + -12.836320877075195 + ], + [ + "▁KA", + -12.836372375488281 + ], + [ + "▁850", + -12.836454391479492 + ], + [ + "choice", + -12.83665943145752 + ], + [ + "▁electrons", + -12.836686134338379 + ], + [ + "▁Sofia", + -12.836766242980957 + ], + [ + "GL", + -12.83685302734375 + ], + [ + "▁unrealistic", + -12.836935997009277 + ], + [ + "▁Gothic", + -12.836946487426758 + ], + [ + "▁marvel", + -12.836969375610352 + ], + [ + "▁fractures", + -12.836992263793945 + ], + [ + "▁villas", + -12.837093353271484 + ], + [ + "▁cowboy", + -12.837095260620117 + ], + [ + "▁IMO", + -12.837140083312988 + ], + [ + "▁damned", + -12.837150573730469 + ], + [ + "▁hinges", + -12.837244987487793 + ], + [ + "▁Dong", + -12.837322235107422 + ], + [ + "erman", + -12.83749008178711 + ], + [ + "FX", + -12.837618827819824 + ], + [ + "▁Default", + -12.837627410888672 + ], + [ + "▁Delicious", + -12.837858200073242 + ], + [ + "▁Valve", + -12.837958335876465 + ], + [ + "▁Maurice", + -12.838027000427246 + ], + [ + "▁suitcase", + -12.838157653808594 + ], + [ + "▁JM", + -12.83815860748291 + ], + [ + "▁proportional", + -12.838190078735352 + ], + [ + "▁Majority", + -12.838203430175781 + ], + [ + "▁Violet", + -12.838316917419434 + ], + [ + "▁tablespoons", + -12.83832836151123 + ], + [ + "▁bash", + -12.83841609954834 + ], + [ + "▁Dealer", + -12.838421821594238 + ], + [ + "▁Bride", + -12.838422775268555 + ], + [ + "▁reiterated", + -12.838441848754883 + ], + [ + "▁crowned", + -12.838546752929688 + ], + [ + "▁sonic", + -12.838626861572266 + ], + [ + "PI", + -12.83863639831543 + ], + [ + "▁softball", + -12.838652610778809 + ], + [ + "▁richness", + -12.838715553283691 + ], + [ + "▁metre", + -12.838765144348145 + ], + [ + "▁Cure", + -12.838788032531738 + ], + [ + "▁Unified", + -12.838977813720703 + ], + [ + "▁Pumpkin", + -12.839043617248535 + ], + [ + "▁simplistic", + -12.83910846710205 + ], + [ + "▁flattering", + -12.839224815368652 + ], + [ + "▁Aus", + -12.839228630065918 + ], + [ + "▁insisting", + -12.839299201965332 + ], + [ + "og", + -12.839367866516113 + ], + [ + "▁broadcaster", + -12.839424133300781 + ], + [ + "▁authorize", + -12.839524269104004 + ], + [ + "▁sleeper", + -12.839595794677734 + ], + [ + "▁LeBron", + -12.839605331420898 + ], + [ + "▁dragons", + -12.839747428894043 + ], + [ + "▁ions", + -12.83975601196289 + ], + [ + "▁erupted", + -12.839794158935547 + ], + [ + "▁Sauce", + -12.83985424041748 + ], + [ + "▁bundles", + -12.839872360229492 + ], + [ + "▁plywood", + -12.839902877807617 + ], + [ + "vor", + -12.83997631072998 + ], + [ + "▁Monument", + -12.839977264404297 + ], + [ + "pie", + -12.840033531188965 + ], + [ + "▁Wat", + -12.840102195739746 + ], + [ + "▁clashes", + -12.840106010437012 + ], + [ + "central", + -12.84011459350586 + ], + [ + "doc", + -12.840168952941895 + ], + [ + "▁maid", + -12.840194702148438 + ], + [ + "done", + -12.840293884277344 + ], + [ + "▁override", + -12.840533256530762 + ], + [ + "haven", + -12.840570449829102 + ], + [ + "zip", + -12.84058952331543 + ], + [ + "ABLE", + -12.840601921081543 + ], + [ + "▁Fighter", + -12.84066390991211 + ], + [ + "▁215", + -12.840686798095703 + ], + [ + "▁RSVP", + -12.84068775177002 + ], + [ + "ivity", + -12.840742111206055 + ], + [ + "reviewed", + -12.840805053710938 + ], + [ + "▁portrayal", + -12.840834617614746 + ], + [ + "▁rocked", + -12.84094524383545 + ], + [ + "▁rallied", + -12.840959548950195 + ], + [ + "▁camper", + -12.84103012084961 + ], + [ + "▁Ang", + -12.84118366241455 + ], + [ + "▁aggravated", + -12.841275215148926 + ], + [ + "▁mirrored", + -12.8413667678833 + ], + [ + "▁Robbie", + -12.841368675231934 + ], + [ + "▁corrupted", + -12.841442108154297 + ], + [ + "NG", + -12.84156608581543 + ], + [ + "▁ponds", + -12.841654777526855 + ], + [ + "▁plentiful", + -12.841795921325684 + ], + [ + "▁declares", + -12.841809272766113 + ], + [ + "▁Marin", + -12.841906547546387 + ], + [ + "▁pastoral", + -12.841928482055664 + ], + [ + "▁Bowie", + -12.84205436706543 + ], + [ + "▁painters", + -12.84205436706543 + ], + [ + "▁Telecom", + -12.842151641845703 + ], + [ + "▁Reds", + -12.842195510864258 + ], + [ + "▁GPA", + -12.842341423034668 + ], + [ + "▁Liberals", + -12.842348098754883 + ], + [ + "▁stumble", + -12.842402458190918 + ], + [ + "ref", + -12.842405319213867 + ], + [ + "▁subscribing", + -12.842535972595215 + ], + [ + "▁rampant", + -12.842641830444336 + ], + [ + "▁fungi", + -12.842708587646484 + ], + [ + "▁Meditation", + -12.84273910522461 + ], + [ + "▁Kol", + -12.842844009399414 + ], + [ + "▁gravy", + -12.843048095703125 + ], + [ + "▁veterinarian", + -12.843243598937988 + ], + [ + "▁deductions", + -12.843257904052734 + ], + [ + "▁seismic", + -12.843365669250488 + ], + [ + "▁Gomez", + -12.843507766723633 + ], + [ + "▁handicap", + -12.84350872039795 + ], + [ + "▁oats", + -12.843536376953125 + ], + [ + "▁awakening", + -12.843738555908203 + ], + [ + "▁Intermediate", + -12.843863487243652 + ], + [ + "т", + -12.843916893005371 + ], + [ + "▁Saturdays", + -12.843916893005371 + ], + [ + "▁Wai", + -12.843932151794434 + ], + [ + "▁mRNA", + -12.84428596496582 + ], + [ + "▁vigorous", + -12.8443021774292 + ], + [ + "▁hydration", + -12.844412803649902 + ], + [ + "▁129", + -12.844554901123047 + ], + [ + "▁Instructor", + -12.84457778930664 + ], + [ + "▁512", + -12.844599723815918 + ], + [ + "▁RELATED", + -12.8446044921875 + ], + [ + "▁headlights", + -12.844832420349121 + ], + [ + "▁tripod", + -12.844836235046387 + ], + [ + "defense", + -12.844897270202637 + ], + [ + "▁RGB", + -12.844954490661621 + ], + [ + "ej", + -12.845322608947754 + ], + [ + "▁Pablo", + -12.845355033874512 + ], + [ + "▁kidnapping", + -12.845455169677734 + ], + [ + "▁folds", + -12.845498085021973 + ], + [ + "▁propane", + -12.845574378967285 + ], + [ + "▁Stat", + -12.845596313476562 + ], + [ + "▁powerhouse", + -12.84565544128418 + ], + [ + "▁quilts", + -12.845751762390137 + ], + [ + "▁Conflict", + -12.845765113830566 + ], + [ + "▁Millions", + -12.845852851867676 + ], + [ + "▁achievable", + -12.845864295959473 + ], + [ + "▁pragmatic", + -12.845924377441406 + ], + [ + "▁whisper", + -12.84594440460205 + ], + [ + "Read", + -12.845967292785645 + ], + [ + "▁BL", + -12.845970153808594 + ], + [ + "▁Developers", + -12.846128463745117 + ], + [ + "▁plagued", + -12.846131324768066 + ], + [ + "▁motivational", + -12.84621524810791 + ], + [ + "▁unrest", + -12.84621810913086 + ], + [ + "NL", + -12.846231460571289 + ], + [ + "binding", + -12.846266746520996 + ], + [ + "▁plight", + -12.846317291259766 + ], + [ + "▁Koh", + -12.846360206604004 + ], + [ + "▁prestige", + -12.846433639526367 + ], + [ + "▁corps", + -12.846515655517578 + ], + [ + "Google", + -12.846516609191895 + ], + [ + "▁pioneers", + -12.846616744995117 + ], + [ + "pressure", + -12.846627235412598 + ], + [ + "ear", + -12.84662914276123 + ], + [ + "carbon", + -12.846648216247559 + ], + [ + "charge", + -12.846685409545898 + ], + [ + "▁Revolutionary", + -12.84669017791748 + ], + [ + "▁ambiance", + -12.846735000610352 + ], + [ + "▁inventive", + -12.846796989440918 + ], + [ + "▁Taken", + -12.846802711486816 + ], + [ + "▁axle", + -12.846829414367676 + ], + [ + "▁crest", + -12.846956253051758 + ], + [ + "▁Fuji", + -12.846973419189453 + ], + [ + "▁Ebola", + -12.847033500671387 + ], + [ + "rail", + -12.847036361694336 + ], + [ + "▁NI", + -12.847114562988281 + ], + [ + "▁curly", + -12.847116470336914 + ], + [ + "▁motherboard", + -12.8472261428833 + ], + [ + "▁Hz", + -12.847257614135742 + ], + [ + "▁expectancy", + -12.847280502319336 + ], + [ + "▁PPC", + -12.847293853759766 + ], + [ + "tner", + -12.84732437133789 + ], + [ + "▁cohesive", + -12.847389221191406 + ], + [ + "▁Berkshire", + -12.847405433654785 + ], + [ + "▁ergonomic", + -12.847489356994629 + ], + [ + "▁TVs", + -12.84753131866455 + ], + [ + "▁downturn", + -12.847535133361816 + ], + [ + "▁translating", + -12.847542762756348 + ], + [ + "Vi", + -12.847576141357422 + ], + [ + "▁evacuated", + -12.847646713256836 + ], + [ + "▁Dome", + -12.847692489624023 + ], + [ + "▁untreated", + -12.847877502441406 + ], + [ + "▁creatively", + -12.847940444946289 + ], + [ + "▁Wolves", + -12.848047256469727 + ], + [ + "▁Rwanda", + -12.848052024841309 + ], + [ + "▁bicycles", + -12.848053932189941 + ], + [ + "▁funk", + -12.848197937011719 + ], + [ + "▁puppet", + -12.848231315612793 + ], + [ + "▁Bol", + -12.848282814025879 + ], + [ + "▁unbiased", + -12.848570823669434 + ], + [ + "ander", + -12.8485746383667 + ], + [ + "▁punches", + -12.848589897155762 + ], + [ + "▁provocative", + -12.848670959472656 + ], + [ + "▁crackers", + -12.848690032958984 + ], + [ + "oy", + -12.848834037780762 + ], + [ + "▁Profit", + -12.848897933959961 + ], + [ + "▁BACK", + -12.84896183013916 + ], + [ + "▁Bas", + -12.849011421203613 + ], + [ + "▁pathetic", + -12.849019050598145 + ], + [ + "cream", + -12.849092483520508 + ], + [ + "▁petty", + -12.849160194396973 + ], + [ + "▁leftovers", + -12.849244117736816 + ], + [ + "ws", + -12.849296569824219 + ], + [ + "▁anthology", + -12.849427223205566 + ], + [ + "seed", + -12.849549293518066 + ], + [ + "▁diffusion", + -12.84957504272461 + ], + [ + "▁Consultants", + -12.849717140197754 + ], + [ + "▁conceive", + -12.849745750427246 + ], + [ + "▁trumpet", + -12.849939346313477 + ], + [ + "▁planetary", + -12.849979400634766 + ], + [ + "WC", + -12.84998607635498 + ], + [ + "▁Randall", + -12.850008964538574 + ], + [ + "280", + -12.850360870361328 + ], + [ + "▁134", + -12.85046100616455 + ], + [ + "▁Athletics", + -12.850518226623535 + ], + [ + "▁HC", + -12.850592613220215 + ], + [ + "txt", + -12.850665092468262 + ], + [ + "▁Aircraft", + -12.850777626037598 + ], + [ + "dd", + -12.850892066955566 + ], + [ + "▁SERVICE", + -12.85094928741455 + ], + [ + "▁individualized", + -12.850971221923828 + ], + [ + "▁Dover", + -12.851109504699707 + ], + [ + "▁bundled", + -12.851188659667969 + ], + [ + "▁disks", + -12.85132884979248 + ], + [ + "▁earnest", + -12.851339340209961 + ], + [ + "▁Curriculum", + -12.851404190063477 + ], + [ + "▁Covers", + -12.851420402526855 + ], + [ + "▁centrally", + -12.85149097442627 + ], + [ + "chu", + -12.851496696472168 + ], + [ + "▁Portsmouth", + -12.851548194885254 + ], + [ + "▁adversely", + -12.851591110229492 + ], + [ + "TU", + -12.851683616638184 + ], + [ + "▁tracing", + -12.85174560546875 + ], + [ + "Next", + -12.851812362670898 + ], + [ + "▁Jacques", + -12.851812362670898 + ], + [ + "BI", + -12.851950645446777 + ], + [ + "▁Tub", + -12.852009773254395 + ], + [ + "▁OVER", + -12.852045059204102 + ], + [ + "▁Supporting", + -12.852227210998535 + ], + [ + "▁Jungle", + -12.852243423461914 + ], + [ + "▁pardon", + -12.852245330810547 + ], + [ + "▁dent", + -12.852248191833496 + ], + [ + "GHz", + -12.85227108001709 + ], + [ + "▁substantive", + -12.85228443145752 + ], + [ + "2020", + -12.852375030517578 + ], + [ + "▁Mohamed", + -12.852426528930664 + ], + [ + "▁cock", + -12.852449417114258 + ], + [ + "▁Fran", + -12.852490425109863 + ], + [ + "▁retrospective", + -12.852572441101074 + ], + [ + "▁overlay", + -12.8527193069458 + ], + [ + "Reporting", + -12.852959632873535 + ], + [ + "▁Navigation", + -12.853002548217773 + ], + [ + "▁JJ", + -12.85301399230957 + ], + [ + "260", + -12.853102684020996 + ], + [ + "▁Shiva", + -12.853270530700684 + ], + [ + "▁compiler", + -12.853277206420898 + ], + [ + "▁frank", + -12.853330612182617 + ], + [ + "sales", + -12.853389739990234 + ], + [ + "▁131", + -12.85339069366455 + ], + [ + "▁deterioration", + -12.853482246398926 + ], + [ + "▁haircut", + -12.85350513458252 + ], + [ + "kes", + -12.853536605834961 + ], + [ + "▁seasoning", + -12.853541374206543 + ], + [ + "▁Carry", + -12.853551864624023 + ], + [ + "RN", + -12.853679656982422 + ], + [ + "▁Judith", + -12.85374927520752 + ], + [ + "▁Kendall", + -12.853799819946289 + ], + [ + "▁archival", + -12.853827476501465 + ], + [ + "▁Sort", + -12.85405158996582 + ], + [ + "dll", + -12.854074478149414 + ], + [ + "▁Clause", + -12.854086875915527 + ], + [ + "▁Knox", + -12.85409164428711 + ], + [ + "▁THERE", + -12.854092597961426 + ], + [ + "Code", + -12.85417652130127 + ], + [ + "▁breathable", + -12.854212760925293 + ], + [ + "▁Trader", + -12.854263305664062 + ], + [ + "OF", + -12.854284286499023 + ], + [ + "▁Kuala", + -12.85428524017334 + ], + [ + "▁Paid", + -12.854373931884766 + ], + [ + "UT", + -12.854393005371094 + ], + [ + "▁Len", + -12.854408264160156 + ], + [ + "cin", + -12.854475975036621 + ], + [ + "volume", + -12.854503631591797 + ], + [ + "slip", + -12.854519844055176 + ], + [ + "▁pharmacies", + -12.854545593261719 + ], + [ + "▁Brit", + -12.854605674743652 + ], + [ + "▁hinder", + -12.854606628417969 + ], + [ + "▁Earn", + -12.85464096069336 + ], + [ + "▁José", + -12.854702949523926 + ], + [ + "▁Increased", + -12.854840278625488 + ], + [ + "▁illicit", + -12.855063438415527 + ], + [ + "▁192", + -12.85506820678711 + ], + [ + "▁detectives", + -12.855070114135742 + ], + [ + "▁Ethiopian", + -12.855107307434082 + ], + [ + "▁sidelines", + -12.855188369750977 + ], + [ + "▁Destiny", + -12.855255126953125 + ], + [ + "▁Hastings", + -12.855420112609863 + ], + [ + "▁Socialist", + -12.855445861816406 + ], + [ + "▁criticised", + -12.855460166931152 + ], + [ + "▁Fuller", + -12.855500221252441 + ], + [ + "cas", + -12.855537414550781 + ], + [ + "▁Currency", + -12.85565185546875 + ], + [ + "▁bleed", + -12.855735778808594 + ], + [ + "▁Chiropractic", + -12.855748176574707 + ], + [ + "▁lends", + -12.8557767868042 + ], + [ + "▁comparatively", + -12.855790138244629 + ], + [ + "▁fungus", + -12.85598087310791 + ], + [ + "▁Bosch", + -12.855993270874023 + ], + [ + "▁Flu", + -12.855998039245605 + ], + [ + "CU", + -12.856013298034668 + ], + [ + "plane", + -12.85619068145752 + ], + [ + "▁amber", + -12.856266975402832 + ], + [ + "▁Ellie", + -12.856284141540527 + ], + [ + "OL", + -12.856292724609375 + ], + [ + "▁roaming", + -12.856388092041016 + ], + [ + "▁ATP", + -12.856392860412598 + ], + [ + "▁TF", + -12.85639762878418 + ], + [ + "▁implicit", + -12.856480598449707 + ], + [ + "▁shaving", + -12.856578826904297 + ], + [ + "▁ci", + -12.856597900390625 + ], + [ + "▁latency", + -12.8568754196167 + ], + [ + "▁whisky", + -12.856890678405762 + ], + [ + "▁depict", + -12.856900215148926 + ], + [ + "quin", + -12.856919288635254 + ], + [ + "ensis", + -12.856925010681152 + ], + [ + "▁136", + -12.85696029663086 + ], + [ + "▁complexion", + -12.856961250305176 + ], + [ + "▁millennials", + -12.857007026672363 + ], + [ + "▁Homer", + -12.857010841369629 + ], + [ + "gay", + -12.8571138381958 + ], + [ + "▁wreath", + -12.857126235961914 + ], + [ + "▁characterize", + -12.857205390930176 + ], + [ + "▁mommy", + -12.85727310180664 + ], + [ + "▁Bahrain", + -12.857340812683105 + ], + [ + "▁Meadows", + -12.857344627380371 + ], + [ + "ROM", + -12.857351303100586 + ], + [ + "▁Psalm", + -12.857355117797852 + ], + [ + "yang", + -12.85743522644043 + ], + [ + "▁Lap", + -12.857527732849121 + ], + [ + "▁Lone", + -12.857629776000977 + ], + [ + "▁Elijah", + -12.857672691345215 + ], + [ + "▁kitty", + -12.857710838317871 + ], + [ + "▁grazing", + -12.85806655883789 + ], + [ + "▁shaken", + -12.858086585998535 + ], + [ + "1992", + -12.85809326171875 + ], + [ + "▁glamour", + -12.8582124710083 + ], + [ + "▁trench", + -12.85827350616455 + ], + [ + "▁NEED", + -12.858285903930664 + ], + [ + "verse", + -12.85828971862793 + ], + [ + "▁Goodman", + -12.858320236206055 + ], + [ + "202", + -12.858322143554688 + ], + [ + "▁prominence", + -12.858323097229004 + ], + [ + "▁heir", + -12.858349800109863 + ], + [ + "▁buys", + -12.858480453491211 + ], + [ + "cover", + -12.858519554138184 + ], + [ + "▁jerk", + -12.85852336883545 + ], + [ + "▁Lea", + -12.858550071716309 + ], + [ + "▁Heidi", + -12.858588218688965 + ], + [ + "▁motivations", + -12.858750343322754 + ], + [ + "▁Weiss", + -12.858798027038574 + ], + [ + "▁shoreline", + -12.858798027038574 + ], + [ + "м", + -12.858935356140137 + ], + [ + "▁Kaiser", + -12.859025001525879 + ], + [ + "▁Archer", + -12.859034538269043 + ], + [ + "▁ballistic", + -12.859053611755371 + ], + [ + "▁bulletin", + -12.859240531921387 + ], + [ + "▁Resorts", + -12.859253883361816 + ], + [ + "▁trekking", + -12.859262466430664 + ], + [ + "BU", + -12.859274864196777 + ], + [ + "▁copyrighted", + -12.859333038330078 + ], + [ + "▁conceded", + -12.859333992004395 + ], + [ + "▁alternatively", + -12.8594388961792 + ], + [ + "▁Sq", + -12.859564781188965 + ], + [ + "onia", + -12.859763145446777 + ], + [ + "enter", + -12.859851837158203 + ], + [ + "▁nailed", + -12.859893798828125 + ], + [ + "Jan", + -12.859928131103516 + ], + [ + "Ko", + -12.859953880310059 + ], + [ + "▁nightlife", + -12.860032081604004 + ], + [ + "▁statistic", + -12.860084533691406 + ], + [ + "▁Input", + -12.860108375549316 + ], + [ + "▁Worcester", + -12.860156059265137 + ], + [ + "AU", + -12.860164642333984 + ], + [ + "▁procession", + -12.860212326049805 + ], + [ + "▁Toby", + -12.86026382446289 + ], + [ + "▁Tunnel", + -12.860456466674805 + ], + [ + "▁invaded", + -12.860517501831055 + ], + [ + "▁pope", + -12.860648155212402 + ], + [ + "▁Infantry", + -12.860675811767578 + ], + [ + "were", + -12.860678672790527 + ], + [ + "▁Watt", + -12.860806465148926 + ], + [ + "▁toasted", + -12.860888481140137 + ], + [ + "▁criticize", + -12.8609619140625 + ], + [ + "▁Supervisor", + -12.860998153686523 + ], + [ + "▁fruity", + -12.86110782623291 + ], + [ + "▁Airbnb", + -12.86120319366455 + ], + [ + "ock", + -12.861209869384766 + ], + [ + "▁implements", + -12.861248016357422 + ], + [ + "▁Collections", + -12.86127758026123 + ], + [ + "▁Observatory", + -12.86129093170166 + ], + [ + "▁Ng", + -12.861344337463379 + ], + [ + "▁deepen", + -12.861409187316895 + ], + [ + "Off", + -12.861469268798828 + ], + [ + "▁Crash", + -12.861478805541992 + ], + [ + "▁physique", + -12.861493110656738 + ], + [ + "▁goalie", + -12.861526489257812 + ], + [ + "▁shelving", + -12.861584663391113 + ], + [ + "▁Jorge", + -12.861810684204102 + ], + [ + "▁HIS", + -12.86181926727295 + ], + [ + "Lab", + -12.861912727355957 + ], + [ + "▁inward", + -12.861945152282715 + ], + [ + "▁skipping", + -12.862015724182129 + ], + [ + "coin", + -12.862030982971191 + ], + [ + "rian", + -12.862154006958008 + ], + [ + "▁Azerbaijan", + -12.862166404724121 + ], + [ + "▁Anaheim", + -12.862174034118652 + ], + [ + "▁nationalist", + -12.862268447875977 + ], + [ + "▁Overnight", + -12.862273216247559 + ], + [ + "▁irritating", + -12.862381935119629 + ], + [ + "▁nucleus", + -12.862395286560059 + ], + [ + "▁remix", + -12.862412452697754 + ], + [ + "▁Disk", + -12.862436294555664 + ], + [ + "▁stride", + -12.862486839294434 + ], + [ + "▁Gum", + -12.862624168395996 + ], + [ + "▁capitalize", + -12.862702369689941 + ], + [ + "▁Sword", + -12.862715721130371 + ], + [ + "▁wholesome", + -12.862820625305176 + ], + [ + "▁gi", + -12.862823486328125 + ], + [ + "Cal", + -12.862869262695312 + ], + [ + "▁courier", + -12.862895965576172 + ], + [ + "▁dubious", + -12.862926483154297 + ], + [ + "▁Quarterly", + -12.863139152526855 + ], + [ + "▁clarified", + -12.863226890563965 + ], + [ + "▁Bravo", + -12.863299369812012 + ], + [ + "▁longitudinal", + -12.863356590270996 + ], + [ + "▁levy", + -12.863365173339844 + ], + [ + "▁Tissue", + -12.863428115844727 + ], + [ + "▁retrieval", + -12.863462448120117 + ], + [ + "▁conveyed", + -12.86361312866211 + ], + [ + "▁Irvine", + -12.86366081237793 + ], + [ + "▁Weinstein", + -12.863673210144043 + ], + [ + "▁patterned", + -12.863713264465332 + ], + [ + "▁infantry", + -12.863762855529785 + ], + [ + "▁disappearing", + -12.863795280456543 + ], + [ + "▁Cod", + -12.863798141479492 + ], + [ + "▁Nail", + -12.863935470581055 + ], + [ + "▁exaggerated", + -12.864046096801758 + ], + [ + "rine", + -12.864063262939453 + ], + [ + "▁QC", + -12.864151000976562 + ], + [ + "▁Maintain", + -12.864206314086914 + ], + [ + "▁fucked", + -12.864225387573242 + ], + [ + "▁ping", + -12.864246368408203 + ], + [ + "Business", + -12.864302635192871 + ], + [ + "▁Persons", + -12.864405632019043 + ], + [ + "▁savory", + -12.864410400390625 + ], + [ + "nm", + -12.864519119262695 + ], + [ + "▁GIS", + -12.864544868469238 + ], + [ + "▁Lara", + -12.864850997924805 + ], + [ + "▁creams", + -12.864928245544434 + ], + [ + "▁constrained", + -12.864950180053711 + ], + [ + "▁325", + -12.865008354187012 + ], + [ + "▁Reporter", + -12.865028381347656 + ], + [ + "▁Killer", + -12.86506175994873 + ], + [ + "▁undesirable", + -12.865105628967285 + ], + [ + "▁Kra", + -12.865131378173828 + ], + [ + "▁spelled", + -12.865242958068848 + ], + [ + "▁Proper", + -12.86530590057373 + ], + [ + "network", + -12.865399360656738 + ], + [ + "▁pastors", + -12.865612030029297 + ], + [ + "lig", + -12.86568832397461 + ], + [ + "▁beg", + -12.865689277648926 + ], + [ + "▁Catalog", + -12.865808486938477 + ], + [ + "▁Equal", + -12.865829467773438 + ], + [ + "▁electorate", + -12.865886688232422 + ], + [ + "methyl", + -12.865900039672852 + ], + [ + "▁profiling", + -12.865961074829102 + ], + [ + "mediated", + -12.86606216430664 + ], + [ + "▁bomber", + -12.86628246307373 + ], + [ + "▁witty", + -12.866333961486816 + ], + [ + "▁disrupted", + -12.86635684967041 + ], + [ + "▁ambiguous", + -12.866494178771973 + ], + [ + "▁Pharmaceuticals", + -12.8665189743042 + ], + [ + "▁LL", + -12.866558074951172 + ], + [ + "▁innovate", + -12.866655349731445 + ], + [ + "▁Noise", + -12.86683464050293 + ], + [ + "▁specifies", + -12.866954803466797 + ], + [ + "▁addict", + -12.866998672485352 + ], + [ + "▁screenings", + -12.867000579833984 + ], + [ + "▁allegation", + -12.867010116577148 + ], + [ + "▁dynasty", + -12.867119789123535 + ], + [ + "▁Anita", + -12.867151260375977 + ], + [ + "▁uninterrupted", + -12.867340087890625 + ], + [ + "▁Tau", + -12.867558479309082 + ], + [ + "▁swollen", + -12.867679595947266 + ], + [ + "▁Beaver", + -12.867756843566895 + ], + [ + "Since", + -12.867762565612793 + ], + [ + "ه", + -12.867792129516602 + ], + [ + "▁Lebanese", + -12.868295669555664 + ], + [ + "▁timeframe", + -12.868338584899902 + ], + [ + "▁Boxing", + -12.868444442749023 + ], + [ + "▁draining", + -12.868467330932617 + ], + [ + "▁scientifically", + -12.868545532226562 + ], + [ + "▁Counseling", + -12.868582725524902 + ], + [ + "æ", + -12.868590354919434 + ], + [ + "▁wig", + -12.868680000305176 + ], + [ + "▁hormonal", + -12.868692398071289 + ], + [ + "▁homo", + -12.868753433227539 + ], + [ + "flex", + -12.868796348571777 + ], + [ + "laws", + -12.868797302246094 + ], + [ + "apa", + -12.868828773498535 + ], + [ + "▁vocalist", + -12.868839263916016 + ], + [ + "▁potty", + -12.868841171264648 + ], + [ + "bia", + -12.86890983581543 + ], + [ + "cur", + -12.868926048278809 + ], + [ + "▁Named", + -12.869044303894043 + ], + [ + "▁Rae", + -12.869075775146484 + ], + [ + "▁anchored", + -12.8692626953125 + ], + [ + "▁personalize", + -12.869312286376953 + ], + [ + "▁137", + -12.86935806274414 + ], + [ + "▁Elliot", + -12.869362831115723 + ], + [ + "▁lipid", + -12.869413375854492 + ], + [ + "▁helmets", + -12.869438171386719 + ], + [ + "▁hauling", + -12.86946964263916 + ], + [ + "mil", + -12.869574546813965 + ], + [ + "▁candid", + -12.869641304016113 + ], + [ + "▁vibrating", + -12.869790077209473 + ], + [ + "▁pointers", + -12.869803428649902 + ], + [ + "▁confessed", + -12.869953155517578 + ], + [ + "▁flavored", + -12.870048522949219 + ], + [ + "▁stew", + -12.870109558105469 + ], + [ + "▁bedside", + -12.870351791381836 + ], + [ + "▁devoid", + -12.870416641235352 + ], + [ + "▁coefficient", + -12.870551109313965 + ], + [ + "▁loveseat", + -12.870604515075684 + ], + [ + "NZ", + -12.870651245117188 + ], + [ + "▁і", + -12.870854377746582 + ], + [ + "February", + -12.870955467224121 + ], + [ + "▁censorship", + -12.870983123779297 + ], + [ + "▁Cookie", + -12.871111869812012 + ], + [ + "▁Philips", + -12.871199607849121 + ], + [ + "▁integer", + -12.871209144592285 + ], + [ + "▁Vet", + -12.871262550354004 + ], + [ + "▁separates", + -12.871305465698242 + ], + [ + "▁weaken", + -12.87131118774414 + ], + [ + "▁Bringing", + -12.871410369873047 + ], + [ + "platform", + -12.871427536010742 + ], + [ + "129", + -12.871443748474121 + ], + [ + "▁sediment", + -12.871539115905762 + ], + [ + "▁suppressed", + -12.871625900268555 + ], + [ + "▁remnants", + -12.871673583984375 + ], + [ + "114", + -12.871743202209473 + ], + [ + "▁Thermal", + -12.871796607971191 + ], + [ + "▁Portrait", + -12.871830940246582 + ], + [ + "▁inventor", + -12.872164726257324 + ], + [ + "▁chemo", + -12.872206687927246 + ], + [ + "roy", + -12.87229061126709 + ], + [ + "и", + -12.872430801391602 + ], + [ + "Cl", + -12.872432708740234 + ], + [ + "fc", + -12.872485160827637 + ], + [ + "lake", + -12.87259578704834 + ], + [ + "▁Broker", + -12.872754096984863 + ], + [ + "▁Swim", + -12.872824668884277 + ], + [ + "▁Contains", + -12.872888565063477 + ], + [ + "▁advocated", + -12.872947692871094 + ], + [ + "contact", + -12.872980117797852 + ], + [ + "▁Burning", + -12.872990608215332 + ], + [ + "▁berry", + -12.873122215270996 + ], + [ + "▁delights", + -12.873208999633789 + ], + [ + "▁neckline", + -12.873377799987793 + ], + [ + "▁bounty", + -12.87346076965332 + ], + [ + "▁Edwin", + -12.873465538024902 + ], + [ + "▁shortcomings", + -12.873517036437988 + ], + [ + "▁formulate", + -12.873520851135254 + ], + [ + "▁Sultan", + -12.873666763305664 + ], + [ + "▁rant", + -12.873695373535156 + ], + [ + "270", + -12.873749732971191 + ], + [ + "▁laundering", + -12.873784065246582 + ], + [ + "▁Lima", + -12.873797416687012 + ], + [ + "▁respecting", + -12.873810768127441 + ], + [ + "num", + -12.873982429504395 + ], + [ + "▁Yum", + -12.87399959564209 + ], + [ + "▁rents", + -12.874006271362305 + ], + [ + "▁obligated", + -12.87407398223877 + ], + [ + "trick", + -12.874112129211426 + ], + [ + "▁computed", + -12.874156951904297 + ], + [ + "▁arteries", + -12.87416934967041 + ], + [ + "▁presume", + -12.874201774597168 + ], + [ + "▁implication", + -12.874334335327148 + ], + [ + "▁Bars", + -12.874451637268066 + ], + [ + "▁Soap", + -12.874483108520508 + ], + [ + "▁competencies", + -12.874648094177246 + ], + [ + "▁Squadron", + -12.874695777893066 + ], + [ + "Smart", + -12.874734878540039 + ], + [ + "▁Habitat", + -12.87474536895752 + ], + [ + "▁Pendant", + -12.874824523925781 + ], + [ + "▁Elaine", + -12.87503433227539 + ], + [ + "bang", + -12.875036239624023 + ], + [ + "▁Damascus", + -12.875044822692871 + ], + [ + "▁Gina", + -12.875079154968262 + ], + [ + "However", + -12.875139236450195 + ], + [ + "really", + -12.875311851501465 + ], + [ + "▁redevelopment", + -12.875495910644531 + ], + [ + "▁alternating", + -12.87563705444336 + ], + [ + "▁institutes", + -12.875737190246582 + ], + [ + "▁turbines", + -12.875847816467285 + ], + [ + "Media", + -12.8759183883667 + ], + [ + "▁vine", + -12.875926971435547 + ], + [ + "▁Merchant", + -12.875944137573242 + ], + [ + "▁meme", + -12.876031875610352 + ], + [ + "▁sprawling", + -12.87610149383545 + ], + [ + "▁cr", + -12.876105308532715 + ], + [ + "▁cores", + -12.876123428344727 + ], + [ + "▁swell", + -12.876290321350098 + ], + [ + "▁Kang", + -12.876352310180664 + ], + [ + "▁protesting", + -12.876381874084473 + ], + [ + "▁Seasons", + -12.876619338989258 + ], + [ + "Angel", + -12.876696586608887 + ], + [ + "▁Brennan", + -12.876725196838379 + ], + [ + "▁budgeting", + -12.876731872558594 + ], + [ + "▁TP", + -12.87683391571045 + ], + [ + "▁stirred", + -12.876877784729004 + ], + [ + "lum", + -12.876952171325684 + ], + [ + "▁Frozen", + -12.87696361541748 + ], + [ + "Bi", + -12.87704849243164 + ], + [ + "spot", + -12.877069473266602 + ], + [ + "145", + -12.877224922180176 + ], + [ + "▁irrational", + -12.87726879119873 + ], + [ + "Cola", + -12.877288818359375 + ], + [ + "▁Texans", + -12.877328872680664 + ], + [ + "▁Kanye", + -12.877456665039062 + ], + [ + "▁sinister", + -12.877608299255371 + ], + [ + "▁FP", + -12.877680778503418 + ], + [ + "▁Bid", + -12.877697944641113 + ], + [ + "▁artworks", + -12.877700805664062 + ], + [ + "▁Kirby", + -12.877784729003906 + ], + [ + "▁Lol", + -12.877829551696777 + ], + [ + "mente", + -12.877835273742676 + ], + [ + "▁eg", + -12.877842903137207 + ], + [ + "▁Comcast", + -12.877950668334961 + ], + [ + "▁registers", + -12.878042221069336 + ], + [ + "▁pollutants", + -12.878059387207031 + ], + [ + "▁Brewery", + -12.8781099319458 + ], + [ + "▁Element", + -12.878314018249512 + ], + [ + "gra", + -12.878331184387207 + ], + [ + "▁rumours", + -12.878335952758789 + ], + [ + "▁Coco", + -12.878402709960938 + ], + [ + "▁womb", + -12.878432273864746 + ], + [ + "▁auxiliary", + -12.878504753112793 + ], + [ + "▁reclaimed", + -12.87857437133789 + ], + [ + "▁kitten", + -12.878579139709473 + ], + [ + "▁qu", + -12.878763198852539 + ], + [ + "▁raids", + -12.878793716430664 + ], + [ + "▁Zurich", + -12.87893009185791 + ], + [ + "tool", + -12.87898063659668 + ], + [ + "grown", + -12.879190444946289 + ], + [ + "▁Aires", + -12.879218101501465 + ], + [ + "▁Hiring", + -12.879236221313477 + ], + [ + "pic", + -12.879281044006348 + ], + [ + "▁Suzanne", + -12.87928581237793 + ], + [ + "sexual", + -12.879319190979004 + ], + [ + "ack", + -12.879364967346191 + ], + [ + "▁contraction", + -12.879463195800781 + ], + [ + "▁weary", + -12.87964153289795 + ], + [ + "▁presumed", + -12.879942893981934 + ], + [ + "▁cylinders", + -12.880038261413574 + ], + [ + "▁lineage", + -12.880088806152344 + ], + [ + "▁WT", + -12.880110740661621 + ], + [ + "▁Investor", + -12.880192756652832 + ], + [ + "associated", + -12.880303382873535 + ], + [ + "serving", + -12.88049602508545 + ], + [ + "▁ornament", + -12.880696296691895 + ], + [ + "▁Augusta", + -12.880853652954102 + ], + [ + "▁Detailed", + -12.88089370727539 + ], + [ + "▁Sensor", + -12.881037712097168 + ], + [ + "▁suction", + -12.881062507629395 + ], + [ + "▁Aspen", + -12.881072044372559 + ], + [ + "ador", + -12.881077766418457 + ], + [ + "graph", + -12.881112098693848 + ], + [ + "▁blossom", + -12.881113052368164 + ], + [ + "▁Crafts", + -12.881171226501465 + ], + [ + "▁Hollow", + -12.881196022033691 + ], + [ + "▁Medieval", + -12.88137435913086 + ], + [ + "cle", + -12.881451606750488 + ], + [ + "113", + -12.881693840026855 + ], + [ + "▁closets", + -12.88172435760498 + ], + [ + "▁succeeding", + -12.881726264953613 + ], + [ + "▁Morton", + -12.881861686706543 + ], + [ + "▁Conway", + -12.881980895996094 + ], + [ + "▁globalization", + -12.882116317749023 + ], + [ + "▁Clemson", + -12.882173538208008 + ], + [ + "▁Xiaomi", + -12.882187843322754 + ], + [ + "▁Screening", + -12.882195472717285 + ], + [ + "▁EE", + -12.882221221923828 + ], + [ + "▁Dominic", + -12.882279396057129 + ], + [ + "▁Anglican", + -12.882281303405762 + ], + [ + "▁420", + -12.882305145263672 + ], + [ + "Sun", + -12.882308006286621 + ], + [ + "▁tolerated", + -12.882326126098633 + ], + [ + "▁Lawson", + -12.882355690002441 + ], + [ + "▁Bash", + -12.882416725158691 + ], + [ + "bottom", + -12.88244915008545 + ], + [ + "nice", + -12.88245964050293 + ], + [ + "iger", + -12.882468223571777 + ], + [ + "▁Om", + -12.882505416870117 + ], + [ + "dem", + -12.882514953613281 + ], + [ + "▁sideways", + -12.882582664489746 + ], + [ + "▁KM", + -12.882607460021973 + ], + [ + "esa", + -12.882644653320312 + ], + [ + "▁Clan", + -12.882674217224121 + ], + [ + "▁Liv", + -12.88274097442627 + ], + [ + "▁ACA", + -12.88275146484375 + ], + [ + "▁Jasper", + -12.882773399353027 + ], + [ + "▁radicals", + -12.882781982421875 + ], + [ + "▁taps", + -12.882831573486328 + ], + [ + "ain", + -12.882847785949707 + ], + [ + "▁Lace", + -12.882882118225098 + ], + [ + "▁Damon", + -12.882903099060059 + ], + [ + "▁Elections", + -12.882913589477539 + ], + [ + "ges", + -12.88292121887207 + ], + [ + "▁kin", + -12.883031845092773 + ], + [ + "ación", + -12.883058547973633 + ], + [ + "▁Lafayette", + -12.883160591125488 + ], + [ + "LD", + -12.883187294006348 + ], + [ + "▁Trace", + -12.88325023651123 + ], + [ + "▁finer", + -12.883283615112305 + ], + [ + "▁quickest", + -12.883310317993164 + ], + [ + "▁Mitsubishi", + -12.883358001708984 + ], + [ + "End", + -12.883380889892578 + ], + [ + "▁scorer", + -12.883429527282715 + ], + [ + "▁insecurity", + -12.883448600769043 + ], + [ + "▁Recipes", + -12.883471488952637 + ], + [ + "▁Measures", + -12.88351058959961 + ], + [ + "▁secluded", + -12.883564949035645 + ], + [ + "▁Beacon", + -12.883570671081543 + ], + [ + "▁motifs", + -12.88362979888916 + ], + [ + "▁smoothie", + -12.883886337280273 + ], + [ + "rite", + -12.884052276611328 + ], + [ + "▁transformative", + -12.884153366088867 + ], + [ + "▁drafts", + -12.884196281433105 + ], + [ + "▁hacker", + -12.88420581817627 + ], + [ + "▁UFO", + -12.884330749511719 + ], + [ + "▁swallowed", + -12.884394645690918 + ], + [ + "▁ITS", + -12.884408950805664 + ], + [ + "▁surrendered", + -12.884571075439453 + ], + [ + "▁runtime", + -12.884575843811035 + ], + [ + "▁glare", + -12.884653091430664 + ], + [ + "▁Shared", + -12.884668350219727 + ], + [ + "▁Powerful", + -12.884673118591309 + ], + [ + "▁betrayal", + -12.88488483428955 + ], + [ + "▁Refer", + -12.884936332702637 + ], + [ + "Sa", + -12.885108947753906 + ], + [ + "▁hospitalized", + -12.885110855102539 + ], + [ + "▁requisite", + -12.885150909423828 + ], + [ + "▁Leah", + -12.885213851928711 + ], + [ + "▁hydrated", + -12.885241508483887 + ], + [ + "▁Mourinho", + -12.885308265686035 + ], + [ + "▁spaghetti", + -12.885499954223633 + ], + [ + "▁kidneys", + -12.885568618774414 + ], + [ + "▁dreaded", + -12.885721206665039 + ], + [ + "▁Jonas", + -12.885892868041992 + ], + [ + "ache", + -12.885974884033203 + ], + [ + "lc", + -12.886042594909668 + ], + [ + "RI", + -12.886195182800293 + ], + [ + "▁bipolar", + -12.88620662689209 + ], + [ + "▁Clip", + -12.88630199432373 + ], + [ + "▁strangely", + -12.88632869720459 + ], + [ + "ø", + -12.886371612548828 + ], + [ + "▁cravings", + -12.886383056640625 + ], + [ + "▁Ceramic", + -12.886397361755371 + ], + [ + "▁Closing", + -12.88644027709961 + ], + [ + "ão", + -12.886505126953125 + ], + [ + "▁Coat", + -12.886548042297363 + ], + [ + "▁Optical", + -12.886601448059082 + ], + [ + "▁speculative", + -12.886622428894043 + ], + [ + "▁arrogant", + -12.886639595031738 + ], + [ + "▁Restaurants", + -12.886710166931152 + ], + [ + "▁Fiji", + -12.886711120605469 + ], + [ + "▁Snake", + -12.886760711669922 + ], + [ + "OB", + -12.886761665344238 + ], + [ + "▁NF", + -12.886804580688477 + ], + [ + "▁Hua", + -12.886841773986816 + ], + [ + "▁climax", + -12.886874198913574 + ], + [ + "▁temps", + -12.88695240020752 + ], + [ + "sound", + -12.887046813964844 + ], + [ + "▁policymakers", + -12.887051582336426 + ], + [ + "▁Twins", + -12.887090682983398 + ], + [ + "▁Procedure", + -12.887145042419434 + ], + [ + "▁Coupons", + -12.887175559997559 + ], + [ + "vert", + -12.887349128723145 + ], + [ + "▁Ronaldo", + -12.887358665466309 + ], + [ + "▁Napa", + -12.887361526489258 + ], + [ + "▁Pets", + -12.887407302856445 + ], + [ + "▁alleging", + -12.88741397857666 + ], + [ + "ias", + -12.887524604797363 + ], + [ + "▁parsley", + -12.887604713439941 + ], + [ + "▁Crane", + -12.887619972229004 + ], + [ + "▁condolences", + -12.887714385986328 + ], + [ + "▁Ingredients", + -12.887762069702148 + ], + [ + "▁Tr", + -12.887823104858398 + ], + [ + "famous", + -12.887917518615723 + ], + [ + "directed", + -12.887967109680176 + ], + [ + "▁easing", + -12.888083457946777 + ], + [ + "▁helper", + -12.888154029846191 + ], + [ + "▁mourning", + -12.888365745544434 + ], + [ + "▁fig", + -12.888434410095215 + ], + [ + "▁septic", + -12.888516426086426 + ], + [ + "▁Biol", + -12.888569831848145 + ], + [ + "▁Ironically", + -12.888628959655762 + ], + [ + "▁symposium", + -12.88864517211914 + ], + [ + "solving", + -12.888683319091797 + ], + [ + "▁casing", + -12.888925552368164 + ], + [ + "▁sting", + -12.888954162597656 + ], + [ + "가", + -12.888971328735352 + ], + [ + "▁Duchess", + -12.888975143432617 + ], + [ + "▁Called", + -12.889082908630371 + ], + [ + "▁Esther", + -12.889155387878418 + ], + [ + "▁statutes", + -12.88924503326416 + ], + [ + "▁shortened", + -12.889412879943848 + ], + [ + "las", + -12.889444351196289 + ], + [ + "▁outlining", + -12.889477729797363 + ], + [ + "fil", + -12.889506340026855 + ], + [ + "▁Edison", + -12.889533996582031 + ], + [ + "▁Ac", + -12.889540672302246 + ], + [ + "▁petals", + -12.889568328857422 + ], + [ + "▁Cement", + -12.889581680297852 + ], + [ + "▁RO", + -12.889676094055176 + ], + [ + "▁shocks", + -12.889729499816895 + ], + [ + "▁insiders", + -12.889812469482422 + ], + [ + "▁subconscious", + -12.889814376831055 + ], + [ + "▁competency", + -12.889825820922852 + ], + [ + "song", + -12.889933586120605 + ], + [ + "▁quartet", + -12.889973640441895 + ], + [ + "▁inspectors", + -12.889974594116211 + ], + [ + "▁humanities", + -12.889989852905273 + ], + [ + "mol", + -12.890064239501953 + ], + [ + "▁crawling", + -12.890108108520508 + ], + [ + "▁peptide", + -12.890156745910645 + ], + [ + "ule", + -12.890226364135742 + ], + [ + "▁fetal", + -12.890268325805664 + ], + [ + "uck", + -12.890275955200195 + ], + [ + "▁DOES", + -12.890340805053711 + ], + [ + "▁virtues", + -12.890365600585938 + ], + [ + "Maybe", + -12.890509605407715 + ], + [ + "▁influencers", + -12.890570640563965 + ], + [ + "▁RPM", + -12.890593528747559 + ], + [ + "▁hopeless", + -12.890615463256836 + ], + [ + "▁Paypal", + -12.890730857849121 + ], + [ + "264", + -12.89074420928955 + ], + [ + "▁applause", + -12.890790939331055 + ], + [ + "▁envelopes", + -12.890917778015137 + ], + [ + "event", + -12.89096450805664 + ], + [ + "leaf", + -12.89098072052002 + ], + [ + "▁misunderstood", + -12.891366958618164 + ], + [ + "▁birthdays", + -12.89140510559082 + ], + [ + "RL", + -12.891474723815918 + ], + [ + "▁heartbreaking", + -12.89149284362793 + ], + [ + "▁Bri", + -12.89151382446289 + ], + [ + "▁clubhouse", + -12.891514778137207 + ], + [ + "uar", + -12.891694068908691 + ], + [ + "▁Insights", + -12.891694068908691 + ], + [ + "▁bunny", + -12.891770362854004 + ], + [ + "▁sleepy", + -12.891793251037598 + ], + [ + "derived", + -12.891828536987305 + ], + [ + "▁Def", + -12.891885757446289 + ], + [ + "117", + -12.891942024230957 + ], + [ + "▁Diaz", + -12.891960144042969 + ], + [ + "▁hypothetical", + -12.891989707946777 + ], + [ + "Press", + -12.892050743103027 + ], + [ + "▁Actual", + -12.89211654663086 + ], + [ + "▁Instruments", + -12.892187118530273 + ], + [ + "▁cling", + -12.892241477966309 + ], + [ + "▁sender", + -12.892268180847168 + ], + [ + "▁Lei", + -12.892311096191406 + ], + [ + "▁stimuli", + -12.892370223999023 + ], + [ + "▁goodwill", + -12.89250373840332 + ], + [ + "▁benefiting", + -12.892613410949707 + ], + [ + "David", + -12.892770767211914 + ], + [ + "▁vents", + -12.89281940460205 + ], + [ + "▁salvage", + -12.892838478088379 + ], + [ + "▁unanimous", + -12.893027305603027 + ], + [ + "▁badges", + -12.893126487731934 + ], + [ + "iff", + -12.893253326416016 + ], + [ + "▁reg", + -12.893299102783203 + ], + [ + "▁canoe", + -12.893301963806152 + ], + [ + "▁Fork", + -12.893369674682617 + ], + [ + "▁OB", + -12.893370628356934 + ], + [ + "▁mantle", + -12.893372535705566 + ], + [ + "▁Gee", + -12.893513679504395 + ], + [ + "▁resentment", + -12.893534660339355 + ], + [ + "▁actionable", + -12.89358139038086 + ], + [ + "BD", + -12.893619537353516 + ], + [ + "ender", + -12.893688201904297 + ], + [ + "▁nationalism", + -12.893712043762207 + ], + [ + "▁Jeremiah", + -12.893738746643066 + ], + [ + "▁Oslo", + -12.893771171569824 + ], + [ + "▁exporting", + -12.893781661987305 + ], + [ + "IES", + -12.893912315368652 + ], + [ + "earth", + -12.894257545471191 + ], + [ + "▁Aging", + -12.894357681274414 + ], + [ + "▁Mart", + -12.89438247680664 + ], + [ + "▁pencils", + -12.894413948059082 + ], + [ + "distance", + -12.89443588256836 + ], + [ + "▁visionary", + -12.894536972045898 + ], + [ + "▁CU", + -12.8945894241333 + ], + [ + "▁nuisance", + -12.894597053527832 + ], + [ + "conditioned", + -12.89475154876709 + ], + [ + "▁Odyssey", + -12.894760131835938 + ], + [ + "▁FTP", + -12.894770622253418 + ], + [ + "▁anticipating", + -12.895086288452148 + ], + [ + "▁localized", + -12.895108222961426 + ], + [ + "▁Caleb", + -12.895118713378906 + ], + [ + "▁Xiao", + -12.895129203796387 + ], + [ + "▁TL", + -12.895169258117676 + ], + [ + "▁Norwich", + -12.895172119140625 + ], + [ + "310", + -12.895219802856445 + ], + [ + "pra", + -12.895221710205078 + ], + [ + "weather", + -12.895271301269531 + ], + [ + "▁hut", + -12.895325660705566 + ], + [ + "▁Conn", + -12.895509719848633 + ], + [ + "▁killers", + -12.895618438720703 + ], + [ + "OD", + -12.895719528198242 + ], + [ + "▁Headquarters", + -12.89592170715332 + ], + [ + "▁ammo", + -12.895951271057129 + ], + [ + "▁ADA", + -12.89606761932373 + ], + [ + "▁opaque", + -12.896097183227539 + ], + [ + "▁Wimbledon", + -12.896101951599121 + ], + [ + "▁Pandora", + -12.896142959594727 + ], + [ + "▁Fifty", + -12.89616870880127 + ], + [ + "▁flyers", + -12.896239280700684 + ], + [ + "Start", + -12.89624309539795 + ], + [ + "▁Jude", + -12.89624309539795 + ], + [ + "▁TI", + -12.89629077911377 + ], + [ + "▁borough", + -12.896393775939941 + ], + [ + "▁Chargers", + -12.896410942077637 + ], + [ + "uga", + -12.896580696105957 + ], + [ + "▁Greeks", + -12.896598815917969 + ], + [ + "▁een", + -12.896635055541992 + ], + [ + "▁Sink", + -12.896660804748535 + ], + [ + "▁Kelley", + -12.896700859069824 + ], + [ + "▁EB", + -12.896702766418457 + ], + [ + "▁strained", + -12.896734237670898 + ], + [ + "▁stiffness", + -12.896824836730957 + ], + [ + "▁awaited", + -12.8969144821167 + ], + [ + "zing", + -12.89697265625 + ], + [ + "▁abs", + -12.89709758758545 + ], + [ + "Windows", + -12.897180557250977 + ], + [ + "▁outings", + -12.89725112915039 + ], + [ + "opening", + -12.897351264953613 + ], + [ + "▁midway", + -12.89750862121582 + ], + [ + "▁Friedman", + -12.897517204284668 + ], + [ + "▁LSU", + -12.897529602050781 + ], + [ + "▁Maui", + -12.897583961486816 + ], + [ + "fine", + -12.897592544555664 + ], + [ + "▁Proc", + -12.897753715515137 + ], + [ + "▁rumor", + -12.897757530212402 + ], + [ + "TN", + -12.89780044555664 + ], + [ + "▁PST", + -12.897815704345703 + ], + [ + "▁workspace", + -12.897905349731445 + ], + [ + "▁Alarm", + -12.897955894470215 + ], + [ + "▁Courts", + -12.897960662841797 + ], + [ + "▁Harmony", + -12.898083686828613 + ], + [ + "▁optics", + -12.898201942443848 + ], + [ + "▁Daughter", + -12.898344039916992 + ], + [ + "▁flute", + -12.898425102233887 + ], + [ + "▁Rodney", + -12.898442268371582 + ], + [ + "▁Coke", + -12.898449897766113 + ], + [ + "ONE", + -12.898503303527832 + ], + [ + "▁pleading", + -12.898520469665527 + ], + [ + "▁Buenos", + -12.898548126220703 + ], + [ + "▁reload", + -12.898670196533203 + ], + [ + "▁liaison", + -12.898791313171387 + ], + [ + "▁buckets", + -12.898816108703613 + ], + [ + "ille", + -12.89896011352539 + ], + [ + "▁vows", + -12.899027824401855 + ], + [ + "▁conquered", + -12.899048805236816 + ], + [ + "JA", + -12.899055480957031 + ], + [ + "▁Insight", + -12.899067878723145 + ], + [ + "▁rests", + -12.899083137512207 + ], + [ + "▁rejoice", + -12.89930534362793 + ], + [ + "▁lymph", + -12.899346351623535 + ], + [ + "▁Amateur", + -12.899354934692383 + ], + [ + "▁heroine", + -12.899569511413574 + ], + [ + "Water", + -12.899604797363281 + ], + [ + "▁axe", + -12.899750709533691 + ], + [ + "eda", + -12.89976692199707 + ], + [ + "▁shingles", + -12.899931907653809 + ], + [ + "▁Loch", + -12.89998722076416 + ], + [ + "▁Sei", + -12.900044441223145 + ], + [ + "▁KL", + -12.900054931640625 + ], + [ + "holder", + -12.900167465209961 + ], + [ + "▁Andreas", + -12.900240898132324 + ], + [ + "▁clown", + -12.900282859802246 + ], + [ + "▁Angus", + -12.90040111541748 + ], + [ + "▁139", + -12.900511741638184 + ], + [ + "▁freshness", + -12.900537490844727 + ], + [ + "▁Chaos", + -12.900745391845703 + ], + [ + "named", + -12.900772094726562 + ], + [ + "ged", + -12.900815963745117 + ], + [ + "tle", + -12.900882720947266 + ], + [ + "▁sanity", + -12.901172637939453 + ], + [ + "▁Karnataka", + -12.901224136352539 + ], + [ + "▁skyline", + -12.901286125183105 + ], + [ + "grass", + -12.90136432647705 + ], + [ + "▁loosen", + -12.901366233825684 + ], + [ + "▁Agenda", + -12.90141773223877 + ], + [ + "▁Brotherhood", + -12.901464462280273 + ], + [ + "beat", + -12.90147876739502 + ], + [ + "NR", + -12.901503562927246 + ], + [ + "▁Elephant", + -12.901567459106445 + ], + [ + "▁emulate", + -12.901629447937012 + ], + [ + "▁stroller", + -12.901697158813477 + ], + [ + "▁Nav", + -12.901726722717285 + ], + [ + "▁descend", + -12.90177059173584 + ], + [ + "oa", + -12.90182113647461 + ], + [ + "▁Wrestling", + -12.90183162689209 + ], + [ + "▁Leone", + -12.901924133300781 + ], + [ + "kick", + -12.901995658874512 + ], + [ + "▁mL", + -12.901998519897461 + ], + [ + "▁Bald", + -12.902134895324707 + ], + [ + "▁Ming", + -12.902151107788086 + ], + [ + "days", + -12.902199745178223 + ], + [ + "dc", + -12.902299880981445 + ], + [ + "▁Gale", + -12.902403831481934 + ], + [ + "▁SV", + -12.902442932128906 + ], + [ + "Bank", + -12.902473449707031 + ], + [ + "▁wh", + -12.902480125427246 + ], + [ + "▁Skill", + -12.902657508850098 + ], + [ + "gie", + -12.902691841125488 + ], + [ + "▁daycare", + -12.903017044067383 + ], + [ + "▁Gazette", + -12.903069496154785 + ], + [ + "▁prudent", + -12.903116226196289 + ], + [ + "116", + -12.90326976776123 + ], + [ + "teen", + -12.903290748596191 + ], + [ + "▁fragrant", + -12.903533935546875 + ], + [ + "▁membranes", + -12.903560638427734 + ], + [ + "▁finalist", + -12.90360164642334 + ], + [ + "▁demos", + -12.903624534606934 + ], + [ + "▁rockets", + -12.903680801391602 + ], + [ + "▁IPA", + -12.903717041015625 + ], + [ + "▁concluding", + -12.903738021850586 + ], + [ + "coat", + -12.903743743896484 + ], + [ + "▁cites", + -12.903824806213379 + ], + [ + "stat", + -12.903918266296387 + ], + [ + "▁earns", + -12.903993606567383 + ], + [ + "Test", + -12.904000282287598 + ], + [ + "▁criterion", + -12.904006004333496 + ], + [ + "sham", + -12.904130935668945 + ], + [ + "▁Lithuania", + -12.904199600219727 + ], + [ + "▁contenders", + -12.9043607711792 + ], + [ + "▁TH", + -12.904410362243652 + ], + [ + "hum", + -12.904458045959473 + ], + [ + "▁Opinion", + -12.904464721679688 + ], + [ + "▁reckon", + -12.904486656188965 + ], + [ + "▁missionaries", + -12.904498100280762 + ], + [ + "▁livelihood", + -12.904589653015137 + ], + [ + "▁Lottery", + -12.904610633850098 + ], + [ + "▁geological", + -12.90461254119873 + ], + [ + "▁Helsinki", + -12.9046630859375 + ], + [ + "▁flakes", + -12.904670715332031 + ], + [ + "▁itching", + -12.9047269821167 + ], + [ + "▁Submitted", + -12.904754638671875 + ], + [ + "doi", + -12.904903411865234 + ], + [ + "▁stylist", + -12.904998779296875 + ], + [ + "▁adjoining", + -12.90505313873291 + ], + [ + "▁ethos", + -12.905136108398438 + ], + [ + "▁Indo", + -12.905296325683594 + ], + [ + "▁misunderstanding", + -12.905340194702148 + ], + [ + "▁kisses", + -12.905373573303223 + ], + [ + "perhaps", + -12.90543270111084 + ], + [ + "▁campsite", + -12.905482292175293 + ], + [ + "oda", + -12.905488967895508 + ], + [ + "▁Typical", + -12.905549049377441 + ], + [ + "▁monk", + -12.905662536621094 + ], + [ + "▁poorer", + -12.905712127685547 + ], + [ + "▁TJ", + -12.905746459960938 + ], + [ + "▁Corbyn", + -12.905776023864746 + ], + [ + "▁documentaries", + -12.905856132507324 + ], + [ + "▁Inventory", + -12.905913352966309 + ], + [ + "male", + -12.90596866607666 + ], + [ + "▁hides", + -12.906000137329102 + ], + [ + "▁Outlet", + -12.906149864196777 + ], + [ + "▁Aviv", + -12.906277656555176 + ], + [ + "▁prepaid", + -12.906298637390137 + ], + [ + "▁Clo", + -12.906349182128906 + ], + [ + "▁Flexible", + -12.906355857849121 + ], + [ + "と", + -12.906378746032715 + ], + [ + "▁Wilder", + -12.90640926361084 + ], + [ + "kha", + -12.906524658203125 + ], + [ + "▁cottages", + -12.906564712524414 + ], + [ + "▁scatter", + -12.90658950805664 + ], + [ + "▁hardened", + -12.906746864318848 + ], + [ + "raw", + -12.90679931640625 + ], + [ + "▁Ahead", + -12.906980514526367 + ], + [ + "▁Listening", + -12.907011032104492 + ], + [ + "▁£6", + -12.907017707824707 + ], + [ + "▁debating", + -12.907029151916504 + ], + [ + "research", + -12.907065391540527 + ], + [ + "▁whitening", + -12.907099723815918 + ], + [ + "▁africa", + -12.907167434692383 + ], + [ + "▁Hospice", + -12.907220840454102 + ], + [ + "1980", + -12.907322883605957 + ], + [ + "▁Bahamas", + -12.907397270202637 + ], + [ + "▁invent", + -12.907449722290039 + ], + [ + "▁battled", + -12.90746784210205 + ], + [ + "vol", + -12.90749740600586 + ], + [ + "▁veto", + -12.907550811767578 + ], + [ + "▁retaliation", + -12.907553672790527 + ], + [ + "▁Introducing", + -12.907575607299805 + ], + [ + "lessness", + -12.907632827758789 + ], + [ + "▁inherit", + -12.907654762268066 + ], + [ + "▁skins", + -12.90770149230957 + ], + [ + "▁Fowler", + -12.907842636108398 + ], + [ + "▁Ara", + -12.907870292663574 + ], + [ + "alla", + -12.907873153686523 + ], + [ + "▁Classroom", + -12.907917976379395 + ], + [ + "▁quota", + -12.907942771911621 + ], + [ + "▁summoned", + -12.907987594604492 + ], + [ + "▁Collect", + -12.908040046691895 + ], + [ + "▁hurdle", + -12.908099174499512 + ], + [ + "▁Arabs", + -12.908100128173828 + ], + [ + "▁respondent", + -12.90811538696289 + ], + [ + "▁Psychological", + -12.908188819885254 + ], + [ + "▁Priest", + -12.908308982849121 + ], + [ + "▁Palo", + -12.908652305603027 + ], + [ + "▁Estonia", + -12.908665657043457 + ], + [ + "▁graceful", + -12.908853530883789 + ], + [ + "▁enticing", + -12.908939361572266 + ], + [ + "▁exchanging", + -12.909037590026855 + ], + [ + "▁Went", + -12.90905475616455 + ], + [ + "▁Adjustable", + -12.909119606018066 + ], + [ + "▁AH", + -12.909287452697754 + ], + [ + "▁Authentic", + -12.909310340881348 + ], + [ + "poor", + -12.909317016601562 + ], + [ + "brain", + -12.909324645996094 + ], + [ + "▁raspberry", + -12.909367561340332 + ], + [ + "▁pipelines", + -12.909449577331543 + ], + [ + "▁troublesome", + -12.909461975097656 + ], + [ + "ilo", + -12.909463882446289 + ], + [ + "155", + -12.909591674804688 + ], + [ + "▁CFO", + -12.909784317016602 + ], + [ + "▁catheter", + -12.909821510314941 + ], + [ + "ically", + -12.909834861755371 + ], + [ + "Work", + -12.909844398498535 + ], + [ + "▁sociology", + -12.909933090209961 + ], + [ + "dio", + -12.91003704071045 + ], + [ + "▁infinity", + -12.910248756408691 + ], + [ + "▁Greenwich", + -12.910353660583496 + ], + [ + "▁dissent", + -12.910420417785645 + ], + [ + "▁watercolor", + -12.910428047180176 + ], + [ + "▁Siri", + -12.910459518432617 + ], + [ + "▁engagements", + -12.91050910949707 + ], + [ + "▁Advances", + -12.910526275634766 + ], + [ + "▁centerpiece", + -12.910557746887207 + ], + [ + "▁VIII", + -12.910561561584473 + ], + [ + "▁uniqueness", + -12.910627365112305 + ], + [ + "▁prosecuted", + -12.910655975341797 + ], + [ + "▁Salvation", + -12.910751342773438 + ], + [ + "▁Ned", + -12.910795211791992 + ], + [ + "▁Shaun", + -12.910835266113281 + ], + [ + "Americans", + -12.910839080810547 + ], + [ + "▁fauna", + -12.910858154296875 + ], + [ + "▁bleak", + -12.911012649536133 + ], + [ + "▁amplitude", + -12.911062240600586 + ], + [ + "▁wavelength", + -12.911165237426758 + ], + [ + "▁Bunny", + -12.911236763000488 + ], + [ + "▁Jensen", + -12.911261558532715 + ], + [ + "▁Pratt", + -12.911336898803711 + ], + [ + "▁Steering", + -12.911336898803711 + ], + [ + "▁Styles", + -12.911380767822266 + ], + [ + "▁edged", + -12.911436080932617 + ], + [ + "▁Kemp", + -12.911481857299805 + ], + [ + "▁1908", + -12.911611557006836 + ], + [ + "▁quasi", + -12.911674499511719 + ], + [ + "▁Migration", + -12.91185188293457 + ], + [ + "treated", + -12.911925315856934 + ], + [ + "▁Script", + -12.911982536315918 + ], + [ + "▁Journalism", + -12.912261962890625 + ], + [ + "ean", + -12.912318229675293 + ], + [ + "▁ph", + -12.912406921386719 + ], + [ + "ン", + -12.912601470947266 + ], + [ + "▁syllabus", + -12.91266918182373 + ], + [ + "▁cheesy", + -12.912714004516602 + ], + [ + "rf", + -12.912723541259766 + ], + [ + "▁Perform", + -12.912760734558105 + ], + [ + "▁Recognition", + -12.912909507751465 + ], + [ + "▁epilepsy", + -12.912910461425781 + ], + [ + "aan", + -12.91294002532959 + ], + [ + "▁Melanie", + -12.913061141967773 + ], + [ + "▁Buyers", + -12.91314697265625 + ], + [ + "▁EF", + -12.913152694702148 + ], + [ + "▁Sync", + -12.913180351257324 + ], + [ + "▁Churches", + -12.913294792175293 + ], + [ + "rik", + -12.913400650024414 + ], + [ + "▁pervasive", + -12.913420677185059 + ], + [ + "▁stitched", + -12.913451194763184 + ], + [ + "▁LR", + -12.913467407226562 + ], + [ + "▁insecure", + -12.913500785827637 + ], + [ + "▁Duo", + -12.913524627685547 + ], + [ + "▁tipping", + -12.913591384887695 + ], + [ + "▁feminism", + -12.913717269897461 + ], + [ + "▁Tribe", + -12.913883209228516 + ], + [ + "global", + -12.913922309875488 + ], + [ + "▁WS", + -12.914005279541016 + ], + [ + "▁LV", + -12.914132118225098 + ], + [ + "▁Scandinavian", + -12.914143562316895 + ], + [ + "▁freedoms", + -12.914144515991211 + ], + [ + "▁graded", + -12.914237022399902 + ], + [ + "gang", + -12.914300918579102 + ], + [ + "mia", + -12.914301872253418 + ], + [ + "▁texas", + -12.91433334350586 + ], + [ + "▁steroid", + -12.914405822753906 + ], + [ + "Girl", + -12.914472579956055 + ], + [ + "▁sacrificed", + -12.914571762084961 + ], + [ + "▁sweetheart", + -12.91464614868164 + ], + [ + "▁hostage", + -12.914756774902344 + ], + [ + "▁intolerance", + -12.91479206085205 + ], + [ + "▁BLACK", + -12.914870262145996 + ], + [ + "▁antivirus", + -12.914952278137207 + ], + [ + "▁budding", + -12.914952278137207 + ], + [ + "arch", + -12.91507339477539 + ], + [ + "▁Possibly", + -12.915109634399414 + ], + [ + "▁slender", + -12.915130615234375 + ], + [ + "▁Michele", + -12.915155410766602 + ], + [ + "▁Mesh", + -12.915193557739258 + ], + [ + "▁Hospitality", + -12.915202140808105 + ], + [ + "▁nuances", + -12.915218353271484 + ], + [ + "Map", + -12.915448188781738 + ], + [ + "MENT", + -12.915472984313965 + ], + [ + "RB", + -12.915513038635254 + ], + [ + "nee", + -12.915562629699707 + ], + [ + "growth", + -12.915583610534668 + ], + [ + "ologist", + -12.9155912399292 + ], + [ + "▁chlorine", + -12.915801048278809 + ], + [ + "▁DG", + -12.915854454040527 + ], + [ + "▁assembling", + -12.915878295898438 + ], + [ + "▁pedestal", + -12.91595458984375 + ], + [ + "save", + -12.916028022766113 + ], + [ + "▁wand", + -12.916041374206543 + ], + [ + "▁enforcing", + -12.916254997253418 + ], + [ + "rm", + -12.916268348693848 + ], + [ + "vel", + -12.916301727294922 + ], + [ + "▁Fury", + -12.916394233703613 + ], + [ + "▁Improved", + -12.916633605957031 + ], + [ + "▁inhabited", + -12.916635513305664 + ], + [ + "RY", + -12.916702270507812 + ], + [ + "▁Lilly", + -12.916736602783203 + ], + [ + "▁Genuine", + -12.916755676269531 + ], + [ + "▁Occupational", + -12.916810989379883 + ], + [ + "▁Happiness", + -12.916813850402832 + ], + [ + "▁reclaim", + -12.917004585266113 + ], + [ + "▁Released", + -12.917070388793945 + ], + [ + "▁Mold", + -12.917086601257324 + ], + [ + "▁dolphins", + -12.917101860046387 + ], + [ + "▁evidently", + -12.917107582092285 + ], + [ + "▁MAKE", + -12.917182922363281 + ], + [ + "lac", + -12.917298316955566 + ], + [ + "▁pastel", + -12.917350769042969 + ], + [ + "hey", + -12.917520523071289 + ], + [ + "▁underestimate", + -12.91753101348877 + ], + [ + "▁Leisure", + -12.917557716369629 + ], + [ + "Group", + -12.917617797851562 + ], + [ + "▁curator", + -12.917696952819824 + ], + [ + "▁methane", + -12.917835235595703 + ], + [ + "▁celery", + -12.91792106628418 + ], + [ + "▁Managed", + -12.917997360229492 + ], + [ + "▁nicht", + -12.918314933776855 + ], + [ + "▁Lumpur", + -12.918328285217285 + ], + [ + "▁Boutique", + -12.918354988098145 + ], + [ + "▁situ", + -12.918359756469727 + ], + [ + "next", + -12.9183988571167 + ], + [ + "▁staples", + -12.918505668640137 + ], + [ + "190", + -12.918570518493652 + ], + [ + "▁Scriptures", + -12.918596267700195 + ], + [ + "▁GHz", + -12.918734550476074 + ], + [ + "▁rethink", + -12.918761253356934 + ], + [ + "▁babe", + -12.918787956237793 + ], + [ + "▁cc", + -12.918807983398438 + ], + [ + "▁deletion", + -12.918856620788574 + ], + [ + "▁physiology", + -12.91893482208252 + ], + [ + "SI", + -12.9190092086792 + ], + [ + "▁dwarf", + -12.919116973876953 + ], + [ + "▁Indy", + -12.91915225982666 + ], + [ + "▁winger", + -12.919206619262695 + ], + [ + "ingham", + -12.919333457946777 + ], + [ + "▁breaker", + -12.919428825378418 + ], + [ + "▁futuristic", + -12.919465065002441 + ], + [ + "▁1901", + -12.91956901550293 + ], + [ + "▁overflow", + -12.91958236694336 + ], + [ + "▁Configuration", + -12.919702529907227 + ], + [ + "▁armour", + -12.91979694366455 + ], + [ + "DL", + -12.919868469238281 + ], + [ + "▁philosophers", + -12.919915199279785 + ], + [ + "▁wee", + -12.9199800491333 + ], + [ + "▁Dirty", + -12.919981002807617 + ], + [ + "▁inefficient", + -12.920021057128906 + ], + [ + "▁artisans", + -12.920065879821777 + ], + [ + "▁EMS", + -12.920105934143066 + ], + [ + "×", + -12.92012882232666 + ], + [ + "1991", + -12.920133590698242 + ], + [ + "anta", + -12.920172691345215 + ], + [ + "▁cupcake", + -12.920184135437012 + ], + [ + "▁Hussein", + -12.920195579528809 + ], + [ + "▁Policies", + -12.920234680175781 + ], + [ + "▁Wilmington", + -12.920247077941895 + ], + [ + "▁originating", + -12.920326232910156 + ], + [ + "▁malpractice", + -12.920388221740723 + ], + [ + "▁pirates", + -12.920669555664062 + ], + [ + "clear", + -12.920710563659668 + ], + [ + "▁scraps", + -12.920769691467285 + ], + [ + "▁Employers", + -12.92084789276123 + ], + [ + "▁Forty", + -12.920857429504395 + ], + [ + "▁Renault", + -12.920881271362305 + ], + [ + "▁Cycling", + -12.92088508605957 + ], + [ + "▁selves", + -12.920924186706543 + ], + [ + "ž", + -12.920938491821289 + ], + [ + "▁enchanting", + -12.920944213867188 + ], + [ + "▁Searching", + -12.921004295349121 + ], + [ + "span", + -12.921009063720703 + ], + [ + "▁undocumented", + -12.921045303344727 + ], + [ + "▁stamina", + -12.921151161193848 + ], + [ + "reading", + -12.921168327331543 + ], + [ + "▁Wis", + -12.921208381652832 + ], + [ + "▁contaminants", + -12.921233177185059 + ], + [ + "▁peanuts", + -12.921248435974121 + ], + [ + "alia", + -12.921255111694336 + ], + [ + "▁RX", + -12.921374320983887 + ], + [ + "▁incorporation", + -12.921442031860352 + ], + [ + "▁luckily", + -12.92158031463623 + ], + [ + "▁Conversely", + -12.921895027160645 + ], + [ + "ente", + -12.921920776367188 + ], + [ + "death", + -12.921932220458984 + ], + [ + "▁Taco", + -12.921955108642578 + ], + [ + "▁distal", + -12.922122955322266 + ], + [ + "Team", + -12.922213554382324 + ], + [ + "▁PK", + -12.922213554382324 + ], + [ + "▁baptized", + -12.922297477722168 + ], + [ + "▁Mattress", + -12.92232608795166 + ], + [ + "Text", + -12.922494888305664 + ], + [ + "▁swung", + -12.922574043273926 + ], + [ + "Jo", + -12.922607421875 + ], + [ + "▁urges", + -12.922616958618164 + ], + [ + "keeping", + -12.922761917114258 + ], + [ + "▁Pak", + -12.92281723022461 + ], + [ + "▁pear", + -12.922849655151367 + ], + [ + "▁FULL", + -12.92298698425293 + ], + [ + "▁Singles", + -12.923025131225586 + ], + [ + "▁Bundle", + -12.923080444335938 + ], + [ + "▁Tune", + -12.923101425170898 + ], + [ + "UR", + -12.923120498657227 + ], + [ + "▁Winchester", + -12.923152923583984 + ], + [ + "▁abound", + -12.92325210571289 + ], + [ + "▁Idol", + -12.923482894897461 + ], + [ + "▁shedding", + -12.923486709594727 + ], + [ + "▁convergence", + -12.923564910888672 + ], + [ + "▁hoop", + -12.923605918884277 + ], + [ + "▁Relax", + -12.923643112182617 + ], + [ + "▁Anchor", + -12.923806190490723 + ], + [ + "OC", + -12.9238920211792 + ], + [ + "▁comforter", + -12.923914909362793 + ], + [ + "▁Monetary", + -12.923921585083008 + ], + [ + "▁Parenthood", + -12.923952102661133 + ], + [ + "▁Thi", + -12.923985481262207 + ], + [ + "▁nightly", + -12.924053192138672 + ], + [ + "▁knockout", + -12.9241361618042 + ], + [ + "▁reconcile", + -12.924152374267578 + ], + [ + "▁Consortium", + -12.92418098449707 + ], + [ + "ching", + -12.924217224121094 + ], + [ + "medical", + -12.92421817779541 + ], + [ + "tube", + -12.924243927001953 + ], + [ + "▁wrongdoing", + -12.9242582321167 + ], + [ + "▁HF", + -12.924261093139648 + ], + [ + "▁invariably", + -12.92435359954834 + ], + [ + "▁zest", + -12.924354553222656 + ], + [ + "▁revived", + -12.924407005310059 + ], + [ + "▁aides", + -12.924433708190918 + ], + [ + "▁slowdown", + -12.924461364746094 + ], + [ + "▁Kylie", + -12.924583435058594 + ], + [ + "vale", + -12.924619674682617 + ], + [ + "station", + -12.924702644348145 + ], + [ + "▁specialise", + -12.924728393554688 + ], + [ + "▁contour", + -12.924821853637695 + ], + [ + "▁ACE", + -12.924936294555664 + ], + [ + "▁restricting", + -12.9249849319458 + ], + [ + "▁pathogens", + -12.92512321472168 + ], + [ + "▁Tape", + -12.925141334533691 + ], + [ + "▁Reverse", + -12.92519474029541 + ], + [ + "▁Trap", + -12.925200462341309 + ], + [ + "▁husbands", + -12.92520809173584 + ], + [ + "▁SHA", + -12.925228118896484 + ], + [ + "▁ovarian", + -12.925332069396973 + ], + [ + "ô", + -12.925540924072266 + ], + [ + "▁textual", + -12.92557430267334 + ], + [ + "▁Fake", + -12.925593376159668 + ], + [ + "▁imprint", + -12.925597190856934 + ], + [ + "▁Nairobi", + -12.925684928894043 + ], + [ + "▁instrumentation", + -12.925707817077637 + ], + [ + "▁Levy", + -12.92580509185791 + ], + [ + "▁additive", + -12.925814628601074 + ], + [ + "▁Gram", + -12.925849914550781 + ], + [ + "▁Stalin", + -12.925877571105957 + ], + [ + "▁artisan", + -12.926015853881836 + ], + [ + "▁manners", + -12.926068305969238 + ], + [ + "▁Candidate", + -12.926076889038086 + ], + [ + "▁Verde", + -12.926088333129883 + ], + [ + "nut", + -12.926338195800781 + ], + [ + "nothing", + -12.926379203796387 + ], + [ + "str", + -12.926451683044434 + ], + [ + "University", + -12.926753044128418 + ], + [ + "▁majors", + -12.926803588867188 + ], + [ + "▁roam", + -12.926812171936035 + ], + [ + "LB", + -12.926864624023438 + ], + [ + "iah", + -12.927103996276855 + ], + [ + "▁chloride", + -12.92713737487793 + ], + [ + "▁Variety", + -12.927209854125977 + ], + [ + "▁Benson", + -12.927319526672363 + ], + [ + "▁taxed", + -12.92732048034668 + ], + [ + "▁Speedway", + -12.927334785461426 + ], + [ + "▁Mach", + -12.92763900756836 + ], + [ + "▁UNC", + -12.927696228027344 + ], + [ + "▁capitalization", + -12.927742958068848 + ], + [ + "▁Closed", + -12.92782211303711 + ], + [ + "▁Crescent", + -12.927952766418457 + ], + [ + "▁bureaucracy", + -12.927989959716797 + ], + [ + "▁Poster", + -12.928125381469727 + ], + [ + "lick", + -12.92827033996582 + ], + [ + "▁sprayed", + -12.92827320098877 + ], + [ + "negative", + -12.928321838378906 + ], + [ + "▁Convert", + -12.928349494934082 + ], + [ + "▁Palin", + -12.928386688232422 + ], + [ + "▁flea", + -12.928516387939453 + ], + [ + "domain", + -12.928545951843262 + ], + [ + "▁mashed", + -12.928678512573242 + ], + [ + "▁reconsider", + -12.928678512573242 + ], + [ + "etz", + -12.928705215454102 + ], + [ + "▁Developed", + -12.928781509399414 + ], + [ + "▁147", + -12.928811073303223 + ], + [ + "▁harmed", + -12.928887367248535 + ], + [ + "▁cannon", + -12.92897891998291 + ], + [ + "▁Blanc", + -12.929031372070312 + ], + [ + "GI", + -12.929069519042969 + ], + [ + "▁Emerson", + -12.929100036621094 + ], + [ + "ancy", + -12.929155349731445 + ], + [ + "▁intermittent", + -12.929176330566406 + ], + [ + "ual", + -12.929205894470215 + ], + [ + "▁graders", + -12.929410934448242 + ], + [ + "▁Traditionally", + -12.92959213256836 + ], + [ + "▁vibes", + -12.9296293258667 + ], + [ + "480", + -12.929707527160645 + ], + [ + "▁Nasdaq", + -12.929719924926758 + ], + [ + "▁villains", + -12.929746627807617 + ], + [ + "▁Qi", + -12.92984676361084 + ], + [ + "farm", + -12.929869651794434 + ], + [ + "▁kon", + -12.92987060546875 + ], + [ + "▁Cabin", + -12.929871559143066 + ], + [ + "▁MAX", + -12.929972648620605 + ], + [ + "deck", + -12.930032730102539 + ], + [ + "▁Trouble", + -12.930174827575684 + ], + [ + "▁epoxy", + -12.930238723754883 + ], + [ + "▁schema", + -12.930264472961426 + ], + [ + "▁avatar", + -12.930292129516602 + ], + [ + "▁scramble", + -12.930307388305664 + ], + [ + "▁extinct", + -12.930376052856445 + ], + [ + "▁AIR", + -12.930586814880371 + ], + [ + "▁MV", + -12.93074893951416 + ], + [ + "▁Bulk", + -12.93089771270752 + ], + [ + "▁coworkers", + -12.930962562561035 + ], + [ + "▁Quiz", + -12.930975914001465 + ], + [ + "▁foreseeable", + -12.93099308013916 + ], + [ + "▁ceramics", + -12.930996894836426 + ], + [ + "▁Zuckerberg", + -12.931097030639648 + ], + [ + "▁curls", + -12.931123733520508 + ], + [ + "▁Brittany", + -12.931280136108398 + ], + [ + "▁ref", + -12.931303024291992 + ], + [ + "▁pals", + -12.931379318237305 + ], + [ + "▁Provided", + -12.931386947631836 + ], + [ + "trust", + -12.931441307067871 + ], + [ + "▁ir", + -12.931445121765137 + ], + [ + "▁diversion", + -12.931467056274414 + ], + [ + "▁spills", + -12.931468963623047 + ], + [ + "▁distracting", + -12.931497573852539 + ], + [ + "▁nominate", + -12.931638717651367 + ], + [ + "▁suicidal", + -12.931750297546387 + ], + [ + "▁FUN", + -12.93181037902832 + ], + [ + "▁Leonardo", + -12.932045936584473 + ], + [ + "▁hitch", + -12.93218994140625 + ], + [ + "▁Lease", + -12.93224048614502 + ], + [ + "▁merging", + -12.932267189025879 + ], + [ + "eli", + -12.932321548461914 + ], + [ + "figure", + -12.93239688873291 + ], + [ + "▁mouths", + -12.932581901550293 + ], + [ + "▁Reduction", + -12.932672500610352 + ], + [ + "▁tolerant", + -12.9326753616333 + ], + [ + "▁adept", + -12.932693481445312 + ], + [ + "▁soups", + -12.932723045349121 + ], + [ + "▁Cunningham", + -12.932740211486816 + ], + [ + "▁gangs", + -12.932765007019043 + ], + [ + "▁Pasadena", + -12.932784080505371 + ], + [ + "LI", + -12.932814598083496 + ], + [ + "▁Finished", + -12.932831764221191 + ], + [ + "▁Recording", + -12.932883262634277 + ], + [ + "▁unnamed", + -12.932904243469238 + ], + [ + "▁embodied", + -12.932918548583984 + ], + [ + "▁misdemeanor", + -12.932955741882324 + ], + [ + "▁Towards", + -12.933016777038574 + ], + [ + "▁shrine", + -12.933175086975098 + ], + [ + "▁Modeling", + -12.93321418762207 + ], + [ + "▁airing", + -12.933357238769531 + ], + [ + "▁Fool", + -12.933552742004395 + ], + [ + "▁Rebel", + -12.93355655670166 + ], + [ + "▁aspire", + -12.933615684509277 + ], + [ + "▁Hawkins", + -12.933797836303711 + ], + [ + "▁html", + -12.933948516845703 + ], + [ + "ATE", + -12.933967590332031 + ], + [ + "▁scriptures", + -12.934021949768066 + ], + [ + "▁airy", + -12.934149742126465 + ], + [ + "▁Websites", + -12.934195518493652 + ], + [ + "▁Jessie", + -12.934207916259766 + ], + [ + "я", + -12.934300422668457 + ], + [ + "▁diligently", + -12.93430233001709 + ], + [ + "▁Elena", + -12.934406280517578 + ], + [ + "▁ensuing", + -12.934541702270508 + ], + [ + "▁extraordinarily", + -12.934554100036621 + ], + [ + "hem", + -12.93458080291748 + ], + [ + "▁precursor", + -12.934609413146973 + ], + [ + "sense", + -12.93463134765625 + ], + [ + "campus", + -12.934782028198242 + ], + [ + "▁Tobacco", + -12.934833526611328 + ], + [ + "▁usefulness", + -12.9348783493042 + ], + [ + "▁suede", + -12.934884071350098 + ], + [ + "▁Celtics", + -12.934913635253906 + ], + [ + "▁powdered", + -12.934917449951172 + ], + [ + "▁Yorker", + -12.934922218322754 + ], + [ + "▁cafeteria", + -12.934930801391602 + ], + [ + "▁Butterfly", + -12.934967994689941 + ], + [ + "▁Sidney", + -12.934971809387207 + ], + [ + "▁mosquitoes", + -12.935302734375 + ], + [ + "▁brilliance", + -12.93531608581543 + ], + [ + "▁facade", + -12.935540199279785 + ], + [ + "▁peaked", + -12.935550689697266 + ], + [ + "▁Rosie", + -12.935636520385742 + ], + [ + "▁Cobb", + -12.935662269592285 + ], + [ + "▁revert", + -12.935843467712402 + ], + [ + "▁synth", + -12.93590259552002 + ], + [ + "▁consequential", + -12.935972213745117 + ], + [ + "Cap", + -12.935995101928711 + ], + [ + "▁Jenner", + -12.936044692993164 + ], + [ + "▁sterile", + -12.936065673828125 + ], + [ + "▁contentious", + -12.93609619140625 + ], + [ + "▁york", + -12.93615436553955 + ], + [ + "▁angular", + -12.936203002929688 + ], + [ + "▁pharmacist", + -12.936214447021484 + ], + [ + "▁Cent", + -12.936233520507812 + ], + [ + "▁Bil", + -12.936241149902344 + ], + [ + "members", + -12.936249732971191 + ], + [ + "▁Fabulous", + -12.936266899108887 + ], + [ + "▁Avon", + -12.936346054077148 + ], + [ + "▁Celsius", + -12.93635082244873 + ], + [ + "▁headers", + -12.936368942260742 + ], + [ + "▁rejecting", + -12.936431884765625 + ], + [ + "▁UL", + -12.936484336853027 + ], + [ + "loved", + -12.936602592468262 + ], + [ + "uan", + -12.936629295349121 + ], + [ + "▁blockbuster", + -12.93663215637207 + ], + [ + "▁Thy", + -12.936674118041992 + ], + [ + "121", + -12.93675422668457 + ], + [ + "▁conceal", + -12.936872482299805 + ], + [ + "▁fluent", + -12.936883926391602 + ], + [ + "dle", + -12.93700122833252 + ], + [ + "▁Behavioral", + -12.937066078186035 + ], + [ + "FI", + -12.937141418457031 + ], + [ + "▁detergent", + -12.937143325805664 + ], + [ + "▁Sum", + -12.937204360961914 + ], + [ + "▁1905", + -12.93720817565918 + ], + [ + "Full", + -12.937285423278809 + ], + [ + "▁Investing", + -12.937324523925781 + ], + [ + "Fe", + -12.937336921691895 + ], + [ + "▁reopen", + -12.937455177307129 + ], + [ + "▁rendition", + -12.937475204467773 + ], + [ + "▁spectral", + -12.937536239624023 + ], + [ + "▁pitchers", + -12.937540054321289 + ], + [ + "▁melodic", + -12.937588691711426 + ], + [ + "▁Gaga", + -12.93773078918457 + ], + [ + "▁Mobility", + -12.937790870666504 + ], + [ + "▁desperation", + -12.937797546386719 + ], + [ + "▁cords", + -12.937902450561523 + ], + [ + "▁resonate", + -12.937987327575684 + ], + [ + "▁Ducks", + -12.937994956970215 + ], + [ + "connected", + -12.937996864318848 + ], + [ + "hon", + -12.938257217407227 + ], + [ + "▁esteem", + -12.93833065032959 + ], + [ + "▁commissioners", + -12.938334465026855 + ], + [ + "ww", + -12.938355445861816 + ], + [ + "faced", + -12.93837833404541 + ], + [ + "agh", + -12.938435554504395 + ], + [ + "▁Denis", + -12.93848705291748 + ], + [ + "▁Organ", + -12.938516616821289 + ], + [ + "▁Conversion", + -12.93852424621582 + ], + [ + "▁regrets", + -12.938750267028809 + ], + [ + "▁tack", + -12.938834190368652 + ], + [ + "▁inject", + -12.938860893249512 + ], + [ + "▁piston", + -12.93886661529541 + ], + [ + "▁Pharmaceutical", + -12.938902854919434 + ], + [ + "▁snowy", + -12.938922882080078 + ], + [ + "▁sesame", + -12.939022064208984 + ], + [ + "▁ordeal", + -12.93903636932373 + ], + [ + "£", + -12.939079284667969 + ], + [ + "▁Mun", + -12.939167022705078 + ], + [ + "Ti", + -12.939270973205566 + ], + [ + "▁Tough", + -12.939311027526855 + ], + [ + "ture", + -12.939330101013184 + ], + [ + "every", + -12.939346313476562 + ], + [ + "▁sunk", + -12.939373970031738 + ], + [ + "iza", + -12.939451217651367 + ], + [ + "▁Ministers", + -12.939481735229492 + ], + [ + "▁def", + -12.939489364624023 + ], + [ + "cio", + -12.939656257629395 + ], + [ + "▁Ek", + -12.93970012664795 + ], + [ + "▁knight", + -12.939726829528809 + ], + [ + "▁stab", + -12.939748764038086 + ], + [ + "▁biopsy", + -12.939769744873047 + ], + [ + "▁Pension", + -12.939835548400879 + ], + [ + "▁arrivals", + -12.939864158630371 + ], + [ + "▁Tasmania", + -12.939872741699219 + ], + [ + "ка", + -12.939937591552734 + ], + [ + "▁deportation", + -12.9400053024292 + ], + [ + "149", + -12.940018653869629 + ], + [ + "▁Hicks", + -12.94003963470459 + ], + [ + "▁CES", + -12.940042495727539 + ], + [ + "▁inadvertently", + -12.940086364746094 + ], + [ + "▁notwithstanding", + -12.940169334411621 + ], + [ + "▁organisational", + -12.940184593200684 + ], + [ + "▁narrowed", + -12.94018840789795 + ], + [ + "▁explosions", + -12.940244674682617 + ], + [ + "▁Astro", + -12.940284729003906 + ], + [ + "▁RAF", + -12.940293312072754 + ], + [ + "Ni", + -12.940338134765625 + ], + [ + "▁Dentistry", + -12.940447807312012 + ], + [ + "▁riches", + -12.940715789794922 + ], + [ + "travel", + -12.940773010253906 + ], + [ + "▁totaling", + -12.94086742401123 + ], + [ + "003", + -12.940998077392578 + ], + [ + "▁slash", + -12.941047668457031 + ], + [ + "▁resisted", + -12.941100120544434 + ], + [ + "▁Romantic", + -12.941118240356445 + ], + [ + "▁Husband", + -12.941267013549805 + ], + [ + "▁Marvin", + -12.941322326660156 + ], + [ + "▁Concord", + -12.941393852233887 + ], + [ + "▁Pilates", + -12.941436767578125 + ], + [ + "▁Frog", + -12.941545486450195 + ], + [ + "Stop", + -12.941612243652344 + ], + [ + "▁Exp", + -12.941630363464355 + ], + [ + "▁strategist", + -12.941643714904785 + ], + [ + "▁reunited", + -12.941740036010742 + ], + [ + "▁delve", + -12.941756248474121 + ], + [ + "▁novelist", + -12.941805839538574 + ], + [ + "▁HT", + -12.941845893859863 + ], + [ + "▁Sketch", + -12.941865921020508 + ], + [ + "▁blasted", + -12.941903114318848 + ], + [ + "▁subsidy", + -12.941914558410645 + ], + [ + "Michael", + -12.941939353942871 + ], + [ + "▁Quiet", + -12.942028999328613 + ], + [ + "▁Counties", + -12.94216251373291 + ], + [ + "▁206", + -12.942238807678223 + ], + [ + "▁Smile", + -12.94228458404541 + ], + [ + "▁dripping", + -12.942304611206055 + ], + [ + "▁occupies", + -12.942331314086914 + ], + [ + "▁Factors", + -12.942384719848633 + ], + [ + "▁spear", + -12.942463874816895 + ], + [ + "▁ebooks", + -12.942578315734863 + ], + [ + "▁alerted", + -12.94260311126709 + ], + [ + "▁irritated", + -12.942671775817871 + ], + [ + "▁DW", + -12.942696571350098 + ], + [ + "RNA", + -12.942764282226562 + ], + [ + "▁barley", + -12.942785263061523 + ], + [ + "▁franchises", + -12.942788124084473 + ], + [ + "Series", + -12.942791938781738 + ], + [ + "▁Dil", + -12.942813873291016 + ], + [ + "▁buffalo", + -12.942893028259277 + ], + [ + "▁Thornton", + -12.942935943603516 + ], + [ + "▁thrift", + -12.942983627319336 + ], + [ + "▁MF", + -12.943086624145508 + ], + [ + "▁pane", + -12.943151473999023 + ], + [ + "▁Sex", + -12.94315242767334 + ], + [ + "▁favourable", + -12.943183898925781 + ], + [ + "▁sap", + -12.94334602355957 + ], + [ + "lk", + -12.943361282348633 + ], + [ + "▁gripping", + -12.943434715270996 + ], + [ + "▁Warwick", + -12.943533897399902 + ], + [ + "▁Alps", + -12.943550109863281 + ], + [ + "▁Kyoto", + -12.94360065460205 + ], + [ + "▁subscribed", + -12.943704605102539 + ], + [ + "hah", + -12.943886756896973 + ], + [ + "▁sluggish", + -12.944024085998535 + ], + [ + "▁146", + -12.944029808044434 + ], + [ + "▁Manafort", + -12.944150924682617 + ], + [ + "▁Barbie", + -12.944153785705566 + ], + [ + "ité", + -12.944189071655273 + ], + [ + "▁Temperature", + -12.944275856018066 + ], + [ + "▁bury", + -12.944299697875977 + ], + [ + "▁shutters", + -12.94433307647705 + ], + [ + "single", + -12.94434642791748 + ], + [ + "Any", + -12.944351196289062 + ], + [ + "▁156", + -12.944393157958984 + ], + [ + "▁HELP", + -12.944393157958984 + ], + [ + "▁Operator", + -12.944524765014648 + ], + [ + "▁migraine", + -12.944572448730469 + ], + [ + "▁runoff", + -12.944576263427734 + ], + [ + "KA", + -12.944594383239746 + ], + [ + "▁sidewalks", + -12.944647789001465 + ], + [ + "▁brink", + -12.94466781616211 + ], + [ + "▁poorest", + -12.944713592529297 + ], + [ + "UI", + -12.94472885131836 + ], + [ + "▁prominently", + -12.944761276245117 + ], + [ + "rid", + -12.944830894470215 + ], + [ + "▁Browser", + -12.944864273071289 + ], + [ + "cz", + -12.944906234741211 + ], + [ + "▁crackdown", + -12.944912910461426 + ], + [ + "▁broadcasts", + -12.944942474365234 + ], + [ + "TX", + -12.944945335388184 + ], + [ + "▁saturation", + -12.944977760314941 + ], + [ + "WT", + -12.945058822631836 + ], + [ + "angle", + -12.945206642150879 + ], + [ + "▁hacks", + -12.945351600646973 + ], + [ + "▁Zack", + -12.945378303527832 + ], + [ + "▁Species", + -12.945438385009766 + ], + [ + "▁MUCH", + -12.94544792175293 + ], + [ + "qui", + -12.945476531982422 + ], + [ + "▁EQ", + -12.945637702941895 + ], + [ + "vie", + -12.945695877075195 + ], + [ + "▁summarize", + -12.945708274841309 + ], + [ + "▁catcher", + -12.945758819580078 + ], + [ + "▁nationality", + -12.945762634277344 + ], + [ + "▁pitfalls", + -12.945795059204102 + ], + [ + "Site", + -12.94583511352539 + ], + [ + "▁Christchurch", + -12.945841789245605 + ], + [ + "▁RR", + -12.945866584777832 + ], + [ + "▁Advent", + -12.945910453796387 + ], + [ + "▁Lent", + -12.94601821899414 + ], + [ + "▁Chartered", + -12.946066856384277 + ], + [ + "▁fisheries", + -12.946127891540527 + ], + [ + "▁undercover", + -12.946417808532715 + ], + [ + "▁MU", + -12.94644546508789 + ], + [ + "finals", + -12.94646167755127 + ], + [ + "▁€1", + -12.946577072143555 + ], + [ + "▁Necklace", + -12.94658374786377 + ], + [ + "▁divert", + -12.946693420410156 + ], + [ + "▁deprivation", + -12.946708679199219 + ], + [ + "ectomy", + -12.946754455566406 + ], + [ + "▁discern", + -12.946759223937988 + ], + [ + "▁guts", + -12.94676399230957 + ], + [ + "▁insignificant", + -12.94684886932373 + ], + [ + "▁bleach", + -12.946903228759766 + ], + [ + "▁Chic", + -12.947041511535645 + ], + [ + "▁regulates", + -12.94707202911377 + ], + [ + "▁Everton", + -12.947192192077637 + ], + [ + "▁transitioning", + -12.947213172912598 + ], + [ + "▁Institutional", + -12.947225570678711 + ], + [ + "▁WIN", + -12.947260856628418 + ], + [ + "▁illustrator", + -12.947299003601074 + ], + [ + "▁mai", + -12.947511672973633 + ], + [ + "▁touted", + -12.947626113891602 + ], + [ + "▁Nadu", + -12.947636604309082 + ], + [ + "▁Flame", + -12.947676658630371 + ], + [ + "▁organisers", + -12.947818756103516 + ], + [ + "▁Tay", + -12.947846412658691 + ], + [ + "▁nets", + -12.947855949401855 + ], + [ + "▁brochures", + -12.947916030883789 + ], + [ + "▁Towers", + -12.947979927062988 + ], + [ + "pod", + -12.948027610778809 + ], + [ + "▁concurrent", + -12.948090553283691 + ], + [ + "▁pursuits", + -12.948201179504395 + ], + [ + "▁acknowledgement", + -12.9483003616333 + ], + [ + "▁YRS", + -12.9483060836792 + ], + [ + "▁RG", + -12.948436737060547 + ], + [ + "▁implementations", + -12.948579788208008 + ], + [ + "EB", + -12.948607444763184 + ], + [ + "▁Peach", + -12.94862174987793 + ], + [ + "zz", + -12.948661804199219 + ], + [ + "TER", + -12.948810577392578 + ], + [ + "▁Muscle", + -12.948864936828613 + ], + [ + "▁Miracle", + -12.94896125793457 + ], + [ + "▁Visitor", + -12.949151992797852 + ], + [ + "ARY", + -12.949152946472168 + ], + [ + "▁203", + -12.949170112609863 + ], + [ + "122", + -12.949177742004395 + ], + [ + "▁spawn", + -12.949259757995605 + ], + [ + "ike", + -12.949418067932129 + ], + [ + "▁£100", + -12.949548721313477 + ], + [ + "▁mast", + -12.949689865112305 + ], + [ + "▁Hazel", + -12.949934959411621 + ], + [ + "▁willingly", + -12.949953079223633 + ], + [ + "▁deleting", + -12.949954986572266 + ], + [ + "▁teas", + -12.949981689453125 + ], + [ + "stay", + -12.950040817260742 + ], + [ + "119", + -12.950078010559082 + ], + [ + "▁Specialists", + -12.950095176696777 + ], + [ + "▁prohibits", + -12.950101852416992 + ], + [ + "▁sauces", + -12.95012378692627 + ], + [ + "▁Telephone", + -12.950206756591797 + ], + [ + "▁Assisted", + -12.950226783752441 + ], + [ + "DU", + -12.950246810913086 + ], + [ + "▁Judicial", + -12.950277328491211 + ], + [ + "▁BUY", + -12.950300216674805 + ], + [ + "▁exhaustive", + -12.95032024383545 + ], + [ + "▁yell", + -12.95038890838623 + ], + [ + "▁NRA", + -12.950397491455078 + ], + [ + "▁countertop", + -12.950498580932617 + ], + [ + "▁Estates", + -12.950554847717285 + ], + [ + "▁postcard", + -12.950679779052734 + ], + [ + "▁Africans", + -12.950706481933594 + ], + [ + "▁fenced", + -12.950737953186035 + ], + [ + "▁Dalton", + -12.950834274291992 + ], + [ + "▁Orchard", + -12.950908660888672 + ], + [ + "▁Ear", + -12.951094627380371 + ], + [ + "▁Goose", + -12.951128005981445 + ], + [ + "▁Alicia", + -12.951201438903809 + ], + [ + "▁208", + -12.951241493225098 + ], + [ + "▁ozone", + -12.951354026794434 + ], + [ + "▁PLUS", + -12.951373100280762 + ], + [ + "▁descending", + -12.951410293579102 + ], + [ + "▁hinge", + -12.951537132263184 + ], + [ + "▁301", + -12.951566696166992 + ], + [ + "▁inbound", + -12.951662063598633 + ], + [ + "omi", + -12.952032089233398 + ], + [ + "▁dealings", + -12.952058792114258 + ], + [ + "▁affidavit", + -12.952062606811523 + ], + [ + "▁acidity", + -12.952154159545898 + ], + [ + "▁olives", + -12.952160835266113 + ], + [ + "▁168", + -12.952173233032227 + ], + [ + "▁psychologists", + -12.952347755432129 + ], + [ + "inclusive", + -12.952401161193848 + ], + [ + "▁shorten", + -12.95254135131836 + ], + [ + "▁inexperienced", + -12.952582359313965 + ], + [ + "static", + -12.952622413635254 + ], + [ + "▁DX", + -12.952695846557617 + ], + [ + "▁strides", + -12.952853202819824 + ], + [ + "mag", + -12.95291519165039 + ], + [ + "▁Gwen", + -12.952919960021973 + ], + [ + "▁lifecycle", + -12.952950477600098 + ], + [ + "▁›", + -12.953056335449219 + ], + [ + "▁Shock", + -12.953100204467773 + ], + [ + "ي", + -12.95312786102295 + ], + [ + "▁Hum", + -12.953134536743164 + ], + [ + "▁bursts", + -12.953163146972656 + ], + [ + "▁shady", + -12.95322036743164 + ], + [ + "▁multidisciplinary", + -12.953351020812988 + ], + [ + "▁Nursery", + -12.95338249206543 + ], + [ + "bis", + -12.953448295593262 + ], + [ + "▁unnoticed", + -12.953479766845703 + ], + [ + "▁Purdue", + -12.953536033630371 + ], + [ + "▁ext", + -12.953609466552734 + ], + [ + "VM", + -12.953642845153809 + ], + [ + "▁FedEx", + -12.953655242919922 + ], + [ + "▁Medi", + -12.953680992126465 + ], + [ + "▁untouched", + -12.953728675842285 + ], + [ + "▁Canton", + -12.953783988952637 + ], + [ + "▁teaser", + -12.953800201416016 + ], + [ + "▁hospice", + -12.953831672668457 + ], + [ + "▁1862", + -12.953866004943848 + ], + [ + "▁Household", + -12.953995704650879 + ], + [ + "▁poignant", + -12.954004287719727 + ], + [ + "onic", + -12.954212188720703 + ], + [ + "MR", + -12.9542875289917 + ], + [ + "▁microbial", + -12.954386711120605 + ], + [ + "▁Hoover", + -12.954490661621094 + ], + [ + "gue", + -12.95455265045166 + ], + [ + "▁abnormalities", + -12.95456600189209 + ], + [ + "wyn", + -12.954666137695312 + ], + [ + "▁Lancashire", + -12.954882621765137 + ], + [ + "▁Reception", + -12.95500373840332 + ], + [ + "▁Fiona", + -12.95505142211914 + ], + [ + "▁Israelis", + -12.955053329467773 + ], + [ + "▁Ecology", + -12.9551420211792 + ], + [ + "conference", + -12.95523452758789 + ], + [ + "▁resembling", + -12.955288887023926 + ], + [ + "▁postings", + -12.955586433410645 + ], + [ + "▁Motorcycle", + -12.95560073852539 + ], + [ + "▁photographing", + -12.95563793182373 + ], + [ + "Those", + -12.955707550048828 + ], + [ + "▁occupying", + -12.955890655517578 + ], + [ + "▁Closet", + -12.9559326171875 + ], + [ + "▁Conrad", + -12.955941200256348 + ], + [ + "▁Odd", + -12.955944061279297 + ], + [ + "▁Supplement", + -12.95598030090332 + ], + [ + "▁incidental", + -12.956022262573242 + ], + [ + "▁adidas", + -12.956117630004883 + ], + [ + "▁Quartz", + -12.956153869628906 + ], + [ + "mir", + -12.956294059753418 + ], + [ + "▁encompass", + -12.956311225891113 + ], + [ + "employed", + -12.95634651184082 + ], + [ + "dead", + -12.95635986328125 + ], + [ + "▁Kremlin", + -12.956377983093262 + ], + [ + "▁pounding", + -12.956404685974121 + ], + [ + "▁Describe", + -12.95650577545166 + ], + [ + "▁pacing", + -12.956598281860352 + ], + [ + "▁vibrations", + -12.9566068649292 + ], + [ + "▁cruises", + -12.956608772277832 + ], + [ + "▁unconditional", + -12.956657409667969 + ], + [ + "▁Vir", + -12.95666217803955 + ], + [ + "▁marina", + -12.956767082214355 + ], + [ + "▁Doom", + -12.956774711608887 + ], + [ + "▁Gus", + -12.956830024719238 + ], + [ + "▁185", + -12.956864356994629 + ], + [ + "▁Iris", + -12.956938743591309 + ], + [ + "DF", + -12.956977844238281 + ], + [ + "▁unfolding", + -12.957005500793457 + ], + [ + "About", + -12.957014083862305 + ], + [ + "▁piercing", + -12.957024574279785 + ], + [ + "▁botanical", + -12.95704460144043 + ], + [ + "▁Pyongyang", + -12.957054138183594 + ], + [ + "▁veggie", + -12.957099914550781 + ], + [ + "VC", + -12.957201957702637 + ], + [ + "tom", + -12.957329750061035 + ], + [ + "▁Sunrise", + -12.957375526428223 + ], + [ + "▁commentators", + -12.957408905029297 + ], + [ + "▁Jer", + -12.957409858703613 + ], + [ + "chemical", + -12.957448959350586 + ], + [ + "▁joked", + -12.957479476928711 + ], + [ + "▁coincide", + -12.957565307617188 + ], + [ + "▁youngster", + -12.95760726928711 + ], + [ + "▁acidic", + -12.957695007324219 + ], + [ + "▁yuan", + -12.957715034484863 + ], + [ + "▁Audrey", + -12.957734107971191 + ], + [ + "▁Rocks", + -12.95777416229248 + ], + [ + "▁Moroccan", + -12.957883834838867 + ], + [ + "▁astronomy", + -12.957907676696777 + ], + [ + "▁Bermuda", + -12.958052635192871 + ], + [ + "writer", + -12.958069801330566 + ], + [ + "▁Madonna", + -12.958085060119629 + ], + [ + "▁resale", + -12.958133697509766 + ], + [ + "▁governors", + -12.958186149597168 + ], + [ + "ICA", + -12.958346366882324 + ], + [ + "▁revolves", + -12.95849895477295 + ], + [ + "▁quieter", + -12.95850944519043 + ], + [ + "▁Decoration", + -12.958622932434082 + ], + [ + "▁POST", + -12.95865249633789 + ], + [ + "▁Eleanor", + -12.95879077911377 + ], + [ + "002", + -12.958910942077637 + ], + [ + "▁lest", + -12.958944320678711 + ], + [ + "▁twisting", + -12.958952903747559 + ], + [ + "qua", + -12.958983421325684 + ], + [ + "▁Mercer", + -12.959493637084961 + ], + [ + "jen", + -12.959538459777832 + ], + [ + "▁Sioux", + -12.959619522094727 + ], + [ + "▁attributable", + -12.959649085998535 + ], + [ + "▁mop", + -12.959831237792969 + ], + [ + "▁solicitor", + -12.959832191467285 + ], + [ + "▁exceedingly", + -12.959847450256348 + ], + [ + "▁BEFORE", + -12.95988655090332 + ], + [ + "▁ancestry", + -12.960108757019043 + ], + [ + "▁whimsical", + -12.960123062133789 + ], + [ + "▁ninety", + -12.960139274597168 + ], + [ + "▁Ministries", + -12.96018123626709 + ], + [ + "nate", + -12.96023941040039 + ], + [ + "▁ordained", + -12.960407257080078 + ], + [ + "127", + -12.96043872833252 + ], + [ + "▁resemblance", + -12.960471153259277 + ], + [ + "▁militia", + -12.960487365722656 + ], + [ + "▁grouping", + -12.960563659667969 + ], + [ + "▁watchdog", + -12.960617065429688 + ], + [ + "TF", + -12.960728645324707 + ], + [ + "▁meticulously", + -12.960834503173828 + ], + [ + "raj", + -12.960884094238281 + ], + [ + "▁oatmeal", + -12.960887908935547 + ], + [ + "▁Stretch", + -12.960952758789062 + ], + [ + "kun", + -12.960967063903809 + ], + [ + "▁Cro", + -12.9609956741333 + ], + [ + "199", + -12.96099853515625 + ], + [ + "▁occupations", + -12.96102523803711 + ], + [ + "▁plum", + -12.96104621887207 + ], + [ + "▁Investigator", + -12.961133003234863 + ], + [ + "▁Jakarta", + -12.96119499206543 + ], + [ + "▁buzzing", + -12.961238861083984 + ], + [ + "▁Mira", + -12.96126937866211 + ], + [ + "▁Yup", + -12.961270332336426 + ], + [ + "▁wager", + -12.961275100708008 + ], + [ + "rant", + -12.961344718933105 + ], + [ + "ics", + -12.961441993713379 + ], + [ + "▁carve", + -12.961495399475098 + ], + [ + "ving", + -12.961529731750488 + ], + [ + "nica", + -12.961609840393066 + ], + [ + "keeper", + -12.96181583404541 + ], + [ + "▁illustrating", + -12.961915016174316 + ], + [ + "▁ticks", + -12.962081909179688 + ], + [ + "▁ARC", + -12.962099075317383 + ], + [ + "▁HDR", + -12.962141990661621 + ], + [ + "▁Fern", + -12.96219253540039 + ], + [ + "▁spaced", + -12.962282180786133 + ], + [ + "▁Kimberly", + -12.962423324584961 + ], + [ + "▁worldview", + -12.962434768676758 + ], + [ + "▁torso", + -12.962495803833008 + ], + [ + "▁swords", + -12.962496757507324 + ], + [ + "▁Juliet", + -12.96250057220459 + ], + [ + "▁Priority", + -12.962530136108398 + ], + [ + "▁extravagant", + -12.962532043457031 + ], + [ + "tter", + -12.962599754333496 + ], + [ + "▁Kathryn", + -12.962636947631836 + ], + [ + "▁nightclub", + -12.962702751159668 + ], + [ + "▁wickets", + -12.96270751953125 + ], + [ + "▁Combining", + -12.9627685546875 + ], + [ + "▁Sil", + -12.962885856628418 + ], + [ + "▁trucking", + -12.962953567504883 + ], + [ + "▁Hancock", + -12.963103294372559 + ], + [ + "▁perseverance", + -12.963167190551758 + ], + [ + "▁ASTM", + -12.963278770446777 + ], + [ + "nbsp", + -12.963482856750488 + ], + [ + "▁predecessors", + -12.963494300842285 + ], + [ + "▁Airbus", + -12.963502883911133 + ], + [ + "▁Meetings", + -12.963516235351562 + ], + [ + "▁fortress", + -12.963531494140625 + ], + [ + "은", + -12.963566780090332 + ], + [ + "PER", + -12.963607788085938 + ], + [ + "▁Biden", + -12.963613510131836 + ], + [ + "ogen", + -12.963631629943848 + ], + [ + "▁Woody", + -12.963687896728516 + ], + [ + "▁trophies", + -12.963692665100098 + ], + [ + "▁Rivera", + -12.963799476623535 + ], + [ + "▁nesting", + -12.96385669708252 + ], + [ + "erson", + -12.96386432647705 + ], + [ + "▁Dem", + -12.963884353637695 + ], + [ + "▁Erdogan", + -12.963918685913086 + ], + [ + "▁SET", + -12.963994979858398 + ], + [ + "tip", + -12.964109420776367 + ], + [ + "▁climbs", + -12.964229583740234 + ], + [ + "▁Lung", + -12.96430492401123 + ], + [ + "▁dé", + -12.964344024658203 + ], + [ + "▁towering", + -12.96435832977295 + ], + [ + "iq", + -12.964426040649414 + ], + [ + "ibility", + -12.964478492736816 + ], + [ + "▁dissemination", + -12.964505195617676 + ], + [ + "▁Everest", + -12.964545249938965 + ], + [ + "▁condemnation", + -12.964555740356445 + ], + [ + "▁Zacks", + -12.964588165283203 + ], + [ + "▁reacting", + -12.964614868164062 + ], + [ + "▁148", + -12.964695930480957 + ], + [ + "▁Syn", + -12.964727401733398 + ], + [ + "▁imperfect", + -12.964736938476562 + ], + [ + "▁oasis", + -12.964791297912598 + ], + [ + "▁Rentals", + -12.964977264404297 + ], + [ + "▁plagiarism", + -12.964978218078613 + ], + [ + "▁Exploration", + -12.965004920959473 + ], + [ + "▁Deco", + -12.965010643005371 + ], + [ + "hor", + -12.965131759643555 + ], + [ + "▁charismatic", + -12.965204238891602 + ], + [ + "entry", + -12.965215682983398 + ], + [ + "scope", + -12.965248107910156 + ], + [ + "fund", + -12.965263366699219 + ], + [ + "▁cynical", + -12.965312957763672 + ], + [ + "▁Transition", + -12.965373992919922 + ], + [ + "▁XS", + -12.96537971496582 + ], + [ + "▁rave", + -12.965460777282715 + ], + [ + "▁Kapoor", + -12.965462684631348 + ], + [ + "▁Minute", + -12.96551513671875 + ], + [ + "▁Fra", + -12.965630531311035 + ], + [ + "▁Creed", + -12.965631484985352 + ], + [ + "▁ache", + -12.965678215026855 + ], + [ + "▁Judiciary", + -12.965741157531738 + ], + [ + "▁anyways", + -12.965780258178711 + ], + [ + "inen", + -12.96591854095459 + ], + [ + "location", + -12.965936660766602 + ], + [ + "▁alliances", + -12.966163635253906 + ], + [ + "▁£20", + -12.96622371673584 + ], + [ + "▁Edited", + -12.966329574584961 + ], + [ + "WR", + -12.966379165649414 + ], + [ + "▁Costco", + -12.966409683227539 + ], + [ + "▁instruct", + -12.96642017364502 + ], + [ + "▁halted", + -12.966507911682129 + ], + [ + "▁152", + -12.966571807861328 + ], + [ + "▁Tra", + -12.966591835021973 + ], + [ + "▁bots", + -12.966633796691895 + ], + [ + "Im", + -12.96665096282959 + ], + [ + "▁dc", + -12.966693878173828 + ], + [ + "Game", + -12.966736793518066 + ], + [ + "▁Bul", + -12.966740608215332 + ], + [ + "CBS", + -12.966753959655762 + ], + [ + "▁1700", + -12.966838836669922 + ], + [ + "▁flavorful", + -12.966891288757324 + ], + [ + "▁gastrointestinal", + -12.966891288757324 + ], + [ + "▁Nights", + -12.966896057128906 + ], + [ + "118", + -12.966949462890625 + ], + [ + "sync", + -12.967264175415039 + ], + [ + "▁muffin", + -12.967325210571289 + ], + [ + "▁segregation", + -12.967453956604004 + ], + [ + "miss", + -12.96755599975586 + ], + [ + "development", + -12.967561721801758 + ], + [ + "▁screenplay", + -12.967618942260742 + ], + [ + "▁unreliable", + -12.967672348022461 + ], + [ + "▁aggregation", + -12.967686653137207 + ], + [ + "▁spraying", + -12.967713356018066 + ], + [ + "button", + -12.967761993408203 + ], + [ + "▁Worship", + -12.967808723449707 + ], + [ + "▁Amelia", + -12.967865943908691 + ], + [ + "▁Kap", + -12.968016624450684 + ], + [ + "▁exponentially", + -12.968053817749023 + ], + [ + "▁Pamela", + -12.968118667602539 + ], + [ + "▁Handle", + -12.968278884887695 + ], + [ + "▁heavyweight", + -12.968286514282227 + ], + [ + "▁Lydia", + -12.968363761901855 + ], + [ + "NH", + -12.968385696411133 + ], + [ + "▁ambience", + -12.968391418457031 + ], + [ + "▁diagnostics", + -12.968457221984863 + ], + [ + "▁circulated", + -12.968480110168457 + ], + [ + "▁muffins", + -12.96851634979248 + ], + [ + "▁Architectural", + -12.968538284301758 + ], + [ + "times", + -12.968626976013184 + ], + [ + "▁glands", + -12.968644142150879 + ], + [ + "▁doctorate", + -12.968668937683105 + ], + [ + "▁Yacht", + -12.968725204467773 + ], + [ + "inn", + -12.968826293945312 + ], + [ + "thin", + -12.968870162963867 + ], + [ + "▁adaptable", + -12.968890190124512 + ], + [ + "▁managerial", + -12.969001770019531 + ], + [ + "▁alleges", + -12.969062805175781 + ], + [ + "▁troop", + -12.969213485717773 + ], + [ + "▁grout", + -12.969239234924316 + ], + [ + "logy", + -12.969274520874023 + ], + [ + "▁kinase", + -12.96937370300293 + ], + [ + "TI", + -12.969442367553711 + ], + [ + "▁shooters", + -12.96956729888916 + ], + [ + "▁designate", + -12.969621658325195 + ], + [ + "▁pods", + -12.96972942352295 + ], + [ + "▁electrodes", + -12.969743728637695 + ], + [ + "▁christian", + -12.969752311706543 + ], + [ + "Long", + -12.969773292541504 + ], + [ + "▁Honolulu", + -12.969786643981934 + ], + [ + "▁BMI", + -12.969867706298828 + ], + [ + "LEY", + -12.969995498657227 + ], + [ + "hin", + -12.970166206359863 + ], + [ + "HI", + -12.97018814086914 + ], + [ + "▁Exploring", + -12.970208168029785 + ], + [ + "▁motel", + -12.970460891723633 + ], + [ + "▁142", + -12.970462799072266 + ], + [ + "Very", + -12.970498085021973 + ], + [ + "▁Advocate", + -12.970559120178223 + ], + [ + "▁RJ", + -12.970623970031738 + ], + [ + "▁Mozilla", + -12.970636367797852 + ], + [ + "▁Experiment", + -12.970721244812012 + ], + [ + "▁cf", + -12.970796585083008 + ], + [ + "▁Ribbon", + -12.970943450927734 + ], + [ + "▁exploits", + -12.9711332321167 + ], + [ + "▁Albuquerque", + -12.971173286437988 + ], + [ + "HM", + -12.971237182617188 + ], + [ + "▁Blank", + -12.971281051635742 + ], + [ + "▁DID", + -12.971343994140625 + ], + [ + "lio", + -12.971380233764648 + ], + [ + "▁patriotic", + -12.971546173095703 + ], + [ + "▁EMC", + -12.971566200256348 + ], + [ + "▁eCommerce", + -12.971610069274902 + ], + [ + "▁Strait", + -12.971745491027832 + ], + [ + "AIDS", + -12.971799850463867 + ], + [ + "▁Saga", + -12.971827507019043 + ], + [ + "NB", + -12.971866607666016 + ], + [ + "▁Roots", + -12.971896171569824 + ], + [ + "▁causal", + -12.972005844116211 + ], + [ + "chair", + -12.972012519836426 + ], + [ + "▁spilled", + -12.972053527832031 + ], + [ + "▁zucchini", + -12.972076416015625 + ], + [ + "▁noun", + -12.972077369689941 + ], + [ + "▁rotor", + -12.9721097946167 + ], + [ + "either", + -12.972131729125977 + ], + [ + "▁smelled", + -12.972329139709473 + ], + [ + "▁mildly", + -12.972336769104004 + ], + [ + "DG", + -12.9723539352417 + ], + [ + "▁GH", + -12.972389221191406 + ], + [ + "▁Particularly", + -12.972402572631836 + ], + [ + "▁dynamically", + -12.972457885742188 + ], + [ + "▁uninstall", + -12.972502708435059 + ], + [ + "▁Gail", + -12.972674369812012 + ], + [ + "▁drizzle", + -12.972708702087402 + ], + [ + "▁owes", + -12.972801208496094 + ], + [ + "▁Slowly", + -12.972871780395508 + ], + [ + "▁Claude", + -12.972878456115723 + ], + [ + "▁Zambia", + -12.972933769226074 + ], + [ + "▁warranted", + -12.97295093536377 + ], + [ + "▁Meredith", + -12.973002433776855 + ], + [ + "▁lent", + -12.973024368286133 + ], + [ + "▁Tahoe", + -12.973097801208496 + ], + [ + "▁computation", + -12.973112106323242 + ], + [ + "▁preached", + -12.973268508911133 + ], + [ + "▁attaching", + -12.97327709197998 + ], + [ + "protein", + -12.97333812713623 + ], + [ + "▁tacos", + -12.973367691040039 + ], + [ + "5°", + -12.973386764526367 + ], + [ + "▁Mathematical", + -12.97346305847168 + ], + [ + "mad", + -12.973566055297852 + ], + [ + "▁complemented", + -12.97359561920166 + ], + [ + "▁foundational", + -12.973626136779785 + ], + [ + "▁Photographer", + -12.973731994628906 + ], + [ + "▁Ronnie", + -12.973784446716309 + ], + [ + "▁Islamist", + -12.973785400390625 + ], + [ + "▁entitlement", + -12.97386646270752 + ], + [ + "▁transmitting", + -12.973922729492188 + ], + [ + "▁aqua", + -12.973994255065918 + ], + [ + "▁emphasizing", + -12.97402286529541 + ], + [ + "▁Diseases", + -12.974058151245117 + ], + [ + "▁Kensington", + -12.974129676818848 + ], + [ + "▁Hunting", + -12.974142074584961 + ], + [ + "▁buff", + -12.974396705627441 + ], + [ + "▁Fl", + -12.974431037902832 + ], + [ + "▁greedy", + -12.974467277526855 + ], + [ + "▁needy", + -12.97464656829834 + ], + [ + "TC", + -12.974724769592285 + ], + [ + "ー", + -12.974753379821777 + ], + [ + "131", + -12.974754333496094 + ], + [ + "▁Julius", + -12.974876403808594 + ], + [ + "▁roasting", + -12.975004196166992 + ], + [ + "▁sampled", + -12.975098609924316 + ], + [ + "cutting", + -12.975105285644531 + ], + [ + "▁interpreter", + -12.97512435913086 + ], + [ + "▁inflated", + -12.975494384765625 + ], + [ + "▁Loft", + -12.975532531738281 + ], + [ + "▁parasites", + -12.97555923461914 + ], + [ + "▁EVERY", + -12.975571632385254 + ], + [ + "▁Mau", + -12.975617408752441 + ], + [ + "▁supplementary", + -12.975677490234375 + ], + [ + "▁shear", + -12.975699424743652 + ], + [ + "▁pelvic", + -12.975750923156738 + ], + [ + "nas", + -12.975765228271484 + ], + [ + "▁tallest", + -12.975765228271484 + ], + [ + "▁ANC", + -12.975768089294434 + ], + [ + "▁Prop", + -12.97576904296875 + ], + [ + "▁crappy", + -12.975776672363281 + ], + [ + "Run", + -12.97580623626709 + ], + [ + "▁RAW", + -12.97581958770752 + ], + [ + "▁fortunately", + -12.975821495056152 + ], + [ + "▁butcher", + -12.975912094116211 + ], + [ + "blind", + -12.975955963134766 + ], + [ + "▁Costs", + -12.975983619689941 + ], + [ + "▁1861", + -12.975996971130371 + ], + [ + "▁DOWNLOAD", + -12.976194381713867 + ], + [ + "205", + -12.976253509521484 + ], + [ + "▁recurrent", + -12.976259231567383 + ], + [ + "▁medically", + -12.97626781463623 + ], + [ + "ency", + -12.976273536682129 + ], + [ + "▁encoded", + -12.976340293884277 + ], + [ + "▁upholstered", + -12.97641658782959 + ], + [ + "▁WANT", + -12.976479530334473 + ], + [ + "▁cauliflower", + -12.9765043258667 + ], + [ + "▁firsthand", + -12.976529121398926 + ], + [ + "▁Companion", + -12.976741790771484 + ], + [ + "▁relish", + -12.97679328918457 + ], + [ + "▁Payday", + -12.97680377960205 + ], + [ + "▁paw", + -12.976859092712402 + ], + [ + "Friday", + -12.976863861083984 + ], + [ + "▁Greenville", + -12.976909637451172 + ], + [ + "lli", + -12.977116584777832 + ], + [ + "▁Conclusion", + -12.977143287658691 + ], + [ + "▁Doll", + -12.977155685424805 + ], + [ + "▁sparse", + -12.977182388305664 + ], + [ + "▁Fischer", + -12.977278709411621 + ], + [ + "▁liberties", + -12.977331161499023 + ], + [ + "▁guarded", + -12.977349281311035 + ], + [ + "▁brethren", + -12.977436065673828 + ], + [ + "▁robe", + -12.977458953857422 + ], + [ + "▁fuller", + -12.977524757385254 + ], + [ + "▁seriousness", + -12.977524757385254 + ], + [ + "▁Demon", + -12.977753639221191 + ], + [ + "existent", + -12.977785110473633 + ], + [ + "▁Respect", + -12.977811813354492 + ], + [ + "▁Martial", + -12.977884292602539 + ], + [ + "until", + -12.977910041809082 + ], + [ + "▁clauses", + -12.977980613708496 + ], + [ + "▁starving", + -12.977995872497559 + ], + [ + "▁Weston", + -12.978045463562012 + ], + [ + "treatment", + -12.978060722351074 + ], + [ + "▁Floral", + -12.978108406066895 + ], + [ + "▁Circus", + -12.978279113769531 + ], + [ + "▁Durant", + -12.978281021118164 + ], + [ + "▁LNG", + -12.978409767150879 + ], + [ + "▁Outer", + -12.978425025939941 + ], + [ + "▁purification", + -12.978513717651367 + ], + [ + "▁404", + -12.97856616973877 + ], + [ + "▁campground", + -12.97860336303711 + ], + [ + "▁wipes", + -12.978621482849121 + ], + [ + "256", + -12.978628158569336 + ], + [ + "▁narration", + -12.978683471679688 + ], + [ + "▁Fluid", + -12.978696823120117 + ], + [ + "▁Messi", + -12.978843688964844 + ], + [ + "▁Toledo", + -12.97892951965332 + ], + [ + "▁Rag", + -12.978978157043457 + ], + [ + "▁Greens", + -12.97906494140625 + ], + [ + "▁flashlight", + -12.979069709777832 + ], + [ + "▁communion", + -12.97915267944336 + ], + [ + "▁Hunger", + -12.979154586791992 + ], + [ + "▁Bulgarian", + -12.979241371154785 + ], + [ + "ography", + -12.979247093200684 + ], + [ + "International", + -12.979268074035645 + ], + [ + "▁invade", + -12.979397773742676 + ], + [ + "▁blouse", + -12.979411125183105 + ], + [ + "▁immortal", + -12.979437828063965 + ], + [ + "▁tails", + -12.979493141174316 + ], + [ + "iba", + -12.979531288146973 + ], + [ + "config", + -12.979801177978516 + ], + [ + "▁SN", + -12.979851722717285 + ], + [ + "275", + -12.980120658874512 + ], + [ + "▁wallets", + -12.980193138122559 + ], + [ + "▁Humanity", + -12.980206489562988 + ], + [ + "▁schizophrenia", + -12.980374336242676 + ], + [ + "▁Lama", + -12.980534553527832 + ], + [ + "▁charms", + -12.980615615844727 + ], + [ + "▁experiential", + -12.98063850402832 + ], + [ + "▁Recycling", + -12.980696678161621 + ], + [ + "plex", + -12.98070240020752 + ], + [ + "▁Vogue", + -12.980712890625 + ], + [ + "▁OD", + -12.980775833129883 + ], + [ + "▁standings", + -12.98087215423584 + ], + [ + "▁pleasures", + -12.980896949768066 + ], + [ + "▁tofu", + -12.981016159057617 + ], + [ + "Image", + -12.981027603149414 + ], + [ + "LAND", + -12.981061935424805 + ], + [ + "bug", + -12.981067657470703 + ], + [ + "3000", + -12.981091499328613 + ], + [ + "▁Noir", + -12.981122016906738 + ], + [ + "ides", + -12.981209754943848 + ], + [ + "▁lieutenant", + -12.981229782104492 + ], + [ + "▁bullish", + -12.981362342834473 + ], + [ + "▁1906", + -12.981368064880371 + ], + [ + "▁foregoing", + -12.98158073425293 + ], + [ + "pick", + -12.981592178344727 + ], + [ + "▁Shine", + -12.981671333312988 + ], + [ + "▁Ensemble", + -12.981729507446289 + ], + [ + "▁quantify", + -12.981754302978516 + ], + [ + "▁lovingly", + -12.981793403625488 + ], + [ + "▁Carlson", + -12.981942176818848 + ], + [ + "▁estimating", + -12.981948852539062 + ], + [ + "ı", + -12.982051849365234 + ], + [ + "▁soluble", + -12.982069969177246 + ], + [ + "▁john", + -12.98210620880127 + ], + [ + "▁Lyn", + -12.982107162475586 + ], + [ + "tank", + -12.98213005065918 + ], + [ + "▁Friendship", + -12.982155799865723 + ], + [ + "▁SJ", + -12.982312202453613 + ], + [ + "▁Shooting", + -12.982329368591309 + ], + [ + "▁locality", + -12.982402801513672 + ], + [ + "▁Goldberg", + -12.982428550720215 + ], + [ + "▁shortcuts", + -12.982430458068848 + ], + [ + "oke", + -12.9824857711792 + ], + [ + "és", + -12.982625961303711 + ], + [ + "▁PSA", + -12.982752799987793 + ], + [ + "train", + -12.982855796813965 + ], + [ + "▁GitHub", + -12.98293685913086 + ], + [ + "▁sufferers", + -12.9829683303833 + ], + [ + "wd", + -12.983010292053223 + ], + [ + "▁APR", + -12.983158111572266 + ], + [ + "▁airborne", + -12.983309745788574 + ], + [ + "▁reputed", + -12.983319282531738 + ], + [ + "▁redeemed", + -12.983358383178711 + ], + [ + "products", + -12.983404159545898 + ], + [ + "▁theoretically", + -12.983450889587402 + ], + [ + "▁homosexuality", + -12.983519554138184 + ], + [ + "▁allegiance", + -12.983575820922852 + ], + [ + "▁Sheets", + -12.983626365661621 + ], + [ + "▁advert", + -12.983728408813477 + ], + [ + "▁Surprisingly", + -12.98386001586914 + ], + [ + "▁throughput", + -12.984077453613281 + ], + [ + "▁externally", + -12.984098434448242 + ], + [ + "stars", + -12.984147071838379 + ], + [ + "▁loot", + -12.984271049499512 + ], + [ + "▁residues", + -12.98430347442627 + ], + [ + "▁chocolates", + -12.984370231628418 + ], + [ + "reaching", + -12.984404563903809 + ], + [ + "▁fret", + -12.984404563903809 + ], + [ + "▁foreground", + -12.984447479248047 + ], + [ + "▁troll", + -12.984504699707031 + ], + [ + "▁Congressman", + -12.984554290771484 + ], + [ + "▁archived", + -12.984583854675293 + ], + [ + "Other", + -12.98458480834961 + ], + [ + "▁chicks", + -12.984720230102539 + ], + [ + "▁RFID", + -12.984748840332031 + ], + [ + "▁Macy", + -12.984755516052246 + ], + [ + "▁specificity", + -12.98481559753418 + ], + [ + "lem", + -12.984853744506836 + ], + [ + "▁Grants", + -12.984878540039062 + ], + [ + "tics", + -12.984885215759277 + ], + [ + "▁cornerstone", + -12.984938621520996 + ], + [ + "Connect", + -12.985217094421387 + ], + [ + "▁Thesis", + -12.98529052734375 + ], + [ + "▁Worker", + -12.985373497009277 + ], + [ + "▁blacks", + -12.985445976257324 + ], + [ + "▁giveaways", + -12.985454559326172 + ], + [ + "▁Middleton", + -12.985556602478027 + ], + [ + "▁darkest", + -12.985567092895508 + ], + [ + "▁Vent", + -12.985572814941406 + ], + [ + "▁vigilant", + -12.98567008972168 + ], + [ + "н", + -12.985748291015625 + ], + [ + "gt", + -12.985793113708496 + ], + [ + "kal", + -12.985857009887695 + ], + [ + "▁maximizing", + -12.98593807220459 + ], + [ + "▁repeats", + -12.986055374145508 + ], + [ + "▁Lexus", + -12.98608684539795 + ], + [ + "▁calmly", + -12.986156463623047 + ], + [ + "▁sublime", + -12.98625659942627 + ], + [ + "▁plank", + -12.986263275146484 + ], + [ + "▁CAS", + -12.986287117004395 + ], + [ + "▁scents", + -12.986343383789062 + ], + [ + "▁commonplace", + -12.98638916015625 + ], + [ + "▁Presented", + -12.98642349243164 + ], + [ + "▁Increasing", + -12.986505508422852 + ], + [ + "borough", + -12.98654842376709 + ], + [ + "information", + -12.986578941345215 + ], + [ + "▁Analysts", + -12.986655235290527 + ], + [ + "legal", + -12.986708641052246 + ], + [ + "▁tackled", + -12.986738204956055 + ], + [ + "▁thermo", + -12.986775398254395 + ], + [ + "▁LI", + -12.98678207397461 + ], + [ + "165", + -12.986881256103516 + ], + [ + "▁Hou", + -12.986929893493652 + ], + [ + "▁Rockets", + -12.98694896697998 + ], + [ + "▁JB", + -12.987061500549316 + ], + [ + "grain", + -12.987218856811523 + ], + [ + "124", + -12.987288475036621 + ], + [ + "▁correcting", + -12.987412452697754 + ], + [ + "▁Gy", + -12.987502098083496 + ], + [ + "▁irresistible", + -12.987558364868164 + ], + [ + "▁accuse", + -12.9876070022583 + ], + [ + "▁joking", + -12.98760986328125 + ], + [ + "▁internships", + -12.987653732299805 + ], + [ + "▁Boone", + -12.987690925598145 + ], + [ + "boot", + -12.98770809173584 + ], + [ + "▁Sentinel", + -12.987738609313965 + ], + [ + "▁concussion", + -12.987833976745605 + ], + [ + "▁Vis", + -12.987874031066895 + ], + [ + "▁Goes", + -12.987903594970703 + ], + [ + "▁Drinking", + -12.98796558380127 + ], + [ + "▁boosts", + -12.988103866577148 + ], + [ + "▁Crosby", + -12.98815631866455 + ], + [ + "▁unbeaten", + -12.98819637298584 + ], + [ + "dad", + -12.9884033203125 + ], + [ + "▁oddly", + -12.988496780395508 + ], + [ + "▁GF", + -12.988511085510254 + ], + [ + "▁Velvet", + -12.988568305969238 + ], + [ + "▁Hanson", + -12.98863697052002 + ], + [ + "▁fatalities", + -12.988814353942871 + ], + [ + "▁qualifies", + -12.988821983337402 + ], + [ + "▁rink", + -12.98888874053955 + ], + [ + "▁Collaboration", + -12.988924980163574 + ], + [ + "▁liter", + -12.988941192626953 + ], + [ + "▁FIGS", + -12.988944053649902 + ], + [ + "▁dictatorship", + -12.989068984985352 + ], + [ + "▁SIP", + -12.98924732208252 + ], + [ + "▁Gallagher", + -12.989335060119629 + ], + [ + "▁Inspirational", + -12.98935317993164 + ], + [ + "▁aromas", + -12.989459991455078 + ], + [ + "▁warehouses", + -12.989548683166504 + ], + [ + "▁Lords", + -12.989557266235352 + ], + [ + "▁welded", + -12.9898099899292 + ], + [ + "lift", + -12.98987102508545 + ], + [ + "bone", + -12.989912033081055 + ], + [ + "▁intrigue", + -12.990068435668945 + ], + [ + "▁Gupta", + -12.990110397338867 + ], + [ + "▁atheist", + -12.990209579467773 + ], + [ + "▁McGregor", + -12.990248680114746 + ], + [ + "▁raft", + -12.990352630615234 + ], + [ + "▁swamp", + -12.990364074707031 + ], + [ + "particularly", + -12.990480422973633 + ], + [ + "▁Bridges", + -12.990533828735352 + ], + [ + "▁facto", + -12.990592002868652 + ], + [ + "hander", + -12.990635871887207 + ], + [ + "▁exhibitors", + -12.990728378295898 + ], + [ + "▁Jehovah", + -12.990731239318848 + ], + [ + "▁Stephens", + -12.990760803222656 + ], + [ + "▁Seventh", + -12.990808486938477 + ], + [ + "▁Goodreads", + -12.990896224975586 + ], + [ + "▁Barker", + -12.990954399108887 + ], + [ + "▁cassette", + -12.990984916687012 + ], + [ + "▁victorious", + -12.990984916687012 + ], + [ + "▁Appliance", + -12.99100399017334 + ], + [ + "▁semantic", + -12.991063117980957 + ], + [ + "▁keyboards", + -12.991119384765625 + ], + [ + "▁Peggy", + -12.991120338439941 + ], + [ + "United", + -12.99126148223877 + ], + [ + "▁anonymously", + -12.991276741027832 + ], + [ + "215", + -12.991338729858398 + ], + [ + "▁scratched", + -12.99146842956543 + ], + [ + "▁Oman", + -12.991543769836426 + ], + [ + "▁nautical", + -12.991645812988281 + ], + [ + "Video", + -12.991674423217773 + ], + [ + "lead", + -12.991761207580566 + ], + [ + "▁Arduino", + -12.991764068603516 + ], + [ + "▁Reiki", + -12.991912841796875 + ], + [ + "로", + -12.992003440856934 + ], + [ + "▁Tide", + -12.99206829071045 + ], + [ + "thi", + -12.992084503173828 + ], + [ + "▁nozzle", + -12.99208927154541 + ], + [ + "▁renters", + -12.992111206054688 + ], + [ + "vs", + -12.99213695526123 + ], + [ + "▁cherries", + -12.992390632629395 + ], + [ + "▁biomedical", + -12.992475509643555 + ], + [ + "▁Fairfax", + -12.992512702941895 + ], + [ + "oko", + -12.99251651763916 + ], + [ + "▁Historically", + -12.992547988891602 + ], + [ + "▁340", + -12.992549896240234 + ], + [ + "▁Laden", + -12.992554664611816 + ], + [ + "▁eine", + -12.992663383483887 + ], + [ + "▁wetlands", + -12.992683410644531 + ], + [ + "▁hostility", + -12.992688179016113 + ], + [ + "▁moss", + -12.9927396774292 + ], + [ + "▁stalled", + -12.992877006530762 + ], + [ + "▁spared", + -12.992999076843262 + ], + [ + "▁modulation", + -12.993021011352539 + ], + [ + "▁Bomb", + -12.993088722229004 + ], + [ + "▁Taxi", + -12.993127822875977 + ], + [ + "▁analyzes", + -12.993143081665039 + ], + [ + "▁Camping", + -12.993162155151367 + ], + [ + "▁ALSO", + -12.9931640625 + ], + [ + "hub", + -12.993231773376465 + ], + [ + "▁plaza", + -12.993245124816895 + ], + [ + "rb", + -12.993249893188477 + ], + [ + "▁indian", + -12.993285179138184 + ], + [ + "Global", + -12.993407249450684 + ], + [ + "▁cheeses", + -12.9935302734375 + ], + [ + "▁counterfeit", + -12.993670463562012 + ], + [ + "▁foe", + -12.99367904663086 + ], + [ + "storm", + -12.993820190429688 + ], + [ + "▁ascent", + -12.993906021118164 + ], + [ + "fy", + -12.993962287902832 + ], + [ + "ifies", + -12.994070053100586 + ], + [ + "▁Capture", + -12.994070053100586 + ], + [ + "▁earthly", + -12.994109153747559 + ], + [ + "▁Brokers", + -12.994171142578125 + ], + [ + "▁Voices", + -12.994287490844727 + ], + [ + "▁setback", + -12.994354248046875 + ], + [ + "▁THANK", + -12.994362831115723 + ], + [ + "▁banker", + -12.994454383850098 + ], + [ + "▁Mandarin", + -12.994460105895996 + ], + [ + "zon", + -12.99449348449707 + ], + [ + "▁Fleming", + -12.994502067565918 + ], + [ + "▁lodged", + -12.994590759277344 + ], + [ + "▁ALWAYS", + -12.994674682617188 + ], + [ + "Under", + -12.994709014892578 + ], + [ + "▁quitting", + -12.99489688873291 + ], + [ + "hang", + -12.994906425476074 + ], + [ + "cie", + -12.994926452636719 + ], + [ + "nus", + -12.994932174682617 + ], + [ + "▁Moor", + -12.99502944946289 + ], + [ + "▁Argentine", + -12.99504566192627 + ], + [ + "ega", + -12.995108604431152 + ], + [ + "▁loser", + -12.9951753616333 + ], + [ + "▁grieving", + -12.995248794555664 + ], + [ + "rit", + -12.995312690734863 + ], + [ + "▁Aim", + -12.995366096496582 + ], + [ + "▁hone", + -12.995427131652832 + ], + [ + "blood", + -12.995464324951172 + ], + [ + "Talk", + -12.995545387268066 + ], + [ + "▁Stoke", + -12.995585441589355 + ], + [ + "▁betrayed", + -12.995585441589355 + ], + [ + "▁Bearing", + -12.99559497833252 + ], + [ + "▁injunction", + -12.995638847351074 + ], + [ + "▁Humans", + -12.995674133300781 + ], + [ + "▁translucent", + -12.995743751525879 + ], + [ + "▁Kom", + -12.995784759521484 + ], + [ + "▁Babylon", + -12.995800018310547 + ], + [ + "GH", + -12.995959281921387 + ], + [ + "▁litre", + -12.996018409729004 + ], + [ + "▁unidentified", + -12.996058464050293 + ], + [ + "NF", + -12.996118545532227 + ], + [ + "▁Boise", + -12.996147155761719 + ], + [ + "▁Lind", + -12.996217727661133 + ], + [ + "▁shopper", + -12.996244430541992 + ], + [ + "users", + -12.996257781982422 + ], + [ + "▁Objective", + -12.99627685546875 + ], + [ + "5000", + -12.996318817138672 + ], + [ + "▁inmate", + -12.996334075927734 + ], + [ + "tune", + -12.996356010437012 + ], + [ + "amba", + -12.996418952941895 + ], + [ + "▁Renewable", + -12.996423721313477 + ], + [ + "oe", + -12.996429443359375 + ], + [ + "fact", + -12.996493339538574 + ], + [ + "available", + -12.996698379516602 + ], + [ + "▁affirmed", + -12.99671745300293 + ], + [ + "▁dispersed", + -12.99688720703125 + ], + [ + "▁SUPER", + -12.996892929077148 + ], + [ + "▁tossing", + -12.996895790100098 + ], + [ + "nier", + -12.996912956237793 + ], + [ + "▁Barrel", + -12.99698257446289 + ], + [ + "▁signifies", + -12.996994972229004 + ], + [ + "▁Intended", + -12.997105598449707 + ], + [ + "▁Dropbox", + -12.997126579284668 + ], + [ + "▁riots", + -12.997169494628906 + ], + [ + "▁Uh", + -12.997318267822266 + ], + [ + "▁galaxies", + -12.997323989868164 + ], + [ + "him", + -12.99736213684082 + ], + [ + "▁inclination", + -12.997377395629883 + ], + [ + "placed", + -12.99743938446045 + ], + [ + "EV", + -12.997575759887695 + ], + [ + "▁ri", + -12.997603416442871 + ], + [ + "▁percentages", + -12.997735023498535 + ], + [ + "tell", + -12.997797012329102 + ], + [ + "▁Pound", + -12.997840881347656 + ], + [ + "▁tribunal", + -12.997843742370605 + ], + [ + "▁sewn", + -12.997855186462402 + ], + [ + "▁nearing", + -12.99787425994873 + ], + [ + "▁expelled", + -12.998108863830566 + ], + [ + "▁widest", + -12.998130798339844 + ], + [ + "pine", + -12.998230934143066 + ], + [ + "▁за", + -12.998315811157227 + ], + [ + "wiki", + -12.998355865478516 + ], + [ + "corp", + -12.998363494873047 + ], + [ + "▁Scientist", + -12.998363494873047 + ], + [ + "▁shale", + -12.998467445373535 + ], + [ + "▁latitude", + -12.998475074768066 + ], + [ + "tina", + -12.998476028442383 + ], + [ + "▁Byrne", + -12.998578071594238 + ], + [ + "▁courthouse", + -12.998650550842285 + ], + [ + "▁Junk", + -12.9987211227417 + ], + [ + "▁fortunes", + -12.998831748962402 + ], + [ + "▁Shoot", + -12.998889923095703 + ], + [ + "▁discreet", + -12.998894691467285 + ], + [ + "▁oranges", + -12.999088287353516 + ], + [ + "▁Fen", + -12.999162673950195 + ], + [ + "▁APP", + -12.999178886413574 + ], + [ + "▁Dude", + -12.99919605255127 + ], + [ + "▁indexed", + -12.999327659606934 + ], + [ + "▁carers", + -12.999378204345703 + ], + [ + "▁Mighty", + -12.99943733215332 + ], + [ + "▁spoilers", + -12.999582290649414 + ], + [ + "▁corrective", + -12.999590873718262 + ], + [ + "▁WORK", + -12.999756813049316 + ], + [ + "James", + -12.999829292297363 + ], + [ + "fur", + -12.999855041503906 + ], + [ + "plastic", + -12.99992561340332 + ], + [ + "▁Meadow", + -12.999946594238281 + ], + [ + "▁hog", + -13.000007629394531 + ], + [ + "▁echoes", + -13.000051498413086 + ], + [ + "▁AE", + -13.000266075134277 + ], + [ + "▁Temporary", + -13.00029468536377 + ], + [ + "▁OM", + -13.000370025634766 + ], + [ + "Va", + -13.000405311584473 + ], + [ + "▁extremist", + -13.000672340393066 + ], + [ + "▁Wilderness", + -13.000728607177734 + ], + [ + "▁pagan", + -13.000739097595215 + ], + [ + "▁Promise", + -13.000778198242188 + ], + [ + "▁nonprofits", + -13.000798225402832 + ], + [ + "ote", + -13.000834465026855 + ], + [ + "library", + -13.000844955444336 + ], + [ + "Canada", + -13.000932693481445 + ], + [ + "▁pressured", + -13.001082420349121 + ], + [ + "203", + -13.001100540161133 + ], + [ + "need", + -13.00110912322998 + ], + [ + "▁prototypes", + -13.001132011413574 + ], + [ + "▁Slip", + -13.001155853271484 + ], + [ + "Page", + -13.001178741455078 + ], + [ + "▁renders", + -13.001194953918457 + ], + [ + "▁railing", + -13.001209259033203 + ], + [ + "▁stimulates", + -13.001211166381836 + ], + [ + "▁watts", + -13.00129508972168 + ], + [ + "▁diplomats", + -13.001303672790527 + ], + [ + "▁exiting", + -13.001370429992676 + ], + [ + "▁wooded", + -13.00146770477295 + ], + [ + "ITY", + -13.001469612121582 + ], + [ + "Ba", + -13.001607894897461 + ], + [ + "▁bitterness", + -13.001654624938965 + ], + [ + "▁Sheila", + -13.001710891723633 + ], + [ + "DOT", + -13.001742362976074 + ], + [ + "common", + -13.001818656921387 + ], + [ + "▁cheers", + -13.001832008361816 + ], + [ + "▁Becker", + -13.001835823059082 + ], + [ + "ult", + -13.001858711242676 + ], + [ + "▁Witness", + -13.00189208984375 + ], + [ + "▁Rory", + -13.00193977355957 + ], + [ + "▁AFL", + -13.001988410949707 + ], + [ + "▁roadway", + -13.002067565917969 + ], + [ + "mere", + -13.002116203308105 + ], + [ + "▁timed", + -13.002154350280762 + ], + [ + "▁sporty", + -13.002263069152832 + ], + [ + "▁143", + -13.00228214263916 + ], + [ + "▁ut", + -13.002291679382324 + ], + [ + "▁crowns", + -13.002402305603027 + ], + [ + "▁Determine", + -13.002443313598633 + ], + [ + "▁drunken", + -13.002498626708984 + ], + [ + "dance", + -13.002517700195312 + ], + [ + "▁Basil", + -13.002523422241211 + ], + [ + "▁nightmares", + -13.002593994140625 + ], + [ + "gb", + -13.002610206604004 + ], + [ + "▁Spending", + -13.002717971801758 + ], + [ + "▁Essentials", + -13.002724647521973 + ], + [ + "133", + -13.002756118774414 + ], + [ + "▁standby", + -13.002853393554688 + ], + [ + "▁Specialty", + -13.002877235412598 + ], + [ + "tested", + -13.002878189086914 + ], + [ + "TT", + -13.002923011779785 + ], + [ + "Jack", + -13.00295352935791 + ], + [ + "▁Slovenia", + -13.003185272216797 + ], + [ + "▁Showcase", + -13.003325462341309 + ], + [ + "▁boasting", + -13.00337028503418 + ], + [ + "▁embryo", + -13.003387451171875 + ], + [ + "▁Antarctica", + -13.003388404846191 + ], + [ + "RG", + -13.003530502319336 + ], + [ + "▁Prosecutors", + -13.003637313842773 + ], + [ + "▁graves", + -13.003664016723633 + ], + [ + "Hz", + -13.003708839416504 + ], + [ + "▁corridors", + -13.003763198852539 + ], + [ + "KS", + -13.003785133361816 + ], + [ + "▁neutrality", + -13.003799438476562 + ], + [ + "▁Episcopal", + -13.003854751586914 + ], + [ + "▁inpatient", + -13.003854751586914 + ], + [ + "▁condensed", + -13.003889083862305 + ], + [ + "feel", + -13.003890991210938 + ], + [ + "▁notation", + -13.003900527954102 + ], + [ + "Em", + -13.003992080688477 + ], + [ + "▁wrongful", + -13.003996849060059 + ], + [ + "▁stripping", + -13.00401782989502 + ], + [ + "▁Bla", + -13.00406265258789 + ], + [ + "▁Irene", + -13.004095077514648 + ], + [ + "340", + -13.004105567932129 + ], + [ + "▁Cali", + -13.004134178161621 + ], + [ + "▁WORLD", + -13.004231452941895 + ], + [ + "another", + -13.004450798034668 + ], + [ + "▁fallout", + -13.00454044342041 + ], + [ + "▁bilingual", + -13.004584312438965 + ], + [ + "▁secrecy", + -13.004842758178711 + ], + [ + "▁hops", + -13.005040168762207 + ], + [ + "ungen", + -13.005064964294434 + ], + [ + "Okay", + -13.005086898803711 + ], + [ + "▁vape", + -13.005159378051758 + ], + [ + "▁Appendix", + -13.005160331726074 + ], + [ + "▁skeletal", + -13.005338668823242 + ], + [ + "▁sac", + -13.005341529846191 + ], + [ + "▁iPhones", + -13.005362510681152 + ], + [ + "▁adhesion", + -13.005374908447266 + ], + [ + "▁Washing", + -13.005456924438477 + ], + [ + "does", + -13.005457878112793 + ], + [ + "could", + -13.005605697631836 + ], + [ + "ulate", + -13.005725860595703 + ], + [ + "payment", + -13.00578498840332 + ], + [ + "▁stimulated", + -13.00586986541748 + ], + [ + "▁gearing", + -13.00587272644043 + ], + [ + "▁refunded", + -13.005889892578125 + ], + [ + "▁Held", + -13.005931854248047 + ], + [ + "▁nephews", + -13.005948066711426 + ], + [ + "▁Responsibility", + -13.005986213684082 + ], + [ + "Cloud", + -13.006013870239258 + ], + [ + "omo", + -13.006043434143066 + ], + [ + "micro", + -13.006044387817383 + ], + [ + "rak", + -13.006097793579102 + ], + [ + "▁knowingly", + -13.006125450134277 + ], + [ + "▁Narendra", + -13.006134033203125 + ], + [ + "▁Honduras", + -13.006218910217285 + ], + [ + "▁sane", + -13.0062255859375 + ], + [ + "▁hex", + -13.006338119506836 + ], + [ + "▁chatter", + -13.00636100769043 + ], + [ + "▁disbelief", + -13.006429672241211 + ], + [ + "▁Hayden", + -13.006438255310059 + ], + [ + "▁Uttar", + -13.006634712219238 + ], + [ + "images", + -13.006814002990723 + ], + [ + "School", + -13.006847381591797 + ], + [ + "▁Horton", + -13.006925582885742 + ], + [ + "▁recessed", + -13.006983757019043 + ], + [ + "▁Nickel", + -13.006991386413574 + ], + [ + "▁constraint", + -13.007026672363281 + ], + [ + "▁python", + -13.007087707519531 + ], + [ + "γ", + -13.007088661193848 + ], + [ + "▁Sunni", + -13.007132530212402 + ], + [ + "▁harp", + -13.007179260253906 + ], + [ + "▁seventeen", + -13.007221221923828 + ], + [ + "bol", + -13.007330894470215 + ], + [ + "▁Heads", + -13.007535934448242 + ], + [ + "▁Epub", + -13.007547378540039 + ], + [ + "▁scrambled", + -13.00762939453125 + ], + [ + "▁contradiction", + -13.007651329040527 + ], + [ + "▁Angie", + -13.007680892944336 + ], + [ + "▁bookmarks", + -13.007680892944336 + ], + [ + "SG", + -13.00770092010498 + ], + [ + "▁superiority", + -13.00776195526123 + ], + [ + "▁genomic", + -13.007783889770508 + ], + [ + "Bio", + -13.007816314697266 + ], + [ + "▁principals", + -13.007841110229492 + ], + [ + "▁ac", + -13.007865905761719 + ], + [ + "Step", + -13.007866859436035 + ], + [ + "▁Scar", + -13.007911682128906 + ], + [ + "▁Gui", + -13.007943153381348 + ], + [ + "▁Jenna", + -13.008097648620605 + ], + [ + "▁merry", + -13.00815486907959 + ], + [ + "▁pulses", + -13.008177757263184 + ], + [ + "▁URLs", + -13.008182525634766 + ], + [ + "▁psychiatrist", + -13.008313179016113 + ], + [ + "▁Majesty", + -13.008413314819336 + ], + [ + "▁silica", + -13.008599281311035 + ], + [ + "▁sinus", + -13.008651733398438 + ], + [ + "▁mM", + -13.008761405944824 + ], + [ + "ija", + -13.009204864501953 + ], + [ + "▁bans", + -13.009217262268066 + ], + [ + "▁collaborators", + -13.009292602539062 + ], + [ + "▁probes", + -13.00938892364502 + ], + [ + "▁pellet", + -13.009472846984863 + ], + [ + "▁Hut", + -13.009599685668945 + ], + [ + "▁Turtle", + -13.009647369384766 + ], + [ + "▁Sher", + -13.009730339050293 + ], + [ + "▁arrays", + -13.009840965270996 + ], + [ + "▁375", + -13.009915351867676 + ], + [ + "▁Chanel", + -13.01002025604248 + ], + [ + "▁meticulous", + -13.010115623474121 + ], + [ + "▁Physicians", + -13.010124206542969 + ], + [ + "▁berth", + -13.010139465332031 + ], + [ + "▁Genius", + -13.010257720947266 + ], + [ + "▁referencing", + -13.010323524475098 + ], + [ + "mc", + -13.010382652282715 + ], + [ + "▁Stem", + -13.010416984558105 + ], + [ + "▁ridden", + -13.010454177856445 + ], + [ + "official", + -13.010575294494629 + ], + [ + "▁Sands", + -13.01063060760498 + ], + [ + "bill", + -13.010675430297852 + ], + [ + "BG", + -13.010701179504395 + ], + [ + "▁specifying", + -13.010704040527344 + ], + [ + "▁IDE", + -13.010741233825684 + ], + [ + "▁Opt", + -13.010780334472656 + ], + [ + "▁Tail", + -13.010817527770996 + ], + [ + "Reilly", + -13.010887145996094 + ], + [ + "▁Valid", + -13.010942459106445 + ], + [ + "▁tubs", + -13.011024475097656 + ], + [ + "▁reconnect", + -13.011112213134766 + ], + [ + "▁cod", + -13.01114559173584 + ], + [ + "▁hinted", + -13.011165618896484 + ], + [ + "Р", + -13.011168479919434 + ], + [ + "▁Sherlock", + -13.011370658874512 + ], + [ + "▁squirrel", + -13.01137638092041 + ], + [ + "▁leggings", + -13.011405944824219 + ], + [ + "DVD", + -13.01156234741211 + ], + [ + "▁uninsured", + -13.011621475219727 + ], + [ + "generated", + -13.011643409729004 + ], + [ + "▁Darkness", + -13.011690139770508 + ], + [ + "▁leukemia", + -13.011693954467773 + ], + [ + "ados", + -13.011739730834961 + ], + [ + "▁honorary", + -13.011765480041504 + ], + [ + "Sub", + -13.011773109436035 + ], + [ + "▁golfers", + -13.01179027557373 + ], + [ + "▁inks", + -13.011828422546387 + ], + [ + "▁Illustrated", + -13.011841773986816 + ], + [ + "▁conducive", + -13.011902809143066 + ], + [ + "▁rocker", + -13.0120210647583 + ], + [ + "▁WD", + -13.012710571289062 + ], + [ + "Mi", + -13.012716293334961 + ], + [ + "▁Challenges", + -13.012731552124023 + ], + [ + "▁Smash", + -13.012760162353516 + ], + [ + "▁pact", + -13.012784004211426 + ], + [ + "▁Monterey", + -13.012836456298828 + ], + [ + "▁endpoint", + -13.012845993041992 + ], + [ + "▁Nico", + -13.012861251831055 + ], + [ + "regulation", + -13.012870788574219 + ], + [ + "▁Deadline", + -13.01288890838623 + ], + [ + "▁raging", + -13.01305866241455 + ], + [ + "Pi", + -13.013208389282227 + ], + [ + "▁Ibrahim", + -13.013285636901855 + ], + [ + "▁Sm", + -13.013293266296387 + ], + [ + "▁Serena", + -13.013343811035156 + ], + [ + "▁toothpaste", + -13.013437271118164 + ], + [ + "▁stakeholder", + -13.013452529907227 + ], + [ + "holders", + -13.013490676879883 + ], + [ + "▁Symptoms", + -13.01351261138916 + ], + [ + "▁imitation", + -13.013551712036133 + ], + [ + "▁falsely", + -13.013559341430664 + ], + [ + "boro", + -13.013583183288574 + ], + [ + "record", + -13.013663291931152 + ], + [ + "▁buildup", + -13.013716697692871 + ], + [ + "▁contagious", + -13.013843536376953 + ], + [ + "Ab", + -13.013859748840332 + ], + [ + "CB", + -13.013909339904785 + ], + [ + "▁Married", + -13.014019966125488 + ], + [ + "▁Orion", + -13.014058113098145 + ], + [ + "▁Dustin", + -13.014368057250977 + ], + [ + "▁Theodore", + -13.014544486999512 + ], + [ + "▁mastering", + -13.014660835266113 + ], + [ + "▁Lately", + -13.01480770111084 + ], + [ + "▁Wick", + -13.014904022216797 + ], + [ + "▁Vampire", + -13.015029907226562 + ], + [ + "▁Feast", + -13.015056610107422 + ], + [ + "▁Preferred", + -13.0152006149292 + ], + [ + "▁Chances", + -13.015288352966309 + ], + [ + "created", + -13.01534366607666 + ], + [ + "▁interconnected", + -13.01535415649414 + ], + [ + "▁totaled", + -13.015387535095215 + ], + [ + "bike", + -13.015542030334473 + ], + [ + "▁Futures", + -13.01557445526123 + ], + [ + "▁elites", + -13.015602111816406 + ], + [ + "▁acclaim", + -13.015613555908203 + ], + [ + "▁col", + -13.01572036743164 + ], + [ + "▁Merit", + -13.015822410583496 + ], + [ + "ril", + -13.015856742858887 + ], + [ + "▁farmland", + -13.015876770019531 + ], + [ + "▁plains", + -13.015885353088379 + ], + [ + "▁quot", + -13.015885353088379 + ], + [ + "▁Sodium", + -13.015925407409668 + ], + [ + "Cat", + -13.015995979309082 + ], + [ + "▁Fresno", + -13.016095161437988 + ], + [ + "Russian", + -13.016117095947266 + ], + [ + "▁BF", + -13.016118049621582 + ], + [ + "Base", + -13.016134262084961 + ], + [ + "▁sequential", + -13.01620101928711 + ], + [ + "▁Dante", + -13.016254425048828 + ], + [ + "TEC", + -13.016258239746094 + ], + [ + "▁Bamboo", + -13.016339302062988 + ], + [ + "▁vaguely", + -13.016403198242188 + ], + [ + "fired", + -13.016547203063965 + ], + [ + "▁apex", + -13.016558647155762 + ], + [ + "kowski", + -13.016671180725098 + ], + [ + "IX", + -13.01673412322998 + ], + [ + "▁classify", + -13.016764640808105 + ], + [ + "▁naughty", + -13.016988754272461 + ], + [ + "▁Myth", + -13.017033576965332 + ], + [ + "▁Chest", + -13.017082214355469 + ], + [ + "▁CAP", + -13.017253875732422 + ], + [ + "▁Bala", + -13.017471313476562 + ], + [ + "neutral", + -13.017552375793457 + ], + [ + "▁Spoon", + -13.017745018005371 + ], + [ + "▁Aren", + -13.017800331115723 + ], + [ + "▁Plum", + -13.017806053161621 + ], + [ + "▁Somewhere", + -13.017807006835938 + ], + [ + "▁muted", + -13.017831802368164 + ], + [ + "▁commissioning", + -13.01786994934082 + ], + [ + "▁chaired", + -13.017899513244629 + ], + [ + "MG", + -13.017918586730957 + ], + [ + "▁Roses", + -13.017945289611816 + ], + [ + "Center", + -13.018217086791992 + ], + [ + "▁Sergio", + -13.0182523727417 + ], + [ + "▁transformations", + -13.018271446228027 + ], + [ + "▁Everett", + -13.018354415893555 + ], + [ + "LU", + -13.018367767333984 + ], + [ + "▁Dive", + -13.018402099609375 + ], + [ + "▁horizontally", + -13.018453598022461 + ], + [ + "▁Kee", + -13.018486022949219 + ], + [ + "▁entice", + -13.018498420715332 + ], + [ + "▁316", + -13.018501281738281 + ], + [ + "▁Chronicles", + -13.018531799316406 + ], + [ + "▁noticeably", + -13.018555641174316 + ], + [ + "ashi", + -13.018575668334961 + ], + [ + "▁HM", + -13.018653869628906 + ], + [ + "▁IX", + -13.018665313720703 + ], + [ + "▁plural", + -13.018692016601562 + ], + [ + "▁Workplace", + -13.018824577331543 + ], + [ + "▁Tue", + -13.019102096557617 + ], + [ + "▁punching", + -13.019299507141113 + ], + [ + "vik", + -13.019307136535645 + ], + [ + "▁410", + -13.01941967010498 + ], + [ + "▁Divorce", + -13.01941967010498 + ], + [ + "▁Smoking", + -13.019490242004395 + ], + [ + "kawa", + -13.019491195678711 + ], + [ + "▁lookup", + -13.019506454467773 + ], + [ + "▁Makeup", + -13.019810676574707 + ], + [ + "1989", + -13.01992416381836 + ], + [ + "vid", + -13.019948959350586 + ], + [ + "title", + -13.019980430603027 + ], + [ + "som", + -13.01998233795166 + ], + [ + "▁chore", + -13.019989967346191 + ], + [ + "oxy", + -13.02005386352539 + ], + [ + "▁Kits", + -13.020060539245605 + ], + [ + "Happy", + -13.020106315612793 + ], + [ + "▁Stu", + -13.020135879516602 + ], + [ + "▁summers", + -13.02015495300293 + ], + [ + "▁Drupal", + -13.020164489746094 + ], + [ + "▁që", + -13.020190238952637 + ], + [ + "Ah", + -13.02019214630127 + ], + [ + "▁turnovers", + -13.020242691040039 + ], + [ + "▁gunman", + -13.020286560058594 + ], + [ + "▁overturned", + -13.020423889160156 + ], + [ + "▁Exhibit", + -13.020461082458496 + ], + [ + "keep", + -13.020462989807129 + ], + [ + "INA", + -13.020512580871582 + ], + [ + "▁smelling", + -13.020539283752441 + ], + [ + "▁Booker", + -13.020586967468262 + ], + [ + "▁lore", + -13.020594596862793 + ], + [ + "▁chromosome", + -13.020833969116211 + ], + [ + "▁provisional", + -13.020926475524902 + ], + [ + "▁floats", + -13.02100658416748 + ], + [ + "▁RH", + -13.021080017089844 + ], + [ + "▁stewardship", + -13.021309852600098 + ], + [ + "▁Braun", + -13.021393775939941 + ], + [ + "▁purified", + -13.021397590637207 + ], + [ + "▁Norris", + -13.0214262008667 + ], + [ + "▁escorts", + -13.021444320678711 + ], + [ + "▁AMAZING", + -13.021513938903809 + ], + [ + "▁attends", + -13.021528244018555 + ], + [ + "▁applaud", + -13.021577835083008 + ], + [ + "▁backend", + -13.021589279174805 + ], + [ + "▁reefs", + -13.021629333496094 + ], + [ + "▁Downs", + -13.021742820739746 + ], + [ + "▁autoimmune", + -13.021775245666504 + ], + [ + "OW", + -13.021794319152832 + ], + [ + "PN", + -13.02181339263916 + ], + [ + "126", + -13.02184772491455 + ], + [ + "▁Soldier", + -13.021926879882812 + ], + [ + "420", + -13.021995544433594 + ], + [ + "native", + -13.022037506103516 + ], + [ + "▁evangelical", + -13.022247314453125 + ], + [ + "▁plotting", + -13.022345542907715 + ], + [ + "▁Acer", + -13.022374153137207 + ], + [ + "▁Reese", + -13.022381782531738 + ], + [ + "▁MIDI", + -13.022432327270508 + ], + [ + "▁204", + -13.02247428894043 + ], + [ + "▁1863", + -13.0225248336792 + ], + [ + "▁corpse", + -13.0225248336792 + ], + [ + "▁instagram", + -13.022622108459473 + ], + [ + "▁tweaks", + -13.02278995513916 + ], + [ + "▁woes", + -13.022836685180664 + ], + [ + "▁resisting", + -13.022904396057129 + ], + [ + "▁Startup", + -13.022966384887695 + ], + [ + "▁recurrence", + -13.023088455200195 + ], + [ + "ration", + -13.02310562133789 + ], + [ + "atta", + -13.023188591003418 + ], + [ + "▁141", + -13.023191452026367 + ], + [ + "▁Serious", + -13.023198127746582 + ], + [ + "▁Rockies", + -13.023316383361816 + ], + [ + "▁DIS", + -13.02338695526123 + ], + [ + "▁1907", + -13.023452758789062 + ], + [ + "▁exporters", + -13.02352237701416 + ], + [ + "▁restroom", + -13.02359676361084 + ], + [ + "▁IPv", + -13.023655891418457 + ], + [ + "▁Technician", + -13.023689270019531 + ], + [ + "▁deserted", + -13.023693084716797 + ], + [ + "▁portals", + -13.024007797241211 + ], + [ + "▁Casual", + -13.024072647094727 + ], + [ + "▁Ul", + -13.024072647094727 + ], + [ + "▁supplemented", + -13.02428150177002 + ], + [ + "▁accompaniment", + -13.024356842041016 + ], + [ + "▁plunged", + -13.024394035339355 + ], + [ + "▁Optional", + -13.02444839477539 + ], + [ + "▁Houses", + -13.024554252624512 + ], + [ + "Social", + -13.024580955505371 + ], + [ + "MY", + -13.024632453918457 + ], + [ + "▁shields", + -13.024770736694336 + ], + [ + "▁aftermarket", + -13.024797439575195 + ], + [ + "▁Sporting", + -13.024993896484375 + ], + [ + "▁Keyboard", + -13.025004386901855 + ], + [ + "▁Mug", + -13.025033950805664 + ], + [ + "bor", + -13.025038719177246 + ], + [ + "▁Entrance", + -13.025053024291992 + ], + [ + "bing", + -13.02524471282959 + ], + [ + "▁Figures", + -13.025262832641602 + ], + [ + "▁Oprah", + -13.025287628173828 + ], + [ + "▁confronting", + -13.025318145751953 + ], + [ + "▁inserting", + -13.025322914123535 + ], + [ + "▁restless", + -13.0253267288208 + ], + [ + "▁Wildcats", + -13.025331497192383 + ], + [ + "▁latch", + -13.025348663330078 + ], + [ + "number", + -13.025426864624023 + ], + [ + "▁Herb", + -13.025532722473145 + ], + [ + "▁br", + -13.025607109069824 + ], + [ + "▁depiction", + -13.025627136230469 + ], + [ + "▁approvals", + -13.025629997253418 + ], + [ + "▁MasterCard", + -13.025659561157227 + ], + [ + "▁culprit", + -13.02572250366211 + ], + [ + "▁differentiated", + -13.025799751281738 + ], + [ + "▁Psycho", + -13.025924682617188 + ], + [ + "▁entrusted", + -13.025948524475098 + ], + [ + "▁separator", + -13.026285171508789 + ], + [ + "▁ribbons", + -13.026371002197266 + ], + [ + "▁relational", + -13.026529312133789 + ], + [ + "▁POWER", + -13.026573181152344 + ], + [ + "▁Surprise", + -13.026585578918457 + ], + [ + "▁scuba", + -13.02660846710205 + ], + [ + "▁sprouts", + -13.026630401611328 + ], + [ + "▁sentimental", + -13.026741981506348 + ], + [ + "▁Width", + -13.02678108215332 + ], + [ + "▁diligent", + -13.026822090148926 + ], + [ + "▁liners", + -13.02682876586914 + ], + [ + "▁1909", + -13.02684497833252 + ], + [ + "▁Timber", + -13.02685832977295 + ], + [ + "nagar", + -13.026915550231934 + ], + [ + "▁kite", + -13.026997566223145 + ], + [ + "▁notebooks", + -13.027013778686523 + ], + [ + "▁rebate", + -13.027108192443848 + ], + [ + "▁postgraduate", + -13.027120590209961 + ], + [ + "▁hyperlink", + -13.027127265930176 + ], + [ + "▁Electoral", + -13.027154922485352 + ], + [ + "▁mascara", + -13.027169227600098 + ], + [ + "▁explosives", + -13.027210235595703 + ], + [ + "▁Katz", + -13.027241706848145 + ], + [ + "▁urgently", + -13.027264595031738 + ], + [ + "▁edits", + -13.027307510375977 + ], + [ + "▁blueberries", + -13.027321815490723 + ], + [ + "▁shrugged", + -13.02736759185791 + ], + [ + "▁fractions", + -13.027425765991211 + ], + [ + "facebook", + -13.027433395385742 + ], + [ + "▁sanctioned", + -13.027475357055664 + ], + [ + "religious", + -13.027494430541992 + ], + [ + "solid", + -13.027610778808594 + ], + [ + "▁Publication", + -13.027642250061035 + ], + [ + "▁mulch", + -13.027647972106934 + ], + [ + "lé", + -13.027688980102539 + ], + [ + "▁NDP", + -13.02774429321289 + ], + [ + "performing", + -13.027795791625977 + ], + [ + "▁DLC", + -13.027813911437988 + ], + [ + "stead", + -13.027986526489258 + ], + [ + "▁Fancy", + -13.027992248535156 + ], + [ + "▁kittens", + -13.028037071228027 + ], + [ + "▁Catalan", + -13.028091430664062 + ], + [ + "▁sanitary", + -13.028099060058594 + ], + [ + "▁Sabha", + -13.028231620788574 + ], + [ + "Cor", + -13.0282564163208 + ], + [ + "▁Jennings", + -13.028268814086914 + ], + [ + "▁sensations", + -13.028282165527344 + ], + [ + "▁Rustic", + -13.02829360961914 + ], + [ + "▁Bryce", + -13.028319358825684 + ], + [ + "ural", + -13.028380393981934 + ], + [ + "▁Evelyn", + -13.02839469909668 + ], + [ + "Hu", + -13.028406143188477 + ], + [ + "▁vested", + -13.028489112854004 + ], + [ + "Hello", + -13.028519630432129 + ], + [ + "lp", + -13.028547286987305 + ], + [ + "▁Glacier", + -13.028592109680176 + ], + [ + "Pass", + -13.0286283493042 + ], + [ + "▁summarized", + -13.028677940368652 + ], + [ + "▁enlightened", + -13.028711318969727 + ], + [ + "horse", + -13.028742790222168 + ], + [ + "CV", + -13.028797149658203 + ], + [ + "shu", + -13.028828620910645 + ], + [ + "▁Generator", + -13.029293060302734 + ], + [ + "▁QA", + -13.029321670532227 + ], + [ + "▁chops", + -13.029328346252441 + ], + [ + "bearing", + -13.029335021972656 + ], + [ + "▁Seek", + -13.029398918151855 + ], + [ + "lev", + -13.029454231262207 + ], + [ + "eren", + -13.029463768005371 + ], + [ + "▁shepherd", + -13.029519081115723 + ], + [ + "▁abortions", + -13.029535293579102 + ], + [ + "▁Dig", + -13.029574394226074 + ], + [ + "Young", + -13.029605865478516 + ], + [ + "hir", + -13.029681205749512 + ], + [ + "▁inlet", + -13.029755592346191 + ], + [ + "▁judiciary", + -13.029767036437988 + ], + [ + "▁undeniable", + -13.029829025268555 + ], + [ + "▁WH", + -13.029977798461914 + ], + [ + "▁Bethlehem", + -13.030003547668457 + ], + [ + "▁recess", + -13.030054092407227 + ], + [ + "▁Ariel", + -13.030094146728516 + ], + [ + "▁HOT", + -13.030186653137207 + ], + [ + "▁cleanliness", + -13.03023624420166 + ], + [ + "▁handgun", + -13.030322074890137 + ], + [ + "222", + -13.030327796936035 + ], + [ + "▁tram", + -13.0303955078125 + ], + [ + "▁webcam", + -13.030525207519531 + ], + [ + "▁refill", + -13.030561447143555 + ], + [ + "▁Nah", + -13.030583381652832 + ], + [ + "▁discriminate", + -13.030625343322754 + ], + [ + "▁evoke", + -13.030638694763184 + ], + [ + "▁Carmel", + -13.0306396484375 + ], + [ + "▁Sight", + -13.030653953552246 + ], + [ + "▁Guaranteed", + -13.030696868896484 + ], + [ + "Music", + -13.030715942382812 + ], + [ + "▁SAM", + -13.030755996704102 + ], + [ + "▁specialization", + -13.030854225158691 + ], + [ + "▁Tha", + -13.030913352966309 + ], + [ + "▁Coil", + -13.031067848205566 + ], + [ + "▁pronounce", + -13.031091690063477 + ], + [ + "fel", + -13.031110763549805 + ], + [ + "▁Sinclair", + -13.031187057495117 + ], + [ + "▁Exeter", + -13.031243324279785 + ], + [ + "▁interrogation", + -13.031332015991211 + ], + [ + "▁graft", + -13.031405448913574 + ], + [ + "▁beasts", + -13.031448364257812 + ], + [ + "Use", + -13.031477928161621 + ], + [ + "god", + -13.031477928161621 + ], + [ + "▁Plato", + -13.031477928161621 + ], + [ + "▁Becoming", + -13.031546592712402 + ], + [ + "▁Pri", + -13.031790733337402 + ], + [ + "▁Ventura", + -13.031792640686035 + ], + [ + "▁winters", + -13.031891822814941 + ], + [ + "▁psyche", + -13.031900405883789 + ], + [ + "▁Trinidad", + -13.0319242477417 + ], + [ + "▁decidedly", + -13.032004356384277 + ], + [ + "▁Pr", + -13.032029151916504 + ], + [ + "▁Havana", + -13.032042503356934 + ], + [ + "ith", + -13.032082557678223 + ], + [ + "243", + -13.032103538513184 + ], + [ + "▁homosexual", + -13.032270431518555 + ], + [ + "▁caters", + -13.032286643981934 + ], + [ + "▁spheres", + -13.032401084899902 + ], + [ + "▁payload", + -13.03246784210205 + ], + [ + "▁reassuring", + -13.032522201538086 + ], + [ + "▁nonlinear", + -13.032613754272461 + ], + [ + "▁Scha", + -13.032716751098633 + ], + [ + "found", + -13.032889366149902 + ], + [ + "▁blooming", + -13.033015251159668 + ], + [ + "▁facet", + -13.033154487609863 + ], + [ + "▁lad", + -13.033185958862305 + ], + [ + "▁Banana", + -13.03320026397705 + ], + [ + "▁Malik", + -13.033252716064453 + ], + [ + "▁utensils", + -13.033265113830566 + ], + [ + "▁erect", + -13.033418655395508 + ], + [ + "▁ripping", + -13.03347110748291 + ], + [ + "▁skipper", + -13.033477783203125 + ], + [ + "Miss", + -13.033486366271973 + ], + [ + "▁schematic", + -13.033570289611816 + ], + [ + "▁Colony", + -13.033700942993164 + ], + [ + "ush", + -13.03370475769043 + ], + [ + "▁illuminate", + -13.033740997314453 + ], + [ + "▁Epson", + -13.033782958984375 + ], + [ + "painted", + -13.03381633758545 + ], + [ + "flat", + -13.033854484558105 + ], + [ + "▁dependencies", + -13.033907890319824 + ], + [ + "▁temperament", + -13.033941268920898 + ], + [ + "▁sucking", + -13.034015655517578 + ], + [ + "▁rainforest", + -13.034059524536133 + ], + [ + "isch", + -13.034087181091309 + ], + [ + "▁gated", + -13.034226417541504 + ], + [ + "▁od", + -13.03429889678955 + ], + [ + "▁Subsequently", + -13.03431510925293 + ], + [ + "▁apprenticeship", + -13.034363746643066 + ], + [ + "▁ACL", + -13.03438949584961 + ], + [ + "▁Languages", + -13.034443855285645 + ], + [ + "▁Tavern", + -13.03466796875 + ], + [ + "▁localization", + -13.0347900390625 + ], + [ + "api", + -13.03482723236084 + ], + [ + "DNA", + -13.034846305847168 + ], + [ + "▁Macro", + -13.034911155700684 + ], + [ + "▁Bosnia", + -13.035008430480957 + ], + [ + "▁amounted", + -13.035196304321289 + ], + [ + "▁blockade", + -13.035197257995605 + ], + [ + "▁LD", + -13.035264015197754 + ], + [ + "▁gastric", + -13.035332679748535 + ], + [ + "▁eradicate", + -13.035374641418457 + ], + [ + "▁Saunders", + -13.035459518432617 + ], + [ + "▁auditorium", + -13.0354642868042 + ], + [ + "▁wakes", + -13.035480499267578 + ], + [ + "bla", + -13.035497665405273 + ], + [ + "▁Joining", + -13.035508155822754 + ], + [ + "▁invoke", + -13.035574913024902 + ], + [ + "moon", + -13.035658836364746 + ], + [ + "▁platter", + -13.035693168640137 + ], + [ + "▁airplanes", + -13.03571605682373 + ], + [ + "▁Penguins", + -13.035751342773438 + ], + [ + "▁spotting", + -13.035883903503418 + ], + [ + "▁materially", + -13.035905838012695 + ], + [ + "▁Completing", + -13.035933494567871 + ], + [ + "ovic", + -13.035947799682617 + ], + [ + "▁marrying", + -13.03609848022461 + ], + [ + "▁pellets", + -13.036170959472656 + ], + [ + "▁watermelon", + -13.036219596862793 + ], + [ + "▁149", + -13.036264419555664 + ], + [ + "▁losers", + -13.03626537322998 + ], + [ + "▁steamed", + -13.036271095275879 + ], + [ + "▁Dock", + -13.036276817321777 + ], + [ + "▁gritty", + -13.036386489868164 + ], + [ + "▁Beard", + -13.036661148071289 + ], + [ + "▁Tunisia", + -13.036703109741211 + ], + [ + "▁penned", + -13.03671932220459 + ], + [ + "▁Meal", + -13.036720275878906 + ], + [ + "▁headphone", + -13.036786079406738 + ], + [ + "▁Cells", + -13.037015914916992 + ], + [ + "▁preacher", + -13.0370512008667 + ], + [ + "▁Jasmine", + -13.037113189697266 + ], + [ + "▁Philippe", + -13.03721809387207 + ], + [ + "▁theatres", + -13.037246704101562 + ], + [ + "important", + -13.037272453308105 + ], + [ + "▁و", + -13.037281036376953 + ], + [ + "▁HUD", + -13.03730583190918 + ], + [ + "▁contradictory", + -13.037354469299316 + ], + [ + "FB", + -13.037534713745117 + ], + [ + "▁empowers", + -13.037548065185547 + ], + [ + "panel", + -13.037790298461914 + ], + [ + "▁chilli", + -13.037853240966797 + ], + [ + "▁stump", + -13.037904739379883 + ], + [ + "▁sensual", + -13.037914276123047 + ], + [ + "▁esp", + -13.03791618347168 + ], + [ + "mie", + -13.037938117980957 + ], + [ + "▁discerning", + -13.037995338439941 + ], + [ + "▁hardness", + -13.037996292114258 + ], + [ + "hm", + -13.038058280944824 + ], + [ + "▁blasting", + -13.03811264038086 + ], + [ + "uru", + -13.038211822509766 + ], + [ + "▁limitless", + -13.03824520111084 + ], + [ + "Card", + -13.038331031799316 + ], + [ + "▁lasers", + -13.038347244262695 + ], + [ + "▁eminent", + -13.038382530212402 + ], + [ + "▁Tenn", + -13.038389205932617 + ], + [ + "▁Lex", + -13.038431167602539 + ], + [ + "▁breakup", + -13.038476943969727 + ], + [ + "▁Pont", + -13.0385160446167 + ], + [ + "backs", + -13.038559913635254 + ], + [ + "▁handbags", + -13.03863525390625 + ], + [ + "▁Observer", + -13.038727760314941 + ], + [ + "▁bows", + -13.038809776306152 + ], + [ + "▁incarnation", + -13.038912773132324 + ], + [ + "▁immerse", + -13.038949012756348 + ], + [ + "▁McCoy", + -13.038971900939941 + ], + [ + "▁Brake", + -13.039033889770508 + ], + [ + "▁nieces", + -13.03907299041748 + ], + [ + "▁Efficiency", + -13.039116859436035 + ], + [ + "▁abrasive", + -13.039177894592285 + ], + [ + "▁Coaches", + -13.039265632629395 + ], + [ + "bow", + -13.039270401000977 + ], + [ + "▁handbag", + -13.03946304321289 + ], + [ + "▁Genetic", + -13.039473533630371 + ], + [ + "▁CEOs", + -13.03963565826416 + ], + [ + "DH", + -13.039678573608398 + ], + [ + "▁Designing", + -13.039874076843262 + ], + [ + "ш", + -13.039925575256348 + ], + [ + "▁tiled", + -13.039976119995117 + ], + [ + "▁Nicola", + -13.040095329284668 + ], + [ + "212", + -13.04013729095459 + ], + [ + "▁stature", + -13.040228843688965 + ], + [ + "▁Cases", + -13.040270805358887 + ], + [ + "134", + -13.040281295776367 + ], + [ + "▁Isabel", + -13.04029655456543 + ], + [ + "▁visibly", + -13.040565490722656 + ], + [ + "encia", + -13.040568351745605 + ], + [ + "▁Kindergarten", + -13.040570259094238 + ], + [ + "▁salute", + -13.040716171264648 + ], + [ + "370", + -13.0408296585083 + ], + [ + "▁Pel", + -13.040995597839355 + ], + [ + "▁prized", + -13.041055679321289 + ], + [ + "company", + -13.041090965270996 + ], + [ + "▁Judah", + -13.041190147399902 + ], + [ + "▁drowned", + -13.041318893432617 + ], + [ + "▁hiatus", + -13.041345596313477 + ], + [ + "same", + -13.04135799407959 + ], + [ + "▁embraces", + -13.041378021240234 + ], + [ + "▁remediation", + -13.041417121887207 + ], + [ + "radio", + -13.041449546813965 + ], + [ + "م", + -13.041470527648926 + ], + [ + "motion", + -13.041481971740723 + ], + [ + "thought", + -13.04160213470459 + ], + [ + "▁coma", + -13.041616439819336 + ], + [ + "ANT", + -13.041641235351562 + ], + [ + "▁soothe", + -13.041683197021484 + ], + [ + "kle", + -13.041686058044434 + ], + [ + "▁Subscription", + -13.041723251342773 + ], + [ + "144", + -13.04174518585205 + ], + [ + "▁Concepts", + -13.041779518127441 + ], + [ + "▁enlightenment", + -13.041878700256348 + ], + [ + "▁warp", + -13.041926383972168 + ], + [ + "▁numb", + -13.042009353637695 + ], + [ + "published", + -13.042010307312012 + ], + [ + "▁retreats", + -13.04204273223877 + ], + [ + "▁marketer", + -13.042158126831055 + ], + [ + "▁Valerie", + -13.042228698730469 + ], + [ + "▁carbohydrate", + -13.042295455932617 + ], + [ + "mL", + -13.042301177978516 + ], + [ + "▁WHEN", + -13.042356491088867 + ], + [ + "▁exemptions", + -13.042366027832031 + ], + [ + "▁safeguards", + -13.042389869689941 + ], + [ + "▁Commissioners", + -13.0424222946167 + ], + [ + "▁originate", + -13.042426109313965 + ], + [ + "▁£7", + -13.042524337768555 + ], + [ + "▁unsubscribe", + -13.042570114135742 + ], + [ + "▁NEC", + -13.042603492736816 + ], + [ + "KB", + -13.042623519897461 + ], + [ + "▁Twist", + -13.042738914489746 + ], + [ + "▁Vanilla", + -13.04275894165039 + ], + [ + "▁avant", + -13.042768478393555 + ], + [ + "▁pea", + -13.042872428894043 + ], + [ + "▁manifested", + -13.042879104614258 + ], + [ + "▁machining", + -13.042988777160645 + ], + [ + "flower", + -13.043069839477539 + ], + [ + "▁diagonal", + -13.0431547164917 + ], + [ + "▁sucker", + -13.043217658996582 + ], + [ + "▁Sylvia", + -13.04328441619873 + ], + [ + "▁Bran", + -13.043292999267578 + ], + [ + "▁Hanoi", + -13.043334007263184 + ], + [ + "▁abusing", + -13.043392181396484 + ], + [ + "▁со", + -13.043410301208496 + ], + [ + "▁miraculous", + -13.043478965759277 + ], + [ + "▁JOHN", + -13.043532371520996 + ], + [ + "▁depreciation", + -13.04358196258545 + ], + [ + "▁Preservation", + -13.043662071228027 + ], + [ + "▁paranormal", + -13.043734550476074 + ], + [ + "▁Atomic", + -13.043773651123047 + ], + [ + "▁Nigerians", + -13.04378890991211 + ], + [ + "ops", + -13.04379653930664 + ], + [ + "▁hires", + -13.043807983398438 + ], + [ + "▁Personality", + -13.0440092086792 + ], + [ + "▁Parsons", + -13.044034004211426 + ], + [ + "▁Barclays", + -13.044065475463867 + ], + [ + "▁mozzarella", + -13.044081687927246 + ], + [ + "▁Fiat", + -13.044106483459473 + ], + [ + "▁infertility", + -13.04413890838623 + ], + [ + "▁prowess", + -13.044149398803711 + ], + [ + "review", + -13.044197082519531 + ], + [ + "▁Panels", + -13.04420280456543 + ], + [ + "▁Silence", + -13.044367790222168 + ], + [ + "▁aches", + -13.044428825378418 + ], + [ + "▁ale", + -13.04443359375 + ], + [ + "▁errands", + -13.044463157653809 + ], + [ + "▁hotter", + -13.044535636901855 + ], + [ + "▁Uniform", + -13.04457950592041 + ], + [ + "berger", + -13.044609069824219 + ], + [ + "▁Hospitals", + -13.044632911682129 + ], + [ + "SN", + -13.044646263122559 + ], + [ + "▁Utilities", + -13.044690132141113 + ], + [ + "tile", + -13.044818878173828 + ], + [ + "▁Luc", + -13.044938087463379 + ], + [ + "▁seeming", + -13.044966697692871 + ], + [ + "▁Cyrus", + -13.045023918151855 + ], + [ + "▁Laboratories", + -13.045036315917969 + ], + [ + "early", + -13.045133590698242 + ], + [ + "ADA", + -13.045136451721191 + ], + [ + "▁Dynasty", + -13.04515552520752 + ], + [ + "▁Charm", + -13.045393943786621 + ], + [ + "▁Notification", + -13.045393943786621 + ], + [ + "▁turbulent", + -13.045398712158203 + ], + [ + "▁Cannot", + -13.04540729522705 + ], + [ + "scenes", + -13.045431137084961 + ], + [ + "▁longstanding", + -13.045476913452148 + ], + [ + "developed", + -13.045554161071777 + ], + [ + "▁toolbar", + -13.045574188232422 + ], + [ + "▁Stylish", + -13.045720100402832 + ], + [ + "▁Abel", + -13.045730590820312 + ], + [ + "▁countdown", + -13.04577922821045 + ], + [ + "▁Output", + -13.045904159545898 + ], + [ + "▁ze", + -13.045915603637695 + ], + [ + "▁negativity", + -13.04603385925293 + ], + [ + "▁Garland", + -13.046064376831055 + ], + [ + "▁mandates", + -13.046085357666016 + ], + [ + "pub", + -13.046101570129395 + ], + [ + "▁fooled", + -13.046107292175293 + ], + [ + "uti", + -13.046117782592773 + ], + [ + "▁Muse", + -13.046175003051758 + ], + [ + "▁AMC", + -13.04625129699707 + ], + [ + "▁onward", + -13.046286582946777 + ], + [ + "hee", + -13.04628849029541 + ], + [ + "▁TW", + -13.046354293823242 + ], + [ + "▁irresponsible", + -13.046372413635254 + ], + [ + "▁Detection", + -13.046391487121582 + ], + [ + "▁Nichols", + -13.046455383300781 + ], + [ + "▁Prescription", + -13.046468734741211 + ], + [ + "pol", + -13.046513557434082 + ], + [ + "▁Starter", + -13.046553611755371 + ], + [ + "▁SNP", + -13.046636581420898 + ], + [ + "▁crater", + -13.046662330627441 + ], + [ + "▁Approved", + -13.046687126159668 + ], + [ + "uploads", + -13.0466890335083 + ], + [ + "▁tumble", + -13.046710968017578 + ], + [ + "▁extremes", + -13.046754837036133 + ], + [ + "▁Colombian", + -13.046774864196777 + ], + [ + "▁augment", + -13.0468111038208 + ], + [ + "▁tidal", + -13.046822547912598 + ], + [ + "▁burglary", + -13.046902656555176 + ], + [ + "▁Belmont", + -13.046935081481934 + ], + [ + "▁workflows", + -13.047006607055664 + ], + [ + "▁Blast", + -13.047017097473145 + ], + [ + "▁jewels", + -13.047117233276367 + ], + [ + "HB", + -13.047228813171387 + ], + [ + "▁mugs", + -13.047293663024902 + ], + [ + "▁Anyways", + -13.04730224609375 + ], + [ + "paying", + -13.047309875488281 + ], + [ + "▁knobs", + -13.04732608795166 + ], + [ + "Women", + -13.047381401062012 + ], + [ + "▁Delete", + -13.047450065612793 + ], + [ + "▁balm", + -13.047456741333008 + ], + [ + "▁ancestor", + -13.047541618347168 + ], + [ + "▁condominium", + -13.047639846801758 + ], + [ + "complete", + -13.047758102416992 + ], + [ + "▁airflow", + -13.047783851623535 + ], + [ + "▁lettering", + -13.047947883605957 + ], + [ + "▁Cannes", + -13.047959327697754 + ], + [ + "▁fiddle", + -13.048016548156738 + ], + [ + "▁rollers", + -13.048127174377441 + ], + [ + "▁Correct", + -13.048163414001465 + ], + [ + "▁Rifle", + -13.048173904418945 + ], + [ + "▁hovering", + -13.048215866088867 + ], + [ + "▁overwhelm", + -13.04826831817627 + ], + [ + "▁fantasies", + -13.048312187194824 + ], + [ + "ple", + -13.048369407653809 + ], + [ + "▁floated", + -13.048397064208984 + ], + [ + "▁sans", + -13.048463821411133 + ], + [ + "▁Jaipur", + -13.048468589782715 + ], + [ + "▁Wichita", + -13.048504829406738 + ], + [ + "▁Zombie", + -13.048611640930176 + ], + [ + "xa", + -13.048657417297363 + ], + [ + "▁interchange", + -13.048687934875488 + ], + [ + "bri", + -13.048803329467773 + ], + [ + "▁curled", + -13.04898738861084 + ], + [ + "oku", + -13.049025535583496 + ], + [ + "staff", + -13.049112319946289 + ], + [ + "▁chunky", + -13.049193382263184 + ], + [ + "aff", + -13.049242973327637 + ], + [ + "▁Formation", + -13.04931640625 + ], + [ + "▁sleeps", + -13.049455642700195 + ], + [ + "▁Pirate", + -13.049505233764648 + ], + [ + "▁Est", + -13.04953384399414 + ], + [ + "▁Cre", + -13.049593925476074 + ], + [ + "▁Influence", + -13.049619674682617 + ], + [ + "▁Terror", + -13.049620628356934 + ], + [ + "▁BG", + -13.049670219421387 + ], + [ + "▁champ", + -13.049670219421387 + ], + [ + "▁elbows", + -13.049715042114258 + ], + [ + "▁CN", + -13.049830436706543 + ], + [ + "give", + -13.050140380859375 + ], + [ + "tica", + -13.050166130065918 + ], + [ + "bah", + -13.05018138885498 + ], + [ + "▁Mozart", + -13.050206184387207 + ], + [ + "▁rumored", + -13.050209045410156 + ], + [ + "▁162", + -13.050320625305176 + ], + [ + "Med", + -13.05041790008545 + ], + [ + "▁Stafford", + -13.05044937133789 + ], + [ + "▁inventions", + -13.050470352172852 + ], + [ + "▁Parallel", + -13.050503730773926 + ], + [ + "▁Distinguished", + -13.050559043884277 + ], + [ + "▁Qur", + -13.050591468811035 + ], + [ + "▁Vanguard", + -13.050681114196777 + ], + [ + "▁antigen", + -13.050789833068848 + ], + [ + "▁Container", + -13.05081558227539 + ], + [ + "dress", + -13.050854682922363 + ], + [ + "▁Diocese", + -13.050994873046875 + ], + [ + "▁Negative", + -13.05099868774414 + ], + [ + "hana", + -13.051063537597656 + ], + [ + "dh", + -13.051146507263184 + ], + [ + "▁murderer", + -13.051273345947266 + ], + [ + "▁amplified", + -13.051301002502441 + ], + [ + "▁intending", + -13.051323890686035 + ], + [ + "▁SaaS", + -13.051328659057617 + ], + [ + "▁Oscars", + -13.051383972167969 + ], + [ + "▁Latvia", + -13.051474571228027 + ], + [ + "▁articulated", + -13.051483154296875 + ], + [ + "▁Braves", + -13.051517486572266 + ], + [ + "copy", + -13.05156421661377 + ], + [ + "▁£50", + -13.051594734191895 + ], + [ + "▁catered", + -13.051728248596191 + ], + [ + "▁escalating", + -13.051777839660645 + ], + [ + "▁motherhood", + -13.051911354064941 + ], + [ + "Soft", + -13.052031517028809 + ], + [ + "eat", + -13.05206298828125 + ], + [ + "▁Gerard", + -13.052077293395996 + ], + [ + "itas", + -13.052154541015625 + ], + [ + "▁Pluto", + -13.052157402038574 + ], + [ + "▁slump", + -13.05219554901123 + ], + [ + "▁blurred", + -13.052215576171875 + ], + [ + "▁Weird", + -13.05223560333252 + ], + [ + "▁orthopedic", + -13.052420616149902 + ], + [ + "▁MAR", + -13.052441596984863 + ], + [ + "▁ledger", + -13.052461624145508 + ], + [ + "▁Absolute", + -13.052486419677734 + ], + [ + "▁Addiction", + -13.052613258361816 + ], + [ + "▁Kro", + -13.052647590637207 + ], + [ + "▁Marijuana", + -13.052650451660156 + ], + [ + "▁behavioural", + -13.052682876586914 + ], + [ + "▁1903", + -13.052704811096191 + ], + [ + "league", + -13.05278205871582 + ], + [ + "study", + -13.052813529968262 + ], + [ + "▁YMCA", + -13.052863121032715 + ], + [ + "▁Grain", + -13.052888870239258 + ], + [ + "▁disclosures", + -13.053033828735352 + ], + [ + "▁diplomat", + -13.053186416625977 + ], + [ + "alis", + -13.053396224975586 + ], + [ + "linear", + -13.053483009338379 + ], + [ + "▁halves", + -13.053484916687012 + ], + [ + "▁transformer", + -13.053560256958008 + ], + [ + "▁Linear", + -13.053644180297852 + ], + [ + "ل", + -13.053775787353516 + ], + [ + "▁ignores", + -13.053817749023438 + ], + [ + "combe", + -13.053828239440918 + ], + [ + "▁Toni", + -13.053897857666016 + ], + [ + "▁sands", + -13.054045677185059 + ], + [ + "▁startling", + -13.05406379699707 + ], + [ + "▁kayaking", + -13.05411434173584 + ], + [ + "AE", + -13.05437183380127 + ], + [ + "RU", + -13.054428100585938 + ], + [ + "▁JSON", + -13.054441452026367 + ], + [ + "▁Ashton", + -13.054461479187012 + ], + [ + "▁administering", + -13.0545072555542 + ], + [ + "▁contingency", + -13.054598808288574 + ], + [ + "▁visitation", + -13.054615020751953 + ], + [ + "▁Lucia", + -13.054636001586914 + ], + [ + "AZ", + -13.054744720458984 + ], + [ + "▁Crowd", + -13.054807662963867 + ], + [ + "▁Fairfield", + -13.054821968078613 + ], + [ + "▁mower", + -13.055002212524414 + ], + [ + "▁Crushers", + -13.05502700805664 + ], + [ + "▁Bayern", + -13.055028915405273 + ], + [ + "▁leopard", + -13.055045127868652 + ], + [ + "▁Ref", + -13.055107116699219 + ], + [ + "▁Colleges", + -13.055238723754883 + ], + [ + "▁freeway", + -13.055419921875 + ], + [ + "Th", + -13.055429458618164 + ], + [ + "shin", + -13.055526733398438 + ], + [ + "▁Ep", + -13.055580139160156 + ], + [ + "▁Salisbury", + -13.055662155151367 + ], + [ + "▁Uploaded", + -13.055780410766602 + ], + [ + "▁Offices", + -13.05579662322998 + ], + [ + "▁Poverty", + -13.05599308013916 + ], + [ + "▁clasp", + -13.056000709533691 + ], + [ + "▁hears", + -13.056031227111816 + ], + [ + "client", + -13.056087493896484 + ], + [ + "rai", + -13.05612564086914 + ], + [ + "ulation", + -13.056151390075684 + ], + [ + "png", + -13.056222915649414 + ], + [ + "Win", + -13.056264877319336 + ], + [ + "▁Joanna", + -13.056424140930176 + ], + [ + "▁Patterns", + -13.056451797485352 + ], + [ + "▁della", + -13.056469917297363 + ], + [ + "▁Alec", + -13.056644439697266 + ], + [ + "▁estates", + -13.05667781829834 + ], + [ + "▁remembrance", + -13.056703567504883 + ], + [ + "▁predator", + -13.056817054748535 + ], + [ + "▁messing", + -13.05682373046875 + ], + [ + "▁installers", + -13.056882858276367 + ], + [ + "▁fury", + -13.05695629119873 + ], + [ + "1500", + -13.056986808776855 + ], + [ + "Israel", + -13.057044982910156 + ], + [ + "▁cultured", + -13.05705451965332 + ], + [ + "hoff", + -13.05705738067627 + ], + [ + "▁drifting", + -13.05707836151123 + ], + [ + "▁ny", + -13.057212829589844 + ], + [ + "ovich", + -13.0573091506958 + ], + [ + "▁Dickens", + -13.057345390319824 + ], + [ + "▁revolt", + -13.057381629943848 + ], + [ + "▁Aw", + -13.057385444641113 + ], + [ + "▁threaded", + -13.057390213012695 + ], + [ + "▁224", + -13.057428359985352 + ], + [ + "▁parallels", + -13.057520866394043 + ], + [ + "▁Scholars", + -13.057601928710938 + ], + [ + "hh", + -13.057629585266113 + ], + [ + "▁dams", + -13.05765438079834 + ], + [ + "▁unsecured", + -13.057785034179688 + ], + [ + "▁Integrity", + -13.057808876037598 + ], + [ + "▁Alas", + -13.057855606079102 + ], + [ + "▁jealousy", + -13.057912826538086 + ], + [ + "▁lurking", + -13.058012962341309 + ], + [ + "▁enact", + -13.058050155639648 + ], + [ + "▁sizable", + -13.058101654052734 + ], + [ + "AV", + -13.058120727539062 + ], + [ + "▁puff", + -13.058323860168457 + ], + [ + "▁biases", + -13.05837631225586 + ], + [ + "▁decals", + -13.058382987976074 + ], + [ + "▁Stud", + -13.058433532714844 + ], + [ + "▁Barb", + -13.058476448059082 + ], + [ + "youtube", + -13.058479309082031 + ], + [ + "▁Kiev", + -13.058526039123535 + ], + [ + "▁ottoman", + -13.058586120605469 + ], + [ + "▁insulting", + -13.058588981628418 + ], + [ + "▁waterways", + -13.058609962463379 + ], + [ + "▁ruthless", + -13.058614730834961 + ], + [ + "▁Lose", + -13.058619499206543 + ], + [ + "▁Premiere", + -13.058648109436035 + ], + [ + "▁formatted", + -13.058740615844727 + ], + [ + "▁Dane", + -13.058801651000977 + ], + [ + "▁Gathering", + -13.058924674987793 + ], + [ + "▁Slovakia", + -13.059000015258789 + ], + [ + "▁peri", + -13.059022903442383 + ], + [ + "▁sus", + -13.059087753295898 + ], + [ + "dine", + -13.059170722961426 + ], + [ + "▁Nora", + -13.05919075012207 + ], + [ + "▁dusk", + -13.059276580810547 + ], + [ + "▁Voting", + -13.059343338012695 + ], + [ + "azi", + -13.059347152709961 + ], + [ + "▁entail", + -13.059350967407227 + ], + [ + "▁toner", + -13.059401512145996 + ], + [ + "▁Poe", + -13.059494972229004 + ], + [ + "TG", + -13.059534072875977 + ], + [ + "▁cilantro", + -13.05961799621582 + ], + [ + "gui", + -13.059623718261719 + ], + [ + "▁poisonous", + -13.059648513793945 + ], + [ + "▁mitochondrial", + -13.059779167175293 + ], + [ + "▁wineries", + -13.059832572937012 + ], + [ + "▁Shelf", + -13.05984878540039 + ], + [ + "▁Lena", + -13.059859275817871 + ], + [ + "▁painfully", + -13.059976577758789 + ], + [ + "▁157", + -13.060014724731445 + ], + [ + "▁trivia", + -13.060040473937988 + ], + [ + "eon", + -13.060147285461426 + ], + [ + "▁Porto", + -13.06020450592041 + ], + [ + "▁watershed", + -13.060245513916016 + ], + [ + "▁magically", + -13.060301780700684 + ], + [ + "▁Xu", + -13.06031608581543 + ], + [ + "▁Frankie", + -13.060343742370605 + ], + [ + "▁275", + -13.060379981994629 + ], + [ + "▁1865", + -13.06040096282959 + ], + [ + "▁directs", + -13.060576438903809 + ], + [ + "follow", + -13.06060791015625 + ], + [ + "▁Literacy", + -13.060609817504883 + ], + [ + "▁EZ", + -13.060640335083008 + ], + [ + "▁everlasting", + -13.060674667358398 + ], + [ + "▁Suicide", + -13.060724258422852 + ], + [ + "▁hy", + -13.060748100280762 + ], + [ + "▁apk", + -13.060763359069824 + ], + [ + "▁contextual", + -13.060806274414062 + ], + [ + "▁taped", + -13.060839653015137 + ], + [ + "▁detects", + -13.0608491897583 + ], + [ + "▁Editorial", + -13.060965538024902 + ], + [ + "default", + -13.060979843139648 + ], + [ + "▁DU", + -13.06098461151123 + ], + [ + "▁Feet", + -13.06098461151123 + ], + [ + "▁Gemini", + -13.06098747253418 + ], + [ + "turned", + -13.061091423034668 + ], + [ + "▁PEOPLE", + -13.061180114746094 + ], + [ + "▁Owl", + -13.06118392944336 + ], + [ + "▁Patriot", + -13.061216354370117 + ], + [ + "▁NIH", + -13.061278343200684 + ], + [ + "▁Moral", + -13.061326026916504 + ], + [ + "▁curling", + -13.061386108398438 + ], + [ + "▁exits", + -13.061440467834473 + ], + [ + "Cam", + -13.061448097229004 + ], + [ + "▁Mak", + -13.061450958251953 + ], + [ + "▁claw", + -13.061480522155762 + ], + [ + "▁jams", + -13.061497688293457 + ], + [ + "▁embody", + -13.061500549316406 + ], + [ + "▁Formal", + -13.061565399169922 + ], + [ + "▁Nic", + -13.061616897583008 + ], + [ + "letter", + -13.061636924743652 + ], + [ + "▁Terri", + -13.06164836883545 + ], + [ + "▁Cayman", + -13.061761856079102 + ], + [ + "▁halo", + -13.061797142028809 + ], + [ + "▁Flo", + -13.061824798583984 + ], + [ + "▁compartments", + -13.06182861328125 + ], + [ + "▁caste", + -13.06187915802002 + ], + [ + "▁defeats", + -13.06188678741455 + ], + [ + "▁Completely", + -13.061906814575195 + ], + [ + "▁america", + -13.061929702758789 + ], + [ + "idi", + -13.061955451965332 + ], + [ + "▁Connie", + -13.061972618103027 + ], + [ + "▁git", + -13.062054634094238 + ], + [ + "Way", + -13.062068939208984 + ], + [ + "▁erection", + -13.062154769897461 + ], + [ + "▁limo", + -13.062300682067871 + ], + [ + "▁apron", + -13.062315940856934 + ], + [ + "1200", + -13.062363624572754 + ], + [ + "MF", + -13.062376976013184 + ], + [ + "▁rhythmic", + -13.0623779296875 + ], + [ + "kie", + -13.062387466430664 + ], + [ + "▁ab", + -13.062417030334473 + ], + [ + "▁endlessly", + -13.062626838684082 + ], + [ + "▁Settlement", + -13.062638282775879 + ], + [ + "▁insanity", + -13.062726020812988 + ], + [ + "▁gamer", + -13.06275749206543 + ], + [ + "OUT", + -13.062800407409668 + ], + [ + "▁negligent", + -13.062848091125488 + ], + [ + "▁Surgical", + -13.062889099121094 + ], + [ + "▁Transactions", + -13.063004493713379 + ], + [ + "▁microscopy", + -13.06303596496582 + ], + [ + "▁Cur", + -13.063089370727539 + ], + [ + "▁swimmers", + -13.063204765319824 + ], + [ + "▁Quran", + -13.063349723815918 + ], + [ + "▁Domino", + -13.063380241394043 + ], + [ + "▁Accident", + -13.063529968261719 + ], + [ + "▁Agree", + -13.063542366027832 + ], + [ + "▁Thermo", + -13.063590049743652 + ], + [ + "▁relocating", + -13.063613891601562 + ], + [ + "▁grounding", + -13.063644409179688 + ], + [ + "▁inhabit", + -13.063817977905273 + ], + [ + "▁Forge", + -13.063855171203613 + ], + [ + "▁CX", + -13.063861846923828 + ], + [ + "▁exporter", + -13.063912391662598 + ], + [ + "CAR", + -13.06396484375 + ], + [ + "▁attest", + -13.063982963562012 + ], + [ + "▁PNG", + -13.063987731933594 + ], + [ + "▁germs", + -13.06400203704834 + ], + [ + "▁Ceremony", + -13.06402587890625 + ], + [ + "▁litres", + -13.06405258178711 + ], + [ + "▁Boyle", + -13.06409740447998 + ], + [ + "▁Karma", + -13.064114570617676 + ], + [ + "▁benchmarks", + -13.064116477966309 + ], + [ + "▁Af", + -13.064176559448242 + ], + [ + "▁ante", + -13.064179420471191 + ], + [ + "▁exposures", + -13.064301490783691 + ], + [ + "▁Aerospace", + -13.064379692077637 + ], + [ + "▁Contrary", + -13.064473152160645 + ], + [ + "▁auditing", + -13.064522743225098 + ], + [ + "▁toolkit", + -13.064539909362793 + ], + [ + "steel", + -13.064541816711426 + ], + [ + "▁Burr", + -13.064603805541992 + ], + [ + "▁Drill", + -13.064623832702637 + ], + [ + "effects", + -13.064684867858887 + ], + [ + "▁151", + -13.064706802368164 + ], + [ + "▁Higgins", + -13.064774513244629 + ], + [ + "Never", + -13.064861297607422 + ], + [ + "▁symmetry", + -13.064906120300293 + ], + [ + "▁Donovan", + -13.064916610717773 + ], + [ + "▁tuberculosis", + -13.064980506896973 + ], + [ + "SK", + -13.065006256103516 + ], + [ + "▁retirees", + -13.065077781677246 + ], + [ + "▁mr", + -13.065099716186523 + ], + [ + "stan", + -13.065154075622559 + ], + [ + "▁anglers", + -13.06518268585205 + ], + [ + "▁walkers", + -13.065241813659668 + ], + [ + "ов", + -13.065279960632324 + ], + [ + "▁É", + -13.06529426574707 + ], + [ + "▁Moran", + -13.06543254852295 + ], + [ + "139", + -13.065463066101074 + ], + [ + "bh", + -13.065468788146973 + ], + [ + "▁Chick", + -13.06550407409668 + ], + [ + "▁Eleven", + -13.065520286560059 + ], + [ + "▁Boards", + -13.065546989440918 + ], + [ + "▁Anxiety", + -13.065550804138184 + ], + [ + "▁Shelley", + -13.065601348876953 + ], + [ + "added", + -13.065606117248535 + ], + [ + "▁MLA", + -13.065661430358887 + ], + [ + "▁LONDON", + -13.065695762634277 + ], + [ + "otti", + -13.065707206726074 + ], + [ + "▁Ratio", + -13.06577205657959 + ], + [ + "files", + -13.0657958984375 + ], + [ + "▁conductive", + -13.065813064575195 + ], + [ + "▁Yun", + -13.0658540725708 + ], + [ + "▁obsessive", + -13.065933227539062 + ], + [ + "▁Electricity", + -13.06594467163086 + ], + [ + "▁austerity", + -13.066027641296387 + ], + [ + "▁Hulk", + -13.066227912902832 + ], + [ + "▁showdown", + -13.06637954711914 + ], + [ + "▁Grammar", + -13.066394805908203 + ], + [ + "▁Michelin", + -13.066458702087402 + ], + [ + "VS", + -13.066475868225098 + ], + [ + "▁1400", + -13.066487312316895 + ], + [ + "▁1100", + -13.06649398803711 + ], + [ + "▁Computers", + -13.066496849060059 + ], + [ + "▁str", + -13.066550254821777 + ], + [ + "Shop", + -13.066568374633789 + ], + [ + "▁breweries", + -13.066600799560547 + ], + [ + "▁Holden", + -13.066617965698242 + ], + [ + "OA", + -13.06667709350586 + ], + [ + "▁minimized", + -13.066774368286133 + ], + [ + "rous", + -13.066850662231445 + ], + [ + "▁SPF", + -13.066917419433594 + ], + [ + "▁Rubio", + -13.066962242126465 + ], + [ + "▁Strawberry", + -13.067066192626953 + ], + [ + "▁Rub", + -13.067164421081543 + ], + [ + "▁Finger", + -13.067233085632324 + ], + [ + "▁haunt", + -13.067243576049805 + ], + [ + "▁Ivory", + -13.067291259765625 + ], + [ + "label", + -13.067306518554688 + ], + [ + "▁în", + -13.06747817993164 + ], + [ + "▁Charlottesville", + -13.067540168762207 + ], + [ + "▁outage", + -13.067604064941406 + ], + [ + "▁ITV", + -13.067618370056152 + ], + [ + "agi", + -13.06766128540039 + ], + [ + "▁Cavaliers", + -13.0676908493042 + ], + [ + "voice", + -13.067788124084473 + ], + [ + "lap", + -13.067824363708496 + ], + [ + "▁upkeep", + -13.067843437194824 + ], + [ + "Pad", + -13.067899703979492 + ], + [ + "▁savage", + -13.067923545837402 + ], + [ + "▁fractured", + -13.067949295043945 + ], + [ + "▁surpass", + -13.067965507507324 + ], + [ + "▁Biz", + -13.06796646118164 + ], + [ + "Dis", + -13.068236351013184 + ], + [ + "Safe", + -13.068304061889648 + ], + [ + "▁154", + -13.068337440490723 + ], + [ + "▁accountants", + -13.068373680114746 + ], + [ + "gia", + -13.068445205688477 + ], + [ + "▁scouting", + -13.068492889404297 + ], + [ + "Inter", + -13.068626403808594 + ], + [ + "nda", + -13.068675994873047 + ], + [ + "299", + -13.068689346313477 + ], + [ + "pocket", + -13.068699836730957 + ], + [ + "▁Pdf", + -13.068788528442383 + ], + [ + "▁joys", + -13.068822860717773 + ], + [ + "industrial", + -13.068841934204102 + ], + [ + "▁Continuous", + -13.068928718566895 + ], + [ + "▁tame", + -13.06898021697998 + ], + [ + "▁Months", + -13.06898307800293 + ], + [ + "▁devastation", + -13.06906795501709 + ], + [ + "▁sinful", + -13.069090843200684 + ], + [ + "▁larvae", + -13.069212913513184 + ], + [ + "goers", + -13.069355010986328 + ], + [ + "▁apprentice", + -13.069424629211426 + ], + [ + "▁Harlem", + -13.06947135925293 + ], + [ + "▁criticisms", + -13.069510459899902 + ], + [ + "▁skepticism", + -13.069522857666016 + ], + [ + "▁strengthens", + -13.069632530212402 + ], + [ + "▁shovel", + -13.069650650024414 + ], + [ + "▁accomplishing", + -13.069659233093262 + ], + [ + "▁disturb", + -13.069692611694336 + ], + [ + "▁chap", + -13.06973934173584 + ], + [ + "▁Edmund", + -13.069742202758789 + ], + [ + "▁placements", + -13.069754600524902 + ], + [ + "fitting", + -13.069779396057129 + ], + [ + "▁fe", + -13.069803237915039 + ], + [ + "▁Samples", + -13.069823265075684 + ], + [ + "▁Mei", + -13.06982707977295 + ], + [ + "percent", + -13.070075988769531 + ], + [ + "▁Marcel", + -13.07009220123291 + ], + [ + "llo", + -13.070191383361816 + ], + [ + "▁Praise", + -13.070211410522461 + ], + [ + "▁Punk", + -13.070262908935547 + ], + [ + "DN", + -13.070496559143066 + ], + [ + "▁GTA", + -13.070533752441406 + ], + [ + "▁famine", + -13.070552825927734 + ], + [ + "▁Alive", + -13.07060718536377 + ], + [ + "▁immuno", + -13.070852279663086 + ], + [ + "355", + -13.070919036865234 + ], + [ + "▁boarded", + -13.070995330810547 + ], + [ + "▁bulls", + -13.071022987365723 + ], + [ + "points", + -13.07109546661377 + ], + [ + "haired", + -13.071150779724121 + ], + [ + "otic", + -13.071152687072754 + ], + [ + "▁cheated", + -13.071316719055176 + ], + [ + "▁Pitch", + -13.071374893188477 + ], + [ + "▁mediated", + -13.071394920349121 + ], + [ + "▁Agencies", + -13.071395874023438 + ], + [ + "▁Shade", + -13.071443557739258 + ], + [ + "▁affluent", + -13.071589469909668 + ], + [ + "▁disciple", + -13.071636199951172 + ], + [ + "▁admittedly", + -13.071659088134766 + ], + [ + "holding", + -13.07182502746582 + ], + [ + "▁nerd", + -13.071889877319336 + ], + [ + "▁1904", + -13.071942329406738 + ], + [ + "German", + -13.071955680847168 + ], + [ + "anza", + -13.071975708007812 + ], + [ + "▁Chal", + -13.072068214416504 + ], + [ + "▁tertiary", + -13.072089195251465 + ], + [ + "▁stealth", + -13.072135925292969 + ], + [ + "206", + -13.07226276397705 + ], + [ + "generic", + -13.072284698486328 + ], + [ + "▁dvd", + -13.07229232788086 + ], + [ + "tea", + -13.072341918945312 + ], + [ + "▁Patty", + -13.072515487670898 + ], + [ + "coated", + -13.072550773620605 + ], + [ + "️", + -13.072551727294922 + ], + [ + "LINE", + -13.072553634643555 + ], + [ + "▁diffuse", + -13.072636604309082 + ], + [ + "▁Upload", + -13.072696685791016 + ], + [ + "▁adversity", + -13.072744369506836 + ], + [ + "vas", + -13.07279109954834 + ], + [ + "▁clad", + -13.072816848754883 + ], + [ + "ر", + -13.072830200195312 + ], + [ + "▁depleted", + -13.072835922241211 + ], + [ + "▁cartilage", + -13.072884559631348 + ], + [ + "▁Daytona", + -13.072907447814941 + ], + [ + "blade", + -13.072922706604004 + ], + [ + "و", + -13.072929382324219 + ], + [ + "▁outsider", + -13.07295036315918 + ], + [ + "▁realtor", + -13.072959899902344 + ], + [ + "▁PRE", + -13.073038101196289 + ], + [ + "▁rooting", + -13.073092460632324 + ], + [ + "▁Abdullah", + -13.073101997375488 + ], + [ + "▁Belarus", + -13.073189735412598 + ], + [ + "producing", + -13.07320499420166 + ], + [ + "▁prognosis", + -13.073262214660645 + ], + [ + "▁SHE", + -13.073275566101074 + ], + [ + "▁erased", + -13.073321342468262 + ], + [ + "▁doubtful", + -13.073453903198242 + ], + [ + "community", + -13.073636054992676 + ], + [ + "raising", + -13.073637008666992 + ], + [ + "▁varsity", + -13.073639869689941 + ], + [ + "OM", + -13.073826789855957 + ], + [ + "▁Assurance", + -13.073952674865723 + ], + [ + "255", + -13.073981285095215 + ], + [ + "▁choke", + -13.074014663696289 + ], + [ + "▁Alright", + -13.074105262756348 + ], + [ + "▁Layout", + -13.074125289916992 + ], + [ + "emia", + -13.074183464050293 + ], + [ + "▁drawback", + -13.074203491210938 + ], + [ + "suit", + -13.074315071105957 + ], + [ + "▁Cluster", + -13.074317932128906 + ], + [ + "▁endemic", + -13.074318885803223 + ], + [ + "▁Fahrenheit", + -13.07437515258789 + ], + [ + "▁foyer", + -13.0744047164917 + ], + [ + "▁revolving", + -13.07441234588623 + ], + [ + "▁migrated", + -13.074447631835938 + ], + [ + "▁retina", + -13.074563980102539 + ], + [ + "▁pom", + -13.07461166381836 + ], + [ + "frequency", + -13.074731826782227 + ], + [ + "▁Erica", + -13.074736595153809 + ], + [ + "▁studs", + -13.074780464172363 + ], + [ + "▁hairs", + -13.074800491333008 + ], + [ + "▁dictator", + -13.074810981750488 + ], + [ + "▁Pep", + -13.0748291015625 + ], + [ + "▁Raise", + -13.074834823608398 + ], + [ + "▁persists", + -13.074871063232422 + ], + [ + "▁frenzy", + -13.074973106384277 + ], + [ + "▁Sham", + -13.075167655944824 + ], + [ + "▁bob", + -13.075172424316406 + ], + [ + "▁Lois", + -13.075217247009277 + ], + [ + "eti", + -13.075224876403809 + ], + [ + "▁Elle", + -13.075226783752441 + ], + [ + "▁eighty", + -13.075359344482422 + ], + [ + "elected", + -13.07552719116211 + ], + [ + "▁Disorders", + -13.075695037841797 + ], + [ + "Frank", + -13.075882911682129 + ], + [ + "▁Saddam", + -13.076003074645996 + ], + [ + "▁Dani", + -13.076033592224121 + ], + [ + "feet", + -13.07603645324707 + ], + [ + "▁Gerry", + -13.076068878173828 + ], + [ + "▁meditate", + -13.076070785522461 + ], + [ + "▁Clubs", + -13.076083183288574 + ], + [ + "▁indicted", + -13.076108932495117 + ], + [ + "▁veneer", + -13.076119422912598 + ], + [ + "▁Fits", + -13.076178550720215 + ], + [ + "▁Clyde", + -13.076248168945312 + ], + [ + "▁Tv", + -13.076288223266602 + ], + [ + "▁Took", + -13.076294898986816 + ], + [ + "▁Wyatt", + -13.076300621032715 + ], + [ + "▁inducted", + -13.076311111450195 + ], + [ + "▁layering", + -13.076515197753906 + ], + [ + "▁Git", + -13.076574325561523 + ], + [ + "ces", + -13.07658576965332 + ], + [ + "▁Cary", + -13.076590538024902 + ], + [ + "udi", + -13.076684951782227 + ], + [ + "▁Osborne", + -13.076756477355957 + ], + [ + "▁forwarding", + -13.076765060424805 + ], + [ + "Speed", + -13.076810836791992 + ], + [ + "AK", + -13.076838493347168 + ], + [ + "▁Maduro", + -13.076847076416016 + ], + [ + "▁Participation", + -13.076855659484863 + ], + [ + "▁battered", + -13.076859474182129 + ], + [ + "▁interns", + -13.076881408691406 + ], + [ + "▁Passport", + -13.076891899108887 + ], + [ + "▁EBITDA", + -13.07697582244873 + ], + [ + "▁Seminary", + -13.076995849609375 + ], + [ + "▁Indies", + -13.07700252532959 + ], + [ + "Ben", + -13.077018737792969 + ], + [ + "▁Guinness", + -13.07708740234375 + ], + [ + "▁Anybody", + -13.077171325683594 + ], + [ + "▁Borders", + -13.077171325683594 + ], + [ + "▁Geography", + -13.077217102050781 + ], + [ + "▁watt", + -13.077325820922852 + ], + [ + "▁Directed", + -13.077409744262695 + ], + [ + "▁Ajax", + -13.077452659606934 + ], + [ + "▁Frequency", + -13.07746410369873 + ], + [ + "▁dissolution", + -13.077468872070312 + ], + [ + "▁leafy", + -13.077629089355469 + ], + [ + "▁jeep", + -13.07763671875 + ], + [ + "▁backlog", + -13.077689170837402 + ], + [ + "TL", + -13.0777006149292 + ], + [ + "uku", + -13.077865600585938 + ], + [ + "▁Pipeline", + -13.077865600585938 + ], + [ + "▁Mayer", + -13.077895164489746 + ], + [ + "▁punitive", + -13.077935218811035 + ], + [ + "▁Aquarium", + -13.077937126159668 + ], + [ + "Sexy", + -13.0779390335083 + ], + [ + "179", + -13.078025817871094 + ], + [ + "▁Pinot", + -13.078145027160645 + ], + [ + "▁parody", + -13.078186988830566 + ], + [ + "▁microscopic", + -13.078283309936523 + ], + [ + "carb", + -13.078289985656738 + ], + [ + "▁reopened", + -13.07829475402832 + ], + [ + "▁255", + -13.078309059143066 + ], + [ + "▁sich", + -13.078335762023926 + ], + [ + "▁Earned", + -13.078344345092773 + ], + [ + "¦", + -13.07838249206543 + ], + [ + "▁Bergen", + -13.078535079956055 + ], + [ + "▁impatient", + -13.078609466552734 + ], + [ + "▁Hezbollah", + -13.078763961791992 + ], + [ + "▁Trout", + -13.078804016113281 + ], + [ + "loaded", + -13.078811645507812 + ], + [ + "▁Franz", + -13.078864097595215 + ], + [ + "▁decentralized", + -13.078882217407227 + ], + [ + "▁vaginal", + -13.078920364379883 + ], + [ + "▁Collaborative", + -13.0789213180542 + ], + [ + "▁Shea", + -13.078939437866211 + ], + [ + "▁Mango", + -13.078953742980957 + ], + [ + "▁Tone", + -13.079062461853027 + ], + [ + "format", + -13.07907772064209 + ], + [ + "▁tempered", + -13.0791015625 + ], + [ + "eni", + -13.079150199890137 + ], + [ + "▁Elf", + -13.07921028137207 + ], + [ + "▁6000", + -13.079211235046387 + ], + [ + "Baby", + -13.079219818115234 + ], + [ + "▁tirelessly", + -13.07925033569336 + ], + [ + "▁furnish", + -13.079484939575195 + ], + [ + "▁purchasers", + -13.079484939575195 + ], + [ + "▁newcomer", + -13.079569816589355 + ], + [ + "▁Flyers", + -13.079604148864746 + ], + [ + "▁coined", + -13.079618453979492 + ], + [ + "▁Afro", + -13.079716682434082 + ], + [ + "▁trolley", + -13.079745292663574 + ], + [ + "▁pavilion", + -13.079822540283203 + ], + [ + "saw", + -13.079863548278809 + ], + [ + "▁Dillon", + -13.079924583435059 + ], + [ + "▁unforeseen", + -13.079931259155273 + ], + [ + "▁utilise", + -13.079976081848145 + ], + [ + "▁radial", + -13.080120086669922 + ], + [ + "▁CSR", + -13.08012866973877 + ], + [ + "▁woodworking", + -13.080134391784668 + ], + [ + "▁Fil", + -13.080242156982422 + ], + [ + "▁salesman", + -13.080472946166992 + ], + [ + "▁Naked", + -13.080533027648926 + ], + [ + "▁slapped", + -13.080609321594238 + ], + [ + "▁Divide", + -13.080732345581055 + ], + [ + "▁Tanner", + -13.080764770507812 + ], + [ + "▁Paige", + -13.080831527709961 + ], + [ + "▁vampires", + -13.080947875976562 + ], + [ + "▁leisurely", + -13.080954551696777 + ], + [ + "Fox", + -13.080968856811523 + ], + [ + "▁172", + -13.080981254577637 + ], + [ + "▁happiest", + -13.081052780151367 + ], + [ + "▁politely", + -13.081191062927246 + ], + [ + "▁allotted", + -13.081223487854004 + ], + [ + "▁ATV", + -13.081246376037598 + ], + [ + "grid", + -13.081292152404785 + ], + [ + "▁feud", + -13.081367492675781 + ], + [ + "▁Newfoundland", + -13.081369400024414 + ], + [ + "▁Trio", + -13.081387519836426 + ], + [ + "▁Guns", + -13.08142375946045 + ], + [ + "▁cones", + -13.081503868103027 + ], + [ + "▁ornamental", + -13.081589698791504 + ], + [ + "▁1864", + -13.081611633300781 + ], + [ + "RED", + -13.08173942565918 + ], + [ + "▁meltdown", + -13.081745147705078 + ], + [ + "▁fungal", + -13.081791877746582 + ], + [ + "▁chanting", + -13.08191967010498 + ], + [ + "▁Accommodation", + -13.081971168518066 + ], + [ + "▁Bauer", + -13.082022666931152 + ], + [ + "▁librarian", + -13.08204460144043 + ], + [ + "▁responsibly", + -13.082141876220703 + ], + [ + "▁Dor", + -13.082151412963867 + ], + [ + "▁Institutions", + -13.082159042358398 + ], + [ + "▁hopping", + -13.082200050354004 + ], + [ + "▁ventured", + -13.082226753234863 + ], + [ + "▁entre", + -13.082235336303711 + ], + [ + "▁169", + -13.082247734069824 + ], + [ + "▁disparate", + -13.082307815551758 + ], + [ + "▁BAR", + -13.082321166992188 + ], + [ + "▁perpetrators", + -13.082413673400879 + ], + [ + "legged", + -13.082448959350586 + ], + [ + "Law", + -13.082501411437988 + ], + [ + "vent", + -13.08254337310791 + ], + [ + "▁AFTER", + -13.082557678222656 + ], + [ + "▁Scots", + -13.082561492919922 + ], + [ + "▁stabilization", + -13.082612991333008 + ], + [ + "▁Qaeda", + -13.082635879516602 + ], + [ + "▁Pony", + -13.082818031311035 + ], + [ + "▁este", + -13.08288860321045 + ], + [ + "▁reacts", + -13.082901000976562 + ], + [ + "Port", + -13.082907676696777 + ], + [ + "▁hen", + -13.083011627197266 + ], + [ + "▁offending", + -13.08303165435791 + ], + [ + "logical", + -13.083032608032227 + ], + [ + "▁encompassing", + -13.083060264587402 + ], + [ + "▁rotten", + -13.083077430725098 + ], + [ + "chem", + -13.083080291748047 + ], + [ + "▁Sonoma", + -13.083093643188477 + ], + [ + "▁Tex", + -13.08310317993164 + ], + [ + "▁veg", + -13.083154678344727 + ], + [ + "▁Rig", + -13.083291053771973 + ], + [ + "▁Planner", + -13.083321571350098 + ], + [ + "amide", + -13.083422660827637 + ], + [ + "411", + -13.083503723144531 + ], + [ + "▁Signed", + -13.083593368530273 + ], + [ + "▁devise", + -13.083621978759766 + ], + [ + "▁Conditioner", + -13.08375358581543 + ], + [ + "▁Taj", + -13.08397102355957 + ], + [ + "shift", + -13.083978652954102 + ], + [ + "▁Stereo", + -13.084095001220703 + ], + [ + "▁Asus", + -13.084147453308105 + ], + [ + "▁158", + -13.084246635437012 + ], + [ + "▁marginalized", + -13.084320068359375 + ], + [ + "▁Eternal", + -13.084349632263184 + ], + [ + "▁CSA", + -13.084365844726562 + ], + [ + "▁Consult", + -13.084436416625977 + ], + [ + "▁Billion", + -13.084467887878418 + ], + [ + "▁cursed", + -13.08452320098877 + ], + [ + "▁chant", + -13.084524154663086 + ], + [ + "▁painless", + -13.0845308303833 + ], + [ + "chip", + -13.08460521697998 + ], + [ + "▁Comm", + -13.084632873535156 + ], + [ + "▁Parliamentary", + -13.084633827209473 + ], + [ + "▁sham", + -13.084643363952637 + ], + [ + "▁Incorporated", + -13.084748268127441 + ], + [ + "▁Costume", + -13.084999084472656 + ], + [ + "▁exposes", + -13.085077285766602 + ], + [ + "▁Magento", + -13.085092544555664 + ], + [ + "▁complements", + -13.085092544555664 + ], + [ + "▁Outreach", + -13.085104942321777 + ], + [ + "▁addicts", + -13.085116386413574 + ], + [ + "▁Harmon", + -13.085213661193848 + ], + [ + "tian", + -13.08527946472168 + ], + [ + "DX", + -13.08529281616211 + ], + [ + "▁Elon", + -13.08533763885498 + ], + [ + "▁Components", + -13.085342407226562 + ], + [ + "▁Saying", + -13.085382461547852 + ], + [ + "church", + -13.085405349731445 + ], + [ + "Ver", + -13.085439682006836 + ], + [ + "▁respite", + -13.085693359375 + ], + [ + "▁Registrar", + -13.085750579833984 + ], + [ + "▁tug", + -13.08576774597168 + ], + [ + "▁DK", + -13.085774421691895 + ], + [ + "▁activating", + -13.086027145385742 + ], + [ + "▁customised", + -13.08608341217041 + ], + [ + "▁projecting", + -13.086088180541992 + ], + [ + "▁natives", + -13.086151123046875 + ], + [ + "▁Stevenson", + -13.086162567138672 + ], + [ + "▁Watkins", + -13.08623218536377 + ], + [ + "lat", + -13.086373329162598 + ], + [ + "▁Enhanced", + -13.086440086364746 + ], + [ + "▁Yankee", + -13.086446762084961 + ], + [ + "▁Monk", + -13.086508750915527 + ], + [ + "aku", + -13.086569786071777 + ], + [ + "▁Griffith", + -13.086634635925293 + ], + [ + "▁unpopular", + -13.08664608001709 + ], + [ + "▁hemisphere", + -13.08666706085205 + ], + [ + "▁Kraft", + -13.086816787719727 + ], + [ + "▁Bless", + -13.086819648742676 + ], + [ + "▁monarch", + -13.086836814880371 + ], + [ + "▁Pala", + -13.0868501663208 + ], + [ + "▁DJs", + -13.086902618408203 + ], + [ + "▁Sul", + -13.086984634399414 + ], + [ + "▁Dodd", + -13.087040901184082 + ], + [ + "Change", + -13.087103843688965 + ], + [ + "한", + -13.087115287780762 + ], + [ + "nah", + -13.087238311767578 + ], + [ + "▁gamma", + -13.087274551391602 + ], + [ + "▁HIGH", + -13.087316513061523 + ], + [ + "▁rein", + -13.087461471557617 + ], + [ + "▁Reasons", + -13.087479591369629 + ], + [ + "▁POP", + -13.0875244140625 + ], + [ + "▁pancreatic", + -13.087563514709473 + ], + [ + "▁commentator", + -13.087642669677734 + ], + [ + "▁hitter", + -13.087669372558594 + ], + [ + "▁Attorneys", + -13.087726593017578 + ], + [ + "▁burdens", + -13.08775806427002 + ], + [ + "▁chatted", + -13.087910652160645 + ], + [ + "▁Wolfe", + -13.087930679321289 + ], + [ + "▁greenery", + -13.087979316711426 + ], + [ + "▁Bard", + -13.088021278381348 + ], + [ + "▁tra", + -13.088216781616211 + ], + [ + "intensive", + -13.088232040405273 + ], + [ + "Lu", + -13.088235855102539 + ], + [ + "▁multicultural", + -13.088264465332031 + ], + [ + "▁ninja", + -13.08830451965332 + ], + [ + "▁Markle", + -13.0883150100708 + ], + [ + "▁dishonest", + -13.088325500488281 + ], + [ + "▁Belize", + -13.088337898254395 + ], + [ + "▁Midland", + -13.088423728942871 + ], + [ + "▁Psychiatry", + -13.088469505310059 + ], + [ + "▁plainly", + -13.088692665100098 + ], + [ + "▁sulfur", + -13.08871078491211 + ], + [ + "Ac", + -13.088736534118652 + ], + [ + "▁Rosemary", + -13.088737487792969 + ], + [ + "▁agony", + -13.088842391967773 + ], + [ + "▁Crest", + -13.088869094848633 + ], + [ + "▁minimally", + -13.088980674743652 + ], + [ + "▁UEFA", + -13.089003562927246 + ], + [ + "▁Boca", + -13.089043617248535 + ], + [ + "▁basal", + -13.089062690734863 + ], + [ + "▁Merrill", + -13.089129447937012 + ], + [ + "▁dreadful", + -13.089245796203613 + ], + [ + "▁interfering", + -13.089350700378418 + ], + [ + "▁antimicrobial", + -13.089356422424316 + ], + [ + "▁Cheng", + -13.089381217956543 + ], + [ + "▁earthy", + -13.089428901672363 + ], + [ + "Everyone", + -13.08944034576416 + ], + [ + "▁dialing", + -13.089447975158691 + ], + [ + "▁astrology", + -13.08948040008545 + ], + [ + "▁originality", + -13.089582443237305 + ], + [ + "▁intangible", + -13.089679718017578 + ], + [ + "▁dyed", + -13.089723587036133 + ], + [ + "TIC", + -13.08976936340332 + ], + [ + "ako", + -13.090044021606445 + ], + [ + "▁stressing", + -13.090092658996582 + ], + [ + "▁sipping", + -13.090150833129883 + ], + [ + "▁limp", + -13.090219497680664 + ], + [ + "▁flashed", + -13.090227127075195 + ], + [ + "▁unanswered", + -13.090239524841309 + ], + [ + "lip", + -13.090326309204102 + ], + [ + "oro", + -13.090431213378906 + ], + [ + "▁binder", + -13.09048843383789 + ], + [ + "fuel", + -13.090534210205078 + ], + [ + "▁Pale", + -13.090538024902344 + ], + [ + "ition", + -13.090564727783203 + ], + [ + "▁CALL", + -13.090621948242188 + ], + [ + "peer", + -13.090629577636719 + ], + [ + "▁oder", + -13.090656280517578 + ], + [ + "▁brutality", + -13.090791702270508 + ], + [ + "▁iceberg", + -13.090840339660645 + ], + [ + "ographic", + -13.090889930725098 + ], + [ + "▁redirected", + -13.090897560119629 + ], + [ + "▁excessively", + -13.090921401977539 + ], + [ + "▁squat", + -13.090927124023438 + ], + [ + "л", + -13.0910062789917 + ], + [ + "▁McLaren", + -13.091053009033203 + ], + [ + "urban", + -13.091198921203613 + ], + [ + "▁Repairs", + -13.091329574584961 + ], + [ + "▁midday", + -13.091386795043945 + ], + [ + "Land", + -13.09139633178711 + ], + [ + "▁GMC", + -13.091449737548828 + ], + [ + "NER", + -13.091644287109375 + ], + [ + "▁Alone", + -13.09167766571045 + ], + [ + "▁Toshiba", + -13.091712951660156 + ], + [ + "▁Classics", + -13.091739654541016 + ], + [ + "▁Sinai", + -13.09174919128418 + ], + [ + "▁Rutgers", + -13.091872215270996 + ], + [ + "▁esteemed", + -13.091957092285156 + ], + [ + "ager", + -13.092022895812988 + ], + [ + "NN", + -13.092080116271973 + ], + [ + "▁Bale", + -13.09213924407959 + ], + [ + "▁Bliss", + -13.09216594696045 + ], + [ + "▁bustle", + -13.092193603515625 + ], + [ + "▁reversible", + -13.092286109924316 + ], + [ + "▁wiping", + -13.092414855957031 + ], + [ + "▁Relationships", + -13.092459678649902 + ], + [ + "MAX", + -13.092467308044434 + ], + [ + "▁ent", + -13.092474937438965 + ], + [ + "▁OSHA", + -13.092475891113281 + ], + [ + "▁Botanical", + -13.09249496459961 + ], + [ + "▁auditor", + -13.092509269714355 + ], + [ + "▁lighthouse", + -13.092606544494629 + ], + [ + "▁dungeon", + -13.09276008605957 + ], + [ + "▁solicit", + -13.09303092956543 + ], + [ + "▁Rib", + -13.09312915802002 + ], + [ + "▁infinitely", + -13.093372344970703 + ], + [ + "▁Bowling", + -13.093398094177246 + ], + [ + "quest", + -13.093428611755371 + ], + [ + "▁biotechnology", + -13.09345531463623 + ], + [ + "guide", + -13.093539237976074 + ], + [ + "▁jurors", + -13.093698501586914 + ], + [ + "▁Crimson", + -13.093754768371582 + ], + [ + "storey", + -13.093849182128906 + ], + [ + "▁exited", + -13.093863487243652 + ], + [ + "▁Accord", + -13.093868255615234 + ], + [ + "▁terrestrial", + -13.093915939331055 + ], + [ + "▁fillers", + -13.094021797180176 + ], + [ + "▁hover", + -13.094051361083984 + ], + [ + "▁Rao", + -13.094070434570312 + ], + [ + "▁routers", + -13.094076156616211 + ], + [ + "nder", + -13.094100952148438 + ], + [ + "▁cashier", + -13.094252586364746 + ], + [ + "Store", + -13.094314575195312 + ], + [ + "▁electrician", + -13.09435749053955 + ], + [ + "▁propel", + -13.094389915466309 + ], + [ + "▁Slate", + -13.094413757324219 + ], + [ + "containing", + -13.094450950622559 + ], + [ + "▁debug", + -13.094473838806152 + ], + [ + "▁Lux", + -13.094475746154785 + ], + [ + "amo", + -13.094597816467285 + ], + [ + "▁vigorously", + -13.09466552734375 + ], + [ + "▁treasured", + -13.094749450683594 + ], + [ + "▁etched", + -13.094806671142578 + ], + [ + "▁Moment", + -13.094879150390625 + ], + [ + "▁cognition", + -13.094987869262695 + ], + [ + "▁Shar", + -13.095032691955566 + ], + [ + "▁manipulating", + -13.09509563446045 + ], + [ + "▁complication", + -13.09516716003418 + ], + [ + "▁dearly", + -13.09526538848877 + ], + [ + "▁Mansion", + -13.095267295837402 + ], + [ + "▁TripAdvisor", + -13.095388412475586 + ], + [ + "▁ECB", + -13.095441818237305 + ], + [ + "dies", + -13.095494270324707 + ], + [ + "▁Babies", + -13.095632553100586 + ], + [ + "▁Produced", + -13.095672607421875 + ], + [ + "▁cre", + -13.095684051513672 + ], + [ + "▁suitability", + -13.095768928527832 + ], + [ + "▁boxed", + -13.095882415771484 + ], + [ + "▁DSLR", + -13.09592342376709 + ], + [ + "▁eruption", + -13.095938682556152 + ], + [ + "dock", + -13.095975875854492 + ], + [ + "ude", + -13.095982551574707 + ], + [ + "▁ICO", + -13.096016883850098 + ], + [ + "Although", + -13.096023559570312 + ], + [ + "▁unleashed", + -13.096036911010742 + ], + [ + "▁Alphabet", + -13.096060752868652 + ], + [ + "▁annoyance", + -13.096107482910156 + ], + [ + "▁destroys", + -13.09613037109375 + ], + [ + "▁implicated", + -13.096142768859863 + ], + [ + "Mc", + -13.09622573852539 + ], + [ + "▁televised", + -13.096466064453125 + ], + [ + "▁intrusion", + -13.096489906311035 + ], + [ + "▁Hue", + -13.096502304077148 + ], + [ + "CG", + -13.096549987792969 + ], + [ + "▁Hanna", + -13.096688270568848 + ], + [ + "nit", + -13.096711158752441 + ], + [ + "▁impactful", + -13.096738815307617 + ], + [ + "▁APK", + -13.096776962280273 + ], + [ + "▁bullpen", + -13.096831321716309 + ], + [ + "▁revoked", + -13.09701919555664 + ], + [ + "▁legalization", + -13.097091674804688 + ], + [ + "lost", + -13.097114562988281 + ], + [ + "▁Wallet", + -13.097190856933594 + ], + [ + "132", + -13.097309112548828 + ], + [ + "▁164", + -13.097312927246094 + ], + [ + "▁Og", + -13.097442626953125 + ], + [ + "▁Nurses", + -13.09745979309082 + ], + [ + "▁Alongside", + -13.097472190856934 + ], + [ + "▁Alta", + -13.097514152526855 + ], + [ + "▁не", + -13.097525596618652 + ], + [ + "nova", + -13.097551345825195 + ], + [ + "rap", + -13.09763240814209 + ], + [ + "▁violently", + -13.097660064697266 + ], + [ + "SEC", + -13.097681045532227 + ], + [ + "▁blindness", + -13.097686767578125 + ], + [ + "▁Nguyen", + -13.097759246826172 + ], + [ + "▁Siemens", + -13.097789764404297 + ], + [ + "▁ankles", + -13.097789764404297 + ], + [ + "▁Indie", + -13.097808837890625 + ], + [ + "▁Existing", + -13.09781265258789 + ], + [ + "▁cloak", + -13.097870826721191 + ], + [ + "runner", + -13.097908973693848 + ], + [ + "▁Cheshire", + -13.09793758392334 + ], + [ + "▁fuck", + -13.097938537597656 + ], + [ + "▁lunchtime", + -13.097940444946289 + ], + [ + "Fit", + -13.097973823547363 + ], + [ + "mani", + -13.097996711730957 + ], + [ + "▁Larson", + -13.098020553588867 + ], + [ + "▁prerequisite", + -13.098045349121094 + ], + [ + "▁asparagus", + -13.098092079162598 + ], + [ + "▁porous", + -13.098182678222656 + ], + [ + "▁AW", + -13.098196983337402 + ], + [ + "▁grille", + -13.098280906677246 + ], + [ + "▁Knicks", + -13.098406791687012 + ], + [ + "877", + -13.09843921661377 + ], + [ + "▁repent", + -13.098488807678223 + ], + [ + "▁spirited", + -13.098488807678223 + ], + [ + "▁collisions", + -13.098581314086914 + ], + [ + "conf", + -13.098698616027832 + ], + [ + "▁scattering", + -13.098790168762207 + ], + [ + "▁relapse", + -13.09888744354248 + ], + [ + "▁logically", + -13.098896026611328 + ], + [ + "▁abrupt", + -13.098896980285645 + ], + [ + "▁drywall", + -13.098995208740234 + ], + [ + "▁cheesecake", + -13.09902286529541 + ], + [ + "▁turmeric", + -13.099056243896484 + ], + [ + "▁Adapter", + -13.099149703979492 + ], + [ + "▁approving", + -13.099173545837402 + ], + [ + "sil", + -13.099177360534668 + ], + [ + "▁thematic", + -13.099198341369629 + ], + [ + "▁inc", + -13.099227905273438 + ], + [ + "▁accusation", + -13.099353790283203 + ], + [ + "▁horribly", + -13.099486351013184 + ], + [ + "▁Ryder", + -13.099489212036133 + ], + [ + "▁bargains", + -13.09953784942627 + ], + [ + "▁snug", + -13.099625587463379 + ], + [ + "▁Blizzard", + -13.099629402160645 + ], + [ + "impact", + -13.099857330322266 + ], + [ + "▁abstraction", + -13.099884986877441 + ], + [ + "▁Md", + -13.09994888305664 + ], + [ + "▁revered", + -13.099996566772461 + ], + [ + "▁ang", + -13.09999942779541 + ], + [ + "▁blossoms", + -13.100040435791016 + ], + [ + "Color", + -13.100111961364746 + ], + [ + "▁Comparative", + -13.100111961364746 + ], + [ + "exclusive", + -13.100153923034668 + ], + [ + "bd", + -13.100157737731934 + ], + [ + "▁Inquiry", + -13.100210189819336 + ], + [ + "▁forgiving", + -13.10021686553955 + ], + [ + "▁Suppose", + -13.100223541259766 + ], + [ + "▁Sheep", + -13.100350379943848 + ], + [ + "▁obtainable", + -13.100404739379883 + ], + [ + "▁multiplied", + -13.100543975830078 + ], + [ + "▁contemplated", + -13.100545883178711 + ], + [ + "▁petitions", + -13.100563049316406 + ], + [ + "▁necklaces", + -13.100565910339355 + ], + [ + "sector", + -13.100578308105469 + ], + [ + "▁fest", + -13.100594520568848 + ], + [ + "▁Smartphone", + -13.1006498336792 + ], + [ + "▁FE", + -13.100722312927246 + ], + [ + "▁sprinkled", + -13.100774765014648 + ], + [ + "▁registrations", + -13.100870132446289 + ], + [ + "mother", + -13.101011276245117 + ], + [ + "▁Traveling", + -13.10102653503418 + ], + [ + "Matt", + -13.101069450378418 + ], + [ + "mers", + -13.101096153259277 + ], + [ + "▁Pace", + -13.10115909576416 + ], + [ + "ة", + -13.101188659667969 + ], + [ + "▁dec", + -13.101334571838379 + ], + [ + "▁Simulation", + -13.101405143737793 + ], + [ + "▁Mens", + -13.101426124572754 + ], + [ + "▁prefix", + -13.101475715637207 + ], + [ + "▁glacier", + -13.101508140563965 + ], + [ + "▁Lennon", + -13.10158920288086 + ], + [ + "▁Bubble", + -13.101654052734375 + ], + [ + "▁Veronica", + -13.101659774780273 + ], + [ + "▁forestry", + -13.101783752441406 + ], + [ + "▁couches", + -13.101841926574707 + ], + [ + "▁unravel", + -13.101884841918945 + ], + [ + "▁symbolism", + -13.10191822052002 + ], + [ + "nov", + -13.101982116699219 + ], + [ + "▁bravery", + -13.102089881896973 + ], + [ + "▁deem", + -13.102193832397461 + ], + [ + "▁Worst", + -13.102197647094727 + ], + [ + "▁acronym", + -13.102217674255371 + ], + [ + "▁greasy", + -13.102222442626953 + ], + [ + "▁Abbas", + -13.102238655090332 + ], + [ + "▁Birch", + -13.102322578430176 + ], + [ + "▁provoke", + -13.102438926696777 + ], + [ + "▁stabbing", + -13.102462768554688 + ], + [ + "▁preserves", + -13.102521896362305 + ], + [ + "▁ticking", + -13.102560043334961 + ], + [ + "1016", + -13.102596282958984 + ], + [ + "▁washes", + -13.102641105651855 + ], + [ + "▁harmonious", + -13.102660179138184 + ], + [ + "fried", + -13.102678298950195 + ], + [ + "▁Stacey", + -13.102788925170898 + ], + [ + "▁waived", + -13.102792739868164 + ], + [ + "Auto", + -13.10280704498291 + ], + [ + "▁Attribution", + -13.102816581726074 + ], + [ + "▁Stocks", + -13.102882385253906 + ], + [ + "▁PU", + -13.10291862487793 + ], + [ + "▁Coventry", + -13.103039741516113 + ], + [ + "▁sling", + -13.10307788848877 + ], + [ + "▁paradox", + -13.103135108947754 + ], + [ + "▁Lester", + -13.103263854980469 + ], + [ + "▁widgets", + -13.103312492370605 + ], + [ + "marketing", + -13.103419303894043 + ], + [ + "▁sacked", + -13.103548049926758 + ], + [ + "▁Dwight", + -13.103572845458984 + ], + [ + "▁Diamonds", + -13.103609085083008 + ], + [ + "WB", + -13.10362720489502 + ], + [ + "▁OECD", + -13.103764533996582 + ], + [ + "▁sheltered", + -13.103772163391113 + ], + [ + "▁Sk", + -13.103803634643555 + ], + [ + "dex", + -13.10384464263916 + ], + [ + "▁Dedicated", + -13.103893280029297 + ], + [ + "▁camel", + -13.104130744934082 + ], + [ + "pipe", + -13.104205131530762 + ], + [ + "Style", + -13.10425853729248 + ], + [ + "▁Vine", + -13.104418754577637 + ], + [ + "▁Eggs", + -13.104427337646484 + ], + [ + "з", + -13.104471206665039 + ], + [ + "▁Means", + -13.104583740234375 + ], + [ + "ANA", + -13.104769706726074 + ], + [ + "▁£8", + -13.105002403259277 + ], + [ + "▁NET", + -13.105091094970703 + ], + [ + "▁thanking", + -13.105184555053711 + ], + [ + "▁paranoid", + -13.105259895324707 + ], + [ + "▁JE", + -13.105290412902832 + ], + [ + "Sorry", + -13.105314254760742 + ], + [ + "▁Somebody", + -13.105377197265625 + ], + [ + "▁newbie", + -13.105483055114746 + ], + [ + "▁Buildings", + -13.1056547164917 + ], + [ + "▁psychedelic", + -13.105666160583496 + ], + [ + "▁emerald", + -13.105745315551758 + ], + [ + "▁forwards", + -13.105751991271973 + ], + [ + "▁Laguna", + -13.10585880279541 + ], + [ + "▁quotations", + -13.10586166381836 + ], + [ + "▁staffed", + -13.105867385864258 + ], + [ + "issa", + -13.106034278869629 + ], + [ + "▁Fraud", + -13.106039047241211 + ], + [ + "▁partake", + -13.106064796447754 + ], + [ + "▁Paramount", + -13.10606861114502 + ], + [ + "▁Hatch", + -13.106128692626953 + ], + [ + "▁avalanche", + -13.106230735778809 + ], + [ + "▁References", + -13.106279373168945 + ], + [ + "▁Lev", + -13.1063232421875 + ], + [ + "▁accelerator", + -13.106386184692383 + ], + [ + "▁withholding", + -13.10641098022461 + ], + [ + "▁Ravi", + -13.106426239013672 + ], + [ + "▁enormously", + -13.106851577758789 + ], + [ + "▁CVS", + -13.107049942016602 + ], + [ + "ivo", + -13.107112884521484 + ], + [ + "reg", + -13.107125282287598 + ], + [ + "▁constipation", + -13.107154846191406 + ], + [ + "▁163", + -13.10720443725586 + ], + [ + "§", + -13.107232093811035 + ], + [ + "▁Karachi", + -13.107266426086426 + ], + [ + "▁cabinetry", + -13.107295989990234 + ], + [ + "▁prosecute", + -13.107301712036133 + ], + [ + "▁beacon", + -13.10733699798584 + ], + [ + "Core", + -13.107389450073242 + ], + [ + "▁trainees", + -13.107481002807617 + ], + [ + "▁cuffs", + -13.107490539550781 + ], + [ + "▁CFR", + -13.10750961303711 + ], + [ + "▁claws", + -13.107540130615234 + ], + [ + "▁treasury", + -13.107699394226074 + ], + [ + "866", + -13.10785961151123 + ], + [ + "▁Guidance", + -13.107884407043457 + ], + [ + "▁Tesco", + -13.107911109924316 + ], + [ + "enza", + -13.107949256896973 + ], + [ + "▁Mk", + -13.107978820800781 + ], + [ + "▁cradle", + -13.108004570007324 + ], + [ + "▁gratis", + -13.108055114746094 + ], + [ + "▁Dish", + -13.108098983764648 + ], + [ + "laden", + -13.108120918273926 + ], + [ + "▁Locksmith", + -13.108182907104492 + ], + [ + "▁exert", + -13.108190536499023 + ], + [ + "uel", + -13.108323097229004 + ], + [ + "▁166", + -13.108348846435547 + ], + [ + "▁deli", + -13.108366966247559 + ], + [ + "▁peeling", + -13.108452796936035 + ], + [ + "▁bur", + -13.108476638793945 + ], + [ + "▁emitted", + -13.108527183532715 + ], + [ + "▁Burma", + -13.108631134033203 + ], + [ + "▁bullied", + -13.108654975891113 + ], + [ + "▁utilised", + -13.108701705932617 + ], + [ + "▁Greenwood", + -13.108725547790527 + ], + [ + "▁Virus", + -13.108739852905273 + ], + [ + "ICE", + -13.108823776245117 + ], + [ + "▁Judges", + -13.108854293823242 + ], + [ + "▁reassure", + -13.10902214050293 + ], + [ + "cp", + -13.109036445617676 + ], + [ + "▁RCMP", + -13.109051704406738 + ], + [ + "▁Kosovo", + -13.109063148498535 + ], + [ + "▁intimidated", + -13.109147071838379 + ], + [ + "omer", + -13.109160423278809 + ], + [ + "▁blond", + -13.109163284301758 + ], + [ + "▁Jubilee", + -13.10919189453125 + ], + [ + "hack", + -13.1091947555542 + ], + [ + "▁Almighty", + -13.109230041503906 + ], + [ + "▁SHOW", + -13.10927677154541 + ], + [ + "LED", + -13.109280586242676 + ], + [ + "total", + -13.109285354614258 + ], + [ + "▁Walls", + -13.109368324279785 + ], + [ + "▁Couple", + -13.109471321105957 + ], + [ + "▁Acrylic", + -13.10951042175293 + ], + [ + "▁ceremonial", + -13.109518051147461 + ], + [ + "▁Garmin", + -13.109524726867676 + ], + [ + "Print", + -13.10959529876709 + ], + [ + "▁Mechanics", + -13.109607696533203 + ], + [ + "liquid", + -13.109619140625 + ], + [ + "▁Shoulder", + -13.109655380249023 + ], + [ + "▁btw", + -13.109760284423828 + ], + [ + "wine", + -13.109766960144043 + ], + [ + "▁imaginable", + -13.109794616699219 + ], + [ + "▁KR", + -13.109820365905762 + ], + [ + "▁submerged", + -13.109840393066406 + ], + [ + "▁Lighthouse", + -13.109858512878418 + ], + [ + "▁Appalachian", + -13.109914779663086 + ], + [ + "▁compiling", + -13.11008358001709 + ], + [ + "ín", + -13.11009693145752 + ], + [ + "▁Covered", + -13.110098838806152 + ], + [ + "edit", + -13.110360145568848 + ], + [ + "watt", + -13.110371589660645 + ], + [ + "▁KU", + -13.110477447509766 + ], + [ + "Jesus", + -13.110486030578613 + ], + [ + "itter", + -13.110494613647461 + ], + [ + "▁repo", + -13.110591888427734 + ], + [ + "▁canals", + -13.110658645629883 + ], + [ + "▁tease", + -13.110676765441895 + ], + [ + "▁Equality", + -13.110722541809082 + ], + [ + "▁Mist", + -13.110754013061523 + ], + [ + "▁Cub", + -13.110808372497559 + ], + [ + "ulo", + -13.110825538635254 + ], + [ + "▁Bolivia", + -13.110834121704102 + ], + [ + "▁wrongly", + -13.110859870910645 + ], + [ + "agent", + -13.110860824584961 + ], + [ + "▁protested", + -13.110872268676758 + ], + [ + "▁instituted", + -13.110894203186035 + ], + [ + "▁153", + -13.110977172851562 + ], + [ + "▁159", + -13.111013412475586 + ], + [ + "▁subtly", + -13.111063003540039 + ], + [ + "▁Enable", + -13.111077308654785 + ], + [ + "▁Lahore", + -13.111149787902832 + ], + [ + "▁thermometer", + -13.111288070678711 + ], + [ + "▁supplementation", + -13.111309051513672 + ], + [ + "▁Mata", + -13.111532211303711 + ], + [ + "▁freestyle", + -13.111550331115723 + ], + [ + "jin", + -13.111571311950684 + ], + [ + "▁parcels", + -13.111618041992188 + ], + [ + "aca", + -13.111664772033691 + ], + [ + "▁Sleeping", + -13.111798286437988 + ], + [ + "ked", + -13.111804008483887 + ], + [ + "▁shaded", + -13.111927032470703 + ], + [ + "▁och", + -13.111934661865234 + ], + [ + "▁bibliography", + -13.111943244934082 + ], + [ + "▁improperly", + -13.112128257751465 + ], + [ + "▁Soldiers", + -13.112129211425781 + ], + [ + "▁splits", + -13.112133026123047 + ], + [ + "▁Handmade", + -13.11221981048584 + ], + [ + "333", + -13.112227439880371 + ], + [ + "Design", + -13.112293243408203 + ], + [ + "multi", + -13.11234188079834 + ], + [ + "▁Candle", + -13.112411499023438 + ], + [ + "▁Loading", + -13.112467765808105 + ], + [ + "▁repentance", + -13.112476348876953 + ], + [ + "function", + -13.11254596710205 + ], + [ + "▁Jas", + -13.112549781799316 + ], + [ + "▁alias", + -13.112556457519531 + ], + [ + "▁BIOS", + -13.11256217956543 + ], + [ + "ART", + -13.112585067749023 + ], + [ + "▁Randolph", + -13.11258602142334 + ], + [ + "▁Graph", + -13.112654685974121 + ], + [ + "▁exponential", + -13.11276626586914 + ], + [ + "spec", + -13.112792015075684 + ], + [ + "▁Kr", + -13.112807273864746 + ], + [ + "▁Speakers", + -13.112889289855957 + ], + [ + "▁invoked", + -13.11290454864502 + ], + [ + "ū", + -13.11292552947998 + ], + [ + "▁stumbling", + -13.112957000732422 + ], + [ + "▁SMEs", + -13.113018035888672 + ], + [ + "▁waive", + -13.113046646118164 + ], + [ + "▁Eaton", + -13.113154411315918 + ], + [ + "▁initiating", + -13.11325740814209 + ], + [ + "▁binds", + -13.113395690917969 + ], + [ + "▁rev", + -13.113414764404297 + ], + [ + "ю", + -13.113430976867676 + ], + [ + "gene", + -13.113433837890625 + ], + [ + "IG", + -13.113447189331055 + ], + [ + "▁Staying", + -13.113452911376953 + ], + [ + "together", + -13.113473892211914 + ], + [ + "cold", + -13.113558769226074 + ], + [ + "▁receptions", + -13.113569259643555 + ], + [ + "▁Nicaragua", + -13.113582611083984 + ], + [ + "CAD", + -13.11368179321289 + ], + [ + "▁Strand", + -13.1138334274292 + ], + [ + "301", + -13.113835334777832 + ], + [ + "▁Geek", + -13.113950729370117 + ], + [ + "▁Hyatt", + -13.113969802856445 + ], + [ + "▁sunflower", + -13.114020347595215 + ], + [ + "▁GRE", + -13.114059448242188 + ], + [ + "eating", + -13.114161491394043 + ], + [ + "education", + -13.114217758178711 + ], + [ + "▁Imam", + -13.114232063293457 + ], + [ + "▁ru", + -13.114240646362305 + ], + [ + "▁Cartoon", + -13.11425495147705 + ], + [ + "▁baseman", + -13.114278793334961 + ], + [ + "sample", + -13.114381790161133 + ], + [ + "▁Pork", + -13.114562034606934 + ], + [ + "uer", + -13.1146879196167 + ], + [ + "▁menstrual", + -13.114705085754395 + ], + [ + "▁generalized", + -13.114785194396973 + ], + [ + "▁Henri", + -13.114850997924805 + ], + [ + "▁Came", + -13.114885330200195 + ], + [ + "▁Stroke", + -13.115056037902832 + ], + [ + "rather", + -13.115067481994629 + ], + [ + "▁hurricanes", + -13.115081787109375 + ], + [ + "▁memorabilia", + -13.115100860595703 + ], + [ + "▁toned", + -13.115134239196777 + ], + [ + "▁Preserve", + -13.11516284942627 + ], + [ + "▁eased", + -13.115192413330078 + ], + [ + "▁pg", + -13.115215301513672 + ], + [ + "▁Clarence", + -13.11524772644043 + ], + [ + "▁salts", + -13.115255355834961 + ], + [ + "▁boxer", + -13.11525821685791 + ], + [ + "▁synagogue", + -13.115264892578125 + ], + [ + "▁Bakery", + -13.1152925491333 + ], + [ + "density", + -13.115325927734375 + ], + [ + "target", + -13.115486145019531 + ], + [ + "igen", + -13.115521430969238 + ], + [ + "▁Hanging", + -13.115525245666504 + ], + [ + "kara", + -13.11559009552002 + ], + [ + "▁Phys", + -13.115598678588867 + ], + [ + "sphere", + -13.115713119506836 + ], + [ + "▁Joomla", + -13.115812301635742 + ], + [ + "▁Lionel", + -13.11591625213623 + ], + [ + "Server", + -13.115917205810547 + ], + [ + "▁Dove", + -13.116025924682617 + ], + [ + "▁Madness", + -13.116052627563477 + ], + [ + "▁proactively", + -13.1161527633667 + ], + [ + "▁Guam", + -13.116266250610352 + ], + [ + "▁amused", + -13.116362571716309 + ], + [ + "▁Ramirez", + -13.116368293762207 + ], + [ + "▁fisherman", + -13.116496086120605 + ], + [ + "▁Vel", + -13.116576194763184 + ], + [ + "▁dunes", + -13.116612434387207 + ], + [ + "▁MacDonald", + -13.116703987121582 + ], + [ + "▁Phillies", + -13.11672306060791 + ], + [ + "▁propagation", + -13.116820335388184 + ], + [ + "▁ji", + -13.116904258728027 + ], + [ + "▁Taka", + -13.116937637329102 + ], + [ + "▁Pai", + -13.116945266723633 + ], + [ + "▁manifold", + -13.116974830627441 + ], + [ + "▁Kala", + -13.117037773132324 + ], + [ + "▁mute", + -13.117058753967285 + ], + [ + "▁scarves", + -13.117072105407715 + ], + [ + "▁liar", + -13.117096900939941 + ], + [ + "▁Arcade", + -13.117216110229492 + ], + [ + "▁Gareth", + -13.117316246032715 + ], + [ + "▁docs", + -13.117326736450195 + ], + [ + "▁assaults", + -13.117399215698242 + ], + [ + "itch", + -13.117424011230469 + ], + [ + "idad", + -13.117444038391113 + ], + [ + "uring", + -13.11745548248291 + ], + [ + "▁Kobe", + -13.117487907409668 + ], + [ + "▁toppings", + -13.11758804321289 + ], + [ + "▁inverse", + -13.117646217346191 + ], + [ + "▁Schultz", + -13.117647171020508 + ], + [ + "▁Osaka", + -13.117833137512207 + ], + [ + "▁snapping", + -13.117891311645508 + ], + [ + "▁orderly", + -13.118010520935059 + ], + [ + "▁LIMITED", + -13.118090629577637 + ], + [ + "LV", + -13.118186950683594 + ], + [ + "▁contrasts", + -13.118274688720703 + ], + [ + "played", + -13.118293762207031 + ], + [ + "Project", + -13.118399620056152 + ], + [ + "¿", + -13.118416786193848 + ], + [ + "▁Docker", + -13.118430137634277 + ], + [ + "▁mas", + -13.118460655212402 + ], + [ + "▁cor", + -13.118486404418945 + ], + [ + "▁Genetics", + -13.118499755859375 + ], + [ + "▁LONG", + -13.118557929992676 + ], + [ + "▁Realtors", + -13.11865234375 + ], + [ + "▁unavoidable", + -13.118669509887695 + ], + [ + "▁mythical", + -13.118680953979492 + ], + [ + "▁Lands", + -13.118683815002441 + ], + [ + "▁Cumberland", + -13.11872386932373 + ], + [ + "▁Sche", + -13.118797302246094 + ], + [ + "cylinder", + -13.118881225585938 + ], + [ + "▁exhilarating", + -13.118882179260254 + ], + [ + "knit", + -13.118968963623047 + ], + [ + "graphic", + -13.11898422241211 + ], + [ + "near", + -13.118996620178223 + ], + [ + "▁Venezuelan", + -13.119078636169434 + ], + [ + "▁Designers", + -13.119135856628418 + ], + [ + "▁Baylor", + -13.11919116973877 + ], + [ + "▁Rav", + -13.119306564331055 + ], + [ + "▁refurbishment", + -13.119312286376953 + ], + [ + "▁unintended", + -13.119338035583496 + ], + [ + "▁stacking", + -13.119338989257812 + ], + [ + "▁luncheon", + -13.119403839111328 + ], + [ + "KE", + -13.119521141052246 + ], + [ + "Sea", + -13.119634628295898 + ], + [ + "computer", + -13.119668006896973 + ], + [ + "▁selectively", + -13.11968994140625 + ], + [ + "▁Liga", + -13.119929313659668 + ], + [ + "▁lids", + -13.11996078491211 + ], + [ + "▁Grip", + -13.119982719421387 + ], + [ + "▁Whoever", + -13.12012004852295 + ], + [ + "▁Tattoo", + -13.120173454284668 + ], + [ + "stuff", + -13.120227813720703 + ], + [ + "Pack", + -13.120277404785156 + ], + [ + "▁fleeting", + -13.120284080505371 + ], + [ + "▁implying", + -13.120336532592773 + ], + [ + "▁beware", + -13.12033748626709 + ], + [ + "▁Fisheries", + -13.120375633239746 + ], + [ + "▁oxidative", + -13.120386123657227 + ], + [ + "supported", + -13.120406150817871 + ], + [ + "▁Ping", + -13.120536804199219 + ], + [ + "ein", + -13.120538711547852 + ], + [ + "440", + -13.120543479919434 + ], + [ + "▁notoriously", + -13.120593070983887 + ], + [ + "▁Ernst", + -13.12065315246582 + ], + [ + "▁2050", + -13.12065601348877 + ], + [ + "cd", + -13.120680809020996 + ], + [ + "▁malignant", + -13.120739936828613 + ], + [ + "▁cyclist", + -13.12076187133789 + ], + [ + "▁affirm", + -13.12088680267334 + ], + [ + "▁Fate", + -13.120965003967285 + ], + [ + "▁Hare", + -13.121051788330078 + ], + [ + "gor", + -13.121062278747559 + ], + [ + "▁populist", + -13.121101379394531 + ], + [ + "▁rake", + -13.121101379394531 + ], + [ + "sma", + -13.121148109436035 + ], + [ + "▁SEA", + -13.1211519241333 + ], + [ + "▁pedals", + -13.121176719665527 + ], + [ + "hip", + -13.121222496032715 + ], + [ + "▁debilitating", + -13.12122917175293 + ], + [ + "▁elective", + -13.121539115905762 + ], + [ + "▁alpine", + -13.12166976928711 + ], + [ + "▁TLC", + -13.121790885925293 + ], + [ + "▁Perl", + -13.121811866760254 + ], + [ + "▁Seats", + -13.121829986572266 + ], + [ + "▁transplantation", + -13.121832847595215 + ], + [ + "138", + -13.121953964233398 + ], + [ + "PAC", + -13.12197494506836 + ], + [ + "drug", + -13.122096061706543 + ], + [ + "▁understated", + -13.122117042541504 + ], + [ + "С", + -13.122135162353516 + ], + [ + "▁southeastern", + -13.122139930725098 + ], + [ + "▁Oven", + -13.122142791748047 + ], + [ + "▁Perspectives", + -13.122161865234375 + ], + [ + "Brown", + -13.12216854095459 + ], + [ + "▁Fulton", + -13.122185707092285 + ], + [ + "▁shading", + -13.122188568115234 + ], + [ + "▁Bonds", + -13.12222957611084 + ], + [ + "410", + -13.122315406799316 + ], + [ + "▁elasticity", + -13.122333526611328 + ], + [ + "▁extremists", + -13.122337341308594 + ], + [ + "▁1902", + -13.122461318969727 + ], + [ + "▁uprising", + -13.12248420715332 + ], + [ + "▁BW", + -13.122556686401367 + ], + [ + "▁Petro", + -13.122644424438477 + ], + [ + "▁Relay", + -13.122803688049316 + ], + [ + "▁Darling", + -13.122815132141113 + ], + [ + "▁Jonah", + -13.122821807861328 + ], + [ + "▁wrench", + -13.122903823852539 + ], + [ + "item", + -13.122993469238281 + ], + [ + "▁ot", + -13.123037338256836 + ], + [ + "▁DV", + -13.123076438903809 + ], + [ + "▁manifestations", + -13.12311840057373 + ], + [ + "iers", + -13.123230934143066 + ], + [ + "š", + -13.12324047088623 + ], + [ + "▁crossword", + -13.123296737670898 + ], + [ + "▁Batch", + -13.123319625854492 + ], + [ + "▁Sunderland", + -13.123327255249023 + ], + [ + "▁2023", + -13.123356819152832 + ], + [ + "▁Seeds", + -13.123429298400879 + ], + [ + "union", + -13.123475074768066 + ], + [ + "▁Harriet", + -13.123477935791016 + ], + [ + "▁autistic", + -13.123527526855469 + ], + [ + "▁dys", + -13.1235990524292 + ], + [ + "▁SPECIAL", + -13.123769760131836 + ], + [ + "▁Connections", + -13.123806953430176 + ], + [ + "▁casts", + -13.123823165893555 + ], + [ + "▁solids", + -13.123868942260742 + ], + [ + "▁CAPTCHA", + -13.123942375183105 + ], + [ + "▁distilled", + -13.12401008605957 + ], + [ + "▁yielding", + -13.12401294708252 + ], + [ + "xxx", + -13.124085426330566 + ], + [ + "Rose", + -13.12411117553711 + ], + [ + "Special", + -13.124128341674805 + ], + [ + "dic", + -13.124191284179688 + ], + [ + "▁Personnel", + -13.12430191040039 + ], + [ + "young", + -13.124310493469238 + ], + [ + "▁oppressed", + -13.124314308166504 + ], + [ + "▁receptive", + -13.124350547790527 + ], + [ + "720", + -13.12436580657959 + ], + [ + "lim", + -13.124417304992676 + ], + [ + "▁Minority", + -13.124456405639648 + ], + [ + "▁traveller", + -13.124490737915039 + ], + [ + "▁cruiser", + -13.124608993530273 + ], + [ + "▁digs", + -13.124639511108398 + ], + [ + "▁deity", + -13.124655723571777 + ], + [ + "ACT", + -13.124667167663574 + ], + [ + "▁Dorset", + -13.12470817565918 + ], + [ + "▁sulfate", + -13.124857902526855 + ], + [ + "ying", + -13.124897956848145 + ], + [ + "▁unrestricted", + -13.124983787536621 + ], + [ + "crafted", + -13.125001907348633 + ], + [ + "▁manifesto", + -13.125055313110352 + ], + [ + "▁GTX", + -13.125089645385742 + ], + [ + "User", + -13.125190734863281 + ], + [ + "▁underside", + -13.125247955322266 + ], + [ + "▁listens", + -13.125311851501465 + ], + [ + "▁Greenland", + -13.125322341918945 + ], + [ + "▁Beckham", + -13.125349044799805 + ], + [ + "▁Guangzhou", + -13.125463485717773 + ], + [ + "▁hotspot", + -13.12547779083252 + ], + [ + "▁pastries", + -13.125506401062012 + ], + [ + "▁fraternity", + -13.125534057617188 + ], + [ + "▁thumbnail", + -13.125589370727539 + ], + [ + "▁calves", + -13.125700950622559 + ], + [ + "Hand", + -13.125706672668457 + ], + [ + "atic", + -13.12574577331543 + ], + [ + "▁OPEN", + -13.125823020935059 + ], + [ + "▁CGI", + -13.125914573669434 + ], + [ + "processing", + -13.125988960266113 + ], + [ + "▁Kh", + -13.126014709472656 + ], + [ + "▁Paleo", + -13.126218795776367 + ], + [ + "▁admirable", + -13.126226425170898 + ], + [ + "▁Moines", + -13.126277923583984 + ], + [ + "▁diff", + -13.126354217529297 + ], + [ + "Find", + -13.12643051147461 + ], + [ + "▁Moments", + -13.126490592956543 + ], + [ + "▁Stanton", + -13.126564979553223 + ], + [ + "▁Alley", + -13.126591682434082 + ], + [ + "ines", + -13.126668930053711 + ], + [ + "▁decimal", + -13.126836776733398 + ], + [ + "▁astronauts", + -13.126850128173828 + ], + [ + "mur", + -13.126864433288574 + ], + [ + "Science", + -13.126923561096191 + ], + [ + "▁gymnastics", + -13.126943588256836 + ], + [ + "▁ornate", + -13.126964569091797 + ], + [ + "▁sloppy", + -13.1270751953125 + ], + [ + "▁escorted", + -13.127236366271973 + ], + [ + "▁Pediatric", + -13.127263069152832 + ], + [ + "▁Sheridan", + -13.127340316772461 + ], + [ + "▁ruby", + -13.12739086151123 + ], + [ + "▁Yoshi", + -13.127403259277344 + ], + [ + "▁Wax", + -13.127413749694824 + ], + [ + "▁Returning", + -13.127581596374512 + ], + [ + "friend", + -13.12759017944336 + ], + [ + "▁heirs", + -13.127664566040039 + ], + [ + "▁reinforcing", + -13.127664566040039 + ], + [ + "▁Compass", + -13.127665519714355 + ], + [ + "ع", + -13.127671241760254 + ], + [ + "▁Antarctic", + -13.127685546875 + ], + [ + "garde", + -13.127702713012695 + ], + [ + "▁booze", + -13.127754211425781 + ], + [ + "▁Wonderland", + -13.127768516540527 + ], + [ + "▁adaptations", + -13.127778053283691 + ], + [ + "▁supremacy", + -13.127779960632324 + ], + [ + "▁Tutorial", + -13.127806663513184 + ], + [ + "▁nighttime", + -13.127817153930664 + ], + [ + "▁frustrations", + -13.127863883972168 + ], + [ + "▁orbital", + -13.127986907958984 + ], + [ + "1988", + -13.128124237060547 + ], + [ + "▁Zinc", + -13.128153800964355 + ], + [ + "▁blatant", + -13.128201484680176 + ], + [ + "Ke", + -13.128203392028809 + ], + [ + "▁Fal", + -13.128210067749023 + ], + [ + "▁dal", + -13.128251075744629 + ], + [ + "▁programmable", + -13.128374099731445 + ], + [ + "▁Olson", + -13.128453254699707 + ], + [ + "▁brutally", + -13.12852668762207 + ], + [ + "▁extracting", + -13.12853717803955 + ], + [ + "208", + -13.12857723236084 + ], + [ + "OG", + -13.128713607788086 + ], + [ + "▁Sig", + -13.128808975219727 + ], + [ + "▁tha", + -13.128901481628418 + ], + [ + "▁Alloy", + -13.129009246826172 + ], + [ + "ogenic", + -13.129050254821777 + ], + [ + "▁Reverend", + -13.129261016845703 + ], + [ + "yle", + -13.129387855529785 + ], + [ + "▁aiding", + -13.129404067993164 + ], + [ + "▁Instruction", + -13.129419326782227 + ], + [ + "▁crumbs", + -13.129446029663086 + ], + [ + "oba", + -13.129459381103516 + ], + [ + "▁individuality", + -13.129605293273926 + ], + [ + "▁Slice", + -13.129638671875 + ], + [ + "▁handwriting", + -13.129734992980957 + ], + [ + "▁Cleaner", + -13.129749298095703 + ], + [ + "hari", + -13.129831314086914 + ], + [ + "▁believable", + -13.12983512878418 + ], + [ + "▁ACM", + -13.12984561920166 + ], + [ + "▁replicated", + -13.129862785339355 + ], + [ + "▁Applying", + -13.129870414733887 + ], + [ + "▁interception", + -13.129875183105469 + ], + [ + "▁Aristotle", + -13.129878044128418 + ], + [ + "▁innovators", + -13.129894256591797 + ], + [ + "▁Brun", + -13.13018798828125 + ], + [ + "▁authoritarian", + -13.130208015441895 + ], + [ + "camera", + -13.13021183013916 + ], + [ + "▁regiment", + -13.130239486694336 + ], + [ + "▁glitch", + -13.130316734313965 + ], + [ + "fight", + -13.130342483520508 + ], + [ + "▁Gregg", + -13.130489349365234 + ], + [ + "dose", + -13.130501747131348 + ], + [ + "Head", + -13.130531311035156 + ], + [ + "▁anthropology", + -13.13060474395752 + ], + [ + "▁bookcase", + -13.130674362182617 + ], + [ + "▁backers", + -13.130717277526855 + ], + [ + "▁fluorescence", + -13.130913734436035 + ], + [ + "▁depended", + -13.130963325500488 + ], + [ + "▁upbringing", + -13.131065368652344 + ], + [ + "▁eggplant", + -13.131068229675293 + ], + [ + "▁mistakenly", + -13.131080627441406 + ], + [ + "▁picky", + -13.131082534790039 + ], + [ + "▁Elsewhere", + -13.131119728088379 + ], + [ + "▁Baxter", + -13.131270408630371 + ], + [ + "zar", + -13.1312837600708 + ], + [ + "▁biochemical", + -13.13137435913086 + ], + [ + "▁Roast", + -13.131494522094727 + ], + [ + "▁APA", + -13.131522178649902 + ], + [ + "▁clogged", + -13.131596565246582 + ], + [ + "▁hierarchical", + -13.131608963012695 + ], + [ + "▁existential", + -13.131736755371094 + ], + [ + "▁derives", + -13.131767272949219 + ], + [ + "▁curing", + -13.131800651550293 + ], + [ + "▁Oasis", + -13.131817817687988 + ], + [ + "cn", + -13.131867408752441 + ], + [ + "▁Mao", + -13.131915092468262 + ], + [ + "▁Dj", + -13.131941795349121 + ], + [ + "▁assures", + -13.132013320922852 + ], + [ + "▁purge", + -13.132036209106445 + ], + [ + "▁inflicted", + -13.132085800170898 + ], + [ + "▁participates", + -13.13222599029541 + ], + [ + "▁Elias", + -13.13230037689209 + ], + [ + "▁Kart", + -13.132383346557617 + ], + [ + "▁hoc", + -13.132505416870117 + ], + [ + "▁Availability", + -13.132563591003418 + ], + [ + "▁crowdfunding", + -13.132600784301758 + ], + [ + "290", + -13.132695198059082 + ], + [ + "▁ADD", + -13.132695198059082 + ], + [ + "grad", + -13.132810592651367 + ], + [ + "▁perched", + -13.132990837097168 + ], + [ + "▁flowed", + -13.133050918579102 + ], + [ + "▁rosemary", + -13.13306999206543 + ], + [ + "▁hallmark", + -13.133071899414062 + ], + [ + "▁Anime", + -13.133081436157227 + ], + [ + "▁investigates", + -13.133150100708008 + ], + [ + "▁blazing", + -13.133183479309082 + ], + [ + "▁fragmented", + -13.133246421813965 + ], + [ + "▁Nut", + -13.133260726928711 + ], + [ + "▁fermented", + -13.133265495300293 + ], + [ + "▁moderator", + -13.133315086364746 + ], + [ + "UE", + -13.133377075195312 + ], + [ + "▁Facial", + -13.13344669342041 + ], + [ + "▁annum", + -13.133536338806152 + ], + [ + "▁hive", + -13.133572578430176 + ], + [ + "▁segmented", + -13.133573532104492 + ], + [ + "▁etiquette", + -13.133644104003906 + ], + [ + "▁vor", + -13.133700370788574 + ], + [ + "▁Exposure", + -13.133777618408203 + ], + [ + "RES", + -13.133880615234375 + ], + [ + "Tri", + -13.133899688720703 + ], + [ + "▁scrape", + -13.13400936126709 + ], + [ + "▁Rough", + -13.134037017822266 + ], + [ + "▁Quickly", + -13.134055137634277 + ], + [ + "▁Astros", + -13.134065628051758 + ], + [ + "▁bumped", + -13.134110450744629 + ], + [ + "▁Digi", + -13.134124755859375 + ], + [ + "▁val", + -13.134147644042969 + ], + [ + "▁Knee", + -13.13415241241455 + ], + [ + "▁restrained", + -13.134195327758789 + ], + [ + "▁Screw", + -13.134256362915039 + ], + [ + "▁Liberation", + -13.134267807006836 + ], + [ + "▁WHERE", + -13.134383201599121 + ], + [ + "▁Zan", + -13.134628295898438 + ], + [ + "▁Triumph", + -13.134644508361816 + ], + [ + "▁Tumblr", + -13.13474178314209 + ], + [ + "▁lantern", + -13.134747505187988 + ], + [ + "▁tenor", + -13.134757995605469 + ], + [ + "▁misguided", + -13.134763717651367 + ], + [ + "▁excavation", + -13.134767532348633 + ], + [ + "▁440", + -13.134811401367188 + ], + [ + "ht", + -13.134827613830566 + ], + [ + "▁continuum", + -13.13484001159668 + ], + [ + "▁Hague", + -13.134843826293945 + ], + [ + "▁Bankruptcy", + -13.13489818572998 + ], + [ + "worm", + -13.134936332702637 + ], + [ + "▁tightened", + -13.134967803955078 + ], + [ + "▁Clifford", + -13.13501262664795 + ], + [ + "▁suing", + -13.135025978088379 + ], + [ + "▁Mora", + -13.1350736618042 + ], + [ + "▁jogging", + -13.135239601135254 + ], + [ + "unt", + -13.135284423828125 + ], + [ + "▁Infinite", + -13.135408401489258 + ], + [ + "▁exploiting", + -13.135442733764648 + ], + [ + "▁mattered", + -13.135458946228027 + ], + [ + "▁Caldwell", + -13.13547420501709 + ], + [ + "Wild", + -13.135543823242188 + ], + [ + "▁boredom", + -13.135576248168945 + ], + [ + "▁Volt", + -13.13583755493164 + ], + [ + "DY", + -13.135883331298828 + ], + [ + "▁commuting", + -13.13597583770752 + ], + [ + "▁Starr", + -13.13601303100586 + ], + [ + "given", + -13.136035919189453 + ], + [ + "▁Chill", + -13.136308670043945 + ], + [ + "237", + -13.136319160461426 + ], + [ + "vc", + -13.136324882507324 + ], + [ + "▁embryos", + -13.136445045471191 + ], + [ + "▁Stra", + -13.136483192443848 + ], + [ + "▁chinese", + -13.136536598205566 + ], + [ + "▁affirmative", + -13.13656234741211 + ], + [ + "▁misplaced", + -13.136588096618652 + ], + [ + "▁Nagar", + -13.136592864990234 + ], + [ + "▁Prevent", + -13.136612892150879 + ], + [ + "▁Shame", + -13.136685371398926 + ], + [ + "▁SALE", + -13.136774063110352 + ], + [ + "▁masked", + -13.136783599853516 + ], + [ + "▁Controls", + -13.136805534362793 + ], + [ + "▁Swansea", + -13.136873245239258 + ], + [ + "▁dyes", + -13.136882781982422 + ], + [ + "▁Myrtle", + -13.136910438537598 + ], + [ + "▁Basel", + -13.136961936950684 + ], + [ + "eman", + -13.137105941772461 + ], + [ + "204", + -13.137115478515625 + ], + [ + "▁monies", + -13.137186050415039 + ], + [ + "▁streamed", + -13.137189865112305 + ], + [ + "▁glazing", + -13.137251853942871 + ], + [ + "▁piss", + -13.137269973754883 + ], + [ + "▁ré", + -13.137272834777832 + ], + [ + "▁imperfections", + -13.13727855682373 + ], + [ + "▁Forrest", + -13.13732624053955 + ], + [ + "▁tsp", + -13.137330055236816 + ], + [ + "▁Geoffrey", + -13.137360572814941 + ], + [ + "▁Tacoma", + -13.137431144714355 + ], + [ + "▁scarcity", + -13.137458801269531 + ], + [ + "▁softened", + -13.137670516967773 + ], + [ + "▁gathers", + -13.13769245147705 + ], + [ + "▁corpus", + -13.137947082519531 + ], + [ + "▁businessmen", + -13.13794994354248 + ], + [ + "一", + -13.138105392456055 + ], + [ + "▁moisturizer", + -13.138162612915039 + ], + [ + "▁truthful", + -13.13834285736084 + ], + [ + "Wow", + -13.13840389251709 + ], + [ + "▁Lyme", + -13.13843059539795 + ], + [ + "deal", + -13.138433456420898 + ], + [ + "▁737", + -13.138447761535645 + ], + [ + "▁Frequently", + -13.13849925994873 + ], + [ + "▁Quarry", + -13.138701438903809 + ], + [ + "▁lattice", + -13.1387300491333 + ], + [ + "▁Dollars", + -13.138764381408691 + ], + [ + "▁inspirations", + -13.13878059387207 + ], + [ + "▁ancestral", + -13.138789176940918 + ], + [ + "▁Competitive", + -13.138829231262207 + ], + [ + "▁uterus", + -13.138859748840332 + ], + [ + "▁recruiters", + -13.138891220092773 + ], + [ + "▁prosper", + -13.139049530029297 + ], + [ + "Bill", + -13.139120101928711 + ], + [ + "▁signify", + -13.139236450195312 + ], + [ + "▁slippers", + -13.139260292053223 + ], + [ + "Help", + -13.13932991027832 + ], + [ + "▁LOS", + -13.139430046081543 + ], + [ + "▁takeaway", + -13.139551162719727 + ], + [ + "▁escalation", + -13.139638900756836 + ], + [ + "tty", + -13.13966178894043 + ], + [ + "▁horseback", + -13.139713287353516 + ], + [ + "▁Experienced", + -13.139933586120605 + ], + [ + "tine", + -13.13998794555664 + ], + [ + "▁nourishing", + -13.140063285827637 + ], + [ + "▁mergers", + -13.140076637268066 + ], + [ + "kk", + -13.140122413635254 + ], + [ + "▁energized", + -13.14017105102539 + ], + [ + "▁bassist", + -13.140213966369629 + ], + [ + "Everything", + -13.140215873718262 + ], + [ + "▁contra", + -13.140264511108398 + ], + [ + "ALL", + -13.140321731567383 + ], + [ + "▁widening", + -13.140363693237305 + ], + [ + "▁Robbins", + -13.14037036895752 + ], + [ + "▁Claudia", + -13.140416145324707 + ], + [ + "▁Worse", + -13.140453338623047 + ], + [ + "▁Serbian", + -13.140466690063477 + ], + [ + "▁Wol", + -13.140624046325684 + ], + [ + "▁nearer", + -13.140695571899414 + ], + [ + "▁Scrap", + -13.140748023986816 + ], + [ + "▁brewed", + -13.140822410583496 + ], + [ + "▁Ramos", + -13.140828132629395 + ], + [ + "▁faithfully", + -13.140941619873047 + ], + [ + "syn", + -13.14096450805664 + ], + [ + "▁Renee", + -13.141139030456543 + ], + [ + "lah", + -13.14119815826416 + ], + [ + "emi", + -13.14127254486084 + ], + [ + "▁167", + -13.141284942626953 + ], + [ + "▁wrapper", + -13.141295433044434 + ], + [ + "▁characterised", + -13.141343116760254 + ], + [ + "▁sheath", + -13.14135456085205 + ], + [ + "Su", + -13.1414213180542 + ], + [ + "▁waiter", + -13.14146614074707 + ], + [ + "▁midterm", + -13.141502380371094 + ], + [ + "▁NR", + -13.14154052734375 + ], + [ + "▁Wherever", + -13.141554832458496 + ], + [ + "▁Catering", + -13.14161205291748 + ], + [ + "eira", + -13.141650199890137 + ], + [ + "▁viewpoints", + -13.141663551330566 + ], + [ + "▁Mandela", + -13.141776084899902 + ], + [ + "Mon", + -13.141847610473633 + ], + [ + "▁molds", + -13.141936302185059 + ], + [ + "ids", + -13.142048835754395 + ], + [ + "▁Farrell", + -13.142117500305176 + ], + [ + "happy", + -13.142143249511719 + ], + [ + "▁accompanies", + -13.14220905303955 + ], + [ + "▁Ent", + -13.142302513122559 + ], + [ + "▁Clement", + -13.14230728149414 + ], + [ + "▁Chandra", + -13.142340660095215 + ], + [ + "always", + -13.142497062683105 + ], + [ + "▁lick", + -13.142695426940918 + ], + [ + "▁northeastern", + -13.142797470092773 + ], + [ + "▁hauled", + -13.142827987670898 + ], + [ + "▁Tian", + -13.14291763305664 + ], + [ + "▁Lyrics", + -13.142952919006348 + ], + [ + "▁postcards", + -13.143000602722168 + ], + [ + "later", + -13.143013000488281 + ], + [ + "▁Sponsored", + -13.143019676208496 + ], + [ + "▁lawns", + -13.143120765686035 + ], + [ + "▁dehydration", + -13.14320182800293 + ], + [ + "etto", + -13.143284797668457 + ], + [ + "UV", + -13.143342018127441 + ], + [ + "dream", + -13.143365859985352 + ], + [ + "х", + -13.143452644348145 + ], + [ + "rach", + -13.14345645904541 + ], + [ + "▁antics", + -13.143561363220215 + ], + [ + "950", + -13.143571853637695 + ], + [ + "▁pageant", + -13.143619537353516 + ], + [ + "ende", + -13.143624305725098 + ], + [ + "▁teasing", + -13.143647193908691 + ], + [ + "kers", + -13.14366626739502 + ], + [ + "▁302", + -13.143729209899902 + ], + [ + "▁Curtain", + -13.143792152404785 + ], + [ + "forming", + -13.143793106079102 + ], + [ + "▁diner", + -13.143890380859375 + ], + [ + "▁divides", + -13.144258499145508 + ], + [ + "▁whereabouts", + -13.144268989562988 + ], + [ + "▁wildfire", + -13.144416809082031 + ], + [ + "metre", + -13.144436836242676 + ], + [ + "▁Tran", + -13.144477844238281 + ], + [ + "▁acquaintance", + -13.144482612609863 + ], + [ + "▁checkpoint", + -13.144628524780273 + ], + [ + "▁Ct", + -13.144645690917969 + ], + [ + "lessly", + -13.144702911376953 + ], + [ + "▁flotation", + -13.144719123840332 + ], + [ + "▁Pant", + -13.144872665405273 + ], + [ + "▁hunted", + -13.14488410949707 + ], + [ + "▁occurrences", + -13.144903182983398 + ], + [ + "centre", + -13.14491081237793 + ], + [ + "▁unfolds", + -13.14492130279541 + ], + [ + "▁flagged", + -13.145028114318848 + ], + [ + "▁supervise", + -13.145039558410645 + ], + [ + "▁realms", + -13.145065307617188 + ], + [ + "▁melanoma", + -13.145087242126465 + ], + [ + "GN", + -13.145171165466309 + ], + [ + "▁Royals", + -13.145172119140625 + ], + [ + "▁kinetic", + -13.145241737365723 + ], + [ + "▁pruning", + -13.14531421661377 + ], + [ + "tens", + -13.145325660705566 + ], + [ + "things", + -13.14543628692627 + ], + [ + "▁Albion", + -13.14545726776123 + ], + [ + "▁emit", + -13.145464897155762 + ], + [ + "Picture", + -13.145467758178711 + ], + [ + "▁smoothies", + -13.145641326904297 + ], + [ + "weed", + -13.145648002624512 + ], + [ + "▁Basket", + -13.145739555358887 + ], + [ + "▁Unable", + -13.145894050598145 + ], + [ + "▁evergreen", + -13.145894050598145 + ], + [ + "▁drapes", + -13.145895957946777 + ], + [ + "174", + -13.145903587341309 + ], + [ + "▁Mam", + -13.145919799804688 + ], + [ + "▁640", + -13.145938873291016 + ], + [ + "▁completeness", + -13.145954132080078 + ], + [ + "▁Pla", + -13.145964622497559 + ], + [ + "▁lang", + -13.145976066589355 + ], + [ + "▁195", + -13.145994186401367 + ], + [ + "▁Laundry", + -13.146137237548828 + ], + [ + "hrs", + -13.146150588989258 + ], + [ + "▁castles", + -13.146158218383789 + ], + [ + "▁aesthetically", + -13.146286010742188 + ], + [ + "▁outspoken", + -13.14631175994873 + ], + [ + "▁inconvenient", + -13.146468162536621 + ], + [ + "▁restorative", + -13.146484375 + ], + [ + "poly", + -13.146509170532227 + ], + [ + "▁Turks", + -13.146524429321289 + ], + [ + "Three", + -13.146595001220703 + ], + [ + "machine", + -13.1466064453125 + ], + [ + "feed", + -13.146674156188965 + ], + [ + "metric", + -13.146708488464355 + ], + [ + "▁audible", + -13.146710395812988 + ], + [ + "▁proclaim", + -13.146730422973633 + ], + [ + "▁380", + -13.146820068359375 + ], + [ + "▁analogue", + -13.1468505859375 + ], + [ + "▁disagreed", + -13.146857261657715 + ], + [ + "▁tendon", + -13.146865844726562 + ], + [ + "▁volt", + -13.146869659423828 + ], + [ + "к", + -13.146888732910156 + ], + [ + "▁1898", + -13.146927833557129 + ], + [ + "▁Brave", + -13.146932601928711 + ], + [ + "▁avec", + -13.146971702575684 + ], + [ + "▁Cargo", + -13.147042274475098 + ], + [ + "▁ambiguity", + -13.147047996520996 + ], + [ + "▁Carlton", + -13.14711856842041 + ], + [ + "▁Juventus", + -13.147177696228027 + ], + [ + "lea", + -13.147189140319824 + ], + [ + "▁gag", + -13.147239685058594 + ], + [ + "▁Institutes", + -13.147356986999512 + ], + [ + "▁Rite", + -13.147406578063965 + ], + [ + "244", + -13.147421836853027 + ], + [ + "▁Rican", + -13.147440910339355 + ], + [ + "ode", + -13.147461891174316 + ], + [ + "▁boon", + -13.147492408752441 + ], + [ + "▁cropped", + -13.147507667541504 + ], + [ + "،", + -13.147588729858398 + ], + [ + "▁HL", + -13.14765453338623 + ], + [ + "▁grasses", + -13.147697448730469 + ], + [ + "▁Leafs", + -13.147726058959961 + ], + [ + "▁Anthem", + -13.147791862487793 + ], + [ + "▁commits", + -13.147793769836426 + ], + [ + "▁leaps", + -13.147890090942383 + ], + [ + "▁Yuan", + -13.147933959960938 + ], + [ + "▁assays", + -13.147991180419922 + ], + [ + "▁Tek", + -13.147992134094238 + ], + [ + "▁aspiration", + -13.148033142089844 + ], + [ + "▁shuffle", + -13.148123741149902 + ], + [ + "enburg", + -13.14831256866455 + ], + [ + "▁polymers", + -13.14833927154541 + ], + [ + "▁waitress", + -13.148366928100586 + ], + [ + "▁reclining", + -13.148375511169434 + ], + [ + "▁Rip", + -13.14847469329834 + ], + [ + "▁preparedness", + -13.148523330688477 + ], + [ + "▁Vacuum", + -13.148552894592285 + ], + [ + "▁diverted", + -13.148561477661133 + ], + [ + "bear", + -13.148595809936523 + ], + [ + "▁Kristin", + -13.148664474487305 + ], + [ + "rain", + -13.14866828918457 + ], + [ + "▁CAGR", + -13.148676872253418 + ], + [ + "ania", + -13.148690223693848 + ], + [ + "▁Scottsdale", + -13.14873218536377 + ], + [ + "Sports", + -13.148751258850098 + ], + [ + "▁commuter", + -13.148796081542969 + ], + [ + "parent", + -13.148825645446777 + ], + [ + "▁workplaces", + -13.14891242980957 + ], + [ + "▁Lavender", + -13.148920059204102 + ], + [ + "▁OG", + -13.148924827575684 + ], + [ + "▁Purchasing", + -13.14894962310791 + ], + [ + "gio", + -13.148955345153809 + ], + [ + "▁Proposal", + -13.149003028869629 + ], + [ + "▁Uruguay", + -13.149003982543945 + ], + [ + "inder", + -13.149043083190918 + ], + [ + "▁Bordeaux", + -13.149157524108887 + ], + [ + "ometer", + -13.14919376373291 + ], + [ + "▁commuters", + -13.14920711517334 + ], + [ + "▁HDD", + -13.149219512939453 + ], + [ + "▁diminishing", + -13.149409294128418 + ], + [ + "▁drawbacks", + -13.149417877197266 + ], + [ + "gn", + -13.149438858032227 + ], + [ + "▁JL", + -13.149444580078125 + ], + [ + "▁dictated", + -13.14948844909668 + ], + [ + "▁Lar", + -13.149535179138184 + ], + [ + "▁intimidation", + -13.149606704711914 + ], + [ + "▁gowns", + -13.149727821350098 + ], + [ + "▁disgust", + -13.149765968322754 + ], + [ + "▁frogs", + -13.14976692199707 + ], + [ + "▁reversing", + -13.149930953979492 + ], + [ + "▁Vid", + -13.14997673034668 + ], + [ + "▁conduit", + -13.15002155303955 + ], + [ + "▁Automated", + -13.150074005126953 + ], + [ + "▁deported", + -13.150086402893066 + ], + [ + "▁Composition", + -13.150124549865723 + ], + [ + "testing", + -13.150286674499512 + ], + [ + "mission", + -13.150359153747559 + ], + [ + "yellow", + -13.150409698486328 + ], + [ + "pg", + -13.15052318572998 + ], + [ + "▁Colo", + -13.150554656982422 + ], + [ + "▁Sociology", + -13.150567054748535 + ], + [ + "▁Nationwide", + -13.150585174560547 + ], + [ + "▁Welch", + -13.150598526000977 + ], + [ + "▁duel", + -13.150605201721191 + ], + [ + "▁END", + -13.15060806274414 + ], + [ + "inus", + -13.150663375854492 + ], + [ + "physical", + -13.150890350341797 + ], + [ + "return", + -13.15090274810791 + ], + [ + "▁collegiate", + -13.151029586791992 + ], + [ + "▁Tomb", + -13.1510648727417 + ], + [ + "▁cylindrical", + -13.15109920501709 + ], + [ + "▁lofty", + -13.151114463806152 + ], + [ + "▁breached", + -13.151163101196289 + ], + [ + "Har", + -13.151213645935059 + ], + [ + "▁chats", + -13.15122127532959 + ], + [ + "gee", + -13.151229858398438 + ], + [ + "▁Context", + -13.151250839233398 + ], + [ + "apple", + -13.151571273803711 + ], + [ + "▁ramps", + -13.15162467956543 + ], + [ + "▁spoiler", + -13.15162467956543 + ], + [ + "▁Pompeo", + -13.151713371276855 + ], + [ + "▁comforts", + -13.151793479919434 + ], + [ + "▁idyllic", + -13.151832580566406 + ], + [ + "▁tweeting", + -13.151885986328125 + ], + [ + "▁Encourage", + -13.151983261108398 + ], + [ + "▁Emotional", + -13.152000427246094 + ], + [ + "▁flank", + -13.15201187133789 + ], + [ + "▁behaved", + -13.15203857421875 + ], + [ + "▁Hari", + -13.152073860168457 + ], + [ + "▁Fridays", + -13.152139663696289 + ], + [ + "▁taxis", + -13.152210235595703 + ], + [ + "147", + -13.152231216430664 + ], + [ + "▁Killing", + -13.152238845825195 + ], + [ + "▁focussed", + -13.152326583862305 + ], + [ + "▁Vanderbilt", + -13.152334213256836 + ], + [ + "▁artifact", + -13.152458190917969 + ], + [ + "▁backstage", + -13.152534484863281 + ], + [ + "▁fluoride", + -13.152552604675293 + ], + [ + "▁astronomical", + -13.15258502960205 + ], + [ + "▁cages", + -13.152621269226074 + ], + [ + "▁playable", + -13.152789115905762 + ], + [ + "▁dormant", + -13.152835845947266 + ], + [ + "▁Temp", + -13.152963638305664 + ], + [ + "▁ether", + -13.153146743774414 + ], + [ + "goal", + -13.15318775177002 + ], + [ + "mentioned", + -13.153305053710938 + ], + [ + "▁arterial", + -13.1533203125 + ], + [ + "▁cardinal", + -13.153345108032227 + ], + [ + "▁idiots", + -13.153481483459473 + ], + [ + "▁drifted", + -13.153483390808105 + ], + [ + "▁Skull", + -13.153497695922852 + ], + [ + "▁OnePlus", + -13.153544425964355 + ], + [ + "serve", + -13.153620719909668 + ], + [ + "▁Redskins", + -13.153654098510742 + ], + [ + "▁Joker", + -13.153767585754395 + ], + [ + "▁grooves", + -13.153773307800293 + ], + [ + "▁Simulator", + -13.15381908416748 + ], + [ + "Queen", + -13.153901100158691 + ], + [ + "formed", + -13.15391731262207 + ], + [ + "bodied", + -13.15398120880127 + ], + [ + "ault", + -13.154014587402344 + ], + [ + "tee", + -13.154168128967285 + ], + [ + "yk", + -13.15417194366455 + ], + [ + "▁embodies", + -13.154204368591309 + ], + [ + "FG", + -13.154433250427246 + ], + [ + "▁Macedonia", + -13.154459953308105 + ], + [ + "▁constituent", + -13.15456771850586 + ], + [ + "bid", + -13.154589653015137 + ], + [ + "▁nike", + -13.154608726501465 + ], + [ + "ibly", + -13.154715538024902 + ], + [ + "▁sparks", + -13.154844284057617 + ], + [ + "▁agendas", + -13.154939651489258 + ], + [ + "▁Sheldon", + -13.154943466186523 + ], + [ + "▁outsiders", + -13.154955863952637 + ], + [ + "▁conquest", + -13.154977798461914 + ], + [ + "▁stale", + -13.155041694641113 + ], + [ + "▁Massive", + -13.155046463012695 + ], + [ + "▁Theology", + -13.155048370361328 + ], + [ + "▁culmination", + -13.155067443847656 + ], + [ + "▁imp", + -13.155082702636719 + ], + [ + "spin", + -13.155097007751465 + ], + [ + "141", + -13.155174255371094 + ], + [ + "▁proximal", + -13.155203819274902 + ], + [ + "▁specialises", + -13.155217170715332 + ], + [ + "▁stationery", + -13.155258178710938 + ], + [ + "▁freeing", + -13.155267715454102 + ], + [ + "▁chipped", + -13.155365943908691 + ], + [ + "Park", + -13.155372619628906 + ], + [ + "▁staffers", + -13.155414581298828 + ], + [ + "▁Fiscal", + -13.15543270111084 + ], + [ + "▁Memories", + -13.155444145202637 + ], + [ + "137", + -13.155571937561035 + ], + [ + "▁consolation", + -13.155606269836426 + ], + [ + "▁Potato", + -13.155623435974121 + ], + [ + "Summer", + -13.155631065368652 + ], + [ + "▁GSM", + -13.155684471130371 + ], + [ + "▁begged", + -13.15568733215332 + ], + [ + "▁spooky", + -13.15573787689209 + ], + [ + "▁Knock", + -13.155813217163086 + ], + [ + "▁fluff", + -13.155820846557617 + ], + [ + "ulu", + -13.155867576599121 + ], + [ + "▁engraving", + -13.155879020690918 + ], + [ + "▁Federer", + -13.155881881713867 + ], + [ + "▁accolades", + -13.155969619750977 + ], + [ + "▁refinance", + -13.155980110168457 + ], + [ + "▁Mana", + -13.156062126159668 + ], + [ + "▁succeeds", + -13.156086921691895 + ], + [ + "▁rut", + -13.156105995178223 + ], + [ + "▁Frankly", + -13.15615463256836 + ], + [ + "▁Mosque", + -13.156155586242676 + ], + [ + "▁infographic", + -13.156234741210938 + ], + [ + "▁usb", + -13.15628719329834 + ], + [ + "▁Lowell", + -13.156304359436035 + ], + [ + "▁nuanced", + -13.15636920928955 + ], + [ + "▁Conversation", + -13.156370162963867 + ], + [ + "▁mediator", + -13.15660572052002 + ], + [ + "ounce", + -13.156707763671875 + ], + [ + "î", + -13.156777381896973 + ], + [ + "▁ken", + -13.156786918640137 + ], + [ + "▁CARE", + -13.156793594360352 + ], + [ + "within", + -13.156844139099121 + ], + [ + "▁Rou", + -13.15688705444336 + ], + [ + "LAN", + -13.15690803527832 + ], + [ + "lei", + -13.156937599182129 + ], + [ + "▁joyous", + -13.157039642333984 + ], + [ + "▁atrocities", + -13.157064437866211 + ], + [ + "도", + -13.157064437866211 + ], + [ + "▁carpeting", + -13.15715217590332 + ], + [ + "uto", + -13.157336235046387 + ], + [ + "▁USPS", + -13.157341003417969 + ], + [ + "▁humane", + -13.157386779785156 + ], + [ + "▁Trials", + -13.157419204711914 + ], + [ + "Control", + -13.157480239868164 + ], + [ + "▁Perspective", + -13.157581329345703 + ], + [ + "hawk", + -13.1576566696167 + ], + [ + "▁propecia", + -13.157710075378418 + ], + [ + "▁Compatible", + -13.157791137695312 + ], + [ + "▁Flames", + -13.157954216003418 + ], + [ + "▁SHOULD", + -13.158008575439453 + ], + [ + "▁Zhao", + -13.158032417297363 + ], + [ + "▁Transaction", + -13.15811538696289 + ], + [ + "Model", + -13.158127784729004 + ], + [ + "▁PDP", + -13.158134460449219 + ], + [ + "▁Jiang", + -13.158170700073242 + ], + [ + "▁vending", + -13.158273696899414 + ], + [ + "▁Mariners", + -13.158334732055664 + ], + [ + "▁concentrates", + -13.158401489257812 + ], + [ + "▁Slack", + -13.158413887023926 + ], + [ + "▁Pascal", + -13.158430099487305 + ], + [ + "▁scrambling", + -13.158489227294922 + ], + [ + "▁Sammy", + -13.158562660217285 + ], + [ + "▁Scratch", + -13.158581733703613 + ], + [ + "▁DOT", + -13.158608436584473 + ], + [ + "▁174", + -13.158692359924316 + ], + [ + "▁florist", + -13.158735275268555 + ], + [ + "▁Ola", + -13.158748626708984 + ], + [ + "▁probate", + -13.158780097961426 + ], + [ + "▁lyrical", + -13.158868789672852 + ], + [ + "▁Marian", + -13.158882141113281 + ], + [ + "▁sweaty", + -13.158924102783203 + ], + [ + "▁sl", + -13.158926963806152 + ], + [ + "▁Thorn", + -13.158946990966797 + ], + [ + "▁bothering", + -13.15895938873291 + ], + [ + "▁Simone", + -13.158965110778809 + ], + [ + "▁lymphoma", + -13.15898609161377 + ], + [ + "nat", + -13.159099578857422 + ], + [ + "fee", + -13.1591796875 + ], + [ + "Chief", + -13.159274101257324 + ], + [ + "▁pumpkins", + -13.159276962280273 + ], + [ + "▁smoky", + -13.15942096710205 + ], + [ + "▁207", + -13.159442901611328 + ], + [ + "▁Font", + -13.159456253051758 + ], + [ + "▁Extremely", + -13.159528732299805 + ], + [ + "▁flop", + -13.159568786621094 + ], + [ + "WI", + -13.159594535827637 + ], + [ + "▁fruition", + -13.159685134887695 + ], + [ + "▁allowances", + -13.15981674194336 + ], + [ + "▁Beds", + -13.159903526306152 + ], + [ + "WM", + -13.15992259979248 + ], + [ + "▁slideshow", + -13.159998893737793 + ], + [ + "▁adjunct", + -13.160094261169434 + ], + [ + "▁Array", + -13.160151481628418 + ], + [ + "▁Clint", + -13.16015911102295 + ], + [ + "▁Baton", + -13.160174369812012 + ], + [ + "▁fearless", + -13.160234451293945 + ], + [ + "▁shin", + -13.160293579101562 + ], + [ + "▁Physician", + -13.160340309143066 + ], + [ + "▁toothbrush", + -13.160345077514648 + ], + [ + "▁Tracker", + -13.160353660583496 + ], + [ + "▁alkaline", + -13.160383224487305 + ], + [ + "bling", + -13.160496711730957 + ], + [ + "▁Jag", + -13.16053295135498 + ], + [ + "▁Shades", + -13.16058349609375 + ], + [ + "▁Spotlight", + -13.160711288452148 + ], + [ + "▁hugged", + -13.160835266113281 + ], + [ + "▁fro", + -13.160945892333984 + ], + [ + "▁inverted", + -13.160955429077148 + ], + [ + "▁smoker", + -13.161046028137207 + ], + [ + "▁Lund", + -13.161069869995117 + ], + [ + "▁Trustee", + -13.161124229431152 + ], + [ + "▁deducted", + -13.161160469055176 + ], + [ + "▁Auditor", + -13.161293983459473 + ], + [ + "▁refinement", + -13.161301612854004 + ], + [ + "ranking", + -13.1613130569458 + ], + [ + "▁trailed", + -13.161332130432129 + ], + [ + "iman", + -13.161579132080078 + ], + [ + "▁directional", + -13.161629676818848 + ], + [ + "▁prolong", + -13.161656379699707 + ], + [ + "▁sweaters", + -13.16167163848877 + ], + [ + "drawn", + -13.16169548034668 + ], + [ + "κ", + -13.16171932220459 + ], + [ + "▁stamping", + -13.161773681640625 + ], + [ + "wait", + -13.161803245544434 + ], + [ + "motor", + -13.161837577819824 + ], + [ + "lov", + -13.16183853149414 + ], + [ + "▁Spokane", + -13.161896705627441 + ], + [ + "▁Berger", + -13.161978721618652 + ], + [ + "att", + -13.162093162536621 + ], + [ + "tura", + -13.162101745605469 + ], + [ + "▁intensified", + -13.162202835083008 + ], + [ + "▁Clair", + -13.162235260009766 + ], + [ + "▁relegated", + -13.162344932556152 + ], + [ + "▁Kenyan", + -13.162400245666504 + ], + [ + "▁tote", + -13.16243839263916 + ], + [ + "▁treasurer", + -13.16250228881836 + ], + [ + "▁tumour", + -13.162524223327637 + ], + [ + "▁melts", + -13.162540435791016 + ], + [ + "▁diversification", + -13.16258430480957 + ], + [ + "▁Cuomo", + -13.16273307800293 + ], + [ + "▁Flora", + -13.162734031677246 + ], + [ + "▁Hmmm", + -13.162869453430176 + ], + [ + "▁Lantern", + -13.163092613220215 + ], + [ + "▁dispenser", + -13.163101196289062 + ], + [ + "mental", + -13.163115501403809 + ], + [ + "▁rotated", + -13.163300514221191 + ], + [ + "▁incompetent", + -13.163308143615723 + ], + [ + "▁canadian", + -13.163357734680176 + ], + [ + "▁tester", + -13.163400650024414 + ], + [ + "▁Bowman", + -13.163446426391602 + ], + [ + "▁racer", + -13.163477897644043 + ], + [ + "▁flourishing", + -13.163484573364258 + ], + [ + "▁214", + -13.163542747497559 + ], + [ + "▁Mansfield", + -13.163543701171875 + ], + [ + "▁arithmetic", + -13.163596153259277 + ], + [ + "wu", + -13.163631439208984 + ], + [ + "▁linger", + -13.16368293762207 + ], + [ + "garden", + -13.16370677947998 + ], + [ + "▁impartial", + -13.16372299194336 + ], + [ + "▁Suit", + -13.163745880126953 + ], + [ + "▁Chavez", + -13.163832664489746 + ], + [ + "▁Jays", + -13.163883209228516 + ], + [ + "ð", + -13.163898468017578 + ], + [ + "▁fiercely", + -13.163942337036133 + ], + [ + "uba", + -13.163955688476562 + ], + [ + "▁Citi", + -13.164061546325684 + ], + [ + "▁Chiang", + -13.164064407348633 + ], + [ + "sci", + -13.164094924926758 + ], + [ + "▁WAR", + -13.164109230041504 + ], + [ + "▁Schumer", + -13.164194107055664 + ], + [ + "▁praising", + -13.164203643798828 + ], + [ + "▁err", + -13.164219856262207 + ], + [ + "ZA", + -13.164299011230469 + ], + [ + "▁gearbox", + -13.164338111877441 + ], + [ + "Info", + -13.164355278015137 + ], + [ + "▁Weeks", + -13.164373397827148 + ], + [ + "▁webinars", + -13.164413452148438 + ], + [ + "▁hanger", + -13.164498329162598 + ], + [ + "▁Abrams", + -13.164521217346191 + ], + [ + "Ge", + -13.164623260498047 + ], + [ + "▁manure", + -13.164688110351562 + ], + [ + "▁outweigh", + -13.164803504943848 + ], + [ + "▁Nana", + -13.164811134338379 + ], + [ + "independent", + -13.16482925415039 + ], + [ + "▁Destination", + -13.164843559265137 + ], + [ + "▁coffin", + -13.164883613586426 + ], + [ + "▁centred", + -13.164924621582031 + ], + [ + "▁Pregnancy", + -13.165020942687988 + ], + [ + "▁Zelda", + -13.16517162322998 + ], + [ + "▁hindi", + -13.16517162322998 + ], + [ + "pak", + -13.16533374786377 + ], + [ + "▁dries", + -13.165338516235352 + ], + [ + "▁dysfunctional", + -13.165399551391602 + ], + [ + "▁Separate", + -13.165499687194824 + ], + [ + "▁Honors", + -13.165505409240723 + ], + [ + "ense", + -13.16551685333252 + ], + [ + "▁cultivating", + -13.165557861328125 + ], + [ + "▁Wanted", + -13.1656494140625 + ], + [ + "▁warmly", + -13.165812492370605 + ], + [ + "▁Shen", + -13.165851593017578 + ], + [ + "technical", + -13.1659574508667 + ], + [ + "▁mellow", + -13.165977478027344 + ], + [ + "▁federation", + -13.16603946685791 + ], + [ + "▁OA", + -13.166056632995605 + ], + [ + "ssa", + -13.166058540344238 + ], + [ + "▁FI", + -13.166108131408691 + ], + [ + "▁mourn", + -13.166126251220703 + ], + [ + "▁drown", + -13.166136741638184 + ], + [ + "▁exploding", + -13.166152000427246 + ], + [ + "▁Sala", + -13.166191101074219 + ], + [ + "▁roundabout", + -13.166245460510254 + ], + [ + "▁confinement", + -13.166278839111328 + ], + [ + "oto", + -13.166460990905762 + ], + [ + "mn", + -13.166512489318848 + ], + [ + "▁outbreaks", + -13.166535377502441 + ], + [ + "▁backsplash", + -13.166566848754883 + ], + [ + "croft", + -13.166570663452148 + ], + [ + "▁metropolis", + -13.166625022888184 + ], + [ + "▁216", + -13.166646957397461 + ], + [ + "▁births", + -13.16667366027832 + ], + [ + "informed", + -13.166693687438965 + ], + [ + "ndo", + -13.16671085357666 + ], + [ + "▁Brewers", + -13.166715621948242 + ], + [ + "▁Levine", + -13.16687297821045 + ], + [ + "▁Malawi", + -13.166876792907715 + ], + [ + "▁rejects", + -13.166892051696777 + ], + [ + "zie", + -13.167007446289062 + ], + [ + "▁repercussions", + -13.167012214660645 + ], + [ + "atus", + -13.167013168334961 + ], + [ + "▁TU", + -13.167059898376465 + ], + [ + "지", + -13.167105674743652 + ], + [ + "ois", + -13.1671781539917 + ], + [ + "▁royalties", + -13.167190551757812 + ], + [ + "▁geology", + -13.167311668395996 + ], + [ + "CAT", + -13.167340278625488 + ], + [ + "▁Shall", + -13.167430877685547 + ], + [ + "invasive", + -13.16744613647461 + ], + [ + "▁Namibia", + -13.167465209960938 + ], + [ + "▁creeping", + -13.167734146118164 + ], + [ + "▁hardships", + -13.167760848999023 + ], + [ + "ono", + -13.167763710021973 + ], + [ + "▁segmentation", + -13.16780948638916 + ], + [ + "▁ironically", + -13.16787338256836 + ], + [ + "editor", + -13.16789722442627 + ], + [ + "mut", + -13.16794204711914 + ], + [ + "▁taco", + -13.168166160583496 + ], + [ + "▁workstation", + -13.16820240020752 + ], + [ + "▁payoff", + -13.168249130249023 + ], + [ + "▁Elsevier", + -13.168288230895996 + ], + [ + "▁Islamabad", + -13.168481826782227 + ], + [ + "▁Ober", + -13.168496131896973 + ], + [ + "▁dangerously", + -13.168527603149414 + ], + [ + "▁bis", + -13.16869068145752 + ], + [ + "▁shaved", + -13.168694496154785 + ], + [ + "▁morphology", + -13.168722152709961 + ], + [ + "ddle", + -13.16872501373291 + ], + [ + "▁childbirth", + -13.168753623962402 + ], + [ + "▁Flores", + -13.168787956237793 + ], + [ + "▁tort", + -13.168805122375488 + ], + [ + "▁deceptive", + -13.168938636779785 + ], + [ + "▁wrists", + -13.16895866394043 + ], + [ + "▁Heathrow", + -13.169002532958984 + ], + [ + "▁presenters", + -13.16913890838623 + ], + [ + "▁Streaming", + -13.169179916381836 + ], + [ + "▁Knoxville", + -13.169203758239746 + ], + [ + "▁commanders", + -13.169217109680176 + ], + [ + "▁Measurement", + -13.169229507446289 + ], + [ + "▁assigning", + -13.169257164001465 + ], + [ + "▁swirling", + -13.169318199157715 + ], + [ + "LG", + -13.169353485107422 + ], + [ + "▁Newspaper", + -13.169363975524902 + ], + [ + "END", + -13.169398307800293 + ], + [ + "osi", + -13.16939926147461 + ], + [ + "▁Tomas", + -13.169466972351074 + ], + [ + "▁Kho", + -13.169500350952148 + ], + [ + "nte", + -13.16951847076416 + ], + [ + "▁souvenir", + -13.16954517364502 + ], + [ + "▁shaky", + -13.169672966003418 + ], + [ + "ç", + -13.16968822479248 + ], + [ + "yar", + -13.169713973999023 + ], + [ + "▁solitude", + -13.169833183288574 + ], + [ + "ered", + -13.169928550720215 + ], + [ + "▁firstly", + -13.170071601867676 + ], + [ + "▁Howell", + -13.170085906982422 + ], + [ + "▁Bos", + -13.170117378234863 + ], + [ + "▁Ard", + -13.170144081115723 + ], + [ + "▁Dion", + -13.170183181762695 + ], + [ + "▁summon", + -13.170357704162598 + ], + [ + "▁synchronization", + -13.170411109924316 + ], + [ + "wn", + -13.170498847961426 + ], + [ + "▁Vineyard", + -13.17058277130127 + ], + [ + "▁Decorative", + -13.170589447021484 + ], + [ + "▁fearing", + -13.170599937438965 + ], + [ + "▁incompatible", + -13.170602798461914 + ], + [ + "▁prostitution", + -13.170666694641113 + ], + [ + "▁Nvidia", + -13.170747756958008 + ], + [ + "▁richly", + -13.17085075378418 + ], + [ + "▁MGM", + -13.170928001403809 + ], + [ + "▁Mothers", + -13.17093563079834 + ], + [ + "▁interchangeable", + -13.171064376831055 + ], + [ + "▁stemming", + -13.171065330505371 + ], + [ + "▁Marcos", + -13.171107292175293 + ], + [ + "ANCE", + -13.171149253845215 + ], + [ + "boxes", + -13.171161651611328 + ], + [ + "▁Calculator", + -13.171210289001465 + ], + [ + "▁Curious", + -13.17127513885498 + ], + [ + "▁Finder", + -13.17132568359375 + ], + [ + "▁peg", + -13.171418190002441 + ], + [ + "▁dared", + -13.171420097351074 + ], + [ + "▁entrants", + -13.171430587768555 + ], + [ + "▁Giles", + -13.171470642089844 + ], + [ + "MN", + -13.171483039855957 + ], + [ + "▁pedigree", + -13.171486854553223 + ], + [ + "▁millennium", + -13.171540260314941 + ], + [ + "▁translators", + -13.171565055847168 + ], + [ + "▁Sap", + -13.171592712402344 + ], + [ + "▁Radical", + -13.17162799835205 + ], + [ + "▁unlocking", + -13.171859741210938 + ], + [ + "▁Classification", + -13.171860694885254 + ], + [ + "▁harassed", + -13.171869277954102 + ], + [ + "▁Det", + -13.171932220458984 + ], + [ + "▁Constant", + -13.172016143798828 + ], + [ + "▁Tristan", + -13.172075271606445 + ], + [ + "▁weekdays", + -13.172134399414062 + ], + [ + "▁hypocrisy", + -13.172144889831543 + ], + [ + "allow", + -13.172148704528809 + ], + [ + "▁songwriting", + -13.172253608703613 + ], + [ + "▁appreciative", + -13.17226505279541 + ], + [ + "▁PHOTO", + -13.172348976135254 + ], + [ + "▁Kaplan", + -13.172351837158203 + ], + [ + "▁cutest", + -13.172368049621582 + ], + [ + "▁hopped", + -13.172402381896973 + ], + [ + "▁southwestern", + -13.172407150268555 + ], + [ + "▁reigning", + -13.172411918640137 + ], + [ + "▁Neptune", + -13.17244815826416 + ], + [ + "▁Kun", + -13.172658920288086 + ], + [ + "▁BM", + -13.172708511352539 + ], + [ + "install", + -13.172835350036621 + ], + [ + "▁verbally", + -13.172883987426758 + ], + [ + "▁Foley", + -13.172884941101074 + ], + [ + "process", + -13.172916412353516 + ], + [ + "▁Oyster", + -13.172916412353516 + ], + [ + "▁pur", + -13.17296028137207 + ], + [ + "ady", + -13.172978401184082 + ], + [ + "▁Bengaluru", + -13.172980308532715 + ], + [ + "▁Tender", + -13.173078536987305 + ], + [ + "▁Combo", + -13.173086166381836 + ], + [ + "136", + -13.173112869262695 + ], + [ + "▁potency", + -13.173177719116211 + ], + [ + "▁frontal", + -13.173235893249512 + ], + [ + "▁quizzes", + -13.173331260681152 + ], + [ + "▁deficient", + -13.173418045043945 + ], + [ + "acting", + -13.173431396484375 + ], + [ + "▁antiques", + -13.17344856262207 + ], + [ + "▁IVF", + -13.173494338989258 + ], + [ + "pure", + -13.173501968383789 + ], + [ + "▁Joanne", + -13.173624038696289 + ], + [ + "▁Bones", + -13.173653602600098 + ], + [ + "▁Improving", + -13.173774719238281 + ], + [ + "▁Kul", + -13.173779487609863 + ], + [ + "▁Merlin", + -13.173837661743164 + ], + [ + "▁menopause", + -13.173982620239258 + ], + [ + "▁eyebrow", + -13.174079895019531 + ], + [ + "▁Kei", + -13.174108505249023 + ], + [ + "▁Islanders", + -13.174192428588867 + ], + [ + "▁1840", + -13.174208641052246 + ], + [ + "▁petitioner", + -13.174373626708984 + ], + [ + "▁specialising", + -13.174407958984375 + ], + [ + "▁migrating", + -13.174413681030273 + ], + [ + "▁Jammu", + -13.174428939819336 + ], + [ + "▁Verified", + -13.174482345581055 + ], + [ + "▁Yukon", + -13.174539566040039 + ], + [ + "▁apoptosis", + -13.174551010131836 + ], + [ + "▁Asheville", + -13.174747467041016 + ], + [ + "▁Cad", + -13.174781799316406 + ], + [ + "▁complying", + -13.174790382385254 + ], + [ + "▁Vodafone", + -13.174872398376465 + ], + [ + "▁Invitation", + -13.174919128417969 + ], + [ + "▁Anatomy", + -13.174922943115234 + ], + [ + "▁pioneered", + -13.174930572509766 + ], + [ + "▁TG", + -13.175002098083496 + ], + [ + "Ann", + -13.175065994262695 + ], + [ + "ý", + -13.175220489501953 + ], + [ + "▁NU", + -13.175358772277832 + ], + [ + "▁debtor", + -13.175498008728027 + ], + [ + "▁genealogy", + -13.175508499145508 + ], + [ + "▁criticizing", + -13.175676345825195 + ], + [ + "▁tentative", + -13.17569637298584 + ], + [ + "▁arches", + -13.175769805908203 + ], + [ + "▁vous", + -13.17577838897705 + ], + [ + "▁faucets", + -13.175973892211914 + ], + [ + "tten", + -13.175985336303711 + ], + [ + "rv", + -13.176021575927734 + ], + [ + "▁Algebra", + -13.17604923248291 + ], + [ + "É", + -13.176061630249023 + ], + [ + "▁trough", + -13.176067352294922 + ], + [ + "Form", + -13.176162719726562 + ], + [ + "▁angled", + -13.176180839538574 + ], + [ + "Ja", + -13.176188468933105 + ], + [ + "▁redness", + -13.176194190979004 + ], + [ + "▁Zimmerman", + -13.176271438598633 + ], + [ + "▁vengeance", + -13.17630386352539 + ], + [ + "▁analytic", + -13.176457405090332 + ], + [ + "▁ESP", + -13.176515579223633 + ], + [ + "▁honours", + -13.176523208618164 + ], + [ + "▁quests", + -13.176527976989746 + ], + [ + "▁regained", + -13.176634788513184 + ], + [ + "▁Graves", + -13.17664909362793 + ], + [ + "▁BOOK", + -13.176753997802734 + ], + [ + "▁subtitles", + -13.176765441894531 + ], + [ + "▁dreamy", + -13.17694091796875 + ], + [ + "▁BU", + -13.176950454711914 + ], + [ + "▁cornerback", + -13.176956176757812 + ], + [ + "▁Hardwood", + -13.17707633972168 + ], + [ + "▁430", + -13.177163124084473 + ], + [ + "▁incarceration", + -13.177236557006836 + ], + [ + "arrow", + -13.177273750305176 + ], + [ + "pas", + -13.177276611328125 + ], + [ + "AND", + -13.177290916442871 + ], + [ + "▁constructs", + -13.177331924438477 + ], + [ + "Keep", + -13.177523612976074 + ], + [ + "▁indifferent", + -13.177529335021973 + ], + [ + "▁repression", + -13.17754077911377 + ], + [ + "265", + -13.177565574645996 + ], + [ + "▁lighten", + -13.17759895324707 + ], + [ + "▁Sleeve", + -13.177617073059082 + ], + [ + "▁positivity", + -13.177671432495117 + ], + [ + "▁nanny", + -13.177675247192383 + ], + [ + "▁plump", + -13.177728652954102 + ], + [ + "▁nationals", + -13.17776870727539 + ], + [ + "zh", + -13.177777290344238 + ], + [ + "▁Sandwich", + -13.1777982711792 + ], + [ + "▁iced", + -13.17795181274414 + ], + [ + "▁fullness", + -13.178018569946289 + ], + [ + "▁Rahul", + -13.178020477294922 + ], + [ + "▁Tourist", + -13.178060531616211 + ], + [ + "▁Smithsonian", + -13.178086280822754 + ], + [ + "▁plead", + -13.178125381469727 + ], + [ + "oso", + -13.178154945373535 + ], + [ + "▁Ton", + -13.178299903869629 + ], + [ + "▁popup", + -13.178339004516602 + ], + [ + "▁Chesapeake", + -13.17848014831543 + ], + [ + "▁Placement", + -13.178667068481445 + ], + [ + "▁SEM", + -13.178689002990723 + ], + [ + "▁Quilt", + -13.178699493408203 + ], + [ + "want", + -13.178739547729492 + ], + [ + "▁LO", + -13.178778648376465 + ], + [ + "▁embossed", + -13.178874969482422 + ], + [ + "▁Messages", + -13.178916931152344 + ], + [ + "▁unleash", + -13.178967475891113 + ], + [ + "▁Dates", + -13.178976058959961 + ], + [ + "▁Lightweight", + -13.178997993469238 + ], + [ + "upon", + -13.179136276245117 + ], + [ + "▁Bieber", + -13.17920970916748 + ], + [ + "▁scandals", + -13.17926025390625 + ], + [ + "▁Agnes", + -13.179322242736816 + ], + [ + "▁leveraged", + -13.179327011108398 + ], + [ + "▁Croatian", + -13.179400444030762 + ], + [ + "▁socioeconomic", + -13.179430961608887 + ], + [ + "▁instill", + -13.179805755615234 + ], + [ + "▁Taxes", + -13.17986011505127 + ], + [ + "▁Corvette", + -13.179883003234863 + ], + [ + "dec", + -13.179905891418457 + ], + [ + "▁ecstatic", + -13.17993450164795 + ], + [ + "▁Infant", + -13.180062294006348 + ], + [ + "▁uneasy", + -13.180068016052246 + ], + [ + "▁lien", + -13.180098533630371 + ], + [ + "▁worldly", + -13.180124282836914 + ], + [ + "▁Dialogue", + -13.180183410644531 + ], + [ + "▁airway", + -13.180197715759277 + ], + [ + "MHz", + -13.1802396774292 + ], + [ + "▁cheddar", + -13.180242538452148 + ], + [ + "ime", + -13.180254936218262 + ], + [ + "contained", + -13.180277824401855 + ], + [ + "Robert", + -13.180424690246582 + ], + [ + "Tom", + -13.180484771728516 + ], + [ + "▁Regard", + -13.18049144744873 + ], + [ + "▁pesticide", + -13.180535316467285 + ], + [ + "▁fer", + -13.180558204650879 + ], + [ + "▁Blackjack", + -13.180598258972168 + ], + [ + "178", + -13.180691719055176 + ], + [ + "▁Nag", + -13.180747032165527 + ], + [ + "children", + -13.180862426757812 + ], + [ + "vr", + -13.180883407592773 + ], + [ + "xml", + -13.180933952331543 + ], + [ + "▁brittle", + -13.180967330932617 + ], + [ + "▁Backyard", + -13.180984497070312 + ], + [ + "▁attainment", + -13.180998802185059 + ], + [ + "▁sinners", + -13.181013107299805 + ], + [ + "▁pave", + -13.181034088134766 + ], + [ + "▁Heavenly", + -13.181312561035156 + ], + [ + "▁choreography", + -13.181313514709473 + ], + [ + "eco", + -13.181368827819824 + ], + [ + "▁oyster", + -13.181379318237305 + ], + [ + "▁weakening", + -13.18138599395752 + ], + [ + "▁bunker", + -13.18144416809082 + ], + [ + "▁Roulette", + -13.181458473205566 + ], + [ + "▁Sick", + -13.181482315063477 + ], + [ + "▁frantic", + -13.18152904510498 + ], + [ + "005", + -13.181536674499512 + ], + [ + "▁anchors", + -13.181626319885254 + ], + [ + "lop", + -13.181634902954102 + ], + [ + "▁Bowen", + -13.181657791137695 + ], + [ + "rim", + -13.181748390197754 + ], + [ + "▁twenties", + -13.181758880615234 + ], + [ + "▁Bac", + -13.181795120239258 + ], + [ + "▁Dickinson", + -13.181812286376953 + ], + [ + "summer", + -13.181890487670898 + ], + [ + "▁SUVs", + -13.181964874267578 + ], + [ + "▁Tammy", + -13.18197250366211 + ], + [ + "▁Mori", + -13.181987762451172 + ], + [ + "▁fastening", + -13.182015419006348 + ], + [ + "trial", + -13.18209457397461 + ], + [ + "▁karma", + -13.182120323181152 + ], + [ + "▁510", + -13.18212890625 + ], + [ + "▁RL", + -13.182137489318848 + ], + [ + "▁Dominion", + -13.182188987731934 + ], + [ + "sko", + -13.182228088378906 + ], + [ + "▁sightings", + -13.18226146697998 + ], + [ + "▁intestine", + -13.182265281677246 + ], + [ + "▁Shuttle", + -13.182358741760254 + ], + [ + "▁inference", + -13.18244743347168 + ], + [ + "157", + -13.182461738586426 + ], + [ + "▁realistically", + -13.182490348815918 + ], + [ + "▁hamper", + -13.182500839233398 + ], + [ + "IVE", + -13.18250846862793 + ], + [ + "▁Breath", + -13.182548522949219 + ], + [ + "google", + -13.18263053894043 + ], + [ + "▁formulations", + -13.182722091674805 + ], + [ + "▁Received", + -13.18283748626709 + ], + [ + "▁disturbances", + -13.18286418914795 + ], + [ + "sac", + -13.182886123657227 + ], + [ + "▁Connected", + -13.182958602905273 + ], + [ + "tools", + -13.18299388885498 + ], + [ + "▁USSR", + -13.18305778503418 + ], + [ + "Down", + -13.183131217956543 + ], + [ + "▁neuroscience", + -13.183186531066895 + ], + [ + "wald", + -13.183242797851562 + ], + [ + "▁prednisone", + -13.1832857131958 + ], + [ + "BM", + -13.183326721191406 + ], + [ + "▁disparity", + -13.183357238769531 + ], + [ + "▁dictates", + -13.183444023132324 + ], + [ + "▁scouts", + -13.183477401733398 + ], + [ + "▁Pl", + -13.183500289916992 + ], + [ + "▁Trojan", + -13.183560371398926 + ], + [ + "▁Collector", + -13.183610916137695 + ], + [ + "▁Remodeling", + -13.183656692504883 + ], + [ + "▁Algeria", + -13.18375015258789 + ], + [ + "Dream", + -13.18377685546875 + ], + [ + "▁mascot", + -13.183836936950684 + ], + [ + "▁Dirt", + -13.183904647827148 + ], + [ + "▁rubble", + -13.18399429321289 + ], + [ + "▁apologise", + -13.184030532836914 + ], + [ + "▁Gambling", + -13.184041023254395 + ], + [ + "▁Derrick", + -13.18404769897461 + ], + [ + "▁cumbersome", + -13.184120178222656 + ], + [ + "▁pizzas", + -13.184124946594238 + ], + [ + "▁gravitational", + -13.184163093566895 + ], + [ + "▁arrogance", + -13.184179306030273 + ], + [ + "▁Chop", + -13.184192657470703 + ], + [ + "▁EOS", + -13.184207916259766 + ], + [ + "▁spree", + -13.184211730957031 + ], + [ + "د", + -13.184244155883789 + ], + [ + "ister", + -13.18425178527832 + ], + [ + "▁Quartet", + -13.184294700622559 + ], + [ + "▁iii", + -13.184303283691406 + ], + [ + "▁passionately", + -13.184348106384277 + ], + [ + "▁cooperating", + -13.184409141540527 + ], + [ + "lund", + -13.184442520141602 + ], + [ + "▁ambassadors", + -13.18447494506836 + ], + [ + "dash", + -13.184536933898926 + ], + [ + "▁Wen", + -13.184576034545898 + ], + [ + "sets", + -13.1846284866333 + ], + [ + "into", + -13.184708595275879 + ], + [ + "rank", + -13.184718132019043 + ], + [ + "¬", + -13.184735298156738 + ], + [ + "▁violet", + -13.184741973876953 + ], + [ + "▁Archie", + -13.184770584106445 + ], + [ + "▁HO", + -13.184812545776367 + ], + [ + "▁escapes", + -13.184823036193848 + ], + [ + "▁Lunar", + -13.184868812561035 + ], + [ + "▁conveying", + -13.184887886047363 + ], + [ + "1970", + -13.184958457946777 + ], + [ + "▁propelled", + -13.184967994689941 + ], + [ + "▁Rookie", + -13.184988975524902 + ], + [ + "▁م", + -13.185063362121582 + ], + [ + "▁landscaped", + -13.185096740722656 + ], + [ + "▁Bark", + -13.18522834777832 + ], + [ + "▁NK", + -13.185256004333496 + ], + [ + "icon", + -13.185330390930176 + ], + [ + "▁235", + -13.185331344604492 + ], + [ + "▁Toro", + -13.18535327911377 + ], + [ + "HF", + -13.185526847839355 + ], + [ + "▁casualty", + -13.185582160949707 + ], + [ + "▁Zhu", + -13.185735702514648 + ], + [ + "tch", + -13.185839653015137 + ], + [ + "▁WATCH", + -13.185885429382324 + ], + [ + "▁Turnbull", + -13.185931205749512 + ], + [ + "▁Heading", + -13.185958862304688 + ], + [ + "▁Hulu", + -13.185978889465332 + ], + [ + "▁Freight", + -13.186010360717773 + ], + [ + "▁perfected", + -13.186029434204102 + ], + [ + "▁Realtor", + -13.186080932617188 + ], + [ + "Nothing", + -13.186224937438965 + ], + [ + "1987", + -13.186238288879395 + ], + [ + "182", + -13.186248779296875 + ], + [ + "regulated", + -13.186256408691406 + ], + [ + "▁Gluten", + -13.186355590820312 + ], + [ + "▁careless", + -13.186369895935059 + ], + [ + "▁Cosmetic", + -13.186394691467285 + ], + [ + "기", + -13.186395645141602 + ], + [ + "below", + -13.186556816101074 + ], + [ + "rou", + -13.18661117553711 + ], + [ + "aza", + -13.18664264678955 + ], + [ + "▁insults", + -13.186685562133789 + ], + [ + "▁chronological", + -13.186747550964355 + ], + [ + "▁cheered", + -13.186765670776367 + ], + [ + "mass", + -13.186869621276855 + ], + [ + "▁WEB", + -13.186874389648438 + ], + [ + "▁Revised", + -13.186885833740234 + ], + [ + "▁homer", + -13.186914443969727 + ], + [ + "pointer", + -13.186918258666992 + ], + [ + "ки", + -13.186995506286621 + ], + [ + "▁guardians", + -13.187040328979492 + ], + [ + "Wood", + -13.187053680419922 + ], + [ + "▁Cameroon", + -13.187057495117188 + ], + [ + "▁woo", + -13.18716812133789 + ], + [ + "fighting", + -13.187252044677734 + ], + [ + "odo", + -13.187312126159668 + ], + [ + "▁Labrador", + -13.187318801879883 + ], + [ + "▁spherical", + -13.18740463256836 + ], + [ + "ν", + -13.187421798706055 + ], + [ + "report", + -13.18752670288086 + ], + [ + "169", + -13.187620162963867 + ], + [ + "▁mating", + -13.187686920166016 + ], + [ + "▁executable", + -13.187723159790039 + ], + [ + "▁syn", + -13.187798500061035 + ], + [ + "▁Axis", + -13.187837600708008 + ], + [ + "▁TSA", + -13.187837600708008 + ], + [ + "▁psi", + -13.187911987304688 + ], + [ + "▁diagnoses", + -13.187921524047852 + ], + [ + "▁tapered", + -13.187941551208496 + ], + [ + "▁undefeated", + -13.18798542022705 + ], + [ + "▁fellows", + -13.188003540039062 + ], + [ + "▁murals", + -13.18801498413086 + ], + [ + "▁Atom", + -13.188206672668457 + ], + [ + "▁filthy", + -13.188217163085938 + ], + [ + "▁semifinals", + -13.188247680664062 + ], + [ + "▁overthrow", + -13.188252449035645 + ], + [ + "▁puzzled", + -13.188276290893555 + ], + [ + "▁Carlisle", + -13.188335418701172 + ], + [ + "▁Truman", + -13.188399314880371 + ], + [ + "▁disabling", + -13.188435554504395 + ], + [ + "▁facilitator", + -13.188508987426758 + ], + [ + "▁Bally", + -13.188575744628906 + ], + [ + "Oct", + -13.188580513000488 + ], + [ + "▁Howe", + -13.18860149383545 + ], + [ + "dina", + -13.188685417175293 + ], + [ + "▁Breeze", + -13.188701629638672 + ], + [ + "FD", + -13.188796997070312 + ], + [ + "▁preset", + -13.188796997070312 + ], + [ + "▁Packages", + -13.188824653625488 + ], + [ + "▁OPEC", + -13.188876152038574 + ], + [ + "▁downfall", + -13.189022064208984 + ], + [ + "igh", + -13.189033508300781 + ], + [ + "refundable", + -13.18907356262207 + ], + [ + "▁Buchanan", + -13.189192771911621 + ], + [ + "▁Galway", + -13.189192771911621 + ], + [ + "▁procure", + -13.189231872558594 + ], + [ + "Lee", + -13.18923568725586 + ], + [ + "▁iv", + -13.189268112182617 + ], + [ + "▁수", + -13.189275741577148 + ], + [ + "▁Roche", + -13.189277648925781 + ], + [ + "tation", + -13.189363479614258 + ], + [ + "▁Snowden", + -13.189383506774902 + ], + [ + "▁exp", + -13.189445495605469 + ], + [ + "▁SME", + -13.18946361541748 + ], + [ + "▁Rudy", + -13.18947696685791 + ], + [ + "released", + -13.189496994018555 + ], + [ + "▁Stacy", + -13.189545631408691 + ], + [ + "460", + -13.189637184143066 + ], + [ + "▁immature", + -13.189770698547363 + ], + [ + "▁fused", + -13.189845085144043 + ], + [ + "issue", + -13.18986701965332 + ], + [ + "ske", + -13.189918518066406 + ], + [ + "▁Barney", + -13.190062522888184 + ], + [ + "PV", + -13.190107345581055 + ], + [ + "146", + -13.19015121459961 + ], + [ + "▁omission", + -13.190200805664062 + ], + [ + "▁asserts", + -13.190242767333984 + ], + [ + "sent", + -13.190254211425781 + ], + [ + "▁balconies", + -13.190361976623535 + ], + [ + "▁pups", + -13.190520286560059 + ], + [ + "Muslim", + -13.190544128417969 + ], + [ + "▁knitted", + -13.19060230255127 + ], + [ + "▁Ei", + -13.190652847290039 + ], + [ + "▁Emanuel", + -13.19066047668457 + ], + [ + "▁mana", + -13.190738677978516 + ], + [ + "▁Amount", + -13.190744400024414 + ], + [ + "HER", + -13.190802574157715 + ], + [ + "guided", + -13.190842628479004 + ], + [ + "▁distinguishing", + -13.190953254699707 + ], + [ + "▁Hydraulic", + -13.190970420837402 + ], + [ + "▁Benz", + -13.191208839416504 + ], + [ + "▁Ade", + -13.191226959228516 + ], + [ + "▁policeman", + -13.191231727600098 + ], + [ + "cart", + -13.191250801086426 + ], + [ + "▁principally", + -13.191253662109375 + ], + [ + "▁tre", + -13.19135856628418 + ], + [ + "▁unjust", + -13.191367149353027 + ], + [ + "▁roar", + -13.191374778747559 + ], + [ + "tap", + -13.191380500793457 + ], + [ + "▁Gut", + -13.191445350646973 + ], + [ + "▁vaping", + -13.191518783569336 + ], + [ + "▁grilling", + -13.1915864944458 + ], + [ + "visit", + -13.191705703735352 + ], + [ + "litre", + -13.19186019897461 + ], + [ + "▁GU", + -13.191934585571289 + ], + [ + "▁quinoa", + -13.19197940826416 + ], + [ + "▁muster", + -13.19201374053955 + ], + [ + "▁Microwave", + -13.192049980163574 + ], + [ + "▁exposition", + -13.19207763671875 + ], + [ + "▁sal", + -13.192110061645508 + ], + [ + "▁proclamation", + -13.192112922668457 + ], + [ + "▁partitions", + -13.192116737365723 + ], + [ + "▁Isles", + -13.192289352416992 + ], + [ + "▁sm", + -13.192322731018066 + ], + [ + "▁Gru", + -13.192325592041016 + ], + [ + "ais", + -13.192360877990723 + ], + [ + "325", + -13.192411422729492 + ], + [ + "▁Keystone", + -13.19243335723877 + ], + [ + "▁slows", + -13.192474365234375 + ], + [ + "▁rigs", + -13.192487716674805 + ], + [ + "▁payouts", + -13.192549705505371 + ], + [ + "▁Plasma", + -13.192611694335938 + ], + [ + "winter", + -13.192652702331543 + ], + [ + "▁sockets", + -13.192708969116211 + ], + [ + "▁Laurent", + -13.19271469116211 + ], + [ + "reach", + -13.192787170410156 + ], + [ + "ook", + -13.192941665649414 + ], + [ + "▁DDR", + -13.192971229553223 + ], + [ + "▁OL", + -13.193009376525879 + ], + [ + "CAM", + -13.193094253540039 + ], + [ + "▁surcharge", + -13.19310188293457 + ], + [ + "▁unveiling", + -13.193212509155273 + ], + [ + "▁bisexual", + -13.193331718444824 + ], + [ + "▁Freud", + -13.193352699279785 + ], + [ + "▁Prescott", + -13.193363189697266 + ], + [ + "▁organically", + -13.193450927734375 + ], + [ + "daughter", + -13.193534851074219 + ], + [ + "▁delaying", + -13.193578720092773 + ], + [ + "▁Unlock", + -13.193634033203125 + ], + [ + "Being", + -13.193681716918945 + ], + [ + "engine", + -13.193812370300293 + ], + [ + "▁Streets", + -13.193816184997559 + ], + [ + "▁scented", + -13.193824768066406 + ], + [ + "▁Cop", + -13.193872451782227 + ], + [ + "▁culminating", + -13.193976402282715 + ], + [ + "▁mountainous", + -13.193981170654297 + ], + [ + "▁Direction", + -13.194108009338379 + ], + [ + "▁gardener", + -13.194123268127441 + ], + [ + "▁swirl", + -13.1941556930542 + ], + [ + "plant", + -13.194273948669434 + ], + [ + "▁edgy", + -13.194355010986328 + ], + [ + "▁proponents", + -13.194417953491211 + ], + [ + "GG", + -13.194554328918457 + ], + [ + "▁Gul", + -13.194602966308594 + ], + [ + "▁Desire", + -13.1946439743042 + ], + [ + "▁Chili", + -13.194750785827637 + ], + [ + "▁Governors", + -13.194928169250488 + ], + [ + "▁treaties", + -13.194939613342285 + ], + [ + "▁Rue", + -13.194948196411133 + ], + [ + "▁mole", + -13.194961547851562 + ], + [ + "▁satire", + -13.195019721984863 + ], + [ + "▁Riders", + -13.19506549835205 + ], + [ + "▁opioids", + -13.195089340209961 + ], + [ + "▁Taipei", + -13.195125579833984 + ], + [ + "▁Leopard", + -13.195146560668945 + ], + [ + "ugh", + -13.195249557495117 + ], + [ + "System", + -13.195267677307129 + ], + [ + "▁fatally", + -13.195267677307129 + ], + [ + "159", + -13.195304870605469 + ], + [ + "▁Byzantine", + -13.19551944732666 + ], + [ + "▁tubular", + -13.195537567138672 + ], + [ + "▁guise", + -13.195545196533203 + ], + [ + "▁cavities", + -13.19558048248291 + ], + [ + "remember", + -13.19559097290039 + ], + [ + "▁eBooks", + -13.19565486907959 + ], + [ + "▁Subway", + -13.195709228515625 + ], + [ + "▁snowfall", + -13.195807456970215 + ], + [ + "▁Robotics", + -13.195833206176758 + ], + [ + "▁Liberia", + -13.195836067199707 + ], + [ + "▁Theft", + -13.195862770080566 + ], + [ + "▁Acquisition", + -13.195873260498047 + ], + [ + "▁Rupert", + -13.1959228515625 + ], + [ + "▁surged", + -13.19595718383789 + ], + [ + "▁bombers", + -13.195963859558105 + ], + [ + "▁expiry", + -13.196027755737305 + ], + [ + "insky", + -13.196157455444336 + ], + [ + "NM", + -13.196167945861816 + ], + [ + "▁Prosecutor", + -13.196197509765625 + ], + [ + "▁Gras", + -13.196208953857422 + ], + [ + "kas", + -13.196327209472656 + ], + [ + "▁Rubin", + -13.196365356445312 + ], + [ + "▁abandoning", + -13.196374893188477 + ], + [ + "▁unfolded", + -13.196480751037598 + ], + [ + "▁pharmaceuticals", + -13.19661808013916 + ], + [ + "▁Boxes", + -13.196717262268066 + ], + [ + "▁modalities", + -13.196718215942383 + ], + [ + "185", + -13.196744918823242 + ], + [ + "▁Malone", + -13.19675350189209 + ], + [ + "▁Hemp", + -13.196764945983887 + ], + [ + "▁Trauma", + -13.196773529052734 + ], + [ + "▁unborn", + -13.196794509887695 + ], + [ + "▁Gucci", + -13.196820259094238 + ], + [ + "Sunday", + -13.19682788848877 + ], + [ + "▁wordpress", + -13.196839332580566 + ], + [ + "▁shabby", + -13.196847915649414 + ], + [ + "patient", + -13.19692325592041 + ], + [ + "▁gu", + -13.197074890136719 + ], + [ + "▁correctness", + -13.197101593017578 + ], + [ + "Path", + -13.197117805480957 + ], + [ + "▁spruce", + -13.197250366210938 + ], + [ + "▁withdrawals", + -13.19727611541748 + ], + [ + "Hill", + -13.197346687316895 + ], + [ + "dip", + -13.197376251220703 + ], + [ + "▁Notebook", + -13.197407722473145 + ], + [ + "bourne", + -13.197446823120117 + ], + [ + "▁withheld", + -13.197556495666504 + ], + [ + "▁Anchorage", + -13.1975679397583 + ], + [ + "▁attribution", + -13.197606086730957 + ], + [ + "lak", + -13.197615623474121 + ], + [ + "▁Homo", + -13.197671890258789 + ], + [ + "▁autobiography", + -13.197685241699219 + ], + [ + "▁evade", + -13.1979341506958 + ], + [ + "toe", + -13.197981834411621 + ], + [ + "▁ammonia", + -13.198019027709961 + ], + [ + "▁fountains", + -13.198043823242188 + ], + [ + "▁roman", + -13.198067665100098 + ], + [ + "▁tangled", + -13.198121070861816 + ], + [ + "▁222", + -13.19826602935791 + ], + [ + "▁Rhino", + -13.198542594909668 + ], + [ + "▁imitate", + -13.1985502243042 + ], + [ + "LER", + -13.198565483093262 + ], + [ + "▁ATS", + -13.198594093322754 + ], + [ + "▁161", + -13.19867992401123 + ], + [ + "▁Hazard", + -13.198881149291992 + ], + [ + "ody", + -13.19888687133789 + ], + [ + "zia", + -13.198904991149902 + ], + [ + "▁lagoon", + -13.19891357421875 + ], + [ + "▁impart", + -13.198966979980469 + ], + [ + "TOR", + -13.198995590209961 + ], + [ + "▁1895", + -13.199067115783691 + ], + [ + "▁bourbon", + -13.199186325073242 + ], + [ + "▁actresses", + -13.199262619018555 + ], + [ + "▁SOME", + -13.199390411376953 + ], + [ + "▁DSL", + -13.199403762817383 + ], + [ + "▁Thou", + -13.199437141418457 + ], + [ + "▁Vault", + -13.199438095092773 + ], + [ + "▁ت", + -13.199539184570312 + ], + [ + "▁Rolex", + -13.199594497680664 + ], + [ + "▁recalling", + -13.199605941772461 + ], + [ + "▁Incident", + -13.199613571166992 + ], + [ + "▁Sail", + -13.199650764465332 + ], + [ + "▁overflowing", + -13.199712753295898 + ], + [ + "▁asteroid", + -13.199935913085938 + ], + [ + "▁triangular", + -13.199947357177734 + ], + [ + "▁Yellowstone", + -13.200008392333984 + ], + [ + "▁hai", + -13.200011253356934 + ], + [ + "▁Knife", + -13.200028419494629 + ], + [ + "▁ramifications", + -13.200040817260742 + ], + [ + "▁esta", + -13.200043678283691 + ], + [ + "▁foes", + -13.200392723083496 + ], + [ + "▁Digest", + -13.200400352478027 + ], + [ + "▁infancy", + -13.200421333312988 + ], + [ + "▁concierge", + -13.200459480285645 + ], + [ + "▁dives", + -13.200559616088867 + ], + [ + "tour", + -13.200590133666992 + ], + [ + "▁parasite", + -13.20067024230957 + ], + [ + "▁absorbs", + -13.20068645477295 + ], + [ + "▁shimmer", + -13.200735092163086 + ], + [ + "▁Scam", + -13.200750350952148 + ], + [ + "▁Exodus", + -13.200767517089844 + ], + [ + "▁fixation", + -13.20080280303955 + ], + [ + "▁HH", + -13.200963020324707 + ], + [ + "▁Handling", + -13.201160430908203 + ], + [ + "▁Disabilities", + -13.201266288757324 + ], + [ + "▁teased", + -13.201359748840332 + ], + [ + "▁Armor", + -13.201364517211914 + ], + [ + "▁Cru", + -13.201423645019531 + ], + [ + "▁aerobic", + -13.201560020446777 + ], + [ + "▁Communion", + -13.201589584350586 + ], + [ + "hoo", + -13.201598167419434 + ], + [ + "▁punt", + -13.201618194580078 + ], + [ + "▁370", + -13.201637268066406 + ], + [ + "▁Venetian", + -13.20174503326416 + ], + [ + "▁Councillor", + -13.201825141906738 + ], + [ + "▁Hin", + -13.201871871948242 + ], + [ + "▁Jacqueline", + -13.201891899108887 + ], + [ + "middle", + -13.201956748962402 + ], + [ + "▁diversify", + -13.201996803283691 + ], + [ + "▁garner", + -13.20211410522461 + ], + [ + "▁Geological", + -13.202143669128418 + ], + [ + "▁antennas", + -13.202179908752441 + ], + [ + "conditioning", + -13.202192306518555 + ], + [ + "▁hindsight", + -13.202216148376465 + ], + [ + "▁seedlings", + -13.202271461486816 + ], + [ + "▁walkway", + -13.202417373657227 + ], + [ + "▁reflux", + -13.20242977142334 + ], + [ + "▁Huffington", + -13.20245361328125 + ], + [ + "▁303", + -13.202580451965332 + ], + [ + "▁Minerals", + -13.202621459960938 + ], + [ + "▁reassurance", + -13.202804565429688 + ], + [ + "▁roaring", + -13.203036308288574 + ], + [ + "▁gran", + -13.203157424926758 + ], + [ + "olds", + -13.203207015991211 + ], + [ + "▁burgeoning", + -13.203262329101562 + ], + [ + "▁candidacy", + -13.203384399414062 + ], + [ + "▁Restore", + -13.203458786010742 + ], + [ + "▁secretion", + -13.203536987304688 + ], + [ + "▁saver", + -13.203572273254395 + ], + [ + "▁birthplace", + -13.20366096496582 + ], + [ + "▁playwright", + -13.20366382598877 + ], + [ + "▁Mouth", + -13.203776359558105 + ], + [ + "stress", + -13.204044342041016 + ], + [ + "▁nutshell", + -13.204050064086914 + ], + [ + "▁Elsa", + -13.204072952270508 + ], + [ + "▁AOL", + -13.204115867614746 + ], + [ + "▁hoops", + -13.204146385192871 + ], + [ + "177", + -13.204239845275879 + ], + [ + "▁Levels", + -13.204240798950195 + ], + [ + "history", + -13.20426082611084 + ], + [ + "qualified", + -13.204330444335938 + ], + [ + "nite", + -13.204360008239746 + ], + [ + "▁Clifton", + -13.204381942749023 + ], + [ + "▁councillors", + -13.204389572143555 + ], + [ + "▁Whale", + -13.204431533813477 + ], + [ + "▁GREEN", + -13.20459270477295 + ], + [ + "▁dar", + -13.204615592956543 + ], + [ + "▁UM", + -13.204618453979492 + ], + [ + "▁Atlantis", + -13.204656600952148 + ], + [ + "▁Diy", + -13.2047119140625 + ], + [ + "▁lapse", + -13.204744338989258 + ], + [ + "heat", + -13.204776763916016 + ], + [ + "Give", + -13.204874992370605 + ], + [ + "152", + -13.204913139343262 + ], + [ + "▁Peri", + -13.20492172241211 + ], + [ + "ulating", + -13.204940795898438 + ], + [ + "▁pinnacle", + -13.204962730407715 + ], + [ + "▁nourish", + -13.204964637756348 + ], + [ + "▁Olympia", + -13.204977035522461 + ], + [ + "▁Puppy", + -13.205049514770508 + ], + [ + "▁CAM", + -13.20508861541748 + ], + [ + "▁anomaly", + -13.205093383789062 + ], + [ + "▁Centennial", + -13.205116271972656 + ], + [ + "▁duvet", + -13.205163955688477 + ], + [ + "▁subdued", + -13.205185890197754 + ], + [ + "▁Dashboard", + -13.205302238464355 + ], + [ + "▁golfer", + -13.205327987670898 + ], + [ + "▁fibres", + -13.205338478088379 + ], + [ + "▁Hurricanes", + -13.205350875854492 + ], + [ + "▁abandonment", + -13.205366134643555 + ], + [ + "▁encyclopedia", + -13.205537796020508 + ], + [ + "▁fossils", + -13.205615043640137 + ], + [ + "▁derby", + -13.205623626708984 + ], + [ + "▁gro", + -13.20564079284668 + ], + [ + "▁prevailed", + -13.205642700195312 + ], + [ + "▁Challenger", + -13.205678939819336 + ], + [ + "▁nick", + -13.20572280883789 + ], + [ + "GF", + -13.205745697021484 + ], + [ + "pf", + -13.205748558044434 + ], + [ + "▁attainable", + -13.205780029296875 + ], + [ + "▁pilgrims", + -13.205790519714355 + ], + [ + "▁challenger", + -13.205824851989746 + ], + [ + "249", + -13.205862998962402 + ], + [ + "ordered", + -13.205881118774414 + ], + [ + "▁Jackets", + -13.20595932006836 + ], + [ + "wei", + -13.205978393554688 + ], + [ + "▁Alfa", + -13.205978393554688 + ], + [ + "sche", + -13.206023216247559 + ], + [ + "▁oppressive", + -13.206028938293457 + ], + [ + "▁Colon", + -13.206097602844238 + ], + [ + "▁NG", + -13.206141471862793 + ], + [ + "▁smashing", + -13.206144332885742 + ], + [ + "TED", + -13.206171989440918 + ], + [ + "▁Beethoven", + -13.206228256225586 + ], + [ + "sites", + -13.206229209899902 + ], + [ + "▁rollout", + -13.206298828125 + ], + [ + "▁Bombay", + -13.20644474029541 + ], + [ + "API", + -13.206574440002441 + ], + [ + "▁timeout", + -13.206626892089844 + ], + [ + "är", + -13.20663070678711 + ], + [ + "▁Leaves", + -13.206645011901855 + ], + [ + "▁dialect", + -13.206646919250488 + ], + [ + "▁Diary", + -13.20674991607666 + ], + [ + "▁peeled", + -13.2068452835083 + ], + [ + "▁Fringe", + -13.207032203674316 + ], + [ + "▁solves", + -13.207056999206543 + ], + [ + "▁taboo", + -13.207056999206543 + ], + [ + "▁Clive", + -13.207202911376953 + ], + [ + "gren", + -13.207212448120117 + ], + [ + "▁DOWN", + -13.207228660583496 + ], + [ + "▁Hog", + -13.207247734069824 + ], + [ + "▁Roads", + -13.207304000854492 + ], + [ + "▁Peanut", + -13.207308769226074 + ], + [ + "▁selfies", + -13.207319259643555 + ], + [ + "▁ransom", + -13.207338333129883 + ], + [ + "ses", + -13.20738410949707 + ], + [ + "▁Angry", + -13.207484245300293 + ], + [ + "▁Contents", + -13.207498550415039 + ], + [ + "▁coupe", + -13.207592010498047 + ], + [ + "▁wicker", + -13.207599639892578 + ], + [ + "▁Accountability", + -13.207625389099121 + ], + [ + "▁Abigail", + -13.207636833190918 + ], + [ + "▁rom", + -13.207653999328613 + ], + [ + "▁amps", + -13.207662582397461 + ], + [ + "forum", + -13.207670211791992 + ], + [ + "bey", + -13.207737922668457 + ], + [ + "French", + -13.207878112792969 + ], + [ + "fresh", + -13.207913398742676 + ], + [ + "Made", + -13.207925796508789 + ], + [ + "▁Cosby", + -13.20798397064209 + ], + [ + "▁VIDEO", + -13.208033561706543 + ], + [ + "▁Wishing", + -13.208199501037598 + ], + [ + "▁Hamlet", + -13.208202362060547 + ], + [ + "balanced", + -13.20830249786377 + ], + [ + "▁Blossom", + -13.208476066589355 + ], + [ + "▁spying", + -13.208478927612305 + ], + [ + "▁london", + -13.20849895477295 + ], + [ + "KI", + -13.208632469177246 + ], + [ + "▁amplification", + -13.208730697631836 + ], + [ + "▁sanding", + -13.208738327026367 + ], + [ + "Saturday", + -13.208761215209961 + ], + [ + "▁prescribing", + -13.208778381347656 + ], + [ + "▁snag", + -13.208908081054688 + ], + [ + "▁Gibbs", + -13.208928108215332 + ], + [ + "hra", + -13.209096908569336 + ], + [ + "▁weakest", + -13.20914363861084 + ], + [ + "▁Bron", + -13.209158897399902 + ], + [ + "▁Pew", + -13.209189414978027 + ], + [ + "▁maize", + -13.209200859069824 + ], + [ + "▁Garbage", + -13.209277153015137 + ], + [ + "▁unnatural", + -13.209354400634766 + ], + [ + "न", + -13.209402084350586 + ], + [ + "▁nook", + -13.209447860717773 + ], + [ + "▁permissible", + -13.209458351135254 + ], + [ + "▁inscription", + -13.20948314666748 + ], + [ + "▁nga", + -13.209587097167969 + ], + [ + "▁han", + -13.209609985351562 + ], + [ + "▁Accent", + -13.209650993347168 + ], + [ + "tain", + -13.209692001342773 + ], + [ + "▁excerpts", + -13.209771156311035 + ], + [ + "ath", + -13.209848403930664 + ], + [ + "sti", + -13.2098970413208 + ], + [ + "▁JW", + -13.210058212280273 + ], + [ + "▁tagging", + -13.210076332092285 + ], + [ + "▁Staples", + -13.210094451904297 + ], + [ + "▁Lorenzo", + -13.210124015808105 + ], + [ + "▁£", + -13.210136413574219 + ], + [ + "▁Losing", + -13.210153579711914 + ], + [ + "▁alas", + -13.210161209106445 + ], + [ + "▁Percy", + -13.210171699523926 + ], + [ + "Semitism", + -13.210211753845215 + ], + [ + "▁php", + -13.210214614868164 + ], + [ + "▁walker", + -13.21036434173584 + ], + [ + "▁nests", + -13.210373878479004 + ], + [ + "▁renovating", + -13.210379600524902 + ], + [ + "eka", + -13.210429191589355 + ], + [ + "▁swapping", + -13.21043586730957 + ], + [ + "▁Bridal", + -13.210564613342285 + ], + [ + "▁outages", + -13.210587501525879 + ], + [ + "▁alloys", + -13.210590362548828 + ], + [ + "▁Entrepreneur", + -13.210622787475586 + ], + [ + "▁predicament", + -13.210658073425293 + ], + [ + "▁NEXT", + -13.21076488494873 + ], + [ + "▁teak", + -13.210808753967285 + ], + [ + "▁anomalies", + -13.210865020751953 + ], + [ + "ò", + -13.210932731628418 + ], + [ + "▁commend", + -13.210948944091797 + ], + [ + "prop", + -13.21097469329834 + ], + [ + "▁increments", + -13.21108627319336 + ], + [ + "pointers", + -13.211297988891602 + ], + [ + "▁browned", + -13.2113618850708 + ], + [ + "▁mildew", + -13.211397171020508 + ], + [ + "▁sails", + -13.211416244506836 + ], + [ + "▁Hairstyles", + -13.211515426635742 + ], + [ + "▁Toll", + -13.211549758911133 + ], + [ + "▁Lobby", + -13.211551666259766 + ], + [ + "▁Fathers", + -13.211553573608398 + ], + [ + "asia", + -13.211779594421387 + ], + [ + "sorry", + -13.21181583404541 + ], + [ + "▁Mic", + -13.211888313293457 + ], + [ + "1⁄4", + -13.211891174316406 + ], + [ + "▁onstage", + -13.211894035339355 + ], + [ + "▁Gorge", + -13.211946487426758 + ], + [ + "▁Stamford", + -13.212067604064941 + ], + [ + "▁risking", + -13.212115287780762 + ], + [ + "▁ascend", + -13.212291717529297 + ], + [ + "▁Assets", + -13.212342262268066 + ], + [ + "▁stalking", + -13.212358474731445 + ], + [ + "▁Snapdragon", + -13.212372779846191 + ], + [ + "▁Duterte", + -13.212464332580566 + ], + [ + "▁boutiques", + -13.212504386901855 + ], + [ + "▁horrors", + -13.21253776550293 + ], + [ + "Hub", + -13.212570190429688 + ], + [ + "▁captivity", + -13.212615013122559 + ], + [ + "223", + -13.21265697479248 + ], + [ + "budget", + -13.21268367767334 + ], + [ + "▁decadent", + -13.212718963623047 + ], + [ + "▁FAST", + -13.212719917297363 + ], + [ + "▁visceral", + -13.212722778320312 + ], + [ + "▁inventories", + -13.212723731994629 + ], + [ + "▁masonry", + -13.21279239654541 + ], + [ + "▁hetero", + -13.212810516357422 + ], + [ + "▁complied", + -13.21285629272461 + ], + [ + "▁glaring", + -13.212858200073242 + ], + [ + "▁reluctantly", + -13.212898254394531 + ], + [ + "Sam", + -13.212963104248047 + ], + [ + "▁Devin", + -13.212970733642578 + ], + [ + "▁unheard", + -13.213013648986816 + ], + [ + "▁congregations", + -13.213071823120117 + ], + [ + "Track", + -13.213173866271973 + ], + [ + "▁HU", + -13.213174819946289 + ], + [ + "Bad", + -13.213232040405273 + ], + [ + "appointed", + -13.213274002075195 + ], + [ + "▁Andhra", + -13.213469505310059 + ], + [ + "south", + -13.213522911071777 + ], + [ + "▁Buick", + -13.213543891906738 + ], + [ + "▁thirsty", + -13.213550567626953 + ], + [ + "148", + -13.21362590789795 + ], + [ + "▁toughness", + -13.2139253616333 + ], + [ + "▁Winds", + -13.213943481445312 + ], + [ + "▁solder", + -13.214057922363281 + ], + [ + "▁coughing", + -13.21408462524414 + ], + [ + "▁290", + -13.214117050170898 + ], + [ + "▁Conor", + -13.214197158813477 + ], + [ + "▁Blonde", + -13.2142333984375 + ], + [ + "▁Millennials", + -13.214245796203613 + ], + [ + "▁ALS", + -13.214287757873535 + ], + [ + "▁carbonate", + -13.214338302612305 + ], + [ + "▁verbs", + -13.214351654052734 + ], + [ + "extra", + -13.214377403259277 + ], + [ + "Nov", + -13.214378356933594 + ], + [ + "▁deployments", + -13.214398384094238 + ], + [ + "renowned", + -13.214410781860352 + ], + [ + "▁sugary", + -13.214412689208984 + ], + [ + "▁chopping", + -13.214472770690918 + ], + [ + "▁unethical", + -13.214502334594727 + ], + [ + "▁Ding", + -13.214508056640625 + ], + [ + "▁shoved", + -13.214531898498535 + ], + [ + "▁Weapons", + -13.214595794677734 + ], + [ + "▁1⁄4", + -13.214674949645996 + ], + [ + "▁Ped", + -13.21468734741211 + ], + [ + "▁Sent", + -13.21469783782959 + ], + [ + "▁Lansing", + -13.214774131774902 + ], + [ + "▁discriminatory", + -13.214818954467773 + ], + [ + "ullah", + -13.214898109436035 + ], + [ + "▁Rancho", + -13.214957237243652 + ], + [ + "▁Grandpa", + -13.215031623840332 + ], + [ + "▁Lor", + -13.215120315551758 + ], + [ + "▁Seen", + -13.215130805969238 + ], + [ + "▁Blackburn", + -13.215171813964844 + ], + [ + "én", + -13.21535587310791 + ], + [ + "▁rhyme", + -13.21535587310791 + ], + [ + "▁Sparks", + -13.215415954589844 + ], + [ + "▁Levin", + -13.215435981750488 + ], + [ + "▁SpaceX", + -13.215441703796387 + ], + [ + "▁173", + -13.215534210205078 + ], + [ + "▁Cecil", + -13.215641021728516 + ], + [ + "▁Natasha", + -13.215667724609375 + ], + [ + "Gi", + -13.21579360961914 + ], + [ + "Non", + -13.215882301330566 + ], + [ + "Fest", + -13.216012001037598 + ], + [ + "▁MFA", + -13.216079711914062 + ], + [ + "▁excludes", + -13.216089248657227 + ], + [ + "▁summaries", + -13.216111183166504 + ], + [ + "▁CK", + -13.216130256652832 + ], + [ + "▁Lem", + -13.216340065002441 + ], + [ + "▁REST", + -13.216361045837402 + ], + [ + "▁Grim", + -13.21642017364502 + ], + [ + "▁Biography", + -13.216484069824219 + ], + [ + "234", + -13.216540336608887 + ], + [ + "▁shove", + -13.216552734375 + ], + [ + "▁Able", + -13.216667175292969 + ], + [ + "▁washable", + -13.216687202453613 + ], + [ + "▁wards", + -13.216774940490723 + ], + [ + "▁edging", + -13.21682357788086 + ], + [ + "▁Giovanni", + -13.217041969299316 + ], + [ + "▁Accept", + -13.217169761657715 + ], + [ + "EZ", + -13.217235565185547 + ], + [ + "▁Mines", + -13.217259407043457 + ], + [ + "▁Asphalt", + -13.217281341552734 + ], + [ + "▁relieving", + -13.217290878295898 + ], + [ + "▁substrates", + -13.217317581176758 + ], + [ + "▁Cooling", + -13.217351913452148 + ], + [ + "▁abolished", + -13.217389106750488 + ], + [ + "▁Scotch", + -13.217489242553711 + ], + [ + "visual", + -13.217521667480469 + ], + [ + "▁promoters", + -13.21755599975586 + ], + [ + "disciplinary", + -13.217558860778809 + ], + [ + "▁recyclable", + -13.217589378356934 + ], + [ + "▁fairs", + -13.21762752532959 + ], + [ + "beta", + -13.217689514160156 + ], + [ + "▁ROCK", + -13.217719078063965 + ], + [ + "ango", + -13.217730522155762 + ], + [ + "▁confines", + -13.217766761779785 + ], + [ + "▁Riviera", + -13.217778205871582 + ], + [ + "▁hammered", + -13.21799087524414 + ], + [ + "▁1899", + -13.218238830566406 + ], + [ + "▁Locke", + -13.218270301818848 + ], + [ + "▁awarding", + -13.218318939208984 + ], + [ + "▁intimately", + -13.21833324432373 + ], + [ + "▁sow", + -13.218439102172852 + ], + [ + "▁illuminating", + -13.218462944030762 + ], + [ + "▁Shay", + -13.218490600585938 + ], + [ + "▁Stevie", + -13.218507766723633 + ], + [ + "▁AMP", + -13.218525886535645 + ], + [ + "499", + -13.218576431274414 + ], + [ + "▁Kinder", + -13.218612670898438 + ], + [ + "▁Dexter", + -13.218643188476562 + ], + [ + "▁spectra", + -13.21874713897705 + ], + [ + "appa", + -13.218761444091797 + ], + [ + "▁germ", + -13.218857765197754 + ], + [ + "▁tortilla", + -13.218979835510254 + ], + [ + "▁slit", + -13.219017028808594 + ], + [ + "▁barber", + -13.219026565551758 + ], + [ + "▁ѕ", + -13.219029426574707 + ], + [ + "▁federally", + -13.219162940979004 + ], + [ + "rol", + -13.219192504882812 + ], + [ + "▁withdrawing", + -13.219198226928711 + ], + [ + "▁fortified", + -13.219230651855469 + ], + [ + "▁linens", + -13.219301223754883 + ], + [ + "JC", + -13.219334602355957 + ], + [ + "▁mare", + -13.219364166259766 + ], + [ + "▁183", + -13.219367027282715 + ], + [ + "▁setbacks", + -13.219420433044434 + ], + [ + "▁omissions", + -13.21942138671875 + ], + [ + "0183", + -13.2194242477417 + ], + [ + "▁microbes", + -13.219573974609375 + ], + [ + "cos", + -13.219614028930664 + ], + [ + "▁Mahal", + -13.219625473022461 + ], + [ + "▁dramas", + -13.219637870788574 + ], + [ + "305", + -13.219685554504395 + ], + [ + "Bay", + -13.219738006591797 + ], + [ + "▁sandstone", + -13.21977710723877 + ], + [ + "▁Mosaic", + -13.219801902770996 + ], + [ + "▁Buffy", + -13.219822883605957 + ], + [ + "▁Surveillance", + -13.219844818115234 + ], + [ + "morph", + -13.219846725463867 + ], + [ + "▁Medina", + -13.219860076904297 + ], + [ + "▁YEAR", + -13.219893455505371 + ], + [ + "▁Technique", + -13.219929695129395 + ], + [ + "stin", + -13.220049858093262 + ], + [ + "Sh", + -13.220118522644043 + ], + [ + "▁mediums", + -13.220120429992676 + ], + [ + "aware", + -13.220123291015625 + ], + [ + "▁Assault", + -13.220186233520508 + ], + [ + "▁changer", + -13.220301628112793 + ], + [ + "▁grapefruit", + -13.220357894897461 + ], + [ + "▁admins", + -13.220358848571777 + ], + [ + "appropriate", + -13.220366477966309 + ], + [ + "▁Tradition", + -13.220396041870117 + ], + [ + "▁Peoples", + -13.220416069030762 + ], + [ + "▁starvation", + -13.22050666809082 + ], + [ + "▁dopamine", + -13.220524787902832 + ], + [ + "▁Hubbard", + -13.220684051513672 + ], + [ + "▁Angelo", + -13.220731735229492 + ], + [ + "whatever", + -13.220734596252441 + ], + [ + "▁wearer", + -13.220734596252441 + ], + [ + "▁phenotype", + -13.220794677734375 + ], + [ + "▁Stakes", + -13.220858573913574 + ], + [ + "▁microsoft", + -13.220878601074219 + ], + [ + "▁Couch", + -13.221124649047852 + ], + [ + "▁restraining", + -13.221208572387695 + ], + [ + "▁summed", + -13.221232414245605 + ], + [ + "▁favoured", + -13.221299171447754 + ], + [ + "▁wrestle", + -13.22137451171875 + ], + [ + "▁monsoon", + -13.221375465393066 + ], + [ + "▁omit", + -13.221397399902344 + ], + [ + "▁harming", + -13.221413612365723 + ], + [ + "Peter", + -13.221633911132812 + ], + [ + "Us", + -13.221656799316406 + ], + [ + "▁Dy", + -13.221721649169922 + ], + [ + "▁Sang", + -13.221779823303223 + ], + [ + "▁tint", + -13.221816062927246 + ], + [ + "▁collusion", + -13.221827507019043 + ], + [ + "▁Conan", + -13.221856117248535 + ], + [ + "777", + -13.221891403198242 + ], + [ + "▁Sasha", + -13.221967697143555 + ], + [ + "▁RW", + -13.22197151184082 + ], + [ + "▁Cuisine", + -13.222006797790527 + ], + [ + "▁Austen", + -13.222052574157715 + ], + [ + "▁robes", + -13.222139358520508 + ], + [ + "231", + -13.222250938415527 + ], + [ + "▁comedic", + -13.222389221191406 + ], + [ + "▁interceptions", + -13.22254467010498 + ], + [ + "र", + -13.22256088256836 + ], + [ + "する", + -13.222644805908203 + ], + [ + "▁perch", + -13.222661018371582 + ], + [ + "▁LAW", + -13.222825050354004 + ], + [ + "▁Leap", + -13.222993850708008 + ], + [ + "rez", + -13.22307300567627 + ], + [ + "▁outsource", + -13.22320556640625 + ], + [ + "▁Yea", + -13.223417282104492 + ], + [ + "▁Passenger", + -13.223424911499023 + ], + [ + "▁effected", + -13.223503112792969 + ], + [ + "▁california", + -13.22350788116455 + ], + [ + "Che", + -13.223543167114258 + ], + [ + "▁Zar", + -13.22357177734375 + ], + [ + "▁Oreo", + -13.223579406738281 + ], + [ + "▁unfairly", + -13.223639488220215 + ], + [ + "wow", + -13.223675727844238 + ], + [ + "▁ich", + -13.223675727844238 + ], + [ + "reported", + -13.223699569702148 + ], + [ + "▁sie", + -13.223786354064941 + ], + [ + "▁homestead", + -13.223793983459473 + ], + [ + "▁avoids", + -13.223816871643066 + ], + [ + "▁bartender", + -13.223970413208008 + ], + [ + "AW", + -13.223978042602539 + ], + [ + "tale", + -13.224007606506348 + ], + [ + "▁portrays", + -13.224043846130371 + ], + [ + "hook", + -13.2240571975708 + ], + [ + "lining", + -13.224114418029785 + ], + [ + "207", + -13.224149703979492 + ], + [ + "▁entrenched", + -13.224160194396973 + ], + [ + "▁Sending", + -13.224254608154297 + ], + [ + "▁nonfiction", + -13.22425651550293 + ], + [ + "▁impeachment", + -13.224268913269043 + ], + [ + "▁tabletop", + -13.224273681640625 + ], + [ + "▁dads", + -13.224312782287598 + ], + [ + "▁petite", + -13.224312782287598 + ], + [ + "▁Pillow", + -13.224387168884277 + ], + [ + "й", + -13.224467277526855 + ], + [ + "▁Sanskrit", + -13.224479675292969 + ], + [ + "▁dB", + -13.224507331848145 + ], + [ + "rep", + -13.224628448486328 + ], + [ + "▁KE", + -13.224630355834961 + ], + [ + "▁selects", + -13.224668502807617 + ], + [ + "▁garnish", + -13.2247314453125 + ], + [ + "▁alluring", + -13.224745750427246 + ], + [ + "▁busted", + -13.224750518798828 + ], + [ + "lander", + -13.224817276000977 + ], + [ + "▁ingenious", + -13.22485065460205 + ], + [ + "▁taxing", + -13.22486686706543 + ], + [ + "▁duplication", + -13.224957466125488 + ], + [ + "bil", + -13.22507095336914 + ], + [ + "▁Niger", + -13.225102424621582 + ], + [ + "▁Yong", + -13.225135803222656 + ], + [ + "▁PSP", + -13.225180625915527 + ], + [ + "▁linux", + -13.22527027130127 + ], + [ + "▁stupidity", + -13.225295066833496 + ], + [ + "OUR", + -13.2253999710083 + ], + [ + "▁Janeiro", + -13.225452423095703 + ], + [ + "achi", + -13.225482940673828 + ], + [ + "▁emblem", + -13.225510597229004 + ], + [ + "rar", + -13.225550651550293 + ], + [ + "▁barcode", + -13.225605010986328 + ], + [ + "▁305", + -13.225608825683594 + ], + [ + "corn", + -13.225632667541504 + ], + [ + "augh", + -13.225658416748047 + ], + [ + "▁smack", + -13.225665092468262 + ], + [ + "Stream", + -13.22572135925293 + ], + [ + "▁Bod", + -13.225834846496582 + ], + [ + "pages", + -13.22605037689209 + ], + [ + "▁STOP", + -13.226064682006836 + ], + [ + "▁Mash", + -13.226096153259277 + ], + [ + "▁dunk", + -13.226237297058105 + ], + [ + "▁Fog", + -13.22624397277832 + ], + [ + "▁Computational", + -13.226253509521484 + ], + [ + "▁inaugurated", + -13.226289749145508 + ], + [ + "▁Fellows", + -13.226339340209961 + ], + [ + "▁forbid", + -13.226341247558594 + ], + [ + "▁Jewel", + -13.226592063903809 + ], + [ + "▁overlooks", + -13.226723670959473 + ], + [ + "▁stereotype", + -13.226727485656738 + ], + [ + "▁Fever", + -13.226754188537598 + ], + [ + "ت", + -13.226778030395508 + ], + [ + "▁blower", + -13.226834297180176 + ], + [ + "▁Entrepreneurship", + -13.226866722106934 + ], + [ + "▁laminated", + -13.226912498474121 + ], + [ + "▁Reyes", + -13.226938247680664 + ], + [ + "▁bitten", + -13.226948738098145 + ], + [ + "▁divisive", + -13.226953506469727 + ], + [ + "1986", + -13.226978302001953 + ], + [ + "▁Creativity", + -13.2269926071167 + ], + [ + "▁unnecessarily", + -13.22706413269043 + ], + [ + "▁Govt", + -13.227149963378906 + ], + [ + "beam", + -13.227217674255371 + ], + [ + "ABC", + -13.227267265319824 + ], + [ + "▁polyurethane", + -13.22728443145752 + ], + [ + "▁Memo", + -13.22730827331543 + ], + [ + "▁reflex", + -13.227370262145996 + ], + [ + "TW", + -13.227380752563477 + ], + [ + "▁Jain", + -13.22739028930664 + ], + [ + "▁😉", + -13.227404594421387 + ], + [ + "rata", + -13.227458000183105 + ], + [ + "▁dealerships", + -13.227508544921875 + ], + [ + "▁Sharif", + -13.227524757385254 + ], + [ + "345", + -13.227540969848633 + ], + [ + "▁lastly", + -13.227556228637695 + ], + [ + "▁Zhou", + -13.227560997009277 + ], + [ + "bass", + -13.227596282958984 + ], + [ + "▁Kushner", + -13.227604866027832 + ], + [ + "▁remodeled", + -13.227648735046387 + ], + [ + "▁MOD", + -13.227684020996094 + ], + [ + "303", + -13.22768497467041 + ], + [ + "▁Cinderella", + -13.22769546508789 + ], + [ + "▁undertook", + -13.227754592895508 + ], + [ + "▁fireplaces", + -13.227802276611328 + ], + [ + "▁Directorate", + -13.22787857055664 + ], + [ + "▁celestial", + -13.227896690368652 + ], + [ + "▁Sonny", + -13.227994918823242 + ], + [ + "п", + -13.228005409240723 + ], + [ + "lag", + -13.228018760681152 + ], + [ + "▁Olivier", + -13.228044509887695 + ], + [ + "▁SMART", + -13.22806167602539 + ], + [ + "uria", + -13.228155136108398 + ], + [ + "▁Hanover", + -13.228182792663574 + ], + [ + "▁Cologne", + -13.228192329406738 + ], + [ + "▁lash", + -13.228336334228516 + ], + [ + "▁Navi", + -13.2283935546875 + ], + [ + "enda", + -13.228455543518066 + ], + [ + "France", + -13.228522300720215 + ], + [ + "▁Gau", + -13.22854232788086 + ], + [ + "▁soaps", + -13.228633880615234 + ], + [ + "▁Woodland", + -13.228681564331055 + ], + [ + "fulness", + -13.228736877441406 + ], + [ + "▁squirrels", + -13.228750228881836 + ], + [ + "▁Rooney", + -13.228899002075195 + ], + [ + "▁Asking", + -13.228947639465332 + ], + [ + "activated", + -13.22895336151123 + ], + [ + "▁Permit", + -13.229002952575684 + ], + [ + "▁ballroom", + -13.229007720947266 + ], + [ + "▁strapped", + -13.229028701782227 + ], + [ + "ume", + -13.229098320007324 + ], + [ + "▁dialysis", + -13.229177474975586 + ], + [ + "▁behaving", + -13.229279518127441 + ], + [ + "▁preservatives", + -13.229304313659668 + ], + [ + "▁memorandum", + -13.229409217834473 + ], + [ + "▁barking", + -13.2294340133667 + ], + [ + "▁Alba", + -13.22945785522461 + ], + [ + "everything", + -13.229564666748047 + ], + [ + "▁insulating", + -13.22964096069336 + ], + [ + "VP", + -13.229641914367676 + ], + [ + "228", + -13.22966194152832 + ], + [ + "▁JK", + -13.229710578918457 + ], + [ + "wild", + -13.229744911193848 + ], + [ + "▁jargon", + -13.229772567749023 + ], + [ + "▁bowed", + -13.229864120483398 + ], + [ + "▁Depth", + -13.229941368103027 + ], + [ + "▁redundancy", + -13.229986190795898 + ], + [ + "eux", + -13.230026245117188 + ], + [ + "▁Crop", + -13.230109214782715 + ], + [ + "loc", + -13.230161666870117 + ], + [ + "▁trump", + -13.230222702026367 + ], + [ + "▁Himalayan", + -13.230250358581543 + ], + [ + "lights", + -13.230299949645996 + ], + [ + "▁pregnancies", + -13.230310440063477 + ], + [ + "▁puree", + -13.23031234741211 + ], + [ + "kur", + -13.230314254760742 + ], + [ + "viagra", + -13.230364799499512 + ], + [ + "▁paralysis", + -13.230467796325684 + ], + [ + "▁shootout", + -13.230541229248047 + ], + [ + "Grand", + -13.230607032775879 + ], + [ + "▁Moose", + -13.230609893798828 + ], + [ + "Force", + -13.23066234588623 + ], + [ + "forth", + -13.230681419372559 + ], + [ + "▁Dont", + -13.230703353881836 + ], + [ + "▁Ricardo", + -13.230709075927734 + ], + [ + "▁Fuse", + -13.2307767868042 + ], + [ + "financial", + -13.230796813964844 + ], + [ + "▁Libyan", + -13.23079776763916 + ], + [ + "▁compounded", + -13.230813980102539 + ], + [ + "▁Juvenile", + -13.230913162231445 + ], + [ + "▁disclaimer", + -13.230916023254395 + ], + [ + "▁interviewer", + -13.23095703125 + ], + [ + "▁Borg", + -13.23106575012207 + ], + [ + "▁Livingston", + -13.231157302856445 + ], + [ + "▁contractions", + -13.231194496154785 + ], + [ + "▁philanthropic", + -13.231208801269531 + ], + [ + "▁glide", + -13.231255531311035 + ], + [ + "▁Personalized", + -13.231267929077148 + ], + [ + "▁Bharat", + -13.231292724609375 + ], + [ + "▁creditor", + -13.231378555297852 + ], + [ + "▁Ezra", + -13.231390953063965 + ], + [ + "▁scalability", + -13.231435775756836 + ], + [ + "▁mason", + -13.231565475463867 + ], + [ + "vit", + -13.231578826904297 + ], + [ + "▁Tiles", + -13.23161792755127 + ], + [ + "▁cleanser", + -13.231624603271484 + ], + [ + "▁Madame", + -13.23165512084961 + ], + [ + "▁Adoption", + -13.231734275817871 + ], + [ + "Pop", + -13.231776237487793 + ], + [ + "▁revel", + -13.23178482055664 + ], + [ + "▁motivates", + -13.231795310974121 + ], + [ + "▁cupboards", + -13.231902122497559 + ], + [ + "▁Dundee", + -13.231945991516113 + ], + [ + "error", + -13.231985092163086 + ], + [ + "MH", + -13.232166290283203 + ], + [ + "inski", + -13.232211112976074 + ], + [ + "▁witches", + -13.232261657714844 + ], + [ + "Central", + -13.232311248779297 + ], + [ + "WF", + -13.232345581054688 + ], + [ + "▁terraces", + -13.232357025146484 + ], + [ + "▁Vega", + -13.232440948486328 + ], + [ + "rounded", + -13.232461929321289 + ], + [ + "▁swapped", + -13.23247241973877 + ], + [ + "▁firefighter", + -13.232518196105957 + ], + [ + "▁£9", + -13.232528686523438 + ], + [ + "▁reactors", + -13.232548713684082 + ], + [ + "224", + -13.232561111450195 + ], + [ + "▁Kathmandu", + -13.232599258422852 + ], + [ + "mean", + -13.232636451721191 + ], + [ + "▁passports", + -13.232677459716797 + ], + [ + "▁NVIDIA", + -13.232758522033691 + ], + [ + "mah", + -13.233067512512207 + ], + [ + "▁Alberto", + -13.233224868774414 + ], + [ + "ality", + -13.233343124389648 + ], + [ + "▁dummy", + -13.233396530151367 + ], + [ + "none", + -13.233405113220215 + ], + [ + "Mag", + -13.233419418334961 + ], + [ + "ル", + -13.233476638793945 + ], + [ + "▁Whip", + -13.233521461486816 + ], + [ + "▁futile", + -13.233556747436523 + ], + [ + "▁oysters", + -13.233556747436523 + ], + [ + "▁Pty", + -13.23359203338623 + ], + [ + "▁pleasurable", + -13.233595848083496 + ], + [ + "▁Carla", + -13.233811378479004 + ], + [ + "▁Comfortable", + -13.233819007873535 + ], + [ + "▁fragrances", + -13.233860969543457 + ], + [ + "▁bluetooth", + -13.2340087890625 + ], + [ + "kids", + -13.234090805053711 + ], + [ + "▁logistical", + -13.234100341796875 + ], + [ + "▁reliant", + -13.234161376953125 + ], + [ + "acy", + -13.23422622680664 + ], + [ + "б", + -13.23425579071045 + ], + [ + "▁axes", + -13.234396934509277 + ], + [ + "flu", + -13.234474182128906 + ], + [ + "▁clones", + -13.234476089477539 + ], + [ + "195", + -13.234489440917969 + ], + [ + "▁disguised", + -13.234529495239258 + ], + [ + "▁THEIR", + -13.234546661376953 + ], + [ + "▁proprietor", + -13.234561920166016 + ], + [ + "▁pancake", + -13.234580993652344 + ], + [ + "▁Amid", + -13.234713554382324 + ], + [ + "▁understatement", + -13.234739303588867 + ], + [ + "▁Themes", + -13.234919548034668 + ], + [ + "lai", + -13.235036849975586 + ], + [ + "▁baker", + -13.235099792480469 + ], + [ + "anya", + -13.235152244567871 + ], + [ + "hero", + -13.235176086425781 + ], + [ + "▁diffuser", + -13.235218048095703 + ], + [ + "ën", + -13.235292434692383 + ], + [ + "Qaeda", + -13.235359191894531 + ], + [ + "▁Forecast", + -13.235403060913086 + ], + [ + "jit", + -13.235544204711914 + ], + [ + "▁penetrating", + -13.235748291015625 + ], + [ + "151", + -13.235843658447266 + ], + [ + "▁një", + -13.235855102539062 + ], + [ + "▁Dangerous", + -13.23587417602539 + ], + [ + "therapy", + -13.235942840576172 + ], + [ + "doing", + -13.236017227172852 + ], + [ + "▁Fay", + -13.236026763916016 + ], + [ + "▁eds", + -13.23603630065918 + ], + [ + "▁CIS", + -13.236048698425293 + ], + [ + "▁Gunn", + -13.236167907714844 + ], + [ + "▁Overseas", + -13.236180305480957 + ], + [ + "article", + -13.236266136169434 + ], + [ + "pha", + -13.23627758026123 + ], + [ + "▁Oncology", + -13.23629093170166 + ], + [ + "▁docks", + -13.236324310302734 + ], + [ + "EK", + -13.236344337463379 + ], + [ + "technology", + -13.23645305633545 + ], + [ + "▁lesion", + -13.236532211303711 + ], + [ + "▁converse", + -13.236617088317871 + ], + [ + "▁demonstrators", + -13.236699104309082 + ], + [ + "seeded", + -13.23670768737793 + ], + [ + "▁obscene", + -13.236713409423828 + ], + [ + "▁Earnings", + -13.236720085144043 + ], + [ + "▁nifty", + -13.236786842346191 + ], + [ + "▁Rossi", + -13.236824989318848 + ], + [ + "rina", + -13.236863136291504 + ], + [ + "ark", + -13.236896514892578 + ], + [ + "▁adolescence", + -13.23706340789795 + ], + [ + "▁insistence", + -13.237173080444336 + ], + [ + "▁Ebay", + -13.237183570861816 + ], + [ + "▁sanction", + -13.237189292907715 + ], + [ + "▁deterrent", + -13.237198829650879 + ], + [ + "▁이", + -13.237232208251953 + ], + [ + "▁folklore", + -13.23755168914795 + ], + [ + "▁Documentation", + -13.23757266998291 + ], + [ + "aver", + -13.237593650817871 + ], + [ + "▁cautiously", + -13.237661361694336 + ], + [ + "▁Townsend", + -13.237663269042969 + ], + [ + "▁Evangelical", + -13.237678527832031 + ], + [ + "▁knack", + -13.237850189208984 + ], + [ + "▁Trucks", + -13.23788833618164 + ], + [ + "▁intellectually", + -13.237919807434082 + ], + [ + "▁grassy", + -13.23805046081543 + ], + [ + "▁optimisation", + -13.23808479309082 + ], + [ + "▁apnea", + -13.238103866577148 + ], + [ + "▁proto", + -13.238118171691895 + ], + [ + "▁chuck", + -13.238213539123535 + ], + [ + "▁Metallic", + -13.238343238830566 + ], + [ + "390", + -13.238375663757324 + ], + [ + "pes", + -13.238710403442383 + ], + [ + "▁Assignment", + -13.238779067993164 + ], + [ + "▁Gloucester", + -13.23884105682373 + ], + [ + "▁moth", + -13.238865852355957 + ], + [ + "▁Blackberry", + -13.238880157470703 + ], + [ + "▁Manny", + -13.238903045654297 + ], + [ + "▁upto", + -13.238965034484863 + ], + [ + "▁foresee", + -13.238967895507812 + ], + [ + "lton", + -13.23901081085205 + ], + [ + "XX", + -13.23906135559082 + ], + [ + "▁satisfies", + -13.239108085632324 + ], + [ + "▁sumptuous", + -13.239161491394043 + ], + [ + "▁discontinue", + -13.239171981811523 + ], + [ + "▁Fro", + -13.239335060119629 + ], + [ + "▁parity", + -13.239348411560059 + ], + [ + "▁aspirin", + -13.23947525024414 + ], + [ + "▁keto", + -13.239477157592773 + ], + [ + "gli", + -13.239531517028809 + ], + [ + "304", + -13.239558219909668 + ], + [ + "▁McC", + -13.239595413208008 + ], + [ + "▁Stability", + -13.239609718322754 + ], + [ + "▁groundwork", + -13.239680290222168 + ], + [ + "▁objectively", + -13.239931106567383 + ], + [ + "▁counteract", + -13.239948272705078 + ], + [ + "▁likeness", + -13.24001693725586 + ], + [ + "▁bum", + -13.240038871765137 + ], + [ + "▁sharpen", + -13.240118980407715 + ], + [ + "▁conformity", + -13.240158081054688 + ], + [ + "application", + -13.240229606628418 + ], + [ + "▁Cellular", + -13.240476608276367 + ], + [ + "▁hikers", + -13.240479469299316 + ], + [ + "▁heed", + -13.240530014038086 + ], + [ + "▁Voters", + -13.240535736083984 + ], + [ + "nies", + -13.240623474121094 + ], + [ + "▁debugging", + -13.240623474121094 + ], + [ + "▁punctuation", + -13.240656852722168 + ], + [ + "▁parachute", + -13.240751266479492 + ], + [ + "▁Brewer", + -13.240779876708984 + ], + [ + "▁impurities", + -13.240836143493652 + ], + [ + "▁Isabella", + -13.240865707397461 + ], + [ + "Does", + -13.241028785705566 + ], + [ + "▁menace", + -13.241104125976562 + ], + [ + "cion", + -13.24113941192627 + ], + [ + "▁inaccessible", + -13.241206169128418 + ], + [ + "▁footballer", + -13.24128532409668 + ], + [ + "▁KD", + -13.241360664367676 + ], + [ + "▁Procedures", + -13.24138355255127 + ], + [ + "▁Nicholson", + -13.241466522216797 + ], + [ + "Chi", + -13.24152660369873 + ], + [ + "▁narrower", + -13.241532325744629 + ], + [ + "▁vir", + -13.241662979125977 + ], + [ + "1985", + -13.241693496704102 + ], + [ + "▁Submission", + -13.241710662841797 + ], + [ + "hay", + -13.24182415008545 + ], + [ + "▁noodle", + -13.24193000793457 + ], + [ + "▁spawned", + -13.241964340209961 + ], + [ + "▁provoking", + -13.241998672485352 + ], + [ + "▁Pertaining", + -13.24205493927002 + ], + [ + "▁Titanium", + -13.242093086242676 + ], + [ + "biz", + -13.242157936096191 + ], + [ + "▁immoral", + -13.242179870605469 + ], + [ + "▁Hun", + -13.242305755615234 + ], + [ + "▁Gabrielle", + -13.24235725402832 + ], + [ + "avan", + -13.242473602294922 + ], + [ + "aha", + -13.242486000061035 + ], + [ + "▁gar", + -13.242493629455566 + ], + [ + "▁Chung", + -13.242507934570312 + ], + [ + "666", + -13.242512702941895 + ], + [ + "mun", + -13.24252700805664 + ], + [ + "aja", + -13.242679595947266 + ], + [ + "▁Splash", + -13.242690086364746 + ], + [ + "▁Meals", + -13.24272632598877 + ], + [ + "▁Kiwi", + -13.242794036865234 + ], + [ + "▁Dahl", + -13.242836952209473 + ], + [ + "▁incision", + -13.242891311645508 + ], + [ + "ifi", + -13.242987632751465 + ], + [ + "▁1896", + -13.243034362792969 + ], + [ + "▁Dent", + -13.243080139160156 + ], + [ + "▁soared", + -13.243111610412598 + ], + [ + "Local", + -13.2431640625 + ], + [ + "▁prophetic", + -13.243230819702148 + ], + [ + "aco", + -13.243291854858398 + ], + [ + "176", + -13.243386268615723 + ], + [ + "▁feline", + -13.243389129638672 + ], + [ + "▁Edith", + -13.243437767028809 + ], + [ + "▁RAID", + -13.243462562561035 + ], + [ + "▁Condo", + -13.243611335754395 + ], + [ + "▁Malibu", + -13.24366283416748 + ], + [ + "▁polluted", + -13.243672370910645 + ], + [ + "▁Significant", + -13.243721008300781 + ], + [ + "▁bezel", + -13.243742942810059 + ], + [ + "▁shi", + -13.243744850158691 + ], + [ + "▁BJ", + -13.243779182434082 + ], + [ + "▁horizons", + -13.24380874633789 + ], + [ + "▁forging", + -13.243863105773926 + ], + [ + "▁craftsman", + -13.243890762329102 + ], + [ + "▁timelines", + -13.244132041931152 + ], + [ + "awaited", + -13.244160652160645 + ], + [ + "▁Spell", + -13.244257926940918 + ], + [ + "▁sy", + -13.244317054748535 + ], + [ + "▁Kot", + -13.244369506835938 + ], + [ + "▁Chau", + -13.244549751281738 + ], + [ + "▁Grinder", + -13.244694709777832 + ], + [ + "▁sailor", + -13.244729042053223 + ], + [ + "▁Plaintiff", + -13.244735717773438 + ], + [ + "ح", + -13.244805335998535 + ], + [ + "▁insanely", + -13.2449312210083 + ], + [ + "nose", + -13.245010375976562 + ], + [ + "▁Whit", + -13.24501895904541 + ], + [ + "rani", + -13.245148658752441 + ], + [ + "▁refrigeration", + -13.245153427124023 + ], + [ + "▁exclaimed", + -13.245189666748047 + ], + [ + "▁ep", + -13.24524211883545 + ], + [ + "loo", + -13.2453031539917 + ], + [ + "▁BH", + -13.24535846710205 + ], + [ + "blown", + -13.245646476745605 + ], + [ + "▁Apostle", + -13.245657920837402 + ], + [ + "▁McCartney", + -13.245713233947754 + ], + [ + "▁Characters", + -13.245758056640625 + ], + [ + "▁unaffected", + -13.245899200439453 + ], + [ + "▁compel", + -13.245916366577148 + ], + [ + "▁Linen", + -13.246079444885254 + ], + [ + "▁piling", + -13.24612808227539 + ], + [ + "custom", + -13.246169090270996 + ], + [ + "010", + -13.24622917175293 + ], + [ + "holm", + -13.246231079101562 + ], + [ + "▁Broadcast", + -13.246275901794434 + ], + [ + "▁snorkeling", + -13.2462797164917 + ], + [ + "bly", + -13.246309280395508 + ], + [ + "▁saliva", + -13.246310234069824 + ], + [ + "▁Univ", + -13.246319770812988 + ], + [ + "dee", + -13.246370315551758 + ], + [ + "▁Narrow", + -13.246413230895996 + ], + [ + "▁Woodward", + -13.246512413024902 + ], + [ + "▁breathed", + -13.246540069580078 + ], + [ + "▁harmonic", + -13.246599197387695 + ], + [ + "▁171", + -13.246610641479492 + ], + [ + "▁Traders", + -13.246637344360352 + ], + [ + "seen", + -13.2466459274292 + ], + [ + "▁Bournemouth", + -13.246646881103516 + ], + [ + "▁serotonin", + -13.246689796447754 + ], + [ + "▁scraping", + -13.246786117553711 + ], + [ + "▁Sloan", + -13.246957778930664 + ], + [ + "▁Trey", + -13.24702262878418 + ], + [ + "▁embarking", + -13.247092247009277 + ], + [ + "142", + -13.247122764587402 + ], + [ + "▁sled", + -13.247148513793945 + ], + [ + "▁Backpack", + -13.247183799743652 + ], + [ + "▁diners", + -13.247185707092285 + ], + [ + "▁Mead", + -13.247238159179688 + ], + [ + "▁praises", + -13.247244834899902 + ], + [ + "jon", + -13.247342109680176 + ], + [ + "▁Clippers", + -13.247417449951172 + ], + [ + "1984", + -13.247419357299805 + ], + [ + "▁hoses", + -13.247469902038574 + ], + [ + "anto", + -13.247493743896484 + ], + [ + "▁Ships", + -13.247539520263672 + ], + [ + "▁Sapphire", + -13.247596740722656 + ], + [ + "▁EDT", + -13.247725486755371 + ], + [ + "▁eczema", + -13.247811317443848 + ], + [ + "▁adored", + -13.24782657623291 + ], + [ + "▁zo", + -13.247848510742188 + ], + [ + "▁Viva", + -13.247884750366211 + ], + [ + "▁capacitor", + -13.247893333435059 + ], + [ + "▁Cancel", + -13.247961044311523 + ], + [ + "▁Wearing", + -13.248001098632812 + ], + [ + "▁filmmaking", + -13.248022079467773 + ], + [ + "▁INR", + -13.248167991638184 + ], + [ + "eil", + -13.248282432556152 + ], + [ + "▁Monsters", + -13.248295783996582 + ], + [ + "▁phosphorus", + -13.248353958129883 + ], + [ + "▁analysing", + -13.24838924407959 + ], + [ + "▁improvisation", + -13.248390197753906 + ], + [ + "borg", + -13.248408317565918 + ], + [ + "aji", + -13.248438835144043 + ], + [ + "▁FG", + -13.248502731323242 + ], + [ + "▁fetus", + -13.248574256896973 + ], + [ + "▁Yin", + -13.248615264892578 + ], + [ + "CW", + -13.24868392944336 + ], + [ + "▁upsetting", + -13.248700141906738 + ], + [ + "scan", + -13.248710632324219 + ], + [ + "▁Cobra", + -13.248793601989746 + ], + [ + "143", + -13.248978614807129 + ], + [ + "▁blocker", + -13.249001502990723 + ], + [ + "▁rapport", + -13.249109268188477 + ], + [ + "▁Macau", + -13.249186515808105 + ], + [ + "▁spontaneously", + -13.249186515808105 + ], + [ + "▁elemental", + -13.2492094039917 + ], + [ + "▁McKenzie", + -13.249250411987305 + ], + [ + "▁Nie", + -13.249263763427734 + ], + [ + "▁Vital", + -13.249273300170898 + ], + [ + "RV", + -13.24947452545166 + ], + [ + "▁Glow", + -13.249518394470215 + ], + [ + "▁Grave", + -13.249610900878906 + ], + [ + "209", + -13.249654769897461 + ], + [ + "▁Sole", + -13.249655723571777 + ], + [ + "▁acetate", + -13.249726295471191 + ], + [ + "mom", + -13.249783515930176 + ], + [ + "520", + -13.249841690063477 + ], + [ + "▁kickoff", + -13.2498779296875 + ], + [ + "▁Kale", + -13.249907493591309 + ], + [ + "▁DHS", + -13.249916076660156 + ], + [ + "▁humiliation", + -13.250158309936523 + ], + [ + "▁bloodstream", + -13.25015926361084 + ], + [ + "▁ole", + -13.250261306762695 + ], + [ + "▁fins", + -13.250329971313477 + ], + [ + "▁tiring", + -13.250386238098145 + ], + [ + "▁más", + -13.25041389465332 + ], + [ + "arra", + -13.2504243850708 + ], + [ + "▁rowing", + -13.250436782836914 + ], + [ + "▁Ramadan", + -13.25048828125 + ], + [ + "▁smuggling", + -13.250617027282715 + ], + [ + "▁communicates", + -13.250627517700195 + ], + [ + "MX", + -13.250641822814941 + ], + [ + "▁undisclosed", + -13.25092887878418 + ], + [ + "▁fools", + -13.250993728637695 + ], + [ + "▁Garcinia", + -13.251171112060547 + ], + [ + "▁Sutherland", + -13.251248359680176 + ], + [ + "ب", + -13.251258850097656 + ], + [ + "▁GBP", + -13.251275062561035 + ], + [ + "nai", + -13.251335144042969 + ], + [ + "▁Papua", + -13.251344680786133 + ], + [ + "▁awaken", + -13.251418113708496 + ], + [ + "▁DF", + -13.251426696777344 + ], + [ + "example", + -13.251480102539062 + ], + [ + "▁campfire", + -13.251484870910645 + ], + [ + "vat", + -13.251498222351074 + ], + [ + "▁technologically", + -13.2515287399292 + ], + [ + "▁hillside", + -13.251542091369629 + ], + [ + "▁tanning", + -13.251556396484375 + ], + [ + "▁Zak", + -13.251557350158691 + ], + [ + "qi", + -13.251692771911621 + ], + [ + "▁acquaintances", + -13.251694679260254 + ], + [ + "Internet", + -13.251749992370605 + ], + [ + "▁WL", + -13.251755714416504 + ], + [ + "▁graphite", + -13.251845359802246 + ], + [ + "▁geopolitical", + -13.251851081848145 + ], + [ + "Coin", + -13.251861572265625 + ], + [ + "▁mentorship", + -13.251984596252441 + ], + [ + "▁Burial", + -13.251988410949707 + ], + [ + "▁Undergraduate", + -13.252059936523438 + ], + [ + "▁horrifying", + -13.252090454101562 + ], + [ + "hope", + -13.252116203308105 + ], + [ + "▁unbeatable", + -13.252174377441406 + ], + [ + "▁sprung", + -13.2523775100708 + ], + [ + "▁Amnesty", + -13.252386093139648 + ], + [ + "▁Garlic", + -13.252473831176758 + ], + [ + "▁Mapping", + -13.252548217773438 + ], + [ + "Before", + -13.252565383911133 + ], + [ + "▁Sis", + -13.25261116027832 + ], + [ + "▁rechargeable", + -13.252639770507812 + ], + [ + "▁susceptibility", + -13.252732276916504 + ], + [ + "ars", + -13.252790451049805 + ], + [ + "▁Revival", + -13.252791404724121 + ], + [ + "▁SKU", + -13.252813339233398 + ], + [ + "▁smear", + -13.25285816192627 + ], + [ + "Log", + -13.252861022949219 + ], + [ + "▁garages", + -13.25289249420166 + ], + [ + "select", + -13.252945899963379 + ], + [ + "▁gait", + -13.25295639038086 + ], + [ + "▁Auditorium", + -13.253031730651855 + ], + [ + "Object", + -13.253059387207031 + ], + [ + "Money", + -13.25312328338623 + ], + [ + "▁tiers", + -13.253305435180664 + ], + [ + "▁Kant", + -13.253314018249512 + ], + [ + "▁Fiesta", + -13.253316879272461 + ], + [ + "eke", + -13.253332138061523 + ], + [ + "▁WITHOUT", + -13.253437995910645 + ], + [ + "▁craftsmen", + -13.253494262695312 + ], + [ + "▁walnuts", + -13.253556251525879 + ], + [ + "▁Herbal", + -13.253753662109375 + ], + [ + "assi", + -13.253754615783691 + ], + [ + "▁boldly", + -13.253779411315918 + ], + [ + "▁faculties", + -13.253852844238281 + ], + [ + "Lord", + -13.253865242004395 + ], + [ + "▁vow", + -13.253899574279785 + ], + [ + "▁surveying", + -13.25390625 + ], + [ + "▁Sew", + -13.25394058227539 + ], + [ + "▁Peruvian", + -13.253951072692871 + ], + [ + "rack", + -13.254037857055664 + ], + [ + "Food", + -13.254117012023926 + ], + [ + "▁installs", + -13.254117012023926 + ], + [ + "▁dominates", + -13.25416088104248 + ], + [ + "▁Mou", + -13.25417709350586 + ], + [ + "▁Bernstein", + -13.254181861877441 + ], + [ + "▁Mongolia", + -13.254206657409668 + ], + [ + "▁Bound", + -13.254242897033691 + ], + [ + "166", + -13.254324913024902 + ], + [ + "eter", + -13.254387855529785 + ], + [ + "▁Governments", + -13.254437446594238 + ], + [ + "Jones", + -13.254586219787598 + ], + [ + "▁Seymour", + -13.254615783691406 + ], + [ + "▁Calcium", + -13.254671096801758 + ], + [ + "▁WM", + -13.254776000976562 + ], + [ + "▁contours", + -13.254814147949219 + ], + [ + "430", + -13.254875183105469 + ], + [ + "▁wildfires", + -13.254910469055176 + ], + [ + "▁fav", + -13.254941940307617 + ], + [ + "▁Insulation", + -13.25499439239502 + ], + [ + "▁artificially", + -13.254996299743652 + ], + [ + "▁KP", + -13.255058288574219 + ], + [ + "cone", + -13.255187034606934 + ], + [ + "▁shrub", + -13.255221366882324 + ], + [ + "▁vin", + -13.255261421203613 + ], + [ + "▁undue", + -13.255436897277832 + ], + [ + "Night", + -13.255453109741211 + ], + [ + "▁lil", + -13.255525588989258 + ], + [ + "▁misinformation", + -13.25556468963623 + ], + [ + "▁COMPANY", + -13.255636215209961 + ], + [ + "lian", + -13.255664825439453 + ], + [ + "▁MOST", + -13.255729675292969 + ], + [ + "▁CLOSE", + -13.25573444366455 + ], + [ + "tik", + -13.255743026733398 + ], + [ + "▁apostles", + -13.255765914916992 + ], + [ + "▁Eliza", + -13.255782127380371 + ], + [ + "▁communism", + -13.2558012008667 + ], + [ + "Date", + -13.255853652954102 + ], + [ + "aud", + -13.255855560302734 + ], + [ + "india", + -13.255878448486328 + ], + [ + "▁Insta", + -13.255902290344238 + ], + [ + "illi", + -13.255979537963867 + ], + [ + "▁pondering", + -13.256022453308105 + ], + [ + "▁circuitry", + -13.256080627441406 + ], + [ + "▁Yosemite", + -13.256098747253418 + ], + [ + "▁boilers", + -13.25611686706543 + ], + [ + "ket", + -13.256158828735352 + ], + [ + "▁Artistic", + -13.256244659423828 + ], + [ + "authored", + -13.256278991699219 + ], + [ + "▁hoodie", + -13.256402015686035 + ], + [ + "▁alum", + -13.25643539428711 + ], + [ + "lol", + -13.25645923614502 + ], + [ + "▁Botswana", + -13.25649642944336 + ], + [ + "▁transistor", + -13.256512641906738 + ], + [ + "▁revamped", + -13.25651741027832 + ], + [ + "▁scares", + -13.256518363952637 + ], + [ + "▁scripting", + -13.256536483764648 + ], + [ + "update", + -13.256561279296875 + ], + [ + "ahu", + -13.256638526916504 + ], + [ + "rac", + -13.256654739379883 + ], + [ + "node", + -13.256855964660645 + ], + [ + "▁spurred", + -13.256855964660645 + ], + [ + "filter", + -13.256890296936035 + ], + [ + "▁sclerosis", + -13.257051467895508 + ], + [ + "daily", + -13.257059097290039 + ], + [ + "▁steaks", + -13.257108688354492 + ], + [ + "▁housekeeping", + -13.25711441040039 + ], + [ + "të", + -13.257128715515137 + ], + [ + "▁Gra", + -13.257187843322754 + ], + [ + "▁ASEAN", + -13.257190704345703 + ], + [ + "▁jog", + -13.257204055786133 + ], + [ + "▁Kri", + -13.257219314575195 + ], + [ + "▁Decide", + -13.257290840148926 + ], + [ + "▁Gourmet", + -13.257298469543457 + ], + [ + "▁slabs", + -13.257317543029785 + ], + [ + "ش", + -13.257423400878906 + ], + [ + "▁eyed", + -13.257424354553223 + ], + [ + "▁isnt", + -13.257468223571777 + ], + [ + "▁safeguarding", + -13.257484436035156 + ], + [ + "154", + -13.257650375366211 + ], + [ + "lina", + -13.257662773132324 + ], + [ + "▁1891", + -13.25772476196289 + ], + [ + "effect", + -13.2577543258667 + ], + [ + "▁Blow", + -13.257838249206543 + ], + [ + "▁Barbados", + -13.25786304473877 + ], + [ + "▁Barrier", + -13.257866859436035 + ], + [ + "CAP", + -13.25798511505127 + ], + [ + "▁cleverly", + -13.258033752441406 + ], + [ + "dai", + -13.258040428161621 + ], + [ + "▁obligatory", + -13.25804615020752 + ], + [ + "subject", + -13.258065223693848 + ], + [ + "▁Vander", + -13.258092880249023 + ], + [ + "▁tweaking", + -13.258140563964844 + ], + [ + "▁Macon", + -13.258149147033691 + ], + [ + "▁Wizards", + -13.258201599121094 + ], + [ + "▁Reliable", + -13.258233070373535 + ], + [ + "▁VPS", + -13.258233070373535 + ], + [ + "▁aero", + -13.258233070373535 + ], + [ + "▁unicorn", + -13.258252143859863 + ], + [ + "▁Amir", + -13.258322715759277 + ], + [ + "▁Sawyer", + -13.258418083190918 + ], + [ + "MAC", + -13.258452415466309 + ], + [ + "▁Coins", + -13.25846004486084 + ], + [ + "▁complainant", + -13.258478164672852 + ], + [ + "▁Lies", + -13.258648872375488 + ], + [ + "▁softness", + -13.258652687072754 + ], + [ + "rig", + -13.25866413116455 + ], + [ + "▁JT", + -13.258764266967773 + ], + [ + "▁wicket", + -13.258792877197266 + ], + [ + "▁sergeant", + -13.258903503417969 + ], + [ + "▁weld", + -13.258914947509766 + ], + [ + "▁adhered", + -13.258938789367676 + ], + [ + "ی", + -13.259003639221191 + ], + [ + "▁FD", + -13.259066581726074 + ], + [ + "▁worsen", + -13.259089469909668 + ], + [ + "▁Laos", + -13.25914192199707 + ], + [ + "▁Benny", + -13.25927734375 + ], + [ + "▁Busch", + -13.259299278259277 + ], + [ + "▁serenity", + -13.25930118560791 + ], + [ + "▁activates", + -13.259307861328125 + ], + [ + "ér", + -13.25936222076416 + ], + [ + "▁containment", + -13.259453773498535 + ], + [ + "▁soybean", + -13.259573936462402 + ], + [ + "folk", + -13.2596435546875 + ], + [ + "oC", + -13.259658813476562 + ], + [ + "167", + -13.259718894958496 + ], + [ + "▁dispersion", + -13.259722709655762 + ], + [ + "▁Painted", + -13.259759902954102 + ], + [ + "▁Egyptians", + -13.25977611541748 + ], + [ + "Trans", + -13.259839057922363 + ], + [ + "▁Diagnostic", + -13.25985050201416 + ], + [ + "▁bureaucratic", + -13.260028839111328 + ], + [ + "▁JFK", + -13.260041236877441 + ], + [ + "▁casserole", + -13.260174751281738 + ], + [ + "▁approachable", + -13.260272979736328 + ], + [ + "sort", + -13.260282516479492 + ], + [ + "▁pu", + -13.260346412658691 + ], + [ + "▁Qualified", + -13.260395050048828 + ], + [ + "▁solemn", + -13.26042366027832 + ], + [ + "▁appalling", + -13.26046371459961 + ], + [ + "▁buns", + -13.260581016540527 + ], + [ + "▁pl", + -13.260656356811523 + ], + [ + "Direct", + -13.260760307312012 + ], + [ + "▁Dixie", + -13.260761260986328 + ], + [ + "▁enriching", + -13.260782241821289 + ], + [ + "▁landowners", + -13.260818481445312 + ], + [ + "▁cigars", + -13.260828018188477 + ], + [ + "enstein", + -13.26086711883545 + ], + [ + "▁Blogging", + -13.260893821716309 + ], + [ + "▁receptionist", + -13.260897636413574 + ], + [ + "▁guarding", + -13.260950088500977 + ], + [ + "▁rusty", + -13.260960578918457 + ], + [ + "▁Evo", + -13.260977745056152 + ], + [ + "▁trolls", + -13.261045455932617 + ], + [ + "▁cushioning", + -13.261154174804688 + ], + [ + "▁handwritten", + -13.261173248291016 + ], + [ + "▁Shire", + -13.2612943649292 + ], + [ + "gers", + -13.261366844177246 + ], + [ + "▁Synthetic", + -13.261398315429688 + ], + [ + "pun", + -13.261442184448242 + ], + [ + "lack", + -13.261465072631836 + ], + [ + "▁disrupting", + -13.261470794677734 + ], + [ + "▁211", + -13.261491775512695 + ], + [ + "ARD", + -13.261524200439453 + ], + [ + "▁Christi", + -13.261585235595703 + ], + [ + "▁cringe", + -13.261734008789062 + ], + [ + "▁Olympus", + -13.261775016784668 + ], + [ + "▁Meng", + -13.261775970458984 + ], + [ + "▁eerie", + -13.26177978515625 + ], + [ + "▁Mayan", + -13.261887550354004 + ], + [ + "▁Instrument", + -13.262158393859863 + ], + [ + "▁Eg", + -13.262335777282715 + ], + [ + "▁Couldn", + -13.262518882751465 + ], + [ + "▁examiner", + -13.262531280517578 + ], + [ + "dler", + -13.26253890991211 + ], + [ + "▁Sarasota", + -13.262541770935059 + ], + [ + "▁horrified", + -13.262660026550293 + ], + [ + "▁Jaime", + -13.262760162353516 + ], + [ + "▁Folks", + -13.262773513793945 + ], + [ + "▁lingerie", + -13.262849807739258 + ], + [ + "▁AVAILABLE", + -13.262935638427734 + ], + [ + "▁infestation", + -13.263021469116211 + ], + [ + "▁masking", + -13.263023376464844 + ], + [ + "ffe", + -13.263087272644043 + ], + [ + "고", + -13.263105392456055 + ], + [ + "▁congenital", + -13.26311206817627 + ], + [ + "247", + -13.263118743896484 + ], + [ + "▁Spe", + -13.263151168823242 + ], + [ + "shima", + -13.263199806213379 + ], + [ + "hou", + -13.263214111328125 + ], + [ + "▁Ulster", + -13.263233184814453 + ], + [ + "▁Statue", + -13.263251304626465 + ], + [ + "▁linkage", + -13.263284683227539 + ], + [ + "▁grievances", + -13.26351261138916 + ], + [ + "▁Cai", + -13.263579368591309 + ], + [ + "focus", + -13.26364517211914 + ], + [ + "▁Wakefield", + -13.263688087463379 + ], + [ + "▁Assam", + -13.263766288757324 + ], + [ + "▁Royale", + -13.263772010803223 + ], + [ + "▁sw", + -13.263785362243652 + ], + [ + "▁Hil", + -13.263800621032715 + ], + [ + "ake", + -13.263956069946289 + ], + [ + "▁elk", + -13.263967514038086 + ], + [ + "▁gosh", + -13.264019966125488 + ], + [ + "hab", + -13.26412582397461 + ], + [ + "▁Intra", + -13.264140129089355 + ], + [ + "▁Souls", + -13.264263153076172 + ], + [ + "▁freshmen", + -13.26431655883789 + ], + [ + "▁Dare", + -13.264348983764648 + ], + [ + "▁sensed", + -13.264488220214844 + ], + [ + "▁misconception", + -13.264512062072754 + ], + [ + "▁prenatal", + -13.264632225036621 + ], + [ + "▁boils", + -13.264734268188477 + ], + [ + "▁Cocoa", + -13.264816284179688 + ], + [ + "lers", + -13.26484203338623 + ], + [ + "▁ODI", + -13.264927864074707 + ], + [ + "Family", + -13.264930725097656 + ], + [ + "▁holiness", + -13.265205383300781 + ], + [ + "▁Johann", + -13.26523208618164 + ], + [ + "▁Masa", + -13.265250205993652 + ], + [ + "▁gardeners", + -13.26537036895752 + ], + [ + "▁Bracelet", + -13.265408515930176 + ], + [ + "▁Litigation", + -13.265437126159668 + ], + [ + "▁Pho", + -13.2654447555542 + ], + [ + "▁Ou", + -13.265454292297363 + ], + [ + "▁barren", + -13.265521049499512 + ], + [ + "shoot", + -13.265631675720215 + ], + [ + "▁Strauss", + -13.265665054321289 + ], + [ + "mAh", + -13.265759468078613 + ], + [ + "▁trenches", + -13.265772819519043 + ], + [ + "▁Jeanne", + -13.265851974487305 + ], + [ + "▁Sellers", + -13.265859603881836 + ], + [ + "▁Usage", + -13.265877723693848 + ], + [ + "▁auditory", + -13.26589298248291 + ], + [ + "moto", + -13.265899658203125 + ], + [ + "▁incarcerated", + -13.265901565551758 + ], + [ + "GU", + -13.265926361083984 + ], + [ + "friends", + -13.265959739685059 + ], + [ + "▁Scarlet", + -13.26598834991455 + ], + [ + "printed", + -13.266000747680664 + ], + [ + "ott", + -13.266006469726562 + ], + [ + "▁Richie", + -13.266117095947266 + ], + [ + "Val", + -13.266120910644531 + ], + [ + "▁glaciers", + -13.266124725341797 + ], + [ + "Sky", + -13.266151428222656 + ], + [ + "▁seo", + -13.266190528869629 + ], + [ + "▁brigade", + -13.266220092773438 + ], + [ + "▁Decorations", + -13.266358375549316 + ], + [ + "▁KT", + -13.266378402709961 + ], + [ + "▁Nas", + -13.266435623168945 + ], + [ + "▁Wenger", + -13.26651668548584 + ], + [ + "▁goggles", + -13.266530990600586 + ], + [ + "▁commended", + -13.2665433883667 + ], + [ + "▁plumbers", + -13.266581535339355 + ], + [ + "▁Economist", + -13.266602516174316 + ], + [ + "▁Jurassic", + -13.266602516174316 + ], + [ + "▁OLED", + -13.266616821289062 + ], + [ + "▁ACS", + -13.266636848449707 + ], + [ + "▁Southeastern", + -13.266664505004883 + ], + [ + "▁magician", + -13.266718864440918 + ], + [ + "▁Harding", + -13.266769409179688 + ], + [ + "Drive", + -13.266839981079102 + ], + [ + "▁209", + -13.266865730285645 + ], + [ + "▁auch", + -13.266866683959961 + ], + [ + "▁coke", + -13.26688289642334 + ], + [ + "▁pawn", + -13.266899108886719 + ], + [ + "▁saline", + -13.266915321350098 + ], + [ + "▁Spec", + -13.266934394836426 + ], + [ + "▁UNDER", + -13.26696491241455 + ], + [ + "▁CST", + -13.267059326171875 + ], + [ + "▁souvenirs", + -13.267192840576172 + ], + [ + "limited", + -13.267289161682129 + ], + [ + "▁appellate", + -13.267294883728027 + ], + [ + "▁Bannon", + -13.267489433288574 + ], + [ + "▁inverter", + -13.267500877380371 + ], + [ + "▁mutants", + -13.267674446105957 + ], + [ + "▁Advocacy", + -13.267707824707031 + ], + [ + "getting", + -13.26773738861084 + ], + [ + "▁Amish", + -13.267743110656738 + ], + [ + "▁EMI", + -13.26785659790039 + ], + [ + "rot", + -13.267861366271973 + ], + [ + "▁Stripe", + -13.267911911010742 + ], + [ + "▁impoverished", + -13.267926216125488 + ], + [ + "▁degeneration", + -13.267977714538574 + ], + [ + "▁Rihanna", + -13.268084526062012 + ], + [ + "▁shaker", + -13.26812744140625 + ], + [ + "▁Attractive", + -13.268205642700195 + ], + [ + "icia", + -13.268211364746094 + ], + [ + "▁camouflage", + -13.268223762512207 + ], + [ + "▁needless", + -13.268389701843262 + ], + [ + "NW", + -13.26840591430664 + ], + [ + "▁nanoparticles", + -13.268460273742676 + ], + [ + "▁PPP", + -13.268481254577637 + ], + [ + "▁speculated", + -13.268498420715332 + ], + [ + "▁Jamaican", + -13.268509864807129 + ], + [ + "▁THEM", + -13.268548011779785 + ], + [ + "▁objected", + -13.268563270568848 + ], + [ + "▁1897", + -13.268728256225586 + ], + [ + "▁Felt", + -13.26875114440918 + ], + [ + "▁hurried", + -13.268800735473633 + ], + [ + "▁Pulitzer", + -13.26880168914795 + ], + [ + "▁unloading", + -13.268888473510742 + ], + [ + "▁swam", + -13.268904685974121 + ], + [ + "TD", + -13.269062995910645 + ], + [ + "▁Murdoch", + -13.269242286682129 + ], + [ + "▁Reeves", + -13.269270896911621 + ], + [ + "▁consulate", + -13.269290924072266 + ], + [ + "▁Bought", + -13.269293785095215 + ], + [ + "NK", + -13.269352912902832 + ], + [ + "▁ppm", + -13.269366264343262 + ], + [ + "PB", + -13.269376754760742 + ], + [ + "▁Requires", + -13.269441604614258 + ], + [ + "▁deduct", + -13.269551277160645 + ], + [ + "▁traverse", + -13.269569396972656 + ], + [ + "▁responsiveness", + -13.269585609436035 + ], + [ + "▁bestowed", + -13.269587516784668 + ], + [ + "▁Everywhere", + -13.26961612701416 + ], + [ + "▁Avatar", + -13.26965045928955 + ], + [ + "▁doable", + -13.269670486450195 + ], + [ + "▁plantations", + -13.26967716217041 + ], + [ + "Dark", + -13.26972770690918 + ], + [ + "▁Lyons", + -13.269830703735352 + ], + [ + "▁anemia", + -13.269845008850098 + ], + [ + "▁distrust", + -13.269850730895996 + ], + [ + "▁tactile", + -13.269919395446777 + ], + [ + "▁radios", + -13.269935607910156 + ], + [ + "aru", + -13.26995849609375 + ], + [ + "▁Pir", + -13.269980430603027 + ], + [ + "▁collapsing", + -13.270133018493652 + ], + [ + "bomb", + -13.270162582397461 + ], + [ + "▁Bedrooms", + -13.27027702331543 + ], + [ + "▁resonates", + -13.270379066467285 + ], + [ + "▁IG", + -13.27052116394043 + ], + [ + "▁stout", + -13.270606994628906 + ], + [ + "depending", + -13.270645141601562 + ], + [ + "▁powerless", + -13.270743370056152 + ], + [ + "▁racers", + -13.27077579498291 + ], + [ + "▁bookshelf", + -13.270814895629883 + ], + [ + "▁extremism", + -13.27083969116211 + ], + [ + "▁purposeful", + -13.270926475524902 + ], + [ + "kr", + -13.270930290222168 + ], + [ + "▁enlightening", + -13.270955085754395 + ], + [ + "Sport", + -13.271060943603516 + ], + [ + "Also", + -13.271108627319336 + ], + [ + "material", + -13.27120304107666 + ], + [ + "▁underestimated", + -13.271214485168457 + ], + [ + "▁redefine", + -13.271272659301758 + ], + [ + "iner", + -13.271279335021973 + ], + [ + "▁gunshot", + -13.271315574645996 + ], + [ + "▁Qing", + -13.27148151397705 + ], + [ + "▁Prospect", + -13.271498680114746 + ], + [ + "▁Melt", + -13.271510124206543 + ], + [ + "▁astronaut", + -13.27158260345459 + ], + [ + "▁moderated", + -13.271621704101562 + ], + [ + "▁fandom", + -13.271658897399902 + ], + [ + "▁salted", + -13.27169418334961 + ], + [ + "▁Bain", + -13.271703720092773 + ], + [ + "▁dilution", + -13.271724700927734 + ], + [ + "▁Paw", + -13.271766662597656 + ], + [ + "▁clomid", + -13.271943092346191 + ], + [ + "▁barrage", + -13.271946907043457 + ], + [ + "▁Comforter", + -13.27196979522705 + ], + [ + "▁unveil", + -13.271986961364746 + ], + [ + "Edit", + -13.272046089172363 + ], + [ + "▁Trick", + -13.272047996520996 + ], + [ + "▁Janice", + -13.272082328796387 + ], + [ + "▁cramped", + -13.27213191986084 + ], + [ + "▁backpacks", + -13.272144317626953 + ], + [ + "▁Yelp", + -13.272171020507812 + ], + [ + "▁Naga", + -13.272192001342773 + ], + [ + "▁peaches", + -13.272253036499023 + ], + [ + "father", + -13.272265434265137 + ], + [ + "▁Hayward", + -13.272302627563477 + ], + [ + "▁Vendor", + -13.272313117980957 + ], + [ + "▁appetizer", + -13.27245044708252 + ], + [ + "▁Chilean", + -13.27258586883545 + ], + [ + "▁inflict", + -13.272589683532715 + ], + [ + "▁IPS", + -13.272608757019043 + ], + [ + "WH", + -13.27263069152832 + ], + [ + "▁climates", + -13.27264404296875 + ], + [ + "▁Forensic", + -13.272732734680176 + ], + [ + "admin", + -13.27278995513916 + ], + [ + "▁provoked", + -13.272845268249512 + ], + [ + "▁CNBC", + -13.273016929626465 + ], + [ + "▁evolves", + -13.273041725158691 + ], + [ + "▁tit", + -13.27305793762207 + ], + [ + "cke", + -13.27309513092041 + ], + [ + "▁Presence", + -13.27314281463623 + ], + [ + "▁Fail", + -13.27320384979248 + ], + [ + "▁deformation", + -13.27323055267334 + ], + [ + "▁Debra", + -13.273292541503906 + ], + [ + "▁searchable", + -13.273309707641602 + ], + [ + "▁Expansion", + -13.273382186889648 + ], + [ + "similar", + -13.273384094238281 + ], + [ + "Human", + -13.273441314697266 + ], + [ + "ures", + -13.273505210876465 + ], + [ + "Value", + -13.273565292358398 + ], + [ + "▁Approval", + -13.273590087890625 + ], + [ + "▁Sem", + -13.273634910583496 + ], + [ + "fra", + -13.273648262023926 + ], + [ + "▁purposely", + -13.27377700805664 + ], + [ + "▁Ankara", + -13.273896217346191 + ], + [ + "▁lads", + -13.273919105529785 + ], + [ + "▁®", + -13.273927688598633 + ], + [ + "▁blueberry", + -13.273933410644531 + ], + [ + "▁Secretariat", + -13.27397346496582 + ], + [ + "▁perpendicular", + -13.274134635925293 + ], + [ + "fruit", + -13.274184226989746 + ], + [ + "insurance", + -13.27423095703125 + ], + [ + "▁spindle", + -13.2743558883667 + ], + [ + "▁sabotage", + -13.274479866027832 + ], + [ + "▁finder", + -13.2745361328125 + ], + [ + "EO", + -13.27465534210205 + ], + [ + "▁Witnesses", + -13.274660110473633 + ], + [ + "▁Shields", + -13.274667739868164 + ], + [ + "▁thyme", + -13.274740219116211 + ], + [ + "TRA", + -13.274796485900879 + ], + [ + "vu", + -13.274824142456055 + ], + [ + "▁shortlisted", + -13.274917602539062 + ], + [ + "▁1893", + -13.27496337890625 + ], + [ + "uv", + -13.274998664855957 + ], + [ + "▁SAVE", + -13.275042533874512 + ], + [ + "▁skid", + -13.275077819824219 + ], + [ + "▁archaeology", + -13.27509593963623 + ], + [ + "speak", + -13.27515983581543 + ], + [ + "▁Mina", + -13.275177955627441 + ], + [ + "▁rupture", + -13.275190353393555 + ], + [ + "▁Efficient", + -13.275251388549805 + ], + [ + "▁manor", + -13.275270462036133 + ], + [ + "▁FTC", + -13.275317192077637 + ], + [ + "▁widened", + -13.275338172912598 + ], + [ + "Mary", + -13.275349617004395 + ], + [ + "Feb", + -13.275379180908203 + ], + [ + "▁biscuit", + -13.275382995605469 + ], + [ + "▁postpone", + -13.275384902954102 + ], + [ + "▁nicest", + -13.27538776397705 + ], + [ + "▁denomination", + -13.27542495727539 + ], + [ + "▁Funk", + -13.275507926940918 + ], + [ + "▁Santo", + -13.27551555633545 + ], + [ + "▁Useful", + -13.275537490844727 + ], + [ + "JS", + -13.27554702758789 + ], + [ + "▁Betsy", + -13.275588035583496 + ], + [ + "▁Pauline", + -13.275614738464355 + ], + [ + "zin", + -13.27566146850586 + ], + [ + "▁haze", + -13.275672912597656 + ], + [ + "▁Larger", + -13.275777816772461 + ], + [ + "zine", + -13.275803565979004 + ], + [ + "▁sweeter", + -13.275886535644531 + ], + [ + "Ru", + -13.275962829589844 + ], + [ + "▁soar", + -13.276022911071777 + ], + [ + "▁Coupe", + -13.276037216186523 + ], + [ + "▁lemonade", + -13.276069641113281 + ], + [ + "▁malfunction", + -13.276144027709961 + ], + [ + "▁toaster", + -13.276248931884766 + ], + [ + "▁aqueous", + -13.276326179504395 + ], + [ + "nga", + -13.276344299316406 + ], + [ + "▁Ris", + -13.276715278625488 + ], + [ + "▁Tudor", + -13.276771545410156 + ], + [ + "▁psychotherapy", + -13.276787757873535 + ], + [ + "▁flurry", + -13.276813507080078 + ], + [ + "▁invading", + -13.276840209960938 + ], + [ + "▁crow", + -13.276958465576172 + ], + [ + "▁Gould", + -13.276968002319336 + ], + [ + "▁vaccinations", + -13.2769775390625 + ], + [ + "▁elf", + -13.277109146118164 + ], + [ + "▁greetings", + -13.277128219604492 + ], + [ + "dah", + -13.277193069458008 + ], + [ + "provoking", + -13.277205467224121 + ], + [ + "▁McMahon", + -13.27721881866455 + ], + [ + "▁froze", + -13.27721881866455 + ], + [ + "▁Forestry", + -13.277443885803223 + ], + [ + "learn", + -13.277520179748535 + ], + [ + "▁Akron", + -13.277532577514648 + ], + [ + "▁SAR", + -13.277536392211914 + ], + [ + "▁Bail", + -13.277545928955078 + ], + [ + "▁cello", + -13.277615547180176 + ], + [ + "▁peptides", + -13.277629852294922 + ], + [ + "▁Jelly", + -13.277633666992188 + ], + [ + "▁MAP", + -13.277693748474121 + ], + [ + "hia", + -13.277705192565918 + ], + [ + "▁Swap", + -13.277710914611816 + ], + [ + "▁hypotheses", + -13.277713775634766 + ], + [ + "▁Hosted", + -13.277738571166992 + ], + [ + "▁accumulating", + -13.27788257598877 + ], + [ + "illy", + -13.2779541015625 + ], + [ + "▁Sculpture", + -13.278020858764648 + ], + [ + "▁fingerprints", + -13.278105735778809 + ], + [ + "Te", + -13.278109550476074 + ], + [ + "RAM", + -13.27811336517334 + ], + [ + "▁refinery", + -13.27811336517334 + ], + [ + "▁Neuroscience", + -13.278314590454102 + ], + [ + "▁electrically", + -13.278336524963379 + ], + [ + "▁manpower", + -13.278376579284668 + ], + [ + "▁doxycycline", + -13.278397560119629 + ], + [ + "HU", + -13.278427124023438 + ], + [ + "▁HPV", + -13.278459548950195 + ], + [ + "▁Ipswich", + -13.278669357299805 + ], + [ + "Stone", + -13.278688430786133 + ], + [ + "▁whirlwind", + -13.278715133666992 + ], + [ + "uddin", + -13.278803825378418 + ], + [ + "▁parted", + -13.278925895690918 + ], + [ + "▁1830", + -13.27897834777832 + ], + [ + "▁Crab", + -13.278996467590332 + ], + [ + "▁unbelievably", + -13.27910327911377 + ], + [ + "▁Scarborough", + -13.279106140136719 + ], + [ + "▁grated", + -13.279165267944336 + ], + [ + "▁waits", + -13.279173851013184 + ], + [ + "▁WARNING", + -13.279187202453613 + ], + [ + "Chinese", + -13.279219627380371 + ], + [ + "actually", + -13.279227256774902 + ], + [ + "▁Defender", + -13.27927017211914 + ], + [ + "▁Franchise", + -13.279311180114746 + ], + [ + "▁doctrines", + -13.279311180114746 + ], + [ + "▁Ã", + -13.279317855834961 + ], + [ + "▁routed", + -13.279324531555176 + ], + [ + "▁Loose", + -13.279373168945312 + ], + [ + "cord", + -13.279402732849121 + ], + [ + "▁Allows", + -13.279491424560547 + ], + [ + "ahan", + -13.279555320739746 + ], + [ + "▁fucking", + -13.279566764831543 + ], + [ + "▁Ludwig", + -13.279664993286133 + ], + [ + "▁oblivious", + -13.279690742492676 + ], + [ + "expression", + -13.27969741821289 + ], + [ + "fore", + -13.2797212600708 + ], + [ + "▁enthusiastically", + -13.279825210571289 + ], + [ + "▁persisted", + -13.279845237731934 + ], + [ + "▁screwdriver", + -13.279908180236816 + ], + [ + "245", + -13.279946327209473 + ], + [ + "▁triangles", + -13.280001640319824 + ], + [ + "▁teal", + -13.280013084411621 + ], + [ + "▁kicker", + -13.280147552490234 + ], + [ + "▁lighted", + -13.280230522155762 + ], + [ + "UA", + -13.280266761779785 + ], + [ + "▁odors", + -13.280288696289062 + ], + [ + "▁Mandy", + -13.280390739440918 + ], + [ + "▁aptitude", + -13.280393600463867 + ], + [ + "▁Mg", + -13.280396461486816 + ], + [ + "▁reinforces", + -13.280466079711914 + ], + [ + "156", + -13.280476570129395 + ], + [ + "▁climbers", + -13.280505180358887 + ], + [ + "▁Rid", + -13.280540466308594 + ], + [ + "▁endowed", + -13.280665397644043 + ], + [ + "229", + -13.280890464782715 + ], + [ + "hate", + -13.280950546264648 + ], + [ + "▁vets", + -13.281014442443848 + ], + [ + "▁Moe", + -13.281075477600098 + ], + [ + "▁Bucket", + -13.28114128112793 + ], + [ + "▁philosophies", + -13.281172752380371 + ], + [ + "▁rename", + -13.281203269958496 + ], + [ + "▁Winery", + -13.28124713897705 + ], + [ + "▁duplex", + -13.281269073486328 + ], + [ + "▁enrolling", + -13.281429290771484 + ], + [ + "▁Consultation", + -13.281482696533203 + ], + [ + "▁steaming", + -13.281716346740723 + ], + [ + "ą", + -13.281740188598633 + ], + [ + "▁TRI", + -13.281781196594238 + ], + [ + "▁adhering", + -13.281831741333008 + ], + [ + "▁matured", + -13.281911849975586 + ], + [ + "▁Milo", + -13.281943321228027 + ], + [ + "▁Barnett", + -13.281973838806152 + ], + [ + "▁Buckingham", + -13.282031059265137 + ], + [ + "▁accession", + -13.28205394744873 + ], + [ + "▁Rockefeller", + -13.28213119506836 + ], + [ + "EW", + -13.282157897949219 + ], + [ + "fields", + -13.2821683883667 + ], + [ + "▁concurrently", + -13.28222942352295 + ], + [ + "▁hateful", + -13.282238006591797 + ], + [ + "▁Minh", + -13.282269477844238 + ], + [ + "vote", + -13.282296180725098 + ], + [ + "▁summertime", + -13.282313346862793 + ], + [ + "▁hairy", + -13.282319068908691 + ], + [ + "Market", + -13.282392501831055 + ], + [ + "▁Mackenzie", + -13.282421112060547 + ], + [ + "▁latent", + -13.282421112060547 + ], + [ + "▁Produce", + -13.282444953918457 + ], + [ + "▁vie", + -13.282622337341309 + ], + [ + "▁Maintaining", + -13.282660484313965 + ], + [ + "George", + -13.28266429901123 + ], + [ + "▁db", + -13.282716751098633 + ], + [ + "▁hardworking", + -13.282833099365234 + ], + [ + "▁MSNBC", + -13.282877922058105 + ], + [ + "quick", + -13.282954216003418 + ], + [ + "erie", + -13.282957077026367 + ], + [ + "▁anecdotes", + -13.283020973205566 + ], + [ + "lung", + -13.283035278320312 + ], + [ + "Price", + -13.283185958862305 + ], + [ + "QA", + -13.283215522766113 + ], + [ + "▁Quincy", + -13.283282279968262 + ], + [ + "▁paws", + -13.283291816711426 + ], + [ + "▁formative", + -13.283331871032715 + ], + [ + "▁overcame", + -13.283345222473145 + ], + [ + "serv", + -13.283381462097168 + ], + [ + "surgical", + -13.283382415771484 + ], + [ + "▁Abuja", + -13.283411979675293 + ], + [ + "▁contestant", + -13.283466339111328 + ], + [ + "▁Jaguars", + -13.283478736877441 + ], + [ + "▁Hutchinson", + -13.283480644226074 + ], + [ + "▁wartime", + -13.2835111618042 + ], + [ + "▁bays", + -13.283549308776855 + ], + [ + "▁dizziness", + -13.283663749694824 + ], + [ + "▁dentures", + -13.283745765686035 + ], + [ + "▁Somali", + -13.283843994140625 + ], + [ + "▁begs", + -13.283984184265137 + ], + [ + "sz", + -13.283995628356934 + ], + [ + "▁buggy", + -13.284028053283691 + ], + [ + "▁rained", + -13.28420352935791 + ], + [ + "tani", + -13.284313201904297 + ], + [ + "▁signup", + -13.284337997436523 + ], + [ + "▁façade", + -13.284390449523926 + ], + [ + "opt", + -13.284405708312988 + ], + [ + "▁Wit", + -13.284428596496582 + ], + [ + "▁picket", + -13.284463882446289 + ], + [ + "▁fishes", + -13.284542083740234 + ], + [ + "haul", + -13.284600257873535 + ], + [ + "SAT", + -13.28465747833252 + ], + [ + "▁lumbar", + -13.284697532653809 + ], + [ + "IAN", + -13.284704208374023 + ], + [ + "▁Marxist", + -13.284759521484375 + ], + [ + "▁conveys", + -13.284875869750977 + ], + [ + "oj", + -13.284917831420898 + ], + [ + "▁Donate", + -13.284977912902832 + ], + [ + "▁Disco", + -13.285001754760742 + ], + [ + "▁reluctance", + -13.285028457641602 + ], + [ + "401", + -13.285083770751953 + ], + [ + "▁Sicily", + -13.285133361816406 + ], + [ + "▁dips", + -13.285172462463379 + ], + [ + "050", + -13.285186767578125 + ], + [ + "ные", + -13.285260200500488 + ], + [ + "▁devotees", + -13.285276412963867 + ], + [ + "▁jug", + -13.28528881072998 + ], + [ + "▁genital", + -13.285320281982422 + ], + [ + "essay", + -13.285335540771484 + ], + [ + "fake", + -13.285387992858887 + ], + [ + "▁scrapbook", + -13.285529136657715 + ], + [ + "▁convened", + -13.285623550415039 + ], + [ + "▁detachment", + -13.285623550415039 + ], + [ + "▁parse", + -13.285683631896973 + ], + [ + "▁humbled", + -13.285755157470703 + ], + [ + "▁powering", + -13.285866737365723 + ], + [ + "▁INT", + -13.28591251373291 + ], + [ + "▁scanners", + -13.285923957824707 + ], + [ + "▁Basics", + -13.285938262939453 + ], + [ + "AO", + -13.2860107421875 + ], + [ + "▁Investigations", + -13.286060333251953 + ], + [ + "▁cessation", + -13.286103248596191 + ], + [ + "▁achieves", + -13.286212921142578 + ], + [ + "▁Hui", + -13.286219596862793 + ], + [ + "▁ignite", + -13.286225318908691 + ], + [ + "ACC", + -13.286226272583008 + ], + [ + "▁computerized", + -13.286260604858398 + ], + [ + "▁Apex", + -13.286294937133789 + ], + [ + "Western", + -13.286343574523926 + ], + [ + "Hard", + -13.286359786987305 + ], + [ + "▁wiser", + -13.286396026611328 + ], + [ + "▁strikeouts", + -13.286534309387207 + ], + [ + "▁Audience", + -13.286558151245117 + ], + [ + "▁Tong", + -13.286624908447266 + ], + [ + "▁crooked", + -13.286632537841797 + ], + [ + "▁Tanya", + -13.286666870117188 + ], + [ + "▁Northampton", + -13.286734580993652 + ], + [ + "007", + -13.286788940429688 + ], + [ + "▁Cle", + -13.286879539489746 + ], + [ + "▁hind", + -13.28706169128418 + ], + [ + "Cha", + -13.287126541137695 + ], + [ + "▁correlate", + -13.287137985229492 + ], + [ + "▁cl", + -13.287225723266602 + ], + [ + "ded", + -13.287270545959473 + ], + [ + "▁plaid", + -13.287270545959473 + ], + [ + "uo", + -13.287271499633789 + ], + [ + "abad", + -13.287362098693848 + ], + [ + "wr", + -13.287467002868652 + ], + [ + "▁bailout", + -13.28748893737793 + ], + [ + "▁predominant", + -13.287639617919922 + ], + [ + "endra", + -13.287734031677246 + ], + [ + "▁176", + -13.287741661071777 + ], + [ + "▁barefoot", + -13.287761688232422 + ], + [ + "▁withhold", + -13.287771224975586 + ], + [ + "▁isolates", + -13.287786483764648 + ], + [ + "von", + -13.287788391113281 + ], + [ + "▁amassed", + -13.287914276123047 + ], + [ + "▁sincerity", + -13.287996292114258 + ], + [ + "▁mined", + -13.288006782531738 + ], + [ + "▁poo", + -13.288044929504395 + ], + [ + "▁cub", + -13.288201332092285 + ], + [ + "odi", + -13.288208961486816 + ], + [ + "▁slain", + -13.288208961486816 + ], + [ + "▁Rowe", + -13.288220405578613 + ], + [ + "▁JV", + -13.28832721710205 + ], + [ + "YA", + -13.288358688354492 + ], + [ + "▁Plantation", + -13.288358688354492 + ], + [ + "Matthew", + -13.288440704345703 + ], + [ + "▁poking", + -13.288466453552246 + ], + [ + "▁APT", + -13.288472175598145 + ], + [ + "owners", + -13.288538932800293 + ], + [ + "magic", + -13.288613319396973 + ], + [ + "▁Ox", + -13.288666725158691 + ], + [ + "▁rad", + -13.288704872131348 + ], + [ + "▁NES", + -13.28874397277832 + ], + [ + "▁remover", + -13.288801193237305 + ], + [ + "▁XC", + -13.288864135742188 + ], + [ + "▁Tribal", + -13.288865089416504 + ], + [ + "▁Sup", + -13.288886070251465 + ], + [ + "▁Hana", + -13.288887977600098 + ], + [ + "▁fidelity", + -13.28892993927002 + ], + [ + "▁disqualified", + -13.28893756866455 + ], + [ + "▁taper", + -13.28895378112793 + ], + [ + "▁Gotta", + -13.288999557495117 + ], + [ + "▁understandably", + -13.289095878601074 + ], + [ + "▁seminal", + -13.28909969329834 + ], + [ + "rica", + -13.289144515991211 + ], + [ + "▁Orioles", + -13.289224624633789 + ], + [ + "Which", + -13.28925609588623 + ], + [ + "▁cautioned", + -13.289361000061035 + ], + [ + "earned", + -13.289435386657715 + ], + [ + "▁dismal", + -13.289440155029297 + ], + [ + "rice", + -13.289456367492676 + ], + [ + "Ball", + -13.289493560791016 + ], + [ + "▁recliner", + -13.289523124694824 + ], + [ + "▁geographically", + -13.28952693939209 + ], + [ + "▁analogous", + -13.289546966552734 + ], + [ + "▁microorganisms", + -13.289557456970215 + ], + [ + "▁PLAY", + -13.289607048034668 + ], + [ + "▁Crimea", + -13.289692878723145 + ], + [ + "▁clueless", + -13.28969669342041 + ], + [ + "Welcome", + -13.289718627929688 + ], + [ + "nh", + -13.289738655090332 + ], + [ + "▁donuts", + -13.289774894714355 + ], + [ + "▁Installing", + -13.289896965026855 + ], + [ + "▁airbags", + -13.289933204650879 + ], + [ + "214", + -13.289977073669434 + ], + [ + "▁Tao", + -13.290038108825684 + ], + [ + "phon", + -13.290084838867188 + ], + [ + "▁Seniors", + -13.290109634399414 + ], + [ + "▁Pyramid", + -13.290125846862793 + ], + [ + "uter", + -13.2901611328125 + ], + [ + "vic", + -13.290176391601562 + ], + [ + "▁punishing", + -13.290217399597168 + ], + [ + "▁meadow", + -13.290288925170898 + ], + [ + "▁stipulated", + -13.290471076965332 + ], + [ + "▁byte", + -13.290481567382812 + ], + [ + "▁Illustrator", + -13.290492057800293 + ], + [ + "IDE", + -13.290495872497559 + ], + [ + "▁consumes", + -13.290731430053711 + ], + [ + "▁Linden", + -13.290813446044922 + ], + [ + "▁Hector", + -13.290871620178223 + ], + [ + "▁cremation", + -13.29092025756836 + ], + [ + "▁Kari", + -13.290937423706055 + ], + [ + "▁blindly", + -13.291117668151855 + ], + [ + "▁Bihar", + -13.29112720489502 + ], + [ + "uu", + -13.291169166564941 + ], + [ + "nig", + -13.291218757629395 + ], + [ + "▁Rovers", + -13.291248321533203 + ], + [ + "▁leftist", + -13.29126262664795 + ], + [ + "▁marquee", + -13.291282653808594 + ], + [ + "secondary", + -13.291292190551758 + ], + [ + "▁Dartmouth", + -13.291293144226074 + ], + [ + "▁Thick", + -13.291375160217285 + ], + [ + "signed", + -13.291380882263184 + ], + [ + "▁Vaughan", + -13.291399002075195 + ], + [ + "▁Bicycle", + -13.291518211364746 + ], + [ + "▁к", + -13.291571617126465 + ], + [ + "lion", + -13.291584014892578 + ], + [ + "▁memes", + -13.291669845581055 + ], + [ + "▁Rift", + -13.291749000549316 + ], + [ + "在", + -13.291751861572266 + ], + [ + "▁Ingram", + -13.291754722595215 + ], + [ + "192", + -13.29185676574707 + ], + [ + "▁ruining", + -13.291908264160156 + ], + [ + "Spring", + -13.291971206665039 + ], + [ + "▁Vest", + -13.291993141174316 + ], + [ + "consumer", + -13.291998863220215 + ], + [ + "register", + -13.291998863220215 + ], + [ + "中", + -13.292045593261719 + ], + [ + "▁kamagra", + -13.292048454284668 + ], + [ + "▁Proud", + -13.292051315307617 + ], + [ + "polis", + -13.292058944702148 + ], + [ + "surface", + -13.292131423950195 + ], + [ + "▁multiplication", + -13.292167663574219 + ], + [ + "burning", + -13.292229652404785 + ], + [ + "NESS", + -13.292269706726074 + ], + [ + "▁Vivian", + -13.292276382446289 + ], + [ + "▁aux", + -13.292319297790527 + ], + [ + "▁vividly", + -13.292336463928223 + ], + [ + "▁Addison", + -13.292362213134766 + ], + [ + "▁calculus", + -13.292404174804688 + ], + [ + "▁interplay", + -13.292442321777344 + ], + [ + "▁vo", + -13.292444229125977 + ], + [ + "colour", + -13.292498588562012 + ], + [ + "▁emptied", + -13.292547225952148 + ], + [ + "▁Replica", + -13.292625427246094 + ], + [ + "NJ", + -13.292634010314941 + ], + [ + "stro", + -13.292851448059082 + ], + [ + "▁certify", + -13.292898178100586 + ], + [ + "▁Baja", + -13.292945861816406 + ], + [ + "▁Dim", + -13.292988777160645 + ], + [ + "▁supervisory", + -13.292989730834961 + ], + [ + "▁Reward", + -13.293084144592285 + ], + [ + "▁Phuket", + -13.293099403381348 + ], + [ + "163", + -13.29316234588623 + ], + [ + "▁dolphin", + -13.293172836303711 + ], + [ + "▁Luca", + -13.293181419372559 + ], + [ + "▁Ama", + -13.293242454528809 + ], + [ + "▁antibacterial", + -13.293270111083984 + ], + [ + "ANG", + -13.293296813964844 + ], + [ + "▁Chap", + -13.293322563171387 + ], + [ + "▁Din", + -13.293356895446777 + ], + [ + "dling", + -13.293451309204102 + ], + [ + "▁Romero", + -13.29345417022705 + ], + [ + "▁Jamal", + -13.29345989227295 + ], + [ + "▁orchard", + -13.293473243713379 + ], + [ + "pon", + -13.293543815612793 + ], + [ + "Vision", + -13.293716430664062 + ], + [ + "▁graveyard", + -13.293744087219238 + ], + [ + "▁245", + -13.293874740600586 + ], + [ + "▁Isa", + -13.293903350830078 + ], + [ + "▁tyranny", + -13.294105529785156 + ], + [ + "▁attaining", + -13.294289588928223 + ], + [ + "▁conserved", + -13.29430866241455 + ], + [ + "▁DOJ", + -13.29434871673584 + ], + [ + "▁impetus", + -13.294384956359863 + ], + [ + "purchase", + -13.29443073272705 + ], + [ + "▁persuasion", + -13.294431686401367 + ], + [ + "▁DVR", + -13.294488906860352 + ], + [ + "▁commencing", + -13.294506072998047 + ], + [ + "▁Achilles", + -13.294594764709473 + ], + [ + "▁pathological", + -13.294597625732422 + ], + [ + "▁rodents", + -13.294757843017578 + ], + [ + "▁Objects", + -13.29478645324707 + ], + [ + "▁Gol", + -13.294852256774902 + ], + [ + "▁Rudd", + -13.294987678527832 + ], + [ + "▁Column", + -13.295024871826172 + ], + [ + "▁impede", + -13.29507064819336 + ], + [ + "▁attaches", + -13.295188903808594 + ], + [ + "▁bogus", + -13.295210838317871 + ], + [ + "▁depletion", + -13.29525375366211 + ], + [ + "▁holster", + -13.295331001281738 + ], + [ + "iste", + -13.295376777648926 + ], + [ + "qa", + -13.295401573181152 + ], + [ + "▁Greetings", + -13.295408248901367 + ], + [ + "▁Crush", + -13.295413970947266 + ], + [ + "▁Judgment", + -13.295449256896973 + ], + [ + "▁complies", + -13.295494079589844 + ], + [ + "▁1889", + -13.295550346374512 + ], + [ + "Manager", + -13.295554161071777 + ], + [ + "▁Walters", + -13.295555114746094 + ], + [ + "▁ea", + -13.29560661315918 + ], + [ + "▁oncology", + -13.29561996459961 + ], + [ + "▁Principle", + -13.29569149017334 + ], + [ + "▁embellished", + -13.295717239379883 + ], + [ + "ла", + -13.295756340026855 + ], + [ + "Christmas", + -13.29584789276123 + ], + [ + "▁breeders", + -13.295903205871582 + ], + [ + "▁influencer", + -13.296064376831055 + ], + [ + "▁recourse", + -13.296097755432129 + ], + [ + "▁shalt", + -13.296245574951172 + ], + [ + "▁zur", + -13.296266555786133 + ], + [ + "git", + -13.296283721923828 + ], + [ + "▁Yates", + -13.296321868896484 + ], + [ + "▁jS", + -13.296351432800293 + ], + [ + "▁moods", + -13.296390533447266 + ], + [ + "▁frowned", + -13.296499252319336 + ], + [ + "move", + -13.296531677246094 + ], + [ + "umba", + -13.296547889709473 + ], + [ + "▁flange", + -13.296588897705078 + ], + [ + "▁Origins", + -13.296642303466797 + ], + [ + "▁MOT", + -13.29666805267334 + ], + [ + "▁Senegal", + -13.296836853027344 + ], + [ + "▁banging", + -13.29683780670166 + ], + [ + "Bit", + -13.296961784362793 + ], + [ + "▁appetizers", + -13.29697036743164 + ], + [ + "Order", + -13.297113418579102 + ], + [ + "▁Ahmedabad", + -13.297159194946289 + ], + [ + "Lady", + -13.29716682434082 + ], + [ + "▁dub", + -13.297280311584473 + ], + [ + "▁detainees", + -13.297316551208496 + ], + [ + "▁Deaf", + -13.297333717346191 + ], + [ + "▁coefficients", + -13.297347068786621 + ], + [ + "gp", + -13.297411918640137 + ], + [ + "▁Rohingya", + -13.297435760498047 + ], + [ + "▁520", + -13.297467231750488 + ], + [ + "▁dosing", + -13.297507286071777 + ], + [ + "▁Shops", + -13.29752254486084 + ], + [ + "▁correlations", + -13.297532081604004 + ], + [ + "▁angst", + -13.297585487365723 + ], + [ + "Sometimes", + -13.297612190246582 + ], + [ + "▁Ethical", + -13.297651290893555 + ], + [ + "▁evacuate", + -13.297674179077148 + ], + [ + "▁Sherry", + -13.297744750976562 + ], + [ + "▁Kohl", + -13.29778003692627 + ], + [ + "▁AMA", + -13.297812461853027 + ], + [ + "▁Salary", + -13.297883033752441 + ], + [ + "▁Oxygen", + -13.29794979095459 + ], + [ + "▁HMS", + -13.297972679138184 + ], + [ + "▁squeezing", + -13.298016548156738 + ], + [ + "▁osteoporosis", + -13.298135757446289 + ], + [ + "oral", + -13.298216819763184 + ], + [ + "▁Practitioner", + -13.298361778259277 + ], + [ + "▁Alvarez", + -13.298395156860352 + ], + [ + "▁inequalities", + -13.298422813415527 + ], + [ + "▁undermining", + -13.298501968383789 + ], + [ + "▁über", + -13.298574447631836 + ], + [ + "▁overarching", + -13.29859447479248 + ], + [ + "▁£30", + -13.298601150512695 + ], + [ + "Plan", + -13.298609733581543 + ], + [ + "▁elongated", + -13.298615455627441 + ], + [ + "▁underwriting", + -13.298685073852539 + ], + [ + "▁academically", + -13.298688888549805 + ], + [ + "▁spies", + -13.298727989196777 + ], + [ + "▁Mentor", + -13.298937797546387 + ], + [ + "▁DAYS", + -13.29893970489502 + ], + [ + "▁Mystic", + -13.299053192138672 + ], + [ + "▁Zac", + -13.2991304397583 + ], + [ + "211", + -13.299176216125488 + ], + [ + "▁Paying", + -13.299189567565918 + ], + [ + "▁Daly", + -13.299306869506836 + ], + [ + "Shirt", + -13.299320220947266 + ], + [ + "Indian", + -13.299360275268555 + ], + [ + "ific", + -13.299426078796387 + ], + [ + "▁adverts", + -13.29943561553955 + ], + [ + "▁MarketBeat", + -13.29944896697998 + ], + [ + "▁Picasso", + -13.299501419067383 + ], + [ + "▁tongues", + -13.299520492553711 + ], + [ + "▁karaoke", + -13.299521446228027 + ], + [ + "▁Madden", + -13.299524307250977 + ], + [ + "▁182", + -13.299596786499023 + ], + [ + "activity", + -13.299605369567871 + ], + [ + "▁Preliminary", + -13.29964828491211 + ], + [ + "OE", + -13.299696922302246 + ], + [ + "▁Olsen", + -13.299696922302246 + ], + [ + "▁WHITE", + -13.299715042114258 + ], + [ + "past", + -13.299773216247559 + ], + [ + "lower", + -13.299775123596191 + ], + [ + "wich", + -13.299776077270508 + ], + [ + "▁approximation", + -13.29991340637207 + ], + [ + "▁Maison", + -13.300007820129395 + ], + [ + "▁escalate", + -13.300092697143555 + ], + [ + "▁motorway", + -13.300092697143555 + ], + [ + "▁1881", + -13.300094604492188 + ], + [ + "▁autopsy", + -13.300119400024414 + ], + [ + "▁eviction", + -13.300190925598145 + ], + [ + "rex", + -13.300225257873535 + ], + [ + "▁servo", + -13.300300598144531 + ], + [ + "▁verifying", + -13.300323486328125 + ], + [ + "리", + -13.30034351348877 + ], + [ + "▁collaboratively", + -13.300433158874512 + ], + [ + "▁Fritz", + -13.300464630126953 + ], + [ + "▁completes", + -13.300470352172852 + ], + [ + "▁elegantly", + -13.300585746765137 + ], + [ + "pac", + -13.300621032714844 + ], + [ + "today", + -13.300688743591309 + ], + [ + "shape", + -13.300712585449219 + ], + [ + "▁disruptions", + -13.300796508789062 + ], + [ + "▁Avalon", + -13.300799369812012 + ], + [ + "▁ly", + -13.30082893371582 + ], + [ + "▁realising", + -13.300979614257812 + ], + [ + "▁Gather", + -13.301030158996582 + ], + [ + "▁org", + -13.301187515258789 + ], + [ + "▁stockings", + -13.301271438598633 + ], + [ + "▁TED", + -13.301412582397461 + ], + [ + "▁sideline", + -13.30155086517334 + ], + [ + "Tu", + -13.301568984985352 + ], + [ + "ENCE", + -13.30158519744873 + ], + [ + "▁CRC", + -13.301783561706543 + ], + [ + "▁Meridian", + -13.301870346069336 + ], + [ + "▁comrades", + -13.30195140838623 + ], + [ + "▁methyl", + -13.301957130432129 + ], + [ + "▁pertains", + -13.301993370056152 + ], + [ + "▁consolidating", + -13.302058219909668 + ], + [ + "▁FAR", + -13.302063941955566 + ], + [ + "▁Lava", + -13.302132606506348 + ], + [ + "ì", + -13.30221939086914 + ], + [ + "▁Therapeutics", + -13.302257537841797 + ], + [ + "▁Toss", + -13.302299499511719 + ], + [ + "▁modernization", + -13.302313804626465 + ], + [ + "▁virtualization", + -13.302318572998047 + ], + [ + "▁Maldives", + -13.30236530303955 + ], + [ + "▁vandalism", + -13.302406311035156 + ], + [ + "▁Armour", + -13.302419662475586 + ], + [ + "▁luminous", + -13.30251407623291 + ], + [ + "▁Cert", + -13.302581787109375 + ], + [ + "▁beauties", + -13.30259895324707 + ], + [ + "▁saddened", + -13.302637100219727 + ], + [ + "625", + -13.30270767211914 + ], + [ + "▁trapping", + -13.302708625793457 + ], + [ + "▁Saba", + -13.302745819091797 + ], + [ + "▁Biggest", + -13.302790641784668 + ], + [ + "▁Madagascar", + -13.302824020385742 + ], + [ + "▁Titanic", + -13.302841186523438 + ], + [ + "▁valuations", + -13.302898406982422 + ], + [ + "▁Pil", + -13.302924156188965 + ], + [ + "▁NPC", + -13.303022384643555 + ], + [ + "League", + -13.303101539611816 + ], + [ + "▁Stats", + -13.303183555603027 + ], + [ + "apo", + -13.303323745727539 + ], + [ + "▁Raising", + -13.303434371948242 + ], + [ + "▁affirmation", + -13.303583145141602 + ], + [ + "▁CPI", + -13.30378246307373 + ], + [ + "▁Workshops", + -13.303836822509766 + ], + [ + "▁turbulence", + -13.303844451904297 + ], + [ + "▁backside", + -13.303909301757812 + ], + [ + "▁Jury", + -13.303954124450684 + ], + [ + "▁philanthropy", + -13.304020881652832 + ], + [ + "▁sharper", + -13.30402946472168 + ], + [ + "▁Wilkinson", + -13.304085731506348 + ], + [ + "▁Samoa", + -13.304091453552246 + ], + [ + "▁suitably", + -13.304108619689941 + ], + [ + "▁Haas", + -13.304189682006836 + ], + [ + "▁Threat", + -13.304242134094238 + ], + [ + "▁2024", + -13.304288864135742 + ], + [ + "▁Aloe", + -13.304316520690918 + ], + [ + "cept", + -13.304365158081055 + ], + [ + "▁Employer", + -13.304418563842773 + ], + [ + "▁decal", + -13.304442405700684 + ], + [ + "▁Gad", + -13.304462432861328 + ], + [ + "▁intertwined", + -13.30448055267334 + ], + [ + "▁Sanford", + -13.304505348205566 + ], + [ + "▁yachts", + -13.304540634155273 + ], + [ + "▁Nadal", + -13.304603576660156 + ], + [ + "▁Mozambique", + -13.304679870605469 + ], + [ + "▁Amos", + -13.304712295532227 + ], + [ + "▁whim", + -13.30473518371582 + ], + [ + "▁incline", + -13.304749488830566 + ], + [ + "▁tending", + -13.304763793945312 + ], + [ + "▁researches", + -13.304780960083008 + ], + [ + "▁RCA", + -13.304786682128906 + ], + [ + "female", + -13.304807662963867 + ], + [ + "▁Dolphin", + -13.304850578308105 + ], + [ + "▁tranquility", + -13.304961204528809 + ], + [ + "▁thinning", + -13.305096626281738 + ], + [ + "▁caucus", + -13.305103302001953 + ], + [ + "▁sizeable", + -13.305206298828125 + ], + [ + "▁Labels", + -13.305273056030273 + ], + [ + "▁Presidency", + -13.305280685424805 + ], + [ + "▁quake", + -13.305424690246582 + ], + [ + "UG", + -13.305458068847656 + ], + [ + "▁cancellations", + -13.305523872375488 + ], + [ + "▁Choi", + -13.305553436279297 + ], + [ + "illon", + -13.305566787719727 + ], + [ + "▁Bernardino", + -13.30561351776123 + ], + [ + "▁Nur", + -13.305655479431152 + ], + [ + "▁Parisian", + -13.305724143981934 + ], + [ + "▁Pines", + -13.305733680725098 + ], + [ + "gaard", + -13.305800437927246 + ], + [ + "▁Ele", + -13.305811882019043 + ], + [ + "▁commune", + -13.305818557739258 + ], + [ + "▁Engel", + -13.305825233459473 + ], + [ + "▁monstrous", + -13.3058443069458 + ], + [ + "tub", + -13.305877685546875 + ], + [ + "ave", + -13.305882453918457 + ], + [ + "▁fave", + -13.305902481079102 + ], + [ + "▁netting", + -13.305974960327148 + ], + [ + "tol", + -13.305975914001465 + ], + [ + "▁Sn", + -13.306039810180664 + ], + [ + "▁crafty", + -13.306069374084473 + ], + [ + "INGS", + -13.30610179901123 + ], + [ + "▁jaws", + -13.306122779846191 + ], + [ + "▁coop", + -13.306218147277832 + ], + [ + "▁anguish", + -13.306279182434082 + ], + [ + "ï", + -13.306291580200195 + ], + [ + "▁Radiation", + -13.306327819824219 + ], + [ + "▁Tho", + -13.3063383102417 + ], + [ + "▁whining", + -13.306584358215332 + ], + [ + "ischen", + -13.306612014770508 + ], + [ + "sbury", + -13.306612014770508 + ], + [ + "String", + -13.306628227233887 + ], + [ + "▁melee", + -13.30672836303711 + ], + [ + "▁sprinkler", + -13.306740760803223 + ], + [ + "Jewish", + -13.306797981262207 + ], + [ + "▁rarity", + -13.306807518005371 + ], + [ + "▁offend", + -13.306861877441406 + ], + [ + "▁stagnant", + -13.30691909790039 + ], + [ + "▁Vinci", + -13.306923866271973 + ], + [ + "▁practising", + -13.306944847106934 + ], + [ + "▁prides", + -13.307008743286133 + ], + [ + "▁av", + -13.307016372680664 + ], + [ + "▁Charger", + -13.307036399841309 + ], + [ + "▁itchy", + -13.307046890258789 + ], + [ + "▁outraged", + -13.307123184204102 + ], + [ + "▁accrued", + -13.30716609954834 + ], + [ + "▁deceive", + -13.307308197021484 + ], + [ + "alu", + -13.307344436645508 + ], + [ + "Atlantic", + -13.307351112365723 + ], + [ + "▁Vit", + -13.307371139526367 + ], + [ + "shed", + -13.30740737915039 + ], + [ + "▁unbearable", + -13.307624816894531 + ], + [ + "▁discretionary", + -13.307640075683594 + ], + [ + "▁Intern", + -13.307653427124023 + ], + [ + "▁Torrent", + -13.307714462280273 + ], + [ + "▁churn", + -13.307724952697754 + ], + [ + "▁Bourbon", + -13.30781078338623 + ], + [ + "▁STEP", + -13.30781078338623 + ], + [ + "▁mc", + -13.307862281799316 + ], + [ + "▁draped", + -13.308003425598145 + ], + [ + "▁cranes", + -13.308037757873535 + ], + [ + "▁lawmaker", + -13.308145523071289 + ], + [ + "systems", + -13.30816650390625 + ], + [ + "character", + -13.308228492736816 + ], + [ + "▁proverbial", + -13.308353424072266 + ], + [ + "liner", + -13.308354377746582 + ], + [ + "▁232", + -13.308417320251465 + ], + [ + "▁nicknamed", + -13.308462142944336 + ], + [ + "▁demeanor", + -13.308472633361816 + ], + [ + "▁circumference", + -13.308499336242676 + ], + [ + "▁fir", + -13.308582305908203 + ], + [ + "▁unload", + -13.308586120605469 + ], + [ + "▁KEY", + -13.30860710144043 + ], + [ + "cards", + -13.308631896972656 + ], + [ + "▁dashed", + -13.308635711669922 + ], + [ + "▁Boiler", + -13.308650970458984 + ], + [ + "▁Biotechnology", + -13.308695793151855 + ], + [ + "▁guaranteeing", + -13.308700561523438 + ], + [ + "▁prairie", + -13.30880355834961 + ], + [ + "▁synopsis", + -13.30886173248291 + ], + [ + "▁pep", + -13.308866500854492 + ], + [ + "▁ICU", + -13.30902099609375 + ], + [ + "▁Garner", + -13.3090238571167 + ], + [ + "▁unsettling", + -13.309045791625977 + ], + [ + "sight", + -13.309091567993164 + ], + [ + "lus", + -13.309144020080566 + ], + [ + "▁restrooms", + -13.309144020080566 + ], + [ + "▁Tories", + -13.309151649475098 + ], + [ + "▁Tray", + -13.309188842773438 + ], + [ + "164", + -13.309228897094727 + ], + [ + "Dan", + -13.309239387512207 + ], + [ + "▁Helps", + -13.309300422668457 + ], + [ + "flash", + -13.309355735778809 + ], + [ + "tat", + -13.309368133544922 + ], + [ + "rá", + -13.309371948242188 + ], + [ + "dating", + -13.3093900680542 + ], + [ + "nde", + -13.309488296508789 + ], + [ + "uit", + -13.309490203857422 + ], + [ + "▁URI", + -13.309531211853027 + ], + [ + "Id", + -13.30955982208252 + ], + [ + "▁Andersen", + -13.309627532958984 + ], + [ + "rion", + -13.309667587280273 + ], + [ + "▁Oilers", + -13.309671401977539 + ], + [ + "employment", + -13.309703826904297 + ], + [ + "▁425", + -13.30972671508789 + ], + [ + "XP", + -13.30972957611084 + ], + [ + "▁testers", + -13.30978775024414 + ], + [ + "▁Maureen", + -13.309892654418945 + ], + [ + "pressed", + -13.309911727905273 + ], + [ + "▁£15", + -13.309921264648438 + ], + [ + "tique", + -13.309945106506348 + ], + [ + "▁fumes", + -13.309955596923828 + ], + [ + "▁Ninth", + -13.309968948364258 + ], + [ + "▁sitcom", + -13.310020446777344 + ], + [ + "▁DOI", + -13.310062408447266 + ], + [ + "▁Bethany", + -13.310090065002441 + ], + [ + "▁bon", + -13.310091018676758 + ], + [ + "▁directives", + -13.310115814208984 + ], + [ + "▁Jai", + -13.31019401550293 + ], + [ + "▁Buffett", + -13.310196876525879 + ], + [ + "▁tonic", + -13.310211181640625 + ], + [ + "▁horrendous", + -13.310282707214355 + ], + [ + "▁Lad", + -13.310290336608887 + ], + [ + "▁conferred", + -13.310445785522461 + ], + [ + "▁methodological", + -13.310465812683105 + ], + [ + "▁arduous", + -13.310477256774902 + ], + [ + "▁Corpus", + -13.310687065124512 + ], + [ + "▁rift", + -13.3107271194458 + ], + [ + "poll", + -13.310882568359375 + ], + [ + "rama", + -13.310897827148438 + ], + [ + "▁flashy", + -13.310956001281738 + ], + [ + "▁1888", + -13.310966491699219 + ], + [ + "▁Nose", + -13.310989379882812 + ], + [ + "▁worsening", + -13.31099796295166 + ], + [ + "▁Invite", + -13.311017990112305 + ], + [ + "▁Israelites", + -13.311025619506836 + ], + [ + "▁survives", + -13.311040878295898 + ], + [ + "▁Dharma", + -13.311047554016113 + ], + [ + "Journal", + -13.311107635498047 + ], + [ + "▁Scores", + -13.311113357543945 + ], + [ + "▁recruiter", + -13.311177253723145 + ], + [ + "▁Tactical", + -13.311214447021484 + ], + [ + "width", + -13.311256408691406 + ], + [ + "▁Euros", + -13.311297416687012 + ], + [ + "004", + -13.311302185058594 + ], + [ + "▁ETFs", + -13.311341285705566 + ], + [ + "▁Hag", + -13.31137752532959 + ], + [ + "▁florida", + -13.311394691467285 + ], + [ + "▁clipart", + -13.311453819274902 + ], + [ + "▁aptly", + -13.311458587646484 + ], + [ + "▁VE", + -13.311494827270508 + ], + [ + "▁Sundance", + -13.311565399169922 + ], + [ + "▁cardigan", + -13.31158447265625 + ], + [ + "▁Sections", + -13.311638832092285 + ], + [ + "▁Maths", + -13.311728477478027 + ], + [ + "▁commandments", + -13.311816215515137 + ], + [ + "EG", + -13.311848640441895 + ], + [ + "▁Ordinary", + -13.311899185180664 + ], + [ + "▁Booster", + -13.311969757080078 + ], + [ + "▁girlfriends", + -13.311969757080078 + ], + [ + "▁greener", + -13.312097549438477 + ], + [ + "boys", + -13.31212329864502 + ], + [ + "PU", + -13.312135696411133 + ], + [ + "hur", + -13.31223201751709 + ], + [ + "▁ominous", + -13.312335968017578 + ], + [ + "tler", + -13.312374114990234 + ], + [ + "▁Circular", + -13.31239128112793 + ], + [ + "sleep", + -13.312407493591309 + ], + [ + "▁voor", + -13.312411308288574 + ], + [ + "trap", + -13.312454223632812 + ], + [ + "egg", + -13.312541007995605 + ], + [ + "Cast", + -13.312560081481934 + ], + [ + "▁optimise", + -13.312637329101562 + ], + [ + "cro", + -13.312670707702637 + ], + [ + "▁manned", + -13.31268310546875 + ], + [ + "▁paddling", + -13.312907218933105 + ], + [ + "Contact", + -13.31294059753418 + ], + [ + "▁snippets", + -13.312941551208496 + ], + [ + "former", + -13.3130464553833 + ], + [ + "▁Expedition", + -13.313103675842285 + ], + [ + "inning", + -13.313158988952637 + ], + [ + "oga", + -13.313298225402832 + ], + [ + "▁STILL", + -13.313304901123047 + ], + [ + "▁diocese", + -13.313375473022461 + ], + [ + "▁Bray", + -13.313453674316406 + ], + [ + "226", + -13.313469886779785 + ], + [ + "endo", + -13.3135404586792 + ], + [ + "▁unpublished", + -13.31368350982666 + ], + [ + "ced", + -13.313694953918457 + ], + [ + "▁Collier", + -13.31383228302002 + ], + [ + "▁artistry", + -13.313848495483398 + ], + [ + "▁Magnolia", + -13.313898086547852 + ], + [ + "▁Cache", + -13.313931465148926 + ], + [ + "▁prehistoric", + -13.313985824584961 + ], + [ + "▁distributes", + -13.313992500305176 + ], + [ + "▁Fernandez", + -13.31403636932373 + ], + [ + "▁Mare", + -13.314040184020996 + ], + [ + "aran", + -13.314059257507324 + ], + [ + "▁sha", + -13.31415843963623 + ], + [ + "▁Serum", + -13.314244270324707 + ], + [ + "▁vaccinated", + -13.314289093017578 + ], + [ + "▁muzzle", + -13.314321517944336 + ], + [ + "▁discrepancy", + -13.314391136169434 + ], + [ + "▁lyric", + -13.314393997192383 + ], + [ + "▁implanted", + -13.314451217651367 + ], + [ + "sufficient", + -13.314517974853516 + ], + [ + "▁indexing", + -13.314565658569336 + ], + [ + "▁auditors", + -13.314568519592285 + ], + [ + "▁defaults", + -13.314666748046875 + ], + [ + "▁Sac", + -13.31473445892334 + ], + [ + "▁Scope", + -13.314752578735352 + ], + [ + "▁Calls", + -13.31478214263916 + ], + [ + "▁grinned", + -13.314791679382324 + ], + [ + "▁normalized", + -13.314801216125488 + ], + [ + "▁misconceptions", + -13.314846992492676 + ], + [ + "▁portability", + -13.314897537231445 + ], + [ + "husband", + -13.314898490905762 + ], + [ + "stack", + -13.314921379089355 + ], + [ + "▁sculpted", + -13.314934730529785 + ], + [ + "▁incense", + -13.315051078796387 + ], + [ + "▁serpent", + -13.315069198608398 + ], + [ + "▁coriander", + -13.315078735351562 + ], + [ + "▁spas", + -13.315099716186523 + ], + [ + "tera", + -13.315104484558105 + ], + [ + "是", + -13.31521987915039 + ], + [ + "▁slang", + -13.315285682678223 + ], + [ + "▁Notwithstanding", + -13.315360069274902 + ], + [ + "▁Spaces", + -13.315366744995117 + ], + [ + "▁Damian", + -13.315394401550293 + ], + [ + "atha", + -13.315412521362305 + ], + [ + "▁Measuring", + -13.315486907958984 + ], + [ + "osh", + -13.315598487854004 + ], + [ + "▁neuronal", + -13.31562328338623 + ], + [ + "▁Gets", + -13.31564998626709 + ], + [ + "▁catalytic", + -13.315677642822266 + ], + [ + "mai", + -13.315691947937012 + ], + [ + "Î", + -13.315739631652832 + ], + [ + "161", + -13.31578540802002 + ], + [ + "▁Pill", + -13.315850257873535 + ], + [ + "▁rhetorical", + -13.315902709960938 + ], + [ + "3⁄4", + -13.316012382507324 + ], + [ + "−1", + -13.316094398498535 + ], + [ + "ony", + -13.316163063049316 + ], + [ + "▁Goat", + -13.316234588623047 + ], + [ + "▁Jae", + -13.316241264343262 + ], + [ + "caps", + -13.316474914550781 + ], + [ + "▁snare", + -13.316488265991211 + ], + [ + "dha", + -13.316507339477539 + ], + [ + "▁escalated", + -13.316582679748535 + ], + [ + "▁stencil", + -13.316590309143066 + ], + [ + "▁stabilized", + -13.316645622253418 + ], + [ + "boards", + -13.316673278808594 + ], + [ + "▁Dre", + -13.3167142868042 + ], + [ + "guy", + -13.316977500915527 + ], + [ + "▁Frei", + -13.3170166015625 + ], + [ + "▁orally", + -13.317049026489258 + ], + [ + "399", + -13.31707763671875 + ], + [ + "▁Kou", + -13.317094802856445 + ], + [ + "▁afflicted", + -13.317176818847656 + ], + [ + "▁iPads", + -13.317205429077148 + ], + [ + "▁agitation", + -13.317206382751465 + ], + [ + "▁Annex", + -13.317225456237793 + ], + [ + "▁Mob", + -13.317301750183105 + ], + [ + "▁vantage", + -13.317414283752441 + ], + [ + "▁Mb", + -13.317424774169922 + ], + [ + "▁WTO", + -13.317455291748047 + ], + [ + "▁thoughtfully", + -13.317474365234375 + ], + [ + "tors", + -13.317523002624512 + ], + [ + "▁swallowing", + -13.317534446716309 + ], + [ + "▁encountering", + -13.317676544189453 + ], + [ + "▁Tillerson", + -13.31768798828125 + ], + [ + "▁Glendale", + -13.317731857299805 + ], + [ + "ises", + -13.317740440368652 + ], + [ + "▁injuring", + -13.31775951385498 + ], + [ + "▁Beware", + -13.317806243896484 + ], + [ + "▁Fifteen", + -13.317818641662598 + ], + [ + "▁interacts", + -13.317840576171875 + ], + [ + "▁IKEA", + -13.317841529846191 + ], + [ + "▁geothermal", + -13.317854881286621 + ], + [ + "▁entryway", + -13.317855834960938 + ], + [ + "xo", + -13.317861557006836 + ], + [ + "▁Stratford", + -13.317909240722656 + ], + [ + "▁bookmarked", + -13.317985534667969 + ], + [ + "▁XT", + -13.318016052246094 + ], + [ + "▁Tears", + -13.318020820617676 + ], + [ + "540", + -13.318038940429688 + ], + [ + "▁runaway", + -13.318099021911621 + ], + [ + "▁Thom", + -13.318357467651367 + ], + [ + "▁percentile", + -13.318373680114746 + ], + [ + "▁squid", + -13.318735122680664 + ], + [ + "▁Minn", + -13.318745613098145 + ], + [ + "▁Accreditation", + -13.318802833557129 + ], + [ + "▁Talbot", + -13.318857192993164 + ], + [ + "river", + -13.318888664245605 + ], + [ + "assisted", + -13.318923950195312 + ], + [ + "▁teddy", + -13.318970680236816 + ], + [ + "▁9001", + -13.318995475769043 + ], + [ + "▁Kramer", + -13.319077491760254 + ], + [ + "fig", + -13.319106101989746 + ], + [ + "▁unresolved", + -13.319329261779785 + ], + [ + "▁Artisan", + -13.31938362121582 + ], + [ + "▁Radar", + -13.319418907165527 + ], + [ + "Du", + -13.31942081451416 + ], + [ + "▁Sahara", + -13.319439888000488 + ], + [ + "172", + -13.319450378417969 + ], + [ + "▁powders", + -13.319477081298828 + ], + [ + "▁broom", + -13.3195219039917 + ], + [ + "▁previews", + -13.319535255432129 + ], + [ + "252", + -13.319585800170898 + ], + [ + "▁synthesized", + -13.31966781616211 + ], + [ + "Col", + -13.319684982299805 + ], + [ + "ryn", + -13.31974983215332 + ], + [ + "math", + -13.319866180419922 + ], + [ + "▁Pepsi", + -13.319877624511719 + ], + [ + "▁allergens", + -13.319879531860352 + ], + [ + "▁emoji", + -13.31997013092041 + ], + [ + "▁rife", + -13.32003116607666 + ], + [ + "▁Ortiz", + -13.320063591003418 + ], + [ + "▁personalization", + -13.320111274719238 + ], + [ + "Mu", + -13.320117950439453 + ], + [ + "▁Cult", + -13.320162773132324 + ], + [ + "▁SY", + -13.320350646972656 + ], + [ + "▁hamstring", + -13.32036304473877 + ], + [ + "▁Pharaoh", + -13.320474624633789 + ], + [ + "vac", + -13.320514678955078 + ], + [ + "▁erroneous", + -13.320524215698242 + ], + [ + "▁Burgess", + -13.320589065551758 + ], + [ + "▁unlucky", + -13.320642471313477 + ], + [ + "▁cosplay", + -13.320693969726562 + ], + [ + "▁dispensing", + -13.32075309753418 + ], + [ + "▁Horses", + -13.320789337158203 + ], + [ + "▁disparities", + -13.320802688598633 + ], + [ + "FN", + -13.320878982543945 + ], + [ + "▁scrapped", + -13.320961952209473 + ], + [ + "▁Guardians", + -13.321011543273926 + ], + [ + "alpha", + -13.321024894714355 + ], + [ + "▁heaps", + -13.32104778289795 + ], + [ + "153", + -13.32106876373291 + ], + [ + "▁brag", + -13.32111644744873 + ], + [ + "▁weep", + -13.321179389953613 + ], + [ + "▁Shepard", + -13.321194648742676 + ], + [ + "▁presumption", + -13.321199417114258 + ], + [ + "▁Paddy", + -13.321212768554688 + ], + [ + "Earth", + -13.32125473022461 + ], + [ + "▁Admissions", + -13.321269989013672 + ], + [ + "▁reused", + -13.32127857208252 + ], + [ + "510", + -13.321288108825684 + ], + [ + "LING", + -13.32130241394043 + ], + [ + "▁Bethesda", + -13.321325302124023 + ], + [ + "▁sind", + -13.321337699890137 + ], + [ + "▁Ness", + -13.321348190307617 + ], + [ + "▁yearning", + -13.3213529586792 + ], + [ + "▁divergence", + -13.32139778137207 + ], + [ + "σ", + -13.321415901184082 + ], + [ + "shared", + -13.32150650024414 + ], + [ + "▁Carefully", + -13.321507453918457 + ], + [ + "▁Burt", + -13.321526527404785 + ], + [ + "▁Pear", + -13.32153606414795 + ], + [ + "▁Financing", + -13.321540832519531 + ], + [ + "▁fad", + -13.321553230285645 + ], + [ + "educated", + -13.321563720703125 + ], + [ + "▁Acres", + -13.3217134475708 + ], + [ + "▁morals", + -13.321730613708496 + ], + [ + "▁miner", + -13.321749687194824 + ], + [ + "▁Dresses", + -13.321776390075684 + ], + [ + "▁plotted", + -13.3218412399292 + ], + [ + "▁Clover", + -13.321925163269043 + ], + [ + "▁narrowing", + -13.321935653686523 + ], + [ + "▁wie", + -13.321978569030762 + ], + [ + "▁tapestry", + -13.321980476379395 + ], + [ + "▁Presents", + -13.322041511535645 + ], + [ + "485", + -13.322153091430664 + ], + [ + "coloured", + -13.32222843170166 + ], + [ + "▁armored", + -13.322237968444824 + ], + [ + "▁Haram", + -13.322253227233887 + ], + [ + "▁cramps", + -13.32228946685791 + ], + [ + "▁slogans", + -13.322360038757324 + ], + [ + "▁Teeth", + -13.32248306274414 + ], + [ + "▁Tolkien", + -13.322556495666504 + ], + [ + "▁STATE", + -13.322644233703613 + ], + [ + "▁inhibits", + -13.322649955749512 + ], + [ + "▁marvellous", + -13.322676658630371 + ], + [ + "▁disagreements", + -13.3226900100708 + ], + [ + "560", + -13.322714805603027 + ], + [ + "▁Vance", + -13.322766304016113 + ], + [ + "▁summons", + -13.322773933410645 + ], + [ + "▁312", + -13.322837829589844 + ], + [ + "470", + -13.322914123535156 + ], + [ + "▁Citation", + -13.322928428649902 + ], + [ + "▁Corona", + -13.3229341506958 + ], + [ + "▁Cowboy", + -13.32293701171875 + ], + [ + "Chris", + -13.323004722595215 + ], + [ + "uki", + -13.32303237915039 + ], + [ + "▁resurgence", + -13.323039054870605 + ], + [ + "lish", + -13.323041915893555 + ], + [ + "▁Stockton", + -13.323150634765625 + ], + [ + "▁Albania", + -13.323192596435547 + ], + [ + "▁Yield", + -13.323210716247559 + ], + [ + "Company", + -13.323277473449707 + ], + [ + "▁McGill", + -13.323293685913086 + ], + [ + "▁fibrosis", + -13.3233003616333 + ], + [ + "▁STI", + -13.32332992553711 + ], + [ + "evo", + -13.323338508605957 + ], + [ + "▁improvised", + -13.323365211486816 + ], + [ + "▁carpenter", + -13.32338809967041 + ], + [ + "▁cascade", + -13.323394775390625 + ], + [ + "▁OWN", + -13.323625564575195 + ], + [ + "▁monoxide", + -13.323704719543457 + ], + [ + "▁microphones", + -13.323729515075684 + ], + [ + "▁alarmed", + -13.323771476745605 + ], + [ + "▁Mondays", + -13.323814392089844 + ], + [ + "▁Bedding", + -13.323878288269043 + ], + [ + "▁measles", + -13.32394027709961 + ], + [ + "▁powerpoint", + -13.32396125793457 + ], + [ + "▁Mounted", + -13.324013710021973 + ], + [ + "▁Morse", + -13.3240385055542 + ], + [ + "Gal", + -13.324069023132324 + ], + [ + "▁Malay", + -13.324071884155273 + ], + [ + "▁NSF", + -13.324092864990234 + ], + [ + "▁seaweed", + -13.324128150939941 + ], + [ + "chal", + -13.324178695678711 + ], + [ + "▁ESA", + -13.3242769241333 + ], + [ + "FU", + -13.324333190917969 + ], + [ + "▁Fax", + -13.324396133422852 + ], + [ + "▁startled", + -13.324417114257812 + ], + [ + "LES", + -13.324462890625 + ], + [ + "simple", + -13.324563026428223 + ], + [ + "▁kW", + -13.324625015258789 + ], + [ + "▁liberated", + -13.324628829956055 + ], + [ + "▁bidder", + -13.32463550567627 + ], + [ + "▁FPS", + -13.324645042419434 + ], + [ + "yourself", + -13.324716567993164 + ], + [ + "158", + -13.32475471496582 + ], + [ + "▁skis", + -13.32475471496582 + ], + [ + "▁teaming", + -13.324870109558105 + ], + [ + "▁Irwin", + -13.324923515319824 + ], + [ + "τ", + -13.324971199035645 + ], + [ + "▁Heated", + -13.324994087219238 + ], + [ + "▁Technically", + -13.324997901916504 + ], + [ + "▁brisk", + -13.325052261352539 + ], + [ + "▁315", + -13.3251314163208 + ], + [ + "NV", + -13.325153350830078 + ], + [ + "▁CPS", + -13.32518482208252 + ], + [ + "Sha", + -13.325225830078125 + ], + [ + "▁contradictions", + -13.325225830078125 + ], + [ + "▁confer", + -13.325258255004883 + ], + [ + "hof", + -13.325343132019043 + ], + [ + "SQL", + -13.325362205505371 + ], + [ + "▁reunite", + -13.32544231414795 + ], + [ + "▁winnings", + -13.325488090515137 + ], + [ + "▁uber", + -13.325505256652832 + ], + [ + "▁Demi", + -13.325557708740234 + ], + [ + "amino", + -13.325699806213379 + ], + [ + "▁planter", + -13.325722694396973 + ], + [ + "▁Penalty", + -13.325796127319336 + ], + [ + "▁Morales", + -13.325868606567383 + ], + [ + "▁Pap", + -13.326033592224121 + ], + [ + "▁CrossFit", + -13.326045989990234 + ], + [ + "302", + -13.326066970825195 + ], + [ + "governmental", + -13.326072692871094 + ], + [ + "▁ledge", + -13.326099395751953 + ], + [ + "▁Editors", + -13.32619571685791 + ], + [ + "▁GNU", + -13.326205253601074 + ], + [ + "▁Courier", + -13.32623291015625 + ], + [ + "▁Trusted", + -13.326295852661133 + ], + [ + "▁Burnett", + -13.326333999633789 + ], + [ + "▁Raptors", + -13.326403617858887 + ], + [ + "▁spectroscopy", + -13.32645034790039 + ], + [ + "▁thresholds", + -13.326456069946289 + ], + [ + "▁Lyft", + -13.326457977294922 + ], + [ + "▁Apparel", + -13.326519012451172 + ], + [ + "▁impulses", + -13.326639175415039 + ], + [ + "295", + -13.326715469360352 + ], + [ + "▁Disposal", + -13.326872825622559 + ], + [ + "▁heterogeneous", + -13.326875686645508 + ], + [ + "▁experimented", + -13.32689380645752 + ], + [ + "Ri", + -13.32693862915039 + ], + [ + "▁portraying", + -13.326966285705566 + ], + [ + "wl", + -13.326986312866211 + ], + [ + "▁disrespect", + -13.327014923095703 + ], + [ + "▁Expand", + -13.327020645141602 + ], + [ + "▁Intensive", + -13.327054977416992 + ], + [ + "vine", + -13.327058792114258 + ], + [ + "▁marinade", + -13.327079772949219 + ], + [ + "▁impedance", + -13.327081680297852 + ], + [ + "▁Kendrick", + -13.32708740234375 + ], + [ + "ス", + -13.327157974243164 + ], + [ + "▁Caravan", + -13.327176094055176 + ], + [ + "▁adapters", + -13.32718563079834 + ], + [ + "▁unarmed", + -13.327244758605957 + ], + [ + "▁Multimedia", + -13.327247619628906 + ], + [ + "GER", + -13.327249526977539 + ], + [ + "▁hybrids", + -13.327262878417969 + ], + [ + "▁phishing", + -13.327274322509766 + ], + [ + "▁galvanized", + -13.327277183532715 + ], + [ + "▁Tinder", + -13.327339172363281 + ], + [ + "▁Corridor", + -13.32734489440918 + ], + [ + "227", + -13.327352523803711 + ], + [ + "▁Licensing", + -13.32762336730957 + ], + [ + "▁Milford", + -13.327685356140137 + ], + [ + "▁Ordinance", + -13.327695846557617 + ], + [ + "usi", + -13.32779598236084 + ], + [ + "▁cert", + -13.327849388122559 + ], + [ + "▁undermined", + -13.327922821044922 + ], + [ + "attack", + -13.32796573638916 + ], + [ + "ticket", + -13.327967643737793 + ], + [ + "▁wastes", + -13.32802677154541 + ], + [ + "loading", + -13.328084945678711 + ], + [ + "▁adrenal", + -13.328130722045898 + ], + [ + "▁Vijay", + -13.328191757202148 + ], + [ + "▁Router", + -13.328213691711426 + ], + [ + "sho", + -13.328302383422852 + ], + [ + "▁Survivor", + -13.328495025634766 + ], + [ + "▁puncture", + -13.32857894897461 + ], + [ + "jam", + -13.328583717346191 + ], + [ + "clad", + -13.328675270080566 + ], + [ + "▁nourishment", + -13.328704833984375 + ], + [ + "▁Cousins", + -13.328753471374512 + ], + [ + "▁Anthropology", + -13.328812599182129 + ], + [ + "▁Occupy", + -13.328840255737305 + ], + [ + "▁NAFTA", + -13.328888893127441 + ], + [ + "▁Lankan", + -13.328917503356934 + ], + [ + "▁ACLU", + -13.328926086425781 + ], + [ + "▁Techno", + -13.329026222229004 + ], + [ + "▁uncomplicated", + -13.329106330871582 + ], + [ + "▁juggling", + -13.32913875579834 + ], + [ + "nge", + -13.329176902770996 + ], + [ + "▁Ferdinand", + -13.329262733459473 + ], + [ + "▁dissatisfaction", + -13.32934284210205 + ], + [ + "eller", + -13.329379081726074 + ], + [ + "▁Toilet", + -13.329423904418945 + ], + [ + "▁Duffy", + -13.329442024230957 + ], + [ + "▁ingenuity", + -13.32948112487793 + ], + [ + "andra", + -13.32964038848877 + ], + [ + "▁markedly", + -13.3296537399292 + ], + [ + "▁brunette", + -13.329655647277832 + ], + [ + "▁Superb", + -13.329683303833008 + ], + [ + "▁MADE", + -13.330035209655762 + ], + [ + "▁Polyester", + -13.330208778381348 + ], + [ + "elia", + -13.330228805541992 + ], + [ + "▁Smaller", + -13.330434799194336 + ], + [ + "▁bridging", + -13.3304443359375 + ], + [ + "▁polyethylene", + -13.330458641052246 + ], + [ + "▁annuity", + -13.330485343933105 + ], + [ + "▁530", + -13.330500602722168 + ], + [ + "FW", + -13.330503463745117 + ], + [ + "▁Broadband", + -13.330599784851074 + ], + [ + "▁obnoxious", + -13.330912590026855 + ], + [ + "▁knocks", + -13.330926895141602 + ], + [ + "▁Nearby", + -13.33101749420166 + ], + [ + "fits", + -13.331072807312012 + ], + [ + "▁physicist", + -13.331089973449707 + ], + [ + "awareness", + -13.331253051757812 + ], + [ + "▁piracy", + -13.331392288208008 + ], + [ + "▁Haus", + -13.331450462341309 + ], + [ + "dhi", + -13.3314790725708 + ], + [ + "▁sweetest", + -13.331535339355469 + ], + [ + "▁ordinarily", + -13.331596374511719 + ], + [ + "ulator", + -13.331603050231934 + ], + [ + "rom", + -13.331694602966309 + ], + [ + "▁skateboard", + -13.331743240356445 + ], + [ + "▁densely", + -13.331794738769531 + ], + [ + "pos", + -13.331900596618652 + ], + [ + "▁Cabernet", + -13.331925392150879 + ], + [ + "▁tenderness", + -13.331933975219727 + ], + [ + "▁graciously", + -13.331962585449219 + ], + [ + "▁swimmer", + -13.331963539123535 + ], + [ + "▁Hebrews", + -13.332027435302734 + ], + [ + "216", + -13.332062721252441 + ], + [ + "▁Vu", + -13.332124710083008 + ], + [ + "knowledge", + -13.332159042358398 + ], + [ + "connect", + -13.332160949707031 + ], + [ + "▁mingle", + -13.33219051361084 + ], + [ + "▁1892", + -13.33231258392334 + ], + [ + "▁quarterbacks", + -13.332359313964844 + ], + [ + "Sal", + -13.33246898651123 + ], + [ + "▁widen", + -13.332499504089355 + ], + [ + "▁banter", + -13.332539558410645 + ], + [ + "▁substitutes", + -13.33272933959961 + ], + [ + "▁Reset", + -13.332757949829102 + ], + [ + "healthy", + -13.332820892333984 + ], + [ + "▁massages", + -13.332842826843262 + ], + [ + "▁Whisk", + -13.33285140991211 + ], + [ + "minus", + -13.332859992980957 + ], + [ + "▁recognises", + -13.332862854003906 + ], + [ + "▁denounced", + -13.332961082458496 + ], + [ + "▁detract", + -13.33300495147705 + ], + [ + "▁PSU", + -13.333173751831055 + ], + [ + "▁WF", + -13.33321475982666 + ], + [ + "▁orphan", + -13.333242416381836 + ], + [ + "▁inline", + -13.33324909210205 + ], + [ + "181", + -13.333300590515137 + ], + [ + "▁Chow", + -13.333324432373047 + ], + [ + "▁Donations", + -13.333500862121582 + ], + [ + "▁Actions", + -13.333511352539062 + ], + [ + "▁originates", + -13.333549499511719 + ], + [ + "▁peril", + -13.333578109741211 + ], + [ + "▁Obi", + -13.333648681640625 + ], + [ + "treat", + -13.333712577819824 + ], + [ + "▁Define", + -13.333719253540039 + ], + [ + "▁Variable", + -13.333847045898438 + ], + [ + "▁bounded", + -13.333857536315918 + ], + [ + "▁Hundred", + -13.333927154541016 + ], + [ + "▁Vocal", + -13.334031105041504 + ], + [ + "▁Interaction", + -13.3341646194458 + ], + [ + "▁leveling", + -13.334165573120117 + ], + [ + "▁amplify", + -13.334431648254395 + ], + [ + "183", + -13.334433555603027 + ], + [ + "▁Shopify", + -13.334439277648926 + ], + [ + "Network", + -13.334482192993164 + ], + [ + "▁mahogany", + -13.334486961364746 + ], + [ + "▁crossings", + -13.334528923034668 + ], + [ + "▁Modular", + -13.334573745727539 + ], + [ + "▁uncanny", + -13.334580421447754 + ], + [ + "▁Hobby", + -13.33468246459961 + ], + [ + "▁Bog", + -13.334705352783203 + ], + [ + "▁WO", + -13.334757804870605 + ], + [ + "▁Rhythm", + -13.334836959838867 + ], + [ + "▁negligible", + -13.334883689880371 + ], + [ + "gam", + -13.334896087646484 + ], + [ + "▁briefed", + -13.334954261779785 + ], + [ + "▁retrospect", + -13.334975242614746 + ], + [ + "▁intoxicated", + -13.334985733032227 + ], + [ + "404", + -13.335049629211426 + ], + [ + "▁docking", + -13.335127830505371 + ], + [ + "▁Washer", + -13.335134506225586 + ], + [ + "▁Checking", + -13.3351469039917 + ], + [ + "▁grammatical", + -13.335212707519531 + ], + [ + "▁signalling", + -13.335219383239746 + ], + [ + "▁sniff", + -13.335274696350098 + ], + [ + "▁cellulose", + -13.335275650024414 + ], + [ + "▁Ritz", + -13.335439682006836 + ], + [ + "▁Apprentice", + -13.335444450378418 + ], + [ + "▁intrusive", + -13.335476875305176 + ], + [ + "▁cutters", + -13.335478782653809 + ], + [ + "▁trickle", + -13.335504531860352 + ], + [ + "▁ligament", + -13.33565616607666 + ], + [ + "▁WATER", + -13.335667610168457 + ], + [ + "▁Clash", + -13.335689544677734 + ], + [ + "▁funniest", + -13.335829734802246 + ], + [ + "▁manganese", + -13.335908889770508 + ], + [ + "▁circulate", + -13.335929870605469 + ], + [ + "▁cortisol", + -13.335980415344238 + ], + [ + "Touch", + -13.3359956741333 + ], + [ + "▁Montessori", + -13.336112022399902 + ], + [ + "▁Mild", + -13.336114883422852 + ], + [ + "▁claimant", + -13.336162567138672 + ], + [ + "▁SUCH", + -13.336209297180176 + ], + [ + "▁Neville", + -13.336251258850098 + ], + [ + "▁233", + -13.336262702941895 + ], + [ + "▁Atkinson", + -13.336289405822754 + ], + [ + "safety", + -13.336292266845703 + ], + [ + "▁bubbly", + -13.336365699768066 + ], + [ + "Aid", + -13.336390495300293 + ], + [ + "▁brainstorming", + -13.336435317993164 + ], + [ + "quarters", + -13.33649730682373 + ], + [ + "▁kar", + -13.33661937713623 + ], + [ + "udo", + -13.336734771728516 + ], + [ + "▁Packing", + -13.336871147155762 + ], + [ + "gus", + -13.336883544921875 + ], + [ + "▁climatic", + -13.33692741394043 + ], + [ + "▁Amar", + -13.337060928344727 + ], + [ + "▁primaries", + -13.337118148803711 + ], + [ + "▁Lorraine", + -13.337124824523926 + ], + [ + "▁Guyana", + -13.337142944335938 + ], + [ + "▁Pants", + -13.33716106414795 + ], + [ + "excluding", + -13.337237358093262 + ], + [ + "▁Briggs", + -13.337316513061523 + ], + [ + "▁Clearance", + -13.33735179901123 + ], + [ + "▁remission", + -13.33735179901123 + ], + [ + "▁braid", + -13.33743667602539 + ], + [ + "▁ensuite", + -13.337448120117188 + ], + [ + "▁tetra", + -13.337469100952148 + ], + [ + "▁biometric", + -13.337470054626465 + ], + [ + "▁React", + -13.337557792663574 + ], + [ + "▁hoax", + -13.337587356567383 + ], + [ + "Mike", + -13.337626457214355 + ], + [ + "▁phased", + -13.337664604187012 + ], + [ + "▁CIO", + -13.337692260742188 + ], + [ + "Gu", + -13.337697982788086 + ], + [ + "▁Clothes", + -13.337697982788086 + ], + [ + "▁Zionist", + -13.33774185180664 + ], + [ + "▁DATA", + -13.337822914123535 + ], + [ + "▁catalogs", + -13.337854385375977 + ], + [ + "▁disdain", + -13.337892532348633 + ], + [ + "▁parlor", + -13.33796215057373 + ], + [ + "▁concede", + -13.337963104248047 + ], + [ + "branded", + -13.338021278381348 + ], + [ + "grave", + -13.33812427520752 + ], + [ + "▁TAKE", + -13.338228225708008 + ], + [ + "▁rounding", + -13.33824348449707 + ], + [ + "▁Notably", + -13.338276863098145 + ], + [ + "aly", + -13.338282585144043 + ], + [ + "▁snail", + -13.338289260864258 + ], + [ + "▁cul", + -13.338324546813965 + ], + [ + "Sign", + -13.338334083557129 + ], + [ + "▁blazer", + -13.338452339172363 + ], + [ + "▁Caption", + -13.338478088378906 + ], + [ + "joy", + -13.33850383758545 + ], + [ + "▁cavalry", + -13.33850383758545 + ], + [ + "▁carousel", + -13.33852481842041 + ], + [ + "▁Langley", + -13.338706970214844 + ], + [ + "Chicago", + -13.338776588439941 + ], + [ + "▁spreadsheets", + -13.338815689086914 + ], + [ + "▁sausages", + -13.33901596069336 + ], + [ + "▁Damien", + -13.339134216308594 + ], + [ + "▁Eid", + -13.339136123657227 + ], + [ + "▁onslaught", + -13.339152336120605 + ], + [ + "Doc", + -13.339238166809082 + ], + [ + "▁Component", + -13.339256286621094 + ], + [ + "▁hotline", + -13.339286804199219 + ], + [ + "▁reverence", + -13.339323043823242 + ], + [ + "▁stun", + -13.339383125305176 + ], + [ + "▁reins", + -13.339410781860352 + ], + [ + "▁cum", + -13.339447975158691 + ], + [ + "▁Spam", + -13.339507102966309 + ], + [ + "¤", + -13.339518547058105 + ], + [ + "▁plc", + -13.339521408081055 + ], + [ + "rush", + -13.339564323425293 + ], + [ + "▁217", + -13.339569091796875 + ], + [ + "original", + -13.33958911895752 + ], + [ + "▁DSP", + -13.339629173278809 + ], + [ + "▁Combination", + -13.339630126953125 + ], + [ + "▁Agri", + -13.339645385742188 + ], + [ + "▁covert", + -13.339727401733398 + ], + [ + "▁ASA", + -13.3397798538208 + ], + [ + "▁wrestler", + -13.33980941772461 + ], + [ + "▁Playa", + -13.339837074279785 + ], + [ + "▁Taiwanese", + -13.33987808227539 + ], + [ + "Tree", + -13.339885711669922 + ], + [ + "▁Lagoon", + -13.339889526367188 + ], + [ + "▁homeschooling", + -13.339937210083008 + ], + [ + "▁Collar", + -13.339951515197754 + ], + [ + "▁synergy", + -13.340017318725586 + ], + [ + "▁PTA", + -13.340032577514648 + ], + [ + "▁Guards", + -13.340051651000977 + ], + [ + "▁restraints", + -13.34007740020752 + ], + [ + "▁Trails", + -13.340086936950684 + ], + [ + "▁Zeus", + -13.34011459350586 + ], + [ + "def", + -13.340118408203125 + ], + [ + "▁caveat", + -13.340145111083984 + ], + [ + "▁Marshal", + -13.340164184570312 + ], + [ + "▁hardy", + -13.340182304382324 + ], + [ + "▁functionalities", + -13.340192794799805 + ], + [ + "▁Dolly", + -13.340250968933105 + ], + [ + "▁Magnet", + -13.34034252166748 + ], + [ + "yd", + -13.340475082397461 + ], + [ + "▁perk", + -13.340524673461914 + ], + [ + "▁ransomware", + -13.340527534484863 + ], + [ + "▁cameo", + -13.340594291687012 + ], + [ + "▁crease", + -13.340621948242188 + ], + [ + "▁Ost", + -13.34073543548584 + ], + [ + "major", + -13.340768814086914 + ], + [ + "▁Craigslist", + -13.340771675109863 + ], + [ + "▁thunderstorms", + -13.340773582458496 + ], + [ + "▁Liver", + -13.3408842086792 + ], + [ + "▁seeded", + -13.340930938720703 + ], + [ + "▁AGM", + -13.340960502624512 + ], + [ + "▁Cascade", + -13.340973854064941 + ], + [ + "▁Charming", + -13.341114044189453 + ], + [ + "pharmacy", + -13.341135025024414 + ], + [ + "bath", + -13.341211318969727 + ], + [ + "▁Sonia", + -13.341217041015625 + ], + [ + "▁epithelial", + -13.341290473937988 + ], + [ + "▁malformed", + -13.341301918029785 + ], + [ + "▁HOUSE", + -13.341309547424316 + ], + [ + "kka", + -13.34145450592041 + ], + [ + "▁Passage", + -13.341504096984863 + ], + [ + "▁markup", + -13.341586112976074 + ], + [ + "▁Certificates", + -13.341588020324707 + ], + [ + "▁sculptor", + -13.341631889343262 + ], + [ + "▁limousine", + -13.341710090637207 + ], + [ + "▁Processed", + -13.341767311096191 + ], + [ + "▁clinging", + -13.34183120727539 + ], + [ + "▁etching", + -13.3418607711792 + ], + [ + "285", + -13.341987609863281 + ], + [ + "▁Workforce", + -13.342019081115723 + ], + [ + "λ", + -13.342022895812988 + ], + [ + "▁werden", + -13.342040061950684 + ], + [ + "▁regal", + -13.342045783996582 + ], + [ + "▁iterations", + -13.342055320739746 + ], + [ + "▁tilted", + -13.34207820892334 + ], + [ + "▁crumbling", + -13.342085838317871 + ], + [ + "▁locale", + -13.342107772827148 + ], + [ + "▁Rei", + -13.342228889465332 + ], + [ + "▁PART", + -13.342249870300293 + ], + [ + "▁craze", + -13.342299461364746 + ], + [ + "Russia", + -13.342371940612793 + ], + [ + "▁childish", + -13.342415809631348 + ], + [ + "▁millennial", + -13.342477798461914 + ], + [ + "▁feeders", + -13.34274959564209 + ], + [ + "▁racket", + -13.342801094055176 + ], + [ + "▁THESE", + -13.3428316116333 + ], + [ + "▁Automobile", + -13.342838287353516 + ], + [ + "▁memberships", + -13.34285831451416 + ], + [ + "▁thanksgiving", + -13.342860221862793 + ], + [ + "akis", + -13.342954635620117 + ], + [ + "rag", + -13.342966079711914 + ], + [ + "▁uplift", + -13.342978477478027 + ], + [ + "▁explanatory", + -13.342988014221191 + ], + [ + "moral", + -13.343110084533691 + ], + [ + "▁pore", + -13.343144416809082 + ], + [ + "▁topology", + -13.343256950378418 + ], + [ + "▁launcher", + -13.34327507019043 + ], + [ + "▁Cassidy", + -13.3433198928833 + ], + [ + "▁idols", + -13.343362808227539 + ], + [ + "bred", + -13.343375205993652 + ], + [ + "Lock", + -13.343413352966309 + ], + [ + "▁hammock", + -13.34357738494873 + ], + [ + "▁gruesome", + -13.343578338623047 + ], + [ + "▁П", + -13.343586921691895 + ], + [ + "▁Thatcher", + -13.343650817871094 + ], + [ + "▁HSBC", + -13.343657493591309 + ], + [ + "▁Reservoir", + -13.34366226196289 + ], + [ + "▁happenings", + -13.343786239624023 + ], + [ + "▁Rowan", + -13.343803405761719 + ], + [ + "▁riff", + -13.343849182128906 + ], + [ + "▁conversational", + -13.343870162963867 + ], + [ + "having", + -13.343901634216309 + ], + [ + "▁Kern", + -13.343914985656738 + ], + [ + "tions", + -13.343973159790039 + ], + [ + "▁Petty", + -13.343977928161621 + ], + [ + "▁locomotive", + -13.34398078918457 + ], + [ + "inda", + -13.344110488891602 + ], + [ + "rx", + -13.344111442565918 + ], + [ + "▁Mister", + -13.344165802001953 + ], + [ + "▁screenwriter", + -13.344229698181152 + ], + [ + "task", + -13.344273567199707 + ], + [ + "▁compress", + -13.344292640686035 + ], + [ + "DEN", + -13.344368934631348 + ], + [ + "werk", + -13.3444185256958 + ], + [ + "▁civilizations", + -13.344425201416016 + ], + [ + "▁Ugh", + -13.34447956085205 + ], + [ + "▁partying", + -13.344541549682617 + ], + [ + "truth", + -13.344555854797363 + ], + [ + "atu", + -13.344599723815918 + ], + [ + "▁Polk", + -13.344612121582031 + ], + [ + "▁Keywords", + -13.344614028930664 + ], + [ + "▁999", + -13.344619750976562 + ], + [ + "▁McLean", + -13.344661712646484 + ], + [ + "▁Javier", + -13.34466552734375 + ], + [ + "▁deepening", + -13.34471607208252 + ], + [ + "▁railways", + -13.344776153564453 + ], + [ + "▁Contracts", + -13.344844818115234 + ], + [ + "321", + -13.34492301940918 + ], + [ + "▁convoy", + -13.34498119354248 + ], + [ + "otta", + -13.345026969909668 + ], + [ + "▁observational", + -13.345069885253906 + ], + [ + "xin", + -13.345070838928223 + ], + [ + "odd", + -13.345074653625488 + ], + [ + "▁GROUP", + -13.345091819763184 + ], + [ + "▁distinctions", + -13.345142364501953 + ], + [ + "scher", + -13.345158576965332 + ], + [ + "essential", + -13.34518814086914 + ], + [ + "▁hangover", + -13.34519100189209 + ], + [ + "▁antagonist", + -13.345221519470215 + ], + [ + "▁247", + -13.345230102539062 + ], + [ + "▁reciprocal", + -13.345284461975098 + ], + [ + "Kit", + -13.345373153686523 + ], + [ + "▁Gig", + -13.3454008102417 + ], + [ + "▁Saddle", + -13.345458030700684 + ], + [ + "moor", + -13.345466613769531 + ], + [ + "▁rebates", + -13.345505714416504 + ], + [ + "▁despise", + -13.345660209655762 + ], + [ + "▁itch", + -13.34567642211914 + ], + [ + "▁Dudley", + -13.345741271972656 + ], + [ + "▁toiletries", + -13.34597110748291 + ], + [ + "Scan", + -13.346040725708008 + ], + [ + "Program", + -13.34611701965332 + ], + [ + "▁Debate", + -13.346123695373535 + ], + [ + "competitive", + -13.346161842346191 + ], + [ + "▁Atkins", + -13.346179962158203 + ], + [ + "▁Beirut", + -13.34621810913086 + ], + [ + "▁shone", + -13.346306800842285 + ], + [ + "▁mpg", + -13.34632682800293 + ], + [ + "wet", + -13.346336364746094 + ], + [ + "▁Fallon", + -13.346402168273926 + ], + [ + "▁Dimension", + -13.346435546875 + ], + [ + "▁Confederation", + -13.346501350402832 + ], + [ + "▁Jules", + -13.346502304077148 + ], + [ + "▁DES", + -13.346606254577637 + ], + [ + "▁probabilities", + -13.346701622009277 + ], + [ + "liness", + -13.346705436706543 + ], + [ + "kom", + -13.346755981445312 + ], + [ + "tailed", + -13.34682559967041 + ], + [ + "▁Citizenship", + -13.346863746643066 + ], + [ + "▁Legendary", + -13.34692668914795 + ], + [ + "▁quintessential", + -13.347020149230957 + ], + [ + "▁Friedrich", + -13.347105026245117 + ], + [ + "▁Tooth", + -13.347176551818848 + ], + [ + "▁Fell", + -13.347213745117188 + ], + [ + "▁Sus", + -13.3472261428833 + ], + [ + "tele", + -13.347248077392578 + ], + [ + "▁paleo", + -13.347248077392578 + ], + [ + "▁DEC", + -13.347293853759766 + ], + [ + "▁Aber", + -13.347349166870117 + ], + [ + "ulla", + -13.347444534301758 + ], + [ + "▁Tess", + -13.347570419311523 + ], + [ + "▁Barrow", + -13.347623825073242 + ], + [ + "π", + -13.34764289855957 + ], + [ + "▁waistband", + -13.347660064697266 + ], + [ + "▁indemnify", + -13.347801208496094 + ], + [ + "▁Bridget", + -13.347953796386719 + ], + [ + "▁Utilizing", + -13.347968101501465 + ], + [ + "▁Bistro", + -13.347991943359375 + ], + [ + "▁Constable", + -13.348003387451172 + ], + [ + "zier", + -13.348036766052246 + ], + [ + "▁Analog", + -13.348054885864258 + ], + [ + "▁IPL", + -13.348084449768066 + ], + [ + "▁Evergreen", + -13.348109245300293 + ], + [ + "▁forks", + -13.348129272460938 + ], + [ + "▁Spiral", + -13.348138809204102 + ], + [ + "▁rims", + -13.348159790039062 + ], + [ + "▁Pt", + -13.34825611114502 + ], + [ + "mul", + -13.348278999328613 + ], + [ + "▁Chinatown", + -13.348308563232422 + ], + [ + "▁Gibraltar", + -13.348358154296875 + ], + [ + "▁178", + -13.348367691040039 + ], + [ + "▁contradict", + -13.34837532043457 + ], + [ + "▁chancellor", + -13.348401069641113 + ], + [ + "▁detour", + -13.34848403930664 + ], + [ + "▁460", + -13.348658561706543 + ], + [ + "▁Bayer", + -13.34868049621582 + ], + [ + "▁evokes", + -13.348734855651855 + ], + [ + "▁Sant", + -13.348814010620117 + ], + [ + "essa", + -13.348819732666016 + ], + [ + "い", + -13.348860740661621 + ], + [ + "▁erratic", + -13.348954200744629 + ], + [ + "bull", + -13.348966598510742 + ], + [ + "▁administrations", + -13.348971366882324 + ], + [ + "▁floss", + -13.349058151245117 + ], + [ + "▁spectator", + -13.349138259887695 + ], + [ + "▁brownies", + -13.349140167236328 + ], + [ + "▁spatula", + -13.349264144897461 + ], + [ + "▁Arbitration", + -13.349289894104004 + ], + [ + "jun", + -13.349323272705078 + ], + [ + "▁zebra", + -13.349387168884277 + ], + [ + "ifier", + -13.349404335021973 + ], + [ + "▁Glo", + -13.349409103393555 + ], + [ + "▁Literally", + -13.349451065063477 + ], + [ + "241", + -13.349480628967285 + ], + [ + "▁oversaw", + -13.349565505981445 + ], + [ + "vil", + -13.349586486816406 + ], + [ + "▁VB", + -13.34963321685791 + ], + [ + "▁OCD", + -13.349640846252441 + ], + [ + "▁mocking", + -13.349653244018555 + ], + [ + "▁Devi", + -13.349810600280762 + ], + [ + "▁Referring", + -13.349828720092773 + ], + [ + "▁chiropractor", + -13.349855422973633 + ], + [ + "▁eighteenth", + -13.349895477294922 + ], + [ + "bir", + -13.349910736083984 + ], + [ + "213", + -13.34993839263916 + ], + [ + "▁sect", + -13.34994125366211 + ], + [ + "oids", + -13.350179672241211 + ], + [ + "▁wagering", + -13.350196838378906 + ], + [ + "▁dir", + -13.35034465789795 + ], + [ + "wig", + -13.350433349609375 + ], + [ + "▁Palma", + -13.350434303283691 + ], + [ + "ς", + -13.35046672821045 + ], + [ + "hide", + -13.350503921508789 + ], + [ + "▁poisoned", + -13.350509643554688 + ], + [ + "ider", + -13.350528717041016 + ], + [ + "▁polarization", + -13.35055923461914 + ], + [ + "▁Defendant", + -13.350566864013672 + ], + [ + "arts", + -13.350634574890137 + ], + [ + "ijn", + -13.350648880004883 + ], + [ + "Mad", + -13.350659370422363 + ], + [ + "▁GD", + -13.350675582885742 + ], + [ + "▁infect", + -13.350732803344727 + ], + [ + "▁architectures", + -13.350767135620117 + ], + [ + "▁vocation", + -13.350849151611328 + ], + [ + "▁coolant", + -13.350869178771973 + ], + [ + "▁mistress", + -13.350920677185059 + ], + [ + "▁occult", + -13.351009368896484 + ], + [ + "▁Steak", + -13.351011276245117 + ], + [ + "▁choking", + -13.351055145263672 + ], + [ + "▁goofy", + -13.351066589355469 + ], + [ + "▁hashtags", + -13.351110458374023 + ], + [ + "▁Fallout", + -13.351113319396973 + ], + [ + "▁recite", + -13.351119995117188 + ], + [ + "ettes", + -13.351122856140137 + ], + [ + "▁converge", + -13.351149559020996 + ], + [ + "▁sexist", + -13.351277351379395 + ], + [ + "▁Tat", + -13.351287841796875 + ], + [ + "▁Johan", + -13.351312637329102 + ], + [ + "▁evocative", + -13.351323127746582 + ], + [ + "▁reddish", + -13.35132884979248 + ], + [ + "▁scarcely", + -13.351334571838379 + ], + [ + "▁Sau", + -13.35139274597168 + ], + [ + "▁constellation", + -13.351481437683105 + ], + [ + "▁broadcasters", + -13.351497650146484 + ], + [ + "▁Mellon", + -13.351595878601074 + ], + [ + "located", + -13.351644515991211 + ], + [ + "cra", + -13.351689338684082 + ], + [ + "▁qua", + -13.351786613464355 + ], + [ + "▁outsourced", + -13.35180950164795 + ], + [ + "▁delectable", + -13.351869583129883 + ], + [ + "▁soulful", + -13.351971626281738 + ], + [ + "Sch", + -13.351980209350586 + ], + [ + "ür", + -13.351998329162598 + ], + [ + "▁polka", + -13.352032661437988 + ], + [ + "▁CCS", + -13.352045059204102 + ], + [ + "▁Gir", + -13.352095603942871 + ], + [ + "▁clustering", + -13.352266311645508 + ], + [ + "▁IU", + -13.352338790893555 + ], + [ + "▁Doris", + -13.3524169921875 + ], + [ + "▁ulcers", + -13.35254192352295 + ], + [ + "▁aligning", + -13.352596282958984 + ], + [ + "▁badass", + -13.352609634399414 + ], + [ + "esi", + -13.352663040161133 + ], + [ + "▁homeschool", + -13.352703094482422 + ], + [ + "▁brows", + -13.35270881652832 + ], + [ + "▁Processes", + -13.35277271270752 + ], + [ + "▁policemen", + -13.35284423828125 + ], + [ + "RON", + -13.3528470993042 + ], + [ + "▁Sega", + -13.353008270263672 + ], + [ + "▁Bengals", + -13.353014945983887 + ], + [ + "▁ISA", + -13.353066444396973 + ], + [ + "KU", + -13.353069305419922 + ], + [ + "▁trimester", + -13.35328483581543 + ], + [ + "agan", + -13.353370666503906 + ], + [ + "▁yoke", + -13.353432655334473 + ], + [ + "▁guinea", + -13.353479385375977 + ], + [ + "IDA", + -13.35361099243164 + ], + [ + "gem", + -13.353660583496094 + ], + [ + "soul", + -13.353669166564941 + ], + [ + "▁voicemail", + -13.353696823120117 + ], + [ + "217", + -13.353766441345215 + ], + [ + "sectional", + -13.353771209716797 + ], + [ + "▁Transform", + -13.353970527648926 + ], + [ + "▁PubMed", + -13.353981018066406 + ], + [ + "▁Serie", + -13.354001998901367 + ], + [ + "0000", + -13.354068756103516 + ], + [ + "ables", + -13.354108810424805 + ], + [ + "▁Gorilla", + -13.354141235351562 + ], + [ + "▁Hindus", + -13.354193687438965 + ], + [ + "firm", + -13.354209899902344 + ], + [ + "▁remuneration", + -13.354246139526367 + ], + [ + "▁chemically", + -13.354341506958008 + ], + [ + "▁waffle", + -13.354350090026855 + ], + [ + "▁suspicions", + -13.354352951049805 + ], + [ + "171", + -13.35437297821045 + ], + [ + "▁nods", + -13.354387283325195 + ], + [ + "▁cardstock", + -13.354429244995117 + ], + [ + "▁arresting", + -13.354461669921875 + ], + [ + "242", + -13.354462623596191 + ], + [ + "▁blurry", + -13.354593276977539 + ], + [ + "sian", + -13.354898452758789 + ], + [ + "▁Tight", + -13.354930877685547 + ], + [ + "▁Pieces", + -13.354986190795898 + ], + [ + "▁Valle", + -13.355165481567383 + ], + [ + "▁Ambulance", + -13.3551664352417 + ], + [ + "162", + -13.355228424072266 + ], + [ + "1983", + -13.355280876159668 + ], + [ + "▁trance", + -13.355287551879883 + ], + [ + "▁Connecting", + -13.355328559875488 + ], + [ + "lex", + -13.35540771484375 + ], + [ + "▁pharma", + -13.35550308227539 + ], + [ + "▁stormed", + -13.355565071105957 + ], + [ + "▁630", + -13.355660438537598 + ], + [ + "▁Matte", + -13.35566520690918 + ], + [ + "▁Bhutan", + -13.35568618774414 + ], + [ + "▁denominations", + -13.355801582336426 + ], + [ + "▁Hershey", + -13.355841636657715 + ], + [ + "▁Buffet", + -13.355856895446777 + ], + [ + "▁Parkland", + -13.3558931350708 + ], + [ + "▁Maxim", + -13.355957984924316 + ], + [ + "▁Almond", + -13.356005668640137 + ], + [ + "▁Tracey", + -13.356042861938477 + ], + [ + "▁swearing", + -13.356048583984375 + ], + [ + "cing", + -13.356059074401855 + ], + [ + "▁Peterborough", + -13.356059074401855 + ], + [ + "▁relentlessly", + -13.356060981750488 + ], + [ + "British", + -13.3561429977417 + ], + [ + "▁Functions", + -13.356149673461914 + ], + [ + "▁Zara", + -13.356237411499023 + ], + [ + "▁admiring", + -13.356305122375488 + ], + [ + "▁Mugabe", + -13.356413841247559 + ], + [ + "▁Archaeology", + -13.356454849243164 + ], + [ + "▁transmissions", + -13.356587409973145 + ], + [ + "▁Str", + -13.356589317321777 + ], + [ + "significant", + -13.356596946716309 + ], + [ + "▁ordinances", + -13.356608390808105 + ], + [ + "▁Equally", + -13.356622695922852 + ], + [ + "ln", + -13.356667518615723 + ], + [ + "▁333", + -13.356677055358887 + ], + [ + "▁freshest", + -13.35669231414795 + ], + [ + "▁cordless", + -13.356707572937012 + ], + [ + "nne", + -13.356727600097656 + ], + [ + "▁Twice", + -13.356742858886719 + ], + [ + "nea", + -13.356757164001465 + ], + [ + "▁ESL", + -13.35680103302002 + ], + [ + "▁PAN", + -13.356806755065918 + ], + [ + "BN", + -13.356817245483398 + ], + [ + "▁ripple", + -13.356825828552246 + ], + [ + "▁miscarriage", + -13.356827735900879 + ], + [ + "phi", + -13.356949806213379 + ], + [ + "▁entrances", + -13.356950759887695 + ], + [ + "▁tractors", + -13.35695743560791 + ], + [ + "▁218", + -13.35702133178711 + ], + [ + "construction", + -13.357087135314941 + ], + [ + "ingly", + -13.357108116149902 + ], + [ + "▁Shadows", + -13.357115745544434 + ], + [ + "▁1894", + -13.357160568237305 + ], + [ + "▁induces", + -13.357283592224121 + ], + [ + "hopefully", + -13.357368469238281 + ], + [ + "▁187", + -13.357393264770508 + ], + [ + "▁fiduciary", + -13.35766315460205 + ], + [ + "▁issuer", + -13.357732772827148 + ], + [ + "OFF", + -13.357809066772461 + ], + [ + "▁Bab", + -13.35782527923584 + ], + [ + "▁Pencil", + -13.357887268066406 + ], + [ + "▁renovate", + -13.357966423034668 + ], + [ + "▁articulation", + -13.358053207397461 + ], + [ + "lene", + -13.35805606842041 + ], + [ + "▁Martian", + -13.35806941986084 + ], + [ + "dial", + -13.358078002929688 + ], + [ + "Asian", + -13.358084678649902 + ], + [ + "▁HAD", + -13.35811996459961 + ], + [ + "▁ovens", + -13.358230590820312 + ], + [ + "Action", + -13.358278274536133 + ], + [ + "▁Beautifully", + -13.358370780944824 + ], + [ + "▁untuk", + -13.35840129852295 + ], + [ + "▁unsolicited", + -13.358412742614746 + ], + [ + "▁shutout", + -13.358519554138184 + ], + [ + "▁nineteen", + -13.358539581298828 + ], + [ + "▁Finch", + -13.35856819152832 + ], + [ + "nna", + -13.358647346496582 + ], + [ + "▁Qua", + -13.358756065368652 + ], + [ + "▁chartered", + -13.358816146850586 + ], + [ + "▁wedges", + -13.358932495117188 + ], + [ + "Heart", + -13.35897445678711 + ], + [ + "Guide", + -13.359054565429688 + ], + [ + "▁Unix", + -13.3590726852417 + ], + [ + "▁Taurus", + -13.359073638916016 + ], + [ + "Clean", + -13.359098434448242 + ], + [ + "EI", + -13.35910415649414 + ], + [ + "▁Segment", + -13.359184265136719 + ], + [ + "aker", + -13.359213829040527 + ], + [ + "▁respectfully", + -13.359329223632812 + ], + [ + "▁FAQs", + -13.359338760375977 + ], + [ + "▁chiefly", + -13.359347343444824 + ], + [ + "movie", + -13.359354972839355 + ], + [ + "▁Rails", + -13.359375 + ], + [ + "bul", + -13.359381675720215 + ], + [ + "▁monarchy", + -13.359402656555176 + ], + [ + "▁hitters", + -13.35946273803711 + ], + [ + "▁narrated", + -13.359493255615234 + ], + [ + "▁queens", + -13.359503746032715 + ], + [ + "bies", + -13.359521865844727 + ], + [ + "▁precarious", + -13.359613418579102 + ], + [ + "▁envoy", + -13.35966682434082 + ], + [ + "Comp", + -13.3596773147583 + ], + [ + "selected", + -13.35973072052002 + ], + [ + "▁Tomato", + -13.359827995300293 + ], + [ + "▁questionnaires", + -13.35982894897461 + ], + [ + "▁swarm", + -13.359905242919922 + ], + [ + "▁Hilary", + -13.359993934631348 + ], + [ + "Washington", + -13.36000919342041 + ], + [ + "▁incubated", + -13.36009693145752 + ], + [ + "▁GIF", + -13.36021614074707 + ], + [ + "▁gloomy", + -13.360246658325195 + ], + [ + "▁millionaire", + -13.36026668548584 + ], + [ + "▁Intervention", + -13.360285758972168 + ], + [ + "▁Citrus", + -13.360328674316406 + ], + [ + "▁Avi", + -13.36034107208252 + ], + [ + "▁Pediatrics", + -13.360358238220215 + ], + [ + "▁Stopped", + -13.360360145568848 + ], + [ + "sters", + -13.360429763793945 + ], + [ + "▁infer", + -13.360432624816895 + ], + [ + "▁dove", + -13.36043930053711 + ], + [ + "▁precaution", + -13.3605318069458 + ], + [ + "nard", + -13.36054515838623 + ], + [ + "▁Sauvignon", + -13.360574722290039 + ], + [ + "▁locus", + -13.360655784606934 + ], + [ + "ATED", + -13.360718727111816 + ], + [ + "▁Wilde", + -13.360774993896484 + ], + [ + "▁Alvin", + -13.360780715942383 + ], + [ + "▁queues", + -13.360917091369629 + ], + [ + "Wall", + -13.360923767089844 + ], + [ + "linger", + -13.3609619140625 + ], + [ + "▁captains", + -13.36096477508545 + ], + [ + "▁dismay", + -13.360998153686523 + ], + [ + "Much", + -13.361054420471191 + ], + [ + "1080", + -13.361090660095215 + ], + [ + "▁forearm", + -13.361129760742188 + ], + [ + "▁melancholy", + -13.361159324645996 + ], + [ + "▁bombings", + -13.361163139343262 + ], + [ + "▁177", + -13.361334800720215 + ], + [ + "▁govt", + -13.361336708068848 + ], + [ + "▁Died", + -13.361355781555176 + ], + [ + "western", + -13.361411094665527 + ], + [ + "girls", + -13.361429214477539 + ], + [ + "▁semifinal", + -13.361441612243652 + ], + [ + "▁EVERYTHING", + -13.361468315124512 + ], + [ + "▁Nightmare", + -13.361474990844727 + ], + [ + "▁carte", + -13.361533164978027 + ], + [ + "ERA", + -13.361557006835938 + ], + [ + "cker", + -13.361566543579102 + ], + [ + "▁Chatham", + -13.361600875854492 + ], + [ + "▁gazebo", + -13.361611366271973 + ], + [ + "▁makeshift", + -13.361730575561523 + ], + [ + "▁Afternoon", + -13.361845016479492 + ], + [ + "tting", + -13.361945152282715 + ], + [ + "▁Shia", + -13.36194896697998 + ], + [ + "▁è", + -13.362018585205078 + ], + [ + "▁lousy", + -13.36214542388916 + ], + [ + "Each", + -13.36214828491211 + ], + [ + "journal", + -13.362226486206055 + ], + [ + "▁bordering", + -13.362238883972168 + ], + [ + "▁Removing", + -13.362266540527344 + ], + [ + "▁hypnosis", + -13.362293243408203 + ], + [ + "iden", + -13.362329483032227 + ], + [ + "according", + -13.362351417541504 + ], + [ + "▁peppermint", + -13.36239242553711 + ], + [ + "▁Charges", + -13.362494468688965 + ], + [ + "▁incandescent", + -13.36253547668457 + ], + [ + "▁brim", + -13.362592697143555 + ], + [ + "▁sildenafil", + -13.362626075744629 + ], + [ + "eme", + -13.362951278686523 + ], + [ + "▁shred", + -13.363004684448242 + ], + [ + "▁Denton", + -13.363085746765137 + ], + [ + "erator", + -13.363096237182617 + ], + [ + "urs", + -13.363137245178223 + ], + [ + "▁tak", + -13.363265991210938 + ], + [ + "▁Denny", + -13.363269805908203 + ], + [ + "▁Adaptive", + -13.363311767578125 + ], + [ + "▁Oops", + -13.363329887390137 + ], + [ + "▁straighten", + -13.363343238830566 + ], + [ + "Christ", + -13.363381385803223 + ], + [ + "▁cohesion", + -13.363391876220703 + ], + [ + "▁Wembley", + -13.363397598266602 + ], + [ + "▁Cypress", + -13.363409996032715 + ], + [ + "▁Lal", + -13.36347484588623 + ], + [ + "▁Seafood", + -13.363496780395508 + ], + [ + "▁Durban", + -13.363526344299316 + ], + [ + "▁torment", + -13.363537788391113 + ], + [ + "▁remorse", + -13.363614082336426 + ], + [ + "▁Bullet", + -13.363617897033691 + ], + [ + "▁hiked", + -13.363729476928711 + ], + [ + "▁smartest", + -13.363738059997559 + ], + [ + "owitz", + -13.363808631896973 + ], + [ + "▁cheats", + -13.36387825012207 + ], + [ + "▁biotech", + -13.363919258117676 + ], + [ + "▁irreversible", + -13.363934516906738 + ], + [ + "▁Brought", + -13.363945007324219 + ], + [ + "▁Champ", + -13.363945960998535 + ], + [ + "▁Dye", + -13.364006042480469 + ], + [ + "▁Kabul", + -13.364049911499023 + ], + [ + "▁mocked", + -13.364113807678223 + ], + [ + "▁multiplier", + -13.364117622375488 + ], + [ + "▁pledges", + -13.36412239074707 + ], + [ + "IQ", + -13.364140510559082 + ], + [ + "▁Telecommunications", + -13.36414909362793 + ], + [ + "▁Acoustic", + -13.364171981811523 + ], + [ + "▁elicit", + -13.364195823669434 + ], + [ + "▁1885", + -13.364203453063965 + ], + [ + "▁surrogate", + -13.364225387573242 + ], + [ + "▁abstracts", + -13.364227294921875 + ], + [ + "▁dehydrated", + -13.3642578125 + ], + [ + "▁indefinite", + -13.364297866821289 + ], + [ + "▁organizes", + -13.364315032958984 + ], + [ + "▁accommodated", + -13.364418983459473 + ], + [ + "▁JO", + -13.364456176757812 + ], + [ + "cip", + -13.364495277404785 + ], + [ + "▁mechanically", + -13.364669799804688 + ], + [ + "▁bc", + -13.364806175231934 + ], + [ + "ahead", + -13.364947319030762 + ], + [ + "▁indifference", + -13.364985466003418 + ], + [ + "▁Womens", + -13.365039825439453 + ], + [ + "▁Recall", + -13.365060806274414 + ], + [ + "▁palpable", + -13.365152359008789 + ], + [ + "▁Brig", + -13.36516284942627 + ], + [ + "▁pesky", + -13.365191459655762 + ], + [ + "▁apiece", + -13.365240097045898 + ], + [ + "▁Trigger", + -13.365242004394531 + ], + [ + "▁tx", + -13.365276336669922 + ], + [ + "▁Nau", + -13.36544418334961 + ], + [ + "▁Gently", + -13.365472793579102 + ], + [ + "▁Puzzle", + -13.365476608276367 + ], + [ + "▁watered", + -13.365519523620605 + ], + [ + "response", + -13.365572929382324 + ], + [ + "▁rebellious", + -13.36562442779541 + ], + [ + "▁defer", + -13.365635871887207 + ], + [ + "Ñ", + -13.365667343139648 + ], + [ + "▁helpers", + -13.365678787231445 + ], + [ + "AX", + -13.365700721740723 + ], + [ + "▁Hits", + -13.365705490112305 + ], + [ + "▁Slater", + -13.365714073181152 + ], + [ + "Leave", + -13.365717887878418 + ], + [ + "▁adamant", + -13.365884780883789 + ], + [ + "▁Werner", + -13.365906715393066 + ], + [ + "▁LU", + -13.365909576416016 + ], + [ + "▁donkey", + -13.366131782531738 + ], + [ + "▁på", + -13.366190910339355 + ], + [ + "▁Waves", + -13.366217613220215 + ], + [ + "hd", + -13.366220474243164 + ], + [ + "▁Icelandic", + -13.366244316101074 + ], + [ + "▁sludge", + -13.366247177124023 + ], + [ + "▁supple", + -13.366271018981934 + ], + [ + "▁LINE", + -13.36628532409668 + ], + [ + "▁discontent", + -13.36636734008789 + ], + [ + "▁scooters", + -13.3663969039917 + ], + [ + "▁Invitational", + -13.366497993469238 + ], + [ + "▁numeric", + -13.366671562194824 + ], + [ + "315", + -13.366754531860352 + ], + [ + "▁Yugoslavia", + -13.366755485534668 + ], + [ + "▁gan", + -13.366866111755371 + ], + [ + "▁jeopardy", + -13.366912841796875 + ], + [ + "▁rigged", + -13.366928100585938 + ], + [ + "▁Polaris", + -13.367008209228516 + ], + [ + "bond", + -13.367012023925781 + ], + [ + "▁Hitchcock", + -13.367050170898438 + ], + [ + "で", + -13.367231369018555 + ], + [ + "▁ensued", + -13.36727523803711 + ], + [ + "dynamic", + -13.367451667785645 + ], + [ + "▁midwife", + -13.367648124694824 + ], + [ + "false", + -13.367741584777832 + ], + [ + "▁SSC", + -13.367748260498047 + ], + [ + "▁Colt", + -13.367934226989746 + ], + [ + "▁grapple", + -13.368003845214844 + ], + [ + "▁bruises", + -13.368192672729492 + ], + [ + "▁resultant", + -13.368226051330566 + ], + [ + "▁ascending", + -13.368231773376465 + ], + [ + "▁overturn", + -13.368240356445312 + ], + [ + "rib", + -13.368247985839844 + ], + [ + "▁Protective", + -13.368285179138184 + ], + [ + "amente", + -13.368350982666016 + ], + [ + "▁Heard", + -13.36852741241455 + ], + [ + "▁renewing", + -13.368565559387207 + ], + [ + "▁Pea", + -13.368645668029785 + ], + [ + "▁Wanna", + -13.368645668029785 + ], + [ + "▁NON", + -13.36864948272705 + ], + [ + "▁Rene", + -13.36867904663086 + ], + [ + "▁Humane", + -13.368725776672363 + ], + [ + "▁resided", + -13.368849754333496 + ], + [ + "▁Tad", + -13.368966102600098 + ], + [ + "▁Buckley", + -13.369073867797852 + ], + [ + "▁MSC", + -13.369091987609863 + ], + [ + "▁Abi", + -13.369108200073242 + ], + [ + "▁Cham", + -13.369115829467773 + ], + [ + "▁assuring", + -13.3692045211792 + ], + [ + "holes", + -13.369220733642578 + ], + [ + "▁deteriorating", + -13.36923885345459 + ], + [ + "Wave", + -13.369253158569336 + ], + [ + "ITA", + -13.369263648986816 + ], + [ + "▁Proxy", + -13.369264602661133 + ], + [ + "▁hymn", + -13.369279861450195 + ], + [ + "▁ultraviolet", + -13.369302749633789 + ], + [ + "▁Theological", + -13.369466781616211 + ], + [ + "▁rightful", + -13.369490623474121 + ], + [ + "▁mischief", + -13.369503021240234 + ], + [ + "▁blackout", + -13.369508743286133 + ], + [ + "▁paralyzed", + -13.369549751281738 + ], + [ + "▁enquire", + -13.3695707321167 + ], + [ + "▁tides", + -13.369791984558105 + ], + [ + "▁Rugs", + -13.36980152130127 + ], + [ + "adjusted", + -13.36982250213623 + ], + [ + "▁thereto", + -13.369881629943848 + ], + [ + "▁Gentleman", + -13.369959831237793 + ], + [ + "▁companionship", + -13.369961738586426 + ], + [ + "wearing", + -13.369974136352539 + ], + [ + "▁cladding", + -13.370100975036621 + ], + [ + "▁spyware", + -13.370148658752441 + ], + [ + "▁chaise", + -13.370162963867188 + ], + [ + "medium", + -13.370195388793945 + ], + [ + "▁fend", + -13.370216369628906 + ], + [ + "▁dei", + -13.370231628417969 + ], + [ + "▁Reliance", + -13.370285034179688 + ], + [ + "▁fascia", + -13.37031078338623 + ], + [ + "▁iCloud", + -13.370354652404785 + ], + [ + "▁compromises", + -13.37044620513916 + ], + [ + "▁breeder", + -13.370482444763184 + ], + [ + "▁RIP", + -13.370499610900879 + ], + [ + "▁oriental", + -13.370508193969727 + ], + [ + "▁secondly", + -13.370573043823242 + ], + [ + "uw", + -13.370591163635254 + ], + [ + "▁tooling", + -13.370610237121582 + ], + [ + "▁solicitation", + -13.370613098144531 + ], + [ + "▁relegation", + -13.370631217956543 + ], + [ + "▁Zam", + -13.370732307434082 + ], + [ + "maid", + -13.370792388916016 + ], + [ + "▁heartbreak", + -13.370847702026367 + ], + [ + "▁Mobil", + -13.370948791503906 + ], + [ + "▁Engage", + -13.371009826660156 + ], + [ + "▁disproportionately", + -13.371018409729004 + ], + [ + "organized", + -13.37110424041748 + ], + [ + "opoulos", + -13.37111759185791 + ], + [ + "▁Biomedical", + -13.371210098266602 + ], + [ + "▁whipping", + -13.371281623840332 + ], + [ + "▁combating", + -13.371293067932129 + ], + [ + "▁trampoline", + -13.371336936950684 + ], + [ + "▁Regency", + -13.371338844299316 + ], + [ + "Tell", + -13.371397018432617 + ], + [ + "lage", + -13.371415138244629 + ], + [ + "▁Buster", + -13.371463775634766 + ], + [ + "yam", + -13.371516227722168 + ], + [ + "▁Lists", + -13.371597290039062 + ], + [ + "▁hunts", + -13.371604919433594 + ], + [ + "▁Keto", + -13.371658325195312 + ], + [ + "Ph", + -13.371705055236816 + ], + [ + "▁councillor", + -13.37171459197998 + ], + [ + "IER", + -13.371763229370117 + ], + [ + "hhh", + -13.371920585632324 + ], + [ + "▁Spacious", + -13.37198543548584 + ], + [ + "▁Woodstock", + -13.371986389160156 + ], + [ + "▁Eligible", + -13.372241973876953 + ], + [ + "RW", + -13.372259140014648 + ], + [ + "▁brute", + -13.372293472290039 + ], + [ + "▁Rye", + -13.37239933013916 + ], + [ + "Fast", + -13.372467041015625 + ], + [ + "Yo", + -13.372496604919434 + ], + [ + "▁Grange", + -13.372522354125977 + ], + [ + "▁AWESOME", + -13.372599601745605 + ], + [ + "▁mowing", + -13.372605323791504 + ], + [ + "ask", + -13.37263011932373 + ], + [ + "▁allure", + -13.372684478759766 + ], + [ + "▁aggregates", + -13.372692108154297 + ], + [ + "▁213", + -13.372693061828613 + ], + [ + "▁Moms", + -13.372722625732422 + ], + [ + "▁readership", + -13.372779846191406 + ], + [ + "▁SSH", + -13.372834205627441 + ], + [ + "▁Philharmonic", + -13.372838020324707 + ], + [ + "▁prematurely", + -13.372848510742188 + ], + [ + "▁awakened", + -13.372864723205566 + ], + [ + "▁ballad", + -13.37289810180664 + ], + [ + "▁Credits", + -13.372939109802246 + ], + [ + "dn", + -13.372942924499512 + ], + [ + "▁Tribute", + -13.37299919128418 + ], + [ + "し", + -13.373027801513672 + ], + [ + "▁sniper", + -13.373078346252441 + ], + [ + "▁collide", + -13.373239517211914 + ], + [ + "▁Adele", + -13.373432159423828 + ], + [ + "▁403", + -13.37351131439209 + ], + [ + "▁Chevron", + -13.373544692993164 + ], + [ + "▁gloom", + -13.373602867126465 + ], + [ + "INT", + -13.373614311218262 + ], + [ + "▁spout", + -13.373621940612793 + ], + [ + "▁Danger", + -13.373653411865234 + ], + [ + "▁mosques", + -13.373698234558105 + ], + [ + "cil", + -13.373712539672852 + ], + [ + "riel", + -13.373726844787598 + ], + [ + "▁Viet", + -13.373761177062988 + ], + [ + "▁vigil", + -13.373866081237793 + ], + [ + "▁Kelsey", + -13.37393856048584 + ], + [ + "▁nested", + -13.374086380004883 + ], + [ + "▁breads", + -13.37414836883545 + ], + [ + "▁Anger", + -13.374170303344727 + ], + [ + "▁QuickBooks", + -13.374174118041992 + ], + [ + "▁netted", + -13.374311447143555 + ], + [ + "▁SYSTEM", + -13.37432861328125 + ], + [ + "▁ipad", + -13.374333381652832 + ], + [ + "▁depressive", + -13.374348640441895 + ], + [ + "▁3500", + -13.374419212341309 + ], + [ + "▁german", + -13.37446403503418 + ], + [ + "WG", + -13.374484062194824 + ], + [ + "described", + -13.374499320983887 + ], + [ + "▁Distributed", + -13.374601364135742 + ], + [ + "liche", + -13.374629020690918 + ], + [ + "▁Yen", + -13.374634742736816 + ], + [ + "▁Caller", + -13.3746976852417 + ], + [ + "▁zeal", + -13.37476921081543 + ], + [ + "▁squadron", + -13.374774932861328 + ], + [ + "▁appreciates", + -13.374852180480957 + ], + [ + "evil", + -13.374922752380371 + ], + [ + "▁Norm", + -13.374943733215332 + ], + [ + "▁Rays", + -13.374988555908203 + ], + [ + "ssen", + -13.375011444091797 + ], + [ + "▁pickles", + -13.375049591064453 + ], + [ + "ardi", + -13.375066757202148 + ], + [ + "▁augmentation", + -13.375121116638184 + ], + [ + "▁denotes", + -13.375128746032715 + ], + [ + "▁pneumatic", + -13.375267028808594 + ], + [ + "▁discrepancies", + -13.375285148620605 + ], + [ + "▁Rotterdam", + -13.375301361083984 + ], + [ + "▁revamp", + -13.3753023147583 + ], + [ + "▁defy", + -13.375325202941895 + ], + [ + "▁matt", + -13.37533187866211 + ], + [ + "▁sooo", + -13.375338554382324 + ], + [ + "▁Picking", + -13.375380516052246 + ], + [ + "▁crumble", + -13.375398635864258 + ], + [ + "▁Stitch", + -13.375438690185547 + ], + [ + "▁Chesterfield", + -13.37548542022705 + ], + [ + "▁fudge", + -13.375641822814941 + ], + [ + "▁ultrasonic", + -13.375715255737305 + ], + [ + "▁panorama", + -13.375724792480469 + ], + [ + "▁clinician", + -13.375728607177734 + ], + [ + "▁healer", + -13.375847816467285 + ], + [ + "273", + -13.375848770141602 + ], + [ + "▁Lana", + -13.375887870788574 + ], + [ + "▁movable", + -13.375924110412598 + ], + [ + "▁TK", + -13.375961303710938 + ], + [ + "terrorism", + -13.375975608825684 + ], + [ + "managed", + -13.375991821289062 + ], + [ + "▁mammoth", + -13.375995635986328 + ], + [ + "▁halloween", + -13.376008987426758 + ], + [ + "operated", + -13.376041412353516 + ], + [ + "Jet", + -13.376078605651855 + ], + [ + "▁1886", + -13.376084327697754 + ], + [ + "▁Ballroom", + -13.37608814239502 + ], + [ + "▁Khashoggi", + -13.376089096069336 + ], + [ + "PSC", + -13.376153945922852 + ], + [ + "▁Gabe", + -13.376174926757812 + ], + [ + "▁rectify", + -13.376221656799316 + ], + [ + "cken", + -13.376249313354492 + ], + [ + "enia", + -13.376321792602539 + ], + [ + "425", + -13.37634563446045 + ], + [ + "▁choral", + -13.376404762268066 + ], + [ + "д", + -13.376410484313965 + ], + [ + "▁ABA", + -13.376487731933594 + ], + [ + "▁Eileen", + -13.37648868560791 + ], + [ + "▁Battlefield", + -13.376520156860352 + ], + [ + "▁laden", + -13.376546859741211 + ], + [ + "▁Bluff", + -13.376565933227539 + ], + [ + "▁Attach", + -13.376572608947754 + ], + [ + "fal", + -13.376629829406738 + ], + [ + "Host", + -13.376652717590332 + ], + [ + "▁gelatin", + -13.376652717590332 + ], + [ + "ا", + -13.376662254333496 + ], + [ + "▁MANY", + -13.376714706420898 + ], + [ + "▁fascist", + -13.376717567443848 + ], + [ + "▁toxin", + -13.376789093017578 + ], + [ + "▁Skinner", + -13.376855850219727 + ], + [ + "▁Tried", + -13.376884460449219 + ], + [ + "▁explorers", + -13.376909255981445 + ], + [ + "▁Routledge", + -13.37702751159668 + ], + [ + "▁parishes", + -13.377115249633789 + ], + [ + "cancer", + -13.377140045166016 + ], + [ + "▁considerate", + -13.377145767211914 + ], + [ + "Sat", + -13.377305030822754 + ], + [ + "▁Irma", + -13.377317428588867 + ], + [ + "▁liters", + -13.377388954162598 + ], + [ + "▁Hose", + -13.377480506896973 + ], + [ + "Digital", + -13.377522468566895 + ], + [ + "▁orchestral", + -13.377528190612793 + ], + [ + "▁sprays", + -13.377537727355957 + ], + [ + "▁unilateral", + -13.377596855163574 + ], + [ + "▁Kla", + -13.377599716186523 + ], + [ + "▁Maid", + -13.377655982971191 + ], + [ + "▁recount", + -13.377686500549316 + ], + [ + "▁Poison", + -13.377703666687012 + ], + [ + "▁Socrates", + -13.37771224975586 + ], + [ + "▁aggregated", + -13.377861022949219 + ], + [ + "▁Cel", + -13.377917289733887 + ], + [ + "▁Supported", + -13.377959251403809 + ], + [ + "▁steamer", + -13.377975463867188 + ], + [ + "▁birch", + -13.378074645996094 + ], + [ + "▁chuckle", + -13.378117561340332 + ], + [ + "hel", + -13.37817096710205 + ], + [ + "manager", + -13.378177642822266 + ], + [ + "creation", + -13.378183364868164 + ], + [ + "▁Selecting", + -13.378247261047363 + ], + [ + "▁dissatisfied", + -13.378318786621094 + ], + [ + "▁preventable", + -13.3783597946167 + ], + [ + "▁intersections", + -13.378436088562012 + ], + [ + "▁creed", + -13.378561019897461 + ], + [ + "birth", + -13.378565788269043 + ], + [ + "eff", + -13.37873363494873 + ], + [ + "▁allege", + -13.378819465637207 + ], + [ + "▁transformational", + -13.3788423538208 + ], + [ + "▁Hobart", + -13.378889083862305 + ], + [ + "▁purported", + -13.378923416137695 + ], + [ + "▁contemplation", + -13.378942489624023 + ], + [ + "▁Else", + -13.37895393371582 + ], + [ + "▁dj", + -13.378984451293945 + ], + [ + "▁relatable", + -13.37899398803711 + ], + [ + "phy", + -13.379075050354004 + ], + [ + "▁conductivity", + -13.379088401794434 + ], + [ + "▁mend", + -13.379096031188965 + ], + [ + "▁Contra", + -13.379294395446777 + ], + [ + "▁Bose", + -13.379380226135254 + ], + [ + "▁Panic", + -13.379504203796387 + ], + [ + "als", + -13.379594802856445 + ], + [ + "iere", + -13.379594802856445 + ], + [ + "▁annotated", + -13.379663467407227 + ], + [ + "▁Younger", + -13.379664421081543 + ], + [ + "▁cumin", + -13.379698753356934 + ], + [ + "▁veneers", + -13.379743576049805 + ], + [ + "▁Sequence", + -13.379745483398438 + ], + [ + "peak", + -13.379783630371094 + ], + [ + "▁observance", + -13.379826545715332 + ], + [ + "Public", + -13.37983512878418 + ], + [ + "▁Esq", + -13.379902839660645 + ], + [ + "▁Knit", + -13.379918098449707 + ], + [ + "sai", + -13.37992000579834 + ], + [ + "▁pundits", + -13.380226135253906 + ], + [ + "▁shameful", + -13.380290031433105 + ], + [ + "VT", + -13.380305290222168 + ], + [ + "▁glam", + -13.380399703979492 + ], + [ + "▁Suspension", + -13.380412101745605 + ], + [ + "▁Rem", + -13.38044548034668 + ], + [ + "▁Lai", + -13.380509376525879 + ], + [ + "annual", + -13.380528450012207 + ], + [ + "▁Glover", + -13.380550384521484 + ], + [ + "▁volts", + -13.380603790283203 + ], + [ + "▁yum", + -13.380606651306152 + ], + [ + "▁bla", + -13.380620956420898 + ], + [ + "▁BUSINESS", + -13.380642890930176 + ], + [ + "▁relive", + -13.380668640136719 + ], + [ + "▁Eur", + -13.380705833435059 + ], + [ + "▁writ", + -13.380715370178223 + ], + [ + "▁Vegetable", + -13.380823135375977 + ], + [ + "▁Christy", + -13.380833625793457 + ], + [ + "▁ASUS", + -13.380894660949707 + ], + [ + "▁Invoice", + -13.380940437316895 + ], + [ + "▁fracking", + -13.380948066711426 + ], + [ + "▁Tractor", + -13.381011009216309 + ], + [ + "▁Hel", + -13.381032943725586 + ], + [ + "▁orchestrated", + -13.381033897399902 + ], + [ + "308", + -13.381142616271973 + ], + [ + "▁Supporters", + -13.381331443786621 + ], + [ + "▁Facing", + -13.381412506103516 + ], + [ + "▁Sao", + -13.381423950195312 + ], + [ + "▁powerfully", + -13.381476402282715 + ], + [ + "▁nz", + -13.381546974182129 + ], + [ + "▁fades", + -13.381579399108887 + ], + [ + "ched", + -13.381644248962402 + ], + [ + "Street", + -13.381665229797363 + ], + [ + "▁Delphi", + -13.38167667388916 + ], + [ + "winner", + -13.381786346435547 + ], + [ + "▁symphony", + -13.382193565368652 + ], + [ + "▁shortfall", + -13.382267951965332 + ], + [ + "ologists", + -13.382288932800293 + ], + [ + "zione", + -13.38233757019043 + ], + [ + "386", + -13.382355690002441 + ], + [ + "▁BMC", + -13.382364273071289 + ], + [ + "▁swag", + -13.382373809814453 + ], + [ + "▁battalion", + -13.382438659667969 + ], + [ + "slow", + -13.382473945617676 + ], + [ + "▁practicality", + -13.382498741149902 + ], + [ + "▁dwellings", + -13.382509231567383 + ], + [ + "▁whistles", + -13.382530212402344 + ], + [ + "▁beetle", + -13.382535934448242 + ], + [ + "▁tees", + -13.382538795471191 + ], + [ + "▁Toward", + -13.382707595825195 + ], + [ + "▁Renting", + -13.38276195526123 + ], + [ + "zio", + -13.382881164550781 + ], + [ + "▁FEMA", + -13.382888793945312 + ], + [ + "rev", + -13.382899284362793 + ], + [ + "▁acknowledgment", + -13.38296890258789 + ], + [ + "▁pennies", + -13.383075714111328 + ], + [ + "ем", + -13.383087158203125 + ], + [ + "▁participatory", + -13.383097648620605 + ], + [ + "▁ensembles", + -13.383237838745117 + ], + [ + "▁Scho", + -13.383247375488281 + ], + [ + "▁Alter", + -13.38328742980957 + ], + [ + "▁noir", + -13.383299827575684 + ], + [ + "▁Emery", + -13.383318901062012 + ], + [ + "▁horny", + -13.383383750915527 + ], + [ + "▁GMO", + -13.383413314819336 + ], + [ + "Saharan", + -13.38345718383789 + ], + [ + "▁Matching", + -13.383488655090332 + ], + [ + "▁populate", + -13.383554458618164 + ], + [ + "▁whine", + -13.383650779724121 + ], + [ + "▁Sizes", + -13.3836669921875 + ], + [ + "▁265", + -13.383692741394043 + ], + [ + "▁Enhancement", + -13.383773803710938 + ], + [ + "▁Rebels", + -13.383875846862793 + ], + [ + "▁Sikh", + -13.383910179138184 + ], + [ + "▁retinal", + -13.383919715881348 + ], + [ + "lux", + -13.383959770202637 + ], + [ + "▁São", + -13.383990287780762 + ], + [ + "answer", + -13.384001731872559 + ], + [ + "▁refrigerated", + -13.384069442749023 + ], + [ + "▁annotation", + -13.384124755859375 + ], + [ + "▁Noon", + -13.384193420410156 + ], + [ + "▁Mole", + -13.384224891662598 + ], + [ + "Donnell", + -13.384350776672363 + ], + [ + "▁Ware", + -13.384353637695312 + ], + [ + "worn", + -13.384474754333496 + ], + [ + "▁candies", + -13.384485244750977 + ], + [ + "▁operatives", + -13.384498596191406 + ], + [ + "▁adjusts", + -13.384604454040527 + ], + [ + "▁moisturizing", + -13.384638786315918 + ], + [ + "▁newfound", + -13.384705543518066 + ], + [ + "▁outbound", + -13.384749412536621 + ], + [ + "▁civilized", + -13.384758949279785 + ], + [ + "▁CLA", + -13.384821891784668 + ], + [ + "▁sweatshirt", + -13.384871482849121 + ], + [ + "▁Fortnite", + -13.3848876953125 + ], + [ + "ismo", + -13.384906768798828 + ], + [ + "▁intravenous", + -13.384910583496094 + ], + [ + "▁ASD", + -13.384918212890625 + ], + [ + "▁supervising", + -13.384940147399902 + ], + [ + "▁shimmering", + -13.384952545166016 + ], + [ + "ishi", + -13.38502025604248 + ], + [ + "▁gunfire", + -13.38502025604248 + ], + [ + "different", + -13.385062217712402 + ], + [ + "▁endearing", + -13.385064125061035 + ], + [ + "▁Italia", + -13.385071754455566 + ], + [ + "▁injure", + -13.385104179382324 + ], + [ + "▁triathlon", + -13.385124206542969 + ], + [ + "▁socialize", + -13.385143280029297 + ], + [ + "▁Cooke", + -13.385298728942871 + ], + [ + "▁cosmopolitan", + -13.385313987731934 + ], + [ + "▁chiefs", + -13.385326385498047 + ], + [ + "▁populace", + -13.385504722595215 + ], + [ + "▁Stranger", + -13.385573387145996 + ], + [ + "та", + -13.385594367980957 + ], + [ + "▁strenuous", + -13.38565444946289 + ], + [ + "▁foray", + -13.385659217834473 + ], + [ + "▁Passover", + -13.38584041595459 + ], + [ + "Fa", + -13.385884284973145 + ], + [ + "▁PAL", + -13.38591480255127 + ], + [ + "▁Bare", + -13.386063575744629 + ], + [ + "▁controversies", + -13.386192321777344 + ], + [ + "NU", + -13.386223793029785 + ], + [ + "▁Focusing", + -13.386321067810059 + ], + [ + "ës", + -13.3864107131958 + ], + [ + "▁Willy", + -13.386439323425293 + ], + [ + "▁Rein", + -13.386481285095215 + ], + [ + "▁Stokes", + -13.386542320251465 + ], + [ + "▁Wallpapers", + -13.386606216430664 + ], + [ + "Winter", + -13.386625289916992 + ], + [ + "▁Acute", + -13.386627197265625 + ], + [ + "▁trainee", + -13.386643409729004 + ], + [ + "▁Needed", + -13.386687278747559 + ], + [ + "▁inorganic", + -13.386727333068848 + ], + [ + "▁expo", + -13.386880874633789 + ], + [ + "career", + -13.386892318725586 + ], + [ + "increasing", + -13.386945724487305 + ], + [ + "▁fluctuate", + -13.38698673248291 + ], + [ + "▁ranger", + -13.386996269226074 + ], + [ + "▁departmental", + -13.387027740478516 + ], + [ + "dur", + -13.387031555175781 + ], + [ + "▁miscellaneous", + -13.387049674987793 + ], + [ + "▁Ops", + -13.38708209991455 + ], + [ + "▁saloon", + -13.387153625488281 + ], + [ + "▁subsidized", + -13.387184143066406 + ], + [ + "▁Salah", + -13.38720989227295 + ], + [ + "▁vomit", + -13.387295722961426 + ], + [ + "▁Shelton", + -13.387343406677246 + ], + [ + "▁protagonists", + -13.387430191040039 + ], + [ + "rule", + -13.387435913085938 + ], + [ + "990", + -13.387445449829102 + ], + [ + "▁Butcher", + -13.387459754943848 + ], + [ + "asp", + -13.387468338012695 + ], + [ + "▁Tent", + -13.387641906738281 + ], + [ + "ß", + -13.387683868408203 + ], + [ + "▁McKay", + -13.387717247009277 + ], + [ + "▁Adjust", + -13.38773250579834 + ], + [ + "▁modernity", + -13.38773250579834 + ], + [ + "▁ballpark", + -13.387869834899902 + ], + [ + "▁Riot", + -13.387884140014648 + ], + [ + "▁adoptive", + -13.387917518615723 + ], + [ + "Term", + -13.387956619262695 + ], + [ + "vehicle", + -13.388004302978516 + ], + [ + "▁Melvin", + -13.388040542602539 + ], + [ + "DW", + -13.388056755065918 + ], + [ + "Hold", + -13.388062477111816 + ], + [ + "▁biz", + -13.388078689575195 + ], + [ + "gging", + -13.38812255859375 + ], + [ + "239", + -13.388134002685547 + ], + [ + "Wa", + -13.388251304626465 + ], + [ + "▁reservoirs", + -13.388299942016602 + ], + [ + "▁washers", + -13.388312339782715 + ], + [ + "▁snippet", + -13.388346672058105 + ], + [ + "▁synchronized", + -13.38841438293457 + ], + [ + "▁polled", + -13.388442993164062 + ], + [ + "▁Crowley", + -13.388450622558594 + ], + [ + "college", + -13.38858699798584 + ], + [ + "▁Mention", + -13.388595581054688 + ], + [ + "▁Viola", + -13.388692855834961 + ], + [ + "▁cutoff", + -13.388703346252441 + ], + [ + "▁Driven", + -13.388710975646973 + ], + [ + "tico", + -13.388760566711426 + ], + [ + "▁Touring", + -13.388781547546387 + ], + [ + "246", + -13.388806343078613 + ], + [ + "▁appreciating", + -13.388856887817383 + ], + [ + "literally", + -13.388875961303711 + ], + [ + "▁FO", + -13.388944625854492 + ], + [ + "▁199", + -13.38904094696045 + ], + [ + "▁Mauritius", + -13.389069557189941 + ], + [ + "rh", + -13.3891019821167 + ], + [ + "▁vanities", + -13.389106750488281 + ], + [ + "▁bile", + -13.389132499694824 + ], + [ + "▁billboard", + -13.389143943786621 + ], + [ + "▁amaze", + -13.389180183410645 + ], + [ + "▁XR", + -13.389181137084961 + ], + [ + "▁rupees", + -13.389281272888184 + ], + [ + "▁skiers", + -13.389281272888184 + ], + [ + "▁Acrobat", + -13.389287948608398 + ], + [ + "▁murdering", + -13.389294624328613 + ], + [ + "▁Davenport", + -13.389362335205078 + ], + [ + "▁viscosity", + -13.389383316040039 + ], + [ + "▁CONTENT", + -13.389404296875 + ], + [ + "▁jig", + -13.389430046081543 + ], + [ + "▁wink", + -13.38950252532959 + ], + [ + "▁Miriam", + -13.389579772949219 + ], + [ + "▁mais", + -13.389670372009277 + ], + [ + "▁sexism", + -13.389748573303223 + ], + [ + "▁Benton", + -13.389888763427734 + ], + [ + "▁Lola", + -13.389923095703125 + ], + [ + "▁Aluminium", + -13.389938354492188 + ], + [ + "▁stalk", + -13.389965057373047 + ], + [ + "▁Ezekiel", + -13.389967918395996 + ], + [ + "coding", + -13.389999389648438 + ], + [ + "▁cunning", + -13.390022277832031 + ], + [ + "▁workable", + -13.390024185180664 + ], + [ + "▁metaphysical", + -13.390048027038574 + ], + [ + "▁frontline", + -13.390192985534668 + ], + [ + "▁Parenting", + -13.390213012695312 + ], + [ + "▁selector", + -13.390239715576172 + ], + [ + "▁Crafted", + -13.390314102172852 + ], + [ + "▁Chattanooga", + -13.390321731567383 + ], + [ + "▁Pools", + -13.390340805053711 + ], + [ + "▁Folder", + -13.390377044677734 + ], + [ + "kid", + -13.390382766723633 + ], + [ + "▁Dora", + -13.390414237976074 + ], + [ + "uca", + -13.390419006347656 + ], + [ + "▁Strain", + -13.390423774719238 + ], + [ + "volt", + -13.390450477600098 + ], + [ + "▁assertions", + -13.390501976013184 + ], + [ + "groups", + -13.390525817871094 + ], + [ + "▁Lenin", + -13.390630722045898 + ], + [ + "served", + -13.390686988830566 + ], + [ + "▁FIT", + -13.39073657989502 + ], + [ + "▁adopts", + -13.390768051147461 + ], + [ + "173", + -13.390791893005371 + ], + [ + "▁Gentle", + -13.390837669372559 + ], + [ + "▁Maz", + -13.390913009643555 + ], + [ + "▁planters", + -13.390963554382324 + ], + [ + "▁subordinate", + -13.391068458557129 + ], + [ + "▁accented", + -13.391096115112305 + ], + [ + "▁Helpful", + -13.391103744506836 + ], + [ + "iling", + -13.391157150268555 + ], + [ + "▁nectar", + -13.391181945800781 + ], + [ + "▁Pip", + -13.391242980957031 + ], + [ + "▁Attend", + -13.391258239746094 + ], + [ + "▁Diablo", + -13.391294479370117 + ], + [ + "▁plating", + -13.391335487365723 + ], + [ + "▁subpoena", + -13.391373634338379 + ], + [ + "▁nudge", + -13.391414642333984 + ], + [ + "▁muse", + -13.391423225402832 + ], + [ + "arc", + -13.391450881958008 + ], + [ + "▁1871", + -13.391514778137207 + ], + [ + "ère", + -13.391558647155762 + ], + [ + "organic", + -13.391584396362305 + ], + [ + "▁namesake", + -13.391644477844238 + ], + [ + "▁disproportionate", + -13.391704559326172 + ], + [ + "▁summarizes", + -13.391711235046387 + ], + [ + "▁Koreans", + -13.391934394836426 + ], + [ + "Ten", + -13.39200496673584 + ], + [ + "▁Dortmund", + -13.392016410827637 + ], + [ + "221", + -13.392036437988281 + ], + [ + "▁europe", + -13.392058372497559 + ], + [ + "▁Beverage", + -13.39208698272705 + ], + [ + "▁captivated", + -13.392099380493164 + ], + [ + "▁standoff", + -13.392101287841797 + ], + [ + "▁porn", + -13.392123222351074 + ], + [ + "score", + -13.392127990722656 + ], + [ + "▁Bloody", + -13.392129898071289 + ], + [ + "▁Capri", + -13.39224624633789 + ], + [ + "▁crossroads", + -13.39229679107666 + ], + [ + "Script", + -13.392333984375 + ], + [ + "peace", + -13.392359733581543 + ], + [ + "▁RSA", + -13.392373085021973 + ], + [ + "▁vile", + -13.392378807067871 + ], + [ + "▁wafer", + -13.392431259155273 + ], + [ + "▁cereals", + -13.39243221282959 + ], + [ + "links", + -13.392570495605469 + ], + [ + "▁boo", + -13.39258098602295 + ], + [ + "▁Moreno", + -13.392600059509277 + ], + [ + "▁rafting", + -13.392630577087402 + ], + [ + "▁incubation", + -13.392641067504883 + ], + [ + "▁Dino", + -13.392702102661133 + ], + [ + "▁domestically", + -13.39273452758789 + ], + [ + "▁Prom", + -13.392766952514648 + ], + [ + "▁apprehension", + -13.392839431762695 + ], + [ + "▁bien", + -13.392901420593262 + ], + [ + "▁vaulted", + -13.392924308776855 + ], + [ + "▁Meter", + -13.392935752868652 + ], + [ + "▁finalize", + -13.39295482635498 + ], + [ + "▁peroxide", + -13.393052101135254 + ], + [ + "▁masterpieces", + -13.393224716186523 + ], + [ + "▁Navigator", + -13.393265724182129 + ], + [ + "▁Cloth", + -13.39334487915039 + ], + [ + "▁sunsets", + -13.393396377563477 + ], + [ + "▁Colleen", + -13.393494606018066 + ], + [ + "▁inscribed", + -13.393512725830078 + ], + [ + "▁soooo", + -13.393596649169922 + ], + [ + "matter", + -13.393617630004883 + ], + [ + "▁parrot", + -13.393800735473633 + ], + [ + "▁ratified", + -13.393858909606934 + ], + [ + "▁Lecturer", + -13.393935203552246 + ], + [ + "▁Beats", + -13.393965721130371 + ], + [ + "▁motorbike", + -13.394002914428711 + ], + [ + "▁Lincolnshire", + -13.394055366516113 + ], + [ + "▁Tuscany", + -13.394055366516113 + ], + [ + "▁sighting", + -13.394071578979492 + ], + [ + "▁forfeit", + -13.39409351348877 + ], + [ + "▁applauded", + -13.39414119720459 + ], + [ + "▁reimburse", + -13.394218444824219 + ], + [ + "▁raided", + -13.394254684448242 + ], + [ + "manship", + -13.394296646118164 + ], + [ + "Pe", + -13.394352912902832 + ], + [ + "▁interruptions", + -13.394365310668945 + ], + [ + "▁Representation", + -13.39437198638916 + ], + [ + "Ag", + -13.394452095031738 + ], + [ + "▁Carly", + -13.394488334655762 + ], + [ + "▁repellent", + -13.394613265991211 + ], + [ + "▁wholeheartedly", + -13.394619941711426 + ], + [ + "▁Calm", + -13.394722938537598 + ], + [ + "▁Nathaniel", + -13.394850730895996 + ], + [ + "▁Wilhelm", + -13.394852638244629 + ], + [ + "WW", + -13.394872665405273 + ], + [ + "▁resistor", + -13.394879341125488 + ], + [ + "▁Homemade", + -13.394891738891602 + ], + [ + "▁DOS", + -13.394937515258789 + ], + [ + "▁WEBSITE", + -13.394957542419434 + ], + [ + "▁Pebble", + -13.395018577575684 + ], + [ + "▁Lub", + -13.395020484924316 + ], + [ + "248", + -13.395261764526367 + ], + [ + "▁bends", + -13.395264625549316 + ], + [ + "▁waivers", + -13.395306587219238 + ], + [ + "▁Prompt", + -13.395312309265137 + ], + [ + "▁crystalline", + -13.3953857421875 + ], + [ + "에서", + -13.395417213439941 + ], + [ + "▁unspecified", + -13.39546012878418 + ], + [ + "▁AO", + -13.395597457885742 + ], + [ + "1982", + -13.395686149597168 + ], + [ + "▁Sailing", + -13.395724296569824 + ], + [ + "Corp", + -13.395832061767578 + ], + [ + "▁Venue", + -13.395879745483398 + ], + [ + "tric", + -13.395936012268066 + ], + [ + "▁restrain", + -13.395949363708496 + ], + [ + "▁Ax", + -13.395975112915039 + ], + [ + "Mexico", + -13.396042823791504 + ], + [ + "▁START", + -13.396042823791504 + ], + [ + "▁Qa", + -13.39604377746582 + ], + [ + "▁Frankenstein", + -13.396073341369629 + ], + [ + "▁Conveyor", + -13.396123886108398 + ], + [ + "▁Casting", + -13.396133422851562 + ], + [ + "▁overboard", + -13.396160125732422 + ], + [ + "Anti", + -13.39621639251709 + ], + [ + "▁ducts", + -13.396225929260254 + ], + [ + "classic", + -13.396281242370605 + ], + [ + "▁transactional", + -13.396299362182617 + ], + [ + "▁librarians", + -13.39631175994873 + ], + [ + "▁Narrative", + -13.396319389343262 + ], + [ + "▁Empty", + -13.39633846282959 + ], + [ + "finished", + -13.396402359008789 + ], + [ + "▁cho", + -13.396414756774902 + ], + [ + "▁£25", + -13.396429061889648 + ], + [ + "▁dilute", + -13.396615028381348 + ], + [ + "▁Nassau", + -13.396738052368164 + ], + [ + "UX", + -13.396750450134277 + ], + [ + "USB", + -13.396777153015137 + ], + [ + "Lite", + -13.396858215332031 + ], + [ + "gear", + -13.396878242492676 + ], + [ + "adult", + -13.396885871887207 + ], + [ + "▁BV", + -13.396896362304688 + ], + [ + "▁Schi", + -13.396899223327637 + ], + [ + "▁installments", + -13.39695930480957 + ], + [ + "▁custard", + -13.396965026855469 + ], + [ + "▁Monsanto", + -13.39697551727295 + ], + [ + "▁senate", + -13.397085189819336 + ], + [ + "▁IO", + -13.397095680236816 + ], + [ + "▁Ballard", + -13.397103309631348 + ], + [ + "▁cranberry", + -13.39714527130127 + ], + [ + "orum", + -13.397148132324219 + ], + [ + "335", + -13.397159576416016 + ], + [ + "▁friday", + -13.397255897521973 + ], + [ + "STA", + -13.397257804870605 + ], + [ + "▁emulator", + -13.397257804870605 + ], + [ + "▁assaulting", + -13.39731216430664 + ], + [ + "▁bungalow", + -13.397339820861816 + ], + [ + "▁gall", + -13.397351264953613 + ], + [ + "▁Roz", + -13.397353172302246 + ], + [ + "▁Wicked", + -13.397404670715332 + ], + [ + "▁mb", + -13.397443771362305 + ], + [ + "▁Til", + -13.397467613220215 + ], + [ + "▁swore", + -13.397470474243164 + ], + [ + "▁ironing", + -13.3975248336792 + ], + [ + "BER", + -13.397538185119629 + ], + [ + "▁Mattis", + -13.39758014678955 + ], + [ + "ibi", + -13.397624015808105 + ], + [ + "▁Alaskan", + -13.397656440734863 + ], + [ + "▁Metals", + -13.39765739440918 + ], + [ + "▁bribery", + -13.397666931152344 + ], + [ + "▁hospitalization", + -13.39775562286377 + ], + [ + "▁Cinnamon", + -13.397804260253906 + ], + [ + "▁Lynne", + -13.397820472717285 + ], + [ + "▁shatter", + -13.39783000946045 + ], + [ + "▁raisins", + -13.397843360900879 + ], + [ + "serious", + -13.39785099029541 + ], + [ + "▁GG", + -13.398018836975098 + ], + [ + "▁Lending", + -13.398038864135742 + ], + [ + "mmer", + -13.398042678833008 + ], + [ + "▁DAMAGES", + -13.398100852966309 + ], + [ + "words", + -13.398299217224121 + ], + [ + "▁Underwood", + -13.398331642150879 + ], + [ + "▁Chai", + -13.39835262298584 + ], + [ + "▁embedding", + -13.398365020751953 + ], + [ + "student", + -13.398367881774902 + ], + [ + "▁quarrel", + -13.39844036102295 + ], + [ + "▁volcanoes", + -13.39849853515625 + ], + [ + "▁FYI", + -13.398530960083008 + ], + [ + "YO", + -13.398603439331055 + ], + [ + "▁pierced", + -13.398658752441406 + ], + [ + "Bot", + -13.398661613464355 + ], + [ + "▁Ful", + -13.398799896240234 + ], + [ + "tall", + -13.398886680603027 + ], + [ + "▁ideologies", + -13.398900032043457 + ], + [ + "▁quart", + -13.398950576782227 + ], + [ + "▁Deloitte", + -13.398993492126465 + ], + [ + "▁settles", + -13.398993492126465 + ], + [ + "▁rehearsals", + -13.399019241333008 + ], + [ + "▁Essence", + -13.399029731750488 + ], + [ + "▁PSD", + -13.399091720581055 + ], + [ + "▁Caucus", + -13.399092674255371 + ], + [ + "▁DNC", + -13.399125099182129 + ], + [ + "▁pant", + -13.399199485778809 + ], + [ + "▁undeniably", + -13.399200439453125 + ], + [ + "▁Weapon", + -13.3992280960083 + ], + [ + "▁IRC", + -13.399269104003906 + ], + [ + "▁declarations", + -13.399282455444336 + ], + [ + "▁Sergei", + -13.399300575256348 + ], + [ + "▁sapphire", + -13.399312973022461 + ], + [ + "▁Cebu", + -13.399341583251953 + ], + [ + "waste", + -13.399357795715332 + ], + [ + "▁reinvent", + -13.399415969848633 + ], + [ + "▁Tablets", + -13.399417877197266 + ], + [ + "▁bagged", + -13.3994722366333 + ], + [ + "gat", + -13.399484634399414 + ], + [ + "▁Confidence", + -13.399580955505371 + ], + [ + "▁pastures", + -13.399635314941406 + ], + [ + "▁gracefully", + -13.399648666381836 + ], + [ + "▁Mos", + -13.399649620056152 + ], + [ + "ör", + -13.39968204498291 + ], + [ + "▁Otter", + -13.399683952331543 + ], + [ + "▁asserting", + -13.399739265441895 + ], + [ + "▁Warfare", + -13.399772644042969 + ], + [ + "meyer", + -13.399857521057129 + ], + [ + "▁liquidation", + -13.399882316589355 + ], + [ + "▁NYU", + -13.3999605178833 + ], + [ + "▁Cruises", + -13.39998722076416 + ], + [ + "▁hearth", + -13.400145530700684 + ], + [ + "▁appendix", + -13.400181770324707 + ], + [ + "▁sneaker", + -13.400347709655762 + ], + [ + "▁flushed", + -13.400430679321289 + ], + [ + "polar", + -13.40046215057373 + ], + [ + "awi", + -13.400471687316895 + ], + [ + "▁Vicki", + -13.400561332702637 + ], + [ + "hol", + -13.400592803955078 + ], + [ + "▁Falling", + -13.400625228881836 + ], + [ + "▁Comparing", + -13.400630950927734 + ], + [ + "▁Pearce", + -13.40070629119873 + ], + [ + "atur", + -13.400735855102539 + ], + [ + "▁patriotism", + -13.400760650634766 + ], + [ + "▁backlinks", + -13.400779724121094 + ], + [ + "▁Freak", + -13.400866508483887 + ], + [ + "▁tinted", + -13.400973320007324 + ], + [ + "▁motorist", + -13.401018142700195 + ], + [ + "В", + -13.40118408203125 + ], + [ + "▁inducing", + -13.401195526123047 + ], + [ + "titled", + -13.401198387145996 + ], + [ + "▁luscious", + -13.40129566192627 + ], + [ + "▁tragedies", + -13.401338577270508 + ], + [ + "▁Bands", + -13.401451110839844 + ], + [ + "▁revoke", + -13.40153694152832 + ], + [ + "▁228", + -13.40160846710205 + ], + [ + "cooked", + -13.401651382446289 + ], + [ + "▁А", + -13.401698112487793 + ], + [ + "mé", + -13.401710510253906 + ], + [ + "ushi", + -13.401765823364258 + ], + [ + "▁Weddings", + -13.401888847351074 + ], + [ + "▁Goodwin", + -13.401994705200195 + ], + [ + "CAN", + -13.402002334594727 + ], + [ + "▁Chemicals", + -13.402007102966309 + ], + [ + "CAS", + -13.402009963989258 + ], + [ + "sei", + -13.402018547058105 + ], + [ + "Create", + -13.40208911895752 + ], + [ + "▁Cummings", + -13.402097702026367 + ], + [ + "ships", + -13.402175903320312 + ], + [ + "▁Wharf", + -13.402204513549805 + ], + [ + "▁kiddos", + -13.402297973632812 + ], + [ + "▁ox", + -13.40230655670166 + ], + [ + "▁excite", + -13.402362823486328 + ], + [ + "▁dogma", + -13.402369499206543 + ], + [ + "▁Ain", + -13.402400016784668 + ], + [ + "▁blot", + -13.40243148803711 + ], + [ + "▁batters", + -13.402460098266602 + ], + [ + "▁negatives", + -13.402461051940918 + ], + [ + "truck", + -13.402532577514648 + ], + [ + "▁Ple", + -13.402543067932129 + ], + [ + "▁Shapiro", + -13.402555465698242 + ], + [ + "Chat", + -13.402715682983398 + ], + [ + "▁Caps", + -13.402756690979004 + ], + [ + "▁Harden", + -13.402764320373535 + ], + [ + "▁interoperability", + -13.402801513671875 + ], + [ + "▁funnels", + -13.402817726135254 + ], + [ + "▁eateries", + -13.40281867980957 + ], + [ + "▁collided", + -13.402902603149414 + ], + [ + "▁Breed", + -13.402926445007324 + ], + [ + "▁mayo", + -13.402955055236816 + ], + [ + "▁Muk", + -13.402973175048828 + ], + [ + "Pen", + -13.4030122756958 + ], + [ + "▁priesthood", + -13.403190612792969 + ], + [ + "▁stricter", + -13.403267860412598 + ], + [ + "▁Dealers", + -13.40339469909668 + ], + [ + "▁Fremont", + -13.403399467468262 + ], + [ + "▁alcoholism", + -13.403400421142578 + ], + [ + "edi", + -13.403435707092285 + ], + [ + "▁Trafford", + -13.403520584106445 + ], + [ + "▁rallying", + -13.403584480285645 + ], + [ + "▁hugging", + -13.403608322143555 + ], + [ + "▁chipset", + -13.403632164001465 + ], + [ + "▁BN", + -13.403724670410156 + ], + [ + "▁aus", + -13.40385627746582 + ], + [ + "▁DOC", + -13.40393352508545 + ], + [ + "quet", + -13.403966903686523 + ], + [ + "tak", + -13.404029846191406 + ], + [ + "▁flatter", + -13.404038429260254 + ], + [ + "CK", + -13.404046058654785 + ], + [ + "▁Pfizer", + -13.404138565063477 + ], + [ + "▁preferring", + -13.404192924499512 + ], + [ + "picked", + -13.404207229614258 + ], + [ + "▁179", + -13.404237747192383 + ], + [ + "▁Allies", + -13.40424919128418 + ], + [ + "military", + -13.404255867004395 + ], + [ + "▁abducted", + -13.404316902160645 + ], + [ + "punk", + -13.40437126159668 + ], + [ + "▁espionage", + -13.40444278717041 + ], + [ + "▁pigments", + -13.404454231262207 + ], + [ + "▁Rope", + -13.404476165771484 + ], + [ + "▁configuring", + -13.404563903808594 + ], + [ + "▁PIC", + -13.404606819152832 + ], + [ + "▁gifting", + -13.404683113098145 + ], + [ + "▁conceivable", + -13.404701232910156 + ], + [ + "▁уо", + -13.40475082397461 + ], + [ + "nny", + -13.404767036437988 + ], + [ + "wel", + -13.404770851135254 + ], + [ + "▁Patti", + -13.404783248901367 + ], + [ + "▁Inclusion", + -13.404863357543945 + ], + [ + "▁sped", + -13.404906272888184 + ], + [ + "▁Ernie", + -13.40497875213623 + ], + [ + "▁mitigating", + -13.405025482177734 + ], + [ + "▁Broward", + -13.405211448669434 + ], + [ + "session", + -13.40522289276123 + ], + [ + "▁Presently", + -13.405247688293457 + ], + [ + "▁540", + -13.40524959564209 + ], + [ + "▁endings", + -13.40528678894043 + ], + [ + "iw", + -13.40533447265625 + ], + [ + "▁Ferris", + -13.405465126037598 + ], + [ + "▁condensation", + -13.405475616455078 + ], + [ + "▁Attendees", + -13.405515670776367 + ], + [ + "▁VO", + -13.405527114868164 + ], + [ + "▁WELL", + -13.40555477142334 + ], + [ + "▁slicing", + -13.405569076538086 + ], + [ + "▁WARRANTIES", + -13.405611038208008 + ], + [ + "▁Turk", + -13.405653953552246 + ], + [ + "Canadian", + -13.405694007873535 + ], + [ + "▁dismantle", + -13.405740737915039 + ], + [ + "▁Supports", + -13.405774116516113 + ], + [ + "▁biologist", + -13.405774116516113 + ], + [ + "▁BEEN", + -13.405781745910645 + ], + [ + "▁gazing", + -13.405828475952148 + ], + [ + "▁loader", + -13.405878067016602 + ], + [ + "▁renaissance", + -13.405881881713867 + ], + [ + "▁Sirius", + -13.405889511108398 + ], + [ + "▁hampered", + -13.40589427947998 + ], + [ + "▁Poole", + -13.405896186828613 + ], + [ + "▁diver", + -13.405924797058105 + ], + [ + "▁illusions", + -13.405945777893066 + ], + [ + "uber", + -13.405956268310547 + ], + [ + "▁Belgrade", + -13.405961036682129 + ], + [ + "▁Ally", + -13.405994415283203 + ], + [ + "▁reindeer", + -13.406003952026367 + ], + [ + "▁WikiLeaks", + -13.406062126159668 + ], + [ + "▁Gong", + -13.406065940856934 + ], + [ + "▁Adviser", + -13.40610122680664 + ], + [ + "▁Duct", + -13.406213760375977 + ], + [ + "▁Commentary", + -13.406242370605469 + ], + [ + "▁disperse", + -13.406359672546387 + ], + [ + "▁Stirling", + -13.40636920928955 + ], + [ + "▁rundown", + -13.406410217285156 + ], + [ + "▁golfing", + -13.406424522399902 + ], + [ + "▁credential", + -13.406526565551758 + ], + [ + "▁Structures", + -13.40652847290039 + ], + [ + "▁Recorded", + -13.40653133392334 + ], + [ + "▁introductions", + -13.406564712524414 + ], + [ + "▁Poli", + -13.406679153442383 + ], + [ + "▁Cutter", + -13.406700134277344 + ], + [ + "▁Vs", + -13.406712532043457 + ], + [ + "▁Offshore", + -13.406722068786621 + ], + [ + "▁Petra", + -13.406800270080566 + ], + [ + "▁persecuted", + -13.406861305236816 + ], + [ + "▁meatballs", + -13.406867980957031 + ], + [ + "oria", + -13.406940460205078 + ], + [ + "bright", + -13.40709400177002 + ], + [ + "▁≥", + -13.407098770141602 + ], + [ + "▁bookkeeping", + -13.407145500183105 + ], + [ + "▁FCA", + -13.407198905944824 + ], + [ + "▁PTI", + -13.407203674316406 + ], + [ + "▁moose", + -13.407233238220215 + ], + [ + "▁paypal", + -13.407249450683594 + ], + [ + "▁inversion", + -13.407267570495605 + ], + [ + "▁PN", + -13.4072847366333 + ], + [ + "▁probing", + -13.40728759765625 + ], + [ + "program", + -13.407370567321777 + ], + [ + "▁Reunion", + -13.407380104064941 + ], + [ + "▁Examine", + -13.407394409179688 + ], + [ + "planned", + -13.40740966796875 + ], + [ + "▁licences", + -13.407418251037598 + ], + [ + "▁troubleshoot", + -13.407443046569824 + ], + [ + "▁sparkly", + -13.407454490661621 + ], + [ + "▁reasoned", + -13.407505989074707 + ], + [ + "▁dart", + -13.407543182373047 + ], + [ + "▁canonical", + -13.407560348510742 + ], + [ + "Item", + -13.407569885253906 + ], + [ + "▁curd", + -13.407623291015625 + ], + [ + "▁SMA", + -13.407634735107422 + ], + [ + "tung", + -13.407661437988281 + ], + [ + "660", + -13.4077787399292 + ], + [ + "▁Pictured", + -13.407795906066895 + ], + [ + "▁cer", + -13.407843589782715 + ], + [ + "▁honed", + -13.407890319824219 + ], + [ + "과", + -13.408023834228516 + ], + [ + "▁Conservatory", + -13.408059120178223 + ], + [ + "▁GOLD", + -13.408061027526855 + ], + [ + "▁assigns", + -13.408065795898438 + ], + [ + "Mom", + -13.408084869384766 + ], + [ + "▁Aquatic", + -13.408085823059082 + ], + [ + "▁fillings", + -13.408120155334473 + ], + [ + "▁exploratory", + -13.4081449508667 + ], + [ + "▁Maori", + -13.408159255981445 + ], + [ + "▁groin", + -13.408185005187988 + ], + [ + "▁Ellison", + -13.408205032348633 + ], + [ + "▁Talks", + -13.408220291137695 + ], + [ + "▁CPC", + -13.40839958190918 + ], + [ + "▁Severe", + -13.40844440460205 + ], + [ + "▁KG", + -13.408498764038086 + ], + [ + "▁Laurence", + -13.408552169799805 + ], + [ + "▁184", + -13.40855598449707 + ], + [ + "▁GCSE", + -13.408658027648926 + ], + [ + "▁clumsy", + -13.408674240112305 + ], + [ + "▁Newly", + -13.408679008483887 + ], + [ + "▁prohibiting", + -13.408717155456543 + ], + [ + "▁aching", + -13.40872859954834 + ], + [ + "iwa", + -13.408736228942871 + ], + [ + "610", + -13.408791542053223 + ], + [ + "switch", + -13.408807754516602 + ], + [ + "seeking", + -13.408818244934082 + ], + [ + "▁Normandy", + -13.40882396697998 + ], + [ + "▁Fundamentals", + -13.408939361572266 + ], + [ + "rri", + -13.40894603729248 + ], + [ + "Guard", + -13.408977508544922 + ], + [ + "▁intervening", + -13.408982276916504 + ], + [ + "▁biodegradable", + -13.409018516540527 + ], + [ + "Wire", + -13.40903377532959 + ], + [ + "▁PW", + -13.409120559692383 + ], + [ + "▁Whistler", + -13.409125328063965 + ], + [ + "▁lacrosse", + -13.409337043762207 + ], + [ + "▁slashed", + -13.409399032592773 + ], + [ + "▁roundup", + -13.4094877243042 + ], + [ + "▁breaths", + -13.409489631652832 + ], + [ + "▁Anand", + -13.4095458984375 + ], + [ + "▁Graduation", + -13.40958023071289 + ], + [ + "▁expulsion", + -13.409629821777344 + ], + [ + "▁Angola", + -13.409804344177246 + ], + [ + "pretty", + -13.409812927246094 + ], + [ + "▁Modified", + -13.409852027893066 + ], + [ + "▁NAME", + -13.409940719604492 + ], + [ + "▁lanterns", + -13.409943580627441 + ], + [ + "▁imbalances", + -13.40999698638916 + ], + [ + "▁endothelial", + -13.410079956054688 + ], + [ + "▁Tired", + -13.410138130187988 + ], + [ + "▁spilling", + -13.41014289855957 + ], + [ + "▁Annapolis", + -13.41019344329834 + ], + [ + "▁precedence", + -13.410323143005371 + ], + [ + "▁sidelined", + -13.41037654876709 + ], + [ + "▁VER", + -13.410383224487305 + ], + [ + "lou", + -13.410449981689453 + ], + [ + "▁chakra", + -13.41045093536377 + ], + [ + "▁uniformly", + -13.41048812866211 + ], + [ + "▁appropriation", + -13.410493850708008 + ], + [ + "▁BCE", + -13.41053581237793 + ], + [ + "▁Zika", + -13.410536766052246 + ], + [ + "855", + -13.410560607910156 + ], + [ + "▁CAL", + -13.410560607910156 + ], + [ + "▁Baking", + -13.410569190979004 + ], + [ + "▁ISS", + -13.410603523254395 + ], + [ + "▁Aerial", + -13.410663604736328 + ], + [ + "▁rye", + -13.410687446594238 + ], + [ + "▁tweaked", + -13.410730361938477 + ], + [ + "cb", + -13.410746574401855 + ], + [ + "▁elves", + -13.410749435424805 + ], + [ + "Small", + -13.410775184631348 + ], + [ + "▁fueling", + -13.410922050476074 + ], + [ + "▁devotional", + -13.410999298095703 + ], + [ + "▁patronage", + -13.4110107421875 + ], + [ + "popular", + -13.411026954650879 + ], + [ + "▁unquestionably", + -13.411088943481445 + ], + [ + "▁Orient", + -13.411128044128418 + ], + [ + "▁UA", + -13.411200523376465 + ], + [ + "▁enclosures", + -13.411253929138184 + ], + [ + "▁marginally", + -13.411258697509766 + ], + [ + "Par", + -13.41126823425293 + ], + [ + "▁Meh", + -13.411324501037598 + ], + [ + "▁Watford", + -13.411355972290039 + ], + [ + "▁critiques", + -13.411500930786133 + ], + [ + "▁nurtured", + -13.411540985107422 + ], + [ + "▁condemning", + -13.411617279052734 + ], + [ + "▁clipped", + -13.411633491516113 + ], + [ + "unda", + -13.411639213562012 + ], + [ + "▁Municipality", + -13.411661148071289 + ], + [ + "▁transitioned", + -13.411788940429688 + ], + [ + "▁Trademark", + -13.4118013381958 + ], + [ + "▁Hemisphere", + -13.411844253540039 + ], + [ + "▁impromptu", + -13.41188907623291 + ], + [ + "▁skewed", + -13.411980628967285 + ], + [ + "▁savor", + -13.41203784942627 + ], + [ + "▁gasket", + -13.412038803100586 + ], + [ + "▁trolling", + -13.412064552307129 + ], + [ + "▁Kudos", + -13.41214370727539 + ], + [ + "▁hawk", + -13.41214370727539 + ], + [ + "route", + -13.41214656829834 + ], + [ + "Sp", + -13.412158966064453 + ], + [ + "▁LDS", + -13.41217041015625 + ], + [ + "▁nach", + -13.412186622619629 + ], + [ + "▁FIRE", + -13.41221809387207 + ], + [ + "eaux", + -13.412262916564941 + ], + [ + "▁MINI", + -13.412428855895996 + ], + [ + "▁reconstructed", + -13.412434577941895 + ], + [ + "▁223", + -13.41246223449707 + ], + [ + "tana", + -13.412467002868652 + ], + [ + "dou", + -13.41260814666748 + ], + [ + "▁Addressing", + -13.412638664245605 + ], + [ + "Cu", + -13.412652969360352 + ], + [ + "Japan", + -13.412758827209473 + ], + [ + "▁Hunters", + -13.412859916687012 + ], + [ + "▁Neutral", + -13.412928581237793 + ], + [ + "▁reggae", + -13.412936210632324 + ], + [ + "640", + -13.41305160522461 + ], + [ + "▁reptiles", + -13.413106918334961 + ], + [ + "▁Shed", + -13.413168907165527 + ], + [ + "▁Operational", + -13.413326263427734 + ], + [ + "profits", + -13.413331985473633 + ], + [ + "assa", + -13.41335678100586 + ], + [ + "▁signaled", + -13.413422584533691 + ], + [ + "Books", + -13.413427352905273 + ], + [ + "▁Rus", + -13.413514137268066 + ], + [ + "▁fortnight", + -13.413565635681152 + ], + [ + "erton", + -13.413640975952148 + ], + [ + "▁Doe", + -13.413663864135742 + ], + [ + "▁Hostel", + -13.413677215576172 + ], + [ + "ר", + -13.41368293762207 + ], + [ + "coded", + -13.413778305053711 + ], + [ + "▁gauges", + -13.41378402709961 + ], + [ + "▁calibrated", + -13.413788795471191 + ], + [ + "▁Colombo", + -13.413819313049316 + ], + [ + "▁deteriorated", + -13.413871765136719 + ], + [ + "▁Cosmetics", + -13.413968086242676 + ], + [ + "▁diaphragm", + -13.413999557495117 + ], + [ + "▁Bam", + -13.414066314697266 + ], + [ + "▁untrue", + -13.414341926574707 + ], + [ + "▁rover", + -13.414348602294922 + ], + [ + "▁abiding", + -13.414407730102539 + ], + [ + "▁trunks", + -13.414422035217285 + ], + [ + "▁automaker", + -13.414433479309082 + ], + [ + "▁buttery", + -13.414446830749512 + ], + [ + "▁Celebrating", + -13.41446590423584 + ], + [ + "▁binoculars", + -13.41450309753418 + ], + [ + "▁topper", + -13.414556503295898 + ], + [ + "▁subs", + -13.414572715759277 + ], + [ + "▁Cong", + -13.414579391479492 + ], + [ + "▁legalized", + -13.414639472961426 + ], + [ + "▁brood", + -13.414654731750488 + ], + [ + "dong", + -13.414684295654297 + ], + [ + "▁777", + -13.414772033691406 + ], + [ + "▁Shrine", + -13.414777755737305 + ], + [ + "▁prima", + -13.415060043334961 + ], + [ + "approximately", + -13.415096282958984 + ], + [ + "▁Lesbian", + -13.415105819702148 + ], + [ + "▁Waterproof", + -13.415122985839844 + ], + [ + "▁Muir", + -13.41519546508789 + ], + [ + "bas", + -13.415205001831055 + ], + [ + "balance", + -13.415287971496582 + ], + [ + "▁bistro", + -13.415291786193848 + ], + [ + "▁cures", + -13.41539192199707 + ], + [ + "▁WTF", + -13.415401458740234 + ], + [ + "▁Launched", + -13.415430068969727 + ], + [ + "▁Enlightenment", + -13.41545581817627 + ], + [ + "▁scripted", + -13.415457725524902 + ], + [ + "▁Zee", + -13.415496826171875 + ], + [ + "▁handlers", + -13.415586471557617 + ], + [ + "▁CHE", + -13.415732383728027 + ], + [ + "Too", + -13.415815353393555 + ], + [ + "▁NOAA", + -13.415841102600098 + ], + [ + "▁unsuspecting", + -13.415872573852539 + ], + [ + "▁ashore", + -13.415946960449219 + ], + [ + "▁Bazaar", + -13.415966033935547 + ], + [ + "▁Patton", + -13.415968894958496 + ], + [ + "▁exacerbated", + -13.416011810302734 + ], + [ + "▁308", + -13.416057586669922 + ], + [ + "▁Yorkers", + -13.416088104248047 + ], + [ + "▁kiln", + -13.41612720489502 + ], + [ + "wed", + -13.41614055633545 + ], + [ + "▁pancreas", + -13.416189193725586 + ], + [ + "sted", + -13.416206359863281 + ], + [ + "▁rightfully", + -13.416229248046875 + ], + [ + "▁migraines", + -13.416250228881836 + ], + [ + "▁stopper", + -13.416271209716797 + ], + [ + "▁sermons", + -13.416295051574707 + ], + [ + "▁Folding", + -13.416315078735352 + ], + [ + "registration", + -13.416359901428223 + ], + [ + "▁chargers", + -13.416407585144043 + ], + [ + "▁TOO", + -13.416434288024902 + ], + [ + "620", + -13.416461944580078 + ], + [ + "▁Substance", + -13.416462898254395 + ], + [ + "▁Lew", + -13.41646671295166 + ], + [ + "▁weathered", + -13.416486740112305 + ], + [ + "▁heals", + -13.416576385498047 + ], + [ + "Research", + -13.416593551635742 + ], + [ + "▁Riyadh", + -13.416629791259766 + ], + [ + "▁camaraderie", + -13.416784286499023 + ], + [ + "▁blasts", + -13.416790962219238 + ], + [ + "▁Neon", + -13.416818618774414 + ], + [ + "▁dorsal", + -13.416926383972168 + ], + [ + "▁Gotham", + -13.416939735412598 + ], + [ + "▁Guided", + -13.416975021362305 + ], + [ + "▁cy", + -13.417075157165527 + ], + [ + "terminal", + -13.417092323303223 + ], + [ + "▁revolve", + -13.41710376739502 + ], + [ + "▁actuality", + -13.417110443115234 + ], + [ + "▁fertilizers", + -13.417160034179688 + ], + [ + "▁flattened", + -13.417171478271484 + ], + [ + "▁marches", + -13.417176246643066 + ], + [ + "▁DevOps", + -13.417182922363281 + ], + [ + "▁assassin", + -13.41720962524414 + ], + [ + "▁lug", + -13.417218208312988 + ], + [ + "scoring", + -13.41723918914795 + ], + [ + "▁unmanned", + -13.4173002243042 + ], + [ + "yana", + -13.417311668395996 + ], + [ + "Author", + -13.417341232299805 + ], + [ + "▁Examiner", + -13.417384147644043 + ], + [ + "▁awfully", + -13.417425155639648 + ], + [ + "Magic", + -13.41744327545166 + ], + [ + "outdoor", + -13.41749382019043 + ], + [ + "▁Waterfront", + -13.417519569396973 + ], + [ + "▁Reggie", + -13.417637825012207 + ], + [ + "▁borderline", + -13.417688369750977 + ], + [ + "▁Voyager", + -13.417766571044922 + ], + [ + "ulated", + -13.417896270751953 + ], + [ + "▁Saxon", + -13.418004035949707 + ], + [ + "▁Blocks", + -13.418024063110352 + ], + [ + "▁rejuvenate", + -13.418025016784668 + ], + [ + "▁Lockheed", + -13.418067932128906 + ], + [ + "▁paranoia", + -13.418082237243652 + ], + [ + "▁conferencing", + -13.418174743652344 + ], + [ + "▁freezes", + -13.41821002960205 + ], + [ + "▁cleavage", + -13.418216705322266 + ], + [ + "▁abduction", + -13.418275833129883 + ], + [ + "cht", + -13.4182767868042 + ], + [ + "▁Achieve", + -13.418333053588867 + ], + [ + "period", + -13.418334007263184 + ], + [ + "▁PDA", + -13.418375968933105 + ], + [ + "▁Advancement", + -13.418542861938477 + ], + [ + "▁squander", + -13.418573379516602 + ], + [ + "▁outperform", + -13.418652534484863 + ], + [ + "▁Mermaid", + -13.418830871582031 + ], + [ + "▁grime", + -13.418896675109863 + ], + [ + "▁Peyton", + -13.418899536132812 + ], + [ + "bush", + -13.418992042541504 + ], + [ + "iam", + -13.419014930725098 + ], + [ + "▁afternoons", + -13.41903018951416 + ], + [ + "405", + -13.419051170349121 + ], + [ + "▁Gua", + -13.419083595275879 + ], + [ + "▁Linked", + -13.419133186340332 + ], + [ + "▁Fir", + -13.419243812561035 + ], + [ + "studio", + -13.419281005859375 + ], + [ + "▁Bartlett", + -13.41929817199707 + ], + [ + "▁Organizational", + -13.419302940368652 + ], + [ + "▁SHARE", + -13.419306755065918 + ], + [ + "▁webcast", + -13.419380187988281 + ], + [ + "▁apartheid", + -13.41938304901123 + ], + [ + "▁COO", + -13.419448852539062 + ], + [ + "liberal", + -13.419526100158691 + ], + [ + "▁tenancy", + -13.419573783874512 + ], + [ + "▁Impossible", + -13.419622421264648 + ], + [ + "▁intermediary", + -13.419717788696289 + ], + [ + "▁mastermind", + -13.419832229614258 + ], + [ + "▁duke", + -13.419836044311523 + ], + [ + "▁eyesight", + -13.419838905334473 + ], + [ + "238", + -13.419946670532227 + ], + [ + "▁yahoo", + -13.419968605041504 + ], + [ + "CBC", + -13.420013427734375 + ], + [ + "▁CLI", + -13.420013427734375 + ], + [ + "Fo", + -13.4201078414917 + ], + [ + "▁Inland", + -13.420169830322266 + ], + [ + "▁cloves", + -13.420202255249023 + ], + [ + "▁Gloss", + -13.420248985290527 + ], + [ + "▁Revision", + -13.420260429382324 + ], + [ + "▁livelihoods", + -13.420269966125488 + ], + [ + "▁Conte", + -13.420275688171387 + ], + [ + "▁Monastery", + -13.420289039611816 + ], + [ + "▁ethically", + -13.42042064666748 + ], + [ + "▁Villas", + -13.420445442199707 + ], + [ + "▁Floating", + -13.420466423034668 + ], + [ + "▁viz", + -13.4204740524292 + ], + [ + "▁Alonso", + -13.420506477355957 + ], + [ + "▁granola", + -13.42052936553955 + ], + [ + "launch", + -13.420537948608398 + ], + [ + "▁Xperia", + -13.420540809631348 + ], + [ + "▁bouts", + -13.420636177062988 + ], + [ + "▁disgrace", + -13.420681953430176 + ], + [ + "▁Sud", + -13.420693397521973 + ], + [ + "bbing", + -13.420792579650879 + ], + [ + "▁Pc", + -13.420794486999512 + ], + [ + "▁Oculus", + -13.420876502990723 + ], + [ + "▁Reduced", + -13.4209566116333 + ], + [ + "▁Eliot", + -13.421085357666016 + ], + [ + "部", + -13.421157836914062 + ], + [ + "▁crammed", + -13.42119312286377 + ], + [ + "▁postpartum", + -13.421212196350098 + ], + [ + "▁Cakes", + -13.421252250671387 + ], + [ + "▁nie", + -13.421304702758789 + ], + [ + "770", + -13.421334266662598 + ], + [ + "▁tanker", + -13.421395301818848 + ], + [ + "▁Kum", + -13.421411514282227 + ], + [ + "▁Cairns", + -13.421416282653809 + ], + [ + "lette", + -13.421441078186035 + ], + [ + "▁intracellular", + -13.421523094177246 + ], + [ + "▁lauded", + -13.421524047851562 + ], + [ + "▁concerted", + -13.421568870544434 + ], + [ + "▁segregated", + -13.421609878540039 + ], + [ + "▁Aleppo", + -13.421637535095215 + ], + [ + "0001", + -13.421650886535645 + ], + [ + "▁Zuma", + -13.42165756225586 + ], + [ + "cation", + -13.421696662902832 + ], + [ + "▁caretaker", + -13.421707153320312 + ], + [ + "▁Establishment", + -13.421741485595703 + ], + [ + "▁barge", + -13.421823501586914 + ], + [ + "pink", + -13.421948432922363 + ], + [ + "▁blitz", + -13.421956062316895 + ], + [ + "▁Magna", + -13.421981811523438 + ], + [ + "▁Amherst", + -13.422017097473145 + ], + [ + "▁confiscated", + -13.422035217285156 + ], + [ + "▁Terrorism", + -13.422036170959473 + ], + [ + "▁caching", + -13.422037124633789 + ], + [ + "▁ul", + -13.422037124633789 + ], + [ + "▁agreeable", + -13.422072410583496 + ], + [ + "▁opposes", + -13.422083854675293 + ], + [ + "▁fraught", + -13.422093391418457 + ], + [ + "fashion", + -13.422106742858887 + ], + [ + "▁Reservations", + -13.422128677368164 + ], + [ + "▁orthodox", + -13.422198295593262 + ], + [ + "fledged", + -13.422223091125488 + ], + [ + "▁Dirk", + -13.422252655029297 + ], + [ + "▁immaculate", + -13.422261238098145 + ], + [ + "ifer", + -13.422325134277344 + ], + [ + "▁collars", + -13.422431945800781 + ], + [ + "▁embargo", + -13.422443389892578 + ], + [ + "▁Klaus", + -13.422481536865234 + ], + [ + "▁221", + -13.422530174255371 + ], + [ + "df", + -13.422612190246582 + ], + [ + "▁Enhance", + -13.422636032104492 + ], + [ + "▁Substitution", + -13.422688484191895 + ], + [ + "▁colossal", + -13.422691345214844 + ], + [ + "▁conditioners", + -13.422719955444336 + ], + [ + "During", + -13.422733306884766 + ], + [ + "▁drumming", + -13.422736167907715 + ], + [ + "▁DRM", + -13.422771453857422 + ], + [ + "▁CFL", + -13.422795295715332 + ], + [ + "▁Babe", + -13.422948837280273 + ], + [ + "▁Sweat", + -13.423067092895508 + ], + [ + "watering", + -13.423069953918457 + ], + [ + "▁Indigo", + -13.423072814941406 + ], + [ + "▁Jaya", + -13.423080444335938 + ], + [ + "▁unfavorable", + -13.42310619354248 + ], + [ + "▁semantics", + -13.423123359680176 + ], + [ + "▁Bora", + -13.423133850097656 + ], + [ + "lling", + -13.42321491241455 + ], + [ + "▁Filters", + -13.423283576965332 + ], + [ + "▁intercept", + -13.423287391662598 + ], + [ + "▁Covering", + -13.423483848571777 + ], + [ + "Size", + -13.423490524291992 + ], + [ + "tun", + -13.423541069030762 + ], + [ + "▁YEARS", + -13.423572540283203 + ], + [ + "▁Lid", + -13.423675537109375 + ], + [ + "▁Changed", + -13.423686027526855 + ], + [ + "▁fetish", + -13.423715591430664 + ], + [ + "▁188", + -13.42371940612793 + ], + [ + "quist", + -13.423766136169434 + ], + [ + "▁Weed", + -13.423778533935547 + ], + [ + "dump", + -13.423802375793457 + ], + [ + "▁Illustration", + -13.423805236816406 + ], + [ + "mining", + -13.423851013183594 + ], + [ + "▁Garfield", + -13.423853874206543 + ], + [ + "▁Jos", + -13.423879623413086 + ], + [ + "ção", + -13.423927307128906 + ], + [ + "weekly", + -13.42395305633545 + ], + [ + "▁evasion", + -13.423986434936523 + ], + [ + "▁apocalypse", + -13.423991203308105 + ], + [ + "▁racially", + -13.42400074005127 + ], + [ + "▁Cul", + -13.424031257629395 + ], + [ + "▁psoriasis", + -13.424065589904785 + ], + [ + "hui", + -13.424087524414062 + ], + [ + "cis", + -13.42413330078125 + ], + [ + "▁Alyssa", + -13.4241361618042 + ], + [ + "div", + -13.424230575561523 + ], + [ + "▁RFC", + -13.424410820007324 + ], + [ + "▁Williamsburg", + -13.424504280090332 + ], + [ + "▁PRICE", + -13.424565315246582 + ], + [ + "▁Mastercard", + -13.424574851989746 + ], + [ + "▁Preschool", + -13.424614906311035 + ], + [ + "birds", + -13.424654006958008 + ], + [ + "▁solicitors", + -13.424785614013672 + ], + [ + "▁Darcy", + -13.42479419708252 + ], + [ + "nch", + -13.42480754852295 + ], + [ + "kitchen", + -13.424870491027832 + ], + [ + "tape", + -13.424914360046387 + ], + [ + "▁PMI", + -13.424942970275879 + ], + [ + "▁Nero", + -13.424978256225586 + ], + [ + "cloth", + -13.425016403198242 + ], + [ + "▁equine", + -13.425054550170898 + ], + [ + "ić", + -13.42507553100586 + ], + [ + "▁SLA", + -13.42519760131836 + ], + [ + "▁surfers", + -13.425226211547852 + ], + [ + "tero", + -13.425239562988281 + ], + [ + "▁Ariana", + -13.4253511428833 + ], + [ + "▁bigotry", + -13.425357818603516 + ], + [ + "types", + -13.425366401672363 + ], + [ + "▁Blogs", + -13.425386428833008 + ], + [ + "▁awoke", + -13.425413131713867 + ], + [ + "▁Humboldt", + -13.425454139709473 + ], + [ + "▁Kona", + -13.425517082214355 + ], + [ + "▁barring", + -13.425565719604492 + ], + [ + "▁antitrust", + -13.425636291503906 + ], + [ + "epi", + -13.425639152526855 + ], + [ + "▁reseller", + -13.425677299499512 + ], + [ + "▁rebirth", + -13.425712585449219 + ], + [ + "▁ORDER", + -13.425745010375977 + ], + [ + "GW", + -13.425806999206543 + ], + [ + "▁hostess", + -13.425820350646973 + ], + [ + "▁noses", + -13.425826072692871 + ], + [ + "▁DEA", + -13.42584228515625 + ], + [ + "▁Navajo", + -13.425918579101562 + ], + [ + "▁Whitman", + -13.42592716217041 + ], + [ + "▁Specifications", + -13.425932884216309 + ], + [ + "▁infiltration", + -13.425947189331055 + ], + [ + "onym", + -13.425975799560547 + ], + [ + "▁Cabo", + -13.426037788391113 + ], + [ + "▁wy", + -13.426088333129883 + ], + [ + "▁Producers", + -13.426186561584473 + ], + [ + "▁twilight", + -13.426216125488281 + ], + [ + "▁Vil", + -13.426226615905762 + ], + [ + "▁RU", + -13.426377296447754 + ], + [ + "blogspot", + -13.426593780517578 + ], + [ + "▁Brits", + -13.426596641540527 + ], + [ + "▁nun", + -13.426619529724121 + ], + [ + "▁overseen", + -13.426639556884766 + ], + [ + "▁afloat", + -13.426704406738281 + ], + [ + "▁SATA", + -13.426708221435547 + ], + [ + "▁Ec", + -13.426849365234375 + ], + [ + "aspx", + -13.42686939239502 + ], + [ + "▁herpes", + -13.426875114440918 + ], + [ + "276", + -13.426892280578613 + ], + [ + "시", + -13.42696762084961 + ], + [ + "▁Aggregate", + -13.426987648010254 + ], + [ + "pilot", + -13.427007675170898 + ], + [ + "▁Sigh", + -13.427030563354492 + ], + [ + "▁Francois", + -13.42705249786377 + ], + [ + "▁Balls", + -13.427063941955566 + ], + [ + "▁Spartans", + -13.427074432373047 + ], + [ + "▁DMV", + -13.42710018157959 + ], + [ + "▁undead", + -13.427154541015625 + ], + [ + "▁е", + -13.427181243896484 + ], + [ + "▁Delay", + -13.427191734313965 + ], + [ + "▁189", + -13.427201271057129 + ], + [ + "▁mobilize", + -13.427238464355469 + ], + [ + "▁lobbyists", + -13.427282333374023 + ], + [ + "▁recoil", + -13.427316665649414 + ], + [ + "▁Magnus", + -13.427329063415527 + ], + [ + "▁HIM", + -13.427349090576172 + ], + [ + "▁COME", + -13.427356719970703 + ], + [ + "▁Deliver", + -13.427379608154297 + ], + [ + "▁tailoring", + -13.42741584777832 + ], + [ + "▁detriment", + -13.427629470825195 + ], + [ + "oun", + -13.427682876586914 + ], + [ + "▁Southwestern", + -13.42775821685791 + ], + [ + "▁vases", + -13.42783260345459 + ], + [ + "▁1887", + -13.427937507629395 + ], + [ + "▁fundraisers", + -13.427972793579102 + ], + [ + "▁ste", + -13.427985191345215 + ], + [ + "▁cobalt", + -13.428000450134277 + ], + [ + "▁workbook", + -13.428035736083984 + ], + [ + "▁Canary", + -13.428085327148438 + ], + [ + "▁kilograms", + -13.42811107635498 + ], + [ + "▁attendants", + -13.428211212158203 + ], + [ + "▁boasted", + -13.428261756896973 + ], + [ + "▁distinguishes", + -13.428277015686035 + ], + [ + "▁Bellevue", + -13.428287506103516 + ], + [ + "▁Documentary", + -13.428327560424805 + ], + [ + "kra", + -13.428329467773438 + ], + [ + "▁Widow", + -13.428329467773438 + ], + [ + "wai", + -13.428387641906738 + ], + [ + "▁squarely", + -13.428428649902344 + ], + [ + "▁226", + -13.428638458251953 + ], + [ + "ury", + -13.428656578063965 + ], + [ + "▁Completed", + -13.428735733032227 + ], + [ + "▁blinded", + -13.428751945495605 + ], + [ + "▁Bashar", + -13.428837776184082 + ], + [ + "EPA", + -13.428842544555664 + ], + [ + "▁stoves", + -13.428865432739258 + ], + [ + "▁WEST", + -13.428991317749023 + ], + [ + "aceae", + -13.429020881652832 + ], + [ + "WO", + -13.429072380065918 + ], + [ + "▁shortening", + -13.42909049987793 + ], + [ + "Fun", + -13.42910385131836 + ], + [ + "▁fondly", + -13.42911148071289 + ], + [ + "gain", + -13.429141998291016 + ], + [ + "brick", + -13.429149627685547 + ], + [ + "▁Jing", + -13.42922592163086 + ], + [ + "▁Cra", + -13.429253578186035 + ], + [ + "▁Desmond", + -13.429304122924805 + ], + [ + "reference", + -13.42933464050293 + ], + [ + "▁thinker", + -13.429437637329102 + ], + [ + "▁registrar", + -13.429473876953125 + ], + [ + "▁Petit", + -13.429482460021973 + ], + [ + "thon", + -13.429495811462402 + ], + [ + "▁Entries", + -13.429579734802246 + ], + [ + "▁crates", + -13.429591178894043 + ], + [ + "▁tortillas", + -13.4296236038208 + ], + [ + "▁footer", + -13.429672241210938 + ], + [ + "▁Ruben", + -13.429717063903809 + ], + [ + "▁unsustainable", + -13.429718971252441 + ], + [ + "▁Dura", + -13.429729461669922 + ], + [ + "▁syringe", + -13.429780960083008 + ], + [ + "▁forcibly", + -13.429794311523438 + ], + [ + "Access", + -13.429829597473145 + ], + [ + "dominated", + -13.429861068725586 + ], + [ + "▁Injection", + -13.429915428161621 + ], + [ + "▁LAST", + -13.429915428161621 + ], + [ + "▁Lat", + -13.429962158203125 + ], + [ + "▁doubted", + -13.429974555969238 + ], + [ + "▁relics", + -13.42998218536377 + ], + [ + "▁Apo", + -13.430008888244629 + ], + [ + "▁ONLINE", + -13.430070877075195 + ], + [ + "tight", + -13.430098533630371 + ], + [ + "▁Catalyst", + -13.430109977722168 + ], + [ + "▁fide", + -13.430153846740723 + ], + [ + "▁―", + -13.430275917053223 + ], + [ + "▁networked", + -13.430315971374512 + ], + [ + "▁Magi", + -13.430418014526367 + ], + [ + "▁cucumbers", + -13.430423736572266 + ], + [ + "▁AAP", + -13.430450439453125 + ], + [ + "overs", + -13.43046760559082 + ], + [ + "command", + -13.430496215820312 + ], + [ + "nuclear", + -13.430500984191895 + ], + [ + "▁disseminate", + -13.430512428283691 + ], + [ + "▁Russo", + -13.430597305297852 + ], + [ + "▁Mardi", + -13.430651664733887 + ], + [ + "▁Cl", + -13.430755615234375 + ], + [ + "enne", + -13.430874824523926 + ], + [ + "▁Viktor", + -13.43091106414795 + ], + [ + "▁Shrimp", + -13.43097972869873 + ], + [ + "▁abode", + -13.4310941696167 + ], + [ + "▁Harrington", + -13.431344985961914 + ], + [ + "Sure", + -13.431350708007812 + ], + [ + "▁superheroes", + -13.431367874145508 + ], + [ + "▁Rinse", + -13.431427001953125 + ], + [ + "▁fresher", + -13.431523323059082 + ], + [ + "▁observes", + -13.43156909942627 + ], + [ + "▁retreated", + -13.431578636169434 + ], + [ + "yen", + -13.431632995605469 + ], + [ + "▁wrinkle", + -13.431657791137695 + ], + [ + "236", + -13.431703567504883 + ], + [ + "▁Soda", + -13.431922912597656 + ], + [ + "▁Genome", + -13.431967735290527 + ], + [ + "▁EW", + -13.432040214538574 + ], + [ + "▁meddling", + -13.432120323181152 + ], + [ + "▁Gla", + -13.43212604522705 + ], + [ + "bold", + -13.432132720947266 + ], + [ + "415", + -13.432134628295898 + ], + [ + "ли", + -13.432168006896973 + ], + [ + "▁Moo", + -13.43224048614502 + ], + [ + "▁affords", + -13.432254791259766 + ], + [ + "▁Odds", + -13.432263374328613 + ], + [ + "▁Crimes", + -13.432299613952637 + ], + [ + "▁everytime", + -13.432716369628906 + ], + [ + "▁Botox", + -13.432720184326172 + ], + [ + "▁CCC", + -13.432731628417969 + ], + [ + "▁anatomical", + -13.432757377624512 + ], + [ + "▁Rahman", + -13.432787895202637 + ], + [ + "▁audited", + -13.43283748626709 + ], + [ + "▁Caring", + -13.432909965515137 + ], + [ + "software", + -13.432929992675781 + ], + [ + "Place", + -13.433014869689941 + ], + [ + "quite", + -13.433050155639648 + ], + [ + "▁mater", + -13.433093070983887 + ], + [ + "▁Twitch", + -13.433115005493164 + ], + [ + "▁Transformers", + -13.433155059814453 + ], + [ + "▁Hiro", + -13.433167457580566 + ], + [ + "▁underrated", + -13.433181762695312 + ], + [ + "Marie", + -13.433183670043945 + ], + [ + "▁Resurrection", + -13.433219909667969 + ], + [ + "strength", + -13.433347702026367 + ], + [ + "▁elevators", + -13.433370590209961 + ], + [ + "▁grandeur", + -13.433609008789062 + ], + [ + "▁Endowment", + -13.433673858642578 + ], + [ + "cott", + -13.433701515197754 + ], + [ + "▁Assassin", + -13.433706283569336 + ], + [ + "pore", + -13.433731079101562 + ], + [ + "mura", + -13.433753967285156 + ], + [ + "ules", + -13.433775901794434 + ], + [ + "icide", + -13.433785438537598 + ], + [ + "▁Downing", + -13.43381118774414 + ], + [ + "▁squared", + -13.433850288391113 + ], + [ + "▁plaques", + -13.433858871459961 + ], + [ + "Travel", + -13.43394947052002 + ], + [ + "▁Fortress", + -13.433972358703613 + ], + [ + "mak", + -13.434054374694824 + ], + [ + "▁motorized", + -13.434077262878418 + ], + [ + "▁Reservation", + -13.434126853942871 + ], + [ + "▁Raphael", + -13.43427562713623 + ], + [ + "automatic", + -13.434309005737305 + ], + [ + "▁sedation", + -13.434311866760254 + ], + [ + "▁mesmerizing", + -13.434328079223633 + ], + [ + "▁Jackpot", + -13.434382438659668 + ], + [ + "▁spat", + -13.434396743774414 + ], + [ + "▁repositories", + -13.4344482421875 + ], + [ + "▁Cola", + -13.43455982208252 + ], + [ + "▁solvents", + -13.434724807739258 + ], + [ + "▁eternally", + -13.434748649597168 + ], + [ + "▁pajamas", + -13.43480396270752 + ], + [ + "aris", + -13.43492317199707 + ], + [ + "events", + -13.434944152832031 + ], + [ + "▁Dems", + -13.43505859375 + ], + [ + "▁Judging", + -13.43514347076416 + ], + [ + "▁Trunk", + -13.435189247131348 + ], + [ + "▁Betting", + -13.435234069824219 + ], + [ + "▁Barron", + -13.435275077819824 + ], + [ + "tant", + -13.435306549072266 + ], + [ + "▁Deli", + -13.435317993164062 + ], + [ + "▁unattended", + -13.435418128967285 + ], + [ + "Op", + -13.4354248046875 + ], + [ + "▁trusty", + -13.435535430908203 + ], + [ + "▁yea", + -13.435540199279785 + ], + [ + "▁collectible", + -13.43557071685791 + ], + [ + "▁Shad", + -13.43558120727539 + ], + [ + "▁Shut", + -13.435582160949707 + ], + [ + "▁libertarian", + -13.435639381408691 + ], + [ + "▁Cassie", + -13.435667991638184 + ], + [ + "▁Therapist", + -13.435774803161621 + ], + [ + "▁grieve", + -13.435774803161621 + ], + [ + "alt", + -13.435791969299316 + ], + [ + "▁qualifier", + -13.435840606689453 + ], + [ + "▁logistic", + -13.435909271240234 + ], + [ + "cute", + -13.43598747253418 + ], + [ + "▁loom", + -13.43606185913086 + ], + [ + "▁FW", + -13.43614673614502 + ], + [ + "▁deceived", + -13.436161041259766 + ], + [ + "▁Ble", + -13.436161994934082 + ], + [ + "1981", + -13.43626880645752 + ], + [ + "▁NAB", + -13.436269760131836 + ], + [ + "▁crawled", + -13.436271667480469 + ], + [ + "▁Blackpool", + -13.436345100402832 + ], + [ + "SHA", + -13.43636703491211 + ], + [ + "020", + -13.43638801574707 + ], + [ + "▁Reel", + -13.436503410339355 + ], + [ + "▁Baroque", + -13.4365816116333 + ], + [ + "▁Phelps", + -13.436643600463867 + ], + [ + "4000", + -13.436739921569824 + ], + [ + "▁Singing", + -13.43679428100586 + ], + [ + "Zone", + -13.436867713928223 + ], + [ + "▁flawlessly", + -13.436965942382812 + ], + [ + "▁Cora", + -13.43698501586914 + ], + [ + "▁Cla", + -13.436990737915039 + ], + [ + "▁attractiveness", + -13.437021255493164 + ], + [ + "jes", + -13.437034606933594 + ], + [ + "▁COP", + -13.437036514282227 + ], + [ + "▁950", + -13.437088966369629 + ], + [ + "ely", + -13.437100410461426 + ], + [ + "▁Kodak", + -13.437140464782715 + ], + [ + "ously", + -13.437220573425293 + ], + [ + "▁unstoppable", + -13.437280654907227 + ], + [ + "▁Transparency", + -13.437333106994629 + ], + [ + "▁foodie", + -13.437420845031738 + ], + [ + "▁neighbourhoods", + -13.437543869018555 + ], + [ + "י", + -13.437633514404297 + ], + [ + "▁Paolo", + -13.437703132629395 + ], + [ + "mara", + -13.43773078918457 + ], + [ + "▁mystic", + -13.437847137451172 + ], + [ + "▁heaviest", + -13.437895774841309 + ], + [ + "ِ", + -13.43790054321289 + ], + [ + "▁Zy", + -13.4379243850708 + ], + [ + "▁maximal", + -13.437950134277344 + ], + [ + "▁fodder", + -13.437990188598633 + ], + [ + "▁Sparrow", + -13.437992095947266 + ], + [ + "burgh", + -13.438007354736328 + ], + [ + "▁RSI", + -13.438027381896973 + ], + [ + "▁Adi", + -13.438033103942871 + ], + [ + "▁prob", + -13.438045501708984 + ], + [ + "▁Debian", + -13.438131332397461 + ], + [ + "▁pathogen", + -13.438146591186523 + ], + [ + "▁Gull", + -13.438202857971191 + ], + [ + "Apple", + -13.438207626342773 + ], + [ + "▁Midway", + -13.438211441040039 + ], + [ + "img", + -13.438272476196289 + ], + [ + "sdale", + -13.438335418701172 + ], + [ + "▁simplifies", + -13.43835163116455 + ], + [ + "▁Dew", + -13.438374519348145 + ], + [ + "▁burnout", + -13.43848991394043 + ], + [ + "▁Byrd", + -13.438496589660645 + ], + [ + "▁Pul", + -13.438506126403809 + ], + [ + "▁Commodore", + -13.438529968261719 + ], + [ + "▁fragmentation", + -13.438557624816895 + ], + [ + "mart", + -13.43863582611084 + ], + [ + "▁distressing", + -13.438650131225586 + ], + [ + "hei", + -13.438672065734863 + ], + [ + "▁Surg", + -13.438689231872559 + ], + [ + "▁Hercules", + -13.438698768615723 + ], + [ + "tru", + -13.438760757446289 + ], + [ + "▁AUD", + -13.438761711120605 + ], + [ + "▁gratification", + -13.438772201538086 + ], + [ + "▁utilising", + -13.43893051147461 + ], + [ + "▁Hedge", + -13.438933372497559 + ], + [ + "▁cyst", + -13.438936233520508 + ], + [ + "▁spiced", + -13.439024925231934 + ], + [ + "▁Mavericks", + -13.439200401306152 + ], + [ + "cons", + -13.439414024353027 + ], + [ + "▁chandeliers", + -13.439432144165039 + ], + [ + "▁Groove", + -13.439444541931152 + ], + [ + "▁Workout", + -13.439496994018555 + ], + [ + "▁astonished", + -13.439518928527832 + ], + [ + "▁TEAM", + -13.43952465057373 + ], + [ + "▁unequal", + -13.439531326293945 + ], + [ + "▁Spare", + -13.439708709716797 + ], + [ + "dining", + -13.439718246459961 + ], + [ + "▁Durable", + -13.439754486083984 + ], + [ + "▁Pagan", + -13.439774513244629 + ], + [ + "rett", + -13.439793586730957 + ], + [ + "▁DESIGN", + -13.439802169799805 + ], + [ + "Van", + -13.439818382263184 + ], + [ + "▁Highest", + -13.439919471740723 + ], + [ + "▁culminated", + -13.439926147460938 + ], + [ + "1960", + -13.440069198608398 + ], + [ + "▁335", + -13.440093994140625 + ], + [ + "▁severed", + -13.440101623535156 + ], + [ + "kor", + -13.440105438232422 + ], + [ + "▁successors", + -13.440109252929688 + ], + [ + "▁tainted", + -13.4402437210083 + ], + [ + "▁ballast", + -13.4403076171875 + ], + [ + "▁Ease", + -13.440314292907715 + ], + [ + "▁Gartner", + -13.440317153930664 + ], + [ + "▁Couples", + -13.440332412719727 + ], + [ + "▁wholesalers", + -13.44034194946289 + ], + [ + "▁0800", + -13.440348625183105 + ], + [ + "580", + -13.440350532531738 + ], + [ + "▁napkins", + -13.440366744995117 + ], + [ + "▁Coll", + -13.44037914276123 + ], + [ + "▁fathom", + -13.44046401977539 + ], + [ + "▁pesto", + -13.440485954284668 + ], + [ + "▁Discounts", + -13.44053840637207 + ], + [ + "▁SPA", + -13.440585136413574 + ], + [ + "▁phantom", + -13.440628051757812 + ], + [ + "▁Mafia", + -13.440631866455078 + ], + [ + "▁Causes", + -13.440644264221191 + ], + [ + "▁Reilly", + -13.440752029418945 + ], + [ + "▁Presley", + -13.440787315368652 + ], + [ + "▁Sabrina", + -13.440849304199219 + ], + [ + "▁Magical", + -13.440877914428711 + ], + [ + "MV", + -13.440879821777344 + ], + [ + "▁pickups", + -13.440951347351074 + ], + [ + "▁decomposition", + -13.441032409667969 + ], + [ + "▁Moderate", + -13.441073417663574 + ], + [ + "singer", + -13.441154479980469 + ], + [ + "▁Photographs", + -13.441193580627441 + ], + [ + "▁Flour", + -13.441206932067871 + ], + [ + "▁Telugu", + -13.441244125366211 + ], + [ + "Ya", + -13.44131851196289 + ], + [ + "▁Promote", + -13.441366195678711 + ], + [ + "▁Scot", + -13.44136905670166 + ], + [ + "▁consignment", + -13.441411972045898 + ], + [ + "ар", + -13.441457748413086 + ], + [ + "▁disposing", + -13.44148063659668 + ], + [ + "▁sandbox", + -13.441715240478516 + ], + [ + "▁bruised", + -13.44174861907959 + ], + [ + "▁COMP", + -13.441794395446777 + ], + [ + "▁bas", + -13.441810607910156 + ], + [ + "▁Canucks", + -13.44186019897461 + ], + [ + "nak", + -13.441861152648926 + ], + [ + "tig", + -13.441896438598633 + ], + [ + "▁Discipline", + -13.441901206970215 + ], + [ + "▁legitimately", + -13.441934585571289 + ], + [ + "▁complicate", + -13.441969871520996 + ], + [ + "▁Hurt", + -13.442049980163574 + ], + [ + "▁Regions", + -13.44214916229248 + ], + [ + "▁epoch", + -13.44219970703125 + ], + [ + "meta", + -13.442238807678223 + ], + [ + "▁psychologically", + -13.442298889160156 + ], + [ + "▁diced", + -13.442333221435547 + ], + [ + "ق", + -13.442376136779785 + ], + [ + "▁cheaply", + -13.442447662353516 + ], + [ + "▁curricula", + -13.442483901977539 + ], + [ + "equity", + -13.442545890808105 + ], + [ + "▁illustrative", + -13.442588806152344 + ], + [ + "▁BK", + -13.44267463684082 + ], + [ + "▁Fang", + -13.442688941955566 + ], + [ + "APP", + -13.442876815795898 + ], + [ + "▁entertainer", + -13.442961692810059 + ], + [ + "▁Acura", + -13.443049430847168 + ], + [ + "▁Kung", + -13.443124771118164 + ], + [ + "wish", + -13.44320011138916 + ], + [ + "sboro", + -13.443238258361816 + ], + [ + "grove", + -13.443283081054688 + ], + [ + "▁Anytime", + -13.443293571472168 + ], + [ + "▁bestseller", + -13.443306922912598 + ], + [ + "▁airtight", + -13.443309783935547 + ], + [ + "▁Appreciate", + -13.443313598632812 + ], + [ + "▁harmonies", + -13.443324089050293 + ], + [ + "▁Sab", + -13.44334888458252 + ], + [ + "▁CBI", + -13.443497657775879 + ], + [ + "▁Mosul", + -13.443535804748535 + ], + [ + "▁Airline", + -13.443612098693848 + ], + [ + "▁Redwood", + -13.443623542785645 + ], + [ + "baum", + -13.443670272827148 + ], + [ + "▁cosmos", + -13.443778038024902 + ], + [ + "▁Steph", + -13.443782806396484 + ], + [ + "▁levied", + -13.443814277648926 + ], + [ + "▁saxophone", + -13.44400691986084 + ], + [ + "▁Teens", + -13.4440279006958 + ], + [ + "323", + -13.444074630737305 + ], + [ + "▁Kata", + -13.44409465789795 + ], + [ + "▁sen", + -13.44414234161377 + ], + [ + "▁wares", + -13.444219589233398 + ], + [ + "▁Mn", + -13.444273948669434 + ], + [ + "▁rotational", + -13.444358825683594 + ], + [ + "▁disrespectful", + -13.444397926330566 + ], + [ + "▁atheists", + -13.444416046142578 + ], + [ + "▁Rehab", + -13.444440841674805 + ], + [ + "▁610", + -13.444592475891113 + ], + [ + "▁Hussain", + -13.444679260253906 + ], + [ + "▁Camel", + -13.444698333740234 + ], + [ + "▁enlargement", + -13.444746971130371 + ], + [ + "▁Pueblo", + -13.444754600524902 + ], + [ + "sberg", + -13.444788932800293 + ], + [ + "practice", + -13.444793701171875 + ], + [ + "▁Rutherford", + -13.444803237915039 + ], + [ + "▁shortlist", + -13.44481372833252 + ], + [ + "▁vortex", + -13.44481372833252 + ], + [ + "aut", + -13.444828987121582 + ], + [ + "▁scoreless", + -13.444851875305176 + ], + [ + "▁campaigned", + -13.444863319396973 + ], + [ + "angel", + -13.444899559020996 + ], + [ + "▁Brom", + -13.444904327392578 + ], + [ + "▁probiotics", + -13.444993019104004 + ], + [ + "▁apostle", + -13.445055961608887 + ], + [ + "▁underserved", + -13.445074081420898 + ], + [ + "▁SCHOOL", + -13.44515323638916 + ], + [ + "▁Rin", + -13.445236206054688 + ], + [ + "▁baton", + -13.445271492004395 + ], + [ + "thus", + -13.445374488830566 + ], + [ + "▁Homework", + -13.445389747619629 + ], + [ + "▁CSU", + -13.445425987243652 + ], + [ + "Update", + -13.445467948913574 + ], + [ + "▁rigging", + -13.44552230834961 + ], + [ + "▁imposition", + -13.445569038391113 + ], + [ + "▁sash", + -13.445603370666504 + ], + [ + "▁metastatic", + -13.445645332336426 + ], + [ + "▁postcode", + -13.445685386657715 + ], + [ + "▁grids", + -13.445752143859863 + ], + [ + "▁Soc", + -13.445798873901367 + ], + [ + "▁Ritchie", + -13.445917129516602 + ], + [ + "▁regretted", + -13.445934295654297 + ], + [ + "▁Nylon", + -13.446000099182129 + ], + [ + "▁gemstone", + -13.446002960205078 + ], + [ + "▁bouquets", + -13.446028709411621 + ], + [ + "plated", + -13.446077346801758 + ], + [ + "▁metaphors", + -13.446128845214844 + ], + [ + "▁Supper", + -13.446242332458496 + ], + [ + "▁rescuing", + -13.44638442993164 + ], + [ + "▁Span", + -13.446402549743652 + ], + [ + "instead", + -13.446406364440918 + ], + [ + "sole", + -13.446474075317383 + ], + [ + "eron", + -13.446496963500977 + ], + [ + "▁Marley", + -13.446515083312988 + ], + [ + "ahi", + -13.44655990600586 + ], + [ + "▁resounding", + -13.446598052978516 + ], + [ + "▁steeped", + -13.44663143157959 + ], + [ + "▁Hopper", + -13.44669246673584 + ], + [ + "tim", + -13.44676399230957 + ], + [ + "▁ply", + -13.446800231933594 + ], + [ + "dk", + -13.446822166442871 + ], + [ + "▁Surgeons", + -13.446860313415527 + ], + [ + "▁disclosing", + -13.446877479553223 + ], + [ + "▁granular", + -13.44690990447998 + ], + [ + "aar", + -13.446962356567383 + ], + [ + "▁flushing", + -13.44698429107666 + ], + [ + "▁bandwagon", + -13.446988105773926 + ], + [ + "collar", + -13.447088241577148 + ], + [ + "▁frown", + -13.447154998779297 + ], + [ + "▁exaggeration", + -13.447199821472168 + ], + [ + "▁realisation", + -13.447205543518066 + ], + [ + "▁CY", + -13.44731330871582 + ], + [ + "▁Marseille", + -13.447364807128906 + ], + [ + "▁ostensibly", + -13.447456359863281 + ], + [ + "▁collaborator", + -13.447484016418457 + ], + [ + "▁crabs", + -13.447491645812988 + ], + [ + "▁spinner", + -13.447644233703613 + ], + [ + "▁mor", + -13.447683334350586 + ], + [ + "▁connective", + -13.44770336151123 + ], + [ + "▁pra", + -13.447871208190918 + ], + [ + "▁toolbox", + -13.448081016540527 + ], + [ + "▁addictions", + -13.448107719421387 + ], + [ + "080", + -13.448229789733887 + ], + [ + "wala", + -13.448271751403809 + ], + [ + "▁Rosenberg", + -13.448323249816895 + ], + [ + "▁handshake", + -13.448351860046387 + ], + [ + "compliant", + -13.448378562927246 + ], + [ + "RIS", + -13.448486328125 + ], + [ + "▁Clarkson", + -13.448657989501953 + ], + [ + "▁sealer", + -13.44869613647461 + ], + [ + "▁Robo", + -13.44870662689209 + ], + [ + "▁murderous", + -13.448857307434082 + ], + [ + "▁beaded", + -13.448869705200195 + ], + [ + "▁THEN", + -13.448873519897461 + ], + [ + "人", + -13.448956489562988 + ], + [ + "▁seductive", + -13.448974609375 + ], + [ + "▁troupe", + -13.449013710021973 + ], + [ + "▁Loud", + -13.449024200439453 + ], + [ + "▁AED", + -13.449051856994629 + ], + [ + "▁memorize", + -13.4490966796875 + ], + [ + "▁Servers", + -13.449225425720215 + ], + [ + "Side", + -13.44924259185791 + ], + [ + "▁contemporaries", + -13.449249267578125 + ], + [ + "▁footprints", + -13.449257850646973 + ], + [ + "▁Processor", + -13.449326515197754 + ], + [ + "▁Div", + -13.449346542358398 + ], + [ + "▁Kayla", + -13.449383735656738 + ], + [ + "▁italian", + -13.449438095092773 + ], + [ + "▁freelancers", + -13.449492454528809 + ], + [ + "▁Samson", + -13.449568748474121 + ], + [ + "chuk", + -13.44957160949707 + ], + [ + "▁Slave", + -13.449585914611816 + ], + [ + "630", + -13.449707984924316 + ], + [ + "▁Pruitt", + -13.449724197387695 + ], + [ + "▁Libby", + -13.449773788452148 + ], + [ + "▁ty", + -13.449917793273926 + ], + [ + "스", + -13.45001220703125 + ], + [ + "▁Zachary", + -13.45010757446289 + ], + [ + "▁Dealing", + -13.450177192687988 + ], + [ + "▁Eddy", + -13.45019817352295 + ], + [ + "▁degraded", + -13.450200080871582 + ], + [ + "▁Duff", + -13.450272560119629 + ], + [ + "bye", + -13.450393676757812 + ], + [ + "flag", + -13.45040225982666 + ], + [ + "▁glittering", + -13.450422286987305 + ], + [ + "▁argumentative", + -13.450429916381836 + ], + [ + "jer", + -13.450431823730469 + ], + [ + "▁populous", + -13.450490951538086 + ], + [ + "▁cashback", + -13.450611114501953 + ], + [ + "▁Feather", + -13.45062255859375 + ], + [ + "▁periphery", + -13.45064640045166 + ], + [ + "▁Wah", + -13.450664520263672 + ], + [ + "▁cuddle", + -13.450702667236328 + ], + [ + "▁Scorpio", + -13.45071029663086 + ], + [ + "Aug", + -13.450711250305176 + ], + [ + "Sim", + -13.450713157653809 + ], + [ + "boo", + -13.450733184814453 + ], + [ + "▁landline", + -13.450803756713867 + ], + [ + "▁lentils", + -13.450899124145508 + ], + [ + "▁nagging", + -13.451040267944336 + ], + [ + "▁Mimi", + -13.451050758361816 + ], + [ + "▁flourished", + -13.451092720031738 + ], + [ + "esse", + -13.451168060302734 + ], + [ + "▁nj", + -13.451231956481934 + ], + [ + "eration", + -13.451300621032715 + ], + [ + "▁Mut", + -13.451308250427246 + ], + [ + "▁drinkers", + -13.45131778717041 + ], + [ + "dated", + -13.451333999633789 + ], + [ + "▁Regal", + -13.451375961303711 + ], + [ + "ils", + -13.451454162597656 + ], + [ + "▁Bethel", + -13.451509475708008 + ], + [ + "▁McCabe", + -13.451570510864258 + ], + [ + "▁Lonely", + -13.451589584350586 + ], + [ + "▁Importantly", + -13.451634407043457 + ], + [ + "▁aloe", + -13.451671600341797 + ], + [ + "▁JPEG", + -13.4517183303833 + ], + [ + "▁contends", + -13.451738357543945 + ], + [ + "▁Renewal", + -13.45174503326416 + ], + [ + "▁Kop", + -13.451753616333008 + ], + [ + "▁Freeze", + -13.451836585998535 + ], + [ + "▁coherence", + -13.451848983764648 + ], + [ + "inches", + -13.452013969421387 + ], + [ + "▁eagles", + -13.452034950256348 + ], + [ + "Phone", + -13.45216178894043 + ], + [ + "▁Tak", + -13.452200889587402 + ], + [ + "▁plugging", + -13.452214241027832 + ], + [ + "▁arisen", + -13.452242851257324 + ], + [ + "▁northwestern", + -13.452316284179688 + ], + [ + "dim", + -13.452341079711914 + ], + [ + "▁Invisible", + -13.452400207519531 + ], + [ + "▁simplifying", + -13.452512741088867 + ], + [ + "312", + -13.452540397644043 + ], + [ + "▁assurances", + -13.45254898071289 + ], + [ + "▁Bha", + -13.452553749084473 + ], + [ + "▁Haryana", + -13.452631950378418 + ], + [ + "▁Juniper", + -13.452653884887695 + ], + [ + "▁handicapped", + -13.452686309814453 + ], + [ + "ات", + -13.452702522277832 + ], + [ + "▁sobriety", + -13.452790260314941 + ], + [ + "▁speciality", + -13.452810287475586 + ], + [ + "ame", + -13.452857971191406 + ], + [ + "▁dudes", + -13.452911376953125 + ], + [ + "▁Kidney", + -13.452934265136719 + ], + [ + "▁fosters", + -13.452981948852539 + ], + [ + "▁terra", + -13.453003883361816 + ], + [ + "▁estranged", + -13.453015327453613 + ], + [ + "▁cinemas", + -13.453047752380371 + ], + [ + "530", + -13.453082084655762 + ], + [ + "▁1882", + -13.453102111816406 + ], + [ + "contract", + -13.45313835144043 + ], + [ + "▁wheeled", + -13.453167915344238 + ], + [ + "▁pallets", + -13.453226089477539 + ], + [ + "▁Cine", + -13.4533109664917 + ], + [ + "Times", + -13.45333480834961 + ], + [ + "▁Cullen", + -13.453434944152832 + ], + [ + "▁Mainly", + -13.453490257263184 + ], + [ + "ility", + -13.45350170135498 + ], + [ + "▁MCA", + -13.45357894897461 + ], + [ + "▁bruising", + -13.453579902648926 + ], + [ + "hom", + -13.453583717346191 + ], + [ + "▁Highlight", + -13.453584671020508 + ], + [ + "▁Δ", + -13.453590393066406 + ], + [ + "▁Genre", + -13.453664779663086 + ], + [ + "▁Poppy", + -13.453673362731934 + ], + [ + "▁Catalonia", + -13.453688621520996 + ], + [ + "▁Statements", + -13.453695297241211 + ], + [ + "▁Bei", + -13.453697204589844 + ], + [ + "▁overtake", + -13.45369815826416 + ], + [ + "▁SUN", + -13.45373821258545 + ], + [ + "▁EG", + -13.453775405883789 + ], + [ + "leaning", + -13.453825950622559 + ], + [ + "terra", + -13.45384407043457 + ], + [ + "▁Cue", + -13.453943252563477 + ], + [ + "▁Satisfaction", + -13.453953742980957 + ], + [ + "▁GEO", + -13.453967094421387 + ], + [ + "▁Extensive", + -13.454048156738281 + ], + [ + "▁anesthetic", + -13.454055786132812 + ], + [ + "LN", + -13.45408821105957 + ], + [ + "▁PLA", + -13.454095840454102 + ], + [ + "▁shafts", + -13.454110145568848 + ], + [ + "bru", + -13.454146385192871 + ], + [ + "▁Stable", + -13.454192161560059 + ], + [ + "▁Voltage", + -13.454193115234375 + ], + [ + "▁Procurement", + -13.454288482666016 + ], + [ + "▁typo", + -13.454296112060547 + ], + [ + "▁gorge", + -13.454366683959961 + ], + [ + "Low", + -13.45439338684082 + ], + [ + "▁heterosexual", + -13.454452514648438 + ], + [ + "tide", + -13.454455375671387 + ], + [ + "correct", + -13.454480171203613 + ], + [ + "▁implicitly", + -13.454484939575195 + ], + [ + "typically", + -13.454551696777344 + ], + [ + "identifying", + -13.454621315002441 + ], + [ + "▁cheeky", + -13.454825401306152 + ], + [ + "189", + -13.454935073852539 + ], + [ + "▁Angelina", + -13.454943656921387 + ], + [ + "▁Loyola", + -13.454959869384766 + ], + [ + "LIN", + -13.454984664916992 + ], + [ + "zzo", + -13.4550199508667 + ], + [ + "▁constituencies", + -13.455111503601074 + ], + [ + "▁mayhem", + -13.45511245727539 + ], + [ + "Bur", + -13.455121994018555 + ], + [ + "▁esoteric", + -13.455131530761719 + ], + [ + "otto", + -13.455160140991211 + ], + [ + "bolt", + -13.455208778381348 + ], + [ + "etic", + -13.455245971679688 + ], + [ + "▁sobre", + -13.455364227294922 + ], + [ + "▁octopus", + -13.4555025100708 + ], + [ + "▁Turf", + -13.455507278442383 + ], + [ + "▁hereditary", + -13.455595016479492 + ], + [ + "▁dab", + -13.45565128326416 + ], + [ + "▁Victims", + -13.455739974975586 + ], + [ + "283", + -13.45577621459961 + ], + [ + "▁Sed", + -13.455785751342773 + ], + [ + "wrong", + -13.455819129943848 + ], + [ + "▁Fulham", + -13.455869674682617 + ], + [ + "IAL", + -13.455937385559082 + ], + [ + "bara", + -13.455948829650879 + ], + [ + "▁sneaking", + -13.455963134765625 + ], + [ + "▁critters", + -13.456068992614746 + ], + [ + "▁Preparing", + -13.456099510192871 + ], + [ + "▁watery", + -13.456151008605957 + ], + [ + "▁increment", + -13.456171035766602 + ], + [ + "▁bragging", + -13.456209182739258 + ], + [ + "blowing", + -13.456223487854004 + ], + [ + "sler", + -13.456263542175293 + ], + [ + "▁equate", + -13.4564208984375 + ], + [ + "amos", + -13.456464767456055 + ], + [ + "▁iodine", + -13.456607818603516 + ], + [ + "▁RBIs", + -13.45669174194336 + ], + [ + "armed", + -13.456730842590332 + ], + [ + "▁downgraded", + -13.45676326751709 + ], + [ + "▁bolted", + -13.456767082214355 + ], + [ + "asse", + -13.456808090209961 + ], + [ + "▁backstory", + -13.456856727600098 + ], + [ + "bread", + -13.456957817077637 + ], + [ + "▁Pell", + -13.456976890563965 + ], + [ + "▁salesperson", + -13.456984519958496 + ], + [ + "▁reliever", + -13.456986427307129 + ], + [ + "▁JPMorgan", + -13.457019805908203 + ], + [ + "▁WY", + -13.457035064697266 + ], + [ + "▁squads", + -13.457051277160645 + ], + [ + "definition", + -13.45705795288086 + ], + [ + "▁rite", + -13.457072257995605 + ], + [ + "rang", + -13.457085609436035 + ], + [ + "▁Hathaway", + -13.457087516784668 + ], + [ + "▁steadfast", + -13.457117080688477 + ], + [ + "▁photovoltaic", + -13.45711898803711 + ], + [ + "▁Swami", + -13.457235336303711 + ], + [ + "mina", + -13.45726203918457 + ], + [ + "316", + -13.457305908203125 + ], + [ + "WL", + -13.457322120666504 + ], + [ + "▁iMac", + -13.457403182983398 + ], + [ + "▁dryness", + -13.457417488098145 + ], + [ + "Fall", + -13.457444190979004 + ], + [ + "▁Eureka", + -13.45748519897461 + ], + [ + "▁tufted", + -13.457559585571289 + ], + [ + "▁Hive", + -13.457565307617188 + ], + [ + "wee", + -13.457701683044434 + ], + [ + "psi", + -13.45776081085205 + ], + [ + "▁Colbert", + -13.45776653289795 + ], + [ + "▁decipher", + -13.457832336425781 + ], + [ + "Board", + -13.457847595214844 + ], + [ + "▁grappling", + -13.457934379577637 + ], + [ + "▁про", + -13.458061218261719 + ], + [ + "501", + -13.45806884765625 + ], + [ + "▁ceasefire", + -13.458072662353516 + ], + [ + "TION", + -13.458074569702148 + ], + [ + "▁ancillary", + -13.45818042755127 + ], + [ + "Japanese", + -13.458186149597168 + ], + [ + "▁degrade", + -13.458212852478027 + ], + [ + "belt", + -13.458321571350098 + ], + [ + "▁circumvent", + -13.458412170410156 + ], + [ + "▁floppy", + -13.458486557006836 + ], + [ + "▁THREE", + -13.45849323272705 + ], + [ + "fect", + -13.458608627319336 + ], + [ + "▁temperate", + -13.458648681640625 + ], + [ + "▁LW", + -13.458744049072266 + ], + [ + "▁Amongst", + -13.458759307861328 + ], + [ + "nish", + -13.458781242370605 + ], + [ + "▁Cookbook", + -13.458817481994629 + ], + [ + "▁PARK", + -13.458840370178223 + ], + [ + "cult", + -13.458893775939941 + ], + [ + "▁Twain", + -13.459033012390137 + ], + [ + "Martin", + -13.459078788757324 + ], + [ + "Au", + -13.459122657775879 + ], + [ + "Semitic", + -13.459254264831543 + ], + [ + "▁regenerate", + -13.459397315979004 + ], + [ + "▁для", + -13.459437370300293 + ], + [ + "▁Toolkit", + -13.459545135498047 + ], + [ + "graduate", + -13.45956039428711 + ], + [ + "▁popularly", + -13.459647178649902 + ], + [ + "sse", + -13.459670066833496 + ], + [ + "▁humankind", + -13.459738731384277 + ], + [ + "760", + -13.459741592407227 + ], + [ + "▁VH", + -13.45976734161377 + ], + [ + "▁Cassandra", + -13.459829330444336 + ], + [ + "▁peasants", + -13.459850311279297 + ], + [ + "mins", + -13.45985221862793 + ], + [ + "▁Arrange", + -13.45986270904541 + ], + [ + "audio", + -13.459921836853027 + ], + [ + "▁storyteller", + -13.460001945495605 + ], + [ + "▁Paste", + -13.460071563720703 + ], + [ + "lv", + -13.460091590881348 + ], + [ + "watching", + -13.460179328918457 + ], + [ + "logo", + -13.460199356079102 + ], + [ + "▁Climb", + -13.460226058959961 + ], + [ + "▁LX", + -13.460346221923828 + ], + [ + "▁workloads", + -13.460437774658203 + ], + [ + "experience", + -13.460454940795898 + ], + [ + "▁Belly", + -13.460460662841797 + ], + [ + "drama", + -13.460479736328125 + ], + [ + "opa", + -13.460569381713867 + ], + [ + "CEO", + -13.460654258728027 + ], + [ + "ж", + -13.46065616607666 + ], + [ + "▁evaluates", + -13.460750579833984 + ], + [ + "▁Fundamental", + -13.460779190063477 + ], + [ + "▁Middlesex", + -13.460785865783691 + ], + [ + "▁choked", + -13.460790634155273 + ], + [ + "▁Etc", + -13.460805892944336 + ], + [ + "▁Nik", + -13.460806846618652 + ], + [ + "▁legality", + -13.460840225219727 + ], + [ + "▁227", + -13.46084976196289 + ], + [ + "▁leveled", + -13.460869789123535 + ], + [ + "eder", + -13.460874557495117 + ], + [ + "▁facelift", + -13.460945129394531 + ], + [ + "▁manslaughter", + -13.461052894592285 + ], + [ + "▁Tick", + -13.461060523986816 + ], + [ + "▁Fender", + -13.461135864257812 + ], + [ + "▁conscientious", + -13.461169242858887 + ], + [ + "▁Monarch", + -13.461188316345215 + ], + [ + "▁defensively", + -13.461206436157227 + ], + [ + "▁CSI", + -13.461212158203125 + ], + [ + "▁Waterford", + -13.461259841918945 + ], + [ + "▁meadows", + -13.461355209350586 + ], + [ + "▁Scarlett", + -13.461382865905762 + ], + [ + "▁Jesuit", + -13.461397171020508 + ], + [ + "▁favorably", + -13.461441040039062 + ], + [ + "188", + -13.461474418640137 + ], + [ + "▁285", + -13.461475372314453 + ], + [ + "▁magnification", + -13.461506843566895 + ], + [ + "▁1884", + -13.461507797241211 + ], + [ + "▁К", + -13.461515426635742 + ], + [ + "ICS", + -13.461529731750488 + ], + [ + "▁Xmas", + -13.461569786071777 + ], + [ + "▁panicked", + -13.461573600769043 + ], + [ + "▁XD", + -13.461655616760254 + ], + [ + "▁waxing", + -13.461661338806152 + ], + [ + "▁arched", + -13.461666107177734 + ], + [ + "▁Bram", + -13.461737632751465 + ], + [ + "어", + -13.461771965026855 + ], + [ + "▁mites", + -13.461785316467285 + ], + [ + "1979", + -13.461853981018066 + ], + [ + "tent", + -13.461897850036621 + ], + [ + "▁LF", + -13.461912155151367 + ], + [ + "▁optionally", + -13.461978912353516 + ], + [ + "▁Bishops", + -13.461984634399414 + ], + [ + "▁downgrade", + -13.462002754211426 + ], + [ + "▁tights", + -13.462003707885742 + ], + [ + "▁pol", + -13.462076187133789 + ], + [ + "▁Shack", + -13.462082862854004 + ], + [ + "▁distillery", + -13.462102890014648 + ], + [ + "▁hymns", + -13.46217155456543 + ], + [ + "▁riffs", + -13.462228775024414 + ], + [ + "▁Bau", + -13.462296485900879 + ], + [ + "▁Wired", + -13.462306022644043 + ], + [ + "Radio", + -13.462336540222168 + ], + [ + "yah", + -13.462381362915039 + ], + [ + "▁solace", + -13.462442398071289 + ], + [ + "MER", + -13.462471008300781 + ], + [ + "tori", + -13.462530136108398 + ], + [ + "▁sporadic", + -13.462536811828613 + ], + [ + "actor", + -13.46254825592041 + ], + [ + "▁Eisenhower", + -13.46255874633789 + ], + [ + "GEN", + -13.462665557861328 + ], + [ + "▁tat", + -13.462752342224121 + ], + [ + "▁pelvis", + -13.462861061096191 + ], + [ + "▁eyeshadow", + -13.462868690490723 + ], + [ + "lots", + -13.462903022766113 + ], + [ + "▁involuntary", + -13.462940216064453 + ], + [ + "▁Hash", + -13.463006019592285 + ], + [ + "▁filament", + -13.463042259216309 + ], + [ + "mato", + -13.463163375854492 + ], + [ + "▁Usenet", + -13.463164329528809 + ], + [ + "prepared", + -13.463165283203125 + ], + [ + "▁patrols", + -13.463216781616211 + ], + [ + "▁mermaid", + -13.463237762451172 + ], + [ + "▁Antoine", + -13.463255882263184 + ], + [ + "на", + -13.463356018066406 + ], + [ + "NIC", + -13.463433265686035 + ], + [ + "▁Accountant", + -13.463465690612793 + ], + [ + "▁congressman", + -13.463473320007324 + ], + [ + "570", + -13.463502883911133 + ], + [ + "▁1024", + -13.463539123535156 + ], + [ + "▁MMO", + -13.463583946228027 + ], + [ + "▁secretive", + -13.463650703430176 + ], + [ + "▁ASC", + -13.463672637939453 + ], + [ + "▁chronicles", + -13.463698387145996 + ], + [ + "object", + -13.46375560760498 + ], + [ + "UD", + -13.463767051696777 + ], + [ + "utter", + -13.463767051696777 + ], + [ + "▁dangling", + -13.463813781738281 + ], + [ + "▁bubbling", + -13.463825225830078 + ], + [ + "Germany", + -13.463885307312012 + ], + [ + "▁homogeneous", + -13.463977813720703 + ], + [ + "▁strolling", + -13.46402359008789 + ], + [ + "▁perish", + -13.464043617248535 + ], + [ + "▁diode", + -13.464057922363281 + ], + [ + "▁predatory", + -13.464081764221191 + ], + [ + "▁Acupuncture", + -13.464113235473633 + ], + [ + "▁sf", + -13.464125633239746 + ], + [ + "▁blogged", + -13.464132308959961 + ], + [ + "▁MSP", + -13.464136123657227 + ], + [ + "▁LH", + -13.464152336120605 + ], + [ + "▁Takes", + -13.46436595916748 + ], + [ + "▁knights", + -13.464380264282227 + ], + [ + "▁presided", + -13.464431762695312 + ], + [ + "▁bombed", + -13.464523315429688 + ], + [ + "▁orphans", + -13.46458625793457 + ], + [ + "▁181", + -13.464616775512695 + ], + [ + "▁IMPORTANT", + -13.464639663696289 + ], + [ + "▁dossier", + -13.464707374572754 + ], + [ + "▁officiating", + -13.464730262756348 + ], + [ + "▁186", + -13.464764595031738 + ], + [ + "▁skim", + -13.46478271484375 + ], + [ + "▁homers", + -13.464791297912598 + ], + [ + "▁stockholders", + -13.464842796325684 + ], + [ + "▁Malt", + -13.464889526367188 + ], + [ + "among", + -13.464899063110352 + ], + [ + "▁unprepared", + -13.46491813659668 + ], + [ + "▁puppets", + -13.464949607849121 + ], + [ + "▁Dolby", + -13.464967727661133 + ], + [ + "dding", + -13.464978218078613 + ], + [ + "▁Enemy", + -13.464978218078613 + ], + [ + "▁mums", + -13.464984893798828 + ], + [ + "edition", + -13.465059280395508 + ], + [ + "▁DACA", + -13.465072631835938 + ], + [ + "rino", + -13.465170860290527 + ], + [ + "lg", + -13.46518325805664 + ], + [ + "▁Spielberg", + -13.465185165405273 + ], + [ + "▁Satin", + -13.465242385864258 + ], + [ + "▁MSM", + -13.465245246887207 + ], + [ + "nio", + -13.465300559997559 + ], + [ + "▁TMZ", + -13.465348243713379 + ], + [ + "dx", + -13.465362548828125 + ], + [ + "▁planks", + -13.46550178527832 + ], + [ + "▁pigeon", + -13.4657621383667 + ], + [ + "▁̧", + -13.465779304504395 + ], + [ + "▁Melody", + -13.465808868408203 + ], + [ + "▁Gauge", + -13.465868949890137 + ], + [ + "▁webmaster", + -13.465872764587402 + ], + [ + "▁EO", + -13.465889930725098 + ], + [ + "▁treacherous", + -13.465903282165527 + ], + [ + "▁snatched", + -13.465935707092285 + ], + [ + "1800", + -13.465944290161133 + ], + [ + "▁contrasted", + -13.465977668762207 + ], + [ + "▁Genes", + -13.466008186340332 + ], + [ + "▁playlists", + -13.466018676757812 + ], + [ + "smoking", + -13.466073989868164 + ], + [ + "▁prototyping", + -13.466075897216797 + ], + [ + "▁AIM", + -13.466090202331543 + ], + [ + "Four", + -13.466092109680176 + ], + [ + "▁curvature", + -13.466110229492188 + ], + [ + "hydro", + -13.466147422790527 + ], + [ + "▁SIG", + -13.466163635253906 + ], + [ + "▁Mans", + -13.466193199157715 + ], + [ + "▁Dice", + -13.466279029846191 + ], + [ + "▁repaid", + -13.466309547424316 + ], + [ + "▁Kurds", + -13.466320037841797 + ], + [ + "▁enlist", + -13.466358184814453 + ], + [ + "▁carton", + -13.466362953186035 + ], + [ + "▁bittersweet", + -13.466482162475586 + ], + [ + "▁abolish", + -13.466484069824219 + ], + [ + "lean", + -13.466585159301758 + ], + [ + "▁Cri", + -13.466612815856934 + ], + [ + "▁strife", + -13.466643333435059 + ], + [ + "▁Atmospheric", + -13.466679573059082 + ], + [ + "▁fists", + -13.466718673706055 + ], + [ + "▁CSV", + -13.466748237609863 + ], + [ + "▁ethereal", + -13.466763496398926 + ], + [ + "▁Cane", + -13.466764450073242 + ], + [ + "sty", + -13.466946601867676 + ], + [ + "hire", + -13.466972351074219 + ], + [ + "▁Oswald", + -13.466980934143066 + ], + [ + "tara", + -13.466985702514648 + ], + [ + "▁от", + -13.466994285583496 + ], + [ + "▁MIL", + -13.467055320739746 + ], + [ + "▁Clone", + -13.467137336730957 + ], + [ + "▁OU", + -13.46713924407959 + ], + [ + "▁Rashid", + -13.46713924407959 + ], + [ + "▁theorem", + -13.467192649841309 + ], + [ + "▁Uzbekistan", + -13.467198371887207 + ], + [ + "▁Beech", + -13.467252731323242 + ], + [ + "export", + -13.467268943786621 + ], + [ + "▁thrives", + -13.467286109924316 + ], + [ + "storage", + -13.467312812805176 + ], + [ + "▁MEN", + -13.467365264892578 + ], + [ + "▁Toast", + -13.467451095581055 + ], + [ + "▁Browne", + -13.467503547668457 + ], + [ + "▁stoked", + -13.46760368347168 + ], + [ + "INS", + -13.467604637145996 + ], + [ + "490", + -13.467642784118652 + ], + [ + "▁contraception", + -13.467691421508789 + ], + [ + "▁Culinary", + -13.467772483825684 + ], + [ + "▁eyeing", + -13.467860221862793 + ], + [ + "▁MCC", + -13.467909812927246 + ], + [ + "▁cluttered", + -13.467947006225586 + ], + [ + "▁AVI", + -13.467984199523926 + ], + [ + "▁Branson", + -13.468009948730469 + ], + [ + "▁Marlins", + -13.468009948730469 + ], + [ + "▁Aries", + -13.468110084533691 + ], + [ + "believe", + -13.468159675598145 + ], + [ + "▁Landmark", + -13.468234062194824 + ], + [ + "▁desktops", + -13.468364715576172 + ], + [ + "Road", + -13.468371391296387 + ], + [ + "▁Ambrose", + -13.46845531463623 + ], + [ + "▁beets", + -13.468460083007812 + ], + [ + "▁Jab", + -13.468473434448242 + ], + [ + "▁Locate", + -13.468488693237305 + ], + [ + "▁propulsion", + -13.46854019165039 + ], + [ + "▁versed", + -13.468649864196777 + ], + [ + "▁quilted", + -13.468693733215332 + ], + [ + "Edge", + -13.468761444091797 + ], + [ + "cid", + -13.468826293945312 + ], + [ + "▁Dozens", + -13.468873023986816 + ], + [ + "▁lacquer", + -13.468887329101562 + ], + [ + "▁Telescope", + -13.468958854675293 + ], + [ + "▁Opti", + -13.46897029876709 + ], + [ + "▁unsuitable", + -13.468975067138672 + ], + [ + "▁biographies", + -13.468998908996582 + ], + [ + "▁ب", + -13.469001770019531 + ], + [ + "hear", + -13.469015121459961 + ], + [ + "▁spoons", + -13.469072341918945 + ], + [ + "▁apo", + -13.469107627868652 + ], + [ + "▁Chips", + -13.469197273254395 + ], + [ + "▁deteriorate", + -13.469221115112305 + ], + [ + "▁uttered", + -13.469223022460938 + ], + [ + "▁bog", + -13.469231605529785 + ], + [ + "▁Billing", + -13.469243049621582 + ], + [ + "▁Rudolph", + -13.469245910644531 + ], + [ + "Anne", + -13.469280242919922 + ], + [ + "hil", + -13.469305992126465 + ], + [ + "future", + -13.46933364868164 + ], + [ + "▁instructing", + -13.469335556030273 + ], + [ + "▁Ach", + -13.469416618347168 + ], + [ + "▁retrieving", + -13.469467163085938 + ], + [ + "▁penchant", + -13.469480514526367 + ], + [ + "س", + -13.469583511352539 + ], + [ + "▁McCann", + -13.469622611999512 + ], + [ + "▁crept", + -13.469645500183105 + ], + [ + "▁Scientology", + -13.4696683883667 + ], + [ + "▁Gamble", + -13.469720840454102 + ], + [ + "▁glimpses", + -13.469815254211426 + ], + [ + "Main", + -13.469841003417969 + ], + [ + "▁Controlled", + -13.469844818115234 + ], + [ + "▁sta", + -13.469849586486816 + ], + [ + "▁Clicking", + -13.46985912322998 + ], + [ + "liked", + -13.469970703125 + ], + [ + "CRA", + -13.470002174377441 + ], + [ + "▁Textile", + -13.470056533813477 + ], + [ + "▁pomegranate", + -13.470075607299805 + ], + [ + "▁Levitra", + -13.470083236694336 + ], + [ + "▁Scoop", + -13.470142364501953 + ], + [ + "▁Kawasaki", + -13.470203399658203 + ], + [ + "▁Sami", + -13.470207214355469 + ], + [ + "▁shortstop", + -13.470232009887695 + ], + [ + "▁conglomerate", + -13.470242500305176 + ], + [ + "277", + -13.470273971557617 + ], + [ + "▁Homestead", + -13.470282554626465 + ], + [ + "▁HIPAA", + -13.470297813415527 + ], + [ + "▁thinly", + -13.470398902893066 + ], + [ + "▁brawl", + -13.47040843963623 + ], + [ + "▁Magistrate", + -13.470460891723633 + ], + [ + "Er", + -13.470600128173828 + ], + [ + "▁Constantine", + -13.470625877380371 + ], + [ + "▁Fei", + -13.47074031829834 + ], + [ + "▁tonne", + -13.470768928527832 + ], + [ + "▁replenish", + -13.47079086303711 + ], + [ + "▁phosphorylation", + -13.470793724060059 + ], + [ + "▁Timing", + -13.470800399780273 + ], + [ + "▁Couture", + -13.470861434936523 + ], + [ + "▁Hoping", + -13.470877647399902 + ], + [ + "▁Pres", + -13.4708833694458 + ], + [ + "Europe", + -13.470887184143066 + ], + [ + "iche", + -13.470934867858887 + ], + [ + "▁MPH", + -13.471056938171387 + ], + [ + "▁tonal", + -13.47118091583252 + ], + [ + "River", + -13.471200942993164 + ], + [ + "▁MSU", + -13.471319198608398 + ], + [ + "▁Chun", + -13.471323013305664 + ], + [ + "▁ejected", + -13.471403121948242 + ], + [ + "▁prepping", + -13.471467018127441 + ], + [ + "▁Wynn", + -13.471508979797363 + ], + [ + "▁unpack", + -13.471536636352539 + ], + [ + "▁Rath", + -13.471546173095703 + ], + [ + "▁Milky", + -13.471556663513184 + ], + [ + "▁mobilization", + -13.4716157913208 + ], + [ + "wit", + -13.471617698669434 + ], + [ + "▁Honest", + -13.471640586853027 + ], + [ + "ryl", + -13.4716796875 + ], + [ + "▁Sven", + -13.471692085266113 + ], + [ + "▁skillful", + -13.471829414367676 + ], + [ + "ु", + -13.471894264221191 + ], + [ + "▁COUNTY", + -13.47189998626709 + ], + [ + "▁competitively", + -13.47195816040039 + ], + [ + "▁zum", + -13.471965789794922 + ], + [ + "▁expedite", + -13.471969604492188 + ], + [ + "▁Chico", + -13.472071647644043 + ], + [ + "yahoo", + -13.47212028503418 + ], + [ + "ues", + -13.47213077545166 + ], + [ + "▁menacing", + -13.472211837768555 + ], + [ + "uce", + -13.472220420837402 + ], + [ + "▁Freddy", + -13.472293853759766 + ], + [ + "▁Concerning", + -13.472326278686523 + ], + [ + "crime", + -13.472376823425293 + ], + [ + "▁THROUGH", + -13.4724760055542 + ], + [ + "219", + -13.47252368927002 + ], + [ + "▁zodiac", + -13.472594261169434 + ], + [ + "▁budgetary", + -13.472646713256836 + ], + [ + "▁departures", + -13.472760200500488 + ], + [ + "▁Instantly", + -13.472799301147461 + ], + [ + "▁Assange", + -13.472803115844727 + ], + [ + "▁Humphrey", + -13.472925186157227 + ], + [ + "▁moniker", + -13.473012924194336 + ], + [ + "USE", + -13.473045349121094 + ], + [ + "▁pleas", + -13.47305679321289 + ], + [ + "▁Stephan", + -13.4732027053833 + ], + [ + "254", + -13.473209381103516 + ], + [ + "▁walled", + -13.473241806030273 + ], + [ + "▁Pasta", + -13.473334312438965 + ], + [ + "▁braided", + -13.473334312438965 + ], + [ + "▁irregularities", + -13.473339080810547 + ], + [ + "creative", + -13.473370552062988 + ], + [ + "▁CNS", + -13.473442077636719 + ], + [ + "▁acreage", + -13.473448753356934 + ], + [ + "▁paramedics", + -13.47347354888916 + ], + [ + "SY", + -13.47349739074707 + ], + [ + "▁Lange", + -13.473509788513184 + ], + [ + "doubt", + -13.473549842834473 + ], + [ + "▁О", + -13.473670959472656 + ], + [ + "▁astronomers", + -13.473674774169922 + ], + [ + "ē", + -13.473703384399414 + ], + [ + "▁instantaneous", + -13.473709106445312 + ], + [ + "▁circling", + -13.473738670349121 + ], + [ + "▁Greensboro", + -13.473759651184082 + ], + [ + "north", + -13.473763465881348 + ], + [ + "▁Technological", + -13.473898887634277 + ], + [ + "▁whispers", + -13.473934173583984 + ], + [ + "▁forklift", + -13.473968505859375 + ], + [ + "Kim", + -13.47397232055664 + ], + [ + "ovo", + -13.474034309387207 + ], + [ + "▁parting", + -13.474087715148926 + ], + [ + "▁unwavering", + -13.474089622497559 + ], + [ + "▁propensity", + -13.474095344543457 + ], + [ + "▁prog", + -13.474156379699707 + ], + [ + "telling", + -13.474203109741211 + ], + [ + "▁proton", + -13.474370002746582 + ], + [ + "WAY", + -13.474430084228516 + ], + [ + "▁Manufactured", + -13.474453926086426 + ], + [ + "▁reorganization", + -13.47447395324707 + ], + [ + "Field", + -13.47457504272461 + ], + [ + "▁Cheltenham", + -13.474588394165039 + ], + [ + "UST", + -13.474679946899414 + ], + [ + "▁SCP", + -13.474700927734375 + ], + [ + "▁unthinkable", + -13.474706649780273 + ], + [ + "▁sk", + -13.474710464477539 + ], + [ + "▁Inspire", + -13.474762916564941 + ], + [ + "▁mogul", + -13.474782943725586 + ], + [ + "▁BO", + -13.474844932556152 + ], + [ + "ор", + -13.474858283996582 + ], + [ + "▁GoPro", + -13.474894523620605 + ], + [ + "Sync", + -13.474915504455566 + ], + [ + "▁Boko", + -13.474966049194336 + ], + [ + "▁Founding", + -13.475015640258789 + ], + [ + "▁unmarried", + -13.47518253326416 + ], + [ + "▁Entrepreneurs", + -13.475215911865234 + ], + [ + "▁manifests", + -13.475311279296875 + ], + [ + "▁stub", + -13.475362777709961 + ], + [ + "▁illustrious", + -13.475364685058594 + ], + [ + "▁transnational", + -13.475370407104492 + ], + [ + "▁BLUE", + -13.47540283203125 + ], + [ + "▁Actors", + -13.475418090820312 + ], + [ + "CMS", + -13.475472450256348 + ], + [ + "Content", + -13.475516319274902 + ], + [ + "▁darkened", + -13.475560188293457 + ], + [ + "Rourke", + -13.475564002990723 + ], + [ + "▁theorists", + -13.475654602050781 + ], + [ + "ardo", + -13.475667953491211 + ], + [ + "▁detachable", + -13.475685119628906 + ], + [ + "▁vid", + -13.475768089294434 + ], + [ + "▁ASU", + -13.475808143615723 + ], + [ + "▁Sz", + -13.47588062286377 + ], + [ + "▁Witt", + -13.475943565368652 + ], + [ + "▁syndicated", + -13.476103782653809 + ], + [ + "▁protectors", + -13.476155281066895 + ], + [ + "▁carefree", + -13.476322174072266 + ], + [ + "Facebook", + -13.47640323638916 + ], + [ + "ject", + -13.476444244384766 + ], + [ + "▁vying", + -13.476485252380371 + ], + [ + "▁Huddersfield", + -13.4765625 + ], + [ + "quote", + -13.476607322692871 + ], + [ + "patch", + -13.476643562316895 + ], + [ + "▁psychiatry", + -13.476694107055664 + ], + [ + "▁Derbyshire", + -13.476753234863281 + ], + [ + "driver", + -13.47681713104248 + ], + [ + "▁Shores", + -13.476877212524414 + ], + [ + "262", + -13.47687816619873 + ], + [ + "▁ATR", + -13.476885795593262 + ], + [ + "rico", + -13.47709846496582 + ], + [ + "gua", + -13.477185249328613 + ], + [ + "quel", + -13.477204322814941 + ], + [ + "ISS", + -13.477252006530762 + ], + [ + "▁precinct", + -13.477278709411621 + ], + [ + "▁Spine", + -13.47732162475586 + ], + [ + "Trade", + -13.477343559265137 + ], + [ + "equal", + -13.477381706237793 + ], + [ + "Another", + -13.477386474609375 + ], + [ + "▁superbly", + -13.477418899536133 + ], + [ + "▁Westbrook", + -13.477446556091309 + ], + [ + "▁ENT", + -13.477527618408203 + ], + [ + "▁fleets", + -13.477601051330566 + ], + [ + "▁embryonic", + -13.477645874023438 + ], + [ + "▁Polytechnic", + -13.477736473083496 + ], + [ + "▁Riv", + -13.477738380432129 + ], + [ + "▁Therapeutic", + -13.477781295776367 + ], + [ + "▁structuring", + -13.477781295776367 + ], + [ + "▁Balloon", + -13.477901458740234 + ], + [ + "account", + -13.477909088134766 + ], + [ + "▁Manga", + -13.477968215942383 + ], + [ + "▁filename", + -13.478065490722656 + ], + [ + "▁entropy", + -13.478108406066895 + ], + [ + "▁Royce", + -13.478147506713867 + ], + [ + "Camp", + -13.478154182434082 + ], + [ + "▁emp", + -13.478175163269043 + ], + [ + "Blog", + -13.478206634521484 + ], + [ + "▁Ayurveda", + -13.478276252746582 + ], + [ + "▁Admittedly", + -13.478350639343262 + ], + [ + "▁193", + -13.478426933288574 + ], + [ + "expected", + -13.478485107421875 + ], + [ + "▁diaries", + -13.478507995605469 + ], + [ + "▁Organized", + -13.478545188903809 + ], + [ + "▁fishery", + -13.478551864624023 + ], + [ + "▁bre", + -13.478596687316895 + ], + [ + "▁Bloomington", + -13.47860050201416 + ], + [ + "▁NIC", + -13.478660583496094 + ], + [ + "▁triumphant", + -13.478660583496094 + ], + [ + "▁elevations", + -13.478662490844727 + ], + [ + "▁orphanage", + -13.478700637817383 + ], + [ + "▁differed", + -13.478729248046875 + ], + [ + "▁Hats", + -13.478734970092773 + ], + [ + "▁Spears", + -13.478734970092773 + ], + [ + "▁BBB", + -13.478751182556152 + ], + [ + "ных", + -13.478754997253418 + ], + [ + "▁Reducing", + -13.478832244873047 + ], + [ + "▁Haitian", + -13.478839874267578 + ], + [ + "▁appellant", + -13.478846549987793 + ], + [ + "▁Civilization", + -13.478891372680664 + ], + [ + "▁suggestive", + -13.478909492492676 + ], + [ + "▁PMC", + -13.479024887084961 + ], + [ + "▁plat", + -13.47903060913086 + ], + [ + "▁palliative", + -13.479036331176758 + ], + [ + "ër", + -13.47906494140625 + ], + [ + "▁furnishing", + -13.479106903076172 + ], + [ + "▁deco", + -13.47916030883789 + ], + [ + "kari", + -13.47920036315918 + ], + [ + "Five", + -13.479240417480469 + ], + [ + "▁injecting", + -13.479257583618164 + ], + [ + "▁juggle", + -13.479269027709961 + ], + [ + "CDC", + -13.479340553283691 + ], + [ + "▁juniors", + -13.479358673095703 + ], + [ + "▁Bees", + -13.479462623596191 + ], + [ + "▁refrigerators", + -13.479477882385254 + ], + [ + "▁CHI", + -13.479533195495605 + ], + [ + "▁laced", + -13.479554176330566 + ], + [ + "▁Responses", + -13.479557037353516 + ], + [ + "▁McGraw", + -13.47972583770752 + ], + [ + "▁outfielder", + -13.479780197143555 + ], + [ + "▁Salle", + -13.479848861694336 + ], + [ + "▁Blackwell", + -13.479920387268066 + ], + [ + "▁Exceptional", + -13.479926109313965 + ], + [ + "▁scarring", + -13.479959487915039 + ], + [ + "▁bloated", + -13.480097770690918 + ], + [ + "▁breakthroughs", + -13.480290412902832 + ], + [ + "igi", + -13.480305671691895 + ], + [ + "▁Advocates", + -13.480365753173828 + ], + [ + "▁familial", + -13.48039436340332 + ], + [ + "▁Juno", + -13.480460166931152 + ], + [ + "ان", + -13.480551719665527 + ], + [ + "▁Rockwell", + -13.480572700500488 + ], + [ + "▁pickle", + -13.480646133422852 + ], + [ + "▁Ancestry", + -13.480659484863281 + ], + [ + "▁reformed", + -13.48078441619873 + ], + [ + "▁european", + -13.480856895446777 + ], + [ + "▁crippling", + -13.480969429016113 + ], + [ + "brainer", + -13.48098373413086 + ], + [ + "▁wondrous", + -13.481017112731934 + ], + [ + "▁chemist", + -13.481097221374512 + ], + [ + "▁seminary", + -13.481141090393066 + ], + [ + "▁backpacking", + -13.481149673461914 + ], + [ + "▁Rx", + -13.481154441833496 + ], + [ + "▁Cruiser", + -13.481250762939453 + ], + [ + "▁sieve", + -13.481266021728516 + ], + [ + "▁Busy", + -13.481266975402832 + ], + [ + "▁Tarot", + -13.48132610321045 + ], + [ + "fry", + -13.48135757446289 + ], + [ + "▁vulgar", + -13.481361389160156 + ], + [ + "▁poppy", + -13.4815034866333 + ], + [ + "▁IDF", + -13.481545448303223 + ], + [ + "▁sustainably", + -13.48156452178955 + ], + [ + "▁Harp", + -13.481599807739258 + ], + [ + "RH", + -13.481600761413574 + ], + [ + "▁allotment", + -13.481606483459473 + ], + [ + "▁Remix", + -13.481666564941406 + ], + [ + "▁Beyonce", + -13.481678009033203 + ], + [ + "306", + -13.481696128845215 + ], + [ + "▁geese", + -13.481771469116211 + ], + [ + "▁thugs", + -13.48177433013916 + ], + [ + "Review", + -13.4818696975708 + ], + [ + "▁calculates", + -13.481953620910645 + ], + [ + "▁Gam", + -13.481956481933594 + ], + [ + "▁Tun", + -13.481983184814453 + ], + [ + "oti", + -13.48199462890625 + ], + [ + "▁Scenic", + -13.48218822479248 + ], + [ + "▁Careers", + -13.482210159301758 + ], + [ + "▁coincided", + -13.48224925994873 + ], + [ + "▁Albanian", + -13.482301712036133 + ], + [ + "▁Developmental", + -13.482365608215332 + ], + [ + "disc", + -13.482386589050293 + ], + [ + "ope", + -13.482428550720215 + ], + [ + "▁namespace", + -13.48248291015625 + ], + [ + "▁Responsive", + -13.482548713684082 + ], + [ + "▁Operators", + -13.482623100280762 + ], + [ + "▁hens", + -13.48264217376709 + ], + [ + "▁LEED", + -13.482653617858887 + ], + [ + "▁AUTO", + -13.482666015625 + ], + [ + "clo", + -13.482672691345215 + ], + [ + "▁blinking", + -13.482745170593262 + ], + [ + "producer", + -13.482815742492676 + ], + [ + "▁Dior", + -13.482824325561523 + ], + [ + "▁Proposed", + -13.482828140258789 + ], + [ + "▁slumber", + -13.482828140258789 + ], + [ + "▁glaucoma", + -13.482860565185547 + ], + [ + "▁wrecked", + -13.48288631439209 + ], + [ + "▁Clever", + -13.48289966583252 + ], + [ + "▁Wolverine", + -13.482952117919922 + ], + [ + "▁advertiser", + -13.482978820800781 + ], + [ + "comp", + -13.483089447021484 + ], + [ + "pull", + -13.483104705810547 + ], + [ + "▁Ramon", + -13.483104705810547 + ], + [ + "▁Jinping", + -13.483158111572266 + ], + [ + "▁Elastic", + -13.483181953430176 + ], + [ + "▁Elton", + -13.48320198059082 + ], + [ + "▁shank", + -13.483205795288086 + ], + [ + "▁macroeconomic", + -13.483288764953613 + ], + [ + "▁Britney", + -13.48328971862793 + ], + [ + "▁expeditions", + -13.483327865600586 + ], + [ + "▁Mecca", + -13.4833345413208 + ], + [ + "Pan", + -13.48333740234375 + ], + [ + "▁stylistic", + -13.48343563079834 + ], + [ + "▁reassured", + -13.483438491821289 + ], + [ + "▁Docs", + -13.483441352844238 + ], + [ + "▁bothers", + -13.48344898223877 + ], + [ + "ough", + -13.483479499816895 + ], + [ + "▁crusade", + -13.483487129211426 + ], + [ + "▁Unicorn", + -13.483511924743652 + ], + [ + "▁comedians", + -13.483528137207031 + ], + [ + "▁drier", + -13.483528137207031 + ], + [ + "▁Reformation", + -13.483637809753418 + ], + [ + "▁inhibited", + -13.483695983886719 + ], + [ + "▁jan", + -13.483948707580566 + ], + [ + "▁fiancé", + -13.483951568603516 + ], + [ + "▁Plugin", + -13.48404598236084 + ], + [ + "▁Flyer", + -13.484057426452637 + ], + [ + "▁cliché", + -13.48405933380127 + ], + [ + "▁Mika", + -13.484074592590332 + ], + [ + "▁NYSE", + -13.484101295471191 + ], + [ + "▁Proposition", + -13.484131813049316 + ], + [ + "▁webpages", + -13.484189987182617 + ], + [ + "▁Easton", + -13.484201431274414 + ], + [ + "▁Respondent", + -13.484314918518066 + ], + [ + "▁Dissertation", + -13.484450340270996 + ], + [ + "▁insurgents", + -13.484475135803223 + ], + [ + "▁sup", + -13.484554290771484 + ], + [ + "▁watchers", + -13.484583854675293 + ], + [ + "▁reconstruct", + -13.48465633392334 + ], + [ + "▁rheumatoid", + -13.484702110290527 + ], + [ + "▁Pixar", + -13.48473834991455 + ], + [ + "▁pharmacists", + -13.484769821166992 + ], + [ + "ní", + -13.484781265258789 + ], + [ + "▁Cambodian", + -13.484809875488281 + ], + [ + "eja", + -13.484814643859863 + ], + [ + "▁LDL", + -13.484870910644531 + ], + [ + "▁Interim", + -13.484910011291504 + ], + [ + "▁primed", + -13.484926223754883 + ], + [ + "▁emitting", + -13.485068321228027 + ], + [ + "finding", + -13.48511791229248 + ], + [ + "▁ignited", + -13.485198974609375 + ], + [ + "throw", + -13.485212326049805 + ], + [ + "ener", + -13.485271453857422 + ], + [ + "▁endowment", + -13.485346794128418 + ], + [ + "▁Protector", + -13.485400199890137 + ], + [ + "▁renewables", + -13.485426902770996 + ], + [ + "▁Interpretation", + -13.48543643951416 + ], + [ + "▁JH", + -13.485442161560059 + ], + [ + "▁transverse", + -13.485467910766602 + ], + [ + "Commerce", + -13.485517501831055 + ], + [ + "▁tempt", + -13.4855318069458 + ], + [ + "▁ger", + -13.485533714294434 + ], + [ + "▁Ami", + -13.485541343688965 + ], + [ + "▁Nex", + -13.485546112060547 + ], + [ + "▁congratulated", + -13.485550880432129 + ], + [ + "▁CMA", + -13.485613822937012 + ], + [ + "▁Mixer", + -13.4856595993042 + ], + [ + "▁MPEG", + -13.485673904418945 + ], + [ + "▁discredit", + -13.485701560974121 + ], + [ + "▁Hex", + -13.485733032226562 + ], + [ + "▁Valentines", + -13.485747337341309 + ], + [ + "▁zen", + -13.485770225524902 + ], + [ + "▁Rollins", + -13.485836029052734 + ], + [ + "▁Ripple", + -13.485881805419922 + ], + [ + "MAR", + -13.485956192016602 + ], + [ + "lix", + -13.485969543457031 + ], + [ + "▁Mats", + -13.486016273498535 + ], + [ + "ни", + -13.486019134521484 + ], + [ + "▁Earrings", + -13.4860258102417 + ], + [ + "Ltd", + -13.486102104187012 + ], + [ + "▁rattle", + -13.48613452911377 + ], + [ + "▁malnutrition", + -13.486151695251465 + ], + [ + "eem", + -13.486160278320312 + ], + [ + "▁affectionate", + -13.486236572265625 + ], + [ + "▁raspberries", + -13.48625373840332 + ], + [ + "▁Butte", + -13.48625659942627 + ], + [ + "▁Newtown", + -13.486329078674316 + ], + [ + "morning", + -13.486413955688477 + ], + [ + "▁KING", + -13.486464500427246 + ], + [ + "▁shouts", + -13.486533164978027 + ], + [ + "▁tripled", + -13.486587524414062 + ], + [ + "和", + -13.486595153808594 + ], + [ + "lady", + -13.486627578735352 + ], + [ + "orange", + -13.486650466918945 + ], + [ + "yla", + -13.486733436584473 + ], + [ + "▁Incidentally", + -13.48674488067627 + ], + [ + "▁adversary", + -13.486773490905762 + ], + [ + "cad", + -13.48678970336914 + ], + [ + "▁Eligibility", + -13.486834526062012 + ], + [ + "hani", + -13.486862182617188 + ], + [ + "▁HOA", + -13.486879348754883 + ], + [ + "rising", + -13.486923217773438 + ], + [ + "âs", + -13.486950874328613 + ], + [ + "goo", + -13.487066268920898 + ], + [ + "▁BPA", + -13.487075805664062 + ], + [ + "bha", + -13.487086296081543 + ], + [ + "▁Yar", + -13.487114906311035 + ], + [ + "▁gripped", + -13.487120628356934 + ], + [ + "▁escrow", + -13.48714542388916 + ], + [ + "▁evaporation", + -13.487204551696777 + ], + [ + "▁GCC", + -13.48721981048584 + ], + [ + "▁civilisation", + -13.487239837646484 + ], + [ + "▁Weir", + -13.487318992614746 + ], + [ + "▁jammed", + -13.487364768981934 + ], + [ + "006", + -13.487370491027832 + ], + [ + "DJ", + -13.487373352050781 + ], + [ + "▁Schu", + -13.487396240234375 + ], + [ + "▁Hab", + -13.487449645996094 + ], + [ + "▁clarifying", + -13.48747730255127 + ], + [ + "▁Hornets", + -13.48752498626709 + ], + [ + "▁slime", + -13.487528800964355 + ], + [ + "▁Interviews", + -13.487585067749023 + ], + [ + "▁gamut", + -13.487716674804688 + ], + [ + "▁AdWords", + -13.487740516662598 + ], + [ + "▁notifying", + -13.48779296875 + ], + [ + "▁Eighth", + -13.487812995910645 + ], + [ + "▁Staten", + -13.487837791442871 + ], + [ + "▁afar", + -13.487860679626465 + ], + [ + "▁storey", + -13.487922668457031 + ], + [ + "escent", + -13.487957000732422 + ], + [ + "▁Reconstruction", + -13.487993240356445 + ], + [ + "▁axial", + -13.488024711608887 + ], + [ + "▁Cant", + -13.488061904907227 + ], + [ + "▁Lightroom", + -13.488100051879883 + ], + [ + "▁Vaughn", + -13.488138198852539 + ], + [ + "▁posh", + -13.48816204071045 + ], + [ + "▁Conventional", + -13.488166809082031 + ], + [ + "▁bottoms", + -13.488213539123535 + ], + [ + "▁intelligently", + -13.488232612609863 + ], + [ + "Error", + -13.488249778747559 + ], + [ + "▁Signals", + -13.488293647766113 + ], + [ + "▁spiked", + -13.488303184509277 + ], + [ + "▁Firefighters", + -13.48831844329834 + ], + [ + "▁HUNDRED", + -13.48836612701416 + ], + [ + "▁Offered", + -13.488371849060059 + ], + [ + "▁Pontiac", + -13.48837947845459 + ], + [ + "▁recognising", + -13.488442420959473 + ], + [ + "eel", + -13.488459587097168 + ], + [ + "ffer", + -13.488469123840332 + ], + [ + "▁matchmaking", + -13.488485336303711 + ], + [ + "▁Regent", + -13.488521575927734 + ], + [ + "▁Sip", + -13.488579750061035 + ], + [ + "▁symmetrical", + -13.488691329956055 + ], + [ + "▁tavern", + -13.48870849609375 + ], + [ + "▁abrasion", + -13.488714218139648 + ], + [ + "sugar", + -13.488716125488281 + ], + [ + "▁Whiskey", + -13.488720893859863 + ], + [ + "▁Journalists", + -13.488840103149414 + ], + [ + "▁191", + -13.488862991333008 + ], + [ + "fox", + -13.488877296447754 + ], + [ + "▁epitome", + -13.488913536071777 + ], + [ + "▁excelled", + -13.488916397094727 + ], + [ + "▁Pleasure", + -13.488927841186523 + ], + [ + "▁SOS", + -13.488958358764648 + ], + [ + "▁Survivors", + -13.48898696899414 + ], + [ + "wolf", + -13.489204406738281 + ], + [ + "▁ECO", + -13.489227294921875 + ], + [ + "▁abundantly", + -13.48933219909668 + ], + [ + "▁tumbling", + -13.489341735839844 + ], + [ + "▁NAV", + -13.489349365234375 + ], + [ + "▁Mock", + -13.489398002624512 + ], + [ + "plot", + -13.489405632019043 + ], + [ + "▁Dump", + -13.489468574523926 + ], + [ + "▁comma", + -13.489483833312988 + ], + [ + "Trust", + -13.489506721496582 + ], + [ + "▁pretended", + -13.489545822143555 + ], + [ + "▁Sliding", + -13.489627838134766 + ], + [ + "doo", + -13.48971939086914 + ], + [ + "▁tequila", + -13.489727973937988 + ], + [ + "▁audiobook", + -13.489729881286621 + ], + [ + "▁Parmesan", + -13.489767074584961 + ], + [ + "Han", + -13.489787101745605 + ], + [ + "▁Specification", + -13.489824295043945 + ], + [ + "▁Extensions", + -13.489911079406738 + ], + [ + "▁succulent", + -13.49006462097168 + ], + [ + "▁unreal", + -13.490090370178223 + ], + [ + "▁sinner", + -13.490245819091797 + ], + [ + "▁neonatal", + -13.490392684936523 + ], + [ + "▁someplace", + -13.490399360656738 + ], + [ + "lant", + -13.490460395812988 + ], + [ + "▁Lars", + -13.490474700927734 + ], + [ + "▁snapshots", + -13.490574836730957 + ], + [ + "▁murky", + -13.490594863891602 + ], + [ + "▁Amtrak", + -13.490622520446777 + ], + [ + "▁Anders", + -13.490718841552734 + ], + [ + "protected", + -13.490779876708984 + ], + [ + "▁Verify", + -13.490790367126465 + ], + [ + "▁defiance", + -13.490814208984375 + ], + [ + "▁MSI", + -13.490850448608398 + ], + [ + "Perfect", + -13.490882873535156 + ], + [ + "▁Chateau", + -13.490888595581055 + ], + [ + "▁fielder", + -13.490894317626953 + ], + [ + "Having", + -13.49091911315918 + ], + [ + "silver", + -13.490930557250977 + ], + [ + "▁Customize", + -13.490966796875 + ], + [ + "▁DN", + -13.491047859191895 + ], + [ + "▁pears", + -13.491178512573242 + ], + [ + "▁predictor", + -13.491233825683594 + ], + [ + "▁mayonnaise", + -13.491290092468262 + ], + [ + "▁Token", + -13.491337776184082 + ], + [ + "▁Freshman", + -13.491351127624512 + ], + [ + "▁DAC", + -13.491442680358887 + ], + [ + "▁MSN", + -13.49148178100586 + ], + [ + "▁Commitment", + -13.491589546203613 + ], + [ + "afa", + -13.491682052612305 + ], + [ + "▁aligns", + -13.491693496704102 + ], + [ + "▁outsole", + -13.49169635772705 + ], + [ + "▁Athletes", + -13.491700172424316 + ], + [ + "ál", + -13.491735458374023 + ], + [ + "▁Quay", + -13.491741180419922 + ], + [ + "wah", + -13.4917573928833 + ], + [ + "▁chewy", + -13.491815567016602 + ], + [ + "▁acquitted", + -13.49202823638916 + ], + [ + "▁keypad", + -13.492074966430664 + ], + [ + "▁Chand", + -13.492088317871094 + ], + [ + "▁revising", + -13.492096900939941 + ], + [ + "▁lice", + -13.492108345031738 + ], + [ + "▁seeker", + -13.492111206054688 + ], + [ + "▁shielding", + -13.492120742797852 + ], + [ + "▁Mess", + -13.492225646972656 + ], + [ + "▁BAC", + -13.492347717285156 + ], + [ + "▁dropdown", + -13.492363929748535 + ], + [ + "▁enrolment", + -13.49238395690918 + ], + [ + "▁Precious", + -13.492505073547363 + ], + [ + "obo", + -13.492508888244629 + ], + [ + "handle", + -13.492509841918945 + ], + [ + "▁anecdotal", + -13.492559432983398 + ], + [ + "upper", + -13.492645263671875 + ], + [ + "▁tigers", + -13.49265193939209 + ], + [ + "▁fiat", + -13.492681503295898 + ], + [ + "▁layup", + -13.492838859558105 + ], + [ + "▁unimaginable", + -13.492852210998535 + ], + [ + "▁enigmatic", + -13.4928560256958 + ], + [ + "vita", + -13.492863655090332 + ], + [ + "▁rematch", + -13.492881774902344 + ], + [ + "▁Monty", + -13.492888450622559 + ], + [ + "castle", + -13.492897033691406 + ], + [ + "▁Proto", + -13.492903709411621 + ], + [ + "▁bribe", + -13.492961883544922 + ], + [ + "▁Harm", + -13.493006706237793 + ], + [ + "▁Pics", + -13.493109703063965 + ], + [ + "ACE", + -13.493240356445312 + ], + [ + "outside", + -13.493249893188477 + ], + [ + "crest", + -13.493254661560059 + ], + [ + "▁slaughtered", + -13.493260383605957 + ], + [ + "288", + -13.493285179138184 + ], + [ + "▁Curtains", + -13.493313789367676 + ], + [ + "▁Vader", + -13.493340492248535 + ], + [ + "▁Burnley", + -13.493403434753418 + ], + [ + "▁Agro", + -13.493637084960938 + ], + [ + "有", + -13.493687629699707 + ], + [ + "▁Dryer", + -13.493735313415527 + ], + [ + "▁Hume", + -13.493780136108398 + ], + [ + "▁endorsements", + -13.493816375732422 + ], + [ + "▁Plates", + -13.493878364562988 + ], + [ + "▁Aged", + -13.494000434875488 + ], + [ + "▁PDT", + -13.494017601013184 + ], + [ + "▁Societies", + -13.49403190612793 + ], + [ + "▁conspicuous", + -13.494035720825195 + ], + [ + "▁lodges", + -13.49406623840332 + ], + [ + "▁Torch", + -13.49407958984375 + ], + [ + "▁reimbursed", + -13.494192123413086 + ], + [ + "▁Dhaka", + -13.494220733642578 + ], + [ + "regular", + -13.494237899780273 + ], + [ + "▁Rot", + -13.494264602661133 + ], + [ + "▁cabling", + -13.494268417358398 + ], + [ + "▁GAME", + -13.494436264038086 + ], + [ + "rud", + -13.494452476501465 + ], + [ + "▁ky", + -13.494466781616211 + ], + [ + "▁fairytale", + -13.494470596313477 + ], + [ + "▁Daryl", + -13.494536399841309 + ], + [ + "▁lovable", + -13.494542121887207 + ], + [ + "▁vera", + -13.494563102722168 + ], + [ + "▁myocardial", + -13.494572639465332 + ], + [ + "▁selfless", + -13.494589805603027 + ], + [ + "▁Tuesdays", + -13.494706153869629 + ], + [ + "▁heirloom", + -13.494872093200684 + ], + [ + "capacity", + -13.494919776916504 + ], + [ + "duct", + -13.494952201843262 + ], + [ + "▁Vicky", + -13.495038986206055 + ], + [ + "▁breakage", + -13.49514102935791 + ], + [ + "▁weeping", + -13.49514102935791 + ], + [ + "▁1883", + -13.49515438079834 + ], + [ + "▁MSc", + -13.495245933532715 + ], + [ + "▁Grease", + -13.495267868041992 + ], + [ + "▁Conner", + -13.495285987854004 + ], + [ + "▁drugstore", + -13.495402336120605 + ], + [ + "OX", + -13.495408058166504 + ], + [ + "▁asian", + -13.495434761047363 + ], + [ + "uj", + -13.495473861694336 + ], + [ + "▁Hail", + -13.495478630065918 + ], + [ + "▁demonic", + -13.495545387268066 + ], + [ + "▁equestrian", + -13.495553016662598 + ], + [ + "▁Corrections", + -13.495555877685547 + ], + [ + "▁outfitted", + -13.495584487915039 + ], + [ + "▁encoder", + -13.495588302612305 + ], + [ + "trend", + -13.495590209960938 + ], + [ + "FDA", + -13.495686531066895 + ], + [ + "▁Adler", + -13.495720863342285 + ], + [ + "▁Razor", + -13.495731353759766 + ], + [ + "▁Autonomous", + -13.495792388916016 + ], + [ + "▁Fau", + -13.495794296264648 + ], + [ + "▁resembled", + -13.495797157287598 + ], + [ + "ders", + -13.495880126953125 + ], + [ + "▁smoothing", + -13.495935440063477 + ], + [ + "▁8000", + -13.495953559875488 + ], + [ + "▁momentarily", + -13.496051788330078 + ], + [ + "▁justices", + -13.496092796325684 + ], + [ + "▁sneaky", + -13.496199607849121 + ], + [ + "sail", + -13.4962797164917 + ], + [ + "▁Aura", + -13.49628734588623 + ], + [ + "▁Porch", + -13.496380805969238 + ], + [ + "▁231", + -13.496423721313477 + ], + [ + "▁devour", + -13.496480941772461 + ], + [ + "▁complimented", + -13.49653148651123 + ], + [ + "acid", + -13.496597290039062 + ], + [ + "▁frantically", + -13.496600151062012 + ], + [ + "▁Needle", + -13.496606826782227 + ], + [ + "▁Gamma", + -13.496623039245605 + ], + [ + "▁transferable", + -13.496630668640137 + ], + [ + "▁Mirrors", + -13.496654510498047 + ], + [ + "▁wavy", + -13.49670696258545 + ], + [ + "▁charisma", + -13.496712684631348 + ], + [ + "512", + -13.496713638305664 + ], + [ + "▁gothic", + -13.496733665466309 + ], + [ + "Mod", + -13.496831893920898 + ], + [ + "▁APS", + -13.496835708618164 + ], + [ + "▁flirting", + -13.49683666229248 + ], + [ + "▁Cay", + -13.4968900680542 + ], + [ + "▁gulf", + -13.49692153930664 + ], + [ + "▁pickled", + -13.496973991394043 + ], + [ + "▁Longer", + -13.497028350830078 + ], + [ + "lad", + -13.497111320495605 + ], + [ + "▁Raman", + -13.49713134765625 + ], + [ + "▁Consciousness", + -13.497169494628906 + ], + [ + "auer", + -13.497251510620117 + ], + [ + "▁DOM", + -13.497272491455078 + ], + [ + "notes", + -13.497285842895508 + ], + [ + "▁tumultuous", + -13.497293472290039 + ], + [ + "▁ceases", + -13.497300148010254 + ], + [ + "▁Dracula", + -13.49732494354248 + ], + [ + "▁soreness", + -13.497333526611328 + ], + [ + "▁resurrected", + -13.497385025024414 + ], + [ + "▁Receiver", + -13.497428894042969 + ], + [ + "possibly", + -13.497432708740234 + ], + [ + "▁lumps", + -13.497447967529297 + ], + [ + "cars", + -13.497527122497559 + ], + [ + "▁rodeo", + -13.497541427612305 + ], + [ + "▁Lithium", + -13.497560501098633 + ], + [ + "houses", + -13.497565269470215 + ], + [ + "▁Played", + -13.497576713562012 + ], + [ + "▁recounts", + -13.497635841369629 + ], + [ + "▁masterful", + -13.49770450592041 + ], + [ + "▁Camille", + -13.497835159301758 + ], + [ + "furniture", + -13.497955322265625 + ], + [ + "▁KH", + -13.497971534729004 + ], + [ + "▁1876", + -13.497976303100586 + ], + [ + "▁Railways", + -13.497993469238281 + ], + [ + "▁Admit", + -13.498153686523438 + ], + [ + "▁Merck", + -13.49816608428955 + ], + [ + "▁Keynes", + -13.4981689453125 + ], + [ + "▁clipping", + -13.498250961303711 + ], + [ + "▁umbrellas", + -13.498270988464355 + ], + [ + "▁Macmillan", + -13.498327255249023 + ], + [ + "hydroxy", + -13.49836540222168 + ], + [ + "▁Kaepernick", + -13.498379707336426 + ], + [ + "▁dependant", + -13.498381614685059 + ], + [ + "moderate", + -13.498497009277344 + ], + [ + "▁Westchester", + -13.498647689819336 + ], + [ + "award", + -13.498664855957031 + ], + [ + "Second", + -13.49866771697998 + ], + [ + "Luke", + -13.498716354370117 + ], + [ + "▁leaflet", + -13.498732566833496 + ], + [ + "▁bullies", + -13.498780250549316 + ], + [ + "▁wigs", + -13.498825073242188 + ], + [ + "YS", + -13.49882698059082 + ], + [ + "▁ketchup", + -13.498861312866211 + ], + [ + "iation", + -13.498867988586426 + ], + [ + "▁unplug", + -13.498880386352539 + ], + [ + "▁tunic", + -13.49891471862793 + ], + [ + "breaker", + -13.498945236206055 + ], + [ + "▁racked", + -13.498970985412598 + ], + [ + "▁Bitter", + -13.499068260192871 + ], + [ + "▁Confirmation", + -13.4990816116333 + ], + [ + "mund", + -13.499116897583008 + ], + [ + "▁Motel", + -13.499117851257324 + ], + [ + "▁ACCESS", + -13.49915599822998 + ], + [ + "Think", + -13.499178886413574 + ], + [ + "▁iris", + -13.499241828918457 + ], + [ + "▁testimonies", + -13.49928092956543 + ], + [ + "▁ANGELES", + -13.499290466308594 + ], + [ + "ciones", + -13.499306678771973 + ], + [ + "▁impractical", + -13.499367713928223 + ], + [ + "▁Dag", + -13.499494552612305 + ], + [ + "▁Redemption", + -13.499497413635254 + ], + [ + "▁ticked", + -13.499500274658203 + ], + [ + "ч", + -13.499517440795898 + ], + [ + "▁deprive", + -13.499545097351074 + ], + [ + "▁prerequisites", + -13.499612808227539 + ], + [ + "shelf", + -13.499615669250488 + ], + [ + "▁tbsp", + -13.499615669250488 + ], + [ + "▁hardcover", + -13.499652862548828 + ], + [ + "▁Tracks", + -13.499673843383789 + ], + [ + "▁contentment", + -13.499700546264648 + ], + [ + "▁recollection", + -13.499720573425293 + ], + [ + "▁Worked", + -13.49975299835205 + ], + [ + "▁Chandigarh", + -13.499771118164062 + ], + [ + "▁sarcastic", + -13.499778747558594 + ], + [ + "▁orthodontic", + -13.499786376953125 + ], + [ + "▁colorectal", + -13.499789237976074 + ], + [ + "▁lobe", + -13.499817848205566 + ], + [ + "▁congrats", + -13.499821662902832 + ], + [ + "▁intervened", + -13.499829292297363 + ], + [ + "▁Ibiza", + -13.499876022338867 + ], + [ + "▁airspace", + -13.499895095825195 + ], + [ + "▁Crisp", + -13.499922752380371 + ], + [ + "aze", + -13.499939918518066 + ], + [ + "279", + -13.49996566772461 + ], + [ + "▁countered", + -13.5 + ], + [ + "▁Oo", + -13.500007629394531 + ], + [ + "▁commercialization", + -13.50003719329834 + ], + [ + "▁wetland", + -13.500096321105957 + ], + [ + "AFP", + -13.500138282775879 + ], + [ + "Week", + -13.500186920166016 + ], + [ + "680", + -13.500232696533203 + ], + [ + "▁Novak", + -13.500239372253418 + ], + [ + "▁hepatic", + -13.50027847290039 + ], + [ + "▁Educators", + -13.500404357910156 + ], + [ + "▁whack", + -13.500481605529785 + ], + [ + "concept", + -13.50048542022705 + ], + [ + "▁Hurry", + -13.50051498413086 + ], + [ + "dol", + -13.5005521774292 + ], + [ + "▁Neg", + -13.500580787658691 + ], + [ + "▁Josef", + -13.500619888305664 + ], + [ + "▁Melinda", + -13.500649452209473 + ], + [ + "▁Elise", + -13.500655174255371 + ], + [ + "▁Ridley", + -13.50066089630127 + ], + [ + "▁fumble", + -13.50068473815918 + ], + [ + "CHA", + -13.500699996948242 + ], + [ + "▁Apocalypse", + -13.500710487365723 + ], + [ + "PK", + -13.500738143920898 + ], + [ + "▁̈", + -13.500760078430176 + ], + [ + "HN", + -13.500810623168945 + ], + [ + "▁Tet", + -13.500853538513184 + ], + [ + "▁unfit", + -13.500899314880371 + ], + [ + "▁Swarovski", + -13.50100326538086 + ], + [ + "▁Quentin", + -13.501006126403809 + ], + [ + "KY", + -13.501007080078125 + ], + [ + "Gar", + -13.501021385192871 + ], + [ + "▁Refugee", + -13.50103759765625 + ], + [ + "▁Lys", + -13.501110076904297 + ], + [ + "mania", + -13.501148223876953 + ], + [ + "▁hangers", + -13.501158714294434 + ], + [ + "▁hotspots", + -13.501175880432129 + ], + [ + "ITE", + -13.501249313354492 + ], + [ + "international", + -13.501306533813477 + ], + [ + "▁kennel", + -13.501357078552246 + ], + [ + "▁innumerable", + -13.501484870910645 + ], + [ + "rana", + -13.501703262329102 + ], + [ + "aine", + -13.501766204833984 + ], + [ + "▁disgusted", + -13.501814842224121 + ], + [ + "▁sift", + -13.501933097839355 + ], + [ + "▁cloning", + -13.50197982788086 + ], + [ + "john", + -13.501998901367188 + ], + [ + "039", + -13.502086639404297 + ], + [ + "Age", + -13.502153396606445 + ], + [ + "▁Klopp", + -13.502166748046875 + ], + [ + "▁Differential", + -13.502168655395508 + ], + [ + "▁endogenous", + -13.502208709716797 + ], + [ + "▁ROS", + -13.50222396850586 + ], + [ + "▁252", + -13.50228214263916 + ], + [ + "▁Catholicism", + -13.50239372253418 + ], + [ + "insert", + -13.502429008483887 + ], + [ + "▁Feeding", + -13.502435684204102 + ], + [ + "▁Honorary", + -13.502453804016113 + ], + [ + "▁stoppage", + -13.502460479736328 + ], + [ + "269", + -13.502473831176758 + ], + [ + "▁bona", + -13.502473831176758 + ], + [ + "▁invaders", + -13.502531051635742 + ], + [ + "▁1875", + -13.502584457397461 + ], + [ + "Both", + -13.502641677856445 + ], + [ + "▁cartel", + -13.502655982971191 + ], + [ + "▁Trojans", + -13.502681732177734 + ], + [ + "▁ointment", + -13.502699851989746 + ], + [ + "stadt", + -13.502739906311035 + ], + [ + "ald", + -13.502808570861816 + ], + [ + "】", + -13.502847671508789 + ], + [ + "▁subtract", + -13.502872467041016 + ], + [ + "▁Keen", + -13.502955436706543 + ], + [ + "▁NAC", + -13.502967834472656 + ], + [ + "phe", + -13.502982139587402 + ], + [ + "▁classmate", + -13.503005027770996 + ], + [ + "wara", + -13.503044128417969 + ], + [ + "▁Requests", + -13.503096580505371 + ], + [ + "▁Collegiate", + -13.503159523010254 + ], + [ + "determination", + -13.503185272216797 + ], + [ + "▁Cocktail", + -13.503196716308594 + ], + [ + "▁freelancer", + -13.503213882446289 + ], + [ + "itic", + -13.503233909606934 + ], + [ + "▁KN", + -13.503302574157715 + ], + [ + "▁inhale", + -13.503316879272461 + ], + [ + "▁CBT", + -13.503317832946777 + ], + [ + "▁Chia", + -13.503393173217773 + ], + [ + "▁prism", + -13.503443717956543 + ], + [ + "avo", + -13.50354290008545 + ], + [ + "▁Laugh", + -13.503558158874512 + ], + [ + "▁samsung", + -13.503586769104004 + ], + [ + "▁straws", + -13.50358772277832 + ], + [ + "▁tangy", + -13.503647804260254 + ], + [ + "▁flared", + -13.503671646118164 + ], + [ + "▁conserving", + -13.503714561462402 + ], + [ + "▁229", + -13.5038423538208 + ], + [ + "▁CTA", + -13.503843307495117 + ], + [ + "▁Piazza", + -13.50391674041748 + ], + [ + "Ur", + -13.503931999206543 + ], + [ + "▁elliptical", + -13.504020690917969 + ], + [ + "▁Limits", + -13.50408935546875 + ], + [ + "Fair", + -13.504222869873047 + ], + [ + "cab", + -13.50429916381836 + ], + [ + "▁philippines", + -13.504318237304688 + ], + [ + "STAR", + -13.50437068939209 + ], + [ + "▁expanse", + -13.504375457763672 + ], + [ + "▁Lis", + -13.504389762878418 + ], + [ + "▁Tori", + -13.50442886352539 + ], + [ + "▁Leica", + -13.504478454589844 + ], + [ + "▁timid", + -13.50450611114502 + ], + [ + "▁sparking", + -13.504508018493652 + ], + [ + "▁MPG", + -13.50451374053955 + ], + [ + "▁Alternate", + -13.504535675048828 + ], + [ + "▁kiosk", + -13.50456714630127 + ], + [ + "▁Catalogue", + -13.504653930664062 + ], + [ + "loan", + -13.504730224609375 + ], + [ + "▁vistas", + -13.50479507446289 + ], + [ + "ghan", + -13.504816055297852 + ], + [ + "Sex", + -13.504822731018066 + ], + [ + "raz", + -13.504838943481445 + ], + [ + "▁Handy", + -13.504894256591797 + ], + [ + "▁Minnie", + -13.50489616394043 + ], + [ + "▁hating", + -13.504928588867188 + ], + [ + "▁Rodeo", + -13.504932403564453 + ], + [ + "RAN", + -13.504971504211426 + ], + [ + "▁Avalanche", + -13.50504207611084 + ], + [ + "▁Enrique", + -13.505095481872559 + ], + [ + "▁undone", + -13.505096435546875 + ], + [ + "ия", + -13.505117416381836 + ], + [ + "▁Onion", + -13.50512409210205 + ], + [ + "ede", + -13.505159378051758 + ], + [ + "ა", + -13.50517463684082 + ], + [ + "▁Extraordinary", + -13.505220413208008 + ], + [ + "▁Manu", + -13.505237579345703 + ], + [ + "▁234", + -13.505242347717285 + ], + [ + "▁peasant", + -13.505266189575195 + ], + [ + "▁usher", + -13.50529670715332 + ], + [ + "Bob", + -13.505372047424316 + ], + [ + "▁Consolidated", + -13.50537395477295 + ], + [ + "▁Cheat", + -13.505399703979492 + ], + [ + "▁219", + -13.505410194396973 + ], + [ + "▁Appl", + -13.50546646118164 + ], + [ + "▁sensibility", + -13.505488395690918 + ], + [ + "▁tumbled", + -13.505539894104004 + ], + [ + "▁Huntsville", + -13.505589485168457 + ], + [ + "Article", + -13.505624771118164 + ], + [ + "▁tasteful", + -13.505634307861328 + ], + [ + "▁Cougars", + -13.505687713623047 + ], + [ + "▁blizzard", + -13.505897521972656 + ], + [ + "▁airfare", + -13.505906105041504 + ], + [ + "▁harassing", + -13.505926132202148 + ], + [ + "grand", + -13.505938529968262 + ], + [ + "▁1848", + -13.505949974060059 + ], + [ + "▁Doha", + -13.506059646606445 + ], + [ + "▁Novo", + -13.506117820739746 + ], + [ + "tooth", + -13.506173133850098 + ], + [ + "▁Stuttgart", + -13.506227493286133 + ], + [ + "▁Pom", + -13.506293296813965 + ], + [ + "IK", + -13.506360054016113 + ], + [ + "▁cot", + -13.506372451782227 + ], + [ + "draft", + -13.506402969360352 + ], + [ + "▁coroner", + -13.506403923034668 + ], + [ + "▁agitated", + -13.506463050842285 + ], + [ + "▁Polly", + -13.506599426269531 + ], + [ + "▁deserts", + -13.506684303283691 + ], + [ + "▁proofs", + -13.50675106048584 + ], + [ + "Latin", + -13.50681209564209 + ], + [ + "iano", + -13.506830215454102 + ], + [ + "▁lineman", + -13.506836891174316 + ], + [ + "Support", + -13.50687026977539 + ], + [ + "▁littered", + -13.506888389587402 + ], + [ + "▁willow", + -13.506949424743652 + ], + [ + "▁Selena", + -13.506974220275879 + ], + [ + "▁flo", + -13.507009506225586 + ], + [ + "▁Majestic", + -13.507040977478027 + ], + [ + "▁Ike", + -13.507067680358887 + ], + [ + "▁Locations", + -13.507131576538086 + ], + [ + "▁clog", + -13.507194519042969 + ], + [ + "Mind", + -13.507231712341309 + ], + [ + "▁intensify", + -13.507349967956543 + ], + [ + "ggin", + -13.507369041442871 + ], + [ + "▁Pau", + -13.507376670837402 + ], + [ + "▁Seasonal", + -13.507461547851562 + ], + [ + "▁Anyhow", + -13.50747013092041 + ], + [ + "▁grasping", + -13.507519721984863 + ], + [ + "currently", + -13.507552146911621 + ], + [ + "▁Query", + -13.507561683654785 + ], + [ + "▁Rab", + -13.507614135742188 + ], + [ + "Cell", + -13.507733345031738 + ], + [ + "Eye", + -13.507762908935547 + ], + [ + "temperature", + -13.507765769958496 + ], + [ + "▁Nicky", + -13.507772445678711 + ], + [ + "▁196", + -13.507832527160645 + ], + [ + "▁celebratory", + -13.507835388183594 + ], + [ + "▁rel", + -13.507904052734375 + ], + [ + "▁fray", + -13.507911682128906 + ], + [ + "▁dieting", + -13.507926940917969 + ], + [ + "▁grandpa", + -13.507930755615234 + ], + [ + "▁graced", + -13.507946014404297 + ], + [ + "▁Irrigation", + -13.507949829101562 + ], + [ + "▁televisions", + -13.507980346679688 + ], + [ + "▁Ranking", + -13.50800609588623 + ], + [ + "▁wasteful", + -13.50811767578125 + ], + [ + "▁kosher", + -13.508166313171387 + ], + [ + "▁excels", + -13.508234977722168 + ], + [ + "▁intellectuals", + -13.50827407836914 + ], + [ + "▁als", + -13.508282661437988 + ], + [ + "▁Refuge", + -13.508306503295898 + ], + [ + "▁Chairperson", + -13.508331298828125 + ], + [ + "▁doping", + -13.508343696594238 + ], + [ + "▁enchanted", + -13.5083646774292 + ], + [ + "hotel", + -13.508442878723145 + ], + [ + "▁varnish", + -13.508443832397461 + ], + [ + "▁Nun", + -13.508564949035645 + ], + [ + "▁unintentionally", + -13.508574485778809 + ], + [ + "▁ladders", + -13.508600234985352 + ], + [ + "jay", + -13.508604049682617 + ], + [ + "kb", + -13.508615493774414 + ], + [ + "▁archery", + -13.508697509765625 + ], + [ + "▁stronghold", + -13.50879955291748 + ], + [ + "fm", + -13.50883960723877 + ], + [ + "▁Pottery", + -13.508845329284668 + ], + [ + "▁parable", + -13.5088529586792 + ], + [ + "▁Padres", + -13.508925437927246 + ], + [ + "oph", + -13.508929252624512 + ], + [ + "cious", + -13.508942604064941 + ], + [ + "▁SCH", + -13.509057998657227 + ], + [ + "▁Wolfgang", + -13.509079933166504 + ], + [ + "▁Madhya", + -13.509098052978516 + ], + [ + "▁WOULD", + -13.50912857055664 + ], + [ + "ape", + -13.509178161621094 + ], + [ + "▁Lehigh", + -13.509190559387207 + ], + [ + "▁looms", + -13.509296417236328 + ], + [ + "▁Northeastern", + -13.509325981140137 + ], + [ + "▁ineligible", + -13.509442329406738 + ], + [ + "▁grills", + -13.509462356567383 + ], + [ + "random", + -13.509488105773926 + ], + [ + "▁при", + -13.509566307067871 + ], + [ + "eza", + -13.509586334228516 + ], + [ + "▁AAC", + -13.509746551513672 + ], + [ + "collectively", + -13.509751319885254 + ], + [ + "finder", + -13.50977897644043 + ], + [ + "▁Athena", + -13.509812355041504 + ], + [ + "dust", + -13.50985336303711 + ], + [ + "ubi", + -13.509895324707031 + ], + [ + "TECH", + -13.50989818572998 + ], + [ + "▁firewood", + -13.509902000427246 + ], + [ + "▁Letting", + -13.509934425354004 + ], + [ + "349", + -13.509973526000977 + ], + [ + "optional", + -13.509981155395508 + ], + [ + "▁Dumpsters", + -13.510050773620605 + ], + [ + "▁Tsu", + -13.51008129119873 + ], + [ + "electronic", + -13.510119438171387 + ], + [ + "estate", + -13.510125160217285 + ], + [ + "▁whey", + -13.510137557983398 + ], + [ + "▁Surgeon", + -13.510160446166992 + ], + [ + "▁nil", + -13.510184288024902 + ], + [ + "blank", + -13.510209083557129 + ], + [ + "shock", + -13.51021671295166 + ], + [ + "rä", + -13.510244369506836 + ], + [ + "▁Soros", + -13.51027774810791 + ], + [ + "▁hopper", + -13.510284423828125 + ], + [ + "▁405", + -13.510287284851074 + ], + [ + "▁DPS", + -13.510330200195312 + ], + [ + "▁Camaro", + -13.510392189025879 + ], + [ + "▁millennia", + -13.510393142700195 + ], + [ + "187", + -13.510458946228027 + ], + [ + "▁mixtures", + -13.510467529296875 + ], + [ + "MIT", + -13.510470390319824 + ], + [ + "▁Enrollment", + -13.51053524017334 + ], + [ + "Rev", + -13.510672569274902 + ], + [ + "▁Sweeney", + -13.510679244995117 + ], + [ + "▁MAG", + -13.510695457458496 + ], + [ + "▁020", + -13.510723114013672 + ], + [ + "weak", + -13.510744094848633 + ], + [ + "▁Chorus", + -13.510777473449707 + ], + [ + "▁ghetto", + -13.51080322265625 + ], + [ + "▁minivan", + -13.51081657409668 + ], + [ + "▁Beans", + -13.510835647583008 + ], + [ + "gies", + -13.510844230651855 + ], + [ + "▁branching", + -13.510848045349121 + ], + [ + "▁VG", + -13.510866165161133 + ], + [ + "▁EDIT", + -13.510875701904297 + ], + [ + "▁magistrate", + -13.510876655578613 + ], + [ + "stic", + -13.510958671569824 + ], + [ + "▁camped", + -13.510960578918457 + ], + [ + "▁Arun", + -13.510966300964355 + ], + [ + "▁fri", + -13.51099967956543 + ], + [ + "▁lily", + -13.511019706726074 + ], + [ + "▁SOLD", + -13.511035919189453 + ], + [ + "sounding", + -13.511063575744629 + ], + [ + "▁Wifi", + -13.511073112487793 + ], + [ + "emotional", + -13.51108169555664 + ], + [ + "installed", + -13.511116027832031 + ], + [ + "▁lemons", + -13.511144638061523 + ], + [ + "▁ticketing", + -13.511146545410156 + ], + [ + "▁Prints", + -13.5111722946167 + ], + [ + "▁Maddie", + -13.511181831359863 + ], + [ + "▁haircuts", + -13.511181831359863 + ], + [ + "▁volley", + -13.511249542236328 + ], + [ + "rse", + -13.511311531066895 + ], + [ + "▁Aden", + -13.511324882507324 + ], + [ + "cleaning", + -13.51144027709961 + ], + [ + "RK", + -13.511488914489746 + ], + [ + "▁polarized", + -13.511557579040527 + ], + [ + "walking", + -13.51159954071045 + ], + [ + "▁Anywhere", + -13.511661529541016 + ], + [ + "▁Prediction", + -13.511674880981445 + ], + [ + "▁biker", + -13.511702537536621 + ], + [ + "animal", + -13.511872291564941 + ], + [ + "Cr", + -13.511996269226074 + ], + [ + "▁Ctrl", + -13.512022972106934 + ], + [ + "▁Obtain", + -13.512064933776855 + ], + [ + "▁pedagogical", + -13.512088775634766 + ], + [ + "▁Carole", + -13.51215648651123 + ], + [ + "▁cortical", + -13.51216983795166 + ], + [ + "Face", + -13.512184143066406 + ], + [ + "▁cracker", + -13.512213706970215 + ], + [ + "▁blackberry", + -13.512240409851074 + ], + [ + "▁Sherwood", + -13.51257038116455 + ], + [ + "hospital", + -13.512572288513184 + ], + [ + "▁unexplained", + -13.512672424316406 + ], + [ + "▁potter", + -13.512674331665039 + ], + [ + "▁automakers", + -13.512676239013672 + ], + [ + "iate", + -13.512683868408203 + ], + [ + "▁reinstall", + -13.512688636779785 + ], + [ + "▁■", + -13.512770652770996 + ], + [ + "▁ridicule", + -13.512778282165527 + ], + [ + "293", + -13.512796401977539 + ], + [ + "Forward", + -13.512909889221191 + ], + [ + "Daniel", + -13.512925148010254 + ], + [ + "▁Spirits", + -13.51297664642334 + ], + [ + "▁Hydra", + -13.512979507446289 + ], + [ + "▁Limerick", + -13.513011932373047 + ], + [ + "▁vista", + -13.513031005859375 + ], + [ + "▁transcend", + -13.513081550598145 + ], + [ + "dro", + -13.513108253479004 + ], + [ + "▁reckoned", + -13.513110160827637 + ], + [ + "▁Lao", + -13.513131141662598 + ], + [ + "▁nitrate", + -13.51314926147461 + ], + [ + "▁donut", + -13.513216972351074 + ], + [ + "▁emptiness", + -13.513230323791504 + ], + [ + "▁Stephenson", + -13.513285636901855 + ], + [ + "▁grievance", + -13.513355255126953 + ], + [ + "▁purposefully", + -13.513530731201172 + ], + [ + "▁Cala", + -13.513599395751953 + ], + [ + "▁nationalities", + -13.513747215270996 + ], + [ + "▁Connector", + -13.513763427734375 + ], + [ + "bai", + -13.513811111450195 + ], + [ + "▁gyms", + -13.513875961303711 + ], + [ + "▁lecturers", + -13.513882637023926 + ], + [ + "ych", + -13.513888359069824 + ], + [ + "▁Sco", + -13.513890266418457 + ], + [ + "leader", + -13.513920783996582 + ], + [ + "▁1867", + -13.513994216918945 + ], + [ + "parts", + -13.514013290405273 + ], + [ + "▁HW", + -13.51404094696045 + ], + [ + "▁pri", + -13.514140129089355 + ], + [ + "Microsoft", + -13.514214515686035 + ], + [ + "▁Fol", + -13.514248847961426 + ], + [ + "▁latte", + -13.514261245727539 + ], + [ + "▁devout", + -13.51429271697998 + ], + [ + "dent", + -13.514320373535156 + ], + [ + "TMt", + -13.514354705810547 + ], + [ + "SET", + -13.514545440673828 + ], + [ + "▁Adv", + -13.514545440673828 + ], + [ + "meat", + -13.514546394348145 + ], + [ + "▁Ø", + -13.514566421508789 + ], + [ + "385", + -13.514633178710938 + ], + [ + "▁gt", + -13.514657020568848 + ], + [ + "▁Kohli", + -13.514692306518555 + ], + [ + "▁Gracie", + -13.514754295349121 + ], + [ + "▁OTC", + -13.514779090881348 + ], + [ + "▁moonlight", + -13.514792442321777 + ], + [ + "▁moulding", + -13.514820098876953 + ], + [ + "▁conclusive", + -13.514843940734863 + ], + [ + "▁dell", + -13.5149507522583 + ], + [ + "▁Rie", + -13.51498794555664 + ], + [ + "▁repealed", + -13.514994621276855 + ], + [ + "ologic", + -13.515022277832031 + ], + [ + "ный", + -13.515120506286621 + ], + [ + "▁facilitation", + -13.515169143676758 + ], + [ + "MEN", + -13.515231132507324 + ], + [ + "Vol", + -13.515389442443848 + ], + [ + "▁conductors", + -13.515435218811035 + ], + [ + "▁Cornish", + -13.515565872192383 + ], + [ + "▁Wondering", + -13.515691757202148 + ], + [ + "▁Ericsson", + -13.515829086303711 + ], + [ + "▁improv", + -13.515864372253418 + ], + [ + "▁Garrison", + -13.51596736907959 + ], + [ + "▁Crete", + -13.516012191772461 + ], + [ + "OU", + -13.516016960144043 + ], + [ + "▁MAD", + -13.51603889465332 + ], + [ + "▁Vy", + -13.516136169433594 + ], + [ + "еѕ", + -13.51618766784668 + ], + [ + "▁Tilt", + -13.516201972961426 + ], + [ + "▁Pollution", + -13.516203880310059 + ], + [ + "▁Hoo", + -13.516215324401855 + ], + [ + "▁diaspora", + -13.516270637512207 + ], + [ + "▁Ev", + -13.516308784484863 + ], + [ + "brother", + -13.51633358001709 + ], + [ + "▁Spartan", + -13.516404151916504 + ], + [ + "▁defenseman", + -13.51641845703125 + ], + [ + "▁Buch", + -13.516542434692383 + ], + [ + "▁Appearance", + -13.5165433883667 + ], + [ + "straight", + -13.516551971435547 + ], + [ + "▁HMRC", + -13.516592979431152 + ], + [ + "por", + -13.51661491394043 + ], + [ + "▁Doctrine", + -13.51662540435791 + ], + [ + "▁UNI", + -13.516648292541504 + ], + [ + "Bee", + -13.516724586486816 + ], + [ + "▁inconsistencies", + -13.516727447509766 + ], + [ + "▁Yarn", + -13.516748428344727 + ], + [ + "grey", + -13.516827583312988 + ], + [ + "▁glut", + -13.516845703125 + ], + [ + "▁indulgence", + -13.5169095993042 + ], + [ + "scientific", + -13.516922950744629 + ], + [ + "▁swimsuit", + -13.516976356506348 + ], + [ + "▁retrofit", + -13.517004013061523 + ], + [ + "▁storefront", + -13.5170259475708 + ], + [ + "Br", + -13.517027854919434 + ], + [ + "▁Vail", + -13.51707935333252 + ], + [ + "▁intimidate", + -13.517142295837402 + ], + [ + "▁topography", + -13.517169952392578 + ], + [ + "▁scaffolding", + -13.517230987548828 + ], + [ + "mesh", + -13.517264366149902 + ], + [ + "▁masculinity", + -13.517271041870117 + ], + [ + "▁duplicated", + -13.517446517944336 + ], + [ + "Ci", + -13.51746654510498 + ], + [ + "Stock", + -13.517502784729004 + ], + [ + "compatible", + -13.517508506774902 + ], + [ + "prone", + -13.517681121826172 + ], + [ + "▁frequented", + -13.517685890197754 + ], + [ + "▁billboards", + -13.517760276794434 + ], + [ + "▁Vegetarian", + -13.51777172088623 + ], + [ + "上", + -13.517788887023926 + ], + [ + "Office", + -13.517833709716797 + ], + [ + "▁whirlpool", + -13.517840385437012 + ], + [ + "ière", + -13.51803970336914 + ], + [ + "▁Wrangler", + -13.518196105957031 + ], + [ + "▁inspecting", + -13.518198013305664 + ], + [ + "▁Mbps", + -13.518352508544922 + ], + [ + "▁Phoebe", + -13.518370628356934 + ], + [ + "▁tel", + -13.518390655517578 + ], + [ + "▁Semiconductor", + -13.518407821655273 + ], + [ + "▁vanish", + -13.51840877532959 + ], + [ + "▁prioritized", + -13.518415451049805 + ], + [ + "▁herds", + -13.51843547821045 + ], + [ + "▁Haynes", + -13.518545150756836 + ], + [ + "▁Agreed", + -13.518696784973145 + ], + [ + "▁overheating", + -13.518716812133789 + ], + [ + "▁Remain", + -13.518733978271484 + ], + [ + "▁Kirsten", + -13.518815040588379 + ], + [ + "▁ESC", + -13.51882266998291 + ], + [ + "ARA", + -13.5188627243042 + ], + [ + "▁Titus", + -13.518876075744629 + ], + [ + "▁Passing", + -13.518913269042969 + ], + [ + "fiber", + -13.518938064575195 + ], + [ + "▁Beckett", + -13.518956184387207 + ], + [ + "pus", + -13.51899528503418 + ], + [ + "▁reeling", + -13.519052505493164 + ], + [ + "▁blockage", + -13.519076347351074 + ], + [ + "▁Largest", + -13.519115447998047 + ], + [ + "▁stent", + -13.519119262695312 + ], + [ + "angi", + -13.519128799438477 + ], + [ + "▁Outline", + -13.519172668457031 + ], + [ + "▁Moh", + -13.519281387329102 + ], + [ + "▁proxies", + -13.519359588623047 + ], + [ + "né", + -13.51940631866455 + ], + [ + "▁underlined", + -13.519412994384766 + ], + [ + "▁Defensive", + -13.519415855407715 + ], + [ + "▁Guo", + -13.519535064697266 + ], + [ + "▁FHA", + -13.519548416137695 + ], + [ + "▁Cosmic", + -13.519562721252441 + ], + [ + "▁incubator", + -13.51956844329834 + ], + [ + "▁defamation", + -13.519618034362793 + ], + [ + "Body", + -13.519654273986816 + ], + [ + "▁bumpy", + -13.519664764404297 + ], + [ + "▁nutty", + -13.519671440124512 + ], + [ + "▁Quit", + -13.519672393798828 + ], + [ + "valent", + -13.519742012023926 + ], + [ + "▁£500", + -13.51978588104248 + ], + [ + "Bu", + -13.519882202148438 + ], + [ + "▁trot", + -13.519920349121094 + ], + [ + "▁Subsequent", + -13.519973754882812 + ], + [ + "▁Rage", + -13.520051002502441 + ], + [ + "PCR", + -13.520051956176758 + ], + [ + "marked", + -13.520090103149414 + ], + [ + "otropic", + -13.520228385925293 + ], + [ + "▁Lakewood", + -13.520295143127441 + ], + [ + "▁foothills", + -13.520322799682617 + ], + [ + "▁ventricular", + -13.520354270935059 + ], + [ + "▁airfield", + -13.520424842834473 + ], + [ + "495", + -13.520495414733887 + ], + [ + "▁DOE", + -13.520569801330566 + ], + [ + "▁narcotics", + -13.520570755004883 + ], + [ + "▁prank", + -13.520675659179688 + ], + [ + "bots", + -13.520686149597168 + ], + [ + "▁spanish", + -13.520710945129395 + ], + [ + "▁soybeans", + -13.520771026611328 + ], + [ + "▁Predator", + -13.520878791809082 + ], + [ + "▁Plateau", + -13.520926475524902 + ], + [ + "▁artefacts", + -13.520957946777344 + ], + [ + "Texas", + -13.520978927612305 + ], + [ + "till", + -13.52109146118164 + ], + [ + "▁Poems", + -13.521134376525879 + ], + [ + "rath", + -13.52114486694336 + ], + [ + "▁conjecture", + -13.521185874938965 + ], + [ + "▁Tweed", + -13.521206855773926 + ], + [ + "▁FH", + -13.521220207214355 + ], + [ + "▁fussy", + -13.521285057067871 + ], + [ + "▁Glue", + -13.521349906921387 + ], + [ + "Report", + -13.52137279510498 + ], + [ + "▁NOTHING", + -13.521380424499512 + ], + [ + "▁Cheney", + -13.521415710449219 + ], + [ + "▁instinctively", + -13.521430969238281 + ], + [ + "▁penguins", + -13.52144718170166 + ], + [ + "NX", + -13.521476745605469 + ], + [ + "▁wavelengths", + -13.52157211303711 + ], + [ + "▁hamburger", + -13.521574974060059 + ], + [ + "▁Pickup", + -13.521583557128906 + ], + [ + "▁HARD", + -13.521584510803223 + ], + [ + "▁decoding", + -13.52161979675293 + ], + [ + "kos", + -13.52167797088623 + ], + [ + "Remember", + -13.521683692932129 + ], + [ + "▁Wrote", + -13.521703720092773 + ], + [ + "263", + -13.521721839904785 + ], + [ + "atti", + -13.521740913391113 + ], + [ + "▁Midtown", + -13.521748542785645 + ], + [ + "▁BAD", + -13.521761894226074 + ], + [ + "▁acc", + -13.521771430969238 + ], + [ + "capital", + -13.52182674407959 + ], + [ + "▁Trenton", + -13.521869659423828 + ], + [ + "oki", + -13.521940231323242 + ], + [ + "▁Alton", + -13.521970748901367 + ], + [ + "SV", + -13.521973609924316 + ], + [ + "▁Kite", + -13.52198600769043 + ], + [ + "444", + -13.52202033996582 + ], + [ + "▁Chardonnay", + -13.522043228149414 + ], + [ + "▁absorbent", + -13.522068977355957 + ], + [ + "▁Bust", + -13.522114753723145 + ], + [ + "▁frugal", + -13.522122383117676 + ], + [ + "Joe", + -13.52216625213623 + ], + [ + "Player", + -13.522184371948242 + ], + [ + "HQ", + -13.522255897521973 + ], + [ + "▁Kad", + -13.522273063659668 + ], + [ + "▁throwback", + -13.522316932678223 + ], + [ + "▁GOT", + -13.522361755371094 + ], + [ + "▁Keyword", + -13.522377014160156 + ], + [ + "▁Wikimedia", + -13.522385597229004 + ], + [ + "▁Cosmo", + -13.522429466247559 + ], + [ + "▁Grilled", + -13.52253532409668 + ], + [ + "inspiring", + -13.522701263427734 + ], + [ + "▁salons", + -13.522706985473633 + ], + [ + "ου", + -13.522793769836426 + ], + [ + "▁wrestlers", + -13.522818565368652 + ], + [ + "▁Agra", + -13.522854804992676 + ], + [ + "▁Frey", + -13.522929191589355 + ], + [ + "▁Diagnosis", + -13.52298641204834 + ], + [ + "▁darts", + -13.523030281066895 + ], + [ + "sharp", + -13.523042678833008 + ], + [ + "rix", + -13.523092269897461 + ], + [ + "graphy", + -13.523191452026367 + ], + [ + "▁watchful", + -13.523259162902832 + ], + [ + "▁recounted", + -13.523293495178223 + ], + [ + "skill", + -13.523383140563965 + ], + [ + "ttle", + -13.523478507995605 + ], + [ + "ę", + -13.523538589477539 + ], + [ + "▁Hendrix", + -13.52358341217041 + ], + [ + "▁Bengali", + -13.523685455322266 + ], + [ + "▁setups", + -13.523783683776855 + ], + [ + "▁remnant", + -13.523797988891602 + ], + [ + "▁racking", + -13.523801803588867 + ], + [ + "▁FAT", + -13.523812294006348 + ], + [ + "▁exacerbate", + -13.523823738098145 + ], + [ + "ISE", + -13.523842811584473 + ], + [ + "▁interacted", + -13.523929595947266 + ], + [ + "▁Beaumont", + -13.523953437805176 + ], + [ + "▁620", + -13.523961067199707 + ], + [ + "▁gemstones", + -13.524033546447754 + ], + [ + "▁NYPD", + -13.52412223815918 + ], + [ + "▁landslide", + -13.524158477783203 + ], + [ + "▁Seamless", + -13.524258613586426 + ], + [ + "▁ridges", + -13.524274826049805 + ], + [ + "▁Beginners", + -13.524285316467285 + ], + [ + "▁allowable", + -13.524317741394043 + ], + [ + "▁encore", + -13.52432918548584 + ], + [ + "▁Heinz", + -13.524441719055176 + ], + [ + "▁Plc", + -13.524443626403809 + ], + [ + "▁moons", + -13.524574279785156 + ], + [ + "▁scammers", + -13.524585723876953 + ], + [ + "▁Productivity", + -13.524612426757812 + ], + [ + "tho", + -13.524624824523926 + ], + [ + "307", + -13.52467155456543 + ], + [ + "▁redress", + -13.524821281433105 + ], + [ + "ulus", + -13.524835586547852 + ], + [ + "▁habitual", + -13.5248441696167 + ], + [ + "▁nutmeg", + -13.524933815002441 + ], + [ + "▁liberating", + -13.525016784667969 + ], + [ + "▁stadiums", + -13.525148391723633 + ], + [ + "▁kr", + -13.525184631347656 + ], + [ + "▁revisiting", + -13.525337219238281 + ], + [ + "▁predefined", + -13.525362014770508 + ], + [ + "▁Orchid", + -13.525370597839355 + ], + [ + "▁unsuccessfully", + -13.52547836303711 + ], + [ + "▁IOS", + -13.52560043334961 + ], + [ + "▁Vox", + -13.525627136230469 + ], + [ + "Los", + -13.525659561157227 + ], + [ + "ELL", + -13.525675773620605 + ], + [ + "▁Astronomy", + -13.52568244934082 + ], + [ + "▁definately", + -13.525691032409668 + ], + [ + "ك", + -13.52579116821289 + ], + [ + "fifth", + -13.525793075561523 + ], + [ + "▁rites", + -13.525837898254395 + ], + [ + "▁neuron", + -13.52587890625 + ], + [ + "▁refrigerate", + -13.525891304016113 + ], + [ + "▁rulings", + -13.525957107543945 + ], + [ + "▁SEAL", + -13.526040077209473 + ], + [ + "▁overshadowed", + -13.526079177856445 + ], + [ + "▁approves", + -13.526082038879395 + ], + [ + "▁EVA", + -13.52614974975586 + ], + [ + "▁Burgundy", + -13.526166915893555 + ], + [ + "▁Landscaping", + -13.52627944946289 + ], + [ + "▁Sectional", + -13.526307106018066 + ], + [ + "▁harms", + -13.526330947875977 + ], + [ + "▁savior", + -13.526334762573242 + ], + [ + "▁vetted", + -13.5263671875 + ], + [ + "▁Recommendations", + -13.526390075683594 + ], + [ + "gent", + -13.52639389038086 + ], + [ + "▁referees", + -13.526456832885742 + ], + [ + "1975", + -13.52648639678955 + ], + [ + "▁occupant", + -13.526533126831055 + ], + [ + "357", + -13.526610374450684 + ], + [ + "▁Chamberlain", + -13.526628494262695 + ], + [ + "gone", + -13.52664852142334 + ], + [ + "▁Billie", + -13.526658058166504 + ], + [ + "▁lizard", + -13.526689529418945 + ], + [ + "▁arenas", + -13.526707649230957 + ], + [ + "▁personable", + -13.52673053741455 + ], + [ + "▁Sung", + -13.526775360107422 + ], + [ + "▁Gentiles", + -13.526834487915039 + ], + [ + "▁Miz", + -13.526935577392578 + ], + [ + "▁Foundations", + -13.526948928833008 + ], + [ + "▁Pointe", + -13.526998519897461 + ], + [ + "▁genotype", + -13.527026176452637 + ], + [ + "Club", + -13.527119636535645 + ], + [ + "▁Static", + -13.527140617370605 + ], + [ + "▁giggle", + -13.527168273925781 + ], + [ + "iter", + -13.527172088623047 + ], + [ + "tah", + -13.527199745178223 + ], + [ + "TEN", + -13.527203559875488 + ], + [ + "▁glorified", + -13.527257919311523 + ], + [ + "▁390", + -13.527287483215332 + ], + [ + "▁Stupid", + -13.52729320526123 + ], + [ + "▁sliders", + -13.527316093444824 + ], + [ + "▁Tera", + -13.527345657348633 + ], + [ + "▁propagate", + -13.527406692504883 + ], + [ + "▁banjo", + -13.527420043945312 + ], + [ + "eum", + -13.527502059936523 + ], + [ + "▁Norse", + -13.527517318725586 + ], + [ + "▁XV", + -13.527541160583496 + ], + [ + "▁Lowry", + -13.52756118774414 + ], + [ + "▁490", + -13.527571678161621 + ], + [ + "▁Geometry", + -13.527750968933105 + ], + [ + "▁Decker", + -13.527862548828125 + ], + [ + "▁wagons", + -13.527875900268555 + ], + [ + "discipline", + -13.527884483337402 + ], + [ + "▁Teenage", + -13.527905464172363 + ], + [ + "▁tensile", + -13.527953147888184 + ], + [ + "▁Manson", + -13.527983665466309 + ], + [ + "▁Draper", + -13.528014183044434 + ], + [ + "▁Lamps", + -13.528024673461914 + ], + [ + "▁Charts", + -13.528155326843262 + ], + [ + "▁paternal", + -13.528181076049805 + ], + [ + "▁manipulative", + -13.528294563293457 + ], + [ + "▁accordion", + -13.528325080871582 + ], + [ + "▁maturation", + -13.528347969055176 + ], + [ + "▁sr", + -13.528372764587402 + ], + [ + "ре", + -13.528395652770996 + ], + [ + "▁Posting", + -13.528403282165527 + ], + [ + "▁Completion", + -13.528409004211426 + ], + [ + "MAT", + -13.528430938720703 + ], + [ + "▁Hemingway", + -13.528546333312988 + ], + [ + "▁uncontrolled", + -13.528555870056152 + ], + [ + "▁boulders", + -13.52856731414795 + ], + [ + "▁malaysia", + -13.528685569763184 + ], + [ + "▁Wie", + -13.528712272644043 + ], + [ + "exist", + -13.528765678405762 + ], + [ + "▁UNICEF", + -13.52877140045166 + ], + [ + "wana", + -13.528790473937988 + ], + [ + "Wait", + -13.528815269470215 + ], + [ + "esis", + -13.528824806213379 + ], + [ + "Thomas", + -13.528932571411133 + ], + [ + "▁enactment", + -13.528938293457031 + ], + [ + "▁Supplemental", + -13.528977394104004 + ], + [ + "▁Doo", + -13.528979301452637 + ], + [ + "▁medial", + -13.528983116149902 + ], + [ + "Would", + -13.529013633728027 + ], + [ + "▁Frames", + -13.529075622558594 + ], + [ + "▁Thereafter", + -13.52907943725586 + ], + [ + "▁Maiden", + -13.52921199798584 + ], + [ + "▁linguistics", + -13.529282569885254 + ], + [ + "tory", + -13.529285430908203 + ], + [ + "Bridge", + -13.529376983642578 + ], + [ + "▁MAS", + -13.52941608428955 + ], + [ + "▁Eh", + -13.529520988464355 + ], + [ + "Monday", + -13.529541015625 + ], + [ + "▁₹", + -13.529541015625 + ], + [ + "▁musically", + -13.529559135437012 + ], + [ + "▁rhymes", + -13.529607772827148 + ], + [ + "▁behaves", + -13.529618263244629 + ], + [ + "▁Shampoo", + -13.529707908630371 + ], + [ + "▁Bak", + -13.52971076965332 + ], + [ + "▁unmistakable", + -13.529719352722168 + ], + [ + "▁plow", + -13.52983283996582 + ], + [ + "▁Huh", + -13.529861450195312 + ], + [ + "Phil", + -13.529909133911133 + ], + [ + "▁PEN", + -13.529932022094727 + ], + [ + "UTC", + -13.529942512512207 + ], + [ + "▁McKenna", + -13.529962539672852 + ], + [ + "▁Lamborghini", + -13.529986381530762 + ], + [ + "▁Huskies", + -13.530020713806152 + ], + [ + "▁Tem", + -13.530062675476074 + ], + [ + "Band", + -13.530182838439941 + ], + [ + "▁Gainesville", + -13.530198097229004 + ], + [ + "▁obedient", + -13.530292510986328 + ], + [ + "▁ebb", + -13.530329704284668 + ], + [ + "▁endanger", + -13.530330657958984 + ], + [ + "▁Mood", + -13.530388832092285 + ], + [ + "▁commemorative", + -13.530397415161133 + ], + [ + "▁PSG", + -13.530428886413574 + ], + [ + "▁stink", + -13.530471801757812 + ], + [ + "▁Swamp", + -13.530481338500977 + ], + [ + "▁receptacle", + -13.530509948730469 + ], + [ + "▁chills", + -13.530522346496582 + ], + [ + "218", + -13.530555725097656 + ], + [ + "▁Cummins", + -13.5305757522583 + ], + [ + "▁egregious", + -13.530652046203613 + ], + [ + "Block", + -13.530769348144531 + ], + [ + "▁Caitlin", + -13.530784606933594 + ], + [ + "Their", + -13.530863761901855 + ], + [ + "SSA", + -13.530935287475586 + ], + [ + "OO", + -13.531018257141113 + ], + [ + "▁CRA", + -13.531086921691895 + ], + [ + "▁Soy", + -13.531089782714844 + ], + [ + "▁chia", + -13.53110122680664 + ], + [ + "▁oftentimes", + -13.531109809875488 + ], + [ + "Gate", + -13.531232833862305 + ], + [ + "184", + -13.531282424926758 + ], + [ + "▁panda", + -13.531282424926758 + ], + [ + "Mor", + -13.531299591064453 + ], + [ + "▁Tae", + -13.531363487243652 + ], + [ + "angan", + -13.531396865844727 + ], + [ + "▁Vuitton", + -13.53140640258789 + ], + [ + "▁Vulcan", + -13.531449317932129 + ], + [ + "▁Jeans", + -13.531463623046875 + ], + [ + "▁Summers", + -13.53147029876709 + ], + [ + "bos", + -13.53148078918457 + ], + [ + "▁treason", + -13.531486511230469 + ], + [ + "▁hesitated", + -13.531492233276367 + ], + [ + "hammer", + -13.531515121459961 + ], + [ + "им", + -13.531518936157227 + ], + [ + "669", + -13.531536102294922 + ], + [ + "▁Diwali", + -13.531564712524414 + ], + [ + "Town", + -13.531620979309082 + ], + [ + "geo", + -13.531632423400879 + ], + [ + "cess", + -13.53174114227295 + ], + [ + "▁Wasn", + -13.531868934631348 + ], + [ + "▁armchair", + -13.531892776489258 + ], + [ + "▁Verification", + -13.531946182250977 + ], + [ + "▁endocrine", + -13.532017707824707 + ], + [ + "▁stochastic", + -13.532057762145996 + ], + [ + "▁cyclone", + -13.532148361206055 + ], + [ + "▁McGee", + -13.532157897949219 + ], + [ + "▁Sovereign", + -13.532185554504395 + ], + [ + "▁Grimm", + -13.532295227050781 + ], + [ + "▁servings", + -13.532357215881348 + ], + [ + "▁debacle", + -13.532411575317383 + ], + [ + "▁р", + -13.532526016235352 + ], + [ + "lying", + -13.532530784606934 + ], + [ + "▁recombinant", + -13.532537460327148 + ], + [ + "▁LOVED", + -13.532583236694336 + ], + [ + "▁adversaries", + -13.532669067382812 + ], + [ + "▁Authorization", + -13.532726287841797 + ], + [ + "ARC", + -13.532793045043945 + ], + [ + "251", + -13.532896041870117 + ], + [ + "▁gratifying", + -13.532938003540039 + ], + [ + "▁redo", + -13.53296947479248 + ], + [ + "HK", + -13.532992362976074 + ], + [ + "▁lan", + -13.533095359802246 + ], + [ + "▁lucid", + -13.533148765563965 + ], + [ + "jp", + -13.533154487609863 + ], + [ + "▁Appliances", + -13.533159255981445 + ], + [ + "▁incompetence", + -13.533177375793457 + ], + [ + "319", + -13.533187866210938 + ], + [ + "▁diagnosing", + -13.533247947692871 + ], + [ + "cic", + -13.533408164978027 + ], + [ + "▁adaptor", + -13.533419609069824 + ], + [ + "▁misfortune", + -13.533552169799805 + ], + [ + "▁naïve", + -13.533591270446777 + ], + [ + "▁Gurgaon", + -13.53376293182373 + ], + [ + "▁macOS", + -13.533893585205078 + ], + [ + "▁resourceful", + -13.533902168273926 + ], + [ + "1978", + -13.533967018127441 + ], + [ + "▁biographical", + -13.534016609191895 + ], + [ + "▁treble", + -13.534090995788574 + ], + [ + "▁invests", + -13.534096717834473 + ], + [ + "▁copyrights", + -13.534141540527344 + ], + [ + "▁boardwalk", + -13.534193992614746 + ], + [ + "Application", + -13.534195899963379 + ], + [ + "▁Listings", + -13.534204483032227 + ], + [ + "ovi", + -13.534238815307617 + ], + [ + "▁xl", + -13.534245491027832 + ], + [ + "▁Exxon", + -13.534287452697754 + ], + [ + "▁Relative", + -13.534289360046387 + ], + [ + "AMA", + -13.534294128417969 + ], + [ + "▁Sixty", + -13.534307479858398 + ], + [ + "▁wacky", + -13.534333229064941 + ], + [ + "▁pedagogy", + -13.534404754638672 + ], + [ + "用", + -13.534411430358887 + ], + [ + "▁equivalents", + -13.534436225891113 + ], + [ + "rov", + -13.534533500671387 + ], + [ + "Sir", + -13.534602165222168 + ], + [ + "▁Putnam", + -13.534616470336914 + ], + [ + "▁Innovations", + -13.534717559814453 + ], + [ + "ads", + -13.534719467163086 + ], + [ + "▁Synthesis", + -13.534730911254883 + ], + [ + "▁pediatrician", + -13.534843444824219 + ], + [ + "▁Correction", + -13.534869194030762 + ], + [ + "▁Dyson", + -13.534924507141113 + ], + [ + "▁Playhouse", + -13.534942626953125 + ], + [ + "▁Decisions", + -13.534945487976074 + ], + [ + "▁INTO", + -13.534967422485352 + ], + [ + "▁nuggets", + -13.53510570526123 + ], + [ + "NES", + -13.535135269165039 + ], + [ + "▁Westwood", + -13.535174369812012 + ], + [ + "▁chute", + -13.535268783569336 + ], + [ + "▁Kahn", + -13.535290718078613 + ], + [ + "tc", + -13.535310745239258 + ], + [ + "▁turret", + -13.535350799560547 + ], + [ + "olla", + -13.535422325134277 + ], + [ + "▁grumpy", + -13.53544807434082 + ], + [ + "▁fleas", + -13.535449028015137 + ], + [ + "▁IDs", + -13.535456657409668 + ], + [ + "violent", + -13.535472869873047 + ], + [ + "▁republican", + -13.535524368286133 + ], + [ + "▁PEG", + -13.535576820373535 + ], + [ + "▁Roku", + -13.535594940185547 + ], + [ + "▁prune", + -13.53561019897461 + ], + [ + "▁Bridgewater", + -13.53569221496582 + ], + [ + "▁peat", + -13.535693168640137 + ], + [ + "▁Cremation", + -13.535745620727539 + ], + [ + "▁callers", + -13.535804748535156 + ], + [ + "▁weaves", + -13.535844802856445 + ], + [ + "▁cyclical", + -13.535855293273926 + ], + [ + "▁306", + -13.535979270935059 + ], + [ + "pee", + -13.535993576049805 + ], + [ + "▁bureaucrats", + -13.536002159118652 + ], + [ + "▁towed", + -13.536026000976562 + ], + [ + "ply", + -13.536056518554688 + ], + [ + "IFF", + -13.53605842590332 + ], + [ + "▁overpriced", + -13.536109924316406 + ], + [ + "▁Estonian", + -13.536120414733887 + ], + [ + "▁clamps", + -13.536123275756836 + ], + [ + "ieren", + -13.536128044128418 + ], + [ + "▁Sesame", + -13.536130905151367 + ], + [ + "pixel", + -13.536181449890137 + ], + [ + "▁dizzy", + -13.536206245422363 + ], + [ + "egan", + -13.536240577697754 + ], + [ + "▁Identifying", + -13.53625774383545 + ], + [ + "▁BOX", + -13.536279678344727 + ], + [ + "oud", + -13.536380767822266 + ], + [ + "▁Favourite", + -13.536436080932617 + ], + [ + "▁imposes", + -13.536455154418945 + ], + [ + "ulin", + -13.536579132080078 + ], + [ + "AQ", + -13.53658676147461 + ], + [ + "▁Zebra", + -13.536619186401367 + ], + [ + "▁Quantitative", + -13.536643981933594 + ], + [ + "▁venous", + -13.536703109741211 + ], + [ + "▁McGrath", + -13.536723136901855 + ], + [ + "▁deliciously", + -13.536723136901855 + ], + [ + "neo", + -13.536728858947754 + ], + [ + "output", + -13.536796569824219 + ], + [ + "▁Yuri", + -13.536799430847168 + ], + [ + "▁Rachael", + -13.536816596984863 + ], + [ + "▁brine", + -13.536821365356445 + ], + [ + "▁Tango", + -13.536897659301758 + ], + [ + "▁seasonally", + -13.536952018737793 + ], + [ + "▁Browning", + -13.537142753601074 + ], + [ + "272", + -13.537168502807617 + ], + [ + "▁weaponry", + -13.537186622619629 + ], + [ + "▁Reddy", + -13.537187576293945 + ], + [ + "▁strata", + -13.53719711303711 + ], + [ + "ि", + -13.537199020385742 + ], + [ + "▁KI", + -13.537237167358398 + ], + [ + "inner", + -13.537347793579102 + ], + [ + "▁submarines", + -13.537416458129883 + ], + [ + "▁Centro", + -13.537433624267578 + ], + [ + "▁nuclei", + -13.537455558776855 + ], + [ + "▁DSM", + -13.537467956542969 + ], + [ + "▁assesses", + -13.537495613098145 + ], + [ + "comb", + -13.537637710571289 + ], + [ + "▁resonated", + -13.537779808044434 + ], + [ + "▁revolver", + -13.537830352783203 + ], + [ + "▁Johannes", + -13.537869453430176 + ], + [ + "▁STD", + -13.537879943847656 + ], + [ + "ORS", + -13.537943840026855 + ], + [ + "▁repel", + -13.538022994995117 + ], + [ + "▁Emory", + -13.538150787353516 + ], + [ + "▁headsets", + -13.538187980651855 + ], + [ + "▁Tol", + -13.538220405578613 + ], + [ + "▁Accountants", + -13.538235664367676 + ], + [ + "▁Associations", + -13.538276672363281 + ], + [ + "▁Nowhere", + -13.538350105285645 + ], + [ + "▁grenade", + -13.538481712341309 + ], + [ + "lord", + -13.538588523864746 + ], + [ + "▁VHS", + -13.53861141204834 + ], + [ + "▁Fitz", + -13.538617134094238 + ], + [ + "▁Ortho", + -13.538628578186035 + ], + [ + "▁Estimates", + -13.538681983947754 + ], + [ + "▁saute", + -13.538773536682129 + ], + [ + "rano", + -13.538778305053711 + ], + [ + "▁convection", + -13.538803100585938 + ], + [ + "▁waffles", + -13.538803100585938 + ], + [ + "▁unchecked", + -13.5388822555542 + ], + [ + "▁Picnic", + -13.538895606994629 + ], + [ + "▁reinstated", + -13.538938522338867 + ], + [ + "▁Delight", + -13.539021492004395 + ], + [ + "▁echoing", + -13.539033889770508 + ], + [ + "hosted", + -13.539048194885254 + ], + [ + "▁inquired", + -13.53911018371582 + ], + [ + "▁microfiber", + -13.539144515991211 + ], + [ + "▁г", + -13.539164543151855 + ], + [ + "▁healthiest", + -13.539305686950684 + ], + [ + "▁smith", + -13.539344787597656 + ], + [ + "▁gre", + -13.539363861083984 + ], + [ + "▁Nets", + -13.53940200805664 + ], + [ + "▁rejuvenation", + -13.539409637451172 + ], + [ + "bby", + -13.539411544799805 + ], + [ + "▁cri", + -13.53941822052002 + ], + [ + "temp", + -13.539488792419434 + ], + [ + "▁lounging", + -13.539623260498047 + ], + [ + "said", + -13.53966236114502 + ], + [ + "▁Gallup", + -13.539679527282715 + ], + [ + "▁Attempt", + -13.539695739746094 + ], + [ + "▁OLD", + -13.539710998535156 + ], + [ + "▁stereotypical", + -13.539721488952637 + ], + [ + "▁muttered", + -13.539742469787598 + ], + [ + "gap", + -13.539762496948242 + ], + [ + "▁Scrum", + -13.539762496948242 + ], + [ + "▁Imran", + -13.539773941040039 + ], + [ + "status", + -13.53980827331543 + ], + [ + "▁Recorder", + -13.539889335632324 + ], + [ + "▁Fidelity", + -13.539909362792969 + ], + [ + "▁flirt", + -13.539915084838867 + ], + [ + "▁Pigeon", + -13.539989471435547 + ], + [ + "ambi", + -13.540087699890137 + ], + [ + "▁Dumps", + -13.540125846862793 + ], + [ + "▁dunno", + -13.5402193069458 + ], + [ + "▁TRUE", + -13.540356636047363 + ], + [ + "dried", + -13.540393829345703 + ], + [ + "▁corrugated", + -13.540403366088867 + ], + [ + "▁reed", + -13.540552139282227 + ], + [ + "А", + -13.540597915649414 + ], + [ + "▁Chopra", + -13.540611267089844 + ], + [ + "▁emergent", + -13.540661811828613 + ], + [ + "▁Urdu", + -13.540687561035156 + ], + [ + "▁rainwater", + -13.540705680847168 + ], + [ + "▁licensee", + -13.5407133102417 + ], + [ + "▁Karan", + -13.540726661682129 + ], + [ + "▁jumbo", + -13.540736198425293 + ], + [ + "▁Jenn", + -13.540763854980469 + ], + [ + "▁arse", + -13.540779113769531 + ], + [ + "fixed", + -13.540815353393555 + ], + [ + "meth", + -13.540833473205566 + ], + [ + "rup", + -13.540847778320312 + ], + [ + "▁STA", + -13.540858268737793 + ], + [ + "▁Goodwill", + -13.540875434875488 + ], + [ + "▁marinated", + -13.540889739990234 + ], + [ + "▁abbreviated", + -13.54094409942627 + ], + [ + "coach", + -13.540971755981445 + ], + [ + "▁Robyn", + -13.540979385375977 + ], + [ + "sister", + -13.541050910949707 + ], + [ + "▁fished", + -13.541122436523438 + ], + [ + "▁Yadav", + -13.541157722473145 + ], + [ + "oya", + -13.541160583496094 + ], + [ + "▁Hinduism", + -13.541223526000977 + ], + [ + "▁hastily", + -13.541227340698242 + ], + [ + "▁Montenegro", + -13.541236877441406 + ], + [ + "height", + -13.541263580322266 + ], + [ + "▁obscured", + -13.541318893432617 + ], + [ + "▁Debit", + -13.541336059570312 + ], + [ + "enti", + -13.541376113891602 + ], + [ + "exempt", + -13.5413818359375 + ], + [ + "cri", + -13.541481018066406 + ], + [ + "kus", + -13.541488647460938 + ], + [ + "▁japanese", + -13.541510581970215 + ], + [ + "▁Tallahassee", + -13.54154109954834 + ], + [ + "▁archipelago", + -13.541543960571289 + ], + [ + "▁hummus", + -13.54161548614502 + ], + [ + "publishing", + -13.541646003723145 + ], + [ + "TING", + -13.541664123535156 + ], + [ + "lek", + -13.541678428649902 + ], + [ + "▁XM", + -13.541692733764648 + ], + [ + "▁flanked", + -13.541711807250977 + ], + [ + "▁kneeling", + -13.54171371459961 + ], + [ + "▁Dyer", + -13.541743278503418 + ], + [ + "▁trembling", + -13.541747093200684 + ], + [ + "▁Minds", + -13.541752815246582 + ], + [ + "▁Grad", + -13.541781425476074 + ], + [ + "266", + -13.541788101196289 + ], + [ + "▁Hof", + -13.541825294494629 + ], + [ + "▁dew", + -13.541845321655273 + ], + [ + "▁normative", + -13.541862487792969 + ], + [ + "▁snuggle", + -13.541906356811523 + ], + [ + "▁Ramp", + -13.541914939880371 + ], + [ + "eca", + -13.541933059692383 + ], + [ + "▁cactus", + -13.54194164276123 + ], + [ + "▁repayments", + -13.541963577270508 + ], + [ + "▁Cups", + -13.541975021362305 + ], + [ + "▁►", + -13.542057037353516 + ], + [ + "▁Vivo", + -13.542057991027832 + ], + [ + "▁Erika", + -13.542069435119629 + ], + [ + "organ", + -13.542098999023438 + ], + [ + "tips", + -13.542162895202637 + ], + [ + "▁DIN", + -13.54221248626709 + ], + [ + "▁dismantling", + -13.542229652404785 + ], + [ + "▁dh", + -13.542236328125 + ], + [ + "CY", + -13.54223918914795 + ], + [ + "▁strung", + -13.54224681854248 + ], + [ + "▁Yvonne", + -13.542304992675781 + ], + [ + "ales", + -13.542359352111816 + ], + [ + "▁Jericho", + -13.542451858520508 + ], + [ + "▁spearheaded", + -13.542486190795898 + ], + [ + "▁UBS", + -13.54269027709961 + ], + [ + "▁Seneca", + -13.54302978515625 + ], + [ + "▁Ameri", + -13.543039321899414 + ], + [ + "▁optimised", + -13.543078422546387 + ], + [ + "Request", + -13.543111801147461 + ], + [ + "▁Hiking", + -13.543194770812988 + ], + [ + "▁typography", + -13.543307304382324 + ], + [ + "▁watermark", + -13.543375015258789 + ], + [ + "▁Leads", + -13.543384552001953 + ], + [ + "uva", + -13.54344367980957 + ], + [ + "▁Sour", + -13.543466567993164 + ], + [ + "▁Contrast", + -13.543479919433594 + ], + [ + "▁Blackhawks", + -13.54349136352539 + ], + [ + "▁770", + -13.543502807617188 + ], + [ + "▁Nearest", + -13.543525695800781 + ], + [ + "▁POV", + -13.543636322021484 + ], + [ + "▁Skye", + -13.54367733001709 + ], + [ + "akh", + -13.543719291687012 + ], + [ + "▁checkbox", + -13.543781280517578 + ], + [ + "Director", + -13.543830871582031 + ], + [ + "VB", + -13.543899536132812 + ], + [ + "▁nas", + -13.54391098022461 + ], + [ + "forms", + -13.544088363647461 + ], + [ + "▁Ibn", + -13.544129371643066 + ], + [ + "▁Paterson", + -13.544137954711914 + ], + [ + "▁Tuition", + -13.544188499450684 + ], + [ + "▁Sushi", + -13.544259071350098 + ], + [ + "▁infiltrate", + -13.544306755065918 + ], + [ + "Mid", + -13.544347763061523 + ], + [ + "▁Capitals", + -13.544401168823242 + ], + [ + "▁Ensuring", + -13.544407844543457 + ], + [ + "▁Tobias", + -13.54440975189209 + ], + [ + "▁Timeline", + -13.544439315795898 + ], + [ + "Silver", + -13.544441223144531 + ], + [ + "▁Flags", + -13.544466972351074 + ], + [ + "▁snowball", + -13.544506072998047 + ], + [ + "▁Lover", + -13.544530868530273 + ], + [ + "▁Eb", + -13.544564247131348 + ], + [ + "▁Intro", + -13.544599533081055 + ], + [ + "Though", + -13.544624328613281 + ], + [ + "▁Garry", + -13.544635772705078 + ], + [ + "▁avert", + -13.544659614562988 + ], + [ + "▁sump", + -13.544754028320312 + ], + [ + "Arab", + -13.544776916503906 + ], + [ + "Dear", + -13.544788360595703 + ], + [ + "▁slant", + -13.544795036315918 + ], + [ + "▁197", + -13.544825553894043 + ], + [ + "▁spanned", + -13.54485034942627 + ], + [ + "▁Eucharist", + -13.544966697692871 + ], + [ + "▁Attached", + -13.545036315917969 + ], + [ + "เ", + -13.545050621032715 + ], + [ + "▁composites", + -13.54505443572998 + ], + [ + "▁Faster", + -13.54506778717041 + ], + [ + "▁pap", + -13.545082092285156 + ], + [ + "▁fostered", + -13.545084953308105 + ], + [ + "▁Francesco", + -13.54510498046875 + ], + [ + "▁annex", + -13.54513168334961 + ], + [ + "▁faithfulness", + -13.545190811157227 + ], + [ + "▁fastened", + -13.545276641845703 + ], + [ + "▁quell", + -13.545387268066406 + ], + [ + "▁Warcraft", + -13.545463562011719 + ], + [ + "▁Marino", + -13.545515060424805 + ], + [ + "▁restitution", + -13.54554271697998 + ], + [ + "▁positives", + -13.545577049255371 + ], + [ + "▁molten", + -13.545601844787598 + ], + [ + "ques", + -13.545726776123047 + ], + [ + "▁batsman", + -13.545818328857422 + ], + [ + "▁galore", + -13.545825004577637 + ], + [ + "▁chock", + -13.545914649963379 + ], + [ + "▁Seating", + -13.54596996307373 + ], + [ + "▁categorize", + -13.545989036560059 + ], + [ + "Walk", + -13.546026229858398 + ], + [ + "▁sharpening", + -13.546090126037598 + ], + [ + "bek", + -13.546097755432129 + ], + [ + "▁Umbrella", + -13.546116828918457 + ], + [ + "county", + -13.546120643615723 + ], + [ + "▁imperialism", + -13.546195983886719 + ], + [ + "▁Physiology", + -13.546219825744629 + ], + [ + "▁Obesity", + -13.546229362487793 + ], + [ + "▁buyout", + -13.54623794555664 + ], + [ + "▁Ashland", + -13.546276092529297 + ], + [ + "▁ousted", + -13.546371459960938 + ], + [ + "tang", + -13.546401023864746 + ], + [ + "▁clap", + -13.546411514282227 + ], + [ + "▁diva", + -13.546493530273438 + ], + [ + "▁eradication", + -13.546544075012207 + ], + [ + "structure", + -13.546573638916016 + ], + [ + "601", + -13.546578407287598 + ], + [ + "▁Xin", + -13.546600341796875 + ], + [ + "▁570", + -13.546602249145508 + ], + [ + "▁Peaks", + -13.546621322631836 + ], + [ + "▁gels", + -13.54665470123291 + ], + [ + "HH", + -13.546722412109375 + ], + [ + "▁groomed", + -13.546771049499512 + ], + [ + "▁yoghurt", + -13.546850204467773 + ], + [ + "▁hob", + -13.546854972839355 + ], + [ + "▁parades", + -13.546867370605469 + ], + [ + "▁bracing", + -13.546891212463379 + ], + [ + "▁1868", + -13.54694938659668 + ], + [ + "▁unplanned", + -13.54696273803711 + ], + [ + "ה", + -13.546977043151855 + ], + [ + "noise", + -13.54703140258789 + ], + [ + "▁exertion", + -13.547091484069824 + ], + [ + "▁Pumps", + -13.54710578918457 + ], + [ + "▁snorkel", + -13.547107696533203 + ], + [ + "▁Eduardo", + -13.547172546386719 + ], + [ + "▁Kelvin", + -13.5471773147583 + ], + [ + "▁Mayfield", + -13.547250747680664 + ], + [ + "▁minimizes", + -13.547289848327637 + ], + [ + "▁hygienic", + -13.547329902648926 + ], + [ + "sick", + -13.547419548034668 + ], + [ + "▁antidote", + -13.547480583190918 + ], + [ + "▁dryers", + -13.547552108764648 + ], + [ + "▁cemented", + -13.547667503356934 + ], + [ + "▁cohorts", + -13.547715187072754 + ], + [ + "▁hives", + -13.547783851623535 + ], + [ + "▁Wednesdays", + -13.547795295715332 + ], + [ + "▁deviations", + -13.547795295715332 + ], + [ + "▁Tuck", + -13.547924041748047 + ], + [ + "AIR", + -13.548018455505371 + ], + [ + "▁Quin", + -13.548047065734863 + ], + [ + "▁horoscope", + -13.54813289642334 + ], + [ + "▁recital", + -13.548148155212402 + ], + [ + "encies", + -13.548149108886719 + ], + [ + "▁Sling", + -13.548149108886719 + ], + [ + "▁Warby", + -13.548175811767578 + ], + [ + "▁PAY", + -13.548215866088867 + ], + [ + "▁canister", + -13.54826831817627 + ], + [ + "▁Impressive", + -13.548333168029785 + ], + [ + "▁grader", + -13.548354148864746 + ], + [ + "▁Generate", + -13.548385620117188 + ], + [ + "▁altercation", + -13.548401832580566 + ], + [ + "▁Kellogg", + -13.548423767089844 + ], + [ + "▁totality", + -13.54847240447998 + ], + [ + "▁Deacon", + -13.548532485961914 + ], + [ + "▁Mikhail", + -13.548582077026367 + ], + [ + "▁sax", + -13.548602104187012 + ], + [ + "▁Osama", + -13.548636436462402 + ], + [ + "▁leaflets", + -13.548648834228516 + ], + [ + "▁licensors", + -13.548650741577148 + ], + [ + "▁machined", + -13.548789978027344 + ], + [ + "▁Fibre", + -13.54879379272461 + ], + [ + "▁bathe", + -13.54881763458252 + ], + [ + "▁chuckled", + -13.548820495605469 + ], + [ + "▁1851", + -13.548823356628418 + ], + [ + "▁nuance", + -13.548827171325684 + ], + [ + "▁championed", + -13.548828125 + ], + [ + "▁Grind", + -13.548840522766113 + ], + [ + "▁Blaze", + -13.548912048339844 + ], + [ + "▁Checkout", + -13.548927307128906 + ], + [ + "▁soprano", + -13.549039840698242 + ], + [ + "▁cookware", + -13.54904842376709 + ], + [ + "▁1872", + -13.549052238464355 + ], + [ + "▁Helm", + -13.549059867858887 + ], + [ + "▁prejudices", + -13.549103736877441 + ], + [ + "▁Fedora", + -13.549128532409668 + ], + [ + "dome", + -13.549144744873047 + ], + [ + "▁Fencing", + -13.549159049987793 + ], + [ + "cake", + -13.549212455749512 + ], + [ + "▁labyrinth", + -13.549283027648926 + ], + [ + "▁replying", + -13.549295425415039 + ], + [ + "▁intestines", + -13.549586296081543 + ], + [ + "eurs", + -13.549610137939453 + ], + [ + "▁AX", + -13.549649238586426 + ], + [ + "▁newborns", + -13.549753189086914 + ], + [ + "ти", + -13.549907684326172 + ], + [ + "▁Tum", + -13.549911499023438 + ], + [ + "provided", + -13.549915313720703 + ], + [ + "▁Exams", + -13.549918174743652 + ], + [ + "INO", + -13.549954414367676 + ], + [ + "▁hallways", + -13.549971580505371 + ], + [ + "ã", + -13.550100326538086 + ], + [ + "▁subcontractors", + -13.550139427185059 + ], + [ + "▁slotted", + -13.550223350524902 + ], + [ + "wani", + -13.550271034240723 + ], + [ + "▁inhalation", + -13.550352096557617 + ], + [ + "▁Frenchman", + -13.550487518310547 + ], + [ + "▁flax", + -13.550536155700684 + ], + [ + "▁outcry", + -13.550580978393555 + ], + [ + "▁breakfasts", + -13.550583839416504 + ], + [ + "▁Abdel", + -13.550617218017578 + ], + [ + "Anna", + -13.550638198852539 + ], + [ + "▁mantel", + -13.55064582824707 + ], + [ + "▁symbolizes", + -13.550712585449219 + ], + [ + "555", + -13.550740242004395 + ], + [ + "▁Phones", + -13.550760269165039 + ], + [ + "И", + -13.550790786743164 + ], + [ + "▁Adirondack", + -13.550792694091797 + ], + [ + "▁Lovers", + -13.550802230834961 + ], + [ + "Cross", + -13.550810813903809 + ], + [ + "▁2100", + -13.551002502441406 + ], + [ + "▁mammalian", + -13.551024436950684 + ], + [ + "▁Pathology", + -13.55102825164795 + ], + [ + "▁Houghton", + -13.551050186157227 + ], + [ + "▁Thursdays", + -13.55105972290039 + ], + [ + "hoe", + -13.551068305969238 + ], + [ + "cop", + -13.551070213317871 + ], + [ + "▁pla", + -13.551166534423828 + ], + [ + "▁perpetrator", + -13.551217079162598 + ], + [ + "▁cushioned", + -13.551241874694824 + ], + [ + "▁harrowing", + -13.551243782043457 + ], + [ + "▁rodent", + -13.551252365112305 + ], + [ + "▁Pico", + -13.55125617980957 + ], + [ + "▁bonnet", + -13.5513277053833 + ], + [ + "ENS", + -13.551446914672852 + ], + [ + "▁Pinnacle", + -13.551456451416016 + ], + [ + "▁familiarize", + -13.551466941833496 + ], + [ + "▁underdog", + -13.551482200622559 + ], + [ + "▁Piedmont", + -13.551488876342773 + ], + [ + "▁townhouse", + -13.55150318145752 + ], + [ + "limit", + -13.551526069641113 + ], + [ + "Say", + -13.551560401916504 + ], + [ + "▁tomography", + -13.551563262939453 + ], + [ + "orn", + -13.551567077636719 + ], + [ + "▁7000", + -13.551639556884766 + ], + [ + "▁Mateo", + -13.551677703857422 + ], + [ + "obi", + -13.551679611206055 + ], + [ + "▁Leipzig", + -13.551679611206055 + ], + [ + "Bal", + -13.551705360412598 + ], + [ + "isk", + -13.55170726776123 + ], + [ + "▁Micah", + -13.55172348022461 + ], + [ + "▁discouraging", + -13.551735877990723 + ], + [ + "ejo", + -13.551911354064941 + ], + [ + "▁δ", + -13.551941871643066 + ], + [ + "▁smartly", + -13.551947593688965 + ], + [ + "▁Neural", + -13.551948547363281 + ], + [ + "against", + -13.552000045776367 + ], + [ + "collection", + -13.552176475524902 + ], + [ + "▁ireland", + -13.552227973937988 + ], + [ + "▁eroded", + -13.552281379699707 + ], + [ + "logist", + -13.552289009094238 + ], + [ + "▁Italians", + -13.552309036254883 + ], + [ + "▁prospectus", + -13.552322387695312 + ], + [ + "▁Cate", + -13.552370071411133 + ], + [ + "▁copious", + -13.552458763122559 + ], + [ + "corruption", + -13.552617073059082 + ], + [ + "▁Paz", + -13.552617073059082 + ], + [ + "▁nightstand", + -13.552648544311523 + ], + [ + "ssel", + -13.552666664123535 + ], + [ + "▁gleaming", + -13.552762985229492 + ], + [ + "nath", + -13.552785873413086 + ], + [ + "▁preparatory", + -13.552895545959473 + ], + [ + "880", + -13.552902221679688 + ], + [ + "itation", + -13.552934646606445 + ], + [ + "▁journalistic", + -13.552962303161621 + ], + [ + "▁angered", + -13.552969932556152 + ], + [ + "▁GeForce", + -13.553003311157227 + ], + [ + "lani", + -13.553260803222656 + ], + [ + "LX", + -13.5532808303833 + ], + [ + "▁Jewellery", + -13.553357124328613 + ], + [ + "▁Dividend", + -13.553394317626953 + ], + [ + "ilia", + -13.553427696228027 + ], + [ + "display", + -13.553447723388672 + ], + [ + "feeding", + -13.553452491760254 + ], + [ + "▁saltwater", + -13.553491592407227 + ], + [ + "▁uma", + -13.553513526916504 + ], + [ + "▁nuns", + -13.55351734161377 + ], + [ + "▁aversion", + -13.553528785705566 + ], + [ + "▁indulging", + -13.553558349609375 + ], + [ + "▁colonization", + -13.55362606048584 + ], + [ + "kumar", + -13.55368709564209 + ], + [ + "Exception", + -13.553733825683594 + ], + [ + "▁Phyllis", + -13.553735733032227 + ], + [ + "protection", + -13.553741455078125 + ], + [ + "▁Chapters", + -13.553756713867188 + ], + [ + "▁LET", + -13.553766250610352 + ], + [ + "gul", + -13.55380916595459 + ], + [ + "▁glacial", + -13.553833961486816 + ], + [ + "▁morbidity", + -13.553936958312988 + ], + [ + "▁Wor", + -13.554064750671387 + ], + [ + "▁Jarvis", + -13.55413818359375 + ], + [ + "harm", + -13.554157257080078 + ], + [ + "402", + -13.554170608520508 + ], + [ + "▁amplifiers", + -13.554252624511719 + ], + [ + "▁beachfront", + -13.55439567565918 + ], + [ + "▁Р", + -13.554411888122559 + ], + [ + "hul", + -13.55445671081543 + ], + [ + "▁321", + -13.554458618164062 + ], + [ + "▁kindle", + -13.554474830627441 + ], + [ + "▁commemoration", + -13.554603576660156 + ], + [ + "▁660", + -13.554631233215332 + ], + [ + "▁blistering", + -13.554634094238281 + ], + [ + "▁Gems", + -13.554676055908203 + ], + [ + "▁fielding", + -13.554720878601074 + ], + [ + "▁embellishments", + -13.554743766784668 + ], + [ + "▁Revenge", + -13.554781913757324 + ], + [ + "▁assertive", + -13.554804801940918 + ], + [ + "Event", + -13.555015563964844 + ], + [ + "▁vacated", + -13.55504035949707 + ], + [ + "▁authenticate", + -13.55504322052002 + ], + [ + "megapixel", + -13.5550537109375 + ], + [ + "jobs", + -13.55515193939209 + ], + [ + "▁Sting", + -13.55521297454834 + ], + [ + "▁eyelids", + -13.555275917053223 + ], + [ + "ís", + -13.555318832397461 + ], + [ + "▁swine", + -13.555325508117676 + ], + [ + "▁Heller", + -13.55535888671875 + ], + [ + "▁remedial", + -13.555405616760254 + ], + [ + "▁dope", + -13.55546760559082 + ], + [ + "▁bib", + -13.555488586425781 + ], + [ + "▁248", + -13.555537223815918 + ], + [ + "▁Noida", + -13.555549621582031 + ], + [ + "▁rotting", + -13.555601119995117 + ], + [ + "▁Subjects", + -13.55566120147705 + ], + [ + "rita", + -13.555665969848633 + ], + [ + "▁py", + -13.555802345275879 + ], + [ + "▁Como", + -13.555829048156738 + ], + [ + "▁Aki", + -13.555841445922852 + ], + [ + "008", + -13.555852890014648 + ], + [ + "▁Viewing", + -13.555898666381836 + ], + [ + "rist", + -13.555909156799316 + ], + [ + "Arm", + -13.555913925170898 + ], + [ + "▁Trilogy", + -13.555924415588379 + ], + [ + "▁Offensive", + -13.555986404418945 + ], + [ + "asta", + -13.556011199951172 + ], + [ + "▁Pun", + -13.556126594543457 + ], + [ + "▁bodice", + -13.556259155273438 + ], + [ + "Learn", + -13.556323051452637 + ], + [ + "fault", + -13.556325912475586 + ], + [ + "GAAP", + -13.556458473205566 + ], + [ + "▁Zap", + -13.556565284729004 + ], + [ + "xia", + -13.556580543518066 + ], + [ + "▁Maxi", + -13.55661678314209 + ], + [ + "▁genera", + -13.556797981262207 + ], + [ + "nay", + -13.556830406188965 + ], + [ + "iac", + -13.556927680969238 + ], + [ + "▁Congregation", + -13.557026863098145 + ], + [ + "byte", + -13.557046890258789 + ], + [ + "▁Soo", + -13.55713939666748 + ], + [ + "▁Annette", + -13.557141304016113 + ], + [ + "イ", + -13.557158470153809 + ], + [ + "▁hypnotic", + -13.55720329284668 + ], + [ + "Turn", + -13.557229042053223 + ], + [ + "▁Travelers", + -13.557246208190918 + ], + [ + "▁Susie", + -13.557292938232422 + ], + [ + "▁Courthouse", + -13.55729866027832 + ], + [ + "▁Happens", + -13.557332038879395 + ], + [ + "enbach", + -13.557332992553711 + ], + [ + "▁SAC", + -13.55734634399414 + ], + [ + "Bird", + -13.557357788085938 + ], + [ + "▁hor", + -13.557393074035645 + ], + [ + "▁splurge", + -13.557404518127441 + ], + [ + "▁Kidd", + -13.557427406311035 + ], + [ + "▁DEL", + -13.557445526123047 + ], + [ + "▁determinants", + -13.557467460632324 + ], + [ + "▁Heidelberg", + -13.557501792907715 + ], + [ + "▁locksmiths", + -13.557531356811523 + ], + [ + "▁Engines", + -13.557558059692383 + ], + [ + "▁Embrace", + -13.55758285522461 + ], + [ + "▁classifications", + -13.557619094848633 + ], + [ + "font", + -13.557622909545898 + ], + [ + "▁Skate", + -13.557637214660645 + ], + [ + "▁amazement", + -13.557641983032227 + ], + [ + "▁prequel", + -13.557658195495605 + ], + [ + "rier", + -13.557727813720703 + ], + [ + "▁239", + -13.55774974822998 + ], + [ + "boarding", + -13.557750701904297 + ], + [ + "▁eyelashes", + -13.557811737060547 + ], + [ + "industry", + -13.557845115661621 + ], + [ + "ienne", + -13.557868957519531 + ], + [ + "▁nc", + -13.557880401611328 + ], + [ + "▁Caucasian", + -13.558003425598145 + ], + [ + "▁vests", + -13.558029174804688 + ], + [ + "▁Alamo", + -13.558107376098633 + ], + [ + "▁Dewey", + -13.558198928833008 + ], + [ + "▁Partial", + -13.558311462402344 + ], + [ + "▁bookstores", + -13.558319091796875 + ], + [ + "▁woody", + -13.558355331420898 + ], + [ + "▁coincides", + -13.558403015136719 + ], + [ + "▁callback", + -13.558464050292969 + ], + [ + "▁bookmarking", + -13.558472633361816 + ], + [ + "▁kitchenette", + -13.558487892150879 + ], + [ + "▁Baptism", + -13.55854606628418 + ], + [ + "▁CTO", + -13.558574676513672 + ], + [ + "▁fiance", + -13.558627128601074 + ], + [ + "▁PSI", + -13.558709144592285 + ], + [ + "mega", + -13.55871295928955 + ], + [ + "▁Rhine", + -13.55872917175293 + ], + [ + "Craft", + -13.55875301361084 + ], + [ + "▁Henrik", + -13.558754920959473 + ], + [ + "▁1879", + -13.558762550354004 + ], + [ + "▁dielectric", + -13.558775901794434 + ], + [ + "warm", + -13.558778762817383 + ], + [ + "▁Cushion", + -13.558815002441406 + ], + [ + "▁bikers", + -13.55884838104248 + ], + [ + "▁sheen", + -13.558907508850098 + ], + [ + "309", + -13.559012413024902 + ], + [ + "▁Immuno", + -13.559041023254395 + ], + [ + "▁Wally", + -13.55909538269043 + ], + [ + "▁Lon", + -13.55911636352539 + ], + [ + "▁Ars", + -13.55916976928711 + ], + [ + "▁Hungry", + -13.559192657470703 + ], + [ + "Kids", + -13.559213638305664 + ], + [ + "▁wreckage", + -13.559280395507812 + ], + [ + "▁stipend", + -13.559287071228027 + ], + [ + "▁texted", + -13.559378623962402 + ], + [ + "▁brownie", + -13.559398651123047 + ], + [ + "▁kilo", + -13.559402465820312 + ], + [ + "asso", + -13.559547424316406 + ], + [ + "253", + -13.559579849243164 + ], + [ + "▁eleventh", + -13.559588432312012 + ], + [ + "bak", + -13.55959415435791 + ], + [ + "uchi", + -13.55982494354248 + ], + [ + "▁combos", + -13.559839248657227 + ], + [ + "▁trove", + -13.559867858886719 + ], + [ + "▁licking", + -13.559870719909668 + ], + [ + "▁Miley", + -13.559871673583984 + ], + [ + "▁Dyna", + -13.559915542602539 + ], + [ + "▁Chestnut", + -13.559920310974121 + ], + [ + "HAM", + -13.559953689575195 + ], + [ + "▁appease", + -13.559968948364258 + ], + [ + "Mel", + -13.559996604919434 + ], + [ + "▁McQueen", + -13.56004810333252 + ], + [ + "acha", + -13.560136795043945 + ], + [ + "▁HEAD", + -13.560172080993652 + ], + [ + "▁roadways", + -13.5603609085083 + ], + [ + "▁denote", + -13.560375213623047 + ], + [ + "▁Haw", + -13.560503005981445 + ], + [ + "▁Nai", + -13.560517311096191 + ], + [ + "▁Uses", + -13.560547828674316 + ], + [ + "MON", + -13.560602188110352 + ], + [ + "milk", + -13.56063175201416 + ], + [ + "▁198", + -13.560678482055664 + ], + [ + "▁Classmates", + -13.560708045959473 + ], + [ + "▁NDA", + -13.5607271194458 + ], + [ + "▁Sinatra", + -13.560791969299316 + ], + [ + "▁perfumes", + -13.560877799987793 + ], + [ + "▁PARTY", + -13.560935020446777 + ], + [ + "▁trimmer", + -13.560956954956055 + ], + [ + "▁Peck", + -13.560962677001953 + ], + [ + "▁taping", + -13.561025619506836 + ], + [ + "▁customizing", + -13.561049461364746 + ], + [ + "▁moody", + -13.561060905456543 + ], + [ + "▁religiously", + -13.561147689819336 + ], + [ + "ów", + -13.561171531677246 + ], + [ + "▁Seas", + -13.56139850616455 + ], + [ + "▁311", + -13.561403274536133 + ], + [ + "izz", + -13.561481475830078 + ], + [ + "인", + -13.561491012573242 + ], + [ + "▁Tires", + -13.561517715454102 + ], + [ + "▁Meets", + -13.56157112121582 + ], + [ + "▁Peacock", + -13.561583518981934 + ], + [ + "▁animate", + -13.561614990234375 + ], + [ + "cine", + -13.561681747436523 + ], + [ + "▁obituary", + -13.561902046203613 + ], + [ + "▁dismissing", + -13.561925888061523 + ], + [ + "dum", + -13.562058448791504 + ], + [ + "▁feral", + -13.562065124511719 + ], + [ + "▁hu", + -13.56216049194336 + ], + [ + "Multi", + -13.562190055847168 + ], + [ + "▁Suarez", + -13.562202453613281 + ], + [ + "ppa", + -13.562203407287598 + ], + [ + "▁aerodynamic", + -13.562206268310547 + ], + [ + "Pal", + -13.562219619750977 + ], + [ + "▁1812", + -13.562235832214355 + ], + [ + "▁★", + -13.562273979187012 + ], + [ + "▁Contracting", + -13.562300682067871 + ], + [ + "▁Shaker", + -13.56232738494873 + ], + [ + "▁Coliseum", + -13.562335968017578 + ], + [ + "▁Switching", + -13.562366485595703 + ], + [ + "sive", + -13.562421798706055 + ], + [ + "▁Latina", + -13.562446594238281 + ], + [ + "▁Acc", + -13.562463760375977 + ], + [ + "▁Asians", + -13.562509536743164 + ], + [ + "▁tion", + -13.562515258789062 + ], + [ + "package", + -13.562603950500488 + ], + [ + "bits", + -13.562662124633789 + ], + [ + "▁labelling", + -13.562784194946289 + ], + [ + "1976", + -13.56279468536377 + ], + [ + "▁endeavours", + -13.562820434570312 + ], + [ + "TZ", + -13.562828063964844 + ], + [ + "vana", + -13.562830924987793 + ], + [ + "Е", + -13.5628662109375 + ], + [ + "▁Accu", + -13.56292724609375 + ], + [ + "▁inflamed", + -13.562936782836914 + ], + [ + "otte", + -13.56298542022705 + ], + [ + "1977", + -13.563102722167969 + ], + [ + "▁Elisabeth", + -13.56310749053955 + ], + [ + "▁Alerts", + -13.5631103515625 + ], + [ + "▁Redmond", + -13.563172340393066 + ], + [ + "▁Knob", + -13.563179969787598 + ], + [ + "▁Lulu", + -13.563179969787598 + ], + [ + "ards", + -13.563228607177734 + ], + [ + "witch", + -13.563237190246582 + ], + [ + "▁Chalk", + -13.563237190246582 + ], + [ + "▁governs", + -13.563246726989746 + ], + [ + "SIS", + -13.563262939453125 + ], + [ + "▁Massey", + -13.563265800476074 + ], + [ + "▁telegraph", + -13.563311576843262 + ], + [ + "▁Yogi", + -13.563547134399414 + ], + [ + "▁walkways", + -13.563553810119629 + ], + [ + "aron", + -13.563560485839844 + ], + [ + "▁biomarkers", + -13.563579559326172 + ], + [ + "▁babysitter", + -13.563677787780762 + ], + [ + "▁sixties", + -13.563804626464844 + ], + [ + "▁lactose", + -13.56383228302002 + ], + [ + "lation", + -13.563835144042969 + ], + [ + "STER", + -13.563844680786133 + ], + [ + "▁Sino", + -13.563847541809082 + ], + [ + "▁Studying", + -13.563857078552246 + ], + [ + "▁hier", + -13.563947677612305 + ], + [ + "ect", + -13.564045906066895 + ], + [ + "Spec", + -13.564167976379395 + ], + [ + "strike", + -13.564228057861328 + ], + [ + "▁surging", + -13.564242362976074 + ], + [ + "▁snoring", + -13.564248085021973 + ], + [ + "▁Macintosh", + -13.564278602600098 + ], + [ + "▁cuz", + -13.564319610595703 + ], + [ + "cade", + -13.564379692077637 + ], + [ + "▁bearish", + -13.564398765563965 + ], + [ + "▁Convertible", + -13.564547538757324 + ], + [ + "▁INCLUDING", + -13.564556121826172 + ], + [ + "▁postoperative", + -13.564568519592285 + ], + [ + "995", + -13.564589500427246 + ], + [ + "▁Saratoga", + -13.56459903717041 + ], + [ + "▁prof", + -13.564606666564941 + ], + [ + "▁descendant", + -13.564619064331055 + ], + [ + "▁adjective", + -13.564692497253418 + ], + [ + "▁staggered", + -13.564701080322266 + ], + [ + "▁warehousing", + -13.564826011657715 + ], + [ + "▁Mariah", + -13.56483268737793 + ], + [ + "▁Symbol", + -13.564837455749512 + ], + [ + "▁Magnesium", + -13.564882278442383 + ], + [ + "paste", + -13.564949035644531 + ], + [ + "▁equates", + -13.56506633758545 + ], + [ + "▁retractable", + -13.565096855163574 + ], + [ + "True", + -13.565173149108887 + ], + [ + "▁Clearwater", + -13.565193176269531 + ], + [ + "▁mysteriously", + -13.565224647521973 + ], + [ + "▁spores", + -13.565228462219238 + ], + [ + "▁integrations", + -13.565261840820312 + ], + [ + "▁enslaved", + -13.565300941467285 + ], + [ + "kay", + -13.56539249420166 + ], + [ + "trol", + -13.565404891967773 + ], + [ + "▁Amit", + -13.565471649169922 + ], + [ + "▁ingrained", + -13.56548023223877 + ], + [ + "▁abyss", + -13.565496444702148 + ], + [ + "▁quantified", + -13.565526962280273 + ], + [ + "fishing", + -13.56555461883545 + ], + [ + "▁Continued", + -13.565601348876953 + ], + [ + "▁sexy", + -13.565616607666016 + ], + [ + "hoc", + -13.565685272216797 + ], + [ + "ün", + -13.56570816040039 + ], + [ + "▁Faucet", + -13.565710067749023 + ], + [ + "Ask", + -13.5657958984375 + ], + [ + "040", + -13.565821647644043 + ], + [ + "chemistry", + -13.56585693359375 + ], + [ + "▁Beatrice", + -13.565937995910645 + ], + [ + "▁Collin", + -13.565991401672363 + ], + [ + "▁comedies", + -13.566045761108398 + ], + [ + "▁gm", + -13.566057205200195 + ], + [ + "▁astute", + -13.566180229187012 + ], + [ + "▁bordered", + -13.566268920898438 + ], + [ + "▁enlighten", + -13.56627368927002 + ], + [ + "▁telescopes", + -13.56627368927002 + ], + [ + "▁delicately", + -13.566340446472168 + ], + [ + "▁Bigger", + -13.566447257995605 + ], + [ + "▁chipping", + -13.566466331481934 + ], + [ + "▁NAT", + -13.566522598266602 + ], + [ + "하는", + -13.566551208496094 + ], + [ + "▁560", + -13.566560745239258 + ], + [ + "▁Ott", + -13.56658935546875 + ], + [ + "▁Watches", + -13.566662788391113 + ], + [ + "▁Contributions", + -13.566688537597656 + ], + [ + "▁Chet", + -13.566707611083984 + ], + [ + "▁quotas", + -13.566732406616211 + ], + [ + "▁IOC", + -13.566740036010742 + ], + [ + "▁WHICH", + -13.566751480102539 + ], + [ + "▁symptomatic", + -13.566787719726562 + ], + [ + "FOR", + -13.566852569580078 + ], + [ + "▁ligaments", + -13.566883087158203 + ], + [ + "Sec", + -13.566887855529785 + ], + [ + "▁1878", + -13.566890716552734 + ], + [ + "savvy", + -13.566947937011719 + ], + [ + "▁CME", + -13.566965103149414 + ], + [ + "▁foreigner", + -13.566970825195312 + ], + [ + "▁Punjabi", + -13.566976547241211 + ], + [ + "▁Dist", + -13.566996574401855 + ], + [ + "▁ECM", + -13.56700325012207 + ], + [ + "fps", + -13.567136764526367 + ], + [ + "▁densities", + -13.56716537475586 + ], + [ + "wang", + -13.567184448242188 + ], + [ + "▁complains", + -13.567273139953613 + ], + [ + "▁Dep", + -13.567306518554688 + ], + [ + "▁uns", + -13.567437171936035 + ], + [ + "plo", + -13.567485809326172 + ], + [ + "adventure", + -13.567533493041992 + ], + [ + "▁bowler", + -13.56761646270752 + ], + [ + "▁resent", + -13.56762409210205 + ], + [ + "▁leaky", + -13.567628860473633 + ], + [ + "▁beetles", + -13.567654609680176 + ], + [ + "▁captions", + -13.56766414642334 + ], + [ + "▁owls", + -13.56767463684082 + ], + [ + "▁curate", + -13.567803382873535 + ], + [ + "edged", + -13.567851066589355 + ], + [ + "▁mainstay", + -13.567855834960938 + ], + [ + "▁fender", + -13.567922592163086 + ], + [ + "▁Wagon", + -13.567925453186035 + ], + [ + "▁Djokovic", + -13.567943572998047 + ], + [ + "▁miR", + -13.567955017089844 + ], + [ + "NAS", + -13.56799602508545 + ], + [ + "grandchildren", + -13.568058967590332 + ], + [ + "▁Retired", + -13.568120002746582 + ], + [ + "▁Od", + -13.568126678466797 + ], + [ + "▁formulating", + -13.568137168884277 + ], + [ + "▁virtuous", + -13.568159103393555 + ], + [ + "hun", + -13.568211555480957 + ], + [ + "imp", + -13.568238258361816 + ], + [ + "gis", + -13.568340301513672 + ], + [ + "▁soldering", + -13.56834888458252 + ], + [ + "▁grove", + -13.568374633789062 + ], + [ + "▁bulge", + -13.568402290344238 + ], + [ + "▁fic", + -13.568445205688477 + ], + [ + "▁Fault", + -13.56844711303711 + ], + [ + "▁Raised", + -13.568514823913574 + ], + [ + "▁Colton", + -13.568595886230469 + ], + [ + "▁Spins", + -13.568632125854492 + ], + [ + "▁observable", + -13.568703651428223 + ], + [ + "▁Acceptance", + -13.568737030029297 + ], + [ + "▁Markus", + -13.568760871887207 + ], + [ + "olin", + -13.568775177001953 + ], + [ + "▁photoshop", + -13.568855285644531 + ], + [ + "▁£200", + -13.568917274475098 + ], + [ + "▁hinged", + -13.568925857543945 + ], + [ + "hong", + -13.568934440612793 + ], + [ + "▁BuzzFeed", + -13.56894302368164 + ], + [ + "▁woken", + -13.568967819213867 + ], + [ + "memory", + -13.569062232971191 + ], + [ + "▁steward", + -13.56909465789795 + ], + [ + "▁Joaquin", + -13.569168090820312 + ], + [ + "▁504", + -13.56928539276123 + ], + [ + "▁Nay", + -13.569291114807129 + ], + [ + "▁silenced", + -13.56932544708252 + ], + [ + "▁Lud", + -13.569344520568848 + ], + [ + "▁Shouldn", + -13.569369316101074 + ], + [ + "▁Ladder", + -13.569397926330566 + ], + [ + "▁conservatory", + -13.569454193115234 + ], + [ + "Ban", + -13.569524765014648 + ], + [ + "▁rushes", + -13.569572448730469 + ], + [ + "▁handsets", + -13.56958293914795 + ], + [ + "▁Holm", + -13.569631576538086 + ], + [ + "▁maxi", + -13.569707870483398 + ], + [ + "▁Badge", + -13.569721221923828 + ], + [ + "▁lotus", + -13.569780349731445 + ], + [ + "▁Bent", + -13.569925308227539 + ], + [ + "▁Goodbye", + -13.569931030273438 + ], + [ + "▁Blueprint", + -13.569952011108398 + ], + [ + "▁sedentary", + -13.569977760314941 + ], + [ + "▁CHA", + -13.56998348236084 + ], + [ + "▁clo", + -13.56998348236084 + ], + [ + "▁CNA", + -13.569990158081055 + ], + [ + "wards", + -13.570056915283203 + ], + [ + "▁multiplying", + -13.570107460021973 + ], + [ + "ás", + -13.570172309875488 + ], + [ + "▁roommates", + -13.570310592651367 + ], + [ + "▁centimeters", + -13.570317268371582 + ], + [ + "▁ushered", + -13.570329666137695 + ], + [ + "▁Pang", + -13.570362091064453 + ], + [ + "▁wird", + -13.570374488830566 + ], + [ + "▁anxieties", + -13.570396423339844 + ], + [ + "▁xp", + -13.570439338684082 + ], + [ + "▁Lyle", + -13.570501327514648 + ], + [ + "▁Rog", + -13.570547103881836 + ], + [ + "▁crippled", + -13.57055950164795 + ], + [ + "individual", + -13.570626258850098 + ], + [ + "475", + -13.570688247680664 + ], + [ + "▁Strap", + -13.570745468139648 + ], + [ + "History", + -13.570822715759277 + ], + [ + "YL", + -13.57088565826416 + ], + [ + "cre", + -13.570907592773438 + ], + [ + "▁bp", + -13.57091236114502 + ], + [ + "267", + -13.570977210998535 + ], + [ + "starting", + -13.570995330810547 + ], + [ + "▁hernia", + -13.57099723815918 + ], + [ + "▁muck", + -13.571162223815918 + ], + [ + "▁Alam", + -13.571167945861816 + ], + [ + "▁extracellular", + -13.571200370788574 + ], + [ + "▁Cattle", + -13.571213722229004 + ], + [ + "▁Invitations", + -13.57123851776123 + ], + [ + "▁Connolly", + -13.571300506591797 + ], + [ + "▁earbuds", + -13.571333885192871 + ], + [ + "gai", + -13.571385383605957 + ], + [ + "▁Sewing", + -13.571406364440918 + ], + [ + "MeToo", + -13.571479797363281 + ], + [ + "▁flares", + -13.571640014648438 + ], + [ + "▁refinancing", + -13.571834564208984 + ], + [ + "rne", + -13.571836471557617 + ], + [ + "▁Lithuanian", + -13.571839332580566 + ], + [ + "▁Huron", + -13.571868896484375 + ], + [ + "▁Proven", + -13.571884155273438 + ], + [ + "▁executes", + -13.57188606262207 + ], + [ + "▁Vapor", + -13.57190227508545 + ], + [ + "▁sauté", + -13.571927070617676 + ], + [ + "utz", + -13.57199478149414 + ], + [ + "▁Spicer", + -13.572005271911621 + ], + [ + "▁lifeless", + -13.572029113769531 + ], + [ + "▁1866", + -13.572046279907227 + ], + [ + "tw", + -13.572054862976074 + ], + [ + "Far", + -13.572062492370605 + ], + [ + "▁tannins", + -13.57207202911377 + ], + [ + "ibo", + -13.572073936462402 + ], + [ + "KR", + -13.572103500366211 + ], + [ + "▁Carb", + -13.572123527526855 + ], + [ + "masters", + -13.572161674499512 + ], + [ + "chon", + -13.572239875793457 + ], + [ + "▁Analytical", + -13.572250366210938 + ], + [ + "395", + -13.572297096252441 + ], + [ + "▁Spade", + -13.572298049926758 + ], + [ + "▁FTSE", + -13.57233715057373 + ], + [ + "▁Benchmark", + -13.572397232055664 + ], + [ + "▁splendor", + -13.572417259216309 + ], + [ + "anger", + -13.572465896606445 + ], + [ + "▁Guthrie", + -13.572494506835938 + ], + [ + "▁Libra", + -13.572515487670898 + ], + [ + "▁plunging", + -13.572530746459961 + ], + [ + "▁Jed", + -13.572545051574707 + ], + [ + "▁Rud", + -13.572549819946289 + ], + [ + "▁Basque", + -13.572562217712402 + ], + [ + "▁deems", + -13.572749137878418 + ], + [ + "▁Verse", + -13.57284164428711 + ], + [ + "▁snowboarding", + -13.572908401489258 + ], + [ + "▁inhaled", + -13.572936058044434 + ], + [ + "▁tout", + -13.57296085357666 + ], + [ + "racing", + -13.572969436645508 + ], + [ + "▁BIM", + -13.572982788085938 + ], + [ + "▁Virgil", + -13.573004722595215 + ], + [ + "▁Aidan", + -13.573044776916504 + ], + [ + "Beat", + -13.573062896728516 + ], + [ + "dat", + -13.573070526123047 + ], + [ + "▁Gab", + -13.57307243347168 + ], + [ + "ár", + -13.573078155517578 + ], + [ + "▁succumbed", + -13.573153495788574 + ], + [ + "amento", + -13.57326602935791 + ], + [ + "▁Marquette", + -13.573301315307617 + ], + [ + "BH", + -13.573369026184082 + ], + [ + "rone", + -13.57342529296875 + ], + [ + "▁dispense", + -13.573490142822266 + ], + [ + "kim", + -13.573503494262695 + ], + [ + "uld", + -13.573534965515137 + ], + [ + "▁Poet", + -13.573534965515137 + ], + [ + "▁adorn", + -13.573535919189453 + ], + [ + "▁Aziz", + -13.573630332946777 + ], + [ + "▁Conservancy", + -13.573686599731445 + ], + [ + "▁Burk", + -13.573691368103027 + ], + [ + "Natural", + -13.57370376586914 + ], + [ + "whose", + -13.573710441589355 + ], + [ + "Easy", + -13.573714256286621 + ], + [ + "▁Immediate", + -13.573731422424316 + ], + [ + "phosphate", + -13.573745727539062 + ], + [ + "▁extradition", + -13.573775291442871 + ], + [ + "▁Regis", + -13.5737886428833 + ], + [ + "fourth", + -13.573813438415527 + ], + [ + "▁Ö", + -13.57388973236084 + ], + [ + "▁Allergy", + -13.573992729187012 + ], + [ + "▁WG", + -13.574027061462402 + ], + [ + "Nu", + -13.574034690856934 + ], + [ + "▁follicles", + -13.574056625366211 + ], + [ + "ет", + -13.574057579040527 + ], + [ + "▁jQuery", + -13.574074745178223 + ], + [ + "▁vat", + -13.574172019958496 + ], + [ + "blast", + -13.574212074279785 + ], + [ + "▁Epstein", + -13.574333190917969 + ], + [ + "▁Bugs", + -13.574341773986816 + ], + [ + "Act", + -13.5744047164917 + ], + [ + "▁gingerbread", + -13.574405670166016 + ], + [ + "▁sever", + -13.57446575164795 + ], + [ + "ppi", + -13.574584007263184 + ], + [ + "▁correlates", + -13.574623107910156 + ], + [ + "ь", + -13.57467269897461 + ], + [ + "▁Frazier", + -13.574728012084961 + ], + [ + "▁convict", + -13.574779510498047 + ], + [ + "▁IPCC", + -13.574820518493652 + ], + [ + "▁platoon", + -13.574862480163574 + ], + [ + "▁LOW", + -13.57494068145752 + ], + [ + "▁deviate", + -13.574946403503418 + ], + [ + "mixed", + -13.575069427490234 + ], + [ + "▁capitalists", + -13.575075149536133 + ], + [ + "▁Kru", + -13.575092315673828 + ], + [ + "▁Goff", + -13.575104713439941 + ], + [ + "▁ponytail", + -13.575125694274902 + ], + [ + "▁Abroad", + -13.57515811920166 + ], + [ + "▁Stain", + -13.575161933898926 + ], + [ + "▁fuelled", + -13.575201034545898 + ], + [ + "▁underage", + -13.575248718261719 + ], + [ + "meric", + -13.575261116027832 + ], + [ + "▁Kindly", + -13.575301170349121 + ], + [ + "▁protracted", + -13.575347900390625 + ], + [ + "▁mexico", + -13.575417518615723 + ], + [ + "DER", + -13.575440406799316 + ], + [ + "▁discord", + -13.575453758239746 + ], + [ + "▁Hawai", + -13.57547378540039 + ], + [ + "▁Dresden", + -13.57551097869873 + ], + [ + "Cash", + -13.575565338134766 + ], + [ + "▁Bologna", + -13.575572967529297 + ], + [ + "▁AGAIN", + -13.575586318969727 + ], + [ + "▁CSC", + -13.575591087341309 + ], + [ + "▁Peg", + -13.575592041015625 + ], + [ + "▁Gemma", + -13.575655937194824 + ], + [ + "▁Magnum", + -13.575672149658203 + ], + [ + "hus", + -13.57578182220459 + ], + [ + "▁336", + -13.57581615447998 + ], + [ + "▁multilingual", + -13.57581901550293 + ], + [ + "▁PERFECT", + -13.575823783874512 + ], + [ + "▁SHIPPING", + -13.575931549072266 + ], + [ + "▁pandemic", + -13.575956344604492 + ], + [ + "CNN", + -13.575993537902832 + ], + [ + "▁TNF", + -13.576066017150879 + ], + [ + "▁bal", + -13.576080322265625 + ], + [ + "▁Detox", + -13.576126098632812 + ], + [ + "▁wiggle", + -13.576136589050293 + ], + [ + "▁slamming", + -13.576163291931152 + ], + [ + "▁Makers", + -13.576252937316895 + ], + [ + "▁freaked", + -13.576435089111328 + ], + [ + "▁lounges", + -13.576521873474121 + ], + [ + "060", + -13.576565742492676 + ], + [ + "MLS", + -13.576579093933105 + ], + [ + "been", + -13.57663345336914 + ], + [ + "▁Verb", + -13.576675415039062 + ], + [ + "▁Organizer", + -13.576680183410645 + ], + [ + "▁Predators", + -13.57677173614502 + ], + [ + "▁Fukushima", + -13.576825141906738 + ], + [ + "▁Considered", + -13.576851844787598 + ], + [ + "Daily", + -13.576883316040039 + ], + [ + "▁π", + -13.576883316040039 + ], + [ + "▁Embedded", + -13.576898574829102 + ], + [ + "▁Feminist", + -13.576903343200684 + ], + [ + "▁glitches", + -13.576983451843262 + ], + [ + "yx", + -13.577005386352539 + ], + [ + "▁Jolie", + -13.577017784118652 + ], + [ + "▁Curve", + -13.57705020904541 + ], + [ + "basic", + -13.577058792114258 + ], + [ + "▁unwelcome", + -13.577061653137207 + ], + [ + "jal", + -13.57711124420166 + ], + [ + "Learning", + -13.577167510986328 + ], + [ + "lice", + -13.577171325683594 + ], + [ + "▁crescent", + -13.577173233032227 + ], + [ + "▁Outcomes", + -13.577194213867188 + ], + [ + "▁chairperson", + -13.57721996307373 + ], + [ + "▁Establish", + -13.57724380493164 + ], + [ + "▁divider", + -13.577305793762207 + ], + [ + "▁itineraries", + -13.577347755432129 + ], + [ + "chet", + -13.577384948730469 + ], + [ + "▁LOOK", + -13.57744312286377 + ], + [ + "rip", + -13.577462196350098 + ], + [ + "▁Provo", + -13.577486038208008 + ], + [ + "▁betray", + -13.577515602111816 + ], + [ + "emann", + -13.577526092529297 + ], + [ + "다", + -13.577553749084473 + ], + [ + "▁pamphlet", + -13.577598571777344 + ], + [ + "▁McLaughlin", + -13.577614784240723 + ], + [ + "website", + -13.577634811401367 + ], + [ + "Select", + -13.577643394470215 + ], + [ + "▁solver", + -13.577657699584961 + ], + [ + "▁Tomatoes", + -13.57773494720459 + ], + [ + "▁Protected", + -13.57776165008545 + ], + [ + "▁Diving", + -13.577823638916016 + ], + [ + "▁stalks", + -13.577839851379395 + ], + [ + "assuming", + -13.577864646911621 + ], + [ + "EY", + -13.577897071838379 + ], + [ + "▁WAN", + -13.57790756225586 + ], + [ + "▁Atari", + -13.577923774719238 + ], + [ + "listing", + -13.57798957824707 + ], + [ + "Quest", + -13.578025817871094 + ], + [ + "▁McCormick", + -13.578129768371582 + ], + [ + "lynn", + -13.578192710876465 + ], + [ + "ethnic", + -13.57819938659668 + ], + [ + "▁WorldCat", + -13.578210830688477 + ], + [ + "▁sleepers", + -13.57823657989502 + ], + [ + "▁Nordstrom", + -13.578262329101562 + ], + [ + "▁TNT", + -13.5783109664917 + ], + [ + "▁soles", + -13.578315734863281 + ], + [ + "▁notched", + -13.578353881835938 + ], + [ + "▁breezy", + -13.578423500061035 + ], + [ + "▁PRODUCTS", + -13.578473091125488 + ], + [ + "▁Samaritan", + -13.578654289245605 + ], + [ + "▁Ariz", + -13.57872486114502 + ], + [ + "▁heartache", + -13.578736305236816 + ], + [ + "▁Kis", + -13.578750610351562 + ], + [ + "▁pcs", + -13.578753471374512 + ], + [ + "worms", + -13.578768730163574 + ], + [ + "adh", + -13.578786849975586 + ], + [ + "▁newsroom", + -13.578831672668457 + ], + [ + "▁Invisalign", + -13.578834533691406 + ], + [ + "▁timers", + -13.578848838806152 + ], + [ + "FREE", + -13.579026222229004 + ], + [ + "▁¿", + -13.579028129577637 + ], + [ + "MED", + -13.579056739807129 + ], + [ + "▁disney", + -13.579092979431152 + ], + [ + "kW", + -13.579107284545898 + ], + [ + "▁Abram", + -13.579121589660645 + ], + [ + "▁abbreviation", + -13.579129219055176 + ], + [ + "Hop", + -13.579224586486816 + ], + [ + "DV", + -13.579241752624512 + ], + [ + "efficiency", + -13.579265594482422 + ], + [ + "▁Quaker", + -13.579302787780762 + ], + [ + "registered", + -13.579315185546875 + ], + [ + "pla", + -13.579355239868164 + ], + [ + "FY", + -13.57938289642334 + ], + [ + "▁sores", + -13.579468727111816 + ], + [ + "▁Supervisors", + -13.579527854919434 + ], + [ + "▁decoder", + -13.579618453979492 + ], + [ + "▁denominator", + -13.579642295837402 + ], + [ + "▁Madeleine", + -13.579809188842773 + ], + [ + "▁rhino", + -13.579852104187012 + ], + [ + "▁purses", + -13.579867362976074 + ], + [ + "▁mover", + -13.579911231994629 + ], + [ + "▁Burg", + -13.57992172241211 + ], + [ + "onda", + -13.579925537109375 + ], + [ + "▁forcefully", + -13.579988479614258 + ], + [ + "▁tripping", + -13.579998970031738 + ], + [ + "onne", + -13.580016136169434 + ], + [ + "adas", + -13.580044746398926 + ], + [ + "ICO", + -13.580050468444824 + ], + [ + "Should", + -13.580083847045898 + ], + [ + "forest", + -13.580137252807617 + ], + [ + "▁spanking", + -13.580141067504883 + ], + [ + "▁Oakley", + -13.580157279968262 + ], + [ + "▁innovator", + -13.58017635345459 + ], + [ + "▁FN", + -13.580218315124512 + ], + [ + "▁hump", + -13.580229759216309 + ], + [ + "▁Ska", + -13.580246925354004 + ], + [ + "▁disliked", + -13.580292701721191 + ], + [ + "hung", + -13.58033561706543 + ], + [ + "▁Puppet", + -13.580336570739746 + ], + [ + "▁Napoli", + -13.580370903015137 + ], + [ + "▁delegated", + -13.58043098449707 + ], + [ + "zek", + -13.580516815185547 + ], + [ + "▁Bathrooms", + -13.580582618713379 + ], + [ + "▁yarns", + -13.580583572387695 + ], + [ + "▁Rockford", + -13.580595016479492 + ], + [ + "▁Estimated", + -13.580607414245605 + ], + [ + "▁toothpick", + -13.580689430236816 + ], + [ + "▁payers", + -13.58069133758545 + ], + [ + "▁applicator", + -13.580714225769043 + ], + [ + "▁Tamara", + -13.580719947814941 + ], + [ + "▁multilateral", + -13.58073616027832 + ], + [ + "▁importer", + -13.580816268920898 + ], + [ + "▁Dispatch", + -13.580842971801758 + ], + [ + "▁HTTPS", + -13.580862998962402 + ], + [ + "▁prostitute", + -13.580938339233398 + ], + [ + "▁PAR", + -13.58094596862793 + ], + [ + "▁Skyline", + -13.58095645904541 + ], + [ + "▁lured", + -13.58098030090332 + ], + [ + "▁Gha", + -13.580988883972168 + ], + [ + "▁droplets", + -13.581046104431152 + ], + [ + "278", + -13.581106185913086 + ], + [ + "bite", + -13.581114768981934 + ], + [ + "▁Igor", + -13.58130168914795 + ], + [ + "▁headband", + -13.581326484680176 + ], + [ + "mari", + -13.581341743469238 + ], + [ + "▁CODE", + -13.581402778625488 + ], + [ + "▁Cesar", + -13.581409454345703 + ], + [ + "▁Scandinavia", + -13.581439018249512 + ], + [ + "▁pastime", + -13.581469535827637 + ], + [ + "▁sorely", + -13.5814790725708 + ], + [ + "▁Westfield", + -13.581490516662598 + ], + [ + "address", + -13.58154296875 + ], + [ + "▁aerosol", + -13.58160400390625 + ], + [ + "▁Apostles", + -13.581626892089844 + ], + [ + "▁Mater", + -13.581632614135742 + ], + [ + "▁Mot", + -13.58166217803955 + ], + [ + "▁Nerd", + -13.581781387329102 + ], + [ + "▁unison", + -13.581823348999023 + ], + [ + "rage", + -13.581849098205566 + ], + [ + "▁penguin", + -13.581849098205566 + ], + [ + "gut", + -13.581865310668945 + ], + [ + "▁Foo", + -13.581923484802246 + ], + [ + "875", + -13.582121849060059 + ], + [ + "▁relic", + -13.582133293151855 + ], + [ + "▁REM", + -13.582171440124512 + ], + [ + "▁Courage", + -13.582389831542969 + ], + [ + "▁Franc", + -13.58244800567627 + ], + [ + "transfer", + -13.5824556350708 + ], + [ + "▁Nicki", + -13.58250904083252 + ], + [ + "313", + -13.582600593566895 + ], + [ + "▁neutralize", + -13.582632064819336 + ], + [ + "▁treatise", + -13.582634925842285 + ], + [ + "▁hal", + -13.582663536071777 + ], + [ + "▁div", + -13.582667350769043 + ], + [ + "ال", + -13.582744598388672 + ], + [ + "Nice", + -13.582802772521973 + ], + [ + "flo", + -13.58283805847168 + ], + [ + "▁refundable", + -13.582864761352539 + ], + [ + "▁Peng", + -13.58290958404541 + ], + [ + "▁staunch", + -13.582932472229004 + ], + [ + "▁Ind", + -13.582948684692383 + ], + [ + "▁Wage", + -13.582974433898926 + ], + [ + "▁birdie", + -13.58300495147705 + ], + [ + "▁seperate", + -13.583012580871582 + ], + [ + "▁applicability", + -13.583073616027832 + ], + [ + "MIC", + -13.583081245422363 + ], + [ + "▁Straw", + -13.583086013793945 + ], + [ + "▁sem", + -13.583096504211426 + ], + [ + "▁woodwork", + -13.583187103271484 + ], + [ + "▁Maze", + -13.583202362060547 + ], + [ + "▁patchwork", + -13.58326530456543 + ], + [ + "▁Gives", + -13.583291053771973 + ], + [ + "▁dill", + -13.5834321975708 + ], + [ + "▁Canadiens", + -13.583471298217773 + ], + [ + "▁shrug", + -13.583494186401367 + ], + [ + "▁forage", + -13.58350944519043 + ], + [ + "▁proponent", + -13.583525657653809 + ], + [ + "approx", + -13.583581924438477 + ], + [ + "Golden", + -13.583586692810059 + ], + [ + "▁Christensen", + -13.583600997924805 + ], + [ + "▁236", + -13.58362102508545 + ], + [ + "▁Dir", + -13.583636283874512 + ], + [ + "▁SAFE", + -13.58366584777832 + ], + [ + "ogenesis", + -13.583666801452637 + ], + [ + "▁LINK", + -13.583699226379395 + ], + [ + "▁reigns", + -13.583725929260254 + ], + [ + "▁tampering", + -13.583797454833984 + ], + [ + "▁Consent", + -13.583806991577148 + ], + [ + "sq", + -13.58385181427002 + ], + [ + "▁num", + -13.583854675292969 + ], + [ + "▁misrepresentation", + -13.583860397338867 + ], + [ + "▁Turin", + -13.583959579467773 + ], + [ + "▁chainsaw", + -13.584016799926758 + ], + [ + "403", + -13.58407211303711 + ], + [ + "▁Bead", + -13.584074020385742 + ], + [ + "▁eyeliner", + -13.584113121032715 + ], + [ + "336", + -13.584162712097168 + ], + [ + "JO", + -13.584166526794434 + ], + [ + "▁purest", + -13.584190368652344 + ], + [ + "▁chromosomes", + -13.584208488464355 + ], + [ + "▁Ames", + -13.584230422973633 + ], + [ + "illion", + -13.584237098693848 + ], + [ + "▁Missile", + -13.584259033203125 + ], + [ + "▁Hadoop", + -13.58434772491455 + ], + [ + "▁194", + -13.584406852722168 + ], + [ + "▁skates", + -13.584412574768066 + ], + [ + "▁optimally", + -13.58442497253418 + ], + [ + "▁Stations", + -13.584527969360352 + ], + [ + "despite", + -13.584572792053223 + ], + [ + "▁rigidity", + -13.584595680236816 + ], + [ + "▁Floors", + -13.584599494934082 + ], + [ + "▁patched", + -13.584625244140625 + ], + [ + "▁annoy", + -13.584647178649902 + ], + [ + "▁Khu", + -13.584757804870605 + ], + [ + "▁concur", + -13.584973335266113 + ], + [ + "▁Santana", + -13.585017204284668 + ], + [ + "ط", + -13.5850191116333 + ], + [ + "Richard", + -13.585051536560059 + ], + [ + "▁pinning", + -13.58508586883545 + ], + [ + "▁238", + -13.58513069152832 + ], + [ + "▁ardent", + -13.585216522216797 + ], + [ + "asha", + -13.585306167602539 + ], + [ + "▁firmness", + -13.585309028625488 + ], + [ + "tempo", + -13.58531379699707 + ], + [ + "▁Realm", + -13.585323333740234 + ], + [ + "▁Capricorn", + -13.58533763885498 + ], + [ + "lace", + -13.585367202758789 + ], + [ + "▁flatten", + -13.585370063781738 + ], + [ + "▁poked", + -13.585379600524902 + ], + [ + "▁calmed", + -13.585437774658203 + ], + [ + "▁cuisines", + -13.58545207977295 + ], + [ + "gender", + -13.585468292236328 + ], + [ + "670", + -13.585480690002441 + ], + [ + "magnetic", + -13.585630416870117 + ], + [ + "closed", + -13.5857572555542 + ], + [ + "▁Corruption", + -13.585833549499512 + ], + [ + "▁McKinney", + -13.585893630981445 + ], + [ + "920", + -13.585996627807617 + ], + [ + "▁grate", + -13.586057662963867 + ], + [ + "▁preferential", + -13.586141586303711 + ], + [ + "▁Diameter", + -13.58621883392334 + ], + [ + "▁508", + -13.586268424987793 + ], + [ + "▁328", + -13.586274147033691 + ], + [ + "▁bangs", + -13.586276054382324 + ], + [ + "▁Memorandum", + -13.586312294006348 + ], + [ + "▁Ending", + -13.586335182189941 + ], + [ + "Scott", + -13.586348533630371 + ], + [ + "▁Separation", + -13.586350440979004 + ], + [ + "Islam", + -13.586358070373535 + ], + [ + "pitch", + -13.586371421813965 + ], + [ + "▁slumped", + -13.586407661437988 + ], + [ + "▁merchandising", + -13.586490631103516 + ], + [ + "▁psychotic", + -13.586540222167969 + ], + [ + "progress", + -13.586555480957031 + ], + [ + "▁Toxic", + -13.586564064025879 + ], + [ + "▁fledgling", + -13.586586952209473 + ], + [ + "▁fasteners", + -13.586605072021484 + ], + [ + "mite", + -13.586627006530762 + ], + [ + "Je", + -13.586743354797363 + ], + [ + "▁1869", + -13.586792945861816 + ], + [ + "▁particulate", + -13.586806297302246 + ], + [ + "▁asap", + -13.586832046508789 + ], + [ + "▁ISSN", + -13.586959838867188 + ], + [ + "▁reprinted", + -13.586980819702148 + ], + [ + "▁Prima", + -13.586987495422363 + ], + [ + "▁Bea", + -13.586994171142578 + ], + [ + "▁CHECK", + -13.58701229095459 + ], + [ + "typical", + -13.58707046508789 + ], + [ + "▁nfl", + -13.587212562561035 + ], + [ + "ز", + -13.587267875671387 + ], + [ + "▁Lehman", + -13.587284088134766 + ], + [ + "▁biologists", + -13.587284088134766 + ], + [ + "Everybody", + -13.587288856506348 + ], + [ + "wad", + -13.587316513061523 + ], + [ + "behind", + -13.587377548217773 + ], + [ + "▁Faux", + -13.587382316589355 + ], + [ + "▁biologically", + -13.587416648864746 + ], + [ + "▁confluence", + -13.587422370910645 + ], + [ + "▁Guardiola", + -13.587454795837402 + ], + [ + "▁liberalism", + -13.587576866149902 + ], + [ + "▁cancelling", + -13.587611198425293 + ], + [ + "▁mucus", + -13.587615013122559 + ], + [ + "▁forceful", + -13.587618827819824 + ], + [ + "▁gorilla", + -13.587627410888672 + ], + [ + "329", + -13.587684631347656 + ], + [ + "▁functionally", + -13.587702751159668 + ], + [ + "▁aisles", + -13.587815284729004 + ], + [ + "▁Artwork", + -13.587821006774902 + ], + [ + "▁Americana", + -13.587836265563965 + ], + [ + "▁Entering", + -13.587908744812012 + ], + [ + "▁stormwater", + -13.58802604675293 + ], + [ + "nom", + -13.588034629821777 + ], + [ + "▁Formerly", + -13.58806037902832 + ], + [ + "525", + -13.588072776794434 + ], + [ + "▁scum", + -13.588107109069824 + ], + [ + "č", + -13.588134765625 + ], + [ + "▁Alder", + -13.588138580322266 + ], + [ + "▁structurally", + -13.588188171386719 + ], + [ + "▁RBC", + -13.588279724121094 + ], + [ + "▁entertainers", + -13.588345527648926 + ], + [ + "stru", + -13.58845329284668 + ], + [ + "spa", + -13.588459014892578 + ], + [ + "▁Authorized", + -13.588493347167969 + ], + [ + "▁crocodile", + -13.588507652282715 + ], + [ + "▁Gris", + -13.588516235351562 + ], + [ + "▁Camino", + -13.588637351989746 + ], + [ + "▁congested", + -13.588644027709961 + ], + [ + "▁Kaufman", + -13.588656425476074 + ], + [ + "▁pouches", + -13.588663101196289 + ], + [ + "LESS", + -13.588664054870605 + ], + [ + "▁Appreciation", + -13.588692665100098 + ], + [ + "▁Stout", + -13.588706970214844 + ], + [ + "317", + -13.58870792388916 + ], + [ + "▁engulfed", + -13.588839530944824 + ], + [ + "281", + -13.58887004852295 + ], + [ + "▁Viper", + -13.588872909545898 + ], + [ + "▁restores", + -13.588920593261719 + ], + [ + "nian", + -13.588924407958984 + ], + [ + "▁scrum", + -13.588957786560059 + ], + [ + "▁dismantled", + -13.588990211486816 + ], + [ + "υ", + -13.589042663574219 + ], + [ + "274", + -13.589083671569824 + ], + [ + "▁blatantly", + -13.589085578918457 + ], + [ + "VN", + -13.58912467956543 + ], + [ + "yat", + -13.589168548583984 + ], + [ + "▁Sw", + -13.589186668395996 + ], + [ + "▁LAKE", + -13.589218139648438 + ], + [ + "them", + -13.589277267456055 + ], + [ + "▁gusts", + -13.589280128479004 + ], + [ + "▁comical", + -13.589303970336914 + ], + [ + "▁numbering", + -13.589320182800293 + ], + [ + "docs", + -13.589323043823242 + ], + [ + "balls", + -13.589367866516113 + ], + [ + "▁Dressing", + -13.58940315246582 + ], + [ + "▁CET", + -13.589411735534668 + ], + [ + "lr", + -13.589422225952148 + ], + [ + "960", + -13.589455604553223 + ], + [ + "lance", + -13.589455604553223 + ], + [ + "▁deadliest", + -13.5894775390625 + ], + [ + "▁downed", + -13.589518547058105 + ], + [ + "▁Yao", + -13.589544296264648 + ], + [ + "▁kingdoms", + -13.589594841003418 + ], + [ + "▁marsh", + -13.589665412902832 + ], + [ + "▁Soho", + -13.589692115783691 + ], + [ + "▁dominion", + -13.589799880981445 + ], + [ + "▁Milano", + -13.589807510375977 + ], + [ + "▁Cochrane", + -13.589823722839355 + ], + [ + "▁panelists", + -13.589841842651367 + ], + [ + "▁Quant", + -13.58985710144043 + ], + [ + "▁CASE", + -13.589943885803223 + ], + [ + "▁Kawa", + -13.589951515197754 + ], + [ + "sang", + -13.589970588684082 + ], + [ + "▁nonstop", + -13.590024948120117 + ], + [ + "▁Bury", + -13.590051651000977 + ], + [ + "▁Promotional", + -13.590102195739746 + ], + [ + "▁1857", + -13.590106010437012 + ], + [ + "vari", + -13.590130805969238 + ], + [ + "▁Khalid", + -13.590288162231445 + ], + [ + "▁roundtable", + -13.590292930603027 + ], + [ + "▁auditions", + -13.590339660644531 + ], + [ + "▁abreast", + -13.590372085571289 + ], + [ + "▁Dalai", + -13.590439796447754 + ], + [ + "197", + -13.590510368347168 + ], + [ + "▁ltd", + -13.590567588806152 + ], + [ + "KT", + -13.59058666229248 + ], + [ + "▁beak", + -13.590615272521973 + ], + [ + "policy", + -13.59062385559082 + ], + [ + "▁Charitable", + -13.590627670288086 + ], + [ + "▁Varsity", + -13.590688705444336 + ], + [ + "▁convene", + -13.590795516967773 + ], + [ + "▁hangar", + -13.590798377990723 + ], + [ + "▁lambs", + -13.590814590454102 + ], + [ + "▁Promotions", + -13.590836524963379 + ], + [ + "▁rambling", + -13.590865135192871 + ], + [ + "▁Bast", + -13.59093189239502 + ], + [ + "▁Ivanka", + -13.591078758239746 + ], + [ + "during", + -13.591167449951172 + ], + [ + "े", + -13.59117603302002 + ], + [ + "▁Adolf", + -13.591193199157715 + ], + [ + "▁derail", + -13.591195106506348 + ], + [ + "▁baffled", + -13.591294288635254 + ], + [ + "▁Yahweh", + -13.591364860534668 + ], + [ + "▁puzzling", + -13.591375350952148 + ], + [ + "▁Farming", + -13.591405868530273 + ], + [ + "KM", + -13.59140682220459 + ], + [ + "▁SOUTH", + -13.591415405273438 + ], + [ + "▁thwart", + -13.591469764709473 + ], + [ + "▁SNAP", + -13.591525077819824 + ], + [ + "tical", + -13.591684341430664 + ], + [ + "MAP", + -13.591768264770508 + ], + [ + "ppy", + -13.591775894165039 + ], + [ + "▁meditative", + -13.591782569885254 + ], + [ + "▁executions", + -13.591788291931152 + ], + [ + "▁dwindling", + -13.591793060302734 + ], + [ + "▁expel", + -13.591872215270996 + ], + [ + "▁disobedience", + -13.591920852661133 + ], + [ + "tir", + -13.5919771194458 + ], + [ + "▁ambush", + -13.59197998046875 + ], + [ + "▁insensitive", + -13.59197998046875 + ], + [ + "spiritual", + -13.592002868652344 + ], + [ + "lateral", + -13.592089653015137 + ], + [ + "▁ECU", + -13.592107772827148 + ], + [ + "▁Jeb", + -13.59216022491455 + ], + [ + "▁Libertarian", + -13.592181205749512 + ], + [ + "▁tendons", + -13.592242240905762 + ], + [ + "▁Meyers", + -13.592266082763672 + ], + [ + "meet", + -13.592283248901367 + ], + [ + "日", + -13.592287063598633 + ], + [ + "▁Plane", + -13.592347145080566 + ], + [ + "▁Honorable", + -13.59237289428711 + ], + [ + "▁clipboard", + -13.592379570007324 + ], + [ + "▁Mane", + -13.592382431030273 + ], + [ + "▁instructive", + -13.592432975769043 + ], + [ + "represented", + -13.592448234558105 + ], + [ + "▁crimson", + -13.592523574829102 + ], + [ + "▁Hawthorne", + -13.592540740966797 + ], + [ + "▁solidly", + -13.592581748962402 + ], + [ + "▁Payroll", + -13.592619895935059 + ], + [ + "▁COPD", + -13.592703819274902 + ], + [ + "inho", + -13.592805862426758 + ], + [ + "▁Glu", + -13.592878341674805 + ], + [ + "cla", + -13.592958450317383 + ], + [ + "tini", + -13.592974662780762 + ], + [ + "▁inventors", + -13.593080520629883 + ], + [ + "California", + -13.593132019042969 + ], + [ + "elen", + -13.59314250946045 + ], + [ + "Cool", + -13.593154907226562 + ], + [ + "▁workstations", + -13.593156814575195 + ], + [ + "▁Kell", + -13.593188285827637 + ], + [ + "chester", + -13.593253135681152 + ], + [ + "▁ponies", + -13.593271255493164 + ], + [ + "▁ISPs", + -13.593320846557617 + ], + [ + "▁Sak", + -13.593327522277832 + ], + [ + "killer", + -13.593334197998047 + ], + [ + "▁HDTV", + -13.593364715576172 + ], + [ + "vio", + -13.593375205993652 + ], + [ + "▁unauthorised", + -13.593388557434082 + ], + [ + "ISO", + -13.593398094177246 + ], + [ + "▁bombarded", + -13.593480110168457 + ], + [ + "▁Fel", + -13.593548774719238 + ], + [ + "chenko", + -13.593574523925781 + ], + [ + "pia", + -13.593626976013184 + ], + [ + "Energy", + -13.593635559082031 + ], + [ + "▁hoof", + -13.593709945678711 + ], + [ + "agne", + -13.593720436096191 + ], + [ + "oop", + -13.59379768371582 + ], + [ + "▁Stro", + -13.593862533569336 + ], + [ + "▁prostitutes", + -13.593996047973633 + ], + [ + "▁endo", + -13.59400749206543 + ], + [ + "picture", + -13.594015121459961 + ], + [ + "▁Granny", + -13.594080924987793 + ], + [ + "▁Polymer", + -13.594120025634766 + ], + [ + "icus", + -13.59415054321289 + ], + [ + "lau", + -13.594182968139648 + ], + [ + "▁Pledge", + -13.594244956970215 + ], + [ + "▁Arrival", + -13.594285011291504 + ], + [ + "ege", + -13.594325065612793 + ], + [ + "itan", + -13.594350814819336 + ], + [ + "▁Mayweather", + -13.594389915466309 + ], + [ + "quan", + -13.594405174255371 + ], + [ + "itor", + -13.594508171081543 + ], + [ + "dus", + -13.594547271728516 + ], + [ + "▁Siberia", + -13.594656944274902 + ], + [ + "kou", + -13.59467887878418 + ], + [ + "▁cos", + -13.594681739807129 + ], + [ + "▁Injuries", + -13.59470272064209 + ], + [ + "▁Horizontal", + -13.594775199890137 + ], + [ + "▁Ley", + -13.59480094909668 + ], + [ + "▁ETH", + -13.594805717468262 + ], + [ + "▁syndicate", + -13.594815254211426 + ], + [ + "▁nimble", + -13.594834327697754 + ], + [ + "▁Counselor", + -13.59488296508789 + ], + [ + "▁lightness", + -13.594919204711914 + ], + [ + "▁Fitzpatrick", + -13.594935417175293 + ], + [ + "kla", + -13.594962120056152 + ], + [ + "▁deg", + -13.594972610473633 + ], + [ + "▁Raider", + -13.594980239868164 + ], + [ + "▁VL", + -13.594983100891113 + ], + [ + "▁burgundy", + -13.595026969909668 + ], + [ + "257", + -13.595069885253906 + ], + [ + "▁sag", + -13.595105171203613 + ], + [ + "▁Hobbit", + -13.595130920410156 + ], + [ + "▁Legislation", + -13.595212936401367 + ], + [ + "▁annotations", + -13.595318794250488 + ], + [ + "ocytes", + -13.595327377319336 + ], + [ + "▁Karate", + -13.59533405303955 + ], + [ + "▁basins", + -13.595500946044922 + ], + [ + "bian", + -13.595539093017578 + ], + [ + "768", + -13.595605850219727 + ], + [ + "▁meth", + -13.595609664916992 + ], + [ + "▁Spatial", + -13.595630645751953 + ], + [ + "▁Ayurvedic", + -13.595632553100586 + ], + [ + "zzi", + -13.595633506774902 + ], + [ + "▁Painter", + -13.595686912536621 + ], + [ + "▁Flavor", + -13.595731735229492 + ], + [ + "▁ministerial", + -13.59579849243164 + ], + [ + "▁Hung", + -13.59588623046875 + ], + [ + "▁repurchase", + -13.595946311950684 + ], + [ + "▁Faye", + -13.59597396850586 + ], + [ + "▁Schwab", + -13.595988273620605 + ], + [ + "▁lagging", + -13.596031188964844 + ], + [ + "broken", + -13.596053123474121 + ], + [ + "▁symbolize", + -13.596055030822754 + ], + [ + "▁newbies", + -13.596060752868652 + ], + [ + "▁robin", + -13.596062660217285 + ], + [ + "▁Spicy", + -13.596114158630371 + ], + [ + "▁Norma", + -13.59627914428711 + ], + [ + "▁perpetrated", + -13.596304893493652 + ], + [ + "zawa", + -13.59635066986084 + ], + [ + "▁Blitz", + -13.59636116027832 + ], + [ + "▁autograph", + -13.596363067626953 + ], + [ + "505", + -13.596375465393066 + ], + [ + "▁555", + -13.596389770507812 + ], + [ + "▁Herrera", + -13.596433639526367 + ], + [ + "▁Superstar", + -13.596440315246582 + ], + [ + "▁checkpoints", + -13.596476554870605 + ], + [ + "▁Specialized", + -13.596478462219238 + ], + [ + "Brand", + -13.596660614013672 + ], + [ + "▁Fannie", + -13.596938133239746 + ], + [ + "nominated", + -13.596962928771973 + ], + [ + "▁incidentally", + -13.596990585327148 + ], + [ + "▁1873", + -13.596999168395996 + ], + [ + "▁mismatch", + -13.597038269042969 + ], + [ + "▁Hasan", + -13.597098350524902 + ], + [ + "▁fractional", + -13.597146987915039 + ], + [ + "▁thunderstorm", + -13.597153663635254 + ], + [ + "▁puberty", + -13.59717845916748 + ], + [ + "▁STAT", + -13.597267150878906 + ], + [ + "buying", + -13.597373962402344 + ], + [ + "bp", + -13.59741497039795 + ], + [ + "plain", + -13.597514152526855 + ], + [ + "▁cytokines", + -13.597533226013184 + ], + [ + "▁succumb", + -13.597535133361816 + ], + [ + "▁243", + -13.597572326660156 + ], + [ + "▁sighted", + -13.597618103027344 + ], + [ + "▁Citrix", + -13.59766960144043 + ], + [ + "▁Confidential", + -13.597811698913574 + ], + [ + "osity", + -13.597822189331055 + ], + [ + "▁flaps", + -13.597850799560547 + ], + [ + "▁classed", + -13.597861289978027 + ], + [ + "268", + -13.59788990020752 + ], + [ + "▁commentaries", + -13.597938537597656 + ], + [ + "▁momentous", + -13.597954750061035 + ], + [ + "▁emphasised", + -13.598026275634766 + ], + [ + "nature", + -13.598028182983398 + ], + [ + "▁Hess", + -13.598031997680664 + ], + [ + "▁goaltender", + -13.598088264465332 + ], + [ + "▁cla", + -13.598094940185547 + ], + [ + "▁Derry", + -13.598104476928711 + ], + [ + "▁hysterical", + -13.598126411437988 + ], + [ + "▁balsamic", + -13.598163604736328 + ], + [ + "▁OE", + -13.59821605682373 + ], + [ + "▁mummy", + -13.598309516906738 + ], + [ + "▁Reaction", + -13.598348617553711 + ], + [ + "▁Cyril", + -13.598371505737305 + ], + [ + "▁Carver", + -13.598411560058594 + ], + [ + "▁vegas", + -13.598456382751465 + ], + [ + "▁GV", + -13.598466873168945 + ], + [ + "▁anxiously", + -13.598522186279297 + ], + [ + "▁SX", + -13.59854507446289 + ], + [ + "▁CONTACT", + -13.598604202270508 + ], + [ + "▁Faust", + -13.59868049621582 + ], + [ + "▁Darrell", + -13.598700523376465 + ], + [ + "▁Branding", + -13.598701477050781 + ], + [ + "▁Akin", + -13.598703384399414 + ], + [ + "▁spool", + -13.598709106445312 + ], + [ + "▁annualized", + -13.598723411560059 + ], + [ + "▁Float", + -13.59878158569336 + ], + [ + "▁Hahn", + -13.598817825317383 + ], + [ + "▁Traveler", + -13.598969459533691 + ], + [ + "▁Emails", + -13.599010467529297 + ], + [ + "▁longitude", + -13.599015235900879 + ], + [ + "▁cro", + -13.599016189575195 + ], + [ + "trix", + -13.59910774230957 + ], + [ + "gil", + -13.599250793457031 + ], + [ + "▁Analyze", + -13.599254608154297 + ], + [ + "ρ", + -13.599278450012207 + ], + [ + "▁cutlery", + -13.599279403686523 + ], + [ + "▁clocked", + -13.599321365356445 + ], + [ + "▁Casinos", + -13.599355697631836 + ], + [ + "agon", + -13.599419593811035 + ], + [ + "▁tragically", + -13.599431991577148 + ], + [ + "▁SDS", + -13.599435806274414 + ], + [ + "▁stares", + -13.59946060180664 + ], + [ + "NEW", + -13.599571228027344 + ], + [ + "▁Monet", + -13.599594116210938 + ], + [ + "▁composting", + -13.599617958068848 + ], + [ + "dropping", + -13.599650382995605 + ], + [ + "▁Drone", + -13.59971809387207 + ], + [ + "297", + -13.599724769592285 + ], + [ + "assessment", + -13.599769592285156 + ], + [ + "▁Myself", + -13.59980297088623 + ], + [ + "▁softening", + -13.599820137023926 + ], + [ + "phil", + -13.599935531616211 + ], + [ + "nner", + -13.599939346313477 + ], + [ + "▁Slo", + -13.599950790405273 + ], + [ + "Mother", + -13.599977493286133 + ], + [ + "▁Grounds", + -13.600035667419434 + ], + [ + "▁Filled", + -13.60004997253418 + ], + [ + "▁Licence", + -13.600056648254395 + ], + [ + "▁Tec", + -13.600210189819336 + ], + [ + "▁Chakra", + -13.600217819213867 + ], + [ + "▁isolating", + -13.600249290466309 + ], + [ + "▁sketching", + -13.600306510925293 + ], + [ + "▁constructor", + -13.600312232971191 + ], + [ + "▁decency", + -13.600403785705566 + ], + [ + "nb", + -13.600451469421387 + ], + [ + "▁blanks", + -13.600469589233398 + ], + [ + "▁Kok", + -13.600484848022461 + ], + [ + "▁Josephine", + -13.600522994995117 + ], + [ + "riot", + -13.600536346435547 + ], + [ + "itta", + -13.600537300109863 + ], + [ + "▁1877", + -13.600565910339355 + ], + [ + "▁Haunted", + -13.600637435913086 + ], + [ + "▁Patron", + -13.600647926330566 + ], + [ + "▁tal", + -13.600663185119629 + ], + [ + "GD", + -13.600676536560059 + ], + [ + "▁sweeps", + -13.600749969482422 + ], + [ + "▁Tah", + -13.600796699523926 + ], + [ + "▁competes", + -13.600834846496582 + ], + [ + "rna", + -13.600837707519531 + ], + [ + "▁Lizzie", + -13.601049423217773 + ], + [ + "ologie", + -13.601149559020996 + ], + [ + "▁Attendance", + -13.601171493530273 + ], + [ + "rights", + -13.601202011108398 + ], + [ + "▁bouncy", + -13.601202011108398 + ], + [ + "▁Gardening", + -13.60123348236084 + ], + [ + "▁novella", + -13.601251602172852 + ], + [ + "025", + -13.601268768310547 + ], + [ + "stamp", + -13.601293563842773 + ], + [ + "▁Equipped", + -13.601346015930176 + ], + [ + "▁matrices", + -13.60142707824707 + ], + [ + "▁SSA", + -13.601493835449219 + ], + [ + "▁stunts", + -13.6015043258667 + ], + [ + "▁Scrub", + -13.60151195526123 + ], + [ + "▁Petr", + -13.601548194885254 + ], + [ + "▁blemishes", + -13.601552963256836 + ], + [ + "▁flannel", + -13.601558685302734 + ], + [ + "▁Lumia", + -13.601582527160645 + ], + [ + "▁Orientation", + -13.601600646972656 + ], + [ + "▁accuses", + -13.601654052734375 + ], + [ + "▁punishable", + -13.60176944732666 + ], + [ + "este", + -13.60179328918457 + ], + [ + "gm", + -13.601811408996582 + ], + [ + "▁extracurricular", + -13.601940155029297 + ], + [ + "garh", + -13.601967811584473 + ], + [ + "▁Gilmore", + -13.601970672607422 + ], + [ + "engineering", + -13.60197639465332 + ], + [ + "▁accommodates", + -13.602057456970215 + ], + [ + "ether", + -13.60207462310791 + ], + [ + "▁Zimmer", + -13.602191925048828 + ], + [ + "▁peep", + -13.602191925048828 + ], + [ + "▁intel", + -13.602204322814941 + ], + [ + "▁Compton", + -13.602234840393066 + ], + [ + "ं", + -13.60229778289795 + ], + [ + "xy", + -13.602323532104492 + ], + [ + "▁Bayesian", + -13.602334022521973 + ], + [ + "▁CAC", + -13.602337837219238 + ], + [ + "▁methamphetamine", + -13.602376937866211 + ], + [ + "wage", + -13.602378845214844 + ], + [ + "338", + -13.602490425109863 + ], + [ + "▁electrolyte", + -13.602560997009277 + ], + [ + "▁Beetle", + -13.602617263793945 + ], + [ + "▁Allowing", + -13.602621078491211 + ], + [ + "▁ADC", + -13.602639198303223 + ], + [ + "▁tireless", + -13.602697372436523 + ], + [ + "ом", + -13.60277271270752 + ], + [ + "▁för", + -13.602831840515137 + ], + [ + "▁Antenna", + -13.602837562561035 + ], + [ + "▁perpetually", + -13.60285758972168 + ], + [ + "▁Barre", + -13.60305404663086 + ], + [ + "▁Arrive", + -13.603070259094238 + ], + [ + "▁grossly", + -13.603079795837402 + ], + [ + "▁Strictly", + -13.603097915649414 + ], + [ + "▁placenta", + -13.603123664855957 + ], + [ + "▁deodorant", + -13.603168487548828 + ], + [ + "▁Batteries", + -13.603178977966309 + ], + [ + "uge", + -13.603193283081055 + ], + [ + "▁coordinators", + -13.603202819824219 + ], + [ + "yrs", + -13.60323715209961 + ], + [ + "▁Shown", + -13.603238105773926 + ], + [ + "▁Tuscan", + -13.603324890136719 + ], + [ + "▁ramen", + -13.603342056274414 + ], + [ + "▁patios", + -13.603350639343262 + ], + [ + "▁Interiors", + -13.603358268737793 + ], + [ + "Build", + -13.603372573852539 + ], + [ + "▁unclean", + -13.603520393371582 + ], + [ + "▁Dart", + -13.603538513183594 + ], + [ + "▁Mixing", + -13.603561401367188 + ], + [ + "structured", + -13.603569984436035 + ], + [ + "▁XII", + -13.603586196899414 + ], + [ + "▁DEN", + -13.60360050201416 + ], + [ + "▁hindrance", + -13.60364818572998 + ], + [ + "▁Muller", + -13.603652000427246 + ], + [ + "▁Eiffel", + -13.603653907775879 + ], + [ + "▁romp", + -13.603660583496094 + ], + [ + "▁uniformity", + -13.603706359863281 + ], + [ + "▁truffle", + -13.603757858276367 + ], + [ + "▁blurb", + -13.603854179382324 + ], + [ + "▁ACTION", + -13.60387134552002 + ], + [ + "pedia", + -13.603896141052246 + ], + [ + "▁px", + -13.603992462158203 + ], + [ + "▁GAAP", + -13.603997230529785 + ], + [ + "zza", + -13.604020118713379 + ], + [ + "▁infringing", + -13.604165077209473 + ], + [ + "▁mediate", + -13.604302406311035 + ], + [ + "▁cloths", + -13.60434341430664 + ], + [ + "▁lockers", + -13.604348182678223 + ], + [ + "▁Jio", + -13.60435962677002 + ], + [ + "▁valet", + -13.604540824890137 + ], + [ + "Cas", + -13.604584693908691 + ], + [ + "▁Castillo", + -13.6046142578125 + ], + [ + "▁polluting", + -13.604631423950195 + ], + [ + "discovery", + -13.604681015014648 + ], + [ + "▁Homeowners", + -13.604734420776367 + ], + [ + "▁feminists", + -13.60473918914795 + ], + [ + "arte", + -13.60486125946045 + ], + [ + "ambo", + -13.604959487915039 + ], + [ + "▁Peoria", + -13.604975700378418 + ], + [ + "▁sculpt", + -13.605066299438477 + ], + [ + "▁hol", + -13.605071067810059 + ], + [ + "▁worsened", + -13.605140686035156 + ], + [ + "NOT", + -13.605143547058105 + ], + [ + "▁polypropylene", + -13.60516357421875 + ], + [ + "▁freestanding", + -13.605173110961914 + ], + [ + "▁montage", + -13.605353355407715 + ], + [ + "radi", + -13.605358123779297 + ], + [ + "▁Entity", + -13.60536003112793 + ], + [ + "bler", + -13.605393409729004 + ], + [ + "▁Capitalism", + -13.605416297912598 + ], + [ + "▁eyelid", + -13.60544490814209 + ], + [ + "▁clustered", + -13.605525016784668 + ], + [ + "yna", + -13.6055269241333 + ], + [ + "▁tailgate", + -13.605640411376953 + ], + [ + "▁tallied", + -13.605656623840332 + ], + [ + "▁insolvency", + -13.605737686157227 + ], + [ + "Australia", + -13.605746269226074 + ], + [ + "▁Illegal", + -13.605757713317871 + ], + [ + "▁Scanner", + -13.605793952941895 + ], + [ + "▁Wanda", + -13.605850219726562 + ], + [ + "▁galley", + -13.60586929321289 + ], + [ + "▁Founders", + -13.60595703125 + ], + [ + "▁emulsion", + -13.60598373413086 + ], + [ + "▁Fossil", + -13.606040000915527 + ], + [ + "▁Texture", + -13.60605525970459 + ], + [ + "▁fascism", + -13.606091499328613 + ], + [ + "▁lightest", + -13.606109619140625 + ], + [ + "Zero", + -13.606163024902344 + ], + [ + "▁honda", + -13.606172561645508 + ], + [ + "▁Qualification", + -13.606178283691406 + ], + [ + "examination", + -13.606266975402832 + ], + [ + "▁Kaz", + -13.606281280517578 + ], + [ + "▁Arn", + -13.606354713439941 + ], + [ + "▁churning", + -13.606366157531738 + ], + [ + "SAR", + -13.606414794921875 + ], + [ + "▁Kappa", + -13.606414794921875 + ], + [ + "▁Partly", + -13.606447219848633 + ], + [ + "588", + -13.606532096862793 + ], + [ + "▁Jonny", + -13.606596946716309 + ], + [ + "▁detectable", + -13.606755256652832 + ], + [ + "▁BANK", + -13.606758117675781 + ], + [ + "▁Deputies", + -13.60676383972168 + ], + [ + "▁STR", + -13.60677433013916 + ], + [ + "▁insurgency", + -13.606779098510742 + ], + [ + "▁Glitter", + -13.60682487487793 + ], + [ + "▁Punta", + -13.606836318969727 + ], + [ + "▁cit", + -13.606889724731445 + ], + [ + "▁Dwayne", + -13.606895446777344 + ], + [ + "Cute", + -13.606901168823242 + ], + [ + "▁Luigi", + -13.606912612915039 + ], + [ + "mata", + -13.606962203979492 + ], + [ + "chel", + -13.606986045837402 + ], + [ + "▁recited", + -13.607007026672363 + ], + [ + "▁metformin", + -13.607010841369629 + ], + [ + "198", + -13.607030868530273 + ], + [ + "▁INTER", + -13.607062339782715 + ], + [ + "▁imaginations", + -13.60708236694336 + ], + [ + "▁proclaiming", + -13.607110977172852 + ], + [ + "▁Wines", + -13.607199668884277 + ], + [ + "▁pseudonym", + -13.607272148132324 + ], + [ + "▁procured", + -13.607318878173828 + ], + [ + "▁IB", + -13.607327461242676 + ], + [ + "▁Scholarships", + -13.607421875 + ], + [ + "▁Puma", + -13.607455253601074 + ], + [ + "uwa", + -13.6074800491333 + ], + [ + "▁undergoes", + -13.607547760009766 + ], + [ + "Iron", + -13.60757827758789 + ], + [ + "▁Sanjay", + -13.607690811157227 + ], + [ + "icular", + -13.607695579528809 + ], + [ + "African", + -13.60771656036377 + ], + [ + "Was", + -13.607719421386719 + ], + [ + "▁modernist", + -13.607751846313477 + ], + [ + "yeah", + -13.607755661010742 + ], + [ + "▁242", + -13.607766151428223 + ], + [ + "▁undercut", + -13.607787132263184 + ], + [ + "▁Marianne", + -13.607793807983398 + ], + [ + "▁amateurs", + -13.607850074768066 + ], + [ + "mba", + -13.607851028442383 + ], + [ + "Death", + -13.607876777648926 + ], + [ + "▁Bullock", + -13.607877731323242 + ], + [ + "role", + -13.607905387878418 + ], + [ + "Through", + -13.607917785644531 + ], + [ + "▁Prestige", + -13.607918739318848 + ], + [ + "▁mafia", + -13.60793685913086 + ], + [ + "▁landfills", + -13.607956886291504 + ], + [ + "▁Melania", + -13.607967376708984 + ], + [ + "▁digress", + -13.607976913452148 + ], + [ + "▁Caramel", + -13.607998847961426 + ], + [ + "▁Slav", + -13.608017921447754 + ], + [ + "dian", + -13.608263969421387 + ], + [ + "▁postdoctoral", + -13.608283996582031 + ], + [ + "▁Galileo", + -13.60830307006836 + ], + [ + "rooms", + -13.60831069946289 + ], + [ + "▁IELTS", + -13.608380317687988 + ], + [ + "▁turnkey", + -13.608465194702148 + ], + [ + "▁undergraduates", + -13.608467102050781 + ], + [ + "▁relays", + -13.608471870422363 + ], + [ + "▁nag", + -13.608484268188477 + ], + [ + "▁sampler", + -13.60848617553711 + ], + [ + "327", + -13.608521461486816 + ], + [ + "▁upheaval", + -13.60853385925293 + ], + [ + "▁الم", + -13.60854434967041 + ], + [ + "▁XVI", + -13.608617782592773 + ], + [ + "▁Lexi", + -13.608631134033203 + ], + [ + "states", + -13.608647346496582 + ], + [ + "▁medalist", + -13.608670234680176 + ], + [ + "climate", + -13.608674049377441 + ], + [ + "▁Measurements", + -13.608713150024414 + ], + [ + "atan", + -13.608729362487793 + ], + [ + "KG", + -13.608744621276855 + ], + [ + "enz", + -13.608749389648438 + ], + [ + "▁Differences", + -13.60875129699707 + ], + [ + "▁Fayetteville", + -13.608752250671387 + ], + [ + "bowl", + -13.608758926391602 + ], + [ + "▁decode", + -13.608768463134766 + ], + [ + "▁Mirage", + -13.608769416809082 + ], + [ + "▁humming", + -13.608800888061523 + ], + [ + "Number", + -13.608811378479004 + ], + [ + "▁clinch", + -13.608906745910645 + ], + [ + "▁hideous", + -13.60898494720459 + ], + [ + "▁pero", + -13.609170913696289 + ], + [ + "▁Mummy", + -13.609264373779297 + ], + [ + "▁Recession", + -13.609299659729004 + ], + [ + "ikan", + -13.609313011169434 + ], + [ + "beth", + -13.60936450958252 + ], + [ + "▁Packet", + -13.609383583068848 + ], + [ + "328", + -13.609390258789062 + ], + [ + "▁adultery", + -13.609511375427246 + ], + [ + "▁Hallmark", + -13.609573364257812 + ], + [ + "highest", + -13.609585762023926 + ], + [ + "▁вы", + -13.609604835510254 + ], + [ + "▁crucified", + -13.609644889831543 + ], + [ + "▁Fabian", + -13.609740257263184 + ], + [ + "▁gimmick", + -13.609755516052246 + ], + [ + "▁ludicrous", + -13.60987377166748 + ], + [ + "EPS", + -13.609945297241211 + ], + [ + "▁generational", + -13.60994815826416 + ], + [ + "ecker", + -13.609965324401855 + ], + [ + "▁Curt", + -13.610013008117676 + ], + [ + "▁Schiff", + -13.610030174255371 + ], + [ + "015", + -13.610057830810547 + ], + [ + "▁314", + -13.61007022857666 + ], + [ + "▁Chas", + -13.610077857971191 + ], + [ + "▁Sens", + -13.610091209411621 + ], + [ + "tuned", + -13.61009693145752 + ], + [ + "▁402", + -13.610187530517578 + ], + [ + "▁boulder", + -13.610244750976562 + ], + [ + "▁mislead", + -13.610328674316406 + ], + [ + "▁SHALL", + -13.610396385192871 + ], + [ + "▁carp", + -13.610416412353516 + ], + [ + "▁adage", + -13.610472679138184 + ], + [ + "▁HY", + -13.610480308532715 + ], + [ + "▁EMT", + -13.610517501831055 + ], + [ + "planning", + -13.610518455505371 + ], + [ + "▁dignified", + -13.610568046569824 + ], + [ + "TK", + -13.610570907592773 + ], + [ + "aci", + -13.610591888427734 + ], + [ + "cate", + -13.610591888427734 + ], + [ + "▁Baku", + -13.610593795776367 + ], + [ + "▁Flake", + -13.610615730285645 + ], + [ + "▁bil", + -13.610642433166504 + ], + [ + "Fri", + -13.6106595993042 + ], + [ + "▁Bret", + -13.610661506652832 + ], + [ + "mono", + -13.610743522644043 + ], + [ + "▁resize", + -13.610785484313965 + ], + [ + "Bear", + -13.610819816589355 + ], + [ + "▁1820", + -13.610870361328125 + ], + [ + "▁Granada", + -13.610923767089844 + ], + [ + "▁ark", + -13.610932350158691 + ], + [ + "▁McAfee", + -13.610944747924805 + ], + [ + "▁allocations", + -13.610954284667969 + ], + [ + "▁jammer", + -13.611029624938965 + ], + [ + "▁Masonic", + -13.611040115356445 + ], + [ + "259", + -13.611114501953125 + ], + [ + "▁farmed", + -13.611115455627441 + ], + [ + "▁Clutch", + -13.611272811889648 + ], + [ + "▁nobility", + -13.611289024353027 + ], + [ + "▁MUSIC", + -13.611302375793457 + ], + [ + "▁rabbi", + -13.611390113830566 + ], + [ + "▁Zodiac", + -13.611397743225098 + ], + [ + "▁blowout", + -13.611469268798828 + ], + [ + "nj", + -13.611472129821777 + ], + [ + "▁Sochi", + -13.61148738861084 + ], + [ + "▁IgG", + -13.611555099487305 + ], + [ + "pent", + -13.61159610748291 + ], + [ + "▁exec", + -13.611642837524414 + ], + [ + "▁lite", + -13.611648559570312 + ], + [ + "ination", + -13.611686706542969 + ], + [ + "定", + -13.611724853515625 + ], + [ + "ра", + -13.61180591583252 + ], + [ + "▁Filling", + -13.611812591552734 + ], + [ + "▁Acad", + -13.611828804016113 + ], + [ + "▁Neat", + -13.611848831176758 + ], + [ + "chie", + -13.61186408996582 + ], + [ + "▁INFO", + -13.612041473388672 + ], + [ + "▁bribes", + -13.612042427062988 + ], + [ + "iku", + -13.612067222595215 + ], + [ + "▁parmesan", + -13.61210823059082 + ], + [ + "▁Rusty", + -13.612129211425781 + ], + [ + "▁prosthetic", + -13.612175941467285 + ], + [ + "▁Leroy", + -13.612276077270508 + ], + [ + "大", + -13.612323760986328 + ], + [ + "▁AKA", + -13.612445831298828 + ], + [ + "tons", + -13.612462997436523 + ], + [ + "▁Ruiz", + -13.612472534179688 + ], + [ + "▁benefitted", + -13.612594604492188 + ], + [ + "▁primal", + -13.612641334533691 + ], + [ + "▁legislator", + -13.612643241882324 + ], + [ + "▁mindless", + -13.612667083740234 + ], + [ + "▁headlight", + -13.612687110900879 + ], + [ + "▁Fallen", + -13.612771987915039 + ], + [ + "▁tur", + -13.612791061401367 + ], + [ + "pong", + -13.61280345916748 + ], + [ + "▁Curse", + -13.612805366516113 + ], + [ + "▁Pills", + -13.612808227539062 + ], + [ + "▁frontman", + -13.612820625305176 + ], + [ + "1900", + -13.612863540649414 + ], + [ + "▁primers", + -13.612907409667969 + ], + [ + "▁Rodrigo", + -13.6129150390625 + ], + [ + "▁Harrisburg", + -13.612927436828613 + ], + [ + "▁Aztec", + -13.612993240356445 + ], + [ + "levitra", + -13.613006591796875 + ], + [ + "▁clothed", + -13.613059043884277 + ], + [ + "sexy", + -13.613092422485352 + ], + [ + "▁GRA", + -13.613133430480957 + ], + [ + "▁detoxification", + -13.613147735595703 + ], + [ + "RAL", + -13.613293647766113 + ], + [ + "hitting", + -13.61329460144043 + ], + [ + "▁TEN", + -13.613312721252441 + ], + [ + "▁fresco", + -13.613398551940918 + ], + [ + "▁Reformed", + -13.613412857055664 + ], + [ + "▁stabilizing", + -13.61341667175293 + ], + [ + "▁Shui", + -13.613420486450195 + ], + [ + "zor", + -13.613424301147461 + ], + [ + "coffee", + -13.613503456115723 + ], + [ + "▁palaces", + -13.613506317138672 + ], + [ + "810", + -13.613532066345215 + ], + [ + "▁cranberries", + -13.613760948181152 + ], + [ + "▁Cristiano", + -13.61376667022705 + ], + [ + "rg", + -13.613791465759277 + ], + [ + "▁Prasad", + -13.613828659057617 + ], + [ + "▁Farr", + -13.613831520080566 + ], + [ + "▁illegitimate", + -13.613836288452148 + ], + [ + "▁Xerox", + -13.613924980163574 + ], + [ + "▁discoloration", + -13.614045143127441 + ], + [ + "▁Ether", + -13.61406135559082 + ], + [ + "▁Roh", + -13.614076614379883 + ], + [ + "▁accrue", + -13.614113807678223 + ], + [ + "ż", + -13.614137649536133 + ], + [ + "Self", + -13.614164352416992 + ], + [ + "▁Robots", + -13.614168167114258 + ], + [ + "▁Drinks", + -13.614215850830078 + ], + [ + "▁seeding", + -13.614248275756836 + ], + [ + "387", + -13.61428451538086 + ], + [ + "Has", + -13.614336013793945 + ], + [ + "▁AES", + -13.614392280578613 + ], + [ + "▁methylation", + -13.614411354064941 + ], + [ + "▁Beyoncé", + -13.61446475982666 + ], + [ + "▁algebraic", + -13.614519119262695 + ], + [ + "▁turkeys", + -13.614545822143555 + ], + [ + "styled", + -13.614579200744629 + ], + [ + "▁Distributor", + -13.614581108093262 + ], + [ + "▁stewards", + -13.61468505859375 + ], + [ + "▁stormy", + -13.614688873291016 + ], + [ + "▁Whitaker", + -13.614740371704102 + ], + [ + "▁wealthiest", + -13.61475658416748 + ], + [ + "▁dialogues", + -13.614835739135742 + ], + [ + "▁Haz", + -13.61484146118164 + ], + [ + "▁uncles", + -13.61484146118164 + ], + [ + "▁Sav", + -13.614851951599121 + ], + [ + "▁physicists", + -13.614899635314941 + ], + [ + "▁MONEY", + -13.614967346191406 + ], + [ + "▁Himalayas", + -13.615004539489746 + ], + [ + "▁scrubbing", + -13.615142822265625 + ], + [ + "▁Elgin", + -13.615171432495117 + ], + [ + "Ly", + -13.615182876586914 + ], + [ + "▁Walden", + -13.615314483642578 + ], + [ + "▁Schwarz", + -13.61536693572998 + ], + [ + "▁Wyn", + -13.61541748046875 + ], + [ + "▁Shiv", + -13.615449905395508 + ], + [ + "▁thaw", + -13.615458488464355 + ], + [ + "▁Charities", + -13.615534782409668 + ], + [ + "▁improbable", + -13.615571022033691 + ], + [ + "▁Este", + -13.615584373474121 + ], + [ + "Lin", + -13.615592956542969 + ], + [ + "▁Drilling", + -13.615594863891602 + ], + [ + "▁jockey", + -13.615598678588867 + ], + [ + "Flow", + -13.615628242492676 + ], + [ + "▁Sailor", + -13.6156644821167 + ], + [ + "▁Baird", + -13.615674018859863 + ], + [ + "▁fps", + -13.615675926208496 + ], + [ + "ZE", + -13.615680694580078 + ], + [ + "▁wil", + -13.615734100341797 + ], + [ + "▁Nitro", + -13.615796089172363 + ], + [ + "▁François", + -13.615846633911133 + ], + [ + "▁Jody", + -13.615907669067383 + ], + [ + "▁grasped", + -13.615921020507812 + ], + [ + "▁flicker", + -13.615924835205078 + ], + [ + "▁Treatments", + -13.615931510925293 + ], + [ + "▁frail", + -13.616023063659668 + ], + [ + "▁Kodi", + -13.616048812866211 + ], + [ + "▁clerical", + -13.616146087646484 + ], + [ + "407", + -13.616155624389648 + ], + [ + "▁mir", + -13.616155624389648 + ], + [ + "▁playgrounds", + -13.616214752197266 + ], + [ + "▁Administrators", + -13.61654281616211 + ], + [ + "▁scrumptious", + -13.616568565368652 + ], + [ + "▁prosecuting", + -13.6166353225708 + ], + [ + "정", + -13.6166410446167 + ], + [ + "▁payer", + -13.616646766662598 + ], + [ + "▁appointing", + -13.616775512695312 + ], + [ + "▁Cavs", + -13.616789817810059 + ], + [ + "ease", + -13.61681079864502 + ], + [ + "▁Wilkins", + -13.616816520690918 + ], + [ + "▁clarinet", + -13.616826057434082 + ], + [ + "▁Arcadia", + -13.616878509521484 + ], + [ + "▁Shiite", + -13.616926193237305 + ], + [ + "Thursday", + -13.616952896118164 + ], + [ + "▁barracks", + -13.616971969604492 + ], + [ + "Wi", + -13.616979598999023 + ], + [ + "▁Julio", + -13.617022514343262 + ], + [ + "▁Sakura", + -13.617056846618652 + ], + [ + "▁BYU", + -13.617088317871094 + ], + [ + "▁Lazarus", + -13.617133140563965 + ], + [ + "▁valuables", + -13.617141723632812 + ], + [ + "▁Bour", + -13.61717414855957 + ], + [ + "KK", + -13.617237091064453 + ], + [ + "▁emptying", + -13.61730670928955 + ], + [ + "enta", + -13.617330551147461 + ], + [ + "brush", + -13.617374420166016 + ], + [ + "▁Protecting", + -13.617383003234863 + ], + [ + "▁skeletons", + -13.617387771606445 + ], + [ + "▁Implementing", + -13.617472648620605 + ], + [ + "▁Ryu", + -13.617518424987793 + ], + [ + "▁MacArthur", + -13.617538452148438 + ], + [ + "▁uncompromising", + -13.617562294006348 + ], + [ + "▁loo", + -13.617581367492676 + ], + [ + "▁Copa", + -13.617586135864258 + ], + [ + "337", + -13.61763858795166 + ], + [ + "1950", + -13.617661476135254 + ], + [ + "▁hoist", + -13.617693901062012 + ], + [ + "▁Scala", + -13.617708206176758 + ], + [ + "▁ANSWER", + -13.617834091186523 + ], + [ + "infected", + -13.617836952209473 + ], + [ + "dB", + -13.617904663085938 + ], + [ + "▁jumpsuit", + -13.61793041229248 + ], + [ + "▁stave", + -13.617990493774414 + ], + [ + "▁peacock", + -13.618049621582031 + ], + [ + "▁QE", + -13.61807918548584 + ], + [ + "▁Fighters", + -13.618081092834473 + ], + [ + "▁indulgent", + -13.618085861206055 + ], + [ + "▁trims", + -13.618091583251953 + ], + [ + "▁Citadel", + -13.618108749389648 + ], + [ + "▁≤", + -13.618193626403809 + ], + [ + "▁hilly", + -13.618218421936035 + ], + [ + "▁Seo", + -13.618223190307617 + ], + [ + "2°", + -13.61823844909668 + ], + [ + "▁Dol", + -13.618265151977539 + ], + [ + "▁415", + -13.618277549743652 + ], + [ + "▁acutely", + -13.61832046508789 + ], + [ + "▁RMB", + -13.618328094482422 + ], + [ + "▁Hur", + -13.618454933166504 + ], + [ + "stem", + -13.618462562561035 + ], + [ + "▁fanatic", + -13.618486404418945 + ], + [ + "▁ROOM", + -13.618637084960938 + ], + [ + "▁Viewer", + -13.618653297424316 + ], + [ + "▁FAMILY", + -13.618680953979492 + ], + [ + "beautiful", + -13.618701934814453 + ], + [ + "▁gays", + -13.6187105178833 + ], + [ + "▁condenser", + -13.618788719177246 + ], + [ + "▁Charging", + -13.618803024291992 + ], + [ + "289", + -13.618814468383789 + ], + [ + "▁Gogh", + -13.618825912475586 + ], + [ + "▁eatery", + -13.618836402893066 + ], + [ + "ppers", + -13.618929862976074 + ], + [ + "kul", + -13.619017601013184 + ], + [ + "▁lockout", + -13.61903190612793 + ], + [ + "▁venom", + -13.619105339050293 + ], + [ + "▁downwards", + -13.619109153747559 + ], + [ + "780", + -13.619136810302734 + ], + [ + "▁endpoints", + -13.619376182556152 + ], + [ + "▁awkwardly", + -13.619438171386719 + ], + [ + "▁Doncaster", + -13.61945629119873 + ], + [ + "Min", + -13.619458198547363 + ], + [ + "▁polio", + -13.619512557983398 + ], + [ + "▁awning", + -13.619536399841309 + ], + [ + "▁Hewlett", + -13.619643211364746 + ], + [ + "▁genomes", + -13.619701385498047 + ], + [ + "▁Greenberg", + -13.619709968566895 + ], + [ + "▁PURPOSE", + -13.619736671447754 + ], + [ + "DIS", + -13.619765281677246 + ], + [ + "▁Sacrament", + -13.619779586791992 + ], + [ + "▁monochrome", + -13.619816780090332 + ], + [ + "▁godly", + -13.619831085205078 + ], + [ + "▁Hind", + -13.619860649108887 + ], + [ + "▁Squirrel", + -13.619935035705566 + ], + [ + "▁Dro", + -13.620033264160156 + ], + [ + "▁Aspire", + -13.620076179504395 + ], + [ + "▁metering", + -13.620133399963379 + ], + [ + "▁cusp", + -13.620158195495605 + ], + [ + "ès", + -13.620180130004883 + ], + [ + "▁£12", + -13.620240211486816 + ], + [ + "▁Passive", + -13.62024974822998 + ], + [ + "▁archaic", + -13.6203031539917 + ], + [ + "▁dermatologist", + -13.620328903198242 + ], + [ + "Mate", + -13.620460510253906 + ], + [ + "▁Composer", + -13.620460510253906 + ], + [ + "▁citrate", + -13.620527267456055 + ], + [ + "▁920", + -13.620558738708496 + ], + [ + "▁socializing", + -13.620633125305176 + ], + [ + "▁Š", + -13.620661735534668 + ], + [ + "▁cryptic", + -13.620677947998047 + ], + [ + "▁Fas", + -13.620682716369629 + ], + [ + "▁scavenger", + -13.620729446411133 + ], + [ + "Fan", + -13.620830535888672 + ], + [ + "186", + -13.620891571044922 + ], + [ + "▁Judas", + -13.620956420898438 + ], + [ + "258", + -13.62098503112793 + ], + [ + "ł", + -13.620987892150879 + ], + [ + "体", + -13.6210355758667 + ], + [ + "▁Larsen", + -13.621045112609863 + ], + [ + "▁sharpness", + -13.621050834655762 + ], + [ + "oxide", + -13.621060371398926 + ], + [ + "▁Gio", + -13.621111869812012 + ], + [ + "▁Hermes", + -13.621111869812012 + ], + [ + "▁actuator", + -13.621125221252441 + ], + [ + "▁Pow", + -13.621148109436035 + ], + [ + "▁electricians", + -13.621163368225098 + ], + [ + "▁scooped", + -13.62126636505127 + ], + [ + "▁bogey", + -13.6213960647583 + ], + [ + "1973", + -13.6214017868042 + ], + [ + "▁Tyne", + -13.621467590332031 + ], + [ + "ethyl", + -13.62149715423584 + ], + [ + "▁grub", + -13.621502876281738 + ], + [ + "▁whiteboard", + -13.621504783630371 + ], + [ + "▁Covington", + -13.621513366699219 + ], + [ + "▁wp", + -13.62155532836914 + ], + [ + "▁brewers", + -13.621606826782227 + ], + [ + "▁Grayson", + -13.621611595153809 + ], + [ + "pil", + -13.621644973754883 + ], + [ + "▁commenters", + -13.621655464172363 + ], + [ + "▁Dentist", + -13.621715545654297 + ], + [ + "322", + -13.621724128723145 + ], + [ + "Studio", + -13.621733665466309 + ], + [ + "▁Georg", + -13.621781349182129 + ], + [ + "▁foreclosures", + -13.621807098388672 + ], + [ + "Ä", + -13.621824264526367 + ], + [ + "▁sloping", + -13.621851921081543 + ], + [ + "▁Eastwood", + -13.621906280517578 + ], + [ + "▁chime", + -13.621932983398438 + ], + [ + "▁Musa", + -13.621975898742676 + ], + [ + "Pic", + -13.622056007385254 + ], + [ + "«", + -13.622065544128418 + ], + [ + "▁gymnasium", + -13.622130393981934 + ], + [ + "dish", + -13.622150421142578 + ], + [ + "rius", + -13.622175216674805 + ], + [ + "Games", + -13.622186660766602 + ], + [ + "▁Crunch", + -13.622259140014648 + ], + [ + "▁thrills", + -13.622274398803711 + ], + [ + "xe", + -13.622321128845215 + ], + [ + "▁Jia", + -13.622333526611328 + ], + [ + "reader", + -13.622353553771973 + ], + [ + "▁Trains", + -13.622365951538086 + ], + [ + "DAY", + -13.62238597869873 + ], + [ + "rug", + -13.622387886047363 + ], + [ + "▁Bye", + -13.622407913208008 + ], + [ + "▁takeout", + -13.622424125671387 + ], + [ + "▁workaround", + -13.622445106506348 + ], + [ + "▁Finishing", + -13.622475624084473 + ], + [ + "▁Coordination", + -13.62252140045166 + ], + [ + "LON", + -13.62255859375 + ], + [ + "▁fre", + -13.622591972351074 + ], + [ + "Party", + -13.6226167678833 + ], + [ + "Za", + -13.622713088989258 + ], + [ + "▁tang", + -13.622735023498535 + ], + [ + "CIA", + -13.622773170471191 + ], + [ + "▁lathe", + -13.622859954833984 + ], + [ + "▁amnesty", + -13.62288761138916 + ], + [ + "▁Fitbit", + -13.622899055480957 + ], + [ + "▁delinquent", + -13.622903823852539 + ], + [ + "▁Crews", + -13.622947692871094 + ], + [ + "newsletter", + -13.623008728027344 + ], + [ + "▁mustache", + -13.623034477233887 + ], + [ + "▁Otis", + -13.62304973602295 + ], + [ + "▁Versailles", + -13.623113632202148 + ], + [ + "felt", + -13.623124122619629 + ], + [ + "bun", + -13.62319564819336 + ], + [ + "▁kms", + -13.623235702514648 + ], + [ + "▁mule", + -13.623324394226074 + ], + [ + "▁Hewitt", + -13.6233549118042 + ], + [ + "▁sarcasm", + -13.623374938964844 + ], + [ + "WOOD", + -13.62350845336914 + ], + [ + "▁erode", + -13.62362003326416 + ], + [ + "▁McCall", + -13.623624801635742 + ], + [ + "▁Miniature", + -13.623697280883789 + ], + [ + "▁Bohemian", + -13.623741149902344 + ], + [ + "▁JN", + -13.623770713806152 + ], + [ + "▁Psalms", + -13.623799324035645 + ], + [ + "▁1874", + -13.623820304870605 + ], + [ + "hidden", + -13.623834609985352 + ], + [ + "▁fastball", + -13.623950004577637 + ], + [ + "▁inhaler", + -13.623953819274902 + ], + [ + "▁Primer", + -13.624052047729492 + ], + [ + "▁Shank", + -13.624093055725098 + ], + [ + "▁Ogden", + -13.624117851257324 + ], + [ + "▁Lucifer", + -13.624160766601562 + ], + [ + "▁unsupported", + -13.62421703338623 + ], + [ + "▁Sometime", + -13.624303817749023 + ], + [ + "▁Slightly", + -13.62431812286377 + ], + [ + "sir", + -13.62434196472168 + ], + [ + "TIME", + -13.624395370483398 + ], + [ + "▁humiliating", + -13.624412536621094 + ], + [ + "▁Cajun", + -13.624427795410156 + ], + [ + "▁brook", + -13.624571800231934 + ], + [ + "pri", + -13.624605178833008 + ], + [ + "▁inferred", + -13.624616622924805 + ], + [ + "▁swaps", + -13.624616622924805 + ], + [ + "▁më", + -13.624651908874512 + ], + [ + "▁remit", + -13.62470817565918 + ], + [ + "▁Bathtub", + -13.624784469604492 + ], + [ + "WAN", + -13.624883651733398 + ], + [ + "▁expandable", + -13.62506103515625 + ], + [ + "▁reaffirmed", + -13.625086784362793 + ], + [ + "▁Routine", + -13.62509822845459 + ], + [ + "▁dagger", + -13.625102996826172 + ], + [ + "▁Aria", + -13.625154495239258 + ], + [ + "▁Volleyball", + -13.625336647033691 + ], + [ + "▁ware", + -13.625349044799805 + ], + [ + "▁€2", + -13.625354766845703 + ], + [ + "▁cropping", + -13.625407218933105 + ], + [ + "2500", + -13.625409126281738 + ], + [ + "Shi", + -13.625432968139648 + ], + [ + "▁Bry", + -13.625443458557129 + ], + [ + "▁Prism", + -13.625458717346191 + ], + [ + "▁singapore", + -13.625582695007324 + ], + [ + "▁Blender", + -13.625605583190918 + ], + [ + "ية", + -13.625609397888184 + ], + [ + "Roman", + -13.625618934631348 + ], + [ + "▁Bah", + -13.625630378723145 + ], + [ + "▁Electron", + -13.625649452209473 + ], + [ + "▁swan", + -13.625672340393066 + ], + [ + "▁Т", + -13.625677108764648 + ], + [ + "mechanical", + -13.625691413879395 + ], + [ + "Bus", + -13.625732421875 + ], + [ + "▁Buff", + -13.625732421875 + ], + [ + "▁stemmed", + -13.625748634338379 + ], + [ + "▁HG", + -13.625768661499023 + ], + [ + "▁leaping", + -13.625775337219238 + ], + [ + "▁presiding", + -13.625779151916504 + ], + [ + "▁blissful", + -13.625786781311035 + ], + [ + "ф", + -13.625788688659668 + ], + [ + "▁RHP", + -13.625816345214844 + ], + [ + "coast", + -13.625836372375488 + ], + [ + "arily", + -13.62588119506836 + ], + [ + "▁Handel", + -13.625940322875977 + ], + [ + "▁Lobster", + -13.625972747802734 + ], + [ + "▁Gall", + -13.626055717468262 + ], + [ + "▁macros", + -13.626195907592773 + ], + [ + "teacher", + -13.626277923583984 + ], + [ + "ungs", + -13.626321792602539 + ], + [ + "buck", + -13.626330375671387 + ], + [ + "kova", + -13.626358032226562 + ], + [ + "method", + -13.626452445983887 + ], + [ + "▁ovation", + -13.626460075378418 + ], + [ + "▁untold", + -13.626460075378418 + ], + [ + "▁Koo", + -13.626461029052734 + ], + [ + "▁whispering", + -13.626500129699707 + ], + [ + "▁Dak", + -13.626585006713867 + ], + [ + "▁vogue", + -13.626632690429688 + ], + [ + "stable", + -13.626648902893066 + ], + [ + "ail", + -13.626673698425293 + ], + [ + "▁cyclo", + -13.626684188842773 + ], + [ + "catch", + -13.626721382141113 + ], + [ + "▁naps", + -13.626787185668945 + ], + [ + "314", + -13.62680721282959 + ], + [ + "▁Mast", + -13.626814842224121 + ], + [ + "wart", + -13.626876831054688 + ], + [ + "▁Una", + -13.626931190490723 + ], + [ + "Making", + -13.626933097839355 + ], + [ + "▁AMG", + -13.626961708068848 + ], + [ + "▁asymmetric", + -13.627019882202148 + ], + [ + "▁elaborated", + -13.627023696899414 + ], + [ + "kia", + -13.627143859863281 + ], + [ + "XXX", + -13.62717342376709 + ], + [ + "gno", + -13.627177238464355 + ], + [ + "▁Louie", + -13.627184867858887 + ], + [ + "▁hazy", + -13.627191543579102 + ], + [ + "▁arbitrator", + -13.62720775604248 + ], + [ + "▁casket", + -13.627297401428223 + ], + [ + "191", + -13.62734603881836 + ], + [ + "▁prick", + -13.627391815185547 + ], + [ + "raised", + -13.62747573852539 + ], + [ + "▁Cameras", + -13.627479553222656 + ], + [ + "▁Consistent", + -13.627577781677246 + ], + [ + "poli", + -13.627594947814941 + ], + [ + "Obviously", + -13.627676010131836 + ], + [ + "▁levers", + -13.627691268920898 + ], + [ + "▁maturing", + -13.627750396728516 + ], + [ + "▁scorching", + -13.627782821655273 + ], + [ + "▁Petition", + -13.627800941467285 + ], + [ + "▁stag", + -13.627824783325195 + ], + [ + "▁Wir", + -13.627903938293457 + ], + [ + "Hour", + -13.627975463867188 + ], + [ + "▁inertia", + -13.628012657165527 + ], + [ + "OUS", + -13.628122329711914 + ], + [ + "▁terminating", + -13.62818431854248 + ], + [ + "▁jolt", + -13.628214836120605 + ], + [ + "▁Organizing", + -13.628244400024414 + ], + [ + "ESS", + -13.628273963928223 + ], + [ + "▁NMR", + -13.628337860107422 + ], + [ + "▁Nadia", + -13.628386497497559 + ], + [ + "▁pendulum", + -13.628501892089844 + ], + [ + "lä", + -13.62856674194336 + ], + [ + "▁Aruba", + -13.628669738769531 + ], + [ + "▁apocalyptic", + -13.628689765930176 + ], + [ + "으로", + -13.628702163696289 + ], + [ + "ñ", + -13.62870979309082 + ], + [ + "▁Fingers", + -13.628724098205566 + ], + [ + "▁rebuke", + -13.628743171691895 + ], + [ + "▁GN", + -13.628747940063477 + ], + [ + "▁hatchback", + -13.628761291503906 + ], + [ + "▁unsurpassed", + -13.628788948059082 + ], + [ + "▁Mindfulness", + -13.628801345825195 + ], + [ + "▁sprayer", + -13.628806114196777 + ], + [ + "Г", + -13.628847122192383 + ], + [ + "▁Ner", + -13.62890625 + ], + [ + "▁925", + -13.628908157348633 + ], + [ + "Final", + -13.628939628601074 + ], + [ + "▁flammable", + -13.629014015197754 + ], + [ + "▁charters", + -13.629023551940918 + ], + [ + "lone", + -13.629085540771484 + ], + [ + "Ze", + -13.629091262817383 + ], + [ + "▁contiguous", + -13.62915325164795 + ], + [ + "▁leans", + -13.62929630279541 + ], + [ + "▁microprocessor", + -13.629312515258789 + ], + [ + "▁CONTROL", + -13.629315376281738 + ], + [ + "▁chestnut", + -13.629327774047852 + ], + [ + "▁roomy", + -13.629335403442383 + ], + [ + "▁Baum", + -13.629401206970215 + ], + [ + "▁IBS", + -13.62942886352539 + ], + [ + "▁dengan", + -13.629480361938477 + ], + [ + "▁André", + -13.629505157470703 + ], + [ + "ife", + -13.629526138305664 + ], + [ + "Without", + -13.629566192626953 + ], + [ + "eq", + -13.629569053649902 + ], + [ + "▁Bonn", + -13.62957763671875 + ], + [ + "▁Lumber", + -13.629612922668457 + ], + [ + "Jun", + -13.629656791687012 + ], + [ + "▁sexes", + -13.629737854003906 + ], + [ + "Dev", + -13.6297607421875 + ], + [ + "compliance", + -13.629779815673828 + ], + [ + "▁shawl", + -13.629799842834473 + ], + [ + "▁NIGHT", + -13.62980842590332 + ], + [ + "zhou", + -13.629913330078125 + ], + [ + "▁Basilica", + -13.630040168762207 + ], + [ + "▁Johansson", + -13.630142211914062 + ], + [ + "▁propeller", + -13.630171775817871 + ], + [ + "ś", + -13.630240440368652 + ], + [ + "▁configurable", + -13.630255699157715 + ], + [ + "Total", + -13.630273818969727 + ], + [ + "▁Autodesk", + -13.630305290222168 + ], + [ + "年", + -13.630315780639648 + ], + [ + "▁Florist", + -13.630351066589355 + ], + [ + "▁Karim", + -13.630498886108398 + ], + [ + "▁Caterpillar", + -13.63068962097168 + ], + [ + "▁EHR", + -13.630792617797852 + ], + [ + "polymer", + -13.630812644958496 + ], + [ + "▁Banquet", + -13.63082504272461 + ], + [ + "▁Saha", + -13.630867958068848 + ], + [ + "▁Walgreens", + -13.630900382995605 + ], + [ + "▁Cylinder", + -13.63090705871582 + ], + [ + "▁Knot", + -13.630949974060059 + ], + [ + "▁Proverbs", + -13.630993843078613 + ], + [ + "▁ele", + -13.631002426147461 + ], + [ + "▁Shout", + -13.63104248046875 + ], + [ + "▁satirical", + -13.631050109863281 + ], + [ + "▁shack", + -13.631067276000977 + ], + [ + "▁NCC", + -13.631089210510254 + ], + [ + "pho", + -13.63117790222168 + ], + [ + "antha", + -13.631211280822754 + ], + [ + "▁Applicant", + -13.631214141845703 + ], + [ + "shield", + -13.631243705749512 + ], + [ + "▁bluff", + -13.631253242492676 + ], + [ + "▁Bezos", + -13.631258964538574 + ], + [ + "▁Fleetwood", + -13.631357192993164 + ], + [ + "▁Baths", + -13.631377220153809 + ], + [ + "▁Gonzales", + -13.631436347961426 + ], + [ + "ghi", + -13.631484985351562 + ], + [ + "▁convex", + -13.63153076171875 + ], + [ + "▁corpses", + -13.63159465789795 + ], + [ + "▁humbling", + -13.631597518920898 + ], + [ + "▁Curr", + -13.631611824035645 + ], + [ + "window", + -13.631657600402832 + ], + [ + "Tools", + -13.631671905517578 + ], + [ + "▁Execution", + -13.63171672821045 + ], + [ + "▁Climbing", + -13.63180160522461 + ], + [ + "▁Hd", + -13.63190746307373 + ], + [ + "▁Locker", + -13.631927490234375 + ], + [ + "▁Calculate", + -13.631940841674805 + ], + [ + "▁helium", + -13.631951332092285 + ], + [ + "▁HAPPY", + -13.631954193115234 + ], + [ + "Record", + -13.631982803344727 + ], + [ + "feeling", + -13.632022857666016 + ], + [ + "▁sd", + -13.632031440734863 + ], + [ + "nix", + -13.632087707519531 + ], + [ + "pn", + -13.632091522216797 + ], + [ + "▁Spar", + -13.632121086120605 + ], + [ + "ept", + -13.632201194763184 + ], + [ + "▁EVENT", + -13.63220500946045 + ], + [ + "▁Sca", + -13.632281303405762 + ], + [ + "▁EH", + -13.632282257080078 + ], + [ + "▁1859", + -13.63228702545166 + ], + [ + "▁Refrigerator", + -13.632315635681152 + ], + [ + "▁morphological", + -13.632325172424316 + ], + [ + "▁arid", + -13.632394790649414 + ], + [ + "eiro", + -13.632428169250488 + ], + [ + "▁unifying", + -13.632477760314941 + ], + [ + "▁Empress", + -13.632528305053711 + ], + [ + "▁Prada", + -13.632546424865723 + ], + [ + "▁Partnerships", + -13.632566452026367 + ], + [ + "▁Lacey", + -13.632678985595703 + ], + [ + "▁237", + -13.63273811340332 + ], + [ + "▁mischievous", + -13.632757186889648 + ], + [ + "vant", + -13.632874488830566 + ], + [ + "▁jacks", + -13.632881164550781 + ], + [ + "น", + -13.632905006408691 + ], + [ + "Stay", + -13.632939338684082 + ], + [ + "UH", + -13.632959365844727 + ], + [ + "▁reconnaissance", + -13.633005142211914 + ], + [ + "▁attendee", + -13.633012771606445 + ], + [ + "▁Flights", + -13.633091926574707 + ], + [ + "▁Å", + -13.633161544799805 + ], + [ + "▁Becca", + -13.633174896240234 + ], + [ + "▁DHA", + -13.63330078125 + ], + [ + "Paris", + -13.633309364318848 + ], + [ + "Additional", + -13.633353233337402 + ], + [ + "▁feces", + -13.633438110351562 + ], + [ + "▁equipments", + -13.63344669342041 + ], + [ + "▁295", + -13.633451461791992 + ], + [ + "cv", + -13.633463859558105 + ], + [ + "yun", + -13.633552551269531 + ], + [ + "▁collectibles", + -13.633597373962402 + ], + [ + "▁telecommunication", + -13.633628845214844 + ], + [ + "▁Loyalty", + -13.633642196655273 + ], + [ + "rado", + -13.633665084838867 + ], + [ + "icing", + -13.633715629577637 + ], + [ + "▁synchronize", + -13.633773803710938 + ], + [ + "▁brews", + -13.633861541748047 + ], + [ + "▁periodontal", + -13.633861541748047 + ], + [ + "pis", + -13.633871078491211 + ], + [ + "▁maneuvers", + -13.633882522583008 + ], + [ + "fn", + -13.633889198303223 + ], + [ + "▁perforated", + -13.633976936340332 + ], + [ + "▁Korn", + -13.633981704711914 + ], + [ + "Sense", + -13.6340970993042 + ], + [ + "evi", + -13.634115219116211 + ], + [ + "▁scoreboard", + -13.634173393249512 + ], + [ + "▁lubricant", + -13.63419246673584 + ], + [ + "840", + -13.634193420410156 + ], + [ + "▁Voyage", + -13.634258270263672 + ], + [ + "▁Mott", + -13.634323120117188 + ], + [ + "▁memoirs", + -13.63433837890625 + ], + [ + "Ana", + -13.634385108947754 + ], + [ + "lman", + -13.634385108947754 + ], + [ + "disk", + -13.63441276550293 + ], + [ + "▁clockwise", + -13.634490966796875 + ], + [ + "▁restarted", + -13.634499549865723 + ], + [ + "ovsky", + -13.634501457214355 + ], + [ + "▁GED", + -13.63455581665039 + ], + [ + "▁crock", + -13.634581565856934 + ], + [ + "▁RAC", + -13.634593963623047 + ], + [ + "▁SCI", + -13.634620666503906 + ], + [ + "1974", + -13.634683609008789 + ], + [ + "meier", + -13.634710311889648 + ], + [ + "▁SQ", + -13.634806632995605 + ], + [ + "▁Québec", + -13.6348295211792 + ], + [ + "▁Notable", + -13.634897232055664 + ], + [ + "▁violinist", + -13.634900093078613 + ], + [ + "▁recoup", + -13.634907722473145 + ], + [ + "ро", + -13.634931564331055 + ], + [ + "▁CPD", + -13.63493537902832 + ], + [ + "▁Darius", + -13.635000228881836 + ], + [ + "▁nav", + -13.635038375854492 + ], + [ + "▁suck", + -13.63511848449707 + ], + [ + "▁Imagination", + -13.635125160217285 + ], + [ + "▁mouthpiece", + -13.63512897491455 + ], + [ + "▁Simpsons", + -13.635165214538574 + ], + [ + "message", + -13.635228157043457 + ], + [ + "▁Prizes", + -13.635260581970215 + ], + [ + "▁corset", + -13.63532829284668 + ], + [ + "▁Bragg", + -13.635339736938477 + ], + [ + "nx", + -13.63538646697998 + ], + [ + "▁Barkley", + -13.635392189025879 + ], + [ + "thread", + -13.635414123535156 + ], + [ + "▁alma", + -13.635489463806152 + ], + [ + "▁Wight", + -13.635600090026855 + ], + [ + "860", + -13.635613441467285 + ], + [ + "▁Felipe", + -13.635697364807129 + ], + [ + "nant", + -13.635784149169922 + ], + [ + "▁Configure", + -13.635845184326172 + ], + [ + "▁huts", + -13.635851860046387 + ], + [ + "udu", + -13.635858535766602 + ], + [ + "▁marshmallows", + -13.635870933532715 + ], + [ + "▁Camps", + -13.635881423950195 + ], + [ + "▁tagline", + -13.635932922363281 + ], + [ + "870", + -13.635950088500977 + ], + [ + "▁Gypsy", + -13.636027336120605 + ], + [ + "▁sensibilities", + -13.636082649230957 + ], + [ + "▁Stove", + -13.636086463928223 + ], + [ + "▁steered", + -13.6361083984375 + ], + [ + "▁unbalanced", + -13.636112213134766 + ], + [ + "▁Charlton", + -13.636140823364258 + ], + [ + "▁BOTH", + -13.636148452758789 + ], + [ + "▁LIGHT", + -13.636153221130371 + ], + [ + "▁sculptural", + -13.63617992401123 + ], + [ + "creating", + -13.636194229125977 + ], + [ + "▁ethno", + -13.636198043823242 + ], + [ + "riding", + -13.63622760772705 + ], + [ + "▁carport", + -13.636237144470215 + ], + [ + "▁rooster", + -13.636253356933594 + ], + [ + "▁Disabled", + -13.636289596557617 + ], + [ + "▁Ownership", + -13.636359214782715 + ], + [ + "▁EPC", + -13.63636589050293 + ], + [ + "▁Bodies", + -13.636566162109375 + ], + [ + "▁Bois", + -13.636595726013184 + ], + [ + "intensity", + -13.636622428894043 + ], + [ + "▁silhouettes", + -13.636676788330078 + ], + [ + "ля", + -13.63668155670166 + ], + [ + "▁reprint", + -13.63674259185791 + ], + [ + "▁Filing", + -13.636749267578125 + ], + [ + "▁restricts", + -13.636831283569336 + ], + [ + "ellen", + -13.636835098266602 + ], + [ + "▁presets", + -13.636921882629395 + ], + [ + "hausen", + -13.636927604675293 + ], + [ + "CRC", + -13.636929512023926 + ], + [ + "▁sweetened", + -13.636970520019531 + ], + [ + "▁Addition", + -13.636980056762695 + ], + [ + "▁expat", + -13.637137413024902 + ], + [ + "▁layoffs", + -13.637202262878418 + ], + [ + "▁ICD", + -13.637234687805176 + ], + [ + "▁venturing", + -13.637236595153809 + ], + [ + "▁şi", + -13.637286186218262 + ], + [ + "laughs", + -13.637368202209473 + ], + [ + "▁refute", + -13.637372970581055 + ], + [ + "▁motivator", + -13.637406349182129 + ], + [ + "▁harden", + -13.637410163879395 + ], + [ + "washing", + -13.637412071228027 + ], + [ + "bought", + -13.637423515319824 + ], + [ + "▁dang", + -13.637467384338379 + ], + [ + "PAR", + -13.637507438659668 + ], + [ + "▁Mani", + -13.637516975402832 + ], + [ + "▁worshipped", + -13.637554168701172 + ], + [ + "Asia", + -13.637556076049805 + ], + [ + "▁Winnie", + -13.637569427490234 + ], + [ + "▁frivolous", + -13.637582778930664 + ], + [ + "▁exemplified", + -13.637603759765625 + ], + [ + "▁streaks", + -13.637618064880371 + ], + [ + "▁hookup", + -13.637635231018066 + ], + [ + "▁profiled", + -13.637646675109863 + ], + [ + "▁Jacuzzi", + -13.637666702270508 + ], + [ + "KING", + -13.637825012207031 + ], + [ + "▁ingestion", + -13.63782787322998 + ], + [ + "▁initials", + -13.637828826904297 + ], + [ + "▁Pee", + -13.637829780578613 + ], + [ + "Bro", + -13.637907981872559 + ], + [ + "Security", + -13.637965202331543 + ], + [ + "▁condoms", + -13.638008117675781 + ], + [ + "▁Cooler", + -13.638043403625488 + ], + [ + "▁Cozy", + -13.638043403625488 + ], + [ + "▁Goldstein", + -13.6380615234375 + ], + [ + "chrome", + -13.638108253479004 + ], + [ + "▁impulsive", + -13.63810920715332 + ], + [ + "Para", + -13.638136863708496 + ], + [ + "▁Breitbart", + -13.638181686401367 + ], + [ + "▁ligand", + -13.638191223144531 + ], + [ + "▁kaufen", + -13.638250350952148 + ], + [ + "▁flung", + -13.638314247131348 + ], + [ + "▁Paperback", + -13.638340950012207 + ], + [ + "usr", + -13.638413429260254 + ], + [ + "▁tracts", + -13.638457298278809 + ], + [ + "▁Raid", + -13.638476371765137 + ], + [ + "▁numerology", + -13.63847827911377 + ], + [ + "exchange", + -13.638496398925781 + ], + [ + "▁REC", + -13.638497352600098 + ], + [ + "▁Gao", + -13.638667106628418 + ], + [ + "▁wardrobes", + -13.63871955871582 + ], + [ + "baked", + -13.638720512390137 + ], + [ + "▁Kau", + -13.638737678527832 + ], + [ + "▁lamented", + -13.638748168945312 + ], + [ + "UB", + -13.638769149780273 + ], + [ + "▁deforestation", + -13.638786315917969 + ], + [ + "▁Platt", + -13.63879108428955 + ], + [ + "▁Converted", + -13.63882064819336 + ], + [ + "▁Ollie", + -13.638830184936523 + ], + [ + "Personal", + -13.638840675354004 + ], + [ + "▁Hirsch", + -13.638858795166016 + ], + [ + "▁preface", + -13.638875961303711 + ], + [ + "▁Told", + -13.63891887664795 + ], + [ + "▁Brigham", + -13.638923645019531 + ], + [ + "▁spawning", + -13.638961791992188 + ], + [ + "Pet", + -13.638988494873047 + ], + [ + "▁̃", + -13.639108657836914 + ], + [ + "▁accutane", + -13.639202117919922 + ], + [ + "oul", + -13.639266967773438 + ], + [ + "pcs", + -13.639300346374512 + ], + [ + "▁coverings", + -13.639313697814941 + ], + [ + "pid", + -13.639351844787598 + ], + [ + "▁Decking", + -13.639444351196289 + ], + [ + "▁delicacies", + -13.639657974243164 + ], + [ + "▁ferocious", + -13.63974666595459 + ], + [ + "▁Maa", + -13.639779090881348 + ], + [ + "▁exclusivity", + -13.639802932739258 + ], + [ + "▁Hurley", + -13.639803886413574 + ], + [ + "▁Starring", + -13.639813423156738 + ], + [ + "sak", + -13.639819145202637 + ], + [ + "▁Radeon", + -13.639825820922852 + ], + [ + "▁underscores", + -13.639845848083496 + ], + [ + "▁corals", + -13.639885902404785 + ], + [ + "▁misled", + -13.639886856079102 + ], + [ + "▁multifaceted", + -13.639891624450684 + ], + [ + "▁keepers", + -13.640008926391602 + ], + [ + "▁Lucknow", + -13.640046119689941 + ], + [ + "ologies", + -13.640093803405762 + ], + [ + "▁vigor", + -13.64011287689209 + ], + [ + "ceiling", + -13.640116691589355 + ], + [ + "Something", + -13.640144348144531 + ], + [ + "bring", + -13.640166282653809 + ], + [ + "reel", + -13.64018440246582 + ], + [ + "▁storylines", + -13.64018726348877 + ], + [ + "▁immunization", + -13.640316009521484 + ], + [ + "wedding", + -13.640342712402344 + ], + [ + "▁inhibiting", + -13.640348434448242 + ], + [ + "▁Mature", + -13.640351295471191 + ], + [ + "▁riveting", + -13.640401840209961 + ], + [ + "▁Cena", + -13.640412330627441 + ], + [ + "▁medley", + -13.640460014343262 + ], + [ + "▁323", + -13.640461921691895 + ], + [ + "▁Britt", + -13.640473365783691 + ], + [ + "Alex", + -13.640485763549805 + ], + [ + "▁Foul", + -13.640536308288574 + ], + [ + "▁coldest", + -13.640653610229492 + ], + [ + "▁Sou", + -13.64067268371582 + ], + [ + "cial", + -13.640680313110352 + ], + [ + "Client", + -13.64073371887207 + ], + [ + "▁Bono", + -13.640758514404297 + ], + [ + "iye", + -13.640816688537598 + ], + [ + "▁defends", + -13.641048431396484 + ], + [ + "자", + -13.641060829162598 + ], + [ + "Unit", + -13.641085624694824 + ], + [ + "▁470", + -13.641114234924316 + ], + [ + "▁shipbuilding", + -13.641139030456543 + ], + [ + "▁coworker", + -13.641190528869629 + ], + [ + "▁pulpit", + -13.641193389892578 + ], + [ + "abel", + -13.641201972961426 + ], + [ + "shoulder", + -13.641264915466309 + ], + [ + "▁minions", + -13.641265869140625 + ], + [ + "▁McMaster", + -13.64130973815918 + ], + [ + "guru", + -13.641315460205078 + ], + [ + "▁CLE", + -13.641351699829102 + ], + [ + "▁abolition", + -13.641355514526367 + ], + [ + "Dog", + -13.641383171081543 + ], + [ + "RX", + -13.641383171081543 + ], + [ + "▁Quantity", + -13.641388893127441 + ], + [ + "▁KIND", + -13.641392707824707 + ], + [ + "▁harass", + -13.64142894744873 + ], + [ + "▁Sinn", + -13.641451835632324 + ], + [ + "▁Activation", + -13.64151668548584 + ], + [ + "▁melon", + -13.641575813293457 + ], + [ + "▁premieres", + -13.641579627990723 + ], + [ + "▁shielded", + -13.641666412353516 + ], + [ + "wrote", + -13.641732215881348 + ], + [ + "lover", + -13.64174747467041 + ], + [ + "▁zoos", + -13.64180850982666 + ], + [ + "▁Beloved", + -13.64184856414795 + ], + [ + "guest", + -13.64189624786377 + ], + [ + "▁Choices", + -13.641916275024414 + ], + [ + "▁boundless", + -13.642030715942383 + ], + [ + "cant", + -13.6420316696167 + ], + [ + "rates", + -13.642061233520508 + ], + [ + "▁Boro", + -13.642133712768555 + ], + [ + "▁grotesque", + -13.642134666442871 + ], + [ + "6000", + -13.642221450805664 + ], + [ + "▁quadrant", + -13.642241477966309 + ], + [ + "cit", + -13.642251968383789 + ], + [ + "▁Kroger", + -13.642257690429688 + ], + [ + "▁Welding", + -13.642271041870117 + ], + [ + "▁stairway", + -13.64227294921875 + ], + [ + "lens", + -13.642273902893066 + ], + [ + "▁Steiner", + -13.642366409301758 + ], + [ + "▁Jana", + -13.642376899719238 + ], + [ + "▁Dyke", + -13.642398834228516 + ], + [ + "▁hindered", + -13.642401695251465 + ], + [ + "▁dusting", + -13.642404556274414 + ], + [ + "▁senseless", + -13.642656326293945 + ], + [ + "▁termites", + -13.642662048339844 + ], + [ + "▁feats", + -13.64271354675293 + ], + [ + "▁Olga", + -13.64275074005127 + ], + [ + "determined", + -13.642792701721191 + ], + [ + "▁morph", + -13.642818450927734 + ], + [ + "▁Galactic", + -13.642828941345215 + ], + [ + "▁Balm", + -13.642840385437012 + ], + [ + "▁sectarian", + -13.642841339111328 + ], + [ + "lator", + -13.642851829528809 + ], + [ + "▁eater", + -13.64285945892334 + ], + [ + "traffic", + -13.642881393432617 + ], + [ + "▁Donaldson", + -13.642895698547363 + ], + [ + "kot", + -13.642951965332031 + ], + [ + "▁pooled", + -13.642965316772461 + ], + [ + "▁refresher", + -13.643013954162598 + ], + [ + "▁localities", + -13.643016815185547 + ], + [ + "▁Naruto", + -13.643037796020508 + ], + [ + "▁moratorium", + -13.64310359954834 + ], + [ + "▁Territories", + -13.643143653869629 + ], + [ + "ARE", + -13.643149375915527 + ], + [ + "tracking", + -13.643186569213867 + ], + [ + "▁takeoff", + -13.6431884765625 + ], + [ + "▁organiser", + -13.64319133758545 + ], + [ + "▁Exciting", + -13.643230438232422 + ], + [ + "▁undecided", + -13.643295288085938 + ], + [ + "girlfriend", + -13.64329719543457 + ], + [ + "▁Axe", + -13.643349647521973 + ], + [ + "▁arsenic", + -13.643425941467285 + ], + [ + "util", + -13.643438339233398 + ], + [ + "▁Baz", + -13.643444061279297 + ], + [ + "▁eloquent", + -13.643535614013672 + ], + [ + "▁antiquity", + -13.643542289733887 + ], + [ + "tick", + -13.643658638000488 + ], + [ + "dium", + -13.643683433532715 + ], + [ + "▁propositions", + -13.643732070922852 + ], + [ + "▁hydrating", + -13.643745422363281 + ], + [ + "▁delightfully", + -13.643790245056152 + ], + [ + "ingen", + -13.643887519836426 + ], + [ + "▁kann", + -13.643919944763184 + ], + [ + "▁limelight", + -13.643953323364258 + ], + [ + "▁mathematician", + -13.643963813781738 + ], + [ + "▁Torre", + -13.643977165222168 + ], + [ + "▁Antwerp", + -13.644017219543457 + ], + [ + "▁majesty", + -13.644020080566406 + ], + [ + "▁palsy", + -13.644039154052734 + ], + [ + "▁Binding", + -13.644054412841797 + ], + [ + "▁Whatsapp", + -13.644183158874512 + ], + [ + "ISH", + -13.64419937133789 + ], + [ + "▁NICE", + -13.644255638122559 + ], + [ + "030", + -13.644258499145508 + ], + [ + "▁closeness", + -13.644281387329102 + ], + [ + "▁Meek", + -13.644357681274414 + ], + [ + "▁spaceship", + -13.644362449645996 + ], + [ + "▁Bikes", + -13.644432067871094 + ], + [ + "▁interpreters", + -13.644437789916992 + ], + [ + "▁Limestone", + -13.644606590270996 + ], + [ + "▁Acta", + -13.644675254821777 + ], + [ + "▁Rana", + -13.644712448120117 + ], + [ + "▁Perfectly", + -13.644760131835938 + ], + [ + "▁Gradually", + -13.644938468933105 + ], + [ + "dit", + -13.644957542419434 + ], + [ + "▁Awakening", + -13.64515209197998 + ], + [ + "▁passer", + -13.64519214630127 + ], + [ + "▁springtime", + -13.645196914672852 + ], + [ + "286", + -13.645212173461914 + ], + [ + "judge", + -13.645228385925293 + ], + [ + "▁Telling", + -13.645258903503418 + ], + [ + "▁Holloway", + -13.645341873168945 + ], + [ + "IoT", + -13.645360946655273 + ], + [ + "▁valor", + -13.645371437072754 + ], + [ + "▁outpost", + -13.645378112792969 + ], + [ + "▁deities", + -13.64542293548584 + ], + [ + "▁Ð", + -13.645479202270508 + ], + [ + "▁Theoretical", + -13.645500183105469 + ], + [ + "▁Bangor", + -13.64551067352295 + ], + [ + "▁cv", + -13.645559310913086 + ], + [ + "▁regenerative", + -13.645684242248535 + ], + [ + "▁luc", + -13.645703315734863 + ], + [ + "332", + -13.645774841308594 + ], + [ + "▁Nuts", + -13.645797729492188 + ], + [ + "▁reddit", + -13.645841598510742 + ], + [ + "▁262", + -13.645843505859375 + ], + [ + "▁bor", + -13.645956993103027 + ], + [ + "▁Galloway", + -13.645974159240723 + ], + [ + "▁hooded", + -13.646073341369629 + ], + [ + "spect", + -13.646159172058105 + ], + [ + "▁Honour", + -13.646174430847168 + ], + [ + "▁parasitic", + -13.646194458007812 + ], + [ + "▁identifiers", + -13.646209716796875 + ], + [ + "rij", + -13.646263122558594 + ], + [ + "▁Animated", + -13.646272659301758 + ], + [ + "recorded", + -13.646276473999023 + ], + [ + "▁winged", + -13.646294593811035 + ], + [ + "▁Recordings", + -13.646343231201172 + ], + [ + "▁photoshoot", + -13.646369934082031 + ], + [ + "▁Swanson", + -13.646430015563965 + ], + [ + "inson", + -13.646482467651367 + ], + [ + "kee", + -13.646503448486328 + ], + [ + "iyah", + -13.646512031555176 + ], + [ + "▁Decatur", + -13.646564483642578 + ], + [ + "atum", + -13.646628379821777 + ], + [ + "▁redistribution", + -13.646665573120117 + ], + [ + "▁delicacy", + -13.646672248840332 + ], + [ + "012", + -13.646766662597656 + ], + [ + "Reg", + -13.646766662597656 + ], + [ + "▁numbness", + -13.646766662597656 + ], + [ + "▁Misty", + -13.64677619934082 + ], + [ + "▁Affect", + -13.646790504455566 + ], + [ + "JP", + -13.646798133850098 + ], + [ + "▁Horizons", + -13.646831512451172 + ], + [ + "china", + -13.646875381469727 + ], + [ + "ça", + -13.646881103515625 + ], + [ + "▁Hurst", + -13.64690113067627 + ], + [ + "▁Downey", + -13.646964073181152 + ], + [ + "▁authenticated", + -13.647013664245605 + ], + [ + "▁desolate", + -13.647040367126465 + ], + [ + "▁Tempe", + -13.647076606750488 + ], + [ + "▁Org", + -13.647104263305664 + ], + [ + "▁Ely", + -13.647135734558105 + ], + [ + "▁impairments", + -13.647148132324219 + ], + [ + "bait", + -13.647228240966797 + ], + [ + "▁Recommend", + -13.647235870361328 + ], + [ + "lapse", + -13.647285461425781 + ], + [ + "gum", + -13.647298812866211 + ], + [ + "455", + -13.647330284118652 + ], + [ + "▁Heinrich", + -13.647377967834473 + ], + [ + "▁Gillian", + -13.647455215454102 + ], + [ + "▁Transcription", + -13.647468566894531 + ], + [ + "▁NORTH", + -13.647485733032227 + ], + [ + "▁sunday", + -13.647505760192871 + ], + [ + "nger", + -13.64754581451416 + ], + [ + "▁Cau", + -13.647568702697754 + ], + [ + "▁bookshelves", + -13.647579193115234 + ], + [ + "▁Bey", + -13.647582054138184 + ], + [ + "inate", + -13.647745132446289 + ], + [ + "▁meteor", + -13.647855758666992 + ], + [ + "▁Magnificent", + -13.647865295410156 + ], + [ + "▁musculoskeletal", + -13.647867202758789 + ], + [ + "▁retainer", + -13.647912979125977 + ], + [ + "▁NASDAQ", + -13.648031234741211 + ], + [ + "▁Skirt", + -13.64810562133789 + ], + [ + "▁analyzer", + -13.648139953613281 + ], + [ + "lena", + -13.64814281463623 + ], + [ + "▁Latinos", + -13.64820384979248 + ], + [ + "▁Virtually", + -13.64820384979248 + ], + [ + "▁stillness", + -13.648269653320312 + ], + [ + "▁evils", + -13.648332595825195 + ], + [ + "▁Likely", + -13.648347854614258 + ], + [ + "▁Bourne", + -13.648416519165039 + ], + [ + "▁macrophages", + -13.648460388183594 + ], + [ + "option", + -13.648553848266602 + ], + [ + "tonic", + -13.64859390258789 + ], + [ + "▁Signing", + -13.648605346679688 + ], + [ + "▁Greyhound", + -13.648665428161621 + ], + [ + "▁militias", + -13.648710250854492 + ], + [ + "▁eyewear", + -13.648725509643555 + ], + [ + "▁McBride", + -13.648761749267578 + ], + [ + "▁wir", + -13.648824691772461 + ], + [ + "Char", + -13.648909568786621 + ], + [ + "▁excise", + -13.649041175842285 + ], + [ + "▁Sadie", + -13.649053573608398 + ], + [ + "hereinafter", + -13.649124145507812 + ], + [ + "▁Constructed", + -13.649127006530762 + ], + [ + "▁254", + -13.649149894714355 + ], + [ + "oir", + -13.64925479888916 + ], + [ + "▁contended", + -13.649272918701172 + ], + [ + "▁angrily", + -13.64931869506836 + ], + [ + "▁princes", + -13.649349212646484 + ], + [ + "trop", + -13.649373054504395 + ], + [ + "▁Honeywell", + -13.649412155151367 + ], + [ + "vascular", + -13.649444580078125 + ], + [ + "▁fennel", + -13.64948558807373 + ], + [ + "▁southbound", + -13.649537086486816 + ], + [ + "▁Criteria", + -13.649598121643066 + ], + [ + "▁bestow", + -13.649749755859375 + ], + [ + "▁upped", + -13.649897575378418 + ], + [ + "▁tingling", + -13.649901390075684 + ], + [ + "▁trope", + -13.649903297424316 + ], + [ + "▁regionally", + -13.64992904663086 + ], + [ + "▁impressively", + -13.650015830993652 + ], + [ + "▁barbeque", + -13.65002727508545 + ], + [ + "▁Baha", + -13.650140762329102 + ], + [ + "▁Kruger", + -13.650152206420898 + ], + [ + "▁Dei", + -13.650267601013184 + ], + [ + "▁circled", + -13.650273323059082 + ], + [ + "▁bourgeois", + -13.650304794311523 + ], + [ + "ו", + -13.650343894958496 + ], + [ + "▁batted", + -13.650349617004395 + ], + [ + "▁Scooter", + -13.650357246398926 + ], + [ + "▁ATMs", + -13.650406837463379 + ], + [ + "▁peels", + -13.650412559509277 + ], + [ + "▁revitalize", + -13.650413513183594 + ], + [ + "▁overrun", + -13.650428771972656 + ], + [ + "AMP", + -13.650468826293945 + ], + [ + "▁Tasting", + -13.650547981262207 + ], + [ + "▁Forgot", + -13.65054988861084 + ], + [ + "▁Liquor", + -13.650562286376953 + ], + [ + "Assad", + -13.650568962097168 + ], + [ + "▁Galleries", + -13.650589942932129 + ], + [ + "▁osteoarthritis", + -13.650594711303711 + ], + [ + "▁Accepted", + -13.65062141418457 + ], + [ + "▁Spectacular", + -13.650626182556152 + ], + [ + "▁russian", + -13.650679588317871 + ], + [ + "▁implantation", + -13.650710105895996 + ], + [ + "▁QT", + -13.650717735290527 + ], + [ + "▁Okinawa", + -13.650784492492676 + ], + [ + "▁MySpace", + -13.650838851928711 + ], + [ + "▁dispel", + -13.650839805603027 + ], + [ + "▁tightness", + -13.650856018066406 + ], + [ + "▁Endo", + -13.65086841583252 + ], + [ + "DES", + -13.650938034057617 + ], + [ + "▁pistols", + -13.650947570800781 + ], + [ + "▁bridesmaids", + -13.65103530883789 + ], + [ + "▁Ext", + -13.651171684265137 + ], + [ + "▁Saviour", + -13.65120792388916 + ], + [ + "▁glider", + -13.651276588439941 + ], + [ + "▁breakers", + -13.651322364807129 + ], + [ + "▁compulsive", + -13.651554107666016 + ], + [ + "▁wat", + -13.651588439941406 + ], + [ + "Computer", + -13.65160846710205 + ], + [ + "▁Owned", + -13.651665687561035 + ], + [ + "▁Kush", + -13.651670455932617 + ], + [ + "▁Upcoming", + -13.651671409606934 + ], + [ + "▁frosted", + -13.651690483093262 + ], + [ + "▁cyclic", + -13.651728630065918 + ], + [ + "▁Wharton", + -13.65174388885498 + ], + [ + "▁Scheduled", + -13.651758193969727 + ], + [ + "▁OSU", + -13.651793479919434 + ], + [ + "Moon", + -13.651823997497559 + ], + [ + "▁Ric", + -13.65185260772705 + ], + [ + "▁Saver", + -13.651856422424316 + ], + [ + "▁mitochondria", + -13.651863098144531 + ], + [ + "▁sagging", + -13.651865005493164 + ], + [ + "287", + -13.651939392089844 + ], + [ + "▁midi", + -13.651969909667969 + ], + [ + "970", + -13.652056694030762 + ], + [ + "▁carat", + -13.652071952819824 + ], + [ + "▁Serge", + -13.652210235595703 + ], + [ + "desk", + -13.652223587036133 + ], + [ + "Lake", + -13.652236938476562 + ], + [ + "ān", + -13.652240753173828 + ], + [ + "uja", + -13.652325630187988 + ], + [ + "▁Lillian", + -13.652474403381348 + ], + [ + "jak", + -13.652542114257812 + ], + [ + "▁inkjet", + -13.652606964111328 + ], + [ + "tima", + -13.652618408203125 + ], + [ + "▁vetting", + -13.652634620666504 + ], + [ + "▁Reflections", + -13.652645111083984 + ], + [ + "▁Saskatoon", + -13.65270709991455 + ], + [ + "▁Mound", + -13.652741432189941 + ], + [ + "▁VAR", + -13.652754783630371 + ], + [ + "▁Runners", + -13.652792930603027 + ], + [ + "woo", + -13.652812957763672 + ], + [ + "▁entitles", + -13.65281867980957 + ], + [ + "▁delusion", + -13.652839660644531 + ], + [ + "▁Virgo", + -13.65284252166748 + ], + [ + "▁SAL", + -13.652864456176758 + ], + [ + "▁Convenient", + -13.65293025970459 + ], + [ + "▁archaeologists", + -13.652971267700195 + ], + [ + "▁suppressing", + -13.652975082397461 + ], + [ + "▁rung", + -13.65300464630127 + ], + [ + "zak", + -13.653048515319824 + ], + [ + "▁Shelly", + -13.653050422668457 + ], + [ + "▁cataract", + -13.653059959411621 + ], + [ + "296", + -13.65308666229248 + ], + [ + "▁dumplings", + -13.653095245361328 + ], + [ + "▁modal", + -13.653209686279297 + ], + [ + "▁Wilcox", + -13.653217315673828 + ], + [ + "▁Bok", + -13.65322208404541 + ], + [ + "▁seconded", + -13.653261184692383 + ], + [ + "VL", + -13.653276443481445 + ], + [ + "▁Ani", + -13.653297424316406 + ], + [ + "▁Displays", + -13.653319358825684 + ], + [ + "inside", + -13.653399467468262 + ], + [ + "▁collapses", + -13.653454780578613 + ], + [ + "▁keenly", + -13.653508186340332 + ], + [ + "▁Scream", + -13.653521537780762 + ], + [ + "▁HHS", + -13.65357780456543 + ], + [ + "▁Costello", + -13.65361213684082 + ], + [ + "▁oregano", + -13.653615951538086 + ], + [ + "▁slander", + -13.653813362121582 + ], + [ + "▁Mahmoud", + -13.653816223144531 + ], + [ + "▁lightening", + -13.653820991516113 + ], + [ + "▁catfish", + -13.653848648071289 + ], + [ + "hala", + -13.653936386108398 + ], + [ + "▁conflicted", + -13.65394401550293 + ], + [ + "▁brainstorm", + -13.653982162475586 + ], + [ + "albeit", + -13.654026985168457 + ], + [ + "▁adjectives", + -13.654065132141113 + ], + [ + "▁yearbook", + -13.6541109085083 + ], + [ + "▁decked", + -13.654170036315918 + ], + [ + "▁phony", + -13.654282569885254 + ], + [ + "Large", + -13.654356002807617 + ], + [ + "▁Daphne", + -13.654397010803223 + ], + [ + "▁nodding", + -13.654397010803223 + ], + [ + "575", + -13.654399871826172 + ], + [ + "▁kHz", + -13.654399871826172 + ], + [ + "▁BNP", + -13.654425621032715 + ], + [ + "aden", + -13.654430389404297 + ], + [ + "▁Renovation", + -13.654430389404297 + ], + [ + "▁shellfish", + -13.654457092285156 + ], + [ + "▁bumping", + -13.654483795166016 + ], + [ + "▁waterproofing", + -13.654510498046875 + ], + [ + "flying", + -13.654518127441406 + ], + [ + "▁Ledger", + -13.654541969299316 + ], + [ + "draw", + -13.654561996459961 + ], + [ + "▁upholding", + -13.654586791992188 + ], + [ + "izable", + -13.65460205078125 + ], + [ + "▁Deva", + -13.654619216918945 + ], + [ + "▁obstruct", + -13.654622077941895 + ], + [ + "partisan", + -13.654683113098145 + ], + [ + "Files", + -13.654729843139648 + ], + [ + "▁sediments", + -13.654730796813965 + ], + [ + "cutter", + -13.654736518859863 + ], + [ + "▁ingested", + -13.65476131439209 + ], + [ + "▁sprang", + -13.654789924621582 + ], + [ + "▁Utilize", + -13.654824256896973 + ], + [ + "▁surpassing", + -13.654824256896973 + ], + [ + "▁LJ", + -13.654826164245605 + ], + [ + "Section", + -13.65485668182373 + ], + [ + "kis", + -13.654935836791992 + ], + [ + "▁Linguistics", + -13.65494441986084 + ], + [ + "▁hails", + -13.654949188232422 + ], + [ + "▁Dys", + -13.655077934265137 + ], + [ + "Jane", + -13.655121803283691 + ], + [ + "▁MON", + -13.655139923095703 + ], + [ + "808", + -13.65514087677002 + ], + [ + "▁CCA", + -13.655171394348145 + ], + [ + "eastern", + -13.655180931091309 + ], + [ + "▁Remembrance", + -13.655182838439941 + ], + [ + "▁liberate", + -13.65522575378418 + ], + [ + "▁Fiberglass", + -13.65524673461914 + ], + [ + "▁calligraphy", + -13.655247688293457 + ], + [ + "▁HAR", + -13.655264854431152 + ], + [ + "▁impunity", + -13.655339241027832 + ], + [ + "▁Evaluate", + -13.655376434326172 + ], + [ + "▁soloist", + -13.655376434326172 + ], + [ + "▁tripped", + -13.655385971069336 + ], + [ + "▁juncture", + -13.655417442321777 + ], + [ + "389", + -13.655447959899902 + ], + [ + "▁Lazy", + -13.65553092956543 + ], + [ + "▁mammal", + -13.655566215515137 + ], + [ + "▁Refresh", + -13.655617713928223 + ], + [ + "▁charting", + -13.655620574951172 + ], + [ + "offer", + -13.655628204345703 + ], + [ + "▁resorted", + -13.655633926391602 + ], + [ + "▁restructure", + -13.655660629272461 + ], + [ + "▁Macquarie", + -13.655671119689941 + ], + [ + "284", + -13.655701637268066 + ], + [ + "ア", + -13.65575885772705 + ], + [ + "▁Whose", + -13.655805587768555 + ], + [ + "▁transmits", + -13.65584659576416 + ], + [ + "▁lee", + -13.655892372131348 + ], + [ + "▁renter", + -13.65591049194336 + ], + [ + "▁practised", + -13.656031608581543 + ], + [ + "▁Rut", + -13.656042098999023 + ], + [ + "kow", + -13.65614128112793 + ], + [ + "▁Groom", + -13.656156539916992 + ], + [ + "▁immortality", + -13.656201362609863 + ], + [ + "▁Firms", + -13.656221389770508 + ], + [ + "▁impair", + -13.656277656555176 + ], + [ + "▁Alameda", + -13.656326293945312 + ], + [ + "mell", + -13.656410217285156 + ], + [ + "▁Aya", + -13.656452178955078 + ], + [ + "oire", + -13.65646743774414 + ], + [ + "▁intently", + -13.656521797180176 + ], + [ + "▁Concordia", + -13.656545639038086 + ], + [ + "▁freebies", + -13.656641006469727 + ], + [ + "CX", + -13.656669616699219 + ], + [ + "▁socialization", + -13.65670108795166 + ], + [ + "▁MIS", + -13.656749725341797 + ], + [ + "optic", + -13.656760215759277 + ], + [ + "▁đ", + -13.656767845153809 + ], + [ + "▁Gillespie", + -13.656776428222656 + ], + [ + "▁hurtful", + -13.656780242919922 + ], + [ + "356", + -13.656783103942871 + ], + [ + "née", + -13.656791687011719 + ], + [ + "▁Shaft", + -13.656793594360352 + ], + [ + "▁Antigua", + -13.656805992126465 + ], + [ + "▁penthouse", + -13.656808853149414 + ], + [ + "▁anyhow", + -13.65680980682373 + ], + [ + "▁Godzilla", + -13.65689754486084 + ], + [ + "▁bitcoins", + -13.6569185256958 + ], + [ + "▁jamming", + -13.6569185256958 + ], + [ + "▁Roughly", + -13.656933784484863 + ], + [ + "▁incontinence", + -13.656951904296875 + ], + [ + "▁tenders", + -13.657027244567871 + ], + [ + "▁Diva", + -13.657060623168945 + ], + [ + "▁Vila", + -13.657069206237793 + ], + [ + "OPS", + -13.657142639160156 + ], + [ + "▁clam", + -13.657184600830078 + ], + [ + "▁chromatography", + -13.657221794128418 + ], + [ + "▁fentanyl", + -13.657258033752441 + ], + [ + "334", + -13.657261848449707 + ], + [ + "▁Skinny", + -13.65727710723877 + ], + [ + "▁Pantry", + -13.65729808807373 + ], + [ + "▁aortic", + -13.657308578491211 + ], + [ + "194", + -13.657309532165527 + ], + [ + "▁allele", + -13.65733814239502 + ], + [ + "▁exiled", + -13.657441139221191 + ], + [ + "▁Gideon", + -13.657453536987305 + ], + [ + "▁Recommendation", + -13.657474517822266 + ], + [ + "1972", + -13.657503128051758 + ], + [ + "▁fluency", + -13.657510757446289 + ], + [ + "▁girly", + -13.65754222869873 + ], + [ + "▁ploy", + -13.657578468322754 + ], + [ + "▁foothold", + -13.657633781433105 + ], + [ + "▁Northumberland", + -13.657644271850586 + ], + [ + "▁NOR", + -13.657832145690918 + ], + [ + "▁Adjusted", + -13.657846450805664 + ], + [ + "▁SLR", + -13.65802001953125 + ], + [ + "cure", + -13.65803337097168 + ], + [ + "011", + -13.658039093017578 + ], + [ + "▁SBI", + -13.658095359802246 + ], + [ + "▁Pretoria", + -13.658160209655762 + ], + [ + "▁railings", + -13.658172607421875 + ], + [ + "Ku", + -13.658186912536621 + ], + [ + "▁mike", + -13.658238410949707 + ], + [ + "taught", + -13.658329963684082 + ], + [ + "▁streamlining", + -13.658373832702637 + ], + [ + "▁antidepressants", + -13.658390045166016 + ], + [ + "▁grueling", + -13.658397674560547 + ], + [ + "193", + -13.65843677520752 + ], + [ + "▁amoxicillin", + -13.658539772033691 + ], + [ + "▁Wigan", + -13.658652305603027 + ], + [ + "▁elevating", + -13.658700942993164 + ], + [ + "▁slag", + -13.658782005310059 + ], + [ + "▁Exact", + -13.658791542053223 + ], + [ + "finger", + -13.658846855163574 + ], + [ + "▁laborers", + -13.658878326416016 + ], + [ + "▁skillfully", + -13.658884048461914 + ], + [ + "Chair", + -13.658907890319824 + ], + [ + "dp", + -13.65892219543457 + ], + [ + "Six", + -13.65896224975586 + ], + [ + "bob", + -13.658990859985352 + ], + [ + "▁Sten", + -13.658997535705566 + ], + [ + "▁Playground", + -13.659037590026855 + ], + [ + "▁FSA", + -13.659048080444336 + ], + [ + "▁napkin", + -13.659059524536133 + ], + [ + "▁departs", + -13.65906047821045 + ], + [ + "▁NRL", + -13.659073829650879 + ], + [ + "Connell", + -13.659096717834473 + ], + [ + "kl", + -13.659131050109863 + ], + [ + "hands", + -13.65913200378418 + ], + [ + "▁personas", + -13.659136772155762 + ], + [ + "destructive", + -13.659260749816895 + ], + [ + "investment", + -13.65926742553711 + ], + [ + "▁Amor", + -13.659327507019043 + ], + [ + "isco", + -13.659348487854004 + ], + [ + "406", + -13.65934944152832 + ], + [ + "▁yolk", + -13.659382820129395 + ], + [ + "▁CHANGE", + -13.659454345703125 + ], + [ + "tf", + -13.659497261047363 + ], + [ + "▁commenter", + -13.659513473510742 + ], + [ + "▁Locks", + -13.659549713134766 + ], + [ + "gne", + -13.659601211547852 + ], + [ + "▁typewriter", + -13.659689903259277 + ], + [ + "▁resonant", + -13.659708976745605 + ], + [ + "alan", + -13.659768104553223 + ], + [ + "▁homecoming", + -13.659774780273438 + ], + [ + "▁authoring", + -13.659873962402344 + ], + [ + "ISA", + -13.65987777709961 + ], + [ + "bou", + -13.659902572631836 + ], + [ + "unique", + -13.659948348999023 + ], + [ + "▁Stool", + -13.659976959228516 + ], + [ + "▁Mendoza", + -13.660005569458008 + ], + [ + "▁guesses", + -13.66001033782959 + ], + [ + "▁Duane", + -13.660014152526855 + ], + [ + "▁empathetic", + -13.660024642944336 + ], + [ + "Rom", + -13.66003131866455 + ], + [ + "▁marketplaces", + -13.660164833068848 + ], + [ + "emic", + -13.660221099853516 + ], + [ + "▁watercolour", + -13.66026782989502 + ], + [ + "▁bohemian", + -13.6602783203125 + ], + [ + "▁Velcro", + -13.660310745239258 + ], + [ + "gift", + -13.660334587097168 + ], + [ + "▁affiliations", + -13.660381317138672 + ], + [ + "▁catchment", + -13.660398483276367 + ], + [ + "▁251", + -13.660557746887207 + ], + [ + "▁RUN", + -13.660699844360352 + ], + [ + "▁Receiving", + -13.660720825195312 + ], + [ + "gray", + -13.66079044342041 + ], + [ + "▁blisters", + -13.660902976989746 + ], + [ + "▁PLACE", + -13.660947799682617 + ], + [ + "▁vapour", + -13.661026000976562 + ], + [ + "▁Faces", + -13.661038398742676 + ], + [ + "▁asses", + -13.661048889160156 + ], + [ + "Mat", + -13.661054611206055 + ], + [ + "▁Dina", + -13.66112232208252 + ], + [ + "408", + -13.661186218261719 + ], + [ + "▁comprehensively", + -13.661307334899902 + ], + [ + "amy", + -13.66132640838623 + ], + [ + "kri", + -13.661346435546875 + ], + [ + "According", + -13.661412239074707 + ], + [ + "▁Sergey", + -13.661432266235352 + ], + [ + "▁quirks", + -13.661459922790527 + ], + [ + "vista", + -13.661491394042969 + ], + [ + "▁FOOD", + -13.661559104919434 + ], + [ + "▁ATC", + -13.66160774230957 + ], + [ + "▁karate", + -13.66168212890625 + ], + [ + "▁Duluth", + -13.661705017089844 + ], + [ + "prime", + -13.66171646118164 + ], + [ + "▁Crochet", + -13.66180419921875 + ], + [ + "▁SUB", + -13.661823272705078 + ], + [ + "▁sliver", + -13.661871910095215 + ], + [ + "▁Strat", + -13.661913871765137 + ], + [ + "▁Billings", + -13.6619234085083 + ], + [ + "▁EEG", + -13.661927223205566 + ], + [ + "▁Arden", + -13.661948204040527 + ], + [ + "internal", + -13.662023544311523 + ], + [ + "▁afterlife", + -13.662077903747559 + ], + [ + "▁simmering", + -13.662147521972656 + ], + [ + "inducing", + -13.662294387817383 + ], + [ + "な", + -13.662333488464355 + ], + [ + "▁Fist", + -13.662374496459961 + ], + [ + "▁interestingly", + -13.662382125854492 + ], + [ + "▁Aga", + -13.662394523620605 + ], + [ + "Product", + -13.662400245666504 + ], + [ + "▁PPI", + -13.662424087524414 + ], + [ + "▁funders", + -13.662431716918945 + ], + [ + "▁RMS", + -13.662446975708008 + ], + [ + "▁Responding", + -13.662491798400879 + ], + [ + "▁nascent", + -13.662508010864258 + ], + [ + "▁Findings", + -13.66251277923584 + ], + [ + "▁Lore", + -13.662525177001953 + ], + [ + "▁bras", + -13.662561416625977 + ], + [ + "▁Abs", + -13.662576675415039 + ], + [ + "▁ailment", + -13.662581443786621 + ], + [ + "issi", + -13.662674903869629 + ], + [ + "▁Blaine", + -13.662718772888184 + ], + [ + "aye", + -13.662726402282715 + ], + [ + "▁Waist", + -13.662796020507812 + ], + [ + "SIM", + -13.662811279296875 + ], + [ + "▁bottling", + -13.662879943847656 + ], + [ + "▁Persia", + -13.662958145141602 + ], + [ + "▁Melo", + -13.662965774536133 + ], + [ + "▁Bren", + -13.662997245788574 + ], + [ + "▁corrosive", + -13.663092613220215 + ], + [ + "▁commandment", + -13.66316032409668 + ], + [ + "▁VF", + -13.663167953491211 + ], + [ + "▁EDM", + -13.66322135925293 + ], + [ + "▁Nis", + -13.663226127624512 + ], + [ + "▁Tres", + -13.663333892822266 + ], + [ + "▁Hiroshima", + -13.663351058959961 + ], + [ + "shall", + -13.663381576538086 + ], + [ + "▁Km", + -13.663429260253906 + ], + [ + "▁Cheyenne", + -13.663431167602539 + ], + [ + "▁Rowland", + -13.663508415222168 + ], + [ + "▁preclude", + -13.66354751586914 + ], + [ + "▁Fragrance", + -13.663558959960938 + ], + [ + "▁hostels", + -13.663613319396973 + ], + [ + "▁intricacies", + -13.663658142089844 + ], + [ + "▁integrative", + -13.663663864135742 + ], + [ + "▁tadalafil", + -13.66367244720459 + ], + [ + "▁cemeteries", + -13.663675308227539 + ], + [ + "▁Kem", + -13.663697242736816 + ], + [ + "282", + -13.663698196411133 + ], + [ + "367", + -13.663741111755371 + ], + [ + "▁Improvements", + -13.66374397277832 + ], + [ + "▁Concerto", + -13.66376781463623 + ], + [ + "internet", + -13.663803100585938 + ], + [ + "▁Blanco", + -13.663968086242676 + ], + [ + "▁Acne", + -13.663971900939941 + ], + [ + "▁swoop", + -13.663996696472168 + ], + [ + "▁AGO", + -13.663999557495117 + ], + [ + "▁bedrock", + -13.664083480834961 + ], + [ + "▁inconsistency", + -13.664112091064453 + ], + [ + "▁Expedia", + -13.664138793945312 + ], + [ + "▁Staffordshire", + -13.664323806762695 + ], + [ + "▁Berman", + -13.664338111877441 + ], + [ + "▁Naka", + -13.664355278015137 + ], + [ + "▁Augustus", + -13.664363861083984 + ], + [ + "▁sequels", + -13.66441535949707 + ], + [ + "▁SVG", + -13.664427757263184 + ], + [ + "û", + -13.664481163024902 + ], + [ + "▁clans", + -13.664495468139648 + ], + [ + "▁defunct", + -13.66452407836914 + ], + [ + "▁fictitious", + -13.664548873901367 + ], + [ + "▁Parrot", + -13.664594650268555 + ], + [ + "traumatic", + -13.66460132598877 + ], + [ + "▁siren", + -13.664607048034668 + ], + [ + "Short", + -13.6646146774292 + ], + [ + "meal", + -13.66463565826416 + ], + [ + "▁CFA", + -13.664641380310059 + ], + [ + "▁Tala", + -13.664647102355957 + ], + [ + "chev", + -13.664665222167969 + ], + [ + "JR", + -13.664678573608398 + ], + [ + "▁EI", + -13.66468334197998 + ], + [ + "▁nexus", + -13.664735794067383 + ], + [ + "911", + -13.664745330810547 + ], + [ + "▁quarterfinals", + -13.664795875549316 + ], + [ + "litz", + -13.66479778289795 + ], + [ + "▁Darth", + -13.664875030517578 + ], + [ + "▁LSD", + -13.664904594421387 + ], + [ + "drink", + -13.66494369506836 + ], + [ + "▁Vibrating", + -13.6651611328125 + ], + [ + "▁feta", + -13.665169715881348 + ], + [ + "435", + -13.665225982666016 + ], + [ + "▁sys", + -13.665238380432129 + ], + [ + "▁Shankar", + -13.665369033813477 + ], + [ + "lz", + -13.665400505065918 + ], + [ + "294", + -13.665417671203613 + ], + [ + "ometric", + -13.665419578552246 + ], + [ + "▁grating", + -13.665445327758789 + ], + [ + "▁Andres", + -13.665457725524902 + ], + [ + "▁HOPE", + -13.665464401245117 + ], + [ + "▁Oddly", + -13.665501594543457 + ], + [ + "clinical", + -13.665508270263672 + ], + [ + "▁Submissions", + -13.665514945983887 + ], + [ + "▁Releases", + -13.66552448272705 + ], + [ + "▁transcribed", + -13.665580749511719 + ], + [ + "amer", + -13.665581703186035 + ], + [ + "vara", + -13.6655912399292 + ], + [ + "▁Participate", + -13.665702819824219 + ], + [ + "imposed", + -13.66576862335205 + ], + [ + "oris", + -13.665770530700684 + ], + [ + "▁Nim", + -13.665800094604492 + ], + [ + "▁Kimmel", + -13.665804862976074 + ], + [ + "Pat", + -13.665806770324707 + ], + [ + "ival", + -13.665816307067871 + ], + [ + "ω", + -13.665870666503906 + ], + [ + "▁unfounded", + -13.665878295898438 + ], + [ + "不", + -13.665895462036133 + ], + [ + "▁Recognizing", + -13.666008949279785 + ], + [ + "▁Blacks", + -13.666071891784668 + ], + [ + "Acts", + -13.666111946105957 + ], + [ + "▁nucleotide", + -13.666130065917969 + ], + [ + "▁Goo", + -13.66614818572998 + ], + [ + "▁Isla", + -13.666152954101562 + ], + [ + "▁MST", + -13.666170120239258 + ], + [ + "▁uncovering", + -13.666217803955078 + ], + [ + "▁mer", + -13.666264533996582 + ], + [ + "▁claimants", + -13.666291236877441 + ], + [ + "▁IIT", + -13.666313171386719 + ], + [ + "▁Gon", + -13.666325569152832 + ], + [ + "▁bluegrass", + -13.66634750366211 + ], + [ + "▁Dill", + -13.666375160217285 + ], + [ + "BIT", + -13.666409492492676 + ], + [ + "▁Appropriate", + -13.666439056396484 + ], + [ + "▁dashboards", + -13.666444778442383 + ], + [ + "virtual", + -13.666450500488281 + ], + [ + "▁Aquarius", + -13.666550636291504 + ], + [ + "▁Governing", + -13.66655158996582 + ], + [ + "▁rampage", + -13.666582107543945 + ], + [ + "▁spitting", + -13.666592597961426 + ], + [ + "▁august", + -13.666642189025879 + ], + [ + "▁Newer", + -13.666793823242188 + ], + [ + "▁Slayer", + -13.666860580444336 + ], + [ + "orders", + -13.666872024536133 + ], + [ + "▁Estimate", + -13.666887283325195 + ], + [ + "▁Outdoors", + -13.666906356811523 + ], + [ + "▁privatization", + -13.666934967041016 + ], + [ + "▁yu", + -13.666943550109863 + ], + [ + "▁Implement", + -13.666991233825684 + ], + [ + "ار", + -13.66703987121582 + ], + [ + "▁aft", + -13.667174339294434 + ], + [ + "740", + -13.667229652404785 + ], + [ + "stor", + -13.667332649230957 + ], + [ + "ISM", + -13.66738224029541 + ], + [ + "rand", + -13.667391777038574 + ], + [ + "▁cliche", + -13.667475700378418 + ], + [ + "▁SUP", + -13.667510986328125 + ], + [ + "▁Preferences", + -13.667531967163086 + ], + [ + "▁SIGN", + -13.667540550231934 + ], + [ + "▁halogen", + -13.667607307434082 + ], + [ + "▁respiration", + -13.667646408081055 + ], + [ + "▁morphine", + -13.667654991149902 + ], + [ + "▁SBA", + -13.667675018310547 + ], + [ + "▁butler", + -13.667682647705078 + ], + [ + "pier", + -13.667701721191406 + ], + [ + "abe", + -13.667719841003418 + ], + [ + "▁DIA", + -13.667740821838379 + ], + [ + "phenyl", + -13.66781997680664 + ], + [ + "toned", + -13.66785717010498 + ], + [ + "▁fashions", + -13.668031692504883 + ], + [ + "▁conjure", + -13.6680326461792 + ], + [ + "▁Telangana", + -13.668062210083008 + ], + [ + "idos", + -13.668190002441406 + ], + [ + "▁niches", + -13.668221473693848 + ], + [ + "Islamic", + -13.668299674987793 + ], + [ + "ер", + -13.66834545135498 + ], + [ + "▁Lakeland", + -13.6683988571167 + ], + [ + "Vo", + -13.668400764465332 + ], + [ + "▁Giuliani", + -13.668426513671875 + ], + [ + "▁SOC", + -13.668519020080566 + ], + [ + "▁monologue", + -13.668530464172363 + ], + [ + "▁Breathe", + -13.66862964630127 + ], + [ + "▁liturgical", + -13.668675422668457 + ], + [ + "nta", + -13.66870403289795 + ], + [ + "▁staffer", + -13.668709754943848 + ], + [ + "proclaimed", + -13.668717384338379 + ], + [ + "▁Whisper", + -13.668761253356934 + ], + [ + "▁Rh", + -13.668816566467285 + ], + [ + "▁caster", + -13.668952941894531 + ], + [ + "▁fulfilment", + -13.668952941894531 + ], + [ + "▁archiving", + -13.668965339660645 + ], + [ + "▁Oro", + -13.668966293334961 + ], + [ + "▁Ey", + -13.668994903564453 + ], + [ + "owa", + -13.669110298156738 + ], + [ + "▁ecstasy", + -13.669256210327148 + ], + [ + "▁Deere", + -13.669318199157715 + ], + [ + "▁finesse", + -13.66932487487793 + ], + [ + "▁288", + -13.669334411621094 + ], + [ + "▁Soviets", + -13.669341087341309 + ], + [ + "▁Nacional", + -13.669357299804688 + ], + [ + "▁transplants", + -13.669370651245117 + ], + [ + "▁Flipkart", + -13.669382095336914 + ], + [ + "▁refrigerant", + -13.669443130493164 + ], + [ + "▁ا", + -13.669515609741211 + ], + [ + "▁rotates", + -13.669516563415527 + ], + [ + "▁Grocery", + -13.669526100158691 + ], + [ + "▁Gli", + -13.669563293457031 + ], + [ + "▁Synopsis", + -13.669568061828613 + ], + [ + "▁pessimistic", + -13.669612884521484 + ], + [ + "▁UNIT", + -13.669665336608887 + ], + [ + "▁UB", + -13.669699668884277 + ], + [ + "▁intuitively", + -13.669710159301758 + ], + [ + "AAA", + -13.6697998046875 + ], + [ + "ло", + -13.669971466064453 + ], + [ + "▁Unite", + -13.670004844665527 + ], + [ + "▁psych", + -13.670013427734375 + ], + [ + "▁Heal", + -13.670143127441406 + ], + [ + "PORT", + -13.670146942138672 + ], + [ + "▁gist", + -13.67016315460205 + ], + [ + "▁dissimilar", + -13.670308113098145 + ], + [ + "▁Webinar", + -13.670360565185547 + ], + [ + "DK", + -13.670367240905762 + ], + [ + "▁Beginner", + -13.670450210571289 + ], + [ + "zhi", + -13.670495986938477 + ], + [ + "▁416", + -13.670562744140625 + ], + [ + "▁convoluted", + -13.670564651489258 + ], + [ + "▁widths", + -13.67060375213623 + ], + [ + "stones", + -13.670748710632324 + ], + [ + "▁Gaelic", + -13.670808792114258 + ], + [ + "regional", + -13.670902252197266 + ], + [ + "Royal", + -13.67098331451416 + ], + [ + "▁Redmi", + -13.67098617553711 + ], + [ + "▁uterine", + -13.671036720275879 + ], + [ + "465", + -13.671085357666016 + ], + [ + "▁317", + -13.671096801757812 + ], + [ + "▁Hertz", + -13.671117782592773 + ], + [ + "▁rosy", + -13.671180725097656 + ], + [ + "icht", + -13.671183586120605 + ], + [ + "liest", + -13.671187400817871 + ], + [ + "▁blockers", + -13.6712007522583 + ], + [ + "性", + -13.671215057373047 + ], + [ + "gur", + -13.67122745513916 + ], + [ + "▁alerting", + -13.671286582946777 + ], + [ + "slide", + -13.67136001586914 + ], + [ + "▁locomotives", + -13.67137336730957 + ], + [ + "erate", + -13.671462059020996 + ], + [ + "▁pauses", + -13.671479225158691 + ], + [ + "inian", + -13.671540260314941 + ], + [ + "▁smog", + -13.671544075012207 + ], + [ + "▁irritate", + -13.671603202819824 + ], + [ + "▁Barrie", + -13.671613693237305 + ], + [ + "linking", + -13.671636581420898 + ], + [ + "▁Spi", + -13.671643257141113 + ], + [ + "▁Terre", + -13.671688079833984 + ], + [ + "footed", + -13.671754837036133 + ], + [ + "▁overcast", + -13.671770095825195 + ], + [ + "▁Motorsports", + -13.671795845031738 + ], + [ + "▁insecurities", + -13.67187786102295 + ], + [ + "▁Promoting", + -13.671890258789062 + ], + [ + "▁Judd", + -13.671913146972656 + ], + [ + "▁tentatively", + -13.671942710876465 + ], + [ + "▁legalize", + -13.672054290771484 + ], + [ + "▁Shabbat", + -13.672160148620605 + ], + [ + "▁manic", + -13.672296524047852 + ], + [ + "▁sine", + -13.672335624694824 + ], + [ + "▁sealant", + -13.672384262084961 + ], + [ + "Paper", + -13.672407150268555 + ], + [ + "▁Serra", + -13.67244815826416 + ], + [ + "▁migratory", + -13.672454833984375 + ], + [ + "hunting", + -13.672455787658691 + ], + [ + "▁hangout", + -13.672457695007324 + ], + [ + "▁oligo", + -13.672542572021484 + ], + [ + "▁Madam", + -13.6725492477417 + ], + [ + "▁unsightly", + -13.672567367553711 + ], + [ + "▁Zenith", + -13.67261028289795 + ], + [ + "Send", + -13.67265796661377 + ], + [ + "vé", + -13.672660827636719 + ], + [ + "▁601", + -13.672666549682617 + ], + [ + "▁Mosquito", + -13.67266845703125 + ], + [ + "infused", + -13.672699928283691 + ], + [ + "faith", + -13.672728538513184 + ], + [ + "cks", + -13.67281436920166 + ], + [ + "▁haired", + -13.672832489013672 + ], + [ + "▁Siding", + -13.672933578491211 + ], + [ + "▁Vocational", + -13.672968864440918 + ], + [ + "moment", + -13.672992706298828 + ], + [ + "▁storied", + -13.673018455505371 + ], + [ + "LOG", + -13.6730318069458 + ], + [ + "▁USP", + -13.673050880432129 + ], + [ + "▁inhibitory", + -13.67305850982666 + ], + [ + "▁DATE", + -13.673066139221191 + ], + [ + "lid", + -13.673083305358887 + ], + [ + "▁Mage", + -13.67310905456543 + ], + [ + "gir", + -13.673141479492188 + ], + [ + "▁blackmail", + -13.673152923583984 + ], + [ + "▁Ego", + -13.673162460327148 + ], + [ + "hunter", + -13.673194885253906 + ], + [ + "▁cartoonist", + -13.67320728302002 + ], + [ + "ugu", + -13.673261642456055 + ], + [ + "▁metabolites", + -13.67328929901123 + ], + [ + "▁Inspiring", + -13.673304557800293 + ], + [ + "▁hoo", + -13.673318862915039 + ], + [ + "▁scraped", + -13.673367500305176 + ], + [ + "▁Archaeological", + -13.673388481140137 + ], + [ + "▁bleaching", + -13.67341136932373 + ], + [ + "▁buffs", + -13.673416137695312 + ], + [ + "ə", + -13.67343521118164 + ], + [ + "uran", + -13.673444747924805 + ], + [ + "▁BIO", + -13.673455238342285 + ], + [ + "▁neutron", + -13.673465728759766 + ], + [ + "347", + -13.673626899719238 + ], + [ + "Ju", + -13.673633575439453 + ], + [ + "▁lukewarm", + -13.673697471618652 + ], + [ + "▁Rees", + -13.673713684082031 + ], + [ + "▁Maher", + -13.673742294311523 + ], + [ + "▁Collision", + -13.673749923706055 + ], + [ + "▁figurative", + -13.67375373840332 + ], + [ + "▁stylus", + -13.673776626586914 + ], + [ + "▁tai", + -13.67378044128418 + ], + [ + "cigarettes", + -13.673917770385742 + ], + [ + "▁Eliminate", + -13.673946380615234 + ], + [ + "▁restful", + -13.673956871032715 + ], + [ + "▁Citigroup", + -13.674030303955078 + ], + [ + "▁Warhol", + -13.674196243286133 + ], + [ + "▁Ramsay", + -13.674233436584473 + ], + [ + "▁voicing", + -13.674247741699219 + ], + [ + "О", + -13.674270629882812 + ], + [ + "▁flashback", + -13.674311637878418 + ], + [ + "Founder", + -13.674345970153809 + ], + [ + "▁favours", + -13.674396514892578 + ], + [ + "▁standardization", + -13.674407958984375 + ], + [ + "rul", + -13.67441177368164 + ], + [ + "▁ration", + -13.67453670501709 + ], + [ + "▁rattling", + -13.674574851989746 + ], + [ + "▁bidders", + -13.674629211425781 + ], + [ + "▁bling", + -13.67463207244873 + ], + [ + "▁Mainland", + -13.674664497375488 + ], + [ + "1600", + -13.67466926574707 + ], + [ + "▁EVEN", + -13.674824714660645 + ], + [ + "▁Doctoral", + -13.674901008605957 + ], + [ + "▁Raton", + -13.67495346069336 + ], + [ + "▁buzzer", + -13.6749906539917 + ], + [ + "▁jailbreak", + -13.674993515014648 + ], + [ + "▁vel", + -13.675041198730469 + ], + [ + "▁transports", + -13.675091743469238 + ], + [ + "▁pictorial", + -13.675116539001465 + ], + [ + "pk", + -13.67512035369873 + ], + [ + "▁chants", + -13.675292015075684 + ], + [ + "▁wield", + -13.675298690795898 + ], + [ + "▁slurry", + -13.675315856933594 + ], + [ + "▁408", + -13.6753511428833 + ], + [ + "▁Moz", + -13.675393104553223 + ], + [ + "▁Vas", + -13.675470352172852 + ], + [ + "▁IDEA", + -13.675491333007812 + ], + [ + "▁Patagonia", + -13.675514221191406 + ], + [ + "▁Approx", + -13.675629615783691 + ], + [ + "▁briefs", + -13.675631523132324 + ], + [ + "▁Taxation", + -13.675692558288574 + ], + [ + "HAN", + -13.675756454467773 + ], + [ + "▁salient", + -13.675764083862305 + ], + [ + "▁projectors", + -13.675795555114746 + ], + [ + "▁dwellers", + -13.67581844329834 + ], + [ + "Beauty", + -13.675823211669922 + ], + [ + "▁WARRANTY", + -13.675950050354004 + ], + [ + "yal", + -13.676011085510254 + ], + [ + "gallon", + -13.67601490020752 + ], + [ + "Stars", + -13.67602825164795 + ], + [ + "▁Keeper", + -13.676037788391113 + ], + [ + "▁Chao", + -13.676069259643555 + ], + [ + "▁anticipates", + -13.676081657409668 + ], + [ + "196", + -13.676124572753906 + ], + [ + "▁garrison", + -13.676149368286133 + ], + [ + "▁pierce", + -13.676227569580078 + ], + [ + "▁drape", + -13.676273345947266 + ], + [ + "▁inquisitive", + -13.676288604736328 + ], + [ + "yuan", + -13.676291465759277 + ], + [ + "▁Grape", + -13.676299095153809 + ], + [ + "emp", + -13.676309585571289 + ], + [ + "▁Calcutta", + -13.676323890686035 + ], + [ + "▁Consumption", + -13.67636489868164 + ], + [ + "▁Hubby", + -13.676370620727539 + ], + [ + "▁Latter", + -13.676383972167969 + ], + [ + "▁limbo", + -13.676405906677246 + ], + [ + "▁Boxer", + -13.676422119140625 + ], + [ + "▁boar", + -13.67642879486084 + ], + [ + "▁Goldsmith", + -13.676433563232422 + ], + [ + "▁Blo", + -13.67646598815918 + ], + [ + "Hall", + -13.67652416229248 + ], + [ + "▁buttermilk", + -13.676595687866211 + ], + [ + "▁choreographer", + -13.676652908325195 + ], + [ + "▁WWF", + -13.676674842834473 + ], + [ + "pping", + -13.676675796508789 + ], + [ + "▁skulls", + -13.676697731018066 + ], + [ + "icum", + -13.676704406738281 + ], + [ + "▁Graeme", + -13.676836013793945 + ], + [ + "gna", + -13.67691421508789 + ], + [ + "1969", + -13.676929473876953 + ], + [ + "rique", + -13.676987648010254 + ], + [ + "▁aunts", + -13.677098274230957 + ], + [ + "Express", + -13.67722225189209 + ], + [ + "▁crotch", + -13.677240371704102 + ], + [ + "yong", + -13.67724609375 + ], + [ + "▁Volcano", + -13.677292823791504 + ], + [ + "▁Kle", + -13.677314758300781 + ], + [ + "▁carnage", + -13.677337646484375 + ], + [ + "▁handouts", + -13.67734432220459 + ], + [ + "seal", + -13.677367210388184 + ], + [ + "conservative", + -13.67737102508545 + ], + [ + "▁Heater", + -13.677385330200195 + ], + [ + "▁fateful", + -13.67745590209961 + ], + [ + "atin", + -13.677457809448242 + ], + [ + "▁fuses", + -13.677458763122559 + ], + [ + "talking", + -13.677559852600098 + ], + [ + "▁runny", + -13.677582740783691 + ], + [ + "DOS", + -13.67762279510498 + ], + [ + "▁Consulate", + -13.67763614654541 + ], + [ + "▁cookbooks", + -13.677641868591309 + ], + [ + "▁CCD", + -13.677664756774902 + ], + [ + "loe", + -13.677684783935547 + ], + [ + "▁northbound", + -13.677721977233887 + ], + [ + "802", + -13.677742958068848 + ], + [ + "tou", + -13.677755355834961 + ], + [ + "▁tuner", + -13.677800178527832 + ], + [ + "▁exclusions", + -13.677881240844727 + ], + [ + "▁enforceable", + -13.677884101867676 + ], + [ + "▁Cardiovascular", + -13.67789077758789 + ], + [ + "▁testimonial", + -13.678032875061035 + ], + [ + "▁brimming", + -13.67803955078125 + ], + [ + "benefit", + -13.678085327148438 + ], + [ + "▁gubernatorial", + -13.678120613098145 + ], + [ + "▁comm", + -13.67812728881836 + ], + [ + "▁Bundesliga", + -13.678170204162598 + ], + [ + "▁wreak", + -13.678208351135254 + ], + [ + "▁lowers", + -13.678213119506836 + ], + [ + "▁absentee", + -13.678230285644531 + ], + [ + "lm", + -13.678231239318848 + ], + [ + "▁snowboard", + -13.678237915039062 + ], + [ + "edo", + -13.678244590759277 + ], + [ + "▁Sophomore", + -13.678308486938477 + ], + [ + "▁Robb", + -13.678335189819336 + ], + [ + "▁Maroon", + -13.678349494934082 + ], + [ + "ação", + -13.678411483764648 + ], + [ + "368", + -13.678465843200684 + ], + [ + "▁platelet", + -13.678472518920898 + ], + [ + "cache", + -13.67848014831543 + ], + [ + "384", + -13.678509712219238 + ], + [ + "▁cinematography", + -13.67851448059082 + ], + [ + "spirit", + -13.678547859191895 + ], + [ + "▁folly", + -13.678590774536133 + ], + [ + "▁climber", + -13.67866325378418 + ], + [ + "fell", + -13.678664207458496 + ], + [ + "▁underworld", + -13.67871379852295 + ], + [ + "▁Harness", + -13.678744316101074 + ], + [ + "▁Silicone", + -13.67876148223877 + ], + [ + "▁hooking", + -13.678808212280273 + ], + [ + "▁Zeppelin", + -13.678820610046387 + ], + [ + "▁Limo", + -13.67884635925293 + ], + [ + "iton", + -13.678853034973145 + ], + [ + "▁Owing", + -13.678885459899902 + ], + [ + "itude", + -13.678964614868164 + ], + [ + "mask", + -13.678972244262695 + ], + [ + "▁revolutions", + -13.678986549377441 + ], + [ + "historical", + -13.67898941040039 + ], + [ + "344", + -13.679000854492188 + ], + [ + "▁degenerative", + -13.679012298583984 + ], + [ + "▁parsing", + -13.679034233093262 + ], + [ + "▁majoring", + -13.679046630859375 + ], + [ + "▁qualifiers", + -13.679049491882324 + ], + [ + "▁wishlist", + -13.679102897644043 + ], + [ + "secure", + -13.679169654846191 + ], + [ + "▁Diaspora", + -13.679426193237305 + ], + [ + "jee", + -13.679442405700684 + ], + [ + "▁paul", + -13.679491996765137 + ], + [ + "▁Ithaca", + -13.679513931274414 + ], + [ + "▁nuk", + -13.679557800292969 + ], + [ + "▁Presenting", + -13.67963981628418 + ], + [ + "▁boardroom", + -13.679781913757324 + ], + [ + "▁authorisation", + -13.679877281188965 + ], + [ + "▁Ethnic", + -13.679899215698242 + ], + [ + "▁snowmobile", + -13.679906845092773 + ], + [ + "builder", + -13.679940223693848 + ], + [ + "▁MVC", + -13.679952621459961 + ], + [ + "▁Dh", + -13.679972648620605 + ], + [ + "▁gamblers", + -13.680010795593262 + ], + [ + "▁Hoe", + -13.68001937866211 + ], + [ + "authentic", + -13.68002700805664 + ], + [ + "metry", + -13.680039405822754 + ], + [ + "catcher", + -13.68013858795166 + ], + [ + "▁Islander", + -13.680150985717773 + ], + [ + "▁Alejandro", + -13.680152893066406 + ], + [ + "▁starve", + -13.680211067199707 + ], + [ + "▁Chou", + -13.680251121520996 + ], + [ + "▁sizzling", + -13.680341720581055 + ], + [ + "push", + -13.680380821228027 + ], + [ + "▁porta", + -13.680401802062988 + ], + [ + "▁Maltese", + -13.680418968200684 + ], + [ + "▁PLAN", + -13.68043041229248 + ], + [ + "acion", + -13.680447578430176 + ], + [ + "▁Atletico", + -13.680448532104492 + ], + [ + "▁Ritual", + -13.680538177490234 + ], + [ + "▁Meri", + -13.680543899536133 + ], + [ + "▁Suburban", + -13.68061351776123 + ], + [ + "▁Nook", + -13.680670738220215 + ], + [ + "▁wirelessly", + -13.680683135986328 + ], + [ + "▁sis", + -13.680719375610352 + ], + [ + "▁burdened", + -13.680723190307617 + ], + [ + "deserved", + -13.680733680725098 + ], + [ + "▁genesis", + -13.68073558807373 + ], + [ + "▁Gri", + -13.680752754211426 + ], + [ + "▁pul", + -13.680782318115234 + ], + [ + "▁circumcision", + -13.68078327178955 + ], + [ + "iber", + -13.680830001831055 + ], + [ + "▁Gou", + -13.680867195129395 + ], + [ + "▁Suisse", + -13.680908203125 + ], + [ + "utta", + -13.680929183959961 + ], + [ + "▁fulfills", + -13.680939674377441 + ], + [ + "▁loaned", + -13.68103313446045 + ], + [ + "▁figs", + -13.681037902832031 + ], + [ + "▁Kes", + -13.68104076385498 + ], + [ + "▁Authentication", + -13.681073188781738 + ], + [ + "▁Clearing", + -13.68111801147461 + ], + [ + "▁Wordpress", + -13.681161880493164 + ], + [ + "circle", + -13.68116283416748 + ], + [ + "▁boomers", + -13.681173324584961 + ], + [ + "genetic", + -13.68130111694336 + ], + [ + "▁Holistic", + -13.681320190429688 + ], + [ + "▁Countertops", + -13.68135929107666 + ], + [ + "▁tro", + -13.68139362335205 + ], + [ + "killing", + -13.681403160095215 + ], + [ + "▁Dickson", + -13.68143081665039 + ], + [ + "▁reiterate", + -13.6814546585083 + ], + [ + "▁Wins", + -13.681507110595703 + ], + [ + "loans", + -13.681602478027344 + ], + [ + "Del", + -13.681605339050293 + ], + [ + "▁heartwarming", + -13.681641578674316 + ], + [ + "▁assimilation", + -13.681678771972656 + ], + [ + "▁proofreading", + -13.681690216064453 + ], + [ + "▁fam", + -13.681695938110352 + ], + [ + "▁softener", + -13.681705474853516 + ], + [ + "▁pecans", + -13.68171501159668 + ], + [ + "▁waged", + -13.681808471679688 + ], + [ + "▁signings", + -13.681859016418457 + ], + [ + "▁Hitachi", + -13.681872367858887 + ], + [ + "lists", + -13.681933403015137 + ], + [ + "▁Saf", + -13.681966781616211 + ], + [ + "▁locales", + -13.68197250366211 + ], + [ + "▁chromium", + -13.682085037231445 + ], + [ + "riz", + -13.682096481323242 + ], + [ + "mortar", + -13.682113647460938 + ], + [ + "▁customise", + -13.682125091552734 + ], + [ + "torn", + -13.682127952575684 + ], + [ + "▁jot", + -13.682198524475098 + ], + [ + "rta", + -13.682223320007324 + ], + [ + "▁trackers", + -13.682243347167969 + ], + [ + "▁ketogenic", + -13.682275772094727 + ], + [ + "rub", + -13.682276725769043 + ], + [ + "▁Ecological", + -13.682310104370117 + ], + [ + "▁Firewall", + -13.682413101196289 + ], + [ + "fusion", + -13.682461738586426 + ], + [ + "▁umpire", + -13.682565689086914 + ], + [ + "▁catalysts", + -13.682573318481445 + ], + [ + "▁coloration", + -13.682583808898926 + ], + [ + "▁NRC", + -13.682600975036621 + ], + [ + "▁expansions", + -13.682679176330566 + ], + [ + "▁driveways", + -13.682680130004883 + ], + [ + "▁inaccuracies", + -13.682682037353516 + ], + [ + "▁bitterly", + -13.682685852050781 + ], + [ + "matched", + -13.682687759399414 + ], + [ + "▁Iranians", + -13.682694435119629 + ], + [ + "▁McGuire", + -13.682711601257324 + ], + [ + "▁convent", + -13.6827392578125 + ], + [ + "▁graphene", + -13.682740211486816 + ], + [ + "▁cutie", + -13.682765007019043 + ], + [ + "▁alphabetical", + -13.682812690734863 + ], + [ + "▁publicized", + -13.682812690734863 + ], + [ + "▁Crossroads", + -13.682820320129395 + ], + [ + "▁Orwell", + -13.682820320129395 + ], + [ + "590", + -13.682894706726074 + ], + [ + "▁rue", + -13.682912826538086 + ], + [ + "anu", + -13.682953834533691 + ], + [ + "etter", + -13.682963371276855 + ], + [ + "▁Motley", + -13.682963371276855 + ], + [ + "사", + -13.683004379272461 + ], + [ + "509", + -13.683038711547852 + ], + [ + "▁tornadoes", + -13.683042526245117 + ], + [ + "▁divergent", + -13.683048248291016 + ], + [ + "▁democracies", + -13.68308162689209 + ], + [ + "unk", + -13.68311595916748 + ], + [ + "▁gangster", + -13.683159828186035 + ], + [ + "▁salespeople", + -13.683262825012207 + ], + [ + "▁Greenfield", + -13.683279991149902 + ], + [ + "Cy", + -13.683294296264648 + ], + [ + "▁SER", + -13.68333625793457 + ], + [ + "▁Marcia", + -13.683356285095215 + ], + [ + "▁Proudly", + -13.683361053466797 + ], + [ + "▁Targets", + -13.683405876159668 + ], + [ + "nim", + -13.683438301086426 + ], + [ + "▁Paragraph", + -13.683440208435059 + ], + [ + "▁unloaded", + -13.683445930480957 + ], + [ + "EH", + -13.683469772338867 + ], + [ + "wat", + -13.683478355407715 + ], + [ + "▁momentary", + -13.683533668518066 + ], + [ + "▁Tricks", + -13.683537483215332 + ], + [ + "▁Bund", + -13.683542251586914 + ], + [ + "▁rumble", + -13.683542251586914 + ], + [ + "▁plenary", + -13.683603286743164 + ], + [ + "sourced", + -13.683639526367188 + ], + [ + "▁adhesives", + -13.683677673339844 + ], + [ + "▁sunburn", + -13.683756828308105 + ], + [ + "▁Affair", + -13.683757781982422 + ], + [ + "cats", + -13.6837797164917 + ], + [ + "▁earners", + -13.683876991271973 + ], + [ + "▁oracle", + -13.683884620666504 + ], + [ + "▁aspirants", + -13.683939933776855 + ], + [ + "▁lament", + -13.684021949768066 + ], + [ + "▁ff", + -13.6840238571167 + ], + [ + "dorf", + -13.684037208557129 + ], + [ + "starter", + -13.684093475341797 + ], + [ + "▁definitively", + -13.684112548828125 + ], + [ + "▁inert", + -13.684123992919922 + ], + [ + "▁unmarked", + -13.684141159057617 + ], + [ + "▁arson", + -13.684185028076172 + ], + [ + "signal", + -13.684196472167969 + ], + [ + "uy", + -13.684271812438965 + ], + [ + "▁converters", + -13.68430233001709 + ], + [ + "▁fra", + -13.684362411499023 + ], + [ + "▁Madeline", + -13.684388160705566 + ], + [ + "▁gasped", + -13.684427261352539 + ], + [ + "▁rabies", + -13.684429168701172 + ], + [ + "▁Zoning", + -13.684521675109863 + ], + [ + "▁infuse", + -13.684554100036621 + ], + [ + "▁Placing", + -13.684582710266113 + ], + [ + "▁unconsciously", + -13.684586524963379 + ], + [ + "▁Homecoming", + -13.684648513793945 + ], + [ + "▁Orr", + -13.684832572937012 + ], + [ + "▁twelfth", + -13.684898376464844 + ], + [ + "bau", + -13.684904098510742 + ], + [ + "▁Calhoun", + -13.684914588928223 + ], + [ + "▁Falk", + -13.684978485107422 + ], + [ + "▁quarantine", + -13.68498706817627 + ], + [ + "▁PORT", + -13.685046195983887 + ], + [ + "branch", + -13.685062408447266 + ], + [ + "▁journaling", + -13.68509578704834 + ], + [ + "▁perverse", + -13.685242652893066 + ], + [ + "▁Vive", + -13.685245513916016 + ], + [ + "ร", + -13.685249328613281 + ], + [ + "▁Bryn", + -13.685389518737793 + ], + [ + "▁Peabody", + -13.685413360595703 + ], + [ + "rada", + -13.685457229614258 + ], + [ + "▁Gaia", + -13.6856050491333 + ], + [ + "▁luxe", + -13.685606956481934 + ], + [ + "▁Flor", + -13.68564510345459 + ], + [ + "▁246", + -13.685650825500488 + ], + [ + "▁Wesleyan", + -13.68567943572998 + ], + [ + "▁Balkan", + -13.685791969299316 + ], + [ + "▁calculators", + -13.685807228088379 + ], + [ + "▁opportunistic", + -13.685809135437012 + ], + [ + "▁Axel", + -13.685847282409668 + ], + [ + "▁Biochemistry", + -13.685890197753906 + ], + [ + "▁tenets", + -13.685894966125488 + ], + [ + "서", + -13.68589973449707 + ], + [ + "▁Bloomfield", + -13.685905456542969 + ], + [ + "▁është", + -13.685905456542969 + ], + [ + "lav", + -13.68591022491455 + ], + [ + "▁Appointment", + -13.685927391052246 + ], + [ + "क", + -13.685968399047852 + ], + [ + "▁assassinated", + -13.685979843139648 + ], + [ + "▁TLS", + -13.685992240905762 + ], + [ + "▁Antony", + -13.686031341552734 + ], + [ + "fei", + -13.686055183410645 + ], + [ + "▁eras", + -13.686111450195312 + ], + [ + "▁lords", + -13.68615436553955 + ], + [ + "▁tapas", + -13.686169624328613 + ], + [ + "▁Yak", + -13.68620777130127 + ], + [ + "▁tastings", + -13.686267852783203 + ], + [ + "▁Heartland", + -13.686278343200684 + ], + [ + "MIN", + -13.686290740966797 + ], + [ + "▁modernize", + -13.686344146728516 + ], + [ + "det", + -13.686360359191895 + ], + [ + "▁jigsaw", + -13.686453819274902 + ], + [ + "▁untimely", + -13.686471939086914 + ], + [ + "▁mimics", + -13.686500549316406 + ], + [ + "boom", + -13.68651008605957 + ], + [ + "▁Exotic", + -13.686572074890137 + ], + [ + "▁Ef", + -13.686574935913086 + ], + [ + "▁Hertfordshire", + -13.6865873336792 + ], + [ + "ей", + -13.686747550964355 + ], + [ + "▁Dela", + -13.686834335327148 + ], + [ + "kamp", + -13.686883926391602 + ], + [ + "▁Infection", + -13.686938285827637 + ], + [ + "rini", + -13.686997413635254 + ], + [ + "pain", + -13.687047004699707 + ], + [ + "▁γ", + -13.68706226348877 + ], + [ + "hello", + -13.687079429626465 + ], + [ + "▁Loc", + -13.687134742736816 + ], + [ + "aman", + -13.687183380126953 + ], + [ + "▁perpetuate", + -13.68722915649414 + ], + [ + "▁Michal", + -13.68730354309082 + ], + [ + "311", + -13.687331199645996 + ], + [ + "▁Downloads", + -13.687352180480957 + ], + [ + "Count", + -13.687460899353027 + ], + [ + "▁Proceeds", + -13.687485694885254 + ], + [ + "▁medic", + -13.687514305114746 + ], + [ + "Mal", + -13.687521934509277 + ], + [ + "▁ferment", + -13.68761157989502 + ], + [ + "▁SPI", + -13.68761920928955 + ], + [ + "▁putative", + -13.687621116638184 + ], + [ + "▁Morrow", + -13.687654495239258 + ], + [ + "TURE", + -13.687700271606445 + ], + [ + "▁Tas", + -13.687768936157227 + ], + [ + "Linux", + -13.68779468536377 + ], + [ + "nka", + -13.687840461730957 + ], + [ + "Mbps", + -13.687845230102539 + ], + [ + "▁miraculously", + -13.68785572052002 + ], + [ + "▁Geology", + -13.687887191772461 + ], + [ + "▁proprietors", + -13.687971115112305 + ], + [ + "▁bowlers", + -13.687990188598633 + ], + [ + "▁580", + -13.688056945800781 + ], + [ + "istan", + -13.688106536865234 + ], + [ + "▁Aubrey", + -13.688141822814941 + ], + [ + "▁sociological", + -13.688215255737305 + ], + [ + "▁Flea", + -13.688243865966797 + ], + [ + "▁lotions", + -13.688264846801758 + ], + [ + "discount", + -13.688300132751465 + ], + [ + "▁Pon", + -13.68835735321045 + ], + [ + "▁swayed", + -13.688376426696777 + ], + [ + "▁liturgy", + -13.688397407531738 + ], + [ + "▁Ethel", + -13.68842601776123 + ], + [ + "▁programmatic", + -13.688438415527344 + ], + [ + "anticipated", + -13.688454627990723 + ], + [ + "uno", + -13.688458442687988 + ], + [ + "Fort", + -13.688515663146973 + ], + [ + "▁messes", + -13.688563346862793 + ], + [ + "▁keel", + -13.688591957092285 + ], + [ + "▁paraphernalia", + -13.688690185546875 + ], + [ + "ogo", + -13.688814163208008 + ], + [ + "meister", + -13.688860893249512 + ], + [ + "▁Gayle", + -13.68889331817627 + ], + [ + "▁evoked", + -13.68893051147461 + ], + [ + "▁TPP", + -13.688935279846191 + ], + [ + "▁peruse", + -13.68899917602539 + ], + [ + "▁Brin", + -13.689020156860352 + ], + [ + "▁Nestled", + -13.689128875732422 + ], + [ + "▁Jur", + -13.689166069030762 + ], + [ + "▁Depp", + -13.689169883728027 + ], + [ + "▁Balkans", + -13.68918514251709 + ], + [ + "▁venerable", + -13.68923282623291 + ], + [ + "▁Neb", + -13.68924331665039 + ], + [ + "▁Hau", + -13.689248085021973 + ], + [ + "▁benevolent", + -13.689326286315918 + ], + [ + "ACA", + -13.689334869384766 + ], + [ + "kala", + -13.689349174499512 + ], + [ + "▁neglecting", + -13.689393997192383 + ], + [ + "▁Travelling", + -13.689416885375977 + ], + [ + "▁Ville", + -13.689497947692871 + ], + [ + "▁Carney", + -13.689509391784668 + ], + [ + "▁Fidel", + -13.689520835876465 + ], + [ + "▁Failed", + -13.689550399780273 + ], + [ + "▁Motivation", + -13.68955135345459 + ], + [ + "▁UNITED", + -13.689582824707031 + ], + [ + "▁ال", + -13.68960952758789 + ], + [ + "▁literate", + -13.689676284790039 + ], + [ + "▁overpowering", + -13.689868927001953 + ], + [ + "tern", + -13.689881324768066 + ], + [ + "▁Bao", + -13.689922332763672 + ], + [ + "▁LAS", + -13.68993091583252 + ], + [ + "▁Dra", + -13.689998626708984 + ], + [ + "▁Ez", + -13.690040588378906 + ], + [ + "▁Waterfall", + -13.690044403076172 + ], + [ + "366", + -13.690190315246582 + ], + [ + "directional", + -13.690190315246582 + ], + [ + "▁provisioning", + -13.690193176269531 + ], + [ + "▁Scully", + -13.690203666687012 + ], + [ + "298", + -13.690215110778809 + ], + [ + "▁seizing", + -13.690218925476074 + ], + [ + "▁Upton", + -13.69027328491211 + ], + [ + "성", + -13.690427780151367 + ], + [ + "▁Mobi", + -13.690431594848633 + ], + [ + "▁unrivalled", + -13.690437316894531 + ], + [ + "261", + -13.690447807312012 + ], + [ + "▁Throne", + -13.690473556518555 + ], + [ + "▁Kama", + -13.690567970275879 + ], + [ + "▁Hike", + -13.69060230255127 + ], + [ + "▁Г", + -13.690646171569824 + ], + [ + "▁deceit", + -13.690705299377441 + ], + [ + "esta", + -13.690709114074707 + ], + [ + "▁Cider", + -13.690715789794922 + ], + [ + "▁walkthrough", + -13.690759658813477 + ], + [ + "▁Packard", + -13.690766334533691 + ], + [ + "▁einer", + -13.690818786621094 + ], + [ + "▁backcountry", + -13.690858840942383 + ], + [ + "▁parishioners", + -13.690888404846191 + ], + [ + "▁Webber", + -13.690954208374023 + ], + [ + "▁Whichever", + -13.690966606140137 + ], + [ + "▁hydrate", + -13.690985679626465 + ], + [ + "▁eaters", + -13.690997123718262 + ], + [ + "331", + -13.691045761108398 + ], + [ + "▁Drift", + -13.691067695617676 + ], + [ + "▁BAM", + -13.691082954406738 + ], + [ + "▁spares", + -13.69113826751709 + ], + [ + "▁trooper", + -13.691164016723633 + ], + [ + "▁communicator", + -13.691194534301758 + ], + [ + "▁scant", + -13.691204071044922 + ], + [ + "▁747", + -13.691217422485352 + ], + [ + "▁Lesley", + -13.691335678100586 + ], + [ + "▁puddle", + -13.691338539123535 + ], + [ + "▁tru", + -13.69140911102295 + ], + [ + "▁Cd", + -13.691438674926758 + ], + [ + "▁Explanation", + -13.691482543945312 + ], + [ + "271", + -13.691631317138672 + ], + [ + "710", + -13.69170093536377 + ], + [ + "▁Brochure", + -13.691720008850098 + ], + [ + "rox", + -13.691828727722168 + ], + [ + "▁Wolff", + -13.6918363571167 + ], + [ + "▁overgrown", + -13.691899299621582 + ], + [ + "▁saffron", + -13.691943168640137 + ], + [ + "▁encrypt", + -13.691963195800781 + ], + [ + "ии", + -13.692014694213867 + ], + [ + "▁Greenhouse", + -13.6920166015625 + ], + [ + "▁Cancun", + -13.692031860351562 + ], + [ + "▁Madras", + -13.692078590393066 + ], + [ + "▁Monmouth", + -13.692085266113281 + ], + [ + "erated", + -13.692121505737305 + ], + [ + "gated", + -13.692177772521973 + ], + [ + "▁DREAM", + -13.692221641540527 + ], + [ + "▁headings", + -13.692228317260742 + ], + [ + "▁Tutor", + -13.692273139953613 + ], + [ + "▁Exhaust", + -13.692359924316406 + ], + [ + "▁alligator", + -13.692370414733887 + ], + [ + "▁Zombies", + -13.692390441894531 + ], + [ + "▁ANN", + -13.692422866821289 + ], + [ + "▁wasnt", + -13.692484855651855 + ], + [ + "currency", + -13.692530632019043 + ], + [ + "▁exempted", + -13.692583084106445 + ], + [ + "▁Fitch", + -13.692602157592773 + ], + [ + "▁Prius", + -13.692608833312988 + ], + [ + "▁hysteria", + -13.692611694335938 + ], + [ + "▁firmer", + -13.692636489868164 + ], + [ + "opathy", + -13.69271469116211 + ], + [ + "uen", + -13.692825317382812 + ], + [ + "▁Croft", + -13.692830085754395 + ], + [ + "▁misunderstandings", + -13.692960739135742 + ], + [ + "▁Semantic", + -13.69299030303955 + ], + [ + "Jay", + -13.693004608154297 + ], + [ + "▁interconnect", + -13.693021774291992 + ], + [ + "▁Siberian", + -13.693024635314941 + ], + [ + "▁opulent", + -13.693120002746582 + ], + [ + "▁relativity", + -13.693121910095215 + ], + [ + "▁Hayley", + -13.69321060180664 + ], + [ + "ной", + -13.693228721618652 + ], + [ + "▁Loma", + -13.69331169128418 + ], + [ + "▁TOUR", + -13.693333625793457 + ], + [ + "Micro", + -13.693361282348633 + ], + [ + "▁Antioch", + -13.693370819091797 + ], + [ + "318", + -13.693373680114746 + ], + [ + "sf", + -13.693438529968262 + ], + [ + "▁Showtime", + -13.693503379821777 + ], + [ + "▁Furious", + -13.693537712097168 + ], + [ + "▁unconditionally", + -13.693543434143066 + ], + [ + "▁revocation", + -13.693548202514648 + ], + [ + "▁bowled", + -13.693580627441406 + ], + [ + "▁Boer", + -13.693617820739746 + ], + [ + "▁Badger", + -13.693643569946289 + ], + [ + "▁entangled", + -13.693663597106934 + ], + [ + "▁flimsy", + -13.693704605102539 + ], + [ + "▁entrant", + -13.693780899047852 + ], + [ + "▁feeble", + -13.693855285644531 + ], + [ + "▁uptime", + -13.694026947021484 + ], + [ + "▁2026", + -13.694087028503418 + ], + [ + "▁Characteristics", + -13.694153785705566 + ], + [ + "▁Mistress", + -13.694158554077148 + ], + [ + "▁AutoCAD", + -13.694164276123047 + ], + [ + "▁Edo", + -13.694189071655273 + ], + [ + "▁Leach", + -13.69425106048584 + ], + [ + "ан", + -13.694269180297852 + ], + [ + "▁choreographed", + -13.694286346435547 + ], + [ + "▁biochemistry", + -13.694303512573242 + ], + [ + "skilled", + -13.694334030151367 + ], + [ + "▁σ", + -13.694337844848633 + ], + [ + "grams", + -13.694464683532715 + ], + [ + "▁Fries", + -13.694534301757812 + ], + [ + "▁SMB", + -13.694561004638672 + ], + [ + "▁Committees", + -13.694563865661621 + ], + [ + "▁ailing", + -13.69457721710205 + ], + [ + "▁coercion", + -13.694618225097656 + ], + [ + "Mass", + -13.69462776184082 + ], + [ + "▁materialize", + -13.694633483886719 + ], + [ + "opened", + -13.69466781616211 + ], + [ + "ater", + -13.694671630859375 + ], + [ + "▁coolers", + -13.694719314575195 + ], + [ + "▁Indicator", + -13.69480037689209 + ], + [ + "377", + -13.694832801818848 + ], + [ + "▁iframe", + -13.69484806060791 + ], + [ + "utu", + -13.69488525390625 + ], + [ + "seller", + -13.694893836975098 + ], + [ + "▁bristles", + -13.694896697998047 + ], + [ + "▁Cambogia", + -13.694904327392578 + ], + [ + "009", + -13.694947242736816 + ], + [ + "▁pulley", + -13.694948196411133 + ], + [ + "▁1855", + -13.694953918457031 + ], + [ + "pour", + -13.694979667663574 + ], + [ + "voltage", + -13.695043563842773 + ], + [ + "▁foldable", + -13.695062637329102 + ], + [ + "▁shrunk", + -13.695077896118164 + ], + [ + "▁Shy", + -13.695093154907227 + ], + [ + "everyone", + -13.695115089416504 + ], + [ + "▁pounded", + -13.695186614990234 + ], + [ + "▁skaters", + -13.695249557495117 + ], + [ + "▁Mississauga", + -13.695326805114746 + ], + [ + "andi", + -13.69534683227539 + ], + [ + "▁factoring", + -13.695378303527832 + ], + [ + "▁breakdowns", + -13.695405960083008 + ], + [ + "column", + -13.695452690124512 + ], + [ + "▁rattled", + -13.69560432434082 + ], + [ + "Ok", + -13.695640563964844 + ], + [ + "▁Cheer", + -13.695666313171387 + ], + [ + "▁deflect", + -13.6956787109375 + ], + [ + "▁rewriting", + -13.695710182189941 + ], + [ + "UF", + -13.695719718933105 + ], + [ + "▁ker", + -13.695880889892578 + ], + [ + "▁arctic", + -13.695893287658691 + ], + [ + "tered", + -13.695951461791992 + ], + [ + "▁shopped", + -13.695991516113281 + ], + [ + "▁navigator", + -13.696080207824707 + ], + [ + "▁Trainers", + -13.69610595703125 + ], + [ + "343", + -13.696114540100098 + ], + [ + "quer", + -13.696130752563477 + ], + [ + "▁recreated", + -13.696147918701172 + ], + [ + "▁Arthritis", + -13.696163177490234 + ], + [ + "▁sympathize", + -13.69619369506836 + ], + [ + "tate", + -13.696222305297852 + ], + [ + "▁Syed", + -13.69630241394043 + ], + [ + "▁sweeteners", + -13.696313858032227 + ], + [ + "▁Merritt", + -13.696349143981934 + ], + [ + "Account", + -13.696404457092285 + ], + [ + "imus", + -13.696504592895508 + ], + [ + "kw", + -13.696585655212402 + ], + [ + "▁̄", + -13.696603775024414 + ], + [ + "▁overloaded", + -13.696611404418945 + ], + [ + "▁Passengers", + -13.696640014648438 + ], + [ + "nette", + -13.69665241241455 + ], + [ + "▁VIN", + -13.696654319763184 + ], + [ + "▁vitally", + -13.696688652038574 + ], + [ + "omb", + -13.69669246673584 + ], + [ + "925", + -13.696711540222168 + ], + [ + "▁gurus", + -13.696746826171875 + ], + [ + "▁allocating", + -13.69675064086914 + ], + [ + "▁Linn", + -13.696761131286621 + ], + [ + "▁Sah", + -13.696805000305176 + ], + [ + "chia", + -13.696898460388184 + ], + [ + "▁Roach", + -13.696975708007812 + ], + [ + "▁PAT", + -13.696979522705078 + ], + [ + "▁legion", + -13.696992874145508 + ], + [ + "▁Soak", + -13.697042465209961 + ], + [ + "▁revisited", + -13.697078704833984 + ], + [ + "▁Marxism", + -13.697105407714844 + ], + [ + "▁perfecting", + -13.697113990783691 + ], + [ + "▁322", + -13.697121620178223 + ], + [ + "issued", + -13.697164535522461 + ], + [ + "▁emanating", + -13.697174072265625 + ], + [ + "▁cubicle", + -13.697205543518066 + ], + [ + "rra", + -13.69723892211914 + ], + [ + "▁Cav", + -13.697281837463379 + ], + [ + "▁tricked", + -13.69731616973877 + ], + [ + "▁Beside", + -13.697402954101562 + ], + [ + "marine", + -13.697434425354004 + ], + [ + "▁THINK", + -13.697479248046875 + ], + [ + "dder", + -13.697542190551758 + ], + [ + "▁Symantec", + -13.697565078735352 + ], + [ + "escu", + -13.697669982910156 + ], + [ + "▁oblige", + -13.697681427001953 + ], + [ + "▁Casper", + -13.697737693786621 + ], + [ + "oche", + -13.697778701782227 + ], + [ + "▁monasteries", + -13.697796821594238 + ], + [ + "▁Ida", + -13.697800636291504 + ], + [ + "▁lull", + -13.697806358337402 + ], + [ + "▁Cllr", + -13.697826385498047 + ], + [ + "▁Oxide", + -13.697885513305664 + ], + [ + "▁blacksmith", + -13.697890281677246 + ], + [ + "▁313", + -13.697908401489258 + ], + [ + "▁anew", + -13.697908401489258 + ], + [ + "includes", + -13.697919845581055 + ], + [ + "lana", + -13.697933197021484 + ], + [ + "alter", + -13.697980880737305 + ], + [ + "▁tarmac", + -13.69801139831543 + ], + [ + "▁Greer", + -13.698042869567871 + ], + [ + "ल", + -13.698102951049805 + ], + [ + "▁Tons", + -13.69819164276123 + ], + [ + "ная", + -13.698193550109863 + ], + [ + "▁Wedge", + -13.69820499420166 + ], + [ + "▁Roasted", + -13.698227882385254 + ], + [ + "▁281", + -13.698293685913086 + ], + [ + "▁Colby", + -13.698342323303223 + ], + [ + "▁unresponsive", + -13.698399543762207 + ], + [ + "▁alternator", + -13.698442459106445 + ], + [ + "ف", + -13.698578834533691 + ], + [ + "▁deflection", + -13.698639869689941 + ], + [ + "▁burners", + -13.698709487915039 + ], + [ + "▁aboriginal", + -13.698722839355469 + ], + [ + "▁Penang", + -13.698750495910645 + ], + [ + "▁Ignore", + -13.698793411254883 + ], + [ + "▁CMOS", + -13.698816299438477 + ], + [ + "▁Blocked", + -13.69883918762207 + ], + [ + "▁superstars", + -13.698847770690918 + ], + [ + "okay", + -13.699049949645996 + ], + [ + "▁Correctional", + -13.699051856994629 + ], + [ + "▁Nazareth", + -13.699103355407715 + ], + [ + "▁Rowling", + -13.699114799499512 + ], + [ + "▁edema", + -13.699131965637207 + ], + [ + "▁warped", + -13.6991605758667 + ], + [ + "▁Accelerator", + -13.69918441772461 + ], + [ + "▁Dwarf", + -13.699198722839355 + ], + [ + "▁Ugly", + -13.699211120605469 + ], + [ + "▁Fond", + -13.699219703674316 + ], + [ + "▁Bianca", + -13.699286460876465 + ], + [ + "tenant", + -13.699345588684082 + ], + [ + "342", + -13.699373245239258 + ], + [ + "▁Gravel", + -13.699386596679688 + ], + [ + "▁dislikes", + -13.699392318725586 + ], + [ + "603", + -13.699408531188965 + ], + [ + "▁UE", + -13.69942855834961 + ], + [ + "athi", + -13.699467658996582 + ], + [ + "▁conundrum", + -13.69951057434082 + ], + [ + "出", + -13.6995210647583 + ], + [ + "▁LMS", + -13.69957447052002 + ], + [ + "▁Kalamazoo", + -13.699604988098145 + ], + [ + "chter", + -13.699637413024902 + ], + [ + "▁Void", + -13.699684143066406 + ], + [ + "pala", + -13.699700355529785 + ], + [ + "▁tangent", + -13.69970989227295 + ], + [ + "criminal", + -13.699719429016113 + ], + [ + "▁Nach", + -13.699725151062012 + ], + [ + "SEO", + -13.699735641479492 + ], + [ + "▁insulted", + -13.699764251708984 + ], + [ + "init", + -13.699774742126465 + ], + [ + "hundred", + -13.699803352355957 + ], + [ + "▁polarity", + -13.699851036071777 + ], + [ + "▁negotiator", + -13.699865341186523 + ], + [ + "▁aromatherapy", + -13.699871063232422 + ], + [ + "▁Poo", + -13.699884414672852 + ], + [ + "▁DWI", + -13.699921607971191 + ], + [ + "zilla", + -13.699979782104492 + ], + [ + "▁Reaching", + -13.70004940032959 + ], + [ + "分", + -13.700103759765625 + ], + [ + "ْ", + -13.7001314163208 + ], + [ + "mei", + -13.70016098022461 + ], + [ + "▁deliberations", + -13.700185775756836 + ], + [ + "▁Glasses", + -13.700189590454102 + ], + [ + "▁concealer", + -13.700220108032227 + ], + [ + "▁Thirteen", + -13.700257301330566 + ], + [ + "▁Sudanese", + -13.700295448303223 + ], + [ + "ě", + -13.700312614440918 + ], + [ + "▁herring", + -13.70035457611084 + ], + [ + "▁Politico", + -13.700413703918457 + ], + [ + "▁pretext", + -13.700515747070312 + ], + [ + "▁triumphs", + -13.70056438446045 + ], + [ + "▁Warrant", + -13.700592994689941 + ], + [ + "▁Kurdistan", + -13.70063304901123 + ], + [ + "▁inundated", + -13.70068073272705 + ], + [ + "▁Wiltshire", + -13.700682640075684 + ], + [ + "nf", + -13.700822830200195 + ], + [ + "▁Iain", + -13.700843811035156 + ], + [ + "▁Feinstein", + -13.700858116149902 + ], + [ + "RING", + -13.700865745544434 + ], + [ + "▁spleen", + -13.700879096984863 + ], + [ + "ondo", + -13.700927734375 + ], + [ + "▁sto", + -13.700927734375 + ], + [ + "ा", + -13.700984954833984 + ], + [ + "▁calibre", + -13.701004028320312 + ], + [ + "▁adjourned", + -13.70103645324707 + ], + [ + "▁Neurology", + -13.701059341430664 + ], + [ + "cul", + -13.701089859008789 + ], + [ + "mouse", + -13.701094627380371 + ], + [ + "nau", + -13.701116561889648 + ], + [ + "▁validating", + -13.70121955871582 + ], + [ + "▁bearer", + -13.701227188110352 + ], + [ + "▁compulsion", + -13.701311111450195 + ], + [ + "▁tombs", + -13.701370239257812 + ], + [ + "itate", + -13.701390266418457 + ], + [ + "▁DEF", + -13.70146656036377 + ], + [ + "▁Hypo", + -13.701578140258789 + ], + [ + "▁Pei", + -13.701616287231445 + ], + [ + "▁Fundraising", + -13.70162296295166 + ], + [ + "▁appropriated", + -13.701739311218262 + ], + [ + "▁joe", + -13.701817512512207 + ], + [ + "▁877", + -13.701820373535156 + ], + [ + "▁gasp", + -13.701827049255371 + ], + [ + "OV", + -13.701850891113281 + ], + [ + "▁Neymar", + -13.701889038085938 + ], + [ + "▁fil", + -13.701939582824707 + ], + [ + "▁fairies", + -13.702065467834473 + ], + [ + "sana", + -13.702094078063965 + ], + [ + "delivery", + -13.702132225036621 + ], + [ + "▁Yas", + -13.70214557647705 + ], + [ + "▁eponymous", + -13.70216178894043 + ], + [ + "▁flashbacks", + -13.702287673950195 + ], + [ + "▁raving", + -13.702301025390625 + ], + [ + "▁editable", + -13.702345848083496 + ], + [ + "▁grinning", + -13.702351570129395 + ], + [ + "bf", + -13.702366828918457 + ], + [ + "Brexit", + -13.70238208770752 + ], + [ + "▁dissection", + -13.702383041381836 + ], + [ + "XT", + -13.702560424804688 + ], + [ + "▁haste", + -13.702570915222168 + ], + [ + "▁Excuse", + -13.702655792236328 + ], + [ + "▁lac", + -13.702670097351074 + ], + [ + "▁Moldova", + -13.70267105102539 + ], + [ + "▁modelled", + -13.702698707580566 + ], + [ + "ân", + -13.7027006149292 + ], + [ + "▁duplicates", + -13.702882766723633 + ], + [ + "▁wobble", + -13.702888488769531 + ], + [ + "▁1858", + -13.702942848205566 + ], + [ + "▁Zel", + -13.702942848205566 + ], + [ + "▁cascading", + -13.703007698059082 + ], + [ + "▁Alain", + -13.703073501586914 + ], + [ + "▁Afterward", + -13.703107833862305 + ], + [ + "▁Socks", + -13.703110694885254 + ], + [ + "▁insidious", + -13.70311450958252 + ], + [ + "▁Adopt", + -13.703125 + ], + [ + "▁Deadpool", + -13.703126907348633 + ], + [ + "▁tungsten", + -13.703161239624023 + ], + [ + "▁Sabres", + -13.70327377319336 + ], + [ + "▁Maguire", + -13.703362464904785 + ], + [ + "▁INTERNATIONAL", + -13.703412055969238 + ], + [ + "▁eyeglasses", + -13.703413009643555 + ], + [ + "▁unearthed", + -13.703468322753906 + ], + [ + "▁hare", + -13.703495025634766 + ], + [ + "▁307", + -13.703584671020508 + ], + [ + "▁payback", + -13.703639030456543 + ], + [ + "▁Asylum", + -13.703660011291504 + ], + [ + "▁canning", + -13.703660011291504 + ], + [ + "▁Klan", + -13.70367431640625 + ], + [ + "ience", + -13.703678131103516 + ], + [ + "executive", + -13.70379638671875 + ], + [ + "▁pigmentation", + -13.703838348388672 + ], + [ + "▁CCP", + -13.703869819641113 + ], + [ + "▁Baked", + -13.703927993774414 + ], + [ + "▁ingest", + -13.703950881958008 + ], + [ + "▁Asher", + -13.70395278930664 + ], + [ + "▁yay", + -13.703991889953613 + ], + [ + "▁preoccupied", + -13.704026222229004 + ], + [ + "▁Peugeot", + -13.704028129577637 + ], + [ + "▁Solve", + -13.704035758972168 + ], + [ + "▁licensure", + -13.704115867614746 + ], + [ + "▁Vlad", + -13.704174995422363 + ], + [ + "hunt", + -13.70424747467041 + ], + [ + "Score", + -13.704259872436523 + ], + [ + "▁teleport", + -13.704331398010254 + ], + [ + "▁Heel", + -13.704346656799316 + ], + [ + "▁appalled", + -13.704368591308594 + ], + [ + "Cut", + -13.704401016235352 + ], + [ + "▁irritable", + -13.704437255859375 + ], + [ + "▁Silverado", + -13.70445442199707 + ], + [ + "▁Lowes", + -13.704495429992676 + ], + [ + "▁Campground", + -13.70451545715332 + ], + [ + "▁rollover", + -13.704524993896484 + ], + [ + "▁subwoofer", + -13.70452880859375 + ], + [ + "▁Cardi", + -13.704560279846191 + ], + [ + "▁upstate", + -13.704633712768555 + ], + [ + "fb", + -13.704778671264648 + ], + [ + "lighting", + -13.70481014251709 + ], + [ + "▁inseparable", + -13.704824447631836 + ], + [ + "▁skater", + -13.704841613769531 + ], + [ + "▁clutches", + -13.704845428466797 + ], + [ + "▁bashing", + -13.704863548278809 + ], + [ + "▁bru", + -13.704880714416504 + ], + [ + "▁solidify", + -13.704983711242676 + ], + [ + "▁NULL", + -13.705010414123535 + ], + [ + "strand", + -13.70510482788086 + ], + [ + "▁ivy", + -13.705121994018555 + ], + [ + "▁inventing", + -13.7051362991333 + ], + [ + "▁shuts", + -13.705145835876465 + ], + [ + "▁stylized", + -13.705161094665527 + ], + [ + "▁Immortal", + -13.705291748046875 + ], + [ + "▁ops", + -13.705305099487305 + ], + [ + "iment", + -13.705348014831543 + ], + [ + "▁situational", + -13.705385208129883 + ], + [ + "▁1854", + -13.705483436584473 + ], + [ + "▁unites", + -13.705534934997559 + ], + [ + "buch", + -13.705623626708984 + ], + [ + "▁Foto", + -13.705629348754883 + ], + [ + "▁Dianne", + -13.705646514892578 + ], + [ + "▁Bavarian", + -13.705658912658691 + ], + [ + "▁Gloves", + -13.705690383911133 + ], + [ + "▁SCO", + -13.705696105957031 + ], + [ + "▁lubrication", + -13.705700874328613 + ], + [ + "292", + -13.705714225769043 + ], + [ + "▁sustenance", + -13.705737113952637 + ], + [ + "▁Cornelius", + -13.705739974975586 + ], + [ + "▁playbook", + -13.705791473388672 + ], + [ + "▁Abortion", + -13.705801963806152 + ], + [ + "toria", + -13.705812454223633 + ], + [ + "▁Dine", + -13.705904960632324 + ], + [ + "▁straining", + -13.705948829650879 + ], + [ + "Format", + -13.705977439880371 + ], + [ + "▁345", + -13.70604133605957 + ], + [ + "flame", + -13.706072807312012 + ], + [ + "▁musicals", + -13.706108093261719 + ], + [ + "rider", + -13.706137657165527 + ], + [ + "iles", + -13.706144332885742 + ], + [ + "▁Suns", + -13.70615005493164 + ], + [ + "Bet", + -13.706156730651855 + ], + [ + "▁sho", + -13.706188201904297 + ], + [ + "▁likened", + -13.706222534179688 + ], + [ + "▁auspicious", + -13.706256866455078 + ], + [ + "▁endorsing", + -13.706304550170898 + ], + [ + "amma", + -13.706330299377441 + ], + [ + "funding", + -13.70634651184082 + ], + [ + "▁Squeeze", + -13.706354141235352 + ], + [ + "▁Holders", + -13.70640754699707 + ], + [ + "667", + -13.706514358520508 + ], + [ + "▁Experiences", + -13.706514358520508 + ], + [ + "▁SIZE", + -13.70651626586914 + ], + [ + "ró", + -13.706587791442871 + ], + [ + "ongo", + -13.706633567810059 + ], + [ + "▁Milling", + -13.706664085388184 + ], + [ + "▁Vogel", + -13.706705093383789 + ], + [ + "▁Jax", + -13.706707954406738 + ], + [ + "▁sprinkling", + -13.706717491149902 + ], + [ + "▁Marquis", + -13.706748962402344 + ], + [ + "▁Canopy", + -13.706757545471191 + ], + [ + "iji", + -13.706769943237305 + ], + [ + "▁atlas", + -13.706808090209961 + ], + [ + "dict", + -13.706921577453613 + ], + [ + "▁Nawaz", + -13.706942558288574 + ], + [ + "▁foraging", + -13.706975936889648 + ], + [ + "▁expats", + -13.707280158996582 + ], + [ + "737", + -13.707317352294922 + ], + [ + "▁Hispanics", + -13.707355499267578 + ], + [ + "tronic", + -13.70740795135498 + ], + [ + "▁rework", + -13.707419395446777 + ], + [ + "▁Dementia", + -13.70742416381836 + ], + [ + "▁frontage", + -13.707571983337402 + ], + [ + "▁glimmer", + -13.707659721374512 + ], + [ + "▁Bess", + -13.707666397094727 + ], + [ + "▁Closer", + -13.707672119140625 + ], + [ + "ades", + -13.70769214630127 + ], + [ + "▁transformers", + -13.707695007324219 + ], + [ + "▁extractor", + -13.707721710205078 + ], + [ + "▁Extend", + -13.70772647857666 + ], + [ + "▁VGA", + -13.707738876342773 + ], + [ + "▁semesters", + -13.707764625549316 + ], + [ + "Fer", + -13.707820892333984 + ], + [ + "▁shenanigans", + -13.707822799682617 + ], + [ + "▁fanatics", + -13.70785140991211 + ], + [ + "▁Hydrogen", + -13.707929611206055 + ], + [ + "wk", + -13.70794677734375 + ], + [ + "glo", + -13.707979202270508 + ], + [ + "▁promenade", + -13.708005905151367 + ], + [ + "▁leverages", + -13.708087921142578 + ], + [ + "tk", + -13.7081298828125 + ], + [ + "▁241", + -13.708274841308594 + ], + [ + "▁Museums", + -13.708324432373047 + ], + [ + "▁dictionaries", + -13.708354949951172 + ], + [ + "▁Weiner", + -13.70841121673584 + ], + [ + "pair", + -13.70844841003418 + ], + [ + "▁Esp", + -13.708495140075684 + ], + [ + "▁WOOD", + -13.708663940429688 + ], + [ + "▁arbitrarily", + -13.708677291870117 + ], + [ + "ص", + -13.708695411682129 + ], + [ + "▁footnote", + -13.708721160888672 + ], + [ + "wie", + -13.708761215209961 + ], + [ + "LIC", + -13.708803176879883 + ], + [ + "▁stallion", + -13.708847045898438 + ], + [ + "▁Tx", + -13.708901405334473 + ], + [ + "▁scaffold", + -13.70895004272461 + ], + [ + "▁EAST", + -13.708968162536621 + ], + [ + "▁Miner", + -13.708972930908203 + ], + [ + "▁Potomac", + -13.709065437316895 + ], + [ + "rene", + -13.709074974060059 + ], + [ + "▁unintentional", + -13.709096908569336 + ], + [ + "pathy", + -13.709142684936523 + ], + [ + "▁denounce", + -13.709156036376953 + ], + [ + "Channel", + -13.709173202514648 + ], + [ + "Jim", + -13.709239959716797 + ], + [ + "▁hipster", + -13.709247589111328 + ], + [ + "▁Amer", + -13.709266662597656 + ], + [ + "▁handyman", + -13.709338188171387 + ], + [ + "▁undermines", + -13.709355354309082 + ], + [ + "▁extrusion", + -13.709430694580078 + ], + [ + "▁Anastasia", + -13.70944595336914 + ], + [ + "▁Mushroom", + -13.709485054016113 + ], + [ + "▁Reconciliation", + -13.709524154663086 + ], + [ + "▁Communism", + -13.709529876708984 + ], + [ + "▁Blazers", + -13.709543228149414 + ], + [ + "▁vouch", + -13.709552764892578 + ], + [ + "▁Rea", + -13.709639549255371 + ], + [ + "▁Nak", + -13.709646224975586 + ], + [ + "▁environmentalists", + -13.709647178649902 + ], + [ + "▁Behold", + -13.709678649902344 + ], + [ + "▁apprehensive", + -13.709700584411621 + ], + [ + "Living", + -13.70970344543457 + ], + [ + "▁catholic", + -13.709761619567871 + ], + [ + "▁vari", + -13.70976734161377 + ], + [ + "▁jeopardize", + -13.709794998168945 + ], + [ + "▁Mohan", + -13.709797859191895 + ], + [ + "Fix", + -13.709837913513184 + ], + [ + "riya", + -13.709850311279297 + ], + [ + "▁lifeline", + -13.709860801696777 + ], + [ + "▁uptick", + -13.709909439086914 + ], + [ + "▁charred", + -13.709951400756836 + ], + [ + "akan", + -13.709977149963379 + ], + [ + "▁ECG", + -13.709979057312012 + ], + [ + "820", + -13.709996223449707 + ], + [ + "▁stretchy", + -13.71002197265625 + ], + [ + "▁beet", + -13.71006965637207 + ], + [ + "sik", + -13.710119247436523 + ], + [ + "▁solos", + -13.71027946472168 + ], + [ + "▁termite", + -13.710298538208008 + ], + [ + "▁Sensors", + -13.710304260253906 + ], + [ + "▁exorbitant", + -13.710346221923828 + ], + [ + "▁lumen", + -13.710346221923828 + ], + [ + "▁lures", + -13.710471153259277 + ], + [ + "▁Drawer", + -13.710551261901855 + ], + [ + "▁reserving", + -13.710634231567383 + ], + [ + "▁866", + -13.710646629333496 + ], + [ + "▁2400", + -13.710688591003418 + ], + [ + "Modern", + -13.710694313049316 + ], + [ + "▁Erickson", + -13.710702896118164 + ], + [ + "▁Pisa", + -13.710711479187012 + ], + [ + "▁enclave", + -13.710719108581543 + ], + [ + "▁carvings", + -13.710724830627441 + ], + [ + "▁heterogeneity", + -13.710724830627441 + ], + [ + "▁Visitation", + -13.710783958435059 + ], + [ + "▁GPs", + -13.710784912109375 + ], + [ + "▁Kelowna", + -13.710808753967285 + ], + [ + "▁atypical", + -13.710822105407715 + ], + [ + "424", + -13.710844993591309 + ], + [ + "▁spotless", + -13.710892677307129 + ], + [ + "▁334", + -13.71092700958252 + ], + [ + "glow", + -13.710946083068848 + ], + [ + "▁grande", + -13.71097183227539 + ], + [ + "▁Capp", + -13.71098804473877 + ], + [ + "wired", + -13.71099853515625 + ], + [ + "ת", + -13.711054801940918 + ], + [ + "scene", + -13.711094856262207 + ], + [ + "▁Bucharest", + -13.711099624633789 + ], + [ + "▁Groupon", + -13.711105346679688 + ], + [ + "▁nervously", + -13.711191177368164 + ], + [ + "however", + -13.711212158203125 + ], + [ + "▁overriding", + -13.71121597290039 + ], + [ + "▁Num", + -13.71121883392334 + ], + [ + "▁twine", + -13.711228370666504 + ], + [ + "›", + -13.711231231689453 + ], + [ + "marks", + -13.711249351501465 + ], + [ + "▁flops", + -13.711277961730957 + ], + [ + "▁Raul", + -13.711301803588867 + ], + [ + "tria", + -13.711311340332031 + ], + [ + "▁Jian", + -13.7113676071167 + ], + [ + "▁checker", + -13.711370468139648 + ], + [ + "▁anabolic", + -13.711376190185547 + ], + [ + "rough", + -13.71145248413086 + ], + [ + "▁ascended", + -13.711529731750488 + ], + [ + "maintenance", + -13.7115478515625 + ], + [ + "Mer", + -13.711577415466309 + ], + [ + "▁CRO", + -13.711578369140625 + ], + [ + "▁Slovak", + -13.711613655090332 + ], + [ + "eers", + -13.711702346801758 + ], + [ + "acher", + -13.71171760559082 + ], + [ + "▁Porcelain", + -13.71180534362793 + ], + [ + "▁inflate", + -13.711831092834473 + ], + [ + "sara", + -13.711913108825684 + ], + [ + "erin", + -13.711919784545898 + ], + [ + "arro", + -13.711935043334961 + ], + [ + "▁Briefs", + -13.712023735046387 + ], + [ + "salt", + -13.712105751037598 + ], + [ + "▁Dinosaur", + -13.712186813354492 + ], + [ + "▁ulcer", + -13.712189674377441 + ], + [ + "▁showering", + -13.712285041809082 + ], + [ + "▁resell", + -13.712331771850586 + ], + [ + "▁expedited", + -13.712379455566406 + ], + [ + "▁airbag", + -13.712395668029785 + ], + [ + "▁Kry", + -13.712400436401367 + ], + [ + "▁rescheduled", + -13.712448120117188 + ], + [ + "▁grandkids", + -13.712457656860352 + ], + [ + "noy", + -13.712471961975098 + ], + [ + "▁stressors", + -13.712505340576172 + ], + [ + "▁digitized", + -13.712550163269043 + ], + [ + "▁KK", + -13.712594032287598 + ], + [ + "roid", + -13.71263599395752 + ], + [ + "▁subcommittee", + -13.712688446044922 + ], + [ + "▁permeability", + -13.712695121765137 + ], + [ + "▁rubric", + -13.712723731994629 + ], + [ + "▁kilometer", + -13.712728500366211 + ], + [ + "lose", + -13.712775230407715 + ], + [ + "▁colonialism", + -13.712798118591309 + ], + [ + "▁Pf", + -13.712844848632812 + ], + [ + "▁Burbank", + -13.712867736816406 + ], + [ + "▁kn", + -13.712916374206543 + ], + [ + "▁alienation", + -13.71293830871582 + ], + [ + "▁teller", + -13.713019371032715 + ], + [ + "Unfortunately", + -13.713115692138672 + ], + [ + "▁wheelchairs", + -13.713132858276367 + ], + [ + "Building", + -13.713197708129883 + ], + [ + "▁dystopian", + -13.713313102722168 + ], + [ + "▁lance", + -13.713321685791016 + ], + [ + "rz", + -13.713388442993164 + ], + [ + "POS", + -13.713407516479492 + ], + [ + "▁Stellar", + -13.713507652282715 + ], + [ + "inf", + -13.713568687438965 + ], + [ + "thorpe", + -13.713613510131836 + ], + [ + "IU", + -13.713644981384277 + ], + [ + "▁VOC", + -13.713666915893555 + ], + [ + "▁hemorrhage", + -13.713675498962402 + ], + [ + "▁authorizing", + -13.713705062866211 + ], + [ + "▁hanged", + -13.713739395141602 + ], + [ + "spread", + -13.713749885559082 + ], + [ + "loud", + -13.713788032531738 + ], + [ + "▁lax", + -13.713813781738281 + ], + [ + "▁Dungeon", + -13.713820457458496 + ], + [ + "▁Accessibility", + -13.713857650756836 + ], + [ + "mainly", + -13.71396541595459 + ], + [ + "▁thrived", + -13.713979721069336 + ], + [ + "citation", + -13.714000701904297 + ], + [ + "BK", + -13.714058876037598 + ], + [ + "Case", + -13.714066505432129 + ], + [ + "▁methadone", + -13.714069366455078 + ], + [ + "device", + -13.714106559753418 + ], + [ + "▁IMPLIED", + -13.714120864868164 + ], + [ + "▁fallacy", + -13.714159965515137 + ], + [ + "▁coasts", + -13.714238166809082 + ], + [ + "▁Dang", + -13.714462280273438 + ], + [ + "▁shelling", + -13.714510917663574 + ], + [ + "▁Tester", + -13.714513778686523 + ], + [ + "▁tiered", + -13.714536666870117 + ], + [ + "▁Cecilia", + -13.714639663696289 + ], + [ + "▁earmarked", + -13.714682579040527 + ], + [ + "▁mont", + -13.71473503112793 + ], + [ + "▁Flush", + -13.714747428894043 + ], + [ + "▁cadence", + -13.714852333068848 + ], + [ + "▁RAD", + -13.714914321899414 + ], + [ + "▁Systematic", + -13.714914321899414 + ], + [ + "▁curiously", + -13.71493148803711 + ], + [ + "Whether", + -13.714936256408691 + ], + [ + "▁Cutler", + -13.714962005615234 + ], + [ + "rob", + -13.714970588684082 + ], + [ + "▁Wilbur", + -13.715008735656738 + ], + [ + "▁undefined", + -13.715030670166016 + ], + [ + "▁omni", + -13.715062141418457 + ], + [ + "inal", + -13.71507453918457 + ], + [ + "▁counsellor", + -13.715176582336426 + ], + [ + "▁adventurers", + -13.71519660949707 + ], + [ + "tones", + -13.7152099609375 + ], + [ + "▁acquires", + -13.715210914611816 + ], + [ + "▁forfeiture", + -13.71524429321289 + ], + [ + "YC", + -13.715306282043457 + ], + [ + "▁Coyotes", + -13.715311050415039 + ], + [ + "▁slay", + -13.715372085571289 + ], + [ + "Maker", + -13.715424537658691 + ], + [ + "▁foggy", + -13.715458869934082 + ], + [ + "▁lesbians", + -13.71548843383789 + ], + [ + "Frame", + -13.715628623962402 + ], + [ + "▁pertain", + -13.715700149536133 + ], + [ + "align", + -13.715784072875977 + ], + [ + "NAME", + -13.715831756591797 + ], + [ + "Audio", + -13.715851783752441 + ], + [ + "▁complacent", + -13.71585464477539 + ], + [ + "▁revolutionize", + -13.715861320495605 + ], + [ + "▁lymphatic", + -13.715874671936035 + ], + [ + "▁Kash", + -13.715897560119629 + ], + [ + "▁Warming", + -13.715926170349121 + ], + [ + "▁Wilkes", + -13.715933799743652 + ], + [ + "▁evaporated", + -13.715938568115234 + ], + [ + "▁Andes", + -13.71595287322998 + ], + [ + "▁264", + -13.71602725982666 + ], + [ + "„", + -13.716033935546875 + ], + [ + "tsu", + -13.716059684753418 + ], + [ + "▁veritable", + -13.716146469116211 + ], + [ + "trin", + -13.716151237487793 + ], + [ + "▁foresight", + -13.716239929199219 + ], + [ + "leave", + -13.7162504196167 + ], + [ + "▁CAA", + -13.716253280639648 + ], + [ + "▁Suggest", + -13.716264724731445 + ], + [ + "▁alluded", + -13.716270446777344 + ], + [ + "▁curators", + -13.716276168823242 + ], + [ + "cells", + -13.716357231140137 + ], + [ + "▁Tow", + -13.7164306640625 + ], + [ + "▁Avocado", + -13.716445922851562 + ], + [ + "▁kur", + -13.716511726379395 + ], + [ + "▁hitherto", + -13.716516494750977 + ], + [ + "ional", + -13.716526985168457 + ], + [ + "▁saith", + -13.716564178466797 + ], + [ + "▁cholera", + -13.716636657714844 + ], + [ + "▁rigorously", + -13.716636657714844 + ], + [ + "ُ", + -13.71666431427002 + ], + [ + "▁Kristina", + -13.716675758361816 + ], + [ + "▁meditating", + -13.71668815612793 + ], + [ + "▁Boats", + -13.716736793518066 + ], + [ + "▁Tetra", + -13.716803550720215 + ], + [ + "▁manicure", + -13.716911315917969 + ], + [ + "▁Kennel", + -13.716927528381348 + ], + [ + "▁reshape", + -13.71697998046875 + ], + [ + "▁Leh", + -13.716996192932129 + ], + [ + "▁uniting", + -13.717016220092773 + ], + [ + "boss", + -13.717020988464355 + ], + [ + "▁Paddle", + -13.717100143432617 + ], + [ + "▁UF", + -13.71717643737793 + ], + [ + "VILLE", + -13.717209815979004 + ], + [ + "Screen", + -13.7172269821167 + ], + [ + "eyes", + -13.717239379882812 + ], + [ + "▁Cyto", + -13.717292785644531 + ], + [ + "▁Pax", + -13.717353820800781 + ], + [ + "Son", + -13.71735668182373 + ], + [ + "elman", + -13.717358589172363 + ], + [ + "ggs", + -13.717405319213867 + ], + [ + "▁Compound", + -13.717418670654297 + ], + [ + "iver", + -13.717472076416016 + ], + [ + "▁Jolly", + -13.717485427856445 + ], + [ + "ми", + -13.717644691467285 + ], + [ + "▁PRC", + -13.71772289276123 + ], + [ + "▁disapproval", + -13.717724800109863 + ], + [ + "▁Humanitarian", + -13.717788696289062 + ], + [ + "ISP", + -13.717794418334961 + ], + [ + "yce", + -13.71788215637207 + ], + [ + "▁Richter", + -13.717885971069336 + ], + [ + "▁Athlete", + -13.71794319152832 + ], + [ + "ddy", + -13.718016624450684 + ], + [ + "▁adjuster", + -13.718082427978516 + ], + [ + "▁probiotic", + -13.718213081359863 + ], + [ + "Try", + -13.718293190002441 + ], + [ + "▁Liber", + -13.718297004699707 + ], + [ + "▁Kors", + -13.718352317810059 + ], + [ + "▁£40", + -13.718449592590332 + ], + [ + "▁coasters", + -13.718466758728027 + ], + [ + "▁Aspects", + -13.718481063842773 + ], + [ + "▁cowl", + -13.71850299835205 + ], + [ + "kovic", + -13.718531608581543 + ], + [ + "▁Lenny", + -13.718549728393555 + ], + [ + "▁318", + -13.718578338623047 + ], + [ + "▁reconciled", + -13.718592643737793 + ], + [ + "▁Emeritus", + -13.718620300292969 + ], + [ + "▁apprehended", + -13.71865177154541 + ], + [ + "▁Roanoke", + -13.718659400939941 + ], + [ + "▁Samurai", + -13.7186861038208 + ], + [ + "JE", + -13.718689918518066 + ], + [ + "▁Premiership", + -13.718729019165039 + ], + [ + "▁oscillator", + -13.718768119812012 + ], + [ + "▁Traverse", + -13.718783378601074 + ], + [ + "iding", + -13.71880054473877 + ], + [ + "▁geeks", + -13.718842506408691 + ], + [ + "idge", + -13.718888282775879 + ], + [ + "▁Pia", + -13.718914985656738 + ], + [ + "▁fuselage", + -13.718923568725586 + ], + [ + "▁Koz", + -13.718966484069824 + ], + [ + "▁affective", + -13.719000816345215 + ], + [ + "▁Deng", + -13.719001770019531 + ], + [ + "▁mixtape", + -13.719049453735352 + ], + [ + "▁dilemmas", + -13.719057083129883 + ], + [ + "Services", + -13.719071388244629 + ], + [ + "▁Yam", + -13.719098091125488 + ], + [ + "▁Lever", + -13.719099044799805 + ], + [ + "hence", + -13.719114303588867 + ], + [ + "▁frigid", + -13.719158172607422 + ], + [ + "▁fibromyalgia", + -13.719217300415039 + ], + [ + "▁utilitarian", + -13.719257354736328 + ], + [ + "olu", + -13.719343185424805 + ], + [ + "▁Pensacola", + -13.719372749328613 + ], + [ + "▁campaigners", + -13.71948528289795 + ], + [ + "▁CRE", + -13.71951961517334 + ], + [ + "wrap", + -13.719582557678223 + ], + [ + "▁lob", + -13.719595909118652 + ], + [ + "▁cacao", + -13.71963119506836 + ], + [ + "Steve", + -13.719663619995117 + ], + [ + "▁devoured", + -13.71969223022461 + ], + [ + "▁seventies", + -13.719752311706543 + ], + [ + "rolling", + -13.71977424621582 + ], + [ + "▁787", + -13.71982479095459 + ], + [ + "▁ALA", + -13.719844818115234 + ], + [ + "▁skew", + -13.719862937927246 + ], + [ + "paint", + -13.719883918762207 + ], + [ + "▁blunder", + -13.719998359680176 + ], + [ + "▁Saigon", + -13.72000789642334 + ], + [ + "▁Zer", + -13.720017433166504 + ], + [ + "▁244", + -13.72003173828125 + ], + [ + "388", + -13.720185279846191 + ], + [ + "364", + -13.720487594604492 + ], + [ + "▁osteo", + -13.720537185668945 + ], + [ + "▁McDermott", + -13.720569610595703 + ], + [ + "▁Accurate", + -13.720597267150879 + ], + [ + "BW", + -13.72066879272461 + ], + [ + "▁excitation", + -13.720746040344238 + ], + [ + "▁Blinds", + -13.720882415771484 + ], + [ + "▁blinked", + -13.720961570739746 + ], + [ + "▁Dramatic", + -13.720989227294922 + ], + [ + "▁carbide", + -13.720996856689453 + ], + [ + "▁Eph", + -13.721028327941895 + ], + [ + "▁Farmington", + -13.721030235290527 + ], + [ + "▁perished", + -13.721039772033691 + ], + [ + "▁studded", + -13.721124649047852 + ], + [ + "▁heighten", + -13.7211332321167 + ], + [ + "▁moot", + -13.721176147460938 + ], + [ + "▁Worm", + -13.721189498901367 + ], + [ + "dora", + -13.721198081970215 + ], + [ + "rance", + -13.721216201782227 + ], + [ + "▁Viewed", + -13.721229553222656 + ], + [ + "▁Zheng", + -13.721231460571289 + ], + [ + "▁Chit", + -13.721244812011719 + ], + [ + "▁rescues", + -13.721250534057617 + ], + [ + "▁NAACP", + -13.721302032470703 + ], + [ + "▁Sedan", + -13.721309661865234 + ], + [ + "▁hatched", + -13.721373558044434 + ], + [ + "IRA", + -13.721376419067383 + ], + [ + "▁MCU", + -13.72139835357666 + ], + [ + "Ki", + -13.72144603729248 + ], + [ + "▁naturalist", + -13.721552848815918 + ], + [ + "mash", + -13.72158145904541 + ], + [ + "▁speechless", + -13.721631050109863 + ], + [ + "▁instalment", + -13.72163200378418 + ], + [ + "breath", + -13.721661567687988 + ], + [ + "▁Mik", + -13.721665382385254 + ], + [ + "▁funerals", + -13.721675872802734 + ], + [ + "▁Zhi", + -13.72168254852295 + ], + [ + "▁encode", + -13.721694946289062 + ], + [ + "▁couture", + -13.721699714660645 + ], + [ + "▁Oversight", + -13.721728324890137 + ], + [ + "▁Daley", + -13.721928596496582 + ], + [ + "CAC", + -13.72195053100586 + ], + [ + "▁exc", + -13.721968650817871 + ], + [ + "▁inquest", + -13.722006797790527 + ], + [ + "▁Illness", + -13.722014427185059 + ], + [ + "pd", + -13.722094535827637 + ], + [ + "pper", + -13.72211742401123 + ], + [ + "▁mussels", + -13.722182273864746 + ], + [ + "▁Bells", + -13.722230911254883 + ], + [ + "341", + -13.722240447998047 + ], + [ + "▁Luton", + -13.722288131713867 + ], + [ + "▁infested", + -13.722423553466797 + ], + [ + "▁transcriptional", + -13.722437858581543 + ], + [ + "▁clover", + -13.722460746765137 + ], + [ + "dozen", + -13.722468376159668 + ], + [ + "ी", + -13.722474098205566 + ], + [ + "▁Modelling", + -13.722495079040527 + ], + [ + "▁visor", + -13.722501754760742 + ], + [ + "▁Blessings", + -13.722517013549805 + ], + [ + "▁forested", + -13.722539901733398 + ], + [ + "▁envious", + -13.722540855407715 + ], + [ + "oper", + -13.722564697265625 + ], + [ + "Editor", + -13.722588539123535 + ], + [ + "kol", + -13.72260570526123 + ], + [ + "▁wildest", + -13.722799301147461 + ], + [ + "▁Zal", + -13.722801208496094 + ], + [ + "▁michael", + -13.722818374633789 + ], + [ + "▁infrastructures", + -13.72284984588623 + ], + [ + "▁Residency", + -13.722947120666504 + ], + [ + "joint", + -13.722953796386719 + ], + [ + "emo", + -13.723010063171387 + ], + [ + "▁REPORT", + -13.723012924194336 + ], + [ + "▁Educator", + -13.723016738891602 + ], + [ + "creator", + -13.723118782043457 + ], + [ + "▁Adel", + -13.723133087158203 + ], + [ + "rounder", + -13.723165512084961 + ], + [ + "ASH", + -13.723186492919922 + ], + [ + "▁Franken", + -13.723210334777832 + ], + [ + "▁Mila", + -13.723212242126465 + ], + [ + "▁shadowy", + -13.723283767700195 + ], + [ + "▁chained", + -13.72335433959961 + ], + [ + "▁heartbroken", + -13.723388671875 + ], + [ + "701", + -13.723390579223633 + ], + [ + "empty", + -13.723485946655273 + ], + [ + "escence", + -13.723485946655273 + ], + [ + "▁Tobago", + -13.723553657531738 + ], + [ + "▁prophecies", + -13.723612785339355 + ], + [ + "▁Shak", + -13.7236967086792 + ], + [ + "nad", + -13.72372817993164 + ], + [ + "▁Exo", + -13.723746299743652 + ], + [ + "▁Plano", + -13.723812103271484 + ], + [ + "353", + -13.723869323730469 + ], + [ + "ican", + -13.723875045776367 + ], + [ + "▁gl", + -13.723885536193848 + ], + [ + "801", + -13.7239351272583 + ], + [ + "maintained", + -13.723936080932617 + ], + [ + "▁kl", + -13.723942756652832 + ], + [ + "▁incomparable", + -13.724008560180664 + ], + [ + "Fla", + -13.724020957946777 + ], + [ + "▁refineries", + -13.724042892456055 + ], + [ + "▁warmest", + -13.724063873291016 + ], + [ + "▁Ashes", + -13.724081993103027 + ], + [ + "▁Māori", + -13.72409725189209 + ], + [ + "▁api", + -13.724151611328125 + ], + [ + "ebo", + -13.724234580993652 + ], + [ + "▁protestors", + -13.724237442016602 + ], + [ + "ć", + -13.724257469177246 + ], + [ + "elic", + -13.724284172058105 + ], + [ + "ordinator", + -13.72429084777832 + ], + [ + "▁windscreen", + -13.724298477172852 + ], + [ + "▁leaderboard", + -13.724347114562988 + ], + [ + "▁253", + -13.724376678466797 + ], + [ + "▁Prohibition", + -13.724417686462402 + ], + [ + "phen", + -13.724440574645996 + ], + [ + "ASA", + -13.724456787109375 + ], + [ + "▁gilt", + -13.724499702453613 + ], + [ + "▁Troll", + -13.724513053894043 + ], + [ + "▁Galveston", + -13.724580764770508 + ], + [ + "▁Colored", + -13.724595069885254 + ], + [ + "Write", + -13.724607467651367 + ], + [ + "▁loopholes", + -13.724629402160645 + ], + [ + "▁fabricate", + -13.724658966064453 + ], + [ + "▁punctuated", + -13.724660873413086 + ], + [ + "▁ALT", + -13.72467041015625 + ], + [ + "▁Purchaser", + -13.724675178527832 + ], + [ + "▁memorials", + -13.724748611450195 + ], + [ + "▁Famer", + -13.724770545959473 + ], + [ + "▁Blum", + -13.724791526794434 + ], + [ + "1968", + -13.724798202514648 + ], + [ + "▁microcontroller", + -13.724809646606445 + ], + [ + "▁palettes", + -13.724811553955078 + ], + [ + "▁aces", + -13.724822044372559 + ], + [ + "▁interpretive", + -13.724855422973633 + ], + [ + "▁pimp", + -13.72486686706543 + ], + [ + "▁vac", + -13.724903106689453 + ], + [ + "omics", + -13.7249174118042 + ], + [ + "▁Auxiliary", + -13.724957466125488 + ], + [ + "Deal", + -13.724974632263184 + ], + [ + "▁Mein", + -13.724983215332031 + ], + [ + "▁equipping", + -13.725000381469727 + ], + [ + "▁comforted", + -13.725018501281738 + ], + [ + "▁gout", + -13.725042343139648 + ], + [ + "▁pos", + -13.72504997253418 + ], + [ + "▁mousse", + -13.725104331970215 + ], + [ + "▁Spock", + -13.725109100341797 + ], + [ + "▁Isabelle", + -13.725116729736328 + ], + [ + "▁Stony", + -13.725126266479492 + ], + [ + "William", + -13.725132942199707 + ], + [ + "▁Guerrero", + -13.725150108337402 + ], + [ + "▁Councilman", + -13.725194931030273 + ], + [ + "▁Cao", + -13.725263595581055 + ], + [ + "▁SPACE", + -13.72530460357666 + ], + [ + "▁friendliness", + -13.725317001342773 + ], + [ + "▁wade", + -13.725393295288086 + ], + [ + "FIELD", + -13.725417137145996 + ], + [ + "▁FIA", + -13.725533485412598 + ], + [ + "▁disseminated", + -13.72557258605957 + ], + [ + "▁Mice", + -13.725597381591797 + ], + [ + "pig", + -13.72563648223877 + ], + [ + "▁Triton", + -13.725652694702148 + ], + [ + "▁Agreements", + -13.725667953491211 + ], + [ + "▁Swallow", + -13.725698471069336 + ], + [ + "449", + -13.725701332092285 + ], + [ + "▁communicative", + -13.725717544555664 + ], + [ + "▁Ephesians", + -13.725769996643066 + ], + [ + "▁Checklist", + -13.725796699523926 + ], + [ + "▁resection", + -13.72580623626709 + ], + [ + "324", + -13.725831031799316 + ], + [ + "▁Filed", + -13.725908279418945 + ], + [ + "▁Pacers", + -13.725957870483398 + ], + [ + "▁Efforts", + -13.72603988647461 + ], + [ + "▁309", + -13.72604751586914 + ], + [ + "▁Bump", + -13.726158142089844 + ], + [ + "▁Camry", + -13.726165771484375 + ], + [ + "▁Pag", + -13.726279258728027 + ], + [ + "▁Presumably", + -13.726295471191406 + ], + [ + "013", + -13.726301193237305 + ], + [ + "▁cardiologist", + -13.726354598999023 + ], + [ + "▁IDC", + -13.726387977600098 + ], + [ + "▁fared", + -13.726433753967285 + ], + [ + "▁intruder", + -13.726465225219727 + ], + [ + "▁Customized", + -13.726497650146484 + ], + [ + "▁Ends", + -13.72652816772461 + ], + [ + "▁unimportant", + -13.726560592651367 + ], + [ + "▁fertilization", + -13.726593971252441 + ], + [ + "▁stately", + -13.726604461669922 + ], + [ + "▁odour", + -13.72661304473877 + ], + [ + "▁froth", + -13.726613998413086 + ], + [ + "▁Suggested", + -13.726617813110352 + ], + [ + "▁humbly", + -13.726622581481934 + ], + [ + "▁Salsa", + -13.726625442504883 + ], + [ + "▁Violin", + -13.7266263961792 + ], + [ + "▁reissue", + -13.726651191711426 + ], + [ + "▁Gustav", + -13.726692199707031 + ], + [ + "▁SIL", + -13.726701736450195 + ], + [ + "▁basing", + -13.726709365844727 + ], + [ + "▁Mort", + -13.72671127319336 + ], + [ + "▁UBC", + -13.72679615020752 + ], + [ + "▁colonists", + -13.726798057556152 + ], + [ + "▁Separator", + -13.726844787597656 + ], + [ + "▁WEEK", + -13.72689151763916 + ], + [ + "▁Clooney", + -13.726985931396484 + ], + [ + "▁grower", + -13.727049827575684 + ], + [ + "Tec", + -13.72706127166748 + ], + [ + "▁Mog", + -13.727082252502441 + ], + [ + "athletes", + -13.727108001708984 + ], + [ + "▁Bulb", + -13.727116584777832 + ], + [ + "▁Sponsors", + -13.727154731750488 + ], + [ + "▁Nino", + -13.727256774902344 + ], + [ + "▁Homeless", + -13.727309226989746 + ], + [ + "▁Centres", + -13.727396965026855 + ], + [ + "▁doorbell", + -13.727595329284668 + ], + [ + "▁Angular", + -13.727633476257324 + ], + [ + "▁resins", + -13.727638244628906 + ], + [ + "▁surfer", + -13.727649688720703 + ], + [ + "▁importers", + -13.727728843688965 + ], + [ + "▁jarring", + -13.72773265838623 + ], + [ + "▁interlocking", + -13.727771759033203 + ], + [ + "pio", + -13.727789878845215 + ], + [ + "▁Mé", + -13.727801322937012 + ], + [ + "▁strikingly", + -13.727806091308594 + ], + [ + "ube", + -13.727812767028809 + ], + [ + "▁nat", + -13.727821350097656 + ], + [ + "▁clashed", + -13.727919578552246 + ], + [ + "‰", + -13.727920532226562 + ], + [ + "▁Griffiths", + -13.727948188781738 + ], + [ + "rma", + -13.72795581817627 + ], + [ + "burger", + -13.7279634475708 + ], + [ + "▁eff", + -13.727978706359863 + ], + [ + "▁hoot", + -13.727994918823242 + ], + [ + "▁Paraguay", + -13.728017807006836 + ], + [ + "▁neurologist", + -13.728102684020996 + ], + [ + "▁regularity", + -13.728117942810059 + ], + [ + "▁355", + -13.728123664855957 + ], + [ + "▁Kip", + -13.72813892364502 + ], + [ + "▁enviable", + -13.728192329406738 + ], + [ + "Gr", + -13.72827434539795 + ], + [ + "▁overuse", + -13.728311538696289 + ], + [ + "potential", + -13.728317260742188 + ], + [ + "Andrew", + -13.728403091430664 + ], + [ + "▁Interests", + -13.728475570678711 + ], + [ + "▁Psychiatric", + -13.72847843170166 + ], + [ + "와", + -13.72849178314209 + ], + [ + "▁Nails", + -13.728492736816406 + ], + [ + "▁Bite", + -13.72854232788086 + ], + [ + "▁Determination", + -13.728598594665527 + ], + [ + "▁crypt", + -13.728656768798828 + ], + [ + "wt", + -13.728726387023926 + ], + [ + "send", + -13.728763580322266 + ], + [ + "346", + -13.728816986083984 + ], + [ + "▁hoarding", + -13.728927612304688 + ], + [ + "ggi", + -13.72897720336914 + ], + [ + "▁Jumbo", + -13.72897720336914 + ], + [ + "▁Isis", + -13.72899055480957 + ], + [ + "▁energize", + -13.729036331176758 + ], + [ + "permanent", + -13.729045867919922 + ], + [ + "abortion", + -13.72911262512207 + ], + [ + "▁ZTE", + -13.729118347167969 + ], + [ + "▁colonel", + -13.729135513305664 + ], + [ + "▁hordes", + -13.729169845581055 + ], + [ + "▁Pilgrim", + -13.729268074035645 + ], + [ + "▁origami", + -13.72933292388916 + ], + [ + "▁Surround", + -13.72936725616455 + ], + [ + "▁pus", + -13.72936725616455 + ], + [ + "▁crayons", + -13.729386329650879 + ], + [ + "▁Supplied", + -13.729403495788574 + ], + [ + "▁Lum", + -13.729485511779785 + ], + [ + "Sound", + -13.729514122009277 + ], + [ + "▁hyperlinks", + -13.729621887207031 + ], + [ + "snow", + -13.72972583770752 + ], + [ + "▁sensitivities", + -13.729779243469238 + ], + [ + "▁Thur", + -13.7298002243042 + ], + [ + "▁meaty", + -13.729812622070312 + ], + [ + "cliff", + -13.729897499084473 + ], + [ + "1971", + -13.729933738708496 + ], + [ + "Louis", + -13.73000717163086 + ], + [ + "ece", + -13.73001766204834 + ], + [ + "tress", + -13.730020523071289 + ], + [ + "535", + -13.730023384094238 + ], + [ + "▁Nietzsche", + -13.730026245117188 + ], + [ + "▁EASY", + -13.730064392089844 + ], + [ + "▁drenched", + -13.730116844177246 + ], + [ + "▁Behaviour", + -13.730125427246094 + ], + [ + "▁Replacing", + -13.730145454406738 + ], + [ + "▁fondness", + -13.730241775512695 + ], + [ + "▁patina", + -13.730257987976074 + ], + [ + "▁Preferably", + -13.730313301086426 + ], + [ + "▁hedging", + -13.730355262756348 + ], + [ + "▁lilies", + -13.73037052154541 + ], + [ + "▁Coding", + -13.73040771484375 + ], + [ + "colonial", + -13.730440139770508 + ], + [ + "▁glycol", + -13.73050594329834 + ], + [ + "▁Odisha", + -13.730538368225098 + ], + [ + "▁intersect", + -13.730565071105957 + ], + [ + "▁CARD", + -13.730574607849121 + ], + [ + "▁Mackay", + -13.73058032989502 + ], + [ + "▁Medicines", + -13.730584144592285 + ], + [ + "▁Boundary", + -13.730598449707031 + ], + [ + "▁jumpers", + -13.730598449707031 + ], + [ + "reasonable", + -13.730607032775879 + ], + [ + "▁Spruce", + -13.730634689331055 + ], + [ + "discrimination", + -13.730643272399902 + ], + [ + "▁appropriations", + -13.730644226074219 + ], + [ + "▁negotiators", + -13.730660438537598 + ], + [ + "▁412", + -13.73069953918457 + ], + [ + "▁¶", + -13.73069953918457 + ], + [ + "▁powertrain", + -13.730735778808594 + ], + [ + "fri", + -13.73073673248291 + ], + [ + "▁Bridgeport", + -13.730740547180176 + ], + [ + "tium", + -13.730812072753906 + ], + [ + "456", + -13.730813980102539 + ], + [ + "▁Hermann", + -13.730863571166992 + ], + [ + "▁futon", + -13.730875015258789 + ], + [ + "352", + -13.730989456176758 + ], + [ + "leen", + -13.731024742126465 + ], + [ + "Word", + -13.731072425842285 + ], + [ + "▁takeaways", + -13.731131553649902 + ], + [ + "▁Blas", + -13.731152534484863 + ], + [ + "▁nit", + -13.731203079223633 + ], + [ + "▁sig", + -13.73121166229248 + ], + [ + "▁Faulkner", + -13.731216430664062 + ], + [ + "▁vernacular", + -13.731236457824707 + ], + [ + "▁Chong", + -13.731246948242188 + ], + [ + "▁Oils", + -13.731267929077148 + ], + [ + "▁metastasis", + -13.731278419494629 + ], + [ + "Rod", + -13.731311798095703 + ], + [ + "Voice", + -13.731383323669434 + ], + [ + "onga", + -13.731431007385254 + ], + [ + "▁psychosis", + -13.731437683105469 + ], + [ + "▁chronically", + -13.73149299621582 + ], + [ + "▁excavated", + -13.731510162353516 + ], + [ + "▁Warden", + -13.731512069702148 + ], + [ + "707", + -13.73151683807373 + ], + [ + "488", + -13.731608390808105 + ], + [ + "▁extravaganza", + -13.73165225982666 + ], + [ + "▁mort", + -13.731656074523926 + ], + [ + "▁masala", + -13.731660842895508 + ], + [ + "baugh", + -13.73166275024414 + ], + [ + "▁Toner", + -13.73169231414795 + ], + [ + "▁Aman", + -13.731693267822266 + ], + [ + "nav", + -13.731741905212402 + ], + [ + "REC", + -13.731765747070312 + ], + [ + "▁adaptability", + -13.731770515441895 + ], + [ + "▁Hepatitis", + -13.731810569763184 + ], + [ + "▁BRAND", + -13.73183822631836 + ], + [ + "▁Tenant", + -13.731849670410156 + ], + [ + "▁Dietary", + -13.73185920715332 + ], + [ + "▁clot", + -13.731888771057129 + ], + [ + "▁soggy", + -13.731979370117188 + ], + [ + "▁Seville", + -13.732034683227539 + ], + [ + "▁Ironman", + -13.732038497924805 + ], + [ + "▁flaming", + -13.732107162475586 + ], + [ + "▁Flanders", + -13.732118606567383 + ], + [ + "▁WooCommerce", + -13.732122421264648 + ], + [ + "▁tenacity", + -13.73221206665039 + ], + [ + "▁Assoc", + -13.732234001159668 + ], + [ + "▁THAN", + -13.732258796691895 + ], + [ + "▁Cuts", + -13.732332229614258 + ], + [ + "409", + -13.732375144958496 + ], + [ + "▁Psychic", + -13.732382774353027 + ], + [ + "▁emphasise", + -13.732444763183594 + ], + [ + "LIS", + -13.732502937316895 + ], + [ + "▁microSD", + -13.732524871826172 + ], + [ + "▁Worksheet", + -13.732529640197754 + ], + [ + "599", + -13.73253059387207 + ], + [ + "Standard", + -13.732569694519043 + ], + [ + "▁mobs", + -13.73257827758789 + ], + [ + "▁Participating", + -13.7326021194458 + ], + [ + "339", + -13.732614517211914 + ], + [ + "▁Usa", + -13.732617378234863 + ], + [ + "▁tumours", + -13.732657432556152 + ], + [ + "eba", + -13.732666969299316 + ], + [ + "▁Grades", + -13.732673645019531 + ], + [ + "HOT", + -13.732701301574707 + ], + [ + "▁ragged", + -13.73273754119873 + ], + [ + "▁Poles", + -13.732756614685059 + ], + [ + "▁waning", + -13.732783317565918 + ], + [ + "▁MLM", + -13.732800483703613 + ], + [ + "▁unsettled", + -13.732804298400879 + ], + [ + "▁Navigate", + -13.732807159423828 + ], + [ + "▁taut", + -13.732828140258789 + ], + [ + "▁Mubarak", + -13.732839584350586 + ], + [ + "▁asynchronous", + -13.732841491699219 + ], + [ + "▁Wald", + -13.732842445373535 + ], + [ + "▁Opal", + -13.732876777648926 + ], + [ + "▁rh", + -13.732955932617188 + ], + [ + "▁prioritizing", + -13.732963562011719 + ], + [ + "▁Grandmother", + -13.732973098754883 + ], + [ + "▁railroads", + -13.733025550842285 + ], + [ + "▁kun", + -13.73304271697998 + ], + [ + "▁conquering", + -13.733043670654297 + ], + [ + "buzz", + -13.73305606842041 + ], + [ + "▁Plastics", + -13.733084678649902 + ], + [ + "▁Provence", + -13.733100891113281 + ], + [ + "▁splashing", + -13.733221054077148 + ], + [ + "circuit", + -13.733223915100098 + ], + [ + "stained", + -13.733238220214844 + ], + [ + "▁Jodi", + -13.733258247375488 + ], + [ + "▁inked", + -13.733345031738281 + ], + [ + "Nick", + -13.73335075378418 + ], + [ + "▁dawned", + -13.73344612121582 + ], + [ + "ج", + -13.733479499816895 + ], + [ + "▁Transcript", + -13.733501434326172 + ], + [ + "▁atrium", + -13.73352336883545 + ], + [ + "▁selfishness", + -13.733559608459473 + ], + [ + "▁plucked", + -13.733668327331543 + ], + [ + "▁Leopold", + -13.73373031616211 + ], + [ + "▁COST", + -13.733789443969727 + ], + [ + "▁ANSI", + -13.733806610107422 + ], + [ + "▁nocturnal", + -13.733808517456055 + ], + [ + "fic", + -13.733885765075684 + ], + [ + "▁corp", + -13.733890533447266 + ], + [ + "▁laziness", + -13.733970642089844 + ], + [ + "▁Petite", + -13.733997344970703 + ], + [ + "▁FOUR", + -13.734007835388184 + ], + [ + "▁Farmhouse", + -13.734091758728027 + ], + [ + "▁overheard", + -13.734118461608887 + ], + [ + "▁9000", + -13.734124183654785 + ], + [ + "▁punishments", + -13.73413372039795 + ], + [ + "anni", + -13.734166145324707 + ], + [ + "▁pours", + -13.734172821044922 + ], + [ + "sack", + -13.73422622680664 + ], + [ + "▁pendants", + -13.73425579071045 + ], + [ + "curricular", + -13.734275817871094 + ], + [ + "▁Sixteen", + -13.734395980834961 + ], + [ + "▁Mule", + -13.734414100646973 + ], + [ + "▁heyday", + -13.734431266784668 + ], + [ + "uous", + -13.734532356262207 + ], + [ + "▁mé", + -13.734572410583496 + ], + [ + "▁extant", + -13.734600067138672 + ], + [ + "▁Yemeni", + -13.734642028808594 + ], + [ + "▁Auschwitz", + -13.734646797180176 + ], + [ + "▁mk", + -13.734732627868652 + ], + [ + "▁drawstring", + -13.734772682189941 + ], + [ + "▁Grail", + -13.734780311584473 + ], + [ + "ი", + -13.73484992980957 + ], + [ + "▁Bunch", + -13.734858512878418 + ], + [ + "▁workday", + -13.734942436218262 + ], + [ + "Chapter", + -13.73501205444336 + ], + [ + "▁Toddler", + -13.735066413879395 + ], + [ + "▁Canaan", + -13.735114097595215 + ], + [ + "BRA", + -13.735204696655273 + ], + [ + "Yu", + -13.735227584838867 + ], + [ + "▁infra", + -13.735237121582031 + ], + [ + "Pretty", + -13.735260009765625 + ], + [ + "rog", + -13.735264778137207 + ], + [ + "▁Hartley", + -13.735400199890137 + ], + [ + "▁auspices", + -13.735467910766602 + ], + [ + "▁Vari", + -13.735469818115234 + ], + [ + "eld", + -13.735507011413574 + ], + [ + "▁tonnage", + -13.735523223876953 + ], + [ + "▁Engineered", + -13.735536575317383 + ], + [ + "▁affirming", + -13.73554801940918 + ], + [ + "▁breakaway", + -13.735596656799316 + ], + [ + "▁chutney", + -13.7356595993042 + ], + [ + "▁Lyric", + -13.735663414001465 + ], + [ + "▁dreary", + -13.735681533813477 + ], + [ + "▁composure", + -13.735743522644043 + ], + [ + "690", + -13.735771179199219 + ], + [ + "▁orbits", + -13.73586654663086 + ], + [ + "▁Panorama", + -13.73590087890625 + ], + [ + "▁depictions", + -13.735906600952148 + ], + [ + "▁MAT", + -13.736052513122559 + ], + [ + "▁alters", + -13.736112594604492 + ], + [ + "▁flask", + -13.736145973205566 + ], + [ + "▁negate", + -13.736150741577148 + ], + [ + "arium", + -13.736200332641602 + ], + [ + "partner", + -13.736247062683105 + ], + [ + "▁Espresso", + -13.736251831054688 + ], + [ + "Ash", + -13.736268043518066 + ], + [ + "respect", + -13.736281394958496 + ], + [ + "▁docked", + -13.736287117004395 + ], + [ + "▁Josie", + -13.73630142211914 + ], + [ + "▁agnostic", + -13.736370086669922 + ], + [ + "rman", + -13.736510276794434 + ], + [ + "▁Desi", + -13.736518859863281 + ], + [ + "▁jab", + -13.736593246459961 + ], + [ + "▁CLASS", + -13.736605644226074 + ], + [ + "▁Zhong", + -13.736696243286133 + ], + [ + "▁Burst", + -13.736712455749512 + ], + [ + "aldo", + -13.736817359924316 + ], + [ + "▁robbers", + -13.736906051635742 + ], + [ + "▁apprentices", + -13.736919403076172 + ], + [ + "▁Pathfinder", + -13.736948013305664 + ], + [ + "▁Buffer", + -13.736954689025879 + ], + [ + "gill", + -13.736959457397461 + ], + [ + "Quick", + -13.737008094787598 + ], + [ + "repair", + -13.737011909484863 + ], + [ + "▁meandering", + -13.7371244430542 + ], + [ + "▁Brody", + -13.737136840820312 + ], + [ + "▁earphones", + -13.737242698669434 + ], + [ + "▁modestly", + -13.737327575683594 + ], + [ + "VPN", + -13.737350463867188 + ], + [ + "▁stretcher", + -13.737373352050781 + ], + [ + "▁Kitchens", + -13.737382888793945 + ], + [ + "▁dampen", + -13.737401008605957 + ], + [ + "▁Tama", + -13.737404823303223 + ], + [ + "▁Occupation", + -13.737458229064941 + ], + [ + "▁prognostic", + -13.737462997436523 + ], + [ + "▁NOTICE", + -13.737464904785156 + ], + [ + "▁Cardiac", + -13.737479209899902 + ], + [ + "▁sed", + -13.737499237060547 + ], + [ + "▁burglar", + -13.737515449523926 + ], + [ + "beer", + -13.737533569335938 + ], + [ + "▁indebted", + -13.737543106079102 + ], + [ + "▁Teal", + -13.737552642822266 + ], + [ + "MOS", + -13.73760986328125 + ], + [ + "▁distort", + -13.73764705657959 + ], + [ + "▁Subcommittee", + -13.737663269042969 + ], + [ + "▁distillation", + -13.737695693969727 + ], + [ + "▁booty", + -13.737727165222168 + ], + [ + "▁RES", + -13.737764358520508 + ], + [ + "nza", + -13.737800598144531 + ], + [ + "▁Winfrey", + -13.73781681060791 + ], + [ + "▁Qin", + -13.737833976745605 + ], + [ + "▁flaky", + -13.737839698791504 + ], + [ + "▁Rt", + -13.737876892089844 + ], + [ + "▁sixteenth", + -13.737961769104004 + ], + [ + "rab", + -13.737979888916016 + ], + [ + "▁mesothelioma", + -13.737990379333496 + ], + [ + "▁flavoured", + -13.73802661895752 + ], + [ + "cola", + -13.738086700439453 + ], + [ + "▁Withdrawal", + -13.738123893737793 + ], + [ + "▁sepsis", + -13.738149642944336 + ], + [ + "Saint", + -13.738191604614258 + ], + [ + "▁NEO", + -13.73824691772461 + ], + [ + "▁1856", + -13.738255500793457 + ], + [ + "jos", + -13.738261222839355 + ], + [ + "▁penal", + -13.738308906555176 + ], + [ + "Children", + -13.738448143005371 + ], + [ + "▁Timor", + -13.738551139831543 + ], + [ + "jian", + -13.738577842712402 + ], + [ + "hiro", + -13.738579750061035 + ], + [ + "sad", + -13.738595962524414 + ], + [ + "bane", + -13.738625526428223 + ], + [ + "▁bathed", + -13.738713264465332 + ], + [ + "▁Dying", + -13.738810539245605 + ], + [ + "molecular", + -13.738872528076172 + ], + [ + "▁puffy", + -13.738911628723145 + ], + [ + "▁paprika", + -13.738987922668457 + ], + [ + "gaming", + -13.73902416229248 + ], + [ + "▁Surveys", + -13.73904037475586 + ], + [ + "Nobody", + -13.739057540893555 + ], + [ + "▁cur", + -13.739059448242188 + ], + [ + "▁Reuben", + -13.739169120788574 + ], + [ + "▁Lancet", + -13.739197731018066 + ], + [ + "▁Endless", + -13.739219665527344 + ], + [ + "▁strut", + -13.739228248596191 + ], + [ + "▁Sunflower", + -13.739250183105469 + ], + [ + "eal", + -13.739278793334961 + ], + [ + "▁Fife", + -13.73935604095459 + ], + [ + "▁Ombudsman", + -13.739387512207031 + ], + [ + "▁eighties", + -13.739460945129395 + ], + [ + "▁Forgotten", + -13.739524841308594 + ], + [ + "▁Hubert", + -13.739581108093262 + ], + [ + "▁extortion", + -13.739591598510742 + ], + [ + "▁modifier", + -13.739617347717285 + ], + [ + "▁robbing", + -13.73965072631836 + ], + [ + "▁showered", + -13.739651679992676 + ], + [ + "▁Hickory", + -13.739714622497559 + ], + [ + "▁Pregnant", + -13.739750862121582 + ], + [ + "▁Nutritional", + -13.739870071411133 + ], + [ + "▁Zune", + -13.739875793457031 + ], + [ + "iert", + -13.739961624145508 + ], + [ + "▁creme", + -13.739997863769531 + ], + [ + "▁titular", + -13.740013122558594 + ], + [ + "kam", + -13.740123748779297 + ], + [ + "▁chicago", + -13.740142822265625 + ], + [ + "rec", + -13.74018383026123 + ], + [ + "▁Scenario", + -13.74026870727539 + ], + [ + "Captain", + -13.740287780761719 + ], + [ + "▁Practitioners", + -13.740410804748535 + ], + [ + "dea", + -13.740470886230469 + ], + [ + "▁slug", + -13.740476608276367 + ], + [ + "▁hassles", + -13.740484237670898 + ], + [ + "▁Nd", + -13.740589141845703 + ], + [ + "▁327", + -13.74059772491455 + ], + [ + "▁zipped", + -13.740614891052246 + ], + [ + "▁Tig", + -13.740642547607422 + ], + [ + "▁BLM", + -13.740726470947266 + ], + [ + "arn", + -13.740806579589844 + ], + [ + "▁transistors", + -13.74082088470459 + ], + [ + "▁homeopathic", + -13.740826606750488 + ], + [ + "▁fiasco", + -13.740889549255371 + ], + [ + "▁Pineapple", + -13.74093246459961 + ], + [ + "▁Garda", + -13.74096393585205 + ], + [ + "▁affixed", + -13.740967750549316 + ], + [ + "▁Retailers", + -13.741004943847656 + ], + [ + "▁MTA", + -13.74105167388916 + ], + [ + "▁bunnies", + -13.741104125976562 + ], + [ + "▁제", + -13.74113655090332 + ], + [ + "suke", + -13.741179466247559 + ], + [ + "▁unprofessional", + -13.741232872009277 + ], + [ + "▁miserably", + -13.741233825683594 + ], + [ + "▁BFF", + -13.741262435913086 + ], + [ + "▁jolly", + -13.7412691116333 + ], + [ + "▁whistleblower", + -13.741278648376465 + ], + [ + "▁gypsum", + -13.741415977478027 + ], + [ + "▁libel", + -13.74142074584961 + ], + [ + "да", + -13.741488456726074 + ], + [ + "▁Killed", + -13.741514205932617 + ], + [ + "1111", + -13.741530418395996 + ], + [ + "lash", + -13.741531372070312 + ], + [ + "chic", + -13.74154281616211 + ], + [ + "▁molasses", + -13.74155330657959 + ], + [ + "igne", + -13.741617202758789 + ], + [ + "▁grenades", + -13.741643905639648 + ], + [ + "▁painkillers", + -13.741662979125977 + ], + [ + "▁Joined", + -13.741707801818848 + ], + [ + "▁Implications", + -13.741715431213379 + ], + [ + "▁Entire", + -13.741721153259277 + ], + [ + "379", + -13.741843223571777 + ], + [ + "▁dearest", + -13.741897583007812 + ], + [ + "▁shingle", + -13.741915702819824 + ], + [ + "▁EXPRESS", + -13.741982460021973 + ], + [ + "nium", + -13.742032051086426 + ], + [ + "373", + -13.742049217224121 + ], + [ + "Excellent", + -13.742074012756348 + ], + [ + "▁cashmere", + -13.742074012756348 + ], + [ + "▁buffers", + -13.742138862609863 + ], + [ + "▁Bracket", + -13.742148399353027 + ], + [ + "▁Sonata", + -13.742158889770508 + ], + [ + "▁IND", + -13.742159843444824 + ], + [ + "▁subsist", + -13.742241859436035 + ], + [ + "dul", + -13.74226188659668 + ], + [ + "▁Frisco", + -13.742297172546387 + ], + [ + "▁objectivity", + -13.742329597473145 + ], + [ + "▁DLL", + -13.742337226867676 + ], + [ + "▁Tuna", + -13.742388725280762 + ], + [ + "▁MET", + -13.74240779876709 + ], + [ + "▁Siegel", + -13.742542266845703 + ], + [ + "▁Sensing", + -13.742571830749512 + ], + [ + "xing", + -13.742576599121094 + ], + [ + "▁SOA", + -13.742610931396484 + ], + [ + "Fr", + -13.742630958557129 + ], + [ + "▁249", + -13.742642402648926 + ], + [ + "▁OCR", + -13.742655754089355 + ], + [ + "azione", + -13.742709159851074 + ], + [ + "▁Eau", + -13.742738723754883 + ], + [ + "▁guacamole", + -13.742792129516602 + ], + [ + "▁BET", + -13.742840766906738 + ], + [ + "▁Saved", + -13.74290943145752 + ], + [ + "▁deliverables", + -13.742932319641113 + ], + [ + "▁Slope", + -13.743017196655273 + ], + [ + "▁degrading", + -13.743064880371094 + ], + [ + "sw", + -13.743093490600586 + ], + [ + "▁aroused", + -13.743107795715332 + ], + [ + "▁Rho", + -13.74314022064209 + ], + [ + "▁kidnap", + -13.743141174316406 + ], + [ + "▁hunch", + -13.743145942687988 + ], + [ + "▁whomever", + -13.743176460266113 + ], + [ + "▁undisputed", + -13.743243217468262 + ], + [ + "▁synthesize", + -13.743247985839844 + ], + [ + "▁veterinarians", + -13.74325180053711 + ], + [ + "▁Patriarch", + -13.743281364440918 + ], + [ + "▁barns", + -13.743314743041992 + ], + [ + "lington", + -13.743368148803711 + ], + [ + "▁conservatism", + -13.743370056152344 + ], + [ + "genesis", + -13.743408203125 + ], + [ + "▁victor", + -13.743413925170898 + ], + [ + "▁asymmetrical", + -13.74361801147461 + ], + [ + "▁Fruits", + -13.743629455566406 + ], + [ + "uploaded", + -13.743640899658203 + ], + [ + "gala", + -13.743647575378418 + ], + [ + "▁fling", + -13.743650436401367 + ], + [ + "▁risked", + -13.743673324584961 + ], + [ + "▁Uranus", + -13.743691444396973 + ], + [ + "▁Newspapers", + -13.743698120117188 + ], + [ + "▁genders", + -13.743724822998047 + ], + [ + "▁Smoky", + -13.743776321411133 + ], + [ + "▁radiotherapy", + -13.743781089782715 + ], + [ + "golf", + -13.74380111694336 + ], + [ + "▁chalkboard", + -13.743813514709473 + ], + [ + "Father", + -13.743823051452637 + ], + [ + "documented", + -13.7438325881958 + ], + [ + "▁DAVID", + -13.743841171264648 + ], + [ + "▁hamlet", + -13.743868827819824 + ], + [ + "▁Д", + -13.743915557861328 + ], + [ + "▁tarot", + -13.743963241577148 + ], + [ + "▁Cloudflare", + -13.744023323059082 + ], + [ + "nr", + -13.744029998779297 + ], + [ + "▁brandy", + -13.744140625 + ], + [ + "▁wonderland", + -13.744182586669922 + ], + [ + "▁oncoming", + -13.744187355041504 + ], + [ + "▁purify", + -13.744194984436035 + ], + [ + "326", + -13.744213104248047 + ], + [ + "▁Diaries", + -13.744235038757324 + ], + [ + "Enter", + -13.744302749633789 + ], + [ + "▁UH", + -13.744315147399902 + ], + [ + "▁Snack", + -13.744324684143066 + ], + [ + "▁Goddard", + -13.744361877441406 + ], + [ + "▁harnesses", + -13.74441909790039 + ], + [ + "▁reinforcements", + -13.744458198547363 + ], + [ + "hane", + -13.744524002075195 + ], + [ + "▁Penelope", + -13.744549751281738 + ], + [ + "▁Corbett", + -13.744579315185547 + ], + [ + "alcoholic", + -13.744590759277344 + ], + [ + "▁Pisces", + -13.744607925415039 + ], + [ + "▁Hint", + -13.744609832763672 + ], + [ + "▁capitalized", + -13.744712829589844 + ], + [ + "cited", + -13.744723320007324 + ], + [ + "▁carpentry", + -13.74475383758545 + ], + [ + "▁TRA", + -13.74478816986084 + ], + [ + "▁Viral", + -13.744791984558105 + ], + [ + "▁nervousness", + -13.744805335998535 + ], + [ + "▁Permission", + -13.744847297668457 + ], + [ + "▁straightened", + -13.744856834411621 + ], + [ + "Secret", + -13.744863510131836 + ], + [ + "▁tabloid", + -13.744887351989746 + ], + [ + "hell", + -13.744918823242188 + ], + [ + "▁homegrown", + -13.744935989379883 + ], + [ + "fax", + -13.745028495788574 + ], + [ + "▁Feldman", + -13.745048522949219 + ], + [ + "▁PvP", + -13.745050430297852 + ], + [ + "▁Invasion", + -13.74506664276123 + ], + [ + "▁fanfare", + -13.745099067687988 + ], + [ + "▁Akbar", + -13.745205879211426 + ], + [ + "gni", + -13.745235443115234 + ], + [ + "▁justifies", + -13.745247840881348 + ], + [ + "▁franchisees", + -13.745270729064941 + ], + [ + "▁murderers", + -13.745327949523926 + ], + [ + "▁thickened", + -13.74533462524414 + ], + [ + "▁intrinsically", + -13.745362281799316 + ], + [ + "▁unlicensed", + -13.745368003845215 + ], + [ + "ATA", + -13.745368957519531 + ], + [ + "▁retake", + -13.745387077331543 + ], + [ + "mey", + -13.745410919189453 + ], + [ + "▁Calvary", + -13.745477676391602 + ], + [ + "AKA", + -13.745515823364258 + ], + [ + "▁Learned", + -13.745534896850586 + ], + [ + "▁giddy", + -13.745542526245117 + ], + [ + "▁Fare", + -13.745644569396973 + ], + [ + "▁amounting", + -13.745816230773926 + ], + [ + "θ", + -13.745828628540039 + ], + [ + "▁NPS", + -13.745865821838379 + ], + [ + "▁Haute", + -13.745885848999023 + ], + [ + "▁minced", + -13.745902061462402 + ], + [ + "▁jade", + -13.745960235595703 + ], + [ + "▁booted", + -13.745963096618652 + ], + [ + "LK", + -13.745977401733398 + ], + [ + "▁LY", + -13.745980262756348 + ], + [ + "▁camo", + -13.745981216430664 + ], + [ + "izo", + -13.745985984802246 + ], + [ + "▁Genie", + -13.745997428894043 + ], + [ + "dense", + -13.746026039123535 + ], + [ + "shade", + -13.746075630187988 + ], + [ + "▁Apt", + -13.746126174926758 + ], + [ + "cen", + -13.746137619018555 + ], + [ + "▁Dorsey", + -13.746201515197754 + ], + [ + "pants", + -13.746249198913574 + ], + [ + "▁Elo", + -13.746277809143066 + ], + [ + "▁cornea", + -13.746283531188965 + ], + [ + "▁Ankle", + -13.746291160583496 + ], + [ + "▁HAND", + -13.746298789978027 + ], + [ + "▁retract", + -13.746320724487305 + ], + [ + "▁moderators", + -13.746405601501465 + ], + [ + "▁calmer", + -13.746413230895996 + ], + [ + "rator", + -13.746478080749512 + ], + [ + "▁dick", + -13.746490478515625 + ], + [ + "▁Rolled", + -13.746549606323242 + ], + [ + "suited", + -13.746556282043457 + ], + [ + "▁dodgy", + -13.74655818939209 + ], + [ + "▁Voucher", + -13.74657917022705 + ], + [ + "▁PCA", + -13.746583938598633 + ], + [ + "▁invoking", + -13.746585845947266 + ], + [ + "▁tickle", + -13.746603965759277 + ], + [ + "▁insofar", + -13.746633529663086 + ], + [ + "▁Weak", + -13.746752738952637 + ], + [ + "tiv", + -13.746807098388672 + ], + [ + "▁Bulldog", + -13.746849060058594 + ], + [ + "▁Liaison", + -13.746854782104492 + ], + [ + "▁Garnish", + -13.746883392333984 + ], + [ + "▁thi", + -13.746931076049805 + ], + [ + "▁Waco", + -13.746940612792969 + ], + [ + "▁flavoring", + -13.746949195861816 + ], + [ + "▁invigorating", + -13.746976852416992 + ], + [ + "fx", + -13.747040748596191 + ], + [ + "Ref", + -13.747065544128418 + ], + [ + "▁mala", + -13.747072219848633 + ], + [ + "ramp", + -13.747076988220215 + ], + [ + "QUE", + -13.747084617614746 + ], + [ + "lore", + -13.747084617614746 + ], + [ + "checking", + -13.74712085723877 + ], + [ + "▁Boon", + -13.747174263000488 + ], + [ + "▁kom", + -13.747210502624512 + ], + [ + "▁Hippo", + -13.747223854064941 + ], + [ + "▁INS", + -13.747276306152344 + ], + [ + "ERT", + -13.747305870056152 + ], + [ + "▁mAh", + -13.74734115600586 + ], + [ + "▁trailhead", + -13.747371673583984 + ], + [ + "▁nur", + -13.747401237487793 + ], + [ + "▁bl", + -13.747432708740234 + ], + [ + "▁Kira", + -13.747478485107422 + ], + [ + "▁KFC", + -13.747485160827637 + ], + [ + "soluble", + -13.747490882873535 + ], + [ + "▁gliding", + -13.747495651245117 + ], + [ + "▁Hermione", + -13.747499465942383 + ], + [ + "▁Colorful", + -13.74750804901123 + ], + [ + "▁divinity", + -13.747515678405762 + ], + [ + "▁Sys", + -13.747563362121582 + ], + [ + "▁objectionable", + -13.747577667236328 + ], + [ + "▁Terrier", + -13.747586250305176 + ], + [ + "▁Struggle", + -13.747618675231934 + ], + [ + "FUL", + -13.747627258300781 + ], + [ + "▁Sleeper", + -13.747635841369629 + ], + [ + "java", + -13.747648239135742 + ], + [ + "▁505", + -13.7476806640625 + ], + [ + "▁loosing", + -13.747706413269043 + ], + [ + "▁Crowe", + -13.747785568237305 + ], + [ + "▁Rau", + -13.747879028320312 + ], + [ + "nton", + -13.7479248046875 + ], + [ + "▁Blink", + -13.747925758361816 + ], + [ + "▁277", + -13.748003005981445 + ], + [ + "soon", + -13.74801254272461 + ], + [ + "422", + -13.748037338256836 + ], + [ + "▁Tweets", + -13.748053550720215 + ], + [ + "▁smug", + -13.748058319091797 + ], + [ + "▁seventeenth", + -13.748083114624023 + ], + [ + "uq", + -13.748106956481934 + ], + [ + "Tax", + -13.748127937316895 + ], + [ + "cow", + -13.748129844665527 + ], + [ + "immigrant", + -13.748136520385742 + ], + [ + "▁finalised", + -13.748170852661133 + ], + [ + "▁Confirm", + -13.748188972473145 + ], + [ + "▁Nel", + -13.748218536376953 + ], + [ + "▁kayaks", + -13.748383522033691 + ], + [ + "▁BSA", + -13.748400688171387 + ], + [ + "▁alienated", + -13.748430252075195 + ], + [ + "RIN", + -13.748457908630371 + ], + [ + "▁disregarded", + -13.748482704162598 + ], + [ + "▁CPUs", + -13.748538970947266 + ], + [ + "▁clerks", + -13.748575210571289 + ], + [ + "WHO", + -13.748579025268555 + ], + [ + "▁Caution", + -13.748580932617188 + ], + [ + "▁accelerates", + -13.748621940612793 + ], + [ + "rito", + -13.748628616333008 + ], + [ + "▁Sno", + -13.7486572265625 + ], + [ + "▁Picks", + -13.748678207397461 + ], + [ + "▁martini", + -13.748708724975586 + ], + [ + "▁emits", + -13.74875259399414 + ], + [ + "▁pairings", + -13.748770713806152 + ], + [ + "▁tins", + -13.748770713806152 + ], + [ + "▁busier", + -13.748810768127441 + ], + [ + "mobil", + -13.748821258544922 + ], + [ + "▁TAG", + -13.748854637145996 + ], + [ + "tong", + -13.748993873596191 + ], + [ + "crazy", + -13.749009132385254 + ], + [ + "▁IMHO", + -13.749032974243164 + ], + [ + "▁Burmese", + -13.74916934967041 + ], + [ + "▁resorting", + -13.74917221069336 + ], + [ + "▁announcer", + -13.749214172363281 + ], + [ + "▁ANA", + -13.749241828918457 + ], + [ + "▁Emp", + -13.749313354492188 + ], + [ + "▁Erasmus", + -13.749337196350098 + ], + [ + "▁272", + -13.749341011047363 + ], + [ + "▁Inflation", + -13.749455451965332 + ], + [ + "▁docket", + -13.749459266662598 + ], + [ + "▁Auf", + -13.749539375305176 + ], + [ + "Tel", + -13.749641418457031 + ], + [ + "▁exhale", + -13.749656677246094 + ], + [ + "▁pigeons", + -13.749686241149902 + ], + [ + "▁skeptics", + -13.749737739562988 + ], + [ + "reduction", + -13.749740600585938 + ], + [ + "rry", + -13.74978256225586 + ], + [ + "Film", + -13.749812126159668 + ], + [ + "nest", + -13.749883651733398 + ], + [ + "▁Reliability", + -13.749917030334473 + ], + [ + "▁PAS", + -13.750000953674316 + ], + [ + "▁Remington", + -13.750008583068848 + ], + [ + "▁notoriety", + -13.750032424926758 + ], + [ + "Davidson", + -13.750138282775879 + ], + [ + "▁inaction", + -13.750141143798828 + ], + [ + "ALA", + -13.750186920166016 + ], + [ + "▁inclement", + -13.750197410583496 + ], + [ + "▁Prem", + -13.750246047973633 + ], + [ + "▁Chimney", + -13.750304222106934 + ], + [ + "602", + -13.750308990478516 + ], + [ + "luck", + -13.750452041625977 + ], + [ + "▁kudos", + -13.750470161437988 + ], + [ + "▁destroyer", + -13.750516891479492 + ], + [ + "▁branched", + -13.750517845153809 + ], + [ + "acious", + -13.750540733337402 + ], + [ + "▁behemoth", + -13.75055980682373 + ], + [ + "▁acumen", + -13.750652313232422 + ], + [ + "▁680", + -13.75076675415039 + ], + [ + "▁Winn", + -13.750776290893555 + ], + [ + "▁Rash", + -13.750786781311035 + ], + [ + "▁chewed", + -13.750823020935059 + ], + [ + "358", + -13.750859260559082 + ], + [ + "化", + -13.750914573669434 + ], + [ + "▁Kea", + -13.750934600830078 + ], + [ + "▁702", + -13.7509765625 + ], + [ + "Tour", + -13.750985145568848 + ], + [ + "▁penalized", + -13.751054763793945 + ], + [ + "▁patriarch", + -13.751075744628906 + ], + [ + "freedom", + -13.75110149383545 + ], + [ + "▁wretched", + -13.751105308532715 + ], + [ + "Community", + -13.75119686126709 + ], + [ + "JI", + -13.751205444335938 + ], + [ + "▁leapt", + -13.751209259033203 + ], + [ + "▁Aly", + -13.751379013061523 + ], + [ + "casino", + -13.751419067382812 + ], + [ + "▁harshly", + -13.751420021057129 + ], + [ + "▁Tote", + -13.751424789428711 + ], + [ + "▁Jarrett", + -13.751429557800293 + ], + [ + "▁predicated", + -13.75143814086914 + ], + [ + "▁epidemiology", + -13.75145149230957 + ], + [ + "▁Conversations", + -13.751502990722656 + ], + [ + "▁Reign", + -13.751521110534668 + ], + [ + "▁Percent", + -13.751594543457031 + ], + [ + "▁Heron", + -13.751603126525879 + ], + [ + "▁cursing", + -13.751668930053711 + ], + [ + "▁Lowest", + -13.751754760742188 + ], + [ + "▁Mathew", + -13.751789093017578 + ], + [ + "▁marred", + -13.751876831054688 + ], + [ + "▁commendable", + -13.751897811889648 + ], + [ + "▁Dispute", + -13.751914978027344 + ], + [ + "▁tangle", + -13.751928329467773 + ], + [ + "▁nip", + -13.752009391784668 + ], + [ + "▁Internship", + -13.752022743225098 + ], + [ + "▁Suk", + -13.752035140991211 + ], + [ + "▁Khmer", + -13.752081871032715 + ], + [ + "expert", + -13.752118110656738 + ], + [ + "▁Fatima", + -13.752120018005371 + ], + [ + "pattern", + -13.752237319946289 + ], + [ + "▁Tyrone", + -13.752245903015137 + ], + [ + "▁intolerant", + -13.752249717712402 + ], + [ + "▁Spence", + -13.752257347106934 + ], + [ + "STR", + -13.752307891845703 + ], + [ + "▁McDowell", + -13.75230884552002 + ], + [ + "▁ses", + -13.752388954162598 + ], + [ + "▁Edu", + -13.752408027648926 + ], + [ + "▁ETC", + -13.75246524810791 + ], + [ + "▁swimwear", + -13.752466201782227 + ], + [ + "▁delusional", + -13.752500534057617 + ], + [ + "▁Hygiene", + -13.75251579284668 + ], + [ + "▁Cumbria", + -13.752517700195312 + ], + [ + "bt", + -13.752551078796387 + ], + [ + "▁AQ", + -13.752664566040039 + ], + [ + "▁potted", + -13.75267505645752 + ], + [ + "▁applique", + -13.752699851989746 + ], + [ + "▁savour", + -13.752744674682617 + ], + [ + "▁exerted", + -13.752778053283691 + ], + [ + "▁أ", + -13.752817153930664 + ], + [ + "1967", + -13.752971649169922 + ], + [ + "MK", + -13.752989768981934 + ], + [ + "▁Pos", + -13.752989768981934 + ], + [ + "island", + -13.752995491027832 + ], + [ + "▁mince", + -13.753093719482422 + ], + [ + "▁Packed", + -13.75310230255127 + ], + [ + "348", + -13.753215789794922 + ], + [ + "▁Lear", + -13.753243446350098 + ], + [ + "▁issuers", + -13.753280639648438 + ], + [ + "▁Convenience", + -13.75331974029541 + ], + [ + "CCC", + -13.753329277038574 + ], + [ + "▁Pipes", + -13.753337860107422 + ], + [ + "▁Corning", + -13.753347396850586 + ], + [ + "▁Specify", + -13.753357887268066 + ], + [ + "▁sequentially", + -13.753357887268066 + ], + [ + "▁Paisley", + -13.753374099731445 + ], + [ + "▁ratification", + -13.753459930419922 + ], + [ + "▁Aldi", + -13.753546714782715 + ], + [ + "▁seduce", + -13.75355339050293 + ], + [ + "▁morphed", + -13.753623008728027 + ], + [ + "seeing", + -13.753630638122559 + ], + [ + "▁REIT", + -13.753731727600098 + ], + [ + "▁sidekick", + -13.753732681274414 + ], + [ + "▁rm", + -13.753776550292969 + ], + [ + "▁Xena", + -13.75379467010498 + ], + [ + "▁Clown", + -13.753823280334473 + ], + [ + "▁Hines", + -13.753829956054688 + ], + [ + "▁407", + -13.753933906555176 + ], + [ + "▁vu", + -13.754006385803223 + ], + [ + "▁lobbyist", + -13.754104614257812 + ], + [ + "Arch", + -13.75412368774414 + ], + [ + "▁mos", + -13.754149436950684 + ], + [ + "▁мо", + -13.754234313964844 + ], + [ + "▁Botanic", + -13.754252433776855 + ], + [ + "▁retelling", + -13.754372596740723 + ], + [ + "▁reread", + -13.754414558410645 + ], + [ + "▁fintech", + -13.75444507598877 + ], + [ + "▁Lotto", + -13.754464149475098 + ], + [ + "▁Channels", + -13.754471778869629 + ], + [ + "▁practicable", + -13.754542350769043 + ], + [ + "Africa", + -13.75458812713623 + ], + [ + "▁Albums", + -13.754593849182129 + ], + [ + "▁timley", + -13.754609107971191 + ], + [ + "1945", + -13.754618644714355 + ], + [ + "region", + -13.754643440246582 + ], + [ + "▁ble", + -13.75471305847168 + ], + [ + "Operation", + -13.754720687866211 + ], + [ + "▁smelly", + -13.754790306091309 + ], + [ + "alle", + -13.754791259765625 + ], + [ + "▁witchcraft", + -13.75479507446289 + ], + [ + "980", + -13.754819869995117 + ], + [ + "▁nucleic", + -13.75485897064209 + ], + [ + "▁colt", + -13.754960060119629 + ], + [ + "▁prod", + -13.754983901977539 + ], + [ + "▁Doubt", + -13.754986763000488 + ], + [ + "▁Banker", + -13.755090713500977 + ], + [ + "▁Macdonald", + -13.75517463684082 + ], + [ + "▁marshmallow", + -13.755208015441895 + ], + [ + "▁scrimmage", + -13.755234718322754 + ], + [ + "▁polishes", + -13.755315780639648 + ], + [ + "population", + -13.755335807800293 + ], + [ + "月", + -13.755340576171875 + ], + [ + "▁det", + -13.755362510681152 + ], + [ + "▁rotations", + -13.755379676818848 + ], + [ + "▁poolside", + -13.755414962768555 + ], + [ + "▁Troop", + -13.755464553833008 + ], + [ + "▁Copies", + -13.755472183227539 + ], + [ + "apps", + -13.755525588989258 + ], + [ + "▁reforming", + -13.755529403686523 + ], + [ + "▁SCA", + -13.755559921264648 + ], + [ + "▁BEACH", + -13.75558090209961 + ], + [ + "▁Rankings", + -13.755611419677734 + ], + [ + "▁Gymnastics", + -13.755615234375 + ], + [ + "problem", + -13.755647659301758 + ], + [ + "vn", + -13.755670547485352 + ], + [ + "▁Donnelly", + -13.7556791305542 + ], + [ + "artist", + -13.755715370178223 + ], + [ + "▁Coachella", + -13.755812644958496 + ], + [ + "▁Toe", + -13.755820274353027 + ], + [ + "383", + -13.755827903747559 + ], + [ + "bore", + -13.755838394165039 + ], + [ + "▁consequent", + -13.755838394165039 + ], + [ + "▁Librarian", + -13.755842208862305 + ], + [ + "▁nationalists", + -13.755866050720215 + ], + [ + "▁Optimal", + -13.755995750427246 + ], + [ + "▁absurdity", + -13.756007194519043 + ], + [ + "▁trespass", + -13.756044387817383 + ], + [ + "▁Ripley", + -13.756080627441406 + ], + [ + "▁Addis", + -13.756136894226074 + ], + [ + "beach", + -13.756176948547363 + ], + [ + "▁pebble", + -13.75618839263916 + ], + [ + "dun", + -13.756255149841309 + ], + [ + "ologia", + -13.756292343139648 + ], + [ + "▁Sera", + -13.756378173828125 + ], + [ + "▁Lips", + -13.756431579589844 + ], + [ + "▁glossary", + -13.756433486938477 + ], + [ + "▁Sparkle", + -13.756437301635742 + ], + [ + "▁thwarted", + -13.75647258758545 + ], + [ + "▁Mullen", + -13.756485939025879 + ], + [ + "reality", + -13.75656509399414 + ], + [ + "▁stylists", + -13.75668716430664 + ], + [ + "▁synergies", + -13.756721496582031 + ], + [ + "Doctor", + -13.75672435760498 + ], + [ + "▁moto", + -13.756813049316406 + ], + [ + "▁Empowerment", + -13.756865501403809 + ], + [ + "▁Victim", + -13.756949424743652 + ], + [ + "▁cordial", + -13.756949424743652 + ], + [ + "▁Nonprofit", + -13.75695514678955 + ], + [ + "775", + -13.756956100463867 + ], + [ + "Hell", + -13.75700855255127 + ], + [ + "▁doorways", + -13.757054328918457 + ], + [ + "enna", + -13.757062911987305 + ], + [ + "▁relinquish", + -13.757089614868164 + ], + [ + "ATOR", + -13.757098197937012 + ], + [ + "▁infringe", + -13.757133483886719 + ], + [ + "▁IEC", + -13.757234573364258 + ], + [ + "▁dimmer", + -13.757282257080078 + ], + [ + "▁Sym", + -13.757339477539062 + ], + [ + "▁snuck", + -13.757345199584961 + ], + [ + "▁Brat", + -13.757359504699707 + ], + [ + "▁chronicle", + -13.757430076599121 + ], + [ + "▁Missions", + -13.757431030273438 + ], + [ + "▁nouns", + -13.757447242736816 + ], + [ + "▁offensively", + -13.757498741149902 + ], + [ + "▁prioritise", + -13.757637023925781 + ], + [ + "uche", + -13.757706642150879 + ], + [ + "▁TAP", + -13.757712364196777 + ], + [ + "▁Hailey", + -13.757725715637207 + ], + [ + "▁Supplementary", + -13.757739067077637 + ], + [ + "▁CFD", + -13.757784843444824 + ], + [ + "Beautiful", + -13.757807731628418 + ], + [ + "▁anarchist", + -13.757872581481934 + ], + [ + "▁suffix", + -13.757882118225098 + ], + [ + "▁NLP", + -13.757933616638184 + ], + [ + "▁marshal", + -13.758069038391113 + ], + [ + "▁Odin", + -13.758092880249023 + ], + [ + "uze", + -13.758122444152832 + ], + [ + "tari", + -13.758135795593262 + ], + [ + "▁Hubble", + -13.758158683776855 + ], + [ + "414", + -13.758190155029297 + ], + [ + "teri", + -13.75819206237793 + ], + [ + "uya", + -13.75819206237793 + ], + [ + "▁Gatwick", + -13.75821304321289 + ], + [ + "▁preachers", + -13.758271217346191 + ], + [ + "oth", + -13.758279800415039 + ], + [ + "▁Pharisees", + -13.758340835571289 + ], + [ + "▁outlaw", + -13.758397102355957 + ], + [ + "щ", + -13.758432388305664 + ], + [ + "▁Fam", + -13.758484840393066 + ], + [ + "▁blueprints", + -13.758517265319824 + ], + [ + "▁recon", + -13.758524894714355 + ], + [ + "▁waxed", + -13.758543968200684 + ], + [ + "▁AMS", + -13.7586088180542 + ], + [ + "bers", + -13.758646011352539 + ], + [ + "▁phylogenetic", + -13.75868034362793 + ], + [ + "BAR", + -13.758688926696777 + ], + [ + "▁transcends", + -13.758698463439941 + ], + [ + "▁Faced", + -13.758719444274902 + ], + [ + "▁Pav", + -13.758736610412598 + ], + [ + "▁Constantinople", + -13.758805274963379 + ], + [ + "▁Franciscan", + -13.75882625579834 + ], + [ + "▁automating", + -13.758862495422363 + ], + [ + "cube", + -13.758877754211426 + ], + [ + "699", + -13.7589750289917 + ], + [ + "hte", + -13.759005546569824 + ], + [ + "▁hostages", + -13.759153366088867 + ], + [ + "ller", + -13.75920295715332 + ], + [ + "oak", + -13.759222030639648 + ], + [ + "▁deliberation", + -13.75922966003418 + ], + [ + "▁subtitle", + -13.759252548217773 + ], + [ + "▁Hoch", + -13.759308815002441 + ], + [ + "▁UVA", + -13.759324073791504 + ], + [ + "▁Bene", + -13.759367942810059 + ], + [ + "SPA", + -13.75951099395752 + ], + [ + "▁Playstation", + -13.759539604187012 + ], + [ + "edited", + -13.759557723999023 + ], + [ + "Double", + -13.759563446044922 + ], + [ + "ก", + -13.75963306427002 + ], + [ + "▁RESULTS", + -13.759726524353027 + ], + [ + "ILL", + -13.759866714477539 + ], + [ + "▁bylaws", + -13.759868621826172 + ], + [ + "▁Humble", + -13.759881973266602 + ], + [ + "request", + -13.759926795959473 + ], + [ + "▁sweetener", + -13.75997543334961 + ], + [ + "▁PSC", + -13.759987831115723 + ], + [ + "itive", + -13.759998321533203 + ], + [ + "▁sprout", + -13.760028839111328 + ], + [ + "▁exodus", + -13.760032653808594 + ], + [ + "hna", + -13.760042190551758 + ], + [ + "ndi", + -13.760068893432617 + ], + [ + "▁mot", + -13.760193824768066 + ], + [ + "▁Lush", + -13.760207176208496 + ], + [ + "statement", + -13.760213851928711 + ], + [ + "▁spp", + -13.760225296020508 + ], + [ + "▁monetize", + -13.760261535644531 + ], + [ + "Luc", + -13.76030445098877 + ], + [ + "▁splitter", + -13.760393142700195 + ], + [ + "▁960", + -13.760424613952637 + ], + [ + "▁hemoglobin", + -13.760504722595215 + ], + [ + "▁Mohawk", + -13.760560035705566 + ], + [ + "▁Herod", + -13.76056957244873 + ], + [ + "▁cp", + -13.760655403137207 + ], + [ + "▁butts", + -13.760663032531738 + ], + [ + "▁vehicular", + -13.760676383972168 + ], + [ + "▁Reaper", + -13.760701179504395 + ], + [ + "▁Barra", + -13.760785102844238 + ], + [ + "▁gals", + -13.760790824890137 + ], + [ + "▁Approaches", + -13.760802268981934 + ], + [ + "erra", + -13.76082992553711 + ], + [ + "iak", + -13.76082992553711 + ], + [ + "▁Louisa", + -13.760862350463867 + ], + [ + "kah", + -13.760937690734863 + ], + [ + "▁Lob", + -13.761099815368652 + ], + [ + "▁chopper", + -13.761140823364258 + ], + [ + "▁retrograde", + -13.761209487915039 + ], + [ + "▁Lucie", + -13.761212348937988 + ], + [ + "▁Dolls", + -13.761222839355469 + ], + [ + "semi", + -13.761253356933594 + ], + [ + "▁apathy", + -13.761266708374023 + ], + [ + "▁NCR", + -13.761360168457031 + ], + [ + "fang", + -13.761404037475586 + ], + [ + "▁arrears", + -13.761423110961914 + ], + [ + "▁Stag", + -13.761432647705078 + ], + [ + "ל", + -13.761459350585938 + ], + [ + "▁md", + -13.76147747039795 + ], + [ + "VER", + -13.761483192443848 + ], + [ + "▁Brie", + -13.76157283782959 + ], + [ + "ffin", + -13.761585235595703 + ], + [ + "म", + -13.761594772338867 + ], + [ + "▁324", + -13.761616706848145 + ], + [ + "▁westward", + -13.761622428894043 + ], + [ + "▁CHICAGO", + -13.761669158935547 + ], + [ + "hos", + -13.761679649353027 + ], + [ + "▁CVE", + -13.761765480041504 + ], + [ + "recht", + -13.761795997619629 + ], + [ + "▁nefarious", + -13.76185131072998 + ], + [ + "▁exacting", + -13.761887550354004 + ], + [ + "▁donned", + -13.761889457702637 + ], + [ + "▁lowly", + -13.76190185546875 + ], + [ + "oooo", + -13.76191234588623 + ], + [ + "▁underscore", + -13.761959075927734 + ], + [ + "▁Deciding", + -13.762004852294922 + ], + [ + "▁Lough", + -13.762070655822754 + ], + [ + "▁hypocritical", + -13.762106895446777 + ], + [ + "▁PowerShell", + -13.762164115905762 + ], + [ + "▁transplanted", + -13.762175559997559 + ], + [ + "Hara", + -13.76221752166748 + ], + [ + "▁Cartridge", + -13.762288093566895 + ], + [ + "▁commemorating", + -13.762310981750488 + ], + [ + "▁oblique", + -13.762327194213867 + ], + [ + "painting", + -13.762335777282715 + ], + [ + "▁EVERYONE", + -13.762335777282715 + ], + [ + "▁confronts", + -13.762340545654297 + ], + [ + "Put", + -13.762375831604004 + ], + [ + "▁displace", + -13.762510299682617 + ], + [ + "▁ect", + -13.762547492980957 + ], + [ + "▁NX", + -13.762555122375488 + ], + [ + "▁Refugees", + -13.762580871582031 + ], + [ + "▁Wren", + -13.762609481811523 + ], + [ + "▁atrial", + -13.762612342834473 + ], + [ + "▁Thrive", + -13.762677192687988 + ], + [ + "▁Complaint", + -13.762679100036621 + ], + [ + "018", + -13.762751579284668 + ], + [ + "▁digested", + -13.762828826904297 + ], + [ + "502", + -13.762832641601562 + ], + [ + "▁transpired", + -13.762857437133789 + ], + [ + "▁Particular", + -13.76286792755127 + ], + [ + "▁Julien", + -13.7628755569458 + ], + [ + "▁truce", + -13.762903213500977 + ], + [ + "▁Tyre", + -13.762910842895508 + ], + [ + "▁midwives", + -13.762928009033203 + ], + [ + "FH", + -13.762975692749023 + ], + [ + "▁Situation", + -13.763059616088867 + ], + [ + "▁pike", + -13.763117790222168 + ], + [ + "▁hutch", + -13.76312255859375 + ], + [ + "▁Tessa", + -13.763148307800293 + ], + [ + "▁orchards", + -13.763148307800293 + ], + [ + "arms", + -13.763201713562012 + ], + [ + "▁Beaches", + -13.763223648071289 + ], + [ + "▁iterative", + -13.763237953186035 + ], + [ + "▁Vedic", + -13.763306617736816 + ], + [ + "Grid", + -13.763318061828613 + ], + [ + "crystal", + -13.763406753540039 + ], + [ + "▁Kah", + -13.763435363769531 + ], + [ + "Tim", + -13.763481140136719 + ], + [ + "▁pergola", + -13.763497352600098 + ], + [ + "▁Failing", + -13.76351547241211 + ], + [ + "clip", + -13.763627052307129 + ], + [ + "▁ε", + -13.763641357421875 + ], + [ + "egra", + -13.763676643371582 + ], + [ + "▁postures", + -13.76369571685791 + ], + [ + "▁bloating", + -13.763718605041504 + ], + [ + "▁Ora", + -13.763727188110352 + ], + [ + "KL", + -13.763736724853516 + ], + [ + "▁humiliated", + -13.763748168945312 + ], + [ + "生", + -13.763933181762695 + ], + [ + "▁chests", + -13.764025688171387 + ], + [ + "▁greased", + -13.764037132263184 + ], + [ + "▁Clarity", + -13.764057159423828 + ], + [ + "skaya", + -13.764060974121094 + ], + [ + "730", + -13.764098167419434 + ], + [ + "ulf", + -13.764131546020508 + ], + [ + "▁sel", + -13.764135360717773 + ], + [ + "enden", + -13.764203071594238 + ], + [ + "▁wounding", + -13.764242172241211 + ], + [ + "LET", + -13.764269828796387 + ], + [ + "▁Graduates", + -13.764357566833496 + ], + [ + "▁ribbed", + -13.764374732971191 + ], + [ + "anything", + -13.76450252532959 + ], + [ + "▁marathons", + -13.764505386352539 + ], + [ + "▁kri", + -13.764521598815918 + ], + [ + "▁Rothschild", + -13.764585494995117 + ], + [ + "▁Microbiology", + -13.764592170715332 + ], + [ + "▁Publish", + -13.764603614807129 + ], + [ + "▁Kayak", + -13.764629364013672 + ], + [ + "▁benchmarking", + -13.764639854431152 + ], + [ + "▁Scorpion", + -13.764668464660645 + ], + [ + "lal", + -13.764731407165527 + ], + [ + "mbo", + -13.76476764678955 + ], + [ + "Fresh", + -13.764778137207031 + ], + [ + "▁Gerber", + -13.764826774597168 + ], + [ + "▁flips", + -13.764846801757812 + ], + [ + "▁sol", + -13.764854431152344 + ], + [ + "017", + -13.764862060546875 + ], + [ + "▁viola", + -13.764880180358887 + ], + [ + "▁Kieran", + -13.764906883239746 + ], + [ + "Tex", + -13.764927864074707 + ], + [ + "▁interspersed", + -13.764941215515137 + ], + [ + "▁Rebellion", + -13.765003204345703 + ], + [ + "lisa", + -13.765094757080078 + ], + [ + "▁santa", + -13.765101432800293 + ], + [ + "tio", + -13.765186309814453 + ], + [ + "▁jagged", + -13.765214920043945 + ], + [ + "▁squats", + -13.765226364135742 + ], + [ + "lipped", + -13.765246391296387 + ], + [ + "calorie", + -13.765275955200195 + ], + [ + "▁Sylvester", + -13.765302658081055 + ], + [ + "▁Kamal", + -13.765340805053711 + ], + [ + "▁Pulp", + -13.765424728393555 + ], + [ + "▁Participant", + -13.765425682067871 + ], + [ + "▁fasten", + -13.765429496765137 + ], + [ + "▁Contribution", + -13.765457153320312 + ], + [ + "▁necks", + -13.765504837036133 + ], + [ + "▁interrupting", + -13.765528678894043 + ], + [ + "▁hydrocarbon", + -13.765532493591309 + ], + [ + "▁scarlet", + -13.765602111816406 + ], + [ + "▁physiotherapy", + -13.765625 + ], + [ + "Information", + -13.765645027160645 + ], + [ + "▁Paine", + -13.76567268371582 + ], + [ + "▁ROAD", + -13.765753746032715 + ], + [ + "▁Goblin", + -13.765788078308105 + ], + [ + "▁Upstairs", + -13.765947341918945 + ], + [ + "gloss", + -13.76600170135498 + ], + [ + "plug", + -13.766050338745117 + ], + [ + "▁suspensions", + -13.766066551208496 + ], + [ + "▁unification", + -13.766088485717773 + ], + [ + "causing", + -13.76611328125 + ], + [ + "▁DJI", + -13.76616382598877 + ], + [ + "▁blight", + -13.766186714172363 + ], + [ + "Joy", + -13.76622200012207 + ], + [ + "361", + -13.766258239746094 + ], + [ + "▁【", + -13.766275405883789 + ], + [ + "▁stifle", + -13.766278266906738 + ], + [ + "▁bridesmaid", + -13.766371726989746 + ], + [ + "359", + -13.766386032104492 + ], + [ + "▁Permalink", + -13.766403198242188 + ], + [ + "▁whiff", + -13.766412734985352 + ], + [ + "▁brewer", + -13.76648998260498 + ], + [ + "▁Patreon", + -13.766495704650879 + ], + [ + "▁Gloucestershire", + -13.766514778137207 + ], + [ + "awan", + -13.76651668548584 + ], + [ + "Credit", + -13.76652717590332 + ], + [ + "▁Schwarzenegger", + -13.766531944274902 + ], + [ + "▁Lig", + -13.766611099243164 + ], + [ + "▁orchid", + -13.766637802124023 + ], + [ + "▁infarction", + -13.766640663146973 + ], + [ + "Things", + -13.766667366027832 + ], + [ + "▁Jor", + -13.766671180725098 + ], + [ + "ε", + -13.766762733459473 + ], + [ + "▁custodian", + -13.766788482666016 + ], + [ + "▁persevere", + -13.766802787780762 + ], + [ + "archive", + -13.76681137084961 + ], + [ + "grabbing", + -13.766886711120605 + ], + [ + "▁Rational", + -13.766904830932617 + ], + [ + "guitar", + -13.766908645629883 + ], + [ + "Williams", + -13.766910552978516 + ], + [ + "▁haters", + -13.76698112487793 + ], + [ + "▁nous", + -13.767019271850586 + ], + [ + "cycling", + -13.76709270477295 + ], + [ + "▁cancerous", + -13.767144203186035 + ], + [ + "▁adapts", + -13.76718521118164 + ], + [ + "▁accentuate", + -13.767189979553223 + ], + [ + "lating", + -13.767260551452637 + ], + [ + "609", + -13.767315864562988 + ], + [ + "▁Bounce", + -13.767350196838379 + ], + [ + "emergency", + -13.767477035522461 + ], + [ + "▁transporter", + -13.76755142211914 + ], + [ + "▁Kana", + -13.76756763458252 + ], + [ + "▁Liberties", + -13.767577171325684 + ], + [ + "▁sacrificial", + -13.767590522766113 + ], + [ + "lips", + -13.767607688903809 + ], + [ + "▁synonym", + -13.767609596252441 + ], + [ + "▁stomp", + -13.76761245727539 + ], + [ + "▁PRODUCT", + -13.767653465270996 + ], + [ + "▁outpouring", + -13.767675399780273 + ], + [ + "labor", + -13.767745971679688 + ], + [ + "▁pathogenic", + -13.76778793334961 + ], + [ + "▁flickering", + -13.767875671386719 + ], + [ + "khan", + -13.767887115478516 + ], + [ + "WU", + -13.767903327941895 + ], + [ + "▁DISH", + -13.767924308776855 + ], + [ + "▁bolstered", + -13.767940521240234 + ], + [ + "▁Ré", + -13.767996788024902 + ], + [ + "▁SBC", + -13.768221855163574 + ], + [ + "▁MEP", + -13.768275260925293 + ], + [ + "▁Probe", + -13.768289566040039 + ], + [ + "▁disgruntled", + -13.768317222595215 + ], + [ + "▁Relevant", + -13.768390655517578 + ], + [ + "▁Zones", + -13.768414497375488 + ], + [ + "▁monogram", + -13.768475532531738 + ], + [ + "▁Rox", + -13.768638610839844 + ], + [ + "▁Gian", + -13.768668174743652 + ], + [ + "▁slaying", + -13.768672943115234 + ], + [ + "8°", + -13.768699645996094 + ], + [ + "▁hijacked", + -13.768720626831055 + ], + [ + "▁conduction", + -13.768766403198242 + ], + [ + "▁Horace", + -13.768789291381836 + ], + [ + "MAS", + -13.76882266998291 + ], + [ + "Lib", + -13.768882751464844 + ], + [ + "▁Saad", + -13.768972396850586 + ], + [ + "▁pegged", + -13.768975257873535 + ], + [ + "skinned", + -13.76900863647461 + ], + [ + "▁Bavaria", + -13.769034385681152 + ], + [ + "Mini", + -13.769051551818848 + ], + [ + "dak", + -13.769061088562012 + ], + [ + "▁Infrared", + -13.76909351348877 + ], + [ + "ridden", + -13.769102096557617 + ], + [ + "Wo", + -13.769139289855957 + ], + [ + "▁cocoon", + -13.769153594970703 + ], + [ + "rill", + -13.769156455993652 + ], + [ + "▁Antivirus", + -13.769161224365234 + ], + [ + "▁loophole", + -13.76921272277832 + ], + [ + "▁Petersen", + -13.769214630126953 + ], + [ + "ør", + -13.769217491149902 + ], + [ + "▁CDN", + -13.769265174865723 + ], + [ + "Mrs", + -13.769277572631836 + ], + [ + "▁athleticism", + -13.76935863494873 + ], + [ + "▁pasted", + -13.769375801086426 + ], + [ + "▁foto", + -13.769439697265625 + ], + [ + "▁wan", + -13.769495964050293 + ], + [ + "▁Matilda", + -13.76953125 + ], + [ + "scribe", + -13.76961898803711 + ], + [ + "SAN", + -13.769670486450195 + ], + [ + "▁Cyclone", + -13.769753456115723 + ], + [ + "▁discriminated", + -13.769757270812988 + ], + [ + "▁760", + -13.769768714904785 + ], + [ + "▁Gonna", + -13.769848823547363 + ], + [ + "▁MSRP", + -13.769880294799805 + ], + [ + "▁multipurpose", + -13.769968032836914 + ], + [ + "civil", + -13.76996898651123 + ], + [ + "▁lig", + -13.769981384277344 + ], + [ + "▁clippings", + -13.770033836364746 + ], + [ + "▁Ascension", + -13.770050048828125 + ], + [ + "▁Dominique", + -13.770105361938477 + ], + [ + "months", + -13.770106315612793 + ], + [ + "▁Comet", + -13.770153045654297 + ], + [ + "marin", + -13.770190238952637 + ], + [ + "▁KDE", + -13.770225524902344 + ], + [ + "▁ADR", + -13.770376205444336 + ], + [ + "VIS", + -13.770428657531738 + ], + [ + "▁269", + -13.770458221435547 + ], + [ + "▁McDaniel", + -13.770472526550293 + ], + [ + "▁kernels", + -13.77057933807373 + ], + [ + "alternative", + -13.770689964294434 + ], + [ + "ğ", + -13.770757675170898 + ], + [ + "bean", + -13.770769119262695 + ], + [ + "▁Foundry", + -13.770770072937012 + ], + [ + "376", + -13.770893096923828 + ], + [ + "▁Furnace", + -13.77090072631836 + ], + [ + "▁silos", + -13.770925521850586 + ], + [ + "▁502", + -13.770927429199219 + ], + [ + "▁betterment", + -13.771004676818848 + ], + [ + "▁Parcel", + -13.771013259887695 + ], + [ + "▁503", + -13.77101993560791 + ], + [ + "▁Barnard", + -13.771032333374023 + ], + [ + "▁Chew", + -13.771036148071289 + ], + [ + "▁strewn", + -13.771037101745605 + ], + [ + "▁Supplements", + -13.77109146118164 + ], + [ + "nti", + -13.771173477172852 + ], + [ + "UNG", + -13.771201133728027 + ], + [ + "andy", + -13.77133560180664 + ], + [ + "▁Nomad", + -13.771400451660156 + ], + [ + "▁NN", + -13.771440505981445 + ], + [ + "▁Cour", + -13.771449089050293 + ], + [ + "exp", + -13.771485328674316 + ], + [ + "sig", + -13.771506309509277 + ], + [ + "erating", + -13.771552085876465 + ], + [ + "▁wizards", + -13.77156925201416 + ], + [ + "▁Oss", + -13.771592140197754 + ], + [ + "▁envisaged", + -13.771611213684082 + ], + [ + "resistance", + -13.771635055541992 + ], + [ + "dek", + -13.77164363861084 + ], + [ + "▁budge", + -13.771665573120117 + ], + [ + "▁Cromwell", + -13.771709442138672 + ], + [ + "TEL", + -13.771778106689453 + ], + [ + "abo", + -13.771825790405273 + ], + [ + "▁Eurovision", + -13.77187442779541 + ], + [ + "▁onboarding", + -13.77187728881836 + ], + [ + "▁waveform", + -13.771878242492676 + ], + [ + "▁honing", + -13.771912574768066 + ], + [ + "▁267", + -13.771918296813965 + ], + [ + "▁housekeeper", + -13.771940231323242 + ], + [ + "sym", + -13.772045135498047 + ], + [ + "▁UNIX", + -13.77210521697998 + ], + [ + "▁NZB", + -13.772140502929688 + ], + [ + "423", + -13.772149085998535 + ], + [ + "▁factored", + -13.772214889526367 + ], + [ + "▁ECC", + -13.772245407104492 + ], + [ + "▁kor", + -13.772256851196289 + ], + [ + "▁liposuction", + -13.772438049316406 + ], + [ + "tino", + -13.772442817687988 + ], + [ + "whole", + -13.772464752197266 + ], + [ + "mala", + -13.772492408752441 + ], + [ + "▁Jac", + -13.772553443908691 + ], + [ + "▁Ebony", + -13.772608757019043 + ], + [ + "799", + -13.772713661193848 + ], + [ + "▁shredding", + -13.772727012634277 + ], + [ + "▁substituting", + -13.772807121276855 + ], + [ + "dow", + -13.772839546203613 + ], + [ + "yman", + -13.772841453552246 + ], + [ + "lter", + -13.772875785827637 + ], + [ + "bent", + -13.772880554199219 + ], + [ + "▁Excessive", + -13.772945404052734 + ], + [ + "▁bandage", + -13.773015975952148 + ], + [ + "▁WoW", + -13.773019790649414 + ], + [ + "▁Versa", + -13.77302360534668 + ], + [ + "▁Dau", + -13.773039817810059 + ], + [ + "burner", + -13.773058891296387 + ], + [ + "▁unknowingly", + -13.77308177947998 + ], + [ + "dana", + -13.773097038269043 + ], + [ + "▁indistinguishable", + -13.773126602172852 + ], + [ + "Child", + -13.773183822631836 + ], + [ + "▁Zin", + -13.773187637329102 + ], + [ + "▁Instructors", + -13.773198127746582 + ], + [ + "Country", + -13.773219108581543 + ], + [ + "▁unusable", + -13.77322006225586 + ], + [ + "bic", + -13.773272514343262 + ], + [ + "PX", + -13.773295402526855 + ], + [ + "▁robustness", + -13.773334503173828 + ], + [ + "▁mounds", + -13.77333927154541 + ], + [ + "▁authorship", + -13.773361206054688 + ], + [ + "▁clinched", + -13.77336311340332 + ], + [ + "▁facilitators", + -13.773365020751953 + ], + [ + "▁sitter", + -13.773398399353027 + ], + [ + "▁sill", + -13.773418426513672 + ], + [ + "▁extender", + -13.773642539978027 + ], + [ + "evaluation", + -13.773685455322266 + ], + [ + "▁Beige", + -13.773720741271973 + ], + [ + "shots", + -13.773721694946289 + ], + [ + "Santa", + -13.773733139038086 + ], + [ + "tres", + -13.773751258850098 + ], + [ + "▁troopers", + -13.77375602722168 + ], + [ + "417", + -13.773786544799805 + ], + [ + "ANI", + -13.77388858795166 + ], + [ + "▁quin", + -13.773913383483887 + ], + [ + "▁unregulated", + -13.773942947387695 + ], + [ + "gol", + -13.77396297454834 + ], + [ + "▁IFN", + -13.774039268493652 + ], + [ + "monthly", + -13.77404499053955 + ], + [ + "▁sn", + -13.774064064025879 + ], + [ + "menu", + -13.774243354797363 + ], + [ + "▁Expected", + -13.774260520935059 + ], + [ + "Looking", + -13.774275779724121 + ], + [ + "▁polycarbonate", + -13.774276733398438 + ], + [ + "▁shaman", + -13.774351119995117 + ], + [ + "▁Fullerton", + -13.774354934692383 + ], + [ + "016", + -13.774404525756836 + ], + [ + "trim", + -13.774412155151367 + ], + [ + "▁photons", + -13.774426460266113 + ], + [ + "070", + -13.77442741394043 + ], + [ + "▁hippie", + -13.774459838867188 + ], + [ + "▁Hasbro", + -13.774473190307617 + ], + [ + "▁refractory", + -13.77449893951416 + ], + [ + "▁hyped", + -13.774514198303223 + ], + [ + "▁prettiest", + -13.774515151977539 + ], + [ + "▁crepe", + -13.774608612060547 + ], + [ + "▁Sweepstakes", + -13.77461051940918 + ], + [ + "▁1849", + -13.774617195129395 + ], + [ + "▁lupus", + -13.774636268615723 + ], + [ + "▁740", + -13.774677276611328 + ], + [ + "▁jasmine", + -13.774690628051758 + ], + [ + "▁cove", + -13.774700164794922 + ], + [ + "▁Blades", + -13.774720191955566 + ], + [ + "▁reverb", + -13.774720191955566 + ], + [ + "▁pent", + -13.774767875671387 + ], + [ + "▁Contacts", + -13.774779319763184 + ], + [ + "▁Delivered", + -13.774792671203613 + ], + [ + "▁Shirts", + -13.774967193603516 + ], + [ + "▁blames", + -13.775076866149902 + ], + [ + "▁Keynote", + -13.775087356567383 + ], + [ + "▁Sunglasses", + -13.775090217590332 + ], + [ + "▁juxtaposition", + -13.77509880065918 + ], + [ + "▁Dmitry", + -13.775153160095215 + ], + [ + "▁Verona", + -13.775184631347656 + ], + [ + "▁disagrees", + -13.775263786315918 + ], + [ + "Arts", + -13.775273323059082 + ], + [ + "▁Mulder", + -13.775325775146484 + ], + [ + "▁lager", + -13.775344848632812 + ], + [ + "▁craps", + -13.77535343170166 + ], + [ + "Room", + -13.775360107421875 + ], + [ + "▁Mano", + -13.775360107421875 + ], + [ + "▁Hawking", + -13.775379180908203 + ], + [ + "▁timestamp", + -13.775392532348633 + ], + [ + "▁Arriving", + -13.77541732788086 + ], + [ + "Ve", + -13.775490760803223 + ], + [ + "▁SUNY", + -13.775491714477539 + ], + [ + "oja", + -13.775496482849121 + ], + [ + "▁Yoko", + -13.775501251220703 + ], + [ + "▁sunken", + -13.775513648986816 + ], + [ + "▁mut", + -13.77552604675293 + ], + [ + "▁Hormone", + -13.775562286376953 + ], + [ + "fd", + -13.77567195892334 + ], + [ + "ddington", + -13.77570915222168 + ], + [ + "▁skyscrapers", + -13.775711059570312 + ], + [ + "▁compressors", + -13.775755882263184 + ], + [ + "615", + -13.775758743286133 + ], + [ + "Adam", + -13.775840759277344 + ], + [ + "▁Seg", + -13.775845527648926 + ], + [ + "▁onshore", + -13.77588176727295 + ], + [ + "▁Gat", + -13.775897026062012 + ], + [ + "Meet", + -13.775969505310059 + ], + [ + "те", + -13.776060104370117 + ], + [ + "▁Vargas", + -13.776074409484863 + ], + [ + "anov", + -13.77614974975586 + ], + [ + "▁UD", + -13.776226997375488 + ], + [ + "▁flutter", + -13.776334762573242 + ], + [ + "▁Curl", + -13.776415824890137 + ], + [ + "▁sentient", + -13.776491165161133 + ], + [ + "▁Coo", + -13.776538848876953 + ], + [ + "pronounced", + -13.77667236328125 + ], + [ + "▁257", + -13.776690483093262 + ], + [ + "drum", + -13.776752471923828 + ], + [ + "▁prawns", + -13.776789665222168 + ], + [ + "▁mentored", + -13.776820182800293 + ], + [ + "χ", + -13.776837348937988 + ], + [ + "cheng", + -13.776857376098633 + ], + [ + "▁Gettysburg", + -13.776864051818848 + ], + [ + "▁Draco", + -13.777017593383789 + ], + [ + "▁sep", + -13.777031898498535 + ], + [ + "arius", + -13.777048110961914 + ], + [ + "mot", + -13.777067184448242 + ], + [ + "▁COULD", + -13.777067184448242 + ], + [ + "▁lackluster", + -13.777085304260254 + ], + [ + "▁Colours", + -13.777092933654785 + ], + [ + "▁stricken", + -13.77711009979248 + ], + [ + "▁Filipinos", + -13.777140617370605 + ], + [ + "508", + -13.777153015136719 + ], + [ + "▁Leasing", + -13.777153015136719 + ], + [ + "▁cleanly", + -13.777226448059082 + ], + [ + "▁peaking", + -13.777238845825195 + ], + [ + "▁bei", + -13.777250289916992 + ], + [ + "▁Surrounded", + -13.777257919311523 + ], + [ + "▁bovine", + -13.7772855758667 + ], + [ + "416", + -13.77733325958252 + ], + [ + "hid", + -13.777348518371582 + ], + [ + "▁hallmarks", + -13.77740478515625 + ], + [ + "OSE", + -13.777420043945312 + ], + [ + "▁Recycle", + -13.777426719665527 + ], + [ + "ouche", + -13.777427673339844 + ], + [ + "EQ", + -13.777432441711426 + ], + [ + "▁Donuts", + -13.77746295928955 + ], + [ + "▁intermediaries", + -13.777542114257812 + ], + [ + "▁Landry", + -13.777565956115723 + ], + [ + "▁succinct", + -13.777634620666504 + ], + [ + "▁starved", + -13.777645111083984 + ], + [ + "▁Ying", + -13.777706146240234 + ], + [ + "▁monastic", + -13.777737617492676 + ], + [ + "▁McIntyre", + -13.77774715423584 + ], + [ + "cking", + -13.77779483795166 + ], + [ + "▁bakers", + -13.777806282043457 + ], + [ + "▁Zagreb", + -13.777828216552734 + ], + [ + "▁Ching", + -13.777831077575684 + ], + [ + "▁brotherhood", + -13.777894973754883 + ], + [ + "▁Optics", + -13.777971267700195 + ], + [ + "▁Expectations", + -13.77801513671875 + ], + [ + "▁submissive", + -13.778019905090332 + ], + [ + "▁nomadic", + -13.778096199035645 + ], + [ + "▁Extraction", + -13.778130531311035 + ], + [ + "mf", + -13.778131484985352 + ], + [ + "▁Garth", + -13.77813720703125 + ], + [ + "▁Thunderbolt", + -13.778146743774414 + ], + [ + "gata", + -13.778189659118652 + ], + [ + "Comm", + -13.778196334838867 + ], + [ + "lte", + -13.77820873260498 + ], + [ + "▁gazed", + -13.778230667114258 + ], + [ + "▁AWD", + -13.778239250183105 + ], + [ + "hren", + -13.778275489807129 + ], + [ + "▁lilac", + -13.778420448303223 + ], + [ + "eze", + -13.778465270996094 + ], + [ + "▁recognisable", + -13.77851676940918 + ], + [ + "▁Housewives", + -13.778535842895508 + ], + [ + "▁Rui", + -13.77853775024414 + ], + [ + "▁orient", + -13.778629302978516 + ], + [ + "▁Munster", + -13.778639793395996 + ], + [ + "▁jay", + -13.778656959533691 + ], + [ + "675", + -13.778665542602539 + ], + [ + "▁Rani", + -13.77867603302002 + ], + [ + "▁drool", + -13.778677940368652 + ], + [ + "▁Syrians", + -13.778690338134766 + ], + [ + "ores", + -13.7787446975708 + ], + [ + "berries", + -13.778785705566406 + ], + [ + "▁burying", + -13.778915405273438 + ], + [ + "Sullivan", + -13.77893352508545 + ], + [ + "1100", + -13.778961181640625 + ], + [ + "▁vertex", + -13.779045104980469 + ], + [ + "gling", + -13.779050827026367 + ], + [ + "▁VIEW", + -13.779138565063477 + ], + [ + "▁astro", + -13.77916145324707 + ], + [ + "▁PAUL", + -13.779170036315918 + ], + [ + "▁Zag", + -13.779200553894043 + ], + [ + "▁EJ", + -13.779254913330078 + ], + [ + "▁fue", + -13.779266357421875 + ], + [ + "▁Lyndon", + -13.779318809509277 + ], + [ + "▁ukulele", + -13.779325485229492 + ], + [ + "▁Willard", + -13.779328346252441 + ], + [ + "▁unstructured", + -13.779339790344238 + ], + [ + "▁Nit", + -13.779343605041504 + ], + [ + "ή", + -13.779375076293945 + ], + [ + "aunt", + -13.779449462890625 + ], + [ + "▁ppt", + -13.77945327758789 + ], + [ + "▁timings", + -13.779569625854492 + ], + [ + "▁overtly", + -13.77957534790039 + ], + [ + "ught", + -13.77962589263916 + ], + [ + "▁Tia", + -13.779635429382324 + ], + [ + "▁pls", + -13.779644966125488 + ], + [ + "▁Inform", + -13.779655456542969 + ], + [ + "SEN", + -13.779666900634766 + ], + [ + "▁SPD", + -13.779720306396484 + ], + [ + "合", + -13.77995777130127 + ], + [ + "▁Bona", + -13.779963493347168 + ], + [ + "▁Currie", + -13.77997875213623 + ], + [ + "▁Redding", + -13.779996871948242 + ], + [ + "▁orphaned", + -13.780003547668457 + ], + [ + "▁kWh", + -13.780019760131836 + ], + [ + "▁industrialized", + -13.780048370361328 + ], + [ + "▁Stamps", + -13.78007698059082 + ], + [ + "1920", + -13.78010368347168 + ], + [ + "▁JAMES", + -13.780105590820312 + ], + [ + "▁Consultancy", + -13.780158042907715 + ], + [ + "bles", + -13.780264854431152 + ], + [ + "▁CHF", + -13.780322074890137 + ], + [ + "windows", + -13.780349731445312 + ], + [ + "▁furthest", + -13.780354499816895 + ], + [ + "▁Corolla", + -13.780390739440918 + ], + [ + "police", + -13.780495643615723 + ], + [ + "IUM", + -13.780582427978516 + ], + [ + "▁Toulouse", + -13.780607223510742 + ], + [ + "▁من", + -13.780621528625488 + ], + [ + "▁adequacy", + -13.78062629699707 + ], + [ + "▁phyto", + -13.780702590942383 + ], + [ + "▁Infectious", + -13.780713081359863 + ], + [ + "▁Breton", + -13.780725479125977 + ], + [ + "Malley", + -13.780746459960938 + ], + [ + "▁Assess", + -13.780768394470215 + ], + [ + "▁Alexandre", + -13.780799865722656 + ], + [ + "▁Nara", + -13.78084945678711 + ], + [ + "▁Perfection", + -13.780852317810059 + ], + [ + "▁McKinley", + -13.780895233154297 + ], + [ + "▁Lust", + -13.780906677246094 + ], + [ + "paw", + -13.780957221984863 + ], + [ + "▁Vai", + -13.781039237976074 + ], + [ + "▁einen", + -13.78110122680664 + ], + [ + "662", + -13.781237602233887 + ], + [ + "▁duet", + -13.781280517578125 + ], + [ + "▁Hr", + -13.781290054321289 + ], + [ + "▁Scr", + -13.781410217285156 + ], + [ + "rav", + -13.781493186950684 + ], + [ + "432", + -13.78150463104248 + ], + [ + "▁287", + -13.78150749206543 + ], + [ + "▁Cristina", + -13.781538963317871 + ], + [ + "▁REG", + -13.781573295593262 + ], + [ + "▁clams", + -13.781588554382324 + ], + [ + "fon", + -13.781590461730957 + ], + [ + "▁dit", + -13.781598091125488 + ], + [ + "▁carcass", + -13.781641006469727 + ], + [ + "effectiveness", + -13.781681060791016 + ], + [ + "Gas", + -13.781693458557129 + ], + [ + "▁censor", + -13.781715393066406 + ], + [ + "▁sterilization", + -13.781745910644531 + ], + [ + "▁266", + -13.78177261352539 + ], + [ + "Fly", + -13.78188705444336 + ], + [ + "▁braids", + -13.781907081604004 + ], + [ + "vera", + -13.781923294067383 + ], + [ + "▁Prepared", + -13.781929016113281 + ], + [ + "psy", + -13.781949043273926 + ], + [ + "▁Nuggets", + -13.781968116760254 + ], + [ + "mailed", + -13.781988143920898 + ], + [ + "▁PTO", + -13.782049179077148 + ], + [ + "▁bono", + -13.782049179077148 + ], + [ + "▁Jem", + -13.782094955444336 + ], + [ + "lini", + -13.7821044921875 + ], + [ + "▁Suggestions", + -13.782186508178711 + ], + [ + "▁gateways", + -13.782193183898926 + ], + [ + "▁Scouting", + -13.782273292541504 + ], + [ + "▁dermatitis", + -13.782361030578613 + ], + [ + "▁progesterone", + -13.78239917755127 + ], + [ + "▁buttocks", + -13.782407760620117 + ], + [ + "▁cranky", + -13.782411575317383 + ], + [ + "▁EPUB", + -13.782463073730469 + ], + [ + "▁overcrowded", + -13.782548904418945 + ], + [ + "▁bison", + -13.782563209533691 + ], + [ + "rence", + -13.782645225524902 + ], + [ + "▁paradigms", + -13.782716751098633 + ], + [ + "▁Roundup", + -13.782736778259277 + ], + [ + "▁Maynard", + -13.782771110534668 + ], + [ + "▁resists", + -13.782785415649414 + ], + [ + "▁Boil", + -13.782832145690918 + ], + [ + "handling", + -13.782903671264648 + ], + [ + "▁roared", + -13.783029556274414 + ], + [ + "▁deadlock", + -13.783097267150879 + ], + [ + "RIA", + -13.783102035522461 + ], + [ + "cliffe", + -13.783169746398926 + ], + [ + "▁revolutionized", + -13.783199310302734 + ], + [ + "▁Riga", + -13.783205032348633 + ], + [ + "▁DHCP", + -13.783265113830566 + ], + [ + "▁Arte", + -13.783273696899414 + ], + [ + "▁bodybuilding", + -13.783285140991211 + ], + [ + "▁Thunderbird", + -13.783318519592285 + ], + [ + "▁Phen", + -13.783321380615234 + ], + [ + "▁Conf", + -13.783329010009766 + ], + [ + "▁anniversaries", + -13.783355712890625 + ], + [ + "jj", + -13.783356666564941 + ], + [ + "▁Polished", + -13.78337574005127 + ], + [ + "▁rout", + -13.783398628234863 + ], + [ + "▁Scenes", + -13.783437728881836 + ], + [ + "▁Corbin", + -13.783448219299316 + ], + [ + "ön", + -13.783473014831543 + ], + [ + "▁Machado", + -13.783493041992188 + ], + [ + "ку", + -13.783498764038086 + ], + [ + "▁Mathews", + -13.78352165222168 + ], + [ + "▁Regents", + -13.783562660217285 + ], + [ + "▁broadening", + -13.783588409423828 + ], + [ + "▁Shorts", + -13.783615112304688 + ], + [ + "▁Demonstrate", + -13.78369140625 + ], + [ + "▁bloke", + -13.78371524810791 + ], + [ + "Follow", + -13.78372573852539 + ], + [ + "▁Abd", + -13.78376579284668 + ], + [ + "▁Happened", + -13.783818244934082 + ], + [ + "ght", + -13.783852577209473 + ], + [ + "▁vacate", + -13.7838716506958 + ], + [ + "Agent", + -13.783939361572266 + ], + [ + "Better", + -13.78394889831543 + ], + [ + "▁Dawkins", + -13.783995628356934 + ], + [ + "▁shattering", + -13.784021377563477 + ], + [ + "▁hearted", + -13.784029960632324 + ], + [ + "▁Cleaners", + -13.784137725830078 + ], + [ + "▁Zig", + -13.784158706665039 + ], + [ + "▁costco", + -13.784186363220215 + ], + [ + "▁slashing", + -13.784205436706543 + ], + [ + "▁transgenic", + -13.784224510192871 + ], + [ + "ikh", + -13.7842378616333 + ], + [ + "▁capacitors", + -13.784245491027832 + ], + [ + "▁Marta", + -13.7843017578125 + ], + [ + "▁vertebrae", + -13.78433609008789 + ], + [ + "▁Officially", + -13.784337997436523 + ], + [ + "▁misused", + -13.784369468688965 + ], + [ + "▁Latitude", + -13.784392356872559 + ], + [ + "▁Hap", + -13.784412384033203 + ], + [ + "▁vend", + -13.784422874450684 + ], + [ + "▁Sharpe", + -13.784439086914062 + ], + [ + "▁exuberant", + -13.784518241882324 + ], + [ + "▁Naz", + -13.784542083740234 + ], + [ + "▁paraphrase", + -13.784557342529297 + ], + [ + "▁Spinal", + -13.784584999084473 + ], + [ + "pher", + -13.78459644317627 + ], + [ + "▁rudder", + -13.784626960754395 + ], + [ + "CSA", + -13.78463077545166 + ], + [ + "▁Fuck", + -13.784667015075684 + ], + [ + "▁Darryl", + -13.784675598144531 + ], + [ + "▁Maverick", + -13.784760475158691 + ], + [ + "▁Forte", + -13.78482437133789 + ], + [ + "Match", + -13.784863471984863 + ], + [ + "caster", + -13.784892082214355 + ], + [ + "▁Flats", + -13.784906387329102 + ], + [ + "▁fielded", + -13.784968376159668 + ], + [ + "▁Stor", + -13.78498363494873 + ], + [ + "▁Giorgio", + -13.784992218017578 + ], + [ + "▁Decorate", + -13.785058975219727 + ], + [ + "▁Defendants", + -13.785151481628418 + ], + [ + "pto", + -13.785202980041504 + ], + [ + "enough", + -13.785211563110352 + ], + [ + "363", + -13.785284996032715 + ], + [ + "nery", + -13.785409927368164 + ], + [ + "▁locator", + -13.785439491271973 + ], + [ + "▁encapsulated", + -13.785455703735352 + ], + [ + "Seven", + -13.785469055175781 + ], + [ + "▁greets", + -13.785493850708008 + ], + [ + "▁Grateful", + -13.785521507263184 + ], + [ + "hak", + -13.785527229309082 + ], + [ + "▁Degrees", + -13.785529136657715 + ], + [ + "▁cleric", + -13.78553581237793 + ], + [ + "▁Luo", + -13.785569190979004 + ], + [ + "hk", + -13.78557014465332 + ], + [ + "▁Voluntary", + -13.785606384277344 + ], + [ + "rade", + -13.78564739227295 + ], + [ + "▁1845", + -13.785658836364746 + ], + [ + "▁XIV", + -13.785725593566895 + ], + [ + "▁elapsed", + -13.785765647888184 + ], + [ + "▁couldnt", + -13.785809516906738 + ], + [ + "▁Duran", + -13.78591251373291 + ], + [ + "▁resolves", + -13.785984992980957 + ], + [ + "▁Dum", + -13.786046028137207 + ], + [ + "▁radon", + -13.786105155944824 + ], + [ + "SCO", + -13.786128997802734 + ], + [ + "351", + -13.786157608032227 + ], + [ + "▁Adjustment", + -13.786208152770996 + ], + [ + "saki", + -13.786216735839844 + ], + [ + "▁lipids", + -13.78626823425293 + ], + [ + "▁Faber", + -13.786273002624512 + ], + [ + "▁Resin", + -13.786323547363281 + ], + [ + "▁Inclusive", + -13.786490440368652 + ], + [ + "▁Socket", + -13.786505699157715 + ], + [ + "▁Adorable", + -13.786514282226562 + ], + [ + "▁Spreadsheet", + -13.786612510681152 + ], + [ + "▁dispensary", + -13.786612510681152 + ], + [ + "lade", + -13.786650657653809 + ], + [ + "▁wielding", + -13.78670597076416 + ], + [ + "Flex", + -13.786718368530273 + ], + [ + "291", + -13.786786079406738 + ], + [ + "▁widows", + -13.786795616149902 + ], + [ + "rrell", + -13.786797523498535 + ], + [ + "▁Bub", + -13.786823272705078 + ], + [ + "dley", + -13.78682804107666 + ], + [ + "▁Affleck", + -13.786846160888672 + ], + [ + "district", + -13.786849975585938 + ], + [ + "▁pegs", + -13.786867141723633 + ], + [ + "δ", + -13.78689193725586 + ], + [ + "▁Audubon", + -13.786901473999023 + ], + [ + "▁Mutant", + -13.786905288696289 + ], + [ + "▁Nev", + -13.786947250366211 + ], + [ + "▁Kano", + -13.786972999572754 + ], + [ + "trace", + -13.786992073059082 + ], + [ + "prescription", + -13.787087440490723 + ], + [ + "▁multitasking", + -13.787120819091797 + ], + [ + "▁scones", + -13.7871675491333 + ], + [ + "▁photon", + -13.787177085876465 + ], + [ + "▁Allowance", + -13.787253379821777 + ], + [ + "vl", + -13.78731632232666 + ], + [ + "▁tim", + -13.787323951721191 + ], + [ + "Amazon", + -13.787327766418457 + ], + [ + "Catholic", + -13.787353515625 + ], + [ + "▁chile", + -13.78740406036377 + ], + [ + "▁411", + -13.787409782409668 + ], + [ + "▁Lectures", + -13.787459373474121 + ], + [ + "▁Diver", + -13.787482261657715 + ], + [ + "▁Giuseppe", + -13.787489891052246 + ], + [ + "▁pathogenesis", + -13.787565231323242 + ], + [ + "▁406", + -13.78759479522705 + ], + [ + "▁skier", + -13.787681579589844 + ], + [ + "▁Protestants", + -13.78769302368164 + ], + [ + "▁bravely", + -13.787704467773438 + ], + [ + "▁Tripp", + -13.78780460357666 + ], + [ + "503", + -13.78785228729248 + ], + [ + "▁gif", + -13.787860870361328 + ], + [ + "▁780", + -13.787866592407227 + ], + [ + "▁perilous", + -13.787873268127441 + ], + [ + "▁rudimentary", + -13.787924766540527 + ], + [ + "xel", + -13.787939071655273 + ], + [ + "▁PAGE", + -13.788076400756836 + ], + [ + "▁Hoop", + -13.788128852844238 + ], + [ + "solutions", + -13.788132667541504 + ], + [ + "▁cached", + -13.788256645202637 + ], + [ + "▁bios", + -13.788317680358887 + ], + [ + "▁cram", + -13.788341522216797 + ], + [ + "606", + -13.788363456726074 + ], + [ + "▁Daw", + -13.788379669189453 + ], + [ + "▁tributes", + -13.788399696350098 + ], + [ + "▁Genoa", + -13.788414001464844 + ], + [ + "▁pakistan", + -13.788422584533691 + ], + [ + "▁kart", + -13.788459777832031 + ], + [ + "▁crumbled", + -13.7885103225708 + ], + [ + "▁Pens", + -13.788516998291016 + ], + [ + "▁Crude", + -13.788620948791504 + ], + [ + "▁Yuki", + -13.78867244720459 + ], + [ + "▁zi", + -13.788694381713867 + ], + [ + "pul", + -13.788707733154297 + ], + [ + "▁attrition", + -13.788727760314941 + ], + [ + "▁Curator", + -13.788789749145508 + ], + [ + "operate", + -13.788808822631836 + ], + [ + "died", + -13.788849830627441 + ], + [ + "sung", + -13.788867950439453 + ], + [ + "▁laces", + -13.788891792297363 + ], + [ + "▁Vessel", + -13.788949966430664 + ], + [ + "▁orchids", + -13.788965225219727 + ], + [ + "978", + -13.789030075073242 + ], + [ + "▁transceiver", + -13.789048194885254 + ], + [ + "▁stead", + -13.789061546325684 + ], + [ + "▁brunt", + -13.789067268371582 + ], + [ + "▁furnaces", + -13.789140701293945 + ], + [ + "▁excused", + -13.789186477661133 + ], + [ + "motivated", + -13.78923511505127 + ], + [ + "wordpress", + -13.789262771606445 + ], + [ + "▁COOPER", + -13.789284706115723 + ], + [ + "▁gp", + -13.789284706115723 + ], + [ + "▁Accredited", + -13.78929615020752 + ], + [ + "▁wits", + -13.789298057556152 + ], + [ + "Prince", + -13.78933048248291 + ], + [ + "▁Patience", + -13.789424896240234 + ], + [ + "412", + -13.789433479309082 + ], + [ + "▁indecent", + -13.78946590423584 + ], + [ + "▁pokemon", + -13.789483070373535 + ], + [ + "▁extinguished", + -13.789504051208496 + ], + [ + "▁LN", + -13.789531707763672 + ], + [ + "▁torpedo", + -13.789534568786621 + ], + [ + "▁amends", + -13.78953742980957 + ], + [ + "Whatever", + -13.789558410644531 + ], + [ + "▁compounding", + -13.789560317993164 + ], + [ + "▁alumnus", + -13.78956127166748 + ], + [ + "▁nigh", + -13.789678573608398 + ], + [ + "dressed", + -13.789689064025879 + ], + [ + "SEE", + -13.789742469787598 + ], + [ + "▁keyless", + -13.789834976196289 + ], + [ + "▁Ting", + -13.789973258972168 + ], + [ + "▁Gibbons", + -13.789979934692383 + ], + [ + "kyo", + -13.790016174316406 + ], + [ + "▁Philosophical", + -13.790029525756836 + ], + [ + "▁clout", + -13.79006576538086 + ], + [ + "MBA", + -13.790144920349121 + ], + [ + "cook", + -13.790191650390625 + ], + [ + "▁Rarely", + -13.790213584899902 + ], + [ + "RIES", + -13.79023265838623 + ], + [ + "values", + -13.790278434753418 + ], + [ + "▁WWI", + -13.790292739868164 + ], + [ + "▁clutching", + -13.790311813354492 + ], + [ + "▁276", + -13.790360450744629 + ], + [ + "▁fructose", + -13.790388107299805 + ], + [ + "▁Sainsbury", + -13.790404319763184 + ], + [ + "▁Graf", + -13.790420532226562 + ], + [ + "▁unspoken", + -13.790435791015625 + ], + [ + "▁Debut", + -13.790445327758789 + ], + [ + "Ready", + -13.790517807006836 + ], + [ + "NEY", + -13.790570259094238 + ], + [ + "▁tuxedo", + -13.790596008300781 + ], + [ + "▁Coles", + -13.790624618530273 + ], + [ + "▁Salzburg", + -13.790643692016602 + ], + [ + "Clear", + -13.79067325592041 + ], + [ + "▁dreamt", + -13.79072093963623 + ], + [ + "▁openers", + -13.790733337402344 + ], + [ + "▁Claw", + -13.790799140930176 + ], + [ + "▁SXSW", + -13.790811538696289 + ], + [ + "Station", + -13.790908813476562 + ], + [ + "▁teh", + -13.79092788696289 + ], + [ + "▁cystic", + -13.790932655334473 + ], + [ + "▁obstructive", + -13.790972709655762 + ], + [ + "▁Abyss", + -13.790979385375977 + ], + [ + "▁Rankin", + -13.790989875793457 + ], + [ + "HY", + -13.791035652160645 + ], + [ + "▁Aka", + -13.791048049926758 + ], + [ + "iar", + -13.791074752807617 + ], + [ + "▁ROBERT", + -13.791106224060059 + ], + [ + "Pin", + -13.791131019592285 + ], + [ + "▁435", + -13.791133880615234 + ], + [ + "▁Magistrates", + -13.79118537902832 + ], + [ + "▁synchronous", + -13.791194915771484 + ], + [ + "tac", + -13.791229248046875 + ], + [ + "▁Mortal", + -13.79127025604248 + ], + [ + "IND", + -13.791290283203125 + ], + [ + "▁centrifugal", + -13.79133129119873 + ], + [ + "▁microbiome", + -13.79140567779541 + ], + [ + "▁Vase", + -13.791415214538574 + ], + [ + "▁Detectives", + -13.791475296020508 + ], + [ + "actual", + -13.79151725769043 + ], + [ + "▁Sor", + -13.791534423828125 + ], + [ + "▁pharmacological", + -13.791553497314453 + ], + [ + "▁Bradshaw", + -13.791559219360352 + ], + [ + "▁Tron", + -13.791563987731934 + ], + [ + "▁Margarita", + -13.791579246520996 + ], + [ + "chart", + -13.791594505310059 + ], + [ + "▁pitted", + -13.79161262512207 + ], + [ + "lok", + -13.791632652282715 + ], + [ + "▁reelection", + -13.791716575622559 + ], + [ + "▁musk", + -13.791730880737305 + ], + [ + "Wil", + -13.791738510131836 + ], + [ + "▁cadre", + -13.791742324829102 + ], + [ + "▁1776", + -13.791780471801758 + ], + [ + "verbal", + -13.791786193847656 + ], + [ + "▁beneficiation", + -13.791902542114258 + ], + [ + "Israeli", + -13.791959762573242 + ], + [ + "duction", + -13.79202651977539 + ], + [ + "▁amending", + -13.792028427124023 + ], + [ + "▁undertakes", + -13.792032241821289 + ], + [ + "▁scorers", + -13.792057037353516 + ], + [ + "▁Jakob", + -13.792086601257324 + ], + [ + "charged", + -13.792147636413574 + ], + [ + "▁heinous", + -13.79226016998291 + ], + [ + "▁bankroll", + -13.792317390441895 + ], + [ + "▁justifying", + -13.792319297790527 + ], + [ + "▁Xander", + -13.792390823364258 + ], + [ + "▁inscriptions", + -13.79244613647461 + ], + [ + "▁boosters", + -13.792458534240723 + ], + [ + "▁Crohn", + -13.792463302612305 + ], + [ + "▁radiology", + -13.7925443649292 + ], + [ + "Res", + -13.792597770690918 + ], + [ + "▁OTA", + -13.792601585388184 + ], + [ + "▁rearrange", + -13.792662620544434 + ], + [ + "▁BPM", + -13.792681694030762 + ], + [ + "shown", + -13.792683601379395 + ], + [ + "▁Kendra", + -13.792790412902832 + ], + [ + "702", + -13.792900085449219 + ], + [ + "▁culprits", + -13.7929105758667 + ], + [ + "someone", + -13.792928695678711 + ], + [ + "schen", + -13.792976379394531 + ], + [ + "corporate", + -13.793015480041504 + ], + [ + "▁discernment", + -13.793052673339844 + ], + [ + "▁clots", + -13.793122291564941 + ], + [ + "Ste", + -13.793137550354004 + ], + [ + "▁Barlow", + -13.793144226074219 + ], + [ + "Pakistan", + -13.793159484863281 + ], + [ + "▁ENERGY", + -13.793205261230469 + ], + [ + "▁knuckle", + -13.79334545135498 + ], + [ + "weighted", + -13.79338550567627 + ], + [ + "▁Larkin", + -13.793436050415039 + ], + [ + "▁Arg", + -13.793538093566895 + ], + [ + "▁Beneath", + -13.79355525970459 + ], + [ + "▁Burch", + -13.79358959197998 + ], + [ + "Still", + -13.793601036071777 + ], + [ + "727", + -13.793612480163574 + ], + [ + "tender", + -13.79367733001709 + ], + [ + "▁unattractive", + -13.793701171875 + ], + [ + "▁HV", + -13.793780326843262 + ], + [ + "▁INF", + -13.793803215026855 + ], + [ + "▁Feeder", + -13.793829917907715 + ], + [ + "▁removals", + -13.793831825256348 + ], + [ + "▁LIABILITY", + -13.793832778930664 + ], + [ + "▁Hillsborough", + -13.793928146362305 + ], + [ + "tering", + -13.793935775756836 + ], + [ + "▁cb", + -13.793940544128418 + ], + [ + "▁cheery", + -13.793963432312012 + ], + [ + "▁incl", + -13.79398250579834 + ], + [ + "▁Clinics", + -13.794049263000488 + ], + [ + "▁Exposition", + -13.794051170349121 + ], + [ + "▁Tear", + -13.794109344482422 + ], + [ + "antes", + -13.794118881225586 + ], + [ + "earnings", + -13.794143676757812 + ], + [ + "tard", + -13.794177055358887 + ], + [ + "▁Hacker", + -13.794189453125 + ], + [ + "▁modality", + -13.794265747070312 + ], + [ + "▁surfacing", + -13.794290542602539 + ], + [ + "▁McDonalds", + -13.794344902038574 + ], + [ + "Advanced", + -13.79434585571289 + ], + [ + "▁integers", + -13.794353485107422 + ], + [ + "▁Gamer", + -13.794394493103027 + ], + [ + "turning", + -13.794466018676758 + ], + [ + "▁Molina", + -13.794466972351074 + ], + [ + "agency", + -13.794469833374023 + ], + [ + "bags", + -13.794488906860352 + ], + [ + "fighter", + -13.79452896118164 + ], + [ + "kei", + -13.794536590576172 + ], + [ + "▁blinding", + -13.794600486755371 + ], + [ + "▁Iraqis", + -13.794623374938965 + ], + [ + "PW", + -13.794695854187012 + ], + [ + "£1", + -13.79470157623291 + ], + [ + "inated", + -13.794708251953125 + ], + [ + "solar", + -13.794722557067871 + ], + [ + "Builder", + -13.794745445251465 + ], + [ + "eries", + -13.794745445251465 + ], + [ + "▁Wrist", + -13.794756889343262 + ], + [ + "▁adheres", + -13.794797897338867 + ], + [ + "SEA", + -13.79506778717041 + ], + [ + "▁consummate", + -13.795077323913574 + ], + [ + "TAN", + -13.795121192932129 + ], + [ + "▁kneel", + -13.795136451721191 + ], + [ + "▁Edmond", + -13.795138359069824 + ], + [ + "▁polymerase", + -13.795153617858887 + ], + [ + "▁adopters", + -13.79516887664795 + ], + [ + "cata", + -13.795220375061035 + ], + [ + "▁outboard", + -13.795248985290527 + ], + [ + "▁Vue", + -13.79526424407959 + ], + [ + "▁Steward", + -13.79527759552002 + ], + [ + "▁Quint", + -13.795299530029297 + ], + [ + "354", + -13.795336723327637 + ], + [ + "▁gmail", + -13.7953519821167 + ], + [ + "casting", + -13.795361518859863 + ], + [ + "reward", + -13.795417785644531 + ], + [ + "▁Ortega", + -13.795442581176758 + ], + [ + "Police", + -13.795446395874023 + ], + [ + "▁Concerns", + -13.795555114746094 + ], + [ + "ม", + -13.795557975769043 + ], + [ + "▁kiosks", + -13.795557975769043 + ], + [ + "▁scallops", + -13.795574188232422 + ], + [ + "▁Tatum", + -13.795589447021484 + ], + [ + "▁Countdown", + -13.795618057250977 + ], + [ + "▁tectonic", + -13.795621871948242 + ], + [ + "thal", + -13.795623779296875 + ], + [ + "▁apricot", + -13.795629501342773 + ], + [ + "▁irradiation", + -13.795638084411621 + ], + [ + "▁Terminator", + -13.795660018920898 + ], + [ + "Active", + -13.795690536499023 + ], + [ + "▁Nap", + -13.795702934265137 + ], + [ + "▁ec", + -13.795705795288086 + ], + [ + "445", + -13.795717239379883 + ], + [ + "▁Odessa", + -13.795719146728516 + ], + [ + "▁centerpieces", + -13.795767784118652 + ], + [ + "cable", + -13.795785903930664 + ], + [ + "▁Chel", + -13.795796394348145 + ], + [ + "▁Haskell", + -13.795808792114258 + ], + [ + "▁vowel", + -13.795823097229004 + ], + [ + "▁Aliens", + -13.795827865600586 + ], + [ + "spirited", + -13.795842170715332 + ], + [ + "▁durch", + -13.79584789276123 + ], + [ + "▁Artillery", + -13.795848846435547 + ], + [ + "▁politic", + -13.795869827270508 + ], + [ + "▁covenants", + -13.795892715454102 + ], + [ + "▁Spit", + -13.795921325683594 + ], + [ + "▁Grimes", + -13.796003341674805 + ], + [ + "▁resurfacing", + -13.796021461486816 + ], + [ + "▁Gage", + -13.796163558959961 + ], + [ + "▁chauffeur", + -13.796163558959961 + ], + [ + "▁finisher", + -13.796175003051758 + ], + [ + "▁anaerobic", + -13.796191215515137 + ], + [ + "▁ETA", + -13.796273231506348 + ], + [ + "factory", + -13.796277046203613 + ], + [ + "URA", + -13.796331405639648 + ], + [ + "▁retribution", + -13.796422004699707 + ], + [ + "▁Sphere", + -13.796449661254883 + ], + [ + "▁abusers", + -13.796469688415527 + ], + [ + "▁billionaires", + -13.796525001525879 + ], + [ + "703", + -13.796551704406738 + ], + [ + "zee", + -13.796558380126953 + ], + [ + "▁Laminate", + -13.796588897705078 + ], + [ + "▁Dusty", + -13.79663372039795 + ], + [ + "trophic", + -13.796698570251465 + ], + [ + "▁CLUB", + -13.796704292297363 + ], + [ + "▁Siege", + -13.796714782714844 + ], + [ + "▁picnics", + -13.796735763549805 + ], + [ + "▁Innocent", + -13.79675006866455 + ], + [ + "▁palatable", + -13.796761512756348 + ], + [ + "▁alternately", + -13.796771049499512 + ], + [ + "▁gunmen", + -13.796792030334473 + ], + [ + "UFF", + -13.796890258789062 + ], + [ + "▁exclamation", + -13.796908378601074 + ], + [ + "▁Royalty", + -13.796918869018555 + ], + [ + "▁Frederic", + -13.796943664550781 + ], + [ + "▁Mem", + -13.796947479248047 + ], + [ + "▁wilt", + -13.797066688537598 + ], + [ + "▁Momentum", + -13.797069549560547 + ], + [ + "bash", + -13.797158241271973 + ], + [ + "ordination", + -13.797175407409668 + ], + [ + "▁Dorn", + -13.797235488891602 + ], + [ + "▁aquaculture", + -13.797253608703613 + ], + [ + "▁Creates", + -13.79726791381836 + ], + [ + "▁TEST", + -13.797280311584473 + ], + [ + "▁Referral", + -13.797317504882812 + ], + [ + "▁Bib", + -13.797354698181152 + ], + [ + "▁Experiments", + -13.79738998413086 + ], + [ + "brew", + -13.797409057617188 + ], + [ + "▁predictors", + -13.797414779663086 + ], + [ + "ots", + -13.797515869140625 + ], + [ + "rules", + -13.797542572021484 + ], + [ + "▁electing", + -13.797699928283691 + ], + [ + "▁penetrated", + -13.79775333404541 + ], + [ + "▁giraffe", + -13.797958374023438 + ], + [ + "▁488", + -13.798027992248535 + ], + [ + "▁rangers", + -13.798028945922852 + ], + [ + "▁Millionaire", + -13.798054695129395 + ], + [ + "▁enclose", + -13.798068046569824 + ], + [ + "flop", + -13.798070907592773 + ], + [ + "▁Guan", + -13.798111915588379 + ], + [ + "▁Blanket", + -13.79814624786377 + ], + [ + "▁eyeballs", + -13.7981595993042 + ], + [ + "▁Turquoise", + -13.798171997070312 + ], + [ + "▁Nirvana", + -13.79826545715332 + ], + [ + "particle", + -13.798273086547852 + ], + [ + "▁rebounding", + -13.79830265045166 + ], + [ + "property", + -13.79831600189209 + ], + [ + "customer", + -13.798358917236328 + ], + [ + "▁HIT", + -13.798359870910645 + ], + [ + "▁maxim", + -13.798450469970703 + ], + [ + "▁defiant", + -13.79848575592041 + ], + [ + "▁stagnation", + -13.798492431640625 + ], + [ + "medicine", + -13.798561096191406 + ], + [ + "▁laborious", + -13.798601150512695 + ], + [ + "▁Moro", + -13.798612594604492 + ], + [ + "▁classically", + -13.798635482788086 + ], + [ + "shower", + -13.798639297485352 + ], + [ + "া", + -13.798681259155273 + ], + [ + "▁Rhys", + -13.798696517944336 + ], + [ + "jaw", + -13.798713684082031 + ], + [ + "generating", + -13.798722267150879 + ], + [ + "▁Pollock", + -13.79874324798584 + ], + [ + "imon", + -13.798754692077637 + ], + [ + "▁Lille", + -13.798808097839355 + ], + [ + "tov", + -13.798824310302734 + ], + [ + "Century", + -13.798836708068848 + ], + [ + "▁Cardio", + -13.798874855041504 + ], + [ + "IMA", + -13.798898696899414 + ], + [ + "▁Socialism", + -13.79896068572998 + ], + [ + "ronic", + -13.799026489257812 + ], + [ + "▁Conclusions", + -13.799046516418457 + ], + [ + "▁ablation", + -13.799225807189941 + ], + [ + "▁granny", + -13.799249649047852 + ], + [ + "▁Denim", + -13.799291610717773 + ], + [ + "▁Legs", + -13.799295425415039 + ], + [ + "▁catwalk", + -13.799302101135254 + ], + [ + "▁hoard", + -13.79930305480957 + ], + [ + "▁Abbot", + -13.799311637878418 + ], + [ + "▁constructions", + -13.79936695098877 + ], + [ + "segment", + -13.799405097961426 + ], + [ + "▁DBA", + -13.799449920654297 + ], + [ + "▁sleepless", + -13.799471855163574 + ], + [ + "vig", + -13.799548149108887 + ], + [ + "▁Bree", + -13.799565315246582 + ], + [ + "▁protruding", + -13.79958438873291 + ], + [ + "374", + -13.799596786499023 + ], + [ + "369", + -13.799646377563477 + ], + [ + "osomes", + -13.799732208251953 + ], + [ + "▁Mexicans", + -13.79973316192627 + ], + [ + "▁wif", + -13.799734115600586 + ], + [ + "roth", + -13.799756050109863 + ], + [ + "▁affliction", + -13.799782752990723 + ], + [ + "▁Pistol", + -13.799817085266113 + ], + [ + "▁352", + -13.799835205078125 + ], + [ + "▁Luka", + -13.799849510192871 + ], + [ + "▁ocular", + -13.799922943115234 + ], + [ + "▁magnifying", + -13.799956321716309 + ], + [ + "▁preschoolers", + -13.800007820129395 + ], + [ + "▁Forrester", + -13.80003833770752 + ], + [ + "▁sprinkles", + -13.80004596710205 + ], + [ + "▁foxes", + -13.800168991088867 + ], + [ + "plat", + -13.8001708984375 + ], + [ + "▁pious", + -13.800188064575195 + ], + [ + "yra", + -13.800195693969727 + ], + [ + "dil", + -13.800199508666992 + ], + [ + "comment", + -13.800213813781738 + ], + [ + "▁Eritrea", + -13.800241470336914 + ], + [ + "▁greek", + -13.800244331359863 + ], + [ + "▁1846", + -13.800254821777344 + ], + [ + "▁commences", + -13.800283432006836 + ], + [ + "▁Bison", + -13.800311088562012 + ], + [ + "▁savoury", + -13.800335884094238 + ], + [ + "academic", + -13.800341606140137 + ], + [ + "844", + -13.800346374511719 + ], + [ + "▁overhang", + -13.800349235534668 + ], + [ + "structural", + -13.800419807434082 + ], + [ + "▁spectacularly", + -13.80042839050293 + ], + [ + "▁SBS", + -13.8004789352417 + ], + [ + "▁Loki", + -13.800507545471191 + ], + [ + "▁casa", + -13.800600051879883 + ], + [ + "▁Daylight", + -13.800602912902832 + ], + [ + "▁shroud", + -13.800607681274414 + ], + [ + "▁об", + -13.800642967224121 + ], + [ + "boyfriend", + -13.800741195678711 + ], + [ + "▁milder", + -13.80074405670166 + ], + [ + "uration", + -13.800745010375977 + ], + [ + "▁intranet", + -13.800841331481934 + ], + [ + "downs", + -13.800843238830566 + ], + [ + "▁1837", + -13.800862312316895 + ], + [ + "tuning", + -13.800883293151855 + ], + [ + "▁Dao", + -13.800890922546387 + ], + [ + "▁Shifting", + -13.800909042358398 + ], + [ + "▁veranda", + -13.801010131835938 + ], + [ + "▁Baa", + -13.801040649414062 + ], + [ + "▁mistrust", + -13.801063537597656 + ], + [ + "▁weighting", + -13.801071166992188 + ], + [ + "▁kinder", + -13.80112361907959 + ], + [ + "▁Sexy", + -13.8011474609375 + ], + [ + "▁anchoring", + -13.801153182983398 + ], + [ + "Tra", + -13.801177978515625 + ], + [ + "子", + -13.801202774047852 + ], + [ + "▁OPS", + -13.801251411437988 + ], + [ + "▁emigrated", + -13.801255226135254 + ], + [ + "▁3⁄4", + -13.80129623413086 + ], + [ + "▁drinker", + -13.801302909851074 + ], + [ + "▁Sermon", + -13.801304817199707 + ], + [ + "リ", + -13.801309585571289 + ], + [ + "▁Sheppard", + -13.801360130310059 + ], + [ + "▁outfield", + -13.801387786865234 + ], + [ + "▁Sevilla", + -13.801486015319824 + ], + [ + "▁PROVIDED", + -13.801491737365723 + ], + [ + "▁Enfield", + -13.801525115966797 + ], + [ + "▁amenity", + -13.801592826843262 + ], + [ + "amen", + -13.801605224609375 + ], + [ + "Ever", + -13.801617622375488 + ], + [ + "▁pyramids", + -13.80162525177002 + ], + [ + "▁phoenix", + -13.801633834838867 + ], + [ + "▁retreived", + -13.801666259765625 + ], + [ + "received", + -13.801701545715332 + ], + [ + "▁favoring", + -13.801787376403809 + ], + [ + "▁SSI", + -13.801912307739258 + ], + [ + "▁Lakeside", + -13.80192756652832 + ], + [ + "Pierre", + -13.801950454711914 + ], + [ + "▁loci", + -13.801958084106445 + ], + [ + "▁quantification", + -13.801959991455078 + ], + [ + "Pick", + -13.80197525024414 + ], + [ + "engineered", + -13.801976203918457 + ], + [ + "▁Header", + -13.802031517028809 + ], + [ + "shadow", + -13.802058219909668 + ], + [ + "▁nh", + -13.802116394042969 + ], + [ + "▁metaphorical", + -13.802135467529297 + ], + [ + "▁chaplain", + -13.802149772644043 + ], + [ + "▁vit", + -13.802181243896484 + ], + [ + "▁chisel", + -13.802186965942383 + ], + [ + "▁Poke", + -13.80224323272705 + ], + [ + "▁ventilated", + -13.80228042602539 + ], + [ + "▁undervalued", + -13.80229663848877 + ], + [ + "▁Alternatives", + -13.802358627319336 + ], + [ + "Fat", + -13.802389144897461 + ], + [ + "input", + -13.802398681640625 + ], + [ + "Front", + -13.802456855773926 + ], + [ + "▁Telegram", + -13.802467346191406 + ], + [ + "▁Elders", + -13.802536964416504 + ], + [ + "iating", + -13.8025541305542 + ], + [ + "▁hydrocarbons", + -13.80257511138916 + ], + [ + "▁embossing", + -13.802587509155273 + ], + [ + "433", + -13.802591323852539 + ], + [ + "585", + -13.802597999572754 + ], + [ + "▁detach", + -13.802725791931152 + ], + [ + "▁Buena", + -13.80276107788086 + ], + [ + "▁Jazeera", + -13.8027925491333 + ], + [ + "▁constable", + -13.802794456481934 + ], + [ + "▁moulded", + -13.80281925201416 + ], + [ + "▁Illusion", + -13.802821159362793 + ], + [ + "▁Fairbanks", + -13.802867889404297 + ], + [ + "▁YO", + -13.802910804748535 + ], + [ + "▁273", + -13.802974700927734 + ], + [ + "FORD", + -13.802976608276367 + ], + [ + "▁abort", + -13.803016662597656 + ], + [ + "то", + -13.803081512451172 + ], + [ + "466", + -13.803095817565918 + ], + [ + "▁sneeze", + -13.80311107635498 + ], + [ + "▁yolks", + -13.803218841552734 + ], + [ + "▁republished", + -13.80323314666748 + ], + [ + "▁299", + -13.803271293640137 + ], + [ + "▁Thorne", + -13.803365707397461 + ], + [ + "onics", + -13.80337142944336 + ], + [ + "▁tropes", + -13.80342960357666 + ], + [ + "▁airways", + -13.803431510925293 + ], + [ + "▁sulphur", + -13.803438186645508 + ], + [ + "▁joystick", + -13.803454399108887 + ], + [ + "▁Sib", + -13.803458213806152 + ], + [ + "dri", + -13.803473472595215 + ], + [ + "▁Mysteries", + -13.803502082824707 + ], + [ + "Working", + -13.803567886352539 + ], + [ + "▁Endurance", + -13.803638458251953 + ], + [ + "▁Hus", + -13.803661346435547 + ], + [ + "Ring", + -13.803703308105469 + ], + [ + "Department", + -13.803775787353516 + ], + [ + "Private", + -13.803776741027832 + ], + [ + "▁Cock", + -13.803786277770996 + ], + [ + "▁supremacist", + -13.803831100463867 + ], + [ + "owicz", + -13.8038911819458 + ], + [ + "▁chickpeas", + -13.80393123626709 + ], + [ + "▁Allie", + -13.803950309753418 + ], + [ + "▁barrister", + -13.803982734680176 + ], + [ + "▁Resistant", + -13.803983688354492 + ], + [ + "▁liqueur", + -13.80400562286377 + ], + [ + "Diamond", + -13.804075241088867 + ], + [ + "▁SCR", + -13.804084777832031 + ], + [ + "▁Walla", + -13.8041353225708 + ], + [ + "▁Ln", + -13.804186820983887 + ], + [ + "▁Midwestern", + -13.804187774658203 + ], + [ + "▁Departure", + -13.804237365722656 + ], + [ + "studded", + -13.8042573928833 + ], + [ + "Δ", + -13.804350852966309 + ], + [ + "▁Lukas", + -13.804352760314941 + ], + [ + "responsive", + -13.804361343383789 + ], + [ + "▁Seventy", + -13.80444049835205 + ], + [ + "GPS", + -13.804442405700684 + ], + [ + "erry", + -13.804473876953125 + ], + [ + "▁unprotected", + -13.80451774597168 + ], + [ + "▁disbanded", + -13.804553985595703 + ], + [ + "▁sculpting", + -13.804557800292969 + ], + [ + "▁Thief", + -13.8046236038208 + ], + [ + "▁homophobic", + -13.804645538330078 + ], + [ + "▁preside", + -13.804672241210938 + ], + [ + "▁Synod", + -13.804699897766113 + ], + [ + "▁transducer", + -13.804716110229492 + ], + [ + "▁warts", + -13.804742813110352 + ], + [ + "idium", + -13.80477237701416 + ], + [ + "colon", + -13.804773330688477 + ], + [ + "▁dialects", + -13.804777145385742 + ], + [ + "▁Optic", + -13.804816246032715 + ], + [ + "▁excitedly", + -13.804841041564941 + ], + [ + "▁CENTER", + -13.804858207702637 + ], + [ + "▁luxuries", + -13.804938316345215 + ], + [ + "dition", + -13.804961204528809 + ], + [ + "▁sv", + -13.805027961730957 + ], + [ + "▁Delaney", + -13.80511474609375 + ], + [ + "▁gutted", + -13.805160522460938 + ], + [ + "twin", + -13.805205345153809 + ], + [ + "rane", + -13.805254936218262 + ], + [ + "▁Yama", + -13.805301666259766 + ], + [ + "▁contradicts", + -13.805318832397461 + ], + [ + "guchi", + -13.80533504486084 + ], + [ + "▁Californian", + -13.805384635925293 + ], + [ + "zes", + -13.805391311645508 + ], + [ + "cont", + -13.805427551269531 + ], + [ + "faceted", + -13.80544376373291 + ], + [ + "▁luster", + -13.805477142333984 + ], + [ + "▁Demonstration", + -13.805505752563477 + ], + [ + "▁wept", + -13.805512428283691 + ], + [ + "▁Schuster", + -13.805644035339355 + ], + [ + "▁ה", + -13.805644035339355 + ], + [ + "▁Bland", + -13.805662155151367 + ], + [ + "▁Temperatures", + -13.805665969848633 + ], + [ + "▁uncontrollable", + -13.805668830871582 + ], + [ + "magazine", + -13.805678367614746 + ], + [ + "▁Vibration", + -13.805686950683594 + ], + [ + "Song", + -13.80574893951416 + ], + [ + "▁bran", + -13.805780410766602 + ], + [ + "▁parser", + -13.805780410766602 + ], + [ + "DON", + -13.80579662322998 + ], + [ + "trading", + -13.805831909179688 + ], + [ + "Despite", + -13.805834770202637 + ], + [ + "▁Mennonite", + -13.805898666381836 + ], + [ + "▁exalted", + -13.806050300598145 + ], + [ + "▁Reproduction", + -13.80606460571289 + ], + [ + "▁patties", + -13.806069374084473 + ], + [ + "DIA", + -13.806118965148926 + ], + [ + "▁capitol", + -13.80618953704834 + ], + [ + "▁Seychelles", + -13.806238174438477 + ], + [ + "▁excruciating", + -13.806262016296387 + ], + [ + "▁designations", + -13.80626392364502 + ], + [ + "▁Executives", + -13.806305885314941 + ], + [ + "▁untapped", + -13.806344032287598 + ], + [ + "▁1280", + -13.80636215209961 + ], + [ + "▁giggling", + -13.806370735168457 + ], + [ + "museum", + -13.806422233581543 + ], + [ + "▁Complimentary", + -13.806449890136719 + ], + [ + "▁Hove", + -13.806458473205566 + ], + [ + "▁backseat", + -13.806496620178223 + ], + [ + "▁pavers", + -13.806537628173828 + ], + [ + "mati", + -13.806563377380371 + ], + [ + "▁Darby", + -13.806564331054688 + ], + [ + "▁Danube", + -13.80659008026123 + ], + [ + "▁Wand", + -13.806615829467773 + ], + [ + "▁CIT", + -13.806648254394531 + ], + [ + "▁epigenetic", + -13.806676864624023 + ], + [ + "▁ANYTHING", + -13.806710243225098 + ], + [ + "▁Welt", + -13.806729316711426 + ], + [ + "tama", + -13.806730270385742 + ], + [ + "understand", + -13.806851387023926 + ], + [ + "▁willpower", + -13.806882858276367 + ], + [ + "▁emo", + -13.806921005249023 + ], + [ + "▁craziness", + -13.806934356689453 + ], + [ + "Mix", + -13.806978225708008 + ], + [ + "▁SWAT", + -13.807004928588867 + ], + [ + "1007", + -13.807165145874023 + ], + [ + "▁1841", + -13.807174682617188 + ], + [ + "ACH", + -13.80720043182373 + ], + [ + "▁MIC", + -13.807217597961426 + ], + [ + "▁diseased", + -13.8072509765625 + ], + [ + "▁unwell", + -13.807255744934082 + ], + [ + "▁tinkering", + -13.807262420654297 + ], + [ + "isto", + -13.807294845581055 + ], + [ + "sink", + -13.807355880737305 + ], + [ + "▁258", + -13.807384490966797 + ], + [ + "weg", + -13.807394027709961 + ], + [ + "▁ohio", + -13.807476997375488 + ], + [ + "▁ohne", + -13.807515144348145 + ], + [ + "▁Doherty", + -13.807528495788574 + ], + [ + "549", + -13.807562828063965 + ], + [ + "▁damper", + -13.807571411132812 + ], + [ + "▁Flanagan", + -13.807573318481445 + ], + [ + "wright", + -13.807760238647461 + ], + [ + "▁heartburn", + -13.807761192321777 + ], + [ + "▁filth", + -13.807859420776367 + ], + [ + "8000", + -13.807861328125 + ], + [ + "▁exchanger", + -13.80788803100586 + ], + [ + "▁despised", + -13.807969093322754 + ], + [ + "▁recovers", + -13.80799388885498 + ], + [ + "chlor", + -13.808009147644043 + ], + [ + "▁Pyr", + -13.808159828186035 + ], + [ + "knee", + -13.808160781860352 + ], + [ + "▁unequivocally", + -13.80820369720459 + ], + [ + "▁imprinted", + -13.808267593383789 + ], + [ + "▁Gingrich", + -13.808274269104004 + ], + [ + "▁inactivity", + -13.808345794677734 + ], + [ + "▁antiviral", + -13.808371543884277 + ], + [ + "▁Trish", + -13.8084135055542 + ], + [ + "▁Pistons", + -13.808441162109375 + ], + [ + "▁Reviewed", + -13.808464050292969 + ], + [ + "cry", + -13.808492660522461 + ], + [ + "UCK", + -13.808639526367188 + ], + [ + "▁Kirkland", + -13.808664321899414 + ], + [ + "lom", + -13.80867862701416 + ], + [ + "agen", + -13.808714866638184 + ], + [ + "ór", + -13.808740615844727 + ], + [ + "▁infotainment", + -13.80880069732666 + ], + [ + "▁fugitive", + -13.808843612670898 + ], + [ + "▁campsites", + -13.808869361877441 + ], + [ + "▁jest", + -13.808988571166992 + ], + [ + "▁ErrorDocument", + -13.809032440185547 + ], + [ + "▁instilled", + -13.809041023254395 + ], + [ + "372", + -13.80904483795166 + ], + [ + "▁glorify", + -13.80904769897461 + ], + [ + "▁из", + -13.809052467346191 + ], + [ + "▁Loren", + -13.809165954589844 + ], + [ + "▁hammering", + -13.809196472167969 + ], + [ + "Reading", + -13.80921459197998 + ], + [ + "▁Compassion", + -13.809215545654297 + ], + [ + "स", + -13.809234619140625 + ], + [ + "▁riddled", + -13.80929183959961 + ], + [ + "▁Ira", + -13.809361457824707 + ], + [ + "GIS", + -13.80936336517334 + ], + [ + "▁vegetarians", + -13.809378623962402 + ], + [ + "▁Tongue", + -13.809406280517578 + ], + [ + "▁unmet", + -13.809450149536133 + ], + [ + "▁Calder", + -13.809515953063965 + ], + [ + "import", + -13.809551239013672 + ], + [ + "▁Poets", + -13.809619903564453 + ], + [ + "▁Karin", + -13.809669494628906 + ], + [ + "▁Mab", + -13.809680938720703 + ], + [ + "Tr", + -13.809734344482422 + ], + [ + "ICC", + -13.809744834899902 + ], + [ + "ILE", + -13.809755325317383 + ], + [ + "▁Brunch", + -13.809773445129395 + ], + [ + "▁Bender", + -13.809807777404785 + ], + [ + "▁Massacre", + -13.809849739074707 + ], + [ + "deen", + -13.80985164642334 + ], + [ + "Charles", + -13.809869766235352 + ], + [ + "▁vinaigrette", + -13.80989933013916 + ], + [ + "might", + -13.809903144836426 + ], + [ + "▁radiance", + -13.809988975524902 + ], + [ + "382", + -13.810063362121582 + ], + [ + "surgery", + -13.810111045837402 + ], + [ + "▁Chipotle", + -13.8101224899292 + ], + [ + "▁Increases", + -13.810123443603516 + ], + [ + "▁Psy", + -13.810219764709473 + ], + [ + "▁SCC", + -13.81022834777832 + ], + [ + "▁synaptic", + -13.8102445602417 + ], + [ + "▁Hooper", + -13.810247421264648 + ], + [ + "▁cadets", + -13.81025218963623 + ], + [ + "iques", + -13.810395240783691 + ], + [ + "reason", + -13.810397148132324 + ], + [ + "▁Nye", + -13.810413360595703 + ], + [ + "fare", + -13.810457229614258 + ], + [ + "▁african", + -13.810468673706055 + ], + [ + "▁constrain", + -13.810473442077637 + ], + [ + "▁Kaspersky", + -13.81049633026123 + ], + [ + "▁Shelves", + -13.810524940490723 + ], + [ + "▁coexist", + -13.81056022644043 + ], + [ + "▁Unemployment", + -13.810647010803223 + ], + [ + "▁OO", + -13.810653686523438 + ], + [ + "breed", + -13.810667037963867 + ], + [ + "▁rhubarb", + -13.810678482055664 + ], + [ + "ogram", + -13.810687065124512 + ], + [ + "▁Paxton", + -13.810697555541992 + ], + [ + "▁Cran", + -13.810744285583496 + ], + [ + "▁strainer", + -13.810757637023926 + ], + [ + "▁clowns", + -13.810789108276367 + ], + [ + "▁Inca", + -13.810927391052246 + ], + [ + "ombo", + -13.810954093933105 + ], + [ + "▁Ismail", + -13.811036109924316 + ], + [ + "Government", + -13.81103801727295 + ], + [ + "▁plummeted", + -13.811047554016113 + ], + [ + "▁psychosocial", + -13.811071395874023 + ], + [ + "▁healthful", + -13.811073303222656 + ], + [ + "▁outlandish", + -13.811075210571289 + ], + [ + "▁salvaged", + -13.811100959777832 + ], + [ + "▁rigor", + -13.811164855957031 + ], + [ + "▁helpline", + -13.811270713806152 + ], + [ + "▁ranchers", + -13.811280250549316 + ], + [ + "BOX", + -13.811284065246582 + ], + [ + "▁Adventist", + -13.811333656311035 + ], + [ + "▁EVO", + -13.811369895935059 + ], + [ + "▁Rahm", + -13.811373710632324 + ], + [ + "▁thicken", + -13.81139087677002 + ], + [ + "▁maneuvering", + -13.811392784118652 + ], + [ + "▁Staffing", + -13.811427116394043 + ], + [ + "▁ghostly", + -13.81145191192627 + ], + [ + "▁autobiographical", + -13.811470985412598 + ], + [ + "▁Owls", + -13.811545372009277 + ], + [ + "Spanish", + -13.811548233032227 + ], + [ + "Engine", + -13.811566352844238 + ], + [ + "▁Kaye", + -13.811599731445312 + ], + [ + "▁affectionately", + -13.811625480651855 + ], + [ + "▁Benghazi", + -13.811628341674805 + ], + [ + "itu", + -13.811631202697754 + ], + [ + "▁Natal", + -13.811634063720703 + ], + [ + "▁ode", + -13.811652183532715 + ], + [ + "▁femininity", + -13.811701774597168 + ], + [ + "Android", + -13.811742782592773 + ], + [ + "▁AHL", + -13.811772346496582 + ], + [ + "▁Hashem", + -13.811789512634277 + ], + [ + "▁moths", + -13.8118257522583 + ], + [ + "▁methanol", + -13.811858177185059 + ], + [ + "▁dashing", + -13.811863899230957 + ], + [ + "443", + -13.811907768249512 + ], + [ + "▁HPE", + -13.811907768249512 + ], + [ + "▁recur", + -13.811918258666992 + ], + [ + "▁Brunei", + -13.811931610107422 + ], + [ + "▁motorhome", + -13.811942100524902 + ], + [ + "wari", + -13.811976432800293 + ], + [ + "▁callous", + -13.81200885772705 + ], + [ + "▁stinging", + -13.812020301818848 + ], + [ + "त", + -13.812032699584961 + ], + [ + "▁Dara", + -13.812082290649414 + ], + [ + "▁venting", + -13.812104225158691 + ], + [ + "▁FFA", + -13.812115669250488 + ], + [ + "ipe", + -13.812126159667969 + ], + [ + "▁Vishnu", + -13.812156677246094 + ], + [ + "▁Wreck", + -13.812220573425293 + ], + [ + "Jean", + -13.812307357788086 + ], + [ + "▁pedicure", + -13.812315940856934 + ], + [ + "▁spar", + -13.81232738494873 + ], + [ + "▁Inlet", + -13.812405586242676 + ], + [ + "▁Politicians", + -13.812410354614258 + ], + [ + "▁harnessing", + -13.812416076660156 + ], + [ + "▁proc", + -13.8124418258667 + ], + [ + "▁observatory", + -13.812519073486328 + ], + [ + "▁Mull", + -13.812546730041504 + ], + [ + "Sales", + -13.81257438659668 + ], + [ + "▁Heels", + -13.81257438659668 + ], + [ + "▁Kool", + -13.812576293945312 + ], + [ + "▁landings", + -13.812602043151855 + ], + [ + "▁Academies", + -13.812649726867676 + ], + [ + "ished", + -13.812698364257812 + ], + [ + "▁meager", + -13.812702178955078 + ], + [ + "▁shrewd", + -13.812795639038086 + ], + [ + "quo", + -13.812800407409668 + ], + [ + "▁nitric", + -13.812803268432617 + ], + [ + "▁Tart", + -13.81283950805664 + ], + [ + "▁Ordering", + -13.81286334991455 + ], + [ + "▁birding", + -13.812888145446777 + ], + [ + "▁flake", + -13.812896728515625 + ], + [ + "▁Candles", + -13.81291389465332 + ], + [ + "▁empires", + -13.812933921813965 + ], + [ + "deductible", + -13.812950134277344 + ], + [ + "▁Б", + -13.812954902648926 + ], + [ + "▁fuzz", + -13.813044548034668 + ], + [ + "▁Willem", + -13.813078880310059 + ], + [ + "ento", + -13.813142776489258 + ], + [ + "▁JF", + -13.813200950622559 + ], + [ + "grow", + -13.813275337219238 + ], + [ + "▁Weld", + -13.813389778137207 + ], + [ + "▁lat", + -13.813460350036621 + ], + [ + "▁kilometre", + -13.81355094909668 + ], + [ + "umming", + -13.813570976257324 + ], + [ + "▁Hogwarts", + -13.813589096069336 + ], + [ + "▁unrelenting", + -13.81360912322998 + ], + [ + "▁Dou", + -13.813611030578613 + ], + [ + "го", + -13.813680648803711 + ], + [ + "▁SUPPORT", + -13.813764572143555 + ], + [ + "ен", + -13.813849449157715 + ], + [ + "ivist", + -13.813899993896484 + ], + [ + "▁Mongolian", + -13.813926696777344 + ], + [ + "Wise", + -13.813933372497559 + ], + [ + "▁Scrabble", + -13.813963890075684 + ], + [ + "▁Satya", + -13.814045906066895 + ], + [ + "lime", + -13.814131736755371 + ], + [ + "▁symmetric", + -13.814170837402344 + ], + [ + "tops", + -13.814175605773926 + ], + [ + "▁snails", + -13.814216613769531 + ], + [ + "▁Airtel", + -13.81423568725586 + ], + [ + "▁Croydon", + -13.814244270324707 + ], + [ + "▁Archdiocese", + -13.81425666809082 + ], + [ + "▁Vettel", + -13.814268112182617 + ], + [ + "endorf", + -13.814285278320312 + ], + [ + "▁Muni", + -13.81430435180664 + ], + [ + "▁Sentence", + -13.814309120178223 + ], + [ + "▁Arrangements", + -13.814315795898438 + ], + [ + "▁Destruction", + -13.814393043518066 + ], + [ + "▁Concern", + -13.814407348632812 + ], + [ + "▁Maga", + -13.814419746398926 + ], + [ + "Alice", + -13.814432144165039 + ], + [ + "▁longed", + -13.814449310302734 + ], + [ + "▁Assigned", + -13.814480781555176 + ], + [ + "▁Carrying", + -13.814552307128906 + ], + [ + "Saxon", + -13.81462287902832 + ], + [ + "▁seawater", + -13.814691543579102 + ], + [ + "▁gra", + -13.814711570739746 + ], + [ + "▁unrivaled", + -13.814717292785645 + ], + [ + "▁mur", + -13.814723014831543 + ], + [ + "▁Poul", + -13.81479549407959 + ], + [ + "Sept", + -13.814860343933105 + ], + [ + "▁337", + -13.814866065979004 + ], + [ + "mori", + -13.814894676208496 + ], + [ + "▁TABLE", + -13.814980506896973 + ], + [ + "▁reopening", + -13.815021514892578 + ], + [ + "▁spe", + -13.815071105957031 + ], + [ + "▁Michaels", + -13.815080642700195 + ], + [ + "leb", + -13.81511116027832 + ], + [ + "▁Gospels", + -13.815123558044434 + ], + [ + "ි", + -13.815237998962402 + ], + [ + "▁Spaniard", + -13.81524658203125 + ], + [ + "▁clunky", + -13.81528377532959 + ], + [ + "▁Checker", + -13.815342903137207 + ], + [ + "▁dispensed", + -13.815352439880371 + ], + [ + "▁Mang", + -13.81546401977539 + ], + [ + "▁cipher", + -13.81546688079834 + ], + [ + "▁WJ", + -13.815486907958984 + ], + [ + "▁reviving", + -13.8154935836792 + ], + [ + "479", + -13.815512657165527 + ], + [ + "▁perceptual", + -13.815516471862793 + ], + [ + "uke", + -13.815519332885742 + ], + [ + "versa", + -13.815567970275879 + ], + [ + "▁hereafter", + -13.815580368041992 + ], + [ + "▁clove", + -13.81561279296875 + ], + [ + "amu", + -13.81562328338623 + ], + [ + "featured", + -13.815735816955566 + ], + [ + "Deep", + -13.815768241882324 + ], + [ + "couple", + -13.815789222717285 + ], + [ + "▁WERE", + -13.815999984741211 + ], + [ + "▁progressives", + -13.816065788269043 + ], + [ + "idine", + -13.816083908081055 + ], + [ + "▁airstrikes", + -13.81609058380127 + ], + [ + "▁rationality", + -13.816125869750977 + ], + [ + "▁Vendors", + -13.816156387329102 + ], + [ + "▁unpacking", + -13.816174507141113 + ], + [ + "▁seasonings", + -13.816210746765137 + ], + [ + "▁solidified", + -13.816244125366211 + ], + [ + "▁teaspoons", + -13.816247940063477 + ], + [ + "▁Dynamo", + -13.816286087036133 + ], + [ + "▁Towel", + -13.816289901733398 + ], + [ + "abol", + -13.816317558288574 + ], + [ + "Ken", + -13.816320419311523 + ], + [ + "▁dur", + -13.816320419311523 + ], + [ + "▁Lak", + -13.816330909729004 + ], + [ + "stories", + -13.81638240814209 + ], + [ + "▁sms", + -13.81640911102295 + ], + [ + "uko", + -13.816536903381348 + ], + [ + "▁Towns", + -13.816545486450195 + ], + [ + "▁spoonful", + -13.816558837890625 + ], + [ + "▁Middletown", + -13.816591262817383 + ], + [ + "▁Hamid", + -13.816603660583496 + ], + [ + "▁Dul", + -13.816614151000977 + ], + [ + "supply", + -13.816652297973633 + ], + [ + "oom", + -13.816779136657715 + ], + [ + "▁ek", + -13.816779136657715 + ], + [ + "▁laughable", + -13.816792488098145 + ], + [ + "▁Organize", + -13.816818237304688 + ], + [ + "シ", + -13.81688404083252 + ], + [ + "▁Shooter", + -13.81692886352539 + ], + [ + "▁unqualified", + -13.816937446594238 + ], + [ + "poo", + -13.816990852355957 + ], + [ + "fear", + -13.816997528076172 + ], + [ + "MRI", + -13.817023277282715 + ], + [ + "▁Musicians", + -13.817034721374512 + ], + [ + "▁FRONT", + -13.81707763671875 + ], + [ + "▁injectable", + -13.817108154296875 + ], + [ + "▁fetched", + -13.817157745361328 + ], + [ + "▁Giro", + -13.817330360412598 + ], + [ + "▁CSP", + -13.817351341247559 + ], + [ + "▁loaves", + -13.817361831665039 + ], + [ + "▁gestation", + -13.817442893981934 + ], + [ + "▁diffraction", + -13.817449569702148 + ], + [ + "▁geriatric", + -13.817456245422363 + ], + [ + "▁concoction", + -13.817462921142578 + ], + [ + "▁McKee", + -13.817501068115234 + ], + [ + "▁semblance", + -13.817533493041992 + ], + [ + "▁Ports", + -13.8175687789917 + ], + [ + "KP", + -13.817581176757812 + ], + [ + "▁bask", + -13.817618370056152 + ], + [ + "▁illiterate", + -13.817621231079102 + ], + [ + "▁Gianni", + -13.817626953125 + ], + [ + "▁heats", + -13.817697525024414 + ], + [ + "▁babes", + -13.817718505859375 + ], + [ + "▁DMC", + -13.817730903625488 + ], + [ + "▁hostilities", + -13.817733764648438 + ], + [ + "▁florists", + -13.817747116088867 + ], + [ + "▁dodging", + -13.81779956817627 + ], + [ + "▁octave", + -13.817801475524902 + ], + [ + "▁lizards", + -13.817852973937988 + ], + [ + "▁artisanal", + -13.817864418029785 + ], + [ + "▁cruisers", + -13.81786823272705 + ], + [ + "▁Corporations", + -13.81796646118164 + ], + [ + "▁annexation", + -13.81804084777832 + ], + [ + "▁Acosta", + -13.818084716796875 + ], + [ + "▁Validation", + -13.818108558654785 + ], + [ + "▁Edna", + -13.818202018737793 + ], + [ + "▁expend", + -13.818263053894043 + ], + [ + "ного", + -13.81826400756836 + ], + [ + "▁pip", + -13.818276405334473 + ], + [ + "powerful", + -13.818374633789062 + ], + [ + "▁1852", + -13.818378448486328 + ], + [ + "▁Gretchen", + -13.81838607788086 + ], + [ + "▁Gladstone", + -13.818415641784668 + ], + [ + "▁mow", + -13.818474769592285 + ], + [ + "gest", + -13.818498611450195 + ], + [ + "▁ferries", + -13.818550109863281 + ], + [ + "▁Drummond", + -13.818613052368164 + ], + [ + "▁solenoid", + -13.818614959716797 + ], + [ + "▁Ubisoft", + -13.818653106689453 + ], + [ + "▁bale", + -13.818719863891602 + ], + [ + "▁resiliency", + -13.818719863891602 + ], + [ + "respond", + -13.81877613067627 + ], + [ + "▁clump", + -13.818838119506836 + ], + [ + "▁vial", + -13.818852424621582 + ], + [ + "▁Implant", + -13.818854331970215 + ], + [ + "▁Queer", + -13.818909645080566 + ], + [ + "ACS", + -13.818912506103516 + ], + [ + "▁Sag", + -13.818952560424805 + ], + [ + "▁Compression", + -13.818998336791992 + ], + [ + "▁2200", + -13.819049835205078 + ], + [ + "aaS", + -13.81906509399414 + ], + [ + "▁briefcase", + -13.81908130645752 + ], + [ + "▁retailing", + -13.819140434265137 + ], + [ + "477", + -13.81918716430664 + ], + [ + "747", + -13.819191932678223 + ], + [ + "bility", + -13.819210052490234 + ], + [ + "▁astray", + -13.819225311279297 + ], + [ + "▁Gia", + -13.819262504577637 + ], + [ + "▁Culver", + -13.819278717041016 + ], + [ + "listen", + -13.819279670715332 + ], + [ + "vier", + -13.819292068481445 + ], + [ + "504", + -13.819310188293457 + ], + [ + "▁525", + -13.819320678710938 + ], + [ + "loader", + -13.819368362426758 + ], + [ + "putting", + -13.819412231445312 + ], + [ + "▁Vibe", + -13.819433212280273 + ], + [ + "▁STREET", + -13.819441795349121 + ], + [ + "515", + -13.819491386413574 + ], + [ + "▁BTS", + -13.819500923156738 + ], + [ + "lain", + -13.819512367248535 + ], + [ + "▁initiates", + -13.81953239440918 + ], + [ + "chill", + -13.819595336914062 + ], + [ + "393", + -13.819621086120605 + ], + [ + "▁á", + -13.81963062286377 + ], + [ + "onian", + -13.81964111328125 + ], + [ + "▁Stealth", + -13.819684028625488 + ], + [ + "▁unscrupulous", + -13.819708824157715 + ], + [ + "▁Cote", + -13.819720268249512 + ], + [ + "▁vehemently", + -13.819792747497559 + ], + [ + "ents", + -13.819818496704102 + ], + [ + "▁Tasmanian", + -13.819840431213379 + ], + [ + "TAR", + -13.819926261901855 + ], + [ + "486", + -13.819937705993652 + ], + [ + "Hope", + -13.819940567016602 + ], + [ + "Message", + -13.820024490356445 + ], + [ + "▁wok", + -13.820134162902832 + ], + [ + "kum", + -13.82016658782959 + ], + [ + "▁Remind", + -13.820168495178223 + ], + [ + "▁Domingo", + -13.820186614990234 + ], + [ + "▁contraceptive", + -13.82019329071045 + ], + [ + "▁Millie", + -13.820218086242676 + ], + [ + "▁Nell", + -13.820329666137695 + ], + [ + "▁freebie", + -13.820372581481934 + ], + [ + "Italian", + -13.820438385009766 + ], + [ + "▁howling", + -13.820451736450195 + ], + [ + "▁до", + -13.820508003234863 + ], + [ + "▁Inspirations", + -13.820538520812988 + ], + [ + "▁spasms", + -13.820566177368164 + ], + [ + "▁bogged", + -13.820584297180176 + ], + [ + "▁Kepler", + -13.820603370666504 + ], + [ + "▁Encore", + -13.820610046386719 + ], + [ + "▁Bootstrap", + -13.82062816619873 + ], + [ + "▁Und", + -13.820638656616211 + ], + [ + "▁Expressway", + -13.820686340332031 + ], + [ + "▁Qian", + -13.820708274841309 + ], + [ + "▁imperialist", + -13.820708274841309 + ], + [ + "▁Grizzlies", + -13.820804595947266 + ], + [ + "▁temptations", + -13.82081413269043 + ], + [ + "▁broadest", + -13.820815086364746 + ], + [ + "▁Frequent", + -13.820856094360352 + ], + [ + "▁Druid", + -13.820860862731934 + ], + [ + "▁SOFTWARE", + -13.820881843566895 + ], + [ + "▁Aj", + -13.820966720581055 + ], + [ + "文", + -13.82100772857666 + ], + [ + "▁crux", + -13.821043968200684 + ], + [ + "▁Trades", + -13.821066856384277 + ], + [ + "▁Amazingly", + -13.821125030517578 + ], + [ + "▁Dab", + -13.821141242980957 + ], + [ + "▁Limousine", + -13.821200370788574 + ], + [ + "▁Astrology", + -13.821253776550293 + ], + [ + "▁Importance", + -13.821305274963379 + ], + [ + "▁surety", + -13.821307182312012 + ], + [ + "▁lunatic", + -13.821324348449707 + ], + [ + "spoken", + -13.821337699890137 + ], + [ + "Ali", + -13.82138442993164 + ], + [ + "Return", + -13.821407318115234 + ], + [ + "▁chow", + -13.82141399383545 + ], + [ + "ù", + -13.821470260620117 + ], + [ + "astic", + -13.821513175964355 + ], + [ + "▁Racial", + -13.821525573730469 + ], + [ + "▁Kettle", + -13.821526527404785 + ], + [ + "▁wikipedia", + -13.821548461914062 + ], + [ + "cooled", + -13.82155704498291 + ], + [ + "▁discipleship", + -13.821590423583984 + ], + [ + "▁DSS", + -13.821625709533691 + ], + [ + "bei", + -13.8216552734375 + ], + [ + "▁Zeit", + -13.821682929992676 + ], + [ + "▁Amenities", + -13.821718215942383 + ], + [ + "▁france", + -13.821866035461426 + ], + [ + "▁impossibility", + -13.821980476379395 + ], + [ + "▁suicides", + -13.82199478149414 + ], + [ + "▁Gigi", + -13.82201862335205 + ], + [ + "▁velvety", + -13.822036743164062 + ], + [ + "▁orbiting", + -13.822062492370605 + ], + [ + "▁Cris", + -13.822098731994629 + ], + [ + "Spot", + -13.822199821472168 + ], + [ + "▁Amb", + -13.822235107421875 + ], + [ + "▁Velocity", + -13.822244644165039 + ], + [ + "▁Texan", + -13.822245597839355 + ], + [ + "sheets", + -13.82227611541748 + ], + [ + "▁Partition", + -13.822278022766113 + ], + [ + "▁reborn", + -13.82227897644043 + ], + [ + "productive", + -13.822288513183594 + ], + [ + "▁Apologies", + -13.822294235229492 + ], + [ + "▁subtraction", + -13.82233715057373 + ], + [ + "▁cloned", + -13.822376251220703 + ], + [ + "830", + -13.822392463684082 + ], + [ + "▁superpower", + -13.82239818572998 + ], + [ + "▁Armani", + -13.822481155395508 + ], + [ + "▁dispensaries", + -13.822508811950684 + ], + [ + "▁filesystem", + -13.82253360748291 + ], + [ + "division", + -13.822537422180176 + ], + [ + "▁1847", + -13.822607040405273 + ], + [ + "▁Astra", + -13.8226318359375 + ], + [ + "▁Photographers", + -13.822720527648926 + ], + [ + "URE", + -13.822757720947266 + ], + [ + "▁nutritionist", + -13.822785377502441 + ], + [ + "▁Mediation", + -13.822813987731934 + ], + [ + "▁defrost", + -13.822813987731934 + ], + [ + "exit", + -13.82281494140625 + ], + [ + "▁anecdote", + -13.822834014892578 + ], + [ + "JU", + -13.822844505310059 + ], + [ + "▁Clips", + -13.822872161865234 + ], + [ + "▁tattooed", + -13.822882652282715 + ], + [ + "▁IAS", + -13.822908401489258 + ], + [ + "▁Counting", + -13.82295036315918 + ], + [ + "▁está", + -13.823043823242188 + ], + [ + "014", + -13.823090553283691 + ], + [ + "▁pong", + -13.823107719421387 + ], + [ + "▁Livestock", + -13.823124885559082 + ], + [ + "▁Pavel", + -13.823132514953613 + ], + [ + "NBC", + -13.823161125183105 + ], + [ + "▁nonexistent", + -13.823188781738281 + ], + [ + "▁euthanasia", + -13.823190689086914 + ], + [ + "▁cyberspace", + -13.823212623596191 + ], + [ + "▁cannons", + -13.823315620422363 + ], + [ + "▁Scary", + -13.823441505432129 + ], + [ + "▁Romano", + -13.82344913482666 + ], + [ + "▁wildflowers", + -13.823466300964355 + ], + [ + "▁philanthropist", + -13.823531150817871 + ], + [ + "▁TAC", + -13.82356071472168 + ], + [ + "▁coax", + -13.82357120513916 + ], + [ + "ngo", + -13.823619842529297 + ], + [ + "▁Anil", + -13.823633193969727 + ], + [ + "▁Boe", + -13.823692321777344 + ], + [ + "▁Yikes", + -13.823695182800293 + ], + [ + "▁tango", + -13.823744773864746 + ], + [ + "수", + -13.823758125305176 + ], + [ + "tastic", + -13.823806762695312 + ], + [ + "▁Cath", + -13.823868751525879 + ], + [ + "▁mmol", + -13.823904037475586 + ], + [ + "▁Discrimination", + -13.82391357421875 + ], + [ + "▁Diner", + -13.823914527893066 + ], + [ + "finish", + -13.823949813842773 + ], + [ + "▁SHOP", + -13.823963165283203 + ], + [ + "ún", + -13.82398796081543 + ], + [ + "▁fob", + -13.823992729187012 + ], + [ + "▁Neighbors", + -13.824060440063477 + ], + [ + "▁Enjoyed", + -13.824134826660156 + ], + [ + "UND", + -13.824175834655762 + ], + [ + "▁garb", + -13.824178695678711 + ], + [ + "▁embarrass", + -13.82419204711914 + ], + [ + "ALE", + -13.824223518371582 + ], + [ + "thru", + -13.824225425720215 + ], + [ + "▁hardening", + -13.824254989624023 + ], + [ + "▁Costumes", + -13.8242769241333 + ], + [ + "▁Springsteen", + -13.8242826461792 + ], + [ + "▁Liang", + -13.824286460876465 + ], + [ + "▁guesthouse", + -13.824344635009766 + ], + [ + "hri", + -13.824369430541992 + ], + [ + "zeit", + -13.82437801361084 + ], + [ + "419", + -13.824381828308105 + ], + [ + "▁RFP", + -13.82448673248291 + ], + [ + "nock", + -13.824603080749512 + ], + [ + "▁QUESTION", + -13.82483959197998 + ], + [ + "378", + -13.824882507324219 + ], + [ + "†", + -13.82491397857666 + ], + [ + "▁instructs", + -13.824967384338379 + ], + [ + "▁bearded", + -13.825063705444336 + ], + [ + "▁Brentwood", + -13.825064659118652 + ], + [ + "▁concomitant", + -13.825067520141602 + ], + [ + "▁discriminating", + -13.82514476776123 + ], + [ + "▁Appraisal", + -13.825161933898926 + ], + [ + "▁excavations", + -13.825180053710938 + ], + [ + "hash", + -13.825258255004883 + ], + [ + "rpm", + -13.825286865234375 + ], + [ + "▁encased", + -13.82529354095459 + ], + [ + "▁Perfume", + -13.825300216674805 + ], + [ + "agna", + -13.825435638427734 + ], + [ + "lach", + -13.825491905212402 + ], + [ + "shooting", + -13.825492858886719 + ], + [ + "▁curfew", + -13.825516700744629 + ], + [ + "▁dass", + -13.825517654418945 + ], + [ + "izi", + -13.825543403625488 + ], + [ + "mud", + -13.825581550598145 + ], + [ + "▁CYP", + -13.825637817382812 + ], + [ + "▁Buses", + -13.825643539428711 + ], + [ + "sser", + -13.825737953186035 + ], + [ + "▁Discussions", + -13.825807571411133 + ], + [ + "▁actin", + -13.82581615447998 + ], + [ + "▁Donkey", + -13.825819969177246 + ], + [ + "▁Cin", + -13.82592487335205 + ], + [ + "▁lengthen", + -13.825947761535645 + ], + [ + "▁wading", + -13.825952529907227 + ], + [ + "▁injustices", + -13.825963973999023 + ], + [ + "calling", + -13.825976371765137 + ], + [ + "▁merciful", + -13.825992584228516 + ], + [ + "▁Puget", + -13.82611083984375 + ], + [ + "Nation", + -13.826112747192383 + ], + [ + "▁Candida", + -13.826175689697266 + ], + [ + "▁Prev", + -13.826186180114746 + ], + [ + "kali", + -13.826227188110352 + ], + [ + "▁urn", + -13.82633113861084 + ], + [ + "lingual", + -13.826367378234863 + ], + [ + "▁Crate", + -13.82638931274414 + ], + [ + "KC", + -13.826452255249023 + ], + [ + "integrated", + -13.826502799987793 + ], + [ + "Strong", + -13.826528549194336 + ], + [ + "▁Mustangs", + -13.826536178588867 + ], + [ + "▁Hays", + -13.826577186584473 + ], + [ + "▁HSE", + -13.826622009277344 + ], + [ + "▁Boehner", + -13.826665878295898 + ], + [ + "▁Lia", + -13.826669692993164 + ], + [ + "▁Noor", + -13.826689720153809 + ], + [ + "▁IPC", + -13.82680892944336 + ], + [ + "▁potion", + -13.826833724975586 + ], + [ + "▁Robust", + -13.826845169067383 + ], + [ + "foreign", + -13.826892852783203 + ], + [ + "▁Engaging", + -13.826932907104492 + ], + [ + "790", + -13.82693862915039 + ], + [ + "▁Microgaming", + -13.827001571655273 + ], + [ + "▁Tere", + -13.82701301574707 + ], + [ + "▁McDonnell", + -13.827139854431152 + ], + [ + "▁Blanche", + -13.82716178894043 + ], + [ + "▁suspending", + -13.82724666595459 + ], + [ + "telli", + -13.827322006225586 + ], + [ + "WN", + -13.827350616455078 + ], + [ + "GMO", + -13.827397346496582 + ], + [ + "▁Jameson", + -13.827425956726074 + ], + [ + "▁Zane", + -13.827427864074707 + ], + [ + "kept", + -13.827509880065918 + ], + [ + "▁1853", + -13.827534675598145 + ], + [ + "▁Urgent", + -13.827591896057129 + ], + [ + "eep", + -13.827710151672363 + ], + [ + "▁captioned", + -13.827727317810059 + ], + [ + "vez", + -13.827794075012207 + ], + [ + "▁iz", + -13.827851295471191 + ], + [ + "▁FU", + -13.827855110168457 + ], + [ + "▁tinnitus", + -13.82790470123291 + ], + [ + "▁Prefecture", + -13.827927589416504 + ], + [ + "canada", + -13.827970504760742 + ], + [ + "▁shepherds", + -13.827978134155273 + ], + [ + "▁Increasingly", + -13.827986717224121 + ], + [ + "zai", + -13.828021049499512 + ], + [ + "▁distortions", + -13.828069686889648 + ], + [ + "nts", + -13.828070640563965 + ], + [ + "eros", + -13.828084945678711 + ], + [ + "▁WIFI", + -13.828095436096191 + ], + [ + "▁GK", + -13.828123092651367 + ], + [ + "▁Ald", + -13.828186988830566 + ], + [ + "▁268", + -13.828263282775879 + ], + [ + "▁FORM", + -13.828283309936523 + ], + [ + "▁Ingrid", + -13.828353881835938 + ], + [ + "lytic", + -13.82837963104248 + ], + [ + "▁caricature", + -13.828442573547363 + ], + [ + "▁Diagnostics", + -13.828514099121094 + ], + [ + "▁lei", + -13.82856273651123 + ], + [ + "▁evicted", + -13.828638076782227 + ], + [ + "▁Cana", + -13.828660011291504 + ], + [ + "▁subsistence", + -13.8286714553833 + ], + [ + "▁undergrad", + -13.828700065612793 + ], + [ + "▁keepsake", + -13.828703880310059 + ], + [ + "Single", + -13.828801155090332 + ], + [ + "▁invoicing", + -13.828813552856445 + ], + [ + "▁Intense", + -13.82883071899414 + ], + [ + "▁Gosh", + -13.828866004943848 + ], + [ + "▁kilowatt", + -13.828887939453125 + ], + [ + "▁ravaged", + -13.828924179077148 + ], + [ + "▁saturday", + -13.82892894744873 + ], + [ + "inos", + -13.828934669494629 + ], + [ + "▁Helicopter", + -13.828934669494629 + ], + [ + "Current", + -13.828946113586426 + ], + [ + "▁guidebook", + -13.82895565032959 + ], + [ + "dual", + -13.828963279724121 + ], + [ + "▁unruly", + -13.828974723815918 + ], + [ + "login", + -13.82897663116455 + ], + [ + "▁bloodshed", + -13.828985214233398 + ], + [ + "▁Whitehead", + -13.828991889953613 + ], + [ + "▁northward", + -13.828999519348145 + ], + [ + "▁Nectar", + -13.829059600830078 + ], + [ + "▁Ooh", + -13.829277038574219 + ], + [ + "▁Siva", + -13.829336166381836 + ], + [ + "▁curtail", + -13.829360961914062 + ], + [ + "▁Indicators", + -13.829368591308594 + ], + [ + "▁birthing", + -13.829424858093262 + ], + [ + "▁correctional", + -13.829435348510742 + ], + [ + "bella", + -13.829460144042969 + ], + [ + "706", + -13.829468727111816 + ], + [ + "pond", + -13.829512596130371 + ], + [ + "azo", + -13.829607963562012 + ], + [ + "▁Informatics", + -13.829607963562012 + ], + [ + "▁asterisk", + -13.829654693603516 + ], + [ + "▁Brandy", + -13.829737663269043 + ], + [ + "Madison", + -13.829751014709473 + ], + [ + "362", + -13.82982063293457 + ], + [ + "▁Remy", + -13.829862594604492 + ], + [ + "▁Shots", + -13.829910278320312 + ], + [ + "▁DoD", + -13.829920768737793 + ], + [ + "hyper", + -13.829936027526855 + ], + [ + "improvement", + -13.830039024353027 + ], + [ + "▁Installer", + -13.83006477355957 + ], + [ + "▁343", + -13.830070495605469 + ], + [ + "▁Eno", + -13.830090522766113 + ], + [ + "Job", + -13.830140113830566 + ], + [ + "▁Oahu", + -13.830153465270996 + ], + [ + "Ob", + -13.830215454101562 + ], + [ + "Doll", + -13.830265045166016 + ], + [ + "▁Maestro", + -13.830299377441406 + ], + [ + "▁Helper", + -13.830321311950684 + ], + [ + "▁snacking", + -13.830328941345215 + ], + [ + "▁Chir", + -13.830343246459961 + ], + [ + "▁Khalifa", + -13.83034896850586 + ], + [ + "spell", + -13.830352783203125 + ], + [ + "▁slapping", + -13.830459594726562 + ], + [ + "▁Schle", + -13.830504417419434 + ], + [ + "▁Venom", + -13.830511093139648 + ], + [ + "▁NXT", + -13.830545425415039 + ], + [ + "516", + -13.830658912658691 + ], + [ + "▁529", + -13.830677032470703 + ], + [ + "▁Moisture", + -13.83067798614502 + ], + [ + "▁impotence", + -13.830679893493652 + ], + [ + "▁Thirdly", + -13.830760955810547 + ], + [ + "bats", + -13.83076286315918 + ], + [ + "▁Brace", + -13.830778121948242 + ], + [ + "▁clandestine", + -13.830782890319824 + ], + [ + "▁844", + -13.83078384399414 + ], + [ + "▁phil", + -13.830809593200684 + ], + [ + "▁incite", + -13.830818176269531 + ], + [ + "▁263", + -13.830835342407227 + ], + [ + "▁fantastical", + -13.830876350402832 + ], + [ + "ţi", + -13.830877304077148 + ], + [ + "▁Oy", + -13.830928802490234 + ], + [ + "▁Metropolis", + -13.830962181091309 + ], + [ + "▁Charcoal", + -13.831024169921875 + ], + [ + "QUI", + -13.831026077270508 + ], + [ + "▁Construct", + -13.831037521362305 + ], + [ + "▁DBS", + -13.831050872802734 + ], + [ + "▁parte", + -13.831147193908691 + ], + [ + "447", + -13.831174850463867 + ], + [ + "▁Cavalry", + -13.831262588500977 + ], + [ + "▁gaping", + -13.831275939941406 + ], + [ + "▁293", + -13.831303596496582 + ], + [ + "▁Francesca", + -13.831315994262695 + ], + [ + "▁redecorating", + -13.831392288208008 + ], + [ + "allo", + -13.831396102905273 + ], + [ + "▁grandchild", + -13.83139705657959 + ], + [ + "▁tacky", + -13.83141040802002 + ], + [ + "▁Qualifying", + -13.831453323364258 + ], + [ + "506", + -13.831470489501953 + ], + [ + "▁Cancellation", + -13.831681251525879 + ], + [ + "names", + -13.831687927246094 + ], + [ + "ivi", + -13.831774711608887 + ], + [ + "▁underrepresented", + -13.831805229187012 + ], + [ + "드", + -13.831835746765137 + ], + [ + "▁doubly", + -13.831849098205566 + ], + [ + "▁Cartier", + -13.831901550292969 + ], + [ + "▁Runs", + -13.831968307495117 + ], + [ + "▁tarp", + -13.832001686096191 + ], + [ + "wrapped", + -13.832062721252441 + ], + [ + "▁Palette", + -13.832132339477539 + ], + [ + "▁Pathways", + -13.832254409790039 + ], + [ + "▁rags", + -13.832258224487305 + ], + [ + "▁Malin", + -13.832267761230469 + ], + [ + "▁Sticky", + -13.832274436950684 + ], + [ + "▁demolish", + -13.832300186157227 + ], + [ + "▁FDR", + -13.832364082336426 + ], + [ + "Ohio", + -13.832365036010742 + ], + [ + "▁Potts", + -13.832377433776855 + ], + [ + "bbe", + -13.832438468933105 + ], + [ + "▁Strasbourg", + -13.832456588745117 + ], + [ + "▁ACP", + -13.832608222961426 + ], + [ + "▁informant", + -13.832624435424805 + ], + [ + "▁papa", + -13.83266544342041 + ], + [ + "▁barbed", + -13.832690238952637 + ], + [ + "▁pretense", + -13.832706451416016 + ], + [ + "▁holdem", + -13.83272647857666 + ], + [ + "▁PRI", + -13.832733154296875 + ], + [ + "▁Tami", + -13.832781791687012 + ], + [ + "▁ortho", + -13.832978248596191 + ], + [ + "▁necrosis", + -13.8330717086792 + ], + [ + "▁Saudis", + -13.83309268951416 + ], + [ + "▁verifiable", + -13.83310604095459 + ], + [ + "XS", + -13.833136558532715 + ], + [ + "exposed", + -13.833161354064941 + ], + [ + "▁HAL", + -13.833189964294434 + ], + [ + "▁Percentage", + -13.833196640014648 + ], + [ + "394", + -13.833202362060547 + ], + [ + "changer", + -13.833348274230957 + ], + [ + "▁Fujitsu", + -13.83336067199707 + ], + [ + "layered", + -13.833361625671387 + ], + [ + "cino", + -13.833442687988281 + ], + [ + "Neal", + -13.833490371704102 + ], + [ + "▁Stefano", + -13.833504676818848 + ], + [ + "olic", + -13.833515167236328 + ], + [ + "▁MASTER", + -13.83353328704834 + ], + [ + "▁Resist", + -13.833581924438477 + ], + [ + "VAL", + -13.833589553833008 + ], + [ + "▁710", + -13.833621978759766 + ], + [ + "football", + -13.833666801452637 + ], + [ + "▁damning", + -13.833678245544434 + ], + [ + "▁Virtue", + -13.833782196044922 + ], + [ + "▁condominiums", + -13.833799362182617 + ], + [ + "▁Opinions", + -13.833868026733398 + ], + [ + "▁Villanova", + -13.833991050720215 + ], + [ + "572", + -13.834001541137695 + ], + [ + "▁Basis", + -13.834230422973633 + ], + [ + "▁Guantanamo", + -13.834256172180176 + ], + [ + "▁MSG", + -13.834389686584473 + ], + [ + "healing", + -13.834441184997559 + ], + [ + "ecki", + -13.834444999694824 + ], + [ + "▁rockers", + -13.834501266479492 + ], + [ + "▁obscurity", + -13.83458423614502 + ], + [ + "า", + -13.834665298461914 + ], + [ + "▁inappropriately", + -13.83471393585205 + ], + [ + "▁discharges", + -13.834735870361328 + ], + [ + "▁sire", + -13.834759712219238 + ], + [ + "▁Raz", + -13.834794998168945 + ], + [ + "▁proverb", + -13.834820747375488 + ], + [ + "err", + -13.83486270904541 + ], + [ + "▁Thrill", + -13.834870338439941 + ], + [ + "▁neuropathy", + -13.834925651550293 + ], + [ + "bauer", + -13.835002899169922 + ], + [ + "▁Uptown", + -13.835009574890137 + ], + [ + "mum", + -13.835142135620117 + ], + [ + "▁disorderly", + -13.835175514221191 + ], + [ + "▁KPMG", + -13.835204124450684 + ], + [ + "▁gale", + -13.83532428741455 + ], + [ + "▁Godfrey", + -13.835349082946777 + ], + [ + "▁Fink", + -13.835351943969727 + ], + [ + "▁في", + -13.835443496704102 + ], + [ + "▁Blunt", + -13.835468292236328 + ], + [ + "▁JU", + -13.835482597351074 + ], + [ + "▁blogosphere", + -13.835508346557617 + ], + [ + "1965", + -13.835514068603516 + ], + [ + "▁inquiring", + -13.835576057434082 + ], + [ + "▁wrappers", + -13.835623741149902 + ], + [ + "▁shockingly", + -13.835624694824219 + ], + [ + "▁Viz", + -13.835680961608887 + ], + [ + "ATS", + -13.835728645324707 + ], + [ + "▁defied", + -13.835732460021973 + ], + [ + "▁Wipe", + -13.835739135742188 + ], + [ + "▁songwriters", + -13.8357515335083 + ], + [ + "▁gleaned", + -13.835786819458008 + ], + [ + "▁Hodges", + -13.835789680480957 + ], + [ + "▁Merge", + -13.835801124572754 + ], + [ + "▁Excess", + -13.835833549499512 + ], + [ + "▁STORY", + -13.835840225219727 + ], + [ + "▁Vick", + -13.835884094238281 + ], + [ + "▁ephemeral", + -13.835929870605469 + ], + [ + "▁HDL", + -13.835949897766113 + ], + [ + "nil", + -13.835962295532227 + ], + [ + "▁Potassium", + -13.836091041564941 + ], + [ + "enga", + -13.836099624633789 + ], + [ + "ин", + -13.83610725402832 + ], + [ + "▁resellers", + -13.836112976074219 + ], + [ + "▁illuminates", + -13.836143493652344 + ], + [ + "▁Dolce", + -13.836159706115723 + ], + [ + "▁Blessing", + -13.836169242858887 + ], + [ + "▁derailed", + -13.83617877960205 + ], + [ + "▁Wheaton", + -13.836235046386719 + ], + [ + "▁Sephora", + -13.836240768432617 + ], + [ + "▁Miscellaneous", + -13.836336135864258 + ], + [ + "▁Catalina", + -13.836410522460938 + ], + [ + "▁Gentlemen", + -13.836416244506836 + ], + [ + "Customer", + -13.836463928222656 + ], + [ + "▁jour", + -13.836463928222656 + ], + [ + "TEX", + -13.836538314819336 + ], + [ + "Tool", + -13.836564064025879 + ], + [ + "▁CZ", + -13.836566925048828 + ], + [ + "▁Andrei", + -13.836593627929688 + ], + [ + "resident", + -13.836709022521973 + ], + [ + "▁takers", + -13.83676815032959 + ], + [ + "▁BSE", + -13.836769104003906 + ], + [ + "▁Stuck", + -13.836774826049805 + ], + [ + "Poly", + -13.836817741394043 + ], + [ + "enhanced", + -13.836864471435547 + ], + [ + "▁Henson", + -13.836874961853027 + ], + [ + "lement", + -13.836878776550293 + ], + [ + "▁marries", + -13.836904525756836 + ], + [ + "lamp", + -13.836983680725098 + ], + [ + "▁plume", + -13.83700942993164 + ], + [ + "▁nay", + -13.837011337280273 + ], + [ + "▁provocation", + -13.837038040161133 + ], + [ + "oise", + -13.837071418762207 + ], + [ + "mountain", + -13.837076187133789 + ], + [ + "▁severance", + -13.837080001831055 + ], + [ + "oran", + -13.83715534210205 + ], + [ + "▁explorations", + -13.837210655212402 + ], + [ + "▁Asthma", + -13.837282180786133 + ], + [ + "inde", + -13.837295532226562 + ], + [ + "▁274", + -13.837316513061523 + ], + [ + "▁Deployment", + -13.837318420410156 + ], + [ + "▁Demons", + -13.837401390075684 + ], + [ + "▁thirties", + -13.837504386901855 + ], + [ + "▁SES", + -13.837520599365234 + ], + [ + "▁rv", + -13.837532043457031 + ], + [ + "warming", + -13.83756160736084 + ], + [ + "▁sketchy", + -13.837581634521484 + ], + [ + "▁haunts", + -13.837626457214355 + ], + [ + "ometry", + -13.837716102600098 + ], + [ + "▁tran", + -13.83775806427002 + ], + [ + "▁ricotta", + -13.837760925292969 + ], + [ + "bola", + -13.837801933288574 + ], + [ + "▁stanza", + -13.837837219238281 + ], + [ + "▁haben", + -13.837891578674316 + ], + [ + "▁judgements", + -13.837923049926758 + ], + [ + "▁showrooms", + -13.837924003601074 + ], + [ + "avon", + -13.837935447692871 + ], + [ + "▁Rumors", + -13.837944030761719 + ], + [ + "▁loin", + -13.837952613830566 + ], + [ + "▁eruptions", + -13.837976455688477 + ], + [ + "▁spinoff", + -13.838004112243652 + ], + [ + "▁ventilator", + -13.838004112243652 + ], + [ + "▁drab", + -13.83804702758789 + ], + [ + "▁tamper", + -13.83808708190918 + ], + [ + "▁Bits", + -13.838122367858887 + ], + [ + "▁bruise", + -13.838134765625 + ], + [ + "▁clamping", + -13.838208198547363 + ], + [ + "¶", + -13.838224411010742 + ], + [ + "▁331", + -13.838262557983398 + ], + [ + "▁GSA", + -13.838262557983398 + ], + [ + "llen", + -13.838286399841309 + ], + [ + "▁Hom", + -13.838322639465332 + ], + [ + "▁Hutch", + -13.83838939666748 + ], + [ + "▁fingernails", + -13.838399887084961 + ], + [ + "▁esophagus", + -13.838404655456543 + ], + [ + "▁persistently", + -13.838414192199707 + ], + [ + "▁Plank", + -13.838443756103516 + ], + [ + "▁Margot", + -13.838464736938477 + ], + [ + "▁debuts", + -13.838512420654297 + ], + [ + "▁takedown", + -13.838518142700195 + ], + [ + "▁Endangered", + -13.838566780090332 + ], + [ + "▁smoothness", + -13.838589668273926 + ], + [ + "▁Deutsch", + -13.838595390319824 + ], + [ + "▁onscreen", + -13.838610649108887 + ], + [ + "▁Possession", + -13.838644981384277 + ], + [ + "▁thorn", + -13.838644981384277 + ], + [ + "▁angelic", + -13.838687896728516 + ], + [ + "▁meningitis", + -13.838726043701172 + ], + [ + "▁Funnels", + -13.838739395141602 + ], + [ + "Eds", + -13.838747024536133 + ], + [ + "ood", + -13.838797569274902 + ], + [ + "tran", + -13.838808059692383 + ], + [ + "▁UR", + -13.838862419128418 + ], + [ + "ения", + -13.838942527770996 + ], + [ + "▁Rosario", + -13.838968276977539 + ], + [ + "▁embroiled", + -13.839001655578613 + ], + [ + "▁Matthias", + -13.83901309967041 + ], + [ + "▁downsides", + -13.839038848876953 + ], + [ + "▁ن", + -13.839071273803711 + ], + [ + "▁deflected", + -13.83908462524414 + ], + [ + "izers", + -13.839093208312988 + ], + [ + "▁wouldnt", + -13.83914852142334 + ], + [ + "▁Canoe", + -13.839282989501953 + ], + [ + "▁Attraction", + -13.839316368103027 + ], + [ + "▁Continent", + -13.839339256286621 + ], + [ + "▁reproducing", + -13.839405059814453 + ], + [ + "dz", + -13.839411735534668 + ], + [ + "pres", + -13.839432716369629 + ], + [ + "▁cDNA", + -13.839466094970703 + ], + [ + "▁cabs", + -13.839513778686523 + ], + [ + "YOU", + -13.839515686035156 + ], + [ + "▁Bakersfield", + -13.839526176452637 + ], + [ + "▁fillet", + -13.839539527893066 + ], + [ + "YP", + -13.839542388916016 + ], + [ + "▁Rak", + -13.839560508728027 + ], + [ + "▁freeware", + -13.839583396911621 + ], + [ + "sford", + -13.83961296081543 + ], + [ + "▁misconfigured", + -13.839624404907227 + ], + [ + "imer", + -13.839673042297363 + ], + [ + "evich", + -13.839707374572754 + ], + [ + "▁gripe", + -13.839719772338867 + ], + [ + "▁Qantas", + -13.83981704711914 + ], + [ + "▁scapegoat", + -13.839818954467773 + ], + [ + "dyne", + -13.839820861816406 + ], + [ + "▁cleansed", + -13.839860916137695 + ], + [ + "▁heady", + -13.839862823486328 + ], + [ + "hora", + -13.8399019241333 + ], + [ + "▁suitcases", + -13.839910507202148 + ], + [ + "ët", + -13.840055465698242 + ], + [ + "▁Mustafa", + -13.840057373046875 + ], + [ + "▁Mere", + -13.84006404876709 + ], + [ + "▁Caught", + -13.840065956115723 + ], + [ + "CIS", + -13.840106964111328 + ], + [ + "ensi", + -13.840145111083984 + ], + [ + "▁Huff", + -13.840213775634766 + ], + [ + "▁badger", + -13.840265274047852 + ], + [ + "▁Digit", + -13.840280532836914 + ], + [ + "▁defences", + -13.840288162231445 + ], + [ + "▁totalitarian", + -13.84034538269043 + ], + [ + "aires", + -13.840352058410645 + ], + [ + "▁DHL", + -13.840447425842285 + ], + [ + "▁Quo", + -13.840455055236816 + ], + [ + "▁trajectories", + -13.840526580810547 + ], + [ + "▁humanoid", + -13.840547561645508 + ], + [ + "▁BAL", + -13.840553283691406 + ], + [ + "▁onerous", + -13.840612411499023 + ], + [ + "▁outlay", + -13.840612411499023 + ], + [ + "▁261", + -13.8406343460083 + ], + [ + "605", + -13.840655326843262 + ], + [ + "▁Solving", + -13.840719223022461 + ], + [ + "▁pulsed", + -13.840727806091309 + ], + [ + "▁descends", + -13.84078598022461 + ], + [ + "▁Skilled", + -13.840814590454102 + ], + [ + "▁riverside", + -13.840841293334961 + ], + [ + "▁unreleased", + -13.840914726257324 + ], + [ + "drick", + -13.840920448303223 + ], + [ + "▁swaying", + -13.840938568115234 + ], + [ + "▁pretentious", + -13.840941429138184 + ], + [ + "▁Rumble", + -13.84095573425293 + ], + [ + "Roll", + -13.841007232666016 + ], + [ + "▁Soto", + -13.84103775024414 + ], + [ + "▁linkages", + -13.841063499450684 + ], + [ + "▁ISD", + -13.841066360473633 + ], + [ + "AY", + -13.841094017028809 + ], + [ + "ARS", + -13.841158866882324 + ], + [ + "▁Natalia", + -13.841166496276855 + ], + [ + "▁babysitting", + -13.841225624084473 + ], + [ + "tem", + -13.841297149658203 + ], + [ + "▁Loo", + -13.841300010681152 + ], + [ + "Nazi", + -13.841302871704102 + ], + [ + "▁CRT", + -13.841314315795898 + ], + [ + "▁AGE", + -13.84131908416748 + ], + [ + "▁matchups", + -13.841413497924805 + ], + [ + "▁revitalization", + -13.841414451599121 + ], + [ + "▁Nes", + -13.841415405273438 + ], + [ + "spor", + -13.841432571411133 + ], + [ + "ст", + -13.841468811035156 + ], + [ + "▁Dex", + -13.841514587402344 + ], + [ + "▁Organizers", + -13.841541290283203 + ], + [ + "smooth", + -13.841594696044922 + ], + [ + "▁Beaufort", + -13.841597557067871 + ], + [ + "feng", + -13.841628074645996 + ], + [ + "▁Milli", + -13.841678619384766 + ], + [ + "▁condom", + -13.84168815612793 + ], + [ + "▁adventurer", + -13.841695785522461 + ], + [ + "▁Gardiner", + -13.8417387008667 + ], + [ + "▁patrolling", + -13.841754913330078 + ], + [ + "▁Hadley", + -13.841785430908203 + ], + [ + "▁synths", + -13.841809272766113 + ], + [ + "▁Whirlpool", + -13.841829299926758 + ], + [ + "Mode", + -13.841832160949707 + ], + [ + "▁Neighbor", + -13.84188461303711 + ], + [ + "identified", + -13.841939926147461 + ], + [ + "ÃÂ", + -13.841989517211914 + ], + [ + "▁sassy", + -13.84201431274414 + ], + [ + "ool", + -13.842016220092773 + ], + [ + "▁glancing", + -13.842021942138672 + ], + [ + "▁lashed", + -13.842087745666504 + ], + [ + "▁tilting", + -13.842089653015137 + ], + [ + "None", + -13.842093467712402 + ], + [ + "▁sceptical", + -13.84214973449707 + ], + [ + "▁Robson", + -13.842172622680664 + ], + [ + "▁agro", + -13.842182159423828 + ], + [ + "mack", + -13.84221363067627 + ], + [ + "aligned", + -13.842233657836914 + ], + [ + "▁phoned", + -13.842276573181152 + ], + [ + "▁Chandelier", + -13.842306137084961 + ], + [ + "▁Wilton", + -13.842329978942871 + ], + [ + "▁cob", + -13.84235954284668 + ], + [ + "▁milliseconds", + -13.84235954284668 + ], + [ + "▁Bras", + -13.842374801635742 + ], + [ + "▁mush", + -13.842406272888184 + ], + [ + "rro", + -13.8424072265625 + ], + [ + "▁patching", + -13.842411041259766 + ], + [ + "▁τ", + -13.842422485351562 + ], + [ + "neh", + -13.842423439025879 + ], + [ + "▁boxers", + -13.84250545501709 + ], + [ + "lá", + -13.842512130737305 + ], + [ + "▁wreaths", + -13.842545509338379 + ], + [ + "▁Attacks", + -13.842555046081543 + ], + [ + "▁Thumb", + -13.842561721801758 + ], + [ + "▁sparingly", + -13.842570304870605 + ], + [ + "omy", + -13.842609405517578 + ], + [ + "▁MOS", + -13.842620849609375 + ], + [ + "▁PDFs", + -13.842695236206055 + ], + [ + "coil", + -13.842698097229004 + ], + [ + "ANS", + -13.842827796936035 + ], + [ + "▁thoracic", + -13.8428373336792 + ], + [ + "▁contemplative", + -13.842876434326172 + ], + [ + "▁SEP", + -13.842897415161133 + ], + [ + "pace", + -13.842968940734863 + ], + [ + "▁unwittingly", + -13.843005180358887 + ], + [ + "▁expended", + -13.843033790588379 + ], + [ + "▁amortization", + -13.843085289001465 + ], + [ + "Sur", + -13.84312629699707 + ], + [ + "rau", + -13.843186378479004 + ], + [ + "multiple", + -13.843204498291016 + ], + [ + "▁326", + -13.843236923217773 + ], + [ + "tsch", + -13.843256950378418 + ], + [ + "▁rejoin", + -13.843284606933594 + ], + [ + "▁lint", + -13.84333610534668 + ], + [ + "▁Roc", + -13.843427658081055 + ], + [ + "▁Henley", + -13.843429565429688 + ], + [ + "▁poaching", + -13.843522071838379 + ], + [ + "hosting", + -13.843612670898438 + ], + [ + "villa", + -13.843633651733398 + ], + [ + "▁Goliath", + -13.84365177154541 + ], + [ + "▁Jumping", + -13.843695640563965 + ], + [ + "▁oat", + -13.843729972839355 + ], + [ + "nico", + -13.84373950958252 + ], + [ + "pros", + -13.84375 + ], + [ + "▁budgeted", + -13.843777656555176 + ], + [ + "▁Perception", + -13.843778610229492 + ], + [ + "▁Brasil", + -13.843801498413086 + ], + [ + "ş", + -13.843838691711426 + ], + [ + "ATING", + -13.843844413757324 + ], + [ + "oven", + -13.843917846679688 + ], + [ + "▁baroque", + -13.843954086303711 + ], + [ + "▁Hobbs", + -13.843974113464355 + ], + [ + "▁MIA", + -13.844014167785645 + ], + [ + "▁atheism", + -13.844067573547363 + ], + [ + "▁sar", + -13.844273567199707 + ], + [ + "trailer", + -13.844278335571289 + ], + [ + "▁heroism", + -13.844354629516602 + ], + [ + "▁Hackney", + -13.844454765319824 + ], + [ + "▁gravitate", + -13.844486236572266 + ], + [ + "▁differentiating", + -13.844491004943848 + ], + [ + "▁ASIC", + -13.844510078430176 + ], + [ + "▁289", + -13.84453010559082 + ], + [ + "▁Georges", + -13.844542503356934 + ], + [ + "▁Rosenstein", + -13.844552993774414 + ], + [ + "▁banished", + -13.844579696655273 + ], + [ + "▁holographic", + -13.84459400177002 + ], + [ + "▁spacer", + -13.84459400177002 + ], + [ + "▁Commandments", + -13.844608306884766 + ], + [ + "Neil", + -13.844648361206055 + ], + [ + "▁Tir", + -13.844683647155762 + ], + [ + "▁Communicate", + -13.844816207885742 + ], + [ + "▁LOSS", + -13.844820022583008 + ], + [ + "pta", + -13.84485149383545 + ], + [ + "▁housewife", + -13.844867706298828 + ], + [ + "▁Hodge", + -13.844883918762207 + ], + [ + "hut", + -13.844988822937012 + ], + [ + "▁REALTORS", + -13.845078468322754 + ], + [ + "spam", + -13.845118522644043 + ], + [ + "Pr", + -13.845160484313965 + ], + [ + "▁handout", + -13.845179557800293 + ], + [ + "▁Jolla", + -13.845190048217773 + ], + [ + "▁catalogues", + -13.84519100189209 + ], + [ + "▁pampered", + -13.845223426818848 + ], + [ + "▁voltages", + -13.845250129699707 + ], + [ + "▁PASS", + -13.8452730178833 + ], + [ + "▁Concentration", + -13.84530258178711 + ], + [ + "▁fairway", + -13.84536075592041 + ], + [ + "▁smirk", + -13.845468521118164 + ], + [ + "▁Conveniently", + -13.845501899719238 + ], + [ + "▁Genealogy", + -13.845625877380371 + ], + [ + "▁importation", + -13.845638275146484 + ], + [ + "▁LEFT", + -13.845693588256836 + ], + [ + "hle", + -13.845707893371582 + ], + [ + "▁magnified", + -13.845709800720215 + ], + [ + "species", + -13.845784187316895 + ], + [ + "▁cellulite", + -13.845823287963867 + ], + [ + "▁Auctions", + -13.845856666564941 + ], + [ + "ugg", + -13.845870018005371 + ], + [ + "▁abuser", + -13.84587287902832 + ], + [ + "▁Ago", + -13.845874786376953 + ], + [ + "▁Wardrobe", + -13.845947265625 + ], + [ + "▁overdrive", + -13.845969200134277 + ], + [ + "▁cysts", + -13.84599781036377 + ], + [ + "▁ligne", + -13.845999717712402 + ], + [ + "1966", + -13.846000671386719 + ], + [ + "beauty", + -13.846080780029297 + ], + [ + "▁Craftsman", + -13.846196174621582 + ], + [ + "▁banged", + -13.846229553222656 + ], + [ + "▁tiniest", + -13.846270561218262 + ], + [ + "Tab", + -13.84627628326416 + ], + [ + "▁Effectively", + -13.846363067626953 + ], + [ + "▁blu", + -13.846480369567871 + ], + [ + "▁reagents", + -13.846480369567871 + ], + [ + "▁rousing", + -13.846558570861816 + ], + [ + "▁Pursuit", + -13.846597671508789 + ], + [ + "▁nominating", + -13.846602439880371 + ], + [ + "▁somatic", + -13.846614837646484 + ], + [ + "▁kiwi", + -13.846616744995117 + ], + [ + "relevant", + -13.84675407409668 + ], + [ + "▁pebbles", + -13.84682559967041 + ], + [ + "ABA", + -13.84685230255127 + ], + [ + "▁Django", + -13.846858024597168 + ], + [ + "▁operas", + -13.846860885620117 + ], + [ + "▁ramping", + -13.846918106079102 + ], + [ + "▁Unicode", + -13.846954345703125 + ], + [ + "▁Gud", + -13.846959114074707 + ], + [ + "unga", + -13.846967697143555 + ], + [ + "ionic", + -13.847020149230957 + ], + [ + "▁Testosterone", + -13.847060203552246 + ], + [ + "▁hairdryer", + -13.847112655639648 + ], + [ + "▁incomprehensible", + -13.847158432006836 + ], + [ + "▁NUMBER", + -13.847159385681152 + ], + [ + "▁gradients", + -13.847200393676758 + ], + [ + "▁CDL", + -13.84721565246582 + ], + [ + "▁slowest", + -13.847243309020996 + ], + [ + "▁BUR", + -13.847312927246094 + ], + [ + "▁Accra", + -13.847328186035156 + ], + [ + "▁dividers", + -13.847343444824219 + ], + [ + "483", + -13.847372055053711 + ], + [ + "stakes", + -13.847384452819824 + ], + [ + "▁KV", + -13.847416877746582 + ], + [ + "▁deepened", + -13.84746265411377 + ], + [ + "xl", + -13.847505569458008 + ], + [ + "▁Geb", + -13.847546577453613 + ], + [ + "▁Forbidden", + -13.847562789916992 + ], + [ + "▁soliciting", + -13.847594261169434 + ], + [ + "▁tolerable", + -13.847616195678711 + ], + [ + "▁stunningly", + -13.847701072692871 + ], + [ + "▁flocks", + -13.847765922546387 + ], + [ + "▁gps", + -13.8477783203125 + ], + [ + "split", + -13.847794532775879 + ], + [ + "▁Deadly", + -13.847867012023926 + ], + [ + "Common", + -13.847930908203125 + ], + [ + "▁hopelessly", + -13.847938537597656 + ], + [ + "▁Transparent", + -13.847992897033691 + ], + [ + "cina", + -13.848033905029297 + ], + [ + "▁LITTLE", + -13.848033905029297 + ], + [ + "▁Reproductive", + -13.8480863571167 + ], + [ + "371", + -13.848152160644531 + ], + [ + "▁bombardment", + -13.848156929016113 + ], + [ + "▁gooey", + -13.848187446594238 + ], + [ + "▁japan", + -13.84822940826416 + ], + [ + "▁bol", + -13.848234176635742 + ], + [ + "Mill", + -13.848255157470703 + ], + [ + "▁Ginny", + -13.848265647888184 + ], + [ + "▁Ganga", + -13.848278999328613 + ], + [ + "▁sweepstakes", + -13.848284721374512 + ], + [ + "▁legumes", + -13.848285675048828 + ], + [ + "▁winch", + -13.848289489746094 + ], + [ + "▁MARK", + -13.848295211791992 + ], + [ + "ADE", + -13.848319053649902 + ], + [ + "▁reworked", + -13.848319053649902 + ], + [ + "aal", + -13.848328590393066 + ], + [ + "▁Medication", + -13.848360061645508 + ], + [ + "▁Bowers", + -13.848388671875 + ], + [ + "▁mage", + -13.848409652709961 + ], + [ + "▁transmitters", + -13.84841537475586 + ], + [ + "▁Shining", + -13.84853744506836 + ], + [ + "▁pampering", + -13.848555564880371 + ], + [ + "442", + -13.84855842590332 + ], + [ + "▁sobbing", + -13.848572731018066 + ], + [ + "▁mexican", + -13.8485746383667 + ], + [ + "Flash", + -13.848580360412598 + ], + [ + "▁Mastery", + -13.848596572875977 + ], + [ + "▁Dat", + -13.848664283752441 + ], + [ + "▁derogatory", + -13.848746299743652 + ], + [ + "▁Priyanka", + -13.848843574523926 + ], + [ + "595", + -13.84890365600586 + ], + [ + "▁readability", + -13.848905563354492 + ], + [ + "▁adware", + -13.848930358886719 + ], + [ + "HW", + -13.8489408493042 + ], + [ + "zil", + -13.849003791809082 + ], + [ + "▁Lightly", + -13.849007606506348 + ], + [ + "▁Champs", + -13.849020957946777 + ], + [ + "▁Á", + -13.84904956817627 + ], + [ + "stall", + -13.849112510681152 + ], + [ + "▁soot", + -13.849156379699707 + ], + [ + "▁Vida", + -13.84916877746582 + ], + [ + "▁cynicism", + -13.849169731140137 + ], + [ + "▁Matsu", + -13.849215507507324 + ], + [ + "▁replete", + -13.849275588989258 + ], + [ + "payer", + -13.849295616149902 + ], + [ + "▁Tribes", + -13.84935188293457 + ], + [ + "▁forecasted", + -13.8494234085083 + ], + [ + "Listen", + -13.849443435668945 + ], + [ + "▁wannabe", + -13.849448204040527 + ], + [ + "centred", + -13.849482536315918 + ], + [ + "▁guerrilla", + -13.849629402160645 + ], + [ + "▁rebounded", + -13.849656105041504 + ], + [ + "▁enraged", + -13.849658012390137 + ], + [ + "▁Marker", + -13.84965991973877 + ], + [ + "decade", + -13.849743843078613 + ], + [ + "▁FPGA", + -13.849749565124512 + ], + [ + "▁Tributes", + -13.849784851074219 + ], + [ + "・", + -13.849787712097168 + ], + [ + "▁subversive", + -13.849801063537598 + ], + [ + "▁reflector", + -13.849935531616211 + ], + [ + "▁rehearse", + -13.849956512451172 + ], + [ + "▁deluge", + -13.849989891052246 + ], + [ + "▁celiac", + -13.850083351135254 + ], + [ + "▁Pinch", + -13.850106239318848 + ], + [ + "▁truffles", + -13.85010814666748 + ], + [ + "▁telephones", + -13.850118637084961 + ], + [ + "▁bullion", + -13.850179672241211 + ], + [ + "▁yer", + -13.850204467773438 + ], + [ + "▁Tufts", + -13.850217819213867 + ], + [ + "▁PCS", + -13.850241661071777 + ], + [ + "▁Mahindra", + -13.85025405883789 + ], + [ + "pose", + -13.850258827209473 + ], + [ + "▁007", + -13.850258827209473 + ], + [ + "boost", + -13.85028076171875 + ], + [ + "▁Detention", + -13.850290298461914 + ], + [ + "▁lawfully", + -13.850378036499023 + ], + [ + "minimum", + -13.850398063659668 + ], + [ + "▁€3", + -13.850445747375488 + ], + [ + "▁NYT", + -13.850481033325195 + ], + [ + "oco", + -13.85068130493164 + ], + [ + "▁draught", + -13.850751876831055 + ], + [ + "Scale", + -13.850778579711914 + ], + [ + "titu", + -13.850895881652832 + ], + [ + "▁copier", + -13.850930213928223 + ], + [ + "▁Cadet", + -13.85095500946045 + ], + [ + "▁scrolls", + -13.85095500946045 + ], + [ + "GET", + -13.850961685180664 + ], + [ + "▁FDI", + -13.850961685180664 + ], + [ + "primary", + -13.850988388061523 + ], + [ + "434", + -13.851008415222168 + ], + [ + "▁diminishes", + -13.851016998291016 + ], + [ + "▁Jordanian", + -13.851099014282227 + ], + [ + "▁selenium", + -13.851099014282227 + ], + [ + "▁kat", + -13.85113525390625 + ], + [ + "▁reckoning", + -13.851174354553223 + ], + [ + "▁oc", + -13.8512601852417 + ], + [ + "▁notepad", + -13.851287841796875 + ], + [ + "▁hound", + -13.851319313049316 + ], + [ + "▁postwar", + -13.85133171081543 + ], + [ + "▁Llan", + -13.851339340209961 + ], + [ + "상", + -13.851367950439453 + ], + [ + "uted", + -13.851407051086426 + ], + [ + "higher", + -13.851433753967285 + ], + [ + "sier", + -13.85143756866455 + ], + [ + "▁Galilee", + -13.851457595825195 + ], + [ + "▁fluke", + -13.851458549499512 + ], + [ + "lent", + -13.851470947265625 + ], + [ + "arti", + -13.851480484008789 + ], + [ + "▁Directly", + -13.851480484008789 + ], + [ + "▁miniatures", + -13.851490020751953 + ], + [ + "▁Holo", + -13.851499557495117 + ], + [ + "▁Velo", + -13.851534843444824 + ], + [ + "▁contrived", + -13.85157299041748 + ], + [ + "▁reactionary", + -13.851638793945312 + ], + [ + "▁278", + -13.851715087890625 + ], + [ + "▁looting", + -13.851725578308105 + ], + [ + "▁Hao", + -13.851731300354004 + ], + [ + "▁Pogba", + -13.851801872253418 + ], + [ + "▁dusted", + -13.851801872253418 + ], + [ + "787", + -13.851913452148438 + ], + [ + "▁Gunners", + -13.851937294006348 + ], + [ + "▁Exile", + -13.851950645446777 + ], + [ + "▁Landon", + -13.851950645446777 + ], + [ + "▁기", + -13.851964950561523 + ], + [ + "▁snowflakes", + -13.851970672607422 + ], + [ + "▁porridge", + -13.851994514465332 + ], + [ + "▁capping", + -13.852079391479492 + ], + [ + "▁ev", + -13.85218334197998 + ], + [ + "▁bodied", + -13.852250099182129 + ], + [ + "▁Elmer", + -13.852261543273926 + ], + [ + "pea", + -13.852270126342773 + ], + [ + "rsquo", + -13.852320671081543 + ], + [ + "tley", + -13.852383613586426 + ], + [ + "lox", + -13.852396965026855 + ], + [ + "neu", + -13.85241413116455 + ], + [ + "▁alkyl", + -13.852437019348145 + ], + [ + "▁Macbeth", + -13.852466583251953 + ], + [ + "▁Reminder", + -13.852473258972168 + ], + [ + "▁Delegates", + -13.852479934692383 + ], + [ + "▁photosynthesis", + -13.852485656738281 + ], + [ + "▁Stripes", + -13.852497100830078 + ], + [ + "▁slum", + -13.852508544921875 + ], + [ + "▁Forgive", + -13.852524757385254 + ], + [ + "▁Ives", + -13.85252857208252 + ], + [ + "▁bb", + -13.852542877197266 + ], + [ + "▁Huckabee", + -13.852569580078125 + ], + [ + "▁depositing", + -13.852577209472656 + ], + [ + "CHE", + -13.852588653564453 + ], + [ + "▁modesty", + -13.85260009765625 + ], + [ + "▁industrialization", + -13.852619171142578 + ], + [ + "▁heralded", + -13.852677345275879 + ], + [ + "aster", + -13.852723121643066 + ], + [ + "▁Missy", + -13.85278034210205 + ], + [ + "▁sleeveless", + -13.85278034210205 + ], + [ + "▁Davey", + -13.852802276611328 + ], + [ + "▁origination", + -13.852803230285645 + ], + [ + "▁frighten", + -13.852818489074707 + ], + [ + "gaon", + -13.852883338928223 + ], + [ + "▁graze", + -13.852892875671387 + ], + [ + "▁cad", + -13.852987289428711 + ], + [ + "mex", + -13.853023529052734 + ], + [ + "▁firepower", + -13.853052139282227 + ], + [ + "▁furthering", + -13.85310173034668 + ], + [ + "▁Translate", + -13.853134155273438 + ], + [ + "▁Outback", + -13.853156089782715 + ], + [ + "▁biennial", + -13.85317325592041 + ], + [ + "▁micron", + -13.853280067443848 + ], + [ + "▁Dumb", + -13.853289604187012 + ], + [ + "▁Grover", + -13.853342056274414 + ], + [ + "isson", + -13.853350639343262 + ], + [ + "▁Cosmos", + -13.853379249572754 + ], + [ + "▁insulate", + -13.853382110595703 + ], + [ + "▁Dishwasher", + -13.853392601013184 + ], + [ + "▁Recognize", + -13.8534574508667 + ], + [ + "446", + -13.853473663330078 + ], + [ + "▁VIA", + -13.85349178314209 + ], + [ + "▁Firearms", + -13.853522300720215 + ], + [ + "ो", + -13.853527069091797 + ], + [ + "▁sedative", + -13.853546142578125 + ], + [ + "▁turntable", + -13.85354995727539 + ], + [ + "▁Epidemiology", + -13.853551864624023 + ], + [ + "▁Geno", + -13.853554725646973 + ], + [ + "▁Ripper", + -13.853590965270996 + ], + [ + "shifting", + -13.853602409362793 + ], + [ + "▁RK", + -13.853622436523438 + ], + [ + "▁cathode", + -13.853639602661133 + ], + [ + "▁chalet", + -13.853684425354004 + ], + [ + "▁Balanced", + -13.853689193725586 + ], + [ + "▁furiously", + -13.853736877441406 + ], + [ + "▁disallowed", + -13.853778839111328 + ], + [ + "▁Establishing", + -13.853888511657715 + ], + [ + "▁Pok", + -13.854085922241211 + ], + [ + "▁precautionary", + -13.85409164428711 + ], + [ + "▁Rhonda", + -13.854114532470703 + ], + [ + "▁Sweater", + -13.854164123535156 + ], + [ + "▁biopic", + -13.854238510131836 + ], + [ + "▁Woodlands", + -13.854280471801758 + ], + [ + "▁euphoria", + -13.854287147521973 + ], + [ + "▁fluctuating", + -13.854290008544922 + ], + [ + "▁Organisations", + -13.85430908203125 + ], + [ + "Official", + -13.854557991027832 + ], + [ + "IZ", + -13.854574203491211 + ], + [ + "▁Promoter", + -13.854608535766602 + ], + [ + "▁Boul", + -13.854630470275879 + ], + [ + "anos", + -13.854660034179688 + ], + [ + "▁Telstra", + -13.854681015014648 + ], + [ + "▁libido", + -13.854689598083496 + ], + [ + "▁Copeland", + -13.854740142822266 + ], + [ + "▁recieve", + -13.854792594909668 + ], + [ + "ael", + -13.854925155639648 + ], + [ + "kir", + -13.854926109313965 + ], + [ + "▁cheerleader", + -13.854935646057129 + ], + [ + "▁incessant", + -13.854944229125977 + ], + [ + "rsa", + -13.854948997497559 + ], + [ + "Coach", + -13.855036735534668 + ], + [ + "▁Liner", + -13.855077743530273 + ], + [ + "astro", + -13.855122566223145 + ], + [ + "▁Ess", + -13.855143547058105 + ], + [ + "thick", + -13.855267524719238 + ], + [ + "Dade", + -13.85527229309082 + ], + [ + "▁sharpened", + -13.855339050292969 + ], + [ + "▁Jacobson", + -13.855417251586914 + ], + [ + "▁camcorder", + -13.85541820526123 + ], + [ + "▁Equi", + -13.855426788330078 + ], + [ + "▁hasten", + -13.855428695678711 + ], + [ + "▁bounces", + -13.855473518371582 + ], + [ + "phag", + -13.855531692504883 + ], + [ + "▁Delivering", + -13.855542182922363 + ], + [ + "▁hotly", + -13.855567932128906 + ], + [ + "▁CRS", + -13.855589866638184 + ], + [ + "▁bir", + -13.855598449707031 + ], + [ + "▁synonyms", + -13.855620384216309 + ], + [ + "▁Mindy", + -13.855623245239258 + ], + [ + "▁AMERICAN", + -13.855640411376953 + ], + [ + "▁Louvre", + -13.85571002960205 + ], + [ + "▁ester", + -13.855721473693848 + ], + [ + "▁Oxfordshire", + -13.85577392578125 + ], + [ + "▁milligrams", + -13.85580062866211 + ], + [ + "doll", + -13.855806350708008 + ], + [ + "▁perplexing", + -13.855817794799805 + ], + [ + "▁Technicians", + -13.8558349609375 + ], + [ + "omas", + -13.855839729309082 + ], + [ + "nke", + -13.85586166381836 + ], + [ + "▁humidifier", + -13.855971336364746 + ], + [ + "▁Orton", + -13.856070518493652 + ], + [ + "▁Audible", + -13.856072425842285 + ], + [ + "▁traitor", + -13.85615348815918 + ], + [ + "▁muy", + -13.856247901916504 + ], + [ + "▁protease", + -13.856271743774414 + ], + [ + "▁dribble", + -13.856302261352539 + ], + [ + "Math", + -13.85632038116455 + ], + [ + "▁Scotty", + -13.856348037719727 + ], + [ + "▁ATI", + -13.85641098022461 + ], + [ + "▁equator", + -13.856425285339355 + ], + [ + "foundation", + -13.856426239013672 + ], + [ + "▁Bowls", + -13.856433868408203 + ], + [ + "▁prevails", + -13.856447219848633 + ], + [ + "▁experimentally", + -13.856486320495605 + ], + [ + "enge", + -13.856518745422363 + ], + [ + "▁Oli", + -13.856541633605957 + ], + [ + "▁nostrils", + -13.856559753417969 + ], + [ + "▁Proposals", + -13.856799125671387 + ], + [ + "▁Jiu", + -13.85683822631836 + ], + [ + "Dead", + -13.856964111328125 + ], + [ + "▁Honours", + -13.856976509094238 + ], + [ + "▁Pads", + -13.856977462768555 + ], + [ + "tix", + -13.85699462890625 + ], + [ + "▁cher", + -13.857017517089844 + ], + [ + "▁604", + -13.857081413269043 + ], + [ + "▁holo", + -13.857110023498535 + ], + [ + "tied", + -13.857114791870117 + ], + [ + "Index", + -13.857129096984863 + ], + [ + "tul", + -13.857139587402344 + ], + [ + "atio", + -13.85714054107666 + ], + [ + "HTML", + -13.857170104980469 + ], + [ + "▁patriarchal", + -13.857230186462402 + ], + [ + "▁Helmet", + -13.857327461242676 + ], + [ + "▁Pte", + -13.857454299926758 + ], + [ + "▁Bev", + -13.857503890991211 + ], + [ + "▁Filip", + -13.85750675201416 + ], + [ + "Kate", + -13.857524871826172 + ], + [ + "▁Ducati", + -13.857545852661133 + ], + [ + "▁338", + -13.857553482055664 + ], + [ + "▁scarred", + -13.85758113861084 + ], + [ + "roots", + -13.85759162902832 + ], + [ + "▁Worksheets", + -13.857695579528809 + ], + [ + "▁Detector", + -13.857723236083984 + ], + [ + "▁malice", + -13.857723236083984 + ], + [ + "▁fringes", + -13.857747077941895 + ], + [ + "▁telecast", + -13.857857704162598 + ], + [ + "▁Buccaneers", + -13.857962608337402 + ], + [ + "▁♥", + -13.858040809631348 + ], + [ + "▁emulation", + -13.858068466186523 + ], + [ + "▁Maw", + -13.858073234558105 + ], + [ + "▁nan", + -13.858166694641113 + ], + [ + "▁Creations", + -13.858168601989746 + ], + [ + "anan", + -13.858271598815918 + ], + [ + "▁Mok", + -13.858470916748047 + ], + [ + "▁Payton", + -13.858484268188477 + ], + [ + "chim", + -13.858548164367676 + ], + [ + "sensitivity", + -13.85855770111084 + ], + [ + "▁Dempsey", + -13.858577728271484 + ], + [ + "▁valuing", + -13.858590126037598 + ], + [ + "tage", + -13.858652114868164 + ], + [ + "▁mandolin", + -13.85869312286377 + ], + [ + "▁nanotechnology", + -13.858704566955566 + ], + [ + "mint", + -13.858757972717285 + ], + [ + "▁Counselling", + -13.85877799987793 + ], + [ + "▁Gutierrez", + -13.858795166015625 + ], + [ + "▁GENERAL", + -13.85883903503418 + ], + [ + "▁Budd", + -13.858969688415527 + ], + [ + "▁decaying", + -13.858972549438477 + ], + [ + "▁gust", + -13.85897445678711 + ], + [ + "▁intrepid", + -13.859012603759766 + ], + [ + "holiday", + -13.859087944030762 + ], + [ + "▁Prospective", + -13.859092712402344 + ], + [ + "▁TDs", + -13.85909652709961 + ], + [ + "▁UDP", + -13.859132766723633 + ], + [ + "oca", + -13.859143257141113 + ], + [ + "▁Rosh", + -13.859180450439453 + ], + [ + "▁scorecard", + -13.859185218811035 + ], + [ + "▁silverware", + -13.859186172485352 + ], + [ + "Palestinian", + -13.859245300292969 + ], + [ + "▁hallucinations", + -13.859277725219727 + ], + [ + "▁mayoral", + -13.859282493591309 + ], + [ + "▁Prerequisite", + -13.859352111816406 + ], + [ + "▁Herbs", + -13.85938549041748 + ], + [ + "725", + -13.859445571899414 + ], + [ + "▁focussing", + -13.859477996826172 + ], + [ + "▁Proctor", + -13.859495162963867 + ], + [ + "▁Kafka", + -13.859535217285156 + ], + [ + "▁princesses", + -13.859597206115723 + ], + [ + "▁Hanks", + -13.859598159790039 + ], + [ + "▁canteen", + -13.859621047973633 + ], + [ + "Wheel", + -13.859665870666504 + ], + [ + "▁Benin", + -13.859713554382324 + ], + [ + "▁Callahan", + -13.859779357910156 + ], + [ + "Tek", + -13.859810829162598 + ], + [ + "▁Equinox", + -13.85985279083252 + ], + [ + "▁intoxication", + -13.859930038452148 + ], + [ + "▁earring", + -13.859953880310059 + ], + [ + "▁uproar", + -13.859953880310059 + ], + [ + "▁vigilance", + -13.859954833984375 + ], + [ + "gian", + -13.859984397888184 + ], + [ + "▁Corners", + -13.859993934631348 + ], + [ + "▁unilaterally", + -13.860001564025879 + ], + [ + "▁shifter", + -13.860021591186523 + ], + [ + "▁Scheduling", + -13.860034942626953 + ], + [ + "▁Interactions", + -13.8600492477417 + ], + [ + "abu", + -13.860109329223633 + ], + [ + "▁ris", + -13.860160827636719 + ], + [ + "▁Divinity", + -13.86018180847168 + ], + [ + "carrier", + -13.860209465026855 + ], + [ + "▁tact", + -13.860265731811523 + ], + [ + "▁academies", + -13.860300064086914 + ], + [ + "JM", + -13.860326766967773 + ], + [ + "626", + -13.860411643981934 + ], + [ + "▁CCR", + -13.860492706298828 + ], + [ + "▁battleground", + -13.860504150390625 + ], + [ + "▁avocados", + -13.860555648803711 + ], + [ + "▁tiredness", + -13.86056137084961 + ], + [ + "▁EXP", + -13.86058521270752 + ], + [ + "esco", + -13.860603332519531 + ], + [ + "▁CMC", + -13.860672950744629 + ], + [ + "▁Pembroke", + -13.860710144042969 + ], + [ + "▁bbq", + -13.860774040222168 + ], + [ + "▁telecoms", + -13.860791206359863 + ], + [ + "▁conforming", + -13.860825538635254 + ], + [ + "null", + -13.860879898071289 + ], + [ + "▁outlawed", + -13.861007690429688 + ], + [ + "▁Dried", + -13.8610258102417 + ], + [ + "▁Arabidopsis", + -13.86104679107666 + ], + [ + "▁jean", + -13.861076354980469 + ], + [ + "▁Complaints", + -13.861090660095215 + ], + [ + "indi", + -13.861117362976074 + ], + [ + "▁moan", + -13.861139297485352 + ], + [ + "▁hologram", + -13.861185073852539 + ], + [ + "▁Packer", + -13.861196517944336 + ], + [ + "▁전", + -13.861207008361816 + ], + [ + "▁Discourse", + -13.86122989654541 + ], + [ + "▁spade", + -13.861237525939941 + ], + [ + "▁pondered", + -13.861302375793457 + ], + [ + "▁jerky", + -13.861319541931152 + ], + [ + "▁outburst", + -13.861329078674316 + ], + [ + "▁Tonga", + -13.861353874206543 + ], + [ + "▁mockery", + -13.861507415771484 + ], + [ + "oux", + -13.861526489257812 + ], + [ + "▁refinishing", + -13.861526489257812 + ], + [ + "▁eucalyptus", + -13.861547470092773 + ], + [ + "lein", + -13.861559867858887 + ], + [ + "▁ejection", + -13.861579895019531 + ], + [ + "▁mishaps", + -13.861586570739746 + ], + [ + "▁Shareholders", + -13.861627578735352 + ], + [ + "▁counterproductive", + -13.861662864685059 + ], + [ + "quil", + -13.86170482635498 + ], + [ + "▁880", + -13.861712455749512 + ], + [ + "▁Durango", + -13.86184310913086 + ], + [ + "▁Rockstar", + -13.861867904663086 + ], + [ + "▁Solaris", + -13.861867904663086 + ], + [ + "▁dislocation", + -13.861993789672852 + ], + [ + "ind", + -13.862089157104492 + ], + [ + "▁explodes", + -13.862105369567871 + ], + [ + "▁Mee", + -13.86214542388916 + ], + [ + "▁eagerness", + -13.862198829650879 + ], + [ + "▁Valuable", + -13.862238883972168 + ], + [ + "▁worrisome", + -13.862242698669434 + ], + [ + "▁Vans", + -13.86230754852295 + ], + [ + "▁antiseptic", + -13.862345695495605 + ], + [ + "▁Avid", + -13.862351417541504 + ], + [ + "▁dignitaries", + -13.862409591674805 + ], + [ + "ograph", + -13.862412452697754 + ], + [ + "▁monotonous", + -13.862435340881348 + ], + [ + "▁Nassar", + -13.86247444152832 + ], + [ + "▁mellitus", + -13.86247444152832 + ], + [ + "▁Waller", + -13.862482070922852 + ], + [ + "didn", + -13.862545013427734 + ], + [ + "eny", + -13.862549781799316 + ], + [ + "▁exon", + -13.862581253051758 + ], + [ + "▁BIS", + -13.862586975097656 + ], + [ + "▁Lieberman", + -13.86262321472168 + ], + [ + "▁antidepressant", + -13.862627029418945 + ], + [ + "▁Hover", + -13.862651824951172 + ], + [ + "Blood", + -13.862661361694336 + ], + [ + "▁centric", + -13.86266803741455 + ], + [ + "▁interferes", + -13.862706184387207 + ], + [ + "▁screwing", + -13.862743377685547 + ], + [ + "▁810", + -13.8628511428833 + ], + [ + "678", + -13.862861633300781 + ], + [ + "429", + -13.862866401672363 + ], + [ + "▁Marietta", + -13.862936973571777 + ], + [ + "▁Sensitive", + -13.86298656463623 + ], + [ + "▁desiring", + -13.86304759979248 + ], + [ + "▁predictably", + -13.863072395324707 + ], + [ + "▁Phyto", + -13.86308479309082 + ], + [ + "▁garland", + -13.863110542297363 + ], + [ + "▁Ergo", + -13.86323070526123 + ], + [ + "OMA", + -13.86323356628418 + ], + [ + "▁Zim", + -13.863310813903809 + ], + [ + "Kat", + -13.863374710083008 + ], + [ + "▁uploads", + -13.863396644592285 + ], + [ + "▁Kunst", + -13.863407135009766 + ], + [ + "chee", + -13.863411903381348 + ], + [ + "▁Adhesive", + -13.863414764404297 + ], + [ + "hwa", + -13.86353874206543 + ], + [ + "604", + -13.863540649414062 + ], + [ + "▁Greenpeace", + -13.863624572753906 + ], + [ + "Gun", + -13.863665580749512 + ], + [ + "▁doggie", + -13.863667488098145 + ], + [ + "KER", + -13.86367130279541 + ], + [ + "uth", + -13.863750457763672 + ], + [ + "IRE", + -13.863879203796387 + ], + [ + "▁Banff", + -13.863913536071777 + ], + [ + "▁Dunedin", + -13.863929748535156 + ], + [ + "▁PMS", + -13.863978385925293 + ], + [ + "▁Stools", + -13.863991737365723 + ], + [ + "▁Evernote", + -13.864002227783203 + ], + [ + "locked", + -13.864031791687012 + ], + [ + "▁Humor", + -13.864062309265137 + ], + [ + "▁Pes", + -13.86406421661377 + ], + [ + "光", + -13.864075660705566 + ], + [ + "▁beaming", + -13.864156723022461 + ], + [ + "Les", + -13.864168167114258 + ], + [ + "solution", + -13.864169120788574 + ], + [ + "396", + -13.864192962646484 + ], + [ + "▁sil", + -13.864224433898926 + ], + [ + "▁wrestled", + -13.864326477050781 + ], + [ + "ле", + -13.864354133605957 + ], + [ + "adu", + -13.864381790161133 + ], + [ + "▁daemon", + -13.864395141601562 + ], + [ + "▁Lizard", + -13.86441421508789 + ], + [ + "▁Caucasus", + -13.864501953125 + ], + [ + "▁Ing", + -13.864531517028809 + ], + [ + "▁Peep", + -13.864546775817871 + ], + [ + "▁Siren", + -13.864588737487793 + ], + [ + "▁huddled", + -13.864596366882324 + ], + [ + "Brian", + -13.864617347717285 + ], + [ + "articles", + -13.864716529846191 + ], + [ + "▁Titles", + -13.864739418029785 + ], + [ + "▁Fireworks", + -13.864766120910645 + ], + [ + "▁Evolutionary", + -13.864774703979492 + ], + [ + "Taylor", + -13.864879608154297 + ], + [ + "▁reschedule", + -13.864910125732422 + ], + [ + "▁Cum", + -13.864943504333496 + ], + [ + "▁doubtless", + -13.86495590209961 + ], + [ + "▁Herr", + -13.865008354187012 + ], + [ + "episode", + -13.865032196044922 + ], + [ + "▁Shandong", + -13.865052223205566 + ], + [ + "▁Substitute", + -13.86511516571045 + ], + [ + "▁Blasio", + -13.86514663696289 + ], + [ + "▁anointed", + -13.865165710449219 + ], + [ + "▁Solicitor", + -13.865169525146484 + ], + [ + "▁unify", + -13.865242958068848 + ], + [ + "▁Kota", + -13.865286827087402 + ], + [ + "▁dari", + -13.865301132202148 + ], + [ + "liga", + -13.865354537963867 + ], + [ + "▁Constance", + -13.86548137664795 + ], + [ + "ע", + -13.865704536437988 + ], + [ + "spray", + -13.86571979522705 + ], + [ + "×10", + -13.86573314666748 + ], + [ + "▁AML", + -13.865741729736328 + ], + [ + "rupt", + -13.865756034851074 + ], + [ + "▁Hutton", + -13.865761756896973 + ], + [ + "▁originator", + -13.865792274475098 + ], + [ + "ALLY", + -13.865809440612793 + ], + [ + "pulse", + -13.865822792053223 + ], + [ + "▁phenotypes", + -13.865854263305664 + ], + [ + "▁sirens", + -13.865856170654297 + ], + [ + "udge", + -13.865885734558105 + ], + [ + "▁dichotomy", + -13.865938186645508 + ], + [ + "Always", + -13.865957260131836 + ], + [ + "▁honourable", + -13.86599063873291 + ], + [ + "ド", + -13.86600399017334 + ], + [ + "Could", + -13.86610221862793 + ], + [ + "▁einem", + -13.866103172302246 + ], + [ + "▁Outfit", + -13.86611270904541 + ], + [ + "topia", + -13.866179466247559 + ], + [ + "▁forfeited", + -13.866206169128418 + ], + [ + "▁Pile", + -13.866289138793945 + ], + [ + "▁Wound", + -13.866331100463867 + ], + [ + "▁musings", + -13.8663330078125 + ], + [ + "TAL", + -13.866357803344727 + ], + [ + "▁snowman", + -13.866377830505371 + ], + [ + "▁commotion", + -13.866379737854004 + ], + [ + "765", + -13.86652660369873 + ], + [ + "▁amputation", + -13.866628646850586 + ], + [ + "▁fantastically", + -13.866693496704102 + ], + [ + "ё", + -13.86669635772705 + ], + [ + "▁Contributor", + -13.866728782653809 + ], + [ + "▁lorry", + -13.86679458618164 + ], + [ + "▁PCT", + -13.866795539855957 + ], + [ + "Left", + -13.86680793762207 + ], + [ + "▁Stump", + -13.8668212890625 + ], + [ + "▁Hardly", + -13.866920471191406 + ], + [ + "▁Wicker", + -13.866920471191406 + ], + [ + "▁Regan", + -13.86698055267334 + ], + [ + "▁normalize", + -13.86703109741211 + ], + [ + "▁Dorado", + -13.867138862609863 + ], + [ + "Focus", + -13.867140769958496 + ], + [ + "▁peter", + -13.867145538330078 + ], + [ + "▁Assume", + -13.867159843444824 + ], + [ + "▁Burnham", + -13.867162704467773 + ], + [ + "▁cPanel", + -13.867164611816406 + ], + [ + "▁herbicide", + -13.867169380187988 + ], + [ + "▁baguette", + -13.867175102233887 + ], + [ + "worst", + -13.867185592651367 + ], + [ + "▁Slash", + -13.867198944091797 + ], + [ + "▁stucco", + -13.867227554321289 + ], + [ + "jacket", + -13.86723804473877 + ], + [ + "▁looping", + -13.867262840270996 + ], + [ + "▁Merchandise", + -13.867295265197754 + ], + [ + "OTC", + -13.86730670928955 + ], + [ + "▁alleys", + -13.86730670928955 + ], + [ + "▁Peek", + -13.867342948913574 + ], + [ + "▁Stepping", + -13.867383003234863 + ], + [ + "381", + -13.867432594299316 + ], + [ + "▁breakouts", + -13.86743450164795 + ], + [ + "▁Kernel", + -13.86745548248291 + ], + [ + "oshi", + -13.867480278015137 + ], + [ + "▁Clickfunnels", + -13.867509841918945 + ], + [ + "▁firewalls", + -13.867538452148438 + ], + [ + "▁unter", + -13.867582321166992 + ], + [ + "▁FIND", + -13.86771297454834 + ], + [ + "ulent", + -13.867725372314453 + ], + [ + "▁interfered", + -13.86785888671875 + ], + [ + "imba", + -13.867871284484863 + ], + [ + "▁bronchitis", + -13.867880821228027 + ], + [ + "▁ding", + -13.867925643920898 + ], + [ + "▁Fatal", + -13.867927551269531 + ], + [ + "▁Cornerstone", + -13.867990493774414 + ], + [ + "Girls", + -13.868021011352539 + ], + [ + "▁Grandfather", + -13.868024826049805 + ], + [ + "doctor", + -13.868029594421387 + ], + [ + "▁Bomber", + -13.868038177490234 + ], + [ + "▁Sato", + -13.868049621582031 + ], + [ + "Join", + -13.868081092834473 + ], + [ + "▁Orphan", + -13.868144989013672 + ], + [ + "banks", + -13.868147850036621 + ], + [ + "▁momma", + -13.868212699890137 + ], + [ + "▁Okanagan", + -13.86821460723877 + ], + [ + "▁Latvian", + -13.868216514587402 + ], + [ + "▁ped", + -13.868220329284668 + ], + [ + "▁Twisted", + -13.868229866027832 + ], + [ + "interesting", + -13.868231773376465 + ], + [ + "▁jobless", + -13.868256568908691 + ], + [ + "oji", + -13.868313789367676 + ], + [ + "▁Responsibilities", + -13.8683443069458 + ], + [ + "▁Donation", + -13.868409156799316 + ], + [ + "▁Rosenthal", + -13.86849594116211 + ], + [ + "certain", + -13.8685884475708 + ], + [ + "ERRY", + -13.868714332580566 + ], + [ + "▁landfall", + -13.86872673034668 + ], + [ + "▁chevron", + -13.868743896484375 + ], + [ + "▁Pug", + -13.868773460388184 + ], + [ + "▁doughnuts", + -13.868873596191406 + ], + [ + "BTC", + -13.868887901306152 + ], + [ + "▁Cree", + -13.868997573852539 + ], + [ + "paul", + -13.869083404541016 + ], + [ + "mana", + -13.86909008026123 + ], + [ + "▁Flute", + -13.869091987609863 + ], + [ + "▁CNET", + -13.869144439697266 + ], + [ + "▁AVE", + -13.869147300720215 + ], + [ + "▁exquisitely", + -13.869155883789062 + ], + [ + "▁Beads", + -13.869170188903809 + ], + [ + "SMA", + -13.869186401367188 + ], + [ + "▁Callum", + -13.869200706481934 + ], + [ + "itable", + -13.869203567504883 + ], + [ + "question", + -13.869220733642578 + ], + [ + "▁Ves", + -13.869243621826172 + ], + [ + "▁THIRD", + -13.869383811950684 + ], + [ + "wg", + -13.86939525604248 + ], + [ + "elles", + -13.869494438171387 + ], + [ + "Ce", + -13.869523048400879 + ], + [ + "Fish", + -13.869524955749512 + ], + [ + "▁divisional", + -13.869552612304688 + ], + [ + "▁Antichrist", + -13.869574546813965 + ], + [ + "▁DY", + -13.869606018066406 + ], + [ + "▁Observation", + -13.869614601135254 + ], + [ + "ête", + -13.869622230529785 + ], + [ + "▁STS", + -13.869638442993164 + ], + [ + "▁Birk", + -13.869659423828125 + ], + [ + "▁820", + -13.869668960571289 + ], + [ + "▁Olympian", + -13.869697570800781 + ], + [ + "apt", + -13.869783401489258 + ], + [ + "▁tycoon", + -13.86979866027832 + ], + [ + "zig", + -13.86984920501709 + ], + [ + "▁recapture", + -13.869956970214844 + ], + [ + "▁IMP", + -13.870031356811523 + ], + [ + "▁Sena", + -13.870047569274902 + ], + [ + "heimer", + -13.870081901550293 + ], + [ + "▁Sicilian", + -13.870089530944824 + ], + [ + "▁Kobo", + -13.870131492614746 + ], + [ + "▁uneventful", + -13.870145797729492 + ], + [ + "capped", + -13.870182991027832 + ], + [ + "▁Mojo", + -13.870189666748047 + ], + [ + "▁oblivion", + -13.870229721069336 + ], + [ + "spir", + -13.870306968688965 + ], + [ + "▁¡", + -13.870340347290039 + ], + [ + "▁PBX", + -13.87041187286377 + ], + [ + "nip", + -13.870440483093262 + ], + [ + "▁625", + -13.87050724029541 + ], + [ + "▁Commodity", + -13.870509147644043 + ], + [ + "▁Shim", + -13.870558738708496 + ], + [ + "ckle", + -13.870560646057129 + ], + [ + "▁painstakingly", + -13.870569229125977 + ], + [ + "▁atleast", + -13.87057876586914 + ], + [ + "Bra", + -13.870593070983887 + ], + [ + "respected", + -13.870699882507324 + ], + [ + "aciones", + -13.870760917663574 + ], + [ + "▁Locally", + -13.87081241607666 + ], + [ + "▁timeshare", + -13.870824813842773 + ], + [ + "▁Norwood", + -13.870855331420898 + ], + [ + "▁Discard", + -13.870870590209961 + ], + [ + "▁Keane", + -13.870882034301758 + ], + [ + "▁Fitted", + -13.870893478393555 + ], + [ + "▁conformation", + -13.870953559875488 + ], + [ + "▁259", + -13.870977401733398 + ], + [ + "▁Zur", + -13.870977401733398 + ], + [ + "▁sanded", + -13.870977401733398 + ], + [ + "▁freaks", + -13.870991706848145 + ], + [ + "▁uno", + -13.871082305908203 + ], + [ + "ction", + -13.871092796325684 + ], + [ + "▁bazaar", + -13.871098518371582 + ], + [ + "▁Siena", + -13.871133804321289 + ], + [ + "▁Unilever", + -13.871194839477539 + ], + [ + "completely", + -13.87126350402832 + ], + [ + "▁transfusion", + -13.871268272399902 + ], + [ + "▁Analytica", + -13.871274948120117 + ], + [ + "▁MOR", + -13.871285438537598 + ], + [ + "restaurant", + -13.871313095092773 + ], + [ + "▁perplexed", + -13.871315956115723 + ], + [ + "amazon", + -13.871318817138672 + ], + [ + "▁2600", + -13.871416091918945 + ], + [ + "ext", + -13.871420860290527 + ], + [ + "evolution", + -13.871456146240234 + ], + [ + "bate", + -13.87148666381836 + ], + [ + "▁Raceway", + -13.871506690979004 + ], + [ + "▁COR", + -13.871511459350586 + ], + [ + "arna", + -13.871528625488281 + ], + [ + "▁unworthy", + -13.871586799621582 + ], + [ + "▁Vegetables", + -13.871607780456543 + ], + [ + "▁Manufacture", + -13.871745109558105 + ], + [ + "▁Icons", + -13.871807098388672 + ], + [ + "▁curvy", + -13.871807098388672 + ], + [ + "existence", + -13.87188720703125 + ], + [ + "▁sleigh", + -13.871893882751465 + ], + [ + "▁sowing", + -13.871966361999512 + ], + [ + "Burn", + -13.871968269348145 + ], + [ + "▁astrological", + -13.872035026550293 + ], + [ + "▁packers", + -13.872042655944824 + ], + [ + "Ireland", + -13.872062683105469 + ], + [ + "Email", + -13.872078895568848 + ], + [ + "▁Grady", + -13.872081756591797 + ], + [ + "ief", + -13.872090339660645 + ], + [ + "▁Intelli", + -13.872187614440918 + ], + [ + "▁mixers", + -13.872200012207031 + ], + [ + "562", + -13.872270584106445 + ], + [ + "▁Merchants", + -13.872275352478027 + ], + [ + "▁deceiving", + -13.872295379638672 + ], + [ + "category", + -13.87230110168457 + ], + [ + "▁masse", + -13.872352600097656 + ], + [ + "KEN", + -13.872367858886719 + ], + [ + "▁BMX", + -13.87238597869873 + ], + [ + "▁underline", + -13.87238597869873 + ], + [ + "▁wick", + -13.872386932373047 + ], + [ + "dag", + -13.872394561767578 + ], + [ + "▁impasse", + -13.87240219116211 + ], + [ + "▁Silica", + -13.872452735900879 + ], + [ + "▁OCT", + -13.872481346130371 + ], + [ + "▁potluck", + -13.872507095336914 + ], + [ + "▁messengers", + -13.872591018676758 + ], + [ + "▁Conspiracy", + -13.872641563415527 + ], + [ + "▁cambogia", + -13.872710227966309 + ], + [ + "▁pokies", + -13.872726440429688 + ], + [ + "▁ethernet", + -13.872739791870117 + ], + [ + "▁Specially", + -13.872796058654785 + ], + [ + "▁Undoubtedly", + -13.872800827026367 + ], + [ + "▁terminus", + -13.872824668884277 + ], + [ + "vv", + -13.872830390930176 + ], + [ + "▁Aces", + -13.872878074645996 + ], + [ + "▁bottleneck", + -13.872883796691895 + ], + [ + "▁Wel", + -13.872895240783691 + ], + [ + "▁rips", + -13.87289810180664 + ], + [ + "565", + -13.87291431427002 + ], + [ + "▁Gambia", + -13.872992515563965 + ], + [ + "MET", + -13.873018264770508 + ], + [ + "▁Cypriot", + -13.873077392578125 + ], + [ + "▁rashes", + -13.87309455871582 + ], + [ + "▁Bayou", + -13.873144149780273 + ], + [ + "cari", + -13.873236656188965 + ], + [ + "jas", + -13.873340606689453 + ], + [ + "ulous", + -13.873353004455566 + ], + [ + "▁squeak", + -13.873358726501465 + ], + [ + "▁Rochelle", + -13.873369216918945 + ], + [ + "▁ο", + -13.873374938964844 + ], + [ + "▁phy", + -13.873385429382324 + ], + [ + "▁FDIC", + -13.873503684997559 + ], + [ + "▁dismissive", + -13.873510360717773 + ], + [ + "▁ple", + -13.873518943786621 + ], + [ + "▁gh", + -13.87353229522705 + ], + [ + "▁Guelph", + -13.873540878295898 + ], + [ + "▁innovating", + -13.87354850769043 + ], + [ + "Simon", + -13.873549461364746 + ], + [ + "▁Argos", + -13.873567581176758 + ], + [ + "Ham", + -13.873581886291504 + ], + [ + "Dance", + -13.873608589172363 + ], + [ + "▁Handicap", + -13.873617172241211 + ], + [ + "▁Inverness", + -13.8736572265625 + ], + [ + "▁Krista", + -13.873663902282715 + ], + [ + "▁Marjorie", + -13.873669624328613 + ], + [ + "▁fitter", + -13.873677253723145 + ], + [ + "▁shudder", + -13.873697280883789 + ], + [ + "▁sorta", + -13.873710632324219 + ], + [ + "▁extremities", + -13.873712539672852 + ], + [ + "dwell", + -13.873741149902344 + ], + [ + "▁Koran", + -13.873744010925293 + ], + [ + "asco", + -13.873758316040039 + ], + [ + "▁Nehru", + -13.873763084411621 + ], + [ + "る", + -13.873847961425781 + ], + [ + "646", + -13.873860359191895 + ], + [ + "ROS", + -13.873915672302246 + ], + [ + "▁EFT", + -13.873978614807129 + ], + [ + "▁Baden", + -13.87398624420166 + ], + [ + "▁Density", + -13.87402057647705 + ], + [ + "▁breaching", + -13.874075889587402 + ], + [ + "▁Brahma", + -13.874119758605957 + ], + [ + "▁Successfully", + -13.874164581298828 + ], + [ + "▁Klo", + -13.874216079711914 + ], + [ + "Bell", + -13.874258995056152 + ], + [ + "▁Ambassadors", + -13.874271392822266 + ], + [ + "▁convincingly", + -13.87427806854248 + ], + [ + "▁Shahid", + -13.874288558959961 + ], + [ + "rish", + -13.874347686767578 + ], + [ + "▁Rhapsody", + -13.874378204345703 + ], + [ + "▁Charley", + -13.8744478225708 + ], + [ + "▁zenith", + -13.874482154846191 + ], + [ + "Using", + -13.87452220916748 + ], + [ + "▁planar", + -13.874554634094238 + ], + [ + "▁Lubbock", + -13.874587059020996 + ], + [ + "▁dune", + -13.874602317810059 + ], + [ + "▁Transplant", + -13.874661445617676 + ], + [ + "asc", + -13.874665260314941 + ], + [ + "▁cafés", + -13.874673843383789 + ], + [ + "▁Proceed", + -13.874770164489746 + ], + [ + "▁whirl", + -13.874780654907227 + ], + [ + "▁paternity", + -13.87478256225586 + ], + [ + "▁Daughters", + -13.874809265136719 + ], + [ + "▁Ultrasound", + -13.874837875366211 + ], + [ + "allah", + -13.874841690063477 + ], + [ + "axial", + -13.874845504760742 + ], + [ + "▁SAME", + -13.874900817871094 + ], + [ + "▁stalker", + -13.874910354614258 + ], + [ + "▁Seuss", + -13.874911308288574 + ], + [ + "▁peering", + -13.87497615814209 + ], + [ + "▁Defenders", + -13.87502670288086 + ], + [ + "▁robber", + -13.87502670288086 + ], + [ + "Tor", + -13.87504768371582 + ], + [ + "▁cheques", + -13.875061988830566 + ], + [ + "▁forensics", + -13.875079154968262 + ], + [ + "▁mitigated", + -13.87509822845459 + ], + [ + "▁pag", + -13.875200271606445 + ], + [ + "gauge", + -13.875208854675293 + ], + [ + "746", + -13.875250816345215 + ], + [ + "▁Dermatology", + -13.875255584716797 + ], + [ + "anus", + -13.875260353088379 + ], + [ + "flavored", + -13.875261306762695 + ], + [ + "▁MMS", + -13.875279426574707 + ], + [ + "rze", + -13.875284194946289 + ], + [ + "▁Achieving", + -13.875329971313477 + ], + [ + "▁ICS", + -13.87539005279541 + ], + [ + "▁plasticity", + -13.875438690185547 + ], + [ + "leton", + -13.875447273254395 + ], + [ + "peptide", + -13.875458717346191 + ], + [ + "▁obeyed", + -13.875496864318848 + ], + [ + "▁Lenders", + -13.875508308410645 + ], + [ + "▁pluck", + -13.875518798828125 + ], + [ + "▁ICA", + -13.875542640686035 + ], + [ + "gge", + -13.875569343566895 + ], + [ + "GY", + -13.87559700012207 + ], + [ + "▁ordination", + -13.875638961791992 + ], + [ + "▁plunger", + -13.875650405883789 + ], + [ + "▁Packs", + -13.875734329223633 + ], + [ + "▁impersonal", + -13.875743865966797 + ], + [ + "▁Silly", + -13.875757217407227 + ], + [ + "ently", + -13.875825881958008 + ], + [ + "468", + -13.875831604003906 + ], + [ + "▁paneling", + -13.87594223022461 + ], + [ + "Kar", + -13.875991821289062 + ], + [ + "▁arr", + -13.876035690307617 + ], + [ + "▁Kyo", + -13.876054763793945 + ], + [ + "▁saber", + -13.876055717468262 + ], + [ + "▁bonfire", + -13.876059532165527 + ], + [ + "▁Spear", + -13.876096725463867 + ], + [ + "▁AMI", + -13.876130104064941 + ], + [ + "▁smiley", + -13.876200675964355 + ], + [ + "fail", + -13.876372337341309 + ], + [ + "▁distraught", + -13.876444816589355 + ], + [ + "▁elm", + -13.876448631286621 + ], + [ + "▁junkie", + -13.876468658447266 + ], + [ + "VEN", + -13.876505851745605 + ], + [ + "atos", + -13.876510620117188 + ], + [ + "▁accesses", + -13.87654972076416 + ], + [ + "Geo", + -13.87656307220459 + ], + [ + "accessed", + -13.87657642364502 + ], + [ + "ко", + -13.876583099365234 + ], + [ + "413", + -13.87662124633789 + ], + [ + "▁squirt", + -13.87667465209961 + ], + [ + "▁Mallory", + -13.876748085021973 + ], + [ + "▁Modules", + -13.876835823059082 + ], + [ + "adia", + -13.876846313476562 + ], + [ + "▁pry", + -13.876861572265625 + ], + [ + "▁Pentecost", + -13.8768892288208 + ], + [ + "▁Tanaka", + -13.876891136169434 + ], + [ + "Snow", + -13.876903533935547 + ], + [ + "▁mn", + -13.877153396606445 + ], + [ + "473", + -13.877203941345215 + ], + [ + "▁telephony", + -13.877225875854492 + ], + [ + "▁capillary", + -13.877238273620605 + ], + [ + "Season", + -13.877254486083984 + ], + [ + "▁taxonomy", + -13.877274513244629 + ], + [ + "▁substitutions", + -13.877287864685059 + ], + [ + "▁SIN", + -13.877298355102539 + ], + [ + "▁Refund", + -13.877402305603027 + ], + [ + "▁entitlements", + -13.877436637878418 + ], + [ + "▁Pegasus", + -13.877446174621582 + ], + [ + "tika", + -13.877458572387695 + ], + [ + "▁Sommer", + -13.877501487731934 + ], + [ + "▁thier", + -13.877518653869629 + ], + [ + "▁Winters", + -13.877662658691406 + ], + [ + "▁Glas", + -13.877796173095703 + ], + [ + "▁rinsing", + -13.877808570861816 + ], + [ + "▁sweetie", + -13.877866744995117 + ], + [ + "▁Bore", + -13.877887725830078 + ], + [ + "isin", + -13.877889633178711 + ], + [ + "▁HEART", + -13.877893447875977 + ], + [ + "▁Radiology", + -13.877911567687988 + ], + [ + "▁Gamb", + -13.877930641174316 + ], + [ + "▁271", + -13.87800407409668 + ], + [ + "▁deductibles", + -13.878019332885742 + ], + [ + "▁mathematicians", + -13.878059387207031 + ], + [ + "quat", + -13.87806224822998 + ], + [ + "Guy", + -13.878067970275879 + ], + [ + "▁landowner", + -13.878067970275879 + ], + [ + "▁Freeway", + -13.87809944152832 + ], + [ + "▁infrequently", + -13.878137588500977 + ], + [ + "▁И", + -13.87813949584961 + ], + [ + "inar", + -13.878158569335938 + ], + [ + "▁ELISA", + -13.878159523010254 + ], + [ + "ി", + -13.878189086914062 + ], + [ + "▁Jillian", + -13.878207206726074 + ], + [ + "▁Soma", + -13.878225326538086 + ], + [ + "▁havent", + -13.878242492675781 + ], + [ + "▁GPL", + -13.878276824951172 + ], + [ + "▁Ewing", + -13.878308296203613 + ], + [ + "▁mania", + -13.878314018249512 + ], + [ + "▁insurmountable", + -13.878362655639648 + ], + [ + "▁reflexes", + -13.878491401672363 + ], + [ + "osaurus", + -13.878496170043945 + ], + [ + "▁consecrated", + -13.878570556640625 + ], + [ + "▁332", + -13.87860107421875 + ], + [ + "▁BDS", + -13.878629684448242 + ], + [ + "dden", + -13.878631591796875 + ], + [ + "▁Objectives", + -13.878664016723633 + ], + [ + "▁ethylene", + -13.878683090209961 + ], + [ + "▁thrice", + -13.878708839416504 + ], + [ + "679", + -13.878725051879883 + ], + [ + "805", + -13.878782272338867 + ], + [ + "▁Synergy", + -13.878825187683105 + ], + [ + "448", + -13.878859519958496 + ], + [ + "vian", + -13.878864288330078 + ], + [ + "▁knead", + -13.878876686096191 + ], + [ + "▁Learners", + -13.87888240814209 + ], + [ + "▁Tut", + -13.878889083862305 + ], + [ + "▁sprawl", + -13.878963470458984 + ], + [ + "▁ADP", + -13.87901496887207 + ], + [ + "origin", + -13.879016876220703 + ], + [ + "▁Brandt", + -13.879044532775879 + ], + [ + "▁channeling", + -13.879050254821777 + ], + [ + "▁Nee", + -13.879064559936523 + ], + [ + "物", + -13.879075050354004 + ], + [ + "▁Gai", + -13.879079818725586 + ], + [ + "▁pamper", + -13.879082679748535 + ], + [ + "▁WK", + -13.87912368774414 + ], + [ + "▁fundamentalist", + -13.87912368774414 + ], + [ + "Cho", + -13.87919807434082 + ], + [ + "▁algorithmic", + -13.879231452941895 + ], + [ + "rae", + -13.879244804382324 + ], + [ + "▁Yves", + -13.879251480102539 + ], + [ + "lec", + -13.879343032836914 + ], + [ + "▁1844", + -13.87934684753418 + ], + [ + "teaching", + -13.879454612731934 + ], + [ + "nese", + -13.879471778869629 + ], + [ + "dirty", + -13.879473686218262 + ], + [ + "gara", + -13.87948226928711 + ], + [ + "▁Earthquake", + -13.879488945007324 + ], + [ + "▁refreshment", + -13.879496574401855 + ], + [ + "▁juveniles", + -13.879583358764648 + ], + [ + "▁porter", + -13.87960147857666 + ], + [ + "▁rearing", + -13.879606246948242 + ], + [ + "▁typos", + -13.879631996154785 + ], + [ + "hod", + -13.879648208618164 + ], + [ + "▁Seaside", + -13.87969970703125 + ], + [ + "zed", + -13.879718780517578 + ], + [ + "▁Healy", + -13.879725456237793 + ], + [ + "452", + -13.879752159118652 + ], + [ + "▁Least", + -13.879764556884766 + ], + [ + "▁HCV", + -13.879839897155762 + ], + [ + "▁Shaped", + -13.87991714477539 + ], + [ + "▁PLoS", + -13.87998104095459 + ], + [ + "▁skunk", + -13.879986763000488 + ], + [ + "▁commensurate", + -13.880010604858398 + ], + [ + "assembly", + -13.880026817321777 + ], + [ + "umb", + -13.88005542755127 + ], + [ + "▁procrastination", + -13.880097389221191 + ], + [ + "▁LAND", + -13.88010311126709 + ], + [ + "▁Voter", + -13.880144119262695 + ], + [ + "eek", + -13.880149841308594 + ], + [ + "▁319", + -13.880220413208008 + ], + [ + "▁chanted", + -13.880241394042969 + ], + [ + "454", + -13.88024616241455 + ], + [ + "projects", + -13.880292892456055 + ], + [ + "▁Scholastic", + -13.88034725189209 + ], + [ + "emba", + -13.88036823272705 + ], + [ + "▁Planetary", + -13.880379676818848 + ], + [ + "▁Dali", + -13.880514144897461 + ], + [ + "▁GIVE", + -13.880559921264648 + ], + [ + "▁shuffling", + -13.88060188293457 + ], + [ + "▁annexed", + -13.880602836608887 + ], + [ + "▁Whisky", + -13.880688667297363 + ], + [ + "strip", + -13.880718231201172 + ], + [ + "idia", + -13.88077449798584 + ], + [ + "▁Ghosts", + -13.880777359008789 + ], + [ + "jr", + -13.8807954788208 + ], + [ + "▁Westport", + -13.880863189697266 + ], + [ + "wink", + -13.880870819091797 + ], + [ + "▁unenforceable", + -13.880898475646973 + ], + [ + "GFP", + -13.880903244018555 + ], + [ + "▁POW", + -13.880903244018555 + ], + [ + "▁Wishes", + -13.880941390991211 + ], + [ + "476", + -13.880949020385742 + ], + [ + "pump", + -13.880974769592285 + ], + [ + "▁snooze", + -13.881047248840332 + ], + [ + "▁Emilia", + -13.881064414978027 + ], + [ + "vali", + -13.881078720092773 + ], + [ + "▁supremely", + -13.88107967376709 + ], + [ + "▁Bundy", + -13.881092071533203 + ], + [ + "▁Curiosity", + -13.88115119934082 + ], + [ + "▁OIL", + -13.881209373474121 + ], + [ + "AST", + -13.881279945373535 + ], + [ + "▁Subs", + -13.881288528442383 + ], + [ + "▁Hannibal", + -13.881317138671875 + ], + [ + "行", + -13.881317138671875 + ], + [ + "▁cytokine", + -13.881324768066406 + ], + [ + "▁mart", + -13.881355285644531 + ], + [ + "▁Tanks", + -13.881380081176758 + ], + [ + "▁hoe", + -13.881392478942871 + ], + [ + "▁Hos", + -13.881420135498047 + ], + [ + "▁pines", + -13.881462097167969 + ], + [ + "▁carer", + -13.88148307800293 + ], + [ + "▁Rasmussen", + -13.881523132324219 + ], + [ + "▁grinders", + -13.881531715393066 + ], + [ + "illian", + -13.88154411315918 + ], + [ + "▁Escorts", + -13.881552696228027 + ], + [ + "▁DuPont", + -13.881573677062988 + ], + [ + "▁nourished", + -13.881621360778809 + ], + [ + "Given", + -13.881643295288086 + ], + [ + "▁monograph", + -13.881668090820312 + ], + [ + "▁Mammoth", + -13.88168716430664 + ], + [ + "EUR", + -13.881698608398438 + ], + [ + "▁Serenity", + -13.881732940673828 + ], + [ + "▁FIR", + -13.881790161132812 + ], + [ + "iler", + -13.881796836853027 + ], + [ + "▁acoustics", + -13.881820678710938 + ], + [ + "467", + -13.881877899169922 + ], + [ + "▁MED", + -13.881909370422363 + ], + [ + "▁bootstrap", + -13.881916999816895 + ], + [ + "▁melatonin", + -13.881943702697754 + ], + [ + "▁п", + -13.882001876831055 + ], + [ + "▁Firmware", + -13.882004737854004 + ], + [ + "▁afterthought", + -13.882011413574219 + ], + [ + "▁Mughal", + -13.88204288482666 + ], + [ + "▁Canine", + -13.882049560546875 + ], + [ + "▁awry", + -13.882084846496582 + ], + [ + "seekers", + -13.882111549377441 + ], + [ + "▁Claremont", + -13.882214546203613 + ], + [ + "ал", + -13.882231712341309 + ], + [ + "complex", + -13.882232666015625 + ], + [ + "▁fx", + -13.882234573364258 + ], + [ + "▁Dolan", + -13.882244110107422 + ], + [ + "CLE", + -13.882245063781738 + ], + [ + "▁Accuracy", + -13.882246017456055 + ], + [ + "scott", + -13.882274627685547 + ], + [ + "▁choirs", + -13.882292747497559 + ], + [ + "GRA", + -13.882295608520508 + ], + [ + "▁Lawmakers", + -13.882316589355469 + ], + [ + "▁genomics", + -13.882349014282227 + ], + [ + "▁Coyote", + -13.8823881149292 + ], + [ + "▁alkali", + -13.882393836975098 + ], + [ + "면", + -13.88241958618164 + ], + [ + "▁Pha", + -13.882442474365234 + ], + [ + "▁Ses", + -13.882454872131348 + ], + [ + "FIG", + -13.88250732421875 + ], + [ + "▁expectant", + -13.88257122039795 + ], + [ + "▁Mikey", + -13.882617950439453 + ], + [ + "Logic", + -13.882625579833984 + ], + [ + "▁llama", + -13.882633209228516 + ], + [ + "MMA", + -13.882641792297363 + ], + [ + "▁hypothesized", + -13.882662773132324 + ], + [ + "655", + -13.88267993927002 + ], + [ + "▁Commonly", + -13.882718086242676 + ], + [ + "nonsense", + -13.882732391357422 + ], + [ + "▁Adwords", + -13.882749557495117 + ], + [ + "▁Kg", + -13.882820129394531 + ], + [ + "TAC", + -13.882852554321289 + ], + [ + "▁comme", + -13.883045196533203 + ], + [ + "▁martyr", + -13.88309383392334 + ], + [ + "Die", + -13.883111953735352 + ], + [ + "struck", + -13.883112907409668 + ], + [ + "▁Toad", + -13.883125305175781 + ], + [ + "▁Daimler", + -13.883139610290527 + ], + [ + "▁smudge", + -13.883139610290527 + ], + [ + "▁Removed", + -13.883147239685059 + ], + [ + "immer", + -13.88315200805664 + ], + [ + "431", + -13.883162498474121 + ], + [ + "hitter", + -13.883176803588867 + ], + [ + "agar", + -13.88318920135498 + ], + [ + "▁woodlands", + -13.883206367492676 + ], + [ + "398", + -13.883220672607422 + ], + [ + "Title", + -13.883325576782227 + ], + [ + "▁gli", + -13.88333797454834 + ], + [ + "▁normalization", + -13.883393287658691 + ], + [ + "wh", + -13.883415222167969 + ], + [ + "▁truthfully", + -13.883444786071777 + ], + [ + "▁irons", + -13.88344669342041 + ], + [ + "▁ibuprofen", + -13.883475303649902 + ], + [ + "▁doubting", + -13.883512496948242 + ], + [ + "426", + -13.883535385131836 + ], + [ + "▁Favorites", + -13.88357925415039 + ], + [ + "▁Petrol", + -13.88365650177002 + ], + [ + "Close", + -13.883672714233398 + ], + [ + "▁Chichester", + -13.883694648742676 + ], + [ + "526", + -13.883817672729492 + ], + [ + "▁prelude", + -13.883844375610352 + ], + [ + "890", + -13.883846282958984 + ], + [ + "▁pituitary", + -13.883865356445312 + ], + [ + "▁bacterium", + -13.883871078491211 + ], + [ + "▁infrequent", + -13.883888244628906 + ], + [ + "▁monolithic", + -13.88390064239502 + ], + [ + "▁orchestras", + -13.8839111328125 + ], + [ + "▁Sausage", + -13.883941650390625 + ], + [ + "▁Schumacher", + -13.883952140808105 + ], + [ + "broker", + -13.883991241455078 + ], + [ + "▁Seminole", + -13.883992195129395 + ], + [ + "▁informally", + -13.884001731872559 + ], + [ + "▁Landlord", + -13.884066581726074 + ], + [ + "▁tenacious", + -13.884068489074707 + ], + [ + "kker", + -13.884077072143555 + ], + [ + "▁ppl", + -13.884136199951172 + ], + [ + "▁insuring", + -13.884159088134766 + ], + [ + "▁Batt", + -13.884244918823242 + ], + [ + "▁fait", + -13.884244918823242 + ], + [ + "▁scourge", + -13.884349822998047 + ], + [ + "mbling", + -13.884368896484375 + ], + [ + "▁Signatures", + -13.884376525878906 + ], + [ + "▁Silhouette", + -13.884392738342285 + ], + [ + "MES", + -13.884397506713867 + ], + [ + "▁stimulant", + -13.884418487548828 + ], + [ + "▁BEAUTIFUL", + -13.88443660736084 + ], + [ + "▁Nikola", + -13.88443660736084 + ], + [ + "wort", + -13.884440422058105 + ], + [ + "▁cryptographic", + -13.884446144104004 + ], + [ + "▁Gent", + -13.884474754333496 + ], + [ + "bok", + -13.884541511535645 + ], + [ + "▁Wid", + -13.884584426879883 + ], + [ + "▁Puff", + -13.884600639343262 + ], + [ + "▁Penh", + -13.884603500366211 + ], + [ + "▁Gott", + -13.884617805480957 + ], + [ + "▁Seri", + -13.884621620178223 + ], + [ + "▁EK", + -13.8846435546875 + ], + [ + "▁Marissa", + -13.884698867797852 + ], + [ + "Friends", + -13.88474178314209 + ], + [ + "oza", + -13.884799003601074 + ], + [ + "▁lasagna", + -13.884876251220703 + ], + [ + "▁urbanization", + -13.884878158569336 + ], + [ + "jerk", + -13.884904861450195 + ], + [ + "Ocean", + -13.884960174560547 + ], + [ + "▁Researcher", + -13.884976387023926 + ], + [ + "▁QUALITY", + -13.884989738464355 + ], + [ + "▁Tito", + -13.885005950927734 + ], + [ + "▁marketable", + -13.88502311706543 + ], + [ + "▁somber", + -13.885042190551758 + ], + [ + "▁Moth", + -13.885076522827148 + ], + [ + "▁Solidarity", + -13.885090827941895 + ], + [ + "▁nurseries", + -13.88510799407959 + ], + [ + "▁freshen", + -13.885185241699219 + ], + [ + "pped", + -13.885194778442383 + ], + [ + "ラ", + -13.88526725769043 + ], + [ + "▁overtaken", + -13.88531494140625 + ], + [ + "▁throats", + -13.88534164428711 + ], + [ + "Brain", + -13.885342597961426 + ], + [ + "▁Tit", + -13.885360717773438 + ], + [ + "inu", + -13.885364532470703 + ], + [ + "▁swiss", + -13.885427474975586 + ], + [ + "Wolf", + -13.885477066040039 + ], + [ + "▁Vee", + -13.885502815246582 + ], + [ + "CCA", + -13.885506629943848 + ], + [ + "▁Typhoon", + -13.885525703430176 + ], + [ + "▁functioned", + -13.885555267333984 + ], + [ + "▁pacific", + -13.885679244995117 + ], + [ + "▁perfectionist", + -13.8856840133667 + ], + [ + "▁ZERO", + -13.885716438293457 + ], + [ + "Å", + -13.8857421875 + ], + [ + "▁Forks", + -13.885787010192871 + ], + [ + "▁backdoor", + -13.885812759399414 + ], + [ + "▁herbicides", + -13.885818481445312 + ], + [ + "resources", + -13.885923385620117 + ], + [ + "▁dugout", + -13.885954856872559 + ], + [ + "▁discloses", + -13.885997772216797 + ], + [ + "component", + -13.886005401611328 + ], + [ + "▁classifieds", + -13.886014938354492 + ], + [ + "▁Waffle", + -13.886016845703125 + ], + [ + "▁extremity", + -13.886037826538086 + ], + [ + "▁Dose", + -13.886045455932617 + ], + [ + "verb", + -13.886107444763184 + ], + [ + "▁Scatter", + -13.886130332946777 + ], + [ + "▁Bhatt", + -13.886197090148926 + ], + [ + "▁Kimberley", + -13.886260032653809 + ], + [ + "Element", + -13.886322975158691 + ], + [ + "▁Bachelors", + -13.886364936828613 + ], + [ + "rien", + -13.886367797851562 + ], + [ + "▁prix", + -13.886374473571777 + ], + [ + "▁hairdresser", + -13.886384010314941 + ], + [ + "Pod", + -13.886453628540039 + ], + [ + "▁toyota", + -13.886494636535645 + ], + [ + "▁Zulu", + -13.886495590209961 + ], + [ + "specifically", + -13.886527061462402 + ], + [ + "▁MOVE", + -13.886533737182617 + ], + [ + "▁dungeons", + -13.886645317077637 + ], + [ + "▁Ret", + -13.886679649353027 + ], + [ + "OTA", + -13.886741638183594 + ], + [ + "ambu", + -13.886768341064453 + ], + [ + "451", + -13.88676929473877 + ], + [ + "▁kilos", + -13.88679313659668 + ], + [ + "punch", + -13.88682746887207 + ], + [ + "hap", + -13.88683795928955 + ], + [ + "blocking", + -13.886853218078613 + ], + [ + "▁Blueberry", + -13.88691234588623 + ], + [ + "▁Lesser", + -13.886918067932129 + ], + [ + "▁david", + -13.886927604675293 + ], + [ + "▁Blanchard", + -13.88695240020752 + ], + [ + "▁femme", + -13.886963844299316 + ], + [ + "ש", + -13.886969566345215 + ], + [ + "ITS", + -13.887038230895996 + ], + [ + "▁bh", + -13.887051582336426 + ], + [ + "▁DDS", + -13.887055397033691 + ], + [ + "deo", + -13.887123107910156 + ], + [ + "▁fatigued", + -13.887129783630371 + ], + [ + "▁sab", + -13.887133598327637 + ], + [ + "▁eastward", + -13.887147903442383 + ], + [ + "Candy", + -13.8871488571167 + ], + [ + "▁Deutschland", + -13.887163162231445 + ], + [ + "processor", + -13.88718318939209 + ], + [ + "▁silt", + -13.887194633483887 + ], + [ + "▁inexplicable", + -13.887197494506836 + ], + [ + "▁cowboys", + -13.887211799621582 + ], + [ + "▁displeasure", + -13.887227058410645 + ], + [ + "▁Boh", + -13.887260437011719 + ], + [ + "alien", + -13.887296676635742 + ], + [ + "Shield", + -13.887385368347168 + ], + [ + "ZO", + -13.887425422668457 + ], + [ + "▁snowstorm", + -13.88747787475586 + ], + [ + "▁Wad", + -13.88748550415039 + ], + [ + "▁Hamm", + -13.88748836517334 + ], + [ + "▁exemplifies", + -13.887491226196289 + ], + [ + "▁Macs", + -13.887511253356934 + ], + [ + "Ware", + -13.88754653930664 + ], + [ + "▁Parma", + -13.88754653930664 + ], + [ + "▁Turtles", + -13.887643814086914 + ], + [ + "▁criticise", + -13.88764476776123 + ], + [ + "brow", + -13.887653350830078 + ], + [ + "lut", + -13.887693405151367 + ], + [ + "▁mutated", + -13.887701034545898 + ], + [ + "rut", + -13.887744903564453 + ], + [ + "▁unsatisfactory", + -13.887754440307617 + ], + [ + "▁concave", + -13.88781452178955 + ], + [ + "▁Trips", + -13.887856483459473 + ], + [ + "▁crumb", + -13.887961387634277 + ], + [ + "Cur", + -13.888001441955566 + ], + [ + "▁halting", + -13.888023376464844 + ], + [ + "▁classifier", + -13.8880615234375 + ], + [ + "▁replicas", + -13.888096809387207 + ], + [ + "occupied", + -13.888121604919434 + ], + [ + "▁Integral", + -13.888123512268066 + ], + [ + "▁farce", + -13.888132095336914 + ], + [ + "▁splashed", + -13.888145446777344 + ], + [ + "▁rattan", + -13.888164520263672 + ], + [ + "VF", + -13.88817310333252 + ], + [ + "▁prosecutions", + -13.888199806213379 + ], + [ + "▁시", + -13.888206481933594 + ], + [ + "american", + -13.8882417678833 + ], + [ + "▁mirroring", + -13.888262748718262 + ], + [ + "441", + -13.888340950012207 + ], + [ + "▁creeks", + -13.88834285736084 + ], + [ + "▁fellowships", + -13.888349533081055 + ], + [ + "▁sul", + -13.888354301452637 + ], + [ + "▁infidelity", + -13.88840389251709 + ], + [ + "Australian", + -13.888476371765137 + ], + [ + "meters", + -13.888507843017578 + ], + [ + "nap", + -13.88851547241211 + ], + [ + "EEN", + -13.888542175292969 + ], + [ + "▁Riva", + -13.888591766357422 + ], + [ + "▁Reis", + -13.88861083984375 + ], + [ + "mov", + -13.888649940490723 + ], + [ + "▁dy", + -13.888649940490723 + ], + [ + "▁bodywork", + -13.888684272766113 + ], + [ + "▁Hodgson", + -13.888825416564941 + ], + [ + "▁Cohn", + -13.88892936706543 + ], + [ + "▁slimmer", + -13.888937950134277 + ], + [ + "器", + -13.888944625854492 + ], + [ + "▁282", + -13.888981819152832 + ], + [ + "PY", + -13.88899040222168 + ], + [ + "KEY", + -13.889018058776855 + ], + [ + "▁CRI", + -13.889019966125488 + ], + [ + "608", + -13.88902759552002 + ], + [ + "▁Barca", + -13.889068603515625 + ], + [ + "▁Stoppers", + -13.889089584350586 + ], + [ + "foam", + -13.889225006103516 + ], + [ + "▁Globes", + -13.88924789428711 + ], + [ + "▁Lett", + -13.88924789428711 + ], + [ + "▁Cheapest", + -13.889249801635742 + ], + [ + "▁Fleur", + -13.889273643493652 + ], + [ + "▁sprite", + -13.889307975769043 + ], + [ + "▁Crusaders", + -13.889366149902344 + ], + [ + "CHI", + -13.889381408691406 + ], + [ + "▁exo", + -13.889452934265137 + ], + [ + "▁MTB", + -13.889485359191895 + ], + [ + "▁rabid", + -13.889514923095703 + ], + [ + "▁KEEP", + -13.889542579650879 + ], + [ + "▁Mehta", + -13.889552116394043 + ], + [ + "Wiki", + -13.889573097229004 + ], + [ + "487", + -13.889579772949219 + ], + [ + "older", + -13.8895902633667 + ], + [ + "enberger", + -13.889594078063965 + ], + [ + "4°", + -13.889595031738281 + ], + [ + "▁secretaries", + -13.889656066894531 + ], + [ + "▁mismanagement", + -13.889657020568848 + ], + [ + "▁SAG", + -13.889718055725098 + ], + [ + "▁evangelism", + -13.889775276184082 + ], + [ + "▁heresy", + -13.889787673950195 + ], + [ + "jump", + -13.889894485473633 + ], + [ + "nzo", + -13.88992977142334 + ], + [ + "▁profess", + -13.889941215515137 + ], + [ + "▁Recreational", + -13.889982223510742 + ], + [ + "▁dexterity", + -13.889993667602539 + ], + [ + "▁cardamom", + -13.890007019042969 + ], + [ + "▁pigmented", + -13.89002513885498 + ], + [ + "▁pesos", + -13.89004135131836 + ], + [ + "▁vibrancy", + -13.890064239501953 + ], + [ + "▁fatality", + -13.890068054199219 + ], + [ + "▁279", + -13.890107154846191 + ], + [ + "violence", + -13.890148162841797 + ], + [ + "▁Kami", + -13.89019775390625 + ], + [ + "▁Ugandan", + -13.89021110534668 + ], + [ + "▁Jennie", + -13.890236854553223 + ], + [ + "▁dissolves", + -13.890247344970703 + ], + [ + "▁Straits", + -13.890254974365234 + ], + [ + "▁canyons", + -13.89025592803955 + ], + [ + "▁bod", + -13.890340805053711 + ], + [ + "▁glee", + -13.890380859375 + ], + [ + "arity", + -13.890382766723633 + ], + [ + "▁clarifies", + -13.89040756225586 + ], + [ + "▁cubs", + -13.890435218811035 + ], + [ + "▁Anfield", + -13.890459060668945 + ], + [ + "sighted", + -13.890487670898438 + ], + [ + "▁Recover", + -13.890504837036133 + ], + [ + "▁comrade", + -13.89051628112793 + ], + [ + "▁robberies", + -13.890525817871094 + ], + [ + "▁Alfonso", + -13.890530586242676 + ], + [ + "▁meringue", + -13.89057445526123 + ], + [ + "▁agri", + -13.890584945678711 + ], + [ + "▁onlookers", + -13.890618324279785 + ], + [ + "▁Sampson", + -13.890625 + ], + [ + "▁Moved", + -13.890768051147461 + ], + [ + "bbi", + -13.890809059143066 + ], + [ + "▁Oster", + -13.890825271606445 + ], + [ + "sant", + -13.890942573547363 + ], + [ + "▁Merri", + -13.89096450805664 + ], + [ + "▁dermal", + -13.89103889465332 + ], + [ + "▁apologizing", + -13.891119003295898 + ], + [ + "▁PROJECT", + -13.891138076782227 + ], + [ + "▁ABB", + -13.89118766784668 + ], + [ + "seam", + -13.891201972961426 + ], + [ + "▁Retriever", + -13.891266822814941 + ], + [ + "▁Ongoing", + -13.891283988952637 + ], + [ + "▁Calle", + -13.891332626342773 + ], + [ + "▁glassware", + -13.891371726989746 + ], + [ + "▁houston", + -13.891374588012695 + ], + [ + "▁Montréal", + -13.891387939453125 + ], + [ + "▁10000", + -13.891427993774414 + ], + [ + "▁coyote", + -13.891446113586426 + ], + [ + "▁Hogg", + -13.891451835632324 + ], + [ + "▁Announcement", + -13.891484260559082 + ], + [ + "justice", + -13.891485214233398 + ], + [ + "▁Seals", + -13.891555786132812 + ], + [ + "▁USED", + -13.891575813293457 + ], + [ + "▁Tris", + -13.891580581665039 + ], + [ + "▁teeny", + -13.891593933105469 + ], + [ + "▁Briefing", + -13.891594886779785 + ], + [ + "▁calamity", + -13.891629219055176 + ], + [ + "▁Nia", + -13.891644477844238 + ], + [ + "▁Conditioners", + -13.891663551330566 + ], + [ + "▁monday", + -13.89168930053711 + ], + [ + "▁syncing", + -13.891715049743652 + ], + [ + "▁werewolf", + -13.89172649383545 + ], + [ + "stal", + -13.891770362854004 + ], + [ + "▁antigens", + -13.891800880432129 + ], + [ + "▁mol", + -13.891804695129395 + ], + [ + "▁Jes", + -13.891815185546875 + ], + [ + "▁Slaughter", + -13.891855239868164 + ], + [ + "▁beep", + -13.891910552978516 + ], + [ + "▁highlighter", + -13.891921997070312 + ], + [ + "▁arcs", + -13.891928672790527 + ], + [ + "▁Consensus", + -13.891955375671387 + ], + [ + "▁FACT", + -13.891955375671387 + ], + [ + "▁REV", + -13.891958236694336 + ], + [ + "▁apologised", + -13.891961097717285 + ], + [ + "▁DRC", + -13.892009735107422 + ], + [ + "emphasis", + -13.892048835754395 + ], + [ + "▁amalgamation", + -13.892078399658203 + ], + [ + "▁Activate", + -13.892088890075684 + ], + [ + "▁Karaoke", + -13.892104148864746 + ], + [ + "Peace", + -13.892114639282227 + ], + [ + "▁Primarily", + -13.892132759094238 + ], + [ + "▁360°", + -13.892156600952148 + ], + [ + "▁XIII", + -13.89217472076416 + ], + [ + "▁Niko", + -13.892197608947754 + ], + [ + "broad", + -13.89228630065918 + ], + [ + "▁Cobalt", + -13.892294883728027 + ], + [ + "▁Marg", + -13.892333030700684 + ], + [ + "▁amuse", + -13.892378807067871 + ], + [ + "dogs", + -13.89239501953125 + ], + [ + "▁Tulip", + -13.892395973205566 + ], + [ + "▁glean", + -13.892484664916992 + ], + [ + "▁skinned", + -13.892518997192383 + ], + [ + "▁Kiel", + -13.8925199508667 + ], + [ + "ulis", + -13.892598152160645 + ], + [ + "▁uniformed", + -13.892619132995605 + ], + [ + "▁Cabrera", + -13.89268684387207 + ], + [ + "▁Tested", + -13.892706871032715 + ], + [ + "CPA", + -13.89271068572998 + ], + [ + "▁Penta", + -13.892733573913574 + ], + [ + "▁emphatically", + -13.892755508422852 + ], + [ + "ssy", + -13.892792701721191 + ], + [ + "▁Moves", + -13.89285659790039 + ], + [ + "bud", + -13.892874717712402 + ], + [ + "Dia", + -13.892922401428223 + ], + [ + "▁spoils", + -13.893095016479492 + ], + [ + "▁Samba", + -13.893147468566895 + ], + [ + "▁methodical", + -13.893150329589844 + ], + [ + "▁Penal", + -13.893189430236816 + ], + [ + "▁Gael", + -13.89322280883789 + ], + [ + "▁Lambda", + -13.893328666687012 + ], + [ + "▁283", + -13.893329620361328 + ], + [ + "▁Ghanaian", + -13.89334487915039 + ], + [ + "463", + -13.893359184265137 + ], + [ + "▁midsole", + -13.89336109161377 + ], + [ + "▁Thorpe", + -13.893362998962402 + ], + [ + "enhancing", + -13.893366813659668 + ], + [ + "▁Pena", + -13.893379211425781 + ], + [ + "Drop", + -13.89338207244873 + ], + [ + "▁Rah", + -13.893428802490234 + ], + [ + "▁Wim", + -13.893445014953613 + ], + [ + "▁Compatibility", + -13.893564224243164 + ], + [ + "▁carol", + -13.893607139587402 + ], + [ + "▁USER", + -13.893616676330566 + ], + [ + "dg", + -13.893655776977539 + ], + [ + "▁Dancer", + -13.893674850463867 + ], + [ + "reactive", + -13.893688201904297 + ], + [ + "extremely", + -13.893733024597168 + ], + [ + "▁nemesis", + -13.893791198730469 + ], + [ + "▁Airborne", + -13.89379596710205 + ], + [ + "▁Faithful", + -13.893806457519531 + ], + [ + "▁veiled", + -13.893834114074707 + ], + [ + "▁Amin", + -13.893872261047363 + ], + [ + "▁millionaires", + -13.893884658813477 + ], + [ + "HV", + -13.893892288208008 + ], + [ + "▁Crater", + -13.893895149230957 + ], + [ + "▁Johanna", + -13.893943786621094 + ], + [ + "▁Backsplash", + -13.893950462341309 + ], + [ + "▁Nishi", + -13.893957138061523 + ], + [ + "▁Wynne", + -13.893975257873535 + ], + [ + "▁Roundtable", + -13.893978118896484 + ], + [ + "▁figurines", + -13.894014358520508 + ], + [ + "▁Fascinating", + -13.89409351348877 + ], + [ + "▁unwise", + -13.894194602966309 + ], + [ + "▁स", + -13.894197463989258 + ], + [ + "453", + -13.894213676452637 + ], + [ + "▁Martini", + -13.894256591796875 + ], + [ + "▁Gladiator", + -13.894305229187012 + ], + [ + "▁redeeming", + -13.894381523132324 + ], + [ + "▁Intent", + -13.894414901733398 + ], + [ + "▁rooftops", + -13.894451141357422 + ], + [ + "ICT", + -13.894469261169434 + ], + [ + "zik", + -13.894502639770508 + ], + [ + "▁ISIL", + -13.894502639770508 + ], + [ + "▁botched", + -13.894506454467773 + ], + [ + "▁surgically", + -13.894536972045898 + ], + [ + "▁twigs", + -13.894549369812012 + ], + [ + "▁Connectivity", + -13.894551277160645 + ], + [ + "▁rumour", + -13.894559860229492 + ], + [ + "▁thumbnails", + -13.894645690917969 + ], + [ + "Rich", + -13.894689559936523 + ], + [ + "▁cel", + -13.894715309143066 + ], + [ + "Bel", + -13.894746780395508 + ], + [ + "loft", + -13.89474868774414 + ], + [ + "392", + -13.894752502441406 + ], + [ + "▁meteorologist", + -13.89478874206543 + ], + [ + "Wing", + -13.894901275634766 + ], + [ + "▁Eastman", + -13.894908905029297 + ], + [ + "▁Wanderers", + -13.894918441772461 + ], + [ + "下", + -13.89492130279541 + ], + [ + "uris", + -13.894935607910156 + ], + [ + "FIT", + -13.894936561584473 + ], + [ + "nec", + -13.894987106323242 + ], + [ + "▁Harcourt", + -13.895058631896973 + ], + [ + "▁psychiatrists", + -13.895065307617188 + ], + [ + "▁raucous", + -13.895073890686035 + ], + [ + "▁interstellar", + -13.895120620727539 + ], + [ + "▁sequins", + -13.89515495300293 + ], + [ + "▁dissolving", + -13.895167350769043 + ], + [ + "▁س", + -13.895200729370117 + ], + [ + "▁utopian", + -13.895219802856445 + ], + [ + "▁cayenne", + -13.895222663879395 + ], + [ + "pati", + -13.89523983001709 + ], + [ + "nez", + -13.895262718200684 + ], + [ + "▁Referee", + -13.89527702331543 + ], + [ + "▁Tripoli", + -13.89527702331543 + ], + [ + "▁censored", + -13.895352363586426 + ], + [ + "▁gong", + -13.895354270935059 + ], + [ + "▁causation", + -13.895366668701172 + ], + [ + "▁pooling", + -13.895368576049805 + ], + [ + "▁Jodie", + -13.895371437072754 + ], + [ + "oops", + -13.895413398742676 + ], + [ + "▁Sykes", + -13.895459175109863 + ], + [ + "▁HEALTH", + -13.895465850830078 + ], + [ + "▁creeps", + -13.895486831665039 + ], + [ + "▁orchestration", + -13.895524024963379 + ], + [ + "▁wasteland", + -13.895538330078125 + ], + [ + "▁Slider", + -13.895580291748047 + ], + [ + "்", + -13.895584106445312 + ], + [ + "ес", + -13.895589828491211 + ], + [ + "▁Bikini", + -13.895611763000488 + ], + [ + "▁PERSONAL", + -13.895635604858398 + ], + [ + "트", + -13.895676612854004 + ], + [ + "▁Pedal", + -13.895685195922852 + ], + [ + "eko", + -13.895779609680176 + ], + [ + "▁monoclonal", + -13.895780563354492 + ], + [ + "▁fright", + -13.895790100097656 + ], + [ + "642", + -13.895797729492188 + ], + [ + "484", + -13.895824432373047 + ], + [ + "▁nerds", + -13.895882606506348 + ], + [ + "▁UCI", + -13.895883560180664 + ], + [ + "▁lather", + -13.895922660827637 + ], + [ + "▁Printers", + -13.895954132080078 + ], + [ + "458", + -13.895977020263672 + ], + [ + "▁pimples", + -13.895999908447266 + ], + [ + "▁Eurasian", + -13.896056175231934 + ], + [ + "▁invocation", + -13.896117210388184 + ], + [ + "▁rollercoaster", + -13.896125793457031 + ], + [ + "▁purifier", + -13.89613151550293 + ], + [ + "PET", + -13.896154403686523 + ], + [ + "▁celeb", + -13.89620590209961 + ], + [ + "▁Roxy", + -13.896259307861328 + ], + [ + "BX", + -13.896292686462402 + ], + [ + "▁Prim", + -13.89631462097168 + ], + [ + "KD", + -13.896316528320312 + ], + [ + "▁Choo", + -13.896320343017578 + ], + [ + "ит", + -13.896328926086426 + ], + [ + "▁Quill", + -13.89633560180664 + ], + [ + "radical", + -13.89633846282959 + ], + [ + "recognized", + -13.896347045898438 + ], + [ + "▁Turing", + -13.896369934082031 + ], + [ + "ι", + -13.896377563476562 + ], + [ + "▁sont", + -13.896385192871094 + ], + [ + "▁Coates", + -13.896387100219727 + ], + [ + "pens", + -13.896402359008789 + ], + [ + "▁primates", + -13.896422386169434 + ], + [ + "York", + -13.896442413330078 + ], + [ + "▁ei", + -13.896496772766113 + ], + [ + "▁smartwatch", + -13.896498680114746 + ], + [ + "▁debatable", + -13.896501541137695 + ], + [ + "▁willful", + -13.89651870727539 + ], + [ + "▁PCC", + -13.8965425491333 + ], + [ + "▁Hitch", + -13.89656925201416 + ], + [ + "▁swath", + -13.896571159362793 + ], + [ + "▁groupings", + -13.896585464477539 + ], + [ + "라", + -13.896607398986816 + ], + [ + "ORE", + -13.896617889404297 + ], + [ + "474", + -13.896637916564941 + ], + [ + "▁redesigning", + -13.8966646194458 + ], + [ + "▁Statute", + -13.896748542785645 + ], + [ + "▁conveniences", + -13.896757125854492 + ], + [ + "▁CAPA", + -13.89683723449707 + ], + [ + "▁mediators", + -13.896856307983398 + ], + [ + "▁Sindh", + -13.896870613098145 + ], + [ + "connection", + -13.896905899047852 + ], + [ + "▁COURT", + -13.896944999694824 + ], + [ + "bg", + -13.896964073181152 + ], + [ + "ritt", + -13.896970748901367 + ], + [ + "▁purportedly", + -13.897013664245605 + ], + [ + "ends", + -13.897114753723145 + ], + [ + "▁dogged", + -13.897124290466309 + ], + [ + "▁Shir", + -13.897151947021484 + ], + [ + "▁subgroup", + -13.897247314453125 + ], + [ + "▁Bara", + -13.897315979003906 + ], + [ + "▁heli", + -13.897336959838867 + ], + [ + "▁Automatically", + -13.897397994995117 + ], + [ + "yte", + -13.897449493408203 + ], + [ + "▁ischemic", + -13.897467613220215 + ], + [ + "ector", + -13.897489547729492 + ], + [ + "ESA", + -13.897521018981934 + ], + [ + "▁Kew", + -13.897541046142578 + ], + [ + "▁tem", + -13.897574424743652 + ], + [ + "yev", + -13.897590637207031 + ], + [ + "▁canceling", + -13.89769458770752 + ], + [ + "▁lube", + -13.897699356079102 + ], + [ + "▁eLearning", + -13.897747993469238 + ], + [ + "704", + -13.89779281616211 + ], + [ + "crack", + -13.897855758666992 + ], + [ + "ETT", + -13.897900581359863 + ], + [ + "▁Curb", + -13.897921562194824 + ], + [ + "vest", + -13.898036003112793 + ], + [ + "aaa", + -13.898096084594727 + ], + [ + "ées", + -13.898141860961914 + ], + [ + "▁Chor", + -13.898181915283203 + ], + [ + "▁Zor", + -13.898194313049316 + ], + [ + "▁gable", + -13.898224830627441 + ], + [ + "▁Moshe", + -13.898273468017578 + ], + [ + "Suite", + -13.898274421691895 + ], + [ + "▁exfoliate", + -13.898285865783691 + ], + [ + "561", + -13.898309707641602 + ], + [ + "▁Brea", + -13.898317337036133 + ], + [ + "▁cuddly", + -13.898391723632812 + ], + [ + "lita", + -13.898392677307129 + ], + [ + "▁Ches", + -13.898405075073242 + ], + [ + "0°", + -13.898406028747559 + ], + [ + "▁Dies", + -13.89841365814209 + ], + [ + "▁penultimate", + -13.898414611816406 + ], + [ + "▁Syllabus", + -13.898418426513672 + ], + [ + "▁cpu", + -13.898447036743164 + ], + [ + "▁AIA", + -13.898487091064453 + ], + [ + "Boston", + -13.898534774780273 + ], + [ + "▁Magn", + -13.898558616638184 + ], + [ + "▁Minimal", + -13.898584365844727 + ], + [ + "LH", + -13.898702621459961 + ], + [ + "▁blob", + -13.898746490478516 + ], + [ + "Farm", + -13.898767471313477 + ], + [ + "▁incurring", + -13.89877700805664 + ], + [ + "▁Navarro", + -13.89879035949707 + ], + [ + "910", + -13.898811340332031 + ], + [ + "▁sinned", + -13.898843765258789 + ], + [ + "427", + -13.898853302001953 + ], + [ + "▁Bunker", + -13.898955345153809 + ], + [ + "▁Remembering", + -13.898974418640137 + ], + [ + "housing", + -13.89901065826416 + ], + [ + "▁dissipate", + -13.899031639099121 + ], + [ + "än", + -13.899032592773438 + ], + [ + "▁checklists", + -13.899065017700195 + ], + [ + "ث", + -13.899081230163574 + ], + [ + "▁carriages", + -13.89912223815918 + ], + [ + "▁Lazar", + -13.899174690246582 + ], + [ + "▁Gaul", + -13.899179458618164 + ], + [ + "timer", + -13.899287223815918 + ], + [ + "öl", + -13.8993558883667 + ], + [ + "▁waterway", + -13.899356842041016 + ], + [ + "yak", + -13.899375915527344 + ], + [ + "obs", + -13.899394989013672 + ], + [ + "sul", + -13.89940357208252 + ], + [ + "▁hailing", + -13.899428367614746 + ], + [ + "▁Syndicate", + -13.899479866027832 + ], + [ + "▁Mech", + -13.899504661560059 + ], + [ + "▁Cf", + -13.899565696716309 + ], + [ + "shares", + -13.899571418762207 + ], + [ + "▁Astoria", + -13.899582862854004 + ], + [ + "һ", + -13.89959716796875 + ], + [ + "▁Numerical", + -13.899609565734863 + ], + [ + "▁1836", + -13.899652481079102 + ], + [ + "▁Kubernetes", + -13.899717330932617 + ], + [ + "▁hush", + -13.899733543395996 + ], + [ + "▁Arma", + -13.89974594116211 + ], + [ + "lect", + -13.899748802185059 + ], + [ + "▁waistline", + -13.899755477905273 + ], + [ + "▁Aesthetic", + -13.899779319763184 + ], + [ + "▁Issa", + -13.899779319763184 + ], + [ + "▁Bello", + -13.899811744689941 + ], + [ + "elin", + -13.899820327758789 + ], + [ + "545", + -13.899861335754395 + ], + [ + "▁prerogative", + -13.899863243103027 + ], + [ + "▁entourage", + -13.899877548217773 + ], + [ + "▁970", + -13.89990520477295 + ], + [ + "▁Roo", + -13.899921417236328 + ], + [ + "chamber", + -13.89995002746582 + ], + [ + "▁provenance", + -13.899950981140137 + ], + [ + "▁Introduce", + -13.899953842163086 + ], + [ + "▁Wants", + -13.899964332580566 + ], + [ + "tris", + -13.90000057220459 + ], + [ + "▁ZA", + -13.900004386901855 + ], + [ + "▁tau", + -13.900023460388184 + ], + [ + "▁Assessing", + -13.90010929107666 + ], + [ + "filling", + -13.90012264251709 + ], + [ + "▁Spiegel", + -13.900131225585938 + ], + [ + "express", + -13.900169372558594 + ], + [ + "▁Algorithms", + -13.900213241577148 + ], + [ + "roc", + -13.900263786315918 + ], + [ + "▁Nava", + -13.900272369384766 + ], + [ + "cheek", + -13.90036678314209 + ], + [ + "▁Emil", + -13.900435447692871 + ], + [ + "462", + -13.900444984436035 + ], + [ + "urant", + -13.900453567504883 + ], + [ + "▁intruders", + -13.9004545211792 + ], + [ + "▁Jimi", + -13.90047836303711 + ], + [ + "▁barista", + -13.900482177734375 + ], + [ + "▁Brandi", + -13.90048885345459 + ], + [ + "▁midweek", + -13.900489807128906 + ], + [ + "ween", + -13.900494575500488 + ], + [ + "▁GPUs", + -13.900527954101562 + ], + [ + "▁SKY", + -13.900548934936523 + ], + [ + "▁needn", + -13.900554656982422 + ], + [ + "▁MRT", + -13.900579452514648 + ], + [ + "▁modernized", + -13.90062427520752 + ], + [ + "▁obstructed", + -13.900626182556152 + ], + [ + "▁Logitech", + -13.900843620300293 + ], + [ + "▁Kab", + -13.900891304016113 + ], + [ + "▁Concentrate", + -13.900897979736328 + ], + [ + "▁Pou", + -13.900914192199707 + ], + [ + "▁agonizing", + -13.900954246520996 + ], + [ + "▁prim", + -13.900956153869629 + ], + [ + "▁Brookfield", + -13.900958061218262 + ], + [ + "▁finalizing", + -13.900975227355957 + ], + [ + "▁TYPE", + -13.900993347167969 + ], + [ + "▁Males", + -13.901015281677246 + ], + [ + "▁ionic", + -13.901028633117676 + ], + [ + "▁Hawke", + -13.90111255645752 + ], + [ + "▁avian", + -13.901117324829102 + ], + [ + "▁deliverance", + -13.901134490966797 + ], + [ + "▁Respiratory", + -13.901150703430176 + ], + [ + "▁mainframe", + -13.901180267333984 + ], + [ + "▁Tram", + -13.90119457244873 + ], + [ + "▁Cope", + -13.901196479797363 + ], + [ + "▁repetitions", + -13.901213645935059 + ], + [ + "editing", + -13.901315689086914 + ], + [ + "▁Discord", + -13.901322364807129 + ], + [ + "▁Pollard", + -13.901329040527344 + ], + [ + "▁failings", + -13.901381492614746 + ], + [ + "tivo", + -13.901384353637695 + ], + [ + "EEP", + -13.901424407958984 + ], + [ + "▁dependents", + -13.901434898376465 + ], + [ + "▁disclaims", + -13.901482582092285 + ], + [ + "▁atrophy", + -13.901528358459473 + ], + [ + "▁Compressor", + -13.90156364440918 + ], + [ + "ль", + -13.901568412780762 + ], + [ + "▁Jeffery", + -13.901627540588379 + ], + [ + "▁ascension", + -13.901631355285645 + ], + [ + "▁EMA", + -13.90163803100586 + ], + [ + "▁Richland", + -13.901740074157715 + ], + [ + "NYC", + -13.90176773071289 + ], + [ + "▁Rotten", + -13.901782035827637 + ], + [ + "▁tiling", + -13.901869773864746 + ], + [ + "▁Josiah", + -13.901899337768555 + ], + [ + "▁reinstate", + -13.901912689208984 + ], + [ + "▁meso", + -13.901924133300781 + ], + [ + "▁quorum", + -13.901958465576172 + ], + [ + "Lost", + -13.90199089050293 + ], + [ + "▁Buckeyes", + -13.90207576751709 + ], + [ + "▁Gand", + -13.902083396911621 + ], + [ + "challenge", + -13.902097702026367 + ], + [ + "▁Universidad", + -13.902119636535645 + ], + [ + "▁Accidents", + -13.902206420898438 + ], + [ + "Machine", + -13.902220726013184 + ], + [ + "ggie", + -13.902226448059082 + ], + [ + "еа", + -13.902237892150879 + ], + [ + "▁Kangaroo", + -13.902283668518066 + ], + [ + "XO", + -13.902295112609863 + ], + [ + "▁Strings", + -13.902303695678711 + ], + [ + "▁Swords", + -13.902322769165039 + ], + [ + "▁FAN", + -13.902348518371582 + ], + [ + "▁PUBLIC", + -13.902361869812012 + ], + [ + "xie", + -13.902364730834961 + ], + [ + "▁autographs", + -13.902408599853516 + ], + [ + "▁vanishing", + -13.902427673339844 + ], + [ + "ibel", + -13.902450561523438 + ], + [ + "▁pamphlets", + -13.902490615844727 + ], + [ + "▁mishap", + -13.902503967285156 + ], + [ + "minutes", + -13.902555465698242 + ], + [ + "wil", + -13.902639389038086 + ], + [ + "charging", + -13.90268325805664 + ], + [ + "tails", + -13.902693748474121 + ], + [ + "7000", + -13.902719497680664 + ], + [ + "EVER", + -13.90279769897461 + ], + [ + "▁Curran", + -13.902846336364746 + ], + [ + "▁mythological", + -13.902848243713379 + ], + [ + "tery", + -13.902873992919922 + ], + [ + "▁Dunbar", + -13.902915000915527 + ], + [ + "Had", + -13.902921676635742 + ], + [ + "▁passively", + -13.902946472167969 + ], + [ + "▁procuring", + -13.902997970581055 + ], + [ + "▁propped", + -13.903034210205078 + ], + [ + "▁Sek", + -13.903194427490234 + ], + [ + "▁numerals", + -13.903216361999512 + ], + [ + "▁grizzly", + -13.90322494506836 + ], + [ + "1964", + -13.903284072875977 + ], + [ + "SX", + -13.903302192687988 + ], + [ + "▁remixes", + -13.903312683105469 + ], + [ + "▁KJ", + -13.90332317352295 + ], + [ + "▁cruised", + -13.90335464477539 + ], + [ + "▁Giga", + -13.90341567993164 + ], + [ + "▁torches", + -13.903457641601562 + ], + [ + "taken", + -13.903459548950195 + ], + [ + "Hotel", + -13.903507232666016 + ], + [ + "▁Aladdin", + -13.903542518615723 + ], + [ + "meeting", + -13.903558731079102 + ], + [ + "naut", + -13.903596878051758 + ], + [ + "457", + -13.903633117675781 + ], + [ + "▁wiper", + -13.903678894042969 + ], + [ + "▁Andro", + -13.903719902038574 + ], + [ + "▁opium", + -13.90372085571289 + ], + [ + "▁Sheraton", + -13.9037446975708 + ], + [ + "dahl", + -13.90381145477295 + ], + [ + "Tuesday", + -13.903834342956543 + ], + [ + "ebe", + -13.903852462768555 + ], + [ + "Ryan", + -13.903858184814453 + ], + [ + "▁Accenture", + -13.903923988342285 + ], + [ + "▁Muhammadu", + -13.903972625732422 + ], + [ + "▁Worcestershire", + -13.90397834777832 + ], + [ + "▁Tijuana", + -13.903982162475586 + ], + [ + "▁charmed", + -13.903984069824219 + ], + [ + "akov", + -13.903996467590332 + ], + [ + "▁derivation", + -13.904019355773926 + ], + [ + "▁Fenton", + -13.904037475585938 + ], + [ + "▁quid", + -13.9041109085083 + ], + [ + "GV", + -13.904163360595703 + ], + [ + "yc", + -13.904180526733398 + ], + [ + "▁Bunk", + -13.904223442077637 + ], + [ + "▁Harman", + -13.904224395751953 + ], + [ + "▁McLeod", + -13.904253959655762 + ], + [ + "fg", + -13.904400825500488 + ], + [ + "▁Sticker", + -13.904404640197754 + ], + [ + "▁Stair", + -13.904407501220703 + ], + [ + "racial", + -13.90442943572998 + ], + [ + "lur", + -13.90445327758789 + ], + [ + "▁SECTION", + -13.904464721679688 + ], + [ + "▁homeostasis", + -13.904499053955078 + ], + [ + "yy", + -13.904504776000977 + ], + [ + "▁exudes", + -13.904532432556152 + ], + [ + "▁flaunt", + -13.904540061950684 + ], + [ + "▁scotch", + -13.904618263244629 + ], + [ + "tainment", + -13.904627799987793 + ], + [ + "barrel", + -13.90467357635498 + ], + [ + "▁Cleopatra", + -13.904678344726562 + ], + [ + "▁Medic", + -13.904757499694824 + ], + [ + "▁decisively", + -13.904776573181152 + ], + [ + "▁homosexuals", + -13.904779434204102 + ], + [ + "saver", + -13.904791831970215 + ], + [ + "▁alto", + -13.904888153076172 + ], + [ + "ORA", + -13.905008316040039 + ], + [ + "▁Whoa", + -13.905110359191895 + ], + [ + "▁Inspect", + -13.905155181884766 + ], + [ + "Fund", + -13.905169486999512 + ], + [ + "ور", + -13.9052095413208 + ], + [ + "537", + -13.905292510986328 + ], + [ + "536", + -13.905295372009277 + ], + [ + "▁germany", + -13.905295372009277 + ], + [ + "▁ovaries", + -13.905308723449707 + ], + [ + "▁shrinkage", + -13.905311584472656 + ], + [ + "▁meaningfully", + -13.905366897583008 + ], + [ + "Harry", + -13.90538215637207 + ], + [ + "▁Ow", + -13.905426979064941 + ], + [ + "▁ADS", + -13.90546703338623 + ], + [ + "▁dun", + -13.905552864074707 + ], + [ + "snap", + -13.905573844909668 + ], + [ + "▁Pru", + -13.905614852905273 + ], + [ + "▁Seb", + -13.90564250946045 + ], + [ + "▁Templar", + -13.90578842163086 + ], + [ + "▁SAA", + -13.905790328979492 + ], + [ + "▁relayed", + -13.905824661254883 + ], + [ + "▁Orb", + -13.90591049194336 + ], + [ + "▁turbocharged", + -13.905915260314941 + ], + [ + "▁hippo", + -13.906055450439453 + ], + [ + "▁discharging", + -13.906111717224121 + ], + [ + "▁glances", + -13.906148910522461 + ], + [ + "bend", + -13.9061861038208 + ], + [ + "USH", + -13.906269073486328 + ], + [ + "▁Buckle", + -13.906333923339844 + ], + [ + "protect", + -13.906338691711426 + ], + [ + "▁canoeing", + -13.906370162963867 + ], + [ + "▁Leverage", + -13.906375885009766 + ], + [ + "▁Restrictions", + -13.90638256072998 + ], + [ + "▁Seng", + -13.906397819519043 + ], + [ + "▁loathe", + -13.906498908996582 + ], + [ + "▁Travels", + -13.906525611877441 + ], + [ + "▁scorn", + -13.906529426574707 + ], + [ + "OLA", + -13.906559944152832 + ], + [ + "▁Jayne", + -13.906623840332031 + ], + [ + "▁Immaculate", + -13.906651496887207 + ], + [ + "ipping", + -13.90666389465332 + ], + [ + "▁Myles", + -13.90666675567627 + ], + [ + "▁Shropshire", + -13.906678199768066 + ], + [ + "▁Aroma", + -13.906691551208496 + ], + [ + "▁surpasses", + -13.906768798828125 + ], + [ + "▁Chromebook", + -13.906779289245605 + ], + [ + "lease", + -13.906785011291504 + ], + [ + "面", + -13.90682315826416 + ], + [ + "▁intoxicating", + -13.906834602355957 + ], + [ + "uses", + -13.90684700012207 + ], + [ + "Soul", + -13.906868934631348 + ], + [ + "▁Maru", + -13.906876564025879 + ], + [ + "▁Upholstery", + -13.906883239746094 + ], + [ + "▁Errors", + -13.906889915466309 + ], + [ + "▁Algorithm", + -13.90692138671875 + ], + [ + "▁reared", + -13.906956672668457 + ], + [ + "▁Californians", + -13.906970977783203 + ], + [ + "▁GRAND", + -13.906983375549316 + ], + [ + "▁Flesh", + -13.907007217407227 + ], + [ + "▁Morph", + -13.907022476196289 + ], + [ + "▁ergonomics", + -13.907083511352539 + ], + [ + "success", + -13.907088279724121 + ], + [ + "▁Mechanic", + -13.907135009765625 + ], + [ + "beyond", + -13.90714168548584 + ], + [ + "▁shuffled", + -13.907174110412598 + ], + [ + "▁Graz", + -13.907179832458496 + ], + [ + "▁Jal", + -13.907184600830078 + ], + [ + "▁Prakash", + -13.90723705291748 + ], + [ + "loid", + -13.907256126403809 + ], + [ + "428", + -13.907270431518555 + ], + [ + "▁Attachment", + -13.907286643981934 + ], + [ + "▁Pensions", + -13.907350540161133 + ], + [ + "eber", + -13.907358169555664 + ], + [ + "sufficiency", + -13.907378196716309 + ], + [ + "▁publicist", + -13.907391548156738 + ], + [ + "▁Babylonian", + -13.907413482666016 + ], + [ + "ppo", + -13.907428741455078 + ], + [ + "▁Parry", + -13.907470703125 + ], + [ + "▁adobe", + -13.907486915588379 + ], + [ + "▁Dé", + -13.907562255859375 + ], + [ + "成", + -13.90756893157959 + ], + [ + "cyclo", + -13.907598495483398 + ], + [ + "▁Periodic", + -13.907600402832031 + ], + [ + "▁Marquez", + -13.907639503479004 + ], + [ + "▁Oldham", + -13.907674789428711 + ], + [ + "▁Ennis", + -13.907685279846191 + ], + [ + "▁outnumbered", + -13.907730102539062 + ], + [ + "gress", + -13.907748222351074 + ], + [ + "▁Jak", + -13.907800674438477 + ], + [ + "▁Goss", + -13.90780258178711 + ], + [ + "▁Droid", + -13.9078369140625 + ], + [ + "mica", + -13.907894134521484 + ], + [ + "College", + -13.907917976379395 + ], + [ + "hound", + -13.907938957214355 + ], + [ + "▁Decree", + -13.908038139343262 + ], + [ + "▁underpinning", + -13.908053398132324 + ], + [ + "dick", + -13.908154487609863 + ], + [ + "▁io", + -13.908170700073242 + ], + [ + "▁lectured", + -13.908180236816406 + ], + [ + "▁westbound", + -13.908181190490723 + ], + [ + "▁MSA", + -13.908198356628418 + ], + [ + "▁Hendricks", + -13.908233642578125 + ], + [ + "▁projectile", + -13.908268928527832 + ], + [ + "▁tastefully", + -13.908323287963867 + ], + [ + "▁honeycomb", + -13.908361434936523 + ], + [ + "▁Resilience", + -13.908368110656738 + ], + [ + "▁Wig", + -13.908441543579102 + ], + [ + "▁Trained", + -13.908448219299316 + ], + [ + "▁Rudolf", + -13.908455848693848 + ], + [ + "scratch", + -13.908485412597656 + ], + [ + "▁Plays", + -13.908537864685059 + ], + [ + "ature", + -13.908687591552734 + ], + [ + "▁Gaz", + -13.90869426727295 + ], + [ + "▁Citing", + -13.908705711364746 + ], + [ + "▁granules", + -13.908745765686035 + ], + [ + "▁retreating", + -13.908747673034668 + ], + [ + "▁pasting", + -13.908748626708984 + ], + [ + "▁Sheryl", + -13.908761024475098 + ], + [ + "idis", + -13.908782958984375 + ], + [ + "▁outscored", + -13.908796310424805 + ], + [ + "472", + -13.908825874328613 + ], + [ + "▁Installed", + -13.908829689025879 + ], + [ + "mbi", + -13.908833503723145 + ], + [ + "▁Dolores", + -13.908896446228027 + ], + [ + "▁rupee", + -13.908985137939453 + ], + [ + "▁Reserves", + -13.909010887145996 + ], + [ + "▁Lynda", + -13.909067153930664 + ], + [ + "▁disappointments", + -13.909072875976562 + ], + [ + "politics", + -13.90914249420166 + ], + [ + "▁PID", + -13.909236907958984 + ], + [ + "cier", + -13.90928840637207 + ], + [ + "▁pitiful", + -13.909320831298828 + ], + [ + "▁extraterrestrial", + -13.909337043762207 + ], + [ + "695", + -13.909356117248535 + ], + [ + "tow", + -13.909449577331543 + ], + [ + "▁fal", + -13.909526824951172 + ], + [ + "▁385", + -13.909568786621094 + ], + [ + "nach", + -13.90956974029541 + ], + [ + "▁transcendent", + -13.909575462341309 + ], + [ + "▁Sturgeon", + -13.909584045410156 + ], + [ + "tay", + -13.909616470336914 + ], + [ + "607", + -13.909629821777344 + ], + [ + "▁deformed", + -13.909637451171875 + ], + [ + "▁illogical", + -13.909700393676758 + ], + [ + "▁Doodle", + -13.909740447998047 + ], + [ + "▁pledging", + -13.909810066223145 + ], + [ + "▁Dio", + -13.909836769104004 + ], + [ + "▁extinguish", + -13.909865379333496 + ], + [ + "ා", + -13.909887313842773 + ], + [ + "▁Briefly", + -13.909895896911621 + ], + [ + "▁theologians", + -13.90990924835205 + ], + [ + "▁corneal", + -13.909956932067871 + ], + [ + "izen", + -13.91002368927002 + ], + [ + "▁Tailor", + -13.910040855407715 + ], + [ + "▁ع", + -13.910046577453613 + ], + [ + "▁Horne", + -13.91009521484375 + ], + [ + "▁eventful", + -13.910115242004395 + ], + [ + "▁Cou", + -13.910210609436035 + ], + [ + "▁Converse", + -13.910212516784668 + ], + [ + "▁geographies", + -13.910239219665527 + ], + [ + "▁discourses", + -13.910348892211914 + ], + [ + "ehr", + -13.910384178161621 + ], + [ + "liners", + -13.910407066345215 + ], + [ + "▁nightclubs", + -13.910415649414062 + ], + [ + "▁parenthood", + -13.910436630249023 + ], + [ + "▁narcissistic", + -13.91043758392334 + ], + [ + "▁Lep", + -13.910537719726562 + ], + [ + "▁£150", + -13.910575866699219 + ], + [ + "crypt", + -13.910578727722168 + ], + [ + "ри", + -13.910595893859863 + ], + [ + "▁blister", + -13.910628318786621 + ], + [ + "▁unending", + -13.91064739227295 + ], + [ + "▁privy", + -13.910679817199707 + ], + [ + "▁eurozone", + -13.910694122314453 + ], + [ + "pé", + -13.91082763671875 + ], + [ + "▁dialed", + -13.910862922668457 + ], + [ + "▁Englishman", + -13.91086483001709 + ], + [ + "tzer", + -13.910987854003906 + ], + [ + "▁sau", + -13.91100025177002 + ], + [ + "▁Phnom", + -13.911078453063965 + ], + [ + "▁ClickFunnels", + -13.911088943481445 + ], + [ + "ident", + -13.911091804504395 + ], + [ + "▁Offset", + -13.911091804504395 + ], + [ + "▁rediscover", + -13.911113739013672 + ], + [ + "▁indemnity", + -13.91112995147705 + ], + [ + "▁GX", + -13.9111328125 + ], + [ + "▁Raptor", + -13.911161422729492 + ], + [ + "▁shrouded", + -13.911163330078125 + ], + [ + "▁Prosperity", + -13.911351203918457 + ], + [ + "▁pausing", + -13.911381721496582 + ], + [ + "ivism", + -13.91141128540039 + ], + [ + "▁nerdy", + -13.911428451538086 + ], + [ + "Getting", + -13.911436080932617 + ], + [ + "▁Risks", + -13.911438941955566 + ], + [ + "Material", + -13.911511421203613 + ], + [ + "▁cannabinoids", + -13.911521911621094 + ], + [ + "▁regimens", + -13.911531448364258 + ], + [ + "▁caloric", + -13.911575317382812 + ], + [ + "▁wipers", + -13.911587715148926 + ], + [ + "▁drags", + -13.911605834960938 + ], + [ + "▁Reveal", + -13.91163158416748 + ], + [ + "▁BLOG", + -13.91168212890625 + ], + [ + "686", + -13.91170883178711 + ], + [ + "▁Stampin", + -13.911773681640625 + ], + [ + "▁Koi", + -13.911845207214355 + ], + [ + "▁osmosis", + -13.911849021911621 + ], + [ + "▁pix", + -13.911849975585938 + ], + [ + "461", + -13.911916732788086 + ], + [ + "Twitter", + -13.911971092224121 + ], + [ + "▁Pivot", + -13.911971092224121 + ], + [ + "▁Carlsbad", + -13.912074089050293 + ], + [ + "▁Orthopaedic", + -13.912081718444824 + ], + [ + "▁FIVE", + -13.912103652954102 + ], + [ + "▁Turned", + -13.91211223602295 + ], + [ + "▁adoration", + -13.912161827087402 + ], + [ + "▁cobblestone", + -13.912238121032715 + ], + [ + "▁Hound", + -13.912311553955078 + ], + [ + "▁Clouds", + -13.912348747253418 + ], + [ + "▁Mariana", + -13.912351608276367 + ], + [ + "pies", + -13.912405014038086 + ], + [ + "Fine", + -13.912409782409668 + ], + [ + "▁despicable", + -13.912428855895996 + ], + [ + "▁Induction", + -13.912530899047852 + ], + [ + "▁unsigned", + -13.912546157836914 + ], + [ + "▁novo", + -13.91256332397461 + ], + [ + "▁tidbits", + -13.912569046020508 + ], + [ + "▁Grossman", + -13.912635803222656 + ], + [ + "469", + -13.912653923034668 + ], + [ + "▁src", + -13.912713050842285 + ], + [ + "▁Marr", + -13.91271686553955 + ], + [ + "▁neoliberal", + -13.912745475769043 + ], + [ + "osphere", + -13.912751197814941 + ], + [ + "▁Flotation", + -13.912778854370117 + ], + [ + "▁veer", + -13.912778854370117 + ], + [ + "Move", + -13.912803649902344 + ], + [ + "sek", + -13.912862777709961 + ], + [ + "highly", + -13.912891387939453 + ], + [ + "phile", + -13.912904739379883 + ], + [ + "▁pts", + -13.912934303283691 + ], + [ + "▁opal", + -13.91293716430664 + ], + [ + "▁ramble", + -13.912956237792969 + ], + [ + "ading", + -13.9129638671875 + ], + [ + "Jam", + -13.913002967834473 + ], + [ + "▁Cantor", + -13.91301441192627 + ], + [ + "▁Plush", + -13.913081169128418 + ], + [ + "▁brainchild", + -13.913117408752441 + ], + [ + "uci", + -13.913128852844238 + ], + [ + "▁codec", + -13.913175582885742 + ], + [ + "▁Gertrude", + -13.913248062133789 + ], + [ + "dice", + -13.913272857666016 + ], + [ + "▁Dunne", + -13.913311958312988 + ], + [ + "▁idiotic", + -13.913346290588379 + ], + [ + "▁catapult", + -13.913429260253906 + ], + [ + "▁receivable", + -13.913507461547852 + ], + [ + "▁CMO", + -13.913521766662598 + ], + [ + "▁FAIR", + -13.913565635681152 + ], + [ + "▁pita", + -13.913585662841797 + ], + [ + "▁tinker", + -13.913619041442871 + ], + [ + "▁Singers", + -13.913647651672363 + ], + [ + "github", + -13.913684844970703 + ], + [ + "▁searing", + -13.913703918457031 + ], + [ + "▁captivate", + -13.91376781463623 + ], + [ + "vos", + -13.91385555267334 + ], + [ + "favorite", + -13.913877487182617 + ], + [ + "▁spoiling", + -13.913909912109375 + ], + [ + "▁Roswell", + -13.913942337036133 + ], + [ + "CAL", + -13.913948059082031 + ], + [ + "▁bothersome", + -13.914043426513672 + ], + [ + "▁toppled", + -13.914051055908203 + ], + [ + "▁ASCII", + -13.914091110229492 + ], + [ + "▁TORONTO", + -13.914118766784668 + ], + [ + "▁imo", + -13.9141206741333 + ], + [ + "▁velcro", + -13.914122581481934 + ], + [ + "▁Overwatch", + -13.914161682128906 + ], + [ + "▁Guggenheim", + -13.91418170928955 + ], + [ + "▁boulevard", + -13.914226531982422 + ], + [ + "▁Scandal", + -13.91425895690918 + ], + [ + "▁Mentoring", + -13.914276123046875 + ], + [ + "▁Sey", + -13.9143648147583 + ], + [ + "iou", + -13.914374351501465 + ], + [ + "Custom", + -13.914407730102539 + ], + [ + "▁bumpers", + -13.914443969726562 + ], + [ + "Holy", + -13.914469718933105 + ], + [ + "WIN", + -13.91450023651123 + ], + [ + "▁Yoo", + -13.914534568786621 + ], + [ + "laid", + -13.914571762084961 + ], + [ + "Inch", + -13.91458511352539 + ], + [ + "▁polynomial", + -13.914607048034668 + ], + [ + "▁superfluous", + -13.914628028869629 + ], + [ + "▁Pana", + -13.914645195007324 + ], + [ + "Middle", + -13.914656639099121 + ], + [ + "▁Asbestos", + -13.914681434631348 + ], + [ + "901", + -13.914690971374512 + ], + [ + "▁dressings", + -13.914690971374512 + ], + [ + "▁Backed", + -13.914751052856445 + ], + [ + "grip", + -13.91479206085205 + ], + [ + "▁chit", + -13.914825439453125 + ], + [ + "lucky", + -13.914830207824707 + ], + [ + "nih", + -13.91487979888916 + ], + [ + "▁bagel", + -13.914899826049805 + ], + [ + "▁latin", + -13.914926528930664 + ], + [ + "▁Heng", + -13.91496753692627 + ], + [ + "roma", + -13.914972305297852 + ], + [ + "▁Bancorp", + -13.914972305297852 + ], + [ + "ła", + -13.915040969848633 + ], + [ + "▁daisy", + -13.915105819702148 + ], + [ + "▁dissect", + -13.915118217468262 + ], + [ + "▁perils", + -13.91512393951416 + ], + [ + "▁Purse", + -13.915192604064941 + ], + [ + "▁Waldorf", + -13.915193557739258 + ], + [ + "▁dud", + -13.915262222290039 + ], + [ + "▁Lender", + -13.915266036987305 + ], + [ + "▁autopilot", + -13.915266990661621 + ], + [ + "ALS", + -13.915325164794922 + ], + [ + "▁innocuous", + -13.915335655212402 + ], + [ + "cular", + -13.915389060974121 + ], + [ + "▁directorial", + -13.91544246673584 + ], + [ + "▁ringtones", + -13.915475845336914 + ], + [ + "▁Etihad", + -13.915482521057129 + ], + [ + "▁Greta", + -13.915486335754395 + ], + [ + "▁Paintings", + -13.915593147277832 + ], + [ + "▁intermission", + -13.915655136108398 + ], + [ + "▁MER", + -13.915721893310547 + ], + [ + "▁Kinda", + -13.915730476379395 + ], + [ + "Cro", + -13.91573429107666 + ], + [ + "▁Reb", + -13.915763854980469 + ], + [ + "▁Sedona", + -13.91576862335205 + ], + [ + "▁touting", + -13.915788650512695 + ], + [ + "ahn", + -13.91586971282959 + ], + [ + "▁burdensome", + -13.915881156921387 + ], + [ + "έ", + -13.915912628173828 + ], + [ + "▁craigslist", + -13.915912628173828 + ], + [ + "▁celebs", + -13.915925979614258 + ], + [ + "438", + -13.915973663330078 + ], + [ + "439", + -13.91601848602295 + ], + [ + "▁Ich", + -13.91601848602295 + ], + [ + "phan", + -13.916056632995605 + ], + [ + "▁pinched", + -13.91606330871582 + ], + [ + "▁reverted", + -13.916074752807617 + ], + [ + "▁ez", + -13.916095733642578 + ], + [ + "Rob", + -13.916119575500488 + ], + [ + "▁Integrative", + -13.91615104675293 + ], + [ + "▁prepped", + -13.91616439819336 + ], + [ + "▁Jig", + -13.916176795959473 + ], + [ + "▁BMP", + -13.916190147399902 + ], + [ + "▁stalemate", + -13.916199684143066 + ], + [ + "▁vigilante", + -13.916202545166016 + ], + [ + "▁tropics", + -13.916227340698242 + ], + [ + "Stand", + -13.916260719299316 + ], + [ + "▁predicate", + -13.916290283203125 + ], + [ + "▁TOM", + -13.916322708129883 + ], + [ + "▁Thr", + -13.91633415222168 + ], + [ + "▁Kessler", + -13.916387557983398 + ], + [ + "kart", + -13.916510581970215 + ], + [ + "▁hasty", + -13.916524887084961 + ], + [ + "▁Careful", + -13.916576385498047 + ], + [ + "▁Meth", + -13.916601181030273 + ], + [ + "odic", + -13.916616439819336 + ], + [ + "▁Balancing", + -13.91662311553955 + ], + [ + "uzzi", + -13.9166259765625 + ], + [ + "▁Pilots", + -13.916773796081543 + ], + [ + "▁brisket", + -13.916783332824707 + ], + [ + "▁Respond", + -13.916824340820312 + ], + [ + "▁Fewer", + -13.916910171508789 + ], + [ + "▁286", + -13.916985511779785 + ], + [ + "▁Hier", + -13.917031288146973 + ], + [ + "▁Peppers", + -13.917033195495605 + ], + [ + "▁Wiggins", + -13.917070388793945 + ], + [ + "▁SOL", + -13.917097091674805 + ], + [ + "▁playroom", + -13.917119979858398 + ], + [ + "▁CompTIA", + -13.917142868041992 + ], + [ + "▁risotto", + -13.917160034179688 + ], + [ + "▁Logos", + -13.91717529296875 + ], + [ + "▁lapel", + -13.917196273803711 + ], + [ + "▁Bias", + -13.91726303100586 + ], + [ + "OLOGY", + -13.917283058166504 + ], + [ + "cellular", + -13.917312622070312 + ], + [ + "▁SAE", + -13.917316436767578 + ], + [ + "▁undisturbed", + -13.917341232299805 + ], + [ + "▁Observe", + -13.917346000671387 + ], + [ + "▁consented", + -13.917387008666992 + ], + [ + "▁Advantages", + -13.917388916015625 + ], + [ + "▁Coroner", + -13.917426109313965 + ], + [ + "▁ven", + -13.91742992401123 + ], + [ + "vation", + -13.91745376586914 + ], + [ + "▁paralegal", + -13.917488098144531 + ], + [ + "▁spectrometry", + -13.917519569396973 + ], + [ + "▁kal", + -13.917551040649414 + ], + [ + "BLE", + -13.917560577392578 + ], + [ + "wake", + -13.917706489562988 + ], + [ + "▁Mormons", + -13.917749404907227 + ], + [ + "▁stumps", + -13.917808532714844 + ], + [ + "▁retarded", + -13.917880058288574 + ], + [ + "▁juicer", + -13.917938232421875 + ], + [ + "▁Campo", + -13.91797161102295 + ], + [ + "464", + -13.917993545532227 + ], + [ + "▁disqualification", + -13.918045043945312 + ], + [ + "▁rumoured", + -13.9180908203125 + ], + [ + "▁spoilt", + -13.918108940124512 + ], + [ + "▁stardom", + -13.918111801147461 + ], + [ + "pieces", + -13.91814136505127 + ], + [ + "▁Judi", + -13.918184280395508 + ], + [ + "▁spate", + -13.918203353881836 + ], + [ + "HG", + -13.918261528015137 + ], + [ + "Eastern", + -13.918282508850098 + ], + [ + "▁fractal", + -13.918313980102539 + ], + [ + "▁CQ", + -13.918344497680664 + ], + [ + "generally", + -13.918357849121094 + ], + [ + "▁Offline", + -13.918416023254395 + ], + [ + "Pla", + -13.918448448181152 + ], + [ + "▁reproach", + -13.918456077575684 + ], + [ + "▁groves", + -13.918546676635742 + ], + [ + "▁radiators", + -13.918670654296875 + ], + [ + "▁recreating", + -13.918684005737305 + ], + [ + "▁underscored", + -13.918715476989746 + ], + [ + "▁Grief", + -13.918815612792969 + ], + [ + "▁speculating", + -13.918838500976562 + ], + [ + "Ram", + -13.91886043548584 + ], + [ + "▁Parc", + -13.918950080871582 + ], + [ + "▁Pere", + -13.91897964477539 + ], + [ + "▁Muscat", + -13.918992042541504 + ], + [ + "437", + -13.918994903564453 + ], + [ + "▁Mechanism", + -13.919018745422363 + ], + [ + "▁Flux", + -13.919068336486816 + ], + [ + "▁tumblr", + -13.919072151184082 + ], + [ + "▁Cardiology", + -13.91910457611084 + ], + [ + "▁Simi", + -13.919157981872559 + ], + [ + "▁Meade", + -13.919174194335938 + ], + [ + "▁Investigative", + -13.919205665588379 + ], + [ + "hya", + -13.91921615600586 + ], + [ + "▁CSF", + -13.919220924377441 + ], + [ + "movies", + -13.919257164001465 + ], + [ + "▁popularized", + -13.919350624084473 + ], + [ + "oodle", + -13.919364929199219 + ], + [ + "▁SEN", + -13.919379234313965 + ], + [ + "▁challengers", + -13.919381141662598 + ], + [ + "queen", + -13.919414520263672 + ], + [ + "▁Reflection", + -13.919414520263672 + ], + [ + "dest", + -13.919463157653809 + ], + [ + "▁Fourier", + -13.919476509094238 + ], + [ + "Lovely", + -13.919499397277832 + ], + [ + "bench", + -13.919533729553223 + ], + [ + "▁cashew", + -13.919540405273438 + ], + [ + "posing", + -13.919544219970703 + ], + [ + "▁complicit", + -13.919571876525879 + ], + [ + "▁Serv", + -13.919642448425293 + ], + [ + "wings", + -13.91965389251709 + ], + [ + "▁stomping", + -13.919690132141113 + ], + [ + "▁arbor", + -13.919692993164062 + ], + [ + "▁AGREEMENT", + -13.919781684875488 + ], + [ + "Dar", + -13.919800758361816 + ], + [ + "yin", + -13.919803619384766 + ], + [ + "▁Alf", + -13.919812202453613 + ], + [ + "▁assent", + -13.919853210449219 + ], + [ + "▁BART", + -13.919867515563965 + ], + [ + "▁ripples", + -13.919905662536621 + ], + [ + "▁MID", + -13.919949531555176 + ], + [ + "▁kinship", + -13.919977188110352 + ], + [ + "▁rappers", + -13.91999626159668 + ], + [ + "▁Framed", + -13.920004844665527 + ], + [ + "Grey", + -13.920071601867676 + ], + [ + "▁Hartman", + -13.9201078414917 + ], + [ + "▁Fabio", + -13.920116424560547 + ], + [ + "▁giggles", + -13.920127868652344 + ], + [ + "▁LPG", + -13.920166969299316 + ], + [ + "ylene", + -13.92017936706543 + ], + [ + "▁Moonlight", + -13.920184135437012 + ], + [ + "▁steamy", + -13.92021369934082 + ], + [ + "premises", + -13.920214653015137 + ], + [ + "▁Saab", + -13.92023754119873 + ], + [ + "▁milled", + -13.920317649841309 + ], + [ + "▁Expanding", + -13.92032527923584 + ], + [ + "▁copywriter", + -13.920347213745117 + ], + [ + "▁khaki", + -13.920382499694824 + ], + [ + "▁Barclay", + -13.920415878295898 + ], + [ + "▁Coulter", + -13.920435905456543 + ], + [ + "▁mobilized", + -13.92043685913086 + ], + [ + "emer", + -13.920449256896973 + ], + [ + "▁VIC", + -13.920458793640137 + ], + [ + "chloro", + -13.92047119140625 + ], + [ + "huge", + -13.920509338378906 + ], + [ + "▁fouled", + -13.920514106750488 + ], + [ + "Kiss", + -13.920516014099121 + ], + [ + "▁Ditto", + -13.920530319213867 + ], + [ + "▁thine", + -13.92056941986084 + ], + [ + "VIN", + -13.92061710357666 + ], + [ + "▁Lotion", + -13.920699119567871 + ], + [ + "▁sobering", + -13.920700073242188 + ], + [ + "▁cyan", + -13.92077350616455 + ], + [ + "▁JPG", + -13.920822143554688 + ], + [ + "▁WILLIAM", + -13.920843124389648 + ], + [ + "▁Kinetic", + -13.92087459564209 + ], + [ + "▁Holi", + -13.920916557312012 + ], + [ + "▁SELECT", + -13.920919418334961 + ], + [ + "OSH", + -13.920947074890137 + ], + [ + "▁Exercises", + -13.920947074890137 + ], + [ + "▁Phu", + -13.921015739440918 + ], + [ + "▁cabaret", + -13.92101764678955 + ], + [ + "▁badminton", + -13.921026229858398 + ], + [ + "▁ovulation", + -13.921028137207031 + ], + [ + "uji", + -13.921070098876953 + ], + [ + "▁Brill", + -13.921130180358887 + ], + [ + "▁headlined", + -13.921198844909668 + ], + [ + "▁Ov", + -13.921281814575195 + ], + [ + "biology", + -13.921313285827637 + ], + [ + "▁Pelican", + -13.921329498291016 + ], + [ + "▁Methodology", + -13.921351432800293 + ], + [ + "▁necessitate", + -13.921404838562012 + ], + [ + "471", + -13.921420097351074 + ], + [ + "Copyright", + -13.921431541442871 + ], + [ + "▁Eck", + -13.921443939208984 + ], + [ + "ideal", + -13.921531677246094 + ], + [ + "Quality", + -13.921552658081055 + ], + [ + "か", + -13.921554565429688 + ], + [ + "▁stung", + -13.921606063842773 + ], + [ + "▁Depends", + -13.921635627746582 + ], + [ + "▁horseshoe", + -13.921653747558594 + ], + [ + "▁rookies", + -13.921655654907227 + ], + [ + "▁Cyclo", + -13.921656608581543 + ], + [ + "▁Timberlake", + -13.9216947555542 + ], + [ + "ktor", + -13.921695709228516 + ], + [ + "mian", + -13.921703338623047 + ], + [ + "▁insistent", + -13.921792030334473 + ], + [ + "▁Adapt", + -13.921796798706055 + ], + [ + "blend", + -13.921799659729004 + ], + [ + "rok", + -13.921858787536621 + ], + [ + "▁thermoplastic", + -13.921948432922363 + ], + [ + "636", + -13.922014236450195 + ], + [ + "▁Salmonella", + -13.922087669372559 + ], + [ + "▁shorthand", + -13.922101974487305 + ], + [ + "▁Paradox", + -13.922155380249023 + ], + [ + "▁streetcar", + -13.922157287597656 + ], + [ + "▁mayors", + -13.922182083129883 + ], + [ + "▁reachable", + -13.922191619873047 + ], + [ + "▁Usher", + -13.922295570373535 + ], + [ + "▁HATE", + -13.922303199768066 + ], + [ + "▁christ", + -13.922369003295898 + ], + [ + "ansky", + -13.922377586364746 + ], + [ + "CIO", + -13.922414779663086 + ], + [ + "▁Cybersecurity", + -13.922414779663086 + ], + [ + "▁conveyance", + -13.9224214553833 + ], + [ + "507", + -13.922476768493652 + ], + [ + "▁airwaves", + -13.922520637512207 + ], + [ + "apart", + -13.922523498535156 + ], + [ + "grant", + -13.922541618347168 + ], + [ + "▁peacekeeping", + -13.922541618347168 + ], + [ + "Perhaps", + -13.922554016113281 + ], + [ + "Hy", + -13.922554969787598 + ], + [ + "▁CHO", + -13.922618865966797 + ], + [ + "▁Valentino", + -13.922698974609375 + ], + [ + "▁casters", + -13.922711372375488 + ], + [ + "▁HSA", + -13.922758102416992 + ], + [ + "▁strobe", + -13.92277717590332 + ], + [ + "▁Jurgen", + -13.922825813293457 + ], + [ + "▁Trident", + -13.922843933105469 + ], + [ + "▁Recruiting", + -13.922892570495605 + ], + [ + "▁engender", + -13.922907829284668 + ], + [ + "▁repeatable", + -13.922966003417969 + ], + [ + "▁fieldwork", + -13.922967910766602 + ], + [ + "▁drooling", + -13.923001289367676 + ], + [ + "▁Leighton", + -13.923003196716309 + ], + [ + "▁stenosis", + -13.923133850097656 + ], + [ + "▁Meteor", + -13.923187255859375 + ], + [ + "▁dollop", + -13.923209190368652 + ], + [ + "▁Framing", + -13.923248291015625 + ], + [ + "▁HN", + -13.92326831817627 + ], + [ + "Motion", + -13.92331314086914 + ], + [ + "▁weathering", + -13.923333168029785 + ], + [ + "▁ghee", + -13.923341751098633 + ], + [ + "▁sous", + -13.923351287841797 + ], + [ + "▁surges", + -13.923426628112793 + ], + [ + "633", + -13.92345905303955 + ], + [ + "▁Dunk", + -13.923498153686523 + ], + [ + "▁pecan", + -13.923530578613281 + ], + [ + "▁Orthopedic", + -13.923583030700684 + ], + [ + "▁poached", + -13.923583030700684 + ], + [ + "▁stabilizer", + -13.923605918884277 + ], + [ + "Len", + -13.923620223999023 + ], + [ + "▁aggravating", + -13.923677444458008 + ], + [ + "▁hinting", + -13.923723220825195 + ], + [ + "749", + -13.92382526397705 + ], + [ + "css", + -13.923839569091797 + ], + [ + "▁broadened", + -13.923840522766113 + ], + [ + "6°", + -13.923884391784668 + ], + [ + "▁Mallorca", + -13.92393970489502 + ], + [ + "jor", + -13.923958778381348 + ], + [ + "▁broiler", + -13.923959732055664 + ], + [ + "clair", + -13.923982620239258 + ], + [ + "▁Focused", + -13.924013137817383 + ], + [ + "▁fifties", + -13.924022674560547 + ], + [ + "sid", + -13.924077987670898 + ], + [ + "▁canisters", + -13.924086570739746 + ], + [ + "▁Inuit", + -13.92412281036377 + ], + [ + "Uni", + -13.92413330078125 + ], + [ + "formation", + -13.92420768737793 + ], + [ + "▁loudest", + -13.924243927001953 + ], + [ + "▁stalwart", + -13.924253463745117 + ], + [ + "▁diss", + -13.924267768859863 + ], + [ + "▁entanglement", + -13.924302101135254 + ], + [ + "packing", + -13.924346923828125 + ], + [ + "▁Alfredo", + -13.924418449401855 + ], + [ + "▁CIC", + -13.924437522888184 + ], + [ + "▁pliers", + -13.924443244934082 + ], + [ + "mme", + -13.924457550048828 + ], + [ + "▁Tinker", + -13.9244966506958 + ], + [ + "▁Apprenticeship", + -13.924605369567871 + ], + [ + "397", + -13.92470645904541 + ], + [ + "▁Dessert", + -13.924714088439941 + ], + [ + "▁fem", + -13.924715042114258 + ], + [ + "▁Wester", + -13.92473316192627 + ], + [ + "▁Starts", + -13.924742698669434 + ], + [ + "▁Geelong", + -13.92485523223877 + ], + [ + "▁GHG", + -13.924899101257324 + ], + [ + "Irish", + -13.92496109008789 + ], + [ + "▁OEMs", + -13.925005912780762 + ], + [ + "▁falcon", + -13.925008773803711 + ], + [ + "▁Kuhn", + -13.925020217895508 + ], + [ + "▁Protocols", + -13.92503547668457 + ], + [ + "▁guesswork", + -13.92505931854248 + ], + [ + "▁Producing", + -13.925091743469238 + ], + [ + "▁milieu", + -13.92510986328125 + ], + [ + "▁LARGE", + -13.92516040802002 + ], + [ + "XML", + -13.925187110900879 + ], + [ + "▁histogram", + -13.925193786621094 + ], + [ + "▁Faso", + -13.925201416015625 + ], + [ + "▁repurposed", + -13.925348281860352 + ], + [ + "▁342", + -13.925423622131348 + ], + [ + "▁bureaus", + -13.925472259521484 + ], + [ + "▁unwillingness", + -13.925528526306152 + ], + [ + "tid", + -13.925540924072266 + ], + [ + "▁straightening", + -13.925583839416504 + ], + [ + "▁GoFundMe", + -13.925610542297363 + ], + [ + "▁860", + -13.925675392150879 + ], + [ + "▁Aegean", + -13.925679206848145 + ], + [ + "▁Fou", + -13.92569351196289 + ], + [ + "athon", + -13.925728797912598 + ], + [ + "▁Loretta", + -13.925734519958496 + ], + [ + "▁labored", + -13.925745010375977 + ], + [ + "rings", + -13.925750732421875 + ], + [ + "▁immunotherapy", + -13.925773620605469 + ], + [ + "▁webbing", + -13.925868034362793 + ], + [ + "▁Chaplin", + -13.926009178161621 + ], + [ + "▁visualized", + -13.9260892868042 + ], + [ + "esha", + -13.926101684570312 + ], + [ + "▁Workflow", + -13.926124572753906 + ], + [ + "lob", + -13.926190376281738 + ], + [ + "▁Predict", + -13.92623233795166 + ], + [ + "▁lobbied", + -13.926248550415039 + ], + [ + "▁Artemis", + -13.926419258117676 + ], + [ + "▁Mustard", + -13.926419258117676 + ], + [ + "▁COMPLETE", + -13.926558494567871 + ], + [ + "▁quits", + -13.926569938659668 + ], + [ + "rena", + -13.926644325256348 + ], + [ + "inha", + -13.92666244506836 + ], + [ + "ATT", + -13.926732063293457 + ], + [ + "▁Hara", + -13.926761627197266 + ], + [ + "chapter", + -13.926812171936035 + ], + [ + "че", + -13.926826477050781 + ], + [ + "Amazing", + -13.926908493041992 + ], + [ + "705", + -13.926931381225586 + ], + [ + "▁samurai", + -13.927042961120605 + ], + [ + "▁mane", + -13.927125930786133 + ], + [ + "▁abomination", + -13.927146911621094 + ], + [ + "▁Eisen", + -13.927183151245117 + ], + [ + "hex", + -13.927194595336914 + ], + [ + "▁pronouns", + -13.927236557006836 + ], + [ + "▁ratchet", + -13.927326202392578 + ], + [ + "▁frontiers", + -13.927349090576172 + ], + [ + "▁Calvert", + -13.92737865447998 + ], + [ + "▁Provost", + -13.927428245544434 + ], + [ + "ANE", + -13.927458763122559 + ], + [ + "▁Boomers", + -13.927469253540039 + ], + [ + "▁caravans", + -13.927496910095215 + ], + [ + "▁evaporate", + -13.927506446838379 + ], + [ + "▁subsystem", + -13.927583694458008 + ], + [ + "▁condone", + -13.92761516571045 + ], + [ + "▁Glock", + -13.927665710449219 + ], + [ + "482", + -13.927752494812012 + ], + [ + "aje", + -13.927967071533203 + ], + [ + "numbered", + -13.927972793579102 + ], + [ + "dik", + -13.928008079528809 + ], + [ + "Ap", + -13.928009033203125 + ], + [ + "▁qual", + -13.928013801574707 + ], + [ + "rash", + -13.928033828735352 + ], + [ + "Original", + -13.928038597106934 + ], + [ + "▁JOIN", + -13.928054809570312 + ], + [ + "▁Conferences", + -13.928078651428223 + ], + [ + "▁284", + -13.92809772491455 + ], + [ + "▁shrines", + -13.92809772491455 + ], + [ + "▁Swi", + -13.928119659423828 + ], + [ + "eed", + -13.928260803222656 + ], + [ + "▁ре", + -13.928296089172363 + ], + [ + "chai", + -13.928305625915527 + ], + [ + "▁Incredibly", + -13.928420066833496 + ], + [ + "jana", + -13.928462982177734 + ], + [ + "▁Arya", + -13.928467750549316 + ], + [ + "trail", + -13.928481101989746 + ], + [ + "quiet", + -13.928489685058594 + ], + [ + "▁complacency", + -13.928498268127441 + ], + [ + "SAM", + -13.928500175476074 + ], + [ + "▁PTC", + -13.928573608398438 + ], + [ + "▁KIT", + -13.928613662719727 + ], + [ + "א", + -13.928644180297852 + ], + [ + "▁Saban", + -13.928665161132812 + ], + [ + "SSL", + -13.928667068481445 + ], + [ + "▁shards", + -13.928711891174316 + ], + [ + "▁Reputation", + -13.928790092468262 + ], + [ + "ibus", + -13.928793907165527 + ], + [ + "Cover", + -13.928813934326172 + ], + [ + "▁Herzegovina", + -13.928831100463867 + ], + [ + "▁authorizes", + -13.928838729858398 + ], + [ + "TSX", + -13.92886734008789 + ], + [ + "▁galactic", + -13.928894996643066 + ], + [ + "▁fibrous", + -13.928961753845215 + ], + [ + "▁1835", + -13.928967475891113 + ], + [ + "▁burp", + -13.928979873657227 + ], + [ + "▁Tac", + -13.928983688354492 + ], + [ + "▁pyro", + -13.928994178771973 + ], + [ + "ström", + -13.929006576538086 + ], + [ + "▁fragility", + -13.929015159606934 + ], + [ + "▁VAN", + -13.929098129272461 + ], + [ + "▁Sudbury", + -13.929149627685547 + ], + [ + "▁Wh", + -13.929150581359863 + ], + [ + "▁rind", + -13.929215431213379 + ], + [ + "▁PPG", + -13.929387092590332 + ], + [ + "evolving", + -13.929394721984863 + ], + [ + "Medical", + -13.929532051086426 + ], + [ + "▁equivalence", + -13.929563522338867 + ], + [ + "cafe", + -13.929579734802246 + ], + [ + "▁Makeover", + -13.929593086242676 + ], + [ + "▁clique", + -13.929612159729004 + ], + [ + "few", + -13.9296293258667 + ], + [ + "imin", + -13.92963981628418 + ], + [ + "▁Arguably", + -13.929654121398926 + ], + [ + "▁epidural", + -13.92967700958252 + ], + [ + "pile", + -13.929705619812012 + ], + [ + "▁bitumen", + -13.929723739624023 + ], + [ + "▁Khloe", + -13.929790496826172 + ], + [ + "▁Ember", + -13.929835319519043 + ], + [ + "▁Nab", + -13.929849624633789 + ], + [ + "▁sono", + -13.929887771606445 + ], + [ + "▁Privilege", + -13.929966926574707 + ], + [ + "▁Eighty", + -13.9299898147583 + ], + [ + "FER", + -13.930015563964844 + ], + [ + "▁giver", + -13.930057525634766 + ], + [ + "▁Ebook", + -13.930168151855469 + ], + [ + "lovers", + -13.930171966552734 + ], + [ + "▁superlative", + -13.930193901062012 + ], + [ + "▁utopia", + -13.930209159851074 + ], + [ + "▁blasphemy", + -13.93021297454834 + ], + [ + "▁BCS", + -13.930232048034668 + ], + [ + "▁Kyrgyzstan", + -13.930309295654297 + ], + [ + "ве", + -13.930313110351562 + ], + [ + "▁Yue", + -13.930351257324219 + ], + [ + "▁Aiden", + -13.930363655090332 + ], + [ + "▁arousal", + -13.930407524108887 + ], + [ + "▁Grit", + -13.930437088012695 + ], + [ + "了", + -13.930441856384277 + ], + [ + "SOC", + -13.930448532104492 + ], + [ + "▁syllable", + -13.930460929870605 + ], + [ + "▁corral", + -13.930496215820312 + ], + [ + "▁Avant", + -13.930514335632324 + ], + [ + "▁Encounter", + -13.930549621582031 + ], + [ + "▁keg", + -13.930556297302246 + ], + [ + "cco", + -13.93059253692627 + ], + [ + "▁awesomeness", + -13.930593490600586 + ], + [ + "▁feudal", + -13.930631637573242 + ], + [ + "tests", + -13.930639266967773 + ], + [ + "▁totalling", + -13.930744171142578 + ], + [ + "▁Sharia", + -13.930749893188477 + ], + [ + "zal", + -13.930800437927246 + ], + [ + "▁junctions", + -13.930817604064941 + ], + [ + "▁roadblocks", + -13.930887222290039 + ], + [ + "quette", + -13.930917739868164 + ], + [ + "Wednesday", + -13.930990219116211 + ], + [ + "▁Clamp", + -13.931035995483398 + ], + [ + "▁Conceptual", + -13.931039810180664 + ], + [ + "▁Watershed", + -13.931086540222168 + ], + [ + "▁Magician", + -13.931090354919434 + ], + [ + "enable", + -13.931194305419922 + ], + [ + "▁Festivals", + -13.931198120117188 + ], + [ + "eee", + -13.931276321411133 + ], + [ + "mous", + -13.931291580200195 + ], + [ + "▁horrid", + -13.931291580200195 + ], + [ + "▁Ouch", + -13.931340217590332 + ], + [ + "iello", + -13.931391716003418 + ], + [ + "▁Drops", + -13.931452751159668 + ], + [ + "▁Cortez", + -13.931480407714844 + ], + [ + "▁Guernsey", + -13.93150806427002 + ], + [ + "▁Mandatory", + -13.931522369384766 + ], + [ + "▁IGN", + -13.931528091430664 + ], + [ + "nex", + -13.931581497192383 + ], + [ + "▁voila", + -13.931640625 + ], + [ + "▁quant", + -13.931663513183594 + ], + [ + "ners", + -13.931838989257812 + ], + [ + "▁Heli", + -13.93188190460205 + ], + [ + "▁xml", + -13.931929588317871 + ], + [ + "hc", + -13.93196964263916 + ], + [ + "▁Pali", + -13.931978225708008 + ], + [ + "dara", + -13.932015419006348 + ], + [ + "▁Barcode", + -13.932019233703613 + ], + [ + "▁titan", + -13.932053565979004 + ], + [ + "PIC", + -13.932147979736328 + ], + [ + "▁napping", + -13.932225227355957 + ], + [ + "▁rc", + -13.932247161865234 + ], + [ + "▁Genocide", + -13.932255744934082 + ], + [ + "cole", + -13.932302474975586 + ], + [ + "▁Blackstone", + -13.932317733764648 + ], + [ + "▁ide", + -13.932327270507812 + ], + [ + "▁Drizzle", + -13.932330131530762 + ], + [ + "▁braindumps", + -13.932343482971191 + ], + [ + "▁384", + -13.932619094848633 + ], + [ + "577", + -13.93268871307373 + ], + [ + "▁Cramer", + -13.93270492553711 + ], + [ + "▁Tornado", + -13.932705879211426 + ], + [ + "▁356", + -13.932714462280273 + ], + [ + "orian", + -13.932723999023438 + ], + [ + "▁idealistic", + -13.932747840881348 + ], + [ + "▁Cahill", + -13.932775497436523 + ], + [ + "▁surrendering", + -13.932783126831055 + ], + [ + "▁IGF", + -13.932831764221191 + ], + [ + "Grade", + -13.932844161987305 + ], + [ + "▁quadruple", + -13.932873725891113 + ], + [ + "▁pensioners", + -13.932890892028809 + ], + [ + "665", + -13.932989120483398 + ], + [ + "▁quadratic", + -13.933015823364258 + ], + [ + "▁faiths", + -13.933019638061523 + ], + [ + "element", + -13.933039665222168 + ], + [ + "▁periodicals", + -13.93305778503418 + ], + [ + "▁subtlety", + -13.933066368103027 + ], + [ + "ARI", + -13.93307876586914 + ], + [ + "▁Roberta", + -13.933101654052734 + ], + [ + "▁sourdough", + -13.93311595916748 + ], + [ + "▁Acorn", + -13.933154106140137 + ], + [ + "▁Expertise", + -13.933173179626465 + ], + [ + "▁Collected", + -13.933199882507324 + ], + [ + "▁scholastic", + -13.933208465576172 + ], + [ + "bron", + -13.933229446411133 + ], + [ + "SEM", + -13.933259963989258 + ], + [ + "▁EDI", + -13.933326721191406 + ], + [ + "▁brooding", + -13.933365821838379 + ], + [ + "▁CHAPTER", + -13.933411598205566 + ], + [ + "▁repeater", + -13.933500289916992 + ], + [ + "▁Sarri", + -13.933521270751953 + ], + [ + "▁extermination", + -13.933551788330078 + ], + [ + "Var", + -13.933564186096191 + ], + [ + "▁Appropriations", + -13.933576583862305 + ], + [ + "laine", + -13.933587074279785 + ], + [ + "785", + -13.933645248413086 + ], + [ + "▁shoving", + -13.933661460876465 + ], + [ + "▁audiobooks", + -13.933677673339844 + ], + [ + "▁Hoff", + -13.933741569519043 + ], + [ + "mbra", + -13.933899879455566 + ], + [ + "▁sniffing", + -13.933900833129883 + ], + [ + "▁Camb", + -13.933938980102539 + ], + [ + "▁Newsweek", + -13.933947563171387 + ], + [ + "▁martyrs", + -13.933952331542969 + ], + [ + "▁teapot", + -13.934017181396484 + ], + [ + "maps", + -13.934045791625977 + ], + [ + "▁Czechoslovakia", + -13.934120178222656 + ], + [ + "▁snapper", + -13.934155464172363 + ], + [ + "▁subsided", + -13.934157371520996 + ], + [ + "▁Happily", + -13.93422794342041 + ], + [ + "▁Potatoes", + -13.934283256530762 + ], + [ + "▁basalt", + -13.93437385559082 + ], + [ + "▁Orbit", + -13.934401512145996 + ], + [ + "▁Valuation", + -13.934477806091309 + ], + [ + "▁fearsome", + -13.934488296508789 + ], + [ + "▁CIP", + -13.93452262878418 + ], + [ + "▁Kamp", + -13.934593200683594 + ], + [ + "▁tortoise", + -13.93459415435791 + ], + [ + "▁mcg", + -13.934605598449707 + ], + [ + "evident", + -13.934633255004883 + ], + [ + "▁PRINT", + -13.934637069702148 + ], + [ + "▁Accessible", + -13.934646606445312 + ], + [ + "▁MDF", + -13.934743881225586 + ], + [ + "▁gam", + -13.93475341796875 + ], + [ + "latin", + -13.934871673583984 + ], + [ + "thesis", + -13.934924125671387 + ], + [ + "▁lin", + -13.93493366241455 + ], + [ + "▁raz", + -13.934934616088867 + ], + [ + "▁distro", + -13.93494987487793 + ], + [ + "▁bunkers", + -13.934951782226562 + ], + [ + "XI", + -13.934954643249512 + ], + [ + "lva", + -13.934957504272461 + ], + [ + "ETH", + -13.935070037841797 + ], + [ + "nack", + -13.935097694396973 + ], + [ + "▁circadian", + -13.935118675231934 + ], + [ + "Pink", + -13.935128211975098 + ], + [ + "▁unsolved", + -13.935139656066895 + ], + [ + "▁skillset", + -13.935144424438477 + ], + [ + "▁HCA", + -13.935152053833008 + ], + [ + "▁Copp", + -13.935206413269043 + ], + [ + "▁Pelicans", + -13.935240745544434 + ], + [ + "▁Knitting", + -13.935245513916016 + ], + [ + "▁mathematically", + -13.93527889251709 + ], + [ + "▁baffling", + -13.935298919677734 + ], + [ + "▁Invalid", + -13.93529987335205 + ], + [ + "▁potholes", + -13.93533706665039 + ], + [ + "NDA", + -13.935338973999023 + ], + [ + "▁amorphous", + -13.935372352600098 + ], + [ + "gler", + -13.935412406921387 + ], + [ + "leo", + -13.935483932495117 + ], + [ + "▁1842", + -13.935508728027344 + ], + [ + "▁Tamar", + -13.935551643371582 + ], + [ + "▁laureate", + -13.93559741973877 + ], + [ + "▁Spent", + -13.935617446899414 + ], + [ + "▁breathes", + -13.93563175201416 + ], + [ + "▁Properly", + -13.935699462890625 + ], + [ + "imal", + -13.935760498046875 + ], + [ + "agger", + -13.935783386230469 + ], + [ + "▁chevy", + -13.935816764831543 + ], + [ + "▁cams", + -13.935831069946289 + ], + [ + "▁logger", + -13.935835838317871 + ], + [ + "▁british", + -13.93583869934082 + ], + [ + "▁Felicity", + -13.935867309570312 + ], + [ + "▁Marlborough", + -13.935874938964844 + ], + [ + "▁relieves", + -13.935884475708008 + ], + [ + "▁UCL", + -13.936023712158203 + ], + [ + "▁whi", + -13.936077117919922 + ], + [ + "▁weakly", + -13.936098098754883 + ], + [ + "▁414", + -13.936112403869629 + ], + [ + "▁Zab", + -13.936115264892578 + ], + [ + "▁McM", + -13.936151504516602 + ], + [ + "mide", + -13.936153411865234 + ], + [ + "อ", + -13.9361572265625 + ], + [ + "▁Manifesto", + -13.936233520507812 + ], + [ + "▁Alli", + -13.936310768127441 + ], + [ + "533", + -13.936318397521973 + ], + [ + "▁fol", + -13.936376571655273 + ], + [ + "▁Eminem", + -13.936396598815918 + ], + [ + "rrie", + -13.93640422821045 + ], + [ + "▁HSC", + -13.93649673461914 + ], + [ + "▁Vineyards", + -13.93652629852295 + ], + [ + "▁booties", + -13.936600685119629 + ], + [ + "▁pollute", + -13.936613082885742 + ], + [ + "amazing", + -13.936631202697754 + ], + [ + "▁plasmid", + -13.936631202697754 + ], + [ + "▁Alistair", + -13.936638832092285 + ], + [ + "▁beaver", + -13.936650276184082 + ], + [ + "▁radiating", + -13.936666488647461 + ], + [ + "▁confetti", + -13.936775207519531 + ], + [ + "lichen", + -13.936841011047363 + ], + [ + "▁clung", + -13.936843872070312 + ], + [ + "▁Sock", + -13.936880111694336 + ], + [ + "▁kha", + -13.936884880065918 + ], + [ + "erer", + -13.936999320983887 + ], + [ + "Mont", + -13.93700122833252 + ], + [ + "▁Cliffs", + -13.937010765075684 + ], + [ + "▁ADT", + -13.937016487121582 + ], + [ + "▁Palermo", + -13.937039375305176 + ], + [ + "dini", + -13.937137603759766 + ], + [ + "▁unregistered", + -13.937211990356445 + ], + [ + "▁Gallo", + -13.937222480773926 + ], + [ + "▁351", + -13.93724250793457 + ], + [ + "▁fryer", + -13.937268257141113 + ], + [ + "VD", + -13.937270164489746 + ], + [ + "▁ecclesiastical", + -13.937281608581543 + ], + [ + "▁Bookstore", + -13.93729019165039 + ], + [ + "imate", + -13.937311172485352 + ], + [ + "rolled", + -13.937312126159668 + ], + [ + "▁Platforms", + -13.937318801879883 + ], + [ + "▁outperformed", + -13.937336921691895 + ], + [ + "▁DRIVE", + -13.937344551086426 + ], + [ + "▁flamboyant", + -13.937393188476562 + ], + [ + "▁Difficult", + -13.937437057495117 + ], + [ + "▁hospitable", + -13.937458038330078 + ], + [ + "▁THR", + -13.937471389770508 + ], + [ + "elite", + -13.937484741210938 + ], + [ + "▁billet", + -13.937543869018555 + ], + [ + "▁Amendments", + -13.937568664550781 + ], + [ + "▁jihad", + -13.937577247619629 + ], + [ + "▁existent", + -13.937604904174805 + ], + [ + "▁Mounting", + -13.937618255615234 + ], + [ + "lous", + -13.937621116638184 + ], + [ + "▁coincidentally", + -13.93763542175293 + ], + [ + "▁peripherals", + -13.937705039978027 + ], + [ + "▁Nunes", + -13.937710762023926 + ], + [ + "▁Ocasio", + -13.937726020812988 + ], + [ + "▁Gorsuch", + -13.937742233276367 + ], + [ + "▁Frontiers", + -13.937745094299316 + ], + [ + "▁Sund", + -13.937747955322266 + ], + [ + "▁traumatized", + -13.937806129455566 + ], + [ + "▁beamed", + -13.93782901763916 + ], + [ + "▁typeface", + -13.937885284423828 + ], + [ + "▁pooch", + -13.937917709350586 + ], + [ + "calc", + -13.937935829162598 + ], + [ + "▁Chant", + -13.93793773651123 + ], + [ + "▁facsimile", + -13.937969207763672 + ], + [ + "▁trellis", + -13.937969207763672 + ], + [ + "Such", + -13.938000679016113 + ], + [ + "▁assimilate", + -13.938126564025879 + ], + [ + "▁dangle", + -13.938202857971191 + ], + [ + "▁WAV", + -13.938217163085938 + ], + [ + "▁jackpots", + -13.93824577331543 + ], + [ + "holy", + -13.93826961517334 + ], + [ + "▁ape", + -13.93826961517334 + ], + [ + "▁Enlarge", + -13.938282012939453 + ], + [ + "▁hurled", + -13.93831729888916 + ], + [ + "▁Guzman", + -13.938324928283691 + ], + [ + "▁Profits", + -13.938441276550293 + ], + [ + "▁Shrewsbury", + -13.938518524169922 + ], + [ + "▁dials", + -13.938520431518555 + ], + [ + "▁Sufi", + -13.938523292541504 + ], + [ + "▁Veggie", + -13.938547134399414 + ], + [ + "▁gunner", + -13.938599586486816 + ], + [ + "▁aureus", + -13.938610076904297 + ], + [ + "▁hawks", + -13.938634872436523 + ], + [ + "Def", + -13.938689231872559 + ], + [ + "▁unincorporated", + -13.938774108886719 + ], + [ + "▁Airplane", + -13.938876152038574 + ], + [ + "license", + -13.938899993896484 + ], + [ + "▁Outsourcing", + -13.938909530639648 + ], + [ + "▁yells", + -13.93891429901123 + ], + [ + "▁deport", + -13.938989639282227 + ], + [ + "▁abstain", + -13.939004898071289 + ], + [ + "▁Puri", + -13.939030647277832 + ], + [ + "▁Liza", + -13.939068794250488 + ], + [ + "▁Britons", + -13.939072608947754 + ], + [ + "▁hairline", + -13.939088821411133 + ], + [ + "▁Glam", + -13.939118385314941 + ], + [ + "▁wholesaler", + -13.939169883728027 + ], + [ + "▁hegemony", + -13.939223289489746 + ], + [ + "▁Somerville", + -13.939252853393555 + ], + [ + "▁FRA", + -13.939263343811035 + ], + [ + "024", + -13.939297676086426 + ], + [ + "▁ل", + -13.939327239990234 + ], + [ + "▁DMA", + -13.939401626586914 + ], + [ + "▁busting", + -13.939461708068848 + ], + [ + "Cup", + -13.939482688903809 + ], + [ + "wag", + -13.939484596252441 + ], + [ + "apping", + -13.939489364624023 + ], + [ + "ría", + -13.939497947692871 + ], + [ + "Software", + -13.939563751220703 + ], + [ + "▁delusions", + -13.939568519592285 + ], + [ + "▁unscathed", + -13.93966293334961 + ], + [ + "▁infographics", + -13.939682006835938 + ], + [ + "▁Performed", + -13.939687728881836 + ], + [ + "▁horde", + -13.93979549407959 + ], + [ + "scapes", + -13.939842224121094 + ], + [ + "▁cas", + -13.9398775100708 + ], + [ + "▁knelt", + -13.939913749694824 + ], + [ + "▁unorthodox", + -13.939933776855469 + ], + [ + "▁papaya", + -13.939977645874023 + ], + [ + "▁hunk", + -13.939983367919922 + ], + [ + "708", + -13.940046310424805 + ], + [ + "Mas", + -13.940058708190918 + ], + [ + "▁Gigabit", + -13.94007396697998 + ], + [ + "▁lar", + -13.940131187438965 + ], + [ + "sitting", + -13.940139770507812 + ], + [ + "▁Horowitz", + -13.940139770507812 + ], + [ + "▁Clancy", + -13.940176010131836 + ], + [ + "▁Sotheby", + -13.940285682678223 + ], + [ + "▁kb", + -13.9403715133667 + ], + [ + "▁clogging", + -13.940420150756836 + ], + [ + "▁std", + -13.940458297729492 + ], + [ + "▁BSc", + -13.940542221069336 + ], + [ + "▁Jah", + -13.940670013427734 + ], + [ + "Ye", + -13.940695762634277 + ], + [ + "▁tantalizing", + -13.940730094909668 + ], + [ + "▁resetting", + -13.9407377243042 + ], + [ + "▁Celeste", + -13.940751075744629 + ], + [ + "▁Gratis", + -13.940764427185059 + ], + [ + "▁са", + -13.94077205657959 + ], + [ + "haya", + -13.940773963928223 + ], + [ + "▁reigned", + -13.940779685974121 + ], + [ + "▁Rats", + -13.940796852111816 + ], + [ + "▁ROC", + -13.940810203552246 + ], + [ + "▁Kearney", + -13.940838813781738 + ], + [ + "chak", + -13.940876007080078 + ], + [ + "▁microchip", + -13.94091510772705 + ], + [ + "▁affirms", + -13.940979957580566 + ], + [ + "▁misty", + -13.941001892089844 + ], + [ + "▁Suffice", + -13.94111156463623 + ], + [ + "mx", + -13.941115379333496 + ], + [ + "▁MIND", + -13.941126823425293 + ], + [ + "не", + -13.941132545471191 + ], + [ + "▁spectacles", + -13.941154479980469 + ], + [ + "▁Peppermint", + -13.941183090209961 + ], + [ + "▁maroon", + -13.941208839416504 + ], + [ + "▁Infiniti", + -13.94122314453125 + ], + [ + "▁Courtyard", + -13.941253662109375 + ], + [ + "▁Idiot", + -13.941256523132324 + ], + [ + "▁horticulture", + -13.941275596618652 + ], + [ + "1940", + -13.941317558288574 + ], + [ + "CES", + -13.94131851196289 + ], + [ + "421", + -13.941323280334473 + ], + [ + "ру", + -13.9413423538208 + ], + [ + "▁SPL", + -13.941349983215332 + ], + [ + "▁finishers", + -13.941363334655762 + ], + [ + "▁macular", + -13.941397666931152 + ], + [ + "Der", + -13.94140338897705 + ], + [ + "▁Mish", + -13.941415786743164 + ], + [ + "▁Fixtures", + -13.941427230834961 + ], + [ + "▁impossibly", + -13.941579818725586 + ], + [ + "▁Grown", + -13.941610336303711 + ], + [ + "▁spousal", + -13.941664695739746 + ], + [ + "Spa", + -13.941679000854492 + ], + [ + "1963", + -13.941683769226074 + ], + [ + "949", + -13.94168472290039 + ], + [ + "azine", + -13.941699028015137 + ], + [ + "▁Coating", + -13.941704750061035 + ], + [ + "▁Asperger", + -13.941717147827148 + ], + [ + "▁hopelessness", + -13.941720008850098 + ], + [ + "▁biofuels", + -13.941729545593262 + ], + [ + "▁cleanout", + -13.941732406616211 + ], + [ + "▁legislatures", + -13.94173812866211 + ], + [ + "▁Lakh", + -13.941757202148438 + ], + [ + "▁Buc", + -13.94184398651123 + ], + [ + "▁retard", + -13.941875457763672 + ], + [ + "aceous", + -13.94188117980957 + ], + [ + "▁astronomer", + -13.941933631896973 + ], + [ + "▁Bankers", + -13.9419527053833 + ], + [ + "▁coffers", + -13.941959381103516 + ], + [ + "▁slats", + -13.942004203796387 + ], + [ + "▁silencing", + -13.942030906677246 + ], + [ + "▁prospecting", + -13.942034721374512 + ], + [ + "▁Anwar", + -13.94204330444336 + ], + [ + "▁Racer", + -13.94205093383789 + ], + [ + "▁unassuming", + -13.942057609558105 + ], + [ + "▁gy", + -13.942148208618164 + ], + [ + "▁Monde", + -13.942164421081543 + ], + [ + "lica", + -13.942174911499023 + ], + [ + "▁Distributors", + -13.942190170288086 + ], + [ + "940", + -13.942211151123047 + ], + [ + "Story", + -13.942211151123047 + ], + [ + "▁votre", + -13.942234992980957 + ], + [ + "sensor", + -13.942279815673828 + ], + [ + "▁rebuttal", + -13.942357063293457 + ], + [ + "▁Coupled", + -13.942375183105469 + ], + [ + "▁estuary", + -13.9423828125 + ], + [ + "▁Claudio", + -13.942452430725098 + ], + [ + "▁Prostate", + -13.942459106445312 + ], + [ + "▁BETTER", + -13.942558288574219 + ], + [ + "▁unisex", + -13.942591667175293 + ], + [ + "▁Appleton", + -13.94260025024414 + ], + [ + "▁Ode", + -13.942668914794922 + ], + [ + "wax", + -13.942715644836426 + ], + [ + "▁cis", + -13.942736625671387 + ], + [ + "▁sown", + -13.9428129196167 + ], + [ + "MIS", + -13.942821502685547 + ], + [ + "▁repressed", + -13.942874908447266 + ], + [ + "▁Fitting", + -13.942920684814453 + ], + [ + "ד", + -13.942923545837402 + ], + [ + "▁444", + -13.94304370880127 + ], + [ + "▁xbox", + -13.9430513381958 + ], + [ + "▁corona", + -13.943106651306152 + ], + [ + "▁Galli", + -13.943108558654785 + ], + [ + "▁undeveloped", + -13.943206787109375 + ], + [ + "▁001", + -13.943208694458008 + ], + [ + "fluoro", + -13.94321346282959 + ], + [ + "▁canvases", + -13.943231582641602 + ], + [ + "rlarr", + -13.943286895751953 + ], + [ + "▁Nepali", + -13.943291664123535 + ], + [ + "▁FINAL", + -13.94329833984375 + ], + [ + "795", + -13.943306922912598 + ], + [ + "▁cartons", + -13.94333267211914 + ], + [ + "▁Priscilla", + -13.943350791931152 + ], + [ + "▁hereunder", + -13.943378448486328 + ], + [ + "▁empathize", + -13.943477630615234 + ], + [ + "▁Portman", + -13.943499565124512 + ], + [ + "▁frosty", + -13.943511962890625 + ], + [ + "▁nova", + -13.943521499633789 + ], + [ + "φ", + -13.943525314331055 + ], + [ + "▁Incentive", + -13.943535804748535 + ], + [ + "▁Kingsley", + -13.943537712097168 + ], + [ + "▁excesses", + -13.943548202514648 + ], + [ + "Orange", + -13.943724632263184 + ], + [ + "▁Highways", + -13.943724632263184 + ], + [ + "▁Greco", + -13.943727493286133 + ], + [ + "▁Projection", + -13.94373893737793 + ], + [ + "▁339", + -13.943750381469727 + ], + [ + "▁CLEAN", + -13.943799018859863 + ], + [ + "Eat", + -13.943842887878418 + ], + [ + "DOC", + -13.94387149810791 + ], + [ + "▁theorist", + -13.943883895874023 + ], + [ + "▁subsidize", + -13.943893432617188 + ], + [ + "▁Elevator", + -13.943930625915527 + ], + [ + "▁dishonesty", + -13.943961143493652 + ], + [ + "▁CUP", + -13.943985939025879 + ], + [ + "bourg", + -13.944062232971191 + ], + [ + "▁CBA", + -13.944108009338379 + ], + [ + "onte", + -13.944131851196289 + ], + [ + "giri", + -13.944234848022461 + ], + [ + "▁Fairview", + -13.944244384765625 + ], + [ + "▁Softball", + -13.944263458251953 + ], + [ + "▁liberally", + -13.944282531738281 + ], + [ + "▁rubs", + -13.944336891174316 + ], + [ + "▁tankers", + -13.944341659545898 + ], + [ + "▁indigo", + -13.944345474243164 + ], + [ + "ICK", + -13.944364547729492 + ], + [ + "▁conforms", + -13.944405555725098 + ], + [ + "▁Sichuan", + -13.944502830505371 + ], + [ + "▁SECOND", + -13.944557189941406 + ], + [ + "▁indent", + -13.944574356079102 + ], + [ + "▁SON", + -13.944609642028809 + ], + [ + "▁Manuals", + -13.944632530212402 + ], + [ + "▁Koe", + -13.944684028625488 + ], + [ + "porn", + -13.944769859313965 + ], + [ + "▁Eine", + -13.944786071777344 + ], + [ + "▁clapping", + -13.94484806060791 + ], + [ + "rte", + -13.94489574432373 + ], + [ + "▁Ozone", + -13.94489860534668 + ], + [ + "▁farthest", + -13.94491195678711 + ], + [ + "▁concerto", + -13.944927215576172 + ], + [ + "cote", + -13.944938659667969 + ], + [ + "▁Dav", + -13.944947242736816 + ], + [ + "▁moles", + -13.944961547851562 + ], + [ + "pse", + -13.945000648498535 + ], + [ + "▁Utrecht", + -13.945021629333496 + ], + [ + "▁DSC", + -13.945039749145508 + ], + [ + "woven", + -13.945053100585938 + ], + [ + "▁REVIEW", + -13.945154190063477 + ], + [ + "▁Spelling", + -13.945159912109375 + ], + [ + "fus", + -13.945189476013184 + ], + [ + "▁nonpartisan", + -13.945199966430664 + ], + [ + "▁contraption", + -13.945202827453613 + ], + [ + "▁Linde", + -13.9452543258667 + ], + [ + "▁Melan", + -13.945334434509277 + ], + [ + "binary", + -13.945353507995605 + ], + [ + "protective", + -13.945367813110352 + ], + [ + "▁yellowish", + -13.945419311523438 + ], + [ + "▁347", + -13.945527076721191 + ], + [ + "▁VISA", + -13.945570945739746 + ], + [ + "mature", + -13.945589065551758 + ], + [ + "ieri", + -13.945612907409668 + ], + [ + "▁deflation", + -13.94564437866211 + ], + [ + "▁expedient", + -13.945657730102539 + ], + [ + "▁Renegade", + -13.945672035217285 + ], + [ + "voy", + -13.945677757263184 + ], + [ + "489", + -13.945679664611816 + ], + [ + "▁tourney", + -13.94568920135498 + ], + [ + "090", + -13.945781707763672 + ], + [ + "▁duality", + -13.945810317993164 + ], + [ + "▁waltz", + -13.945810317993164 + ], + [ + "▁dedicating", + -13.945874214172363 + ], + [ + "ament", + -13.945929527282715 + ], + [ + "▁chan", + -13.945967674255371 + ], + [ + "▁Sponsorship", + -13.945972442626953 + ], + [ + "▁contented", + -13.946009635925293 + ], + [ + "Basic", + -13.94603157043457 + ], + [ + "ас", + -13.94609260559082 + ], + [ + "▁Traveller", + -13.94609260559082 + ], + [ + "▁bowing", + -13.946160316467285 + ], + [ + "▁mortals", + -13.946167945861816 + ], + [ + "▁urea", + -13.946176528930664 + ], + [ + "▁Gators", + -13.946209907531738 + ], + [ + "Ky", + -13.946277618408203 + ], + [ + "confident", + -13.946311950683594 + ], + [ + "▁Bloggers", + -13.946368217468262 + ], + [ + "uin", + -13.946383476257324 + ], + [ + "▁clumps", + -13.946417808532715 + ], + [ + "▁Spill", + -13.946431159973145 + ], + [ + "CJ", + -13.946578979492188 + ], + [ + "finance", + -13.946603775024414 + ], + [ + "▁seater", + -13.946680068969727 + ], + [ + "▁Racism", + -13.94670581817627 + ], + [ + "▁Trivia", + -13.946709632873535 + ], + [ + "▁Xing", + -13.946725845336914 + ], + [ + "options", + -13.946772575378418 + ], + [ + "709", + -13.946805953979492 + ], + [ + "▁ITC", + -13.946810722351074 + ], + [ + "▁invalidate", + -13.946864128112793 + ], + [ + "▁Iphone", + -13.946876525878906 + ], + [ + "foil", + -13.94689655303955 + ], + [ + "JD", + -13.947019577026367 + ], + [ + "▁typhoon", + -13.947037696838379 + ], + [ + "aboo", + -13.947070121765137 + ], + [ + "▁aborted", + -13.947086334228516 + ], + [ + "9001", + -13.947209358215332 + ], + [ + "▁Warwickshire", + -13.947247505187988 + ], + [ + "学", + -13.947259902954102 + ], + [ + "▁KF", + -13.947305679321289 + ], + [ + "▁blurring", + -13.94731616973877 + ], + [ + "▁Bubba", + -13.947319030761719 + ], + [ + "▁fracturing", + -13.947340965270996 + ], + [ + "▁341", + -13.947372436523438 + ], + [ + "▁Stall", + -13.947386741638184 + ], + [ + "▁smoothed", + -13.9473876953125 + ], + [ + "▁Lash", + -13.947396278381348 + ], + [ + "TLE", + -13.947441101074219 + ], + [ + "▁afield", + -13.947521209716797 + ], + [ + "▁cellphones", + -13.947522163391113 + ], + [ + "▁restarting", + -13.947559356689453 + ], + [ + "▁Spur", + -13.947566032409668 + ], + [ + "▁flocked", + -13.9475679397583 + ], + [ + "▁binaries", + -13.947580337524414 + ], + [ + "tial", + -13.947588920593262 + ], + [ + "OVER", + -13.947649002075195 + ], + [ + "Royce", + -13.94770336151123 + ], + [ + "Cons", + -13.94773006439209 + ], + [ + "▁standstill", + -13.947776794433594 + ], + [ + "▁multivariate", + -13.947794914245605 + ], + [ + "▁intercom", + -13.947810173034668 + ], + [ + "▁visualisation", + -13.947859764099121 + ], + [ + "▁cooperatives", + -13.947977066040039 + ], + [ + "▁Porte", + -13.947979927062988 + ], + [ + "▁tabled", + -13.948001861572266 + ], + [ + "YE", + -13.94801139831543 + ], + [ + "ncia", + -13.948020935058594 + ], + [ + "▁Radiant", + -13.948023796081543 + ], + [ + "▁Discharge", + -13.948025703430176 + ], + [ + "obviously", + -13.948095321655273 + ], + [ + "atom", + -13.948103904724121 + ], + [ + "YT", + -13.94810676574707 + ], + [ + "▁aristocratic", + -13.948155403137207 + ], + [ + "▁postmodern", + -13.948162078857422 + ], + [ + "▁Agatha", + -13.9481840133667 + ], + [ + "▁Eurozone", + -13.948185920715332 + ], + [ + "▁appraiser", + -13.948223114013672 + ], + [ + "▁abstinence", + -13.948244094848633 + ], + [ + "▁rx", + -13.948263168334961 + ], + [ + "▁vegans", + -13.948275566101074 + ], + [ + "▁Passed", + -13.948277473449707 + ], + [ + "▁hedges", + -13.948283195495605 + ], + [ + "▁UKIP", + -13.948345184326172 + ], + [ + "▁Kob", + -13.948397636413574 + ], + [ + "▁jordan", + -13.94839859008789 + ], + [ + "▁gab", + -13.94840145111084 + ], + [ + "democratic", + -13.948426246643066 + ], + [ + "ordinary", + -13.948429107666016 + ], + [ + "▁cobbled", + -13.948480606079102 + ], + [ + "▁Fle", + -13.948554039001465 + ], + [ + "▁sandal", + -13.948566436767578 + ], + [ + "alli", + -13.948591232299805 + ], + [ + "dwelling", + -13.948599815368652 + ], + [ + "▁porches", + -13.948685646057129 + ], + [ + "lase", + -13.94869613647461 + ], + [ + "▁meditations", + -13.948771476745605 + ], + [ + "▁Motorsport", + -13.948809623718262 + ], + [ + "▁fairer", + -13.948952674865723 + ], + [ + "▁sociable", + -13.948952674865723 + ], + [ + "▁crores", + -13.948969841003418 + ], + [ + "▁overlays", + -13.948989868164062 + ], + [ + "▁conical", + -13.948997497558594 + ], + [ + "해", + -13.949009895324707 + ], + [ + "▁Mekong", + -13.949031829833984 + ], + [ + "▁valentine", + -13.949053764343262 + ], + [ + "▁Vauxhall", + -13.949069023132324 + ], + [ + "▁Kron", + -13.949082374572754 + ], + [ + "▁Questionnaire", + -13.949104309082031 + ], + [ + "▁converged", + -13.949134826660156 + ], + [ + "부", + -13.949143409729004 + ], + [ + "▁Maxine", + -13.949235916137695 + ], + [ + "Writing", + -13.949305534362793 + ], + [ + "ulia", + -13.949307441711426 + ], + [ + "▁Gabby", + -13.949316024780273 + ], + [ + "▁altitudes", + -13.949346542358398 + ], + [ + "gha", + -13.949369430541992 + ], + [ + "▁decrypt", + -13.949405670166016 + ], + [ + "▁Nestle", + -13.949417114257812 + ], + [ + "▁Render", + -13.949417114257812 + ], + [ + "▁Petitioner", + -13.949531555175781 + ], + [ + "▁angler", + -13.949531555175781 + ], + [ + "ί", + -13.949536323547363 + ], + [ + "▁Doctorate", + -13.949583053588867 + ], + [ + "▁Olaf", + -13.949610710144043 + ], + [ + "GAR", + -13.949617385864258 + ], + [ + "▁chubby", + -13.949644088745117 + ], + [ + "▁levelled", + -13.949706077575684 + ], + [ + "▁Nin", + -13.949728965759277 + ], + [ + "▁Marvelous", + -13.949732780456543 + ], + [ + "▁scour", + -13.94975757598877 + ], + [ + "walker", + -13.949786186218262 + ], + [ + "RAS", + -13.949798583984375 + ], + [ + "jiang", + -13.949867248535156 + ], + [ + "▁accorded", + -13.949893951416016 + ], + [ + "▁fowl", + -13.949895858764648 + ], + [ + "▁Gladys", + -13.949913024902344 + ], + [ + "▁strategists", + -13.949938774108887 + ], + [ + "Sen", + -13.94996166229248 + ], + [ + "▁Tops", + -13.949969291687012 + ], + [ + "▁Yee", + -13.94998550415039 + ], + [ + "uther", + -13.950019836425781 + ], + [ + "▁livery", + -13.950042724609375 + ], + [ + "▁Adaptation", + -13.950055122375488 + ], + [ + "Eric", + -13.950066566467285 + ], + [ + "▁scathing", + -13.950081825256348 + ], + [ + "▁USAID", + -13.950088500976562 + ], + [ + "▁electrostatic", + -13.950096130371094 + ], + [ + "637", + -13.950121879577637 + ], + [ + "▁crutches", + -13.950135231018066 + ], + [ + "Future", + -13.950141906738281 + ], + [ + "Est", + -13.950170516967773 + ], + [ + "▁intricately", + -13.95017147064209 + ], + [ + "debt", + -13.950187683105469 + ], + [ + "▁sacrament", + -13.950207710266113 + ], + [ + "▁Palms", + -13.950225830078125 + ], + [ + "▁Squire", + -13.95023250579834 + ], + [ + "Round", + -13.950302124023438 + ], + [ + "▁tulle", + -13.950324058532715 + ], + [ + "▁Lookout", + -13.95033073425293 + ], + [ + "▁Donnie", + -13.950387001037598 + ], + [ + "▁Sagittarius", + -13.950440406799316 + ], + [ + "▁castor", + -13.950448989868164 + ], + [ + "pai", + -13.950474739074707 + ], + [ + "▁Capcom", + -13.950554847717285 + ], + [ + "▁Relocation", + -13.950578689575195 + ], + [ + "tags", + -13.950597763061523 + ], + [ + "677", + -13.950599670410156 + ], + [ + "▁briefings", + -13.950601577758789 + ], + [ + "inte", + -13.950647354125977 + ], + [ + "▁dissertations", + -13.950691223144531 + ], + [ + "abuse", + -13.950713157653809 + ], + [ + "▁Vos", + -13.950732231140137 + ], + [ + "▁sua", + -13.950738906860352 + ], + [ + "kies", + -13.95077133178711 + ], + [ + "reich", + -13.950782775878906 + ], + [ + "▁fastidious", + -13.950797080993652 + ], + [ + "▁Colchester", + -13.950814247131348 + ], + [ + "▁Qualifications", + -13.950814247131348 + ], + [ + "▁Kauai", + -13.950825691223145 + ], + [ + "▁DAN", + -13.950830459594727 + ], + [ + "▁dissenting", + -13.950834274291992 + ], + [ + "adding", + -13.950904846191406 + ], + [ + "acc", + -13.950950622558594 + ], + [ + "Dry", + -13.950974464416504 + ], + [ + "Complete", + -13.95098876953125 + ], + [ + "▁Jamestown", + -13.951019287109375 + ], + [ + "▁breathless", + -13.951020240783691 + ], + [ + "▁milking", + -13.9510498046875 + ], + [ + "sons", + -13.951068878173828 + ], + [ + "purple", + -13.951189041137695 + ], + [ + "▁Journalist", + -13.95122241973877 + ], + [ + "rella", + -13.951395988464355 + ], + [ + "Johnson", + -13.951433181762695 + ], + [ + "▁angeles", + -13.951448440551758 + ], + [ + "▁Kasich", + -13.95145320892334 + ], + [ + "▁promos", + -13.95150089263916 + ], + [ + "▁centering", + -13.951504707336426 + ], + [ + "▁Galapagos", + -13.951505661010742 + ], + [ + "▁proportionate", + -13.951518058776855 + ], + [ + "地", + -13.951579093933105 + ], + [ + "▁motoring", + -13.951589584350586 + ], + [ + "▁să", + -13.951592445373535 + ], + [ + "Got", + -13.951597213745117 + ], + [ + "▁Sass", + -13.951602935791016 + ], + [ + "▁unhappiness", + -13.951608657836914 + ], + [ + "▁Blanca", + -13.951614379882812 + ], + [ + "▁snowflake", + -13.951720237731934 + ], + [ + "▁ef", + -13.951788902282715 + ], + [ + "▁Shear", + -13.951866149902344 + ], + [ + "▁Pulling", + -13.95186710357666 + ], + [ + "CMA", + -13.951884269714355 + ], + [ + "▁ALP", + -13.951933860778809 + ], + [ + "▁estimator", + -13.951939582824707 + ], + [ + "▁Oceanic", + -13.951995849609375 + ], + [ + "▁jails", + -13.951996803283691 + ], + [ + "▁Gle", + -13.952006340026855 + ], + [ + "1002", + -13.952147483825684 + ], + [ + "▁Gifford", + -13.952208518981934 + ], + [ + "▁enthralled", + -13.9522123336792 + ], + [ + "▁cru", + -13.952213287353516 + ], + [ + "▁Germanic", + -13.952219009399414 + ], + [ + "▁JG", + -13.952238082885742 + ], + [ + "▁Palazzo", + -13.952241897583008 + ], + [ + "622", + -13.952280044555664 + ], + [ + "▁chu", + -13.952296257019043 + ], + [ + "▁EPIC", + -13.952383041381836 + ], + [ + "▁peeps", + -13.952428817749023 + ], + [ + "▁sequenced", + -13.95244026184082 + ], + [ + "▁Kashmiri", + -13.952547073364258 + ], + [ + "▁Socio", + -13.95258617401123 + ], + [ + "blo", + -13.952646255493164 + ], + [ + "CSS", + -13.952667236328125 + ], + [ + "▁Margin", + -13.952683448791504 + ], + [ + "▁Towing", + -13.952692985534668 + ], + [ + "▁paces", + -13.952692985534668 + ], + [ + "825", + -13.952754974365234 + ], + [ + "▁immigrated", + -13.952783584594727 + ], + [ + "▁mouthful", + -13.952837944030762 + ], + [ + "▁Nei", + -13.95285415649414 + ], + [ + "▁Minsk", + -13.952873229980469 + ], + [ + "▁WIP", + -13.952898979187012 + ], + [ + "▁reptile", + -13.952948570251465 + ], + [ + "TOP", + -13.952993392944336 + ], + [ + "▁scribe", + -13.95301628112793 + ], + [ + "▁Miya", + -13.953017234802246 + ], + [ + "▁Commenting", + -13.953049659729004 + ], + [ + "▁Girlfriend", + -13.953092575073242 + ], + [ + "▁scrubs", + -13.953145980834961 + ], + [ + "▁Doppler", + -13.953174591064453 + ], + [ + "▁Aba", + -13.95319938659668 + ], + [ + "AAC", + -13.953202247619629 + ], + [ + "▁Mela", + -13.953275680541992 + ], + [ + "residential", + -13.953283309936523 + ], + [ + "▁predictability", + -13.95332145690918 + ], + [ + "Finder", + -13.953333854675293 + ], + [ + "▁Lumin", + -13.953352928161621 + ], + [ + "▁Merlot", + -13.953423500061035 + ], + [ + "OKE", + -13.953485488891602 + ], + [ + "tp", + -13.953493118286133 + ], + [ + "affiliated", + -13.953530311584473 + ], + [ + "▁defies", + -13.953563690185547 + ], + [ + "eger", + -13.953577995300293 + ], + [ + "▁ruffle", + -13.95358657836914 + ], + [ + "▁EURO", + -13.953612327575684 + ], + [ + "chuck", + -13.953720092773438 + ], + [ + "▁spook", + -13.95375919342041 + ], + [ + "▁wrinkled", + -13.953791618347168 + ], + [ + "▁mercenaries", + -13.953798294067383 + ], + [ + "endi", + -13.953829765319824 + ], + [ + "▁fern", + -13.953941345214844 + ], + [ + "mage", + -13.95396614074707 + ], + [ + "▁debtors", + -13.95398998260498 + ], + [ + "▁Harsh", + -13.953997611999512 + ], + [ + "tella", + -13.954002380371094 + ], + [ + "▁LIST", + -13.9540376663208 + ], + [ + "▁microarray", + -13.954100608825684 + ], + [ + "ק", + -13.95411205291748 + ], + [ + "▁Picard", + -13.954133987426758 + ], + [ + "▁plastered", + -13.954154968261719 + ], + [ + "tough", + -13.954202651977539 + ], + [ + "▁Aloha", + -13.954231262207031 + ], + [ + "▁bastion", + -13.954251289367676 + ], + [ + "▁elicited", + -13.954320907592773 + ], + [ + "▁DEP", + -13.95433235168457 + ], + [ + "521", + -13.954346656799316 + ], + [ + "▁sultry", + -13.95436954498291 + ], + [ + "▁handpicked", + -13.954429626464844 + ], + [ + "▁kinetics", + -13.954459190368652 + ], + [ + "▁Bari", + -13.954465866088867 + ], + [ + "▁Smiley", + -13.954477310180664 + ], + [ + "▁Nikita", + -13.95451545715332 + ], + [ + "▁redefined", + -13.954520225524902 + ], + [ + "zell", + -13.95455551147461 + ], + [ + "APS", + -13.95456600189209 + ], + [ + "▁Kaur", + -13.954580307006836 + ], + [ + "▁antiquated", + -13.954599380493164 + ], + [ + "▁louis", + -13.95465087890625 + ], + [ + "▁eastbound", + -13.954655647277832 + ], + [ + "▁Leia", + -13.954668998718262 + ], + [ + "▁£300", + -13.954702377319336 + ], + [ + "▁truss", + -13.954748153686523 + ], + [ + "▁headlining", + -13.954751968383789 + ], + [ + "▁Tav", + -13.954753875732422 + ], + [ + "▁Camilla", + -13.9548978805542 + ], + [ + "▁alleles", + -13.954898834228516 + ], + [ + "▁gelato", + -13.954931259155273 + ], + [ + "jie", + -13.954973220825195 + ], + [ + "▁Skating", + -13.954994201660156 + ], + [ + "▁exemplify", + -13.955035209655762 + ], + [ + "rona", + -13.95508098602295 + ], + [ + "▁WBC", + -13.955154418945312 + ], + [ + "mination", + -13.955166816711426 + ], + [ + "orie", + -13.955201148986816 + ], + [ + "neur", + -13.955218315124512 + ], + [ + "Cortez", + -13.955284118652344 + ], + [ + "▁Portage", + -13.955312728881836 + ], + [ + "930", + -13.955317497253418 + ], + [ + "▁dengue", + -13.955349922180176 + ], + [ + "▁flue", + -13.955357551574707 + ], + [ + "▁Moffat", + -13.955378532409668 + ], + [ + "▁swoon", + -13.955388069152832 + ], + [ + "▁byproduct", + -13.955426216125488 + ], + [ + "▁hammers", + -13.955497741699219 + ], + [ + "Nor", + -13.9555082321167 + ], + [ + "▁Welles", + -13.955514907836914 + ], + [ + "▁Ronan", + -13.955530166625977 + ], + [ + "wikipedia", + -13.955557823181152 + ], + [ + "▁Cactus", + -13.955575942993164 + ], + [ + "▁Esta", + -13.955618858337402 + ], + [ + "▁Quan", + -13.955620765686035 + ], + [ + "▁bou", + -13.95563793182373 + ], + [ + "▁backfire", + -13.955652236938477 + ], + [ + "▁TOR", + -13.955769538879395 + ], + [ + "▁Selma", + -13.95584774017334 + ], + [ + "▁Tik", + -13.955903053283691 + ], + [ + "▁Knowles", + -13.95593547821045 + ], + [ + "KIN", + -13.955953598022461 + ], + [ + "▁rusher", + -13.9559907913208 + ], + [ + "SCA", + -13.956047058105469 + ], + [ + "Honey", + -13.956113815307617 + ], + [ + "▁associating", + -13.956114768981934 + ], + [ + "▁Cochran", + -13.95611572265625 + ], + [ + "▁archetype", + -13.956148147583008 + ], + [ + "436", + -13.956171989440918 + ], + [ + "roo", + -13.956192016601562 + ], + [ + "▁gestational", + -13.956220626831055 + ], + [ + "▁Cen", + -13.956231117248535 + ], + [ + "▁subunit", + -13.95625114440918 + ], + [ + "▁Vig", + -13.956307411193848 + ], + [ + "phonic", + -13.95631217956543 + ], + [ + "handedly", + -13.956340789794922 + ], + [ + "▁Milestone", + -13.95638370513916 + ], + [ + "635", + -13.956395149230957 + ], + [ + "▁Donegal", + -13.956432342529297 + ], + [ + "645", + -13.956494331359863 + ], + [ + "▁weeding", + -13.956510543823242 + ], + [ + "▁Sniper", + -13.956512451171875 + ], + [ + "▁Probate", + -13.956543922424316 + ], + [ + "dhar", + -13.956579208374023 + ], + [ + "▁Pops", + -13.956612586975098 + ], + [ + "▁TY", + -13.956619262695312 + ], + [ + "▁Spectator", + -13.956645965576172 + ], + [ + "▁DONE", + -13.956681251525879 + ], + [ + "ви", + -13.956805229187012 + ], + [ + "618", + -13.956806182861328 + ], + [ + "▁ballerina", + -13.956905364990234 + ], + [ + "▁repressive", + -13.956910133361816 + ], + [ + "▁Rouhani", + -13.956962585449219 + ], + [ + "▁395", + -13.957002639770508 + ], + [ + "▁Wendell", + -13.95702075958252 + ], + [ + "▁spandex", + -13.957042694091797 + ], + [ + "dw", + -13.95705509185791 + ], + [ + "corner", + -13.957060813903809 + ], + [ + "apply", + -13.957073211669922 + ], + [ + "authors", + -13.957094192504883 + ], + [ + "join", + -13.957094192504883 + ], + [ + "548", + -13.957096099853516 + ], + [ + "▁daydream", + -13.957099914550781 + ], + [ + "▁chiffon", + -13.95712947845459 + ], + [ + "▁Correspondence", + -13.957143783569336 + ], + [ + "▁ful", + -13.95715045928955 + ], + [ + "▁Fanta", + -13.957155227661133 + ], + [ + "▁Collecting", + -13.957171440124512 + ], + [ + "heel", + -13.957199096679688 + ], + [ + "685", + -13.957208633422852 + ], + [ + "▁Rufus", + -13.957209587097168 + ], + [ + "mber", + -13.957233428955078 + ], + [ + "Library", + -13.957243919372559 + ], + [ + "▁gov", + -13.957246780395508 + ], + [ + "▁Aadhaar", + -13.957270622253418 + ], + [ + "Ol", + -13.957281112670898 + ], + [ + "▁Islamists", + -13.957307815551758 + ], + [ + "▁Brees", + -13.957328796386719 + ], + [ + "NOS", + -13.957403182983398 + ], + [ + "▁495", + -13.957414627075195 + ], + [ + "▁Gentile", + -13.95747184753418 + ], + [ + "▁Lark", + -13.957477569580078 + ], + [ + "▁feisty", + -13.957505226135254 + ], + [ + "656", + -13.95753002166748 + ], + [ + "arse", + -13.957538604736328 + ], + [ + "▁Gatsby", + -13.95768928527832 + ], + [ + "▁CAF", + -13.957728385925293 + ], + [ + "anny", + -13.957752227783203 + ], + [ + "▁Thieves", + -13.957762718200684 + ], + [ + "▁Prosecution", + -13.957839012145996 + ], + [ + "▁fervent", + -13.957843780517578 + ], + [ + "▁pleated", + -13.957864761352539 + ], + [ + "▁Osprey", + -13.957867622375488 + ], + [ + "nae", + -13.957892417907715 + ], + [ + "majority", + -13.957897186279297 + ], + [ + "icle", + -13.957945823669434 + ], + [ + "▁TEA", + -13.957955360412598 + ], + [ + "▁298", + -13.957975387573242 + ], + [ + "▁lymphocytes", + -13.958003044128418 + ], + [ + "▁moi", + -13.958011627197266 + ], + [ + "▁Divi", + -13.958017349243164 + ], + [ + "▁Donor", + -13.958076477050781 + ], + [ + "▁Sparta", + -13.95808219909668 + ], + [ + "▁bypassing", + -13.958101272583008 + ], + [ + "▁Prayers", + -13.958191871643066 + ], + [ + "▁stuffy", + -13.958196640014648 + ], + [ + "▁Biodiversity", + -13.958250999450684 + ], + [ + "하", + -13.958251953125 + ], + [ + "▁effluent", + -13.958277702331543 + ], + [ + "767", + -13.958329200744629 + ], + [ + "▁Initiatives", + -13.95837688446045 + ], + [ + "▁Andover", + -13.958394050598145 + ], + [ + "▁HCG", + -13.958441734313965 + ], + [ + "▁Müller", + -13.958452224731445 + ], + [ + "▁855", + -13.958463668823242 + ], + [ + "▁Spoiler", + -13.958504676818848 + ], + [ + "▁octa", + -13.958513259887695 + ], + [ + "▁MODEL", + -13.958539962768555 + ], + [ + "diet", + -13.958562850952148 + ], + [ + "▁Tul", + -13.958616256713867 + ], + [ + "▁Excited", + -13.958765983581543 + ], + [ + "▁Grafton", + -13.9587984085083 + ], + [ + "▁PIP", + -13.9587984085083 + ], + [ + "▁1843", + -13.958894729614258 + ], + [ + "shopping", + -13.958897590637207 + ], + [ + "▁Emphasis", + -13.958929061889648 + ], + [ + "▁Particle", + -13.959005355834961 + ], + [ + "▁SIX", + -13.959028244018555 + ], + [ + "▁Sargent", + -13.959059715270996 + ], + [ + "▁Hoodie", + -13.959102630615234 + ], + [ + "▁anarchy", + -13.95910358428955 + ], + [ + "▁riser", + -13.959108352661133 + ], + [ + "▁Luz", + -13.959132194519043 + ], + [ + "▁truncated", + -13.9591703414917 + ], + [ + "▁Priced", + -13.95917797088623 + ], + [ + "gens", + -13.959205627441406 + ], + [ + "▁Photographic", + -13.959232330322266 + ], + [ + "▁totem", + -13.959243774414062 + ], + [ + "elly", + -13.959263801574707 + ], + [ + "▁ENTER", + -13.95927619934082 + ], + [ + "▁£250", + -13.95927906036377 + ], + [ + "posed", + -13.959314346313477 + ], + [ + "▁ASK", + -13.959400177001953 + ], + [ + "sleeve", + -13.959406852722168 + ], + [ + "sonic", + -13.959442138671875 + ], + [ + "▁zippered", + -13.95945930480957 + ], + [ + "▁besieged", + -13.959487915039062 + ], + [ + "minster", + -13.959511756896973 + ], + [ + "▁batsmen", + -13.959526062011719 + ], + [ + "ump", + -13.959547996520996 + ], + [ + "▁materialism", + -13.959609985351562 + ], + [ + "Know", + -13.959630012512207 + ], + [ + "ATIONS", + -13.959636688232422 + ], + [ + "▁strangest", + -13.95964241027832 + ], + [ + "▁JAMA", + -13.959691047668457 + ], + [ + "ange", + -13.959693908691406 + ], + [ + "▁Cultures", + -13.95979118347168 + ], + [ + "iller", + -13.95986270904541 + ], + [ + "avis", + -13.95986557006836 + ], + [ + "▁disprove", + -13.959871292114258 + ], + [ + "▁990", + -13.9599027633667 + ], + [ + "▁Fertility", + -13.959905624389648 + ], + [ + "▁Buddhists", + -13.959906578063965 + ], + [ + "lique", + -13.959914207458496 + ], + [ + "478", + -13.95993709564209 + ], + [ + "▁Matteo", + -13.959951400756836 + ], + [ + "▁admirers", + -13.959975242614746 + ], + [ + "CSI", + -13.960060119628906 + ], + [ + "lysis", + -13.960162162780762 + ], + [ + "▁deactivate", + -13.960206985473633 + ], + [ + "▁ATF", + -13.96024227142334 + ], + [ + "▁Vidal", + -13.960309982299805 + ], + [ + "▁millimeters", + -13.960371971130371 + ], + [ + "▁playmaker", + -13.960440635681152 + ], + [ + "▁BAT", + -13.960447311401367 + ], + [ + "▁roost", + -13.960456848144531 + ], + [ + "М", + -13.960474014282227 + ], + [ + "▁enshrined", + -13.960489273071289 + ], + [ + "▁Khal", + -13.960497856140137 + ], + [ + "▁Carriage", + -13.960518836975098 + ], + [ + "Wish", + -13.96053409576416 + ], + [ + "▁terrier", + -13.96053409576416 + ], + [ + "▁gratefully", + -13.96054458618164 + ], + [ + "▁DUP", + -13.960576057434082 + ], + [ + "▁knuckles", + -13.960580825805664 + ], + [ + "kn", + -13.960591316223145 + ], + [ + "▁Stands", + -13.960630416870117 + ], + [ + "▁damping", + -13.96063232421875 + ], + [ + "ク", + -13.960661888122559 + ], + [ + "▁plantar", + -13.960731506347656 + ], + [ + "▁Commit", + -13.960772514343262 + ], + [ + "▁TCU", + -13.960783958435059 + ], + [ + "metallic", + -13.960784912109375 + ], + [ + "Need", + -13.960795402526855 + ], + [ + "▁432", + -13.96082878112793 + ], + [ + "▁plums", + -13.960835456848145 + ], + [ + "▁Firefly", + -13.960899353027344 + ], + [ + "peri", + -13.960918426513672 + ], + [ + "▁Pillar", + -13.960928916931152 + ], + [ + "▁Dune", + -13.960935592651367 + ], + [ + "▁SAD", + -13.960954666137695 + ], + [ + "lberg", + -13.96097469329834 + ], + [ + "▁CORE", + -13.961029052734375 + ], + [ + "732", + -13.961071968078613 + ], + [ + "▁Lobo", + -13.961130142211914 + ], + [ + "▁Emmett", + -13.961141586303711 + ], + [ + "organization", + -13.961186408996582 + ], + [ + "▁Glee", + -13.961188316345215 + ], + [ + "Rx", + -13.961277961730957 + ], + [ + "racist", + -13.961298942565918 + ], + [ + "▁Cycles", + -13.961313247680664 + ], + [ + "students", + -13.961318016052246 + ], + [ + "thorn", + -13.961321830749512 + ], + [ + "▁handkerchief", + -13.96133041381836 + ], + [ + "▁windfall", + -13.961333274841309 + ], + [ + "▁Borneo", + -13.961440086364746 + ], + [ + "▁По", + -13.961516380310059 + ], + [ + "▁inept", + -13.96158218383789 + ], + [ + "▁easter", + -13.96160888671875 + ], + [ + "▁etsy", + -13.961832046508789 + ], + [ + "▁ruffled", + -13.96186637878418 + ], + [ + "▁unbroken", + -13.961884498596191 + ], + [ + "PRI", + -13.961907386779785 + ], + [ + "▁PERSON", + -13.96191692352295 + ], + [ + "▁Unsurprisingly", + -13.96197509765625 + ], + [ + "▁cont", + -13.962118148803711 + ], + [ + "jima", + -13.962129592895508 + ], + [ + "EMS", + -13.962170600891113 + ], + [ + "▁GAA", + -13.962263107299805 + ], + [ + "▁campgrounds", + -13.962307929992676 + ], + [ + "▁ORIGINAL", + -13.962347030639648 + ], + [ + "Early", + -13.96235466003418 + ], + [ + "ipa", + -13.96237564086914 + ], + [ + "▁1790", + -13.962413787841797 + ], + [ + "▁Goodyear", + -13.962421417236328 + ], + [ + "▁refractive", + -13.962431907653809 + ], + [ + "▁aloof", + -13.962433815002441 + ], + [ + "EAR", + -13.962456703186035 + ], + [ + "▁Burundi", + -13.962508201599121 + ], + [ + "▁730", + -13.96252155303955 + ], + [ + "▁Belichick", + -13.962539672851562 + ], + [ + "▁offside", + -13.962552070617676 + ], + [ + "▁CPM", + -13.962562561035156 + ], + [ + "▁Dreaming", + -13.962568283081055 + ], + [ + "oscopy", + -13.962583541870117 + ], + [ + "YN", + -13.962594032287598 + ], + [ + "▁defamatory", + -13.96259593963623 + ], + [ + "▁zoned", + -13.962614059448242 + ], + [ + "▁Glove", + -13.96263599395752 + ], + [ + "▁blemish", + -13.962644577026367 + ], + [ + "▁simplification", + -13.96268081665039 + ], + [ + "▁Timer", + -13.962702751159668 + ], + [ + "▁Opened", + -13.962715148925781 + ], + [ + "▁goo", + -13.962733268737793 + ], + [ + "▁ballads", + -13.96273422241211 + ], + [ + "▁Lynx", + -13.962743759155273 + ], + [ + "tology", + -13.96274471282959 + ], + [ + "▁Eater", + -13.962750434875488 + ], + [ + "▁energizing", + -13.962787628173828 + ], + [ + "▁choppy", + -13.962814331054688 + ], + [ + "▁quail", + -13.962875366210938 + ], + [ + "▁conf", + -13.962915420532227 + ], + [ + "▁Srinagar", + -13.962916374206543 + ], + [ + "്", + -13.962928771972656 + ], + [ + "▁Guido", + -13.963052749633789 + ], + [ + "▁renown", + -13.963053703308105 + ], + [ + "advanced", + -13.963109970092773 + ], + [ + "vice", + -13.963136672973633 + ], + [ + "▁testifying", + -13.963150978088379 + ], + [ + "▁stockpile", + -13.963157653808594 + ], + [ + "▁409", + -13.96315860748291 + ], + [ + "714", + -13.963162422180176 + ], + [ + "atis", + -13.963215827941895 + ], + [ + "Jackson", + -13.963254928588867 + ], + [ + "492", + -13.963301658630371 + ], + [ + "▁benefitting", + -13.96343994140625 + ], + [ + "hing", + -13.963443756103516 + ], + [ + "▁eyeball", + -13.963449478149414 + ], + [ + "▁emphatic", + -13.963479042053223 + ], + [ + "Wh", + -13.963515281677246 + ], + [ + "▁mimicking", + -13.963525772094727 + ], + [ + "▁Pari", + -13.963532447814941 + ], + [ + "▁liars", + -13.963552474975586 + ], + [ + "▁Routing", + -13.963553428649902 + ], + [ + "▁Cli", + -13.963615417480469 + ], + [ + "aggressive", + -13.963683128356934 + ], + [ + "▁Criticism", + -13.963813781738281 + ], + [ + "▁Bouquet", + -13.963863372802734 + ], + [ + "▁reincarnation", + -13.963868141174316 + ], + [ + "▁persuading", + -13.963882446289062 + ], + [ + "▁redwood", + -13.963937759399414 + ], + [ + "▁instantaneously", + -13.963939666748047 + ], + [ + "▁redirects", + -13.963976860046387 + ], + [ + "▁1832", + -13.963982582092285 + ], + [ + "▁Gutter", + -13.964020729064941 + ], + [ + "▁paris", + -13.964073181152344 + ], + [ + "▁Caves", + -13.964078903198242 + ], + [ + "▁Ninety", + -13.964125633239746 + ], + [ + "seater", + -13.964140892028809 + ], + [ + "▁dyeing", + -13.964235305786133 + ], + [ + "▁graphically", + -13.964251518249512 + ], + [ + "▁trumps", + -13.964262008666992 + ], + [ + "▁communists", + -13.964299201965332 + ], + [ + "▁burrito", + -13.964302062988281 + ], + [ + "▁Tarantino", + -13.964308738708496 + ], + [ + "▁Vitamins", + -13.964332580566406 + ], + [ + "▁Halle", + -13.964334487915039 + ], + [ + "▁constants", + -13.964357376098633 + ], + [ + "NFL", + -13.96437931060791 + ], + [ + "▁administers", + -13.964468955993652 + ], + [ + "▁flicks", + -13.964470863342285 + ], + [ + "▁Casablanca", + -13.964478492736816 + ], + [ + "▁Prudential", + -13.964479446411133 + ], + [ + "▁IIS", + -13.964515686035156 + ], + [ + "▁disservice", + -13.964529991149902 + ], + [ + "▁Sartre", + -13.964539527893066 + ], + [ + "▁Allegheny", + -13.964545249938965 + ], + [ + "▁manifesting", + -13.964552879333496 + ], + [ + "direction", + -13.964573860168457 + ], + [ + "erne", + -13.964576721191406 + ], + [ + "▁Bremen", + -13.964584350585938 + ], + [ + "acoustic", + -13.964628219604492 + ], + [ + "▁Adrienne", + -13.964628219604492 + ], + [ + "chner", + -13.964653015136719 + ], + [ + "▁Trev", + -13.964706420898438 + ], + [ + "▁contesting", + -13.964715003967285 + ], + [ + "▁folic", + -13.964725494384766 + ], + [ + "▁Carrera", + -13.964737892150879 + ], + [ + "tension", + -13.964802742004395 + ], + [ + "▁simulating", + -13.96481990814209 + ], + [ + "▁Sheen", + -13.9649076461792 + ], + [ + "▁Versace", + -13.964909553527832 + ], + [ + "reporting", + -13.964933395385742 + ], + [ + "▁spoof", + -13.96501636505127 + ], + [ + "Boost", + -13.965127944946289 + ], + [ + "▁indulged", + -13.965130805969238 + ], + [ + "Node", + -13.96518325805664 + ], + [ + "Rep", + -13.965185165405273 + ], + [ + "biotic", + -13.965228080749512 + ], + [ + "LINK", + -13.965242385864258 + ], + [ + "▁swagger", + -13.965263366699219 + ], + [ + "founders", + -13.965309143066406 + ], + [ + "▁Malaga", + -13.965315818786621 + ], + [ + "▁Opener", + -13.965327262878418 + ], + [ + "▁Fey", + -13.965340614318848 + ], + [ + "▁lanyard", + -13.965346336364746 + ], + [ + "▁Ges", + -13.965372085571289 + ], + [ + "▁cleft", + -13.965380668640137 + ], + [ + "▁grassland", + -13.965381622314453 + ], + [ + "▁loco", + -13.96546745300293 + ], + [ + "LIGHT", + -13.965518951416016 + ], + [ + "▁vented", + -13.965534210205078 + ], + [ + "aim", + -13.965585708618164 + ], + [ + "▁Schroeder", + -13.965592384338379 + ], + [ + "▁Treating", + -13.965617179870605 + ], + [ + "▁Mica", + -13.965627670288086 + ], + [ + "▁Drosophila", + -13.965629577636719 + ], + [ + "Draw", + -13.96568489074707 + ], + [ + "▁tantrum", + -13.965692520141602 + ], + [ + "▁topple", + -13.965703964233398 + ], + [ + "▁STOCK", + -13.965832710266113 + ], + [ + "kil", + -13.9658784866333 + ], + [ + "▁Marlin", + -13.965926170349121 + ], + [ + "▁Braid", + -13.965927124023438 + ], + [ + "▁remanded", + -13.96597671508789 + ], + [ + "▁Discuz", + -13.966026306152344 + ], + [ + "▁Pickering", + -13.966064453125 + ], + [ + "ances", + -13.96607780456543 + ], + [ + "▁Kershaw", + -13.966086387634277 + ], + [ + "▁auctioned", + -13.966109275817871 + ], + [ + "▁authentically", + -13.966190338134766 + ], + [ + "▁Shetland", + -13.966200828552246 + ], + [ + "612", + -13.96622371673584 + ], + [ + "nuts", + -13.966245651245117 + ], + [ + "▁handover", + -13.966263771057129 + ], + [ + "▁sponsorships", + -13.966349601745605 + ], + [ + "Т", + -13.966364860534668 + ], + [ + "▁teeming", + -13.966365814208984 + ], + [ + "GDP", + -13.9663667678833 + ], + [ + "▁Lennox", + -13.966390609741211 + ], + [ + "▁475", + -13.966461181640625 + ], + [ + "▁NYS", + -13.966484069824219 + ], + [ + "▁beech", + -13.966485977172852 + ], + [ + "TOWN", + -13.966497421264648 + ], + [ + "wain", + -13.96651554107666 + ], + [ + "waiting", + -13.966619491577148 + ], + [ + "PED", + -13.966652870178223 + ], + [ + "▁Harare", + -13.966659545898438 + ], + [ + "▁admiral", + -13.96668815612793 + ], + [ + "Filter", + -13.966704368591309 + ], + [ + "▁Containers", + -13.96670913696289 + ], + [ + "▁Erwin", + -13.966715812683105 + ], + [ + "jah", + -13.966732025146484 + ], + [ + "Ross", + -13.966774940490723 + ], + [ + "▁Dunham", + -13.966785430908203 + ], + [ + "621", + -13.966791152954102 + ], + [ + "▁novices", + -13.96687126159668 + ], + [ + "IRS", + -13.966962814331055 + ], + [ + "▁TCM", + -13.966995239257812 + ], + [ + "▁Anthology", + -13.96701431274414 + ], + [ + "Fu", + -13.967046737670898 + ], + [ + "▁Khat", + -13.967168807983398 + ], + [ + "▁HLA", + -13.967198371887207 + ], + [ + "1930", + -13.967199325561523 + ], + [ + "▁cog", + -13.967330932617188 + ], + [ + "▁Programmer", + -13.967354774475098 + ], + [ + "▁Equine", + -13.967397689819336 + ], + [ + "▁SIDE", + -13.967426300048828 + ], + [ + "Forum", + -13.967503547668457 + ], + [ + "▁scraper", + -13.967504501342773 + ], + [ + "▁Maxx", + -13.967511177062988 + ], + [ + "▁mushy", + -13.96753978729248 + ], + [ + "Italy", + -13.967541694641113 + ], + [ + "viral", + -13.967620849609375 + ], + [ + "▁Benn", + -13.967643737792969 + ], + [ + "▁ridiculed", + -13.967646598815918 + ], + [ + "▁Bait", + -13.96767520904541 + ], + [ + "▁Chihuahua", + -13.96767520904541 + ], + [ + "▁Hangzhou", + -13.967726707458496 + ], + [ + "▁Urbana", + -13.967782974243164 + ], + [ + "covering", + -13.967799186706543 + ], + [ + "▁Bli", + -13.96780776977539 + ], + [ + "alon", + -13.967811584472656 + ], + [ + "647", + -13.967879295349121 + ], + [ + "▁pho", + -13.967916488647461 + ], + [ + "walt", + -13.96796989440918 + ], + [ + "▁TFT", + -13.96800708770752 + ], + [ + "▁FSC", + -13.9680757522583 + ], + [ + "Obama", + -13.96821403503418 + ], + [ + "wale", + -13.968242645263672 + ], + [ + "▁Blame", + -13.96825885772705 + ], + [ + "▁baits", + -13.968259811401367 + ], + [ + "▁disinfectant", + -13.96834945678711 + ], + [ + "BIS", + -13.968374252319336 + ], + [ + "▁realist", + -13.968377113342285 + ], + [ + "builders", + -13.968415260314941 + ], + [ + "▁GAS", + -13.968474388122559 + ], + [ + "▁moaning", + -13.96848201751709 + ], + [ + "▁Mania", + -13.968546867370605 + ], + [ + "rö", + -13.968562126159668 + ], + [ + "▁Snacks", + -13.968585968017578 + ], + [ + "▁Descriptions", + -13.96860122680664 + ], + [ + "Qaida", + -13.968605995178223 + ], + [ + "▁abatement", + -13.968626022338867 + ], + [ + "▁Burkina", + -13.968683242797852 + ], + [ + "▁booting", + -13.968711853027344 + ], + [ + "▁mainline", + -13.96871280670166 + ], + [ + "▁nonsensical", + -13.968727111816406 + ], + [ + "▁unforgiving", + -13.96883487701416 + ], + [ + "iker", + -13.968836784362793 + ], + [ + "▁lactic", + -13.968838691711426 + ], + [ + "▁pastels", + -13.968894004821777 + ], + [ + "▁sewed", + -13.968904495239258 + ], + [ + "▁hexa", + -13.968907356262207 + ], + [ + "Hawk", + -13.968915939331055 + ], + [ + "▁datacenter", + -13.96892261505127 + ], + [ + "▁heist", + -13.968968391418457 + ], + [ + "ой", + -13.968979835510254 + ], + [ + "▁Keaton", + -13.96898365020752 + ], + [ + "▁Firestone", + -13.969002723693848 + ], + [ + "▁ک", + -13.969047546386719 + ], + [ + "▁CREATE", + -13.9690580368042 + ], + [ + "▁droughts", + -13.969063758850098 + ], + [ + "▁lingered", + -13.969077110290527 + ], + [ + "▁Slu", + -13.96908950805664 + ], + [ + "▁Institut", + -13.969164848327637 + ], + [ + "▁Minaj", + -13.969314575195312 + ], + [ + "▁disillusioned", + -13.969345092773438 + ], + [ + "▁Vr", + -13.969369888305664 + ], + [ + "▁Pong", + -13.9694185256958 + ], + [ + "▁Foil", + -13.969474792480469 + ], + [ + "unlike", + -13.96950912475586 + ], + [ + "▁scheduler", + -13.96953296661377 + ], + [ + "▁pico", + -13.969600677490234 + ], + [ + "▁regaining", + -13.969693183898926 + ], + [ + "▁navigated", + -13.969822883605957 + ], + [ + "▁germination", + -13.969913482666016 + ], + [ + "▁Hepburn", + -13.96993350982666 + ], + [ + "▁append", + -13.969978332519531 + ], + [ + "▁mansions", + -13.969993591308594 + ], + [ + "▁orthopaedic", + -13.970019340515137 + ], + [ + "▁Bearings", + -13.970076560974121 + ], + [ + "▁hydrochloride", + -13.970135688781738 + ], + [ + "▁Restricted", + -13.970178604125977 + ], + [ + "▁hamster", + -13.970210075378418 + ], + [ + "gran", + -13.970253944396973 + ], + [ + "▁Pastoral", + -13.970258712768555 + ], + [ + "AHA", + -13.970283508300781 + ], + [ + "▁Selective", + -13.970332145690918 + ], + [ + "▁Variations", + -13.970355033874512 + ], + [ + "661", + -13.97036075592041 + ], + [ + "witz", + -13.970478057861328 + ], + [ + "mation", + -13.970484733581543 + ], + [ + "▁TURN", + -13.970508575439453 + ], + [ + "▁BILL", + -13.970605850219727 + ], + [ + "chang", + -13.970671653747559 + ], + [ + "ctu", + -13.970675468444824 + ], + [ + "▁sailboat", + -13.970735549926758 + ], + [ + "jersey", + -13.970747947692871 + ], + [ + "▁orientations", + -13.970766067504883 + ], + [ + "▁camels", + -13.970783233642578 + ], + [ + "▁Sumner", + -13.9708251953125 + ], + [ + "▁RISK", + -13.970874786376953 + ], + [ + "▁Pioneers", + -13.97095012664795 + ], + [ + "mead", + -13.970993995666504 + ], + [ + "▁crit", + -13.971025466918945 + ], + [ + "567", + -13.971062660217285 + ], + [ + "▁sandwiched", + -13.971090316772461 + ], + [ + "▁footpath", + -13.971126556396484 + ], + [ + "▁Concerned", + -13.971155166625977 + ], + [ + "▁undertones", + -13.971185684204102 + ], + [ + "▁ditched", + -13.971202850341797 + ], + [ + "▁contending", + -13.97122859954834 + ], + [ + "▁tulips", + -13.971235275268555 + ], + [ + "▁inescapable", + -13.971236228942871 + ], + [ + "▁Buttons", + -13.9713134765625 + ], + [ + "▁Fourteen", + -13.971338272094727 + ], + [ + "▁cadet", + -13.971345901489258 + ], + [ + "absolutely", + -13.971349716186523 + ], + [ + "▁proofing", + -13.971415519714355 + ], + [ + "▁Contour", + -13.971451759338379 + ], + [ + "하여", + -13.97147274017334 + ], + [ + "▁Gauteng", + -13.971501350402832 + ], + [ + "▁366", + -13.971502304077148 + ], + [ + "▁coward", + -13.971595764160156 + ], + [ + "▁Confession", + -13.971624374389648 + ], + [ + "Leary", + -13.971651077270508 + ], + [ + "▁Michelangelo", + -13.971659660339355 + ], + [ + "се", + -13.971675872802734 + ], + [ + "▁Chosen", + -13.971696853637695 + ], + [ + "▁Bibliography", + -13.971697807312012 + ], + [ + "▁hindering", + -13.971708297729492 + ], + [ + "▁Vero", + -13.971736907958984 + ], + [ + "cgi", + -13.971741676330566 + ], + [ + "▁ringtone", + -13.971744537353516 + ], + [ + "778", + -13.971749305725098 + ], + [ + "nity", + -13.971837997436523 + ], + [ + "▁rationally", + -13.971837997436523 + ], + [ + "▁oxy", + -13.971929550170898 + ], + [ + "▁ported", + -13.97194766998291 + ], + [ + "▁dd", + -13.972005844116211 + ], + [ + "sala", + -13.972017288208008 + ], + [ + "▁snuff", + -13.972038269042969 + ], + [ + "▁Gillette", + -13.9720458984375 + ], + [ + "▁basements", + -13.972090721130371 + ], + [ + "experts", + -13.972091674804688 + ], + [ + "▁Tend", + -13.97213077545166 + ], + [ + "▁hors", + -13.972176551818848 + ], + [ + "▁tenuous", + -13.97230052947998 + ], + [ + "▁Slavery", + -13.972322463989258 + ], + [ + "▁Favor", + -13.97239875793457 + ], + [ + "▁redhead", + -13.972399711608887 + ], + [ + "▁ibn", + -13.972437858581543 + ], + [ + "▁Vern", + -13.972455024719238 + ], + [ + "▁Tasks", + -13.972478866577148 + ], + [ + "▁Shun", + -13.97260570526123 + ], + [ + "took", + -13.972663879394531 + ], + [ + "▁Niki", + -13.9727144241333 + ], + [ + "▁zooming", + -13.972771644592285 + ], + [ + "▁Violent", + -13.972776412963867 + ], + [ + "ト", + -13.972777366638184 + ], + [ + "Il", + -13.97278881072998 + ], + [ + "Notes", + -13.97279167175293 + ], + [ + "▁Clemens", + -13.972840309143066 + ], + [ + "hman", + -13.972871780395508 + ], + [ + "▁Cradle", + -13.972943305969238 + ], + [ + "▁Shimano", + -13.972982406616211 + ], + [ + "halt", + -13.973041534423828 + ], + [ + "Mil", + -13.973073959350586 + ], + [ + "progressive", + -13.9730863571167 + ], + [ + "▁Webmaster", + -13.97313404083252 + ], + [ + "▁Macedonian", + -13.973139762878418 + ], + [ + "▁accomplice", + -13.973165512084961 + ], + [ + "▁Wag", + -13.973199844360352 + ], + [ + "QM", + -13.97323989868164 + ], + [ + "▁Yummy", + -13.973361015319824 + ], + [ + "▁punters", + -13.973382949829102 + ], + [ + "▁hydrophobic", + -13.973384857177734 + ], + [ + "▁rescuers", + -13.973390579223633 + ], + [ + "electro", + -13.973475456237793 + ], + [ + "▁Dubbed", + -13.973484992980957 + ], + [ + "▁Nast", + -13.973567008972168 + ], + [ + "▁Caesars", + -13.973580360412598 + ], + [ + "▁patty", + -13.973593711853027 + ], + [ + "▁Utopia", + -13.973616600036621 + ], + [ + "▁980", + -13.973631858825684 + ], + [ + "▁clenched", + -13.973654747009277 + ], + [ + "▁histone", + -13.973658561706543 + ], + [ + "459", + -13.973672866821289 + ], + [ + "▁thereon", + -13.973709106445312 + ], + [ + "▁memos", + -13.973725318908691 + ], + [ + "▁fluctuation", + -13.973773956298828 + ], + [ + "IH", + -13.973803520202637 + ], + [ + "▁randomised", + -13.9738187789917 + ], + [ + "nikov", + -13.973873138427734 + ], + [ + "lifetime", + -13.97391128540039 + ], + [ + "▁Surviving", + -13.973918914794922 + ], + [ + "Rail", + -13.973921775817871 + ], + [ + "▁Pall", + -13.97396183013916 + ], + [ + "▁epicenter", + -13.973966598510742 + ], + [ + "▁pak", + -13.974035263061523 + ], + [ + "▁Markov", + -13.974098205566406 + ], + [ + "▁Kiri", + -13.974103927612305 + ], + [ + "▁1838", + -13.97410774230957 + ], + [ + "Met", + -13.974136352539062 + ], + [ + "▁laparoscopic", + -13.974136352539062 + ], + [ + "▁twinkle", + -13.97415542602539 + ], + [ + "▁Wolverhampton", + -13.974212646484375 + ], + [ + "▁Guillermo", + -13.974266052246094 + ], + [ + "password", + -13.974268913269043 + ], + [ + "▁injector", + -13.974289894104004 + ], + [ + "▁embassies", + -13.974298477172852 + ], + [ + "▁Ambient", + -13.974312782287598 + ], + [ + "▁recorders", + -13.97431468963623 + ], + [ + "Tele", + -13.974340438842773 + ], + [ + "▁grunt", + -13.974342346191406 + ], + [ + "▁Niall", + -13.974386215209961 + ], + [ + "▁Melville", + -13.97445297241211 + ], + [ + "▁undetected", + -13.974533081054688 + ], + [ + "▁beacons", + -13.974539756774902 + ], + [ + "eki", + -13.97458267211914 + ], + [ + "washed", + -13.97463321685791 + ], + [ + "▁Plaintiffs", + -13.974635124206543 + ], + [ + "bari", + -13.974660873413086 + ], + [ + "▁BEN", + -13.974677085876465 + ], + [ + "▁Hak", + -13.974678993225098 + ], + [ + "▁Khaled", + -13.974710464477539 + ], + [ + "▁483", + -13.974722862243652 + ], + [ + "▁resistors", + -13.974722862243652 + ], + [ + "▁bombshell", + -13.9747953414917 + ], + [ + "zoo", + -13.974799156188965 + ], + [ + "hew", + -13.974801063537598 + ], + [ + "beau", + -13.97485637664795 + ], + [ + "▁NRS", + -13.974910736083984 + ], + [ + "▁Lili", + -13.97491455078125 + ], + [ + "leman", + -13.974919319152832 + ], + [ + "▁countenance", + -13.974958419799805 + ], + [ + "▁Mabel", + -13.975092887878418 + ], + [ + "▁cryptography", + -13.975105285644531 + ], + [ + "▁loosening", + -13.975129127502441 + ], + [ + "▁ESR", + -13.975146293640137 + ], + [ + "stine", + -13.975172996520996 + ], + [ + "▁Rune", + -13.97523307800293 + ], + [ + "▁Jihad", + -13.975236892700195 + ], + [ + "IGHT", + -13.975263595581055 + ], + [ + "▁sprinter", + -13.975274085998535 + ], + [ + "▁Swa", + -13.97528076171875 + ], + [ + "▁ANZ", + -13.975320816040039 + ], + [ + "echo", + -13.975329399108887 + ], + [ + "▁hippocampus", + -13.975339889526367 + ], + [ + "▁nineties", + -13.975445747375488 + ], + [ + "isms", + -13.975543975830078 + ], + [ + "▁Herring", + -13.975544929504395 + ], + [ + "▁sickle", + -13.975555419921875 + ], + [ + "▁aficionados", + -13.975586891174316 + ], + [ + "▁bulging", + -13.97564697265625 + ], + [ + "▁translational", + -13.975652694702148 + ], + [ + "616", + -13.975693702697754 + ], + [ + "establish", + -13.975726127624512 + ], + [ + "▁Oath", + -13.975730895996094 + ], + [ + "▁mari", + -13.975777626037598 + ], + [ + "▁Caro", + -13.975836753845215 + ], + [ + "▁LTC", + -13.975906372070312 + ], + [ + "▁Provision", + -13.975907325744629 + ], + [ + "ECO", + -13.975966453552246 + ], + [ + "▁Ulysses", + -13.975983619689941 + ], + [ + "provide", + -13.975991249084473 + ], + [ + "▁narcissist", + -13.976018905639648 + ], + [ + "▁executor", + -13.97603988647461 + ], + [ + "▁hybridization", + -13.976058959960938 + ], + [ + "▁Tariff", + -13.976091384887695 + ], + [ + "▁TIM", + -13.97610092163086 + ], + [ + "▁Trooper", + -13.976104736328125 + ], + [ + "▁Amino", + -13.976166725158691 + ], + [ + "▁goddamn", + -13.976168632507324 + ], + [ + "▁WALL", + -13.9761962890625 + ], + [ + "▁Pryor", + -13.97619915008545 + ], + [ + "TIS", + -13.976212501525879 + ], + [ + "▁Pullman", + -13.976240158081055 + ], + [ + "▁yep", + -13.976269721984863 + ], + [ + "本", + -13.976306915283203 + ], + [ + "▁shunt", + -13.976311683654785 + ], + [ + "▁Burgers", + -13.976344108581543 + ], + [ + "iPhone", + -13.976354598999023 + ], + [ + "vector", + -13.976408958435059 + ], + [ + "▁apprehend", + -13.976531982421875 + ], + [ + "naya", + -13.976567268371582 + ], + [ + "bec", + -13.976583480834961 + ], + [ + "jel", + -13.976663589477539 + ], + [ + "▁goers", + -13.97667407989502 + ], + [ + "▁Anglia", + -13.976692199707031 + ], + [ + "▁PCM", + -13.976715087890625 + ], + [ + "quit", + -13.976795196533203 + ], + [ + "▁SMTP", + -13.976799011230469 + ], + [ + "▁Fulbright", + -13.976799964904785 + ], + [ + "▁victimized", + -13.976840019226074 + ], + [ + "▁crusty", + -13.976862907409668 + ], + [ + "▁Surge", + -13.976868629455566 + ], + [ + "Cambridge", + -13.976913452148438 + ], + [ + "▁Dearborn", + -13.97695541381836 + ], + [ + "▁clearest", + -13.976963996887207 + ], + [ + "498", + -13.97700309753418 + ], + [ + "▁Whom", + -13.97702693939209 + ], + [ + "▁Psi", + -13.97704792022705 + ], + [ + "IPS", + -13.977058410644531 + ], + [ + "▁phobia", + -13.977073669433594 + ], + [ + "▁decorator", + -13.97707748413086 + ], + [ + "▁jingle", + -13.977145195007324 + ], + [ + "▁figuratively", + -13.977168083190918 + ], + [ + "festival", + -13.977327346801758 + ], + [ + "▁fortnightly", + -13.977340698242188 + ], + [ + "▁formaldehyde", + -13.9773588180542 + ], + [ + "▁surfboard", + -13.977377891540527 + ], + [ + "▁offsets", + -13.977378845214844 + ], + [ + "maru", + -13.977391242980957 + ], + [ + "▁Scalia", + -13.977498054504395 + ], + [ + "▁travail", + -13.97752857208252 + ], + [ + "lü", + -13.977542877197266 + ], + [ + "▁Missionary", + -13.977641105651855 + ], + [ + "573", + -13.977709770202637 + ], + [ + "ACP", + -13.97772216796875 + ], + [ + "▁PARIS", + -13.977766990661621 + ], + [ + "▁bewildered", + -13.977770805358887 + ], + [ + "Due", + -13.977798461914062 + ], + [ + "▁garcinia", + -13.977805137634277 + ], + [ + "fie", + -13.977882385253906 + ], + [ + "▁1839", + -13.97794246673584 + ], + [ + "cles", + -13.978045463562012 + ], + [ + "▁Laureate", + -13.97808837890625 + ], + [ + "517", + -13.978108406066895 + ], + [ + "▁292", + -13.978141784667969 + ], + [ + "▁VLAN", + -13.978147506713867 + ], + [ + "▁Coinbase", + -13.978288650512695 + ], + [ + "प", + -13.978289604187012 + ], + [ + "▁determinant", + -13.978293418884277 + ], + [ + "▁Editions", + -13.978307723999023 + ], + [ + "▁spines", + -13.978312492370605 + ], + [ + "▁tablecloth", + -13.978316307067871 + ], + [ + "▁Taft", + -13.978351593017578 + ], + [ + "Oxford", + -13.978378295898438 + ], + [ + "▁substandard", + -13.978407859802246 + ], + [ + "▁Aran", + -13.978424072265625 + ], + [ + "▁substation", + -13.978447914123535 + ], + [ + "▁licked", + -13.978507041931152 + ], + [ + "▁crucifixion", + -13.978541374206543 + ], + [ + "▁Aron", + -13.978572845458984 + ], + [ + "ović", + -13.978580474853516 + ], + [ + "▁Bangladeshi", + -13.978655815124512 + ], + [ + "▁atonement", + -13.97868824005127 + ], + [ + "uza", + -13.978713035583496 + ], + [ + "nek", + -13.97872257232666 + ], + [ + "▁Discovering", + -13.978736877441406 + ], + [ + "agged", + -13.97874927520752 + ], + [ + "▁Nemo", + -13.978758811950684 + ], + [ + "parents", + -13.978789329528809 + ], + [ + "▁Breathing", + -13.978789329528809 + ], + [ + "golden", + -13.978840827941895 + ], + [ + "targeted", + -13.978902816772461 + ], + [ + "▁overdoses", + -13.978972434997559 + ], + [ + "▁lockdown", + -13.97899341583252 + ], + [ + "ว", + -13.979022026062012 + ], + [ + "▁Galvanized", + -13.97903060913086 + ], + [ + "▁Moderator", + -13.979138374328613 + ], + [ + "opia", + -13.97920036315918 + ], + [ + "▁armoured", + -13.979202270507812 + ], + [ + "▁retaliate", + -13.979219436645508 + ], + [ + "▁Pursuant", + -13.979230880737305 + ], + [ + "▁Essen", + -13.979238510131836 + ], + [ + "▁justifiable", + -13.979247093200684 + ], + [ + "▁nozzles", + -13.979251861572266 + ], + [ + "▁phrasing", + -13.979303359985352 + ], + [ + "▁Triathlon", + -13.979436874389648 + ], + [ + "▁Sexton", + -13.979464530944824 + ], + [ + "▁intermittently", + -13.979484558105469 + ], + [ + "header", + -13.979499816894531 + ], + [ + "aram", + -13.97951602935791 + ], + [ + "▁Bum", + -13.979531288146973 + ], + [ + "checked", + -13.979534149169922 + ], + [ + "YES", + -13.979546546936035 + ], + [ + "▁strolled", + -13.979602813720703 + ], + [ + "▁jou", + -13.979610443115234 + ], + [ + "pending", + -13.979633331298828 + ], + [ + "▁asteroids", + -13.97963809967041 + ], + [ + "▁splice", + -13.97964096069336 + ], + [ + "된", + -13.97964859008789 + ], + [ + "▁Aquinas", + -13.979735374450684 + ], + [ + "vill", + -13.9798002243042 + ], + [ + "617", + -13.979817390441895 + ], + [ + "▁muslim", + -13.97982120513916 + ], + [ + "workout", + -13.980061531066895 + ], + [ + "▁Ori", + -13.980121612548828 + ], + [ + "previously", + -13.980195045471191 + ], + [ + "▁Prove", + -13.98023509979248 + ], + [ + "▁bygone", + -13.980236053466797 + ], + [ + "▁exaggerate", + -13.980253219604492 + ], + [ + "▁Norte", + -13.98026180267334 + ], + [ + "bout", + -13.980321884155273 + ], + [ + "tolerance", + -13.980334281921387 + ], + [ + "▁precursors", + -13.980356216430664 + ], + [ + "▁strikers", + -13.980359077453613 + ], + [ + "ASS", + -13.980374336242676 + ], + [ + "▁Topeka", + -13.980395317077637 + ], + [ + "▁kostenlos", + -13.980437278747559 + ], + [ + "▁Originals", + -13.980443954467773 + ], + [ + "▁Shari", + -13.980491638183594 + ], + [ + "▁overkill", + -13.980504989624023 + ], + [ + "robe", + -13.980517387390137 + ], + [ + "▁Hereford", + -13.980539321899414 + ], + [ + "▁Dae", + -13.980627059936523 + ], + [ + "▁surveyor", + -13.98063850402832 + ], + [ + "▁Matches", + -13.9806489944458 + ], + [ + "▁airliner", + -13.980695724487305 + ], + [ + "▁Margo", + -13.98076343536377 + ], + [ + "▁Saleh", + -13.980781555175781 + ], + [ + "▁Foreman", + -13.980802536010742 + ], + [ + "▁Ske", + -13.98083209991455 + ], + [ + "▁Separately", + -13.980949401855469 + ], + [ + "▁Î", + -13.980969429016113 + ], + [ + "jd", + -13.98097038269043 + ], + [ + "▁audacious", + -13.981067657470703 + ], + [ + "ischer", + -13.981086730957031 + ], + [ + "▁Whitehall", + -13.9811372756958 + ], + [ + "▁Attitude", + -13.9812650680542 + ], + [ + "LOT", + -13.981280326843262 + ], + [ + "nais", + -13.981300354003906 + ], + [ + "▁SAY", + -13.981313705444336 + ], + [ + "▁raiding", + -13.981361389160156 + ], + [ + "▁eyewitness", + -13.981392860412598 + ], + [ + "▁Verma", + -13.981446266174316 + ], + [ + "▁Equestrian", + -13.98144817352295 + ], + [ + "▁axles", + -13.981449127197266 + ], + [ + "▁runways", + -13.98145866394043 + ], + [ + "▁LiteSpeed", + -13.981466293334961 + ], + [ + "▁Cowan", + -13.98147201538086 + ], + [ + "Must", + -13.981513023376465 + ], + [ + "▁encompassed", + -13.981534957885742 + ], + [ + "Tag", + -13.981538772583008 + ], + [ + "▁rejuvenated", + -13.981539726257324 + ], + [ + "ETS", + -13.981566429138184 + ], + [ + "▁minimalistic", + -13.981595993041992 + ], + [ + "▁sponges", + -13.981634140014648 + ], + [ + "▁insatiable", + -13.981675148010254 + ], + [ + "▁sketchbook", + -13.981730461120605 + ], + [ + "▁circulatory", + -13.981734275817871 + ], + [ + "▁Motown", + -13.981765747070312 + ], + [ + "▁piloted", + -13.981796264648438 + ], + [ + "▁invincible", + -13.981819152832031 + ], + [ + "notice", + -13.981854438781738 + ], + [ + "▁Veil", + -13.981865882873535 + ], + [ + "Soviet", + -13.981866836547852 + ], + [ + "▁Enoch", + -13.981878280639648 + ], + [ + "▁elated", + -13.981892585754395 + ], + [ + "▁divulge", + -13.98190975189209 + ], + [ + "exam", + -13.981939315795898 + ], + [ + "▁Seventeen", + -13.981943130493164 + ], + [ + "▁Structured", + -13.98196792602539 + ], + [ + "▁thermodynamics", + -13.981973648071289 + ], + [ + "▁LOST", + -13.981985092163086 + ], + [ + "▁scoff", + -13.981988906860352 + ], + [ + "slave", + -13.982032775878906 + ], + [ + "hosts", + -13.982040405273438 + ], + [ + "▁appended", + -13.982080459594727 + ], + [ + "▁zig", + -13.982086181640625 + ], + [ + "▁Corinth", + -13.982142448425293 + ], + [ + "▁Whew", + -13.982218742370605 + ], + [ + "Target", + -13.98222827911377 + ], + [ + "タ", + -13.98222827911377 + ], + [ + "atty", + -13.982232093811035 + ], + [ + "▁wad", + -13.982270240783691 + ], + [ + "▁outwardly", + -13.982278823852539 + ], + [ + "▁MSCI", + -13.982279777526855 + ], + [ + "▁teething", + -13.982308387756348 + ], + [ + "▁keychain", + -13.98234748840332 + ], + [ + "▁Adolescent", + -13.982412338256836 + ], + [ + "▁memorized", + -13.982464790344238 + ], + [ + "EMA", + -13.982473373413086 + ], + [ + "LAB", + -13.982503890991211 + ], + [ + "▁kilogram", + -13.982545852661133 + ], + [ + "▁glistening", + -13.982590675354004 + ], + [ + "APC", + -13.982763290405273 + ], + [ + "▁Drunk", + -13.982791900634766 + ], + [ + "075", + -13.982796669006348 + ], + [ + "▁geniuses", + -13.982817649841309 + ], + [ + "▁abbey", + -13.982823371887207 + ], + [ + "Wide", + -13.9828519821167 + ], + [ + "▁isotope", + -13.98289680480957 + ], + [ + "hg", + -13.98290729522705 + ], + [ + "▁penicillin", + -13.982977867126465 + ], + [ + "▁Runway", + -13.983078002929688 + ], + [ + "▁cautionary", + -13.983107566833496 + ], + [ + "▁Align", + -13.98311710357666 + ], + [ + "▁magnificence", + -13.98311710357666 + ], + [ + "toy", + -13.983213424682617 + ], + [ + "▁devils", + -13.983219146728516 + ], + [ + "pable", + -13.983269691467285 + ], + [ + "▁Anon", + -13.983296394348145 + ], + [ + "▁viewfinder", + -13.983318328857422 + ], + [ + "▁racetrack", + -13.98334789276123 + ], + [ + "▁Pins", + -13.983355522155762 + ], + [ + "nning", + -13.983375549316406 + ], + [ + "▁hapless", + -13.983400344848633 + ], + [ + "speech", + -13.983436584472656 + ], + [ + "VG", + -13.98347282409668 + ], + [ + "▁Breaker", + -13.983473777770996 + ], + [ + "▁stencils", + -13.983484268188477 + ], + [ + "514", + -13.983487129211426 + ], + [ + "▁Vodka", + -13.983540534973145 + ], + [ + "▁instinctive", + -13.983548164367676 + ], + [ + "▁Tunisian", + -13.983572959899902 + ], + [ + "▁Naughty", + -13.983577728271484 + ], + [ + "▁Correspondent", + -13.983590126037598 + ], + [ + "▁Ogun", + -13.983616828918457 + ], + [ + "▁Millennial", + -13.983677864074707 + ], + [ + "▁esports", + -13.983712196350098 + ], + [ + "▁apes", + -13.98375129699707 + ], + [ + "▁april", + -13.98375415802002 + ], + [ + "649", + -13.983793258666992 + ], + [ + "Letter", + -13.983799934387207 + ], + [ + "LAS", + -13.983819007873535 + ], + [ + "▁Physiol", + -13.983878135681152 + ], + [ + "▁halved", + -13.983888626098633 + ], + [ + "establishment", + -13.98392105102539 + ], + [ + "▁sustains", + -13.98395824432373 + ], + [ + "picking", + -13.983964920043945 + ], + [ + "▁mehr", + -13.984007835388184 + ], + [ + "899", + -13.984012603759766 + ], + [ + "▁Pius", + -13.984021186828613 + ], + [ + "▁Pallet", + -13.984105110168457 + ], + [ + "▁rotors", + -13.984107971191406 + ], + [ + "▁Greet", + -13.98413372039795 + ], + [ + "▁detain", + -13.98413372039795 + ], + [ + "▁improvise", + -13.984173774719238 + ], + [ + "▁deregulation", + -13.984203338623047 + ], + [ + "QL", + -13.984217643737793 + ], + [ + "illegal", + -13.984220504760742 + ], + [ + "tó", + -13.984220504760742 + ], + [ + "▁Plo", + -13.98423957824707 + ], + [ + "juice", + -13.984296798706055 + ], + [ + "▁pretzels", + -13.98430061340332 + ], + [ + "▁suppressor", + -13.98430347442627 + ], + [ + "▁amazes", + -13.984371185302734 + ], + [ + "Tony", + -13.984457015991211 + ], + [ + "▁diminutive", + -13.984467506408691 + ], + [ + "▁sqm", + -13.984517097473145 + ], + [ + "▁Algerian", + -13.984549522399902 + ], + [ + "movement", + -13.984577178955078 + ], + [ + "▁Slavic", + -13.984639167785645 + ], + [ + "度", + -13.984703063964844 + ], + [ + "▁RIM", + -13.984796524047852 + ], + [ + "▁FLOOR", + -13.984841346740723 + ], + [ + "▁pints", + -13.984960556030273 + ], + [ + "▁Someday", + -13.98501968383789 + ], + [ + "▁Elevation", + -13.985054016113281 + ], + [ + "▁unwarranted", + -13.985075950622559 + ], + [ + "▁doughnut", + -13.985087394714355 + ], + [ + "▁Analyzer", + -13.985121726989746 + ], + [ + "SLA", + -13.985164642333984 + ], + [ + "▁Civilian", + -13.98517894744873 + ], + [ + "Education", + -13.985189437866211 + ], + [ + "tized", + -13.985381126403809 + ], + [ + "eley", + -13.985382080078125 + ], + [ + "▁Craven", + -13.985382080078125 + ], + [ + "▁dpi", + -13.985383987426758 + ], + [ + "▁scrapping", + -13.985396385192871 + ], + [ + "▁constituting", + -13.985404014587402 + ], + [ + "▁paddock", + -13.985443115234375 + ], + [ + "▁dandelion", + -13.985444068908691 + ], + [ + "▁toronto", + -13.985453605651855 + ], + [ + "▁Fabrics", + -13.985559463500977 + ], + [ + "▁breezes", + -13.98559856414795 + ], + [ + "▁Globally", + -13.985668182373047 + ], + [ + "▁Mooney", + -13.985684394836426 + ], + [ + "▁Tana", + -13.985732078552246 + ], + [ + "Shift", + -13.985777854919434 + ], + [ + "▁earnestly", + -13.985803604125977 + ], + [ + "▁mastercard", + -13.985832214355469 + ], + [ + "▁scouring", + -13.985860824584961 + ], + [ + "▁caramelized", + -13.98589038848877 + ], + [ + "Sol", + -13.985898971557617 + ], + [ + "Battle", + -13.985923767089844 + ], + [ + "Root", + -13.985936164855957 + ], + [ + "▁UConn", + -13.985969543457031 + ], + [ + "▁Gaston", + -13.985971450805664 + ], + [ + "▁Pent", + -13.986026763916016 + ], + [ + "▁inset", + -13.986034393310547 + ], + [ + "▁Nix", + -13.986063003540039 + ], + [ + "▁elevates", + -13.986103057861328 + ], + [ + "▁controllable", + -13.986120223999023 + ], + [ + "▁Justine", + -13.986138343811035 + ], + [ + "▁Rafa", + -13.986204147338867 + ], + [ + "▁positional", + -13.986224174499512 + ], + [ + "▁Verge", + -13.986236572265625 + ], + [ + "variable", + -13.986282348632812 + ], + [ + "▁Thru", + -13.986310005187988 + ], + [ + "▁minimalism", + -13.986363410949707 + ], + [ + "grandfather", + -13.98650074005127 + ], + [ + "▁Salazar", + -13.986552238464355 + ], + [ + "733", + -13.986565589904785 + ], + [ + "▁Flexibility", + -13.986594200134277 + ], + [ + "▁hermit", + -13.986656188964844 + ], + [ + "▁sedans", + -13.986665725708008 + ], + [ + "▁Neumann", + -13.986695289611816 + ], + [ + "▁Wolverines", + -13.986737251281738 + ], + [ + "usha", + -13.986749649047852 + ], + [ + "flies", + -13.986769676208496 + ], + [ + "▁diameters", + -13.986837387084961 + ], + [ + "idy", + -13.986883163452148 + ], + [ + "▁Luk", + -13.986885070800781 + ], + [ + "▁Abba", + -13.98689079284668 + ], + [ + "▁bagels", + -13.986955642700195 + ], + [ + "833", + -13.987001419067383 + ], + [ + "▁cyto", + -13.987004280090332 + ], + [ + "equivalent", + -13.987032890319824 + ], + [ + "▁Trainee", + -13.987142562866211 + ], + [ + "▁lessened", + -13.987226486206055 + ], + [ + "▁magenta", + -13.98723316192627 + ], + [ + "▁Nickelodeon", + -13.987257957458496 + ], + [ + "ogist", + -13.987298011779785 + ], + [ + "▁bottlenecks", + -13.987333297729492 + ], + [ + "▁threading", + -13.987347602844238 + ], + [ + "eille", + -13.987374305725098 + ], + [ + "▁sero", + -13.987414360046387 + ], + [ + "▁Worry", + -13.987417221069336 + ], + [ + "き", + -13.98742961883545 + ], + [ + "▁TBI", + -13.987469673156738 + ], + [ + "▁biofilm", + -13.987482070922852 + ], + [ + "▁Dhan", + -13.987519264221191 + ], + [ + "▁DETAILS", + -13.987547874450684 + ], + [ + "▁antagonists", + -13.987577438354492 + ], + [ + "▁Gnome", + -13.987582206726074 + ], + [ + "▁leaner", + -13.987602233886719 + ], + [ + "▁808", + -13.987614631652832 + ], + [ + "▁TIMES", + -13.98762321472168 + ], + [ + "▁GEN", + -13.987627983093262 + ], + [ + "prim", + -13.987634658813477 + ], + [ + "egh", + -13.987640380859375 + ], + [ + "▁skateboarding", + -13.98765754699707 + ], + [ + "▁rejuvenating", + -13.98766040802002 + ], + [ + "doesn", + -13.987682342529297 + ], + [ + "▁Burner", + -13.987687110900879 + ], + [ + "583", + -13.987691879272461 + ], + [ + "▁gondola", + -13.98769474029541 + ], + [ + "itus", + -13.987720489501953 + ], + [ + "▁Himachal", + -13.987743377685547 + ], + [ + "▁aggravate", + -13.98777961730957 + ], + [ + "▁bolder", + -13.987842559814453 + ], + [ + "▁Granger", + -13.987857818603516 + ], + [ + "▁ATA", + -13.987895011901855 + ], + [ + "▁Carne", + -13.987923622131348 + ], + [ + "▁Snoop", + -13.98796272277832 + ], + [ + "▁Strangely", + -13.987964630126953 + ], + [ + "▁297", + -13.98796558380127 + ], + [ + "▁Sik", + -13.988004684448242 + ], + [ + "▁Specifies", + -13.988009452819824 + ], + [ + "▁Amiga", + -13.988069534301758 + ], + [ + "▁ensues", + -13.988097190856934 + ], + [ + "dive", + -13.988115310668945 + ], + [ + "leak", + -13.988116264343262 + ], + [ + "▁Earle", + -13.988123893737793 + ], + [ + "▁Bucs", + -13.988136291503906 + ], + [ + "▁Dimitri", + -13.988162994384766 + ], + [ + "lug", + -13.988240242004395 + ], + [ + "▁halter", + -13.988248825073242 + ], + [ + "▁worded", + -13.988279342651367 + ], + [ + "pix", + -13.988304138183594 + ], + [ + "▁ecologically", + -13.988324165344238 + ], + [ + "▁beanie", + -13.988414764404297 + ], + [ + "▁Viewers", + -13.988420486450195 + ], + [ + "aven", + -13.988429069519043 + ], + [ + "▁nonviolent", + -13.988486289978027 + ], + [ + "▁microns", + -13.98851490020752 + ], + [ + "▁wildcard", + -13.988518714904785 + ], + [ + "ety", + -13.988543510437012 + ], + [ + "manage", + -13.988627433776855 + ], + [ + "▁ensue", + -13.988675117492676 + ], + [ + "▁Slides", + -13.988688468933105 + ], + [ + "▁McMillan", + -13.988707542419434 + ], + [ + "▁syllables", + -13.988719940185547 + ], + [ + "▁miso", + -13.98873233795166 + ], + [ + "vitamin", + -13.98874282836914 + ], + [ + "▁Coaster", + -13.988866806030273 + ], + [ + "▁channeled", + -13.988868713378906 + ], + [ + "▁entrust", + -13.98887825012207 + ], + [ + "▁manly", + -13.98888111114502 + ], + [ + "вер", + -13.98890209197998 + ], + [ + "bones", + -13.988929748535156 + ], + [ + "▁fifteenth", + -13.989048957824707 + ], + [ + "▁caterpillar", + -13.989097595214844 + ], + [ + "▁Philipp", + -13.98910903930664 + ], + [ + "▁Monique", + -13.989118576049805 + ], + [ + "▁bitch", + -13.9892578125 + ], + [ + "abilities", + -13.989291191101074 + ], + [ + "▁unproductive", + -13.98930835723877 + ], + [ + "▁fastener", + -13.989311218261719 + ], + [ + "Pac", + -13.989333152770996 + ], + [ + "خ", + -13.989335060119629 + ], + [ + "printing", + -13.989496231079102 + ], + [ + "▁Wentz", + -13.989507675170898 + ], + [ + "▁underpinned", + -13.98952579498291 + ], + [ + "▁toasty", + -13.989555358886719 + ], + [ + "▁Solicitors", + -13.989569664001465 + ], + [ + "▁foreclosed", + -13.989591598510742 + ], + [ + "▁fetching", + -13.989684104919434 + ], + [ + "▁Kochi", + -13.989754676818848 + ], + [ + "▁Inbox", + -13.989789009094238 + ], + [ + "▁bindings", + -13.989812850952148 + ], + [ + "▁Leb", + -13.989893913269043 + ], + [ + "▁milky", + -13.989895820617676 + ], + [ + "leather", + -13.989909172058105 + ], + [ + "▁EY", + -13.989933013916016 + ], + [ + "▁Evidently", + -13.989945411682129 + ], + [ + "▁ost", + -13.989964485168457 + ], + [ + "▁Solstice", + -13.9901123046875 + ], + [ + "Query", + -13.990123748779297 + ], + [ + "▁GIFT", + -13.99014949798584 + ], + [ + "veld", + -13.990155220031738 + ], + [ + "▁RELEASE", + -13.990168571472168 + ], + [ + "▁pvc", + -13.990182876586914 + ], + [ + "▁manicured", + -13.99020004272461 + ], + [ + "▁Skywalker", + -13.990235328674316 + ], + [ + "▁PY", + -13.990273475646973 + ], + [ + "▁clearances", + -13.990279197692871 + ], + [ + "lise", + -13.990304946899414 + ], + [ + "696", + -13.99030590057373 + ], + [ + "morphic", + -13.990309715270996 + ], + [ + "▁drivetrain", + -13.99031925201416 + ], + [ + "premise", + -13.990337371826172 + ], + [ + "▁whatsapp", + -13.990381240844727 + ], + [ + "▁slums", + -13.990423202514648 + ], + [ + "▁gf", + -13.990429878234863 + ], + [ + "▁AHA", + -13.990496635437012 + ], + [ + "▁Desperate", + -13.990511894226074 + ], + [ + "▁domesticated", + -13.990528106689453 + ], + [ + "▁Carn", + -13.990549087524414 + ], + [ + "query", + -13.990564346313477 + ], + [ + "▁DeVos", + -13.990655899047852 + ], + [ + "▁Dhar", + -13.990716934204102 + ], + [ + "tary", + -13.990795135498047 + ], + [ + "▁Elbow", + -13.990845680236816 + ], + [ + "lust", + -13.990873336791992 + ], + [ + "541", + -13.990877151489258 + ], + [ + "▁petting", + -13.990888595581055 + ], + [ + "spiel", + -13.990927696228027 + ], + [ + "▁Clipart", + -13.99093246459961 + ], + [ + "Genesis", + -13.99095630645752 + ], + [ + "▁detractors", + -13.990985870361328 + ], + [ + "nearly", + -13.990997314453125 + ], + [ + "▁giggled", + -13.991025924682617 + ], + [ + "roe", + -13.991044044494629 + ], + [ + "▁443", + -13.991065979003906 + ], + [ + "▁CONTRACT", + -13.991164207458496 + ], + [ + "▁tek", + -13.991168022155762 + ], + [ + "▁García", + -13.991182327270508 + ], + [ + "nox", + -13.991207122802734 + ], + [ + "VING", + -13.991220474243164 + ], + [ + "▁zithromax", + -13.991243362426758 + ], + [ + "AJ", + -13.991254806518555 + ], + [ + "kut", + -13.9912691116333 + ], + [ + "▁TOTAL", + -13.991272926330566 + ], + [ + "▁Embed", + -13.991291046142578 + ], + [ + "▁jokingly", + -13.991305351257324 + ], + [ + "ost", + -13.99133586883545 + ], + [ + "744", + -13.991349220275879 + ], + [ + "ون", + -13.991353034973145 + ], + [ + "inka", + -13.991378784179688 + ], + [ + "▁satisfactorily", + -13.99139404296875 + ], + [ + "▁McKinsey", + -13.991473197937012 + ], + [ + "Gene", + -13.991549491882324 + ], + [ + "▁Necessary", + -13.991554260253906 + ], + [ + "▁subconsciously", + -13.991565704345703 + ], + [ + "▁Swivel", + -13.991581916809082 + ], + [ + "tiny", + -13.991591453552246 + ], + [ + "▁tiresome", + -13.991600036621094 + ], + [ + "▁Steen", + -13.991647720336914 + ], + [ + "▁preoccupation", + -13.991677284240723 + ], + [ + "▁Zeta", + -13.991704940795898 + ], + [ + "▁sims", + -13.991742134094238 + ], + [ + "▁Barrington", + -13.99179458618164 + ], + [ + "minating", + -13.991814613342285 + ], + [ + "▁Nutri", + -13.991850852966309 + ], + [ + "▁Popcorn", + -13.99187183380127 + ], + [ + "▁artistically", + -13.991872787475586 + ], + [ + "▁notary", + -13.991878509521484 + ], + [ + "▁synthesizer", + -13.991974830627441 + ], + [ + "1962", + -13.992003440856934 + ], + [ + "ocean", + -13.992022514343262 + ], + [ + "▁Zumba", + -13.992023468017578 + ], + [ + "▁Cheddar", + -13.992040634155273 + ], + [ + "022", + -13.992097854614258 + ], + [ + "3°", + -13.9921293258667 + ], + [ + "crit", + -13.992145538330078 + ], + [ + "iran", + -13.992157936096191 + ], + [ + "▁Overland", + -13.992158889770508 + ], + [ + "▁letterhead", + -13.992192268371582 + ], + [ + "closing", + -13.992252349853516 + ], + [ + "▁JOB", + -13.992252349853516 + ], + [ + "▁Integrating", + -13.992257118225098 + ], + [ + "soaked", + -13.992276191711426 + ], + [ + "xon", + -13.992292404174805 + ], + [ + "▁hijab", + -13.992314338684082 + ], + [ + "gret", + -13.992325782775879 + ], + [ + "▁loosened", + -13.992339134216309 + ], + [ + "494", + -13.99238395690918 + ], + [ + "Storm", + -13.992413520812988 + ], + [ + "generational", + -13.992417335510254 + ], + [ + "cuts", + -13.992425918579102 + ], + [ + "▁Farah", + -13.992524147033691 + ], + [ + "▁Munro", + -13.992602348327637 + ], + [ + "gallery", + -13.99262809753418 + ], + [ + "▁Savoy", + -13.992659568786621 + ], + [ + "▁Theories", + -13.99269962310791 + ], + [ + "▁rinsed", + -13.992746353149414 + ], + [ + "▁Communists", + -13.992758750915527 + ], + [ + "▁MICHAEL", + -13.992777824401855 + ], + [ + "▁Notch", + -13.992779731750488 + ], + [ + "▁Easier", + -13.992786407470703 + ], + [ + "▁Breakthrough", + -13.992810249328613 + ], + [ + "▁Attending", + -13.992881774902344 + ], + [ + "▁aviator", + -13.99292278289795 + ], + [ + "ahl", + -13.992931365966797 + ], + [ + "▁Pixie", + -13.992944717407227 + ], + [ + "greg", + -13.992976188659668 + ], + [ + "▁Paving", + -13.99299430847168 + ], + [ + "ifa", + -13.99306583404541 + ], + [ + "▁Neighbourhood", + -13.99308967590332 + ], + [ + "▁Cryptocurrency", + -13.993096351623535 + ], + [ + "▁ventricle", + -13.993102073669434 + ], + [ + "▁bugger", + -13.993108749389648 + ], + [ + "▁likable", + -13.993108749389648 + ], + [ + "▁homebuyers", + -13.993109703063965 + ], + [ + "cluster", + -13.993156433105469 + ], + [ + "Wal", + -13.993217468261719 + ], + [ + "ratt", + -13.99323844909668 + ], + [ + "▁Bergman", + -13.993247985839844 + ], + [ + "▁denture", + -13.99327564239502 + ], + [ + "▁Nad", + -13.993284225463867 + ], + [ + "▁Envelope", + -13.993316650390625 + ], + [ + "phones", + -13.993361473083496 + ], + [ + "▁Paralympic", + -13.993390083312988 + ], + [ + "▁Riddle", + -13.99343490600586 + ], + [ + "ader", + -13.99344253540039 + ], + [ + "▁traffickers", + -13.993470191955566 + ], + [ + "dens", + -13.993510246276855 + ], + [ + "ayo", + -13.993557929992676 + ], + [ + "▁Opponents", + -13.993558883666992 + ], + [ + "▁dutch", + -13.993569374084473 + ], + [ + "▁quench", + -13.993569374084473 + ], + [ + "▁Chrono", + -13.993593215942383 + ], + [ + "▁dormitory", + -13.993614196777344 + ], + [ + "▁Davos", + -13.993629455566406 + ], + [ + "▁pronoun", + -13.993639945983887 + ], + [ + "▁Bites", + -13.993643760681152 + ], + [ + "▁CFS", + -13.993645668029785 + ], + [ + "▁Constellation", + -13.993672370910645 + ], + [ + "▁Gregor", + -13.993672370910645 + ], + [ + "▁ERROR", + -13.993674278259277 + ], + [ + "Reader", + -13.993782997131348 + ], + [ + "tje", + -13.993896484375 + ], + [ + "▁ravine", + -13.993916511535645 + ], + [ + "▁Pharm", + -13.993943214416504 + ], + [ + "cini", + -13.993948936462402 + ], + [ + "mall", + -13.993968963623047 + ], + [ + "icki", + -13.994004249572754 + ], + [ + "READ", + -13.99402141571045 + ], + [ + "▁Missed", + -13.994097709655762 + ], + [ + "▁suture", + -13.994101524353027 + ], + [ + "fle", + -13.994136810302734 + ], + [ + "ampa", + -13.994142532348633 + ], + [ + "▁Vend", + -13.994163513183594 + ], + [ + "▁modulated", + -13.99422550201416 + ], + [ + "▁Bien", + -13.99425220489502 + ], + [ + "acquired", + -13.994270324707031 + ], + [ + "▁tartar", + -13.994283676147461 + ], + [ + "xes", + -13.994303703308105 + ], + [ + "▁Tsar", + -13.99433422088623 + ], + [ + "▁scandalous", + -13.994353294372559 + ], + [ + "kwa", + -13.994359970092773 + ], + [ + "▁parkland", + -13.99441909790039 + ], + [ + "Union", + -13.994424819946289 + ], + [ + "▁MDC", + -13.994473457336426 + ], + [ + "735", + -13.994546890258789 + ], + [ + "ssing", + -13.994553565979004 + ], + [ + "▁Zn", + -13.994585990905762 + ], + [ + "kop", + -13.994612693786621 + ], + [ + "▁Pseudo", + -13.994616508483887 + ], + [ + "QC", + -13.994634628295898 + ], + [ + "▁thrash", + -13.994671821594238 + ], + [ + "▁nyc", + -13.994702339172363 + ], + [ + "568", + -13.99470329284668 + ], + [ + "▁Amman", + -13.994750022888184 + ], + [ + "▁Forsyth", + -13.994813919067383 + ], + [ + "fueled", + -13.994820594787598 + ], + [ + "conductor", + -13.994874954223633 + ], + [ + "▁Sherri", + -13.994894981384277 + ], + [ + "▁Trench", + -13.994912147521973 + ], + [ + "▁secondhand", + -13.99492073059082 + ], + [ + "¥", + -13.995013236999512 + ], + [ + "▁Psychologist", + -13.995015144348145 + ], + [ + "▁Dutton", + -13.995031356811523 + ], + [ + "▁chronology", + -13.995064735412598 + ], + [ + "▁mysql", + -13.99506950378418 + ], + [ + "erge", + -13.995071411132812 + ], + [ + "inous", + -13.99507999420166 + ], + [ + "▁Bier", + -13.995244979858398 + ], + [ + "▁skyscraper", + -13.995344161987305 + ], + [ + "▁CHP", + -13.995384216308594 + ], + [ + "▁Terrible", + -13.995386123657227 + ], + [ + "▁gastro", + -13.995405197143555 + ], + [ + "mire", + -13.995407104492188 + ], + [ + "556", + -13.995443344116211 + ], + [ + "▁Bhd", + -13.995466232299805 + ], + [ + "▁602", + -13.995491027832031 + ], + [ + "Romans", + -13.995503425598145 + ], + [ + "▁dearth", + -13.995516777038574 + ], + [ + "▁HOL", + -13.995535850524902 + ], + [ + "▁judgmental", + -13.995552062988281 + ], + [ + "▁Rainforest", + -13.995619773864746 + ], + [ + "▁yam", + -13.99563217163086 + ], + [ + "▁840", + -13.995681762695312 + ], + [ + "▁Textbook", + -13.99569034576416 + ], + [ + "hie", + -13.995692253112793 + ], + [ + "▁Hock", + -13.995752334594727 + ], + [ + "▁Lacrosse", + -13.995760917663574 + ], + [ + "▁hedgehog", + -13.995772361755371 + ], + [ + "▁highlands", + -13.995809555053711 + ], + [ + "▁Platte", + -13.995827674865723 + ], + [ + "▁Bargain", + -13.995833396911621 + ], + [ + "Gro", + -13.99592399597168 + ], + [ + "▁formalities", + -13.995943069458008 + ], + [ + "▁NSC", + -13.995948791503906 + ], + [ + "▁Heavyweight", + -13.995996475219727 + ], + [ + "▁329", + -13.996027946472168 + ], + [ + "▁Rohit", + -13.996049880981445 + ], + [ + "▁Finest", + -13.996051788330078 + ], + [ + "▁dyslexia", + -13.996103286743164 + ], + [ + "▁Envy", + -13.99621295928955 + ], + [ + "dera", + -13.996213912963867 + ], + [ + "▁344", + -13.996224403381348 + ], + [ + "Um", + -13.996227264404297 + ], + [ + "▁Duties", + -13.996233940124512 + ], + [ + "▁concentric", + -13.996236801147461 + ], + [ + "▁Butch", + -13.996297836303711 + ], + [ + "ASP", + -13.996301651000977 + ], + [ + "▁delving", + -13.996316909790039 + ], + [ + "▁Gö", + -13.996342658996582 + ], + [ + "▁alimony", + -13.996391296386719 + ], + [ + "▁darken", + -13.996488571166992 + ], + [ + "▁terraced", + -13.996503829956055 + ], + [ + "linux", + -13.996529579162598 + ], + [ + "▁Launcher", + -13.996560096740723 + ], + [ + "▁HID", + -13.996626853942871 + ], + [ + "nham", + -13.996665954589844 + ], + [ + "▁rendezvous", + -13.996685028076172 + ], + [ + "▁NAR", + -13.996707916259766 + ], + [ + "▁FAS", + -13.99671745300293 + ], + [ + "▁Jimenez", + -13.996733665466309 + ], + [ + "▁Zhejiang", + -13.996782302856445 + ], + [ + "Sep", + -13.996820449829102 + ], + [ + "Temp", + -13.996821403503418 + ], + [ + "▁Sutter", + -13.996902465820312 + ], + [ + "▁Vac", + -13.996904373168945 + ], + [ + "▁COLOR", + -13.996936798095703 + ], + [ + "ICAL", + -13.996971130371094 + ], + [ + "planet", + -13.996971130371094 + ], + [ + "portrait", + -13.997025489807129 + ], + [ + "▁1815", + -13.997027397155762 + ], + [ + "obligation", + -13.997041702270508 + ], + [ + "▁Terrell", + -13.997054100036621 + ], + [ + "▁Napier", + -13.997088432312012 + ], + [ + "▁Xanax", + -13.997114181518555 + ], + [ + "▁Deed", + -13.997124671936035 + ], + [ + "▁Bumper", + -13.99713134765625 + ], + [ + "▁wickedness", + -13.997135162353516 + ], + [ + "▁avatars", + -13.997145652770996 + ], + [ + "▁UG", + -13.99718189239502 + ], + [ + "album", + -13.99720573425293 + ], + [ + "▁Mav", + -13.997244834899902 + ], + [ + "▁LASIK", + -13.997420310974121 + ], + [ + "▁rayon", + -13.997440338134766 + ], + [ + "▁Pup", + -13.997442245483398 + ], + [ + "np", + -13.997485160827637 + ], + [ + "TIN", + -13.997566223144531 + ], + [ + "tropical", + -13.997611999511719 + ], + [ + "▁Freestyle", + -13.997617721557617 + ], + [ + "▁cougar", + -13.997681617736816 + ], + [ + "▁Snapshot", + -13.9977388381958 + ], + [ + "▁episodic", + -13.997746467590332 + ], + [ + "▁Suede", + -13.997796058654785 + ], + [ + "Cre", + -13.99783992767334 + ], + [ + "到", + -13.997923851013184 + ], + [ + "▁hiccups", + -13.997933387756348 + ], + [ + "Alt", + -13.997946739196777 + ], + [ + "▁Closure", + -13.99799633026123 + ], + [ + "posts", + -13.998075485229492 + ], + [ + "university", + -13.998093605041504 + ], + [ + "▁Renew", + -13.99819564819336 + ], + [ + "▁Poultry", + -13.998202323913574 + ], + [ + "hler", + -13.998231887817383 + ], + [ + "▁1789", + -13.998245239257812 + ], + [ + "hali", + -13.998248100280762 + ], + [ + "ट", + -13.998270034790039 + ], + [ + "▁TRUMP", + -13.998270988464355 + ], + [ + "▁PROGRAM", + -13.99830150604248 + ], + [ + "▁utilisation", + -13.998311996459961 + ], + [ + "▁Fanny", + -13.998339653015137 + ], + [ + "bé", + -13.998383522033691 + ], + [ + "▁DNR", + -13.998479843139648 + ], + [ + "▁voluminous", + -13.998563766479492 + ], + [ + "Method", + -13.998591423034668 + ], + [ + "agra", + -13.998682022094727 + ], + [ + "breeding", + -13.99875259399414 + ], + [ + "▁Mig", + -13.998777389526367 + ], + [ + "duck", + -13.998818397521973 + ], + [ + "▁ASME", + -13.99884033203125 + ], + [ + "요", + -13.998881340026855 + ], + [ + "▁filaments", + -13.998908996582031 + ], + [ + "eden", + -13.998929977416992 + ], + [ + "▁Silas", + -13.998988151550293 + ], + [ + "▁dents", + -13.998990058898926 + ], + [ + "▁296", + -13.999017715454102 + ], + [ + "▁Brewster", + -13.999040603637695 + ], + [ + "▁retracted", + -13.999056816101074 + ], + [ + "▁Amarillo", + -13.999082565307617 + ], + [ + "▁Wyndham", + -13.999123573303223 + ], + [ + "―", + -13.999134063720703 + ], + [ + "▁Pathway", + -13.999136924743652 + ], + [ + "eater", + -13.999153137207031 + ], + [ + "▁Cit", + -13.999188423156738 + ], + [ + "gman", + -13.999210357666016 + ], + [ + "Hol", + -13.999228477478027 + ], + [ + "391", + -13.999234199523926 + ], + [ + "▁UHD", + -13.999282836914062 + ], + [ + "hed", + -13.999358177185059 + ], + [ + "▁Sanderson", + -13.999361038208008 + ], + [ + "▁abnormally", + -13.999403953552246 + ], + [ + "▁cheerfully", + -13.99942684173584 + ], + [ + "▁CPT", + -13.999484062194824 + ], + [ + "▁Sandals", + -13.99950885772705 + ], + [ + "▁renewals", + -13.999589920043945 + ], + [ + "▁grandparent", + -13.999608993530273 + ], + [ + "aroo", + -13.999688148498535 + ], + [ + "▁Haf", + -13.99970817565918 + ], + [ + "▁Sabah", + -13.999709129333496 + ], + [ + "▁crowding", + -13.99972152709961 + ], + [ + "▁Vape", + -13.999722480773926 + ], + [ + "▁Umm", + -13.999735832214355 + ], + [ + "indo", + -13.999778747558594 + ], + [ + "▁Hama", + -13.99979019165039 + ], + [ + "tane", + -13.99984359741211 + ], + [ + "528", + -13.999846458435059 + ], + [ + "▁secreted", + -13.99986743927002 + ], + [ + "▁hydroelectric", + -13.99991512298584 + ], + [ + "▁widowed", + -13.999948501586914 + ], + [ + "Cook", + -13.999982833862305 + ], + [ + "▁dispensation", + -13.999995231628418 + ], + [ + "▁stairwell", + -14.000000953674316 + ], + [ + "worked", + -14.000039100646973 + ], + [ + "▁reprieve", + -14.000049591064453 + ], + [ + "erta", + -14.000055313110352 + ], + [ + "▁ontology", + -14.000090599060059 + ], + [ + "▁categorical", + -14.000131607055664 + ], + [ + "▁introspection", + -14.000170707702637 + ], + [ + "551", + -14.000205993652344 + ], + [ + "688", + -14.000232696533203 + ], + [ + "▁KISS", + -14.000250816345215 + ], + [ + "▁dilapidated", + -14.000260353088379 + ], + [ + "▁Naj", + -14.000304222106934 + ], + [ + "▁paramilitary", + -14.000307083129883 + ], + [ + "▁Tableau", + -14.000320434570312 + ], + [ + "▁Rizzo", + -14.000383377075195 + ], + [ + "▁cowardly", + -14.000410079956055 + ], + [ + "▁Mastering", + -14.000422477722168 + ], + [ + "▁BASIC", + -14.000435829162598 + ], + [ + "▁reappear", + -14.000448226928711 + ], + [ + "717", + -14.00047779083252 + ], + [ + "▁EACH", + -14.000484466552734 + ], + [ + "▁1099", + -14.00049877166748 + ], + [ + "▁observant", + -14.000507354736328 + ], + [ + "▁раз", + -14.000558853149414 + ], + [ + "497", + -14.000564575195312 + ], + [ + "▁diarrhoea", + -14.000614166259766 + ], + [ + "▁Twentieth", + -14.00068187713623 + ], + [ + "▁malfunctioning", + -14.000686645507812 + ], + [ + "▁Florian", + -14.00072193145752 + ], + [ + "ா", + -14.000723838806152 + ], + [ + "▁Corporal", + -14.000740051269531 + ], + [ + "▁Gave", + -14.000760078430176 + ], + [ + "624", + -14.000788688659668 + ], + [ + "evaluate", + -14.000964164733887 + ], + [ + "▁detergents", + -14.000971794128418 + ], + [ + "▁Supra", + -14.001001358032227 + ], + [ + "▁Vascular", + -14.001052856445312 + ], + [ + "▁outflow", + -14.001168251037598 + ], + [ + "hog", + -14.00119686126709 + ], + [ + "▁Mantra", + -14.001289367675781 + ], + [ + "▁Overhead", + -14.001289367675781 + ], + [ + "needs", + -14.001383781433105 + ], + [ + "▁thence", + -14.001434326171875 + ], + [ + "nelle", + -14.001492500305176 + ], + [ + "576", + -14.001532554626465 + ], + [ + "▁modulator", + -14.001556396484375 + ], + [ + "▁grandiose", + -14.0015869140625 + ], + [ + "▁rewind", + -14.001642227172852 + ], + [ + "▁bandages", + -14.001739501953125 + ], + [ + "Train", + -14.001766204833984 + ], + [ + "ạ", + -14.001811981201172 + ], + [ + "▁Paws", + -14.001838684082031 + ], + [ + "▁Woven", + -14.00190258026123 + ], + [ + "▁Kitchener", + -14.001914978027344 + ], + [ + "▁angling", + -14.001971244812012 + ], + [ + "▁Idris", + -14.002089500427246 + ], + [ + "▁warships", + -14.002161026000977 + ], + [ + "▁centenary", + -14.00217056274414 + ], + [ + "▁Squash", + -14.002193450927734 + ], + [ + "▁overwrite", + -14.002296447753906 + ], + [ + "▁DESCRIPTION", + -14.002328872680664 + ], + [ + "▁oiled", + -14.002333641052246 + ], + [ + "▁3200", + -14.002386093139648 + ], + [ + "▁Oceania", + -14.00239086151123 + ], + [ + "▁canola", + -14.002396583557129 + ], + [ + "▁Vortex", + -14.002427101135254 + ], + [ + "▁cutout", + -14.002429008483887 + ], + [ + "capable", + -14.002471923828125 + ], + [ + "▁edifice", + -14.00253963470459 + ], + [ + "▁Mysore", + -14.002556800842285 + ], + [ + "▁embattled", + -14.002559661865234 + ], + [ + "▁assistive", + -14.002569198608398 + ], + [ + "▁impediment", + -14.002623558044434 + ], + [ + "▁prettier", + -14.002630233764648 + ], + [ + "▁Ergonomic", + -14.002703666687012 + ], + [ + "▁shun", + -14.002769470214844 + ], + [ + "▁Verdi", + -14.00278091430664 + ], + [ + "▁Khar", + -14.002805709838867 + ], + [ + "itative", + -14.002829551696777 + ], + [ + "▁putter", + -14.002856254577637 + ], + [ + "▁Arrest", + -14.002863883972168 + ], + [ + "dé", + -14.00290584564209 + ], + [ + "▁Indus", + -14.002945899963379 + ], + [ + "▁Scribd", + -14.00295639038086 + ], + [ + "▁mailboxes", + -14.002959251403809 + ], + [ + "▁Falmouth", + -14.00296401977539 + ], + [ + "▁profanity", + -14.002972602844238 + ], + [ + "junction", + -14.002982139587402 + ], + [ + "▁negotiable", + -14.003005027770996 + ], + [ + "▁excites", + -14.003045082092285 + ], + [ + "▁stifling", + -14.003056526184082 + ], + [ + "▁championing", + -14.00306510925293 + ], + [ + "▁noch", + -14.003098487854004 + ], + [ + "remove", + -14.003104209899902 + ], + [ + "▁bailed", + -14.003174781799316 + ], + [ + "▁citizenry", + -14.003178596496582 + ], + [ + "▁NGC", + -14.003190994262695 + ], + [ + "▁Tasty", + -14.003252983093262 + ], + [ + "tourism", + -14.003265380859375 + ], + [ + "▁Utica", + -14.003266334533691 + ], + [ + "▁doctrinal", + -14.003302574157715 + ], + [ + "demo", + -14.003307342529297 + ], + [ + "▁descriptor", + -14.003314971923828 + ], + [ + "▁Och", + -14.003355026245117 + ], + [ + "Dragon", + -14.003363609313965 + ], + [ + "▁AMERICA", + -14.003376960754395 + ], + [ + "▁BECAUSE", + -14.003475189208984 + ], + [ + "▁Shawnee", + -14.003508567810059 + ], + [ + "적", + -14.003509521484375 + ], + [ + "▁Crouch", + -14.003514289855957 + ], + [ + "▁RTA", + -14.003613471984863 + ], + [ + "▁AGREE", + -14.00361442565918 + ], + [ + "035", + -14.003644943237305 + ], + [ + "UU", + -14.003703117370605 + ], + [ + "▁Pose", + -14.003734588623047 + ], + [ + "▁9780", + -14.00373649597168 + ], + [ + "▁doodle", + -14.003744125366211 + ], + [ + "▁SLC", + -14.003829002380371 + ], + [ + "▁Beagle", + -14.003860473632812 + ], + [ + "▁indonesia", + -14.003889083862305 + ], + [ + "▁Prote", + -14.003945350646973 + ], + [ + "▁Dressed", + -14.003981590270996 + ], + [ + "▁Spouse", + -14.004009246826172 + ], + [ + "▁Acton", + -14.004032135009766 + ], + [ + "▁Curly", + -14.004067420959473 + ], + [ + "▁Defending", + -14.004074096679688 + ], + [ + "roughly", + -14.004075050354004 + ], + [ + "▁licensees", + -14.004084587097168 + ], + [ + "▁buckles", + -14.004094123840332 + ], + [ + "▁classifying", + -14.004144668579102 + ], + [ + "▁potions", + -14.004151344299316 + ], + [ + "▁incumbents", + -14.004199028015137 + ], + [ + "▁Syd", + -14.004213333129883 + ], + [ + "▁Crawl", + -14.004220962524414 + ], + [ + "▁mails", + -14.004223823547363 + ], + [ + "bbs", + -14.004229545593262 + ], + [ + "jung", + -14.004231452941895 + ], + [ + "▁breather", + -14.004246711730957 + ], + [ + "▁Tempest", + -14.004253387451172 + ], + [ + "▁Summon", + -14.004302978515625 + ], + [ + "▁Distillery", + -14.00430965423584 + ], + [ + "▁resigning", + -14.004365921020508 + ], + [ + "▁healers", + -14.004373550415039 + ], + [ + "▁sprints", + -14.004390716552734 + ], + [ + "▁Replay", + -14.00439739227295 + ], + [ + "apocalyptic", + -14.00444221496582 + ], + [ + "▁fb", + -14.004651069641113 + ], + [ + "▁Carrot", + -14.004658699035645 + ], + [ + "▁Huber", + -14.004670143127441 + ], + [ + "▁Spiel", + -14.00471305847168 + ], + [ + "▁doula", + -14.004714965820312 + ], + [ + "▁Dunlop", + -14.004839897155762 + ], + [ + "▁moron", + -14.004842758178711 + ], + [ + "▁elitist", + -14.004914283752441 + ], + [ + "▁twitch", + -14.004941940307617 + ], + [ + "▁sewers", + -14.004950523376465 + ], + [ + "ight", + -14.005011558532715 + ], + [ + "▁Alessandro", + -14.005056381225586 + ], + [ + "oxo", + -14.005098342895508 + ], + [ + "▁anorexia", + -14.005160331726074 + ], + [ + "▁364", + -14.005169868469238 + ], + [ + "▁Treats", + -14.005173683166504 + ], + [ + "▁principled", + -14.0051908493042 + ], + [ + "▁shim", + -14.005197525024414 + ], + [ + "▁contaminate", + -14.00524616241455 + ], + [ + "▁arg", + -14.005268096923828 + ], + [ + "▁Diamondbacks", + -14.005282402038574 + ], + [ + "▁Guangdong", + -14.005303382873535 + ], + [ + "▁infiltrated", + -14.005313873291016 + ], + [ + "▁Ordered", + -14.005341529846191 + ], + [ + "▁AFB", + -14.00538158416748 + ], + [ + "▁endangering", + -14.005414009094238 + ], + [ + "Ser", + -14.005451202392578 + ], + [ + "ב", + -14.005513191223145 + ], + [ + "▁CTS", + -14.005552291870117 + ], + [ + "▁offshoot", + -14.005579948425293 + ], + [ + "▁Cull", + -14.005608558654785 + ], + [ + "▁hoodies", + -14.005622863769531 + ], + [ + "BBC", + -14.005660057067871 + ], + [ + "▁gauntlet", + -14.0056734085083 + ], + [ + "▁macaroni", + -14.00567626953125 + ], + [ + "ва", + -14.005704879760742 + ], + [ + "▁Shal", + -14.005732536315918 + ], + [ + "fetched", + -14.005749702453613 + ], + [ + "▁yelp", + -14.005757331848145 + ], + [ + "▁Kev", + -14.005765914916992 + ], + [ + "726", + -14.005778312683105 + ], + [ + "▁Xuan", + -14.005874633789062 + ], + [ + "▁epidemiological", + -14.00596809387207 + ], + [ + "▁Fairmont", + -14.00599193572998 + ], + [ + "▁Slade", + -14.006011009216309 + ], + [ + "employee", + -14.006026268005371 + ], + [ + "▁audiovisual", + -14.006047248840332 + ], + [ + "cour", + -14.006096839904785 + ], + [ + "▁tribulations", + -14.006147384643555 + ], + [ + "▁Unitarian", + -14.00616455078125 + ], + [ + "▁bummed", + -14.0061674118042 + ], + [ + "▁reactivity", + -14.006175994873047 + ], + [ + "odor", + -14.006183624267578 + ], + [ + "▁copolymer", + -14.006335258483887 + ], + [ + "▁Smiles", + -14.006400108337402 + ], + [ + "▁Speedy", + -14.0064115524292 + ], + [ + "OST", + -14.006437301635742 + ], + [ + "▁Pentecostal", + -14.006454467773438 + ], + [ + "▁realtors", + -14.006478309631348 + ], + [ + "▁Daredevil", + -14.00649356842041 + ], + [ + "▁replaceable", + -14.006495475769043 + ], + [ + "▁buttercream", + -14.006507873535156 + ], + [ + "asu", + -14.006521224975586 + ], + [ + "▁Freeport", + -14.00655460357666 + ], + [ + "Break", + -14.00661563873291 + ], + [ + "▁Bosnian", + -14.006693840026855 + ], + [ + "iven", + -14.006706237792969 + ], + [ + "▁condescending", + -14.006749153137207 + ], + [ + "▁Ritter", + -14.006768226623535 + ], + [ + "▁jellyfish", + -14.006795883178711 + ], + [ + "▁PUT", + -14.00680160522461 + ], + [ + "▁replicating", + -14.00680160522461 + ], + [ + "▁droid", + -14.00681209564209 + ], + [ + "▁Translator", + -14.006851196289062 + ], + [ + "azza", + -14.006874084472656 + ], + [ + "▁minted", + -14.006922721862793 + ], + [ + "▁conceding", + -14.006967544555664 + ], + [ + "▁minecraft", + -14.006991386413574 + ], + [ + "▁splashes", + -14.007040977478027 + ], + [ + "▁Fatigue", + -14.007086753845215 + ], + [ + "LOCK", + -14.007122993469238 + ], + [ + "▁Shang", + -14.007146835327148 + ], + [ + "▁Crist", + -14.007159233093262 + ], + [ + "631", + -14.00716781616211 + ], + [ + "▁Grund", + -14.007204055786133 + ], + [ + "opy", + -14.007226943969727 + ], + [ + "▁Wentworth", + -14.007264137268066 + ], + [ + "leu", + -14.00727367401123 + ], + [ + "crew", + -14.007278442382812 + ], + [ + "▁TRUST", + -14.00730037689209 + ], + [ + "external", + -14.007399559020996 + ], + [ + "▁flint", + -14.007429122924805 + ], + [ + "▁Attic", + -14.007458686828613 + ], + [ + "bani", + -14.007468223571777 + ], + [ + "▁kph", + -14.007646560668945 + ], + [ + "▁Tenth", + -14.00765609741211 + ], + [ + "monitor", + -14.007665634155273 + ], + [ + "▁headway", + -14.007688522338867 + ], + [ + "▁AIS", + -14.007718086242676 + ], + [ + "▁argent", + -14.007743835449219 + ], + [ + "▁Critic", + -14.007781028747559 + ], + [ + "▁Globalization", + -14.00782585144043 + ], + [ + "▁unhelpful", + -14.007830619812012 + ], + [ + "▁downsizing", + -14.007834434509277 + ], + [ + "▁Loco", + -14.0078763961792 + ], + [ + "▁ticker", + -14.007883071899414 + ], + [ + "▁Creole", + -14.007911682128906 + ], + [ + "▁barter", + -14.007922172546387 + ], + [ + "amon", + -14.007946014404297 + ], + [ + "▁relaxes", + -14.007994651794434 + ], + [ + "▁netbook", + -14.008000373840332 + ], + [ + "▁Praying", + -14.00800609588623 + ], + [ + "▁handguns", + -14.008008003234863 + ], + [ + "▁hovered", + -14.00800895690918 + ], + [ + "▁lubricants", + -14.00804328918457 + ], + [ + "▁Luxurious", + -14.008105278015137 + ], + [ + "▁eraser", + -14.008129119873047 + ], + [ + "▁thickening", + -14.008147239685059 + ], + [ + "▁breastfeed", + -14.00815200805664 + ], + [ + "pharma", + -14.00815486907959 + ], + [ + "▁Winslow", + -14.008172035217285 + ], + [ + "532", + -14.008173942565918 + ], + [ + "▁Kazu", + -14.00820255279541 + ], + [ + "▁recieved", + -14.00823974609375 + ], + [ + "▁salinity", + -14.008296966552734 + ], + [ + "▁attenuation", + -14.008325576782227 + ], + [ + "▁smugglers", + -14.008399963378906 + ], + [ + "Qui", + -14.008418083190918 + ], + [ + "▁Khe", + -14.00848388671875 + ], + [ + "▁oxides", + -14.008511543273926 + ], + [ + "▁Novi", + -14.008552551269531 + ], + [ + "versed", + -14.008627891540527 + ], + [ + "expect", + -14.008641242980957 + ], + [ + "▁Cron", + -14.00865364074707 + ], + [ + "▁Luxe", + -14.008676528930664 + ], + [ + "earn", + -14.008790969848633 + ], + [ + "▁Reflect", + -14.008835792541504 + ], + [ + "▁Schulz", + -14.008879661560059 + ], + [ + "▁gla", + -14.008883476257324 + ], + [ + "derm", + -14.008940696716309 + ], + [ + "▁Mnangagwa", + -14.009008407592773 + ], + [ + "▁Hannity", + -14.009045600891113 + ], + [ + "▁Hatfield", + -14.00905704498291 + ], + [ + "628", + -14.009065628051758 + ], + [ + "▁Nath", + -14.00910472869873 + ], + [ + "▁MOM", + -14.009135246276855 + ], + [ + "▁attested", + -14.00915241241455 + ], + [ + "▁quirk", + -14.009174346923828 + ], + [ + "▁Nicol", + -14.009203910827637 + ], + [ + "▁devs", + -14.009283065795898 + ], + [ + "▁Subscriber", + -14.009305000305176 + ], + [ + "▁Holiness", + -14.009344100952148 + ], + [ + "▁allergen", + -14.00939655303955 + ], + [ + "▁Kath", + -14.009450912475586 + ], + [ + "▁defying", + -14.009450912475586 + ], + [ + "▁Formed", + -14.009485244750977 + ], + [ + "▁Rik", + -14.009490013122559 + ], + [ + "▁Plumber", + -14.009496688842773 + ], + [ + "▁LPS", + -14.009553909301758 + ], + [ + "▁unobtrusive", + -14.009563446044922 + ], + [ + "▁animosity", + -14.009568214416504 + ], + [ + "▁confessions", + -14.009589195251465 + ], + [ + "▁entrees", + -14.00971508026123 + ], + [ + "▁Resolve", + -14.009732246398926 + ], + [ + "▁Oppo", + -14.009758949279785 + ], + [ + "▁criminally", + -14.009840965270996 + ], + [ + "▁Swindon", + -14.00985336303711 + ], + [ + "src", + -14.009881019592285 + ], + [ + "▁superannuation", + -14.009920120239258 + ], + [ + "kki", + -14.009929656982422 + ], + [ + "▁STATES", + -14.009965896606445 + ], + [ + "▁IMS", + -14.009968757629395 + ], + [ + "▁Meier", + -14.009980201721191 + ], + [ + "▁css", + -14.009992599487305 + ], + [ + "▁petitioners", + -14.010042190551758 + ], + [ + "▁Cog", + -14.01006031036377 + ], + [ + "GAN", + -14.010078430175781 + ], + [ + "▁Beg", + -14.010079383850098 + ], + [ + "▁Edelman", + -14.010160446166992 + ], + [ + "▁assemblage", + -14.010176658630371 + ], + [ + "▁aforesaid", + -14.010187149047852 + ], + [ + "▁sturdiness", + -14.010261535644531 + ], + [ + "▁Emotions", + -14.010286331176758 + ], + [ + "continue", + -14.010367393493652 + ], + [ + "▁gambler", + -14.010374069213867 + ], + [ + "▁elucidate", + -14.010427474975586 + ], + [ + "zl", + -14.010457992553711 + ], + [ + "529", + -14.01046371459961 + ], + [ + "543", + -14.01047134399414 + ], + [ + "▁Brookings", + -14.01047420501709 + ], + [ + "England", + -14.010478973388672 + ], + [ + "▁decimated", + -14.010478973388672 + ], + [ + "▁underprivileged", + -14.010483741760254 + ], + [ + "▁Determining", + -14.010520935058594 + ], + [ + "▁promulgated", + -14.010564804077148 + ], + [ + "▁Immigrant", + -14.010573387145996 + ], + [ + "▁Disable", + -14.010597229003906 + ], + [ + "▁Simons", + -14.010601043701172 + ], + [ + "▁Salford", + -14.01060962677002 + ], + [ + "▁Linking", + -14.010635375976562 + ], + [ + "▁smitten", + -14.010644912719727 + ], + [ + "▁PRA", + -14.010648727416992 + ], + [ + "▁Defeat", + -14.010685920715332 + ], + [ + "urn", + -14.01070785522461 + ], + [ + "745", + -14.01071548461914 + ], + [ + "▁avoidable", + -14.010717391967773 + ], + [ + "elt", + -14.010762214660645 + ], + [ + "▁Cirque", + -14.010786056518555 + ], + [ + "▁summarizing", + -14.010787010192871 + ], + [ + "▁Davy", + -14.010895729064941 + ], + [ + "▁walkout", + -14.010897636413574 + ], + [ + "▁inexplicably", + -14.010921478271484 + ], + [ + "▁Realizing", + -14.01094913482666 + ], + [ + "▁Conquest", + -14.011024475097656 + ], + [ + "▁padlock", + -14.01104736328125 + ], + [ + "▁Loaded", + -14.011059761047363 + ], + [ + "▁mga", + -14.011086463928223 + ], + [ + "559", + -14.01109790802002 + ], + [ + "▁overrated", + -14.011112213134766 + ], + [ + "▁Yom", + -14.01114273071289 + ], + [ + "▁CCI", + -14.011188507080078 + ], + [ + "lova", + -14.011213302612305 + ], + [ + "▁Danes", + -14.011215209960938 + ], + [ + "NAC", + -14.01136302947998 + ], + [ + "aph", + -14.011445045471191 + ], + [ + "▁Greenway", + -14.01146411895752 + ], + [ + "▁coz", + -14.011468887329102 + ], + [ + "ى", + -14.011476516723633 + ], + [ + "▁Tis", + -14.011527061462402 + ], + [ + "chard", + -14.011528015136719 + ], + [ + "▁Monopoly", + -14.011568069458008 + ], + [ + "▁engrossed", + -14.01162052154541 + ], + [ + "▁resettlement", + -14.011622428894043 + ], + [ + "▁Soleil", + -14.01164436340332 + ], + [ + "▁calmness", + -14.011662483215332 + ], + [ + "coli", + -14.011686325073242 + ], + [ + "▁BRA", + -14.011717796325684 + ], + [ + "formal", + -14.011740684509277 + ], + [ + "▁submits", + -14.011757850646973 + ], + [ + "▁kung", + -14.011792182922363 + ], + [ + "▁Conley", + -14.011817932128906 + ], + [ + "▁Melrose", + -14.011885643005371 + ], + [ + "▁underpin", + -14.011994361877441 + ], + [ + "▁ICANN", + -14.012022018432617 + ], + [ + "▁concealing", + -14.012029647827148 + ], + [ + "▁Drives", + -14.012110710144043 + ], + [ + "▁eyelash", + -14.01213264465332 + ], + [ + "▁emotive", + -14.01218032836914 + ], + [ + "▁mired", + -14.012229919433594 + ], + [ + "Kevin", + -14.012235641479492 + ], + [ + "▁Burroughs", + -14.012236595153809 + ], + [ + "ologically", + -14.012286186218262 + ], + [ + "▁homicides", + -14.012330055236816 + ], + [ + "Joseph", + -14.012371063232422 + ], + [ + "slot", + -14.012388229370117 + ], + [ + "▁addon", + -14.012396812438965 + ], + [ + "▁PCP", + -14.012423515319824 + ], + [ + "▁keratin", + -14.012449264526367 + ], + [ + "▁Ponte", + -14.012472152709961 + ], + [ + "Hack", + -14.0125150680542 + ], + [ + "▁custodial", + -14.012524604797363 + ], + [ + "」", + -14.012535095214844 + ], + [ + "▁averted", + -14.012537002563477 + ], + [ + "668", + -14.012551307678223 + ], + [ + "▁Awarded", + -14.012551307678223 + ], + [ + "▁Smell", + -14.012569427490234 + ], + [ + "▁Steady", + -14.012642860412598 + ], + [ + "▁Tutorials", + -14.01272201538086 + ], + [ + "▁tanned", + -14.012726783752441 + ], + [ + "▁Glastonbury", + -14.012807846069336 + ], + [ + "seq", + -14.012808799743652 + ], + [ + "ZI", + -14.012900352478027 + ], + [ + "▁gulp", + -14.012900352478027 + ], + [ + "gora", + -14.012911796569824 + ], + [ + "571", + -14.01291275024414 + ], + [ + "woods", + -14.012921333312988 + ], + [ + "Stage", + -14.012947082519531 + ], + [ + "▁redefining", + -14.01296615600586 + ], + [ + "rti", + -14.0129976272583 + ], + [ + "▁ETS", + -14.013028144836426 + ], + [ + "▁Spirituality", + -14.013029098510742 + ], + [ + "▁pungent", + -14.013031959533691 + ], + [ + "CRM", + -14.013057708740234 + ], + [ + "▁Annals", + -14.013092041015625 + ], + [ + "▁spurs", + -14.01310920715332 + ], + [ + "▁timeliness", + -14.013134002685547 + ], + [ + "ifolia", + -14.013169288635254 + ], + [ + "▁Porta", + -14.01319694519043 + ], + [ + "▁Variation", + -14.013216018676758 + ], + [ + "▁Github", + -14.013230323791504 + ], + [ + "Cold", + -14.013264656066895 + ], + [ + "▁Biennale", + -14.013324737548828 + ], + [ + "threat", + -14.013347625732422 + ], + [ + "▁kt", + -14.013381958007812 + ], + [ + "▁Prefer", + -14.013397216796875 + ], + [ + "▁Brod", + -14.013409614562988 + ], + [ + "▁Nifty", + -14.013428688049316 + ], + [ + "▁copywriting", + -14.013429641723633 + ], + [ + "▁Fah", + -14.01346206665039 + ], + [ + "▁Ashford", + -14.013467788696289 + ], + [ + "▁Affiliation", + -14.01348876953125 + ], + [ + "gres", + -14.013522148132324 + ], + [ + "▁Keene", + -14.013532638549805 + ], + [ + "▁Nakamura", + -14.013555526733398 + ], + [ + "▁Kno", + -14.013609886169434 + ], + [ + "▁Ursula", + -14.013631820678711 + ], + [ + "onium", + -14.013646125793457 + ], + [ + "▁Carleton", + -14.01365852355957 + ], + [ + "oscope", + -14.013663291931152 + ], + [ + "Michel", + -14.01368236541748 + ], + [ + "theme", + -14.013704299926758 + ], + [ + "▁Higgs", + -14.013729095458984 + ], + [ + "Dad", + -14.013738632202148 + ], + [ + "▁Ged", + -14.01374340057373 + ], + [ + "▁Arundel", + -14.013784408569336 + ], + [ + "▁Adriatic", + -14.013787269592285 + ], + [ + "▁Rosary", + -14.013822555541992 + ], + [ + "ک", + -14.013858795166016 + ], + [ + "▁Dodger", + -14.013880729675293 + ], + [ + "▁Waterproofing", + -14.014018058776855 + ], + [ + "imit", + -14.014020919799805 + ], + [ + "pane", + -14.014095306396484 + ], + [ + "▁dainty", + -14.014110565185547 + ], + [ + "kWh", + -14.014115333557129 + ], + [ + "hopper", + -14.014122009277344 + ], + [ + "▁CRISPR", + -14.014150619506836 + ], + [ + "cardi", + -14.014175415039062 + ], + [ + "▁Feld", + -14.014193534851074 + ], + [ + "▁reproductions", + -14.014198303222656 + ], + [ + "WELL", + -14.014243125915527 + ], + [ + "Qu", + -14.014253616333008 + ], + [ + "▁LEE", + -14.014266014099121 + ], + [ + "▁polarizing", + -14.014338493347168 + ], + [ + "▁Guadalupe", + -14.014348983764648 + ], + [ + "▁Ellington", + -14.014359474182129 + ], + [ + "▁umbilical", + -14.01439380645752 + ], + [ + "▁consumerism", + -14.014469146728516 + ], + [ + "exposure", + -14.01447868347168 + ], + [ + "▁orlistat", + -14.01450252532959 + ], + [ + "tire", + -14.014508247375488 + ], + [ + "rope", + -14.014524459838867 + ], + [ + "Switch", + -14.01452922821045 + ], + [ + "▁Burberry", + -14.014554977416992 + ], + [ + "▁Effectiveness", + -14.014554977416992 + ], + [ + "663", + -14.014630317687988 + ], + [ + "▁Nga", + -14.014641761779785 + ], + [ + "632", + -14.01467514038086 + ], + [ + "▁Vaccine", + -14.014690399169922 + ], + [ + "▁Expenses", + -14.014693260192871 + ], + [ + "▁515", + -14.01471996307373 + ], + [ + "▁Wallis", + -14.01473331451416 + ], + [ + "▁disinformation", + -14.01478099822998 + ], + [ + "▁ambulances", + -14.014867782592773 + ], + [ + "▁precedes", + -14.01502799987793 + ], + [ + "▁Lying", + -14.015082359313965 + ], + [ + "η", + -14.015135765075684 + ], + [ + "Jul", + -14.015156745910645 + ], + [ + "▁weeknight", + -14.015170097351074 + ], + [ + "▁physio", + -14.015226364135742 + ], + [ + "▁Scrolls", + -14.015236854553223 + ], + [ + "ohan", + -14.015260696411133 + ], + [ + "azar", + -14.01529312133789 + ], + [ + "▁lingers", + -14.015302658081055 + ], + [ + "▁Waiver", + -14.015331268310547 + ], + [ + "▁Lutz", + -14.015350341796875 + ], + [ + "▁unsurprisingly", + -14.015360832214355 + ], + [ + "▁Surat", + -14.015377044677734 + ], + [ + "▁lego", + -14.015427589416504 + ], + [ + "▁Sia", + -14.015453338623047 + ], + [ + "න", + -14.015460014343262 + ], + [ + "▁Mendes", + -14.0155029296875 + ], + [ + "▁Avis", + -14.015582084655762 + ], + [ + "▁Equation", + -14.015592575073242 + ], + [ + "strict", + -14.015618324279785 + ], + [ + "kiewicz", + -14.015658378601074 + ], + [ + "▁kindred", + -14.015685081481934 + ], + [ + "Hay", + -14.015700340270996 + ], + [ + "evidence", + -14.015816688537598 + ], + [ + "▁SNL", + -14.01593017578125 + ], + [ + "▁heartland", + -14.015954971313477 + ], + [ + "▁Litecoin", + -14.015974998474121 + ], + [ + "▁superstition", + -14.016066551208496 + ], + [ + "lais", + -14.016090393066406 + ], + [ + "▁modulate", + -14.016166687011719 + ], + [ + "▁dizzying", + -14.016172409057617 + ], + [ + "▁rediscovered", + -14.016192436218262 + ], + [ + "▁Vie", + -14.016237258911133 + ], + [ + "▁jr", + -14.016280174255371 + ], + [ + "oides", + -14.016295433044434 + ], + [ + "▁separatist", + -14.016308784484863 + ], + [ + "▁shipyard", + -14.016315460205078 + ], + [ + "▁chariot", + -14.016322135925293 + ], + [ + "shy", + -14.016349792480469 + ], + [ + "▁MEDIA", + -14.016416549682617 + ], + [ + "fre", + -14.016515731811523 + ], + [ + "▁Stickers", + -14.016600608825684 + ], + [ + "▁insignia", + -14.016624450683594 + ], + [ + "Language", + -14.016627311706543 + ], + [ + "tiva", + -14.016657829284668 + ], + [ + "▁interrupts", + -14.016658782958984 + ], + [ + "bending", + -14.016691207885742 + ], + [ + "▁Pendleton", + -14.016737937927246 + ], + [ + "▁QS", + -14.016768455505371 + ], + [ + "▁discreetly", + -14.016768455505371 + ], + [ + "▁Schubert", + -14.016822814941406 + ], + [ + "abba", + -14.016865730285645 + ], + [ + "aña", + -14.016894340515137 + ], + [ + "▁Tomlinson", + -14.016901016235352 + ], + [ + "▁Messaging", + -14.016938209533691 + ], + [ + "▁Shale", + -14.017007827758789 + ], + [ + "educational", + -14.017019271850586 + ], + [ + "▁Persona", + -14.017093658447266 + ], + [ + "▁EMR", + -14.017118453979492 + ], + [ + "▁pursues", + -14.017131805419922 + ], + [ + "▁Apostolic", + -14.017149925231934 + ], + [ + "▁GUIDE", + -14.017233848571777 + ], + [ + "▁Flamingo", + -14.017269134521484 + ], + [ + "▁Misc", + -14.017274856567383 + ], + [ + "▁procrastinate", + -14.017329216003418 + ], + [ + "glia", + -14.017348289489746 + ], + [ + "▁SAB", + -14.017414093017578 + ], + [ + "▁Smoothie", + -14.017457008361816 + ], + [ + "▁soundtracks", + -14.017512321472168 + ], + [ + "gawa", + -14.017520904541016 + ], + [ + "▁Scher", + -14.017571449279785 + ], + [ + "▁wholeness", + -14.017587661743164 + ], + [ + "ها", + -14.017621994018555 + ], + [ + "bodies", + -14.017624855041504 + ], + [ + "Prime", + -14.017633438110352 + ], + [ + "▁Cato", + -14.017668724060059 + ], + [ + "yoshi", + -14.01773452758789 + ], + [ + "ACK", + -14.017744064331055 + ], + [ + "struct", + -14.017746925354004 + ], + [ + "environmental", + -14.017768859863281 + ], + [ + "▁Dunkin", + -14.017797470092773 + ], + [ + "severe", + -14.017823219299316 + ], + [ + "▁adjuvant", + -14.017824172973633 + ], + [ + "558", + -14.017829895019531 + ], + [ + "▁▪", + -14.017891883850098 + ], + [ + "▁disconcerting", + -14.017938613891602 + ], + [ + "▁shredder", + -14.017946243286133 + ], + [ + "▁shampoos", + -14.017996788024902 + ], + [ + "▁642", + -14.018009185791016 + ], + [ + "ugi", + -14.018031120300293 + ], + [ + "▁Flair", + -14.018033027648926 + ], + [ + "▁hectare", + -14.018050193786621 + ], + [ + "▁preservative", + -14.018051147460938 + ], + [ + "772", + -14.018095016479492 + ], + [ + "▁colitis", + -14.01813793182373 + ], + [ + "▁Hotline", + -14.018142700195312 + ], + [ + "▁stumbles", + -14.018142700195312 + ], + [ + "▁Tort", + -14.018148422241211 + ], + [ + "hic", + -14.018171310424805 + ], + [ + "▁guardianship", + -14.018216133117676 + ], + [ + "▁Unreal", + -14.018217086791992 + ], + [ + "▁coyotes", + -14.018244743347168 + ], + [ + "▁Wink", + -14.018259048461914 + ], + [ + "▁Yer", + -14.01828670501709 + ], + [ + "▁Hearst", + -14.018317222595215 + ], + [ + "▁blaster", + -14.018339157104492 + ], + [ + "▁Mildred", + -14.018383026123047 + ], + [ + "▁Passionate", + -14.018407821655273 + ], + [ + "▁Alfie", + -14.018441200256348 + ], + [ + "▁massaging", + -14.018515586853027 + ], + [ + "▁Ó", + -14.018536567687988 + ], + [ + "▁lg", + -14.01855182647705 + ], + [ + "▁Maven", + -14.018567085266113 + ], + [ + "▁birdies", + -14.018576622009277 + ], + [ + "Pool", + -14.018607139587402 + ], + [ + "▁Cleansing", + -14.018610954284668 + ], + [ + "nado", + -14.018647193908691 + ], + [ + "duc", + -14.018662452697754 + ], + [ + "▁Scranton", + -14.018664360046387 + ], + [ + "▁nov", + -14.018706321716309 + ], + [ + "▁Pp", + -14.018754005432129 + ], + [ + "tower", + -14.018765449523926 + ], + [ + "▁670", + -14.018832206726074 + ], + [ + "▁Opus", + -14.018867492675781 + ], + [ + "▁Nominations", + -14.018879890441895 + ], + [ + "▁Archi", + -14.019002914428711 + ], + [ + "modified", + -14.019015312194824 + ], + [ + "▁Cortex", + -14.019027709960938 + ], + [ + "▁Powerpoint", + -14.019039154052734 + ], + [ + "▁driverless", + -14.019044876098633 + ], + [ + "▁Yusuf", + -14.019102096557617 + ], + [ + "czyk", + -14.019165992736816 + ], + [ + "▁yearn", + -14.019170761108398 + ], + [ + "▁constitutionally", + -14.019184112548828 + ], + [ + "nja", + -14.019186019897461 + ], + [ + "ovski", + -14.019267082214355 + ], + [ + "▁crucially", + -14.019295692443848 + ], + [ + "▁kimono", + -14.019305229187012 + ], + [ + "▁adsorption", + -14.019328117370605 + ], + [ + "▁CPAP", + -14.019365310668945 + ], + [ + "xton", + -14.019388198852539 + ], + [ + "▁formality", + -14.019389152526855 + ], + [ + "▁Invention", + -14.019469261169434 + ], + [ + "773", + -14.019484519958496 + ], + [ + "▁Bluegrass", + -14.019548416137695 + ], + [ + "rode", + -14.01959228515625 + ], + [ + "▁Forced", + -14.019614219665527 + ], + [ + "CET", + -14.019632339477539 + ], + [ + "▁incoherent", + -14.019643783569336 + ], + [ + "▁pussy", + -14.01965045928955 + ], + [ + "▁CFP", + -14.019669532775879 + ], + [ + "▁gent", + -14.019688606262207 + ], + [ + "▁ventolin", + -14.019721984863281 + ], + [ + "ό", + -14.019728660583496 + ], + [ + "▁pornography", + -14.019807815551758 + ], + [ + "labeled", + -14.019857406616211 + ], + [ + "Beyond", + -14.019888877868652 + ], + [ + "▁Hosts", + -14.019937515258789 + ], + [ + "▁subordinates", + -14.019944190979004 + ], + [ + "▁flowchart", + -14.019949913024902 + ], + [ + "▁Hegel", + -14.01998233795166 + ], + [ + "ço", + -14.020013809204102 + ], + [ + "▁Sewer", + -14.020018577575684 + ], + [ + "▁sported", + -14.020040512084961 + ], + [ + "▁sqft", + -14.020040512084961 + ], + [ + "▁HPC", + -14.020044326782227 + ], + [ + "▁Nikkei", + -14.020051002502441 + ], + [ + "Rank", + -14.020068168640137 + ], + [ + "▁422", + -14.020069122314453 + ], + [ + "onen", + -14.02016544342041 + ], + [ + "wand", + -14.020177841186523 + ], + [ + "▁Nanny", + -14.020261764526367 + ], + [ + "extension", + -14.020280838012695 + ], + [ + "▁subgroups", + -14.02031135559082 + ], + [ + "▁radiate", + -14.020318984985352 + ], + [ + "▁sufferer", + -14.02036190032959 + ], + [ + "▁그", + -14.020408630371094 + ], + [ + "tention", + -14.020411491394043 + ], + [ + "posted", + -14.020429611206055 + ], + [ + "▁jpeg", + -14.020447731018066 + ], + [ + "▁Babu", + -14.020498275756836 + ], + [ + "▁GAR", + -14.020578384399414 + ], + [ + "▁lifetimes", + -14.020612716674805 + ], + [ + "document", + -14.020649909973145 + ], + [ + "▁vide", + -14.020674705505371 + ], + [ + "claim", + -14.020740509033203 + ], + [ + "▁Paradigm", + -14.020740509033203 + ], + [ + "keepers", + -14.020788192749023 + ], + [ + "▁RePEc", + -14.020829200744629 + ], + [ + "▁Egan", + -14.02087688446045 + ], + [ + "▁Blush", + -14.020890235900879 + ], + [ + "▁Kus", + -14.020899772644043 + ], + [ + "▁activator", + -14.020913124084473 + ], + [ + "DAC", + -14.020934104919434 + ], + [ + "▁Compute", + -14.020979881286621 + ], + [ + "▁accelerometer", + -14.021045684814453 + ], + [ + "laying", + -14.021085739135742 + ], + [ + "▁domino", + -14.021092414855957 + ], + [ + "▁bandits", + -14.021093368530273 + ], + [ + "▁PX", + -14.02110767364502 + ], + [ + "▁enveloped", + -14.02112102508545 + ], + [ + "▁Dowd", + -14.02112865447998 + ], + [ + "▁Gh", + -14.021143913269043 + ], + [ + "▁419", + -14.021149635314941 + ], + [ + "▁Ferro", + -14.021153450012207 + ], + [ + "786", + -14.021203994750977 + ], + [ + "▁ASM", + -14.021293640136719 + ], + [ + "ABS", + -14.021312713623047 + ], + [ + "▁Reasonable", + -14.02131462097168 + ], + [ + "▁BODY", + -14.021315574645996 + ], + [ + "も", + -14.021320343017578 + ], + [ + "▁Reza", + -14.021419525146484 + ], + [ + "▁introvert", + -14.021430015563965 + ], + [ + "▁Nellie", + -14.021441459655762 + ], + [ + "▁fervor", + -14.021468162536621 + ], + [ + "itra", + -14.021476745605469 + ], + [ + "▁CAB", + -14.021515846252441 + ], + [ + "▁sketched", + -14.021516799926758 + ], + [ + "▁TOS", + -14.021544456481934 + ], + [ + "loch", + -14.021594047546387 + ], + [ + "▁crème", + -14.021608352661133 + ], + [ + "▁Lamont", + -14.021651268005371 + ], + [ + "▁grasslands", + -14.021730422973633 + ], + [ + "▁binders", + -14.021739959716797 + ], + [ + "845", + -14.02175235748291 + ], + [ + "▁Serpent", + -14.021803855895996 + ], + [ + "ná", + -14.021829605102539 + ], + [ + "▁Carmichael", + -14.021857261657715 + ], + [ + "▁Leu", + -14.021875381469727 + ], + [ + "▁bodyguard", + -14.021886825561523 + ], + [ + "586", + -14.021902084350586 + ], + [ + "▁interprets", + -14.02192497253418 + ], + [ + "catering", + -14.022007942199707 + ], + [ + "804", + -14.022077560424805 + ], + [ + "▁refills", + -14.02218246459961 + ], + [ + "roa", + -14.022226333618164 + ], + [ + "▁metaphysics", + -14.02229118347168 + ], + [ + "▁worshippers", + -14.022342681884766 + ], + [ + "▁playtime", + -14.022367477416992 + ], + [ + "preneur", + -14.022377014160156 + ], + [ + "▁BROWN", + -14.022397994995117 + ], + [ + "▁GABA", + -14.022431373596191 + ], + [ + "▁synced", + -14.022442817687988 + ], + [ + "▁Tackle", + -14.022478103637695 + ], + [ + "▁shivering", + -14.02254581451416 + ], + [ + "▁entailed", + -14.022597312927246 + ], + [ + "Den", + -14.02262020111084 + ], + [ + "▁AIG", + -14.022622108459473 + ], + [ + "epa", + -14.02265453338623 + ], + [ + "BIG", + -14.022693634033203 + ], + [ + "▁Otago", + -14.022721290588379 + ], + [ + "▁reagent", + -14.022736549377441 + ], + [ + "▁OSX", + -14.022768020629883 + ], + [ + "▁waging", + -14.022847175598145 + ], + [ + "▁Hebron", + -14.02297592163086 + ], + [ + "▁Dunes", + -14.02299690246582 + ], + [ + "▁cinematographer", + -14.023021697998047 + ], + [ + "▁irrevocable", + -14.023036003112793 + ], + [ + "▁Bout", + -14.023049354553223 + ], + [ + "Á", + -14.023127555847168 + ], + [ + "▁Goodness", + -14.023141860961914 + ], + [ + "▁storyboard", + -14.023149490356445 + ], + [ + "▁bowels", + -14.023155212402344 + ], + [ + "▁shunned", + -14.023171424865723 + ], + [ + "▁Malayalam", + -14.02318000793457 + ], + [ + "▁Semester", + -14.023210525512695 + ], + [ + "▁Generations", + -14.023224830627441 + ], + [ + "▁Acre", + -14.023231506347656 + ], + [ + "▁Prussia", + -14.023236274719238 + ], + [ + "り", + -14.023237228393555 + ], + [ + "▁Arroyo", + -14.023311614990234 + ], + [ + "▁stints", + -14.02336597442627 + ], + [ + "▁Glamour", + -14.023394584655762 + ], + [ + "▁Treasures", + -14.023408889770508 + ], + [ + "BV", + -14.023412704467773 + ], + [ + "▁DEAD", + -14.023426055908203 + ], + [ + "▁lefty", + -14.023445129394531 + ], + [ + "▁propagated", + -14.023520469665527 + ], + [ + "▁fanbase", + -14.023558616638184 + ], + [ + "▁Bypass", + -14.02359676361084 + ], + [ + "▁Sundar", + -14.023608207702637 + ], + [ + "▁Sui", + -14.023612976074219 + ], + [ + "ifera", + -14.023669242858887 + ], + [ + "▁grainy", + -14.023713111877441 + ], + [ + "▁NATIONAL", + -14.023733139038086 + ], + [ + "environment", + -14.023736000061035 + ], + [ + "▁Licensee", + -14.023749351501465 + ], + [ + "▁sparring", + -14.023778915405273 + ], + [ + "mma", + -14.023816108703613 + ], + [ + "▁jacuzzi", + -14.023855209350586 + ], + [ + "▁Moab", + -14.023857116699219 + ], + [ + "▁precipitate", + -14.023880004882812 + ], + [ + "▁petal", + -14.023910522460938 + ], + [ + "▁housework", + -14.023950576782227 + ], + [ + "▁barbell", + -14.023959159851074 + ], + [ + "▁sickening", + -14.023965835571289 + ], + [ + "▁sly", + -14.023995399475098 + ], + [ + "▁Arrangement", + -14.0240478515625 + ], + [ + "▁Freelance", + -14.024048805236816 + ], + [ + "erna", + -14.024068832397461 + ], + [ + "▁Designated", + -14.02407169342041 + ], + [ + "advantage", + -14.024102210998535 + ], + [ + "▁checkup", + -14.024127960205078 + ], + [ + "828", + -14.024154663085938 + ], + [ + "▁Bounty", + -14.02422046661377 + ], + [ + "▁Kohler", + -14.024253845214844 + ], + [ + "▁paintball", + -14.024262428283691 + ], + [ + "522", + -14.0243501663208 + ], + [ + "esp", + -14.024392127990723 + ], + [ + "▁tormented", + -14.024398803710938 + ], + [ + "▁Drums", + -14.0244140625 + ], + [ + "hira", + -14.024495124816895 + ], + [ + "▁Celia", + -14.024497032165527 + ], + [ + "▁Caracas", + -14.024579048156738 + ], + [ + "TRO", + -14.02458667755127 + ], + [ + "FRA", + -14.024614334106445 + ], + [ + "▁WWW", + -14.024641990661621 + ], + [ + "▁legions", + -14.024663925170898 + ], + [ + "▁EMP", + -14.024676322937012 + ], + [ + "▁STORE", + -14.024683952331543 + ], + [ + "▁hilltop", + -14.024713516235352 + ], + [ + "▁Characterization", + -14.024721145629883 + ], + [ + "Sarah", + -14.024742126464844 + ], + [ + "uang", + -14.024747848510742 + ], + [ + "▁TERMS", + -14.024763107299805 + ], + [ + "icker", + -14.024768829345703 + ], + [ + "ʻ", + -14.02479076385498 + ], + [ + "▁Mandel", + -14.024807929992676 + ], + [ + "▁Horseshoe", + -14.024852752685547 + ], + [ + "▁PES", + -14.02489948272705 + ], + [ + "▁Hoy", + -14.024900436401367 + ], + [ + "496", + -14.02492904663086 + ], + [ + "LAC", + -14.024985313415527 + ], + [ + "▁obtains", + -14.025015830993652 + ], + [ + "▁underwhelming", + -14.025041580200195 + ], + [ + "▁filibuster", + -14.02504825592041 + ], + [ + "▁HCC", + -14.025060653686523 + ], + [ + "ols", + -14.02507495880127 + ], + [ + "▁Markham", + -14.025099754333496 + ], + [ + "Tube", + -14.025108337402344 + ], + [ + "▁McIntosh", + -14.025116920471191 + ], + [ + "▁Momma", + -14.025116920471191 + ], + [ + "tronics", + -14.025146484375 + ], + [ + "▁COURSE", + -14.025157928466797 + ], + [ + "▁Aldo", + -14.025169372558594 + ], + [ + "WAR", + -14.025181770324707 + ], + [ + "▁Conscious", + -14.025216102600098 + ], + [ + "▁arcane", + -14.025239944458008 + ], + [ + "chik", + -14.02524185180664 + ], + [ + "418", + -14.02524471282959 + ], + [ + "×2", + -14.02529239654541 + ], + [ + "▁smuggled", + -14.025357246398926 + ], + [ + "▁reaping", + -14.025364875793457 + ], + [ + "▁CONS", + -14.025506019592285 + ], + [ + "NGO", + -14.02553939819336 + ], + [ + "▁nel", + -14.025548934936523 + ], + [ + "▁Paladin", + -14.025615692138672 + ], + [ + "▁reciting", + -14.02562427520752 + ], + [ + "▁Keating", + -14.025639533996582 + ], + [ + "▁alienate", + -14.02564525604248 + ], + [ + "▁shortness", + -14.02564525604248 + ], + [ + "▁CUT", + -14.025649070739746 + ], + [ + "▁const", + -14.025662422180176 + ], + [ + "ayne", + -14.025679588317871 + ], + [ + "ancing", + -14.025715827941895 + ], + [ + "▁Gaussian", + -14.025717735290527 + ], + [ + "为", + -14.025737762451172 + ], + [ + "terrorist", + -14.025930404663086 + ], + [ + "topped", + -14.025956153869629 + ], + [ + "▁skewers", + -14.025976181030273 + ], + [ + "▁interracial", + -14.025993347167969 + ], + [ + "▁OTT", + -14.026006698608398 + ], + [ + "reliance", + -14.02603816986084 + ], + [ + "ochi", + -14.026044845581055 + ], + [ + "Install", + -14.026103019714355 + ], + [ + "▁poise", + -14.026145935058594 + ], + [ + "▁Metallica", + -14.026152610778809 + ], + [ + "aber", + -14.026155471801758 + ], + [ + "▁Mistakes", + -14.026163101196289 + ], + [ + "▁Gow", + -14.026178359985352 + ], + [ + "▁consumables", + -14.026190757751465 + ], + [ + "ELLA", + -14.026217460632324 + ], + [ + "▁LOTS", + -14.026236534118652 + ], + [ + "▁Assumption", + -14.026246070861816 + ], + [ + "▁blockages", + -14.026286125183105 + ], + [ + "▁thorns", + -14.026299476623535 + ], + [ + "sama", + -14.026307106018066 + ], + [ + "▁harmonica", + -14.026342391967773 + ], + [ + "▁Expanded", + -14.026368141174316 + ], + [ + "▁Woolf", + -14.026378631591797 + ], + [ + "stretch", + -14.02647590637207 + ], + [ + "▁settler", + -14.026476860046387 + ], + [ + "▁gratuit", + -14.026521682739258 + ], + [ + "▁Kasa", + -14.02653694152832 + ], + [ + "▁PHI", + -14.026554107666016 + ], + [ + "▁groaned", + -14.026575088500977 + ], + [ + "▁abysmal", + -14.026610374450684 + ], + [ + "▁Hod", + -14.026701927185059 + ], + [ + "▁Kazan", + -14.026713371276855 + ], + [ + "ordinate", + -14.026835441589355 + ], + [ + "▁combing", + -14.026844024658203 + ], + [ + "▁Sari", + -14.026850700378418 + ], + [ + "▁inhumane", + -14.02685260772705 + ], + [ + "▁ranting", + -14.026856422424316 + ], + [ + "▁Refrigerate", + -14.026924133300781 + ], + [ + "▁Elimination", + -14.026934623718262 + ], + [ + "▁Sienna", + -14.026949882507324 + ], + [ + "▁940", + -14.026976585388184 + ], + [ + "▁diverting", + -14.027017593383789 + ], + [ + "▁Yiddish", + -14.027045249938965 + ], + [ + "▁blacklist", + -14.027045249938965 + ], + [ + "Ghost", + -14.027058601379395 + ], + [ + "▁fireball", + -14.027083396911621 + ], + [ + "▁Pigs", + -14.02708625793457 + ], + [ + "AKE", + -14.027103424072266 + ], + [ + "▁glyphosate", + -14.027120590209961 + ], + [ + "▁MDA", + -14.027203559875488 + ], + [ + "▁solicited", + -14.02727222442627 + ], + [ + "▁BEING", + -14.027286529541016 + ], + [ + "▁Projector", + -14.027299880981445 + ], + [ + "▁degenerate", + -14.027314186096191 + ], + [ + "▁rehabilitate", + -14.027322769165039 + ], + [ + "▁Prog", + -14.02733039855957 + ], + [ + "▁Economists", + -14.027338981628418 + ], + [ + "▁astounded", + -14.027485847473145 + ], + [ + "▁Oc", + -14.027544975280762 + ], + [ + "909", + -14.027580261230469 + ], + [ + "dryer", + -14.027610778808594 + ], + [ + "▁attuned", + -14.027610778808594 + ], + [ + "▁Cite", + -14.027615547180176 + ], + [ + "▁Edmunds", + -14.027652740478516 + ], + [ + "▁pomp", + -14.027695655822754 + ], + [ + "▁wag", + -14.02769947052002 + ], + [ + "enic", + -14.027728080749512 + ], + [ + "▁Hazardous", + -14.027739524841309 + ], + [ + "stopping", + -14.02774715423584 + ], + [ + "▁hurling", + -14.027752876281738 + ], + [ + "▁THOMAS", + -14.027791023254395 + ], + [ + "▁natal", + -14.027835845947266 + ], + [ + "▁Nal", + -14.027857780456543 + ], + [ + "▁Supervision", + -14.027909278869629 + ], + [ + "▁swatch", + -14.027995109558105 + ], + [ + "cpp", + -14.02801513671875 + ], + [ + "▁electrolytes", + -14.028083801269531 + ], + [ + "▁subdivisions", + -14.028111457824707 + ], + [ + "hma", + -14.028130531311035 + ], + [ + "▁rethinking", + -14.028132438659668 + ], + [ + "▁Najib", + -14.028160095214844 + ], + [ + "▁Evangelist", + -14.028216361999512 + ], + [ + "limiting", + -14.028254508972168 + ], + [ + "▁Cedric", + -14.028263092041016 + ], + [ + "▁Altman", + -14.02827262878418 + ], + [ + "▁solstice", + -14.028316497802734 + ], + [ + "fw", + -14.028349876403809 + ], + [ + "687", + -14.02835750579834 + ], + [ + "▁COOL", + -14.028396606445312 + ], + [ + "▁Ender", + -14.02841854095459 + ], + [ + "▁506", + -14.02842903137207 + ], + [ + "vm", + -14.028461456298828 + ], + [ + "▁Pooh", + -14.028473854064941 + ], + [ + "▁Pinto", + -14.028515815734863 + ], + [ + "▁raccoon", + -14.028532028198242 + ], + [ + "▁Posters", + -14.028553009033203 + ], + [ + "▁feathered", + -14.028556823730469 + ], + [ + "liss", + -14.02861213684082 + ], + [ + "▁manhood", + -14.028618812561035 + ], + [ + "▁delves", + -14.028644561767578 + ], + [ + "▁Condos", + -14.02867317199707 + ], + [ + "▁subnet", + -14.02867603302002 + ], + [ + "▁traversing", + -14.028707504272461 + ], + [ + "▁Libre", + -14.028717994689941 + ], + [ + "lama", + -14.028742790222168 + ], + [ + "▁replicates", + -14.028757095336914 + ], + [ + "▁Arne", + -14.028796195983887 + ], + [ + "▁occlusion", + -14.028796195983887 + ], + [ + "▁Assign", + -14.028855323791504 + ], + [ + "opi", + -14.028864860534668 + ], + [ + "▁servicemen", + -14.028877258300781 + ], + [ + "▁steeper", + -14.028894424438477 + ], + [ + "▁CRP", + -14.028958320617676 + ], + [ + "▁lashing", + -14.028968811035156 + ], + [ + "▁Gaddafi", + -14.028969764709473 + ], + [ + "compared", + -14.028973579406738 + ], + [ + "ection", + -14.028982162475586 + ], + [ + "▁451", + -14.029019355773926 + ], + [ + "▁blossomed", + -14.029025077819824 + ], + [ + "clinic", + -14.02904987335205 + ], + [ + "antly", + -14.029082298278809 + ], + [ + "strap", + -14.029098510742188 + ], + [ + "▁prong", + -14.029106140136719 + ], + [ + "▁Http", + -14.029120445251465 + ], + [ + "▁Celine", + -14.029125213623047 + ], + [ + "LOS", + -14.029180526733398 + ], + [ + "brief", + -14.029182434082031 + ], + [ + "itarian", + -14.029219627380371 + ], + [ + "▁Voi", + -14.029223442077637 + ], + [ + "▁Progressives", + -14.029296875 + ], + [ + "▁READY", + -14.02930736541748 + ], + [ + "▁TIFF", + -14.029309272766113 + ], + [ + "▁Biotech", + -14.029313087463379 + ], + [ + "▁Sinha", + -14.029450416564941 + ], + [ + "697", + -14.029486656188965 + ], + [ + "labs", + -14.029498100280762 + ], + [ + "honest", + -14.029581069946289 + ], + [ + "▁frigate", + -14.029593467712402 + ], + [ + "▁अ", + -14.029605865478516 + ], + [ + "anz", + -14.029679298400879 + ], + [ + "▁mercenary", + -14.029679298400879 + ], + [ + "▁Shoppers", + -14.029684066772461 + ], + [ + "rge", + -14.029739379882812 + ], + [ + "▁banded", + -14.029803276062012 + ], + [ + "screw", + -14.02985954284668 + ], + [ + "▁Coop", + -14.02987003326416 + ], + [ + "ி", + -14.02990436553955 + ], + [ + "▁Outfitters", + -14.029976844787598 + ], + [ + "▁unlawfully", + -14.030007362365723 + ], + [ + "▁Braz", + -14.030043601989746 + ], + [ + "▁ammonium", + -14.03011703491211 + ], + [ + "▁dissipation", + -14.030230522155762 + ], + [ + "▁restorations", + -14.030259132385254 + ], + [ + "▁Miners", + -14.030278205871582 + ], + [ + "▁pressurized", + -14.030287742614746 + ], + [ + "▁snowing", + -14.030315399169922 + ], + [ + "democracy", + -14.030327796936035 + ], + [ + "▁Wonders", + -14.030365943908691 + ], + [ + "▁Sandi", + -14.03045654296875 + ], + [ + "▁Tactics", + -14.030461311340332 + ], + [ + "▁recombination", + -14.030481338500977 + ], + [ + "▁eel", + -14.030535697937012 + ], + [ + "▁Jug", + -14.030588150024414 + ], + [ + "▁grudge", + -14.03058910369873 + ], + [ + "▁Teri", + -14.03060245513916 + ], + [ + "▁Acquire", + -14.030641555786133 + ], + [ + "▁workhorse", + -14.030717849731445 + ], + [ + "▁Hadid", + -14.030745506286621 + ], + [ + "ите", + -14.030789375305176 + ], + [ + "▁snappy", + -14.030813217163086 + ], + [ + "▁crosswalk", + -14.030863761901855 + ], + [ + "▁PPS", + -14.03088092803955 + ], + [ + "noon", + -14.030911445617676 + ], + [ + "▁prosthesis", + -14.030933380126953 + ], + [ + "544", + -14.030937194824219 + ], + [ + "▁Planting", + -14.031036376953125 + ], + [ + "▁CID", + -14.031039237976074 + ], + [ + "▁Ryanair", + -14.031048774719238 + ], + [ + "▁fickle", + -14.031107902526855 + ], + [ + "▁husk", + -14.03115463256836 + ], + [ + "▁Celebrities", + -14.031176567077637 + ], + [ + "ام", + -14.0311861038208 + ], + [ + "▁Obtaining", + -14.031190872192383 + ], + [ + "▁glo", + -14.0311918258667 + ], + [ + "▁rand", + -14.031194686889648 + ], + [ + "▁Wrath", + -14.031234741210938 + ], + [ + "▁guarantor", + -14.031257629394531 + ], + [ + "534", + -14.03126049041748 + ], + [ + "▁alchemy", + -14.031266212463379 + ], + [ + "▁hereof", + -14.031291961669922 + ], + [ + "honey", + -14.031356811523438 + ], + [ + "ATIVE", + -14.031370162963867 + ], + [ + "bac", + -14.031371116638184 + ], + [ + "▁ASH", + -14.0313720703125 + ], + [ + "▁FSU", + -14.031392097473145 + ], + [ + "Sand", + -14.031405448913574 + ], + [ + "▁Alp", + -14.03140640258789 + ], + [ + "▁Fein", + -14.031439781188965 + ], + [ + "▁toffee", + -14.03144645690918 + ], + [ + "▁menswear", + -14.031501770019531 + ], + [ + "CENT", + -14.031514167785645 + ], + [ + "missing", + -14.031521797180176 + ], + [ + "▁bales", + -14.031529426574707 + ], + [ + "Going", + -14.031586647033691 + ], + [ + "▁Shanahan", + -14.031587600708008 + ], + [ + "▁Plas", + -14.031599998474121 + ], + [ + "▁multifunctional", + -14.031641006469727 + ], + [ + "▁USCIS", + -14.031671524047852 + ], + [ + "▁jihadists", + -14.031689643859863 + ], + [ + "▁Southgate", + -14.031722068786621 + ], + [ + "reports", + -14.031746864318848 + ], + [ + "▁FINALLY", + -14.031749725341797 + ], + [ + "esian", + -14.031758308410645 + ], + [ + "▁Begins", + -14.031763076782227 + ], + [ + "▁Wayfair", + -14.031867980957031 + ], + [ + "cler", + -14.031892776489258 + ], + [ + "ebel", + -14.032014846801758 + ], + [ + "neau", + -14.0320463180542 + ], + [ + "scription", + -14.032094955444336 + ], + [ + "▁У", + -14.032114028930664 + ], + [ + "▁envisage", + -14.032139778137207 + ], + [ + "Gb", + -14.032176971435547 + ], + [ + "functioning", + -14.0322904586792 + ], + [ + "▁Defining", + -14.032346725463867 + ], + [ + "▁sauteed", + -14.032380104064941 + ], + [ + "▁RDA", + -14.032402992248535 + ], + [ + "knock", + -14.032407760620117 + ], + [ + "▁autographed", + -14.032425880432129 + ], + [ + "▁Circulation", + -14.032431602478027 + ], + [ + "▁cripple", + -14.032444953918457 + ], + [ + "▁lactation", + -14.032450675964355 + ], + [ + "ozo", + -14.03249740600586 + ], + [ + "▁Err", + -14.032527923583984 + ], + [ + "hae", + -14.032546997070312 + ], + [ + "mines", + -14.032563209533691 + ], + [ + "▁Intake", + -14.032618522644043 + ], + [ + "▁Retina", + -14.032626152038574 + ], + [ + "▁Luce", + -14.032686233520508 + ], + [ + "RAD", + -14.032716751098633 + ], + [ + "rare", + -14.032748222351074 + ], + [ + "▁Confederacy", + -14.032767295837402 + ], + [ + "▁tether", + -14.03279972076416 + ], + [ + "▁Helix", + -14.032828330993652 + ], + [ + "▁plantings", + -14.032837867736816 + ], + [ + "▁sympathies", + -14.032845497131348 + ], + [ + "▁Leno", + -14.032848358154297 + ], + [ + "▁Serb", + -14.032882690429688 + ], + [ + "grat", + -14.032913208007812 + ], + [ + "▁pitting", + -14.032997131347656 + ], + [ + "▁Affiliates", + -14.033129692077637 + ], + [ + "▁otherworldly", + -14.033133506774902 + ], + [ + "▁Kud", + -14.033138275146484 + ], + [ + "expanding", + -14.033148765563965 + ], + [ + "▁denoted", + -14.033158302307129 + ], + [ + "▁cleanest", + -14.033162117004395 + ], + [ + "▁Boyfriend", + -14.033194541931152 + ], + [ + "▁Crawley", + -14.033209800720215 + ], + [ + "▁Vantage", + -14.033215522766113 + ], + [ + "▁emeritus", + -14.033294677734375 + ], + [ + "KW", + -14.033385276794434 + ], + [ + "▁Pyeongchang", + -14.03338623046875 + ], + [ + "▁EIA", + -14.033398628234863 + ], + [ + "▁Nouveau", + -14.033462524414062 + ], + [ + "▁irritability", + -14.033467292785645 + ], + [ + "▁theologian", + -14.033513069152832 + ], + [ + "lby", + -14.033520698547363 + ], + [ + "ать", + -14.03353214263916 + ], + [ + "▁Brianna", + -14.033601760864258 + ], + [ + "iy", + -14.033611297607422 + ], + [ + "▁Lacy", + -14.033617973327637 + ], + [ + "updated", + -14.033708572387695 + ], + [ + "▁reunions", + -14.033730506896973 + ], + [ + "▁winemaking", + -14.033743858337402 + ], + [ + "▁Nuremberg", + -14.033756256103516 + ], + [ + "552", + -14.033766746520996 + ], + [ + "▁loc", + -14.033781051635742 + ], + [ + "▁stench", + -14.033782958984375 + ], + [ + "rks", + -14.03382396697998 + ], + [ + "▁GMP", + -14.03386116027832 + ], + [ + "▁vertices", + -14.03388786315918 + ], + [ + "▁Nou", + -14.033891677856445 + ], + [ + "▁alleviating", + -14.033903121948242 + ], + [ + "▁Rink", + -14.033913612365723 + ], + [ + "▁Rapper", + -14.033924102783203 + ], + [ + "luc", + -14.033936500549316 + ], + [ + "▁paychecks", + -14.033940315246582 + ], + [ + "▁Planck", + -14.033976554870605 + ], + [ + "▁empirically", + -14.0339937210083 + ], + [ + "ocyte", + -14.03400707244873 + ], + [ + "▁Layers", + -14.034040451049805 + ], + [ + "▁wal", + -14.034158706665039 + ], + [ + "dj", + -14.034164428710938 + ], + [ + "▁preorder", + -14.034173965454102 + ], + [ + "▁IST", + -14.034174919128418 + ], + [ + "▁subtracting", + -14.03421401977539 + ], + [ + "▁bosom", + -14.034235954284668 + ], + [ + "lough", + -14.0342435836792 + ], + [ + "▁navigational", + -14.034257888793945 + ], + [ + "▁455", + -14.034345626831055 + ], + [ + "▁fluidity", + -14.034368515014648 + ], + [ + "▁peered", + -14.034378051757812 + ], + [ + "▁ascertained", + -14.034420013427734 + ], + [ + "▁tentacles", + -14.034422874450684 + ], + [ + "▁Homepage", + -14.03447151184082 + ], + [ + "▁morbid", + -14.034502983093262 + ], + [ + "▁Stew", + -14.034523963928223 + ], + [ + "▁Controlling", + -14.034542083740234 + ], + [ + "▁dosages", + -14.034635543823242 + ], + [ + "▁Boasting", + -14.034663200378418 + ], + [ + "▁Watchers", + -14.034668922424316 + ], + [ + "▁almighty", + -14.034706115722656 + ], + [ + "▁trillions", + -14.03475284576416 + ], + [ + "▁Clubhouse", + -14.034768104553223 + ], + [ + "▁decoy", + -14.034821510314941 + ], + [ + "RMA", + -14.034832954406738 + ], + [ + "▁Berk", + -14.034860610961914 + ], + [ + "▁accumulates", + -14.034894943237305 + ], + [ + "glyph", + -14.034902572631836 + ], + [ + "▁MMP", + -14.034914016723633 + ], + [ + "▁chemists", + -14.03494644165039 + ], + [ + "▁Aye", + -14.034954071044922 + ], + [ + "▁eloquently", + -14.034984588623047 + ], + [ + "▁Rector", + -14.035088539123535 + ], + [ + "▁inclusions", + -14.035143852233887 + ], + [ + "▁archbishop", + -14.035164833068848 + ], + [ + "▁Browsing", + -14.03520679473877 + ], + [ + "onna", + -14.035210609436035 + ], + [ + "▁png", + -14.035263061523438 + ], + [ + "aloo", + -14.035277366638184 + ], + [ + "ché", + -14.035361289978027 + ], + [ + "▁Bertrand", + -14.035446166992188 + ], + [ + "▁murmured", + -14.035470962524414 + ], + [ + "adam", + -14.035477638244629 + ], + [ + "▁Lombardi", + -14.035478591918945 + ], + [ + "bathroom", + -14.035492897033691 + ], + [ + "PRA", + -14.035517692565918 + ], + [ + "Document", + -14.035529136657715 + ], + [ + "▁EDC", + -14.035539627075195 + ], + [ + "▁pon", + -14.035574913024902 + ], + [ + "▁Reported", + -14.035632133483887 + ], + [ + "MSA", + -14.035707473754883 + ], + [ + "▁Ante", + -14.035721778869629 + ], + [ + "▁Greeley", + -14.035745620727539 + ], + [ + "▁devotee", + -14.035755157470703 + ], + [ + "▁Nicely", + -14.035776138305664 + ], + [ + "▁Races", + -14.03577995300293 + ], + [ + "▁❤", + -14.035806655883789 + ], + [ + "▁bereavement", + -14.035823822021484 + ], + [ + "▁indignation", + -14.035823822021484 + ], + [ + "▁idiom", + -14.03584098815918 + ], + [ + "▁Heil", + -14.035869598388672 + ], + [ + "▁brash", + -14.035888671875 + ], + [ + "▁Princes", + -14.035895347595215 + ], + [ + "crisis", + -14.035907745361328 + ], + [ + "ghe", + -14.03591251373291 + ], + [ + "▁inflicting", + -14.03593921661377 + ], + [ + "▁COD", + -14.035989761352539 + ], + [ + "▁WSJ", + -14.035996437072754 + ], + [ + "▁Atwood", + -14.03606128692627 + ], + [ + "▁midsize", + -14.036072731018066 + ], + [ + "opo", + -14.03610897064209 + ], + [ + "▁sanctity", + -14.036131858825684 + ], + [ + "▁curses", + -14.036157608032227 + ], + [ + "▁rectified", + -14.036286354064941 + ], + [ + "▁CAMP", + -14.036287307739258 + ], + [ + "▁booklets", + -14.036323547363281 + ], + [ + "plication", + -14.036352157592773 + ], + [ + "uric", + -14.036377906799316 + ], + [ + "▁Ranked", + -14.036385536193848 + ], + [ + "▁Wilk", + -14.03642463684082 + ], + [ + "ojo", + -14.036452293395996 + ], + [ + "ASC", + -14.036477088928223 + ], + [ + "ты", + -14.036515235900879 + ], + [ + "sou", + -14.036520957946777 + ], + [ + "▁NIV", + -14.036558151245117 + ], + [ + "▁Requirement", + -14.036581993103027 + ], + [ + "▁PACKAGE", + -14.03664493560791 + ], + [ + "▁dispatcher", + -14.036657333374023 + ], + [ + "▁Guar", + -14.036834716796875 + ], + [ + "▁TGF", + -14.036839485168457 + ], + [ + "ishing", + -14.036853790283203 + ], + [ + "▁blip", + -14.03686237335205 + ], + [ + "Greek", + -14.036927223205566 + ], + [ + "623", + -14.036933898925781 + ], + [ + "▁vert", + -14.036940574645996 + ], + [ + "▁Ecosystem", + -14.036996841430664 + ], + [ + "several", + -14.037012100219727 + ], + [ + "foo", + -14.037032127380371 + ], + [ + "afternoon", + -14.037038803100586 + ], + [ + "▁Btw", + -14.037046432495117 + ], + [ + "▁canoes", + -14.037056922912598 + ], + [ + "▁bij", + -14.037065505981445 + ], + [ + "▁saucer", + -14.037083625793457 + ], + [ + "▁Nationalist", + -14.037084579467773 + ], + [ + "▁rapids", + -14.037270545959473 + ], + [ + "▁Vinegar", + -14.037318229675293 + ], + [ + "▁moisturiser", + -14.037400245666504 + ], + [ + "▁Purchased", + -14.0374116897583 + ], + [ + "ECT", + -14.037434577941895 + ], + [ + "▁compensatory", + -14.037493705749512 + ], + [ + "▁TBS", + -14.03753662109375 + ], + [ + "718", + -14.037564277648926 + ], + [ + "▁Marlene", + -14.037604331970215 + ], + [ + "▁ethyl", + -14.03762149810791 + ], + [ + "▁painstaking", + -14.037766456604004 + ], + [ + "▁hygienist", + -14.037782669067383 + ], + [ + "Less", + -14.037797927856445 + ], + [ + "bottle", + -14.037816047668457 + ], + [ + "▁dismayed", + -14.037821769714355 + ], + [ + "▁Koko", + -14.037869453430176 + ], + [ + "▁vacuuming", + -14.03794002532959 + ], + [ + "▁Fai", + -14.037941932678223 + ], + [ + "▁Nerve", + -14.037959098815918 + ], + [ + "▁INDIA", + -14.03800106048584 + ], + [ + "▁vibrate", + -14.038017272949219 + ], + [ + "▁Bitcoins", + -14.0380220413208 + ], + [ + "ssed", + -14.0380859375 + ], + [ + "▁connotations", + -14.038089752197266 + ], + [ + "Mine", + -14.03812313079834 + ], + [ + "▁Puppies", + -14.038179397583008 + ], + [ + "▁Variant", + -14.03818130493164 + ], + [ + "▁Fade", + -14.038216590881348 + ], + [ + "▁Dorian", + -14.038225173950195 + ], + [ + "▁peppered", + -14.038232803344727 + ], + [ + "▁Habit", + -14.038244247436523 + ], + [ + "isen", + -14.038248062133789 + ], + [ + "▁yak", + -14.038286209106445 + ], + [ + "▁ش", + -14.038286209106445 + ], + [ + "▁Bata", + -14.038298606872559 + ], + [ + "▁petrochemical", + -14.038389205932617 + ], + [ + "▁cultivars", + -14.038426399230957 + ], + [ + "graf", + -14.038448333740234 + ], + [ + "▁Mojave", + -14.038457870483398 + ], + [ + "▁Breaks", + -14.03849983215332 + ], + [ + "▁Destroy", + -14.038517951965332 + ], + [ + "▁Nir", + -14.03853702545166 + ], + [ + "ок", + -14.038537979125977 + ], + [ + "▁Syrup", + -14.038568496704102 + ], + [ + "▁Lining", + -14.03865909576416 + ], + [ + "▁Rok", + -14.038785934448242 + ], + [ + "jur", + -14.03895092010498 + ], + [ + "▁Rolf", + -14.038958549499512 + ], + [ + "739", + -14.03900146484375 + ], + [ + "gross", + -14.0390043258667 + ], + [ + "▁chai", + -14.039032936096191 + ], + [ + "▁revolved", + -14.03907585144043 + ], + [ + "▁platelets", + -14.03911018371582 + ], + [ + "▁articulating", + -14.039114952087402 + ], + [ + "dela", + -14.039131164550781 + ], + [ + "▁Playoff", + -14.039131164550781 + ], + [ + "▁needlessly", + -14.039193153381348 + ], + [ + "▁dovetail", + -14.039299964904785 + ], + [ + "▁Kimball", + -14.039307594299316 + ], + [ + "▁cautions", + -14.039314270019531 + ], + [ + "Marc", + -14.03931999206543 + ], + [ + "▁reminisce", + -14.03933048248291 + ], + [ + "▁inductive", + -14.039344787597656 + ], + [ + "▁Dorm", + -14.039416313171387 + ], + [ + "▁SoC", + -14.039466857910156 + ], + [ + "▁wetsuit", + -14.039570808410645 + ], + [ + "▁Harr", + -14.03964614868164 + ], + [ + "yp", + -14.039685249328613 + ], + [ + "▁subculture", + -14.039754867553711 + ], + [ + "▁springboard", + -14.039769172668457 + ], + [ + "tweet", + -14.039875984191895 + ], + [ + "ured", + -14.03990364074707 + ], + [ + "▁Kenney", + -14.039922714233398 + ], + [ + "▁tramadol", + -14.039936065673828 + ], + [ + "▁spears", + -14.03995132446289 + ], + [ + "▁erupt", + -14.039993286132812 + ], + [ + "▁shaming", + -14.039993286132812 + ], + [ + "▁Maud", + -14.040019989013672 + ], + [ + "▁azure", + -14.040038108825684 + ], + [ + "▁follicle", + -14.04008674621582 + ], + [ + "▁brad", + -14.040138244628906 + ], + [ + "▁Sacrifice", + -14.040180206298828 + ], + [ + "▁strat", + -14.040287971496582 + ], + [ + "513", + -14.040308952331543 + ], + [ + "▁Pepe", + -14.040319442749023 + ], + [ + "senior", + -14.04033088684082 + ], + [ + "▁Celestial", + -14.040356636047363 + ], + [ + "▁whit", + -14.04035758972168 + ], + [ + "Until", + -14.040395736694336 + ], + [ + "classical", + -14.04040241241455 + ], + [ + "▁Smarter", + -14.040434837341309 + ], + [ + "▁Merseyside", + -14.040446281433105 + ], + [ + "▁scaring", + -14.04050064086914 + ], + [ + "▁Ruff", + -14.040519714355469 + ], + [ + "Born", + -14.04055118560791 + ], + [ + "▁paramedic", + -14.040559768676758 + ], + [ + "▁CDS", + -14.040560722351074 + ], + [ + "shows", + -14.040583610534668 + ], + [ + "▁bystanders", + -14.040694236755371 + ], + [ + "Jon", + -14.040702819824219 + ], + [ + "▁Gossip", + -14.040776252746582 + ], + [ + "748", + -14.04089641571045 + ], + [ + "▁Caledonia", + -14.040898323059082 + ], + [ + "acute", + -14.040949821472168 + ], + [ + "chance", + -14.04099178314209 + ], + [ + "▁Apk", + -14.041015625 + ], + [ + "▁genotypes", + -14.041112899780273 + ], + [ + "▁Stru", + -14.041144371032715 + ], + [ + "▁plummet", + -14.041214942932129 + ], + [ + "▁dissonance", + -14.04122257232666 + ], + [ + "pause", + -14.041264533996582 + ], + [ + "▁Terence", + -14.041276931762695 + ], + [ + "▁misunderstand", + -14.041341781616211 + ], + [ + "▁Destin", + -14.041367530822754 + ], + [ + "NOR", + -14.041378021240234 + ], + [ + "▁backstop", + -14.041509628295898 + ], + [ + "▁tolerances", + -14.04151439666748 + ], + [ + "cano", + -14.04153060913086 + ], + [ + "▁Hugs", + -14.041535377502441 + ], + [ + "▁agonist", + -14.04154109954834 + ], + [ + "▁606", + -14.041543006896973 + ], + [ + "664", + -14.041645050048828 + ], + [ + "▁diabetics", + -14.04164981842041 + ], + [ + "▁Boring", + -14.041653633117676 + ], + [ + "▁Expensive", + -14.041657447814941 + ], + [ + "▁unblock", + -14.041691780090332 + ], + [ + "rw", + -14.04171371459961 + ], + [ + "▁Targeted", + -14.041717529296875 + ], + [ + "▁renaming", + -14.041729927062988 + ], + [ + "heid", + -14.041770935058594 + ], + [ + "▁thong", + -14.041858673095703 + ], + [ + "▁poisons", + -14.042012214660645 + ], + [ + "uffer", + -14.042131423950195 + ], + [ + "▁resurrect", + -14.042137145996094 + ], + [ + "▁Enjoying", + -14.042150497436523 + ], + [ + "▁Reflecting", + -14.042173385620117 + ], + [ + "▁Habits", + -14.042200088500977 + ], + [ + "▁Darlington", + -14.042317390441895 + ], + [ + "▁exaggerating", + -14.042317390441895 + ], + [ + "▁Revere", + -14.042394638061523 + ], + [ + "traded", + -14.042399406433105 + ], + [ + "RUS", + -14.042590141296387 + ], + [ + "▁Submarine", + -14.042603492736816 + ], + [ + "cave", + -14.042606353759766 + ], + [ + "ส", + -14.042647361755371 + ], + [ + "818", + -14.042662620544434 + ], + [ + "IFY", + -14.04270076751709 + ], + [ + "▁McPherson", + -14.042716979980469 + ], + [ + "553", + -14.042739868164062 + ], + [ + "pah", + -14.042781829833984 + ], + [ + "▁hogs", + -14.042791366577148 + ], + [ + "▁carols", + -14.042798042297363 + ], + [ + "▁dazzle", + -14.042818069458008 + ], + [ + "▁HISTORY", + -14.042862892150879 + ], + [ + "▁wishful", + -14.04292106628418 + ], + [ + "▁UMass", + -14.042923927307129 + ], + [ + "▁ssh", + -14.042930603027344 + ], + [ + "▁Umar", + -14.042963981628418 + ], + [ + "▁soiled", + -14.042984008789062 + ], + [ + "▁deci", + -14.043008804321289 + ], + [ + "ISC", + -14.043033599853516 + ], + [ + "cé", + -14.043036460876465 + ], + [ + "drawing", + -14.043036460876465 + ], + [ + "▁handcuffs", + -14.04312801361084 + ], + [ + "▁opacity", + -14.043171882629395 + ], + [ + "▁Mink", + -14.043238639831543 + ], + [ + "904", + -14.04328727722168 + ], + [ + "▁Mnuchin", + -14.043294906616211 + ], + [ + "▁Schla", + -14.04333782196045 + ], + [ + "Bon", + -14.043458938598633 + ], + [ + "natal", + -14.043513298034668 + ], + [ + "▁supercar", + -14.043519973754883 + ], + [ + "▁£14", + -14.043599128723145 + ], + [ + "▁democratically", + -14.043660163879395 + ], + [ + "▁ipod", + -14.043684005737305 + ], + [ + "lha", + -14.043686866760254 + ], + [ + "▁tolls", + -14.043715476989746 + ], + [ + "▁Jumper", + -14.04386043548584 + ], + [ + "▁Kato", + -14.04391860961914 + ], + [ + "▁relaunch", + -14.043963432312012 + ], + [ + "▁REI", + -14.043996810913086 + ], + [ + "▁sept", + -14.044013977050781 + ], + [ + "▁Scanning", + -14.044052124023438 + ], + [ + "▁lux", + -14.044076919555664 + ], + [ + "▁speedily", + -14.044087409973145 + ], + [ + "▁Bela", + -14.044107437133789 + ], + [ + "▁666", + -14.044137954711914 + ], + [ + "▁Avoiding", + -14.044166564941406 + ], + [ + "carrying", + -14.044214248657227 + ], + [ + "▁dispersal", + -14.044259071350098 + ], + [ + "▁Mahi", + -14.044319152832031 + ], + [ + "▁puffed", + -14.044319152832031 + ], + [ + "▁Neel", + -14.044370651245117 + ], + [ + "▁tramp", + -14.044394493103027 + ], + [ + "xen", + -14.044463157653809 + ], + [ + "▁KTM", + -14.044496536254883 + ], + [ + "▁magicians", + -14.044559478759766 + ], + [ + "▁Terrain", + -14.044610023498535 + ], + [ + "▁Lav", + -14.044638633728027 + ], + [ + "▁groan", + -14.044666290283203 + ], + [ + "▁Evansville", + -14.044670104980469 + ], + [ + "546", + -14.044682502746582 + ], + [ + "▁Waldo", + -14.044840812683105 + ], + [ + "▁brazen", + -14.0448637008667 + ], + [ + "tract", + -14.044915199279785 + ], + [ + "eph", + -14.04492473602295 + ], + [ + "schaft", + -14.044983863830566 + ], + [ + "▁Cushing", + -14.045001983642578 + ], + [ + "▁Coats", + -14.045019149780273 + ], + [ + "Church", + -14.045023918151855 + ], + [ + "▁FACE", + -14.045034408569336 + ], + [ + "▁Niche", + -14.045063018798828 + ], + [ + "uje", + -14.045063972473145 + ], + [ + "▁Maternity", + -14.045159339904785 + ], + [ + "▁SLS", + -14.045166969299316 + ], + [ + "atura", + -14.045173645019531 + ], + [ + "▁probabilistic", + -14.04517936706543 + ], + [ + "▁Syl", + -14.04520320892334 + ], + [ + "К", + -14.045208930969238 + ], + [ + "SES", + -14.0452299118042 + ], + [ + "▁Kut", + -14.04525375366211 + ], + [ + "▁Yasu", + -14.045287132263184 + ], + [ + "▁amalgam", + -14.0453462600708 + ], + [ + "▁PRESS", + -14.045382499694824 + ], + [ + "▁livestream", + -14.045390129089355 + ], + [ + "acia", + -14.045395851135254 + ], + [ + "Context", + -14.045456886291504 + ], + [ + "518", + -14.045473098754883 + ], + [ + "following", + -14.045490264892578 + ], + [ + "▁Traditions", + -14.045610427856445 + ], + [ + "▁enchantment", + -14.045721054077148 + ], + [ + "lson", + -14.045735359191895 + ], + [ + "▁synergistic", + -14.04576301574707 + ], + [ + "shark", + -14.045775413513184 + ], + [ + "▁Bong", + -14.045832633972168 + ], + [ + "▁inflection", + -14.045839309692383 + ], + [ + "▁freakin", + -14.045890808105469 + ], + [ + "▁biceps", + -14.0458984375 + ], + [ + "bloom", + -14.045899391174316 + ], + [ + "▁effector", + -14.045964241027832 + ], + [ + "▁DIE", + -14.045981407165527 + ], + [ + "▁visualizations", + -14.046005249023438 + ], + [ + "▁marshes", + -14.04604434967041 + ], + [ + "▁Gunnar", + -14.046120643615723 + ], + [ + "▁bmw", + -14.046127319335938 + ], + [ + "▁crows", + -14.046175003051758 + ], + [ + "▁unaccompanied", + -14.046185493469238 + ], + [ + "cities", + -14.046189308166504 + ], + [ + "▁291", + -14.046198844909668 + ], + [ + "ogy", + -14.046259880065918 + ], + [ + "▁scrutinized", + -14.046260833740234 + ], + [ + "▁NICU", + -14.046281814575195 + ], + [ + "▁Izzy", + -14.046282768249512 + ], + [ + "▁ABR", + -14.046332359313965 + ], + [ + "614", + -14.04637336730957 + ], + [ + "▁uneducated", + -14.046468734741211 + ], + [ + "▁TRANS", + -14.046480178833008 + ], + [ + "▁wayside", + -14.046552658081055 + ], + [ + "▁PATH", + -14.046588897705078 + ], + [ + "▁arouse", + -14.04659366607666 + ], + [ + "▁guitarists", + -14.046615600585938 + ], + [ + "▁Fac", + -14.046629905700684 + ], + [ + "▁sooooo", + -14.046667098999023 + ], + [ + "▁ATO", + -14.046674728393555 + ], + [ + "ational", + -14.046676635742188 + ], + [ + "▁Ajay", + -14.04667854309082 + ], + [ + "▁fanciful", + -14.046708106994629 + ], + [ + "▁Metz", + -14.046784400939941 + ], + [ + "discover", + -14.046795845031738 + ], + [ + "▁bony", + -14.046799659729004 + ], + [ + "▁egos", + -14.046809196472168 + ], + [ + "▁Oftentimes", + -14.046815872192383 + ], + [ + "▁cryo", + -14.046820640563965 + ], + [ + "▁thug", + -14.046832084655762 + ], + [ + "▁APO", + -14.046836853027344 + ], + [ + "ONG", + -14.046867370605469 + ], + [ + "▁Tayyip", + -14.046928405761719 + ], + [ + "kata", + -14.046939849853516 + ], + [ + "▁munch", + -14.046977043151855 + ], + [ + "▁Parr", + -14.046980857849121 + ], + [ + "▁scab", + -14.046985626220703 + ], + [ + "approval", + -14.047072410583496 + ], + [ + "▁obstructing", + -14.047075271606445 + ], + [ + "▁martin", + -14.047085762023926 + ], + [ + "lax", + -14.047113418579102 + ], + [ + "cephal", + -14.047162055969238 + ], + [ + "▁reinsurance", + -14.04722785949707 + ], + [ + "▁McGowan", + -14.047228813171387 + ], + [ + "Apr", + -14.04723072052002 + ], + [ + "▁scrapbooking", + -14.047232627868652 + ], + [ + "arri", + -14.047234535217285 + ], + [ + "▁Suits", + -14.047245025634766 + ], + [ + "▁gourd", + -14.047248840332031 + ], + [ + "▁retardant", + -14.047262191772461 + ], + [ + "▁Breeders", + -14.047266960144043 + ], + [ + "▁Cade", + -14.047289848327637 + ], + [ + "▁Strikes", + -14.04731559753418 + ], + [ + "▁Sola", + -14.047329902648926 + ], + [ + "▁Camo", + -14.04733657836914 + ], + [ + "biggest", + -14.04736328125 + ], + [ + "▁Boucher", + -14.047438621520996 + ], + [ + "▁perusing", + -14.047453880310059 + ], + [ + "019", + -14.04747486114502 + ], + [ + "▁exe", + -14.04760456085205 + ], + [ + "Factory", + -14.047677040100098 + ], + [ + "▁FITNESS", + -14.047734260559082 + ], + [ + "905", + -14.047807693481445 + ], + [ + "▁oxidized", + -14.04782772064209 + ], + [ + "▁Callaway", + -14.047897338867188 + ], + [ + "isan", + -14.047992706298828 + ], + [ + "▁reissued", + -14.048038482666016 + ], + [ + "▁Harlan", + -14.048053741455078 + ], + [ + "looks", + -14.048065185546875 + ], + [ + "▁Westlake", + -14.048070907592773 + ], + [ + "bugs", + -14.048076629638672 + ], + [ + "Related", + -14.04808235168457 + ], + [ + "asis", + -14.04810905456543 + ], + [ + "▁Namely", + -14.048138618469238 + ], + [ + "▁Newell", + -14.048142433166504 + ], + [ + "onset", + -14.048155784606934 + ], + [ + "▁bunches", + -14.04818344116211 + ], + [ + "▁heartily", + -14.048201560974121 + ], + [ + "▁stripper", + -14.04820728302002 + ], + [ + "▁accountancy", + -14.048215866088867 + ], + [ + "▁MPC", + -14.048216819763184 + ], + [ + "▁rotator", + -14.048256874084473 + ], + [ + "▁characterizes", + -14.048264503479004 + ], + [ + "▁slams", + -14.048331260681152 + ], + [ + "▁Bombardier", + -14.048358917236328 + ], + [ + "▁meteorological", + -14.04836368560791 + ], + [ + "arr", + -14.04840087890625 + ], + [ + "arth", + -14.048441886901855 + ], + [ + "▁grievous", + -14.048441886901855 + ], + [ + "▁professed", + -14.048500061035156 + ], + [ + "▁bummer", + -14.048503875732422 + ], + [ + "▁overjoyed", + -14.048514366149902 + ], + [ + "▁Lila", + -14.048516273498535 + ], + [ + "▁mezzanine", + -14.048544883728027 + ], + [ + "▁munitions", + -14.048545837402344 + ], + [ + "▁М", + -14.048574447631836 + ], + [ + "▁gilded", + -14.048632621765137 + ], + [ + "▁piloting", + -14.048656463623047 + ], + [ + "▁trombone", + -14.048673629760742 + ], + [ + "butter", + -14.048681259155273 + ], + [ + "▁outstretched", + -14.048760414123535 + ], + [ + "▁Metric", + -14.048768043518066 + ], + [ + "▁devoting", + -14.048884391784668 + ], + [ + "ци", + -14.048913955688477 + ], + [ + "▁geeky", + -14.048920631408691 + ], + [ + "736", + -14.04895305633545 + ], + [ + "▁posit", + -14.04895305633545 + ], + [ + "▁Revealed", + -14.048954010009766 + ], + [ + "▁AARP", + -14.048955917358398 + ], + [ + "▁centrist", + -14.048979759216309 + ], + [ + "▁Wanting", + -14.048999786376953 + ], + [ + "▁velocities", + -14.0490083694458 + ], + [ + "ncy", + -14.049012184143066 + ], + [ + "pura", + -14.0490140914917 + ], + [ + "화", + -14.04902172088623 + ], + [ + "▁diodes", + -14.049031257629395 + ], + [ + "▁enacting", + -14.049051284790039 + ], + [ + "mirror", + -14.04905891418457 + ], + [ + "▁atrocious", + -14.04912281036377 + ], + [ + "▁gusto", + -14.049135208129883 + ], + [ + "▁Cranberry", + -14.049142837524414 + ], + [ + "▁Novartis", + -14.049152374267578 + ], + [ + "Kay", + -14.049213409423828 + ], + [ + "▁tacked", + -14.049214363098145 + ], + [ + "▁Uri", + -14.049232482910156 + ], + [ + "Choose", + -14.04928207397461 + ], + [ + "1°", + -14.049286842346191 + ], + [ + "▁Bibi", + -14.04931640625 + ], + [ + "▁stoned", + -14.049336433410645 + ], + [ + "lty", + -14.049370765686035 + ], + [ + "Str", + -14.049388885498047 + ], + [ + "▁Crit", + -14.049453735351562 + ], + [ + "▁discredited", + -14.049455642700195 + ], + [ + "高", + -14.04953384399414 + ], + [ + "Therefore", + -14.049552917480469 + ], + [ + "▁globalisation", + -14.049552917480469 + ], + [ + "regardless", + -14.049561500549316 + ], + [ + "Civil", + -14.049683570861816 + ], + [ + "▁Xen", + -14.049694061279297 + ], + [ + "likely", + -14.04981803894043 + ], + [ + "▁Husky", + -14.049826622009277 + ], + [ + "▁generico", + -14.049875259399414 + ], + [ + "▁Keenan", + -14.049904823303223 + ], + [ + "proper", + -14.049911499023438 + ], + [ + "▁Sunil", + -14.04991626739502 + ], + [ + "Spain", + -14.049931526184082 + ], + [ + "rong", + -14.049968719482422 + ], + [ + "Syn", + -14.050007820129395 + ], + [ + "rosa", + -14.050102233886719 + ], + [ + "▁Brant", + -14.050127983093262 + ], + [ + "▁Joss", + -14.050129890441895 + ], + [ + "osine", + -14.050130844116211 + ], + [ + "▁Null", + -14.05013370513916 + ], + [ + "▁Exclusion", + -14.050149917602539 + ], + [ + "▁Belief", + -14.050155639648438 + ], + [ + "▁raster", + -14.050222396850586 + ], + [ + "▁slouch", + -14.050277709960938 + ], + [ + "▁caches", + -14.050284385681152 + ], + [ + "▁Happen", + -14.050354957580566 + ], + [ + "▁Tusk", + -14.05036735534668 + ], + [ + "▁Merc", + -14.050397872924805 + ], + [ + "▁sloth", + -14.050403594970703 + ], + [ + "▁Reebok", + -14.050406455993652 + ], + [ + "▁Watergate", + -14.050437927246094 + ], + [ + "▁Heidegger", + -14.050457000732422 + ], + [ + "▁progeny", + -14.050552368164062 + ], + [ + "▁Loh", + -14.050559043884277 + ], + [ + "▁setter", + -14.050590515136719 + ], + [ + "▁Paddington", + -14.050615310668945 + ], + [ + "▁intercultural", + -14.050617218017578 + ], + [ + "▁hoods", + -14.05063247680664 + ], + [ + "ullo", + -14.050700187683105 + ], + [ + "▁523", + -14.05074691772461 + ], + [ + "gong", + -14.050761222839355 + ], + [ + "▁beautify", + -14.050765991210938 + ], + [ + "▁sera", + -14.05084228515625 + ], + [ + "▁atherosclerosis", + -14.05090045928955 + ], + [ + "▁Knoll", + -14.050902366638184 + ], + [ + "▁depress", + -14.050902366638184 + ], + [ + "▁Appointments", + -14.050909042358398 + ], + [ + "▁dongle", + -14.050909996032715 + ], + [ + "▁courtship", + -14.05091381072998 + ], + [ + "VES", + -14.050935745239258 + ], + [ + "▁Singleton", + -14.051063537597656 + ], + [ + "voir", + -14.0510835647583 + ], + [ + "▁ف", + -14.051104545593262 + ], + [ + "▁Strickland", + -14.051243782043457 + ], + [ + "▁diese", + -14.051294326782227 + ], + [ + "teur", + -14.051323890686035 + ], + [ + "▁stoic", + -14.051358222961426 + ], + [ + "▁conceptions", + -14.051366806030273 + ], + [ + "equi", + -14.051375389099121 + ], + [ + "▁worshipping", + -14.051405906677246 + ], + [ + "Dirty", + -14.051436424255371 + ], + [ + "▁Wander", + -14.05143928527832 + ], + [ + "▁Finley", + -14.051448822021484 + ], + [ + "▁AST", + -14.051465034484863 + ], + [ + "▁breadcrumbs", + -14.051466941833496 + ], + [ + "▁Moll", + -14.051526069641113 + ], + [ + "▁soundly", + -14.051617622375488 + ], + [ + "651", + -14.05164909362793 + ], + [ + "▁fizz", + -14.051681518554688 + ], + [ + "▁JSTOR", + -14.051704406738281 + ], + [ + "Wind", + -14.05170726776123 + ], + [ + "▁dependability", + -14.051712036132812 + ], + [ + "▁Blur", + -14.051733016967773 + ], + [ + "▁rectangles", + -14.051737785339355 + ], + [ + "▁conveyors", + -14.051740646362305 + ], + [ + "▁cavern", + -14.051765441894531 + ], + [ + "▁OZ", + -14.051841735839844 + ], + [ + "▁blackberries", + -14.051872253417969 + ], + [ + "▁Nativity", + -14.051908493041992 + ], + [ + "▁bountiful", + -14.05197525024414 + ], + [ + "▁archaeologist", + -14.051994323730469 + ], + [ + "▁bluntly", + -14.052074432373047 + ], + [ + "▁4500", + -14.052136421203613 + ], + [ + "▁rainbows", + -14.052138328552246 + ], + [ + "▁geologic", + -14.052148818969727 + ], + [ + "consciousness", + -14.052166938781738 + ], + [ + "▁outwards", + -14.052241325378418 + ], + [ + "anthus", + -14.052264213562012 + ], + [ + "UAL", + -14.052275657653809 + ], + [ + "ctus", + -14.052277565002441 + ], + [ + "▁boroughs", + -14.052288055419922 + ], + [ + "▁faire", + -14.052294731140137 + ], + [ + "▁Cambridgeshire", + -14.052363395690918 + ], + [ + "▁warring", + -14.052388191223145 + ], + [ + "▁Jansen", + -14.052398681640625 + ], + [ + "Hare", + -14.052512168884277 + ], + [ + "▁NIT", + -14.05253791809082 + ], + [ + "Pages", + -14.052543640136719 + ], + [ + "▁EMEA", + -14.05257797241211 + ], + [ + "713", + -14.052590370178223 + ], + [ + "▁savers", + -14.052660942077637 + ], + [ + "▁Bl", + -14.052661895751953 + ], + [ + "▁Mauricio", + -14.052680969238281 + ], + [ + "▁dept", + -14.052763938903809 + ], + [ + "kirk", + -14.052793502807617 + ], + [ + "▁Sith", + -14.052811622619629 + ], + [ + "▁nib", + -14.052826881408691 + ], + [ + "LOW", + -14.052870750427246 + ], + [ + "▁Instructional", + -14.052956581115723 + ], + [ + "▁McNamara", + -14.052998542785645 + ], + [ + "background", + -14.053031921386719 + ], + [ + "▁MISS", + -14.05305004119873 + ], + [ + "marker", + -14.05306339263916 + ], + [ + "▁615", + -14.053093910217285 + ], + [ + "▁Auntie", + -14.05310344696045 + ], + [ + "vii", + -14.053125381469727 + ], + [ + "▁Transitional", + -14.053153991699219 + ], + [ + "895", + -14.053237915039062 + ], + [ + "▁thirteenth", + -14.05327320098877 + ], + [ + "▁credence", + -14.053282737731934 + ], + [ + "zzy", + -14.053305625915527 + ], + [ + "▁drifts", + -14.053333282470703 + ], + [ + "▁fullback", + -14.053333282470703 + ], + [ + "▁Middlesbrough", + -14.053345680236816 + ], + [ + "Ice", + -14.053457260131836 + ], + [ + "▁Chino", + -14.053524017333984 + ], + [ + "▁Sander", + -14.05354118347168 + ], + [ + "▁Prelinger", + -14.053553581237793 + ], + [ + "▁anomalous", + -14.05359935760498 + ], + [ + "▁catamaran", + -14.05359935760498 + ], + [ + "▁sideboard", + -14.0536470413208 + ], + [ + "rigg", + -14.053668975830078 + ], + [ + "▁hierarchies", + -14.05368709564209 + ], + [ + "▁peeve", + -14.053690910339355 + ], + [ + "▁Saeed", + -14.053702354431152 + ], + [ + "licensed", + -14.053707122802734 + ], + [ + "married", + -14.053755760192871 + ], + [ + "776", + -14.053783416748047 + ], + [ + "▁Ahh", + -14.053784370422363 + ], + [ + "▁Nevis", + -14.053791999816895 + ], + [ + "mee", + -14.053849220275879 + ], + [ + "else", + -14.054014205932617 + ], + [ + "▁NEA", + -14.054032325744629 + ], + [ + "infection", + -14.05405044555664 + ], + [ + "▁bellow", + -14.054068565368652 + ], + [ + "▁Knott", + -14.054243087768555 + ], + [ + "ogue", + -14.054265022277832 + ], + [ + "▁multidimensional", + -14.054283142089844 + ], + [ + "nberg", + -14.054319381713867 + ], + [ + "▁donning", + -14.054393768310547 + ], + [ + "1300", + -14.054404258728027 + ], + [ + "▁splatter", + -14.054441452026367 + ], + [ + "▁dimming", + -14.054484367370605 + ], + [ + "▁circum", + -14.054485321044922 + ], + [ + "claw", + -14.054529190063477 + ], + [ + "574", + -14.054533004760742 + ], + [ + "▁Dah", + -14.05454158782959 + ], + [ + "▁Stairs", + -14.05454158782959 + ], + [ + "▁rafters", + -14.054576873779297 + ], + [ + "▁Grenada", + -14.054593086242676 + ], + [ + "▁BOB", + -14.054620742797852 + ], + [ + "pec", + -14.054651260375977 + ], + [ + "▁manger", + -14.054676055908203 + ], + [ + "▁Introduced", + -14.054686546325684 + ], + [ + "▁MAL", + -14.054717063903809 + ], + [ + "▁Voodoo", + -14.054720878601074 + ], + [ + "▁carburetor", + -14.054733276367188 + ], + [ + "▁Pele", + -14.054756164550781 + ], + [ + "▁blackened", + -14.054803848266602 + ], + [ + "▁embankment", + -14.054821014404297 + ], + [ + "▁Onyx", + -14.054821968078613 + ], + [ + "▁jihadist", + -14.054827690124512 + ], + [ + "▁Announcements", + -14.054845809936523 + ], + [ + "▁suspiciously", + -14.054878234863281 + ], + [ + "Rec", + -14.054900169372559 + ], + [ + "achy", + -14.054927825927734 + ], + [ + "▁LOCAL", + -14.054931640625 + ], + [ + "▁categorically", + -14.054937362670898 + ], + [ + "▁computations", + -14.05494499206543 + ], + [ + "nou", + -14.054949760437012 + ], + [ + "▁Xiang", + -14.054961204528809 + ], + [ + "ague", + -14.054965019226074 + ], + [ + "▁deceptively", + -14.055006980895996 + ], + [ + "▁Beatty", + -14.055011749267578 + ], + [ + "wrenching", + -14.055123329162598 + ], + [ + "▁swells", + -14.055191040039062 + ], + [ + "▁PwC", + -14.055318832397461 + ], + [ + "▁518", + -14.055339813232422 + ], + [ + "▁Elves", + -14.055347442626953 + ], + [ + "ihan", + -14.055473327636719 + ], + [ + "▁Wiz", + -14.055500030517578 + ], + [ + "▁workbench", + -14.055538177490234 + ], + [ + "▁Cleo", + -14.05553913116455 + ], + [ + "▁transponder", + -14.055558204650879 + ], + [ + "ő", + -14.055586814880371 + ], + [ + "▁363", + -14.055593490600586 + ], + [ + "▁Gaines", + -14.055595397949219 + ], + [ + "▁Pouch", + -14.055597305297852 + ], + [ + "▁cooperated", + -14.055610656738281 + ], + [ + "▁twofold", + -14.055612564086914 + ], + [ + "▁SNPs", + -14.05561637878418 + ], + [ + "▁NOTES", + -14.055649757385254 + ], + [ + "kke", + -14.055721282958984 + ], + [ + "▁delle", + -14.055761337280273 + ], + [ + "caliber", + -14.055779457092285 + ], + [ + "▁Determined", + -14.055781364440918 + ], + [ + "▁dietitian", + -14.05578327178955 + ], + [ + "▁thefts", + -14.05580997467041 + ], + [ + "▁Aur", + -14.055824279785156 + ], + [ + "▁Hollis", + -14.055824279785156 + ], + [ + "▁Massa", + -14.055834770202637 + ], + [ + "▁Spacey", + -14.055839538574219 + ], + [ + "Н", + -14.055864334106445 + ], + [ + "Southern", + -14.05587100982666 + ], + [ + "▁Aimee", + -14.05590534210205 + ], + [ + "▁viewable", + -14.055917739868164 + ], + [ + "▁Ashe", + -14.055932998657227 + ], + [ + "▁XF", + -14.055960655212402 + ], + [ + "▁liens", + -14.055971145629883 + ], + [ + "▁Advertiser", + -14.056010246276855 + ], + [ + "673", + -14.056014060974121 + ], + [ + "maximum", + -14.056021690368652 + ], + [ + "▁LESS", + -14.056026458740234 + ], + [ + "023", + -14.05610179901123 + ], + [ + "▁beeswax", + -14.05614948272705 + ], + [ + "Jeff", + -14.05616283416748 + ], + [ + "▁chases", + -14.056266784667969 + ], + [ + "RATE", + -14.056283950805664 + ], + [ + "▁ebony", + -14.056310653686523 + ], + [ + "▁Screens", + -14.05632209777832 + ], + [ + "▁Cooks", + -14.05632495880127 + ], + [ + "▁Belleville", + -14.05634593963623 + ], + [ + "aban", + -14.056477546691895 + ], + [ + "Teacher", + -14.056575775146484 + ], + [ + "▁POT", + -14.056586265563965 + ], + [ + "▁CHRIST", + -14.056596755981445 + ], + [ + "▁overdraft", + -14.056625366210938 + ], + [ + "757", + -14.056626319885254 + ], + [ + "▁Simplicity", + -14.056656837463379 + ], + [ + "▁Zionism", + -14.056675910949707 + ], + [ + "858", + -14.056684494018555 + ], + [ + "▁toning", + -14.056685447692871 + ], + [ + "requisite", + -14.056696891784668 + ], + [ + "▁Marcelo", + -14.056746482849121 + ], + [ + "▁appraisals", + -14.056771278381348 + ], + [ + "▁anchorage", + -14.056792259216309 + ], + [ + "▁adjudication", + -14.056849479675293 + ], + [ + "▁Sputnik", + -14.056852340698242 + ], + [ + "व", + -14.056857109069824 + ], + [ + "▁vicar", + -14.056859970092773 + ], + [ + "▁erroneously", + -14.056894302368164 + ], + [ + "▁enzymatic", + -14.056930541992188 + ], + [ + "ikki", + -14.056960105895996 + ], + [ + "▁2040", + -14.05700969696045 + ], + [ + "enjoy", + -14.057181358337402 + ], + [ + "aur", + -14.057193756103516 + ], + [ + "▁Leicestershire", + -14.057230949401855 + ], + [ + "esti", + -14.057233810424805 + ], + [ + "eks", + -14.057254791259766 + ], + [ + "emos", + -14.057291984558105 + ], + [ + "▁Humber", + -14.057329177856445 + ], + [ + "thermal", + -14.057353973388672 + ], + [ + "▁swirls", + -14.05737590789795 + ], + [ + "▁Mural", + -14.057400703430176 + ], + [ + "▁scoops", + -14.057473182678223 + ], + [ + "▁Oceans", + -14.0576171875 + ], + [ + "Florida", + -14.057652473449707 + ], + [ + "▁meld", + -14.057777404785156 + ], + [ + "▁OpenGL", + -14.057792663574219 + ], + [ + "▁Ning", + -14.057796478271484 + ], + [ + "hungry", + -14.05784797668457 + ], + [ + "▁standardised", + -14.057878494262695 + ], + [ + "▁videotape", + -14.057939529418945 + ], + [ + "Nine", + -14.057948112487793 + ], + [ + "▁Krakow", + -14.058019638061523 + ], + [ + "▁Gita", + -14.058027267456055 + ], + [ + "sino", + -14.05806827545166 + ], + [ + "Tan", + -14.058082580566406 + ], + [ + "▁Lago", + -14.058089256286621 + ], + [ + "▁Missoula", + -14.05809211730957 + ], + [ + "▁294", + -14.0581636428833 + ], + [ + "▁neoprene", + -14.058235168457031 + ], + [ + "▁preeminent", + -14.058256149291992 + ], + [ + "▁rants", + -14.058268547058105 + ], + [ + "▁Remedy", + -14.058310508728027 + ], + [ + "Dave", + -14.058316230773926 + ], + [ + "▁agave", + -14.058351516723633 + ], + [ + "▁Marsha", + -14.05839729309082 + ], + [ + "forex", + -14.058455467224121 + ], + [ + "▁Verne", + -14.058483123779297 + ], + [ + "fleet", + -14.058536529541016 + ], + [ + "▁peeking", + -14.058547973632812 + ], + [ + "일", + -14.058554649353027 + ], + [ + "▁Tianjin", + -14.058571815490723 + ], + [ + "▁tic", + -14.058696746826172 + ], + [ + "freeze", + -14.058725357055664 + ], + [ + "▁foundry", + -14.058749198913574 + ], + [ + "manual", + -14.0587739944458 + ], + [ + "Bat", + -14.058774948120117 + ], + [ + "▁Iqbal", + -14.05877685546875 + ], + [ + "▁Visible", + -14.058812141418457 + ], + [ + "▁folate", + -14.058889389038086 + ], + [ + "▁Tract", + -14.058897018432617 + ], + [ + "▁whence", + -14.05892276763916 + ], + [ + "▁354", + -14.059008598327637 + ], + [ + "▁ramped", + -14.059048652648926 + ], + [ + "▁dist", + -14.059066772460938 + ], + [ + "umo", + -14.059118270874023 + ], + [ + "▁1750", + -14.059154510498047 + ], + [ + "▁cheerleaders", + -14.059196472167969 + ], + [ + "ately", + -14.059202194213867 + ], + [ + "▁crowning", + -14.059226036071777 + ], + [ + "▁combatants", + -14.05922794342041 + ], + [ + "▁FRANCISCO", + -14.059253692626953 + ], + [ + "▁Gonzaga", + -14.059267044067383 + ], + [ + "▁Rocker", + -14.059295654296875 + ], + [ + "▁deftly", + -14.059340476989746 + ], + [ + "▁1834", + -14.05937385559082 + ], + [ + "▁wealthier", + -14.059449195861816 + ], + [ + "▁Candice", + -14.059475898742676 + ], + [ + "▁leeway", + -14.059494972229004 + ], + [ + "▁Pupils", + -14.059517860412598 + ], + [ + "▁ruptured", + -14.059545516967773 + ], + [ + "▁kangaroo", + -14.059621810913086 + ], + [ + "▁Qt", + -14.05964183807373 + ], + [ + "diff", + -14.05965518951416 + ], + [ + "arin", + -14.059690475463867 + ], + [ + "▁Haze", + -14.059724807739258 + ], + [ + "▁js", + -14.059731483459473 + ], + [ + "▁Novice", + -14.05976676940918 + ], + [ + "▁printables", + -14.059769630432129 + ], + [ + "▁Cottages", + -14.059771537780762 + ], + [ + "osta", + -14.059815406799316 + ], + [ + "IAC", + -14.059861183166504 + ], + [ + "▁Indra", + -14.0598726272583 + ], + [ + "▁lipo", + -14.059934616088867 + ], + [ + "▁TEC", + -14.05999755859375 + ], + [ + "ieux", + -14.059998512268066 + ], + [ + "▁variously", + -14.060005187988281 + ], + [ + "▁Smokey", + -14.060022354125977 + ], + [ + "HRC", + -14.060028076171875 + ], + [ + "▁Yeast", + -14.060036659240723 + ], + [ + "▁Symbols", + -14.060049057006836 + ], + [ + "COR", + -14.060073852539062 + ], + [ + "Pure", + -14.060118675231934 + ], + [ + "rika", + -14.060127258300781 + ], + [ + "▁frustrate", + -14.06015682220459 + ], + [ + "▁Khalil", + -14.06017017364502 + ], + [ + "▁ov", + -14.060184478759766 + ], + [ + "ilis", + -14.060223579406738 + ], + [ + "▁Simmer", + -14.060235023498535 + ], + [ + "1961", + -14.060267448425293 + ], + [ + "▁Caspian", + -14.060346603393555 + ], + [ + "rium", + -14.060380935668945 + ], + [ + "chell", + -14.060386657714844 + ], + [ + "▁Ganesh", + -14.060442924499512 + ], + [ + "▁На", + -14.060538291931152 + ], + [ + "▁beautifying", + -14.060541152954102 + ], + [ + "▁Ababa", + -14.060612678527832 + ], + [ + "▁miniseries", + -14.060626983642578 + ], + [ + "032", + -14.060659408569336 + ], + [ + "ocracy", + -14.060700416564941 + ], + [ + "▁skyrocketed", + -14.060725212097168 + ], + [ + "▁qt", + -14.060802459716797 + ], + [ + "altering", + -14.060811042785645 + ], + [ + "▁Upstate", + -14.060816764831543 + ], + [ + "pods", + -14.060896873474121 + ], + [ + "▁Joshi", + -14.060976028442383 + ], + [ + "unde", + -14.061028480529785 + ], + [ + "▁Pint", + -14.06110668182373 + ], + [ + "▁Croix", + -14.061119079589844 + ], + [ + "▁Purcell", + -14.061132431030273 + ], + [ + "▁kh", + -14.06114387512207 + ], + [ + "Que", + -14.061180114746094 + ], + [ + "▁SMITH", + -14.061206817626953 + ], + [ + "▁mooring", + -14.06126594543457 + ], + [ + "▁1050", + -14.061273574829102 + ], + [ + "aldi", + -14.061279296875 + ], + [ + "▁Jens", + -14.061291694641113 + ], + [ + "▁burlap", + -14.061306953430176 + ], + [ + "▁subside", + -14.06136417388916 + ], + [ + "▁Bungalow", + -14.061392784118652 + ], + [ + "▁foreseen", + -14.061397552490234 + ], + [ + "IONS", + -14.061447143554688 + ], + [ + "▁COS", + -14.061485290527344 + ], + [ + "venture", + -14.061580657958984 + ], + [ + "▁Preference", + -14.061583518981934 + ], + [ + "▁technologists", + -14.061649322509766 + ], + [ + "▁monetization", + -14.06167221069336 + ], + [ + "▁glycemic", + -14.061685562133789 + ], + [ + "cyl", + -14.061692237854004 + ], + [ + "▁Chee", + -14.061767578125 + ], + [ + "▁Duplex", + -14.061854362487793 + ], + [ + "promotion", + -14.06198787689209 + ], + [ + "RAP", + -14.062006950378418 + ], + [ + "▁EEA", + -14.062113761901855 + ], + [ + "dividend", + -14.062115669250488 + ], + [ + "replace", + -14.062172889709473 + ], + [ + "▁wobbly", + -14.062213897705078 + ], + [ + "▁WRONG", + -14.062268257141113 + ], + [ + "Amy", + -14.062274932861328 + ], + [ + "587", + -14.062292098999023 + ], + [ + "aren", + -14.062355995178223 + ], + [ + "▁paediatric", + -14.062369346618652 + ], + [ + "▁anode", + -14.062390327453613 + ], + [ + "▁snagged", + -14.062505722045898 + ], + [ + "▁forma", + -14.062524795532227 + ], + [ + "ierung", + -14.062580108642578 + ], + [ + "▁Redeemer", + -14.062582969665527 + ], + [ + "▁determinations", + -14.062606811523438 + ], + [ + "zam", + -14.062629699707031 + ], + [ + "leri", + -14.062676429748535 + ], + [ + "▁Presentations", + -14.062719345092773 + ], + [ + "▁acuity", + -14.06273365020752 + ], + [ + "spy", + -14.062814712524414 + ], + [ + "▁publicize", + -14.06281852722168 + ], + [ + "zano", + -14.062952995300293 + ], + [ + "▁Catching", + -14.062958717346191 + ], + [ + "563", + -14.062984466552734 + ], + [ + "▁agar", + -14.063028335571289 + ], + [ + "abil", + -14.063064575195312 + ], + [ + "▁therapeutics", + -14.063087463378906 + ], + [ + "▁cartels", + -14.06309700012207 + ], + [ + "▁Uninstall", + -14.063114166259766 + ], + [ + "SER", + -14.063127517700195 + ], + [ + "▁cask", + -14.063193321228027 + ], + [ + "▁nave", + -14.063244819641113 + ], + [ + "Qua", + -14.063255310058594 + ], + [ + "▁Cicero", + -14.063264846801758 + ], + [ + "▁Hackett", + -14.063321113586426 + ], + [ + "▁Transfers", + -14.063373565673828 + ], + [ + "▁HELL", + -14.063382148742676 + ], + [ + "▁Yards", + -14.063389778137207 + ], + [ + "▁Tyr", + -14.063446044921875 + ], + [ + "▁bridle", + -14.063485145568848 + ], + [ + "▁Prospects", + -14.063491821289062 + ], + [ + "inia", + -14.063492774963379 + ], + [ + "▁hom", + -14.063499450683594 + ], + [ + "situ", + -14.063516616821289 + ], + [ + "▁piety", + -14.063533782958984 + ], + [ + "▁Laval", + -14.063560485839844 + ], + [ + "eric", + -14.063567161560059 + ], + [ + "▁Elsie", + -14.0635986328125 + ], + [ + "IED", + -14.063652038574219 + ], + [ + "▁initialize", + -14.063663482666016 + ], + [ + "grab", + -14.063708305358887 + ], + [ + "jang", + -14.063724517822266 + ], + [ + "▁cornstarch", + -14.0637845993042 + ], + [ + "▁dens", + -14.063806533813477 + ], + [ + "▁amnesia", + -14.063898086547852 + ], + [ + "▁oo", + -14.06393051147461 + ], + [ + "▁fruitless", + -14.063948631286621 + ], + [ + "▁707", + -14.063969612121582 + ], + [ + "▁BONUS", + -14.064023971557617 + ], + [ + "▁annihilation", + -14.064030647277832 + ], + [ + "▁Waltz", + -14.064066886901855 + ], + [ + "cli", + -14.064127922058105 + ], + [ + "valued", + -14.064169883728027 + ], + [ + "▁Hawthorn", + -14.064200401306152 + ], + [ + "▁Salinas", + -14.064204216003418 + ], + [ + "▁NAP", + -14.064209938049316 + ], + [ + "itos", + -14.06421184539795 + ], + [ + "▁pare", + -14.064215660095215 + ], + [ + "▁SOURCE", + -14.064225196838379 + ], + [ + "▁lumens", + -14.064254760742188 + ], + [ + "PRNewswire", + -14.064266204833984 + ], + [ + "▁FK", + -14.064281463623047 + ], + [ + "▁Timo", + -14.064286231994629 + ], + [ + "▁petro", + -14.064388275146484 + ], + [ + "Protect", + -14.0643949508667 + ], + [ + "▁silo", + -14.06440544128418 + ], + [ + "▁conspired", + -14.06441879272461 + ], + [ + "▁Opel", + -14.064492225646973 + ], + [ + "▁homeopathy", + -14.064584732055664 + ], + [ + "kina", + -14.064616203308105 + ], + [ + "▁BIT", + -14.064672470092773 + ], + [ + "society", + -14.06468677520752 + ], + [ + "▁swatches", + -14.064732551574707 + ], + [ + "▁Steinberg", + -14.064740180969238 + ], + [ + "▁Heisman", + -14.064742088317871 + ], + [ + "iente", + -14.064743041992188 + ], + [ + "▁Thane", + -14.06474781036377 + ], + [ + "▁resolute", + -14.064764022827148 + ], + [ + "▁Teller", + -14.064767837524414 + ], + [ + "803", + -14.064788818359375 + ], + [ + "▁statesman", + -14.064798355102539 + ], + [ + "▁Strom", + -14.06480884552002 + ], + [ + "▁androgen", + -14.064922332763672 + ], + [ + "▁Fertilizer", + -14.064945220947266 + ], + [ + "▁prohibitive", + -14.064955711364746 + ], + [ + "SYS", + -14.064982414245605 + ], + [ + "cakes", + -14.065010070800781 + ], + [ + "▁abbreviations", + -14.065027236938477 + ], + [ + "▁ergo", + -14.065040588378906 + ], + [ + "▁사", + -14.065042495727539 + ], + [ + "▁suffrage", + -14.065044403076172 + ], + [ + "654", + -14.065049171447754 + ], + [ + "▁Fontana", + -14.065075874328613 + ], + [ + "▁SWOT", + -14.065085411071777 + ], + [ + "▁Meryl", + -14.065130233764648 + ], + [ + "▁Dole", + -14.065139770507812 + ], + [ + "▁vitae", + -14.065192222595215 + ], + [ + "▁spades", + -14.065193176269531 + ], + [ + "▁aggressor", + -14.0653076171875 + ], + [ + "▁optimist", + -14.065351486206055 + ], + [ + "▁bakeries", + -14.065369606018066 + ], + [ + "eared", + -14.065386772155762 + ], + [ + "▁hexagon", + -14.065386772155762 + ], + [ + "IEC", + -14.065393447875977 + ], + [ + "▁EVs", + -14.065436363220215 + ], + [ + "walled", + -14.065582275390625 + ], + [ + "muth", + -14.065583229064941 + ], + [ + "atz", + -14.065608024597168 + ], + [ + "BOOK", + -14.065621376037598 + ], + [ + "▁Immune", + -14.06564998626709 + ], + [ + "required", + -14.065665245056152 + ], + [ + "▁collages", + -14.065743446350098 + ], + [ + "unity", + -14.065808296203613 + ], + [ + "▁james", + -14.065818786621094 + ], + [ + "▁Shiny", + -14.065873146057129 + ], + [ + "▁377", + -14.065898895263672 + ], + [ + "▁horticultural", + -14.06592082977295 + ], + [ + "▁Bh", + -14.065922737121582 + ], + [ + "▁Bellingham", + -14.065938949584961 + ], + [ + "▁physicality", + -14.06594467163086 + ], + [ + "▁Fos", + -14.06599235534668 + ], + [ + "▁stables", + -14.065995216369629 + ], + [ + "▁Suffering", + -14.066019058227539 + ], + [ + "hanging", + -14.066034317016602 + ], + [ + "County", + -14.066045761108398 + ], + [ + "weeks", + -14.066056251525879 + ], + [ + "▁Ruler", + -14.066061019897461 + ], + [ + "▁unlocks", + -14.066076278686523 + ], + [ + "▁franchisee", + -14.06619644165039 + ], + [ + "▁occured", + -14.066215515136719 + ], + [ + "▁vowels", + -14.066224098205566 + ], + [ + "▁starry", + -14.066243171691895 + ], + [ + "▁Ono", + -14.066252708435059 + ], + [ + "▁Lived", + -14.066264152526855 + ], + [ + "gla", + -14.066272735595703 + ], + [ + "▁ANOVA", + -14.066285133361816 + ], + [ + "▁DAR", + -14.066300392150879 + ], + [ + "▁Aww", + -14.066324234008789 + ], + [ + "▁seq", + -14.06633186340332 + ], + [ + "▁Lifting", + -14.066347122192383 + ], + [ + "▁corporal", + -14.066397666931152 + ], + [ + "▁KPIs", + -14.066506385803223 + ], + [ + "▁Investigate", + -14.066559791564941 + ], + [ + "511", + -14.0665922164917 + ], + [ + "▁Fuzzy", + -14.0665922164917 + ], + [ + "▁conspiring", + -14.066612243652344 + ], + [ + "▁Sill", + -14.066615104675293 + ], + [ + "▁Vene", + -14.066634178161621 + ], + [ + "NSA", + -14.066670417785645 + ], + [ + "▁Binghamton", + -14.066672325134277 + ], + [ + "▁romances", + -14.066702842712402 + ], + [ + "▁535", + -14.066793441772461 + ], + [ + "▁finasteride", + -14.06679630279541 + ], + [ + "atch", + -14.066850662231445 + ], + [ + "Claude", + -14.066876411437988 + ], + [ + "▁interconnection", + -14.066890716552734 + ], + [ + "▁obeying", + -14.066947937011719 + ], + [ + "▁IMAX", + -14.0669584274292 + ], + [ + "▁ingesting", + -14.067022323608398 + ], + [ + "dinner", + -14.067023277282715 + ], + [ + "▁immutable", + -14.067042350769043 + ], + [ + "▁pacemaker", + -14.06706428527832 + ], + [ + "Instead", + -14.067249298095703 + ], + [ + "▁trespassing", + -14.067253112792969 + ], + [ + "▁Repository", + -14.067373275756836 + ], + [ + "ayan", + -14.067375183105469 + ], + [ + "▁Newborn", + -14.067388534545898 + ], + [ + "▁wu", + -14.067423820495605 + ], + [ + "Crazy", + -14.067488670349121 + ], + [ + "arry", + -14.067508697509766 + ], + [ + "▁moustache", + -14.067535400390625 + ], + [ + "constructed", + -14.06755256652832 + ], + [ + "Bike", + -14.067608833312988 + ], + [ + "▁evangelist", + -14.067628860473633 + ], + [ + "▁bha", + -14.067687034606934 + ], + [ + "▁sorority", + -14.06769847869873 + ], + [ + "▁Prophets", + -14.06770133972168 + ], + [ + "▁subspecies", + -14.06770133972168 + ], + [ + "▁EDGE", + -14.067723274230957 + ], + [ + "▁TAB", + -14.067763328552246 + ], + [ + "▁fella", + -14.067789077758789 + ], + [ + "▁amenable", + -14.067801475524902 + ], + [ + "▁Silverman", + -14.06781005859375 + ], + [ + "▁361", + -14.067825317382812 + ], + [ + "▁allot", + -14.067831993103027 + ], + [ + "▁Sko", + -14.067846298217773 + ], + [ + "▁fibrillation", + -14.067855834960938 + ], + [ + "▁Argentinian", + -14.067856788635254 + ], + [ + "▁mosaics", + -14.067887306213379 + ], + [ + "▁deciduous", + -14.067893028259277 + ], + [ + "▁rejoicing", + -14.067914009094238 + ], + [ + "▁CDT", + -14.06794548034668 + ], + [ + "▁ventral", + -14.067976951599121 + ], + [ + "▁Taw", + -14.067992210388184 + ], + [ + "▁italics", + -14.068015098571777 + ], + [ + "▁superseded", + -14.06804084777832 + ], + [ + "▁tec", + -14.068070411682129 + ], + [ + "▁vanguard", + -14.068077087402344 + ], + [ + "▁AWAY", + -14.068082809448242 + ], + [ + "613", + -14.068094253540039 + ], + [ + "Cheap", + -14.06810474395752 + ], + [ + "▁Modification", + -14.068105697631836 + ], + [ + "▁VN", + -14.068153381347656 + ], + [ + "▁recline", + -14.068183898925781 + ], + [ + "▁PMP", + -14.068188667297363 + ], + [ + "bars", + -14.068205833435059 + ], + [ + "▁Skies", + -14.068222999572754 + ], + [ + "▁Versatile", + -14.068231582641602 + ], + [ + "ين", + -14.068270683288574 + ], + [ + "▁visualizing", + -14.068299293518066 + ], + [ + "▁ratify", + -14.068324089050293 + ], + [ + "▁Vert", + -14.06834602355957 + ], + [ + "▁speculations", + -14.068367004394531 + ], + [ + "issues", + -14.068377494812012 + ], + [ + "▁Loves", + -14.068381309509277 + ], + [ + "▁expiring", + -14.068449020385742 + ], + [ + "▁DQ", + -14.068456649780273 + ], + [ + "boggling", + -14.068470001220703 + ], + [ + "▁Kline", + -14.068516731262207 + ], + [ + "▁vida", + -14.068526268005371 + ], + [ + "ъ", + -14.06855297088623 + ], + [ + "▁pall", + -14.068556785583496 + ], + [ + "▁Buk", + -14.068572998046875 + ], + [ + "▁Specializing", + -14.068584442138672 + ], + [ + "elastic", + -14.068585395812988 + ], + [ + "▁unplugged", + -14.068594932556152 + ], + [ + "ICH", + -14.068596839904785 + ], + [ + "▁scalar", + -14.068597793579102 + ], + [ + "▁Rach", + -14.06865119934082 + ], + [ + "ije", + -14.068655014038086 + ], + [ + "▁Uno", + -14.068660736083984 + ], + [ + "▁biomarker", + -14.068756103515625 + ], + [ + "▁nitro", + -14.068777084350586 + ], + [ + "jour", + -14.068788528442383 + ], + [ + "▁Subdivision", + -14.068793296813965 + ], + [ + "json", + -14.068817138671875 + ], + [ + "LOVE", + -14.068830490112305 + ], + [ + "▁590", + -14.06900405883789 + ], + [ + "ross", + -14.069005966186523 + ], + [ + "▁perceptive", + -14.069064140319824 + ], + [ + "▁Paulson", + -14.069085121154785 + ], + [ + "▁Yah", + -14.069086074829102 + ], + [ + "▁CPP", + -14.069130897521973 + ], + [ + "taka", + -14.069205284118652 + ], + [ + "operating", + -14.069225311279297 + ], + [ + "▁pointy", + -14.069225311279297 + ], + [ + "rows", + -14.069235801696777 + ], + [ + "tasting", + -14.069252014160156 + ], + [ + "▁asymptomatic", + -14.069289207458496 + ], + [ + "▁griddle", + -14.069314956665039 + ], + [ + "▁Elisa", + -14.069336891174316 + ], + [ + "APA", + -14.069356918334961 + ], + [ + "▁Rook", + -14.069367408752441 + ], + [ + "▁Jagger", + -14.069470405578613 + ], + [ + "▁collaborates", + -14.069475173950195 + ], + [ + "Driver", + -14.069506645202637 + ], + [ + "▁Xtreme", + -14.069562911987305 + ], + [ + "▁NPCs", + -14.06966781616211 + ], + [ + "▁spurt", + -14.069741249084473 + ], + [ + "robot", + -14.069743156433105 + ], + [ + "ONS", + -14.069795608520508 + ], + [ + "mish", + -14.069805145263672 + ], + [ + "▁Cougar", + -14.069844245910645 + ], + [ + "gley", + -14.069870948791504 + ], + [ + "▁Coun", + -14.069929122924805 + ], + [ + "ENG", + -14.069961547851562 + ], + [ + "▁charted", + -14.069995880126953 + ], + [ + "▁Bautista", + -14.070032119750977 + ], + [ + "▁Precinct", + -14.070053100585938 + ], + [ + "▁Flare", + -14.070143699645996 + ], + [ + "inta", + -14.070161819458008 + ], + [ + "▁Digg", + -14.070170402526855 + ], + [ + "▁Chrissy", + -14.070252418518066 + ], + [ + "▁jaunt", + -14.070263862609863 + ], + [ + "▁Melton", + -14.070273399353027 + ], + [ + "▁Leiden", + -14.070303916931152 + ], + [ + "▁manoeuvre", + -14.070313453674316 + ], + [ + "▁UCC", + -14.070332527160645 + ], + [ + "▁avenge", + -14.070341110229492 + ], + [ + "ffy", + -14.070345878601074 + ], + [ + "▁preamp", + -14.070460319519043 + ], + [ + "▁Valor", + -14.070489883422852 + ], + [ + "▁Edmonds", + -14.07050895690918 + ], + [ + "▁lexicon", + -14.070509910583496 + ], + [ + "▁mistreatment", + -14.07055950164795 + ], + [ + "fascist", + -14.070574760437012 + ], + [ + "▁445", + -14.070639610290527 + ], + [ + "▁Bassett", + -14.070642471313477 + ], + [ + "▁eerily", + -14.070658683776855 + ], + [ + "▁potting", + -14.070661544799805 + ], + [ + "▁Isolation", + -14.0706787109375 + ], + [ + "579", + -14.070704460144043 + ], + [ + "▁adherents", + -14.070718765258789 + ], + [ + "▁Mishra", + -14.070735931396484 + ], + [ + "orama", + -14.070786476135254 + ], + [ + "loose", + -14.070793151855469 + ], + [ + "culo", + -14.070899963378906 + ], + [ + "aks", + -14.07091236114502 + ], + [ + "▁Britton", + -14.070966720581055 + ], + [ + "▁Cera", + -14.070966720581055 + ], + [ + "exercise", + -14.07101058959961 + ], + [ + "▁Vito", + -14.07101058959961 + ], + [ + "▁gunned", + -14.071014404296875 + ], + [ + "▁unearth", + -14.071028709411621 + ], + [ + "▁harsher", + -14.071081161499023 + ], + [ + "▁TAS", + -14.071101188659668 + ], + [ + "▁GOING", + -14.071135520935059 + ], + [ + "▁Berna", + -14.071155548095703 + ], + [ + "ий", + -14.071162223815918 + ], + [ + "▁swiping", + -14.071174621582031 + ], + [ + "▁pf", + -14.071235656738281 + ], + [ + "erine", + -14.071256637573242 + ], + [ + "▁Moi", + -14.071267127990723 + ], + [ + "▁psychotherapist", + -14.071274757385254 + ], + [ + "▁Postgraduate", + -14.07129955291748 + ], + [ + "▁putty", + -14.07130241394043 + ], + [ + "mmel", + -14.071349143981934 + ], + [ + "▁glides", + -14.071372032165527 + ], + [ + "▁Norwalk", + -14.07137393951416 + ], + [ + "▁Pattaya", + -14.071385383605957 + ], + [ + "▁Wealthy", + -14.071398735046387 + ], + [ + "▁knotted", + -14.07140827178955 + ], + [ + "▁Severn", + -14.071532249450684 + ], + [ + "▁있다", + -14.071586608886719 + ], + [ + "▁Malware", + -14.071602821350098 + ], + [ + "went", + -14.071608543395996 + ], + [ + "▁lipsticks", + -14.07163143157959 + ], + [ + "flowing", + -14.071669578552246 + ], + [ + "propri", + -14.071684837341309 + ], + [ + "▁lobes", + -14.071691513061523 + ], + [ + "▁Stewardship", + -14.071694374084473 + ], + [ + "▁Ulrich", + -14.071709632873535 + ], + [ + "ggy", + -14.071736335754395 + ], + [ + "▁undulating", + -14.07174015045166 + ], + [ + "designer", + -14.071761131286621 + ], + [ + "▁tethered", + -14.071762084960938 + ], + [ + "▁weighty", + -14.071842193603516 + ], + [ + "STO", + -14.071967124938965 + ], + [ + "▁wrecking", + -14.072030067443848 + ], + [ + "WV", + -14.072039604187012 + ], + [ + "▁superpowers", + -14.072112083435059 + ], + [ + "▁Regards", + -14.072114944458008 + ], + [ + "▁OV", + -14.072134971618652 + ], + [ + "belief", + -14.072166442871094 + ], + [ + "MCA", + -14.072171211242676 + ], + [ + "Friendly", + -14.072211265563965 + ], + [ + "▁differentiates", + -14.072236061096191 + ], + [ + "▁Vacations", + -14.072308540344238 + ], + [ + "▁footnotes", + -14.0723237991333 + ], + [ + "▁PURCHASE", + -14.072344779968262 + ], + [ + "▁Marlon", + -14.072409629821777 + ], + [ + "loom", + -14.072434425354004 + ], + [ + "▁lighthearted", + -14.072453498840332 + ], + [ + "▁Scuba", + -14.072461128234863 + ], + [ + "ghost", + -14.07246208190918 + ], + [ + "Bug", + -14.072463035583496 + ], + [ + "▁Kink", + -14.07247543334961 + ], + [ + "788", + -14.072493553161621 + ], + [ + "▁lair", + -14.072517395019531 + ], + [ + "▁upsets", + -14.072539329528809 + ], + [ + "▁electrochemical", + -14.072541236877441 + ], + [ + "▁Esk", + -14.07256031036377 + ], + [ + "SAC", + -14.0725736618042 + ], + [ + "yde", + -14.072590827941895 + ], + [ + "Steel", + -14.072591781616211 + ], + [ + "▁Ties", + -14.072640419006348 + ], + [ + "▁deplete", + -14.072713851928711 + ], + [ + "▁glycerin", + -14.072736740112305 + ], + [ + "▁ascribed", + -14.072759628295898 + ], + [ + "▁Schmitt", + -14.072793960571289 + ], + [ + "▁stepfather", + -14.072818756103516 + ], + [ + "▁Lieb", + -14.072826385498047 + ], + [ + "722", + -14.072874069213867 + ], + [ + "▁413", + -14.072891235351562 + ], + [ + "648", + -14.072917938232422 + ], + [ + "▁KJV", + -14.0729341506958 + ], + [ + "▁curation", + -14.072941780090332 + ], + [ + "SMS", + -14.073018074035645 + ], + [ + "▁symbiotic", + -14.073020935058594 + ], + [ + "▁Ape", + -14.07307243347168 + ], + [ + "▁Marge", + -14.073097229003906 + ], + [ + "▁Keegan", + -14.073132514953613 + ], + [ + "▁Aryan", + -14.073134422302246 + ], + [ + "▁HMO", + -14.073150634765625 + ], + [ + "Smile", + -14.073165893554688 + ], + [ + "▁magistrates", + -14.073209762573242 + ], + [ + "▁Dug", + -14.073210716247559 + ], + [ + "Ó", + -14.073290824890137 + ], + [ + "▁Harrogate", + -14.073394775390625 + ], + [ + "▁Delgado", + -14.073454856872559 + ], + [ + "▁Tension", + -14.073482513427734 + ], + [ + "kiss", + -14.073493957519531 + ], + [ + "▁midpoint", + -14.073497772216797 + ], + [ + "▁randomness", + -14.073534965515137 + ], + [ + "tzen", + -14.073594093322754 + ], + [ + "▁spotlights", + -14.073650360107422 + ], + [ + "▁Christoph", + -14.073664665222168 + ], + [ + "ului", + -14.073671340942383 + ], + [ + "676", + -14.073718070983887 + ], + [ + "param", + -14.073729515075684 + ], + [ + "lil", + -14.073734283447266 + ], + [ + "▁fortitude", + -14.073736190795898 + ], + [ + "▁unopened", + -14.073744773864746 + ], + [ + "▁uit", + -14.073760032653809 + ], + [ + "▁slush", + -14.073830604553223 + ], + [ + "▁transatlantic", + -14.073856353759766 + ], + [ + "▁Astronaut", + -14.073932647705078 + ], + [ + "▁RTS", + -14.073956489562988 + ], + [ + "▁periodical", + -14.074003219604492 + ], + [ + "▁equalizer", + -14.074052810668945 + ], + [ + "comma", + -14.074103355407715 + ], + [ + "cyto", + -14.074116706848145 + ], + [ + "▁Puffy", + -14.074121475219727 + ], + [ + "▁jpg", + -14.074155807495117 + ], + [ + "▁wasps", + -14.074172019958496 + ], + [ + "843", + -14.074191093444824 + ], + [ + "▁FAO", + -14.074261665344238 + ], + [ + "▁Soundtrack", + -14.074280738830566 + ], + [ + "▁ovary", + -14.074285507202148 + ], + [ + "▁mannequin", + -14.074357032775879 + ], + [ + "▁433", + -14.074369430541992 + ], + [ + "eous", + -14.074383735656738 + ], + [ + "▁baritone", + -14.074387550354004 + ], + [ + "▁punctual", + -14.074397087097168 + ], + [ + "▁Mazz", + -14.074430465698242 + ], + [ + "▁Stratton", + -14.074453353881836 + ], + [ + "▁spectrometer", + -14.074456214904785 + ], + [ + "started", + -14.07458209991455 + ], + [ + "▁Carlyle", + -14.074637413024902 + ], + [ + "tist", + -14.074642181396484 + ], + [ + "▁Tiki", + -14.0746431350708 + ], + [ + "éri", + -14.0746488571167 + ], + [ + "▁Alm", + -14.074686050415039 + ], + [ + "▁profane", + -14.074708938598633 + ], + [ + "▁menstruation", + -14.07477855682373 + ], + [ + "▁hijack", + -14.07479476928711 + ], + [ + "▁whatnot", + -14.074796676635742 + ], + [ + "atsu", + -14.074845314025879 + ], + [ + "▁Duc", + -14.07486629486084 + ], + [ + "▁HGH", + -14.07489013671875 + ], + [ + "638", + -14.074902534484863 + ], + [ + "▁MTN", + -14.07494068145752 + ], + [ + "facts", + -14.074952125549316 + ], + [ + "▁Embroidery", + -14.074959754943848 + ], + [ + "▁motionless", + -14.075041770935059 + ], + [ + "osaur", + -14.075047492980957 + ], + [ + "Writer", + -14.075071334838867 + ], + [ + "▁Newbury", + -14.075075149536133 + ], + [ + "ITIES", + -14.075118064880371 + ], + [ + "cti", + -14.075122833251953 + ], + [ + "▁BFA", + -14.075191497802734 + ], + [ + "▁Philo", + -14.075203895568848 + ], + [ + "lsa", + -14.075236320495605 + ], + [ + "Pur", + -14.075277328491211 + ], + [ + "▁sparsely", + -14.075318336486816 + ], + [ + "▁aneurysm", + -14.075336456298828 + ], + [ + "▁pressuring", + -14.075345993041992 + ], + [ + "cq", + -14.075382232666016 + ], + [ + "▁Siem", + -14.07538890838623 + ], + [ + "547", + -14.075457572937012 + ], + [ + "▁Assessments", + -14.075472831726074 + ], + [ + "▁microbiology", + -14.075552940368652 + ], + [ + "▁TMS", + -14.075554847717285 + ], + [ + "▁Yeh", + -14.075627326965332 + ], + [ + "▁eng", + -14.075631141662598 + ], + [ + "▁Stormy", + -14.07564926147461 + ], + [ + "▁curbing", + -14.075654029846191 + ], + [ + "▁Akira", + -14.075685501098633 + ], + [ + "Person", + -14.075753211975098 + ], + [ + "hā", + -14.07577133178711 + ], + [ + "▁nonstick", + -14.075778007507324 + ], + [ + "▁scr", + -14.07582950592041 + ], + [ + "nyi", + -14.075838088989258 + ], + [ + "во", + -14.07583999633789 + ], + [ + "▁Plague", + -14.075874328613281 + ], + [ + "fred", + -14.07589340209961 + ], + [ + "▁imitating", + -14.075900077819824 + ], + [ + "▁taxa", + -14.075901985168457 + ], + [ + "zioni", + -14.075968742370605 + ], + [ + "ermann", + -14.075976371765137 + ], + [ + "▁courting", + -14.07597827911377 + ], + [ + "▁Malo", + -14.076017379760742 + ], + [ + "▁AREA", + -14.076044082641602 + ], + [ + "Profit", + -14.076047897338867 + ], + [ + "▁SID", + -14.076082229614258 + ], + [ + "▁Dorchester", + -14.076099395751953 + ], + [ + "▁epiphany", + -14.076106071472168 + ], + [ + "할", + -14.076155662536621 + ], + [ + "▁materialized", + -14.076162338256836 + ], + [ + "izzi", + -14.07616901397705 + ], + [ + "▁reclamation", + -14.076189994812012 + ], + [ + "▁Macbook", + -14.076229095458984 + ], + [ + "ió", + -14.076371192932129 + ], + [ + "keys", + -14.076394081115723 + ], + [ + "▁Creatures", + -14.076521873474121 + ], + [ + "excellent", + -14.076562881469727 + ], + [ + "itti", + -14.076595306396484 + ], + [ + "▁LDAP", + -14.07659912109375 + ], + [ + "hampton", + -14.076664924621582 + ], + [ + "▁Château", + -14.076667785644531 + ], + [ + "▁adrift", + -14.076706886291504 + ], + [ + "▁Saginaw", + -14.076775550842285 + ], + [ + "▁Windy", + -14.076848030090332 + ], + [ + "▁Derma", + -14.07689094543457 + ], + [ + "▁Armada", + -14.076919555664062 + ], + [ + "AMS", + -14.076957702636719 + ], + [ + "▁rescind", + -14.076995849609375 + ], + [ + "▁ABV", + -14.077051162719727 + ], + [ + "ndra", + -14.077056884765625 + ], + [ + "▁jock", + -14.077067375183105 + ], + [ + "▁SMALL", + -14.077093124389648 + ], + [ + "▁Kwa", + -14.077112197875977 + ], + [ + "▁intolerable", + -14.077115058898926 + ], + [ + "▁Gorman", + -14.077157974243164 + ], + [ + "▁Seconds", + -14.077171325683594 + ], + [ + "▁disgraced", + -14.077207565307617 + ], + [ + "▁Golan", + -14.077223777770996 + ], + [ + "▁bastards", + -14.077298164367676 + ], + [ + "dep", + -14.077329635620117 + ], + [ + "▁subcutaneous", + -14.077424049377441 + ], + [ + "COL", + -14.077492713928223 + ], + [ + "Version", + -14.077506065368652 + ], + [ + "य", + -14.077520370483398 + ], + [ + "▁lifeboat", + -14.077555656433105 + ], + [ + "▁cappuccino", + -14.077569007873535 + ], + [ + "▁holly", + -14.077583312988281 + ], + [ + "▁THANKS", + -14.07760238647461 + ], + [ + "Simple", + -14.077611923217773 + ], + [ + "▁Nanjing", + -14.077635765075684 + ], + [ + "ть", + -14.077649116516113 + ], + [ + "precision", + -14.077655792236328 + ], + [ + "▁Harrow", + -14.07768726348877 + ], + [ + "▁Woodrow", + -14.077713012695312 + ], + [ + "▁verticals", + -14.077741622924805 + ], + [ + "ORG", + -14.077754974365234 + ], + [ + "rü", + -14.077764511108398 + ], + [ + "▁Yogurt", + -14.077773094177246 + ], + [ + "▁Gratitude", + -14.077787399291992 + ], + [ + "▁Joplin", + -14.077792167663574 + ], + [ + "▁Medford", + -14.077792167663574 + ], + [ + "▁perennials", + -14.077877044677734 + ], + [ + "fla", + -14.07797908782959 + ], + [ + "▁initialization", + -14.078009605407715 + ], + [ + "634", + -14.078033447265625 + ], + [ + "▁grail", + -14.078067779541016 + ], + [ + "▁easel", + -14.078070640563965 + ], + [ + "▁pinball", + -14.078096389770508 + ], + [ + "▁raged", + -14.078158378601074 + ], + [ + "▁OST", + -14.07817554473877 + ], + [ + "▁relievers", + -14.078207015991211 + ], + [ + "▁Veg", + -14.078242301940918 + ], + [ + "▁María", + -14.078274726867676 + ], + [ + "roller", + -14.078336715698242 + ], + [ + "▁biographer", + -14.078381538391113 + ], + [ + "▁taster", + -14.078393936157227 + ], + [ + "▁pontoon", + -14.078434944152832 + ], + [ + "▁champs", + -14.078439712524414 + ], + [ + "▁hemorrhoids", + -14.078485488891602 + ], + [ + "▁PRESIDENT", + -14.078523635864258 + ], + [ + "▁Bismarck", + -14.078534126281738 + ], + [ + "▁crossbow", + -14.078544616699219 + ], + [ + "▁calibrate", + -14.078553199768066 + ], + [ + "▁Mullins", + -14.078554153442383 + ], + [ + "▁papal", + -14.078564643859863 + ], + [ + "▁cabal", + -14.07861042022705 + ], + [ + "▁Darn", + -14.07862377166748 + ], + [ + "▁Slick", + -14.078643798828125 + ], + [ + "▁£60", + -14.078681945800781 + ], + [ + "▁STO", + -14.078691482543945 + ], + [ + "▁Joni", + -14.078697204589844 + ], + [ + "photos", + -14.078805923461914 + ], + [ + "▁Transgender", + -14.078821182250977 + ], + [ + "▁под", + -14.07893180847168 + ], + [ + "▁Preventive", + -14.07894515991211 + ], + [ + "▁hamburgers", + -14.078961372375488 + ], + [ + "▁Destroyer", + -14.078975677490234 + ], + [ + "▁Conv", + -14.079058647155762 + ], + [ + "▁superhuman", + -14.079066276550293 + ], + [ + "ditch", + -14.079078674316406 + ], + [ + "▁Hagen", + -14.079140663146973 + ], + [ + "▁Beale", + -14.079203605651855 + ], + [ + "▁goldfish", + -14.079205513000488 + ], + [ + "▁Boardwalk", + -14.079310417175293 + ], + [ + "▁Boz", + -14.079322814941406 + ], + [ + "▁Tourists", + -14.079323768615723 + ], + [ + "▁hatching", + -14.079358100891113 + ], + [ + "▁muffler", + -14.079368591308594 + ], + [ + "▁undertakings", + -14.07938289642334 + ], + [ + "▁Carp", + -14.0794095993042 + ], + [ + "▁idealism", + -14.079442024230957 + ], + [ + "▁VX", + -14.079455375671387 + ], + [ + "▁MEL", + -14.079466819763184 + ], + [ + "NOW", + -14.079474449157715 + ], + [ + "▁Insect", + -14.079493522644043 + ], + [ + "▁idiosyncratic", + -14.07949447631836 + ], + [ + "Shape", + -14.079499244689941 + ], + [ + "동", + -14.079601287841797 + ], + [ + "▁capacitance", + -14.079689979553223 + ], + [ + "bubble", + -14.079710960388184 + ], + [ + "DEC", + -14.079715728759766 + ], + [ + "▁Hymn", + -14.07972240447998 + ], + [ + "▁barbaric", + -14.079747200012207 + ], + [ + "bber", + -14.079765319824219 + ], + [ + "▁redshirt", + -14.079792976379395 + ], + [ + "SCNG", + -14.079797744750977 + ], + [ + "▁Romo", + -14.079833030700684 + ], + [ + "▁dre", + -14.079865455627441 + ], + [ + "▁femoral", + -14.07992172241211 + ], + [ + "▁Psychotherapy", + -14.079936027526855 + ], + [ + "conflict", + -14.079939842224121 + ], + [ + "primarily", + -14.07996654510498 + ], + [ + "▁386", + -14.08002758026123 + ], + [ + "▁PAD", + -14.080083847045898 + ], + [ + "▁skewer", + -14.080117225646973 + ], + [ + "▁Seinfeld", + -14.08014965057373 + ], + [ + "Risk", + -14.080159187316895 + ], + [ + "metro", + -14.080187797546387 + ], + [ + "▁looser", + -14.080239295959473 + ], + [ + "▁sonar", + -14.08039379119873 + ], + [ + "▁SURE", + -14.08039665222168 + ], + [ + "▁oncologist", + -14.080401420593262 + ], + [ + "▁rarest", + -14.080513954162598 + ], + [ + "▁Happening", + -14.080554008483887 + ], + [ + "▁habitation", + -14.080657005310059 + ], + [ + "tb", + -14.080673217773438 + ], + [ + "▁Spitfire", + -14.080674171447754 + ], + [ + "▁Finale", + -14.080716133117676 + ], + [ + "▁Boogie", + -14.080726623535156 + ], + [ + "▁chem", + -14.080730438232422 + ], + [ + "▁Elemental", + -14.080737113952637 + ], + [ + "▁disingenuous", + -14.08080768585205 + ], + [ + "▁GMAT", + -14.08089828491211 + ], + [ + "▁stumped", + -14.080924034118652 + ], + [ + "第", + -14.080944061279297 + ], + [ + "Row", + -14.081000328063965 + ], + [ + "▁invert", + -14.081025123596191 + ], + [ + "▁faked", + -14.081034660339355 + ], + [ + "▁Mather", + -14.08104419708252 + ], + [ + "OY", + -14.081067085266113 + ], + [ + "▁Infra", + -14.081070899963379 + ], + [ + "▁Lombard", + -14.081114768981934 + ], + [ + "▁hypoxia", + -14.081143379211426 + ], + [ + "▁prefecture", + -14.081144332885742 + ], + [ + "▁801", + -14.081148147583008 + ], + [ + "Jason", + -14.081186294555664 + ], + [ + "koff", + -14.081196784973145 + ], + [ + "LIVE", + -14.08121109008789 + ], + [ + "▁UCF", + -14.081220626831055 + ], + [ + "▁thumping", + -14.081262588500977 + ], + [ + "▁WN", + -14.081294059753418 + ], + [ + "assembled", + -14.081307411193848 + ], + [ + "▁interlude", + -14.081321716308594 + ], + [ + "▁Specs", + -14.081328392028809 + ], + [ + "▁rela", + -14.081411361694336 + ], + [ + "▁outta", + -14.081419944763184 + ], + [ + "▁whisked", + -14.081419944763184 + ], + [ + "rooted", + -14.081445693969727 + ], + [ + "▁Akismet", + -14.081494331359863 + ], + [ + "populated", + -14.081500053405762 + ], + [ + "▁Khi", + -14.081501960754395 + ], + [ + "▁Linus", + -14.081506729125977 + ], + [ + "▁Darlene", + -14.081576347351074 + ], + [ + "▁Epsom", + -14.081599235534668 + ], + [ + "Load", + -14.081612586975098 + ], + [ + "▁HJ", + -14.08166790008545 + ], + [ + "▁zap", + -14.081694602966309 + ], + [ + "▁playfully", + -14.081698417663574 + ], + [ + "▁cricketer", + -14.081716537475586 + ], + [ + "▁Teng", + -14.081718444824219 + ], + [ + "▁zippers", + -14.081735610961914 + ], + [ + "▁renounce", + -14.081740379333496 + ], + [ + "作", + -14.081748962402344 + ], + [ + "ั", + -14.081750869750977 + ], + [ + "Runner", + -14.081770896911621 + ], + [ + "658", + -14.081783294677734 + ], + [ + "▁Queue", + -14.081811904907227 + ], + [ + "▁devising", + -14.081830978393555 + ], + [ + "975", + -14.081836700439453 + ], + [ + "▁gri", + -14.081865310668945 + ], + [ + "refer", + -14.081881523132324 + ], + [ + "▁Livingstone", + -14.081886291503906 + ], + [ + "▁fooling", + -14.081892013549805 + ], + [ + "▁rusted", + -14.081925392150879 + ], + [ + "guin", + -14.081930160522461 + ], + [ + "pets", + -14.08194637298584 + ], + [ + "▁falter", + -14.081962585449219 + ], + [ + "blooded", + -14.081965446472168 + ], + [ + "casual", + -14.081986427307129 + ], + [ + "▁Crap", + -14.082016944885254 + ], + [ + "QR", + -14.082042694091797 + ], + [ + "▁hydroxide", + -14.082047462463379 + ], + [ + "▁starboard", + -14.082093238830566 + ], + [ + "mens", + -14.082106590270996 + ], + [ + "supporting", + -14.08213996887207 + ], + [ + "leta", + -14.082140922546387 + ], + [ + "▁Mamma", + -14.0821533203125 + ], + [ + "▁Verdict", + -14.082173347473145 + ], + [ + "▁annuities", + -14.082223892211914 + ], + [ + "▁Rockville", + -14.082231521606445 + ], + [ + "715", + -14.082253456115723 + ], + [ + "▁Ashok", + -14.08226203918457 + ], + [ + "▁interactivity", + -14.082283020019531 + ], + [ + "ión", + -14.082303047180176 + ], + [ + "cru", + -14.082316398620605 + ], + [ + "▁Diagrams", + -14.082408905029297 + ], + [ + "▁Collingwood", + -14.082412719726562 + ], + [ + "▁768", + -14.082454681396484 + ], + [ + "▁Barbecue", + -14.082473754882812 + ], + [ + "FORM", + -14.082528114318848 + ], + [ + "▁Zillow", + -14.082584381103516 + ], + [ + "▁quiver", + -14.082670211791992 + ], + [ + "blogger", + -14.08273983001709 + ], + [ + "▁Shaman", + -14.082801818847656 + ], + [ + "▁populism", + -14.082809448242188 + ], + [ + "▁Cupid", + -14.082816123962402 + ], + [ + "rable", + -14.082820892333984 + ], + [ + "▁Bind", + -14.082853317260742 + ], + [ + "▁GQ", + -14.082901000976562 + ], + [ + "▁Awakens", + -14.082907676696777 + ], + [ + "838", + -14.082914352416992 + ], + [ + "▁subjectivity", + -14.082918167114258 + ], + [ + "▁Hacking", + -14.082940101623535 + ], + [ + "▁bri", + -14.082950592041016 + ], + [ + "▁nec", + -14.082983016967773 + ], + [ + "▁BID", + -14.08299446105957 + ], + [ + "▁spied", + -14.083022117614746 + ], + [ + "ogie", + -14.083069801330566 + ], + [ + "▁ISI", + -14.083108901977539 + ], + [ + "▁Gallon", + -14.083157539367676 + ], + [ + "▁neu", + -14.083175659179688 + ], + [ + "▁chasm", + -14.083178520202637 + ], + [ + "▁mak", + -14.083237648010254 + ], + [ + "▁anthropologist", + -14.083253860473633 + ], + [ + "▁oscillations", + -14.083272933959961 + ], + [ + "▁garnering", + -14.083370208740234 + ], + [ + "▁Pix", + -14.08337688446045 + ], + [ + "loy", + -14.083467483520508 + ], + [ + "include", + -14.083483695983887 + ], + [ + "▁ilk", + -14.083502769470215 + ], + [ + "Third", + -14.083534240722656 + ], + [ + "593", + -14.083600997924805 + ], + [ + "▁CREDIT", + -14.0836763381958 + ], + [ + "▁sprouting", + -14.083683013916016 + ], + [ + "igny", + -14.083688735961914 + ], + [ + "▁Rocco", + -14.083723068237305 + ], + [ + "▁chaperone", + -14.083745956420898 + ], + [ + "▁Tempo", + -14.083776473999023 + ], + [ + "CIP", + -14.083803176879883 + ], + [ + "▁MARKET", + -14.083815574645996 + ], + [ + "REN", + -14.083830833435059 + ], + [ + "▁reinstatement", + -14.08383560180664 + ], + [ + "▁warden", + -14.083857536315918 + ], + [ + "▁Dada", + -14.083860397338867 + ], + [ + "hz", + -14.083867073059082 + ], + [ + "た", + -14.083924293518066 + ], + [ + "▁1831", + -14.083948135375977 + ], + [ + "▁magma", + -14.083961486816406 + ], + [ + "▁BlackRock", + -14.083980560302734 + ], + [ + "▁MAIN", + -14.084001541137695 + ], + [ + "▁Api", + -14.084019660949707 + ], + [ + "▁cooktop", + -14.08410358428955 + ], + [ + "▁Huck", + -14.084108352661133 + ], + [ + "▁Podcasts", + -14.084108352661133 + ], + [ + "598", + -14.084115028381348 + ], + [ + "▁ditches", + -14.0841646194458 + ], + [ + "▁ERC", + -14.084257125854492 + ], + [ + "radar", + -14.084263801574707 + ], + [ + "jc", + -14.084267616271973 + ], + [ + "▁fen", + -14.08430004119873 + ], + [ + "▁Brahman", + -14.08432674407959 + ], + [ + "▁offsite", + -14.084381103515625 + ], + [ + "▁torrential", + -14.084389686584473 + ], + [ + "alcohol", + -14.084420204162598 + ], + [ + "▁346", + -14.084454536437988 + ], + [ + "033", + -14.084484100341797 + ], + [ + "나", + -14.084522247314453 + ], + [ + "▁grafting", + -14.084537506103516 + ], + [ + "▁vignettes", + -14.084543228149414 + ], + [ + "▁gj", + -14.084700584411621 + ], + [ + "▁MATERIALS", + -14.084702491760254 + ], + [ + "▁Zia", + -14.08473014831543 + ], + [ + "▁Cooker", + -14.084778785705566 + ], + [ + "▁Imported", + -14.0847806930542 + ], + [ + "▁milli", + -14.084786415100098 + ], + [ + "▁417", + -14.084799766540527 + ], + [ + "028", + -14.084803581237793 + ], + [ + "▁Jockey", + -14.084820747375488 + ], + [ + "▁Boyer", + -14.084877967834473 + ], + [ + "▁Districts", + -14.084891319274902 + ], + [ + "▁cation", + -14.084975242614746 + ], + [ + "▁Boll", + -14.08498477935791 + ], + [ + "▁yesteryear", + -14.085007667541504 + ], + [ + "▁CLEAR", + -14.085012435913086 + ], + [ + "▁deriving", + -14.085014343261719 + ], + [ + "▁FEC", + -14.08502197265625 + ], + [ + "▁USGS", + -14.085050582885742 + ], + [ + "spire", + -14.08517837524414 + ], + [ + "fluid", + -14.085206985473633 + ], + [ + "stration", + -14.085259437561035 + ], + [ + "▁910", + -14.08527660369873 + ], + [ + "아", + -14.085306167602539 + ], + [ + "▁easement", + -14.085381507873535 + ], + [ + "hé", + -14.085397720336914 + ], + [ + "▁subvert", + -14.085461616516113 + ], + [ + "▁centrifuge", + -14.08547592163086 + ], + [ + "▁rarer", + -14.085481643676758 + ], + [ + "▁Blaster", + -14.08552074432373 + ], + [ + "▁Visualization", + -14.085558891296387 + ], + [ + "▁Tarzan", + -14.085562705993652 + ], + [ + "▁Kwan", + -14.085678100585938 + ], + [ + "▁TLR", + -14.085710525512695 + ], + [ + "▁GEORGE", + -14.085713386535645 + ], + [ + "▁Activision", + -14.085808753967285 + ], + [ + "▁likeable", + -14.085860252380371 + ], + [ + "gger", + -14.085868835449219 + ], + [ + "▁necessitates", + -14.085871696472168 + ], + [ + "Owner", + -14.08594036102295 + ], + [ + "▁fewest", + -14.086040496826172 + ], + [ + "ait", + -14.086055755615234 + ], + [ + "zim", + -14.086060523986816 + ], + [ + "▁Transforming", + -14.086091041564941 + ], + [ + "▁perjury", + -14.086106300354004 + ], + [ + "▁Sixers", + -14.08610725402832 + ], + [ + "wert", + -14.086119651794434 + ], + [ + "▁wattage", + -14.086151123046875 + ], + [ + "▁ska", + -14.08615493774414 + ], + [ + "hla", + -14.086169242858887 + ], + [ + "▁deprecated", + -14.086181640625 + ], + [ + "UNI", + -14.086216926574707 + ], + [ + "Mount", + -14.086240768432617 + ], + [ + "▁triad", + -14.086254119873047 + ], + [ + "▁Highness", + -14.086309432983398 + ], + [ + "Secure", + -14.08631420135498 + ], + [ + "Volume", + -14.086358070373535 + ], + [ + "ember", + -14.086386680603027 + ], + [ + "▁rosters", + -14.08642292022705 + ], + [ + "bump", + -14.086465835571289 + ], + [ + "▁silvery", + -14.086466789245605 + ], + [ + "▁Garment", + -14.086470603942871 + ], + [ + "▁Machu", + -14.086482048034668 + ], + [ + "details", + -14.086495399475098 + ], + [ + "changed", + -14.086514472961426 + ], + [ + "Sta", + -14.086529731750488 + ], + [ + "▁homophobia", + -14.08656120300293 + ], + [ + "▁piecing", + -14.086567878723145 + ], + [ + "▁CenturyLink", + -14.086654663085938 + ], + [ + "▁pianos", + -14.086668968200684 + ], + [ + "▁baggy", + -14.086706161499023 + ], + [ + "▁erasing", + -14.086732864379883 + ], + [ + "▁Circ", + -14.086747169494629 + ], + [ + "▁apprenticeships", + -14.086767196655273 + ], + [ + "Clark", + -14.086808204650879 + ], + [ + "▁Dietrich", + -14.08692741394043 + ], + [ + "aert", + -14.086935997009277 + ], + [ + "▁Goku", + -14.086947441101074 + ], + [ + "▁stan", + -14.0869722366333 + ], + [ + "Factor", + -14.087023735046387 + ], + [ + "▁Rebekah", + -14.087151527404785 + ], + [ + "Shot", + -14.087179183959961 + ], + [ + "▁Spectre", + -14.08719253540039 + ], + [ + "▁Ignition", + -14.087211608886719 + ], + [ + "▁SMC", + -14.08722972869873 + ], + [ + "▁puddles", + -14.087233543395996 + ], + [ + "▁Immunology", + -14.087251663208008 + ], + [ + "▁boldness", + -14.087258338928223 + ], + [ + "iao", + -14.08731746673584 + ], + [ + "▁Lua", + -14.087320327758789 + ], + [ + "NING", + -14.087337493896484 + ], + [ + "▁unleashing", + -14.087343215942383 + ], + [ + "▁ANOTHER", + -14.087373733520508 + ], + [ + "▁Brampton", + -14.08737564086914 + ], + [ + "813", + -14.087386131286621 + ], + [ + "▁patriot", + -14.087386131286621 + ], + [ + "▁mandarin", + -14.087423324584961 + ], + [ + "▁pervert", + -14.087438583374023 + ], + [ + "▁medallion", + -14.087449073791504 + ], + [ + "734", + -14.087468147277832 + ], + [ + "pts", + -14.087469100952148 + ], + [ + "▁fel", + -14.087491989135742 + ], + [ + "▁357", + -14.087501525878906 + ], + [ + "▁Bleu", + -14.087516784667969 + ], + [ + "▁Enchanted", + -14.087553024291992 + ], + [ + "geek", + -14.087584495544434 + ], + [ + "▁stiffer", + -14.087591171264648 + ], + [ + "▁보", + -14.08759593963623 + ], + [ + "▁Cuff", + -14.087613105773926 + ], + [ + "Cart", + -14.087647438049316 + ], + [ + "ее", + -14.08765697479248 + ], + [ + "▁Brink", + -14.087675094604492 + ], + [ + "▁Germ", + -14.087688446044922 + ], + [ + "▁Paragon", + -14.087735176086426 + ], + [ + "▁BASE", + -14.08781623840332 + ], + [ + "▁unearned", + -14.087822914123535 + ], + [ + "738", + -14.087837219238281 + ], + [ + "▁discernible", + -14.08785629272461 + ], + [ + "▁Decay", + -14.087869644165039 + ], + [ + "▁Brow", + -14.087873458862305 + ], + [ + "▁merges", + -14.08787727355957 + ], + [ + "▁recollections", + -14.087894439697266 + ], + [ + "▁pewter", + -14.087909698486328 + ], + [ + "▁Unusual", + -14.087915420532227 + ], + [ + "shaft", + -14.087932586669922 + ], + [ + "▁Athenian", + -14.087935447692871 + ], + [ + "▁Manly", + -14.087970733642578 + ], + [ + "▁Skyrim", + -14.087997436523438 + ], + [ + "▁terminates", + -14.088027000427246 + ], + [ + "▁woefully", + -14.088038444519043 + ], + [ + "▁Felicia", + -14.088067054748535 + ], + [ + "▁blossoming", + -14.088132858276367 + ], + [ + "▁orthogonal", + -14.088191032409668 + ], + [ + "▁NBN", + -14.088191986083984 + ], + [ + "▁ethnographic", + -14.088217735290527 + ], + [ + "▁beau", + -14.08821964263916 + ], + [ + "▁subterranean", + -14.08822250366211 + ], + [ + "Release", + -14.088224411010742 + ], + [ + "▁optometrist", + -14.088271141052246 + ], + [ + "trying", + -14.088301658630371 + ], + [ + "755", + -14.088314056396484 + ], + [ + "▁neg", + -14.088324546813965 + ], + [ + "▁endometriosis", + -14.088335037231445 + ], + [ + "phobia", + -14.08837604522705 + ], + [ + "▁Crystals", + -14.088379859924316 + ], + [ + "▁PostgreSQL", + -14.088388442993164 + ], + [ + "matsu", + -14.088394165039062 + ], + [ + "zb", + -14.088397026062012 + ], + [ + "▁SSR", + -14.088401794433594 + ], + [ + "wis", + -14.088435173034668 + ], + [ + "icio", + -14.088486671447754 + ], + [ + "gating", + -14.088508605957031 + ], + [ + "▁sitemap", + -14.088603019714355 + ], + [ + "▁handlebars", + -14.088614463806152 + ], + [ + "▁warms", + -14.088644027709961 + ], + [ + "▁Lag", + -14.088653564453125 + ], + [ + "▁cola", + -14.088656425476074 + ], + [ + "▁gallbladder", + -14.088667869567871 + ], + [ + "▁bouncer", + -14.08869457244873 + ], + [ + "▁layman", + -14.08871078491211 + ], + [ + "ு", + -14.088722229003906 + ], + [ + "▁Godwin", + -14.08874225616455 + ], + [ + "▁leur", + -14.08874225616455 + ], + [ + "▁thrombosis", + -14.088786125183105 + ], + [ + "▁Reece", + -14.088788986206055 + ], + [ + "▁Sherpa", + -14.088802337646484 + ], + [ + "bark", + -14.08884048461914 + ], + [ + "gé", + -14.088916778564453 + ], + [ + "▁subsets", + -14.08897876739502 + ], + [ + "sequence", + -14.088993072509766 + ], + [ + "▁Douglass", + -14.08901596069336 + ], + [ + "▁denser", + -14.089037895202637 + ], + [ + "tmp", + -14.089112281799316 + ], + [ + "▁AVG", + -14.089149475097656 + ], + [ + "▁thai", + -14.089165687561035 + ], + [ + "▁Godfather", + -14.089201927185059 + ], + [ + "▁Brides", + -14.089216232299805 + ], + [ + "dron", + -14.089237213134766 + ], + [ + "funk", + -14.089265823364258 + ], + [ + "▁compositional", + -14.089360237121582 + ], + [ + "▁Bae", + -14.08940315246582 + ], + [ + "▁belle", + -14.089447021484375 + ], + [ + "Gear", + -14.0894775390625 + ], + [ + "▁devolved", + -14.08948802947998 + ], + [ + "IMS", + -14.089498519897461 + ], + [ + "▁tyrant", + -14.089577674865723 + ], + [ + "▁GEM", + -14.089587211608887 + ], + [ + "ctor", + -14.089613914489746 + ], + [ + "Henry", + -14.089637756347656 + ], + [ + "▁Ramona", + -14.089722633361816 + ], + [ + "▁HGTV", + -14.089761734008789 + ], + [ + "eche", + -14.089764595031738 + ], + [ + "▁grossed", + -14.089813232421875 + ], + [ + "▁butternut", + -14.089826583862305 + ], + [ + "▁enrol", + -14.08984375 + ], + [ + "▁LOCATION", + -14.089876174926758 + ], + [ + "▁cramping", + -14.089885711669922 + ], + [ + "▁Castor", + -14.089897155761719 + ], + [ + "▁haiku", + -14.089977264404297 + ], + [ + "▁POINT", + -14.090042114257812 + ], + [ + "idea", + -14.090093612670898 + ], + [ + "▁CBO", + -14.09013557434082 + ], + [ + "▁QUI", + -14.090155601501465 + ], + [ + "▁piped", + -14.090174674987793 + ], + [ + "▁Clue", + -14.090204238891602 + ], + [ + "▁Alignment", + -14.090214729309082 + ], + [ + "684", + -14.090217590332031 + ], + [ + "▁Sheeran", + -14.090264320373535 + ], + [ + "▁mediocrity", + -14.090271949768066 + ], + [ + "▁reapply", + -14.090330123901367 + ], + [ + "▁Provisional", + -14.090341567993164 + ], + [ + "▁Singaporean", + -14.090341567993164 + ], + [ + "▁BRCA", + -14.090378761291504 + ], + [ + "▁NIS", + -14.09040641784668 + ], + [ + "▁riddle", + -14.090421676635742 + ], + [ + "▁Cinematic", + -14.09048080444336 + ], + [ + "▁eradicated", + -14.090509414672852 + ], + [ + "▁Hud", + -14.090556144714355 + ], + [ + "enfeld", + -14.090557098388672 + ], + [ + "▁Lé", + -14.090597152709961 + ], + [ + "▁Torque", + -14.090603828430176 + ], + [ + "▁Keri", + -14.09062671661377 + ], + [ + "▁gypsy", + -14.090630531311035 + ], + [ + "▁Juniors", + -14.090638160705566 + ], + [ + "▁supermodel", + -14.090651512145996 + ], + [ + "▁sabbatical", + -14.09066390991211 + ], + [ + "▁Balinese", + -14.090670585632324 + ], + [ + "eos", + -14.090689659118652 + ], + [ + "▁biodiesel", + -14.09074878692627 + ], + [ + "▁Probability", + -14.090752601623535 + ], + [ + "▁WMA", + -14.090775489807129 + ], + [ + "vox", + -14.090780258178711 + ], + [ + "▁Spotted", + -14.09083080291748 + ], + [ + "▁Wellbeing", + -14.090848922729492 + ], + [ + "▁575", + -14.09088134765625 + ], + [ + "anic", + -14.090950012207031 + ], + [ + "▁Chil", + -14.091018676757812 + ], + [ + "▁endorses", + -14.091028213500977 + ], + [ + "hne", + -14.09104061126709 + ], + [ + "▁polygon", + -14.091054916381836 + ], + [ + "▁assessor", + -14.091086387634277 + ], + [ + "tzel", + -14.091133117675781 + ], + [ + "▁crossbar", + -14.091144561767578 + ], + [ + "▁Slovenian", + -14.09117603302002 + ], + [ + "▁penetrates", + -14.091201782226562 + ], + [ + "▁Tobin", + -14.09123420715332 + ], + [ + "▁pug", + -14.091275215148926 + ], + [ + "gau", + -14.091315269470215 + ], + [ + "hau", + -14.091323852539062 + ], + [ + "▁maximizes", + -14.091329574584961 + ], + [ + "▁Cros", + -14.09133243560791 + ], + [ + "▁349", + -14.091333389282227 + ], + [ + "ง", + -14.09134292602539 + ], + [ + "ล", + -14.091353416442871 + ], + [ + "▁pout", + -14.091392517089844 + ], + [ + "▁strollers", + -14.091411590576172 + ], + [ + "▁Beasts", + -14.091431617736816 + ], + [ + "▁Laughing", + -14.091495513916016 + ], + [ + "▁capitals", + -14.091550827026367 + ], + [ + "awesome", + -14.091588020324707 + ], + [ + "▁infringed", + -14.091605186462402 + ], + [ + "▁Theorem", + -14.091620445251465 + ], + [ + "elder", + -14.091669082641602 + ], + [ + "▁superiors", + -14.09167766571045 + ], + [ + "▁legged", + -14.09168815612793 + ], + [ + "▁tyrosine", + -14.091710090637207 + ], + [ + "566", + -14.09172534942627 + ], + [ + "Trader", + -14.091769218444824 + ], + [ + "Performance", + -14.091784477233887 + ], + [ + "▁Lorenz", + -14.091787338256836 + ], + [ + "▁Stopping", + -14.091808319091797 + ], + [ + "▁Mw", + -14.091850280761719 + ], + [ + "intelligence", + -14.091866493225098 + ], + [ + "▁TAM", + -14.091866493225098 + ], + [ + "▁Idle", + -14.091876983642578 + ], + [ + "▁Manipur", + -14.091897010803223 + ], + [ + "outlet", + -14.091958045959473 + ], + [ + "▁Dobson", + -14.091987609863281 + ], + [ + "▁cervix", + -14.092018127441406 + ], + [ + "acetyl", + -14.092055320739746 + ], + [ + "▁disassemble", + -14.092055320739746 + ], + [ + "▁ligands", + -14.09207534790039 + ], + [ + "▁Timmy", + -14.09210205078125 + ], + [ + "▁Prometheus", + -14.092158317565918 + ], + [ + "beg", + -14.092169761657715 + ], + [ + "bour", + -14.09218692779541 + ], + [ + "▁aristocracy", + -14.092190742492676 + ], + [ + "▁Turbine", + -14.092195510864258 + ], + [ + "uation", + -14.092209815979004 + ], + [ + "▁loudspeaker", + -14.09223461151123 + ], + [ + "minator", + -14.092294692993164 + ], + [ + "SOL", + -14.092297554016113 + ], + [ + "▁accomplishes", + -14.09230899810791 + ], + [ + "asset", + -14.092310905456543 + ], + [ + "▁Contributing", + -14.09233570098877 + ], + [ + "tures", + -14.092357635498047 + ], + [ + "▁supercomputer", + -14.092424392700195 + ], + [ + "▁Fayette", + -14.092442512512207 + ], + [ + "▁Cabot", + -14.092501640319824 + ], + [ + "▁discarding", + -14.092598915100098 + ], + [ + "▁substantiate", + -14.092613220214844 + ], + [ + "▁omen", + -14.092629432678223 + ], + [ + "▁plagues", + -14.092630386352539 + ], + [ + "cough", + -14.09270191192627 + ], + [ + "▁sojourn", + -14.092728614807129 + ], + [ + "Classic", + -14.09273624420166 + ], + [ + "▁chris", + -14.092795372009277 + ], + [ + "▁Steer", + -14.092805862426758 + ], + [ + "▁Recep", + -14.092814445495605 + ], + [ + "▁Ame", + -14.092817306518555 + ], + [ + "▁skeptic", + -14.092970848083496 + ], + [ + "▁Manfred", + -14.093005180358887 + ], + [ + "▁meetup", + -14.093024253845215 + ], + [ + "▁generalization", + -14.093026161193848 + ], + [ + "▁Antiques", + -14.093035697937012 + ], + [ + "▁Smollett", + -14.093047142028809 + ], + [ + "shoes", + -14.093062400817871 + ], + [ + "▁TAX", + -14.093073844909668 + ], + [ + "Morning", + -14.093074798583984 + ], + [ + "569", + -14.093092918395996 + ], + [ + "▁hexagonal", + -14.093116760253906 + ], + [ + "apu", + -14.093140602111816 + ], + [ + "▁Upholstered", + -14.09314250946045 + ], + [ + "▁Teo", + -14.093181610107422 + ], + [ + "readable", + -14.093249320983887 + ], + [ + "▁Tajikistan", + -14.093266487121582 + ], + [ + "▁Clam", + -14.093274116516113 + ], + [ + "lange", + -14.093284606933594 + ], + [ + "▁oceanic", + -14.093287467956543 + ], + [ + "▁BAY", + -14.09331226348877 + ], + [ + "▁Translated", + -14.093317985534668 + ], + [ + "▁Lager", + -14.09338665008545 + ], + [ + "▁Loeb", + -14.093419075012207 + ], + [ + "▁telegram", + -14.093448638916016 + ], + [ + "▁Jeanette", + -14.093460083007812 + ], + [ + "makes", + -14.093477249145508 + ], + [ + "▁Mandi", + -14.093522071838379 + ], + [ + "▁Optimize", + -14.09354019165039 + ], + [ + "▁anthologies", + -14.093607902526855 + ], + [ + "Flight", + -14.093609809875488 + ], + [ + "▁nobles", + -14.093622207641602 + ], + [ + "▁ib", + -14.093635559082031 + ], + [ + "▁tremble", + -14.093681335449219 + ], + [ + "▁APPLY", + -14.0936861038208 + ], + [ + "▁Arjun", + -14.0936861038208 + ], + [ + "emon", + -14.093687057495117 + ], + [ + "▁sweetly", + -14.093714714050293 + ], + [ + "▁Breeding", + -14.093728065490723 + ], + [ + "▁patted", + -14.093757629394531 + ], + [ + "▁ح", + -14.09383487701416 + ], + [ + "Technology", + -14.093855857849121 + ], + [ + "▁Marques", + -14.093877792358398 + ], + [ + "▁Bhopal", + -14.093879699707031 + ], + [ + "Hair", + -14.093892097473145 + ], + [ + "▁asymmetry", + -14.093914031982422 + ], + [ + "▁Hir", + -14.093917846679688 + ], + [ + "▁Interdisciplinary", + -14.093924522399902 + ], + [ + "▁Comedian", + -14.093965530395508 + ], + [ + "▁Farley", + -14.093985557556152 + ], + [ + "▁sherry", + -14.093992233276367 + ], + [ + "▁Geometric", + -14.094009399414062 + ], + [ + "▁abject", + -14.094010353088379 + ], + [ + "jani", + -14.09407901763916 + ], + [ + "▁incapacitated", + -14.094108581542969 + ], + [ + "▁Shiraz", + -14.094136238098145 + ], + [ + "▁wayward", + -14.094136238098145 + ], + [ + "▁Eternity", + -14.094193458557129 + ], + [ + "Sale", + -14.094252586364746 + ], + [ + "▁Resolutions", + -14.094303131103516 + ], + [ + "▁toil", + -14.094375610351562 + ], + [ + "▁glob", + -14.09441089630127 + ], + [ + "▁Stylist", + -14.094414710998535 + ], + [ + "▁swelled", + -14.094415664672852 + ], + [ + "ジ", + -14.09443187713623 + ], + [ + "▁glycogen", + -14.094482421875 + ], + [ + "▁cinch", + -14.094513893127441 + ], + [ + "▁1833", + -14.09453296661377 + ], + [ + "IBLE", + -14.094533920288086 + ], + [ + "▁transact", + -14.09459400177002 + ], + [ + "▁Nebula", + -14.094645500183105 + ], + [ + "▁Zipper", + -14.094656944274902 + ], + [ + "▁primordial", + -14.0946683883667 + ], + [ + "▁DeV", + -14.094673156738281 + ], + [ + "▁Elderly", + -14.094730377197266 + ], + [ + "ADD", + -14.094758987426758 + ], + [ + "chus", + -14.094854354858398 + ], + [ + "teria", + -14.09487533569336 + ], + [ + "741", + -14.094921112060547 + ], + [ + "nathan", + -14.094924926757812 + ], + [ + "▁Rami", + -14.095050811767578 + ], + [ + "▁Marko", + -14.095062255859375 + ], + [ + "▁Byte", + -14.095070838928223 + ], + [ + "▁ASL", + -14.095072746276855 + ], + [ + "Users", + -14.095097541809082 + ], + [ + "▁Impala", + -14.095133781433105 + ], + [ + "▁Equations", + -14.095161437988281 + ], + [ + "▁Berwick", + -14.095186233520508 + ], + [ + "▁Termite", + -14.095190048217773 + ], + [ + "▁genealogical", + -14.095202445983887 + ], + [ + "browser", + -14.09522533416748 + ], + [ + "▁Bobbi", + -14.095270156860352 + ], + [ + "lima", + -14.095295906066895 + ], + [ + "rton", + -14.095307350158691 + ], + [ + "cca", + -14.095329284667969 + ], + [ + "▁TTC", + -14.09537410736084 + ], + [ + "▁uninformed", + -14.095376968383789 + ], + [ + "▁chiropractors", + -14.095428466796875 + ], + [ + "RAY", + -14.095431327819824 + ], + [ + "▁λ", + -14.095441818237305 + ], + [ + "miles", + -14.095465660095215 + ], + [ + "▁bulldog", + -14.095486640930176 + ], + [ + "▁giga", + -14.095536231994629 + ], + [ + "beard", + -14.095582008361816 + ], + [ + "▁Firth", + -14.095585823059082 + ], + [ + "▁Sweep", + -14.095590591430664 + ], + [ + "▁Thriller", + -14.09562873840332 + ], + [ + "feature", + -14.09564208984375 + ], + [ + "▁Ascot", + -14.0956449508667 + ], + [ + "▁untrained", + -14.095651626586914 + ], + [ + "789", + -14.095664978027344 + ], + [ + "▁Chefs", + -14.095711708068848 + ], + [ + "▁Chromecast", + -14.095760345458984 + ], + [ + "▁freelancing", + -14.095763206481934 + ], + [ + "heated", + -14.095788955688477 + ], + [ + "▁Altogether", + -14.095850944519043 + ], + [ + "Sugar", + -14.095888137817383 + ], + [ + "▁Everglades", + -14.095925331115723 + ], + [ + "▁Statutes", + -14.095927238464355 + ], + [ + "▁Kav", + -14.095931053161621 + ], + [ + "▁Weigh", + -14.095959663391113 + ], + [ + "▁whims", + -14.095970153808594 + ], + [ + "▁Simeon", + -14.095977783203125 + ], + [ + "▁domes", + -14.095979690551758 + ], + [ + "huis", + -14.095989227294922 + ], + [ + "▁Tenerife", + -14.095990180969238 + ], + [ + "dean", + -14.09599494934082 + ], + [ + "▁lapses", + -14.096014022827148 + ], + [ + "▁Shreveport", + -14.096061706542969 + ], + [ + "AMI", + -14.096101760864258 + ], + [ + "bli", + -14.096132278442383 + ], + [ + "▁dung", + -14.096220016479492 + ], + [ + "▁reshaping", + -14.096220970153809 + ], + [ + "▁phenotypic", + -14.096251487731934 + ], + [ + "▁Chaplain", + -14.096271514892578 + ], + [ + "▁rapture", + -14.096292495727539 + ], + [ + "▁FINRA", + -14.096344947814941 + ], + [ + "627", + -14.09641170501709 + ], + [ + "▁PROPERTY", + -14.096417427062988 + ], + [ + "▁reproducible", + -14.096504211425781 + ], + [ + "▁bungalows", + -14.0965576171875 + ], + [ + "Tags", + -14.09656047821045 + ], + [ + "fied", + -14.096592903137207 + ], + [ + "▁Ruin", + -14.096595764160156 + ], + [ + "▁Prussian", + -14.096597671508789 + ], + [ + "▁ren", + -14.096609115600586 + ], + [ + "▁Dummies", + -14.096617698669434 + ], + [ + "▁Osman", + -14.09661865234375 + ], + [ + "▁valance", + -14.096643447875977 + ], + [ + "▁contoured", + -14.096653938293457 + ], + [ + "spectrum", + -14.09667682647705 + ], + [ + "▁Lipstick", + -14.096708297729492 + ], + [ + "RIC", + -14.096741676330566 + ], + [ + "▁Beal", + -14.096823692321777 + ], + [ + "▁WrestleMania", + -14.09688663482666 + ], + [ + "▁actuators", + -14.096893310546875 + ], + [ + "▁Santander", + -14.096927642822266 + ], + [ + "▁Chengdu", + -14.096946716308594 + ], + [ + "▁execs", + -14.09695816040039 + ], + [ + "▁Kelli", + -14.09699535369873 + ], + [ + "▁Tou", + -14.097046852111816 + ], + [ + "▁barometer", + -14.097051620483398 + ], + [ + "▁Hira", + -14.097099304199219 + ], + [ + "bbin", + -14.09714126586914 + ], + [ + "▁Pomona", + -14.097171783447266 + ], + [ + "Exchange", + -14.097187042236328 + ], + [ + "▁Trem", + -14.097234725952148 + ], + [ + "▁flourishes", + -14.097251892089844 + ], + [ + "umen", + -14.097277641296387 + ], + [ + "▁HOLD", + -14.097280502319336 + ], + [ + "▁yanked", + -14.097299575805664 + ], + [ + "chrom", + -14.097323417663574 + ], + [ + "▁Agility", + -14.097378730773926 + ], + [ + "▁WELCOME", + -14.097394943237305 + ], + [ + "ried", + -14.097434997558594 + ], + [ + "▁reassess", + -14.097455024719238 + ], + [ + "▁CTC", + -14.097471237182617 + ], + [ + "▁Priya", + -14.097484588623047 + ], + [ + "▁Gibb", + -14.097489356994629 + ], + [ + "▁sandpaper", + -14.09752082824707 + ], + [ + "021", + -14.097522735595703 + ], + [ + "Eco", + -14.097554206848145 + ], + [ + "▁trad", + -14.097554206848145 + ], + [ + "▁mysticism", + -14.097555160522461 + ], + [ + "▁Beasley", + -14.097565650939941 + ], + [ + "▁prologue", + -14.09756851196289 + ], + [ + "▁glared", + -14.097593307495117 + ], + [ + "▁Spaghetti", + -14.097594261169434 + ], + [ + "▁robo", + -14.097620964050293 + ], + [ + "▁Latex", + -14.097623825073242 + ], + [ + "▁nude", + -14.097655296325684 + ], + [ + "▁ferns", + -14.09769058227539 + ], + [ + "779", + -14.097711563110352 + ], + [ + "Anyone", + -14.097725868225098 + ], + [ + "▁bodyweight", + -14.097736358642578 + ], + [ + "▁introspective", + -14.097742080688477 + ], + [ + "▁bulkhead", + -14.097790718078613 + ], + [ + "ppel", + -14.097805976867676 + ], + [ + "▁지", + -14.097831726074219 + ], + [ + "▁Sequoia", + -14.097833633422852 + ], + [ + "619", + -14.097906112670898 + ], + [ + "▁DMCA", + -14.09793472290039 + ], + [ + "utch", + -14.09798526763916 + ], + [ + "Euro", + -14.098050117492676 + ], + [ + "redo", + -14.098054885864258 + ], + [ + "▁Goth", + -14.098099708557129 + ], + [ + "arians", + -14.098123550415039 + ], + [ + "▁malfunctions", + -14.098145484924316 + ], + [ + "▁Intuitive", + -14.098167419433594 + ], + [ + "▁campaigner", + -14.098214149475098 + ], + [ + "▁shameless", + -14.098227500915527 + ], + [ + "▁427", + -14.098233222961426 + ], + [ + "▁CBP", + -14.098366737365723 + ], + [ + "▁motels", + -14.098408699035645 + ], + [ + "dap", + -14.098411560058594 + ], + [ + "▁conjugate", + -14.098455429077148 + ], + [ + "ARM", + -14.098457336425781 + ], + [ + "▁caterer", + -14.09847640991211 + ], + [ + "▁sorrows", + -14.098494529724121 + ], + [ + "▁Britannia", + -14.098526000976562 + ], + [ + "▁triglycerides", + -14.098541259765625 + ], + [ + "▁browns", + -14.098581314086914 + ], + [ + "▁FOIA", + -14.098586082458496 + ], + [ + "▁Augmented", + -14.098731994628906 + ], + [ + "blogs", + -14.098771095275879 + ], + [ + "▁terminally", + -14.09886360168457 + ], + [ + "▁calc", + -14.098876953125 + ], + [ + "▁Pacquiao", + -14.098953247070312 + ], + [ + "▁sneezing", + -14.099013328552246 + ], + [ + "substantial", + -14.099041938781738 + ], + [ + "▁derelict", + -14.099047660827637 + ], + [ + "▁cockroaches", + -14.09908676147461 + ], + [ + "▁leaped", + -14.099141120910645 + ], + [ + "▁Foreclosure", + -14.099181175231934 + ], + [ + "pity", + -14.099239349365234 + ], + [ + "▁preheat", + -14.099284172058105 + ], + [ + "▁humanist", + -14.099289894104004 + ], + [ + "sker", + -14.099295616149902 + ], + [ + "▁partitioning", + -14.099361419677734 + ], + [ + "amin", + -14.099363327026367 + ], + [ + "Miller", + -14.099379539489746 + ], + [ + "▁Episodes", + -14.099386215209961 + ], + [ + "▁GFP", + -14.099392890930176 + ], + [ + "Rick", + -14.09943962097168 + ], + [ + "▁categorization", + -14.099446296691895 + ], + [ + "▁EXPERIENCE", + -14.099468231201172 + ], + [ + "ducible", + -14.099482536315918 + ], + [ + "▁swab", + -14.099518775939941 + ], + [ + "▁Barley", + -14.099607467651367 + ], + [ + "teau", + -14.099655151367188 + ], + [ + "ить", + -14.099672317504883 + ], + [ + "653", + -14.099685668945312 + ], + [ + "examine", + -14.099685668945312 + ], + [ + "hhhh", + -14.099699974060059 + ], + [ + "▁Aust", + -14.099735260009766 + ], + [ + "644", + -14.099757194519043 + ], + [ + "▁Panzer", + -14.099775314331055 + ], + [ + "▁Janis", + -14.099800109863281 + ], + [ + "▁civility", + -14.09980583190918 + ], + [ + "▁comprar", + -14.099863052368164 + ], + [ + "▁growled", + -14.099871635437012 + ], + [ + "▁STEAM", + -14.099967956542969 + ], + [ + "seconds", + -14.09997844696045 + ], + [ + "▁Honourable", + -14.099979400634766 + ], + [ + "ively", + -14.099983215332031 + ], + [ + "▁Kyiv", + -14.099991798400879 + ], + [ + "▁Grizzly", + -14.10000991821289 + ], + [ + "oose", + -14.100128173828125 + ], + [ + "▁livable", + -14.100231170654297 + ], + [ + "▁multifamily", + -14.100238800048828 + ], + [ + "lew", + -14.100251197814941 + ], + [ + "▁CUR", + -14.100251197814941 + ], + [ + "▁Morrissey", + -14.100252151489258 + ], + [ + "intuitive", + -14.100279808044434 + ], + [ + "▁Karn", + -14.100285530090332 + ], + [ + "▁cette", + -14.100293159484863 + ], + [ + "▁STE", + -14.100324630737305 + ], + [ + "▁revolutionaries", + -14.100379943847656 + ], + [ + "Command", + -14.100398063659668 + ], + [ + "▁Danville", + -14.100398063659668 + ], + [ + "▁Trusts", + -14.100431442260742 + ], + [ + "▁lichen", + -14.100475311279297 + ], + [ + "scripts", + -14.100512504577637 + ], + [ + "KF", + -14.100556373596191 + ], + [ + "▁Cantonese", + -14.100613594055176 + ], + [ + "▁Benoit", + -14.100675582885742 + ], + [ + "▁lasix", + -14.100712776184082 + ], + [ + "▁OW", + -14.100729942321777 + ], + [ + "▁pentru", + -14.100730895996094 + ], + [ + "▁Morley", + -14.100753784179688 + ], + [ + "▁inhuman", + -14.100804328918457 + ], + [ + "▁abnormality", + -14.100882530212402 + ], + [ + "▁Regime", + -14.100902557373047 + ], + [ + "shing", + -14.100905418395996 + ], + [ + "554", + -14.100926399230957 + ], + [ + "▁Caffeine", + -14.100950241088867 + ], + [ + "▁lollipop", + -14.100964546203613 + ], + [ + "▁Rena", + -14.100998878479004 + ], + [ + "▁undivided", + -14.1010160446167 + ], + [ + "▁raven", + -14.101029396057129 + ], + [ + "▁Ghi", + -14.101061820983887 + ], + [ + "▁Donny", + -14.101146697998047 + ], + [ + "▁Collectors", + -14.101174354553223 + ], + [ + "му", + -14.101213455200195 + ], + [ + "imation", + -14.101228713989258 + ], + [ + "▁Brigadier", + -14.10123062133789 + ], + [ + "Salem", + -14.101242065429688 + ], + [ + "preserved", + -14.10129165649414 + ], + [ + "▁Santorini", + -14.101309776306152 + ], + [ + "ibe", + -14.101344108581543 + ], + [ + "481", + -14.101358413696289 + ], + [ + "▁Stoneman", + -14.101404190063477 + ], + [ + "fet", + -14.10152530670166 + ], + [ + "▁willfully", + -14.101699829101562 + ], + [ + "▁Lakshmi", + -14.101728439331055 + ], + [ + "▁Tubes", + -14.101780891418457 + ], + [ + "した", + -14.101816177368164 + ], + [ + "▁moulds", + -14.101819038391113 + ], + [ + "▁Bottles", + -14.101826667785645 + ], + [ + "▁Fremantle", + -14.101844787597656 + ], + [ + "ει", + -14.101875305175781 + ], + [ + "▁Bigfoot", + -14.101897239685059 + ], + [ + "battle", + -14.101902961730957 + ], + [ + "▁posterity", + -14.101920127868652 + ], + [ + "▁paraffin", + -14.10196304321289 + ], + [ + "▁undoing", + -14.10197639465332 + ], + [ + "▁Gardener", + -14.10197925567627 + ], + [ + "tablet", + -14.101996421813965 + ], + [ + "▁Tulane", + -14.102030754089355 + ], + [ + "▁amyloid", + -14.102046012878418 + ], + [ + "▁recyclables", + -14.102049827575684 + ], + [ + "▁Pellet", + -14.102079391479492 + ], + [ + "▁lakhs", + -14.102082252502441 + ], + [ + "▁DTS", + -14.102090835571289 + ], + [ + "reviews", + -14.102094650268555 + ], + [ + "▁cle", + -14.102179527282715 + ], + [ + "▁Aux", + -14.10218334197998 + ], + [ + "▁creases", + -14.10218334197998 + ], + [ + "ول", + -14.10220718383789 + ], + [ + "▁Hotspur", + -14.102228164672852 + ], + [ + "▁Pushing", + -14.102263450622559 + ], + [ + "Kan", + -14.102266311645508 + ], + [ + "582", + -14.10228443145752 + ], + [ + "▁Barth", + -14.102286338806152 + ], + [ + "Sara", + -14.102334976196289 + ], + [ + "▁counterpoint", + -14.102408409118652 + ], + [ + "sip", + -14.102431297302246 + ], + [ + "▁dynamite", + -14.102439880371094 + ], + [ + "avar", + -14.102486610412598 + ], + [ + "▁quarries", + -14.102507591247559 + ], + [ + "▁FEEL", + -14.102529525756836 + ], + [ + "▁retriever", + -14.102532386779785 + ], + [ + "uary", + -14.10255241394043 + ], + [ + "boats", + -14.102631568908691 + ], + [ + "▁Talmud", + -14.10265064239502 + ], + [ + "847", + -14.102659225463867 + ], + [ + "Freedom", + -14.102747917175293 + ], + [ + "▁Ricci", + -14.102775573730469 + ], + [ + "▁inferences", + -14.102779388427734 + ], + [ + "▁Mace", + -14.102968215942383 + ], + [ + "linda", + -14.10301399230957 + ], + [ + "▁Piers", + -14.103031158447266 + ], + [ + "▁Uma", + -14.10306453704834 + ], + [ + "pina", + -14.103086471557617 + ], + [ + "▁individualism", + -14.1030912399292 + ], + [ + "▁Flagstaff", + -14.103140830993652 + ], + [ + "▁gushing", + -14.103166580200195 + ], + [ + "idade", + -14.103169441223145 + ], + [ + "▁Sana", + -14.103243827819824 + ], + [ + "▁Aud", + -14.103257179260254 + ], + [ + "▁doggy", + -14.103294372558594 + ], + [ + "▁exhibitor", + -14.10335636138916 + ], + [ + "▁Oba", + -14.103377342224121 + ], + [ + "▁Sut", + -14.103381156921387 + ], + [ + "▁Glide", + -14.103426933288574 + ], + [ + "493", + -14.103513717651367 + ], + [ + "538", + -14.103522300720215 + ], + [ + "DATA", + -14.103523254394531 + ], + [ + "▁Madeira", + -14.10352611541748 + ], + [ + "resource", + -14.10355281829834 + ], + [ + "▁ic", + -14.103571891784668 + ], + [ + "retta", + -14.103575706481934 + ], + [ + "▁Belinda", + -14.103601455688477 + ], + [ + "▁Plat", + -14.103618621826172 + ], + [ + "others", + -14.103646278381348 + ], + [ + "▁Crusade", + -14.103652000427246 + ], + [ + "aol", + -14.103673934936523 + ], + [ + "▁rowdy", + -14.103693008422852 + ], + [ + "▁Sl", + -14.103841781616211 + ], + [ + "▁Fon", + -14.103862762451172 + ], + [ + "▁incisions", + -14.103973388671875 + ], + [ + "729", + -14.104013442993164 + ], + [ + "▁Licht", + -14.104022979736328 + ], + [ + "643", + -14.104043006896973 + ], + [ + "▁deference", + -14.104049682617188 + ], + [ + "524", + -14.1040620803833 + ], + [ + "iani", + -14.104077339172363 + ], + [ + "detail", + -14.104086875915527 + ], + [ + "▁Aiken", + -14.104116439819336 + ], + [ + "ohm", + -14.104134559631348 + ], + [ + "▁Janus", + -14.104214668273926 + ], + [ + "▁chromatin", + -14.104239463806152 + ], + [ + "▁Saloon", + -14.10425090789795 + ], + [ + "delete", + -14.104269027709961 + ], + [ + "▁zoomed", + -14.104307174682617 + ], + [ + "urg", + -14.104325294494629 + ], + [ + "▁Brokerage", + -14.104339599609375 + ], + [ + "▁pips", + -14.104364395141602 + ], + [ + "▁saree", + -14.104366302490234 + ], + [ + "▁hydroponic", + -14.104384422302246 + ], + [ + "▁Pharmacology", + -14.104414939880371 + ], + [ + "▁Ignite", + -14.10443115234375 + ], + [ + "▁inconclusive", + -14.104438781738281 + ], + [ + "▁Optimus", + -14.104474067687988 + ], + [ + "stricken", + -14.104488372802734 + ], + [ + "▁VK", + -14.10451889038086 + ], + [ + "▁subtropical", + -14.10457706451416 + ], + [ + "▁VALUE", + -14.104596138000488 + ], + [ + "▁Termination", + -14.104674339294434 + ], + [ + "▁chiller", + -14.104711532592773 + ], + [ + "▁JavaScript", + -14.104752540588379 + ], + [ + "▁Riverdale", + -14.104766845703125 + ], + [ + "▁ohm", + -14.104798316955566 + ], + [ + "▁Kie", + -14.104820251464844 + ], + [ + "▁MRC", + -14.104832649230957 + ], + [ + "▁Martina", + -14.104862213134766 + ], + [ + "▁Rectangular", + -14.104864120483398 + ], + [ + "TAG", + -14.10490894317627 + ], + [ + "payday", + -14.104911804199219 + ], + [ + "▁Verlag", + -14.104920387268066 + ], + [ + "▁Entre", + -14.104944229125977 + ], + [ + "▁deactivated", + -14.105093002319336 + ], + [ + "▁alex", + -14.105101585388184 + ], + [ + "▁fondant", + -14.105133056640625 + ], + [ + "▁Phe", + -14.105185508728027 + ], + [ + "▁Inno", + -14.105186462402344 + ], + [ + "tala", + -14.10518741607666 + ], + [ + "▁emblematic", + -14.105212211608887 + ], + [ + "ERO", + -14.105230331420898 + ], + [ + "▁mah", + -14.105260848999023 + ], + [ + "rescue", + -14.105284690856934 + ], + [ + "rive", + -14.105380058288574 + ], + [ + "▁Inflatable", + -14.105392456054688 + ], + [ + "026", + -14.105425834655762 + ], + [ + "puri", + -14.105443000793457 + ], + [ + "▁Youngstown", + -14.105443000793457 + ], + [ + "debit", + -14.105475425720215 + ], + [ + "▁forgery", + -14.105478286743164 + ], + [ + "▁disapprove", + -14.105499267578125 + ], + [ + "Optional", + -14.105507850646973 + ], + [ + "uid", + -14.105563163757324 + ], + [ + "▁diagonally", + -14.105587005615234 + ], + [ + "▁enamored", + -14.10559368133545 + ], + [ + "▁Proteins", + -14.105595588684082 + ], + [ + "chef", + -14.10561752319336 + ], + [ + "▁indica", + -14.105705261230469 + ], + [ + "onis", + -14.105717658996582 + ], + [ + "Uh", + -14.10573959350586 + ], + [ + "aggio", + -14.105779647827148 + ], + [ + "▁Lora", + -14.105793952941895 + ], + [ + "▁impatience", + -14.105820655822754 + ], + [ + "gathering", + -14.105822563171387 + ], + [ + "Kelly", + -14.105834007263184 + ], + [ + "▁Remarkable", + -14.105842590332031 + ], + [ + "▁Accessory", + -14.105844497680664 + ], + [ + "▁Queenstown", + -14.105907440185547 + ], + [ + "▁Dialog", + -14.10593032836914 + ], + [ + "▁OX", + -14.10594367980957 + ], + [ + "▁SSE", + -14.105953216552734 + ], + [ + "▁complicity", + -14.106054306030273 + ], + [ + "▁contradicted", + -14.10612964630127 + ], + [ + "▁perceives", + -14.10617446899414 + ], + [ + "▁Uttarakhand", + -14.106210708618164 + ], + [ + "▁consular", + -14.106220245361328 + ], + [ + "▁countering", + -14.106264114379883 + ], + [ + "▁718", + -14.106280326843262 + ], + [ + "▁simulators", + -14.106318473815918 + ], + [ + "電", + -14.106328010559082 + ], + [ + "▁Bane", + -14.10633659362793 + ], + [ + "▁Mahatma", + -14.10634708404541 + ], + [ + "▁Coated", + -14.106350898742676 + ], + [ + "nich", + -14.10637092590332 + ], + [ + "▁stalling", + -14.106386184692383 + ], + [ + "drome", + -14.10641860961914 + ], + [ + "대", + -14.10642147064209 + ], + [ + "▁CVD", + -14.106427192687988 + ], + [ + "▁heath", + -14.106500625610352 + ], + [ + "▁licorice", + -14.106532096862793 + ], + [ + "boe", + -14.106569290161133 + ], + [ + "▁SERIES", + -14.10658073425293 + ], + [ + "▁Nitrogen", + -14.106619834899902 + ], + [ + "▁bagging", + -14.106630325317383 + ], + [ + "▁valiant", + -14.106637954711914 + ], + [ + "umble", + -14.106650352478027 + ], + [ + "▁FORT", + -14.106651306152344 + ], + [ + "▁Gerrard", + -14.106730461120605 + ], + [ + "▁Lipo", + -14.106736183166504 + ], + [ + "▁Recognized", + -14.106772422790527 + ], + [ + "Bag", + -14.106795310974121 + ], + [ + "▁Alden", + -14.106803894042969 + ], + [ + "iera", + -14.106823921203613 + ], + [ + "▁harmonize", + -14.106833457946777 + ], + [ + "▁Conception", + -14.106864929199219 + ], + [ + "▁TITLE", + -14.106877326965332 + ], + [ + "▁Arri", + -14.106949806213379 + ], + [ + "▁preclinical", + -14.106962203979492 + ], + [ + "▁priming", + -14.107123374938965 + ], + [ + "nnett", + -14.10713005065918 + ], + [ + "▁Uncertainty", + -14.107139587402344 + ], + [ + "▁congregate", + -14.107141494750977 + ], + [ + "▁dynamical", + -14.107151985168457 + ], + [ + "743", + -14.107183456420898 + ], + [ + "▁footwork", + -14.10718822479248 + ], + [ + "▁cheetah", + -14.107192993164062 + ], + [ + "leaving", + -14.107197761535645 + ], + [ + "tely", + -14.107208251953125 + ], + [ + "▁tapering", + -14.107215881347656 + ], + [ + "会", + -14.107222557067871 + ], + [ + "ione", + -14.107236862182617 + ], + [ + "▁consultative", + -14.107256889343262 + ], + [ + "solve", + -14.107339859008789 + ], + [ + "▁soapy", + -14.107434272766113 + ], + [ + "▁zigzag", + -14.107442855834961 + ], + [ + "▁bli", + -14.10744857788086 + ], + [ + "heal", + -14.107450485229492 + ], + [ + "▁cognizant", + -14.107455253601074 + ], + [ + "Serv", + -14.107499122619629 + ], + [ + "▁Outcome", + -14.107499122619629 + ], + [ + "muscle", + -14.1076078414917 + ], + [ + "gles", + -14.107627868652344 + ], + [ + "▁EFF", + -14.107630729675293 + ], + [ + "Glass", + -14.107683181762695 + ], + [ + "▁conversely", + -14.107759475708008 + ], + [ + "fuse", + -14.107778549194336 + ], + [ + "▁leaching", + -14.107821464538574 + ], + [ + "▁Gord", + -14.1078519821167 + ], + [ + "▁rac", + -14.107868194580078 + ], + [ + "▁Nadine", + -14.107876777648926 + ], + [ + "▁ethnicities", + -14.107894897460938 + ], + [ + "▁Definitions", + -14.10792064666748 + ], + [ + "▁datasheet", + -14.107931137084961 + ], + [ + "▁Skipper", + -14.107933044433594 + ], + [ + "▁encampment", + -14.107935905456543 + ], + [ + "065", + -14.107976913452148 + ], + [ + "▁chamomile", + -14.107979774475098 + ], + [ + "▁Fools", + -14.10801887512207 + ], + [ + "▁disarray", + -14.108087539672852 + ], + [ + "sql", + -14.108138084411621 + ], + [ + "▁Ronda", + -14.108176231384277 + ], + [ + "▁Texts", + -14.108179092407227 + ], + [ + "gga", + -14.108211517333984 + ], + [ + "▁Alcatel", + -14.108214378356934 + ], + [ + "▁precio", + -14.108424186706543 + ], + [ + "▁Janata", + -14.108434677124023 + ], + [ + "▁Kinect", + -14.108458518981934 + ], + [ + "▁enterprising", + -14.108498573303223 + ], + [ + "▁Creme", + -14.108503341674805 + ], + [ + "▁♦", + -14.108551025390625 + ], + [ + "▁Announced", + -14.10856819152832 + ], + [ + "Stick", + -14.108590126037598 + ], + [ + "extreme", + -14.108606338500977 + ], + [ + "▁cuddling", + -14.108613014221191 + ], + [ + "▁Dime", + -14.108668327331543 + ], + [ + "▁Flavour", + -14.108673095703125 + ], + [ + "ellar", + -14.108688354492188 + ], + [ + "▁Fenway", + -14.108734130859375 + ], + [ + "▁424", + -14.10881519317627 + ], + [ + "▁shallots", + -14.108896255493164 + ], + [ + "▁reprise", + -14.108926773071289 + ], + [ + "▁LK", + -14.108928680419922 + ], + [ + "▁Prentice", + -14.108952522277832 + ], + [ + "▁inhaling", + -14.108954429626465 + ], + [ + "enc", + -14.10896110534668 + ], + [ + "▁chromatic", + -14.108970642089844 + ], + [ + "▁Snell", + -14.10901165008545 + ], + [ + "▁subtypes", + -14.109020233154297 + ], + [ + "▁Tw", + -14.109068870544434 + ], + [ + "▁roaster", + -14.109081268310547 + ], + [ + "▁Vall", + -14.109084129333496 + ], + [ + "▁plowed", + -14.109137535095215 + ], + [ + "tral", + -14.109152793884277 + ], + [ + "Bring", + -14.109227180480957 + ], + [ + "▁Ferrell", + -14.109304428100586 + ], + [ + "▁predisposition", + -14.109335899353027 + ], + [ + "▁Razer", + -14.109369277954102 + ], + [ + "BJ", + -14.109381675720215 + ], + [ + "LW", + -14.109393119812012 + ], + [ + "▁impenetrable", + -14.109417915344238 + ], + [ + "▁scariest", + -14.109502792358398 + ], + [ + "▁Median", + -14.109509468078613 + ], + [ + "▁redistribute", + -14.109519958496094 + ], + [ + "▁erstwhile", + -14.109522819519043 + ], + [ + "▁Worthington", + -14.109535217285156 + ], + [ + "Psalm", + -14.109601020812988 + ], + [ + "▁Maserati", + -14.109601020812988 + ], + [ + "▁smothered", + -14.109663963317871 + ], + [ + "▁Equifax", + -14.109664916992188 + ], + [ + "▁fiddling", + -14.109672546386719 + ], + [ + "▁1825", + -14.109695434570312 + ], + [ + "▁Presenter", + -14.10971736907959 + ], + [ + "▁geometrical", + -14.109763145446777 + ], + [ + "seriously", + -14.109772682189941 + ], + [ + "▁Dresser", + -14.109774589538574 + ], + [ + "▁Ester", + -14.10977554321289 + ], + [ + "小", + -14.109818458557129 + ], + [ + "▁Yoon", + -14.10988998413086 + ], + [ + "▁Hawley", + -14.109891891479492 + ], + [ + "▁Thurs", + -14.10992431640625 + ], + [ + "▁Mailing", + -14.109931945800781 + ], + [ + "▁recollect", + -14.10993480682373 + ], + [ + "▁unexplored", + -14.109959602355957 + ], + [ + "▁trashed", + -14.110064506530762 + ], + [ + "▁nigeria", + -14.11016845703125 + ], + [ + "▁backrest", + -14.110169410705566 + ], + [ + "tius", + -14.110190391540527 + ], + [ + "▁VHF", + -14.110198020935059 + ], + [ + "experienced", + -14.110238075256348 + ], + [ + "Bella", + -14.110246658325195 + ], + [ + "▁maniac", + -14.110251426696777 + ], + [ + "▁Primo", + -14.11025619506836 + ], + [ + "XR", + -14.110270500183105 + ], + [ + "▁leach", + -14.11029052734375 + ], + [ + "▁ambulatory", + -14.110299110412598 + ], + [ + "▁Hyun", + -14.11030387878418 + ], + [ + "▁marque", + -14.110304832458496 + ], + [ + "▁Darfur", + -14.11033821105957 + ], + [ + "▁Observations", + -14.110432624816895 + ], + [ + "▁parametric", + -14.11043643951416 + ], + [ + "aque", + -14.110461235046387 + ], + [ + "▁splicing", + -14.110512733459473 + ], + [ + "▁thrillers", + -14.110513687133789 + ], + [ + "▁IHS", + -14.110587120056152 + ], + [ + "▁EXCLUSIVE", + -14.11061954498291 + ], + [ + "▁equaliser", + -14.110663414001465 + ], + [ + "tok", + -14.110729217529297 + ], + [ + "vah", + -14.11076831817627 + ], + [ + "▁Gilles", + -14.110769271850586 + ], + [ + "▁Misses", + -14.110825538635254 + ], + [ + "▁Kannada", + -14.110832214355469 + ], + [ + "gc", + -14.110882759094238 + ], + [ + "716", + -14.110930442810059 + ], + [ + "▁Stav", + -14.110939025878906 + ], + [ + "acci", + -14.110968589782715 + ], + [ + "▁BSP", + -14.110977172851562 + ], + [ + "▁regroup", + -14.110983848571777 + ], + [ + "▁combustible", + -14.111034393310547 + ], + [ + "▁environs", + -14.111044883728027 + ], + [ + "▁hydroxy", + -14.11104965209961 + ], + [ + "enthal", + -14.111061096191406 + ], + [ + "▁Xinjiang", + -14.111101150512695 + ], + [ + "lod", + -14.111122131347656 + ], + [ + "nco", + -14.111132621765137 + ], + [ + "▁rebranded", + -14.111136436462402 + ], + [ + "▁OJ", + -14.111177444458008 + ], + [ + "▁Creamy", + -14.111291885375977 + ], + [ + "cide", + -14.111311912536621 + ], + [ + "▁errand", + -14.111312866210938 + ], + [ + "▁PARTICULAR", + -14.111330032348633 + ], + [ + "Boot", + -14.111387252807617 + ], + [ + "sticks", + -14.111395835876465 + ], + [ + "advisor", + -14.111416816711426 + ], + [ + "▁Broke", + -14.111441612243652 + ], + [ + "▁Roadmap", + -14.11144733428955 + ], + [ + "▁firefighting", + -14.111449241638184 + ], + [ + "▁otc", + -14.1115140914917 + ], + [ + "▁viewership", + -14.111518859863281 + ], + [ + "bind", + -14.111532211303711 + ], + [ + "▁Granville", + -14.111546516418457 + ], + [ + "▁Viv", + -14.111550331115723 + ], + [ + "▁BELOW", + -14.111564636230469 + ], + [ + "▁Jalan", + -14.11159896850586 + ], + [ + "depend", + -14.111605644226074 + ], + [ + "iendo", + -14.111654281616211 + ], + [ + "▁triage", + -14.111668586730957 + ], + [ + "vern", + -14.111671447753906 + ], + [ + "gable", + -14.111686706542969 + ], + [ + "▁schoolchildren", + -14.111688613891602 + ], + [ + "▁tweed", + -14.111698150634766 + ], + [ + "▁1040", + -14.111720085144043 + ], + [ + "▁overstated", + -14.111739158630371 + ], + [ + "▁Smartphones", + -14.111799240112305 + ], + [ + "▁precede", + -14.111818313598633 + ], + [ + "▁Mendel", + -14.111832618713379 + ], + [ + "jitsu", + -14.111841201782227 + ], + [ + "Feed", + -14.111869812011719 + ], + [ + "▁Swirl", + -14.1118803024292 + ], + [ + "ior", + -14.111881256103516 + ], + [ + "▁trackback", + -14.111886024475098 + ], + [ + "▁Fad", + -14.112017631530762 + ], + [ + "▁Versus", + -14.112085342407227 + ], + [ + "▁Wha", + -14.112092018127441 + ], + [ + "ด", + -14.11214542388916 + ], + [ + "▁LEVEL", + -14.112153053283691 + ], + [ + "▁Rang", + -14.11221694946289 + ], + [ + "▁Spots", + -14.112234115600586 + ], + [ + "▁ACH", + -14.112237930297852 + ], + [ + "▁McIlroy", + -14.112268447875977 + ], + [ + "▁legacies", + -14.11230754852295 + ], + [ + "MOD", + -14.112332344055176 + ], + [ + "Chan", + -14.112377166748047 + ], + [ + "▁Unter", + -14.112435340881348 + ], + [ + "▁Abhi", + -14.112458229064941 + ], + [ + "▁affix", + -14.112472534179688 + ], + [ + "▁backlight", + -14.11247444152832 + ], + [ + "nei", + -14.112483978271484 + ], + [ + "▁Residences", + -14.112680435180664 + ], + [ + "▁democrats", + -14.11268138885498 + ], + [ + "▁Diaper", + -14.112696647644043 + ], + [ + "683", + -14.112749099731445 + ], + [ + "▁crackling", + -14.112796783447266 + ], + [ + "▁Behr", + -14.112814903259277 + ], + [ + "▁Spaniards", + -14.11281681060791 + ], + [ + "724", + -14.112823486328125 + ], + [ + "▁Goethe", + -14.112829208374023 + ], + [ + "▁groomer", + -14.112914085388184 + ], + [ + "▁Stur", + -14.112975120544434 + ], + [ + "▁audacity", + -14.112987518310547 + ], + [ + "▁Brum", + -14.112998962402344 + ], + [ + "▁Padma", + -14.113000869750977 + ], + [ + "▁seclusion", + -14.113021850585938 + ], + [ + "▁Therapists", + -14.113053321838379 + ], + [ + "▁Moodle", + -14.113068580627441 + ], + [ + "▁lexical", + -14.113088607788086 + ], + [ + "oglu", + -14.113134384155273 + ], + [ + "▁mouthwatering", + -14.113170623779297 + ], + [ + "monster", + -14.113177299499512 + ], + [ + "▁breathability", + -14.113181114196777 + ], + [ + "▁checkered", + -14.1132230758667 + ], + [ + "aï", + -14.113240242004395 + ], + [ + "▁DFW", + -14.113265991210938 + ], + [ + "▁Eo", + -14.113343238830566 + ], + [ + "▁Allentown", + -14.113391876220703 + ], + [ + "▁Bie", + -14.113428115844727 + ], + [ + "▁southward", + -14.113483428955078 + ], + [ + "actin", + -14.113554954528809 + ], + [ + "▁Username", + -14.113597869873047 + ], + [ + "▁spamming", + -14.11361026763916 + ], + [ + "815", + -14.11364459991455 + ], + [ + "Donald", + -14.11371898651123 + ], + [ + "▁Polynesian", + -14.11372184753418 + ], + [ + "Cycle", + -14.113792419433594 + ], + [ + "▁OCC", + -14.113799095153809 + ], + [ + "▁vacationing", + -14.113804817199707 + ], + [ + "boiled", + -14.113856315612793 + ], + [ + "▁Bateman", + -14.113861083984375 + ], + [ + "▁burr", + -14.11391544342041 + ], + [ + "▁Phan", + -14.114027976989746 + ], + [ + "▁inbuilt", + -14.114049911499023 + ], + [ + "728", + -14.114069938659668 + ], + [ + "▁raking", + -14.114069938659668 + ], + [ + "▁uncomfortably", + -14.114075660705566 + ], + [ + "▁Tunes", + -14.114079475402832 + ], + [ + "▁jaded", + -14.11411190032959 + ], + [ + "▁WPA", + -14.11415958404541 + ], + [ + "Pu", + -14.114164352416992 + ], + [ + "▁skimp", + -14.114205360412598 + ], + [ + "▁së", + -14.114270210266113 + ], + [ + "▁neurology", + -14.114303588867188 + ], + [ + "arg", + -14.11433219909668 + ], + [ + "▁anaesthetic", + -14.114337921142578 + ], + [ + "▁GAP", + -14.114348411560059 + ], + [ + "dominant", + -14.114363670349121 + ], + [ + "▁Tham", + -14.114365577697754 + ], + [ + "▁slur", + -14.114411354064941 + ], + [ + "▁vaults", + -14.114422798156738 + ], + [ + "▁482", + -14.114437103271484 + ], + [ + "▁decently", + -14.114470481872559 + ], + [ + "▁Seton", + -14.114480972290039 + ], + [ + "▁OFFICE", + -14.114484786987305 + ], + [ + "▁Sandoval", + -14.114503860473633 + ], + [ + "▁1810", + -14.114507675170898 + ], + [ + "▁Baal", + -14.114523887634277 + ], + [ + "▁Collectively", + -14.114537239074707 + ], + [ + "Spirit", + -14.114542007446289 + ], + [ + "▁Angkor", + -14.114564895629883 + ], + [ + "▁DAW", + -14.114571571350098 + ], + [ + "▁RAS", + -14.114574432373047 + ], + [ + "▁tracer", + -14.114583015441895 + ], + [ + "Sho", + -14.114608764648438 + ], + [ + "gly", + -14.11462116241455 + ], + [ + "Financial", + -14.114640235900879 + ], + [ + "conversion", + -14.11474609375 + ], + [ + "tude", + -14.1148042678833 + ], + [ + "entes", + -14.114849090576172 + ], + [ + "▁Roos", + -14.11490249633789 + ], + [ + "▁Trolley", + -14.114903450012207 + ], + [ + "▁✓", + -14.114922523498535 + ], + [ + "▁BOSTON", + -14.114977836608887 + ], + [ + "▁SINGLE", + -14.115056991577148 + ], + [ + "▁rectal", + -14.115128517150879 + ], + [ + "639", + -14.115164756774902 + ], + [ + "▁Boarding", + -14.115226745605469 + ], + [ + "▁stalked", + -14.115233421325684 + ], + [ + "▁invasions", + -14.115234375 + ], + [ + "▁Jace", + -14.115318298339844 + ], + [ + "▁ATT", + -14.1153564453125 + ], + [ + "▁Fordham", + -14.11536979675293 + ], + [ + "▁Stroll", + -14.115376472473145 + ], + [ + "▁Handler", + -14.115389823913574 + ], + [ + "▁cirrhosis", + -14.115389823913574 + ], + [ + "▁PCIe", + -14.11539363861084 + ], + [ + "iously", + -14.115394592285156 + ], + [ + "talented", + -14.115399360656738 + ], + [ + "▁Patrice", + -14.115554809570312 + ], + [ + "▁Spire", + -14.115567207336426 + ], + [ + "papers", + -14.115607261657715 + ], + [ + "▁midrange", + -14.115608215332031 + ], + [ + "▁electrified", + -14.115614891052246 + ], + [ + "▁hazel", + -14.11563777923584 + ], + [ + "▁Guill", + -14.115713119506836 + ], + [ + "▁PROVIDE", + -14.115748405456543 + ], + [ + "▁Warrington", + -14.115779876708984 + ], + [ + "▁boolean", + -14.115839958190918 + ], + [ + "▁Attractions", + -14.115860939025879 + ], + [ + "▁resp", + -14.115864753723145 + ], + [ + "ooo", + -14.115869522094727 + ], + [ + "▁Hanukkah", + -14.115904808044434 + ], + [ + "▁arming", + -14.115921020507812 + ], + [ + "▁tremor", + -14.11597728729248 + ], + [ + "▁schematics", + -14.115982055664062 + ], + [ + "Maria", + -14.115987777709961 + ], + [ + "▁candlelight", + -14.116010665893555 + ], + [ + "▁endoscopic", + -14.116020202636719 + ], + [ + "gou", + -14.116021156311035 + ], + [ + "▁Xfinity", + -14.116035461425781 + ], + [ + "dham", + -14.116053581237793 + ], + [ + "▁platters", + -14.116071701049805 + ], + [ + "▁Dungeons", + -14.116081237792969 + ], + [ + "designated", + -14.11608600616455 + ], + [ + "▁rss", + -14.116172790527344 + ], + [ + "▁Gros", + -14.116199493408203 + ], + [ + "▁Marshmallow", + -14.116276741027832 + ], + [ + "▁Kindness", + -14.116317749023438 + ], + [ + "▁COL", + -14.116357803344727 + ], + [ + "▁sportswear", + -14.116369247436523 + ], + [ + "▁necessitated", + -14.116418838500977 + ], + [ + "▁Surfing", + -14.116445541381836 + ], + [ + "▁BHP", + -14.11646556854248 + ], + [ + "habit", + -14.116531372070312 + ], + [ + "▁Farewell", + -14.116556167602539 + ], + [ + "Eng", + -14.116632461547852 + ], + [ + "▁CIF", + -14.116647720336914 + ], + [ + "izzle", + -14.116649627685547 + ], + [ + "▁wowed", + -14.116659164428711 + ], + [ + "iny", + -14.116842269897461 + ], + [ + "▁Breach", + -14.116877555847168 + ], + [ + "logie", + -14.116887092590332 + ], + [ + "674", + -14.116890907287598 + ], + [ + "▁forerunner", + -14.11691951751709 + ], + [ + "▁353", + -14.116928100585938 + ], + [ + "▁astrologer", + -14.116948127746582 + ], + [ + "▁STEEL", + -14.116964340209961 + ], + [ + "▁repatriation", + -14.116976737976074 + ], + [ + "Germain", + -14.116990089416504 + ], + [ + "▁Sensei", + -14.116998672485352 + ], + [ + "▁wanders", + -14.117000579833984 + ], + [ + "▁kink", + -14.117006301879883 + ], + [ + "fici", + -14.117025375366211 + ], + [ + "▁Protest", + -14.11703872680664 + ], + [ + "▁constellations", + -14.117044448852539 + ], + [ + "▁recounting", + -14.117046356201172 + ], + [ + "families", + -14.1170654296875 + ], + [ + "▁viscous", + -14.117103576660156 + ], + [ + "norm", + -14.117146492004395 + ], + [ + "▁Kaka", + -14.117148399353027 + ], + [ + "▁Shasta", + -14.11716079711914 + ], + [ + "▁lopsided", + -14.117161750793457 + ], + [ + "pey", + -14.117198944091797 + ], + [ + "▁Montrose", + -14.11723804473877 + ], + [ + "▁Conquer", + -14.117243766784668 + ], + [ + "▁Meetup", + -14.117243766784668 + ], + [ + "auf", + -14.117257118225098 + ], + [ + "reflection", + -14.117298126220703 + ], + [ + "▁kerosene", + -14.117302894592285 + ], + [ + "nique", + -14.117359161376953 + ], + [ + "00000", + -14.117389678955078 + ], + [ + "▁LIN", + -14.117391586303711 + ], + [ + "▁nameless", + -14.117391586303711 + ], + [ + "▁SALT", + -14.117410659790039 + ], + [ + "▁sprouted", + -14.117413520812988 + ], + [ + "▁UAV", + -14.117425918579102 + ], + [ + "▁Scent", + -14.117436408996582 + ], + [ + "▁Punishment", + -14.117473602294922 + ], + [ + "ди", + -14.117486953735352 + ], + [ + "▁Monkeys", + -14.1174898147583 + ], + [ + "1959", + -14.117521286010742 + ], + [ + "idades", + -14.11757755279541 + ], + [ + "▁MTS", + -14.117587089538574 + ], + [ + "▁hiker", + -14.117657661437988 + ], + [ + "▁Kli", + -14.117674827575684 + ], + [ + "▁Bingham", + -14.117693901062012 + ], + [ + "sustaining", + -14.117715835571289 + ], + [ + "▁insecticide", + -14.117721557617188 + ], + [ + "drops", + -14.11774730682373 + ], + [ + "▁BALL", + -14.117815971374512 + ], + [ + "▁unsatisfied", + -14.117919921875 + ], + [ + "519", + -14.117937088012695 + ], + [ + "▁dandruff", + -14.117959022521973 + ], + [ + "KN", + -14.117973327636719 + ], + [ + "▁Sect", + -14.117980003356934 + ], + [ + "▁Schul", + -14.118002891540527 + ], + [ + "▁modernism", + -14.11802864074707 + ], + [ + "lta", + -14.118029594421387 + ], + [ + "gah", + -14.118034362792969 + ], + [ + "gari", + -14.118054389953613 + ], + [ + "thra", + -14.118054389953613 + ], + [ + "▁RIGHTS", + -14.118072509765625 + ], + [ + "▁groovy", + -14.11807632446289 + ], + [ + "atomic", + -14.118087768554688 + ], + [ + "DEL", + -14.118098258972168 + ], + [ + "stated", + -14.11810302734375 + ], + [ + "▁lags", + -14.118111610412598 + ], + [ + "▁Rainier", + -14.118118286132812 + ], + [ + "▁Prejudice", + -14.118124961853027 + ], + [ + "▁june", + -14.118145942687988 + ], + [ + "▁Mong", + -14.118158340454102 + ], + [ + "rrh", + -14.118170738220215 + ], + [ + "▁Bhu", + -14.118171691894531 + ], + [ + "▁Gilead", + -14.11818790435791 + ], + [ + "▁supplementing", + -14.118206977844238 + ], + [ + "iang", + -14.118314743041992 + ], + [ + "▁contouring", + -14.118324279785156 + ], + [ + "Charge", + -14.118339538574219 + ], + [ + "crash", + -14.118341445922852 + ], + [ + "▁homebrew", + -14.118391990661621 + ], + [ + "▁preconceived", + -14.118432998657227 + ], + [ + "teller", + -14.118439674377441 + ], + [ + "▁Petri", + -14.118473052978516 + ], + [ + "902", + -14.118528366088867 + ], + [ + "859", + -14.118535041809082 + ], + [ + "kHz", + -14.11855697631836 + ], + [ + "▁KGB", + -14.118633270263672 + ], + [ + "poster", + -14.118644714355469 + ], + [ + "▁glutamate", + -14.118650436401367 + ], + [ + "▁Harlow", + -14.118669509887695 + ], + [ + "▁Borussia", + -14.118682861328125 + ], + [ + "▁mated", + -14.118684768676758 + ], + [ + "▁bartenders", + -14.118741989135742 + ], + [ + "▁LAB", + -14.118802070617676 + ], + [ + "▁orthodontist", + -14.118803977966309 + ], + [ + "865", + -14.118805885314941 + ], + [ + "▁buoyant", + -14.118805885314941 + ], + [ + "▁Lovecraft", + -14.11880874633789 + ], + [ + "iken", + -14.118846893310547 + ], + [ + "▁Pause", + -14.11884880065918 + ], + [ + "▁conventionally", + -14.11884880065918 + ], + [ + "▁Plata", + -14.118861198425293 + ], + [ + "▁WeChat", + -14.118871688842773 + ], + [ + "▁Encryption", + -14.118898391723633 + ], + [ + "▁Cops", + -14.118945121765137 + ], + [ + "rink", + -14.118963241577148 + ], + [ + "▁Plaque", + -14.11901569366455 + ], + [ + "▁tombstone", + -14.119036674499512 + ], + [ + "▁virtuoso", + -14.119041442871094 + ], + [ + "▁swamps", + -14.119049072265625 + ], + [ + "lowest", + -14.119077682495117 + ], + [ + "▁830", + -14.119098663330078 + ], + [ + "▁Gerhard", + -14.119199752807617 + ], + [ + "▁lecturing", + -14.119207382202148 + ], + [ + "▁McCu", + -14.119319915771484 + ], + [ + "Choice", + -14.119355201721191 + ], + [ + "lith", + -14.119416236877441 + ], + [ + "▁kra", + -14.119458198547363 + ], + [ + "▁Rol", + -14.119498252868652 + ], + [ + "▁appropriateness", + -14.119526863098145 + ], + [ + "azy", + -14.119527816772461 + ], + [ + "viv", + -14.119535446166992 + ], + [ + "▁interrelated", + -14.119587898254395 + ], + [ + "knowing", + -14.11959171295166 + ], + [ + "plic", + -14.11961555480957 + ], + [ + "▁gaskets", + -14.119630813598633 + ], + [ + "▁townhouses", + -14.119635581970215 + ], + [ + "prove", + -14.11967658996582 + ], + [ + "jou", + -14.119695663452148 + ], + [ + "▁curricular", + -14.119709968566895 + ], + [ + "▁Passes", + -14.119729042053223 + ], + [ + "▁Grille", + -14.119751930236816 + ], + [ + "▁indelible", + -14.119860649108887 + ], + [ + "filing", + -14.11988353729248 + ], + [ + "▁madly", + -14.119988441467285 + ], + [ + "vintage", + -14.120024681091309 + ], + [ + "▁Tallinn", + -14.12003231048584 + ], + [ + "▁Radcliffe", + -14.120036125183105 + ], + [ + "Gov", + -14.120057106018066 + ], + [ + "▁ios", + -14.120065689086914 + ], + [ + "▁emojis", + -14.120078086853027 + ], + [ + "▁Striker", + -14.120085716247559 + ], + [ + "▁UNHCR", + -14.120111465454102 + ], + [ + "▁tributary", + -14.12012004852295 + ], + [ + "▁Hester", + -14.120128631591797 + ], + [ + "▁lipoprotein", + -14.120144844055176 + ], + [ + "regulatory", + -14.120213508605957 + ], + [ + "thro", + -14.12021541595459 + ], + [ + "▁thermodynamic", + -14.12021541595459 + ], + [ + "▁DOL", + -14.120317459106445 + ], + [ + "▁548", + -14.120362281799316 + ], + [ + "▁Inver", + -14.12036418914795 + ], + [ + "하고", + -14.12037467956543 + ], + [ + "▁clamped", + -14.12038516998291 + ], + [ + "▁Peaceful", + -14.120412826538086 + ], + [ + "athlete", + -14.120414733886719 + ], + [ + "▁stubbornly", + -14.120414733886719 + ], + [ + "hybrid", + -14.120429039001465 + ], + [ + "comfort", + -14.120484352111816 + ], + [ + "▁Concerts", + -14.12058162689209 + ], + [ + "Study", + -14.120589256286621 + ], + [ + "▁uncovers", + -14.120604515075684 + ], + [ + "▁Coordinating", + -14.12062931060791 + ], + [ + "template", + -14.120695114135742 + ], + [ + "▁july", + -14.120702743530273 + ], + [ + "▁Thanos", + -14.120743751525879 + ], + [ + "▁Emissions", + -14.120756149291992 + ], + [ + "▁gastronomic", + -14.120773315429688 + ], + [ + "Spark", + -14.120774269104004 + ], + [ + "▁pushy", + -14.12077808380127 + ], + [ + "▁Lufthansa", + -14.120861053466797 + ], + [ + "▁margarine", + -14.12088394165039 + ], + [ + "▁Assemble", + -14.120903015136719 + ], + [ + "▁Gables", + -14.120984077453613 + ], + [ + "▁mangrove", + -14.12099838256836 + ], + [ + "▁eclipsed", + -14.121015548706055 + ], + [ + "▁irre", + -14.121047019958496 + ], + [ + "▁gush", + -14.121099472045898 + ], + [ + "▁ginseng", + -14.121105194091797 + ], + [ + "▁footballers", + -14.121118545532227 + ], + [ + "▁interfacing", + -14.121121406555176 + ], + [ + "▁opiate", + -14.121124267578125 + ], + [ + "bhp", + -14.121159553527832 + ], + [ + "FIN", + -14.12116527557373 + ], + [ + "▁aber", + -14.121176719665527 + ], + [ + "▁fouls", + -14.121224403381348 + ], + [ + "▁interes", + -14.121252059936523 + ], + [ + "Urban", + -14.121285438537598 + ], + [ + "▁Jang", + -14.121411323547363 + ], + [ + "▁thoroughfare", + -14.121421813964844 + ], + [ + "Grant", + -14.121458053588867 + ], + [ + "▁deterred", + -14.121508598327637 + ], + [ + "disclosure", + -14.121551513671875 + ], + [ + "▁Rosetta", + -14.12158489227295 + ], + [ + "▁overlaps", + -14.121603012084961 + ], + [ + "spark", + -14.121607780456543 + ], + [ + "Lewis", + -14.121625900268555 + ], + [ + "▁605", + -14.121676445007324 + ], + [ + "▁gyro", + -14.121711730957031 + ], + [ + "▁Fridge", + -14.121731758117676 + ], + [ + "bacterial", + -14.121732711791992 + ], + [ + "▁Hardin", + -14.121796607971191 + ], + [ + "▁ATL", + -14.121833801269531 + ], + [ + "▁steampunk", + -14.121833801269531 + ], + [ + "▁autofocus", + -14.121843338012695 + ], + [ + "▁Squid", + -14.121844291687012 + ], + [ + "▁Consul", + -14.121845245361328 + ], + [ + "simply", + -14.121870040893555 + ], + [ + "▁gew", + -14.121892929077148 + ], + [ + "▁Henan", + -14.121912002563477 + ], + [ + "▁qi", + -14.121917724609375 + ], + [ + "▁mesmerized", + -14.12192153930664 + ], + [ + "olan", + -14.121983528137207 + ], + [ + "▁fiesta", + -14.12198543548584 + ], + [ + "HEL", + -14.122063636779785 + ], + [ + "SION", + -14.122068405151367 + ], + [ + "▁debuting", + -14.122175216674805 + ], + [ + "▁foo", + -14.122182846069336 + ], + [ + "▁keygen", + -14.122183799743652 + ], + [ + "▁frenetic", + -14.122292518615723 + ], + [ + "Sight", + -14.122315406799316 + ], + [ + "ос", + -14.122334480285645 + ], + [ + "742", + -14.122353553771973 + ], + [ + "empt", + -14.122397422790527 + ], + [ + "▁Radiator", + -14.122416496276855 + ], + [ + "emu", + -14.122430801391602 + ], + [ + "▁Elmo", + -14.122453689575195 + ], + [ + "▁Yeezy", + -14.122529983520508 + ], + [ + "▁incarnate", + -14.12264347076416 + ], + [ + "mies", + -14.12267017364502 + ], + [ + "shoe", + -14.122734069824219 + ], + [ + "▁reworking", + -14.1227445602417 + ], + [ + "▁chlor", + -14.122748374938965 + ], + [ + "▁puede", + -14.122763633728027 + ], + [ + "▁Chalet", + -14.122764587402344 + ], + [ + "enger", + -14.122769355773926 + ], + [ + "▁Equip", + -14.122788429260254 + ], + [ + "▁flicked", + -14.122800827026367 + ], + [ + "▁Buckeye", + -14.122905731201172 + ], + [ + "▁457", + -14.122919082641602 + ], + [ + "▁crayon", + -14.123013496398926 + ], + [ + "esser", + -14.123044967651367 + ], + [ + "▁hypoallergenic", + -14.123124122619629 + ], + [ + "Buck", + -14.123149871826172 + ], + [ + "▁Decades", + -14.12317180633545 + ], + [ + "▁belated", + -14.123204231262207 + ], + [ + "theatre", + -14.123245239257812 + ], + [ + "▁paddles", + -14.123303413391113 + ], + [ + "▁TNA", + -14.123318672180176 + ], + [ + "▁tiara", + -14.123323440551758 + ], + [ + "▁Horde", + -14.12332534790039 + ], + [ + "▁dares", + -14.1233491897583 + ], + [ + "▁Twi", + -14.12335205078125 + ], + [ + "▁brightening", + -14.123359680175781 + ], + [ + "▁trepidation", + -14.123499870300293 + ], + [ + "▁Hajj", + -14.123502731323242 + ], + [ + "▁zijn", + -14.123551368713379 + ], + [ + "Ala", + -14.123556137084961 + ], + [ + "▁Terrific", + -14.123587608337402 + ], + [ + "▁Mura", + -14.123711585998535 + ], + [ + "▁shuttles", + -14.123732566833496 + ], + [ + "▁LIVING", + -14.123736381530762 + ], + [ + "▁Fonda", + -14.123770713806152 + ], + [ + "▁funnier", + -14.12379264831543 + ], + [ + "▁Enabling", + -14.123811721801758 + ], + [ + "wak", + -14.123817443847656 + ], + [ + "▁Yarmouth", + -14.123841285705566 + ], + [ + "▁Targeting", + -14.12386703491211 + ], + [ + "▁indebtedness", + -14.12386703491211 + ], + [ + "▁SEND", + -14.12387466430664 + ], + [ + "▁anthropogenic", + -14.123947143554688 + ], + [ + "Cost", + -14.123988151550293 + ], + [ + "▁shoddy", + -14.124037742614746 + ], + [ + "▁burrow", + -14.124039649963379 + ], + [ + "starred", + -14.124052047729492 + ], + [ + "▁Twp", + -14.124095916748047 + ], + [ + "▁notches", + -14.124096870422363 + ], + [ + "▁linkedin", + -14.124119758605957 + ], + [ + "▁smacked", + -14.124138832092285 + ], + [ + "▁Grin", + -14.124139785766602 + ], + [ + "▁melbourne", + -14.124155044555664 + ], + [ + "▁waiters", + -14.124183654785156 + ], + [ + "▁dredge", + -14.124202728271484 + ], + [ + "▁Require", + -14.1242094039917 + ], + [ + "▁Consequences", + -14.124214172363281 + ], + [ + "▁Scrooge", + -14.124221801757812 + ], + [ + "▁421", + -14.124232292175293 + ], + [ + "▁Critique", + -14.12424087524414 + ], + [ + "▁preterm", + -14.124258995056152 + ], + [ + "▁hahaha", + -14.12427806854248 + ], + [ + "▁Archibald", + -14.124283790588379 + ], + [ + "▁tweeter", + -14.12429141998291 + ], + [ + "▁Internationally", + -14.1243257522583 + ], + [ + "▁clouded", + -14.124373435974121 + ], + [ + "919", + -14.124385833740234 + ], + [ + "Someone", + -14.124431610107422 + ], + [ + "▁curt", + -14.124457359313965 + ], + [ + "drums", + -14.124459266662598 + ], + [ + "774", + -14.124462127685547 + ], + [ + "▁migrations", + -14.124462127685547 + ], + [ + "▁bungee", + -14.124471664428711 + ], + [ + "▁ischemia", + -14.124479293823242 + ], + [ + "▁intensively", + -14.124482154846191 + ], + [ + "▁TAN", + -14.124521255493164 + ], + [ + "▁Suspect", + -14.124547004699707 + ], + [ + "nius", + -14.124699592590332 + ], + [ + "▁Calais", + -14.124700546264648 + ], + [ + "▁Afraid", + -14.124717712402344 + ], + [ + "▁Kamala", + -14.124801635742188 + ], + [ + "▁Chains", + -14.124823570251465 + ], + [ + "▁Streep", + -14.124895095825195 + ], + [ + "▁scrapes", + -14.1249361038208 + ], + [ + "▁aurora", + -14.124943733215332 + ], + [ + "▁succulents", + -14.125039100646973 + ], + [ + "alta", + -14.125045776367188 + ], + [ + "▁Della", + -14.125082015991211 + ], + [ + "▁Limbaugh", + -14.125082015991211 + ], + [ + "▁іѕ", + -14.125149726867676 + ], + [ + "▁Appellate", + -14.125164985656738 + ], + [ + "▁Ackerman", + -14.125188827514648 + ], + [ + "▁unnerving", + -14.125200271606445 + ], + [ + "bana", + -14.125215530395508 + ], + [ + "▁Spo", + -14.125239372253418 + ], + [ + "657", + -14.125286102294922 + ], + [ + "▁Simultaneously", + -14.125332832336426 + ], + [ + "▁socialists", + -14.125350952148438 + ], + [ + "▁Karp", + -14.125368118286133 + ], + [ + "MAG", + -14.125382423400879 + ], + [ + "▁refocus", + -14.125448226928711 + ], + [ + "cun", + -14.125503540039062 + ], + [ + "▁Jackman", + -14.125505447387695 + ], + [ + "▁Bres", + -14.125517845153809 + ], + [ + "phrase", + -14.125597953796387 + ], + [ + "▁Underwater", + -14.125612258911133 + ], + [ + "▁cashews", + -14.125731468200684 + ], + [ + "▁Picchu", + -14.125734329223633 + ], + [ + "▁Zealanders", + -14.125737190246582 + ], + [ + "▁Deuteronomy", + -14.125782012939453 + ], + [ + "▁mus", + -14.125802993774414 + ], + [ + "▁NAD", + -14.125809669494629 + ], + [ + "▁Ф", + -14.125863075256348 + ], + [ + "▁FOLLOW", + -14.125886917114258 + ], + [ + "▁helplessness", + -14.125887870788574 + ], + [ + "▁Positioning", + -14.12591552734375 + ], + [ + "▁concussions", + -14.125926971435547 + ], + [ + "signing", + -14.126091003417969 + ], + [ + "village", + -14.126106262207031 + ], + [ + "▁701", + -14.126113891601562 + ], + [ + "▁1440", + -14.126118659973145 + ], + [ + "▁및", + -14.12614917755127 + ], + [ + "▁Dha", + -14.126178741455078 + ], + [ + "▁throbbing", + -14.126216888427734 + ], + [ + "▁Resumes", + -14.126228332519531 + ], + [ + "▁Bondi", + -14.126252174377441 + ], + [ + "nata", + -14.126280784606934 + ], + [ + "▁Tencent", + -14.126306533813477 + ], + [ + "religion", + -14.12631893157959 + ], + [ + "▁CTE", + -14.126376152038574 + ], + [ + "▁unannounced", + -14.126407623291016 + ], + [ + "▁Corsair", + -14.126415252685547 + ], + [ + "▁QLD", + -14.126429557800293 + ], + [ + "▁mink", + -14.126456260681152 + ], + [ + "▁Shenandoah", + -14.126468658447266 + ], + [ + "stain", + -14.126507759094238 + ], + [ + "▁autos", + -14.12651538848877 + ], + [ + "▁ACCOUNT", + -14.126529693603516 + ], + [ + "▁Followers", + -14.126562118530273 + ], + [ + "▁Quake", + -14.126574516296387 + ], + [ + "nano", + -14.12657642364502 + ], + [ + "▁541", + -14.126699447631836 + ], + [ + "▁lenient", + -14.126727104187012 + ], + [ + "▁spacers", + -14.126737594604492 + ], + [ + "▁Munch", + -14.126766204833984 + ], + [ + "▁Gb", + -14.1267728805542 + ], + [ + "▁fiancée", + -14.126781463623047 + ], + [ + "▁affirmations", + -14.126795768737793 + ], + [ + "▁Willamette", + -14.126808166503906 + ], + [ + "▁piers", + -14.126810073852539 + ], + [ + "▁insufficiency", + -14.126812934875488 + ], + [ + "▁Schwe", + -14.126843452453613 + ], + [ + "▁gasping", + -14.12691593170166 + ], + [ + "▁piggy", + -14.126948356628418 + ], + [ + "▁dressage", + -14.12696647644043 + ], + [ + "▁Monash", + -14.126989364624023 + ], + [ + "otherapy", + -14.126991271972656 + ], + [ + "▁Troops", + -14.127005577087402 + ], + [ + "864", + -14.127030372619629 + ], + [ + "816", + -14.127036094665527 + ], + [ + "▁Kristian", + -14.12704086303711 + ], + [ + "▁appointees", + -14.127041816711426 + ], + [ + "kho", + -14.127058029174805 + ], + [ + "885", + -14.127058982849121 + ], + [ + "▁2300", + -14.127155303955078 + ], + [ + "bust", + -14.127192497253418 + ], + [ + "▁não", + -14.127216339111328 + ], + [ + "▁sadistic", + -14.127218246459961 + ], + [ + "▁Trin", + -14.127253532409668 + ], + [ + "▁homered", + -14.127296447753906 + ], + [ + "542", + -14.127317428588867 + ], + [ + "▁Alchemy", + -14.127317428588867 + ], + [ + "▁buoy", + -14.127341270446777 + ], + [ + "▁486", + -14.127400398254395 + ], + [ + "▁Celeb", + -14.127424240112305 + ], + [ + "▁looted", + -14.12745189666748 + ], + [ + "▁Marti", + -14.127458572387695 + ], + [ + "expressed", + -14.127470016479492 + ], + [ + "▁aspires", + -14.12747859954834 + ], + [ + "▁dredging", + -14.12747859954834 + ], + [ + "taste", + -14.127513885498047 + ], + [ + "▁tantrums", + -14.12755012512207 + ], + [ + "▁Exception", + -14.127554893493652 + ], + [ + "▁graham", + -14.127569198608398 + ], + [ + "▁Bris", + -14.127641677856445 + ], + [ + "▁spr", + -14.127685546875 + ], + [ + "▁Forster", + -14.127695083618164 + ], + [ + "▁Spectra", + -14.127708435058594 + ], + [ + "▁overcrowding", + -14.127727508544922 + ], + [ + "▁taxonomic", + -14.127750396728516 + ], + [ + "048", + -14.127758026123047 + ], + [ + "▁TBR", + -14.127765655517578 + ], + [ + "timed", + -14.127778053283691 + ], + [ + "▁opp", + -14.127820014953613 + ], + [ + "▁Martins", + -14.127848625183105 + ], + [ + "▁509", + -14.127861976623535 + ], + [ + "ksi", + -14.127890586853027 + ], + [ + "Tip", + -14.127915382385254 + ], + [ + "▁anodized", + -14.127957344055176 + ], + [ + "Settings", + -14.128036499023438 + ], + [ + "▁chimes", + -14.128096580505371 + ], + [ + "▁Lun", + -14.128130912780762 + ], + [ + "▁orientated", + -14.128220558166504 + ], + [ + "▁Tequila", + -14.128268241882324 + ], + [ + "ח", + -14.128301620483398 + ], + [ + "▁bookcases", + -14.128329277038574 + ], + [ + "▁Micron", + -14.128338813781738 + ], + [ + "▁Kristi", + -14.128349304199219 + ], + [ + "▁sporadically", + -14.128351211547852 + ], + [ + "▁seduced", + -14.128365516662598 + ], + [ + "▁mumbled", + -14.128368377685547 + ], + [ + "Cause", + -14.128395080566406 + ], + [ + "▁astral", + -14.128418922424316 + ], + [ + "671", + -14.128433227539062 + ], + [ + "▁SKF", + -14.128499031066895 + ], + [ + "▁Preventing", + -14.128510475158691 + ], + [ + "▁mowers", + -14.128570556640625 + ], + [ + "▁Tug", + -14.128596305847168 + ], + [ + "▁imbued", + -14.1286039352417 + ], + [ + "체", + -14.128636360168457 + ], + [ + "▁sparkles", + -14.128656387329102 + ], + [ + "aircraft", + -14.128667831420898 + ], + [ + "bahn", + -14.128697395324707 + ], + [ + "▁Maka", + -14.128813743591309 + ], + [ + "ukh", + -14.128868103027344 + ], + [ + "▁notifies", + -14.128915786743164 + ], + [ + "rch", + -14.128921508789062 + ], + [ + "Admin", + -14.128961563110352 + ], + [ + "IMO", + -14.12896728515625 + ], + [ + "▁institutionalized", + -14.1289701461792 + ], + [ + "мо", + -14.129032135009766 + ], + [ + "▁Saber", + -14.12906265258789 + ], + [ + "▁olfactory", + -14.129105567932129 + ], + [ + "receptor", + -14.129109382629395 + ], + [ + "marriage", + -14.129136085510254 + ], + [ + "▁Bennet", + -14.129158020019531 + ], + [ + "▁PCOS", + -14.129206657409668 + ], + [ + "Economic", + -14.129250526428223 + ], + [ + "▁Recon", + -14.129268646240234 + ], + [ + "kane", + -14.129270553588867 + ], + [ + "ič", + -14.129288673400879 + ], + [ + "▁pharmacology", + -14.129313468933105 + ], + [ + "▁Ea", + -14.129318237304688 + ], + [ + "▁certifying", + -14.129339218139648 + ], + [ + "GST", + -14.12941837310791 + ], + [ + "realistic", + -14.129448890686035 + ], + [ + "▁sander", + -14.129473686218262 + ], + [ + "▁SPSS", + -14.129475593566895 + ], + [ + "▁tinge", + -14.129475593566895 + ], + [ + "Bone", + -14.129481315612793 + ], + [ + "▁nicknames", + -14.129484176635742 + ], + [ + "▁Merle", + -14.129505157470703 + ], + [ + "▁interwoven", + -14.129541397094727 + ], + [ + "rke", + -14.129566192626953 + ], + [ + "▁Aragon", + -14.129566192626953 + ], + [ + "bern", + -14.129594802856445 + ], + [ + "▁Milner", + -14.129621505737305 + ], + [ + "▁arugula", + -14.129674911499023 + ], + [ + "▁antifungal", + -14.129751205444336 + ], + [ + "▁Ascend", + -14.129754066467285 + ], + [ + "▁selectivity", + -14.129794120788574 + ], + [ + "quad", + -14.129851341247559 + ], + [ + "527", + -14.1298828125 + ], + [ + "clicking", + -14.129918098449707 + ], + [ + "▁Followed", + -14.129968643188477 + ], + [ + "encompassing", + -14.13000202178955 + ], + [ + "▁mary", + -14.13000202178955 + ], + [ + "▁shiver", + -14.130027770996094 + ], + [ + "▁perishable", + -14.130045890808105 + ], + [ + "▁EXTRA", + -14.130054473876953 + ], + [ + "▁VV", + -14.130058288574219 + ], + [ + "▁roughness", + -14.130060195922852 + ], + [ + "taining", + -14.130064964294434 + ], + [ + "▁whistling", + -14.130070686340332 + ], + [ + "▁gladiator", + -14.130071640014648 + ], + [ + "lumin", + -14.130072593688965 + ], + [ + "▁Perri", + -14.13008975982666 + ], + [ + "▁thump", + -14.130117416381836 + ], + [ + "▁faraway", + -14.130131721496582 + ], + [ + "▁Edible", + -14.130155563354492 + ], + [ + "▁googled", + -14.130157470703125 + ], + [ + "publish", + -14.1301908493042 + ], + [ + "▁Swe", + -14.130218505859375 + ], + [ + "▁toppers", + -14.130234718322754 + ], + [ + "▁balk", + -14.13029956817627 + ], + [ + "9000", + -14.130337715148926 + ], + [ + "▁Bryson", + -14.130363464355469 + ], + [ + "▁fenders", + -14.130363464355469 + ], + [ + "▁Paddock", + -14.13046932220459 + ], + [ + "committee", + -14.130498886108398 + ], + [ + "▁growl", + -14.130504608154297 + ], + [ + "▁pha", + -14.130544662475586 + ], + [ + "▁Fru", + -14.130688667297363 + ], + [ + "▁lakeside", + -14.130731582641602 + ], + [ + "▁Lloyds", + -14.130785942077637 + ], + [ + "▁유", + -14.130854606628418 + ], + [ + "mitting", + -14.13086223602295 + ], + [ + "▁Confused", + -14.13090991973877 + ], + [ + "flops", + -14.130922317504883 + ], + [ + "▁Announces", + -14.130935668945312 + ], + [ + "skills", + -14.130945205688477 + ], + [ + "▁squeaky", + -14.130946159362793 + ], + [ + "amar", + -14.130964279174805 + ], + [ + "▁JAM", + -14.130973815917969 + ], + [ + "oci", + -14.130993843078613 + ], + [ + "▁Katharine", + -14.1310396194458 + ], + [ + "module", + -14.131041526794434 + ], + [ + "▁strangled", + -14.131101608276367 + ], + [ + "▁Merci", + -14.131105422973633 + ], + [ + "1939", + -14.13110637664795 + ], + [ + "▁Crosse", + -14.131178855895996 + ], + [ + "cigarette", + -14.131182670593262 + ], + [ + "▁mics", + -14.13119888305664 + ], + [ + "▁Execute", + -14.131325721740723 + ], + [ + "▁Countess", + -14.131338119506836 + ], + [ + "▁sizzle", + -14.131340026855469 + ], + [ + "Centre", + -14.13138198852539 + ], + [ + "▁hypothyroidism", + -14.131391525268555 + ], + [ + "KH", + -14.131399154663086 + ], + [ + "accessible", + -14.131414413452148 + ], + [ + "▁SMU", + -14.131550788879395 + ], + [ + "▁VMs", + -14.131586074829102 + ], + [ + "▁Crank", + -14.131590843200684 + ], + [ + "▁snip", + -14.13160228729248 + ], + [ + "▁Routes", + -14.13166332244873 + ], + [ + "rop", + -14.131682395935059 + ], + [ + "▁wane", + -14.131714820861816 + ], + [ + "▁Gothenburg", + -14.131755828857422 + ], + [ + "cox", + -14.13176441192627 + ], + [ + "▁LIABLE", + -14.131802558898926 + ], + [ + "▁Newest", + -14.131806373596191 + ], + [ + "▁pistons", + -14.131829261779785 + ], + [ + "▁imparting", + -14.131842613220215 + ], + [ + "eagle", + -14.131861686706543 + ], + [ + "▁Grassley", + -14.131876945495605 + ], + [ + "▁wearables", + -14.131878852844238 + ], + [ + "▁348", + -14.131889343261719 + ], + [ + "▁Indira", + -14.131922721862793 + ], + [ + "DMA", + -14.13196086883545 + ], + [ + "cite", + -14.13196086883545 + ], + [ + "▁Notifications", + -14.132025718688965 + ], + [ + "▁Jewels", + -14.132061958312988 + ], + [ + "falls", + -14.132108688354492 + ], + [ + "▁Acadia", + -14.132118225097656 + ], + [ + "ksa", + -14.132152557373047 + ], + [ + "imento", + -14.132169723510742 + ], + [ + "▁coiled", + -14.1322021484375 + ], + [ + "▁summits", + -14.132244110107422 + ], + [ + "П", + -14.132304191589355 + ], + [ + "decision", + -14.132320404052734 + ], + [ + "▁governorship", + -14.132410049438477 + ], + [ + "▁Westin", + -14.132438659667969 + ], + [ + "▁Burnaby", + -14.132452011108398 + ], + [ + "▁Niro", + -14.132493019104004 + ], + [ + "▁compar", + -14.132499694824219 + ], + [ + "pani", + -14.132594108581543 + ], + [ + "▁facades", + -14.132658004760742 + ], + [ + "▁graces", + -14.132660865783691 + ], + [ + "937", + -14.13269329071045 + ], + [ + "consistent", + -14.132697105407715 + ], + [ + "▁retiree", + -14.132750511169434 + ], + [ + "▁Smyth", + -14.132752418518066 + ], + [ + "▁Survive", + -14.132752418518066 + ], + [ + "onde", + -14.13278579711914 + ], + [ + "surprise", + -14.132804870605469 + ], + [ + "▁megawatts", + -14.132813453674316 + ], + [ + "pom", + -14.132814407348633 + ], + [ + "locks", + -14.132874488830566 + ], + [ + "▁Paro", + -14.132882118225098 + ], + [ + "▁494", + -14.132898330688477 + ], + [ + "▁reputations", + -14.132930755615234 + ], + [ + "▁hyaluronic", + -14.132946968078613 + ], + [ + "所述", + -14.132974624633789 + ], + [ + "▁reloading", + -14.133048057556152 + ], + [ + "▁Enc", + -14.133109092712402 + ], + [ + "▁Parental", + -14.13321304321289 + ], + [ + "▁Maloney", + -14.133245468139648 + ], + [ + "olate", + -14.13328742980957 + ], + [ + "▁conceptually", + -14.13333797454834 + ], + [ + "▁edhe", + -14.133345603942871 + ], + [ + "▁sulfide", + -14.133354187011719 + ], + [ + "▁Flemish", + -14.13338565826416 + ], + [ + "▁Slideshow", + -14.133426666259766 + ], + [ + "629", + -14.133448600769043 + ], + [ + "▁Tumor", + -14.13349723815918 + ], + [ + "▁cleats", + -14.133512496948242 + ], + [ + "539", + -14.133514404296875 + ], + [ + "▁Kolo", + -14.133522033691406 + ], + [ + "▁Cupcake", + -14.13354206085205 + ], + [ + "chas", + -14.133549690246582 + ], + [ + "▁vertigo", + -14.133562088012695 + ], + [ + "illas", + -14.133692741394043 + ], + [ + "▁availed", + -14.133719444274902 + ], + [ + "▁Delegate", + -14.133742332458496 + ], + [ + "▁powdery", + -14.133755683898926 + ], + [ + "▁Pry", + -14.133828163146973 + ], + [ + "ło", + -14.133841514587402 + ], + [ + "▁noxious", + -14.133883476257324 + ], + [ + "▁Bradbury", + -14.133909225463867 + ], + [ + "▁Lausanne", + -14.133939743041992 + ], + [ + "▁bookmakers", + -14.133993148803711 + ], + [ + "omba", + -14.134099006652832 + ], + [ + "▁shelved", + -14.134207725524902 + ], + [ + "▁Remedies", + -14.134282112121582 + ], + [ + "▁Ibid", + -14.13431167602539 + ], + [ + "▁interpolation", + -14.134315490722656 + ], + [ + "▁decompose", + -14.134324073791504 + ], + [ + "▁baseboards", + -14.1343412399292 + ], + [ + "▁Crypt", + -14.134363174438477 + ], + [ + "▁Agua", + -14.134367942810059 + ], + [ + "pb", + -14.13438892364502 + ], + [ + "▁Amal", + -14.134394645690918 + ], + [ + "▁capitalise", + -14.134469032287598 + ], + [ + "▁Tolerance", + -14.134489059448242 + ], + [ + "▁Daesh", + -14.134496688842773 + ], + [ + "▁transcendental", + -14.13452434539795 + ], + [ + "▁Guildford", + -14.134544372558594 + ], + [ + "045", + -14.134556770324707 + ], + [ + "▁Mattel", + -14.134611129760742 + ], + [ + "▁Proton", + -14.134655952453613 + ], + [ + "▁unfettered", + -14.134663581848145 + ], + [ + "▁ABOVE", + -14.134769439697266 + ], + [ + "▁Suzy", + -14.134804725646973 + ], + [ + "▁Skid", + -14.134805679321289 + ], + [ + "Extra", + -14.134810447692871 + ], + [ + "▁Forester", + -14.134828567504883 + ], + [ + "acies", + -14.13483715057373 + ], + [ + "▁orthodoxy", + -14.13486385345459 + ], + [ + "▁Inventor", + -14.1348876953125 + ], + [ + "vai", + -14.134905815124512 + ], + [ + "▁ADF", + -14.134906768798828 + ], + [ + "▁Pounds", + -14.134910583496094 + ], + [ + "▁epithelium", + -14.134910583496094 + ], + [ + "▁Lander", + -14.134915351867676 + ], + [ + "▁fishy", + -14.134928703308105 + ], + [ + "Shea", + -14.13493537902832 + ], + [ + "Importer", + -14.134967803955078 + ], + [ + "Ü", + -14.13497257232666 + ], + [ + "ène", + -14.13498306274414 + ], + [ + "▁Hg", + -14.135078430175781 + ], + [ + "successful", + -14.135129928588867 + ], + [ + "eering", + -14.135137557983398 + ], + [ + "▁peck", + -14.135138511657715 + ], + [ + "▁Turmeric", + -14.135204315185547 + ], + [ + "▁399", + -14.13525104522705 + ], + [ + "▁Protesters", + -14.135266304016113 + ], + [ + "036", + -14.135292053222656 + ], + [ + "Iran", + -14.135298728942871 + ], + [ + "▁tarnish", + -14.135310173034668 + ], + [ + "▁microRNA", + -14.135346412658691 + ], + [ + "Kill", + -14.135493278503418 + ], + [ + "▁Idlib", + -14.13552188873291 + ], + [ + "▁adipose", + -14.135522842407227 + ], + [ + "iting", + -14.135550498962402 + ], + [ + "difficult", + -14.135566711425781 + ], + [ + "▁Federico", + -14.135592460632324 + ], + [ + "EAT", + -14.135603904724121 + ], + [ + "▁Aro", + -14.135607719421387 + ], + [ + "▁cashing", + -14.135608673095703 + ], + [ + "▁465", + -14.13562297821045 + ], + [ + "▁Wrigley", + -14.135634422302246 + ], + [ + "▁Berber", + -14.135695457458496 + ], + [ + "▁twinkling", + -14.13575267791748 + ], + [ + "▁abscess", + -14.135820388793945 + ], + [ + "alaya", + -14.135836601257324 + ], + [ + "ė", + -14.135927200317383 + ], + [ + "Ber", + -14.135932922363281 + ], + [ + "▁Betts", + -14.135944366455078 + ], + [ + "▁Estes", + -14.136035919189453 + ], + [ + "▁Recap", + -14.136045455932617 + ], + [ + "fro", + -14.136080741882324 + ], + [ + "▁Aesthetics", + -14.13609790802002 + ], + [ + "▁admirer", + -14.136140823364258 + ], + [ + "▁FCS", + -14.136154174804688 + ], + [ + "▁polystyrene", + -14.136208534240723 + ], + [ + "▁sprinting", + -14.136211395263672 + ], + [ + "▁juniper", + -14.136224746704102 + ], + [ + "cea", + -14.136280059814453 + ], + [ + "▁López", + -14.1362886428833 + ], + [ + "▁inciting", + -14.136293411254883 + ], + [ + "▁voiceover", + -14.136327743530273 + ], + [ + "▁basking", + -14.136368751525879 + ], + [ + "afi", + -14.136388778686523 + ], + [ + "▁moisturize", + -14.136401176452637 + ], + [ + "influenced", + -14.136433601379395 + ], + [ + "uco", + -14.136438369750977 + ], + [ + "▁Assistants", + -14.13644027709961 + ], + [ + "atie", + -14.136449813842773 + ], + [ + "▁Asa", + -14.136480331420898 + ], + [ + "▁Turnpike", + -14.136517524719238 + ], + [ + "▁Sarawak", + -14.1365385055542 + ], + [ + "▁Yad", + -14.136541366577148 + ], + [ + "▁Minimalist", + -14.136621475219727 + ], + [ + "▁Applicable", + -14.136630058288574 + ], + [ + "▁IRB", + -14.136640548706055 + ], + [ + "Zo", + -14.1366605758667 + ], + [ + "▁CEC", + -14.136685371398926 + ], + [ + "▁Dancers", + -14.136713981628418 + ], + [ + "tous", + -14.13673210144043 + ], + [ + "▁USAF", + -14.136736869812012 + ], + [ + "oplasty", + -14.136737823486328 + ], + [ + "▁signalled", + -14.136747360229492 + ], + [ + "▁examiners", + -14.136831283569336 + ], + [ + "▁sconces", + -14.136879920959473 + ], + [ + "▁Decade", + -14.136914253234863 + ], + [ + "▁Ryo", + -14.136937141418457 + ], + [ + "▁legible", + -14.136937141418457 + ], + [ + "icious", + -14.13699722290039 + ], + [ + "▁rosette", + -14.137041091918945 + ], + [ + "▁Schematic", + -14.13709545135498 + ], + [ + "▁discounting", + -14.13715648651123 + ], + [ + "▁SOP", + -14.137170791625977 + ], + [ + "578", + -14.137184143066406 + ], + [ + "uple", + -14.137245178222656 + ], + [ + "▁Merger", + -14.137256622314453 + ], + [ + "584", + -14.137277603149414 + ], + [ + "▁brooch", + -14.13733959197998 + ], + [ + "RET", + -14.137344360351562 + ], + [ + "▁441", + -14.137377738952637 + ], + [ + "▁winemaker", + -14.137394905090332 + ], + [ + "▁spammers", + -14.137421607971191 + ], + [ + "▁gauze", + -14.137434959411621 + ], + [ + "▁Nutr", + -14.137444496154785 + ], + [ + "distribution", + -14.13745403289795 + ], + [ + "▁TRADE", + -14.137507438659668 + ], + [ + "Fed", + -14.137567520141602 + ], + [ + "captain", + -14.137585639953613 + ], + [ + "652", + -14.13759708404541 + ], + [ + "welcome", + -14.137615203857422 + ], + [ + "▁succ", + -14.137619972229004 + ], + [ + "aton", + -14.137624740600586 + ], + [ + "lara", + -14.1376314163208 + ], + [ + "▁MARTIN", + -14.137651443481445 + ], + [ + "▁Cline", + -14.137663841247559 + ], + [ + "▁Inferno", + -14.137701988220215 + ], + [ + "▁Argument", + -14.137752532958984 + ], + [ + "▁Chinook", + -14.1378173828125 + ], + [ + "▁Octopus", + -14.137853622436523 + ], + [ + "▁McCa", + -14.137901306152344 + ], + [ + "Senior", + -14.13794231414795 + ], + [ + "▁phonetic", + -14.137956619262695 + ], + [ + "▁Nama", + -14.137978553771973 + ], + [ + "▁MPS", + -14.137992858886719 + ], + [ + "▁oceanfront", + -14.138010025024414 + ], + [ + "Metal", + -14.138113021850586 + ], + [ + "▁pence", + -14.138169288635254 + ], + [ + "avage", + -14.138172149658203 + ], + [ + "▁Grat", + -14.138201713562012 + ], + [ + "▁Coronation", + -14.138222694396973 + ], + [ + "▁OpenStack", + -14.138249397277832 + ], + [ + "▁subtype", + -14.138300895690918 + ], + [ + "▁Kup", + -14.138331413269043 + ], + [ + "▁nucleo", + -14.13834285736084 + ], + [ + "▁Bacteria", + -14.138349533081055 + ], + [ + "▁Hul", + -14.13837718963623 + ], + [ + "nid", + -14.138408660888672 + ], + [ + "▁McD", + -14.138476371765137 + ], + [ + "▁purifying", + -14.138508796691895 + ], + [ + "eker", + -14.138517379760742 + ], + [ + "▁IEP", + -14.138530731201172 + ], + [ + "▁EAT", + -14.13856315612793 + ], + [ + "▁futility", + -14.138572692871094 + ], + [ + "ам", + -14.138591766357422 + ], + [ + "phor", + -14.138627052307129 + ], + [ + "▁Mayfair", + -14.138693809509277 + ], + [ + "▁flywheel", + -14.138714790344238 + ], + [ + "miya", + -14.138737678527832 + ], + [ + "▁deterministic", + -14.138789176940918 + ], + [ + "▁Pieter", + -14.138795852661133 + ], + [ + "▁Pickle", + -14.138800621032715 + ], + [ + "▁£35", + -14.138824462890625 + ], + [ + "752", + -14.138866424560547 + ], + [ + "payments", + -14.138870239257812 + ], + [ + "▁Prisoners", + -14.138874053955078 + ], + [ + "holt", + -14.138886451721191 + ], + [ + "▁sinuses", + -14.138900756835938 + ], + [ + "▁Scripps", + -14.138927459716797 + ], + [ + "DIC", + -14.138932228088379 + ], + [ + "531", + -14.138937950134277 + ], + [ + "Reference", + -14.138938903808594 + ], + [ + "▁unsupervised", + -14.138947486877441 + ], + [ + "▁trinkets", + -14.138960838317871 + ], + [ + "▁Capsule", + -14.138995170593262 + ], + [ + "▁capacitive", + -14.139031410217285 + ], + [ + "▁Servicing", + -14.13909912109375 + ], + [ + "marsh", + -14.139129638671875 + ], + [ + "▁struct", + -14.139178276062012 + ], + [ + "▁storytellers", + -14.139192581176758 + ], + [ + "▁hydropower", + -14.139193534851074 + ], + [ + "▁exuberance", + -14.139203071594238 + ], + [ + "▁upstart", + -14.13921070098877 + ], + [ + "▁φ", + -14.139242172241211 + ], + [ + "▁stoop", + -14.139246940612793 + ], + [ + "▁quotient", + -14.139335632324219 + ], + [ + "ZZ", + -14.139389038085938 + ], + [ + "▁greyhound", + -14.139453887939453 + ], + [ + "▁Involved", + -14.139493942260742 + ], + [ + "▁demi", + -14.139609336853027 + ], + [ + "haz", + -14.139670372009277 + ], + [ + "▁Coronado", + -14.139711380004883 + ], + [ + "▁encroachment", + -14.139726638793945 + ], + [ + "▁Reseller", + -14.13973331451416 + ], + [ + "deficient", + -14.13976764678955 + ], + [ + "▁TSX", + -14.139775276184082 + ], + [ + "▁flirty", + -14.139782905578613 + ], + [ + "▁Asha", + -14.139802932739258 + ], + [ + "cula", + -14.139896392822266 + ], + [ + "chicken", + -14.139954566955566 + ], + [ + "COP", + -14.139960289001465 + ], + [ + "▁Terrence", + -14.14001178741455 + ], + [ + "array", + -14.140043258666992 + ], + [ + "▁MIN", + -14.140074729919434 + ], + [ + "▁alertness", + -14.140091896057129 + ], + [ + "Piece", + -14.140212059020996 + ], + [ + "▁Crook", + -14.14024543762207 + ], + [ + "▁Lend", + -14.140267372131348 + ], + [ + "▁Affinity", + -14.140310287475586 + ], + [ + "▁Genomics", + -14.140332221984863 + ], + [ + "659", + -14.140352249145508 + ], + [ + "▁Sahib", + -14.14035415649414 + ], + [ + "▁Bernadette", + -14.140382766723633 + ], + [ + "▁Diabetic", + -14.140382766723633 + ], + [ + "▁Concierge", + -14.140501022338867 + ], + [ + "nage", + -14.140508651733398 + ], + [ + "▁embellishment", + -14.140515327453613 + ], + [ + "▁skyrocket", + -14.140541076660156 + ], + [ + "stitch", + -14.14055061340332 + ], + [ + "▁Php", + -14.140583992004395 + ], + [ + "grained", + -14.14058780670166 + ], + [ + "▁Widget", + -14.14059066772461 + ], + [ + "▁omelet", + -14.140591621398926 + ], + [ + "1918", + -14.140617370605469 + ], + [ + "iola", + -14.140639305114746 + ], + [ + "cky", + -14.140640258789062 + ], + [ + "▁emancipation", + -14.14065933227539 + ], + [ + "anka", + -14.140670776367188 + ], + [ + "▁Pact", + -14.140701293945312 + ], + [ + "▁overworked", + -14.140702247619629 + ], + [ + "▁Prisoner", + -14.140730857849121 + ], + [ + "▁Roto", + -14.140735626220703 + ], + [ + "Ö", + -14.140776634216309 + ], + [ + "▁Fleece", + -14.140907287597656 + ], + [ + "▁Delicate", + -14.140957832336426 + ], + [ + "▁Snip", + -14.140987396240234 + ], + [ + "▁Susanna", + -14.141007423400879 + ], + [ + "clin", + -14.141020774841309 + ], + [ + "eres", + -14.141047477722168 + ], + [ + "▁spatially", + -14.141048431396484 + ], + [ + "bier", + -14.14110279083252 + ], + [ + "uver", + -14.141109466552734 + ], + [ + "PIN", + -14.141117095947266 + ], + [ + "▁thrashing", + -14.141200065612793 + ], + [ + "lawn", + -14.14123249053955 + ], + [ + "në", + -14.14123249053955 + ], + [ + "▁Banco", + -14.141263961791992 + ], + [ + "▁£16", + -14.141380310058594 + ], + [ + "▁traceability", + -14.141404151916504 + ], + [ + "▁nooks", + -14.141423225402832 + ], + [ + "▁Condor", + -14.141460418701172 + ], + [ + "▁Nm", + -14.141488075256348 + ], + [ + "766", + -14.141522407531738 + ], + [ + "▁torrents", + -14.141523361206055 + ], + [ + "clar", + -14.141568183898926 + ], + [ + "▁Emblem", + -14.141592979431152 + ], + [ + "▁compensating", + -14.1416015625 + ], + [ + "alkyl", + -14.14161205291748 + ], + [ + "▁Haines", + -14.141613960266113 + ], + [ + "▁Hoi", + -14.14162826538086 + ], + [ + "▁intensifying", + -14.141636848449707 + ], + [ + "▁culminates", + -14.14167308807373 + ], + [ + "lender", + -14.141684532165527 + ], + [ + "▁Valdez", + -14.141707420349121 + ], + [ + "▁PICK", + -14.141708374023438 + ], + [ + "▁д", + -14.141759872436523 + ], + [ + "egu", + -14.141796112060547 + ], + [ + "▁Kyrie", + -14.141799926757812 + ], + [ + "▁Argent", + -14.141838073730469 + ], + [ + "523", + -14.141855239868164 + ], + [ + "▁dummies", + -14.141880989074707 + ], + [ + "▁Reginald", + -14.141905784606934 + ], + [ + "▁Allianz", + -14.141907691955566 + ], + [ + "Options", + -14.142012596130371 + ], + [ + "▁Armageddon", + -14.142045974731445 + ], + [ + "▁Davison", + -14.142084121704102 + ], + [ + "▁Nightingale", + -14.14210033416748 + ], + [ + "▁Insiders", + -14.142112731933594 + ], + [ + "▁luminaries", + -14.142118453979492 + ], + [ + "▁shippers", + -14.142130851745605 + ], + [ + "OLD", + -14.142163276672363 + ], + [ + "▁Patsy", + -14.142180442810059 + ], + [ + "▁TECH", + -14.142216682434082 + ], + [ + "▁Predictions", + -14.14223575592041 + ], + [ + "▁Reasoning", + -14.142298698425293 + ], + [ + "▁Anu", + -14.142308235168457 + ], + [ + "mare", + -14.142317771911621 + ], + [ + "▁glen", + -14.142324447631836 + ], + [ + "upload", + -14.142346382141113 + ], + [ + "matrix", + -14.142354011535645 + ], + [ + "▁nugget", + -14.142380714416504 + ], + [ + "▁bourgeoisie", + -14.142394065856934 + ], + [ + "▁Forests", + -14.142404556274414 + ], + [ + "▁kites", + -14.14243221282959 + ], + [ + "▁Xinhua", + -14.142439842224121 + ], + [ + "▁Vat", + -14.142462730407715 + ], + [ + "▁mandala", + -14.14250373840332 + ], + [ + "▁nope", + -14.142510414123535 + ], + [ + "▁Letterman", + -14.142531394958496 + ], + [ + "▁purged", + -14.142539024353027 + ], + [ + "698", + -14.142570495605469 + ], + [ + "▁Lucille", + -14.14260196685791 + ], + [ + "▁Biennial", + -14.142648696899414 + ], + [ + "▁motorsport", + -14.142682075500488 + ], + [ + "▁reciprocity", + -14.142699241638184 + ], + [ + "▁är", + -14.142721176147461 + ], + [ + "▁amulet", + -14.142725944519043 + ], + [ + "dynamics", + -14.142749786376953 + ], + [ + "Ride", + -14.142772674560547 + ], + [ + "▁Nottinghamshire", + -14.142840385437012 + ], + [ + "▁resuming", + -14.142849922180176 + ], + [ + "▁slog", + -14.142876625061035 + ], + [ + "▁subsurface", + -14.142879486083984 + ], + [ + "▁1821", + -14.142882347106934 + ], + [ + "▁SSP", + -14.142887115478516 + ], + [ + "▁todos", + -14.14289665222168 + ], + [ + "occo", + -14.142908096313477 + ], + [ + "lmer", + -14.142998695373535 + ], + [ + "▁ADM", + -14.143012046813965 + ], + [ + "став", + -14.143030166625977 + ], + [ + "iol", + -14.143043518066406 + ], + [ + "▁dreamer", + -14.14305305480957 + ], + [ + "▁MBS", + -14.143062591552734 + ], + [ + "▁ik", + -14.143092155456543 + ], + [ + "preferably", + -14.143115997314453 + ], + [ + "▁Rohan", + -14.143135070800781 + ], + [ + "DING", + -14.143146514892578 + ], + [ + "▁BMO", + -14.143158912658691 + ], + [ + "REM", + -14.143182754516602 + ], + [ + "igu", + -14.143208503723145 + ], + [ + "DNS", + -14.143224716186523 + ], + [ + "▁Marathi", + -14.143247604370117 + ], + [ + "▁845", + -14.143327713012695 + ], + [ + "▁deduce", + -14.143352508544922 + ], + [ + "7°", + -14.143355369567871 + ], + [ + "▁disarmament", + -14.143424987792969 + ], + [ + "ibu", + -14.143434524536133 + ], + [ + "thio", + -14.143450736999512 + ], + [ + "Sean", + -14.143497467041016 + ], + [ + "▁epidermis", + -14.14352035522461 + ], + [ + "embe", + -14.143532752990723 + ], + [ + "▁Herzog", + -14.143540382385254 + ], + [ + "▁heather", + -14.143550872802734 + ], + [ + "▁complementing", + -14.14356517791748 + ], + [ + "bile", + -14.143585205078125 + ], + [ + "Button", + -14.143608093261719 + ], + [ + "▁Sle", + -14.14361572265625 + ], + [ + "▁Southport", + -14.143623352050781 + ], + [ + "▁labourers", + -14.143630981445312 + ], + [ + "▁boaters", + -14.143665313720703 + ], + [ + "▁scrubbed", + -14.143739700317383 + ], + [ + "Gift", + -14.143745422363281 + ], + [ + "▁Cellar", + -14.14374828338623 + ], + [ + "SHIP", + -14.143754959106445 + ], + [ + "Spy", + -14.14376163482666 + ], + [ + "▁elaboration", + -14.143806457519531 + ], + [ + "▁dined", + -14.14380931854248 + ], + [ + "▁Visions", + -14.143865585327148 + ], + [ + "▁Marketers", + -14.143868446350098 + ], + [ + "▁Cyan", + -14.143880844116211 + ], + [ + "▁washington", + -14.143900871276855 + ], + [ + "▁rem", + -14.143932342529297 + ], + [ + "▁Bandit", + -14.143953323364258 + ], + [ + "nje", + -14.143980979919434 + ], + [ + "▁MARY", + -14.144020080566406 + ], + [ + "▁inflow", + -14.144035339355469 + ], + [ + "▁Drexel", + -14.144055366516113 + ], + [ + "euro", + -14.144064903259277 + ], + [ + "▁Obispo", + -14.144081115722656 + ], + [ + "▁Mim", + -14.144125938415527 + ], + [ + "▁commemorated", + -14.144136428833008 + ], + [ + "▁Fixing", + -14.144147872924805 + ], + [ + "Ship", + -14.144171714782715 + ], + [ + "hale", + -14.144174575805664 + ], + [ + "seo", + -14.144209861755371 + ], + [ + "▁Rotherham", + -14.144209861755371 + ], + [ + "cci", + -14.144219398498535 + ], + [ + "hao", + -14.144261360168457 + ], + [ + "▁imparted", + -14.144326210021973 + ], + [ + "▁stinky", + -14.144328117370605 + ], + [ + "▁Absent", + -14.14433479309082 + ], + [ + "Jobs", + -14.14437198638916 + ], + [ + "izar", + -14.144383430480957 + ], + [ + "▁Smoked", + -14.144462585449219 + ], + [ + "LIST", + -14.144488334655762 + ], + [ + "▁organist", + -14.14452075958252 + ], + [ + "▁Compaq", + -14.144527435302734 + ], + [ + "▁Playlist", + -14.144559860229492 + ], + [ + "▁spurious", + -14.144559860229492 + ], + [ + "▁Torrance", + -14.144569396972656 + ], + [ + "▁Ginsburg", + -14.144577980041504 + ], + [ + "▁Arrived", + -14.144603729248047 + ], + [ + "▁cranial", + -14.144606590270996 + ], + [ + "▁Piet", + -14.144619941711426 + ], + [ + "bare", + -14.144633293151855 + ], + [ + "▁Hoboken", + -14.144667625427246 + ], + [ + "▁millimeter", + -14.144675254821777 + ], + [ + "▁confounding", + -14.144744873046875 + ], + [ + "abiding", + -14.144770622253418 + ], + [ + "▁sudo", + -14.144783020019531 + ], + [ + "ETTE", + -14.144796371459961 + ], + [ + "نا", + -14.144803047180176 + ], + [ + "782", + -14.144853591918945 + ], + [ + "▁NOS", + -14.144879341125488 + ], + [ + "▁Cleanse", + -14.144966125488281 + ], + [ + "STD", + -14.144998550415039 + ], + [ + "ение", + -14.145059585571289 + ], + [ + "▁carpeted", + -14.145079612731934 + ], + [ + "otomy", + -14.145098686218262 + ], + [ + "rati", + -14.145101547241211 + ], + [ + "▁Insulin", + -14.14511489868164 + ], + [ + "▁Armenians", + -14.145137786865234 + ], + [ + "insured", + -14.145216941833496 + ], + [ + "opolis", + -14.145235061645508 + ], + [ + "itzer", + -14.145298957824707 + ], + [ + "▁Ears", + -14.145301818847656 + ], + [ + "▁Gator", + -14.145329475402832 + ], + [ + "▁Karlsson", + -14.145330429077148 + ], + [ + "hull", + -14.145339965820312 + ], + [ + "▁quarterfinal", + -14.145417213439941 + ], + [ + "▁Prototype", + -14.14543342590332 + ], + [ + "erci", + -14.145444869995117 + ], + [ + "▁recoveries", + -14.14549732208252 + ], + [ + "▁headliner", + -14.145502090454102 + ], + [ + "▁subdivided", + -14.145525932312012 + ], + [ + "hatch", + -14.14556884765625 + ], + [ + "BACK", + -14.145570755004883 + ], + [ + "GMT", + -14.145586967468262 + ], + [ + "writers", + -14.145601272583008 + ], + [ + "▁habitable", + -14.145621299743652 + ], + [ + "▁Aetna", + -14.145624160766602 + ], + [ + "▁Bott", + -14.145648002624512 + ], + [ + "PPA", + -14.14566707611084 + ], + [ + "NIA", + -14.145676612854004 + ], + [ + "▁Rival", + -14.145716667175293 + ], + [ + "▁Peas", + -14.14574909210205 + ], + [ + "▁DPI", + -14.145750999450684 + ], + [ + "▁Hardcover", + -14.145759582519531 + ], + [ + "▁Restart", + -14.145772933959961 + ], + [ + "▁moat", + -14.145864486694336 + ], + [ + "▁Accepting", + -14.145880699157715 + ], + [ + "Tea", + -14.145975112915039 + ], + [ + "▁Shady", + -14.14598274230957 + ], + [ + "▁saxophonist", + -14.146003723144531 + ], + [ + "chka", + -14.146041870117188 + ], + [ + "mama", + -14.146056175231934 + ], + [ + "▁levies", + -14.14608383178711 + ], + [ + "▁voyages", + -14.14608383178711 + ], + [ + "RQ", + -14.146099090576172 + ], + [ + "HIV", + -14.14619255065918 + ], + [ + "▁Pereira", + -14.146234512329102 + ], + [ + "graphs", + -14.146245002746582 + ], + [ + "▁Fundraiser", + -14.14626407623291 + ], + [ + "▁bleached", + -14.146281242370605 + ], + [ + "▁skirmish", + -14.146331787109375 + ], + [ + "▁inwards", + -14.146340370178223 + ], + [ + "▁preheated", + -14.146344184875488 + ], + [ + "▁looped", + -14.146411895751953 + ], + [ + "▁Necro", + -14.146419525146484 + ], + [ + "▁Threshold", + -14.146424293518066 + ], + [ + "tosis", + -14.146443367004395 + ], + [ + "▁gunshots", + -14.146456718444824 + ], + [ + "▁convinces", + -14.14647102355957 + ], + [ + "▁unharmed", + -14.14653205871582 + ], + [ + "▁PRP", + -14.146552085876465 + ], + [ + "▁modifiers", + -14.146552085876465 + ], + [ + "▁Surya", + -14.146568298339844 + ], + [ + "▁dreading", + -14.146594047546387 + ], + [ + "▁slits", + -14.146599769592285 + ], + [ + "▁huddle", + -14.146607398986816 + ], + [ + "Federal", + -14.146626472473145 + ], + [ + "▁banding", + -14.146634101867676 + ], + [ + "▁DDoS", + -14.146637916564941 + ], + [ + "Management", + -14.146737098693848 + ], + [ + "▁neurodegenerative", + -14.146759033203125 + ], + [ + "asana", + -14.146780014038086 + ], + [ + "▁flattered", + -14.146797180175781 + ], + [ + "▁precipitated", + -14.146811485290527 + ], + [ + "▁bundling", + -14.146894454956055 + ], + [ + "shake", + -14.146957397460938 + ], + [ + "▁passers", + -14.147071838378906 + ], + [ + "skirt", + -14.147096633911133 + ], + [ + "▁Yash", + -14.147102355957031 + ], + [ + "tically", + -14.147109031677246 + ], + [ + "▁servi", + -14.147110939025879 + ], + [ + "▁rhyming", + -14.147133827209473 + ], + [ + "▁XO", + -14.147194862365723 + ], + [ + "qq", + -14.147208213806152 + ], + [ + "▁Membrane", + -14.147212982177734 + ], + [ + "▁MARCH", + -14.147244453430176 + ], + [ + "▁Skeleton", + -14.147271156311035 + ], + [ + "▁crossovers", + -14.1472806930542 + ], + [ + "▁polymorphism", + -14.14728832244873 + ], + [ + "027", + -14.147294044494629 + ], + [ + "▁Sensory", + -14.147306442260742 + ], + [ + "ে", + -14.147344589233398 + ], + [ + "rán", + -14.147377014160156 + ], + [ + "▁Historian", + -14.147385597229004 + ], + [ + "▁electrification", + -14.147394180297852 + ], + [ + "▁Supernatural", + -14.14742660522461 + ], + [ + "▁gentler", + -14.147448539733887 + ], + [ + "▁refuted", + -14.147452354431152 + ], + [ + "▁Revel", + -14.147453308105469 + ], + [ + "Tar", + -14.14748764038086 + ], + [ + "▁dubai", + -14.1475191116333 + ], + [ + "▁boisterous", + -14.147605895996094 + ], + [ + "▁september", + -14.147703170776367 + ], + [ + "▁saddled", + -14.147708892822266 + ], + [ + "▁LAC", + -14.147721290588379 + ], + [ + "▁Foucault", + -14.147753715515137 + ], + [ + "▁proclaims", + -14.147767066955566 + ], + [ + "▁backlit", + -14.147775650024414 + ], + [ + "Anything", + -14.14782428741455 + ], + [ + "▁coaxial", + -14.147835731506348 + ], + [ + "▁impassioned", + -14.147867202758789 + ], + [ + "▁Lumen", + -14.147869110107422 + ], + [ + "672", + -14.147899627685547 + ], + [ + "▁welder", + -14.147919654846191 + ], + [ + "▁CFC", + -14.14792537689209 + ], + [ + "▁Timberwolves", + -14.147948265075684 + ], + [ + "▁Sheng", + -14.147991180419922 + ], + [ + "▁Lawton", + -14.148011207580566 + ], + [ + "▁Niño", + -14.148012161254883 + ], + [ + "Republican", + -14.148077964782715 + ], + [ + "▁Exe", + -14.148080825805664 + ], + [ + "universal", + -14.148115158081055 + ], + [ + "1400", + -14.148117065429688 + ], + [ + "▁CSO", + -14.148162841796875 + ], + [ + "▁homely", + -14.148187637329102 + ], + [ + "▁Wau", + -14.148219108581543 + ], + [ + "▁Milne", + -14.148265838623047 + ], + [ + "031", + -14.148310661315918 + ], + [ + "▁machete", + -14.148443222045898 + ], + [ + "▁617", + -14.148497581481934 + ], + [ + "▁Babel", + -14.148503303527832 + ], + [ + "Hit", + -14.148563385009766 + ], + [ + "▁tid", + -14.148575782775879 + ], + [ + "848", + -14.148669242858887 + ], + [ + "ULL", + -14.148680686950684 + ], + [ + "nir", + -14.14868450164795 + ], + [ + "▁Rutland", + -14.148697853088379 + ], + [ + "Actually", + -14.148712158203125 + ], + [ + "▁auctioneer", + -14.148721694946289 + ], + [ + "▁Nutcracker", + -14.148727416992188 + ], + [ + "▁Barnsley", + -14.148733139038086 + ], + [ + "▁mackerel", + -14.148760795593262 + ], + [ + "▁cosmology", + -14.148796081542969 + ], + [ + "hura", + -14.148802757263184 + ], + [ + "merge", + -14.148802757263184 + ], + [ + "▁Kost", + -14.1488037109375 + ], + [ + "▁Boolean", + -14.148818969726562 + ], + [ + "▁fliers", + -14.148822784423828 + ], + [ + "▁Loom", + -14.148876190185547 + ], + [ + "azzo", + -14.148879051208496 + ], + [ + "Bright", + -14.148938179016113 + ], + [ + "▁Dru", + -14.148959159851074 + ], + [ + "▁Nationally", + -14.148983001708984 + ], + [ + "▁Infants", + -14.149029731750488 + ], + [ + "egi", + -14.149086952209473 + ], + [ + "▁ARP", + -14.149092674255371 + ], + [ + "vani", + -14.149096488952637 + ], + [ + "▁rammed", + -14.149101257324219 + ], + [ + "cara", + -14.149115562438965 + ], + [ + "▁Oxfam", + -14.149126052856445 + ], + [ + "flam", + -14.149162292480469 + ], + [ + "▁Ayers", + -14.149296760559082 + ], + [ + "▁Tens", + -14.149321556091309 + ], + [ + "▁Chopin", + -14.149332046508789 + ], + [ + "▁entree", + -14.149343490600586 + ], + [ + "▁Yeshua", + -14.149364471435547 + ], + [ + "▁potable", + -14.149399757385254 + ], + [ + "▁Chalmers", + -14.149415969848633 + ], + [ + "▁inflows", + -14.149433135986328 + ], + [ + "selective", + -14.149439811706543 + ], + [ + "▁irreplaceable", + -14.14954662322998 + ], + [ + "641", + -14.149580955505371 + ], + [ + "▁PPT", + -14.14958381652832 + ], + [ + "▁Calories", + -14.149585723876953 + ], + [ + "▁DOD", + -14.149616241455078 + ], + [ + "▁skimming", + -14.149621963500977 + ], + [ + "▁unfriendly", + -14.149627685546875 + ], + [ + "▁merch", + -14.149641036987305 + ], + [ + "▁electrifying", + -14.14965534210205 + ], + [ + "▁nab", + -14.149682998657227 + ], + [ + "▁612", + -14.149707794189453 + ], + [ + "▁Sev", + -14.149784088134766 + ], + [ + "э", + -14.149815559387207 + ], + [ + "AIN", + -14.14986515045166 + ], + [ + "IJ", + -14.14990234375 + ], + [ + "▁tarnished", + -14.149980545043945 + ], + [ + "▁Cari", + -14.150002479553223 + ], + [ + "▁Hug", + -14.15011215209961 + ], + [ + "grin", + -14.150124549865723 + ], + [ + "く", + -14.150147438049316 + ], + [ + "▁indentation", + -14.150190353393555 + ], + [ + "BAC", + -14.150198936462402 + ], + [ + "Planet", + -14.150242805480957 + ], + [ + "▁LIMITATION", + -14.15024471282959 + ], + [ + "▁deterrence", + -14.15025806427002 + ], + [ + "Blu", + -14.150260925292969 + ], + [ + "▁Correlation", + -14.150263786315918 + ], + [ + "▁Avast", + -14.150264739990234 + ], + [ + "aside", + -14.150273323059082 + ], + [ + "▁Recycled", + -14.15029239654541 + ], + [ + "▁slimming", + -14.1503267288208 + ], + [ + "829", + -14.150367736816406 + ], + [ + "▁mucous", + -14.150396347045898 + ], + [ + "▁errant", + -14.150444984436035 + ], + [ + "▁Shamrock", + -14.15048599243164 + ], + [ + "▁Footage", + -14.150518417358398 + ], + [ + "▁trickier", + -14.150524139404297 + ], + [ + "▁thicknesses", + -14.150527954101562 + ], + [ + "cce", + -14.150529861450195 + ], + [ + "797", + -14.150544166564941 + ], + [ + "Mus", + -14.150580406188965 + ], + [ + "Hunter", + -14.150595664978027 + ], + [ + "anche", + -14.150712013244629 + ], + [ + "▁Northamptonshire", + -14.150723457336426 + ], + [ + "▁373", + -14.150731086730957 + ], + [ + "▁Qualitative", + -14.150744438171387 + ], + [ + "▁Kae", + -14.150821685791016 + ], + [ + "▁Calculus", + -14.150827407836914 + ], + [ + "lga", + -14.150832176208496 + ], + [ + "▁REP", + -14.150857925415039 + ], + [ + "▁Threads", + -14.150970458984375 + ], + [ + "booking", + -14.150992393493652 + ], + [ + "▁Synagogue", + -14.151023864746094 + ], + [ + "▁Levant", + -14.151039123535156 + ], + [ + "▁Receipt", + -14.151159286499023 + ], + [ + "nci", + -14.151224136352539 + ], + [ + "▁Hoa", + -14.151300430297852 + ], + [ + "▁bled", + -14.151344299316406 + ], + [ + "mem", + -14.151436805725098 + ], + [ + "▁423", + -14.151496887207031 + ], + [ + "▁Hahaha", + -14.151542663574219 + ], + [ + "▁Broom", + -14.151572227478027 + ], + [ + "▁trustworthiness", + -14.151619911193848 + ], + [ + "▁BOY", + -14.151640892028809 + ], + [ + "Py", + -14.151692390441895 + ], + [ + "▁esto", + -14.151711463928223 + ], + [ + "▁baseless", + -14.15172004699707 + ], + [ + "▁jurisprudence", + -14.151725769042969 + ], + [ + "▁Sabine", + -14.151740074157715 + ], + [ + "▁Empirical", + -14.151782035827637 + ], + [ + "▁Empower", + -14.1517972946167 + ], + [ + "cort", + -14.151848793029785 + ], + [ + "rno", + -14.151922225952148 + ], + [ + "מ", + -14.151937484741211 + ], + [ + "▁Rove", + -14.151954650878906 + ], + [ + "ș", + -14.152005195617676 + ], + [ + "gic", + -14.15202808380127 + ], + [ + "▁MATLAB", + -14.152040481567383 + ], + [ + "Shirts", + -14.152063369750977 + ], + [ + "▁alphabetically", + -14.152079582214355 + ], + [ + "1957", + -14.152106285095215 + ], + [ + "▁sein", + -14.152165412902832 + ], + [ + "▁TER", + -14.152166366577148 + ], + [ + "▁Musician", + -14.152170181274414 + ], + [ + "▁Neolithic", + -14.152185440063477 + ], + [ + "▁downpour", + -14.152270317077637 + ], + [ + "FV", + -14.152300834655762 + ], + [ + "▁juror", + -14.152304649353027 + ], + [ + "▁purging", + -14.152338027954102 + ], + [ + "▁Leven", + -14.152356147766113 + ], + [ + "Expert", + -14.152372360229492 + ], + [ + "▁358", + -14.152413368225098 + ], + [ + "▁washroom", + -14.152450561523438 + ], + [ + "itha", + -14.15250015258789 + ], + [ + "▁SBM", + -14.152505874633789 + ], + [ + "abl", + -14.152544021606445 + ], + [ + "ное", + -14.15261459350586 + ], + [ + "▁dimly", + -14.152669906616211 + ], + [ + "▁tiene", + -14.152678489685059 + ], + [ + "soever", + -14.152685165405273 + ], + [ + "▁tulip", + -14.152719497680664 + ], + [ + "▁daybed", + -14.152785301208496 + ], + [ + "▁zealous", + -14.152801513671875 + ], + [ + "▁Footwear", + -14.152860641479492 + ], + [ + "▁eject", + -14.15287971496582 + ], + [ + "helm", + -14.1528959274292 + ], + [ + "▁jungles", + -14.15293025970459 + ], + [ + "bab", + -14.152935028076172 + ], + [ + "relationship", + -14.152938842773438 + ], + [ + "▁Trop", + -14.15295124053955 + ], + [ + "▁Representing", + -14.152997016906738 + ], + [ + "▁STL", + -14.15303897857666 + ], + [ + "▁swish", + -14.153045654296875 + ], + [ + "▁Catcher", + -14.153066635131836 + ], + [ + "▁Nasser", + -14.153071403503418 + ], + [ + "▁behest", + -14.153071403503418 + ], + [ + "aul", + -14.153075218200684 + ], + [ + "▁ACO", + -14.15307903289795 + ], + [ + "moo", + -14.15308666229248 + ], + [ + "▁chum", + -14.153104782104492 + ], + [ + "▁Xia", + -14.153145790100098 + ], + [ + "▁Lien", + -14.153170585632324 + ], + [ + "iary", + -14.153207778930664 + ], + [ + "▁Academia", + -14.153219223022461 + ], + [ + "▁CONDITION", + -14.153300285339355 + ], + [ + "▁Gue", + -14.153351783752441 + ], + [ + "▁forbids", + -14.153361320495605 + ], + [ + "▁biopharmaceutical", + -14.15339183807373 + ], + [ + "▁parentheses", + -14.15340518951416 + ], + [ + "forums", + -14.153406143188477 + ], + [ + "▁licks", + -14.153412818908691 + ], + [ + "▁Bernardo", + -14.153548240661621 + ], + [ + "▁treads", + -14.153594970703125 + ], + [ + "▁Astronomical", + -14.153616905212402 + ], + [ + "▁handcuffed", + -14.153621673583984 + ], + [ + "▁Myths", + -14.153637886047363 + ], + [ + "▁Knapp", + -14.153661727905273 + ], + [ + "▁cooldown", + -14.153666496276855 + ], + [ + "▁mismatched", + -14.153738975524902 + ], + [ + "▁Dogg", + -14.153790473937988 + ], + [ + "eya", + -14.15379524230957 + ], + [ + "▁Kristy", + -14.15383529663086 + ], + [ + "▁astonishment", + -14.153900146484375 + ], + [ + "▁marbles", + -14.153931617736816 + ], + [ + "▁Interment", + -14.153947830200195 + ], + [ + "Yellow", + -14.153971672058105 + ], + [ + "ilio", + -14.154032707214355 + ], + [ + "izza", + -14.154040336608887 + ], + [ + "▁Laz", + -14.154052734375 + ], + [ + "▁hun", + -14.154067039489746 + ], + [ + "guil", + -14.154088973999023 + ], + [ + "▁sociopath", + -14.154131889343262 + ], + [ + "Exporter", + -14.154153823852539 + ], + [ + "meh", + -14.154179573059082 + ], + [ + "▁assassins", + -14.15418529510498 + ], + [ + "bran", + -14.154203414916992 + ], + [ + "▁interrogate", + -14.154232025146484 + ], + [ + "Visit", + -14.154236793518066 + ], + [ + "▁fixer", + -14.154276847839355 + ], + [ + "▁dropout", + -14.15433406829834 + ], + [ + "887", + -14.154335021972656 + ], + [ + "▁Kag", + -14.154342651367188 + ], + [ + "condition", + -14.154373168945312 + ], + [ + "obsessed", + -14.154391288757324 + ], + [ + "▁cycled", + -14.154391288757324 + ], + [ + "carp", + -14.154412269592285 + ], + [ + "491", + -14.15442943572998 + ], + [ + "iyan", + -14.154446601867676 + ], + [ + "▁manipulations", + -14.154485702514648 + ], + [ + "▁mite", + -14.154492378234863 + ], + [ + "cases", + -14.154509544372559 + ], + [ + "▁sects", + -14.154534339904785 + ], + [ + "▁timepiece", + -14.154571533203125 + ], + [ + "oste", + -14.15457820892334 + ], + [ + "▁aberration", + -14.154583930969238 + ], + [ + "▁Fabrication", + -14.154584884643555 + ], + [ + "▁Bonuses", + -14.154659271240234 + ], + [ + "Disney", + -14.154716491699219 + ], + [ + "▁Herd", + -14.154720306396484 + ], + [ + "▁Sly", + -14.154720306396484 + ], + [ + "▁nomenclature", + -14.154852867126465 + ], + [ + "ethylene", + -14.154860496520996 + ], + [ + "▁insole", + -14.154869079589844 + ], + [ + "Nasdaq", + -14.154870986938477 + ], + [ + "Bull", + -14.154906272888184 + ], + [ + "▁Oaxaca", + -14.154924392700195 + ], + [ + "lava", + -14.15493106842041 + ], + [ + "▁coupler", + -14.15493106842041 + ], + [ + "▁Lula", + -14.15495777130127 + ], + [ + "volunteer", + -14.154980659484863 + ], + [ + "idin", + -14.15499210357666 + ], + [ + "▁disheartening", + -14.155014038085938 + ], + [ + "▁Virtu", + -14.155038833618164 + ], + [ + "lma", + -14.155058860778809 + ], + [ + "▁Condominium", + -14.155059814453125 + ], + [ + "INC", + -14.155060768127441 + ], + [ + "offensive", + -14.155082702636719 + ], + [ + "989", + -14.155144691467285 + ], + [ + "▁SPORTS", + -14.155171394348145 + ], + [ + "▁Succeed", + -14.155203819274902 + ], + [ + "▁383", + -14.15522289276123 + ], + [ + "▁pornographic", + -14.15527057647705 + ], + [ + "▁Dubrovnik", + -14.155340194702148 + ], + [ + "▁flossing", + -14.155349731445312 + ], + [ + "▁xenical", + -14.155351638793945 + ], + [ + "genous", + -14.155375480651855 + ], + [ + "▁dissipated", + -14.1553955078125 + ], + [ + "▁apa", + -14.155404090881348 + ], + [ + "▁signatories", + -14.15542984008789 + ], + [ + "dele", + -14.155485153198242 + ], + [ + "hue", + -14.155491828918457 + ], + [ + "guardian", + -14.155494689941406 + ], + [ + "▁Bowles", + -14.155499458312988 + ], + [ + "▁weaning", + -14.155515670776367 + ], + [ + "▁creatine", + -14.155555725097656 + ], + [ + "limits", + -14.155561447143555 + ], + [ + "bart", + -14.155599594116211 + ], + [ + "ර", + -14.155660629272461 + ], + [ + "▁ITIL", + -14.15571403503418 + ], + [ + "▁repealing", + -14.15571403503418 + ], + [ + "bine", + -14.15575885772705 + ], + [ + "gina", + -14.15576171875 + ], + [ + "migrant", + -14.155763626098633 + ], + [ + "ա", + -14.155769348144531 + ], + [ + "clone", + -14.155776977539062 + ], + [ + "장", + -14.155789375305176 + ], + [ + "▁tph", + -14.155790328979492 + ], + [ + "817", + -14.15584659576416 + ], + [ + "▁unpacked", + -14.155856132507324 + ], + [ + "Property", + -14.155872344970703 + ], + [ + "▁metastases", + -14.155879020690918 + ], + [ + "▁Retention", + -14.155885696411133 + ], + [ + "▁consensual", + -14.155900001525879 + ], + [ + "cked", + -14.155939102172852 + ], + [ + "PRE", + -14.155976295471191 + ], + [ + "▁trundle", + -14.156000137329102 + ], + [ + "▁didactic", + -14.156002044677734 + ], + [ + "Chip", + -14.15600299835205 + ], + [ + "▁Coney", + -14.156004905700684 + ], + [ + "▁Xero", + -14.156023025512695 + ], + [ + "▁pathologist", + -14.156031608581543 + ], + [ + "▁McClure", + -14.156036376953125 + ], + [ + "▁ECS", + -14.156074523925781 + ], + [ + "▁drugged", + -14.156110763549805 + ], + [ + "▁Robinhood", + -14.156129837036133 + ], + [ + "▁rabbis", + -14.15615463256836 + ], + [ + "▁THOSE", + -14.156164169311523 + ], + [ + "▁uncharted", + -14.156194686889648 + ], + [ + "▁cinder", + -14.156254768371582 + ], + [ + "▁mejor", + -14.15629768371582 + ], + [ + "▁weakens", + -14.156364440917969 + ], + [ + "▁colorless", + -14.156389236450195 + ], + [ + "PASS", + -14.156444549560547 + ], + [ + "▁digi", + -14.156445503234863 + ], + [ + "anno", + -14.156454086303711 + ], + [ + "1038", + -14.15649700164795 + ], + [ + "addy", + -14.156506538391113 + ], + [ + "▁704", + -14.156533241271973 + ], + [ + "▁cardiology", + -14.156543731689453 + ], + [ + "▁treatable", + -14.156575202941895 + ], + [ + "relli", + -14.156635284423828 + ], + [ + "▁undiscovered", + -14.156651496887207 + ], + [ + "▁Yarra", + -14.156659126281738 + ], + [ + "▁Tees", + -14.156719207763672 + ], + [ + "▁skype", + -14.15674114227295 + ], + [ + "▁Seine", + -14.156749725341797 + ], + [ + "▁SEL", + -14.156755447387695 + ], + [ + "thousand", + -14.156760215759277 + ], + [ + "▁hibernation", + -14.156785011291504 + ], + [ + "phobic", + -14.156794548034668 + ], + [ + "▁rancher", + -14.156810760498047 + ], + [ + "heading", + -14.156834602355957 + ], + [ + "logged", + -14.156848907470703 + ], + [ + "folding", + -14.156891822814941 + ], + [ + "▁tres", + -14.156902313232422 + ], + [ + "▁sprites", + -14.156912803649902 + ], + [ + "Remove", + -14.156939506530762 + ], + [ + "▁Alum", + -14.156944274902344 + ], + [ + "schools", + -14.156977653503418 + ], + [ + "▁PETA", + -14.157038688659668 + ], + [ + "▁feedstock", + -14.157052993774414 + ], + [ + "▁cannula", + -14.157055854797363 + ], + [ + "▁zoloft", + -14.157068252563477 + ], + [ + "▁overtaking", + -14.157102584838867 + ], + [ + "▁enigma", + -14.157115936279297 + ], + [ + "▁rations", + -14.157122611999512 + ], + [ + "▁Mirza", + -14.157148361206055 + ], + [ + "719", + -14.157184600830078 + ], + [ + "▁crunching", + -14.157212257385254 + ], + [ + "▁ב", + -14.157214164733887 + ], + [ + "▁Cano", + -14.157220840454102 + ], + [ + "▁SHORT", + -14.15729808807373 + ], + [ + "▁Reggae", + -14.157332420349121 + ], + [ + "Calif", + -14.157354354858398 + ], + [ + "▁Layton", + -14.15739917755127 + ], + [ + "▁digitization", + -14.157432556152344 + ], + [ + "▁Carousel", + -14.157435417175293 + ], + [ + "▁Gea", + -14.157489776611328 + ], + [ + "▁Thistle", + -14.157522201538086 + ], + [ + "▁Storytelling", + -14.157554626464844 + ], + [ + "589", + -14.157608032226562 + ], + [ + "▁Physiotherapy", + -14.157608032226562 + ], + [ + "NED", + -14.157657623291016 + ], + [ + "▁Coe", + -14.157674789428711 + ], + [ + "ppe", + -14.157676696777344 + ], + [ + "▁Acids", + -14.157718658447266 + ], + [ + "▁thud", + -14.157737731933594 + ], + [ + "▁þ", + -14.157755851745605 + ], + [ + "▁TRY", + -14.157791137695312 + ], + [ + "▁Trumpet", + -14.157832145690918 + ], + [ + "Sci", + -14.157865524291992 + ], + [ + "▁Spinning", + -14.15789794921875 + ], + [ + "▁Spinach", + -14.157939910888672 + ], + [ + "▁Sandler", + -14.157968521118164 + ], + [ + "▁staircases", + -14.158042907714844 + ], + [ + "▁Jharkhand", + -14.158060073852539 + ], + [ + "▁rationalize", + -14.158076286315918 + ], + [ + "▁regatta", + -14.158084869384766 + ], + [ + "aemia", + -14.15809154510498 + ], + [ + "porous", + -14.158092498779297 + ], + [ + "▁VPNs", + -14.158119201660156 + ], + [ + "▁sorcerer", + -14.15812873840332 + ], + [ + "▁Ditch", + -14.158133506774902 + ], + [ + "ideas", + -14.158134460449219 + ], + [ + "AWS", + -14.1581392288208 + ], + [ + "▁Sticks", + -14.158180236816406 + ], + [ + "▁puffs", + -14.158197402954102 + ], + [ + "▁crook", + -14.158206939697266 + ], + [ + "▁defiantly", + -14.158235549926758 + ], + [ + "▁Bleach", + -14.158254623413086 + ], + [ + "▁Joachim", + -14.158288955688477 + ], + [ + "▁Alber", + -14.158294677734375 + ], + [ + "▁florals", + -14.158308982849121 + ], + [ + "usta", + -14.158310890197754 + ], + [ + "▁initiator", + -14.158329963684082 + ], + [ + "chol", + -14.158341407775879 + ], + [ + "▁sportsmanship", + -14.158414840698242 + ], + [ + "596", + -14.15843677520752 + ], + [ + "needle", + -14.158477783203125 + ], + [ + "▁Teak", + -14.158480644226074 + ], + [ + "▁harnessed", + -14.158485412597656 + ], + [ + "▁Sumatra", + -14.158514022827148 + ], + [ + "timers", + -14.158573150634766 + ], + [ + "▁Eighteen", + -14.158577919006348 + ], + [ + "▁Sever", + -14.158587455749512 + ], + [ + "▁fixated", + -14.158589363098145 + ], + [ + "▁CTV", + -14.158599853515625 + ], + [ + "logging", + -14.158642768859863 + ], + [ + "▁veracity", + -14.15866470336914 + ], + [ + "▁miller", + -14.158671379089355 + ], + [ + "vul", + -14.15869426727295 + ], + [ + "discovered", + -14.158700942993164 + ], + [ + "▁Tzu", + -14.158788681030273 + ], + [ + "▁Hornet", + -14.158803939819336 + ], + [ + "▁Thiel", + -14.158812522888184 + ], + [ + "McC", + -14.158819198608398 + ], + [ + "▁intensities", + -14.158819198608398 + ], + [ + "▁Activists", + -14.158835411071777 + ], + [ + "▁Wellesley", + -14.158851623535156 + ], + [ + "CCI", + -14.158889770507812 + ], + [ + "▁bode", + -14.158896446228027 + ], + [ + "▁penta", + -14.158914566040039 + ], + [ + "▁Circles", + -14.158926963806152 + ], + [ + "▁ма", + -14.158943176269531 + ], + [ + "▁MQ", + -14.15894889831543 + ], + [ + "소", + -14.158967018127441 + ], + [ + "▁seniority", + -14.158971786499023 + ], + [ + "▁lute", + -14.158977508544922 + ], + [ + "Apply", + -14.15905475616455 + ], + [ + "▁Virat", + -14.159065246582031 + ], + [ + "▁résumé", + -14.159077644348145 + ], + [ + "▁Gastro", + -14.159096717834473 + ], + [ + "▁Hilda", + -14.15911865234375 + ], + [ + "▁PML", + -14.1591215133667 + ], + [ + "fir", + -14.159127235412598 + ], + [ + "▁ultimatum", + -14.159130096435547 + ], + [ + "iska", + -14.159156799316406 + ], + [ + "965", + -14.1591796875 + ], + [ + "genre", + -14.159186363220215 + ], + [ + "proven", + -14.159189224243164 + ], + [ + "▁Babcock", + -14.159193992614746 + ], + [ + "▁Escherichia", + -14.159210205078125 + ], + [ + "reau", + -14.159236907958984 + ], + [ + "▁LAX", + -14.159273147583008 + ], + [ + "▁Drawings", + -14.159285545349121 + ], + [ + "Student", + -14.159303665161133 + ], + [ + "erg", + -14.159310340881348 + ], + [ + "mila", + -14.159331321716309 + ], + [ + "▁disordered", + -14.159393310546875 + ], + [ + "▁HIP", + -14.159481048583984 + ], + [ + "ità", + -14.159496307373047 + ], + [ + "▁VOTE", + -14.15949821472168 + ], + [ + "▁neurotic", + -14.159547805786133 + ], + [ + "▁unde", + -14.159591674804688 + ], + [ + "▁Rake", + -14.159602165222168 + ], + [ + "delivered", + -14.1596097946167 + ], + [ + "▁Mond", + -14.159611701965332 + ], + [ + "QU", + -14.159628868103027 + ], + [ + "REG", + -14.159647941589355 + ], + [ + "Keefe", + -14.15966796875 + ], + [ + "▁accolade", + -14.159673690795898 + ], + [ + "▁countrymen", + -14.159719467163086 + ], + [ + "▁overpowered", + -14.159738540649414 + ], + [ + "763", + -14.159806251525879 + ], + [ + "▁paperless", + -14.159838676452637 + ], + [ + "remain", + -14.159897804260254 + ], + [ + "▁Burden", + -14.159947395324707 + ], + [ + "▁soulmate", + -14.159978866577148 + ], + [ + "▁Emb", + -14.160009384155273 + ], + [ + "TAS", + -14.160024642944336 + ], + [ + "ethanol", + -14.160075187683105 + ], + [ + "monte", + -14.160089492797852 + ], + [ + "▁Unexpected", + -14.160109519958496 + ], + [ + "▁Heb", + -14.160110473632812 + ], + [ + "omycin", + -14.160135269165039 + ], + [ + "marathon", + -14.16014575958252 + ], + [ + "deliver", + -14.160201072692871 + ], + [ + "▁371", + -14.160224914550781 + ], + [ + "▁emcee", + -14.160255432128906 + ], + [ + "▁Ord", + -14.160256385803223 + ], + [ + "▁DFS", + -14.160261154174805 + ], + [ + "▁soothes", + -14.160287857055664 + ], + [ + "▁tamil", + -14.160307884216309 + ], + [ + "▁censure", + -14.160308837890625 + ], + [ + "▁molar", + -14.160313606262207 + ], + [ + "▁outnumber", + -14.160338401794434 + ], + [ + "▁Zephyr", + -14.160364151000977 + ], + [ + "▁sipped", + -14.160375595092773 + ], + [ + "urian", + -14.160382270812988 + ], + [ + "▁Thumbnail", + -14.160385131835938 + ], + [ + "▁pieced", + -14.160497665405273 + ], + [ + "▁telemetry", + -14.160516738891602 + ], + [ + "turb", + -14.160550117492676 + ], + [ + "▁Alexandr", + -14.160552978515625 + ], + [ + "▁Attempts", + -14.160562515258789 + ], + [ + "Wonder", + -14.160579681396484 + ], + [ + "▁stoke", + -14.160582542419434 + ], + [ + "▁Bock", + -14.16064739227295 + ], + [ + "▁Cousin", + -14.160661697387695 + ], + [ + "▁beards", + -14.16069221496582 + ], + [ + "▁beetroot", + -14.160698890686035 + ], + [ + "▁CASA", + -14.160714149475098 + ], + [ + "▁Champaign", + -14.160798072814941 + ], + [ + "▁reeds", + -14.160835266113281 + ], + [ + "▁envisions", + -14.160837173461914 + ], + [ + "▁481", + -14.160855293273926 + ], + [ + "▁downplay", + -14.160855293273926 + ], + [ + "▁disorganized", + -14.160861015319824 + ], + [ + "anian", + -14.160868644714355 + ], + [ + "nall", + -14.160879135131836 + ], + [ + "▁eigen", + -14.160955429077148 + ], + [ + "Garden", + -14.160966873168945 + ], + [ + "▁affections", + -14.160984992980957 + ], + [ + "▁sifting", + -14.161009788513184 + ], + [ + "▁devious", + -14.161011695861816 + ], + [ + "▁infuriating", + -14.161028861999512 + ], + [ + "▁Holl", + -14.161036491394043 + ], + [ + "▁slalom", + -14.161052703857422 + ], + [ + "acht", + -14.161075592041016 + ], + [ + "▁Candace", + -14.16119384765625 + ], + [ + "▁Huss", + -14.161197662353516 + ], + [ + "▁Trucking", + -14.16122817993164 + ], + [ + "▁Lina", + -14.161277770996094 + ], + [ + "▁dived", + -14.16128921508789 + ], + [ + "▁Pyro", + -14.161317825317383 + ], + [ + "▁podcasting", + -14.161343574523926 + ], + [ + "setter", + -14.161442756652832 + ], + [ + "▁Halfway", + -14.161444664001465 + ], + [ + "▁disqualify", + -14.161462783813477 + ], + [ + "▁depriving", + -14.161478996276855 + ], + [ + "kana", + -14.161524772644043 + ], + [ + "▁Congregational", + -14.161528587341309 + ], + [ + "▁footed", + -14.161553382873535 + ], + [ + "▁Regularly", + -14.161590576171875 + ], + [ + "量", + -14.161590576171875 + ], + [ + "▁seu", + -14.161663055419922 + ], + [ + "▁Conde", + -14.161706924438477 + ], + [ + "▁connoisseur", + -14.161764144897461 + ], + [ + "▁spiraling", + -14.161766052246094 + ], + [ + "▁wrecks", + -14.161811828613281 + ], + [ + "effectively", + -14.16184139251709 + ], + [ + "aad", + -14.161842346191406 + ], + [ + "hama", + -14.161937713623047 + ], + [ + "Motor", + -14.162027359008789 + ], + [ + "▁OFFER", + -14.162035942077637 + ], + [ + "▁sweats", + -14.162038803100586 + ], + [ + "▁VLC", + -14.1620454788208 + ], + [ + "▁dynamism", + -14.162054061889648 + ], + [ + "▁Minerva", + -14.162059783935547 + ], + [ + "CAA", + -14.162151336669922 + ], + [ + "▁michigan", + -14.162151336669922 + ], + [ + "▁Invited", + -14.162154197692871 + ], + [ + "▁Significantly", + -14.16219425201416 + ], + [ + "wir", + -14.162254333496094 + ], + [ + "▁archeological", + -14.162332534790039 + ], + [ + "Hero", + -14.162403106689453 + ], + [ + "▁alienating", + -14.162405014038086 + ], + [ + "arga", + -14.162469863891602 + ], + [ + "▁499", + -14.162511825561523 + ], + [ + "results", + -14.162567138671875 + ], + [ + "▁Incorporating", + -14.16262149810791 + ], + [ + "lated", + -14.162659645080566 + ], + [ + "▁SOAP", + -14.162701606750488 + ], + [ + "ogi", + -14.162833213806152 + ], + [ + "▁SCORE", + -14.162839889526367 + ], + [ + "gz", + -14.162841796875 + ], + [ + "ories", + -14.162881851196289 + ], + [ + "▁Malaria", + -14.162942886352539 + ], + [ + "▁foaming", + -14.162986755371094 + ], + [ + "▁Commando", + -14.163004875183105 + ], + [ + "vious", + -14.163015365600586 + ], + [ + "▁ко", + -14.163134574890137 + ], + [ + "▁CDP", + -14.163187980651855 + ], + [ + "▁Shira", + -14.16324234008789 + ], + [ + "บ", + -14.163259506225586 + ], + [ + "maa", + -14.163296699523926 + ], + [ + "▁Fergus", + -14.163362503051758 + ], + [ + "▁Filmmaker", + -14.163365364074707 + ], + [ + "▁Reap", + -14.163451194763184 + ], + [ + "▁Nil", + -14.163477897644043 + ], + [ + "▁gummy", + -14.163477897644043 + ], + [ + "▁immaterial", + -14.163481712341309 + ], + [ + "889", + -14.163483619689941 + ], + [ + "buster", + -14.163492202758789 + ], + [ + "985", + -14.163495063781738 + ], + [ + "▁Bharti", + -14.163500785827637 + ], + [ + "▁outlier", + -14.163541793823242 + ], + [ + "▁Hades", + -14.163653373718262 + ], + [ + "入", + -14.16366958618164 + ], + [ + "▁Evanston", + -14.163700103759766 + ], + [ + "▁POL", + -14.163756370544434 + ], + [ + "▁mules", + -14.163788795471191 + ], + [ + "▁queuing", + -14.163790702819824 + ], + [ + "▁wastage", + -14.163817405700684 + ], + [ + "▁Tung", + -14.163829803466797 + ], + [ + "可", + -14.163853645324707 + ], + [ + "▁biopsies", + -14.163874626159668 + ], + [ + "▁ö", + -14.163884162902832 + ], + [ + "▁woe", + -14.16391372680664 + ], + [ + "▁assailant", + -14.163931846618652 + ], + [ + "domestic", + -14.16395378112793 + ], + [ + "▁inefficiencies", + -14.16396713256836 + ], + [ + "▁lineages", + -14.164008140563965 + ], + [ + "▁Hav", + -14.164041519165039 + ], + [ + "sión", + -14.164055824279785 + ], + [ + "erty", + -14.164079666137695 + ], + [ + "unknown", + -14.164105415344238 + ], + [ + "▁Bloc", + -14.164137840270996 + ], + [ + "▁531", + -14.164145469665527 + ], + [ + "▁remodelling", + -14.164186477661133 + ], + [ + "▁Bagh", + -14.164204597473145 + ], + [ + "stressed", + -14.164292335510254 + ], + [ + "DLE", + -14.164353370666504 + ], + [ + "▁befitting", + -14.16436767578125 + ], + [ + "Northern", + -14.164377212524414 + ], + [ + "▁Wur", + -14.16440486907959 + ], + [ + "▁Nineteen", + -14.164429664611816 + ], + [ + "Apps", + -14.164453506469727 + ], + [ + "▁spontaneity", + -14.164481163024902 + ], + [ + "▁forgo", + -14.164494514465332 + ], + [ + "▁elixir", + -14.164498329162598 + ], + [ + "examined", + -14.164527893066406 + ], + [ + "▁aeroplane", + -14.164609909057617 + ], + [ + "▁Shel", + -14.164648056030273 + ], + [ + "spice", + -14.164654731750488 + ], + [ + "▁Binder", + -14.164670944213867 + ], + [ + "lge", + -14.164678573608398 + ], + [ + "▁interchangeably", + -14.164679527282715 + ], + [ + "▁struts", + -14.164680480957031 + ], + [ + "ह", + -14.164705276489258 + ], + [ + "▁petit", + -14.164705276489258 + ], + [ + "▁Mahogany", + -14.16470718383789 + ], + [ + "▁Rhy", + -14.164750099182129 + ], + [ + "▁len", + -14.164752960205078 + ], + [ + "▁Collagen", + -14.164787292480469 + ], + [ + "▁Côte", + -14.164793968200684 + ], + [ + "▁Tipp", + -14.164796829223633 + ], + [ + "jing", + -14.164802551269531 + ], + [ + "yoga", + -14.164814949035645 + ], + [ + "▁DAP", + -14.164846420288086 + ], + [ + "装置", + -14.1648530960083 + ], + [ + "Skin", + -14.164929389953613 + ], + [ + "▁Agu", + -14.164957046508789 + ], + [ + "▁hollywood", + -14.164972305297852 + ], + [ + "▁Inches", + -14.164999008178711 + ], + [ + "Panel", + -14.16500473022461 + ], + [ + "viz", + -14.165044784545898 + ], + [ + "▁Assessor", + -14.165066719055176 + ], + [ + "▁Kosher", + -14.165077209472656 + ], + [ + "▁smeared", + -14.165101051330566 + ], + [ + "▁Declan", + -14.165143966674805 + ], + [ + "▁evangelicals", + -14.165159225463867 + ], + [ + "▁Adapted", + -14.165169715881348 + ], + [ + "tomy", + -14.16527271270752 + ], + [ + "▁Marking", + -14.165288925170898 + ], + [ + "sodium", + -14.16532039642334 + ], + [ + "▁Oktoberfest", + -14.165372848510742 + ], + [ + "▁felonies", + -14.165374755859375 + ], + [ + "▁362", + -14.165416717529297 + ], + [ + "comic", + -14.165422439575195 + ], + [ + "▁cheeseburger", + -14.165458679199219 + ], + [ + "▁Excluding", + -14.1654691696167 + ], + [ + "▁Dwyer", + -14.165488243103027 + ], + [ + "▁yin", + -14.165576934814453 + ], + [ + "▁Fluor", + -14.165618896484375 + ], + [ + "▁Carriers", + -14.165624618530273 + ], + [ + "▁tp", + -14.165661811828613 + ], + [ + "▁Westside", + -14.16567325592041 + ], + [ + "▁seep", + -14.165717124938965 + ], + [ + "▁Subscribers", + -14.16572380065918 + ], + [ + "Justice", + -14.165741920471191 + ], + [ + "▁Aware", + -14.165764808654785 + ], + [ + "wc", + -14.16580867767334 + ], + [ + "▁Lec", + -14.165828704833984 + ], + [ + "전", + -14.165834426879883 + ], + [ + "tolerant", + -14.165841102600098 + ], + [ + "▁Camper", + -14.165863990783691 + ], + [ + "▁wrenching", + -14.165863990783691 + ], + [ + "aeus", + -14.16589069366455 + ], + [ + "modal", + -14.165942192077637 + ], + [ + "▁pail", + -14.165974617004395 + ], + [ + "▁dalam", + -14.166007041931152 + ], + [ + "▁hampers", + -14.166104316711426 + ], + [ + "▁Horny", + -14.166111946105957 + ], + [ + "▁antipsychotic", + -14.166132926940918 + ], + [ + "▁linemen", + -14.166203498840332 + ], + [ + "▁destabilize", + -14.166208267211914 + ], + [ + "▁Shoppe", + -14.166263580322266 + ], + [ + "▁Abra", + -14.166275978088379 + ], + [ + "glyc", + -14.166314125061035 + ], + [ + "▁Deo", + -14.166369438171387 + ], + [ + "incident", + -14.166461944580078 + ], + [ + "▁Brae", + -14.166486740112305 + ], + [ + "▁WOMEN", + -14.166522979736328 + ], + [ + "▁Tuning", + -14.166534423828125 + ], + [ + "▁Leanne", + -14.166556358337402 + ], + [ + "dores", + -14.16659164428711 + ], + [ + "YM", + -14.166645050048828 + ], + [ + "▁Albans", + -14.16666316986084 + ], + [ + "▁polymeric", + -14.16672134399414 + ], + [ + "▁Fujifilm", + -14.166726112365723 + ], + [ + "▁hehe", + -14.166732788085938 + ], + [ + "zaki", + -14.166753768920898 + ], + [ + "▁Campaigns", + -14.166753768920898 + ], + [ + "devil", + -14.166754722595215 + ], + [ + "ма", + -14.166787147521973 + ], + [ + "▁LOG", + -14.166790962219238 + ], + [ + "▁Ultima", + -14.166854858398438 + ], + [ + "▁Webcam", + -14.166858673095703 + ], + [ + "▁609", + -14.166860580444336 + ], + [ + "minor", + -14.166876792907715 + ], + [ + "822", + -14.166882514953613 + ], + [ + "▁Savvy", + -14.166882514953613 + ], + [ + "▁digestible", + -14.166884422302246 + ], + [ + "icher", + -14.166890144348145 + ], + [ + "▁reunification", + -14.166901588439941 + ], + [ + "▁visualise", + -14.166912078857422 + ], + [ + "▁Eze", + -14.166925430297852 + ], + [ + "ignan", + -14.16695499420166 + ], + [ + "▁TPS", + -14.166975021362305 + ], + [ + "▁stopover", + -14.166976928710938 + ], + [ + "▁tundra", + -14.167047500610352 + ], + [ + "▁Sharjah", + -14.167095184326172 + ], + [ + "916", + -14.167113304138184 + ], + [ + "용", + -14.167177200317383 + ], + [ + "▁Hooray", + -14.167187690734863 + ], + [ + "tling", + -14.16719913482666 + ], + [ + "▁Galleria", + -14.16728401184082 + ], + [ + "▁Posh", + -14.167287826538086 + ], + [ + "▁APAC", + -14.167326927185059 + ], + [ + "제", + -14.167329788208008 + ], + [ + "installation", + -14.16739273071289 + ], + [ + "fuck", + -14.16744327545166 + ], + [ + "Animal", + -14.167505264282227 + ], + [ + "▁scrutinize", + -14.167510986328125 + ], + [ + "▁Ernesto", + -14.16753101348877 + ], + [ + "shine", + -14.167540550231934 + ], + [ + "ozzi", + -14.1675443649292 + ], + [ + "▁Imports", + -14.167593002319336 + ], + [ + "▁Gutenberg", + -14.16763973236084 + ], + [ + "▁Eurasia", + -14.167694091796875 + ], + [ + "▁FTA", + -14.167709350585938 + ], + [ + "▁dispensers", + -14.167746543884277 + ], + [ + "▁516", + -14.16779899597168 + ], + [ + "▁seatbelt", + -14.167816162109375 + ], + [ + "▁overpower", + -14.167820930480957 + ], + [ + "▁Parameters", + -14.167850494384766 + ], + [ + "▁corresponded", + -14.167851448059082 + ], + [ + "▁Niles", + -14.167872428894043 + ], + [ + "▁429", + -14.167876243591309 + ], + [ + "▁exogenous", + -14.167888641357422 + ], + [ + "▁patriots", + -14.16789436340332 + ], + [ + "▁deranged", + -14.167900085449219 + ], + [ + "▁RTI", + -14.167974472045898 + ], + [ + "▁Vickers", + -14.167975425720215 + ], + [ + "▁Pina", + -14.167983055114746 + ], + [ + "▁extinguisher", + -14.1680269241333 + ], + [ + "candy", + -14.168027877807617 + ], + [ + "▁Thierry", + -14.168054580688477 + ], + [ + "▁Weil", + -14.168112754821777 + ], + [ + "jac", + -14.168147087097168 + ], + [ + "fated", + -14.16815185546875 + ], + [ + "▁Kass", + -14.168170928955078 + ], + [ + "▁Rockland", + -14.168196678161621 + ], + [ + "762", + -14.168208122253418 + ], + [ + "▁caregiving", + -14.168231010437012 + ], + [ + "▁Plated", + -14.16828441619873 + ], + [ + "▁Enzo", + -14.168310165405273 + ], + [ + "▁Messrs", + -14.168328285217285 + ], + [ + "▁Robles", + -14.168360710144043 + ], + [ + "Congress", + -14.168365478515625 + ], + [ + "▁Yokohama", + -14.168370246887207 + ], + [ + "▁Kurtz", + -14.16840648651123 + ], + [ + "▁hilt", + -14.168438911437988 + ], + [ + "▁diplomas", + -14.168488502502441 + ], + [ + "▁multiplicity", + -14.168490409851074 + ], + [ + "agin", + -14.168560028076172 + ], + [ + "▁possessive", + -14.168598175048828 + ], + [ + "▁Argyle", + -14.168601036071777 + ], + [ + "anol", + -14.168608665466309 + ], + [ + "▁POC", + -14.168656349182129 + ], + [ + "▁Mechanisms", + -14.168678283691406 + ], + [ + "▁Recruit", + -14.168729782104492 + ], + [ + "▁Headquartered", + -14.16873550415039 + ], + [ + "drying", + -14.168739318847656 + ], + [ + "▁Rel", + -14.168819427490234 + ], + [ + "▁Diverse", + -14.168828964233398 + ], + [ + "▁Bilbao", + -14.16884708404541 + ], + [ + "▁Polaroid", + -14.168848037719727 + ], + [ + "▁fluoro", + -14.168852806091309 + ], + [ + "▁signifying", + -14.168859481811523 + ], + [ + "▁obstructions", + -14.168866157531738 + ], + [ + "▁Colle", + -14.16887092590332 + ], + [ + "▁heathen", + -14.168910026550293 + ], + [ + "arina", + -14.168927192687988 + ], + [ + "ocha", + -14.168940544128418 + ], + [ + "721", + -14.169005393981934 + ], + [ + "▁Moy", + -14.169026374816895 + ], + [ + "Grace", + -14.169027328491211 + ], + [ + "▁Removals", + -14.169034004211426 + ], + [ + "fixing", + -14.169035911560059 + ], + [ + "▁PRIVATE", + -14.169036865234375 + ], + [ + "▁Coimbatore", + -14.169066429138184 + ], + [ + "▁flak", + -14.169085502624512 + ], + [ + "▁disgraceful", + -14.169100761413574 + ], + [ + "1958", + -14.16919231414795 + ], + [ + "emission", + -14.169268608093262 + ], + [ + "▁Playoffs", + -14.169278144836426 + ], + [ + "Door", + -14.169290542602539 + ], + [ + "▁Beers", + -14.16938591003418 + ], + [ + "▁Forgiveness", + -14.169428825378418 + ], + [ + "Rain", + -14.169452667236328 + ], + [ + "Days", + -14.169464111328125 + ], + [ + "▁Pitcher", + -14.169486999511719 + ], + [ + "▁skit", + -14.1695556640625 + ], + [ + "rity", + -14.169559478759766 + ], + [ + "▁Labyrinth", + -14.169571876525879 + ], + [ + "▁Bunn", + -14.169574737548828 + ], + [ + "▁ZE", + -14.169586181640625 + ], + [ + "▁Servant", + -14.169601440429688 + ], + [ + "▁receptacles", + -14.16960620880127 + ], + [ + "▁SHIP", + -14.169617652893066 + ], + [ + "▁Barbour", + -14.169678688049316 + ], + [ + "▁Shard", + -14.169696807861328 + ], + [ + "▁phasing", + -14.169698715209961 + ], + [ + "▁foodies", + -14.169708251953125 + ], + [ + "▁regiments", + -14.169742584228516 + ], + [ + "Seq", + -14.169745445251465 + ], + [ + "▁shuttered", + -14.169753074645996 + ], + [ + "▁522", + -14.169760704040527 + ], + [ + "▁Emilio", + -14.169772148132324 + ], + [ + "▁Yoruba", + -14.169788360595703 + ], + [ + "▁outbursts", + -14.169808387756348 + ], + [ + "▁Evie", + -14.16981029510498 + ], + [ + "▁Torture", + -14.16982364654541 + ], + [ + "▁oaks", + -14.169835090637207 + ], + [ + "▁appraised", + -14.169848442077637 + ], + [ + "understanding", + -14.169883728027344 + ], + [ + "▁incessantly", + -14.169937133789062 + ], + [ + "▁stra", + -14.169947624206543 + ], + [ + "▁carnal", + -14.169960021972656 + ], + [ + "▁hostname", + -14.169970512390137 + ], + [ + "▁Immunol", + -14.169976234436035 + ], + [ + "Kind", + -14.170001983642578 + ], + [ + "▁inconceivable", + -14.170035362243652 + ], + [ + "▁genie", + -14.170047760009766 + ], + [ + "▁SAF", + -14.170053482055664 + ], + [ + "▁Spas", + -14.170083045959473 + ], + [ + "▁ब", + -14.170101165771484 + ], + [ + "▁Metabolic", + -14.17010498046875 + ], + [ + "▁neurotransmitter", + -14.170126914978027 + ], + [ + "▁condemns", + -14.170143127441406 + ], + [ + "▁wagers", + -14.17015552520752 + ], + [ + "gig", + -14.170173645019531 + ], + [ + "▁shreds", + -14.170175552368164 + ], + [ + "march", + -14.170210838317871 + ], + [ + "▁crooks", + -14.170222282409668 + ], + [ + "外", + -14.170275688171387 + ], + [ + "▁McK", + -14.17027759552002 + ], + [ + "unia", + -14.170307159423828 + ], + [ + "fork", + -14.170312881469727 + ], + [ + "ست", + -14.170329093933105 + ], + [ + "▁DISCLAIMER", + -14.170329093933105 + ], + [ + "▁Showroom", + -14.170372009277344 + ], + [ + "▁Mould", + -14.170377731323242 + ], + [ + "▁landslides", + -14.170381546020508 + ], + [ + "▁desde", + -14.17038345336914 + ], + [ + "Truth", + -14.170414924621582 + ], + [ + "▁ripen", + -14.17048454284668 + ], + [ + "▁buyback", + -14.170513153076172 + ], + [ + "▁Cessna", + -14.170520782470703 + ], + [ + "▁Retailer", + -14.170530319213867 + ], + [ + "▁485", + -14.170578956604004 + ], + [ + "XC", + -14.170635223388672 + ], + [ + "LIE", + -14.17070484161377 + ], + [ + "▁softens", + -14.170716285705566 + ], + [ + "▁admirably", + -14.17075252532959 + ], + [ + "055", + -14.170775413513184 + ], + [ + "ּ", + -14.170830726623535 + ], + [ + "▁SIR", + -14.170842170715332 + ], + [ + "▁universes", + -14.170852661132812 + ], + [ + "▁Aquaman", + -14.170890808105469 + ], + [ + "▁Chadwick", + -14.170994758605957 + ], + [ + "▁ANYONE", + -14.171003341674805 + ], + [ + "▁scopes", + -14.171046257019043 + ], + [ + "ctic", + -14.171096801757812 + ], + [ + "▁Funky", + -14.171127319335938 + ], + [ + "wf", + -14.171154022216797 + ], + [ + "▁Underneath", + -14.171165466308594 + ], + [ + "▁bicycling", + -14.171172142028809 + ], + [ + "esca", + -14.171250343322754 + ], + [ + "raya", + -14.171311378479004 + ], + [ + "premium", + -14.17135238647461 + ], + [ + "▁Gib", + -14.171398162841797 + ], + [ + "972", + -14.171429634094238 + ], + [ + "▁lingo", + -14.171479225158691 + ], + [ + "cue", + -14.171483039855957 + ], + [ + "693", + -14.171507835388184 + ], + [ + "▁enumerated", + -14.171524047851562 + ], + [ + "▁ethnically", + -14.171527862548828 + ], + [ + "carry", + -14.171539306640625 + ], + [ + "yuki", + -14.171597480773926 + ], + [ + "advance", + -14.171618461608887 + ], + [ + "▁XE", + -14.171635627746582 + ], + [ + "ffen", + -14.17166805267334 + ], + [ + "▁Ministerial", + -14.171701431274414 + ], + [ + "▁Tabernacle", + -14.171753883361816 + ], + [ + "▁wailing", + -14.171777725219727 + ], + [ + "▁recitation", + -14.171818733215332 + ], + [ + "▁detonated", + -14.171878814697266 + ], + [ + "▁bereaved", + -14.171911239624023 + ], + [ + "903", + -14.171913146972656 + ], + [ + "▁deplorable", + -14.171940803527832 + ], + [ + "▁decedent", + -14.171968460083008 + ], + [ + "▁Bord", + -14.171980857849121 + ], + [ + "682", + -14.172078132629395 + ], + [ + "▁amphibians", + -14.172114372253418 + ], + [ + "915", + -14.172138214111328 + ], + [ + "voting", + -14.172199249267578 + ], + [ + "037", + -14.17220687866211 + ], + [ + "▁MCP", + -14.17220687866211 + ], + [ + "Inside", + -14.172218322753906 + ], + [ + "▁vertebral", + -14.172220230102539 + ], + [ + "Fab", + -14.172222137451172 + ], + [ + "▁pollinators", + -14.172256469726562 + ], + [ + "dragon", + -14.172285079956055 + ], + [ + "zzie", + -14.172297477722168 + ], + [ + "▁Olu", + -14.172307014465332 + ], + [ + "▁infallible", + -14.172325134277344 + ], + [ + "ulli", + -14.17239761352539 + ], + [ + "▁Environ", + -14.172428131103516 + ], + [ + "▁spelt", + -14.172444343566895 + ], + [ + "▁bypassed", + -14.172445297241211 + ], + [ + "trader", + -14.1724853515625 + ], + [ + "▁Mainstream", + -14.172523498535156 + ], + [ + "Rest", + -14.172524452209473 + ], + [ + "▁IFA", + -14.172582626342773 + ], + [ + "▁dilated", + -14.172590255737305 + ], + [ + "▁Magellan", + -14.172591209411621 + ], + [ + "▁CHARGE", + -14.172599792480469 + ], + [ + "▁Emotion", + -14.172612190246582 + ], + [ + "▁Broccoli", + -14.172628402709961 + ], + [ + "▁Loser", + -14.172691345214844 + ], + [ + "▁4×4", + -14.172693252563477 + ], + [ + "▁subcontractor", + -14.172698974609375 + ], + [ + "▁WPC", + -14.172700881958008 + ], + [ + "▁Archangel", + -14.172724723815918 + ], + [ + "▁Newmarket", + -14.172727584838867 + ], + [ + "ZY", + -14.172760009765625 + ], + [ + "▁Elisha", + -14.172769546508789 + ], + [ + "▁biosynthesis", + -14.172774314880371 + ], + [ + "▁Durga", + -14.172783851623535 + ], + [ + "▁YUM", + -14.172785758972168 + ], + [ + "▁HUMAN", + -14.172797203063965 + ], + [ + "▁sodas", + -14.172799110412598 + ], + [ + "jia", + -14.172816276550293 + ], + [ + "792", + -14.172834396362305 + ], + [ + "voca", + -14.172903060913086 + ], + [ + "▁Qatari", + -14.172937393188477 + ], + [ + "apparently", + -14.172985076904297 + ], + [ + "▁Zanzibar", + -14.173001289367676 + ], + [ + "▁astonishingly", + -14.173077583312988 + ], + [ + "▁Steal", + -14.173104286193848 + ], + [ + "▁Cheesecake", + -14.173128128051758 + ], + [ + "▁deafening", + -14.17315673828125 + ], + [ + "▁Peña", + -14.173212051391602 + ], + [ + "▁Inspections", + -14.173293113708496 + ], + [ + "Davis", + -14.173299789428711 + ], + [ + "▁Gomes", + -14.17340087890625 + ], + [ + "▁Galatians", + -14.17342758178711 + ], + [ + "VH", + -14.173467636108398 + ], + [ + "▁Holds", + -14.173482894897461 + ], + [ + "nail", + -14.173490524291992 + ], + [ + "▁dodged", + -14.173514366149902 + ], + [ + "▁unease", + -14.173515319824219 + ], + [ + "▁queried", + -14.173543930053711 + ], + [ + "▁unambiguous", + -14.173567771911621 + ], + [ + "Legal", + -14.173579216003418 + ], + [ + "hearing", + -14.17358112335205 + ], + [ + "▁Rotation", + -14.173582077026367 + ], + [ + "▁Thyroid", + -14.173587799072266 + ], + [ + "▁paradoxical", + -14.17363452911377 + ], + [ + "▁confine", + -14.173649787902832 + ], + [ + "raki", + -14.17365837097168 + ], + [ + "▁Advisers", + -14.173663139343262 + ], + [ + "▁Settle", + -14.173686981201172 + ], + [ + "▁1001", + -14.173711776733398 + ], + [ + "▁€5", + -14.173750877380371 + ], + [ + "▁seduction", + -14.173762321472168 + ], + [ + "Sin", + -14.173823356628418 + ], + [ + "dala", + -14.17382526397705 + ], + [ + "eru", + -14.173832893371582 + ], + [ + "▁femur", + -14.173845291137695 + ], + [ + "▁resuscitation", + -14.173852920532227 + ], + [ + "affected", + -14.173867225646973 + ], + [ + "novel", + -14.173917770385742 + ], + [ + "▁Howie", + -14.173920631408691 + ], + [ + "▁AdSense", + -14.173932075500488 + ], + [ + "▁stashed", + -14.174033164978027 + ], + [ + "BUS", + -14.174057006835938 + ], + [ + "Pak", + -14.174067497253418 + ], + [ + "▁endures", + -14.174087524414062 + ], + [ + "totally", + -14.174105644226074 + ], + [ + "▁Robotic", + -14.174150466918945 + ], + [ + "▁laterally", + -14.174152374267578 + ], + [ + "▁Tok", + -14.174174308776855 + ], + [ + "806", + -14.17418098449707 + ], + [ + "▁kai", + -14.174190521240234 + ], + [ + "▁Amidst", + -14.174237251281738 + ], + [ + "alism", + -14.174324989318848 + ], + [ + "mock", + -14.174365997314453 + ], + [ + "▁storming", + -14.17438793182373 + ], + [ + "▁Braxton", + -14.174443244934082 + ], + [ + "▁Marrakech", + -14.174460411071777 + ], + [ + "▁polypeptide", + -14.174460411071777 + ], + [ + "eid", + -14.174484252929688 + ], + [ + "▁Speaks", + -14.174509048461914 + ], + [ + "▁Pudding", + -14.174517631530762 + ], + [ + "▁454", + -14.174528121948242 + ], + [ + "▁Explosion", + -14.174543380737305 + ], + [ + "nost", + -14.17454719543457 + ], + [ + "▁GMOs", + -14.174561500549316 + ], + [ + "▁Adverse", + -14.174581527709961 + ], + [ + "807", + -14.17459487915039 + ], + [ + "ution", + -14.174613952636719 + ], + [ + "592", + -14.174637794494629 + ], + [ + "▁numbing", + -14.17467212677002 + ], + [ + "▁NIST", + -14.174675941467285 + ], + [ + "▁vocalists", + -14.17473316192627 + ], + [ + "▁Harbaugh", + -14.174757957458496 + ], + [ + "▁patriarchy", + -14.174797058105469 + ], + [ + "▁Maternal", + -14.174825668334961 + ], + [ + "dox", + -14.17482852935791 + ], + [ + "▁TEXT", + -14.174899101257324 + ], + [ + "▁Reporters", + -14.174988746643066 + ], + [ + "▁juries", + -14.17501163482666 + ], + [ + "▁Lick", + -14.175018310546875 + ], + [ + "▁Lodging", + -14.17502498626709 + ], + [ + "▁OSA", + -14.175027847290039 + ], + [ + "▁disconnection", + -14.175074577331543 + ], + [ + "▁beading", + -14.175084114074707 + ], + [ + "teach", + -14.175134658813477 + ], + [ + "835", + -14.175176620483398 + ], + [ + "▁REF", + -14.175212860107422 + ], + [ + "dub", + -14.175262451171875 + ], + [ + "▁Vicar", + -14.17532730102539 + ], + [ + "▁Ghosh", + -14.175369262695312 + ], + [ + "▁voi", + -14.175399780273438 + ], + [ + "▁hyperbole", + -14.175406455993652 + ], + [ + "▁Ringo", + -14.175431251525879 + ], + [ + "▁DRAM", + -14.175436019897461 + ], + [ + "▁magnate", + -14.175468444824219 + ], + [ + "▁precincts", + -14.17547607421875 + ], + [ + "▁ENJOY", + -14.175477027893066 + ], + [ + "dicate", + -14.175487518310547 + ], + [ + "▁CBR", + -14.175541877746582 + ], + [ + "▁Chaise", + -14.175582885742188 + ], + [ + "Strike", + -14.175593376159668 + ], + [ + "ledge", + -14.175594329833984 + ], + [ + "066", + -14.175602912902832 + ], + [ + "▁centralised", + -14.175605773925781 + ], + [ + "689", + -14.175634384155273 + ], + [ + "▁TON", + -14.175639152526855 + ], + [ + "rbe", + -14.17566967010498 + ], + [ + "▁causality", + -14.175785064697266 + ], + [ + "▁sprinklers", + -14.175889015197754 + ], + [ + "iae", + -14.175904273986816 + ], + [ + "▁Faz", + -14.175904273986816 + ], + [ + "▁Somewhat", + -14.175975799560547 + ], + [ + "▁misogyny", + -14.175985336303711 + ], + [ + "▁frizz", + -14.176039695739746 + ], + [ + "Princess", + -14.176060676574707 + ], + [ + "▁rebranding", + -14.17606258392334 + ], + [ + "▁hmm", + -14.176095962524414 + ], + [ + "posit", + -14.176109313964844 + ], + [ + "acted", + -14.176121711730957 + ], + [ + "▁muffled", + -14.176126480102539 + ], + [ + "▁Ferrer", + -14.176148414611816 + ], + [ + "▁Englewood", + -14.176177024841309 + ], + [ + "▁zing", + -14.17618179321289 + ], + [ + "licious", + -14.176190376281738 + ], + [ + "royal", + -14.176197052001953 + ], + [ + "▁Clem", + -14.17626953125 + ], + [ + "Scope", + -14.176288604736328 + ], + [ + "▁validates", + -14.176328659057617 + ], + [ + "define", + -14.176371574401855 + ], + [ + "▁hemi", + -14.176387786865234 + ], + [ + "▁racists", + -14.176387786865234 + ], + [ + "▁fabled", + -14.176410675048828 + ], + [ + "▁Samara", + -14.176411628723145 + ], + [ + "▁DIRECT", + -14.17652416229248 + ], + [ + "▁stings", + -14.176567077636719 + ], + [ + "▁Peking", + -14.176645278930664 + ], + [ + "tional", + -14.176679611206055 + ], + [ + "▁Portraits", + -14.1766939163208 + ], + [ + "▁Hali", + -14.176705360412598 + ], + [ + "▁2700", + -14.176783561706543 + ], + [ + "898", + -14.176804542541504 + ], + [ + "▁Thrift", + -14.176804542541504 + ], + [ + "advised", + -14.176838874816895 + ], + [ + "▁Nicholls", + -14.176902770996094 + ], + [ + "ATH", + -14.177042007446289 + ], + [ + "▁curtailed", + -14.177067756652832 + ], + [ + "▁Bower", + -14.177094459533691 + ], + [ + "▁Defined", + -14.177115440368652 + ], + [ + "▁gaseous", + -14.177165985107422 + ], + [ + "▁MCI", + -14.177178382873535 + ], + [ + "876", + -14.177189826965332 + ], + [ + "Consumer", + -14.177200317382812 + ], + [ + "▁Metrics", + -14.177237510681152 + ], + [ + "▁extruded", + -14.177258491516113 + ], + [ + "guess", + -14.177311897277832 + ], + [ + "REST", + -14.177312850952148 + ], + [ + "▁counterterrorism", + -14.177331924438477 + ], + [ + "▁gentleness", + -14.177331924438477 + ], + [ + "▁Escobar", + -14.177342414855957 + ], + [ + "▁Allocation", + -14.177358627319336 + ], + [ + "burst", + -14.177371978759766 + ], + [ + "cert", + -14.177411079406738 + ], + [ + "▁Tread", + -14.177420616149902 + ], + [ + "▁Savi", + -14.177431106567383 + ], + [ + "uchen", + -14.17747688293457 + ], + [ + "▁pixie", + -14.177498817443848 + ], + [ + "seated", + -14.177522659301758 + ], + [ + "▁SiriusXM", + -14.177526473999023 + ], + [ + "▁NETWORK", + -14.177550315856934 + ], + [ + "▁ostrich", + -14.177568435668945 + ], + [ + "worthiness", + -14.177574157714844 + ], + [ + "reform", + -14.17757797241211 + ], + [ + "crossing", + -14.17763900756836 + ], + [ + "▁plunder", + -14.177639961242676 + ], + [ + "sponsor", + -14.177655220031738 + ], + [ + "по", + -14.177655220031738 + ], + [ + "▁mam", + -14.177660942077637 + ], + [ + "781", + -14.177669525146484 + ], + [ + "▁Safer", + -14.17768383026123 + ], + [ + "▁Nang", + -14.177699089050293 + ], + [ + "▁PPA", + -14.1777982711792 + ], + [ + "▁mime", + -14.177836418151855 + ], + [ + "▁embellish", + -14.177910804748535 + ], + [ + "▁HRC", + -14.177915573120117 + ], + [ + "▁Ransom", + -14.177937507629395 + ], + [ + "▁Baer", + -14.17794132232666 + ], + [ + "▁Scorsese", + -14.17794132232666 + ], + [ + "▁Mandalay", + -14.177945137023926 + ], + [ + "▁patchy", + -14.177950859069824 + ], + [ + "azzi", + -14.177957534790039 + ], + [ + "▁Hö", + -14.177970886230469 + ], + [ + "fans", + -14.178033828735352 + ], + [ + "▁commas", + -14.178062438964844 + ], + [ + "lep", + -14.178108215332031 + ], + [ + "▁Stages", + -14.178159713745117 + ], + [ + "▁Nutella", + -14.17817497253418 + ], + [ + "▁maids", + -14.178252220153809 + ], + [ + "▁René", + -14.17825698852539 + ], + [ + "▁Whitby", + -14.178266525268555 + ], + [ + "▁pram", + -14.17827320098877 + ], + [ + "▁Throwing", + -14.178276062011719 + ], + [ + "▁Sooner", + -14.178277015686035 + ], + [ + "▁Cigar", + -14.178295135498047 + ], + [ + "▁faves", + -14.178323745727539 + ], + [ + "▁chromosomal", + -14.178345680236816 + ], + [ + "र्", + -14.178366661071777 + ], + [ + "▁Patna", + -14.178411483764648 + ], + [ + "▁dermatology", + -14.17842960357666 + ], + [ + "raise", + -14.17844295501709 + ], + [ + "guan", + -14.17848014831543 + ], + [ + "▁Probation", + -14.178497314453125 + ], + [ + "▁Bronson", + -14.17850399017334 + ], + [ + "▁Luncheon", + -14.1785306930542 + ], + [ + "tite", + -14.17866039276123 + ], + [ + "ilan", + -14.178718566894531 + ], + [ + "ntz", + -14.178765296936035 + ], + [ + "▁Noodle", + -14.1787748336792 + ], + [ + "▁Townsville", + -14.178788185119629 + ], + [ + "Electronic", + -14.17879581451416 + ], + [ + "▁slanted", + -14.178836822509766 + ], + [ + "▁squeal", + -14.178876876831055 + ], + [ + "cele", + -14.178939819335938 + ], + [ + "▁accentuated", + -14.178958892822266 + ], + [ + "▁cataracts", + -14.179039001464844 + ], + [ + "▁crimp", + -14.179052352905273 + ], + [ + "581", + -14.17910385131836 + ], + [ + "▁Galle", + -14.179106712341309 + ], + [ + "▁adv", + -14.179143905639648 + ], + [ + "▁USF", + -14.17920207977295 + ], + [ + "▁Swans", + -14.179203987121582 + ], + [ + "▁sanitizer", + -14.179216384887695 + ], + [ + "▁Hooks", + -14.179256439208984 + ], + [ + "▁bpd", + -14.179329872131348 + ], + [ + "▁Creighton", + -14.179368019104004 + ], + [ + "▁emblazoned", + -14.179372787475586 + ], + [ + "▁Sneakers", + -14.179375648498535 + ], + [ + "▁tributaries", + -14.179408073425293 + ], + [ + "564", + -14.17944049835205 + ], + [ + "Systems", + -14.179479598999023 + ], + [ + "▁Rez", + -14.179513931274414 + ], + [ + "▁combed", + -14.179513931274414 + ], + [ + "Natal", + -14.179522514343262 + ], + [ + "▁Midi", + -14.179536819458008 + ], + [ + "▁Operate", + -14.179559707641602 + ], + [ + "▁deceitful", + -14.179640769958496 + ], + [ + "▁Hokkaido", + -14.179672241210938 + ], + [ + "▁LOUIS", + -14.17969036102295 + ], + [ + "CTA", + -14.179718017578125 + ], + [ + "▁litany", + -14.179771423339844 + ], + [ + "▁deft", + -14.179797172546387 + ], + [ + "▁donkeys", + -14.179814338684082 + ], + [ + "▁felon", + -14.179847717285156 + ], + [ + "tickets", + -14.179924011230469 + ], + [ + "whi", + -14.180012702941895 + ], + [ + "▁Pugh", + -14.18001651763916 + ], + [ + "▁Faire", + -14.180083274841309 + ], + [ + "▁prophylaxis", + -14.180174827575684 + ], + [ + "OSS", + -14.18019962310791 + ], + [ + "▁gimmicks", + -14.1802339553833 + ], + [ + "vg", + -14.180243492126465 + ], + [ + "▁sparing", + -14.180244445800781 + ], + [ + "▁inlay", + -14.180251121520996 + ], + [ + "Rad", + -14.180283546447754 + ], + [ + "▁LIC", + -14.180294036865234 + ], + [ + "▁nourishes", + -14.180368423461914 + ], + [ + "Professional", + -14.180373191833496 + ], + [ + "▁skylight", + -14.180380821228027 + ], + [ + "▁Willing", + -14.180403709411621 + ], + [ + "jn", + -14.180407524108887 + ], + [ + "▁awkwardness", + -14.180438041687012 + ], + [ + "▁Exquisite", + -14.180511474609375 + ], + [ + "fab", + -14.180532455444336 + ], + [ + "▁के", + -14.180535316467285 + ], + [ + "▁exfoliation", + -14.180559158325195 + ], + [ + "▁protrude", + -14.180564880371094 + ], + [ + "▁janitor", + -14.180595397949219 + ], + [ + "ucker", + -14.18065071105957 + ], + [ + "▁Rinpoche", + -14.180706024169922 + ], + [ + "▁swamped", + -14.180747985839844 + ], + [ + "▁£18", + -14.180752754211426 + ], + [ + "▁Cucumber", + -14.180780410766602 + ], + [ + "nol", + -14.18079948425293 + ], + [ + "erative", + -14.180818557739258 + ], + [ + "▁wheelbase", + -14.180834770202637 + ], + [ + "▁rejoined", + -14.1808443069458 + ], + [ + "▁Ces", + -14.180870056152344 + ], + [ + "▁DENVER", + -14.180901527404785 + ], + [ + "▁Arlene", + -14.18091106414795 + ], + [ + "▁laud", + -14.180949211120605 + ], + [ + "▁cashed", + -14.18098258972168 + ], + [ + "inelli", + -14.181013107299805 + ], + [ + "多", + -14.181023597717285 + ], + [ + "▁Shorten", + -14.18104076385498 + ], + [ + "868", + -14.181061744689941 + ], + [ + "▁sprained", + -14.181092262268066 + ], + [ + "▁Lively", + -14.181124687194824 + ], + [ + "▁CASH", + -14.181140899658203 + ], + [ + "▁minimising", + -14.18115234375 + ], + [ + "▁bookshop", + -14.181169509887695 + ], + [ + "▁Buckinghamshire", + -14.181238174438477 + ], + [ + "hotmail", + -14.181249618530273 + ], + [ + "▁realises", + -14.181266784667969 + ], + [ + "▁CANNOT", + -14.181355476379395 + ], + [ + "▁HAM", + -14.181380271911621 + ], + [ + "▁unproven", + -14.181392669677734 + ], + [ + "▁swirled", + -14.181396484375 + ], + [ + "tenth", + -14.181424140930176 + ], + [ + "strategic", + -14.181476593017578 + ], + [ + "ů", + -14.181482315063477 + ], + [ + "▁Rac", + -14.181509017944336 + ], + [ + "▁sens", + -14.181529998779297 + ], + [ + "▁Dall", + -14.18153190612793 + ], + [ + "Mb", + -14.181550025939941 + ], + [ + "▁că", + -14.181591033935547 + ], + [ + "▁Balcony", + -14.181617736816406 + ], + [ + "▁Juliette", + -14.181617736816406 + ], + [ + "america", + -14.181628227233887 + ], + [ + "▁Poem", + -14.181666374206543 + ], + [ + "557", + -14.181679725646973 + ], + [ + "▁Mera", + -14.181682586669922 + ], + [ + "upgrade", + -14.181715965270996 + ], + [ + "database", + -14.181721687316895 + ], + [ + "qual", + -14.181761741638184 + ], + [ + "▁CORP", + -14.181816101074219 + ], + [ + "▁TCS", + -14.181832313537598 + ], + [ + "▁Cond", + -14.181864738464355 + ], + [ + "vada", + -14.181916236877441 + ], + [ + "▁conveyancing", + -14.18193244934082 + ], + [ + "lj", + -14.181955337524414 + ], + [ + "▁ENGINE", + -14.181968688964844 + ], + [ + "▁MOV", + -14.181984901428223 + ], + [ + "▁bonsai", + -14.181986808776855 + ], + [ + "769", + -14.181987762451172 + ], + [ + "▁unobstructed", + -14.182038307189941 + ], + [ + "▁Headache", + -14.182049751281738 + ], + [ + "▁ANTI", + -14.182050704956055 + ], + [ + "▁modifies", + -14.182050704956055 + ], + [ + "teric", + -14.182061195373535 + ], + [ + "Executive", + -14.182074546813965 + ], + [ + "▁HAN", + -14.182104110717773 + ], + [ + "▁Guatemalan", + -14.182148933410645 + ], + [ + "▁Waltham", + -14.182185173034668 + ], + [ + "▁moo", + -14.182186126708984 + ], + [ + "▁Equivalent", + -14.182201385498047 + ], + [ + "lub", + -14.182272911071777 + ], + [ + "▁carotid", + -14.182294845581055 + ], + [ + "▁Postcard", + -14.1823148727417 + ], + [ + "▁rearranged", + -14.182354927062988 + ], + [ + "▁Aut", + -14.182372093200684 + ], + [ + "▁toxicology", + -14.182394981384277 + ], + [ + "▁juggernaut", + -14.182429313659668 + ], + [ + "▁Const", + -14.182445526123047 + ], + [ + "要", + -14.182503700256348 + ], + [ + "Mari", + -14.182512283325195 + ], + [ + "ksha", + -14.182522773742676 + ], + [ + "rigo", + -14.182565689086914 + ], + [ + "gri", + -14.182585716247559 + ], + [ + "▁bearable", + -14.182598114013672 + ], + [ + "▁nam", + -14.182609558105469 + ], + [ + "▁Arp", + -14.182613372802734 + ], + [ + "▁destitute", + -14.182615280151367 + ], + [ + "▁Vicente", + -14.1826171875 + ], + [ + "▁Voted", + -14.182709693908691 + ], + [ + "▁drummers", + -14.182714462280273 + ], + [ + "erly", + -14.182722091674805 + ], + [ + "▁cologne", + -14.182788848876953 + ], + [ + "interview", + -14.182827949523926 + ], + [ + "▁CAPTION", + -14.182875633239746 + ], + [ + "yum", + -14.182906150817871 + ], + [ + "▁DEAL", + -14.182926177978516 + ], + [ + "emen", + -14.18293285369873 + ], + [ + "▁Bartholomew", + -14.183000564575195 + ], + [ + "▁audi", + -14.183003425598145 + ], + [ + "istas", + -14.183018684387207 + ], + [ + "▁CMYK", + -14.183125495910645 + ], + [ + "daddy", + -14.183138847351074 + ], + [ + "▁Gav", + -14.18313980102539 + ], + [ + "▁TDS", + -14.183152198791504 + ], + [ + "cies", + -14.183164596557617 + ], + [ + "▁Cortana", + -14.183173179626465 + ], + [ + "▁dowel", + -14.18317985534668 + ], + [ + "▁Teton", + -14.183206558227539 + ], + [ + "▁CSE", + -14.183226585388184 + ], + [ + "ू", + -14.183323860168457 + ], + [ + "▁uv", + -14.183364868164062 + ], + [ + "▁Hackers", + -14.183378219604492 + ], + [ + "thia", + -14.183382987976074 + ], + [ + "▁Belo", + -14.183404922485352 + ], + [ + "gami", + -14.183470726013184 + ], + [ + "▁underlines", + -14.183493614196777 + ], + [ + "▁Exposed", + -14.183539390563965 + ], + [ + "▁misinterpreted", + -14.183541297912598 + ], + [ + "Geek", + -14.183627128601074 + ], + [ + "▁dictators", + -14.183635711669922 + ], + [ + "▁overheat", + -14.183660507202148 + ], + [ + "▁townships", + -14.18366527557373 + ], + [ + "▁Schema", + -14.183720588684082 + ], + [ + "VU", + -14.18374252319336 + ], + [ + "▁SPC", + -14.183751106262207 + ], + [ + "▁whips", + -14.183757781982422 + ], + [ + "▁Generating", + -14.183799743652344 + ], + [ + "▁culminate", + -14.183823585510254 + ], + [ + "▁Hedgehog", + -14.183836936950684 + ], + [ + "▁Embroidered", + -14.183837890625 + ], + [ + "uzi", + -14.183845520019531 + ], + [ + "▁511", + -14.183858871459961 + ], + [ + "▁😀", + -14.183893203735352 + ], + [ + "▁WORD", + -14.183899879455566 + ], + [ + "051", + -14.183911323547363 + ], + [ + "▁Gottlieb", + -14.183938980102539 + ], + [ + "sides", + -14.183941841125488 + ], + [ + "▁Eis", + -14.183967590332031 + ], + [ + "▁Intercontinental", + -14.183979034423828 + ], + [ + "▁profusely", + -14.184049606323242 + ], + [ + "martin", + -14.184106826782227 + ], + [ + "▁knockdown", + -14.184118270874023 + ], + [ + "activate", + -14.184123992919922 + ], + [ + "907", + -14.184171676635742 + ], + [ + "aval", + -14.184186935424805 + ], + [ + "▁caveats", + -14.184226036071777 + ], + [ + "microsoft", + -14.1842622756958 + ], + [ + "▁Salomon", + -14.184321403503418 + ], + [ + "▁turrets", + -14.184382438659668 + ], + [ + "▁Sponge", + -14.184408187866211 + ], + [ + "▁Bernanke", + -14.184412002563477 + ], + [ + "▁Rooster", + -14.184416770935059 + ], + [ + "▁resurfaced", + -14.184465408325195 + ], + [ + "▁refreshingly", + -14.184480667114258 + ], + [ + "▁Tse", + -14.184532165527344 + ], + [ + "▁cli", + -14.184550285339355 + ], + [ + "电", + -14.184586524963379 + ], + [ + "launched", + -14.184593200683594 + ], + [ + "lez", + -14.184599876403809 + ], + [ + "portable", + -14.184605598449707 + ], + [ + "▁middleware", + -14.184645652770996 + ], + [ + "▁Styling", + -14.184652328491211 + ], + [ + "▁Wills", + -14.184654235839844 + ], + [ + "▁creatives", + -14.184667587280273 + ], + [ + "relative", + -14.184677124023438 + ], + [ + "Rate", + -14.1846923828125 + ], + [ + "▁Sava", + -14.184708595275879 + ], + [ + "▁Glorious", + -14.184711456298828 + ], + [ + "▁egalitarian", + -14.18472671508789 + ], + [ + "▁Kubrick", + -14.18474006652832 + ], + [ + "oye", + -14.184799194335938 + ], + [ + "▁Trending", + -14.184830665588379 + ], + [ + "▁Fy", + -14.184904098510742 + ], + [ + "flip", + -14.184934616088867 + ], + [ + "rilla", + -14.184937477111816 + ], + [ + "Pol", + -14.184938430786133 + ], + [ + "▁insurgent", + -14.184980392456055 + ], + [ + "gyn", + -14.185032844543457 + ], + [ + "aling", + -14.185037612915039 + ], + [ + "nosis", + -14.18504810333252 + ], + [ + "GX", + -14.185114860534668 + ], + [ + "yad", + -14.185121536254883 + ], + [ + "▁Deepak", + -14.185129165649414 + ], + [ + "uzz", + -14.185138702392578 + ], + [ + "portal", + -14.185168266296387 + ], + [ + "▁sala", + -14.185213088989258 + ], + [ + "▁Goodell", + -14.18521785736084 + ], + [ + "▁shackles", + -14.185225486755371 + ], + [ + "▁Raza", + -14.185296058654785 + ], + [ + "▁Jocelyn", + -14.185306549072266 + ], + [ + "▁Lauri", + -14.185314178466797 + ], + [ + "▁McCormack", + -14.185324668884277 + ], + [ + "▁Cosmopolitan", + -14.185325622558594 + ], + [ + "034", + -14.185328483581543 + ], + [ + "▁BEA", + -14.185357093811035 + ], + [ + "▁Alc", + -14.185379981994629 + ], + [ + "batch", + -14.185392379760742 + ], + [ + "cheese", + -14.185418128967285 + ], + [ + "▁Altar", + -14.18543815612793 + ], + [ + "▁Shul", + -14.185439109802246 + ], + [ + "▁insecticides", + -14.185470581054688 + ], + [ + "▁sautéed", + -14.185482025146484 + ], + [ + "▁spinners", + -14.185516357421875 + ], + [ + "Oil", + -14.185528755187988 + ], + [ + "▁streamers", + -14.185562133789062 + ], + [ + "Lit", + -14.185564994812012 + ], + [ + "▁coexistence", + -14.185564994812012 + ], + [ + "marking", + -14.185617446899414 + ], + [ + "ILA", + -14.185620307922363 + ], + [ + "▁faintly", + -14.185623168945312 + ], + [ + "ckel", + -14.185680389404297 + ], + [ + "▁preposition", + -14.185684204101562 + ], + [ + "▁varicose", + -14.18581485748291 + ], + [ + "▁TAR", + -14.185891151428223 + ], + [ + "raiser", + -14.185909271240234 + ], + [ + "Hopefully", + -14.185932159423828 + ], + [ + "▁Mathieu", + -14.18594741821289 + ], + [ + "▁Huffman", + -14.186017990112305 + ], + [ + "▁Roles", + -14.18603229522705 + ], + [ + "▁Roadster", + -14.186036109924316 + ], + [ + "▁प", + -14.186043739318848 + ], + [ + "▁Trav", + -14.186044692993164 + ], + [ + "spoon", + -14.18608570098877 + ], + [ + "▁grafts", + -14.186135292053223 + ], + [ + "▁townhomes", + -14.186156272888184 + ], + [ + "TTY", + -14.186246871948242 + ], + [ + "▁Carlin", + -14.186264991760254 + ], + [ + "▁Sarajevo", + -14.186299324035645 + ], + [ + "▁DEATH", + -14.186315536499023 + ], + [ + "▁Stocking", + -14.186317443847656 + ], + [ + "▁flocking", + -14.186345100402832 + ], + [ + "harvest", + -14.18640422821045 + ], + [ + "▁crumpled", + -14.186408996582031 + ], + [ + "cule", + -14.186412811279297 + ], + [ + "▁ф", + -14.186432838439941 + ], + [ + "env", + -14.186440467834473 + ], + [ + "▁Stowe", + -14.186487197875977 + ], + [ + "▁fiancee", + -14.186487197875977 + ], + [ + "▁mech", + -14.186527252197266 + ], + [ + "694", + -14.186551094055176 + ], + [ + "▁naught", + -14.186561584472656 + ], + [ + "▁mecca", + -14.186566352844238 + ], + [ + "▁condiments", + -14.1865816116333 + ], + [ + "logists", + -14.186633110046387 + ], + [ + "phenol", + -14.186650276184082 + ], + [ + "yng", + -14.18666934967041 + ], + [ + "から", + -14.186734199523926 + ], + [ + "▁Arsene", + -14.18674087524414 + ], + [ + "▁RAV", + -14.186748504638672 + ], + [ + "▁condense", + -14.186767578125 + ], + [ + "gru", + -14.186805725097656 + ], + [ + "▁boyfriends", + -14.186806678771973 + ], + [ + "▁Dominica", + -14.186807632446289 + ], + [ + "▁376", + -14.186820983886719 + ], + [ + "▁Wainwright", + -14.1868257522583 + ], + [ + "aaaa", + -14.186837196350098 + ], + [ + "roof", + -14.186840057373047 + ], + [ + "▁Sloane", + -14.186857223510742 + ], + [ + "▁decrees", + -14.186860084533691 + ], + [ + "avin", + -14.186877250671387 + ], + [ + "▁Pentium", + -14.186931610107422 + ], + [ + "reen", + -14.18694019317627 + ], + [ + "▁financiers", + -14.18694019317627 + ], + [ + "▁Xan", + -14.186955451965332 + ], + [ + "▁Comptroller", + -14.18696117401123 + ], + [ + "▁MMR", + -14.186990737915039 + ], + [ + "▁Comrade", + -14.187003135681152 + ], + [ + "▁Akshay", + -14.187054634094238 + ], + [ + "▁Trailers", + -14.187056541442871 + ], + [ + "õ", + -14.187095642089844 + ], + [ + "Cache", + -14.18709659576416 + ], + [ + "▁Callie", + -14.187150955200195 + ], + [ + "▁1780", + -14.187179565429688 + ], + [ + "▁Oswego", + -14.187186241149902 + ], + [ + "NAN", + -14.18720531463623 + ], + [ + "▁uPVC", + -14.18723201751709 + ], + [ + "▁megapixel", + -14.187261581420898 + ], + [ + "ANDA", + -14.187309265136719 + ], + [ + "uso", + -14.187335968017578 + ], + [ + "▁Maricopa", + -14.187411308288574 + ], + [ + "▁Kik", + -14.187509536743164 + ], + [ + "bord", + -14.187556266784668 + ], + [ + "SSC", + -14.187596321105957 + ], + [ + "1911", + -14.187599182128906 + ], + [ + "dangerous", + -14.187616348266602 + ], + [ + "加", + -14.187639236450195 + ], + [ + "▁Chernobyl", + -14.18773078918457 + ], + [ + "▁multiculturalism", + -14.187779426574707 + ], + [ + "▁vetoed", + -14.187785148620605 + ], + [ + "▁Scoring", + -14.18780517578125 + ], + [ + "756", + -14.187846183776855 + ], + [ + "▁Hae", + -14.18787670135498 + ], + [ + "scu", + -14.187891960144043 + ], + [ + "IPA", + -14.187920570373535 + ], + [ + "vad", + -14.187931060791016 + ], + [ + "▁medallist", + -14.187995910644531 + ], + [ + "▁Folio", + -14.188040733337402 + ], + [ + "▁Bespoke", + -14.188101768493652 + ], + [ + "Teen", + -14.188138008117676 + ], + [ + "▁CAUSE", + -14.18814754486084 + ], + [ + "▁Yellen", + -14.1881685256958 + ], + [ + "fia", + -14.188179969787598 + ], + [ + "▁PWM", + -14.188209533691406 + ], + [ + "▁BRE", + -14.188232421875 + ], + [ + "▁skips", + -14.188241958618164 + ], + [ + "▁Interval", + -14.188298225402832 + ], + [ + "▁Excellency", + -14.188364028930664 + ], + [ + "nji", + -14.188499450683594 + ], + [ + "GUI", + -14.188514709472656 + ], + [ + "▁midterms", + -14.188523292541504 + ], + [ + "▁rf", + -14.188544273376465 + ], + [ + "▁388", + -14.188666343688965 + ], + [ + "723", + -14.188721656799316 + ], + [ + "▁Lut", + -14.188779830932617 + ], + [ + "constant", + -14.188780784606934 + ], + [ + "▁accuser", + -14.188828468322754 + ], + [ + "▁lobbies", + -14.188828468322754 + ], + [ + "▁evict", + -14.188836097717285 + ], + [ + "nky", + -14.18883991241455 + ], + [ + "ут", + -14.188899040222168 + ], + [ + "▁Prominent", + -14.18890380859375 + ], + [ + "▁parlour", + -14.18896198272705 + ], + [ + "▁Hwang", + -14.188979148864746 + ], + [ + "▁613", + -14.188980102539062 + ], + [ + "▁Merrick", + -14.189008712768555 + ], + [ + "▁Contribute", + -14.189030647277832 + ], + [ + "Capital", + -14.18903636932373 + ], + [ + "asan", + -14.189074516296387 + ], + [ + "▁Elba", + -14.189132690429688 + ], + [ + "▁VOL", + -14.189201354980469 + ], + [ + "▁mojo", + -14.189203262329102 + ], + [ + "objective", + -14.189269065856934 + ], + [ + "▁backfield", + -14.189275741577148 + ], + [ + "▁hin", + -14.189315795898438 + ], + [ + "rrr", + -14.189452171325684 + ], + [ + "Advisor", + -14.189504623413086 + ], + [ + "809", + -14.18951416015625 + ], + [ + "▁greenish", + -14.18954849243164 + ], + [ + "▁touristy", + -14.189558029174805 + ], + [ + "832", + -14.189631462097168 + ], + [ + "▁sprain", + -14.189661979675293 + ], + [ + "▁Aids", + -14.189675331115723 + ], + [ + "cep", + -14.189743995666504 + ], + [ + "821", + -14.189784049987793 + ], + [ + "▁esophageal", + -14.189785957336426 + ], + [ + "▁Chaucer", + -14.189884185791016 + ], + [ + "▁crackle", + -14.189898490905762 + ], + [ + "▁baht", + -14.189935684204102 + ], + [ + "bytes", + -14.189943313598633 + ], + [ + "▁POD", + -14.18995475769043 + ], + [ + "▁elude", + -14.18997573852539 + ], + [ + "▁Defend", + -14.189980506896973 + ], + [ + "▁Baskets", + -14.19001579284668 + ], + [ + "▁Respondents", + -14.190028190612793 + ], + [ + "▁Clements", + -14.190041542053223 + ], + [ + "▁Nippon", + -14.190046310424805 + ], + [ + "hina", + -14.19005298614502 + ], + [ + "temporal", + -14.190077781677246 + ], + [ + "▁spielen", + -14.19011116027832 + ], + [ + "▁Clapton", + -14.190156936645508 + ], + [ + "ब", + -14.190204620361328 + ], + [ + "▁Gosling", + -14.190217971801758 + ], + [ + "▁bf", + -14.190217971801758 + ], + [ + "▁Feminism", + -14.1902494430542 + ], + [ + "▁duped", + -14.190269470214844 + ], + [ + "▁что", + -14.190274238586426 + ], + [ + "▁Saute", + -14.190301895141602 + ], + [ + "ouch", + -14.190360069274902 + ], + [ + "yz", + -14.190361022949219 + ], + [ + "▁Growers", + -14.19036865234375 + ], + [ + "▁COMPUTER", + -14.190421104431152 + ], + [ + "sellers", + -14.190443992614746 + ], + [ + "▁Leinster", + -14.190474510192871 + ], + [ + "▁austere", + -14.190491676330566 + ], + [ + "hawks", + -14.190518379211426 + ], + [ + "▁sql", + -14.190524101257324 + ], + [ + "▁Duel", + -14.190533638000488 + ], + [ + "▁ePub", + -14.190545082092285 + ], + [ + "▁frontrunner", + -14.190563201904297 + ], + [ + "▁Transylvania", + -14.190582275390625 + ], + [ + "▁arraigned", + -14.190593719482422 + ], + [ + "zha", + -14.190614700317383 + ], + [ + "bk", + -14.190619468688965 + ], + [ + "▁verbatim", + -14.19067668914795 + ], + [ + "▁Lerner", + -14.19082260131836 + ], + [ + "▁floured", + -14.190838813781738 + ], + [ + "▁BABY", + -14.190881729125977 + ], + [ + "▁Beren", + -14.190898895263672 + ], + [ + "▁Indulge", + -14.190900802612305 + ], + [ + "▁minibus", + -14.190919876098633 + ], + [ + "Mis", + -14.190925598144531 + ], + [ + "▁hooves", + -14.190984725952148 + ], + [ + "▁Zeiss", + -14.191027641296387 + ], + [ + "▁anthropo", + -14.191044807434082 + ], + [ + "besides", + -14.191062927246094 + ], + [ + "stral", + -14.19106388092041 + ], + [ + "▁hatches", + -14.191082000732422 + ], + [ + "▁vamp", + -14.191217422485352 + ], + [ + "▁especial", + -14.191224098205566 + ], + [ + "▁Conductor", + -14.1912260055542 + ], + [ + "▁Genet", + -14.191247940063477 + ], + [ + "▁Whi", + -14.191330909729004 + ], + [ + "▁Albright", + -14.191340446472168 + ], + [ + "▁Sportsman", + -14.191357612609863 + ], + [ + "eezy", + -14.191375732421875 + ], + [ + "Rex", + -14.191424369812012 + ], + [ + "▁703", + -14.191457748413086 + ], + [ + "ń", + -14.191473960876465 + ], + [ + "▁Aku", + -14.191476821899414 + ], + [ + "▁Ignoring", + -14.19147777557373 + ], + [ + "rude", + -14.191521644592285 + ], + [ + "plast", + -14.191529273986816 + ], + [ + "▁masterfully", + -14.191534042358398 + ], + [ + "physics", + -14.191544532775879 + ], + [ + "▁pretends", + -14.191594123840332 + ], + [ + "сти", + -14.191619873046875 + ], + [ + "▁PACK", + -14.19162368774414 + ], + [ + "▁chakras", + -14.19162654876709 + ], + [ + "▁fidget", + -14.19163990020752 + ], + [ + "ERP", + -14.191655158996582 + ], + [ + "▁artful", + -14.191689491271973 + ], + [ + "iyo", + -14.19170093536377 + ], + [ + "▁commonwealth", + -14.191705703735352 + ], + [ + "▁webmasters", + -14.191802978515625 + ], + [ + "▁narcotic", + -14.191817283630371 + ], + [ + "LAR", + -14.19188117980957 + ], + [ + "▁disarm", + -14.191895484924316 + ], + [ + "Copy", + -14.191904067993164 + ], + [ + "▁subdue", + -14.191906929016113 + ], + [ + "takes", + -14.191962242126465 + ], + [ + "▁disparage", + -14.191971778869629 + ], + [ + "▁tabernacle", + -14.192030906677246 + ], + [ + "▁FIN", + -14.192047119140625 + ], + [ + "▁snob", + -14.192086219787598 + ], + [ + "▁fourteenth", + -14.19210147857666 + ], + [ + "▁Persistent", + -14.192139625549316 + ], + [ + "▁Arrows", + -14.19216537475586 + ], + [ + "▁Veri", + -14.192194938659668 + ], + [ + "▁vom", + -14.192208290100098 + ], + [ + "▁erred", + -14.192216873168945 + ], + [ + "▁stroking", + -14.19229793548584 + ], + [ + "▁434", + -14.192298889160156 + ], + [ + "▁Crocker", + -14.192377090454102 + ], + [ + "▁cofounder", + -14.19239330291748 + ], + [ + "▁evoking", + -14.19239330291748 + ], + [ + "Korean", + -14.19244384765625 + ], + [ + "▁£11", + -14.192488670349121 + ], + [ + "▁crocodiles", + -14.192500114440918 + ], + [ + "ceptive", + -14.192549705505371 + ], + [ + "▁mingled", + -14.192557334899902 + ], + [ + "▁brownish", + -14.192577362060547 + ], + [ + "▁chives", + -14.192590713500977 + ], + [ + "compete", + -14.192644119262695 + ], + [ + "bbie", + -14.192651748657227 + ], + [ + "▁dv", + -14.192672729492188 + ], + [ + "▁Jardin", + -14.192704200744629 + ], + [ + "mineral", + -14.192712783813477 + ], + [ + "▁ING", + -14.192721366882324 + ], + [ + "▁RCT", + -14.19272518157959 + ], + [ + "▁opus", + -14.192773818969727 + ], + [ + "ULT", + -14.192837715148926 + ], + [ + "▁contraceptives", + -14.192853927612305 + ], + [ + "▁holocaust", + -14.192920684814453 + ], + [ + "▁eSports", + -14.192985534667969 + ], + [ + "▁Tebow", + -14.192997932434082 + ], + [ + "▁WILD", + -14.193036079406738 + ], + [ + "basket", + -14.193060874938965 + ], + [ + "▁SIS", + -14.193081855773926 + ], + [ + "▁WIRE", + -14.193115234375 + ], + [ + "FSA", + -14.19312572479248 + ], + [ + "tau", + -14.193199157714844 + ], + [ + "691", + -14.193208694458008 + ], + [ + "▁Nantucket", + -14.193256378173828 + ], + [ + "▁Bookings", + -14.193258285522461 + ], + [ + "▁Leland", + -14.193303108215332 + ], + [ + "▁Eyre", + -14.193333625793457 + ], + [ + "▁Frans", + -14.19334602355957 + ], + [ + "aggi", + -14.193395614624023 + ], + [ + "▁Agarwal", + -14.193439483642578 + ], + [ + "akka", + -14.193451881408691 + ], + [ + "▁Sheer", + -14.193459510803223 + ], + [ + "▁designating", + -14.1934814453125 + ], + [ + "bourn", + -14.19355297088623 + ], + [ + "▁Sudden", + -14.193583488464355 + ], + [ + "▁BLOCK", + -14.193593978881836 + ], + [ + "▁Reps", + -14.193672180175781 + ], + [ + "bullying", + -14.193726539611816 + ], + [ + "▁muddled", + -14.19372844696045 + ], + [ + "▁Nikolai", + -14.19375991821289 + ], + [ + "▁GATE", + -14.193771362304688 + ], + [ + "▁archetypes", + -14.193790435791016 + ], + [ + "▁Hummer", + -14.19379997253418 + ], + [ + "▁widescreen", + -14.19384765625 + ], + [ + "▁ashley", + -14.193881034851074 + ], + [ + "▁flagging", + -14.193892478942871 + ], + [ + "runners", + -14.193929672241211 + ], + [ + "▁Fracture", + -14.19394588470459 + ], + [ + "▁bickering", + -14.194037437438965 + ], + [ + "▁Buxton", + -14.194160461425781 + ], + [ + "▁talisman", + -14.194161415100098 + ], + [ + "▁Sealed", + -14.194175720214844 + ], + [ + "▁Juicy", + -14.194177627563477 + ], + [ + "ová", + -14.19420051574707 + ], + [ + "▁Fable", + -14.19421100616455 + ], + [ + "▁Seagate", + -14.1942138671875 + ], + [ + "751", + -14.194231033325195 + ], + [ + "enie", + -14.194269180297852 + ], + [ + "▁359", + -14.19429874420166 + ], + [ + "▁б", + -14.194342613220215 + ], + [ + "▁MIX", + -14.194347381591797 + ], + [ + "▁recharging", + -14.194396018981934 + ], + [ + "Exp", + -14.194404602050781 + ], + [ + "▁trappings", + -14.194405555725098 + ], + [ + "▁blackness", + -14.194519996643066 + ], + [ + "ả", + -14.194548606872559 + ], + [ + "▁disintegration", + -14.194557189941406 + ], + [ + "▁metallurgy", + -14.194632530212402 + ], + [ + "▁1814", + -14.194648742675781 + ], + [ + "▁Laughter", + -14.19466781616211 + ], + [ + "▁Microbiol", + -14.194669723510742 + ], + [ + "▁Constantly", + -14.1947021484375 + ], + [ + "▁Detect", + -14.19471549987793 + ], + [ + "sock", + -14.194764137268066 + ], + [ + "▁Lorna", + -14.194771766662598 + ], + [ + "▁Raa", + -14.194779396057129 + ], + [ + "▁FIGURE", + -14.195011138916016 + ], + [ + "▁reevaluate", + -14.195039749145508 + ], + [ + "▁crawler", + -14.195120811462402 + ], + [ + "▁Tsai", + -14.19512939453125 + ], + [ + "highlight", + -14.195147514343262 + ], + [ + "▁Supp", + -14.195170402526855 + ], + [ + "▁disjointed", + -14.195218086242676 + ], + [ + "▁indigestion", + -14.19525146484375 + ], + [ + "▁Countertop", + -14.195294380187988 + ], + [ + "▁Mysterious", + -14.195298194885254 + ], + [ + "▁cron", + -14.195303916931152 + ], + [ + "▁SCM", + -14.1953125 + ], + [ + "▁Circuits", + -14.195318222045898 + ], + [ + "▁775", + -14.195323944091797 + ], + [ + "▁Pawn", + -14.195340156555176 + ], + [ + "▁Arboretum", + -14.195341110229492 + ], + [ + "▁OneDrive", + -14.195365905761719 + ], + [ + "▁Akh", + -14.195389747619629 + ], + [ + "hini", + -14.195401191711426 + ], + [ + "▁crazed", + -14.195466995239258 + ], + [ + "▁Devine", + -14.19554615020752 + ], + [ + "▁suckers", + -14.195568084716797 + ], + [ + "▁vlog", + -14.195574760437012 + ], + [ + "▁Cob", + -14.195594787597656 + ], + [ + "▁impressing", + -14.195613861083984 + ], + [ + "▁MOTOR", + -14.195618629455566 + ], + [ + "▁greenhouses", + -14.195624351501465 + ], + [ + "▁reinventing", + -14.19564151763916 + ], + [ + "▁Varanasi", + -14.195687294006348 + ], + [ + "oiled", + -14.1957368850708 + ], + [ + "▁THINGS", + -14.195747375488281 + ], + [ + "▁pulsing", + -14.195777893066406 + ], + [ + "▁Distinction", + -14.195842742919922 + ], + [ + "▁EXACTLY", + -14.195846557617188 + ], + [ + "Location", + -14.19594955444336 + ], + [ + "▁Xue", + -14.19596004486084 + ], + [ + "kko", + -14.195961952209473 + ], + [ + "kaya", + -14.195995330810547 + ], + [ + "▁ameliorate", + -14.196033477783203 + ], + [ + "▁invertebrates", + -14.196046829223633 + ], + [ + "▁captives", + -14.196056365966797 + ], + [ + "▁Luv", + -14.196089744567871 + ], + [ + "Tune", + -14.196094512939453 + ], + [ + "▁oblong", + -14.19614028930664 + ], + [ + "▁UFOs", + -14.19625186920166 + ], + [ + "rty", + -14.19633960723877 + ], + [ + "▁ASE", + -14.196352005004883 + ], + [ + "▁FILM", + -14.196382522583008 + ], + [ + "▁Tack", + -14.196399688720703 + ], + [ + "▁Removable", + -14.196451187133789 + ], + [ + "combat", + -14.19646167755127 + ], + [ + "▁Lauder", + -14.196465492248535 + ], + [ + "▁receivables", + -14.196491241455078 + ], + [ + "phin", + -14.196557998657227 + ], + [ + "▁κ", + -14.196592330932617 + ], + [ + "▁diverge", + -14.196601867675781 + ], + [ + "cek", + -14.196638107299805 + ], + [ + "▁Wach", + -14.196667671203613 + ], + [ + "▁Horner", + -14.196684837341309 + ], + [ + "▁jerks", + -14.19676399230957 + ], + [ + "▁castings", + -14.19676685333252 + ], + [ + "▁coerced", + -14.196864128112793 + ], + [ + "▁brat", + -14.196870803833008 + ], + [ + "crust", + -14.196887016296387 + ], + [ + "▁Devo", + -14.19688892364502 + ], + [ + "rette", + -14.196908950805664 + ], + [ + "▁pheasant", + -14.196928977966309 + ], + [ + "▁Sax", + -14.19693374633789 + ], + [ + "▁brit", + -14.196952819824219 + ], + [ + "▁unfaithful", + -14.196958541870117 + ], + [ + "▁confidant", + -14.196966171264648 + ], + [ + "▁divest", + -14.196972846984863 + ], + [ + "▁Nether", + -14.196998596191406 + ], + [ + "▁springing", + -14.19701099395752 + ], + [ + "tropic", + -14.19701862335205 + ], + [ + "URI", + -14.197099685668945 + ], + [ + "▁Readiness", + -14.197154998779297 + ], + [ + "▁bard", + -14.19721508026123 + ], + [ + "Eva", + -14.197221755981445 + ], + [ + "ня", + -14.197230339050293 + ], + [ + "Website", + -14.197233200073242 + ], + [ + "▁mustang", + -14.197246551513672 + ], + [ + "VAN", + -14.197266578674316 + ], + [ + "▁predominately", + -14.197267532348633 + ], + [ + "▁mountaineering", + -14.197312355041504 + ], + [ + "▁ANT", + -14.197352409362793 + ], + [ + "▁gui", + -14.197378158569336 + ], + [ + "▁Dakar", + -14.197385787963867 + ], + [ + "▁cypress", + -14.197420120239258 + ], + [ + "CBD", + -14.19742202758789 + ], + [ + "▁bystander", + -14.197426795959473 + ], + [ + "▁FBS", + -14.1974458694458 + ], + [ + "graphics", + -14.197447776794434 + ], + [ + "▁cornered", + -14.19755744934082 + ], + [ + "▁iterate", + -14.197564125061035 + ], + [ + "ème", + -14.1975679397583 + ], + [ + "▁Brawl", + -14.197608947753906 + ], + [ + "▁Nagpur", + -14.197622299194336 + ], + [ + "opsis", + -14.197626113891602 + ], + [ + "STAT", + -14.197646141052246 + ], + [ + "▁SAV", + -14.197663307189941 + ], + [ + "nces", + -14.197676658630371 + ], + [ + "▁Sheehan", + -14.197699546813965 + ], + [ + "▁overbearing", + -14.197713851928711 + ], + [ + "▁Appellant", + -14.197738647460938 + ], + [ + "▁preposterous", + -14.197741508483887 + ], + [ + "▁Lister", + -14.197744369506836 + ], + [ + "▁seared", + -14.197771072387695 + ], + [ + "▁Sentiment", + -14.197810173034668 + ], + [ + "▁Safeway", + -14.197830200195312 + ], + [ + "vocation", + -14.197844505310059 + ], + [ + "▁MFC", + -14.197894096374512 + ], + [ + "▁Laver", + -14.197896003723145 + ], + [ + "▁Mehr", + -14.197929382324219 + ], + [ + "aea", + -14.197964668273926 + ], + [ + "▁Watercolor", + -14.197965621948242 + ], + [ + "▁Haber", + -14.197999954223633 + ], + [ + "▁effecting", + -14.19801139831543 + ], + [ + "▁borehole", + -14.198030471801758 + ], + [ + "▁Methyl", + -14.198060035705566 + ], + [ + "▁eroding", + -14.19808292388916 + ], + [ + "patent", + -14.198094367980957 + ], + [ + "878", + -14.198149681091309 + ], + [ + "Array", + -14.198155403137207 + ], + [ + "▁gua", + -14.198156356811523 + ], + [ + "▁Sleek", + -14.198163986206055 + ], + [ + "▁YP", + -14.19816780090332 + ], + [ + "▁plough", + -14.19818115234375 + ], + [ + "▁Sabre", + -14.198214530944824 + ], + [ + "penny", + -14.198222160339355 + ], + [ + "▁STAY", + -14.198224067687988 + ], + [ + "Ang", + -14.198286056518555 + ], + [ + "federal", + -14.198321342468262 + ], + [ + "▁Disconnect", + -14.198322296142578 + ], + [ + "▁underdeveloped", + -14.198355674743652 + ], + [ + "▁chirp", + -14.198356628417969 + ], + [ + "pitched", + -14.198369026184082 + ], + [ + "▁paltry", + -14.198372840881348 + ], + [ + "▁Eel", + -14.198392868041992 + ], + [ + "instant", + -14.19841480255127 + ], + [ + "▁RAT", + -14.198437690734863 + ], + [ + "▁JESUS", + -14.198453903198242 + ], + [ + "▁differentially", + -14.198460578918457 + ], + [ + "ylo", + -14.198474884033203 + ], + [ + "▁fucks", + -14.198518753051758 + ], + [ + "▁kickstart", + -14.198518753051758 + ], + [ + "▁PARA", + -14.1986083984375 + ], + [ + "▁442", + -14.198646545410156 + ], + [ + "damn", + -14.19874095916748 + ], + [ + "▁erasure", + -14.1987886428833 + ], + [ + "aille", + -14.198907852172852 + ], + [ + "▁LOVES", + -14.198952674865723 + ], + [ + "▁Kilkenny", + -14.198980331420898 + ], + [ + "▁purview", + -14.19899845123291 + ], + [ + "▁december", + -14.199095726013184 + ], + [ + "▁antagonistic", + -14.199118614196777 + ], + [ + "▁analgesic", + -14.199145317077637 + ], + [ + "SCC", + -14.199149131774902 + ], + [ + "▁HILL", + -14.199173927307129 + ], + [ + "dist", + -14.199211120605469 + ], + [ + "▁Owning", + -14.199220657348633 + ], + [ + "▁Igbo", + -14.199252128601074 + ], + [ + "▁Duh", + -14.199267387390137 + ], + [ + "Ultra", + -14.199284553527832 + ], + [ + "▁impervious", + -14.199292182922363 + ], + [ + "▁WU", + -14.19931697845459 + ], + [ + "▁stroked", + -14.199365615844727 + ], + [ + "▁overhauled", + -14.199450492858887 + ], + [ + "▁Dread", + -14.199485778808594 + ], + [ + "▁CHILDREN", + -14.199496269226074 + ], + [ + "▁github", + -14.199519157409668 + ], + [ + "▁serviceable", + -14.19953727722168 + ], + [ + "ellini", + -14.19954776763916 + ], + [ + "▁dendritic", + -14.19956111907959 + ], + [ + "chari", + -14.199563026428223 + ], + [ + "▁falsehood", + -14.19959831237793 + ], + [ + "▁Sas", + -14.199613571166992 + ], + [ + "▁postponement", + -14.199614524841309 + ], + [ + "▁rehearsing", + -14.199650764465332 + ], + [ + "▁stipulates", + -14.199734687805176 + ], + [ + "isn", + -14.199736595153809 + ], + [ + "▁Cavalier", + -14.199753761291504 + ], + [ + "て", + -14.199776649475098 + ], + [ + "▁Jacqui", + -14.199793815612793 + ], + [ + "▁unduly", + -14.199825286865234 + ], + [ + "▁Armory", + -14.19987964630127 + ], + [ + "▁Pietro", + -14.199894905090332 + ], + [ + "turing", + -14.199920654296875 + ], + [ + "▁Kidman", + -14.199932098388672 + ], + [ + "▁Described", + -14.199936866760254 + ], + [ + "▁rhe", + -14.199938774108887 + ], + [ + "▁Outlaw", + -14.199946403503418 + ], + [ + "Nav", + -14.199969291687012 + ], + [ + "▁Grub", + -14.199971199035645 + ], + [ + "andro", + -14.200017929077148 + ], + [ + "▁FRIDAY", + -14.200043678283691 + ], + [ + "611", + -14.200056076049805 + ], + [ + "▁372", + -14.200061798095703 + ], + [ + "▁ResearchGate", + -14.20007038116455 + ], + [ + "▁drips", + -14.200128555297852 + ], + [ + "▁HEAT", + -14.2001371383667 + ], + [ + "▁caustic", + -14.200148582458496 + ], + [ + "▁airbrush", + -14.200153350830078 + ], + [ + "▁Filler", + -14.200162887573242 + ], + [ + "▁bellies", + -14.200177192687988 + ], + [ + "▁930", + -14.200207710266113 + ], + [ + "▁RMA", + -14.200248718261719 + ], + [ + "731", + -14.200267791748047 + ], + [ + "▁Ignatius", + -14.20040225982666 + ], + [ + "prednisone", + -14.200413703918457 + ], + [ + "▁seg", + -14.200427055358887 + ], + [ + "tasking", + -14.200486183166504 + ], + [ + "organised", + -14.200506210327148 + ], + [ + "000000", + -14.200508117675781 + ], + [ + "▁BEL", + -14.200593948364258 + ], + [ + "▁Sonya", + -14.200615882873535 + ], + [ + "▁remand", + -14.200630187988281 + ], + [ + "▁Cabaret", + -14.200682640075684 + ], + [ + "idan", + -14.200708389282227 + ], + [ + "tische", + -14.200708389282227 + ], + [ + "▁ales", + -14.200716018676758 + ], + [ + "Nature", + -14.200716972351074 + ], + [ + "▁Arrivals", + -14.200925827026367 + ], + [ + "caused", + -14.200928688049316 + ], + [ + "▁mittens", + -14.200976371765137 + ], + [ + "▁1250", + -14.200995445251465 + ], + [ + "▁Spiderman", + -14.201007843017578 + ], + [ + "▁Novell", + -14.201086044311523 + ], + [ + "▁cull", + -14.201091766357422 + ], + [ + "▁Cata", + -14.201092720031738 + ], + [ + "Major", + -14.201104164123535 + ], + [ + "▁Alia", + -14.20116901397705 + ], + [ + "cana", + -14.201203346252441 + ], + [ + "▁Whittaker", + -14.201211929321289 + ], + [ + "▁vers", + -14.201220512390137 + ], + [ + "▁shan", + -14.20133113861084 + ], + [ + "▁fission", + -14.201335906982422 + ], + [ + "Eu", + -14.201356887817383 + ], + [ + "volu", + -14.201369285583496 + ], + [ + "▁ArcGIS", + -14.201377868652344 + ], + [ + "oor", + -14.201382637023926 + ], + [ + "▁AY", + -14.201410293579102 + ], + [ + "scrap", + -14.201414108276367 + ], + [ + "RMS", + -14.20141887664795 + ], + [ + "▁privatisation", + -14.20141887664795 + ], + [ + "ank", + -14.20145320892334 + ], + [ + "▁Hickey", + -14.20150089263916 + ], + [ + "→", + -14.201510429382324 + ], + [ + "▁remastered", + -14.201515197753906 + ], + [ + "Fin", + -14.201517105102539 + ], + [ + "ев", + -14.201571464538574 + ], + [ + "▁syntactic", + -14.201613426208496 + ], + [ + "▁handlebar", + -14.201630592346191 + ], + [ + "▁aloft", + -14.20164966583252 + ], + [ + "▁CONDITIONS", + -14.20172119140625 + ], + [ + "▁clotting", + -14.201725959777832 + ], + [ + "▁TRUTH", + -14.20173168182373 + ], + [ + "▁Pinoy", + -14.201738357543945 + ], + [ + "▁Rave", + -14.201741218566895 + ], + [ + "▁legalizing", + -14.201754570007324 + ], + [ + "▁mund", + -14.201763153076172 + ], + [ + "▁FAFSA", + -14.201764106750488 + ], + [ + "▁603", + -14.201797485351562 + ], + [ + "▁Mankind", + -14.201826095581055 + ], + [ + "▁Silvia", + -14.201828002929688 + ], + [ + "▁clogs", + -14.201830863952637 + ], + [ + "DEA", + -14.20185375213623 + ], + [ + "▁Stolen", + -14.201858520507812 + ], + [ + "korn", + -14.201887130737305 + ], + [ + "▁Pulmonary", + -14.201929092407227 + ], + [ + "▁mythic", + -14.201980590820312 + ], + [ + "še", + -14.201982498168945 + ], + [ + "▁coercive", + -14.20198917388916 + ], + [ + "ckler", + -14.202041625976562 + ], + [ + "▁GAO", + -14.202045440673828 + ], + [ + "▁Roar", + -14.202045440673828 + ], + [ + "Broadway", + -14.202054977416992 + ], + [ + "saturated", + -14.202152252197266 + ], + [ + "▁Councillors", + -14.20218276977539 + ], + [ + "▁maestro", + -14.202224731445312 + ], + [ + "▁admissible", + -14.202247619628906 + ], + [ + "▁proletariat", + -14.202289581298828 + ], + [ + "▁vegetative", + -14.20229721069336 + ], + [ + "▁Sali", + -14.202301025390625 + ], + [ + "▁Denali", + -14.202337265014648 + ], + [ + "oles", + -14.20236587524414 + ], + [ + "▁Rowley", + -14.202366828918457 + ], + [ + "taro", + -14.20241641998291 + ], + [ + "▁Bats", + -14.202445983886719 + ], + [ + "▁Mili", + -14.202455520629883 + ], + [ + "iston", + -14.20246696472168 + ], + [ + "▁Seminars", + -14.20246696472168 + ], + [ + "UTE", + -14.202486038208008 + ], + [ + "▁Traction", + -14.202529907226562 + ], + [ + "▁chlorophyll", + -14.202549934387207 + ], + [ + "Leg", + -14.202585220336914 + ], + [ + "▁disa", + -14.20270824432373 + ], + [ + "▁Bellamy", + -14.202713966369629 + ], + [ + "▁fusing", + -14.202718734741211 + ], + [ + "extended", + -14.202744483947754 + ], + [ + "▁WSU", + -14.202760696411133 + ], + [ + "▁lagged", + -14.202794075012207 + ], + [ + "▁preexisting", + -14.202810287475586 + ], + [ + "witt", + -14.202823638916016 + ], + [ + "▁thorny", + -14.202836990356445 + ], + [ + "▁Beverley", + -14.202860832214355 + ], + [ + "▁bariatric", + -14.202869415283203 + ], + [ + "▁martyrdom", + -14.202921867370605 + ], + [ + "▁Miracles", + -14.203042030334473 + ], + [ + "▁OBE", + -14.2030668258667 + ], + [ + "bard", + -14.203081130981445 + ], + [ + "nnen", + -14.203144073486328 + ], + [ + "beds", + -14.20315933227539 + ], + [ + "与", + -14.203186988830566 + ], + [ + "▁NSE", + -14.203218460083008 + ], + [ + "▁cyanide", + -14.20323371887207 + ], + [ + "▁Gears", + -14.203269004821777 + ], + [ + "admi", + -14.203323364257812 + ], + [ + "1956", + -14.203370094299316 + ], + [ + "▁Rant", + -14.203385353088379 + ], + [ + "▁아", + -14.203391075134277 + ], + [ + "▁unicorns", + -14.203435897827148 + ], + [ + "▁Rembrandt", + -14.20344352722168 + ], + [ + "▁koi", + -14.203463554382324 + ], + [ + "▁Kampala", + -14.203598976135254 + ], + [ + "▁kw", + -14.203600883483887 + ], + [ + "Demand", + -14.203606605529785 + ], + [ + "▁Remarks", + -14.203634262084961 + ], + [ + "▁Haj", + -14.203709602355957 + ], + [ + "▁albumin", + -14.203774452209473 + ], + [ + "▁Martyn", + -14.203794479370117 + ], + [ + "▁Vim", + -14.203802108764648 + ], + [ + "▁Magazines", + -14.203866004943848 + ], + [ + "Casino", + -14.203873634338379 + ], + [ + "▁Sparkling", + -14.203938484191895 + ], + [ + "▁cliffhanger", + -14.203981399536133 + ], + [ + "ifiable", + -14.204042434692383 + ], + [ + "▁Steakhouse", + -14.204094886779785 + ], + [ + "▁Kaitlyn", + -14.204119682312012 + ], + [ + "economy", + -14.204134941101074 + ], + [ + "▁virginia", + -14.204178810119629 + ], + [ + "▁Salvatore", + -14.204183578491211 + ], + [ + "▁Atelier", + -14.204209327697754 + ], + [ + "▁rearview", + -14.204219818115234 + ], + [ + "▁LEA", + -14.204246520996094 + ], + [ + "▁equated", + -14.20428466796875 + ], + [ + "PRESS", + -14.204300880432129 + ], + [ + "αν", + -14.204302787780762 + ], + [ + "▁Tropic", + -14.20439624786377 + ], + [ + "▁Kmart", + -14.204401969909668 + ], + [ + "▁PAPER", + -14.204428672790527 + ], + [ + "▁Continuity", + -14.204429626464844 + ], + [ + "▁XYZ", + -14.204431533813477 + ], + [ + "mapping", + -14.204447746276855 + ], + [ + "ukan", + -14.204449653625488 + ], + [ + "▁pyr", + -14.204456329345703 + ], + [ + "▁protons", + -14.204483985900879 + ], + [ + "597", + -14.204484939575195 + ], + [ + "▁Poppins", + -14.204533576965332 + ], + [ + "▁Angelica", + -14.204534530639648 + ], + [ + "▁fanatical", + -14.204568862915039 + ], + [ + "Chain", + -14.204602241516113 + ], + [ + "▁informatics", + -14.204629898071289 + ], + [ + "▁scribble", + -14.204771041870117 + ], + [ + "▁Stronger", + -14.204787254333496 + ], + [ + "▁incrementally", + -14.204803466796875 + ], + [ + "▁Nj", + -14.204834938049316 + ], + [ + "coop", + -14.204849243164062 + ], + [ + "▁Interpol", + -14.204874038696289 + ], + [ + "▁COVER", + -14.2048921585083 + ], + [ + "igner", + -14.20489501953125 + ], + [ + "▁standardize", + -14.204943656921387 + ], + [ + "▁shrinks", + -14.20498275756836 + ], + [ + "▁368", + -14.20507526397705 + ], + [ + "▁Klingon", + -14.205154418945312 + ], + [ + "906", + -14.2052001953125 + ], + [ + "▁ranches", + -14.205230712890625 + ], + [ + "▁Merino", + -14.205244064331055 + ], + [ + "▁Cosplay", + -14.20525074005127 + ], + [ + "▁Vidya", + -14.205268859863281 + ], + [ + "ְ", + -14.20528507232666 + ], + [ + "pir", + -14.205286026000977 + ], + [ + "042", + -14.205289840698242 + ], + [ + "▁schoolgirl", + -14.205328941345215 + ], + [ + "▁topological", + -14.205331802368164 + ], + [ + "▁braced", + -14.2053861618042 + ], + [ + "▁hazelnut", + -14.20539379119873 + ], + [ + "socia", + -14.205547332763672 + ], + [ + "▁gridlock", + -14.205573081970215 + ], + [ + "▁microbiota", + -14.205586433410645 + ], + [ + "▁plz", + -14.205677032470703 + ], + [ + "▁Gara", + -14.205684661865234 + ], + [ + "▁Textiles", + -14.205689430236816 + ], + [ + "▁Polls", + -14.205731391906738 + ], + [ + "▁unanticipated", + -14.205769538879395 + ], + [ + "iving", + -14.205802917480469 + ], + [ + "▁interstitial", + -14.20582389831543 + ], + [ + "▁Jovi", + -14.205840110778809 + ], + [ + "▁Crib", + -14.205849647521973 + ], + [ + "▁Vocabulary", + -14.205851554870605 + ], + [ + "▁glutathione", + -14.205869674682617 + ], + [ + "▁Memoir", + -14.205897331237793 + ], + [ + "▁Liturgy", + -14.205924987792969 + ], + [ + "▁Inquisition", + -14.20595645904541 + ], + [ + "Steven", + -14.2059965133667 + ], + [ + "ın", + -14.206001281738281 + ], + [ + "▁Dhoni", + -14.206006050109863 + ], + [ + "▁Fisherman", + -14.206034660339355 + ], + [ + "▁Decline", + -14.206047058105469 + ], + [ + "▁Stefani", + -14.206063270568848 + ], + [ + "▁readout", + -14.206066131591797 + ], + [ + "▁1818", + -14.206070899963379 + ], + [ + "▁Crispy", + -14.206073760986328 + ], + [ + "▁newlyweds", + -14.206122398376465 + ], + [ + "▁normalcy", + -14.20617389678955 + ], + [ + "сс", + -14.206212997436523 + ], + [ + "zov", + -14.206215858459473 + ], + [ + "▁SOUND", + -14.206230163574219 + ], + [ + "▁oct", + -14.206233024597168 + ], + [ + "ases", + -14.20626449584961 + ], + [ + "▁sensibly", + -14.206287384033203 + ], + [ + "852", + -14.206356048583984 + ], + [ + "▁Eats", + -14.206369400024414 + ], + [ + "▁Ster", + -14.206377029418945 + ], + [ + "▁561", + -14.206393241882324 + ], + [ + "ά", + -14.206395149230957 + ], + [ + "▁Scarf", + -14.206522941589355 + ], + [ + "▁Dough", + -14.206534385681152 + ], + [ + "▁inroads", + -14.20654296875 + ], + [ + "▁characterizing", + -14.206595420837402 + ], + [ + "rese", + -14.206634521484375 + ], + [ + "▁goof", + -14.206649780273438 + ], + [ + "▁Salam", + -14.20671272277832 + ], + [ + "▁Argo", + -14.206727027893066 + ], + [ + "LEA", + -14.20677661895752 + ], + [ + "mort", + -14.206787109375 + ], + [ + "▁RPGs", + -14.206878662109375 + ], + [ + "▁glittery", + -14.20690631866455 + ], + [ + "▁lexapro", + -14.20690631866455 + ], + [ + "▁Dimensional", + -14.206957817077637 + ], + [ + "▁Prat", + -14.206985473632812 + ], + [ + "▁kitties", + -14.206988334655762 + ], + [ + "▁rivalries", + -14.206992149353027 + ], + [ + "graft", + -14.207009315490723 + ], + [ + "rí", + -14.207012176513672 + ], + [ + "Collection", + -14.207018852233887 + ], + [ + "views", + -14.207046508789062 + ], + [ + "ringer", + -14.207050323486328 + ], + [ + "▁90°", + -14.207066535949707 + ], + [ + "quisition", + -14.207106590270996 + ], + [ + "▁Kib", + -14.207122802734375 + ], + [ + "▁SVP", + -14.207145690917969 + ], + [ + "▁Wak", + -14.207193374633789 + ], + [ + "▁EMAIL", + -14.207222938537598 + ], + [ + "▁DiCaprio", + -14.207226753234863 + ], + [ + "▁faceted", + -14.207304000854492 + ], + [ + "▁mach", + -14.20736026763916 + ], + [ + "float", + -14.20743179321289 + ], + [ + "▁BRI", + -14.207481384277344 + ], + [ + "▁foolishness", + -14.207489013671875 + ], + [ + "▁recklessly", + -14.207497596740723 + ], + [ + "▁Littleton", + -14.207551956176758 + ], + [ + "▁Castel", + -14.207590103149414 + ], + [ + "busters", + -14.207645416259766 + ], + [ + "▁picker", + -14.20765495300293 + ], + [ + "▁murine", + -14.207715034484863 + ], + [ + "pression", + -14.207719802856445 + ], + [ + "פ", + -14.207722663879395 + ], + [ + "▁Parrish", + -14.207746505737305 + ], + [ + "▁walkable", + -14.207829475402832 + ], + [ + "VIC", + -14.207832336425781 + ], + [ + "▁forego", + -14.207839965820312 + ], + [ + "▁reposition", + -14.207843780517578 + ], + [ + "▁Predicted", + -14.20793628692627 + ], + [ + "Solar", + -14.20799446105957 + ], + [ + "crop", + -14.208050727844238 + ], + [ + "▁IDP", + -14.208218574523926 + ], + [ + "ultra", + -14.20822525024414 + ], + [ + "▁prefect", + -14.208298683166504 + ], + [ + "▁Edi", + -14.208320617675781 + ], + [ + "▁Substances", + -14.20839786529541 + ], + [ + "▁Spoke", + -14.208452224731445 + ], + [ + "▁millet", + -14.208473205566406 + ], + [ + "▁enhancer", + -14.208478927612305 + ], + [ + "▁Guilty", + -14.208516120910645 + ], + [ + "▁anise", + -14.208539009094238 + ], + [ + "▁mobilizing", + -14.208614349365234 + ], + [ + "▁Flexi", + -14.208632469177246 + ], + [ + "NBA", + -14.208642959594727 + ], + [ + "▁rearrangement", + -14.208649635314941 + ], + [ + "▁swans", + -14.208677291870117 + ], + [ + "▁parrots", + -14.20868968963623 + ], + [ + "Inc", + -14.208700180053711 + ], + [ + "▁dallas", + -14.208717346191406 + ], + [ + "▁Willoughby", + -14.208754539489746 + ], + [ + "▁Carrick", + -14.208782196044922 + ], + [ + "▁Wrinkle", + -14.20887565612793 + ], + [ + "▁Ado", + -14.208878517150879 + ], + [ + "▁Handcrafted", + -14.208880424499512 + ], + [ + "▁pré", + -14.208888053894043 + ], + [ + "ussie", + -14.2089204788208 + ], + [ + "▁Gentry", + -14.208944320678711 + ], + [ + "wallet", + -14.20895004272461 + ], + [ + "▁pepperoni", + -14.208967208862305 + ], + [ + "haha", + -14.208980560302734 + ], + [ + "▁franc", + -14.209002494812012 + ], + [ + "▁Nite", + -14.209063529968262 + ], + [ + "zah", + -14.209074974060059 + ], + [ + "▁meshes", + -14.209096908569336 + ], + [ + "▁scalloped", + -14.209100723266602 + ], + [ + "description", + -14.2091064453125 + ], + [ + "▁banish", + -14.209112167358398 + ], + [ + "ERN", + -14.209152221679688 + ], + [ + "▁Lawsuit", + -14.209168434143066 + ], + [ + "▁AMY", + -14.209237098693848 + ], + [ + "iggins", + -14.209317207336426 + ], + [ + "▁Mathis", + -14.209317207336426 + ], + [ + "hine", + -14.209362983703613 + ], + [ + "MORE", + -14.209366798400879 + ], + [ + "▁inwardly", + -14.209436416625977 + ], + [ + "▁DARK", + -14.209455490112305 + ], + [ + "coal", + -14.209466934204102 + ], + [ + "Des", + -14.209511756896973 + ], + [ + "▁IMG", + -14.209531784057617 + ], + [ + "▁enthralling", + -14.209532737731934 + ], + [ + "▁responder", + -14.209606170654297 + ], + [ + "▁diversifying", + -14.209663391113281 + ], + [ + "logue", + -14.209692001342773 + ], + [ + "▁Handles", + -14.209716796875 + ], + [ + "▁discography", + -14.209754943847656 + ], + [ + "▁tassel", + -14.209760665893555 + ], + [ + "857", + -14.209773063659668 + ], + [ + "agu", + -14.209800720214844 + ], + [ + "▁GAL", + -14.209836959838867 + ], + [ + "▁IBC", + -14.209847450256348 + ], + [ + "▁GoDaddy", + -14.2098970413208 + ], + [ + "▁Psych", + -14.209918975830078 + ], + [ + "▁welt", + -14.209956169128418 + ], + [ + "▁carcasses", + -14.210033416748047 + ], + [ + "▁oversize", + -14.210038185119629 + ], + [ + "▁Ofsted", + -14.2100830078125 + ], + [ + "▁Vibrant", + -14.210118293762207 + ], + [ + "means", + -14.210126876831055 + ], + [ + "▁Spinner", + -14.210173606872559 + ], + [ + "▁fronted", + -14.21020221710205 + ], + [ + "▁Robins", + -14.210205078125 + ], + [ + "COS", + -14.210212707519531 + ], + [ + "▁retort", + -14.210212707519531 + ], + [ + "図", + -14.2102632522583 + ], + [ + "▁Reactor", + -14.210280418395996 + ], + [ + "▁Civ", + -14.210291862487793 + ], + [ + "998", + -14.210293769836426 + ], + [ + "ogan", + -14.210321426391602 + ], + [ + "iable", + -14.210372924804688 + ], + [ + "▁מ", + -14.2103853225708 + ], + [ + "▁Relic", + -14.21039867401123 + ], + [ + "▁coll", + -14.210437774658203 + ], + [ + "iens", + -14.210441589355469 + ], + [ + "ought", + -14.21044635772705 + ], + [ + "items", + -14.210448265075684 + ], + [ + "▁Hutt", + -14.21044921875 + ], + [ + "rtz", + -14.210468292236328 + ], + [ + "▁CDR", + -14.210468292236328 + ], + [ + "▁draconian", + -14.210545539855957 + ], + [ + "▁BAG", + -14.210546493530273 + ], + [ + "wool", + -14.210590362548828 + ], + [ + "doctoral", + -14.210596084594727 + ], + [ + "▁Qual", + -14.21061897277832 + ], + [ + "▁Opposite", + -14.210628509521484 + ], + [ + "▁barb", + -14.2106294631958 + ], + [ + "▁Bashir", + -14.210681915283203 + ], + [ + "▁darkly", + -14.210691452026367 + ], + [ + "bod", + -14.210738182067871 + ], + [ + "▁sugarcane", + -14.210811614990234 + ], + [ + "▁BAN", + -14.210932731628418 + ], + [ + "▁quill", + -14.210935592651367 + ], + [ + "▁Amethyst", + -14.210945129394531 + ], + [ + "▁Fortuna", + -14.210990905761719 + ], + [ + "▁Pritchard", + -14.21101188659668 + ], + [ + "▁blunders", + -14.211068153381348 + ], + [ + "▁Cables", + -14.211091041564941 + ], + [ + "▁WON", + -14.211130142211914 + ], + [ + "▁mingling", + -14.21113395690918 + ], + [ + "▁thermostats", + -14.21117877960205 + ], + [ + "▁Beit", + -14.21119499206543 + ], + [ + "▁UTI", + -14.211256980895996 + ], + [ + "▁Anya", + -14.21127700805664 + ], + [ + "▁caviar", + -14.211286544799805 + ], + [ + "lister", + -14.211325645446777 + ], + [ + "▁desist", + -14.21132755279541 + ], + [ + "▁collapsible", + -14.211362838745117 + ], + [ + "▁combative", + -14.211369514465332 + ], + [ + "▁484", + -14.211377143859863 + ], + [ + "973", + -14.211402893066406 + ], + [ + "▁psychoactive", + -14.211437225341797 + ], + [ + "▁Oakville", + -14.211458206176758 + ], + [ + "▁1824", + -14.21151351928711 + ], + [ + "undi", + -14.211524963378906 + ], + [ + "▁syndromes", + -14.211551666259766 + ], + [ + "fraud", + -14.211621284484863 + ], + [ + "▁craziest", + -14.211634635925293 + ], + [ + "Hat", + -14.211686134338379 + ], + [ + "▁materialistic", + -14.211734771728516 + ], + [ + "fitted", + -14.211769104003906 + ], + [ + "▁Pending", + -14.211825370788574 + ], + [ + "▁Pitts", + -14.21182632446289 + ], + [ + "historic", + -14.211860656738281 + ], + [ + "▁Pacifica", + -14.211873054504395 + ], + [ + "▁boho", + -14.211898803710938 + ], + [ + "▁spearhead", + -14.211923599243164 + ], + [ + "▁premiership", + -14.21202278137207 + ], + [ + "▁Habib", + -14.212028503417969 + ], + [ + "PAT", + -14.212088584899902 + ], + [ + "071", + -14.212103843688965 + ], + [ + "usal", + -14.212115287780762 + ], + [ + "▁RIVER", + -14.212143898010254 + ], + [ + "▁Infect", + -14.212152481079102 + ], + [ + "▁Nasty", + -14.212193489074707 + ], + [ + "▁Vandal", + -14.212202072143555 + ], + [ + "▁TLD", + -14.212207794189453 + ], + [ + "▁kata", + -14.212230682373047 + ], + [ + "▁miRNA", + -14.212236404418945 + ], + [ + "▁stipulations", + -14.212265014648438 + ], + [ + "awn", + -14.212302207946777 + ], + [ + "▁ducked", + -14.212321281433105 + ], + [ + "▁harvests", + -14.212373733520508 + ], + [ + "▁Cartwright", + -14.212400436401367 + ], + [ + "▁halal", + -14.212403297424316 + ], + [ + "▁lifesaving", + -14.212427139282227 + ], + [ + "▁sunroom", + -14.21242904663086 + ], + [ + "▁392", + -14.212475776672363 + ], + [ + "▁Plaid", + -14.212508201599121 + ], + [ + "▁lurch", + -14.212514877319336 + ], + [ + "▁Lemonade", + -14.2125883102417 + ], + [ + "▁feasts", + -14.2125883102417 + ], + [ + "▁Regulator", + -14.212591171264648 + ], + [ + "928", + -14.212599754333496 + ], + [ + "▁baron", + -14.212632179260254 + ], + [ + "▁backer", + -14.212637901306152 + ], + [ + "Hunt", + -14.212650299072266 + ], + [ + "▁Rabi", + -14.21265983581543 + ], + [ + "▁Genevieve", + -14.212678909301758 + ], + [ + "Kid", + -14.212690353393555 + ], + [ + "▁Shit", + -14.212708473205566 + ], + [ + "Race", + -14.212712287902832 + ], + [ + "mou", + -14.212726593017578 + ], + [ + "929", + -14.212828636169434 + ], + [ + "already", + -14.212865829467773 + ], + [ + "ය", + -14.212942123413086 + ], + [ + "▁Gren", + -14.21296501159668 + ], + [ + "▁Practically", + -14.212977409362793 + ], + [ + "▁Clemente", + -14.213027954101562 + ], + [ + "▁reclaiming", + -14.213064193725586 + ], + [ + "referred", + -14.2130765914917 + ], + [ + "processed", + -14.213093757629395 + ], + [ + "▁Believing", + -14.213093757629395 + ], + [ + "Pilot", + -14.213102340698242 + ], + [ + "▁unpredictability", + -14.213134765625 + ], + [ + "▁DER", + -14.21314811706543 + ], + [ + "▁oxford", + -14.213149070739746 + ], + [ + "▁Cyn", + -14.213152885437012 + ], + [ + "▁slimy", + -14.213174819946289 + ], + [ + "▁Rides", + -14.213202476501465 + ], + [ + "▁Abubakar", + -14.21321964263916 + ], + [ + "▁knowledgable", + -14.213250160217285 + ], + [ + "ALT", + -14.21326732635498 + ], + [ + "▁Rousseau", + -14.213269233703613 + ], + [ + "▁hijacking", + -14.213276863098145 + ], + [ + "zman", + -14.213329315185547 + ], + [ + "▁offsetting", + -14.213347434997559 + ], + [ + "▁apostolic", + -14.213383674621582 + ], + [ + "▁excellently", + -14.213408470153809 + ], + [ + "▁melodrama", + -14.213412284851074 + ], + [ + "▁Banerjee", + -14.213438034057617 + ], + [ + "programmed", + -14.213513374328613 + ], + [ + "Muslims", + -14.21352767944336 + ], + [ + "▁Nair", + -14.213534355163574 + ], + [ + "hw", + -14.213536262512207 + ], + [ + "▁Aggressive", + -14.213563919067383 + ], + [ + "▁YAY", + -14.213632583618164 + ], + [ + "▁Transformer", + -14.213678359985352 + ], + [ + "▁deviant", + -14.213679313659668 + ], + [ + "754", + -14.21369457244873 + ], + [ + "▁Dire", + -14.213777542114258 + ], + [ + "minate", + -14.21385383605957 + ], + [ + "zuki", + -14.213858604431152 + ], + [ + "▁disinterested", + -14.213909149169922 + ], + [ + "▁Islington", + -14.213968276977539 + ], + [ + "▁TECHNOLOGY", + -14.214051246643066 + ], + [ + "bery", + -14.214096069335938 + ], + [ + "urge", + -14.214106559753418 + ], + [ + "cig", + -14.214144706726074 + ], + [ + "owing", + -14.21418285369873 + ], + [ + "▁slipper", + -14.214186668395996 + ], + [ + "997", + -14.214188575744629 + ], + [ + "▁Resonance", + -14.21420955657959 + ], + [ + "▁Marbella", + -14.214229583740234 + ], + [ + "jazz", + -14.214262008666992 + ], + [ + "▁carpenters", + -14.214317321777344 + ], + [ + "▁Amplifier", + -14.214361190795898 + ], + [ + "realDonaldTrump", + -14.21437931060791 + ], + [ + "ग", + -14.21438980102539 + ], + [ + "▁Remo", + -14.214444160461426 + ], + [ + "▁mediating", + -14.214471817016602 + ], + [ + "▁impeach", + -14.214483261108398 + ], + [ + "▁intractable", + -14.214508056640625 + ], + [ + "▁overdo", + -14.214509010314941 + ], + [ + "ikka", + -14.214536666870117 + ], + [ + "zewski", + -14.214539527893066 + ], + [ + "▁decompression", + -14.214632034301758 + ], + [ + "▁inordinate", + -14.214654922485352 + ], + [ + "▁fable", + -14.2146577835083 + ], + [ + "▁Holz", + -14.214720726013184 + ], + [ + "basically", + -14.214747428894043 + ], + [ + "▁malignancy", + -14.214795112609863 + ], + [ + "▁Girard", + -14.214852333068848 + ], + [ + "▁HOURS", + -14.214893341064453 + ], + [ + "▁denouncing", + -14.214919090270996 + ], + [ + "transport", + -14.214923858642578 + ], + [ + "▁panes", + -14.214934349060059 + ], + [ + "▁Illuminati", + -14.214949607849121 + ], + [ + "▁м", + -14.214981079101562 + ], + [ + "zw", + -14.214982032775879 + ], + [ + "▁majorly", + -14.215001106262207 + ], + [ + "▁multimillion", + -14.215031623840332 + ], + [ + "▁514", + -14.215036392211914 + ], + [ + "▁Veritas", + -14.215089797973633 + ], + [ + "diversity", + -14.215100288391113 + ], + [ + "framed", + -14.215110778808594 + ], + [ + "▁Enigma", + -14.215112686157227 + ], + [ + "▁Galen", + -14.215128898620605 + ], + [ + "▁sehr", + -14.215230941772461 + ], + [ + "▁LEGAL", + -14.21523666381836 + ], + [ + "▁Weis", + -14.215259552001953 + ], + [ + "▁convicts", + -14.215261459350586 + ], + [ + "▁deux", + -14.21529483795166 + ], + [ + "▁Tahiti", + -14.21530818939209 + ], + [ + "iddle", + -14.215326309204102 + ], + [ + "cius", + -14.215398788452148 + ], + [ + "▁Nader", + -14.215423583984375 + ], + [ + "▁monochromatic", + -14.215460777282715 + ], + [ + "zag", + -14.215496063232422 + ], + [ + "▁extraneous", + -14.215523719787598 + ], + [ + "▁tensor", + -14.215527534484863 + ], + [ + "▁commemorates", + -14.215560913085938 + ], + [ + "▁Peshawar", + -14.21556568145752 + ], + [ + "rava", + -14.215577125549316 + ], + [ + "▁england", + -14.215631484985352 + ], + [ + "▁supp", + -14.215696334838867 + ], + [ + "▁Adriana", + -14.215760231018066 + ], + [ + "▁flounder", + -14.215840339660645 + ], + [ + "▁rece", + -14.215846061706543 + ], + [ + "▁sequestration", + -14.21589469909668 + ], + [ + "monitoring", + -14.21590805053711 + ], + [ + "▁edibles", + -14.215914726257324 + ], + [ + "▁greenback", + -14.215997695922852 + ], + [ + "▁NPA", + -14.216017723083496 + ], + [ + "▁PNC", + -14.216021537780762 + ], + [ + "▁interrogated", + -14.216038703918457 + ], + [ + "▁Branded", + -14.216046333312988 + ], + [ + "▁JBL", + -14.216063499450684 + ], + [ + "▁Merely", + -14.216073036193848 + ], + [ + "▁Togo", + -14.21610164642334 + ], + [ + "▁Wahl", + -14.216137886047363 + ], + [ + "▁Bosco", + -14.216143608093262 + ], + [ + "▁crushes", + -14.216169357299805 + ], + [ + "▁Aquino", + -14.216185569763184 + ], + [ + "▁Paranormal", + -14.216198921203613 + ], + [ + "▁launchers", + -14.216245651245117 + ], + [ + "▁Lollipop", + -14.216273307800293 + ], + [ + "thumb", + -14.216349601745605 + ], + [ + "▁bitmap", + -14.21638011932373 + ], + [ + "Trac", + -14.216402053833008 + ], + [ + "▁Fairgrounds", + -14.216414451599121 + ], + [ + "▁rumbling", + -14.216526985168457 + ], + [ + "clay", + -14.21656322479248 + ], + [ + "▁Pedestrian", + -14.216564178466797 + ], + [ + "▁Bromley", + -14.216571807861328 + ], + [ + "lö", + -14.216591835021973 + ], + [ + "▁Woodbridge", + -14.216636657714844 + ], + [ + "mony", + -14.21668815612793 + ], + [ + "▁Gali", + -14.21673583984375 + ], + [ + "▁restaurateur", + -14.216747283935547 + ], + [ + "▁1828", + -14.216748237609863 + ], + [ + "Address", + -14.21675968170166 + ], + [ + "▁algo", + -14.216793060302734 + ], + [ + "▁optician", + -14.216825485229492 + ], + [ + "▁tremors", + -14.216829299926758 + ], + [ + "▁illustrators", + -14.21683120727539 + ], + [ + "▁Kub", + -14.216846466064453 + ], + [ + "▁apologetic", + -14.216864585876465 + ], + [ + "urate", + -14.21688175201416 + ], + [ + "▁Neve", + -14.216887474060059 + ], + [ + "▁Chromium", + -14.216909408569336 + ], + [ + "▁Newsom", + -14.216912269592285 + ], + [ + "▁Combs", + -14.216997146606445 + ], + [ + "rida", + -14.21701717376709 + ], + [ + "▁voracious", + -14.217024803161621 + ], + [ + "▁Oke", + -14.217085838317871 + ], + [ + "imbo", + -14.217090606689453 + ], + [ + "▁summation", + -14.217100143432617 + ], + [ + "▁permeate", + -14.217217445373535 + ], + [ + "enes", + -14.217225074768066 + ], + [ + "▁pil", + -14.217318534851074 + ], + [ + "▁Integrate", + -14.217329978942871 + ], + [ + "▁WAIT", + -14.217382431030273 + ], + [ + "▁XPS", + -14.217390060424805 + ], + [ + "▁Konstantin", + -14.217430114746094 + ], + [ + "▁Alastair", + -14.217443466186523 + ], + [ + "render", + -14.21755313873291 + ], + [ + "coloring", + -14.217554092407227 + ], + [ + "argument", + -14.217565536499023 + ], + [ + "▁Brodie", + -14.217571258544922 + ], + [ + "▁phospho", + -14.217582702636719 + ], + [ + "▁MCT", + -14.217586517333984 + ], + [ + "▁unfulfilled", + -14.217594146728516 + ], + [ + "▁Yuma", + -14.217605590820312 + ], + [ + "folder", + -14.217613220214844 + ], + [ + "▁gluing", + -14.217620849609375 + ], + [ + "▁Kilimanjaro", + -14.21762466430664 + ], + [ + "▁strapping", + -14.21764850616455 + ], + [ + "▁ThinkPad", + -14.217653274536133 + ], + [ + "▁mov", + -14.217669486999512 + ], + [ + "▁Suppl", + -14.217720985412598 + ], + [ + "▁458", + -14.217726707458496 + ], + [ + "▁whoop", + -14.217732429504395 + ], + [ + "embre", + -14.217741012573242 + ], + [ + "▁interlock", + -14.217830657958984 + ], + [ + "MSC", + -14.217864036560059 + ], + [ + "▁supremacists", + -14.217883110046387 + ], + [ + "COCK", + -14.217974662780762 + ], + [ + "▁Jekyll", + -14.218021392822266 + ], + [ + "▁frayed", + -14.218055725097656 + ], + [ + "▁CHS", + -14.218072891235352 + ], + [ + "▁Grinch", + -14.218074798583984 + ], + [ + "▁TOWN", + -14.218077659606934 + ], + [ + "▁Inf", + -14.218110084533691 + ], + [ + "▁ros", + -14.218151092529297 + ], + [ + "▁disseminating", + -14.218180656433105 + ], + [ + "▁Cadbury", + -14.21830940246582 + ], + [ + "injury", + -14.218317985534668 + ], + [ + "▁sedimentary", + -14.218329429626465 + ], + [ + "rear", + -14.218332290649414 + ], + [ + "▁renderings", + -14.21833324432373 + ], + [ + "▁helix", + -14.218338012695312 + ], + [ + "▁Osborn", + -14.218403816223145 + ], + [ + "▁Sandusky", + -14.218436241149902 + ], + [ + "Pri", + -14.218480110168457 + ], + [ + "▁Knives", + -14.218488693237305 + ], + [ + "▁DOCUMENT", + -14.218522071838379 + ], + [ + "▁Hamlin", + -14.21853256225586 + ], + [ + "▁STYLE", + -14.21863079071045 + ], + [ + "RIP", + -14.218703269958496 + ], + [ + "▁Chroma", + -14.218714714050293 + ], + [ + "▁Flick", + -14.218741416931152 + ], + [ + "▁Nugent", + -14.218758583068848 + ], + [ + "▁Provisions", + -14.218771934509277 + ], + [ + "▁permeates", + -14.218791007995605 + ], + [ + "▁cranking", + -14.218812942504883 + ], + [ + "▁Classified", + -14.218857765197754 + ], + [ + "▁fillets", + -14.21889877319336 + ], + [ + "▁systolic", + -14.21890640258789 + ], + [ + "ை", + -14.21896743774414 + ], + [ + "Gra", + -14.219002723693848 + ], + [ + "▁siRNA", + -14.219009399414062 + ], + [ + "dzi", + -14.219027519226074 + ], + [ + "alam", + -14.21904468536377 + ], + [ + "▁maximized", + -14.219100952148438 + ], + [ + "▁Bana", + -14.219148635864258 + ], + [ + "▁KPI", + -14.21915340423584 + ], + [ + "▁edict", + -14.219165802001953 + ], + [ + "▁Jimmie", + -14.21918773651123 + ], + [ + "▁513", + -14.21921157836914 + ], + [ + "▁Warp", + -14.219244956970215 + ], + [ + "711", + -14.219267845153809 + ], + [ + "Ter", + -14.219279289245605 + ], + [ + "liver", + -14.219280242919922 + ], + [ + "▁KIDS", + -14.219354629516602 + ], + [ + "▁Scripts", + -14.219361305236816 + ], + [ + "▁sydney", + -14.21939754486084 + ], + [ + "Allah", + -14.219400405883789 + ], + [ + "▁Multicultural", + -14.219504356384277 + ], + [ + "▁Arbeit", + -14.219508171081543 + ], + [ + "▁sultan", + -14.219542503356934 + ], + [ + "▁colliding", + -14.219585418701172 + ], + [ + "deb", + -14.219670295715332 + ], + [ + "▁Lizzy", + -14.219676971435547 + ], + [ + "798", + -14.219694137573242 + ], + [ + "最", + -14.219719886779785 + ], + [ + "▁Activated", + -14.219752311706543 + ], + [ + "Virtual", + -14.219812393188477 + ], + [ + "▁raked", + -14.219887733459473 + ], + [ + "ezi", + -14.2199125289917 + ], + [ + "▁herald", + -14.219931602478027 + ], + [ + "▁Ceylon", + -14.220005989074707 + ], + [ + "特", + -14.220013618469238 + ], + [ + "▁Bü", + -14.220043182373047 + ], + [ + "▁Clon", + -14.220047950744629 + ], + [ + "Monitor", + -14.220052719116211 + ], + [ + "▁atlanta", + -14.220087051391602 + ], + [ + "▁glint", + -14.22011661529541 + ], + [ + "▁wharf", + -14.220126152038574 + ], + [ + "▁tam", + -14.22014331817627 + ], + [ + "▁terracotta", + -14.220170021057129 + ], + [ + "engineer", + -14.220173835754395 + ], + [ + "▁Guin", + -14.220297813415527 + ], + [ + "▁archetypal", + -14.220317840576172 + ], + [ + "▁Yeo", + -14.220344543457031 + ], + [ + "▁chillies", + -14.220383644104004 + ], + [ + "▁poodle", + -14.220391273498535 + ], + [ + "レ", + -14.220467567443848 + ], + [ + "▁Outlander", + -14.220542907714844 + ], + [ + "▁repost", + -14.220548629760742 + ], + [ + "olite", + -14.220551490783691 + ], + [ + "▁Pamper", + -14.220572471618652 + ], + [ + "▁Sikhs", + -14.220580101013184 + ], + [ + "▁DVI", + -14.220599174499512 + ], + [ + "▁oust", + -14.22066593170166 + ], + [ + "unta", + -14.22071647644043 + ], + [ + "▁Reykjavik", + -14.220752716064453 + ], + [ + "Carl", + -14.220779418945312 + ], + [ + "▁SEARCH", + -14.22081184387207 + ], + [ + "PSA", + -14.220854759216309 + ], + [ + "▁gratuitous", + -14.220874786376953 + ], + [ + "visa", + -14.220895767211914 + ], + [ + "▁anthropological", + -14.220913887023926 + ], + [ + "▁speculators", + -14.220945358276367 + ], + [ + "▁Foxx", + -14.221061706542969 + ], + [ + "▁Upgrades", + -14.221071243286133 + ], + [ + "▁maximising", + -14.221077919006348 + ], + [ + "continent", + -14.221084594726562 + ], + [ + "▁BOARD", + -14.221108436584473 + ], + [ + "▁FLAC", + -14.221110343933105 + ], + [ + "▁exemplar", + -14.221148490905762 + ], + [ + "▁Acacia", + -14.221153259277344 + ], + [ + "▁VBA", + -14.221220970153809 + ], + [ + "▁Musik", + -14.221277236938477 + ], + [ + "▁NPP", + -14.221343994140625 + ], + [ + "▁protester", + -14.221380233764648 + ], + [ + "▁sighs", + -14.22141170501709 + ], + [ + "▁Joo", + -14.221435546875 + ], + [ + "iru", + -14.221454620361328 + ], + [ + "771", + -14.221474647521973 + ], + [ + "▁denials", + -14.221474647521973 + ], + [ + "laus", + -14.221535682678223 + ], + [ + "得", + -14.221585273742676 + ], + [ + "▁MOVIE", + -14.221650123596191 + ], + [ + "▁preoperative", + -14.221662521362305 + ], + [ + "▁qualms", + -14.221684455871582 + ], + [ + "▁recede", + -14.221693992614746 + ], + [ + "Config", + -14.221726417541504 + ], + [ + "▁Trendy", + -14.221807479858398 + ], + [ + "▁disrupts", + -14.221866607666016 + ], + [ + "047", + -14.221891403198242 + ], + [ + "▁traversed", + -14.22193431854248 + ], + [ + "esses", + -14.221948623657227 + ], + [ + "▁Highlander", + -14.221989631652832 + ], + [ + "▁Approximate", + -14.22200870513916 + ], + [ + "OUGH", + -14.222013473510742 + ], + [ + "594", + -14.22203254699707 + ], + [ + "▁Wives", + -14.22204303741455 + ], + [ + "849", + -14.222094535827637 + ], + [ + "▁gendered", + -14.22213363647461 + ], + [ + "CSE", + -14.222151756286621 + ], + [ + "▁Gabon", + -14.22218132019043 + ], + [ + "▁iridescent", + -14.222196578979492 + ], + [ + "▁allegory", + -14.222203254699707 + ], + [ + "▁perfusion", + -14.222267150878906 + ], + [ + "1955", + -14.222280502319336 + ], + [ + "▁mau", + -14.222301483154297 + ], + [ + "▁Manganese", + -14.222343444824219 + ], + [ + "asca", + -14.22237491607666 + ], + [ + "▁puke", + -14.22237491607666 + ], + [ + "▁Sdn", + -14.22244930267334 + ], + [ + "▁mucosa", + -14.222514152526855 + ], + [ + "▁sundry", + -14.222527503967285 + ], + [ + "▁Mortimer", + -14.22253704071045 + ], + [ + "▁wah", + -14.222543716430664 + ], + [ + "▁smokey", + -14.222613334655762 + ], + [ + "▁Naperville", + -14.222620964050293 + ], + [ + "▁Waka", + -14.222633361816406 + ], + [ + "▁minuscule", + -14.22265625 + ], + [ + "856", + -14.222661972045898 + ], + [ + "victim", + -14.222665786743164 + ], + [ + "▁Antoni", + -14.222674369812012 + ], + [ + "681", + -14.222676277160645 + ], + [ + "▁616", + -14.222686767578125 + ], + [ + "hib", + -14.222691535949707 + ], + [ + "rocket", + -14.222759246826172 + ], + [ + "所", + -14.22276496887207 + ], + [ + "▁caterpillars", + -14.222782135009766 + ], + [ + "▁Implants", + -14.222807884216309 + ], + [ + "▁cannabinoid", + -14.222819328308105 + ], + [ + "▁Yeti", + -14.222835540771484 + ], + [ + "audit", + -14.222838401794434 + ], + [ + "▁emigration", + -14.222930908203125 + ], + [ + "▁yardage", + -14.222969055175781 + ], + [ + "▁SIT", + -14.223026275634766 + ], + [ + "基", + -14.223128318786621 + ], + [ + "▁financier", + -14.223156929016113 + ], + [ + "▁Edwardian", + -14.223225593566895 + ], + [ + "▁docker", + -14.223318099975586 + ], + [ + "LEN", + -14.223374366760254 + ], + [ + "▁Shorter", + -14.223377227783203 + ], + [ + "▁DOG", + -14.22337818145752 + ], + [ + "giant", + -14.223390579223633 + ], + [ + "▁aftertaste", + -14.223414421081543 + ], + [ + "879", + -14.223416328430176 + ], + [ + "▁screeching", + -14.223418235778809 + ], + [ + "invest", + -14.223475456237793 + ], + [ + "▁Jeter", + -14.223546028137207 + ], + [ + "▁Sculpt", + -14.223546981811523 + ], + [ + "▁Vik", + -14.223560333251953 + ], + [ + "chairs", + -14.223613739013672 + ], + [ + "▁Dukes", + -14.223670959472656 + ], + [ + "▁Lug", + -14.223672866821289 + ], + [ + "iform", + -14.223676681518555 + ], + [ + "kman", + -14.223725318908691 + ], + [ + "▁Kovac", + -14.223730087280273 + ], + [ + "▁Tragedy", + -14.223735809326172 + ], + [ + "▁Relating", + -14.223775863647461 + ], + [ + "▁podiatrist", + -14.223785400390625 + ], + [ + "▁Nya", + -14.223847389221191 + ], + [ + "blow", + -14.223885536193848 + ], + [ + "axe", + -14.22389030456543 + ], + [ + "▁henna", + -14.223946571350098 + ], + [ + "▁1829", + -14.22398853302002 + ], + [ + "nker", + -14.223997116088867 + ], + [ + "▁aggrieved", + -14.22401237487793 + ], + [ + "hout", + -14.224076271057129 + ], + [ + "yield", + -14.224079132080078 + ], + [ + "bali", + -14.224085807800293 + ], + [ + "827", + -14.224151611328125 + ], + [ + "▁undetectable", + -14.22417163848877 + ], + [ + "bium", + -14.224196434020996 + ], + [ + "▁jalapeno", + -14.224202156066895 + ], + [ + "▁vials", + -14.224236488342285 + ], + [ + "▁Renowned", + -14.224242210388184 + ], + [ + "▁Cic", + -14.22424602508545 + ], + [ + "▁Patriotic", + -14.224251747131348 + ], + [ + "volve", + -14.224254608154297 + ], + [ + "▁Serves", + -14.224259376525879 + ], + [ + "token", + -14.224315643310547 + ], + [ + "rë", + -14.224347114562988 + ], + [ + "▁textural", + -14.224359512329102 + ], + [ + "784", + -14.224422454833984 + ], + [ + "bao", + -14.22446060180664 + ], + [ + "▁floorplan", + -14.224505424499512 + ], + [ + "▁accomodate", + -14.224527359008789 + ], + [ + "Philip", + -14.224541664123535 + ], + [ + "▁Raf", + -14.224549293518066 + ], + [ + "▁705", + -14.22472095489502 + ], + [ + "▁EFI", + -14.224763870239258 + ], + [ + "▁cred", + -14.224787712097168 + ], + [ + "BASE", + -14.224815368652344 + ], + [ + "▁wristband", + -14.22484302520752 + ], + [ + "Tap", + -14.22485065460205 + ], + [ + "▁MPA", + -14.22486400604248 + ], + [ + "▁cursory", + -14.224884986877441 + ], + [ + "specified", + -14.224935531616211 + ], + [ + "▁brainer", + -14.224970817565918 + ], + [ + "ception", + -14.22497844696045 + ], + [ + "▁€4", + -14.225028991699219 + ], + [ + "▁agus", + -14.225056648254395 + ], + [ + "▁grunge", + -14.225090980529785 + ], + [ + "▁Pb", + -14.225091934204102 + ], + [ + "▁Plugins", + -14.225129127502441 + ], + [ + "▁Trafficking", + -14.225172996520996 + ], + [ + "aug", + -14.225232124328613 + ], + [ + "▁Optimum", + -14.225232124328613 + ], + [ + "throughput", + -14.22525691986084 + ], + [ + "▁drizzled", + -14.225272178649902 + ], + [ + "▁pinching", + -14.225293159484863 + ], + [ + "chir", + -14.225353240966797 + ], + [ + "Submit", + -14.225422859191895 + ], + [ + "monkey", + -14.225433349609375 + ], + [ + "▁Wylie", + -14.22546100616455 + ], + [ + "optimal", + -14.225492477416992 + ], + [ + "▁Maas", + -14.225502967834473 + ], + [ + "▁Iberian", + -14.22551441192627 + ], + [ + "062", + -14.225545883178711 + ], + [ + "aholic", + -14.22555160522461 + ], + [ + "▁lifesaver", + -14.225560188293457 + ], + [ + "▁Barnet", + -14.225637435913086 + ], + [ + "▁Correa", + -14.22571849822998 + ], + [ + "▁cetera", + -14.225770950317383 + ], + [ + "▁wry", + -14.225796699523926 + ], + [ + "zion", + -14.225862503051758 + ], + [ + "▁marginalised", + -14.225875854492188 + ], + [ + "▁interfaith", + -14.225920677185059 + ], + [ + "▁SDF", + -14.22594928741455 + ], + [ + "ना", + -14.225973129272461 + ], + [ + "▁Tic", + -14.225981712341309 + ], + [ + "▁NetEnt", + -14.225993156433105 + ], + [ + "▁Cordova", + -14.226032257080078 + ], + [ + "▁Lukaku", + -14.226041793823242 + ], + [ + "▁etiology", + -14.226068496704102 + ], + [ + "▁underfoot", + -14.226119995117188 + ], + [ + "Arc", + -14.226136207580566 + ], + [ + "▁snicker", + -14.226165771484375 + ], + [ + "XA", + -14.226179122924805 + ], + [ + "▁Fastest", + -14.226210594177246 + ], + [ + "IME", + -14.226249694824219 + ], + [ + "▁Marisa", + -14.226272583007812 + ], + [ + "blin", + -14.226312637329102 + ], + [ + "▁Primal", + -14.226335525512695 + ], + [ + "metrics", + -14.226343154907227 + ], + [ + "▁Clari", + -14.226367950439453 + ], + [ + "▁COA", + -14.226452827453613 + ], + [ + "Graph", + -14.22645378112793 + ], + [ + "▁torsion", + -14.226557731628418 + ], + [ + "935", + -14.226569175720215 + ], + [ + "▁EVE", + -14.226574897766113 + ], + [ + "▁gentrification", + -14.226600646972656 + ], + [ + "▁Crows", + -14.226601600646973 + ], + [ + "▁slaw", + -14.226606369018555 + ], + [ + "▁coo", + -14.226675033569336 + ], + [ + "▁Gamers", + -14.226691246032715 + ], + [ + "▁penis", + -14.22677230834961 + ], + [ + "▁Rugged", + -14.22677993774414 + ], + [ + "▁Developments", + -14.22678279876709 + ], + [ + "tien", + -14.226837158203125 + ], + [ + "personally", + -14.226847648620605 + ], + [ + "▁Excerpt", + -14.226884841918945 + ], + [ + "▁neuromuscular", + -14.226890563964844 + ], + [ + "Stat", + -14.226901054382324 + ], + [ + "pone", + -14.226938247680664 + ], + [ + "mores", + -14.22694206237793 + ], + [ + "▁spotty", + -14.226943969726562 + ], + [ + "▁artfully", + -14.226988792419434 + ], + [ + "▁UPC", + -14.227022171020508 + ], + [ + "Fra", + -14.227049827575684 + ], + [ + "setup", + -14.22716236114502 + ], + [ + "mortem", + -14.227208137512207 + ], + [ + "tired", + -14.22726821899414 + ], + [ + "▁Revit", + -14.22726821899414 + ], + [ + "▁Bette", + -14.227363586425781 + ], + [ + "▁paddy", + -14.227365493774414 + ], + [ + "▁consonant", + -14.227373123168945 + ], + [ + "▁Wheelchair", + -14.227375030517578 + ], + [ + "▁receding", + -14.227420806884766 + ], + [ + "▁Janssen", + -14.22744083404541 + ], + [ + "▁Dez", + -14.22745132446289 + ], + [ + "▁tickled", + -14.227482795715332 + ], + [ + "▁flanks", + -14.227520942687988 + ], + [ + "▁MMORPG", + -14.227548599243164 + ], + [ + "987", + -14.227567672729492 + ], + [ + "▁reformers", + -14.227611541748047 + ], + [ + "▁Nieto", + -14.227612495422363 + ], + [ + "591", + -14.227616310119629 + ], + [ + "Scotland", + -14.227644920349121 + ], + [ + "▁lys", + -14.227791786193848 + ], + [ + "▁bailing", + -14.227792739868164 + ], + [ + "mec", + -14.227884292602539 + ], + [ + "▁367", + -14.227901458740234 + ], + [ + "itel", + -14.227922439575195 + ], + [ + "▁TRAVEL", + -14.22800064086914 + ], + [ + "▁Palais", + -14.228010177612305 + ], + [ + "lifting", + -14.22803020477295 + ], + [ + "etra", + -14.22806167602539 + ], + [ + "fertil", + -14.228139877319336 + ], + [ + "melt", + -14.22815990447998 + ], + [ + "▁Manda", + -14.228164672851562 + ], + [ + "692", + -14.22817611694336 + ], + [ + "▁amiss", + -14.228178024291992 + ], + [ + "▁Simplify", + -14.228185653686523 + ], + [ + "▁stutter", + -14.228255271911621 + ], + [ + "▁있", + -14.228282928466797 + ], + [ + "▁Grout", + -14.22829532623291 + ], + [ + "▁369", + -14.228330612182617 + ], + [ + "hydrate", + -14.228338241577148 + ], + [ + "▁lethargic", + -14.228422164916992 + ], + [ + "▁verifies", + -14.228422164916992 + ], + [ + "frost", + -14.228476524353027 + ], + [ + "Shell", + -14.228490829467773 + ], + [ + "▁oozing", + -14.228511810302734 + ], + [ + "▁1775", + -14.228532791137695 + ], + [ + "▁Metabolism", + -14.228545188903809 + ], + [ + "linguistic", + -14.228572845458984 + ], + [ + "▁Microphone", + -14.228633880615234 + ], + [ + "measured", + -14.228686332702637 + ], + [ + "hills", + -14.228711128234863 + ], + [ + "ц", + -14.228750228881836 + ], + [ + "▁gullible", + -14.228758811950684 + ], + [ + "▁fairways", + -14.228883743286133 + ], + [ + "▁veal", + -14.228898048400879 + ], + [ + "▁alfalfa", + -14.228946685791016 + ], + [ + "Range", + -14.228985786437988 + ], + [ + "▁crevices", + -14.229045867919922 + ], + [ + "▁wintry", + -14.229060173034668 + ], + [ + "Marketing", + -14.229071617126465 + ], + [ + "▁Zeke", + -14.229107856750488 + ], + [ + "▁Iggy", + -14.229113578796387 + ], + [ + "gsm", + -14.229121208190918 + ], + [ + "▁RADIO", + -14.2291259765625 + ], + [ + "▁McGovern", + -14.229199409484863 + ], + [ + "▁AVA", + -14.229202270507812 + ], + [ + "bolic", + -14.229205131530762 + ], + [ + "▁clerics", + -14.229207992553711 + ], + [ + "×1", + -14.229236602783203 + ], + [ + "▁Yearbook", + -14.229236602783203 + ], + [ + "▁liquefied", + -14.229286193847656 + ], + [ + "▁Deus", + -14.229312896728516 + ], + [ + "▁agribusiness", + -14.229349136352539 + ], + [ + "Alpha", + -14.229368209838867 + ], + [ + "OON", + -14.229371070861816 + ], + [ + "▁Travers", + -14.2294282913208 + ], + [ + "▁curcumin", + -14.229483604431152 + ], + [ + "▁candied", + -14.229512214660645 + ], + [ + "estimate", + -14.22952938079834 + ], + [ + "▁Leak", + -14.229538917541504 + ], + [ + "▁realtime", + -14.229580879211426 + ], + [ + "▁Witches", + -14.22958755493164 + ], + [ + "rival", + -14.229726791381836 + ], + [ + "drag", + -14.229801177978516 + ], + [ + "▁cocky", + -14.229803085327148 + ], + [ + "▁subplot", + -14.229876518249512 + ], + [ + "▁Striking", + -14.229960441589355 + ], + [ + "▁prickly", + -14.230032920837402 + ], + [ + "▁retroactive", + -14.230072021484375 + ], + [ + "palm", + -14.230121612548828 + ], + [ + "▁connotation", + -14.230124473571777 + ], + [ + "▁Maximize", + -14.230143547058105 + ], + [ + "▁SMP", + -14.230175971984863 + ], + [ + "▁Stonehenge", + -14.230180740356445 + ], + [ + "Kin", + -14.230232238769531 + ], + [ + "sheng", + -14.230260848999023 + ], + [ + "▁א", + -14.230265617370605 + ], + [ + "▁virginity", + -14.230268478393555 + ], + [ + "▁Stapleton", + -14.230279922485352 + ], + [ + "▁incurable", + -14.230291366577148 + ], + [ + "▁Logical", + -14.230298042297363 + ], + [ + "▁Wr", + -14.230325698852539 + ], + [ + "troph", + -14.23038387298584 + ], + [ + "▁gory", + -14.230413436889648 + ], + [ + "▁Crimean", + -14.23042106628418 + ], + [ + "▁Abbotsford", + -14.23055362701416 + ], + [ + "▁outgrown", + -14.230598449707031 + ], + [ + "Desk", + -14.230603218078613 + ], + [ + "▁cybercrime", + -14.230605125427246 + ], + [ + "▁stinks", + -14.230608940124512 + ], + [ + "▁Brethren", + -14.230627059936523 + ], + [ + "maz", + -14.230664253234863 + ], + [ + "rdi", + -14.230666160583496 + ], + [ + "▁radiates", + -14.230698585510254 + ], + [ + "▁MongoDB", + -14.230708122253418 + ], + [ + "▁rummage", + -14.230791091918945 + ], + [ + "▁Nervous", + -14.2308931350708 + ], + [ + "MEA", + -14.230895042419434 + ], + [ + "▁Boomer", + -14.230925559997559 + ], + [ + "fp", + -14.230976104736328 + ], + [ + "▁IMPACT", + -14.230986595153809 + ], + [ + "readers", + -14.231019973754883 + ], + [ + "▁invokes", + -14.231058120727539 + ], + [ + "▁Hob", + -14.231069564819336 + ], + [ + "▁facie", + -14.231072425842285 + ], + [ + "▁WTA", + -14.231098175048828 + ], + [ + "▁faking", + -14.231112480163574 + ], + [ + "▁Fisk", + -14.23111343383789 + ], + [ + "▁tw", + -14.23112678527832 + ], + [ + "▁Skel", + -14.231138229370117 + ], + [ + "▁reinvented", + -14.231149673461914 + ], + [ + "▁RBS", + -14.231151580810547 + ], + [ + "▁consul", + -14.231157302856445 + ], + [ + "う", + -14.231167793273926 + ], + [ + "otherwise", + -14.231246948242188 + ], + [ + "popping", + -14.231247901916504 + ], + [ + "pins", + -14.231252670288086 + ], + [ + "atto", + -14.231273651123047 + ], + [ + "▁carcinogenic", + -14.231305122375488 + ], + [ + "▁Headboard", + -14.231307029724121 + ], + [ + "▁vSphere", + -14.231327056884766 + ], + [ + "▁ESS", + -14.231389045715332 + ], + [ + "041", + -14.23140811920166 + ], + [ + "▁Brakes", + -14.231416702270508 + ], + [ + "▁sai", + -14.231422424316406 + ], + [ + "▁QUE", + -14.23143196105957 + ], + [ + "dates", + -14.231447219848633 + ], + [ + "▁Striped", + -14.23146915435791 + ], + [ + "▁Sardinia", + -14.231492042541504 + ], + [ + "▁Pandit", + -14.231536865234375 + ], + [ + "▁irreverent", + -14.231558799743652 + ], + [ + "▁Crafting", + -14.231584548950195 + ], + [ + "▁JAN", + -14.231598854064941 + ], + [ + "▁gallant", + -14.23163890838623 + ], + [ + "▁Startups", + -14.231654167175293 + ], + [ + "▁FJ", + -14.231691360473633 + ], + [ + "▁Statutory", + -14.23173713684082 + ], + [ + "▁harshest", + -14.231847763061523 + ], + [ + "▁caterers", + -14.231887817382812 + ], + [ + "▁fluently", + -14.231902122497559 + ], + [ + "▁flapping", + -14.231915473937988 + ], + [ + "▁Tsi", + -14.232003211975098 + ], + [ + "coder", + -14.232095718383789 + ], + [ + "erd", + -14.232120513916016 + ], + [ + "atar", + -14.23215103149414 + ], + [ + "▁Cleanup", + -14.23215389251709 + ], + [ + "▁pedi", + -14.232176780700684 + ], + [ + "spoke", + -14.232186317443848 + ], + [ + "▁dorms", + -14.23222827911377 + ], + [ + "▁primate", + -14.232233047485352 + ], + [ + "Display", + -14.232247352600098 + ], + [ + "▁¥", + -14.232247352600098 + ], + [ + "oque", + -14.232314109802246 + ], + [ + "▁superimposed", + -14.232361793518066 + ], + [ + "ozi", + -14.232368469238281 + ], + [ + "prints", + -14.23243522644043 + ], + [ + "Meta", + -14.232444763183594 + ], + [ + "▁conjures", + -14.232479095458984 + ], + [ + "▁vigour", + -14.232580184936523 + ], + [ + "pleasing", + -14.232587814331055 + ], + [ + "▁Juneau", + -14.232604026794434 + ], + [ + "raf", + -14.232617378234863 + ], + [ + "▁rivets", + -14.232706069946289 + ], + [ + "▁Tint", + -14.232710838317871 + ], + [ + "▁Watertown", + -14.232730865478516 + ], + [ + "natured", + -14.232735633850098 + ], + [ + "▁FORCE", + -14.232818603515625 + ], + [ + "▁jul", + -14.2328462600708 + ], + [ + "▁CCG", + -14.2328519821167 + ], + [ + "▁RNC", + -14.232908248901367 + ], + [ + "▁Apron", + -14.232916831970215 + ], + [ + "▁laxative", + -14.232942581176758 + ], + [ + "▁Scales", + -14.232965469360352 + ], + [ + "▁suppresses", + -14.233007431030273 + ], + [ + "▁Cushions", + -14.233016967773438 + ], + [ + "▁thingy", + -14.233030319213867 + ], + [ + "failure", + -14.233052253723145 + ], + [ + "883", + -14.233072280883789 + ], + [ + "▁shined", + -14.2330961227417 + ], + [ + "▁joinery", + -14.233097076416016 + ], + [ + "cene", + -14.233132362365723 + ], + [ + "▁lengthwise", + -14.233160018920898 + ], + [ + "▁क", + -14.233165740966797 + ], + [ + "akin", + -14.233184814453125 + ], + [ + "▁extraordinaire", + -14.233199119567871 + ], + [ + "hypo", + -14.233205795288086 + ], + [ + "▁Ellsworth", + -14.233236312866211 + ], + [ + "versus", + -14.233237266540527 + ], + [ + "rgen", + -14.233285903930664 + ], + [ + "▁Prophecy", + -14.233316421508789 + ], + [ + "QT", + -14.233331680297852 + ], + [ + "▁Cui", + -14.233339309692383 + ], + [ + "867", + -14.233362197875977 + ], + [ + "naga", + -14.2333984375 + ], + [ + "▁Launching", + -14.233464241027832 + ], + [ + "cena", + -14.233551979064941 + ], + [ + "wha", + -14.233580589294434 + ], + [ + "▁Runtime", + -14.233607292175293 + ], + [ + "▁Drainage", + -14.233613014221191 + ], + [ + "▁Glenwood", + -14.23362922668457 + ], + [ + "stim", + -14.23364543914795 + ], + [ + "▁Dagger", + -14.233651161193848 + ], + [ + "abri", + -14.23365592956543 + ], + [ + "▁Kenyatta", + -14.233678817749023 + ], + [ + "qué", + -14.233704566955566 + ], + [ + "▁Torino", + -14.233759880065918 + ], + [ + "▁snarky", + -14.233804702758789 + ], + [ + "cki", + -14.233833312988281 + ], + [ + "▁Affected", + -14.233835220336914 + ], + [ + "▁priv", + -14.233841896057129 + ], + [ + "▁VEGF", + -14.233858108520508 + ], + [ + "myth", + -14.233929634094238 + ], + [ + "▁separatists", + -14.233935356140137 + ], + [ + "PLA", + -14.233962059020996 + ], + [ + "▁Lyman", + -14.233983039855957 + ], + [ + "heating", + -14.23404598236084 + ], + [ + "▁Wien", + -14.234061241149902 + ], + [ + "▁Wiener", + -14.234065055847168 + ], + [ + "▁equi", + -14.234115600585938 + ], + [ + "ANO", + -14.234128952026367 + ], + [ + "STE", + -14.234134674072266 + ], + [ + "DEX", + -14.234170913696289 + ], + [ + "▁dissuade", + -14.234258651733398 + ], + [ + "▁proofread", + -14.234264373779297 + ], + [ + "▁oscillation", + -14.234265327453613 + ], + [ + "▁Tutors", + -14.23428726196289 + ], + [ + "▁immediacy", + -14.23429012298584 + ], + [ + "▁532", + -14.23430061340332 + ], + [ + "979", + -14.234306335449219 + ], + [ + "players", + -14.234313011169434 + ], + [ + "accredited", + -14.234331130981445 + ], + [ + "rbi", + -14.234352111816406 + ], + [ + "▁bioinformatics", + -14.234375 + ], + [ + "▁Judea", + -14.23440933227539 + ], + [ + "▁resumption", + -14.234413146972656 + ], + [ + "▁haute", + -14.234455108642578 + ], + [ + "▁characterisation", + -14.234467506408691 + ], + [ + "▁Mindanao", + -14.234481811523438 + ], + [ + "▁Thal", + -14.234541893005371 + ], + [ + "▁Kras", + -14.234590530395508 + ], + [ + "azole", + -14.234603881835938 + ], + [ + "▁Philanthropy", + -14.234609603881836 + ], + [ + "▁applet", + -14.234621047973633 + ], + [ + "▁PAX", + -14.234637260437012 + ], + [ + "▁trifle", + -14.234651565551758 + ], + [ + "▁ROSE", + -14.234661102294922 + ], + [ + "elis", + -14.234664916992188 + ], + [ + "relief", + -14.234724044799805 + ], + [ + "▁orb", + -14.234747886657715 + ], + [ + "CSF", + -14.234774589538574 + ], + [ + "▁Suresh", + -14.234792709350586 + ], + [ + "Snap", + -14.234798431396484 + ], + [ + "▁invariant", + -14.234817504882812 + ], + [ + "▁eth", + -14.234871864318848 + ], + [ + "▁bac", + -14.23487663269043 + ], + [ + "▁unspeakable", + -14.234910011291504 + ], + [ + "▁Tidal", + -14.234912872314453 + ], + [ + "▁presentable", + -14.234929084777832 + ], + [ + "isle", + -14.234951972961426 + ], + [ + "sigh", + -14.23497200012207 + ], + [ + "▁Ligue", + -14.235021591186523 + ], + [ + "▁dabble", + -14.235075950622559 + ], + [ + "▁deposed", + -14.235105514526367 + ], + [ + "arranged", + -14.235114097595215 + ], + [ + "Woman", + -14.235138893127441 + ], + [ + "▁workpiece", + -14.23514175415039 + ], + [ + "▁Instrumental", + -14.235151290893555 + ], + [ + "▁Momo", + -14.235151290893555 + ], + [ + "elf", + -14.235177993774414 + ], + [ + "▁beater", + -14.235200881958008 + ], + [ + "▁Sla", + -14.235206604003906 + ], + [ + "▁artichoke", + -14.235207557678223 + ], + [ + "▁ablaze", + -14.235285758972168 + ], + [ + "▁Shab", + -14.235286712646484 + ], + [ + "▁wr", + -14.235344886779785 + ], + [ + "▁succinctly", + -14.235374450683594 + ], + [ + "cau", + -14.235437393188477 + ], + [ + "▁merc", + -14.235450744628906 + ], + [ + "▁VCR", + -14.235451698303223 + ], + [ + "▁Loyal", + -14.23546314239502 + ], + [ + "ие", + -14.23547649383545 + ], + [ + "▁awash", + -14.235479354858398 + ], + [ + "▁Drawn", + -14.23556900024414 + ], + [ + "▁Supermarket", + -14.235661506652832 + ], + [ + "▁Charlene", + -14.235679626464844 + ], + [ + "NOTE", + -14.235694885253906 + ], + [ + "▁microcosm", + -14.235701560974121 + ], + [ + "expensive", + -14.235709190368652 + ], + [ + "yards", + -14.235739707946777 + ], + [ + "▁Rocha", + -14.23576545715332 + ], + [ + "stocked", + -14.235766410827637 + ], + [ + "▁hilariously", + -14.235793113708496 + ], + [ + "Staff", + -14.235856056213379 + ], + [ + "▁analogies", + -14.235869407653809 + ], + [ + "038", + -14.23588752746582 + ], + [ + "▁yank", + -14.235888481140137 + ], + [ + "kola", + -14.235987663269043 + ], + [ + "▁majorities", + -14.23605728149414 + ], + [ + "▁Erich", + -14.236083984375 + ], + [ + "▁Ake", + -14.23611068725586 + ], + [ + "▁indestructible", + -14.236176490783691 + ], + [ + "namely", + -14.236209869384766 + ], + [ + "▁Sada", + -14.236212730407715 + ], + [ + "1953", + -14.236236572265625 + ], + [ + "▁Sonja", + -14.236257553100586 + ], + [ + "theory", + -14.236283302307129 + ], + [ + "▁Breakdown", + -14.236349105834961 + ], + [ + "▁summery", + -14.236367225646973 + ], + [ + "coating", + -14.236421585083008 + ], + [ + "▁CFPB", + -14.23643684387207 + ], + [ + "▁pow", + -14.23644733428955 + ], + [ + "▁inanimate", + -14.23646068572998 + ], + [ + "029", + -14.236479759216309 + ], + [ + "sting", + -14.236493110656738 + ], + [ + "BOY", + -14.236503601074219 + ], + [ + "▁Nk", + -14.236591339111328 + ], + [ + "▁sickly", + -14.236674308776855 + ], + [ + "▁YOUNG", + -14.2366943359375 + ], + [ + "cooking", + -14.236729621887207 + ], + [ + "Bomb", + -14.236741065979004 + ], + [ + "▁Arian", + -14.236759185791016 + ], + [ + "watched", + -14.236802101135254 + ], + [ + "▁capstone", + -14.236802101135254 + ], + [ + "▁431", + -14.236818313598633 + ], + [ + "▁Remi", + -14.23686408996582 + ], + [ + "POP", + -14.236869812011719 + ], + [ + "▁Algarve", + -14.236873626708984 + ], + [ + "▁Atta", + -14.236894607543945 + ], + [ + "▁Hickman", + -14.23690128326416 + ], + [ + "▁coolness", + -14.236930847167969 + ], + [ + "▁multiplex", + -14.236930847167969 + ], + [ + "▁£13", + -14.236934661865234 + ], + [ + "▁Permian", + -14.23694133758545 + ], + [ + "▁Stahl", + -14.236957550048828 + ], + [ + "▁exfoliating", + -14.236990928649902 + ], + [ + "▁wheeler", + -14.237003326416016 + ], + [ + "▁hickory", + -14.237010955810547 + ], + [ + "▁InDesign", + -14.237058639526367 + ], + [ + "▁Deanna", + -14.237062454223633 + ], + [ + "▁Badgers", + -14.237068176269531 + ], + [ + "▁Stochastic", + -14.237096786499023 + ], + [ + "CQ", + -14.237283706665039 + ], + [ + "▁komp", + -14.237309455871582 + ], + [ + "ах", + -14.237322807312012 + ], + [ + "▁Stuffed", + -14.237322807312012 + ], + [ + "▁Gleason", + -14.237339973449707 + ], + [ + "▁Britannica", + -14.237345695495605 + ], + [ + "▁forsake", + -14.237363815307617 + ], + [ + "▁Practicing", + -14.237445831298828 + ], + [ + "▁Baseline", + -14.237452507019043 + ], + [ + "ны", + -14.237481117248535 + ], + [ + "gama", + -14.237516403198242 + ], + [ + "▁trojan", + -14.237543106079102 + ], + [ + "▁precepts", + -14.237548828125 + ], + [ + "▁recesses", + -14.237617492675781 + ], + [ + "Trip", + -14.237643241882324 + ], + [ + "▁Thurston", + -14.237675666809082 + ], + [ + "zol", + -14.237709999084473 + ], + [ + "▁nailing", + -14.237712860107422 + ], + [ + "▁Ephraim", + -14.237730979919434 + ], + [ + "▁beleaguered", + -14.237730979919434 + ], + [ + "▁USING", + -14.237743377685547 + ], + [ + "▁SoCal", + -14.237747192382812 + ], + [ + "▁Kast", + -14.237762451171875 + ], + [ + "▁Nao", + -14.237771034240723 + ], + [ + "▁Tes", + -14.237809181213379 + ], + [ + "▁Cracker", + -14.23788833618164 + ], + [ + "▁Clipper", + -14.237907409667969 + ], + [ + "OME", + -14.23791790008545 + ], + [ + "handler", + -14.23794174194336 + ], + [ + "▁Sleepy", + -14.237951278686523 + ], + [ + "▁Alford", + -14.237971305847168 + ], + [ + "▁GIFs", + -14.237975120544434 + ], + [ + "lins", + -14.238020896911621 + ], + [ + "▁Abstracts", + -14.23802661895752 + ], + [ + "▁Briar", + -14.238035202026367 + ], + [ + "▁Blazer", + -14.238046646118164 + ], + [ + "▁remarried", + -14.238086700439453 + ], + [ + "▁deacon", + -14.23809814453125 + ], + [ + "qt", + -14.238103866577148 + ], + [ + "▁minefield", + -14.238117218017578 + ], + [ + "mpl", + -14.238119125366211 + ], + [ + "▁frontend", + -14.238177299499512 + ], + [ + "▁Rajiv", + -14.238180160522461 + ], + [ + "obe", + -14.23824405670166 + ], + [ + "▁Chomsky", + -14.238253593444824 + ], + [ + "▁orifice", + -14.238263130187988 + ], + [ + "▁xanax", + -14.238290786743164 + ], + [ + "▁scrubber", + -14.238310813903809 + ], + [ + "▁GIRL", + -14.2383451461792 + ], + [ + "▁Zil", + -14.238389015197754 + ], + [ + "▁opposites", + -14.238415718078613 + ], + [ + "▁Complexity", + -14.238432884216309 + ], + [ + "▁TELL", + -14.23853874206543 + ], + [ + "hlen", + -14.238550186157227 + ], + [ + "alus", + -14.238617897033691 + ], + [ + "▁Ohm", + -14.238626480102539 + ], + [ + "▁squatting", + -14.238667488098145 + ], + [ + "▁collie", + -14.23867130279541 + ], + [ + "▁nodules", + -14.238702774047852 + ], + [ + "▁Denial", + -14.238704681396484 + ], + [ + "▁subclass", + -14.2387056350708 + ], + [ + "dL", + -14.238716125488281 + ], + [ + "vital", + -14.238748550415039 + ], + [ + "▁aural", + -14.238836288452148 + ], + [ + "▁Dupont", + -14.238855361938477 + ], + [ + "▁pretzel", + -14.23898696899414 + ], + [ + "▁د", + -14.238992691040039 + ], + [ + "▁Eq", + -14.239048957824707 + ], + [ + "▁Loads", + -14.2390718460083 + ], + [ + "▁Vanuatu", + -14.23908805847168 + ], + [ + "▁mashup", + -14.23908805847168 + ], + [ + "▁Reigns", + -14.239092826843262 + ], + [ + "leh", + -14.239094734191895 + ], + [ + "packs", + -14.239177703857422 + ], + [ + "796", + -14.239222526550293 + ], + [ + "▁wurde", + -14.239269256591797 + ], + [ + "▁frenzied", + -14.239274978637695 + ], + [ + "▁postulate", + -14.239294052124023 + ], + [ + "▁Bn", + -14.239295959472656 + ], + [ + "▁SoundCloud", + -14.239315032958984 + ], + [ + "▁mocha", + -14.239361763000488 + ], + [ + "▁690", + -14.23936939239502 + ], + [ + "▁Brevard", + -14.239380836486816 + ], + [ + "▁Hitting", + -14.239447593688965 + ], + [ + "sleeved", + -14.239483833312988 + ], + [ + "ffel", + -14.239497184753418 + ], + [ + "▁Oppenheimer", + -14.239527702331543 + ], + [ + "▁syphilis", + -14.239542961120605 + ], + [ + "ndez", + -14.239544868469238 + ], + [ + "ATI", + -14.239545822143555 + ], + [ + "▁Iconic", + -14.239564895629883 + ], + [ + "designs", + -14.239574432373047 + ], + [ + "tization", + -14.239593505859375 + ], + [ + "▁windmill", + -14.239620208740234 + ], + [ + "▁Steamboat", + -14.23971176147461 + ], + [ + "▁Unbelievable", + -14.239799499511719 + ], + [ + "emptive", + -14.239890098571777 + ], + [ + "вЂ", + -14.239901542663574 + ], + [ + "▁Whey", + -14.240055084228516 + ], + [ + "revolution", + -14.24016284942627 + ], + [ + "▁Bild", + -14.240189552307129 + ], + [ + "▁sloped", + -14.240190505981445 + ], + [ + "Million", + -14.240242004394531 + ], + [ + "zadeh", + -14.240296363830566 + ], + [ + "▁pagoda", + -14.240297317504883 + ], + [ + "▁trafficked", + -14.240338325500488 + ], + [ + "Charlie", + -14.24034595489502 + ], + [ + "▁Tani", + -14.240360260009766 + ], + [ + "▁Dix", + -14.240391731262207 + ], + [ + "▁PEP", + -14.240394592285156 + ], + [ + "toma", + -14.240411758422852 + ], + [ + "▁telescopic", + -14.240425109863281 + ], + [ + "▁JOY", + -14.240447044372559 + ], + [ + "▁foreman", + -14.24046802520752 + ], + [ + "▁awnings", + -14.24047565460205 + ], + [ + "▁hyperbolic", + -14.24047565460205 + ], + [ + "▁Naf", + -14.240484237670898 + ], + [ + "Jersey", + -14.240507125854492 + ], + [ + "▁syndication", + -14.240517616271973 + ], + [ + "▁enchant", + -14.240522384643555 + ], + [ + "Terms", + -14.240579605102539 + ], + [ + "▁PADI", + -14.240579605102539 + ], + [ + "▁Meso", + -14.24060344696045 + ], + [ + "VIA", + -14.240623474121094 + ], + [ + "▁recuperate", + -14.240653991699219 + ], + [ + "▁Hacks", + -14.240683555603027 + ], + [ + "▁mightily", + -14.240708351135254 + ], + [ + "pronged", + -14.24073314666748 + ], + [ + "▁progenitor", + -14.240736961364746 + ], + [ + "▁hurriedly", + -14.24074649810791 + ], + [ + "▁jerked", + -14.240767478942871 + ], + [ + "▁childlike", + -14.24077033996582 + ], + [ + "▁crass", + -14.24079704284668 + ], + [ + "▁nr", + -14.24083137512207 + ], + [ + "rle", + -14.24085807800293 + ], + [ + "▁ESD", + -14.240874290466309 + ], + [ + "▁torturing", + -14.24093246459961 + ], + [ + "▁Johnnie", + -14.240981101989746 + ], + [ + "▁Squa", + -14.241002082824707 + ], + [ + "▁Chelmsford", + -14.241009712219238 + ], + [ + "▁Exporting", + -14.241010665893555 + ], + [ + "vertical", + -14.24101734161377 + ], + [ + "NEL", + -14.241127967834473 + ], + [ + "Essay", + -14.241140365600586 + ], + [ + "▁Sack", + -14.2411527633667 + ], + [ + "▁roamed", + -14.241158485412598 + ], + [ + "▁EMF", + -14.24116039276123 + ], + [ + "Pra", + -14.241204261779785 + ], + [ + "nion", + -14.241225242614746 + ], + [ + "▁cheerleading", + -14.241227149963379 + ], + [ + "tunes", + -14.24126148223877 + ], + [ + "▁cra", + -14.241262435913086 + ], + [ + "▁म", + -14.24128532409668 + ], + [ + "rzy", + -14.241292953491211 + ], + [ + "▁1803", + -14.24130630493164 + ], + [ + "Rise", + -14.241323471069336 + ], + [ + "▁Biel", + -14.24138069152832 + ], + [ + "▁puns", + -14.241389274597168 + ], + [ + "aby", + -14.241393089294434 + ], + [ + "▁SILVER", + -14.241422653198242 + ], + [ + "slash", + -14.241486549377441 + ], + [ + "ি", + -14.241633415222168 + ], + [ + "▁CCM", + -14.241640090942383 + ], + [ + "▁Maran", + -14.241692543029785 + ], + [ + "▁NCS", + -14.241718292236328 + ], + [ + "▁OSS", + -14.2417631149292 + ], + [ + "▁Thar", + -14.241772651672363 + ], + [ + "▁vez", + -14.241772651672363 + ], + [ + "▁curating", + -14.241786003112793 + ], + [ + "▁pique", + -14.241805076599121 + ], + [ + "▁Crockett", + -14.241817474365234 + ], + [ + "▁Lian", + -14.241825103759766 + ], + [ + "▁Alamos", + -14.241847038269043 + ], + [ + "▁Haul", + -14.241847038269043 + ], + [ + "eler", + -14.241849899291992 + ], + [ + "▁Quarterback", + -14.241880416870117 + ], + [ + "▁Evaluating", + -14.241950988769531 + ], + [ + "▁casings", + -14.24195384979248 + ], + [ + "yb", + -14.241994857788086 + ], + [ + "▁Committed", + -14.241995811462402 + ], + [ + "recovery", + -14.242047309875488 + ], + [ + "Again", + -14.242059707641602 + ], + [ + "▁bootleg", + -14.242064476013184 + ], + [ + "polo", + -14.242091178894043 + ], + [ + "▁Vein", + -14.242104530334473 + ], + [ + "qvist", + -14.242109298706055 + ], + [ + "NAR", + -14.242146492004395 + ], + [ + "▁Layla", + -14.242233276367188 + ], + [ + "▁PSL", + -14.24223518371582 + ], + [ + "▁quipped", + -14.242236137390137 + ], + [ + "Ron", + -14.242239952087402 + ], + [ + "▁orchestrate", + -14.242260932922363 + ], + [ + "▁Torn", + -14.242265701293945 + ], + [ + "▁urinate", + -14.242295265197754 + ], + [ + "▁GSK", + -14.242298126220703 + ], + [ + "▁kelp", + -14.242321968078613 + ], + [ + "간", + -14.242329597473145 + ], + [ + "Stack", + -14.24242115020752 + ], + [ + "Development", + -14.242462158203125 + ], + [ + "modo", + -14.24247932434082 + ], + [ + "▁Canning", + -14.242494583129883 + ], + [ + "▁Sift", + -14.242504119873047 + ], + [ + "▁Stillwater", + -14.242546081542969 + ], + [ + "▁irreparable", + -14.242639541625977 + ], + [ + "IZE", + -14.242652893066406 + ], + [ + "원", + -14.242654800415039 + ], + [ + "▁Boyce", + -14.24266529083252 + ], + [ + "▁offload", + -14.242670059204102 + ], + [ + "▁Educate", + -14.242724418640137 + ], + [ + "▁retraction", + -14.24273681640625 + ], + [ + "▁prodigious", + -14.242753028869629 + ], + [ + "▁lewd", + -14.242786407470703 + ], + [ + "▁deformity", + -14.242798805236816 + ], + [ + "988", + -14.242835998535156 + ], + [ + "venue", + -14.242862701416016 + ], + [ + "mberg", + -14.242901802062988 + ], + [ + "▁Bookcase", + -14.242904663085938 + ], + [ + "▁Creature", + -14.24290657043457 + ], + [ + "▁canines", + -14.24290657043457 + ], + [ + "908", + -14.242929458618164 + ], + [ + "▁ENG", + -14.242950439453125 + ], + [ + "SCI", + -14.243023872375488 + ], + [ + "ต", + -14.243025779724121 + ], + [ + "▁Clar", + -14.24304485321045 + ], + [ + "▁aff", + -14.243060111999512 + ], + [ + "▁seedling", + -14.243084907531738 + ], + [ + "▁mechanistic", + -14.243154525756836 + ], + [ + "▁stackable", + -14.2431640625 + ], + [ + "▁Expressions", + -14.243244171142578 + ], + [ + "▁Kuo", + -14.243268966674805 + ], + [ + "▁Howdy", + -14.243271827697754 + ], + [ + "πο", + -14.24328327178955 + ], + [ + "▁Woodworking", + -14.243318557739258 + ], + [ + "对", + -14.2433500289917 + ], + [ + "▁Bonner", + -14.243364334106445 + ], + [ + "jë", + -14.243393898010254 + ], + [ + "▁Engl", + -14.243450164794922 + ], + [ + "▁belligerent", + -14.243491172790527 + ], + [ + "▁Ceramics", + -14.243508338928223 + ], + [ + "▁restructured", + -14.243544578552246 + ], + [ + "▁spritz", + -14.24355697631836 + ], + [ + "▁Tej", + -14.243619918823242 + ], + [ + "INFO", + -14.243639945983887 + ], + [ + "bake", + -14.24365520477295 + ], + [ + "▁panicking", + -14.2437105178833 + ], + [ + "▁manipulator", + -14.24372386932373 + ], + [ + "712", + -14.243754386901855 + ], + [ + "▁sari", + -14.243783950805664 + ], + [ + "▁sacraments", + -14.243817329406738 + ], + [ + "▁Cavendish", + -14.24382209777832 + ], + [ + "▁Brushed", + -14.243866920471191 + ], + [ + "831", + -14.243871688842773 + ], + [ + "▁Influencer", + -14.243876457214355 + ], + [ + "ifica", + -14.243895530700684 + ], + [ + "VV", + -14.243979454040527 + ], + [ + "angu", + -14.244028091430664 + ], + [ + "▁bayonet", + -14.244041442871094 + ], + [ + "Dutch", + -14.244046211242676 + ], + [ + "▁Tundra", + -14.24406623840332 + ], + [ + "▁intakes", + -14.244128227233887 + ], + [ + "▁Sele", + -14.244154930114746 + ], + [ + "▁Hain", + -14.244169235229492 + ], + [ + "▁Saffron", + -14.244215965270996 + ], + [ + "▁taint", + -14.244218826293945 + ], + [ + "▁Westerners", + -14.244242668151855 + ], + [ + "Д", + -14.244257926940918 + ], + [ + "▁variances", + -14.24427318572998 + ], + [ + "▁SDL", + -14.24437427520752 + ], + [ + "▁infestations", + -14.24437427520752 + ], + [ + "▁CBSE", + -14.244403839111328 + ], + [ + "▁criminality", + -14.244429588317871 + ], + [ + "▁confrontations", + -14.244461059570312 + ], + [ + "▁remade", + -14.244538307189941 + ], + [ + "▁González", + -14.244550704956055 + ], + [ + "▁caddy", + -14.24455738067627 + ], + [ + "stats", + -14.24457836151123 + ], + [ + "zze", + -14.244595527648926 + ], + [ + "▁Inge", + -14.244595527648926 + ], + [ + "▁Graphite", + -14.244608879089355 + ], + [ + "▁speck", + -14.244653701782227 + ], + [ + "▁Avenger", + -14.244668960571289 + ], + [ + "▁magnetism", + -14.244694709777832 + ], + [ + "▁histological", + -14.244701385498047 + ], + [ + "▁tinting", + -14.244712829589844 + ], + [ + "▁confesses", + -14.244729995727539 + ], + [ + "▁flatbed", + -14.244766235351562 + ], + [ + "▁Kenyon", + -14.244770050048828 + ], + [ + "▁typographical", + -14.244834899902344 + ], + [ + "▁Advertise", + -14.244852066040039 + ], + [ + "▁Davao", + -14.244855880737305 + ], + [ + "▁peso", + -14.244857788085938 + ], + [ + "▁getaways", + -14.244903564453125 + ], + [ + "▁Shou", + -14.244904518127441 + ], + [ + "▁Bachelorette", + -14.244912147521973 + ], + [ + "▁neurotransmitters", + -14.244935989379883 + ], + [ + "▁Shao", + -14.244955062866211 + ], + [ + "▁Quinta", + -14.2449951171875 + ], + [ + "spekt", + -14.24505615234375 + ], + [ + "▁natively", + -14.245072364807129 + ], + [ + "▁resurface", + -14.245072364807129 + ], + [ + "▁chorizo", + -14.245079040527344 + ], + [ + "iglia", + -14.245100975036621 + ], + [ + "▁liaise", + -14.245102882385254 + ], + [ + "▁hauler", + -14.245138168334961 + ], + [ + "▁snorkelling", + -14.245148658752441 + ], + [ + "▁addicting", + -14.245182037353516 + ], + [ + "Spin", + -14.245230674743652 + ], + [ + "▁LOCK", + -14.245270729064941 + ], + [ + "▁browning", + -14.245271682739258 + ], + [ + "▁Rondo", + -14.245293617248535 + ], + [ + "▁priori", + -14.245304107666016 + ], + [ + "▁Zum", + -14.245321273803711 + ], + [ + "954", + -14.245388984680176 + ], + [ + "▁Balboa", + -14.24539852142334 + ], + [ + "▁Geographical", + -14.245403289794922 + ], + [ + "▁Familiar", + -14.245443344116211 + ], + [ + "▁googling", + -14.245447158813477 + ], + [ + "assist", + -14.245452880859375 + ], + [ + "▁debunk", + -14.245458602905273 + ], + [ + "▁Loon", + -14.245524406433105 + ], + [ + "842", + -14.245538711547852 + ], + [ + "▁Ong", + -14.245543479919434 + ], + [ + "▁Cloudy", + -14.245561599731445 + ], + [ + "▁redacted", + -14.24563217163086 + ], + [ + "▁Blumenthal", + -14.245640754699707 + ], + [ + "▁confrontational", + -14.245648384094238 + ], + [ + "▁Updating", + -14.245654106140137 + ], + [ + "▁MacKenzie", + -14.245696067810059 + ], + [ + "▁Klim", + -14.24571418762207 + ], + [ + "escape", + -14.245719909667969 + ], + [ + "▁Positions", + -14.24572467803955 + ], + [ + "AGA", + -14.245763778686523 + ], + [ + "▁Toggle", + -14.245807647705078 + ], + [ + "pence", + -14.245820999145508 + ], + [ + "761", + -14.245833396911621 + ], + [ + "▁Toolbox", + -14.245843887329102 + ], + [ + "ccia", + -14.245862007141113 + ], + [ + "▁bevel", + -14.245869636535645 + ], + [ + "holz", + -14.245882987976074 + ], + [ + "▁sconce", + -14.245906829833984 + ], + [ + "▁Loops", + -14.245936393737793 + ], + [ + "▁Promised", + -14.246011734008789 + ], + [ + "▁Satanic", + -14.246018409729004 + ], + [ + "▁Meteorological", + -14.246095657348633 + ], + [ + "▁nativity", + -14.246103286743164 + ], + [ + "▁Sprout", + -14.246109962463379 + ], + [ + "826", + -14.246142387390137 + ], + [ + "Ford", + -14.246171951293945 + ], + [ + "▁pundit", + -14.246177673339844 + ], + [ + "▁urination", + -14.24621295928955 + ], + [ + "nike", + -14.2462158203125 + ], + [ + "unc", + -14.246227264404297 + ], + [ + "▁Medicinal", + -14.24622917175293 + ], + [ + "▁Dignity", + -14.246288299560547 + ], + [ + "▁conclusively", + -14.246299743652344 + ], + [ + "▁excretion", + -14.246304512023926 + ], + [ + "▁spewing", + -14.246338844299316 + ], + [ + "▁BTU", + -14.246402740478516 + ], + [ + "▁Kaba", + -14.246408462524414 + ], + [ + "▁incarnations", + -14.246420860290527 + ], + [ + "▁projectiles", + -14.246453285217285 + ], + [ + "▁428", + -14.24657154083252 + ], + [ + "▁Bahá", + -14.246580123901367 + ], + [ + "▁Imprint", + -14.246623992919922 + ], + [ + "▁Answered", + -14.24665355682373 + ], + [ + "▁shriek", + -14.24665641784668 + ], + [ + "▁forbidding", + -14.246664047241211 + ], + [ + "fibril", + -14.246684074401855 + ], + [ + "▁fumbled", + -14.24669075012207 + ], + [ + "▁Amo", + -14.246698379516602 + ], + [ + "▁swims", + -14.246698379516602 + ], + [ + "▁eradicating", + -14.246731758117676 + ], + [ + "▁Akt", + -14.246734619140625 + ], + [ + "▁rollback", + -14.246767044067383 + ], + [ + "▁Botany", + -14.246805191040039 + ], + [ + "▁injectors", + -14.246834754943848 + ], + [ + "▁Oxy", + -14.246841430664062 + ], + [ + "zet", + -14.246895790100098 + ], + [ + "oski", + -14.246980667114258 + ], + [ + "▁dupe", + -14.247010231018066 + ], + [ + "fitness", + -14.247017860412598 + ], + [ + "▁paparazzi", + -14.247020721435547 + ], + [ + "▁Hotspot", + -14.247035026550293 + ], + [ + "▁Kera", + -14.247085571289062 + ], + [ + "czy", + -14.24711799621582 + ], + [ + "▁refueling", + -14.247130393981934 + ], + [ + "▁recursive", + -14.2471342086792 + ], + [ + "▁Expressed", + -14.247137069702148 + ], + [ + "reck", + -14.247152328491211 + ], + [ + "▁stipulation", + -14.247185707092285 + ], + [ + "erian", + -14.247186660766602 + ], + [ + "▁PQ", + -14.247213363647461 + ], + [ + "commission", + -14.247217178344727 + ], + [ + "▁Muay", + -14.247220039367676 + ], + [ + "▁Bellow", + -14.247244834899902 + ], + [ + "▁MCS", + -14.24727725982666 + ], + [ + "▁Rhein", + -14.247320175170898 + ], + [ + "▁gnome", + -14.247332572937012 + ], + [ + "▁surveyors", + -14.247343063354492 + ], + [ + "▁prodigy", + -14.247434616088867 + ], + [ + "▁absences", + -14.247447967529297 + ], + [ + "▁Deferred", + -14.247454643249512 + ], + [ + "▁photonic", + -14.24747085571289 + ], + [ + "▁Bancroft", + -14.247478485107422 + ], + [ + "▁techie", + -14.247551918029785 + ], + [ + "Din", + -14.247579574584961 + ], + [ + "altitude", + -14.247583389282227 + ], + [ + "▁panning", + -14.24759578704834 + ], + [ + "▁assimilated", + -14.2476167678833 + ], + [ + "illary", + -14.247644424438477 + ], + [ + "▁VISIT", + -14.247665405273438 + ], + [ + "▁delegations", + -14.247665405273438 + ], + [ + "▁Tricia", + -14.24771785736084 + ], + [ + "▁Kep", + -14.24775505065918 + ], + [ + "▁disrepair", + -14.247784614562988 + ], + [ + "▁Grammys", + -14.247795104980469 + ], + [ + "▁Selenium", + -14.247808456420898 + ], + [ + "▁gangsters", + -14.24782943725586 + ], + [ + "liz", + -14.247873306274414 + ], + [ + "▁unattainable", + -14.247875213623047 + ], + [ + "esen", + -14.2479248046875 + ], + [ + "bry", + -14.247970581054688 + ], + [ + "▁Souza", + -14.247974395751953 + ], + [ + "▁Smyrna", + -14.248044967651367 + ], + [ + "▁plowing", + -14.248130798339844 + ], + [ + "▁Dots", + -14.248177528381348 + ], + [ + "▁JACK", + -14.248194694519043 + ], + [ + "▁brevity", + -14.248247146606445 + ], + [ + "3500", + -14.248265266418457 + ], + [ + "▁facile", + -14.248300552368164 + ], + [ + "ruk", + -14.248330116271973 + ], + [ + "▁omnipresent", + -14.248408317565918 + ], + [ + "possible", + -14.248464584350586 + ], + [ + "▁coronation", + -14.248553276062012 + ], + [ + "▁BER", + -14.248592376708984 + ], + [ + "▁duh", + -14.248618125915527 + ], + [ + "▁Kiki", + -14.248648643493652 + ], + [ + "▁SPOT", + -14.248674392700195 + ], + [ + "ме", + -14.248701095581055 + ], + [ + "faq", + -14.248743057250977 + ], + [ + "▁floodplain", + -14.24875545501709 + ], + [ + "nomic", + -14.248764038085938 + ], + [ + "▁Siam", + -14.248767852783203 + ], + [ + "▁Troopers", + -14.24879264831543 + ], + [ + "▁conc", + -14.248806953430176 + ], + [ + "Ger", + -14.248908996582031 + ], + [ + "▁Johnstone", + -14.248918533325195 + ], + [ + "▁cleanses", + -14.24894905090332 + ], + [ + "united", + -14.249006271362305 + ], + [ + "▁endorphins", + -14.249028205871582 + ], + [ + "copter", + -14.249040603637695 + ], + [ + "▁accusers", + -14.249059677124023 + ], + [ + "passenger", + -14.249101638793945 + ], + [ + "▁eluded", + -14.249149322509766 + ], + [ + "flood", + -14.24916934967041 + ], + [ + "▁aquifer", + -14.24918270111084 + ], + [ + "▁Secular", + -14.249205589294434 + ], + [ + "▁Wm", + -14.249256134033203 + ], + [ + "▁Valentin", + -14.249259948730469 + ], + [ + "▁Workstation", + -14.249269485473633 + ], + [ + "communication", + -14.249300003051758 + ], + [ + "ooooo", + -14.249317169189453 + ], + [ + "eval", + -14.24931812286377 + ], + [ + "Wash", + -14.249327659606934 + ], + [ + "▁Fielding", + -14.24932861328125 + ], + [ + "YR", + -14.249358177185059 + ], + [ + "retired", + -14.249375343322754 + ], + [ + "▁Baroness", + -14.249390602111816 + ], + [ + "▁resentful", + -14.249409675598145 + ], + [ + "spira", + -14.24941635131836 + ], + [ + "▁silliness", + -14.249427795410156 + ], + [ + "▁1801", + -14.249431610107422 + ], + [ + "▁idolatry", + -14.249460220336914 + ], + [ + "steam", + -14.249462127685547 + ], + [ + "▁και", + -14.24963665008545 + ], + [ + "Conference", + -14.249645233154297 + ], + [ + "▁sei", + -14.249669075012207 + ], + [ + "▁clashing", + -14.249703407287598 + ], + [ + "▁Continuum", + -14.249731063842773 + ], + [ + "horst", + -14.249796867370605 + ], + [ + "shipping", + -14.24990177154541 + ], + [ + "parallel", + -14.249903678894043 + ], + [ + "▁Exemption", + -14.249908447265625 + ], + [ + "slightly", + -14.249938011169434 + ], + [ + "resort", + -14.249958992004395 + ], + [ + "nsa", + -14.250054359436035 + ], + [ + "▁bookkeeper", + -14.250067710876465 + ], + [ + "▁vowing", + -14.250070571899414 + ], + [ + "▁가", + -14.250129699707031 + ], + [ + "▁purr", + -14.250182151794434 + ], + [ + "▁punchy", + -14.250207901000977 + ], + [ + "▁Renal", + -14.250221252441406 + ], + [ + "▁overtones", + -14.250273704528809 + ], + [ + "▁scrappy", + -14.250280380249023 + ], + [ + "▁Fag", + -14.250285148620605 + ], + [ + "kc", + -14.250292778015137 + ], + [ + "▁Vitality", + -14.250296592712402 + ], + [ + "▁Secured", + -14.250313758850098 + ], + [ + "969", + -14.250319480895996 + ], + [ + "▁608", + -14.25037956237793 + ], + [ + "▁Zaha", + -14.250401496887207 + ], + [ + "interface", + -14.250438690185547 + ], + [ + "▁Utd", + -14.250438690185547 + ], + [ + "▁developmentally", + -14.250503540039062 + ], + [ + "▁bootcamp", + -14.250569343566895 + ], + [ + "▁Clegg", + -14.25060749053955 + ], + [ + "biological", + -14.250611305236816 + ], + [ + "▁Aide", + -14.25062084197998 + ], + [ + "fluent", + -14.25063419342041 + ], + [ + "▁Bumble", + -14.250650405883789 + ], + [ + "▁unveils", + -14.250662803649902 + ], + [ + "783", + -14.250703811645508 + ], + [ + "▁Sneak", + -14.250716209411621 + ], + [ + "▁SST", + -14.250748634338379 + ], + [ + "▁ZX", + -14.250770568847656 + ], + [ + "▁videographer", + -14.250778198242188 + ], + [ + "▁Apa", + -14.250814437866211 + ], + [ + "ritz", + -14.250872611999512 + ], + [ + "▁Fatty", + -14.250907897949219 + ], + [ + "▁stepmother", + -14.250931739807129 + ], + [ + "▁lui", + -14.250940322875977 + ], + [ + "▁Aggies", + -14.250995635986328 + ], + [ + "▁Swann", + -14.251018524169922 + ], + [ + "▁Natl", + -14.251020431518555 + ], + [ + "▁obsess", + -14.251066207885742 + ], + [ + "▁McKi", + -14.251076698303223 + ], + [ + "▁Looked", + -14.251081466674805 + ], + [ + "▁permeable", + -14.25108528137207 + ], + [ + "▁WTC", + -14.251091003417969 + ], + [ + "▁KAR", + -14.251141548156738 + ], + [ + "▁reorganized", + -14.251169204711914 + ], + [ + "▁ces", + -14.251172065734863 + ], + [ + "▁378", + -14.251174926757812 + ], + [ + "▁mani", + -14.251185417175293 + ], + [ + "ิ", + -14.251214981079102 + ], + [ + "enemy", + -14.251239776611328 + ], + [ + "▁Lagu", + -14.251241683959961 + ], + [ + "ña", + -14.25125789642334 + ], + [ + "▁flashlights", + -14.25125789642334 + ], + [ + "▁skylights", + -14.251274108886719 + ], + [ + "▁amphibious", + -14.251275062561035 + ], + [ + "▁fag", + -14.251314163208008 + ], + [ + "▁Turkmenistan", + -14.251333236694336 + ], + [ + "▁cada", + -14.251355171203613 + ], + [ + "▁870", + -14.251396179199219 + ], + [ + "▁polymerization", + -14.251432418823242 + ], + [ + "bikes", + -14.251449584960938 + ], + [ + "▁adoring", + -14.251511573791504 + ], + [ + "variant", + -14.251574516296387 + ], + [ + "▁durations", + -14.25160026550293 + ], + [ + "▁esthetic", + -14.251606941223145 + ], + [ + "▁COMMUNITY", + -14.251673698425293 + ], + [ + "▁Farage", + -14.251675605773926 + ], + [ + "▁Promenade", + -14.25168514251709 + ], + [ + "▁shader", + -14.251755714416504 + ], + [ + "▁Duplicate", + -14.251863479614258 + ], + [ + "▁devaluation", + -14.251866340637207 + ], + [ + "▁printmaking", + -14.25190258026123 + ], + [ + "▁lor", + -14.251973152160645 + ], + [ + "▁ambivalent", + -14.251981735229492 + ], + [ + "▁Palmetto", + -14.251983642578125 + ], + [ + "▁Freeland", + -14.251993179321289 + ], + [ + "▁citric", + -14.251999855041504 + ], + [ + "▁Aguilar", + -14.252034187316895 + ], + [ + "▁Bertha", + -14.252050399780273 + ], + [ + "nur", + -14.25206184387207 + ], + [ + "ROW", + -14.252063751220703 + ], + [ + "Leader", + -14.252120971679688 + ], + [ + "▁Tonya", + -14.252195358276367 + ], + [ + "▁curative", + -14.252201080322266 + ], + [ + "▁CFM", + -14.252205848693848 + ], + [ + "▁Kitts", + -14.252230644226074 + ], + [ + "▁GENE", + -14.25225830078125 + ], + [ + "044", + -14.252286911010742 + ], + [ + "▁snugly", + -14.252328872680664 + ], + [ + "▁Pochettino", + -14.25235366821289 + ], + [ + "▁Cocker", + -14.252355575561523 + ], + [ + "▁Seward", + -14.252378463745117 + ], + [ + "▁spew", + -14.252394676208496 + ], + [ + "▁Chhattisgarh", + -14.252410888671875 + ], + [ + "▁catalyze", + -14.252420425415039 + ], + [ + "▁meddle", + -14.25242805480957 + ], + [ + "▁yawn", + -14.252492904663086 + ], + [ + "▁Silo", + -14.252561569213867 + ], + [ + "▁navel", + -14.252561569213867 + ], + [ + "▁ironed", + -14.252564430236816 + ], + [ + "▁Baidu", + -14.252615928649902 + ], + [ + "▁Medici", + -14.252623558044434 + ], + [ + "▁Duval", + -14.252666473388672 + ], + [ + "▁ç", + -14.252727508544922 + ], + [ + "▁pennant", + -14.252758979797363 + ], + [ + "▁sony", + -14.25277042388916 + ], + [ + "▁Germain", + -14.25277328491211 + ], + [ + "▁Grapevine", + -14.252774238586426 + ], + [ + "▁crankshaft", + -14.25278091430664 + ], + [ + "markets", + -14.252787590026855 + ], + [ + "ন", + -14.252827644348145 + ], + [ + "▁Penney", + -14.252864837646484 + ], + [ + "▁Manuscript", + -14.252873420715332 + ], + [ + "▁beset", + -14.252903938293457 + ], + [ + "intellectual", + -14.252914428710938 + ], + [ + "wanted", + -14.252975463867188 + ], + [ + "MAL", + -14.253046035766602 + ], + [ + "▁weirdness", + -14.253046035766602 + ], + [ + "Delete", + -14.253089904785156 + ], + [ + "▁curving", + -14.253096580505371 + ], + [ + "▁HCM", + -14.253100395202637 + ], + [ + "▁Clarendon", + -14.25310230255127 + ], + [ + "▁DPP", + -14.253120422363281 + ], + [ + "Safety", + -14.25312614440918 + ], + [ + "▁Euclid", + -14.253153800964355 + ], + [ + "essel", + -14.253174781799316 + ], + [ + "Biz", + -14.253214836120605 + ], + [ + "▁sarcoma", + -14.25322437286377 + ], + [ + "新", + -14.253235816955566 + ], + [ + "▁Blom", + -14.253250122070312 + ], + [ + "▁Addresses", + -14.253252029418945 + ], + [ + "▁CIOs", + -14.253255844116211 + ], + [ + "▁creatinine", + -14.253257751464844 + ], + [ + "▁sunbathing", + -14.253263473510742 + ], + [ + "▁joyfully", + -14.253270149230957 + ], + [ + "▁subtleties", + -14.253334045410156 + ], + [ + "▁Coordinate", + -14.253398895263672 + ], + [ + "ROC", + -14.253440856933594 + ], + [ + "▁mars", + -14.253458976745605 + ], + [ + "▁Yamamoto", + -14.253461837768555 + ], + [ + "migration", + -14.253518104553223 + ], + [ + "eris", + -14.253547668457031 + ], + [ + "▁Haji", + -14.253552436828613 + ], + [ + "drinking", + -14.253589630126953 + ], + [ + "Stephen", + -14.2535982131958 + ], + [ + "▁Shave", + -14.253609657287598 + ], + [ + "additional", + -14.25365161895752 + ], + [ + "▁Nederland", + -14.253780364990234 + ], + [ + "lun", + -14.253786087036133 + ], + [ + "▁है", + -14.253813743591309 + ], + [ + "▁generalize", + -14.253820419311523 + ], + [ + "▁encodes", + -14.253862380981445 + ], + [ + "▁droplet", + -14.25386905670166 + ], + [ + "taw", + -14.253887176513672 + ], + [ + "▁forecasters", + -14.253976821899414 + ], + [ + "▁loudspeakers", + -14.25400161743164 + ], + [ + "▁destroyers", + -14.254037857055664 + ], + [ + "▁autonomic", + -14.254115104675293 + ], + [ + "▁secretariat", + -14.254124641418457 + ], + [ + "suffering", + -14.254138946533203 + ], + [ + "▁Latte", + -14.25419807434082 + ], + [ + "▁scriptural", + -14.254207611083984 + ], + [ + "pelling", + -14.254216194152832 + ], + [ + "▁birthright", + -14.254219055175781 + ], + [ + "▁Employing", + -14.254227638244629 + ], + [ + "cycl", + -14.25423526763916 + ], + [ + "▁0000", + -14.254256248474121 + ], + [ + "▁OPC", + -14.254311561584473 + ], + [ + "▁collab", + -14.254318237304688 + ], + [ + "▁Pennington", + -14.254319190979004 + ], + [ + "▁animator", + -14.254420280456543 + ], + [ + "Miami", + -14.254440307617188 + ], + [ + "Mah", + -14.2544527053833 + ], + [ + "ologi", + -14.254462242126465 + ], + [ + "▁Vivid", + -14.254502296447754 + ], + [ + "HSA", + -14.254507064819336 + ], + [ + "Rus", + -14.254517555236816 + ], + [ + "ما", + -14.25452995300293 + ], + [ + "966", + -14.254539489746094 + ], + [ + "▁Laird", + -14.254549980163574 + ], + [ + "eminent", + -14.254579544067383 + ], + [ + "▁tradi", + -14.254645347595215 + ], + [ + "▁757", + -14.254693031311035 + ], + [ + "▁DAM", + -14.254709243774414 + ], + [ + "▁odyssey", + -14.254717826843262 + ], + [ + "▁Sunlight", + -14.254727363586426 + ], + [ + "LIP", + -14.25473403930664 + ], + [ + "▁Tid", + -14.254758834838867 + ], + [ + "▁Belarusian", + -14.254765510559082 + ], + [ + "▁compressing", + -14.254788398742676 + ], + [ + "▁Livermore", + -14.254806518554688 + ], + [ + "▁scribes", + -14.254806518554688 + ], + [ + "▁BREAKING", + -14.25482177734375 + ], + [ + "▁LAPD", + -14.254834175109863 + ], + [ + "fought", + -14.254908561706543 + ], + [ + "▁roofers", + -14.254927635192871 + ], + [ + "mita", + -14.254944801330566 + ], + [ + "hq", + -14.254948616027832 + ], + [ + "▁encapsulates", + -14.254965782165527 + ], + [ + "▁Ghat", + -14.254974365234375 + ], + [ + "anyone", + -14.254990577697754 + ], + [ + "▁Sanitation", + -14.255002975463867 + ], + [ + "▁Axle", + -14.255005836486816 + ], + [ + "▁Monticello", + -14.25512981414795 + ], + [ + "sections", + -14.255167007446289 + ], + [ + "▁TRE", + -14.255212783813477 + ], + [ + "或", + -14.255218505859375 + ], + [ + "▁Exports", + -14.25525188446045 + ], + [ + "▁Pilate", + -14.255268096923828 + ], + [ + "▁Kerri", + -14.255270004272461 + ], + [ + "▁lessening", + -14.255324363708496 + ], + [ + "▁VCE", + -14.255331039428711 + ], + [ + "▁Computation", + -14.255332946777344 + ], + [ + "rified", + -14.255339622497559 + ], + [ + "▁Supervisory", + -14.255358695983887 + ], + [ + "▁FUTURE", + -14.255366325378418 + ], + [ + "cilla", + -14.255378723144531 + ], + [ + "funny", + -14.255402565002441 + ], + [ + "▁Braden", + -14.255451202392578 + ], + [ + "▁Hoffmann", + -14.255496978759766 + ], + [ + "▁tl", + -14.255511283874512 + ], + [ + "▁reverses", + -14.255548477172852 + ], + [ + "Hor", + -14.255563735961914 + ], + [ + "▁Tomlin", + -14.255590438842773 + ], + [ + "quart", + -14.255621910095215 + ], + [ + "▁TMJ", + -14.255638122558594 + ], + [ + "▁WHETHER", + -14.25568675994873 + ], + [ + "871", + -14.255688667297363 + ], + [ + "▁medics", + -14.255711555480957 + ], + [ + "▁Whistle", + -14.255712509155273 + ], + [ + "▁postnatal", + -14.255719184875488 + ], + [ + "▁affront", + -14.255739212036133 + ], + [ + "▁magneto", + -14.255752563476562 + ], + [ + "RSA", + -14.255799293518066 + ], + [ + "▁pew", + -14.255833625793457 + ], + [ + "imagine", + -14.255849838256836 + ], + [ + "▁matcha", + -14.255852699279785 + ], + [ + "▁stuttering", + -14.25585651397705 + ], + [ + "▁Malvern", + -14.255918502807617 + ], + [ + "▁stimulants", + -14.255924224853516 + ], + [ + "▁SELF", + -14.255975723266602 + ], + [ + "Window", + -14.255980491638184 + ], + [ + "deca", + -14.256037712097168 + ], + [ + "▁Topps", + -14.256080627441406 + ], + [ + "▁Inevitably", + -14.256086349487305 + ], + [ + "▁Importer", + -14.25611400604248 + ], + [ + "uffle", + -14.256160736083984 + ], + [ + "ESC", + -14.256235122680664 + ], + [ + "uten", + -14.256267547607422 + ], + [ + "▁anarchists", + -14.256267547607422 + ], + [ + "involved", + -14.256268501281738 + ], + [ + "eshwar", + -14.256269454956055 + ], + [ + "surf", + -14.256281852722168 + ], + [ + "▁candida", + -14.2562837600708 + ], + [ + "▁reusing", + -14.256335258483887 + ], + [ + "▁symphonic", + -14.256391525268555 + ], + [ + "▁thankyou", + -14.256416320800781 + ], + [ + "plates", + -14.256429672241211 + ], + [ + "▁mA", + -14.256453514099121 + ], + [ + "▁productively", + -14.256453514099121 + ], + [ + "▁conversing", + -14.256556510925293 + ], + [ + "▁Schaefer", + -14.256563186645508 + ], + [ + "Plant", + -14.256604194641113 + ], + [ + "▁Ferri", + -14.256621360778809 + ], + [ + "▁Enhancing", + -14.256631851196289 + ], + [ + "▁Zidane", + -14.256644248962402 + ], + [ + "▁Spalding", + -14.2567138671875 + ], + [ + "▁employability", + -14.256753921508789 + ], + [ + "▁Flange", + -14.25678825378418 + ], + [ + "▁scorched", + -14.256789207458496 + ], + [ + "▁Guilford", + -14.256817817687988 + ], + [ + "▁Peachtree", + -14.25683307647705 + ], + [ + "▁PLLC", + -14.256842613220215 + ], + [ + "▁CHOICE", + -14.256896018981934 + ], + [ + "▁Geraldine", + -14.256942749023438 + ], + [ + "▁IFC", + -14.256950378417969 + ], + [ + "▁Saud", + -14.256998062133789 + ], + [ + "▁Barefoot", + -14.257000923156738 + ], + [ + "▁vibrational", + -14.25705337524414 + ], + [ + "▁Programmes", + -14.257107734680176 + ], + [ + "等", + -14.2571382522583 + ], + [ + "▁̊", + -14.257180213928223 + ], + [ + "▁piqued", + -14.257205963134766 + ], + [ + "▁foal", + -14.257269859313965 + ], + [ + "▁scallions", + -14.257331848144531 + ], + [ + "▁wonky", + -14.257346153259277 + ], + [ + "▁Juncker", + -14.257383346557617 + ], + [ + "DAR", + -14.257397651672363 + ], + [ + "▁Yon", + -14.257425308227539 + ], + [ + "▁cadmium", + -14.257431983947754 + ], + [ + "▁tum", + -14.25743579864502 + ], + [ + "DAS", + -14.257455825805664 + ], + [ + "▁Wikileaks", + -14.257469177246094 + ], + [ + "▁Amritsar", + -14.25749397277832 + ], + [ + "▁attenuated", + -14.257513046264648 + ], + [ + "▁wail", + -14.257515907287598 + ], + [ + "▁Bjorn", + -14.257525444030762 + ], + [ + "▁Yangon", + -14.257540702819824 + ], + [ + "于", + -14.257589340209961 + ], + [ + "▁flexor", + -14.257608413696289 + ], + [ + "▁weirdly", + -14.257638931274414 + ], + [ + "▁inextricably", + -14.257658958435059 + ], + [ + "ssett", + -14.25772762298584 + ], + [ + "▁murmur", + -14.257771492004395 + ], + [ + "▁Oncol", + -14.257772445678711 + ], + [ + "▁petitioned", + -14.25784969329834 + ], + [ + "▁Examining", + -14.257851600646973 + ], + [ + "▁Surrounding", + -14.257953643798828 + ], + [ + "ño", + -14.257970809936523 + ], + [ + "▁juicing", + -14.258065223693848 + ], + [ + "▁Swedes", + -14.258070945739746 + ], + [ + "▁Feels", + -14.258074760437012 + ], + [ + "Boo", + -14.25816822052002 + ], + [ + "▁Walks", + -14.258171081542969 + ], + [ + "▁Carthage", + -14.25818157196045 + ], + [ + "▁deadlift", + -14.258267402648926 + ], + [ + "▁pulsating", + -14.258268356323242 + ], + [ + "▁synagogues", + -14.258295059204102 + ], + [ + "▁Syst", + -14.258356094360352 + ], + [ + "▁exponent", + -14.258363723754883 + ], + [ + "fas", + -14.258410453796387 + ], + [ + "▁Chloride", + -14.258421897888184 + ], + [ + "▁Votes", + -14.25846004486084 + ], + [ + "▁PIT", + -14.258477210998535 + ], + [ + "▁flagrant", + -14.25849437713623 + ], + [ + "▁repaint", + -14.258530616760254 + ], + [ + "▁IBD", + -14.25853157043457 + ], + [ + "Password", + -14.258641242980957 + ], + [ + "▁grandmothers", + -14.258642196655273 + ], + [ + "photography", + -14.258650779724121 + ], + [ + "▁jaundice", + -14.258662223815918 + ], + [ + "▁Mariano", + -14.258679389953613 + ], + [ + "▁Gag", + -14.258688926696777 + ], + [ + "▁descriptors", + -14.258708953857422 + ], + [ + "▁rounder", + -14.258747100830078 + ], + [ + "▁impresses", + -14.25875473022461 + ], + [ + "▁Treg", + -14.258781433105469 + ], + [ + "Chem", + -14.25878620147705 + ], + [ + "▁Acu", + -14.25879192352295 + ], + [ + "mk", + -14.258796691894531 + ], + [ + "794", + -14.258804321289062 + ], + [ + "▁Aram", + -14.258856773376465 + ], + [ + "▁STP", + -14.258856773376465 + ], + [ + "▁BEDROOM", + -14.25886058807373 + ], + [ + "Av", + -14.258872985839844 + ], + [ + "SAP", + -14.258899688720703 + ], + [ + "igue", + -14.258919715881348 + ], + [ + "▁filly", + -14.25893497467041 + ], + [ + "▁THING", + -14.258953094482422 + ], + [ + "▁Shalom", + -14.259114265441895 + ], + [ + "▁Netscape", + -14.259119987487793 + ], + [ + "▁husky", + -14.259140014648438 + ], + [ + "▁rainforests", + -14.259140968322754 + ], + [ + "▁remedied", + -14.259164810180664 + ], + [ + "▁cookery", + -14.259184837341309 + ], + [ + "ат", + -14.259203910827637 + ], + [ + "▁ophthalmologist", + -14.259208679199219 + ], + [ + "ehen", + -14.2592134475708 + ], + [ + "▁Shiloh", + -14.2592191696167 + ], + [ + "▁Contributors", + -14.259221076965332 + ], + [ + "▁inconsequential", + -14.259272575378418 + ], + [ + "▁incentivize", + -14.259313583374023 + ], + [ + "fford", + -14.25933837890625 + ], + [ + "▁concentrator", + -14.259355545043945 + ], + [ + "phal", + -14.259373664855957 + ], + [ + "▁checkups", + -14.259376525878906 + ], + [ + "vite", + -14.259395599365234 + ], + [ + "trigger", + -14.259406089782715 + ], + [ + "▁whimsy", + -14.259435653686523 + ], + [ + "chairman", + -14.2594575881958 + ], + [ + "▁burritos", + -14.259474754333496 + ], + [ + "▁brainwashed", + -14.259509086608887 + ], + [ + "▁Epp", + -14.259547233581543 + ], + [ + "intervention", + -14.259560585021973 + ], + [ + "restricted", + -14.2595853805542 + ], + [ + "nami", + -14.259590148925781 + ], + [ + "▁Jou", + -14.259590148925781 + ], + [ + "Court", + -14.259591102600098 + ], + [ + "▁suffocating", + -14.259610176086426 + ], + [ + "▁Modest", + -14.259614944458008 + ], + [ + "▁Riesling", + -14.25963306427002 + ], + [ + "▁iniquity", + -14.259634971618652 + ], + [ + "▁Fibonacci", + -14.259648323059082 + ], + [ + "▁coals", + -14.259676933288574 + ], + [ + "▁educates", + -14.259711265563965 + ], + [ + "ubuntu", + -14.25971794128418 + ], + [ + "therapeutic", + -14.259732246398926 + ], + [ + "▁isotopes", + -14.25976848602295 + ], + [ + "▁Aussies", + -14.259791374206543 + ], + [ + "▁Cabbage", + -14.259794235229492 + ], + [ + "▁chipotle", + -14.25981330871582 + ], + [ + "▁BST", + -14.259832382202148 + ], + [ + "willing", + -14.259878158569336 + ], + [ + "Sleep", + -14.259902000427246 + ], + [ + "▁misalignment", + -14.259920120239258 + ], + [ + "▁MLK", + -14.259922981262207 + ], + [ + "▁Wounded", + -14.259947776794434 + ], + [ + "Mission", + -14.259973526000977 + ], + [ + "Students", + -14.260024070739746 + ], + [ + "▁Litter", + -14.260050773620605 + ], + [ + "▁Environments", + -14.2600679397583 + ], + [ + "▁Ferreira", + -14.260087013244629 + ], + [ + "deposit", + -14.260175704956055 + ], + [ + "dani", + -14.260188102722168 + ], + [ + "IFIED", + -14.260220527648926 + ], + [ + "▁Ramesh", + -14.260233879089355 + ], + [ + "▁Bachchan", + -14.260274887084961 + ], + [ + "▁waveguide", + -14.260313987731934 + ], + [ + "hti", + -14.260320663452148 + ], + [ + "ज", + -14.260329246520996 + ], + [ + "▁realty", + -14.260337829589844 + ], + [ + "▁Comb", + -14.260408401489258 + ], + [ + "▁Cheats", + -14.260411262512207 + ], + [ + "▁Kran", + -14.260451316833496 + ], + [ + "▁Masonry", + -14.260536193847656 + ], + [ + "▁Dung", + -14.260558128356934 + ], + [ + "NON", + -14.260602951049805 + ], + [ + "▁sundown", + -14.260615348815918 + ], + [ + "ENA", + -14.26065731048584 + ], + [ + "▁canopies", + -14.260668754577637 + ], + [ + "▁Macomb", + -14.260677337646484 + ], + [ + "kine", + -14.260684967041016 + ], + [ + "▁Suez", + -14.260685920715332 + ], + [ + "▁PAM", + -14.260687828063965 + ], + [ + "▁chimneys", + -14.260732650756836 + ], + [ + "IENT", + -14.260859489440918 + ], + [ + "▁outweighs", + -14.260875701904297 + ], + [ + "▁Gunner", + -14.26088809967041 + ], + [ + "▁lou", + -14.260889053344727 + ], + [ + "▁superstitious", + -14.260920524597168 + ], + [ + "▁Largo", + -14.260941505432129 + ], + [ + "▁publically", + -14.260965347290039 + ], + [ + "▁Maddox", + -14.260987281799316 + ], + [ + "▁Hype", + -14.261017799377441 + ], + [ + "Angelo", + -14.261030197143555 + ], + [ + "9°", + -14.26103401184082 + ], + [ + "Cock", + -14.261077880859375 + ], + [ + "▁RIA", + -14.261086463928223 + ], + [ + "▁대", + -14.261101722717285 + ], + [ + "▁frat", + -14.26110553741455 + ], + [ + "▁aerobics", + -14.261119842529297 + ], + [ + "▁Ghent", + -14.261160850524902 + ], + [ + "▁centrepiece", + -14.261162757873535 + ], + [ + "▁delineate", + -14.261170387268066 + ], + [ + "▁Stray", + -14.26118278503418 + ], + [ + "mik", + -14.26120662689209 + ], + [ + "▁Gifted", + -14.261246681213379 + ], + [ + "▁biofuel", + -14.261251449584961 + ], + [ + "▁Duma", + -14.261296272277832 + ], + [ + "Rh", + -14.261309623718262 + ], + [ + "▁arbitrage", + -14.26132869720459 + ], + [ + "avoid", + -14.26133918762207 + ], + [ + "IPO", + -14.261412620544434 + ], + [ + "▁converging", + -14.261418342590332 + ], + [ + "▁Codex", + -14.26151180267334 + ], + [ + "▁Swarm", + -14.26152515411377 + ], + [ + "▁Snape", + -14.261544227600098 + ], + [ + "anc", + -14.26157283782959 + ], + [ + "1954", + -14.261603355407715 + ], + [ + "came", + -14.261622428894043 + ], + [ + "▁categorised", + -14.261686325073242 + ], + [ + "▁LOC", + -14.261687278747559 + ], + [ + "▁Mahoney", + -14.261689186096191 + ], + [ + "▁Pikachu", + -14.261711120605469 + ], + [ + "ective", + -14.261722564697266 + ], + [ + "▁intents", + -14.261730194091797 + ], + [ + "ignon", + -14.261855125427246 + ], + [ + "▁Ela", + -14.261861801147461 + ], + [ + "▁unzip", + -14.261919975280762 + ], + [ + "▁NAND", + -14.261964797973633 + ], + [ + "▁retaliatory", + -14.26199722290039 + ], + [ + "finally", + -14.262002944946289 + ], + [ + "▁FIX", + -14.2620267868042 + ], + [ + "▁backpackers", + -14.262042999267578 + ], + [ + "▁Chasing", + -14.262051582336426 + ], + [ + "▁Rit", + -14.262084007263184 + ], + [ + "▁Lifeline", + -14.262105941772461 + ], + [ + "▁Merton", + -14.262161254882812 + ], + [ + "iPad", + -14.262222290039062 + ], + [ + "dew", + -14.262307167053223 + ], + [ + "▁SSDs", + -14.262310028076172 + ], + [ + "▁tacit", + -14.262358665466309 + ], + [ + "▁528", + -14.26240348815918 + ], + [ + "ipp", + -14.262428283691406 + ], + [ + "▁Huntsman", + -14.262430191040039 + ], + [ + "▁SRS", + -14.262444496154785 + ], + [ + "▁squishy", + -14.26248550415039 + ], + [ + "kap", + -14.262497901916504 + ], + [ + "JB", + -14.26250171661377 + ], + [ + "detect", + -14.262526512145996 + ], + [ + "▁roving", + -14.262563705444336 + ], + [ + "▁Ocala", + -14.262588500976562 + ], + [ + "▁collectable", + -14.262630462646484 + ], + [ + "Device", + -14.26266098022461 + ], + [ + "ikon", + -14.262664794921875 + ], + [ + "▁Deerfield", + -14.262665748596191 + ], + [ + "▁summoning", + -14.262693405151367 + ], + [ + "crusher", + -14.262707710266113 + ], + [ + "wheeler", + -14.262709617614746 + ], + [ + "▁FSB", + -14.262752532958984 + ], + [ + "▁banal", + -14.262757301330566 + ], + [ + "▁weatherproof", + -14.262785911560059 + ], + [ + "▁Bogota", + -14.262788772583008 + ], + [ + "▁folio", + -14.262788772583008 + ], + [ + "▁magnum", + -14.262880325317383 + ], + [ + "▁Superhero", + -14.262979507446289 + ], + [ + "▁ftp", + -14.262991905212402 + ], + [ + "▁registries", + -14.262994766235352 + ], + [ + "dressing", + -14.263017654418945 + ], + [ + "▁arranger", + -14.263032913208008 + ], + [ + "▁Donetsk", + -14.263063430786133 + ], + [ + "▁Workbook", + -14.263136863708496 + ], + [ + "相", + -14.263140678405762 + ], + [ + "▁snowed", + -14.26314640045166 + ], + [ + "▁Convergence", + -14.263262748718262 + ], + [ + "▁whet", + -14.263272285461426 + ], + [ + "ROI", + -14.263291358947754 + ], + [ + "▁socialized", + -14.263319969177246 + ], + [ + "▁altruistic", + -14.263331413269043 + ], + [ + "▁clocking", + -14.263433456420898 + ], + [ + "▁lineups", + -14.263497352600098 + ], + [ + "▁restocking", + -14.263525009155273 + ], + [ + "included", + -14.263547897338867 + ], + [ + "▁Stake", + -14.263582229614258 + ], + [ + "▁chagrin", + -14.263596534729004 + ], + [ + "ˈ", + -14.263636589050293 + ], + [ + "▁θ", + -14.263640403747559 + ], + [ + "dica", + -14.263648986816406 + ], + [ + "▁426", + -14.263723373413086 + ], + [ + "ected", + -14.263740539550781 + ], + [ + "▁상", + -14.263761520385742 + ], + [ + "▁Irina", + -14.263771057128906 + ], + [ + "▁†", + -14.263771057128906 + ], + [ + "▁CHRISTMAS", + -14.263792037963867 + ], + [ + "STEM", + -14.263795852661133 + ], + [ + "▁sorbet", + -14.263795852661133 + ], + [ + "▁weirdo", + -14.263863563537598 + ], + [ + "▁BLS", + -14.26388168334961 + ], + [ + "twice", + -14.263897895812988 + ], + [ + "Profile", + -14.263994216918945 + ], + [ + "▁Garnet", + -14.264001846313477 + ], + [ + "▁claustrophobic", + -14.264007568359375 + ], + [ + "▁sequin", + -14.264008522033691 + ], + [ + "753", + -14.264033317565918 + ], + [ + "deg", + -14.264050483703613 + ], + [ + "812", + -14.264063835144043 + ], + [ + "▁chronograph", + -14.264113426208496 + ], + [ + "conceived", + -14.264126777648926 + ], + [ + "iev", + -14.264144897460938 + ], + [ + "▁anointing", + -14.264152526855469 + ], + [ + "▁Adsense", + -14.264153480529785 + ], + [ + "apped", + -14.264161109924316 + ], + [ + "▁805", + -14.264178276062012 + ], + [ + "▁Wexford", + -14.264189720153809 + ], + [ + "▁rea", + -14.264281272888184 + ], + [ + "▁tingle", + -14.264317512512207 + ], + [ + "▁personalise", + -14.264328956604004 + ], + [ + "▁garnished", + -14.264360427856445 + ], + [ + "▁apricots", + -14.26442813873291 + ], + [ + "▁Sensitivity", + -14.264442443847656 + ], + [ + "ouf", + -14.26451587677002 + ], + [ + "823", + -14.264543533325195 + ], + [ + "▁Arkham", + -14.264559745788574 + ], + [ + "▁correspondents", + -14.264559745788574 + ], + [ + "▁Arb", + -14.26456069946289 + ], + [ + "▁inefficiency", + -14.264569282531738 + ], + [ + "▁AMT", + -14.264570236206055 + ], + [ + "▁Janine", + -14.264593124389648 + ], + [ + "▁Flies", + -14.264604568481445 + ], + [ + "▁disembark", + -14.26463794708252 + ], + [ + "▁Vast", + -14.264650344848633 + ], + [ + "▁mistreated", + -14.264660835266113 + ], + [ + "▁carats", + -14.264680862426758 + ], + [ + "▁Odor", + -14.264684677124023 + ], + [ + "▁Drones", + -14.264691352844238 + ], + [ + "▁maddening", + -14.264755249023438 + ], + [ + "▁myeloma", + -14.264800071716309 + ], + [ + "topping", + -14.264801979064941 + ], + [ + "方", + -14.264815330505371 + ], + [ + "▁Buried", + -14.264820098876953 + ], + [ + "ananda", + -14.26483154296875 + ], + [ + "▁Relaxation", + -14.26484489440918 + ], + [ + "Andre", + -14.264867782592773 + ], + [ + "▁Witherspoon", + -14.264877319335938 + ], + [ + "▁backwater", + -14.264892578125 + ], + [ + "ONA", + -14.264894485473633 + ], + [ + "recording", + -14.264894485473633 + ], + [ + "uate", + -14.26494026184082 + ], + [ + "▁Immigrants", + -14.264967918395996 + ], + [ + "▁impeccably", + -14.265029907226562 + ], + [ + "▁ditching", + -14.265046119689941 + ], + [ + "▁sanctuaries", + -14.265049934387207 + ], + [ + "▁debugger", + -14.265067100524902 + ], + [ + "▁WLAN", + -14.265088081359863 + ], + [ + "Dynamic", + -14.26512336730957 + ], + [ + "▁mulling", + -14.265156745910645 + ], + [ + "blocks", + -14.26517105102539 + ], + [ + "▁Remaining", + -14.265192985534668 + ], + [ + "▁Naa", + -14.265205383300781 + ], + [ + "▁subcontinent", + -14.265220642089844 + ], + [ + "▁dw", + -14.265340805053711 + ], + [ + "085", + -14.26536750793457 + ], + [ + "▁Timeless", + -14.265376091003418 + ], + [ + "Late", + -14.265379905700684 + ], + [ + "▁rector", + -14.265461921691895 + ], + [ + "▁middleweight", + -14.265462875366211 + ], + [ + "Introduction", + -14.26551342010498 + ], + [ + "▁Hummingbird", + -14.26557445526123 + ], + [ + "▁fleshed", + -14.26557731628418 + ], + [ + "▁Partridge", + -14.265630722045898 + ], + [ + "▁DELIVERY", + -14.265661239624023 + ], + [ + "▁Tarrant", + -14.265680313110352 + ], + [ + "▁Foy", + -14.265689849853516 + ], + [ + "shon", + -14.265722274780273 + ], + [ + "▁Bombers", + -14.265753746032715 + ], + [ + "therm", + -14.26576042175293 + ], + [ + "▁CCL", + -14.265780448913574 + ], + [ + "codes", + -14.265793800354004 + ], + [ + "MJ", + -14.265819549560547 + ], + [ + "▁Aviva", + -14.265823364257812 + ], + [ + "▁Diplomacy", + -14.265893936157227 + ], + [ + "▁scoured", + -14.265908241271973 + ], + [ + "▁rebrand", + -14.265953063964844 + ], + [ + "▁WIND", + -14.26598834991455 + ], + [ + "▁Knows", + -14.265993118286133 + ], + [ + "jt", + -14.26602554321289 + ], + [ + "▁Volatility", + -14.266047477722168 + ], + [ + "▁LEO", + -14.266081809997559 + ], + [ + "▁rebooted", + -14.266152381896973 + ], + [ + "ophobia", + -14.266280174255371 + ], + [ + "NAT", + -14.266289710998535 + ], + [ + "vegan", + -14.266290664672852 + ], + [ + "▁Demolition", + -14.26630973815918 + ], + [ + "▁Feelings", + -14.266335487365723 + ], + [ + "inating", + -14.266342163085938 + ], + [ + "rsi", + -14.26635456085205 + ], + [ + "abella", + -14.266408920288086 + ], + [ + "052", + -14.266417503356934 + ], + [ + "▁Collaborate", + -14.266419410705566 + ], + [ + "▁gaga", + -14.266424179077148 + ], + [ + "▁Consideration", + -14.266462326049805 + ], + [ + "strat", + -14.26646900177002 + ], + [ + "predict", + -14.26648998260498 + ], + [ + "▁Radon", + -14.266495704650879 + ], + [ + "945", + -14.266498565673828 + ], + [ + "▁Campers", + -14.266558647155762 + ], + [ + "hofer", + -14.266565322875977 + ], + [ + "oxi", + -14.266578674316406 + ], + [ + "Eight", + -14.266608238220215 + ], + [ + "packaged", + -14.26661491394043 + ], + [ + "▁Kalyan", + -14.266639709472656 + ], + [ + "▁Wray", + -14.266647338867188 + ], + [ + "hunters", + -14.266669273376465 + ], + [ + "oze", + -14.266694068908691 + ], + [ + "▁awakens", + -14.266745567321777 + ], + [ + "▁Greeting", + -14.26678466796875 + ], + [ + "mobi", + -14.266823768615723 + ], + [ + "▁stu", + -14.266829490661621 + ], + [ + "▁Glycerin", + -14.266862869262695 + ], + [ + "ober", + -14.26687240600586 + ], + [ + "▁registrant", + -14.266884803771973 + ], + [ + "▁Opioid", + -14.266886711120605 + ], + [ + "▁efficacious", + -14.266886711120605 + ], + [ + "▁emphasises", + -14.2669038772583 + ], + [ + "▁colorado", + -14.266948699951172 + ], + [ + "학", + -14.266976356506348 + ], + [ + "honor", + -14.266998291015625 + ], + [ + "ebra", + -14.267023086547852 + ], + [ + "▁matriarch", + -14.267036437988281 + ], + [ + "▁Reactions", + -14.267145156860352 + ], + [ + "▁Jock", + -14.267165184020996 + ], + [ + "▁sucks", + -14.267205238342285 + ], + [ + "▁pada", + -14.267230987548828 + ], + [ + "Parents", + -14.267284393310547 + ], + [ + "▁CHURCH", + -14.267284393310547 + ], + [ + "ül", + -14.267285346984863 + ], + [ + "▁providence", + -14.267333030700684 + ], + [ + "▁subprime", + -14.267335891723633 + ], + [ + "▁Langford", + -14.267341613769531 + ], + [ + "Lead", + -14.26734447479248 + ], + [ + "▁dished", + -14.267361640930176 + ], + [ + "▁Tillman", + -14.267379760742188 + ], + [ + "avier", + -14.267410278320312 + ], + [ + "sible", + -14.267439842224121 + ], + [ + "cuff", + -14.267440795898438 + ], + [ + "886", + -14.267520904541016 + ], + [ + "▁lifeguard", + -14.267529487609863 + ], + [ + "originally", + -14.26763916015625 + ], + [ + "▁Stonewall", + -14.267766952514648 + ], + [ + "▁Honeymoon", + -14.267770767211914 + ], + [ + "▁euphoric", + -14.267836570739746 + ], + [ + "uvi", + -14.267841339111328 + ], + [ + "▁Chr", + -14.26787281036377 + ], + [ + "▁DCC", + -14.267888069152832 + ], + [ + "▁Emoji", + -14.26789665222168 + ], + [ + "vast", + -14.26791763305664 + ], + [ + "▁fawn", + -14.267926216125488 + ], + [ + "glue", + -14.267935752868652 + ], + [ + "▁FIS", + -14.26799201965332 + ], + [ + "Ir", + -14.268077850341797 + ], + [ + "▁headwinds", + -14.268087387084961 + ], + [ + "▁fabricating", + -14.268089294433594 + ], + [ + "CHS", + -14.26811695098877 + ], + [ + "▁BAFTA", + -14.268128395080566 + ], + [ + "▁Mahesh", + -14.268138885498047 + ], + [ + "▁techs", + -14.26815414428711 + ], + [ + "▁Pats", + -14.268172264099121 + ], + [ + "▁condensate", + -14.26817512512207 + ], + [ + "▁DAILY", + -14.268192291259766 + ], + [ + "▁Mathias", + -14.268239974975586 + ], + [ + "PAN", + -14.268240928649902 + ], + [ + "▁perpetuity", + -14.268258094787598 + ], + [ + "▁Latham", + -14.268266677856445 + ], + [ + "▁repose", + -14.268302917480469 + ], + [ + "▁fabulously", + -14.268370628356934 + ], + [ + "▁MATCH", + -14.268401145935059 + ], + [ + "▁Familia", + -14.268402099609375 + ], + [ + "▁BBS", + -14.268426895141602 + ], + [ + "▁Lovell", + -14.26848030090332 + ], + [ + "▁strait", + -14.26857852935791 + ], + [ + "▁AUS", + -14.268580436706543 + ], + [ + "▁selectable", + -14.268600463867188 + ], + [ + "Reason", + -14.268656730651855 + ], + [ + "modules", + -14.268661499023438 + ], + [ + "▁Geophysical", + -14.268682479858398 + ], + [ + "AAP", + -14.268689155578613 + ], + [ + "▁hyperactivity", + -14.268699645996094 + ], + [ + "▁conceivably", + -14.268720626831055 + ], + [ + "▁Bader", + -14.268793106079102 + ], + [ + "guns", + -14.268794059753418 + ], + [ + "manufacturing", + -14.268820762634277 + ], + [ + "▁Tenants", + -14.268855094909668 + ], + [ + "murder", + -14.268856048583984 + ], + [ + "▁unbreakable", + -14.268874168395996 + ], + [ + "esch", + -14.268891334533691 + ], + [ + "▁Cava", + -14.268926620483398 + ], + [ + "955", + -14.268941879272461 + ], + [ + "▁Boa", + -14.26895523071289 + ], + [ + "▁Atmosphere", + -14.268970489501953 + ], + [ + "▁hounds", + -14.26898193359375 + ], + [ + "▁frock", + -14.268991470336914 + ], + [ + "▁Christophe", + -14.269006729125977 + ], + [ + "Thu", + -14.269012451171875 + ], + [ + "▁RCC", + -14.269048690795898 + ], + [ + "▁Hollande", + -14.269052505493164 + ], + [ + "同", + -14.269087791442871 + ], + [ + "HAR", + -14.269098281860352 + ], + [ + "824", + -14.269123077392578 + ], + [ + "▁gravi", + -14.26913833618164 + ], + [ + "OLO", + -14.269176483154297 + ], + [ + "▁Radi", + -14.269222259521484 + ], + [ + "▁buffering", + -14.26928424835205 + ], + [ + "▁customizations", + -14.269317626953125 + ], + [ + "selection", + -14.269322395324707 + ], + [ + "▁Brunson", + -14.269371032714844 + ], + [ + "Ox", + -14.269383430480957 + ], + [ + "oyo", + -14.269401550292969 + ], + [ + "▁leeks", + -14.269423484802246 + ], + [ + "REA", + -14.269430160522461 + ], + [ + "▁disintegrate", + -14.26944351196289 + ], + [ + "▁macho", + -14.269508361816406 + ], + [ + "▁OPP", + -14.269563674926758 + ], + [ + "▁Ihre", + -14.269586563110352 + ], + [ + "▁NFS", + -14.26965618133545 + ], + [ + "▁profitably", + -14.269697189331055 + ], + [ + "▁cin", + -14.269712448120117 + ], + [ + "▁Profession", + -14.26977252960205 + ], + [ + "▁Kne", + -14.269777297973633 + ], + [ + "Theme", + -14.269783973693848 + ], + [ + "▁Retain", + -14.269790649414062 + ], + [ + "IANS", + -14.269791603088379 + ], + [ + "▁predation", + -14.269804954528809 + ], + [ + "▁Gundam", + -14.269820213317871 + ], + [ + "▁RDS", + -14.269824028015137 + ], + [ + "▁Nils", + -14.269850730895996 + ], + [ + "▁HOST", + -14.26986312866211 + ], + [ + "▁Divided", + -14.269864082336426 + ], + [ + "nab", + -14.269901275634766 + ], + [ + "▁backdrops", + -14.269906044006348 + ], + [ + "▁handicrafts", + -14.269908905029297 + ], + [ + "▁slurs", + -14.269928932189941 + ], + [ + "Brook", + -14.269938468933105 + ], + [ + "836", + -14.269977569580078 + ], + [ + "▁agrarian", + -14.269991874694824 + ], + [ + "▁Tavares", + -14.27004337310791 + ], + [ + "▁grads", + -14.270045280456543 + ], + [ + "▁APPLICABLE", + -14.270050048828125 + ], + [ + "tenberg", + -14.270061492919922 + ], + [ + "▁TRENDING", + -14.270061492919922 + ], + [ + "▁cutaneous", + -14.270072937011719 + ], + [ + "zle", + -14.270082473754883 + ], + [ + "▁annular", + -14.270096778869629 + ], + [ + "▁PACE", + -14.270115852355957 + ], + [ + "▁aspirational", + -14.270215034484863 + ], + [ + "▁Л", + -14.270215034484863 + ], + [ + "▁RET", + -14.270220756530762 + ], + [ + "▁Sagar", + -14.270241737365723 + ], + [ + "▁poli", + -14.270281791687012 + ], + [ + "834", + -14.270309448242188 + ], + [ + "▁policyholder", + -14.27031421661377 + ], + [ + "882", + -14.270317077636719 + ], + [ + "内", + -14.270332336425781 + ], + [ + "▁Jenni", + -14.270366668701172 + ], + [ + "▁gest", + -14.270368576049805 + ], + [ + "imos", + -14.270416259765625 + ], + [ + "▁Custer", + -14.270421028137207 + ], + [ + "Lion", + -14.270487785339355 + ], + [ + "▁Ilya", + -14.270501136779785 + ], + [ + "tual", + -14.270520210266113 + ], + [ + "▁followup", + -14.270523071289062 + ], + [ + "▁STAND", + -14.270569801330566 + ], + [ + "▁introverted", + -14.270586967468262 + ], + [ + "▁Zeb", + -14.270648956298828 + ], + [ + "▁lacing", + -14.270654678344727 + ], + [ + "▁scammed", + -14.270663261413574 + ], + [ + "▁untested", + -14.270695686340332 + ], + [ + "▁Territorial", + -14.270707130432129 + ], + [ + "▁multivitamin", + -14.270730972290039 + ], + [ + "▁Hypnosis", + -14.270791053771973 + ], + [ + "▁MCM", + -14.27085018157959 + ], + [ + "▁Enviro", + -14.270909309387207 + ], + [ + "▁Sagan", + -14.270914077758789 + ], + [ + "▁Pearls", + -14.27098274230957 + ], + [ + "Laughs", + -14.271013259887695 + ], + [ + "▁Lourdes", + -14.27104663848877 + ], + [ + "▁Sprite", + -14.271086692810059 + ], + [ + "▁dwells", + -14.27114200592041 + ], + [ + "▁Bharatiya", + -14.271164894104004 + ], + [ + "OZ", + -14.271219253540039 + ], + [ + "EDA", + -14.271227836608887 + ], + [ + "▁Painters", + -14.271248817443848 + ], + [ + "trak", + -14.271288871765137 + ], + [ + "▁AUDIO", + -14.271331787109375 + ], + [ + "PPP", + -14.271363258361816 + ], + [ + "▁Mulberry", + -14.271364212036133 + ], + [ + "▁Eth", + -14.271366119384766 + ], + [ + "Por", + -14.271415710449219 + ], + [ + "ONY", + -14.271439552307129 + ], + [ + "▁Ota", + -14.271446228027344 + ], + [ + "▁grouse", + -14.271450996398926 + ], + [ + "bund", + -14.271459579467773 + ], + [ + "▁Airports", + -14.271551132202148 + ], + [ + "▁Helens", + -14.271580696105957 + ], + [ + "▁kab", + -14.271628379821777 + ], + [ + "▁feasting", + -14.271669387817383 + ], + [ + "athlon", + -14.2716703414917 + ], + [ + "▁reprimand", + -14.271682739257812 + ], + [ + "▁Spieth", + -14.271693229675293 + ], + [ + "▁homogenous", + -14.271698951721191 + ], + [ + "icating", + -14.271796226501465 + ], + [ + "▁Fonts", + -14.27180290222168 + ], + [ + "▁nachos", + -14.271805763244629 + ], + [ + "▁Gable", + -14.27188491821289 + ], + [ + "▁centimetres", + -14.271909713745117 + ], + [ + "ATO", + -14.271917343139648 + ], + [ + "▁Holtz", + -14.271942138671875 + ], + [ + "Ent", + -14.271966934204102 + ], + [ + "vod", + -14.271982192993164 + ], + [ + "drill", + -14.272024154663086 + ], + [ + "anja", + -14.272071838378906 + ], + [ + "scribing", + -14.272082328796387 + ], + [ + "▁contraband", + -14.272117614746094 + ], + [ + "▁Bowser", + -14.272128105163574 + ], + [ + "Victoria", + -14.272181510925293 + ], + [ + "applied", + -14.272201538085938 + ], + [ + "Pot", + -14.272224426269531 + ], + [ + "▁inflationary", + -14.272237777709961 + ], + [ + "▁rr", + -14.27225112915039 + ], + [ + "▁salaried", + -14.272257804870605 + ], + [ + "Af", + -14.272260665893555 + ], + [ + "Bru", + -14.27227783203125 + ], + [ + "049", + -14.272293090820312 + ], + [ + "▁dissidents", + -14.27231502532959 + ], + [ + "▁Opp", + -14.272342681884766 + ], + [ + "jek", + -14.272383689880371 + ], + [ + "▁Lohan", + -14.272436141967773 + ], + [ + "▁Fillmore", + -14.27244758605957 + ], + [ + "968", + -14.272449493408203 + ], + [ + "abs", + -14.272533416748047 + ], + [ + "BIN", + -14.27254581451416 + ], + [ + "▁bottomless", + -14.272552490234375 + ], + [ + "▁Northland", + -14.272621154785156 + ], + [ + "896", + -14.272723197937012 + ], + [ + "▁indictments", + -14.272730827331543 + ], + [ + "▁Vela", + -14.272815704345703 + ], + [ + "▁expressway", + -14.272865295410156 + ], + [ + "▁molested", + -14.272880554199219 + ], + [ + "frey", + -14.272981643676758 + ], + [ + "▁PUBG", + -14.272993087768555 + ], + [ + "▁grooms", + -14.273001670837402 + ], + [ + "HOME", + -14.273036003112793 + ], + [ + "▁befriended", + -14.27310848236084 + ], + [ + "▁Sachin", + -14.273125648498535 + ], + [ + "▁Deploy", + -14.27321720123291 + ], + [ + "▁pac", + -14.273231506347656 + ], + [ + "▁Folsom", + -14.273305892944336 + ], + [ + "пер", + -14.273340225219727 + ], + [ + "▁IFRS", + -14.273344993591309 + ], + [ + "▁snout", + -14.273344993591309 + ], + [ + "▁sleeved", + -14.27337646484375 + ], + [ + "▁fibroblasts", + -14.273429870605469 + ], + [ + "▁IAEA", + -14.273446083068848 + ], + [ + "ם", + -14.273500442504883 + ], + [ + "▁651", + -14.27350902557373 + ], + [ + "▁symbolically", + -14.273537635803223 + ], + [ + "ELA", + -14.273544311523438 + ], + [ + "▁Xeno", + -14.273581504821777 + ], + [ + "▁TEDx", + -14.273597717285156 + ], + [ + "across", + -14.273619651794434 + ], + [ + "enson", + -14.273698806762695 + ], + [ + "▁volition", + -14.273744583129883 + ], + [ + "▁hubris", + -14.273760795593262 + ], + [ + "▁Rudi", + -14.273774147033691 + ], + [ + "▁ZO", + -14.27381706237793 + ], + [ + "▁Lavrov", + -14.273839950561523 + ], + [ + "atia", + -14.273900985717773 + ], + [ + "▁Suu", + -14.273907661437988 + ], + [ + "▁sunroof", + -14.27393913269043 + ], + [ + "▁outerwear", + -14.273961067199707 + ], + [ + "▁Hillsboro", + -14.273969650268555 + ], + [ + "pian", + -14.27399730682373 + ], + [ + "▁ills", + -14.274002075195312 + ], + [ + "Archive", + -14.274024963378906 + ], + [ + "Carlo", + -14.274031639099121 + ], + [ + "▁SRT", + -14.274067878723145 + ], + [ + "095", + -14.274075508117676 + ], + [ + "▁romaine", + -14.274093627929688 + ], + [ + "tà", + -14.274139404296875 + ], + [ + "▁tepid", + -14.27414321899414 + ], + [ + "▁requisition", + -14.274174690246582 + ], + [ + "▁Qingdao", + -14.274210929870605 + ], + [ + "▁sucrose", + -14.274271011352539 + ], + [ + "Artist", + -14.274273872375488 + ], + [ + "▁Chilli", + -14.274301528930664 + ], + [ + "▁Logs", + -14.274333000183105 + ], + [ + "▁Freshly", + -14.274343490600586 + ], + [ + "▁solitaire", + -14.274372100830078 + ], + [ + "ADO", + -14.27437973022461 + ], + [ + "▁banger", + -14.274406433105469 + ], + [ + "▁translocation", + -14.274482727050781 + ], + [ + "▁buoyancy", + -14.274503707885742 + ], + [ + "gd", + -14.274516105651855 + ], + [ + "▁unneeded", + -14.274544715881348 + ], + [ + "758", + -14.274604797363281 + ], + [ + "▁Maruti", + -14.274615287780762 + ], + [ + "▁prescient", + -14.27462387084961 + ], + [ + "▁Sylvan", + -14.274649620056152 + ], + [ + "dedicated", + -14.274653434753418 + ], + [ + "ס", + -14.274662017822266 + ], + [ + "cala", + -14.274665832519531 + ], + [ + "▁corpora", + -14.274682998657227 + ], + [ + "▁Hemsworth", + -14.274726867675781 + ], + [ + "▁idly", + -14.274746894836426 + ], + [ + "HRA", + -14.274749755859375 + ], + [ + "▁Breastfeeding", + -14.27476692199707 + ], + [ + "▁MEC", + -14.274768829345703 + ], + [ + "regulate", + -14.274778366088867 + ], + [ + "▁orbs", + -14.2747802734375 + ], + [ + "▁Damp", + -14.27478313446045 + ], + [ + "▁panned", + -14.274802207946777 + ], + [ + "▁Headphones", + -14.274849891662598 + ], + [ + "arum", + -14.274855613708496 + ], + [ + "▁Procter", + -14.274862289428711 + ], + [ + "booked", + -14.274863243103027 + ], + [ + "▁LEARN", + -14.274910926818848 + ], + [ + "▁Koro", + -14.274927139282227 + ], + [ + "▁gunpoint", + -14.27492904663086 + ], + [ + "▁Ayo", + -14.274937629699707 + ], + [ + "▁Janelle", + -14.274948120117188 + ], + [ + "▁flinch", + -14.274948120117188 + ], + [ + "▁Fae", + -14.274962425231934 + ], + [ + "hanna", + -14.275043487548828 + ], + [ + "▁stews", + -14.275050163269043 + ], + [ + "produce", + -14.27505111694336 + ], + [ + "814", + -14.275069236755371 + ], + [ + "VAC", + -14.275096893310547 + ], + [ + "▁Answering", + -14.275100708007812 + ], + [ + "Monster", + -14.275123596191406 + ], + [ + "▁Mew", + -14.275124549865723 + ], + [ + "▁Allowed", + -14.275166511535645 + ], + [ + "▁SSB", + -14.275224685668945 + ], + [ + "▁Franks", + -14.275294303894043 + ], + [ + "▁fancied", + -14.275307655334473 + ], + [ + "▁379", + -14.27531909942627 + ], + [ + "▁useable", + -14.275346755981445 + ], + [ + "▁Bubbles", + -14.275350570678711 + ], + [ + "▁Brau", + -14.275372505187988 + ], + [ + "▁hairpin", + -14.275382995605469 + ], + [ + "▁instigated", + -14.275410652160645 + ], + [ + "▁kinks", + -14.275421142578125 + ], + [ + "▁multinationals", + -14.275425910949707 + ], + [ + "▁Aretha", + -14.275439262390137 + ], + [ + "▁kam", + -14.275444984436035 + ], + [ + "▁Lube", + -14.275449752807617 + ], + [ + "ξ", + -14.275468826293945 + ], + [ + "▁amicable", + -14.275490760803223 + ], + [ + "▁strictest", + -14.275543212890625 + ], + [ + "▁squandered", + -14.275546073913574 + ], + [ + "して", + -14.27557373046875 + ], + [ + "863", + -14.275574684143066 + ], + [ + "AID", + -14.275626182556152 + ], + [ + "▁shrill", + -14.275663375854492 + ], + [ + "dino", + -14.275673866271973 + ], + [ + "▁ExxonMobil", + -14.275694847106934 + ], + [ + "▁Holliday", + -14.275715827941895 + ], + [ + "▁DOUBLE", + -14.275766372680664 + ], + [ + "ordinated", + -14.275818824768066 + ], + [ + "dealer", + -14.275830268859863 + ], + [ + "▁Journals", + -14.275839805603027 + ], + [ + "▁cremated", + -14.275861740112305 + ], + [ + "▁Consolidation", + -14.27590274810791 + ], + [ + "▁bobs", + -14.27592658996582 + ], + [ + "oge", + -14.275959968566895 + ], + [ + "▁lynching", + -14.276036262512207 + ], + [ + "▁bachelors", + -14.276042938232422 + ], + [ + "▁penalize", + -14.27605152130127 + ], + [ + "▁Hamel", + -14.276121139526367 + ], + [ + "▁desc", + -14.276175498962402 + ], + [ + "▁matures", + -14.276237487792969 + ], + [ + "▁ACR", + -14.276244163513184 + ], + [ + "▁Heh", + -14.276266098022461 + ], + [ + "nac", + -14.276281356811523 + ], + [ + "▁Eber", + -14.276287078857422 + ], + [ + "▁unkind", + -14.276291847229004 + ], + [ + "▁infield", + -14.276387214660645 + ], + [ + "reflective", + -14.276390075683594 + ], + [ + "▁Reboot", + -14.276432991027832 + ], + [ + "▁Dri", + -14.276451110839844 + ], + [ + "locker", + -14.276457786560059 + ], + [ + "▁backhand", + -14.276491165161133 + ], + [ + "▁ecologist", + -14.276509284973145 + ], + [ + "▁Mower", + -14.276555061340332 + ], + [ + "▁gloriously", + -14.276567459106445 + ], + [ + "▁forgettable", + -14.276571273803711 + ], + [ + "▁flexing", + -14.276575088500977 + ], + [ + "▁electors", + -14.276618003845215 + ], + [ + "▁jute", + -14.276625633239746 + ], + [ + "▁Ornament", + -14.276642799377441 + ], + [ + "▁lowercase", + -14.276662826538086 + ], + [ + "Java", + -14.2767333984375 + ], + [ + "believers", + -14.276748657226562 + ], + [ + "▁Mako", + -14.276756286621094 + ], + [ + "▁Slab", + -14.27678108215332 + ], + [ + "▁lengthening", + -14.2767972946167 + ], + [ + "Jar", + -14.276840209960938 + ], + [ + "971", + -14.276861190795898 + ], + [ + "▁primetime", + -14.276873588562012 + ], + [ + "▁zeenews", + -14.276895523071289 + ], + [ + "▁steeply", + -14.276970863342285 + ], + [ + "afari", + -14.277003288269043 + ], + [ + "▁Vulture", + -14.277037620544434 + ], + [ + "nable", + -14.277063369750977 + ], + [ + "▁brothel", + -14.277077674865723 + ], + [ + "▁Magdalene", + -14.277156829833984 + ], + [ + "▁bicarbonate", + -14.277170181274414 + ], + [ + "gues", + -14.277174949645996 + ], + [ + "▁undamaged", + -14.277182579040527 + ], + [ + "CSC", + -14.277201652526855 + ], + [ + "idas", + -14.277210235595703 + ], + [ + "▁Ä", + -14.27723217010498 + ], + [ + "▁McFarland", + -14.277247428894043 + ], + [ + "▁penance", + -14.277247428894043 + ], + [ + "zka", + -14.277277946472168 + ], + [ + "perform", + -14.27729606628418 + ], + [ + "▁motorbikes", + -14.277328491210938 + ], + [ + "rification", + -14.277338027954102 + ], + [ + "▁spasm", + -14.277372360229492 + ], + [ + "▁flexion", + -14.277379035949707 + ], + [ + "rami", + -14.277400970458984 + ], + [ + "eligible", + -14.277430534362793 + ], + [ + "cron", + -14.277434349060059 + ], + [ + "▁Mickelson", + -14.277445793151855 + ], + [ + "▁Sutra", + -14.277484893798828 + ], + [ + "▁Azerbaijani", + -14.27751636505127 + ], + [ + "▁Kino", + -14.277521133422852 + ], + [ + "PLE", + -14.2775239944458 + ], + [ + "▁Corb", + -14.277524948120117 + ], + [ + "▁MULTI", + -14.277572631835938 + ], + [ + "ieve", + -14.277591705322266 + ], + [ + "jim", + -14.277628898620605 + ], + [ + "▁wetting", + -14.277666091918945 + ], + [ + "▁Shrink", + -14.277677536010742 + ], + [ + "▁Über", + -14.277705192565918 + ], + [ + "▁venomous", + -14.277706146240234 + ], + [ + "▁Corcoran", + -14.277746200561523 + ], + [ + "▁minibar", + -14.277848243713379 + ], + [ + "▁gravely", + -14.277894020080566 + ], + [ + "stellung", + -14.277915954589844 + ], + [ + "▁forefathers", + -14.27792739868164 + ], + [ + "图", + -14.277949333190918 + ], + [ + "▁compiles", + -14.277952194213867 + ], + [ + "▁Kipling", + -14.27802562713623 + ], + [ + "▁626", + -14.278037071228027 + ], + [ + "Byte", + -14.278060913085938 + ], + [ + "owe", + -14.278094291687012 + ], + [ + "▁GLOBAL", + -14.278108596801758 + ], + [ + "▁Arturo", + -14.27816104888916 + ], + [ + "▁Argus", + -14.278231620788574 + ], + [ + "▁clockwork", + -14.27823543548584 + ], + [ + "▁Carrington", + -14.278247833251953 + ], + [ + "▁communicators", + -14.278268814086914 + ], + [ + "▁Loader", + -14.278390884399414 + ], + [ + "▁precedents", + -14.278460502624512 + ], + [ + "▁374", + -14.27846622467041 + ], + [ + "▁october", + -14.278535842895508 + ], + [ + "▁Troubleshooting", + -14.278564453125 + ], + [ + "▁Bé", + -14.278565406799316 + ], + [ + "▁henceforth", + -14.2786226272583 + ], + [ + "ETF", + -14.278663635253906 + ], + [ + "▁Madi", + -14.278693199157715 + ], + [ + "SQ", + -14.278721809387207 + ], + [ + "urt", + -14.278791427612305 + ], + [ + "067", + -14.27885627746582 + ], + [ + "▁artsy", + -14.278878211975098 + ], + [ + "Fear", + -14.278884887695312 + ], + [ + "añ", + -14.279012680053711 + ], + [ + "£2", + -14.279035568237305 + ], + [ + "▁neared", + -14.279053688049316 + ], + [ + "disease", + -14.27906608581543 + ], + [ + "▁Showers", + -14.279069900512695 + ], + [ + "▁Mov", + -14.279094696044922 + ], + [ + "▁Encouraging", + -14.27911376953125 + ], + [ + "▁statuses", + -14.279151916503906 + ], + [ + "▁£17", + -14.279153823852539 + ], + [ + "unu", + -14.279156684875488 + ], + [ + "▁Freshwater", + -14.279170989990234 + ], + [ + "▁hushed", + -14.279172897338867 + ], + [ + "▁Cereal", + -14.27918529510498 + ], + [ + "▁Analyse", + -14.279202461242676 + ], + [ + "▁Braille", + -14.279212951660156 + ], + [ + "▁Garza", + -14.279212951660156 + ], + [ + "▁REACH", + -14.279234886169434 + ], + [ + "▁Sati", + -14.279264450073242 + ], + [ + "▁Wildfire", + -14.279282569885254 + ], + [ + "ranger", + -14.27931022644043 + ], + [ + "▁touchpad", + -14.27932071685791 + ], + [ + "▁syringes", + -14.279373168945312 + ], + [ + "▁pounce", + -14.279396057128906 + ], + [ + "▁sufferings", + -14.279399871826172 + ], + [ + "▁Readings", + -14.279419898986816 + ], + [ + "▁baffle", + -14.279458045959473 + ], + [ + "▁debunked", + -14.27950382232666 + ], + [ + "▁hyphen", + -14.27950668334961 + ], + [ + "▁Smiling", + -14.279590606689453 + ], + [ + "▁manning", + -14.279661178588867 + ], + [ + "▁Biosciences", + -14.279684066772461 + ], + [ + "▁Une", + -14.279687881469727 + ], + [ + "Eleven", + -14.27969741821289 + ], + [ + "▁unoccupied", + -14.279702186584473 + ], + [ + "attached", + -14.279703140258789 + ], + [ + "▁Rosewood", + -14.279709815979004 + ], + [ + "mick", + -14.279722213745117 + ], + [ + "▁Priory", + -14.279779434204102 + ], + [ + "▁transgressions", + -14.279789924621582 + ], + [ + "zoom", + -14.279790878295898 + ], + [ + "▁shaver", + -14.279806137084961 + ], + [ + "prep", + -14.279823303222656 + ], + [ + "▁wronged", + -14.280014991760254 + ], + [ + "esso", + -14.28001594543457 + ], + [ + "▁donates", + -14.280035018920898 + ], + [ + "▁Sonos", + -14.280052185058594 + ], + [ + "▁aquariums", + -14.280057907104492 + ], + [ + "▁Ponzi", + -14.280065536499023 + ], + [ + "▁STM", + -14.280080795288086 + ], + [ + "istor", + -14.28009033203125 + ], + [ + "▁irrevocably", + -14.280113220214844 + ], + [ + "▁Triad", + -14.28014850616455 + ], + [ + "▁cuttings", + -14.280176162719727 + ], + [ + "▁Poplar", + -14.28020191192627 + ], + [ + "bearer", + -14.280214309692383 + ], + [ + "▁cranked", + -14.280271530151367 + ], + [ + "▁381", + -14.28027629852295 + ], + [ + "▁Cupertino", + -14.280288696289062 + ], + [ + "▁Tsunami", + -14.280292510986328 + ], + [ + "▁387", + -14.280309677124023 + ], + [ + "▁soya", + -14.280318260192871 + ], + [ + "▁Coffey", + -14.280359268188477 + ], + [ + "▁Countless", + -14.280393600463867 + ], + [ + "▁Casio", + -14.280394554138184 + ], + [ + "haw", + -14.280402183532715 + ], + [ + "▁Negotiations", + -14.280423164367676 + ], + [ + "▁devolution", + -14.280426979064941 + ], + [ + "▁Archery", + -14.280466079711914 + ], + [ + "▁battalions", + -14.280471801757812 + ], + [ + "▁pecking", + -14.280494689941406 + ], + [ + "AME", + -14.280505180358887 + ], + [ + "kong", + -14.280532836914062 + ], + [ + "▁Jefferies", + -14.280564308166504 + ], + [ + "▁Eller", + -14.280611038208008 + ], + [ + "▁wafers", + -14.280613899230957 + ], + [ + "▁aback", + -14.280678749084473 + ], + [ + "Task", + -14.280726432800293 + ], + [ + "▁Accelerated", + -14.280731201171875 + ], + [ + "▁MACHINE", + -14.280760765075684 + ], + [ + "classes", + -14.280762672424316 + ], + [ + "cognitive", + -14.280763626098633 + ], + [ + "▁probed", + -14.280777931213379 + ], + [ + "▁Xie", + -14.280789375305176 + ], + [ + "▁bevy", + -14.280791282653809 + ], + [ + "▁Shih", + -14.280808448791504 + ], + [ + "Technical", + -14.280817985534668 + ], + [ + "▁Yoda", + -14.280838012695312 + ], + [ + "▁Masjid", + -14.28085994720459 + ], + [ + "▁Delightful", + -14.280879974365234 + ], + [ + "1700", + -14.280904769897461 + ], + [ + "▁aprons", + -14.28091049194336 + ], + [ + "▁KAT", + -14.281002044677734 + ], + [ + "▁Freezer", + -14.281038284301758 + ], + [ + "▁txt", + -14.28104019165039 + ], + [ + "837", + -14.281071662902832 + ], + [ + "▁McCo", + -14.281071662902832 + ], + [ + "▁mul", + -14.281075477600098 + ], + [ + "sentence", + -14.281085014343262 + ], + [ + "▁519", + -14.28113079071045 + ], + [ + "▁uninteresting", + -14.281132698059082 + ], + [ + "rif", + -14.281133651733398 + ], + [ + "chino", + -14.281329154968262 + ], + [ + "speaker", + -14.281340599060059 + ], + [ + "▁Refinery", + -14.281352043151855 + ], + [ + "▁unjustified", + -14.281366348266602 + ], + [ + "▁Gingerbread", + -14.281393051147461 + ], + [ + "sqm", + -14.28139591217041 + ], + [ + "ITION", + -14.281417846679688 + ], + [ + "▁Boundaries", + -14.28142261505127 + ], + [ + "retail", + -14.281497955322266 + ], + [ + "▁Sow", + -14.281573295593262 + ], + [ + "▁CERN", + -14.281586647033691 + ], + [ + "crats", + -14.281593322753906 + ], + [ + "▁Lipp", + -14.281610488891602 + ], + [ + "▁craters", + -14.281614303588867 + ], + [ + "063", + -14.281617164611816 + ], + [ + "▁Helms", + -14.281655311584473 + ], + [ + "▁HUB", + -14.281660079956055 + ], + [ + "leaders", + -14.281704902648926 + ], + [ + "▁Mulligan", + -14.281756401062012 + ], + [ + "guer", + -14.281774520874023 + ], + [ + "▁Atmos", + -14.281798362731934 + ], + [ + "▁sweeten", + -14.281822204589844 + ], + [ + "chio", + -14.281830787658691 + ], + [ + "▁compressive", + -14.281834602355957 + ], + [ + "sue", + -14.281867027282715 + ], + [ + "▁ENTIRE", + -14.281890869140625 + ], + [ + "▁acronyms", + -14.281892776489258 + ], + [ + "▁microfilm", + -14.281904220581055 + ], + [ + "▁rehearsed", + -14.28190803527832 + ], + [ + "▁Frye", + -14.281938552856445 + ], + [ + "▁Beavers", + -14.281966209411621 + ], + [ + "elson", + -14.28196907043457 + ], + [ + "Comment", + -14.281970024108887 + ], + [ + "bw", + -14.282001495361328 + ], + [ + "▁MHC", + -14.282021522521973 + ], + [ + "drift", + -14.282024383544922 + ], + [ + "cw", + -14.282033920288086 + ], + [ + "846", + -14.28204345703125 + ], + [ + "764", + -14.282048225402832 + ], + [ + "▁Batter", + -14.282073020935059 + ], + [ + "gif", + -14.282073974609375 + ], + [ + "bris", + -14.28207778930664 + ], + [ + "▁Andromeda", + -14.282079696655273 + ], + [ + "▁scallop", + -14.282157897949219 + ], + [ + "▁nouveau", + -14.282171249389648 + ], + [ + "▁Swain", + -14.282196998596191 + ], + [ + "oxin", + -14.282198905944824 + ], + [ + "▁Regatta", + -14.282214164733887 + ], + [ + "utra", + -14.282232284545898 + ], + [ + "▁как", + -14.282289505004883 + ], + [ + "▁ABI", + -14.282358169555664 + ], + [ + "TRI", + -14.282400131225586 + ], + [ + "DAL", + -14.282416343688965 + ], + [ + "▁microwaves", + -14.282471656799316 + ], + [ + "▁Sampling", + -14.28249740600586 + ], + [ + "ital", + -14.282586097717285 + ], + [ + "▁Collapse", + -14.282623291015625 + ], + [ + "trac", + -14.28264331817627 + ], + [ + "▁Lop", + -14.282700538635254 + ], + [ + "ylan", + -14.282718658447266 + ], + [ + "▁Masses", + -14.282750129699707 + ], + [ + "fused", + -14.282792091369629 + ], + [ + "▁worshiped", + -14.282857894897461 + ], + [ + "게", + -14.282868385314941 + ], + [ + "▁undated", + -14.282873153686523 + ], + [ + "▁virulent", + -14.28292465209961 + ], + [ + "▁gleam", + -14.282950401306152 + ], + [ + "erol", + -14.282955169677734 + ], + [ + "▁Loaf", + -14.282955169677734 + ], + [ + "043", + -14.282957077026367 + ], + [ + "▁edu", + -14.28298568725586 + ], + [ + "▁antlers", + -14.283085823059082 + ], + [ + "grav", + -14.283137321472168 + ], + [ + "▁clichés", + -14.28319263458252 + ], + [ + "iosis", + -14.28323745727539 + ], + [ + "▁Selfie", + -14.283249855041504 + ], + [ + "▁acetyl", + -14.283297538757324 + ], + [ + "▁Absorb", + -14.283299446105957 + ], + [ + "▁Improv", + -14.283318519592285 + ], + [ + "▁indict", + -14.283341407775879 + ], + [ + "▁Drummer", + -14.283374786376953 + ], + [ + "▁Blount", + -14.283387184143066 + ], + [ + "▁sandalwood", + -14.283388137817383 + ], + [ + "lka", + -14.283474922180176 + ], + [ + "▁Colgate", + -14.283486366271973 + ], + [ + "tinger", + -14.283555030822754 + ], + [ + "▁EXPO", + -14.283628463745117 + ], + [ + "▁bequest", + -14.283636093139648 + ], + [ + "▁ISLAND", + -14.283658981323242 + ], + [ + "▁lotto", + -14.283659934997559 + ], + [ + "AIS", + -14.283674240112305 + ], + [ + "liant", + -14.283720016479492 + ], + [ + "▁Gadget", + -14.283742904663086 + ], + [ + "▁TDI", + -14.283760070800781 + ], + [ + "▁Displaying", + -14.283830642700195 + ], + [ + "▁Gaspar", + -14.283868789672852 + ], + [ + "▁1819", + -14.283937454223633 + ], + [ + "▁NEX", + -14.283958435058594 + ], + [ + "▁RICHARD", + -14.283964157104492 + ], + [ + "parse", + -14.283967971801758 + ], + [ + "▁Amusement", + -14.284015655517578 + ], + [ + "▁Plex", + -14.284040451049805 + ], + [ + "▁Extending", + -14.284048080444336 + ], + [ + "▁cuteness", + -14.2840576171875 + ], + [ + "nani", + -14.284066200256348 + ], + [ + "▁BCA", + -14.284071922302246 + ], + [ + "▁malaise", + -14.284077644348145 + ], + [ + "busting", + -14.284090042114258 + ], + [ + "▁crickets", + -14.28413200378418 + ], + [ + "▁ICP", + -14.284140586853027 + ], + [ + "▁liber", + -14.284158706665039 + ], + [ + "▁Lockhart", + -14.284165382385254 + ], + [ + "933", + -14.284193992614746 + ], + [ + "▁McNeil", + -14.284219741821289 + ], + [ + "▁refuel", + -14.284219741821289 + ], + [ + "▁Cardboard", + -14.284269332885742 + ], + [ + "▁Notices", + -14.284293174743652 + ], + [ + "▁Honduran", + -14.284302711486816 + ], + [ + "▁stinking", + -14.284305572509766 + ], + [ + "idian", + -14.284331321716309 + ], + [ + "▁waterfowl", + -14.284354209899902 + ], + [ + "си", + -14.284396171569824 + ], + [ + "butyl", + -14.284428596496582 + ], + [ + "▁CMP", + -14.284459114074707 + ], + [ + "Default", + -14.284497261047363 + ], + [ + "▁gorillas", + -14.284524917602539 + ], + [ + "▁Kazakh", + -14.28456974029541 + ], + [ + "plasm", + -14.284570693969727 + ], + [ + "bucket", + -14.284601211547852 + ], + [ + "Doo", + -14.28463077545166 + ], + [ + "▁Lakeview", + -14.284640312194824 + ], + [ + "intentioned", + -14.284687042236328 + ], + [ + "▁unfiltered", + -14.284721374511719 + ], + [ + "▁Conti", + -14.2847261428833 + ], + [ + "▁Dutchman", + -14.284786224365234 + ], + [ + "▁solubility", + -14.28479290008545 + ], + [ + "▁Themed", + -14.284812927246094 + ], + [ + "▁Mussolini", + -14.284817695617676 + ], + [ + "▁Clarion", + -14.284843444824219 + ], + [ + "▁delinquency", + -14.284895896911621 + ], + [ + "UMP", + -14.284931182861328 + ], + [ + "▁changeable", + -14.28498649597168 + ], + [ + "▁Zhen", + -14.285037994384766 + ], + [ + "▁37°", + -14.285041809082031 + ], + [ + "▁Negro", + -14.28504467010498 + ], + [ + "▁ASI", + -14.285051345825195 + ], + [ + "▁miami", + -14.28507137298584 + ], + [ + "▁nM", + -14.285078048706055 + ], + [ + "▁geologist", + -14.285104751586914 + ], + [ + "▁POR", + -14.285124778747559 + ], + [ + "▁Locking", + -14.28513240814209 + ], + [ + "Julie", + -14.28515911102295 + ], + [ + "recommended", + -14.285177230834961 + ], + [ + "▁segue", + -14.285224914550781 + ], + [ + "▁unitary", + -14.285248756408691 + ], + [ + "▁Henrietta", + -14.285404205322266 + ], + [ + "chron", + -14.285409927368164 + ], + [ + "▁secession", + -14.285439491271973 + ], + [ + "▁hypothermia", + -14.285444259643555 + ], + [ + "▁harbors", + -14.28544807434082 + ], + [ + "▁jetty", + -14.28547477722168 + ], + [ + "nv", + -14.28548526763916 + ], + [ + "proxy", + -14.285493850708008 + ], + [ + "enterprise", + -14.285499572753906 + ], + [ + "▁Tivoli", + -14.285529136657715 + ], + [ + "uting", + -14.285538673400879 + ], + [ + "District", + -14.285542488098145 + ], + [ + "▁elongation", + -14.285561561584473 + ], + [ + "▁sorghum", + -14.285568237304688 + ], + [ + "▁Teh", + -14.285572052001953 + ], + [ + "SSI", + -14.285614013671875 + ], + [ + "▁wich", + -14.285618782043457 + ], + [ + "enforcement", + -14.285638809204102 + ], + [ + "▁Oatmeal", + -14.285640716552734 + ], + [ + "Bed", + -14.285659790039062 + ], + [ + "▁bearers", + -14.285688400268555 + ], + [ + "▁Informed", + -14.285731315612793 + ], + [ + "▁lard", + -14.285770416259766 + ], + [ + "▁418", + -14.285799026489258 + ], + [ + "essays", + -14.28581714630127 + ], + [ + "▁ي", + -14.285855293273926 + ], + [ + "▁NIA", + -14.285860061645508 + ], + [ + "▁Qualifier", + -14.286025047302246 + ], + [ + "▁ideation", + -14.28605842590332 + ], + [ + "▁ketones", + -14.286092758178711 + ], + [ + "▁Challenging", + -14.28613567352295 + ], + [ + "▁Kita", + -14.28615665435791 + ], + [ + "▁sawmill", + -14.286173820495605 + ], + [ + "dyn", + -14.286177635192871 + ], + [ + "▁Racine", + -14.2861909866333 + ], + [ + "078", + -14.28624153137207 + ], + [ + "▁Flushing", + -14.286291122436523 + ], + [ + "▁hardwoods", + -14.286293983459473 + ], + [ + "▁Winthrop", + -14.2863130569458 + ], + [ + "▁507", + -14.286314010620117 + ], + [ + "ս", + -14.286338806152344 + ], + [ + "▁ISC", + -14.286347389221191 + ], + [ + "▁können", + -14.286391258239746 + ], + [ + "▁Masterpiece", + -14.286396026611328 + ], + [ + "Calc", + -14.28641128540039 + ], + [ + "azz", + -14.286479949951172 + ], + [ + "▁reassignment", + -14.286493301391602 + ], + [ + "Course", + -14.286537170410156 + ], + [ + "▁Columbian", + -14.28656005859375 + ], + [ + "▁corny", + -14.28659439086914 + ], + [ + "orah", + -14.286596298217773 + ], + [ + "▁acquittal", + -14.286602973937988 + ], + [ + "▁totes", + -14.286602973937988 + ], + [ + "▁slugs", + -14.28669261932373 + ], + [ + "▁Diff", + -14.286735534667969 + ], + [ + "▁merchantability", + -14.286755561828613 + ], + [ + "▁tampered", + -14.286770820617676 + ], + [ + "▁winless", + -14.286785125732422 + ], + [ + "▁rescinded", + -14.286796569824219 + ], + [ + "▁fangs", + -14.286800384521484 + ], + [ + "▁poss", + -14.286813735961914 + ], + [ + "▁SOMETHING", + -14.286816596984863 + ], + [ + "▁panting", + -14.286822319030762 + ], + [ + "hola", + -14.286911010742188 + ], + [ + "ío", + -14.286930084228516 + ], + [ + "Gray", + -14.286966323852539 + ], + [ + "Eyes", + -14.286979675292969 + ], + [ + "▁Londoners", + -14.286982536315918 + ], + [ + "▁fertiliser", + -14.287026405334473 + ], + [ + "▁telemedicine", + -14.287075996398926 + ], + [ + "▁Oceanside", + -14.287077903747559 + ], + [ + "▁prioritization", + -14.287091255187988 + ], + [ + "▁Kuni", + -14.287158966064453 + ], + [ + "▁affording", + -14.28718090057373 + ], + [ + "▁Widely", + -14.287202835083008 + ], + [ + "Owned", + -14.287213325500488 + ], + [ + "▁splendour", + -14.287240028381348 + ], + [ + "år", + -14.287254333496094 + ], + [ + "▁risers", + -14.287302017211914 + ], + [ + "▁verdant", + -14.28732681274414 + ], + [ + "▁panther", + -14.287336349487305 + ], + [ + "citizens", + -14.287371635437012 + ], + [ + "▁Preacher", + -14.287374496459961 + ], + [ + "▁Reflex", + -14.287375450134277 + ], + [ + "▁Explaining", + -14.287389755249023 + ], + [ + "Int", + -14.287399291992188 + ], + [ + "▁beggar", + -14.287433624267578 + ], + [ + "▁Cristo", + -14.287466049194336 + ], + [ + "▁Segal", + -14.287467956542969 + ], + [ + "▁CUSTOM", + -14.287514686584473 + ], + [ + "▁antelope", + -14.287561416625977 + ], + [ + "▁hurl", + -14.287566184997559 + ], + [ + "▁pilgrim", + -14.28757381439209 + ], + [ + "▁accomodation", + -14.287606239318848 + ], + [ + "▁posses", + -14.287610054016113 + ], + [ + "▁portraiture", + -14.287625312805176 + ], + [ + "focal", + -14.287745475769043 + ], + [ + "▁aorta", + -14.287758827209473 + ], + [ + "▁SCS", + -14.287769317626953 + ], + [ + "▁phosphor", + -14.287796974182129 + ], + [ + "▁heartless", + -14.28780746459961 + ], + [ + "▁insurrection", + -14.28783130645752 + ], + [ + "▁freaky", + -14.287858009338379 + ], + [ + "▁MPI", + -14.28796100616455 + ], + [ + "LIA", + -14.287975311279297 + ], + [ + "BOT", + -14.287992477416992 + ], + [ + "▁hoisted", + -14.287993431091309 + ], + [ + "▁unremarkable", + -14.288020133972168 + ], + [ + "▁Peet", + -14.288026809692383 + ], + [ + "▁Burnt", + -14.288039207458496 + ], + [ + "ilian", + -14.288077354431152 + ], + [ + "hailing", + -14.288116455078125 + ], + [ + "AFF", + -14.288124084472656 + ], + [ + "▁Hp", + -14.288134574890137 + ], + [ + "▁dissident", + -14.288137435913086 + ], + [ + "Wan", + -14.288139343261719 + ], + [ + "▁Mariner", + -14.288172721862793 + ], + [ + "▁quads", + -14.288192749023438 + ], + [ + "▁Ebooks", + -14.28821086883545 + ], + [ + "▁Gard", + -14.288251876831055 + ], + [ + "▁Sable", + -14.28838062286377 + ], + [ + "▁Vouchers", + -14.288445472717285 + ], + [ + "▁headlamps", + -14.28845500946045 + ], + [ + "▁weirdest", + -14.288467407226562 + ], + [ + "acle", + -14.28851318359375 + ], + [ + "▁cutouts", + -14.288519859313965 + ], + [ + "▁Litt", + -14.288548469543457 + ], + [ + "▁goblins", + -14.28855037689209 + ], + [ + "POL", + -14.288592338562012 + ], + [ + "cosa", + -14.288610458374023 + ], + [ + "▁Montague", + -14.288617134094238 + ], + [ + "▁Skincare", + -14.288625717163086 + ], + [ + "▁Harlequin", + -14.288647651672363 + ], + [ + "Heaven", + -14.288676261901855 + ], + [ + "buri", + -14.288688659667969 + ], + [ + "sah", + -14.288731575012207 + ], + [ + "▁Rectangle", + -14.288732528686523 + ], + [ + "▁Marguerite", + -14.288797378540039 + ], + [ + "▁Solitaire", + -14.288806915283203 + ], + [ + "▁tarts", + -14.288814544677734 + ], + [ + "▁Millar", + -14.288856506347656 + ], + [ + "▁706", + -14.288901329040527 + ], + [ + "▁surrogacy", + -14.288902282714844 + ], + [ + "▁Prepaid", + -14.288926124572754 + ], + [ + "▁decreed", + -14.288928985595703 + ], + [ + "oF", + -14.28892993927002 + ], + [ + "eez", + -14.288969993591309 + ], + [ + "Anthony", + -14.289037704467773 + ], + [ + "mig", + -14.289050102233887 + ], + [ + "▁LES", + -14.289061546325684 + ], + [ + "▁Complainant", + -14.289080619812012 + ], + [ + "Las", + -14.289111137390137 + ], + [ + "hiko", + -14.28916072845459 + ], + [ + "▁Antrim", + -14.28937816619873 + ], + [ + "Connection", + -14.289383888244629 + ], + [ + "PHP", + -14.289432525634766 + ], + [ + "▁phentermine", + -14.28946590423584 + ], + [ + "▁Villages", + -14.28947925567627 + ], + [ + "▁tumbler", + -14.28950309753418 + ], + [ + "▁Historians", + -14.289558410644531 + ], + [ + "perishable", + -14.28956127166748 + ], + [ + "▁Emile", + -14.289568901062012 + ], + [ + "▁Capsules", + -14.289589881896973 + ], + [ + "▁Dusk", + -14.289618492126465 + ], + [ + "▁naturalistic", + -14.28967571258545 + ], + [ + "▁Vikram", + -14.289741516113281 + ], + [ + "▁Cupcakes", + -14.28979206085205 + ], + [ + "922", + -14.28984260559082 + ], + [ + "▁Travellers", + -14.289859771728516 + ], + [ + "▁Campos", + -14.289892196655273 + ], + [ + "▁Sikkim", + -14.289926528930664 + ], + [ + "▁Cowell", + -14.289947509765625 + ], + [ + "▁Bachmann", + -14.289979934692383 + ], + [ + "▁posturing", + -14.290009498596191 + ], + [ + "▁Mena", + -14.290040969848633 + ], + [ + "▁anyplace", + -14.290057182312012 + ], + [ + "▁Stoic", + -14.290064811706543 + ], + [ + "▁secures", + -14.290084838867188 + ], + [ + "▁Laredo", + -14.290120124816895 + ], + [ + "▁ARISING", + -14.290153503417969 + ], + [ + "▁daft", + -14.290160179138184 + ], + [ + "▁CROSS", + -14.290197372436523 + ], + [ + "▁gb", + -14.290206909179688 + ], + [ + "▁Templeton", + -14.290217399597168 + ], + [ + "▁DAS", + -14.2902250289917 + ], + [ + "ulos", + -14.290227890014648 + ], + [ + "▁Afghans", + -14.290260314941406 + ], + [ + "▁hopefuls", + -14.290329933166504 + ], + [ + "▁george", + -14.290349006652832 + ], + [ + "rba", + -14.290487289428711 + ], + [ + "구", + -14.29055118560791 + ], + [ + "▁Shil", + -14.290556907653809 + ], + [ + "aryl", + -14.290578842163086 + ], + [ + "▁haw", + -14.290609359741211 + ], + [ + "▁elongate", + -14.290610313415527 + ], + [ + "Offer", + -14.290640830993652 + ], + [ + "Island", + -14.290690422058105 + ], + [ + "▁ketone", + -14.290743827819824 + ], + [ + "▁sulphate", + -14.290753364562988 + ], + [ + "▁interned", + -14.290762901306152 + ], + [ + "▁tirade", + -14.290776252746582 + ], + [ + "witted", + -14.290778160095215 + ], + [ + "▁Freelancer", + -14.2908296585083 + ], + [ + "▁Perrin", + -14.290875434875488 + ], + [ + "▁metabolite", + -14.29092025756836 + ], + [ + "▁Distress", + -14.290976524353027 + ], + [ + "▁Gautam", + -14.290977478027344 + ], + [ + "▁Rwandan", + -14.291024208068848 + ], + [ + "▁infractions", + -14.291057586669922 + ], + [ + "▁paylines", + -14.291059494018555 + ], + [ + "▁Corr", + -14.291085243225098 + ], + [ + "Electric", + -14.29109001159668 + ], + [ + "▁Stearns", + -14.291139602661133 + ], + [ + "▁motility", + -14.29114055633545 + ], + [ + "▁dingy", + -14.29121208190918 + ], + [ + "chten", + -14.291220664978027 + ], + [ + "▁boogie", + -14.291280746459961 + ], + [ + "gf", + -14.29129409790039 + ], + [ + "▁Madhu", + -14.291304588317871 + ], + [ + "▁overlaid", + -14.291316986083984 + ], + [ + "▁cornbread", + -14.29135799407959 + ], + [ + "halo", + -14.291376113891602 + ], + [ + "uniform", + -14.291418075561523 + ], + [ + "▁Topper", + -14.291422843933105 + ], + [ + "▁posthumously", + -14.291439056396484 + ], + [ + "▁trampled", + -14.291439056396484 + ], + [ + "transparent", + -14.291441917419434 + ], + [ + "▁stratification", + -14.291460037231445 + ], + [ + "▁foolproof", + -14.291494369506836 + ], + [ + "tear", + -14.291505813598633 + ], + [ + "Lex", + -14.29156494140625 + ], + [ + "▁STC", + -14.291598320007324 + ], + [ + "▁Smurf", + -14.291726112365723 + ], + [ + "▁GLA", + -14.29173469543457 + ], + [ + "▁foiled", + -14.291742324829102 + ], + [ + "्", + -14.291756629943848 + ], + [ + "▁Melon", + -14.291786193847656 + ], + [ + "▁Schoen", + -14.291814804077148 + ], + [ + "▁november", + -14.29182243347168 + ], + [ + "▁Radha", + -14.291825294494629 + ], + [ + "▁operable", + -14.291826248168945 + ], + [ + "▁Coeur", + -14.2918701171875 + ], + [ + "lighted", + -14.291912078857422 + ], + [ + "▁SNES", + -14.291915893554688 + ], + [ + "▁Hiram", + -14.291930198669434 + ], + [ + "▁DirectX", + -14.2919340133667 + ], + [ + "▁Truffle", + -14.291993141174316 + ], + [ + "▁FICO", + -14.292007446289062 + ], + [ + "▁adj", + -14.292046546936035 + ], + [ + "▁habitually", + -14.292065620422363 + ], + [ + "▁ecumenical", + -14.29207706451416 + ], + [ + "Layer", + -14.292081832885742 + ], + [ + "▁PIA", + -14.292128562927246 + ], + [ + "▁bulletins", + -14.292160034179688 + ], + [ + "же", + -14.292168617248535 + ], + [ + "▁Johor", + -14.292177200317383 + ], + [ + "▁devouring", + -14.292206764221191 + ], + [ + "▁WIC", + -14.292213439941406 + ], + [ + "▁indiscriminate", + -14.292243003845215 + ], + [ + "077", + -14.292289733886719 + ], + [ + "cient", + -14.292309761047363 + ], + [ + "▁dogmatic", + -14.292313575744629 + ], + [ + "▁epidemics", + -14.292326927185059 + ], + [ + "▁Н", + -14.292405128479004 + ], + [ + "transform", + -14.292440414428711 + ], + [ + "▁Maoist", + -14.292449951171875 + ], + [ + "▁Salim", + -14.29246997833252 + ], + [ + "adin", + -14.292502403259277 + ], + [ + "▁Cinco", + -14.292513847351074 + ], + [ + "phys", + -14.292523384094238 + ], + [ + "▁ripening", + -14.292549133300781 + ], + [ + "▁Whiting", + -14.292552947998047 + ], + [ + "▁Electromagnetic", + -14.292556762695312 + ], + [ + "▁transgression", + -14.292564392089844 + ], + [ + "▁Bohemia", + -14.292593002319336 + ], + [ + "fond", + -14.292619705200195 + ], + [ + "eir", + -14.292628288269043 + ], + [ + "▁dutifully", + -14.292635917663574 + ], + [ + "▁EXCEPT", + -14.2926607131958 + ], + [ + "identity", + -14.29267692565918 + ], + [ + "1001", + -14.292702674865723 + ], + [ + "▁infusions", + -14.292730331420898 + ], + [ + "▁assassinate", + -14.292741775512695 + ], + [ + "▁pes", + -14.292752265930176 + ], + [ + "▁shamed", + -14.292757987976074 + ], + [ + "▁Klu", + -14.29275894165039 + ], + [ + "1914", + -14.292778015136719 + ], + [ + "Edward", + -14.292792320251465 + ], + [ + "▁xi", + -14.292804718017578 + ], + [ + "▁perspiration", + -14.292813301086426 + ], + [ + "inflicted", + -14.292825698852539 + ], + [ + "▁Wreath", + -14.292852401733398 + ], + [ + "▁Chol", + -14.292888641357422 + ], + [ + "▁eschew", + -14.292916297912598 + ], + [ + "ên", + -14.29293155670166 + ], + [ + "▁Sake", + -14.293065071105957 + ], + [ + "▁symbolized", + -14.293157577514648 + ], + [ + "▁Aldridge", + -14.293183326721191 + ], + [ + "essen", + -14.293203353881836 + ], + [ + "▁aswell", + -14.293208122253418 + ], + [ + "▁rosé", + -14.293221473693848 + ], + [ + "LOL", + -14.293225288391113 + ], + [ + "▁Rafi", + -14.293246269226074 + ], + [ + "▁Eskimo", + -14.293255805969238 + ], + [ + "▁Foles", + -14.293296813964844 + ], + [ + "▁covet", + -14.293380737304688 + ], + [ + "▁Avila", + -14.293386459350586 + ], + [ + "pru", + -14.293421745300293 + ], + [ + "▁applesauce", + -14.29348087310791 + ], + [ + "▁dinghy", + -14.293484687805176 + ], + [ + "▁caso", + -14.293516159057617 + ], + [ + "sensory", + -14.293543815612793 + ], + [ + "▁Decent", + -14.29354476928711 + ], + [ + "▁registrants", + -14.293583869934082 + ], + [ + "▁fet", + -14.293599128723145 + ], + [ + "▁selectors", + -14.293614387512207 + ], + [ + "وا", + -14.29361629486084 + ], + [ + "▁Kö", + -14.293618202209473 + ], + [ + "IAS", + -14.293627738952637 + ], + [ + "STI", + -14.29365348815918 + ], + [ + "heard", + -14.293660163879395 + ], + [ + "▁Cretaceous", + -14.293681144714355 + ], + [ + "▁warping", + -14.293736457824707 + ], + [ + "▁Graffiti", + -14.29373836517334 + ], + [ + "▁Xeon", + -14.293744087219238 + ], + [ + "▁swears", + -14.293744087219238 + ], + [ + "tray", + -14.293756484985352 + ], + [ + "▁Luggage", + -14.293760299682617 + ], + [ + "▁TMC", + -14.293777465820312 + ], + [ + "▁trimmings", + -14.293806076049805 + ], + [ + "▁FinTech", + -14.293807983398438 + ], + [ + "▁tasteless", + -14.293850898742676 + ], + [ + "▁sleepover", + -14.293896675109863 + ], + [ + "ples", + -14.29390811920166 + ], + [ + "▁Sandberg", + -14.293929100036621 + ], + [ + "đ", + -14.29393196105957 + ], + [ + "▁codified", + -14.293977737426758 + ], + [ + "▁SALES", + -14.293997764587402 + ], + [ + "▁emitter", + -14.29404067993164 + ], + [ + "▁Peripheral", + -14.294063568115234 + ], + [ + "Jessica", + -14.294127464294434 + ], + [ + "practical", + -14.294139862060547 + ], + [ + "avia", + -14.294145584106445 + ], + [ + "▁masquerade", + -14.294214248657227 + ], + [ + "QI", + -14.294239044189453 + ], + [ + "▁Pompeii", + -14.294268608093262 + ], + [ + "793", + -14.294294357299805 + ], + [ + "▁Submitting", + -14.294295310974121 + ], + [ + "▁Broome", + -14.294380187988281 + ], + [ + "citizen", + -14.294408798217773 + ], + [ + "▁Malachi", + -14.294447898864746 + ], + [ + "ggers", + -14.294551849365234 + ], + [ + "▁Ghostbusters", + -14.294557571411133 + ], + [ + "▁outliers", + -14.294571876525879 + ], + [ + "▁MAJOR", + -14.294596672058105 + ], + [ + "▁Impressions", + -14.294696807861328 + ], + [ + "088", + -14.294726371765137 + ], + [ + "▁motioned", + -14.29472827911377 + ], + [ + "Fashion", + -14.294776916503906 + ], + [ + "▁unequivocal", + -14.294835090637207 + ], + [ + "uster", + -14.29484748840332 + ], + [ + "▁WHOLE", + -14.294902801513672 + ], + [ + "▁Torrey", + -14.294939041137695 + ], + [ + "▁Powerball", + -14.294999122619629 + ], + [ + "terror", + -14.295001029968262 + ], + [ + "▁Jad", + -14.295002937316895 + ], + [ + "▁Females", + -14.295004844665527 + ], + [ + "▁Ponce", + -14.295008659362793 + ], + [ + "▁Cheek", + -14.295014381408691 + ], + [ + "▁Worried", + -14.295027732849121 + ], + [ + "SEX", + -14.295065879821777 + ], + [ + "▁CSM", + -14.295065879821777 + ], + [ + "▁imparts", + -14.295110702514648 + ], + [ + "▁compels", + -14.29511833190918 + ], + [ + "▁consenting", + -14.295148849487305 + ], + [ + "▁Towne", + -14.295177459716797 + ], + [ + "▁herding", + -14.295178413391113 + ], + [ + "▁confessional", + -14.295254707336426 + ], + [ + "dren", + -14.295265197753906 + ], + [ + "▁Eucalyptus", + -14.295283317565918 + ], + [ + "▁Woodbury", + -14.295313835144043 + ], + [ + "▁Patents", + -14.295323371887207 + ], + [ + "▁Competitors", + -14.295339584350586 + ], + [ + "▁timbers", + -14.295378684997559 + ], + [ + "eben", + -14.295391082763672 + ], + [ + "▁burglars", + -14.295404434204102 + ], + [ + "▁calipers", + -14.295404434204102 + ], + [ + "▁hinders", + -14.295417785644531 + ], + [ + "▁quibble", + -14.295424461364746 + ], + [ + "▁Divers", + -14.295431137084961 + ], + [ + "▁Mukherjee", + -14.295453071594238 + ], + [ + "▁Narayan", + -14.295461654663086 + ], + [ + "▁nuke", + -14.29547119140625 + ], + [ + "939", + -14.295482635498047 + ], + [ + "▁contingencies", + -14.295486450195312 + ], + [ + "XM", + -14.295488357543945 + ], + [ + "egen", + -14.295495986938477 + ], + [ + "▁Wasp", + -14.295516014099121 + ], + [ + "▁VOD", + -14.295573234558105 + ], + [ + "▁KKK", + -14.29561710357666 + ], + [ + "ая", + -14.29565143585205 + ], + [ + "inks", + -14.295680046081543 + ], + [ + "▁counsellors", + -14.295723915100098 + ], + [ + "▁Redford", + -14.295770645141602 + ], + [ + "Labs", + -14.295821189880371 + ], + [ + "▁Hoyt", + -14.295822143554688 + ], + [ + "▁pylori", + -14.295830726623535 + ], + [ + "jm", + -14.295856475830078 + ], + [ + "▁Fittings", + -14.295866012573242 + ], + [ + "▁Impress", + -14.29587173461914 + ], + [ + "UW", + -14.295929908752441 + ], + [ + "▁Pageant", + -14.295947074890137 + ], + [ + "▁Oleg", + -14.295953750610352 + ], + [ + "pointed", + -14.29595947265625 + ], + [ + "▁McN", + -14.295992851257324 + ], + [ + "dura", + -14.29600715637207 + ], + [ + "HHS", + -14.296018600463867 + ], + [ + "shah", + -14.296092987060547 + ], + [ + "▁Sofas", + -14.296133041381836 + ], + [ + "▁VU", + -14.296144485473633 + ], + [ + "▁Tribeca", + -14.296149253845215 + ], + [ + "▁volumetric", + -14.296156883239746 + ], + [ + "▁reintroduced", + -14.296186447143555 + ], + [ + "▁Nada", + -14.296199798583984 + ], + [ + "▁rubles", + -14.296202659606934 + ], + [ + "▁Pecan", + -14.296217918395996 + ], + [ + "▁Taunton", + -14.296229362487793 + ], + [ + "anum", + -14.296257019042969 + ], + [ + "▁thomas", + -14.296287536621094 + ], + [ + "▁wrongfully", + -14.296329498291016 + ], + [ + "▁Rousey", + -14.296360969543457 + ], + [ + "vpn", + -14.296403884887695 + ], + [ + "▁snuggled", + -14.296405792236328 + ], + [ + "▁Lockwood", + -14.2964448928833 + ], + [ + "▁Mods", + -14.296448707580566 + ], + [ + "▁Mosley", + -14.296472549438477 + ], + [ + "▁regress", + -14.296520233154297 + ], + [ + "▁mallet", + -14.2965669631958 + ], + [ + "▁plutonium", + -14.296640396118164 + ], + [ + "▁curbs", + -14.296671867370605 + ], + [ + "bein", + -14.296744346618652 + ], + [ + "▁alpaca", + -14.296757698059082 + ], + [ + "▁nappy", + -14.296773910522461 + ], + [ + "▁unskilled", + -14.296808242797852 + ], + [ + "▁prescriptive", + -14.2968168258667 + ], + [ + "ʼ", + -14.296845436096191 + ], + [ + "▁transcribe", + -14.296873092651367 + ], + [ + "▁Leila", + -14.296891212463379 + ], + [ + "▁iconography", + -14.296895027160645 + ], + [ + "▁CTR", + -14.296911239624023 + ], + [ + "▁whitepaper", + -14.296967506408691 + ], + [ + "seeker", + -14.296985626220703 + ], + [ + "▁Cun", + -14.296995162963867 + ], + [ + "▁aggravation", + -14.297036170959473 + ], + [ + "▁Sabi", + -14.297043800354004 + ], + [ + "▁ESG", + -14.297107696533203 + ], + [ + "▁hydroxyl", + -14.297118186950684 + ], + [ + "▁Bullying", + -14.297150611877441 + ], + [ + "▁escalator", + -14.297152519226074 + ], + [ + "gence", + -14.297173500061035 + ], + [ + "aura", + -14.297182083129883 + ], + [ + "▁Creators", + -14.297224044799805 + ], + [ + "technik", + -14.297258377075195 + ], + [ + "▁Kni", + -14.297282218933105 + ], + [ + "▁Chev", + -14.297295570373535 + ], + [ + "▁skyrocketing", + -14.297320365905762 + ], + [ + "geb", + -14.297327041625977 + ], + [ + "▁vignette", + -14.29737377166748 + ], + [ + "▁Snowboard", + -14.297423362731934 + ], + [ + "▁MANAGEMENT", + -14.297426223754883 + ], + [ + "▁Getaway", + -14.297430992126465 + ], + [ + "▁Brahms", + -14.297446250915527 + ], + [ + "Iraq", + -14.29745864868164 + ], + [ + "▁pubic", + -14.297475814819336 + ], + [ + "द", + -14.297492980957031 + ], + [ + "▁Perpetual", + -14.29749584197998 + ], + [ + "▁Vilnius", + -14.297599792480469 + ], + [ + "▁Underworld", + -14.29763412475586 + ], + [ + "▁jeweler", + -14.297685623168945 + ], + [ + "▁Panhandle", + -14.297711372375488 + ], + [ + "▁residencies", + -14.297714233398438 + ], + [ + "▁Instinct", + -14.297722816467285 + ], + [ + "▁Flirt", + -14.297738075256348 + ], + [ + "▁modems", + -14.297740936279297 + ], + [ + "zul", + -14.29774284362793 + ], + [ + "▁prying", + -14.29776382446289 + ], + [ + "▁snore", + -14.297784805297852 + ], + [ + "▁중", + -14.297785758972168 + ], + [ + "▁unbridled", + -14.297796249389648 + ], + [ + "▁Prado", + -14.297826766967773 + ], + [ + "▁skirting", + -14.297874450683594 + ], + [ + "▁Quattro", + -14.297883033752441 + ], + [ + "OPA", + -14.297916412353516 + ], + [ + "▁SDN", + -14.297942161560059 + ], + [ + "▁Freed", + -14.298006057739258 + ], + [ + "▁Landscapes", + -14.29804515838623 + ], + [ + "▁Citroen", + -14.29813289642334 + ], + [ + "▁underlie", + -14.298192977905273 + ], + [ + "▁1826", + -14.298282623291016 + ], + [ + "Bass", + -14.298291206359863 + ], + [ + "▁dwindled", + -14.298311233520508 + ], + [ + "▁indisputable", + -14.298311233520508 + ], + [ + "▁Weave", + -14.298395156860352 + ], + [ + "activation", + -14.2983980178833 + ], + [ + "nitz", + -14.298420906066895 + ], + [ + "▁Skr", + -14.29843807220459 + ], + [ + "▁kim", + -14.298439979553223 + ], + [ + "Coll", + -14.298440933227539 + ], + [ + "▁latches", + -14.298455238342285 + ], + [ + "▁Quicken", + -14.298469543457031 + ], + [ + "capture", + -14.298476219177246 + ], + [ + "▁misrepresented", + -14.298532485961914 + ], + [ + "▁passageway", + -14.298537254333496 + ], + [ + "mek", + -14.298553466796875 + ], + [ + "▁Tuscaloosa", + -14.298583030700684 + ], + [ + "▁Nepalese", + -14.298583984375 + ], + [ + "philic", + -14.298653602600098 + ], + [ + "▁tas", + -14.298678398132324 + ], + [ + "communist", + -14.29869270324707 + ], + [ + "Bean", + -14.298707962036133 + ], + [ + "▁Nonlinear", + -14.298749923706055 + ], + [ + "▁oilfield", + -14.298754692077637 + ], + [ + "▁tucking", + -14.29879093170166 + ], + [ + "▁homeownership", + -14.298797607421875 + ], + [ + "▁headrest", + -14.298809051513672 + ], + [ + "▁Verbal", + -14.298822402954102 + ], + [ + "CRE", + -14.298830032348633 + ], + [ + "Coming", + -14.298858642578125 + ], + [ + "▁cass", + -14.298868179321289 + ], + [ + "▁protrusion", + -14.298887252807617 + ], + [ + "▁Ballad", + -14.298993110656738 + ], + [ + "▁pct", + -14.298998832702637 + ], + [ + "PAD", + -14.299012184143066 + ], + [ + "▁Earning", + -14.299017906188965 + ], + [ + "▁watercolors", + -14.29914379119873 + ], + [ + "conspirator", + -14.299154281616211 + ], + [ + "▁decorators", + -14.299171447753906 + ], + [ + "Creative", + -14.299178123474121 + ], + [ + "▁Praxis", + -14.299188613891602 + ], + [ + "ência", + -14.299201011657715 + ], + [ + "▁stratified", + -14.299297332763672 + ], + [ + "gart", + -14.299348831176758 + ], + [ + "cham", + -14.299363136291504 + ], + [ + "Daddy", + -14.2993803024292 + ], + [ + "▁Henning", + -14.2993803024292 + ], + [ + "▁İ", + -14.299397468566895 + ], + [ + "▁plu", + -14.299423217773438 + ], + [ + "▁Cheetah", + -14.299551010131836 + ], + [ + "물", + -14.299554824829102 + ], + [ + "▁MRSA", + -14.29956340789795 + ], + [ + "streaming", + -14.299607276916504 + ], + [ + "▁Castile", + -14.299640655517578 + ], + [ + "▁mantras", + -14.299663543701172 + ], + [ + "▁immeasurable", + -14.299683570861816 + ], + [ + "▁JEE", + -14.299707412719727 + ], + [ + "DRA", + -14.299720764160156 + ], + [ + "▁insoluble", + -14.299736976623535 + ], + [ + "▁Whitley", + -14.2997465133667 + ], + [ + "signature", + -14.299748420715332 + ], + [ + "▁Gruden", + -14.299901008605957 + ], + [ + "за", + -14.299954414367676 + ], + [ + "Sys", + -14.299973487854004 + ], + [ + "▁Snowflake", + -14.300004959106445 + ], + [ + "ENDER", + -14.30003547668457 + ], + [ + "Training", + -14.300111770629883 + ], + [ + "Army", + -14.300115585327148 + ], + [ + "▁Oversized", + -14.300227165222168 + ], + [ + "▁patterning", + -14.300256729125977 + ], + [ + "▁Hampstead", + -14.300369262695312 + ], + [ + "▁clade", + -14.300378799438477 + ], + [ + "buk", + -14.30043888092041 + ], + [ + "▁staked", + -14.300474166870117 + ], + [ + "▁margarita", + -14.300477027893066 + ], + [ + "▁Manta", + -14.300527572631836 + ], + [ + "▁CPE", + -14.30057430267334 + ], + [ + "▁Garg", + -14.300590515136719 + ], + [ + "amic", + -14.300633430480957 + ], + [ + "▁TALK", + -14.300634384155273 + ], + [ + "▁muslin", + -14.300636291503906 + ], + [ + "Damn", + -14.300644874572754 + ], + [ + "Ak", + -14.300647735595703 + ], + [ + "056", + -14.300653457641602 + ], + [ + "▁insta", + -14.300670623779297 + ], + [ + "▁Haa", + -14.300714492797852 + ], + [ + "▁Choral", + -14.300719261169434 + ], + [ + "▁Exporter", + -14.300725936889648 + ], + [ + "▁nissan", + -14.300740242004395 + ], + [ + "ır", + -14.300745964050293 + ], + [ + "ા", + -14.300753593444824 + ], + [ + "▁382", + -14.300764083862305 + ], + [ + "▁sociologist", + -14.300764083862305 + ], + [ + "nse", + -14.30077838897705 + ], + [ + "▁Sash", + -14.300821304321289 + ], + [ + "sword", + -14.300882339477539 + ], + [ + "1910", + -14.300971984863281 + ], + [ + "▁Stylus", + -14.30099105834961 + ], + [ + "wey", + -14.30102825164795 + ], + [ + "▁Andaman", + -14.301047325134277 + ], + [ + "gung", + -14.30105209350586 + ], + [ + "▁nibble", + -14.30108642578125 + ], + [ + "▁franchising", + -14.301095962524414 + ], + [ + "▁vos", + -14.301124572753906 + ], + [ + "▁togetherness", + -14.301133155822754 + ], + [ + "▁bathtubs", + -14.30114459991455 + ], + [ + "▁ganache", + -14.301218032836914 + ], + [ + "Amp", + -14.30125904083252 + ], + [ + "▁Crocodile", + -14.3013277053833 + ], + [ + "▁Descartes", + -14.301370620727539 + ], + [ + "▁Raqqa", + -14.301377296447754 + ], + [ + "▁conspiracies", + -14.301390647888184 + ], + [ + "▁recast", + -14.30140209197998 + ], + [ + "▁Sv", + -14.301441192626953 + ], + [ + "▁inevitability", + -14.301469802856445 + ], + [ + "mio", + -14.301474571228027 + ], + [ + "▁tribulation", + -14.301480293273926 + ], + [ + "▁Zappa", + -14.301530838012695 + ], + [ + "▁Hawkeye", + -14.30156135559082 + ], + [ + "inna", + -14.301592826843262 + ], + [ + "YER", + -14.301640510559082 + ], + [ + "▁Sabo", + -14.301655769348145 + ], + [ + "▁memorizing", + -14.301655769348145 + ], + [ + "▁FUND", + -14.301666259765625 + ], + [ + "aided", + -14.301676750183105 + ], + [ + "▁rosary", + -14.301682472229004 + ], + [ + "▁Galerie", + -14.301690101623535 + ], + [ + "▁Adm", + -14.301692962646484 + ], + [ + "▁voids", + -14.301852226257324 + ], + [ + "▁Rapture", + -14.301861763000488 + ], + [ + "▁Bobcats", + -14.301872253417969 + ], + [ + "▁loyalties", + -14.301913261413574 + ], + [ + "comfortable", + -14.301922798156738 + ], + [ + "scaling", + -14.301922798156738 + ], + [ + "▁727", + -14.301966667175293 + ], + [ + "▁TechCrunch", + -14.301984786987305 + ], + [ + "▁Kofi", + -14.302011489868164 + ], + [ + "▁BAS", + -14.302013397216797 + ], + [ + "▁FEATURES", + -14.302013397216797 + ], + [ + "ears", + -14.302022933959961 + ], + [ + "▁lactate", + -14.302024841308594 + ], + [ + "▁sweltering", + -14.302033424377441 + ], + [ + "▁Fudge", + -14.302038192749023 + ], + [ + "▁fraudsters", + -14.30207347869873 + ], + [ + "▁flav", + -14.302082061767578 + ], + [ + "▁adjusters", + -14.302106857299805 + ], + [ + "▁Exporters", + -14.302141189575195 + ], + [ + "▁escort", + -14.302168846130371 + ], + [ + "umu", + -14.302172660827637 + ], + [ + "sustainable", + -14.302186965942383 + ], + [ + "▁hypocrite", + -14.30224323272705 + ], + [ + "awley", + -14.302251815795898 + ], + [ + "▁Lesotho", + -14.302306175231934 + ], + [ + "coni", + -14.302393913269043 + ], + [ + "▁Syrah", + -14.302397727966309 + ], + [ + "▁coworking", + -14.302416801452637 + ], + [ + "▁Schell", + -14.302433013916016 + ], + [ + "FCC", + -14.302438735961914 + ], + [ + "▁Stow", + -14.302438735961914 + ], + [ + "977", + -14.30245590209961 + ], + [ + "Ant", + -14.302496910095215 + ], + [ + "▁muddle", + -14.30252456665039 + ], + [ + "jh", + -14.302533149719238 + ], + [ + "▁Annabelle", + -14.302555084228516 + ], + [ + "▁pollination", + -14.302570343017578 + ], + [ + "▁chatbot", + -14.302572250366211 + ], + [ + "▁Asbury", + -14.302665710449219 + ], + [ + "▁restlessness", + -14.302688598632812 + ], + [ + "chow", + -14.302715301513672 + ], + [ + "▁Flock", + -14.302789688110352 + ], + [ + "▁scissor", + -14.302789688110352 + ], + [ + "▁Gopal", + -14.302841186523438 + ], + [ + "ilin", + -14.30284595489502 + ], + [ + "remote", + -14.30284595489502 + ], + [ + "▁plantain", + -14.302849769592285 + ], + [ + "uble", + -14.302865982055664 + ], + [ + "▁Thickness", + -14.302887916564941 + ], + [ + "▁SUBSCRIBE", + -14.302909851074219 + ], + [ + "▁Guillaume", + -14.302943229675293 + ], + [ + "▁PPM", + -14.302958488464355 + ], + [ + "▁Ech", + -14.303011894226074 + ], + [ + "ने", + -14.303055763244629 + ], + [ + "▁Hala", + -14.303069114685059 + ], + [ + "INI", + -14.303088188171387 + ], + [ + "yg", + -14.303123474121094 + ], + [ + "▁unreasonably", + -14.303123474121094 + ], + [ + "▁ка", + -14.303153038024902 + ], + [ + "▁flutes", + -14.303173065185547 + ], + [ + "▁MATH", + -14.30317497253418 + ], + [ + "▁policyholders", + -14.303189277648926 + ], + [ + "▁Hermitage", + -14.303193092346191 + ], + [ + "▁recliners", + -14.303220748901367 + ], + [ + "▁Physio", + -14.30325984954834 + ], + [ + "▁McCullough", + -14.303268432617188 + ], + [ + "mona", + -14.303272247314453 + ], + [ + "▁compendium", + -14.303321838378906 + ], + [ + "▁interdependent", + -14.303333282470703 + ], + [ + "▁storybook", + -14.30334186553955 + ], + [ + "▁dx", + -14.303378105163574 + ], + [ + "▁radish", + -14.303390502929688 + ], + [ + "▁bluish", + -14.303436279296875 + ], + [ + "▁hydrolysis", + -14.303467750549316 + ], + [ + "▁sardines", + -14.303471565246582 + ], + [ + "REL", + -14.303565979003906 + ], + [ + "▁appetizing", + -14.3036470413208 + ], + [ + "▁Poetic", + -14.303670883178711 + ], + [ + "kilometer", + -14.303671836853027 + ], + [ + "▁forearms", + -14.303701400756836 + ], + [ + "▁ubuntu", + -14.303711891174316 + ], + [ + "liv", + -14.303735733032227 + ], + [ + "campaign", + -14.303766250610352 + ], + [ + "872", + -14.30378532409668 + ], + [ + "putation", + -14.303839683532715 + ], + [ + "belle", + -14.303906440734863 + ], + [ + "▁porting", + -14.30395793914795 + ], + [ + "▁actuarial", + -14.303966522216797 + ], + [ + "▁moaned", + -14.304023742675781 + ], + [ + "mea", + -14.304061889648438 + ], + [ + "celli", + -14.304067611694336 + ], + [ + "▁Moira", + -14.304092407226562 + ], + [ + "pw", + -14.304149627685547 + ], + [ + "▁monopolies", + -14.304165840148926 + ], + [ + "estimated", + -14.30417537689209 + ], + [ + "▁Militia", + -14.304210662841797 + ], + [ + "▁braised", + -14.304240226745605 + ], + [ + "▁VEHICLE", + -14.304465293884277 + ], + [ + "▁nolvadex", + -14.3045072555542 + ], + [ + "WK", + -14.30451774597168 + ], + [ + "▁blanc", + -14.304520606994629 + ], + [ + "▁Radiohead", + -14.30460262298584 + ], + [ + "▁machinations", + -14.30466079711914 + ], + [ + "▁malevolent", + -14.30471134185791 + ], + [ + "RAC", + -14.304762840270996 + ], + [ + "noma", + -14.30481243133545 + ], + [ + "▁psd", + -14.304824829101562 + ], + [ + "bung", + -14.304869651794434 + ], + [ + "▁matted", + -14.304889678955078 + ], + [ + "▁overexpression", + -14.30490493774414 + ], + [ + "lyte", + -14.30491828918457 + ], + [ + "estro", + -14.304987907409668 + ], + [ + "Yet", + -14.305065155029297 + ], + [ + "▁Moda", + -14.305121421813965 + ], + [ + "ehl", + -14.305150032043457 + ], + [ + "MQ", + -14.305152893066406 + ], + [ + "CHO", + -14.305154800415039 + ], + [ + "▁nettle", + -14.305192947387695 + ], + [ + "▁PPV", + -14.3052339553833 + ], + [ + "DEM", + -14.305301666259766 + ], + [ + "▁complicating", + -14.305316925048828 + ], + [ + "▁Gown", + -14.305346488952637 + ], + [ + "▁CART", + -14.30535888671875 + ], + [ + "▁stabilise", + -14.305401802062988 + ], + [ + "▁cityscape", + -14.305413246154785 + ], + [ + "▁т", + -14.305413246154785 + ], + [ + "▁seine", + -14.305459022521973 + ], + [ + "rui", + -14.305476188659668 + ], + [ + "▁Maddy", + -14.305486679077148 + ], + [ + "▁moderating", + -14.305496215820312 + ], + [ + "▁birthed", + -14.305500984191895 + ], + [ + "adora", + -14.305519104003906 + ], + [ + "▁heroines", + -14.305546760559082 + ], + [ + "erium", + -14.305553436279297 + ], + [ + "884", + -14.305561065673828 + ], + [ + "▁Zem", + -14.305562019348145 + ], + [ + "sari", + -14.305571556091309 + ], + [ + "▁Breckenridge", + -14.305583000183105 + ], + [ + "onite", + -14.305586814880371 + ], + [ + "▁christened", + -14.3056001663208 + ], + [ + "mera", + -14.305619239807129 + ], + [ + "▁Rowing", + -14.305643081665039 + ], + [ + "▁Crooked", + -14.305671691894531 + ], + [ + "▁Fung", + -14.305673599243164 + ], + [ + "▁snub", + -14.305675506591797 + ], + [ + "▁tranquillity", + -14.305678367614746 + ], + [ + "▁semiconductors", + -14.305715560913086 + ], + [ + "▁inflexible", + -14.305718421936035 + ], + [ + "diver", + -14.305746078491211 + ], + [ + "bong", + -14.305747032165527 + ], + [ + "uder", + -14.305754661560059 + ], + [ + "▁bandit", + -14.30577564239502 + ], + [ + "▁dll", + -14.305798530578613 + ], + [ + "▁whaling", + -14.305831909179688 + ], + [ + "▁transporters", + -14.305840492248535 + ], + [ + "్", + -14.305843353271484 + ], + [ + "▁dandy", + -14.305855751037598 + ], + [ + "▁reconstructive", + -14.305906295776367 + ], + [ + "▁tretinoin", + -14.305913925170898 + ], + [ + "▁Mitigation", + -14.30593204498291 + ], + [ + "▁unseat", + -14.305935859680176 + ], + [ + "▁Fem", + -14.305951118469238 + ], + [ + "hydr", + -14.305957794189453 + ], + [ + "OMO", + -14.30596923828125 + ], + [ + "▁mara", + -14.30600643157959 + ], + [ + "▁redirection", + -14.306020736694336 + ], + [ + "▁dashes", + -14.306032180786133 + ], + [ + "▁bachelorette", + -14.306038856506348 + ], + [ + "▁Linkedin", + -14.306085586547852 + ], + [ + "▁guilds", + -14.306087493896484 + ], + [ + "wm", + -14.306110382080078 + ], + [ + "נ", + -14.30616569519043 + ], + [ + "▁∼", + -14.30618953704834 + ], + [ + "▁Yunnan", + -14.306195259094238 + ], + [ + "▁Trafalgar", + -14.306242942810059 + ], + [ + "oin", + -14.306245803833008 + ], + [ + "▁keyed", + -14.30627727508545 + ], + [ + "▁Lenses", + -14.306292533874512 + ], + [ + "▁electives", + -14.306300163269043 + ], + [ + "▁Ecommerce", + -14.306306838989258 + ], + [ + "▁Glycol", + -14.306367874145508 + ], + [ + "▁heft", + -14.306373596191406 + ], + [ + "▁cults", + -14.30638599395752 + ], + [ + "▁Maitland", + -14.306424140930176 + ], + [ + "▁Liberian", + -14.306446075439453 + ], + [ + "▁Ljubljana", + -14.306456565856934 + ], + [ + "parties", + -14.306458473205566 + ], + [ + "▁Ophthalmology", + -14.30651569366455 + ], + [ + "▁MOU", + -14.306533813476562 + ], + [ + "▁Ayatollah", + -14.306535720825195 + ], + [ + "▁walleye", + -14.30665397644043 + ], + [ + "▁chronicled", + -14.306659698486328 + ], + [ + "▁expatriate", + -14.30666732788086 + ], + [ + "Lux", + -14.306715965270996 + ], + [ + "▁submersible", + -14.306754112243652 + ], + [ + "▁fortifications", + -14.306767463684082 + ], + [ + "representation", + -14.306777954101562 + ], + [ + "▁mausoleum", + -14.306842803955078 + ], + [ + "▁Vesta", + -14.30685806274414 + ], + [ + "▁skimmer", + -14.306872367858887 + ], + [ + "▁Pé", + -14.306913375854492 + ], + [ + "▁musc", + -14.30691909790039 + ], + [ + "▁crescendo", + -14.306922912597656 + ], + [ + "▁grandsons", + -14.306946754455566 + ], + [ + "▁excavator", + -14.306950569152832 + ], + [ + "▁tugging", + -14.306960105895996 + ], + [ + "▁ontario", + -14.306978225708008 + ], + [ + "▁Requiem", + -14.307013511657715 + ], + [ + "▁strikeout", + -14.307039260864258 + ], + [ + "მ", + -14.307048797607422 + ], + [ + "stedt", + -14.307051658630371 + ], + [ + "096", + -14.307065963745117 + ], + [ + "ָ", + -14.307065963745117 + ], + [ + "▁unfathomable", + -14.307103157043457 + ], + [ + "smoke", + -14.307106018066406 + ], + [ + "pson", + -14.307106971740723 + ], + [ + "▁ל", + -14.307141304016113 + ], + [ + "072", + -14.307188987731934 + ], + [ + "▁Hedges", + -14.307229995727539 + ], + [ + "▁squ", + -14.307242393493652 + ], + [ + "▁Waverly", + -14.307291030883789 + ], + [ + "▁Ricoh", + -14.307329177856445 + ], + [ + "▁outweighed", + -14.307366371154785 + ], + [ + "presumably", + -14.307367324829102 + ], + [ + "dawn", + -14.307388305664062 + ], + [ + "▁revitalized", + -14.307478904724121 + ], + [ + "▁Ramaphosa", + -14.307502746582031 + ], + [ + "digest", + -14.307538032531738 + ], + [ + "expressing", + -14.307570457458496 + ], + [ + "ário", + -14.307602882385254 + ], + [ + "▁Predictive", + -14.307634353637695 + ], + [ + "▁cannibal", + -14.307753562927246 + ], + [ + "▁Vasquez", + -14.307764053344727 + ], + [ + "molecule", + -14.307777404785156 + ], + [ + "cured", + -14.307867050170898 + ], + [ + "▁feds", + -14.307878494262695 + ], + [ + "Flo", + -14.307884216308594 + ], + [ + "QS", + -14.30788803100586 + ], + [ + "▁recharged", + -14.30790901184082 + ], + [ + "▁perf", + -14.307942390441895 + ], + [ + "▁vy", + -14.307957649230957 + ], + [ + "897", + -14.307958602905273 + ], + [ + "▁Lucid", + -14.307973861694336 + ], + [ + "▁CTRL", + -14.30799388885498 + ], + [ + "▁Arno", + -14.308099746704102 + ], + [ + "▁Pec", + -14.308123588562012 + ], + [ + "▁alcove", + -14.308150291442871 + ], + [ + "sew", + -14.308158874511719 + ], + [ + "uhl", + -14.308186531066895 + ], + [ + "evan", + -14.308220863342285 + ], + [ + "数", + -14.308228492736816 + ], + [ + "▁Ashraf", + -14.308241844177246 + ], + [ + "▁Museo", + -14.308257102966309 + ], + [ + "▁Borrower", + -14.308266639709473 + ], + [ + "들", + -14.308274269104004 + ], + [ + "▁stupidly", + -14.308296203613281 + ], + [ + "▁Natur", + -14.308326721191406 + ], + [ + "▁bane", + -14.308374404907227 + ], + [ + "ши", + -14.308375358581543 + ], + [ + "▁cellars", + -14.308381080627441 + ], + [ + "▁Biochem", + -14.308406829833984 + ], + [ + "▁inclu", + -14.308465957641602 + ], + [ + "▁ALERT", + -14.308478355407715 + ], + [ + "damaged", + -14.308507919311523 + ], + [ + "▁Accidental", + -14.308547019958496 + ], + [ + "068", + -14.30855941772461 + ], + [ + "cookies", + -14.308564186096191 + ], + [ + "Menu", + -14.30856704711914 + ], + [ + "▁enclosing", + -14.30856990814209 + ], + [ + "▁romantically", + -14.308660507202148 + ], + [ + "▁unclaimed", + -14.308660507202148 + ], + [ + "hopping", + -14.308667182922363 + ], + [ + "mentor", + -14.308762550354004 + ], + [ + "▁cathartic", + -14.308772087097168 + ], + [ + "▁Andean", + -14.308791160583496 + ], + [ + "fid", + -14.308805465698242 + ], + [ + "▁Rumor", + -14.308818817138672 + ], + [ + "▁synapses", + -14.308823585510254 + ], + [ + "▁leftists", + -14.30884075164795 + ], + [ + "brake", + -14.30887222290039 + ], + [ + "▁XRP", + -14.308880805969238 + ], + [ + "▁omelette", + -14.308985710144043 + ], + [ + "IAA", + -14.309000015258789 + ], + [ + "▁GNOME", + -14.309006690979004 + ], + [ + "▁BCC", + -14.309033393859863 + ], + [ + "▁389", + -14.309041976928711 + ], + [ + "▁EFL", + -14.309078216552734 + ], + [ + "▁Introductory", + -14.309085845947266 + ], + [ + "MRC", + -14.309102058410645 + ], + [ + "▁Aleksandr", + -14.309220314025879 + ], + [ + "▁YE", + -14.309226036071777 + ], + [ + "▁specialities", + -14.309284210205078 + ], + [ + "▁Vigil", + -14.309300422668457 + ], + [ + "▁Benedictine", + -14.30931282043457 + ], + [ + "▁Jee", + -14.30931282043457 + ], + [ + "▁Battles", + -14.309314727783203 + ], + [ + "▁chronologically", + -14.309328079223633 + ], + [ + "▁XXX", + -14.309335708618164 + ], + [ + "itious", + -14.309348106384277 + ], + [ + "▁Samaria", + -14.309364318847656 + ], + [ + "gad", + -14.309371948242188 + ], + [ + "▁SPRING", + -14.309396743774414 + ], + [ + "1949", + -14.30943489074707 + ], + [ + "▁centennial", + -14.309503555297852 + ], + [ + "▁luring", + -14.309515953063965 + ], + [ + "▁pollutant", + -14.309527397155762 + ], + [ + "▁Chern", + -14.309581756591797 + ], + [ + "mv", + -14.309584617614746 + ], + [ + "▁675", + -14.309592247009277 + ], + [ + "Metro", + -14.309608459472656 + ], + [ + "▁Exc", + -14.309633255004883 + ], + [ + "cotton", + -14.309687614440918 + ], + [ + "▁Weymouth", + -14.30971622467041 + ], + [ + "▁forthright", + -14.309737205505371 + ], + [ + "▁Bandcamp", + -14.309751510620117 + ], + [ + "HON", + -14.309757232666016 + ], + [ + "SIA", + -14.309771537780762 + ], + [ + "▁soldered", + -14.30978012084961 + ], + [ + "mindedness", + -14.309814453125 + ], + [ + "▁Fingerprint", + -14.309825897216797 + ], + [ + "▁Whelan", + -14.309828758239746 + ], + [ + "▁encapsulation", + -14.309855461120605 + ], + [ + "▁RVs", + -14.309868812561035 + ], + [ + "▁adorning", + -14.309876441955566 + ], + [ + "▁airship", + -14.3099365234375 + ], + [ + "Tac", + -14.309974670410156 + ], + [ + "▁Llc", + -14.310035705566406 + ], + [ + "▁SECURITY", + -14.310041427612305 + ], + [ + "▁Avaya", + -14.31007194519043 + ], + [ + "▁oscillating", + -14.310074806213379 + ], + [ + "dys", + -14.31009578704834 + ], + [ + "▁geospatial", + -14.310098648071289 + ], + [ + "▁democrat", + -14.310117721557617 + ], + [ + "▁ICICI", + -14.31018352508545 + ], + [ + "WORK", + -14.310193061828613 + ], + [ + "▁Kaa", + -14.310214042663574 + ], + [ + "▁reminiscing", + -14.310215950012207 + ], + [ + "1948", + -14.310245513916016 + ], + [ + "▁grasshopper", + -14.310275077819824 + ], + [ + "▁pared", + -14.310287475585938 + ], + [ + "▁Conc", + -14.310310363769531 + ], + [ + "▁phonics", + -14.31032657623291 + ], + [ + "IVA", + -14.310330390930176 + ], + [ + "▁TOEFL", + -14.310389518737793 + ], + [ + "▁weasel", + -14.310405731201172 + ], + [ + "▁자", + -14.310407638549805 + ], + [ + "▁imam", + -14.310519218444824 + ], + [ + "▁Tinto", + -14.310525894165039 + ], + [ + "▁ungodly", + -14.31054973602295 + ], + [ + "Rip", + -14.310550689697266 + ], + [ + "▁Bozeman", + -14.310553550720215 + ], + [ + "▁Marcy", + -14.31056022644043 + ], + [ + "▁Kyi", + -14.310583114624023 + ], + [ + "Liquid", + -14.310599327087402 + ], + [ + "▁grits", + -14.310637474060059 + ], + [ + "luxury", + -14.310662269592285 + ], + [ + "▁merino", + -14.31068229675293 + ], + [ + "▁dehumidifier", + -14.310690879821777 + ], + [ + "▁Elect", + -14.310725212097168 + ], + [ + "▁differentiator", + -14.31072998046875 + ], + [ + "▁Pressing", + -14.310765266418457 + ], + [ + "▁Rahim", + -14.310766220092773 + ], + [ + "▁HST", + -14.310810089111328 + ], + [ + "▁twig", + -14.310853004455566 + ], + [ + "▁whitewater", + -14.310906410217285 + ], + [ + "▁Paytm", + -14.310918807983398 + ], + [ + "▁hap", + -14.310920715332031 + ], + [ + "▁darkening", + -14.310929298400879 + ], + [ + "▁conv", + -14.310941696166992 + ], + [ + "▁emboldened", + -14.311005592346191 + ], + [ + "▁softest", + -14.311012268066406 + ], + [ + "trum", + -14.31102466583252 + ], + [ + "▁Morin", + -14.311234474182129 + ], + [ + "▁distinguishable", + -14.311238288879395 + ], + [ + "▁Muh", + -14.311264038085938 + ], + [ + "▁sprocket", + -14.31130599975586 + ], + [ + "ppm", + -14.311330795288086 + ], + [ + "▁bak", + -14.3113431930542 + ], + [ + "▁Nasr", + -14.311372756958008 + ], + [ + "▁Kl", + -14.311378479003906 + ], + [ + "lope", + -14.311436653137207 + ], + [ + "ecu", + -14.31144905090332 + ], + [ + "iggle", + -14.311456680297852 + ], + [ + "▁DCS", + -14.311456680297852 + ], + [ + "SIDE", + -14.311460494995117 + ], + [ + "▁outlying", + -14.311497688293457 + ], + [ + "▁Kardashians", + -14.311502456665039 + ], + [ + "▁clapped", + -14.311546325683594 + ], + [ + "▁Ramen", + -14.311561584472656 + ], + [ + "JN", + -14.311565399169922 + ], + [ + "▁Cuyahoga", + -14.311568260192871 + ], + [ + "▁redone", + -14.311574935913086 + ], + [ + "▁Estimation", + -14.311691284179688 + ], + [ + "VAR", + -14.311736106872559 + ], + [ + "▁Joke", + -14.311741828918457 + ], + [ + "▁perceiving", + -14.311781883239746 + ], + [ + "nelli", + -14.31179141998291 + ], + [ + "Storage", + -14.311792373657227 + ], + [ + "hea", + -14.311830520629883 + ], + [ + "▁confuses", + -14.311868667602539 + ], + [ + "▁SEK", + -14.311890602111816 + ], + [ + "▁truckload", + -14.311891555786133 + ], + [ + "▁Beet", + -14.311894416809082 + ], + [ + "emitting", + -14.311932563781738 + ], + [ + "▁hav", + -14.311942100524902 + ], + [ + "anon", + -14.311946868896484 + ], + [ + "▁disparaging", + -14.311963081359863 + ], + [ + "treating", + -14.311978340148926 + ], + [ + "routine", + -14.31201171875 + ], + [ + "ƒ", + -14.312015533447266 + ], + [ + "▁barricades", + -14.3120756149292 + ], + [ + "от", + -14.31209659576416 + ], + [ + "chosen", + -14.31210708618164 + ], + [ + "▁1816", + -14.312125205993652 + ], + [ + "▁Brim", + -14.312128067016602 + ], + [ + "918", + -14.312131881713867 + ], + [ + "▁customisation", + -14.312143325805664 + ], + [ + "▁soo", + -14.312183380126953 + ], + [ + "▁pushback", + -14.31218433380127 + ], + [ + "▁dissected", + -14.312192916870117 + ], + [ + "▁Confessions", + -14.3121976852417 + ], + [ + "usual", + -14.31223201751709 + ], + [ + "Bond", + -14.312260627746582 + ], + [ + "éc", + -14.312268257141113 + ], + [ + "▁hobbyists", + -14.31230354309082 + ], + [ + "▁Nanaimo", + -14.31230640411377 + ], + [ + "▁lurk", + -14.312370300292969 + ], + [ + "▁Kenyans", + -14.312408447265625 + ], + [ + "▁tongs", + -14.312411308288574 + ], + [ + "Mama", + -14.312437057495117 + ], + [ + "▁simulates", + -14.312444686889648 + ], + [ + "▁SUR", + -14.312483787536621 + ], + [ + "grandmother", + -14.312495231628418 + ], + [ + "fatal", + -14.312501907348633 + ], + [ + "ician", + -14.312515258789062 + ], + [ + "enbaum", + -14.312521934509277 + ], + [ + "▁Kore", + -14.312525749206543 + ], + [ + "▁Karla", + -14.312555313110352 + ], + [ + "▁PHOTOS", + -14.3125638961792 + ], + [ + "▁Schiller", + -14.312564849853516 + ], + [ + "pill", + -14.312570571899414 + ], + [ + "▁citadel", + -14.312575340270996 + ], + [ + "▁larval", + -14.31258773803711 + ], + [ + "▁Searches", + -14.312687873840332 + ], + [ + "▁winemakers", + -14.312713623046875 + ], + [ + "854", + -14.312728881835938 + ], + [ + "▁Dumbledore", + -14.312734603881836 + ], + [ + "▁concealment", + -14.312737464904785 + ], + [ + "▁Congolese", + -14.312756538391113 + ], + [ + "▁sable", + -14.312801361083984 + ], + [ + "▁Parramatta", + -14.312854766845703 + ], + [ + "▁Buren", + -14.312874794006348 + ], + [ + "bala", + -14.312875747680664 + ], + [ + "▁pernicious", + -14.312888145446777 + ], + [ + "▁PEI", + -14.312910079956055 + ], + [ + "▁nitty", + -14.31295108795166 + ], + [ + "trees", + -14.31295394897461 + ], + [ + "▁Barbarian", + -14.312956809997559 + ], + [ + "▁crusader", + -14.312976837158203 + ], + [ + "▁cole", + -14.312979698181152 + ], + [ + "076", + -14.312983512878418 + ], + [ + "▁heave", + -14.313010215759277 + ], + [ + "▁FreeBSD", + -14.313050270080566 + ], + [ + "▁annoys", + -14.313077926635742 + ], + [ + "▁Shangri", + -14.313136100769043 + ], + [ + "▁DPRK", + -14.313163757324219 + ], + [ + "▁Caine", + -14.313227653503418 + ], + [ + "opp", + -14.313230514526367 + ], + [ + "▁libertarians", + -14.313239097595215 + ], + [ + "▁meek", + -14.313239097595215 + ], + [ + "▁1010", + -14.313299179077148 + ], + [ + "▁newscast", + -14.313335418701172 + ], + [ + "▁Menlo", + -14.313344955444336 + ], + [ + "▁Realize", + -14.313347816467285 + ], + [ + "reducing", + -14.31335163116455 + ], + [ + "▁genial", + -14.313395500183105 + ], + [ + "▁lightsaber", + -14.31344223022461 + ], + [ + "privacy", + -14.313465118408203 + ], + [ + "▁Czar", + -14.313472747802734 + ], + [ + "▁ROW", + -14.313485145568848 + ], + [ + "▁MARC", + -14.313488006591797 + ], + [ + "traction", + -14.313529968261719 + ], + [ + "▁Xian", + -14.313531875610352 + ], + [ + "bble", + -14.313543319702148 + ], + [ + "▁Fredericksburg", + -14.313610076904297 + ], + [ + "olytic", + -14.313618659973145 + ], + [ + "▁Bd", + -14.313619613647461 + ], + [ + "raco", + -14.313620567321777 + ], + [ + "rax", + -14.313652992248535 + ], + [ + "▁rigour", + -14.313681602478027 + ], + [ + "▁holed", + -14.313745498657227 + ], + [ + "▁HSV", + -14.31375503540039 + ], + [ + "▁Asp", + -14.313822746276855 + ], + [ + "▁corticosteroids", + -14.313896179199219 + ], + [ + "▁Cognition", + -14.313928604125977 + ], + [ + "asked", + -14.313946723937988 + ], + [ + "▁australian", + -14.313953399658203 + ], + [ + "▁Leela", + -14.313958168029785 + ], + [ + "▁Hilarious", + -14.313977241516113 + ], + [ + "▁Northam", + -14.31402587890625 + ], + [ + "099", + -14.31406021118164 + ], + [ + "▁prefabricated", + -14.31410026550293 + ], + [ + "▁Southend", + -14.314112663269043 + ], + [ + "▁maj", + -14.314139366149902 + ], + [ + "MIA", + -14.314184188842773 + ], + [ + "▁Jiangsu", + -14.314214706420898 + ], + [ + "lch", + -14.314225196838379 + ], + [ + "▁wack", + -14.31425666809082 + ], + [ + "▁loomed", + -14.314286231994629 + ], + [ + "▁Antonin", + -14.314297676086426 + ], + [ + "▁llc", + -14.314375877380371 + ], + [ + "▁Shiro", + -14.31440544128418 + ], + [ + "▁Jat", + -14.314409255981445 + ], + [ + "▁Cashback", + -14.314410209655762 + ], + [ + "▁Tod", + -14.314419746398926 + ], + [ + "haka", + -14.314458847045898 + ], + [ + "▁benefic", + -14.314473152160645 + ], + [ + "▁PLO", + -14.314484596252441 + ], + [ + "▁roadblock", + -14.314515113830566 + ], + [ + "▁ketosis", + -14.3145170211792 + ], + [ + "046", + -14.314567565917969 + ], + [ + "▁lustrous", + -14.314590454101562 + ], + [ + "anie", + -14.314599990844727 + ], + [ + "▁DST", + -14.314606666564941 + ], + [ + "▁1809", + -14.314611434936523 + ], + [ + "▁Strath", + -14.314628601074219 + ], + [ + "▁Bipolar", + -14.314708709716797 + ], + [ + "▁coalitions", + -14.314735412597656 + ], + [ + "▁Mocha", + -14.314767837524414 + ], + [ + "▁Woodruff", + -14.314772605895996 + ], + [ + "qe", + -14.314784049987793 + ], + [ + "іѕ", + -14.31484317779541 + ], + [ + "bz", + -14.314886093139648 + ], + [ + "roads", + -14.314909934997559 + ], + [ + "▁welterweight", + -14.314976692199707 + ], + [ + "Georgia", + -14.314990997314453 + ], + [ + "▁HuffPost", + -14.31500244140625 + ], + [ + "▁Liked", + -14.315016746520996 + ], + [ + "dov", + -14.315019607543945 + ], + [ + "▁sunflowers", + -14.315019607543945 + ], + [ + "▁Physically", + -14.315034866333008 + ], + [ + "junk", + -14.315041542053223 + ], + [ + "▁wristbands", + -14.315094947814941 + ], + [ + "▁redeemable", + -14.31517219543457 + ], + [ + "▁Bowden", + -14.315177917480469 + ], + [ + "▁bulletproof", + -14.315199851989746 + ], + [ + "JT", + -14.315210342407227 + ], + [ + "▁Flam", + -14.315226554870605 + ], + [ + "▁deduced", + -14.315299987792969 + ], + [ + "ahara", + -14.3153076171875 + ], + [ + "▁acetic", + -14.315335273742676 + ], + [ + "▁initialized", + -14.315348625183105 + ], + [ + "759", + -14.315370559692383 + ], + [ + "▁Southside", + -14.315409660339355 + ], + [ + "bhai", + -14.315431594848633 + ], + [ + "▁Glaze", + -14.315436363220215 + ], + [ + "▁Hayek", + -14.315463066101074 + ], + [ + "že", + -14.315464973449707 + ], + [ + "▁Hinton", + -14.315533638000488 + ], + [ + "ophile", + -14.315564155578613 + ], + [ + "▁Dele", + -14.315567970275879 + ], + [ + "▁Laptops", + -14.31561279296875 + ], + [ + "Ground", + -14.315624237060547 + ], + [ + "isc", + -14.315635681152344 + ], + [ + "▁Centurion", + -14.315655708312988 + ], + [ + "▁Thessaloniki", + -14.315716743469238 + ], + [ + "▁neurologic", + -14.315848350524902 + ], + [ + "▁Phy", + -14.31588363647461 + ], + [ + "robin", + -14.315901756286621 + ], + [ + "▁garnet", + -14.315902709960938 + ], + [ + "▁Brahmin", + -14.31590747833252 + ], + [ + "uren", + -14.315912246704102 + ], + [ + "▁Refunds", + -14.315914154052734 + ], + [ + "▁repress", + -14.315917015075684 + ], + [ + "▁Suh", + -14.315930366516113 + ], + [ + "▁salami", + -14.316040992736816 + ], + [ + "▁Enroll", + -14.316068649291992 + ], + [ + "▁cabana", + -14.316071510314941 + ], + [ + "▁heuristic", + -14.316120147705078 + ], + [ + "Cherry", + -14.316121101379395 + ], + [ + "▁Additive", + -14.316164016723633 + ], + [ + "غ", + -14.316169738769531 + ], + [ + "▁Blackboard", + -14.316332817077637 + ], + [ + "▁Professionally", + -14.316341400146484 + ], + [ + "▁figurine", + -14.316343307495117 + ], + [ + "▁rend", + -14.316354751586914 + ], + [ + "utin", + -14.316537857055664 + ], + [ + "▁Precisely", + -14.316548347473145 + ], + [ + "RIT", + -14.316566467285156 + ], + [ + "▁Volunteering", + -14.316573143005371 + ], + [ + "witness", + -14.316691398620605 + ], + [ + "volatile", + -14.3167085647583 + ], + [ + "▁poncho", + -14.31672191619873 + ], + [ + "▁Kamagra", + -14.31673812866211 + ], + [ + "Faith", + -14.316762924194336 + ], + [ + "Brother", + -14.316778182983398 + ], + [ + "▁Neurosci", + -14.31678295135498 + ], + [ + "▁Astor", + -14.316885948181152 + ], + [ + "▁FED", + -14.316885948181152 + ], + [ + "▁Smithfield", + -14.316896438598633 + ], + [ + "▁perpetuated", + -14.316906929016113 + ], + [ + "▁Permits", + -14.316967010498047 + ], + [ + "uska", + -14.316999435424805 + ], + [ + "▁Altitude", + -14.317005157470703 + ], + [ + "▁bul", + -14.3170166015625 + ], + [ + "HEN", + -14.317126274108887 + ], + [ + "▁XLR", + -14.317127227783203 + ], + [ + "ѕе", + -14.31714916229248 + ], + [ + "▁waxes", + -14.31716537475586 + ], + [ + "avel", + -14.317224502563477 + ], + [ + "▁Informal", + -14.31723403930664 + ], + [ + "▁Indore", + -14.317234992980957 + ], + [ + "▁ISM", + -14.317241668701172 + ], + [ + "▁enabler", + -14.317283630371094 + ], + [ + "RATION", + -14.31729507446289 + ], + [ + "HIS", + -14.31729793548584 + ], + [ + "▁Kamen", + -14.31733512878418 + ], + [ + "Hart", + -14.317347526550293 + ], + [ + "▁fellas", + -14.317357063293457 + ], + [ + "▁sleet", + -14.31742000579834 + ], + [ + "▁tankless", + -14.317458152770996 + ], + [ + "▁guestrooms", + -14.317465782165527 + ], + [ + "▁Saka", + -14.317485809326172 + ], + [ + "buffer", + -14.31749153137207 + ], + [ + "Prof", + -14.317512512207031 + ], + [ + "▁Usman", + -14.317526817321777 + ], + [ + "▁alignments", + -14.317537307739258 + ], + [ + "steps", + -14.317540168762207 + ], + [ + "▁delish", + -14.317540168762207 + ], + [ + "Heat", + -14.31756591796875 + ], + [ + "▁Endeavour", + -14.317622184753418 + ], + [ + "▁envelop", + -14.317628860473633 + ], + [ + "▁militarily", + -14.317634582519531 + ], + [ + "▁IMDb", + -14.317635536193848 + ], + [ + "tiered", + -14.317672729492188 + ], + [ + "▁ferret", + -14.317716598510742 + ], + [ + "▁rump", + -14.317720413208008 + ], + [ + "▁franchisor", + -14.317770004272461 + ], + [ + "▁CIR", + -14.317778587341309 + ], + [ + "brough", + -14.317793846130371 + ], + [ + "▁corroborate", + -14.31794261932373 + ], + [ + "▁neutered", + -14.317943572998047 + ], + [ + "umber", + -14.317949295043945 + ], + [ + "▁ADV", + -14.317995071411133 + ], + [ + "▁accrual", + -14.317997932434082 + ], + [ + "Imagine", + -14.318038940429688 + ], + [ + "▁Jha", + -14.31804370880127 + ], + [ + "▁Coptic", + -14.318044662475586 + ], + [ + "▁Lesnar", + -14.31806468963623 + ], + [ + "▁Bajaj", + -14.318083763122559 + ], + [ + "▁Sansa", + -14.318092346191406 + ], + [ + "Want", + -14.318102836608887 + ], + [ + "▁Identifier", + -14.318222999572754 + ], + [ + "▁Kya", + -14.31822395324707 + ], + [ + "▁squamous", + -14.318235397338867 + ], + [ + "Paint", + -14.318259239196777 + ], + [ + "Bri", + -14.31827449798584 + ], + [ + "▁hydrant", + -14.318319320678711 + ], + [ + "▁FaceTime", + -14.318321228027344 + ], + [ + "▁signatory", + -14.318326950073242 + ], + [ + "▁Skiing", + -14.31833553314209 + ], + [ + "га", + -14.318350791931152 + ], + [ + "▁overshadow", + -14.318359375 + ], + [ + "▁Assyrian", + -14.318366050720215 + ], + [ + "▁Ballot", + -14.318374633789062 + ], + [ + "▁opinionated", + -14.318412780761719 + ], + [ + "▁Kish", + -14.318426132202148 + ], + [ + "▁aggregator", + -14.318428993225098 + ], + [ + "SAS", + -14.318435668945312 + ], + [ + "▁supernatant", + -14.31844425201416 + ], + [ + "▁silicate", + -14.318461418151855 + ], + [ + "ocratic", + -14.318507194519043 + ], + [ + "▁MDS", + -14.318568229675293 + ], + [ + "тор", + -14.318586349487305 + ], + [ + "▁Quito", + -14.318655967712402 + ], + [ + "动", + -14.318702697753906 + ], + [ + "▁truest", + -14.31873607635498 + ], + [ + "▁Santi", + -14.318743705749512 + ], + [ + "▁HEPA", + -14.318744659423828 + ], + [ + "Glu", + -14.318760871887207 + ], + [ + "dyed", + -14.318772315979004 + ], + [ + "2090", + -14.31881046295166 + ], + [ + "▁GJ", + -14.318819046020508 + ], + [ + "▁SPEED", + -14.318838119506836 + ], + [ + "▁Udaipur", + -14.318903923034668 + ], + [ + "▁busts", + -14.318948745727539 + ], + [ + "nika", + -14.319010734558105 + ], + [ + "▁Aff", + -14.319064140319824 + ], + [ + "▁jugs", + -14.319089889526367 + ], + [ + "UTH", + -14.319099426269531 + ], + [ + "▁skimmed", + -14.319103240966797 + ], + [ + "▁tween", + -14.319198608398438 + ], + [ + "▁Staphylococcus", + -14.31920051574707 + ], + [ + "▁Redeem", + -14.319202423095703 + ], + [ + "▁Elixir", + -14.31930160522461 + ], + [ + "▁Barnabas", + -14.319316864013672 + ], + [ + "▁transfected", + -14.319357872009277 + ], + [ + "▁Murano", + -14.319377899169922 + ], + [ + "▁Donors", + -14.319408416748047 + ], + [ + "▁Cartel", + -14.31942081451416 + ], + [ + "▁voodoo", + -14.319457054138184 + ], + [ + "▁defaulted", + -14.319459915161133 + ], + [ + "▁sativa", + -14.31946849822998 + ], + [ + "▁dictating", + -14.31948184967041 + ], + [ + "▁jaguar", + -14.319486618041992 + ], + [ + "Serve", + -14.319494247436523 + ], + [ + "ще", + -14.319498062133789 + ], + [ + "▁spline", + -14.319550514221191 + ], + [ + "▁pessimism", + -14.319551467895508 + ], + [ + "▁reposted", + -14.319558143615723 + ], + [ + "VIP", + -14.319599151611328 + ], + [ + "behaved", + -14.319633483886719 + ], + [ + "result", + -14.319634437561035 + ], + [ + "ollywood", + -14.319642066955566 + ], + [ + "OTT", + -14.3196439743042 + ], + [ + "alic", + -14.31966495513916 + ], + [ + "▁396", + -14.319673538208008 + ], + [ + "raid", + -14.31969928741455 + ], + [ + "▁Appel", + -14.319734573364258 + ], + [ + "▁Curved", + -14.319742202758789 + ], + [ + "▁coy", + -14.319764137268066 + ], + [ + "cello", + -14.319774627685547 + ], + [ + "urious", + -14.319777488708496 + ], + [ + "▁UGC", + -14.31994915008545 + ], + [ + "▁gleefully", + -14.320032119750977 + ], + [ + "▁dolomite", + -14.320037841796875 + ], + [ + "▁Fett", + -14.320049285888672 + ], + [ + "▁interferon", + -14.320067405700684 + ], + [ + "▁Blockbuster", + -14.320093154907227 + ], + [ + "▁deflated", + -14.320096969604492 + ], + [ + "VOL", + -14.320104598999023 + ], + [ + "▁fertilized", + -14.320106506347656 + ], + [ + "▁Teflon", + -14.320107460021973 + ], + [ + "▁Phew", + -14.320138931274414 + ], + [ + "▁TCR", + -14.320148468017578 + ], + [ + "▁signpost", + -14.32017993927002 + ], + [ + "▁Primitive", + -14.32024097442627 + ], + [ + "▁Consistency", + -14.320249557495117 + ], + [ + "▁flanking", + -14.320253372192383 + ], + [ + "ugger", + -14.320255279541016 + ], + [ + "▁TBA", + -14.320265769958496 + ], + [ + "▁SOCIAL", + -14.320272445678711 + ], + [ + "▁Ruins", + -14.320294380187988 + ], + [ + "inic", + -14.320333480834961 + ], + [ + "coupled", + -14.320363998413086 + ], + [ + "bini", + -14.320374488830566 + ], + [ + "▁Loew", + -14.320396423339844 + ], + [ + "▁veered", + -14.320404052734375 + ], + [ + "▁Epcot", + -14.320425033569336 + ], + [ + "▁querying", + -14.320439338684082 + ], + [ + "▁Keepers", + -14.320466041564941 + ], + [ + "▁tattered", + -14.320513725280762 + ], + [ + "▁rulemaking", + -14.320525169372559 + ], + [ + "▁732", + -14.320528030395508 + ], + [ + "▁hideaway", + -14.320537567138672 + ], + [ + "bald", + -14.320569038391113 + ], + [ + "▁accelerators", + -14.320570945739746 + ], + [ + "▁shakers", + -14.320577621459961 + ], + [ + "BAT", + -14.320594787597656 + ], + [ + "bands", + -14.320594787597656 + ], + [ + "▁chaff", + -14.320598602294922 + ], + [ + "validation", + -14.320622444152832 + ], + [ + "▁BED", + -14.320649147033691 + ], + [ + "▁stunner", + -14.320650100708008 + ], + [ + "▁underwriters", + -14.320663452148438 + ], + [ + "▁etch", + -14.320670127868652 + ], + [ + "▁주", + -14.320680618286133 + ], + [ + "pex", + -14.32070255279541 + ], + [ + "▁Channing", + -14.32073974609375 + ], + [ + "▁Eastside", + -14.320761680603027 + ], + [ + "▁EARTH", + -14.320762634277344 + ], + [ + "▁kerb", + -14.320847511291504 + ], + [ + "▁smelt", + -14.320849418640137 + ], + [ + "▁chameleon", + -14.320856094360352 + ], + [ + "▁Zub", + -14.320878028869629 + ], + [ + "▁buckwheat", + -14.320906639099121 + ], + [ + "▁Mato", + -14.320916175842285 + ], + [ + "▁mustered", + -14.320966720581055 + ], + [ + "▁Barak", + -14.320991516113281 + ], + [ + "▁Tatar", + -14.321024894714355 + ], + [ + "ussi", + -14.321067810058594 + ], + [ + "▁Orkney", + -14.32107162475586 + ], + [ + "▁Pointer", + -14.32108211517334 + ], + [ + "bene", + -14.32110595703125 + ], + [ + "▁Aisha", + -14.321122169494629 + ], + [ + "▁strode", + -14.321173667907715 + ], + [ + "▁ud", + -14.321221351623535 + ], + [ + "▁Happ", + -14.321234703063965 + ], + [ + "▁AOC", + -14.321266174316406 + ], + [ + "RDA", + -14.321279525756836 + ], + [ + "▁Evolve", + -14.321285247802734 + ], + [ + "workshop", + -14.321320533752441 + ], + [ + "▁whiplash", + -14.321334838867188 + ], + [ + "▁Antoinette", + -14.321390151977539 + ], + [ + "▁Yur", + -14.321391105651855 + ], + [ + "▁día", + -14.321423530578613 + ], + [ + "▁growling", + -14.321513175964355 + ], + [ + "▁antagonism", + -14.321525573730469 + ], + [ + "RJ", + -14.321577072143555 + ], + [ + "▁heaped", + -14.321603775024414 + ], + [ + "▁MASS", + -14.321637153625488 + ], + [ + "▁Strangers", + -14.321673393249512 + ], + [ + "▁Loot", + -14.321684837341309 + ], + [ + "мен", + -14.321725845336914 + ], + [ + "▁Erick", + -14.321744918823242 + ], + [ + "winds", + -14.321873664855957 + ], + [ + "▁VST", + -14.321919441223145 + ], + [ + "▁expound", + -14.321942329406738 + ], + [ + "▁Arrested", + -14.322033882141113 + ], + [ + "▁reaffirm", + -14.3220796585083 + ], + [ + "▁BIA", + -14.322086334228516 + ], + [ + "▁sweeper", + -14.32210636138916 + ], + [ + "▁CONSEQUENTIAL", + -14.322113990783691 + ], + [ + "839", + -14.32211685180664 + ], + [ + "▁Deposits", + -14.322123527526855 + ], + [ + "▁Pero", + -14.322172164916992 + ], + [ + "874", + -14.322175025939941 + ], + [ + "▁denuclearization", + -14.322188377380371 + ], + [ + "▁incendiary", + -14.322216033935547 + ], + [ + "slice", + -14.322270393371582 + ], + [ + "▁Hellenic", + -14.322284698486328 + ], + [ + "▁outcast", + -14.32229995727539 + ], + [ + "tae", + -14.322319030761719 + ], + [ + "▁appreciable", + -14.322330474853516 + ], + [ + "▁Crewe", + -14.322388648986816 + ], + [ + "▁scheming", + -14.322395324707031 + ], + [ + "▁✔", + -14.322402000427246 + ], + [ + "▁recoverable", + -14.322454452514648 + ], + [ + "ITCH", + -14.322514533996582 + ], + [ + "aglia", + -14.322521209716797 + ], + [ + "▁tableware", + -14.322522163391113 + ], + [ + "calls", + -14.322554588317871 + ], + [ + "usable", + -14.322613716125488 + ], + [ + "mira", + -14.322616577148438 + ], + [ + "▁pullover", + -14.32262134552002 + ], + [ + "▁prohibitions", + -14.322652816772461 + ], + [ + "▁Rude", + -14.32267951965332 + ], + [ + "▁Rapp", + -14.322699546813965 + ], + [ + "▁propelling", + -14.322715759277344 + ], + [ + "▁Fatah", + -14.322773933410645 + ], + [ + "▁domed", + -14.322778701782227 + ], + [ + "▁Maharaj", + -14.322781562805176 + ], + [ + "survey", + -14.322799682617188 + ], + [ + "▁Gaiman", + -14.322826385498047 + ], + [ + "치", + -14.322831153869629 + ], + [ + "demon", + -14.322847366333008 + ], + [ + "▁numerically", + -14.322866439819336 + ], + [ + "alk", + -14.322872161865234 + ], + [ + "▁reformer", + -14.322970390319824 + ], + [ + "▁Billionaire", + -14.322978973388672 + ], + [ + "ouri", + -14.322990417480469 + ], + [ + "▁RPC", + -14.322991371154785 + ], + [ + "▁perpetuating", + -14.323053359985352 + ], + [ + "▁Crom", + -14.323091506958008 + ], + [ + "▁antithesis", + -14.323115348815918 + ], + [ + "▁Rhe", + -14.323140144348145 + ], + [ + "▁Chik", + -14.323149681091309 + ], + [ + "morphism", + -14.323166847229004 + ], + [ + "ค", + -14.323196411132812 + ], + [ + "▁Crock", + -14.323216438293457 + ], + [ + "▁Blackout", + -14.323227882385254 + ], + [ + "ulatory", + -14.323249816894531 + ], + [ + "▁Groot", + -14.323258399963379 + ], + [ + "▁Viacom", + -14.323264122009277 + ], + [ + "▁latched", + -14.323326110839844 + ], + [ + "▁Ciudad", + -14.32335376739502 + ], + [ + "▁Kissinger", + -14.323373794555664 + ], + [ + "▁noncommercial", + -14.323500633239746 + ], + [ + "▁Marga", + -14.32355785369873 + ], + [ + "Turkey", + -14.323558807373047 + ], + [ + "UNA", + -14.323566436767578 + ], + [ + "dhan", + -14.323609352111816 + ], + [ + "udin", + -14.323610305786133 + ], + [ + "▁foreword", + -14.32361125946045 + ], + [ + "054", + -14.323619842529297 + ], + [ + "▁narcissism", + -14.323685646057129 + ], + [ + "▁Jalen", + -14.323739051818848 + ], + [ + "▁Tren", + -14.323774337768555 + ], + [ + "▁PED", + -14.32381534576416 + ], + [ + "▁topographic", + -14.32381820678711 + ], + [ + "▁Shutter", + -14.323830604553223 + ], + [ + "gier", + -14.323838233947754 + ], + [ + "▁Seamus", + -14.323843002319336 + ], + [ + "▁taunting", + -14.323877334594727 + ], + [ + "▁Hurd", + -14.323878288269043 + ], + [ + "▁frills", + -14.323941230773926 + ], + [ + "▁Ayala", + -14.323949813842773 + ], + [ + "adine", + -14.323963165283203 + ], + [ + "▁436", + -14.323968887329102 + ], + [ + "Toronto", + -14.324021339416504 + ], + [ + "▁Gaw", + -14.324034690856934 + ], + [ + "ekar", + -14.324073791503906 + ], + [ + "▁SEASON", + -14.32413101196289 + ], + [ + "▁Struggling", + -14.324153900146484 + ], + [ + "cian", + -14.324166297912598 + ], + [ + "▁Clu", + -14.324172973632812 + ], + [ + "▁Strut", + -14.324222564697266 + ], + [ + "▁Clovis", + -14.324226379394531 + ], + [ + "▁cistern", + -14.324227333068848 + ], + [ + "cob", + -14.324234962463379 + ], + [ + "nty", + -14.324239730834961 + ], + [ + "gma", + -14.324249267578125 + ], + [ + "cka", + -14.324259757995605 + ], + [ + "▁FISA", + -14.3242826461792 + ], + [ + "Half", + -14.324331283569336 + ], + [ + "▁SCIENCE", + -14.324339866638184 + ], + [ + "▁nominally", + -14.324360847473145 + ], + [ + "Feel", + -14.324443817138672 + ], + [ + "▁Fired", + -14.324451446533203 + ], + [ + "enen", + -14.324480056762695 + ], + [ + "▁Rua", + -14.324496269226074 + ], + [ + "▁tugged", + -14.324552536010742 + ], + [ + "▁tunneling", + -14.32461929321289 + ], + [ + "▁missteps", + -14.324663162231445 + ], + [ + "▁Tali", + -14.324687957763672 + ], + [ + "▁helical", + -14.324692726135254 + ], + [ + "Brad", + -14.32470703125 + ], + [ + "▁UTF", + -14.32470989227295 + ], + [ + "▁BMS", + -14.32475471496582 + ], + [ + "▁Leveraging", + -14.324787139892578 + ], + [ + "▁cauldron", + -14.32480525970459 + ], + [ + "▁phen", + -14.324867248535156 + ], + [ + "1944", + -14.324888229370117 + ], + [ + "▁در", + -14.324918746948242 + ], + [ + "▁Driscoll", + -14.32492446899414 + ], + [ + "damage", + -14.324968338012695 + ], + [ + "▁Pach", + -14.324979782104492 + ], + [ + "ownership", + -14.325006484985352 + ], + [ + "▁HOUSTON", + -14.325016021728516 + ], + [ + "▁fraudulently", + -14.325048446655273 + ], + [ + "▁ق", + -14.325057029724121 + ], + [ + "▁bristle", + -14.32505989074707 + ], + [ + "▁CHILD", + -14.32506275177002 + ], + [ + "▁contactless", + -14.325090408325195 + ], + [ + "▁Recliner", + -14.325106620788574 + ], + [ + "▁caretakers", + -14.32524585723877 + ], + [ + "▁culvert", + -14.325254440307617 + ], + [ + "967", + -14.325276374816895 + ], + [ + "ilon", + -14.325299263000488 + ], + [ + "▁Feder", + -14.325350761413574 + ], + [ + "ipper", + -14.325369834899902 + ], + [ + "水", + -14.325383186340332 + ], + [ + "▁spirals", + -14.325384140014648 + ], + [ + "▁goddesses", + -14.325390815734863 + ], + [ + "▁UMC", + -14.325420379638672 + ], + [ + "▁Destinations", + -14.325453758239746 + ], + [ + "sap", + -14.325456619262695 + ], + [ + "Import", + -14.325522422790527 + ], + [ + "▁Childcare", + -14.325522422790527 + ], + [ + "▁Elli", + -14.32552433013916 + ], + [ + "rete", + -14.32558536529541 + ], + [ + "oooooo", + -14.325618743896484 + ], + [ + "VY", + -14.325626373291016 + ], + [ + "broke", + -14.325628280639648 + ], + [ + "▁614", + -14.325639724731445 + ], + [ + "▁Stiles", + -14.325644493103027 + ], + [ + "▁jeweller", + -14.325658798217773 + ], + [ + "Clo", + -14.325662612915039 + ], + [ + "Question", + -14.325664520263672 + ], + [ + "▁Reflective", + -14.32568359375 + ], + [ + "▁prophesied", + -14.325695037841797 + ], + [ + "▁rearranging", + -14.32571792602539 + ], + [ + "أ", + -14.32575798034668 + ], + [ + "PAGE", + -14.325780868530273 + ], + [ + "▁esters", + -14.325789451599121 + ], + [ + "▁Roseville", + -14.325798988342285 + ], + [ + "▁rapping", + -14.325801849365234 + ], + [ + "▁implicate", + -14.325860977172852 + ], + [ + "translation", + -14.325864791870117 + ], + [ + "▁musicianship", + -14.325867652893066 + ], + [ + "▁XXL", + -14.325871467590332 + ], + [ + "lept", + -14.325884819030762 + ], + [ + "▁Esquire", + -14.32590389251709 + ], + [ + "▁Barracks", + -14.32591724395752 + ], + [ + "▁Interact", + -14.32598876953125 + ], + [ + "▁Raff", + -14.326005935668945 + ], + [ + "▁Forged", + -14.326068878173828 + ], + [ + "▁trams", + -14.326108932495117 + ], + [ + "▁Toto", + -14.326127052307129 + ], + [ + "explanatory", + -14.326141357421875 + ], + [ + "shita", + -14.326163291931152 + ], + [ + "integration", + -14.326171875 + ], + [ + "▁Kourtney", + -14.326197624206543 + ], + [ + "piano", + -14.326226234436035 + ], + [ + "▁tosses", + -14.326297760009766 + ], + [ + "▁RACE", + -14.32631778717041 + ], + [ + "▁Kettering", + -14.326406478881836 + ], + [ + "▁Koll", + -14.326415061950684 + ], + [ + "▁RETURN", + -14.326458930969238 + ], + [ + "▁upmarket", + -14.326461791992188 + ], + [ + "▁Stockport", + -14.326464653015137 + ], + [ + "▁cyborg", + -14.326465606689453 + ], + [ + "▁TCA", + -14.326492309570312 + ], + [ + "▁splinter", + -14.326519966125488 + ], + [ + "▁presumptive", + -14.326522827148438 + ], + [ + "Option", + -14.326534271240234 + ], + [ + "▁synthase", + -14.326557159423828 + ], + [ + "▁Enix", + -14.326583862304688 + ], + [ + "▁gouge", + -14.326593399047852 + ], + [ + "▁shotguns", + -14.32660961151123 + ], + [ + "transit", + -14.326630592346191 + ], + [ + "▁Dillard", + -14.32665729522705 + ], + [ + "▁Benitez", + -14.32666015625 + ], + [ + "▁industrious", + -14.326663970947266 + ], + [ + "▁repulsive", + -14.326677322387695 + ], + [ + "▁Connelly", + -14.326695442199707 + ], + [ + "OSA", + -14.326715469360352 + ], + [ + "chick", + -14.326716423034668 + ], + [ + "▁Performances", + -14.326810836791992 + ], + [ + "▁sco", + -14.32681655883789 + ], + [ + "▁Patri", + -14.32682991027832 + ], + [ + "▁transparently", + -14.326912879943848 + ], + [ + "▁Boi", + -14.326952934265137 + ], + [ + "haj", + -14.326967239379883 + ], + [ + "▁1804", + -14.326979637145996 + ], + [ + "▁Gains", + -14.32699966430664 + ], + [ + "한다", + -14.32705020904541 + ], + [ + "▁Dolomite", + -14.327068328857422 + ], + [ + "difference", + -14.327071189880371 + ], + [ + "ichen", + -14.327081680297852 + ], + [ + "▁Cray", + -14.32710075378418 + ], + [ + "▁Branches", + -14.327110290527344 + ], + [ + "▁lamenting", + -14.32714557647705 + ], + [ + "▁Cres", + -14.327167510986328 + ], + [ + "▁Starlight", + -14.327181816101074 + ], + [ + "ffa", + -14.327192306518555 + ], + [ + "996", + -14.327221870422363 + ], + [ + "lastic", + -14.327247619628906 + ], + [ + "▁compacted", + -14.327248573303223 + ], + [ + "▁Cottonwood", + -14.327262878417969 + ], + [ + "▁MEGA", + -14.327264785766602 + ], + [ + "▁buzzed", + -14.327296257019043 + ], + [ + "▁pala", + -14.327309608459473 + ], + [ + "▁Encounters", + -14.327315330505371 + ], + [ + "▁cobble", + -14.327317237854004 + ], + [ + "▁lifeblood", + -14.32733154296875 + ], + [ + "▁tb", + -14.327335357666016 + ], + [ + "▁marinara", + -14.327342987060547 + ], + [ + "▁grocer", + -14.327353477478027 + ], + [ + "▁confers", + -14.32736873626709 + ], + [ + "▁Bulbs", + -14.32740306854248 + ], + [ + "▁Michaela", + -14.327406883239746 + ], + [ + "▁Decks", + -14.327457427978516 + ], + [ + "▁Conroy", + -14.327580451965332 + ], + [ + "▁perturbations", + -14.327608108520508 + ], + [ + "ukka", + -14.327642440795898 + ], + [ + "Foot", + -14.327657699584961 + ], + [ + "▁hacer", + -14.327672004699707 + ], + [ + "917", + -14.327710151672363 + ], + [ + "Hollywood", + -14.327727317810059 + ], + [ + "▁smattering", + -14.327729225158691 + ], + [ + "▁Coors", + -14.327744483947754 + ], + [ + "▁Marsden", + -14.327780723571777 + ], + [ + "▁Ceres", + -14.32778263092041 + ], + [ + "▁Corrie", + -14.327827453613281 + ], + [ + "CRI", + -14.327832221984863 + ], + [ + "▁jurist", + -14.32784366607666 + ], + [ + "▁Skripal", + -14.327912330627441 + ], + [ + "▁niet", + -14.328001976013184 + ], + [ + "lized", + -14.32805061340332 + ], + [ + "normally", + -14.3280668258667 + ], + [ + "▁spo", + -14.328085899353027 + ], + [ + "▁TRS", + -14.328088760375977 + ], + [ + "ද", + -14.328096389770508 + ], + [ + "eeb", + -14.328116416931152 + ], + [ + "▁nitrous", + -14.328119277954102 + ], + [ + "▁Exec", + -14.32813549041748 + ], + [ + "Visual", + -14.328136444091797 + ], + [ + "locate", + -14.32815933227539 + ], + [ + "diamond", + -14.328193664550781 + ], + [ + "▁hiccup", + -14.328271865844727 + ], + [ + "schedule", + -14.328316688537598 + ], + [ + "ussy", + -14.328320503234863 + ], + [ + "Chart", + -14.328335762023926 + ], + [ + "▁Vino", + -14.32839584350586 + ], + [ + "▁spreader", + -14.328418731689453 + ], + [ + "▁HERO", + -14.3284273147583 + ], + [ + "▁Lue", + -14.32844066619873 + ], + [ + "▁quintet", + -14.328470230102539 + ], + [ + "▁Tully", + -14.328557968139648 + ], + [ + "▁Surrender", + -14.328624725341797 + ], + [ + "▁Cryo", + -14.328625679016113 + ], + [ + "Fill", + -14.328627586364746 + ], + [ + "▁adenocarcinoma", + -14.328655242919922 + ], + [ + "▁Allstate", + -14.328661918640137 + ], + [ + "▁448", + -14.328695297241211 + ], + [ + "▁Bec", + -14.328728675842285 + ], + [ + "▁Abo", + -14.328753471374512 + ], + [ + "▁designee", + -14.328773498535156 + ], + [ + "▁consecutively", + -14.328786849975586 + ], + [ + "▁LEAD", + -14.328787803649902 + ], + [ + "flowers", + -14.328798294067383 + ], + [ + "gree", + -14.32882308959961 + ], + [ + "▁Maul", + -14.328839302062988 + ], + [ + "▁Visibility", + -14.328889846801758 + ], + [ + "filtration", + -14.328993797302246 + ], + [ + "▁gras", + -14.328998565673828 + ], + [ + "▁Marla", + -14.329071044921875 + ], + [ + "▁crocheted", + -14.329132080078125 + ], + [ + "▁regent", + -14.329132080078125 + ], + [ + "941", + -14.32913875579834 + ], + [ + "▁formalized", + -14.329195022583008 + ], + [ + "▁Involvement", + -14.329277992248535 + ], + [ + "construct", + -14.329429626464844 + ], + [ + "▁shu", + -14.329435348510742 + ], + [ + "LSA", + -14.329438209533691 + ], + [ + "balancing", + -14.32946491241455 + ], + [ + "▁Organics", + -14.329477310180664 + ], + [ + "▁conn", + -14.329520225524902 + ], + [ + "▁caulk", + -14.329543113708496 + ], + [ + "▁stances", + -14.329566955566406 + ], + [ + "vette", + -14.329609870910645 + ], + [ + "▁VEGAS", + -14.329671859741211 + ], + [ + "▁Corrupt", + -14.329680442810059 + ], + [ + "▁Intention", + -14.329704284667969 + ], + [ + "▁remittance", + -14.329751014709473 + ], + [ + "▁NDC", + -14.329760551452637 + ], + [ + "Raw", + -14.329792022705078 + ], + [ + "▁Temptation", + -14.329793930053711 + ], + [ + "▁Jewell", + -14.329835891723633 + ], + [ + "pointing", + -14.32984447479248 + ], + [ + "cumb", + -14.329854011535645 + ], + [ + "defence", + -14.32986831665039 + ], + [ + "▁unwritten", + -14.329882621765137 + ], + [ + "▁mitzvah", + -14.329910278320312 + ], + [ + "926", + -14.329973220825195 + ], + [ + "canadian", + -14.329976081848145 + ], + [ + "rrington", + -14.330047607421875 + ], + [ + "▁DirecTV", + -14.330087661743164 + ], + [ + "▁Coyle", + -14.330114364624023 + ], + [ + "▁REL", + -14.330163955688477 + ], + [ + "▁perverted", + -14.330179214477539 + ], + [ + "▁Baptists", + -14.330183029174805 + ], + [ + "bills", + -14.330219268798828 + ], + [ + "▁Waikiki", + -14.33022403717041 + ], + [ + "▁intraday", + -14.330245018005371 + ], + [ + "XE", + -14.330253601074219 + ], + [ + "▁Volta", + -14.330272674560547 + ], + [ + "mute", + -14.330279350280762 + ], + [ + "Response", + -14.330338478088379 + ], + [ + "▁Saif", + -14.330338478088379 + ], + [ + "▁Jena", + -14.330379486083984 + ], + [ + "▁twill", + -14.33038330078125 + ], + [ + "▁Matty", + -14.33045482635498 + ], + [ + "ooh", + -14.330463409423828 + ], + [ + "itating", + -14.330571174621582 + ], + [ + "▁Yat", + -14.330606460571289 + ], + [ + "▁scuff", + -14.330655097961426 + ], + [ + "▁oversold", + -14.330672264099121 + ], + [ + "▁vise", + -14.330686569213867 + ], + [ + "udan", + -14.330737113952637 + ], + [ + "ppen", + -14.330780982971191 + ], + [ + "▁overtook", + -14.330811500549316 + ], + [ + "▁DELHI", + -14.330817222595215 + ], + [ + "cating", + -14.330862045288086 + ], + [ + "▁Fren", + -14.330862998962402 + ], + [ + "jutsu", + -14.330914497375488 + ], + [ + "▁psychoanalysis", + -14.330976486206055 + ], + [ + "▁pediatrics", + -14.330995559692383 + ], + [ + "▁abounds", + -14.331048965454102 + ], + [ + "zad", + -14.33106803894043 + ], + [ + "surfing", + -14.331084251403809 + ], + [ + "▁Kaya", + -14.331097602844238 + ], + [ + "▁inadequacy", + -14.331110954284668 + ], + [ + "sensing", + -14.331116676330566 + ], + [ + "▁infielder", + -14.331136703491211 + ], + [ + "gj", + -14.331184387207031 + ], + [ + "Enjoy", + -14.331192016601562 + ], + [ + "▁Connell", + -14.33122444152832 + ], + [ + "▁Issued", + -14.331266403198242 + ], + [ + "▁Aditya", + -14.331278800964355 + ], + [ + "以", + -14.331293106079102 + ], + [ + "▁Realistic", + -14.331377983093262 + ], + [ + "▁645", + -14.331378936767578 + ], + [ + "torrent", + -14.331389427185059 + ], + [ + "Square", + -14.331454277038574 + ], + [ + "▁Orbital", + -14.331459045410156 + ], + [ + "immigration", + -14.331480026245117 + ], + [ + "▁entrée", + -14.331488609313965 + ], + [ + "1942", + -14.331521987915039 + ], + [ + "▁nauseous", + -14.331562042236328 + ], + [ + "teil", + -14.331565856933594 + ], + [ + "▁operatic", + -14.331567764282227 + ], + [ + "▁phenolic", + -14.331595420837402 + ], + [ + "nella", + -14.331598281860352 + ], + [ + "categor", + -14.331613540649414 + ], + [ + "▁quiche", + -14.331615447998047 + ], + [ + "IOS", + -14.331650733947754 + ], + [ + "▁SPS", + -14.331707954406738 + ], + [ + "▁Threats", + -14.331727981567383 + ], + [ + "1952", + -14.331758499145508 + ], + [ + "▁Bernhard", + -14.331787109375 + ], + [ + "▁shar", + -14.331802368164062 + ], + [ + "▁sciatica", + -14.33186149597168 + ], + [ + "▁NaCl", + -14.331864356994629 + ], + [ + "▁Amex", + -14.33191204071045 + ], + [ + "▁Cubans", + -14.331987380981445 + ], + [ + "▁uninterested", + -14.331997871398926 + ], + [ + "zani", + -14.33200454711914 + ], + [ + "▁Sadler", + -14.33204460144043 + ], + [ + "▁affordably", + -14.332046508789062 + ], + [ + "Monkey", + -14.332058906555176 + ], + [ + "SEL", + -14.332200050354004 + ], + [ + "▁Interchange", + -14.33224105834961 + ], + [ + "▁consort", + -14.332249641418457 + ], + [ + "▁depots", + -14.332256317138672 + ], + [ + "▁Chatter", + -14.332263946533203 + ], + [ + "▁Somers", + -14.332267761230469 + ], + [ + "▁Arafat", + -14.332274436950684 + ], + [ + "▁chard", + -14.332280158996582 + ], + [ + "▁KX", + -14.332284927368164 + ], + [ + "▁Healer", + -14.332305908203125 + ], + [ + "▁MATERIAL", + -14.332315444946289 + ], + [ + "▁Tilly", + -14.332417488098145 + ], + [ + "▁colonized", + -14.33242416381836 + ], + [ + "▁1822", + -14.332447052001953 + ], + [ + "theft", + -14.33244800567627 + ], + [ + "▁barges", + -14.332462310791016 + ], + [ + "▁Adjunct", + -14.332467079162598 + ], + [ + "▁1806", + -14.332490921020508 + ], + [ + "▁Elan", + -14.332511901855469 + ], + [ + "▁plumes", + -14.33260726928711 + ], + [ + "▁Circa", + -14.332610130310059 + ], + [ + "▁subunits", + -14.332629203796387 + ], + [ + "Cent", + -14.332648277282715 + ], + [ + "diy", + -14.332658767700195 + ], + [ + "tried", + -14.332671165466309 + ], + [ + "▁neue", + -14.332792282104492 + ], + [ + "▁digesting", + -14.332813262939453 + ], + [ + "▁Georgie", + -14.332859992980957 + ], + [ + "▁Capability", + -14.332876205444336 + ], + [ + "▁Canna", + -14.332884788513184 + ], + [ + "▁traceable", + -14.332906723022461 + ], + [ + "▁SPE", + -14.332925796508789 + ], + [ + "▁EPO", + -14.332962036132812 + ], + [ + "▁Publicity", + -14.332969665527344 + ], + [ + "opener", + -14.332991600036621 + ], + [ + "▁인", + -14.333074569702148 + ], + [ + "▁MailChimp", + -14.333087921142578 + ], + [ + "▁stunted", + -14.333147048950195 + ], + [ + "▁mun", + -14.333160400390625 + ], + [ + "▁Alu", + -14.3331937789917 + ], + [ + "▁Kaduna", + -14.333199501037598 + ], + [ + "igger", + -14.333203315734863 + ], + [ + "▁Coppola", + -14.333215713500977 + ], + [ + "▁PDC", + -14.333230972290039 + ], + [ + "▁grumbling", + -14.333230972290039 + ], + [ + "resume", + -14.333233833312988 + ], + [ + "▁codon", + -14.333245277404785 + ], + [ + "▁unscrew", + -14.333292961120605 + ], + [ + "detached", + -14.333300590515137 + ], + [ + "▁Maharaja", + -14.333312034606934 + ], + [ + "▁Ranges", + -14.333338737487793 + ], + [ + "specialist", + -14.333419799804688 + ], + [ + "fence", + -14.33342456817627 + ], + [ + "▁hardback", + -14.333425521850586 + ], + [ + "▁Abilene", + -14.333456039428711 + ], + [ + "▁profiting", + -14.333481788635254 + ], + [ + "▁pel", + -14.33353042602539 + ], + [ + "champ", + -14.333551406860352 + ], + [ + "▁Tweak", + -14.333656311035156 + ], + [ + "▁Insane", + -14.333714485168457 + ], + [ + "▁Planners", + -14.333723068237305 + ], + [ + "▁disenfranchised", + -14.333752632141113 + ], + [ + "▁tweezers", + -14.333765983581543 + ], + [ + "▁Cabins", + -14.333780288696289 + ], + [ + "▁Coen", + -14.333808898925781 + ], + [ + "▁disinfection", + -14.33382511138916 + ], + [ + "▁Vill", + -14.333826065063477 + ], + [ + "tome", + -14.33383846282959 + ], + [ + "frog", + -14.333855628967285 + ], + [ + "▁RRB", + -14.333861351013184 + ], + [ + "▁rote", + -14.333908081054688 + ], + [ + "▁Hometown", + -14.333955764770508 + ], + [ + "▁Pérez", + -14.333986282348633 + ], + [ + "▁paver", + -14.333991050720215 + ], + [ + "GDPR", + -14.333992004394531 + ], + [ + "▁Harder", + -14.33400821685791 + ], + [ + "▁NMD", + -14.334016799926758 + ], + [ + "▁Robby", + -14.334029197692871 + ], + [ + "eena", + -14.33403491973877 + ], + [ + "▁bounding", + -14.334065437316895 + ], + [ + "considered", + -14.33407974243164 + ], + [ + "▁freighter", + -14.334110260009766 + ], + [ + "▁revamping", + -14.334113121032715 + ], + [ + "barn", + -14.334146499633789 + ], + [ + "▁Kling", + -14.334148406982422 + ], + [ + "▁wicking", + -14.334196090698242 + ], + [ + "▁EMU", + -14.334234237670898 + ], + [ + "▁Sousa", + -14.334246635437012 + ], + [ + "▁č", + -14.334257125854492 + ], + [ + "▁NAI", + -14.334258079528809 + ], + [ + "▁Percussion", + -14.334297180175781 + ], + [ + "▁shovels", + -14.334308624267578 + ], + [ + "OPE", + -14.334315299987793 + ], + [ + "▁Deepika", + -14.334328651428223 + ], + [ + "される", + -14.334365844726562 + ], + [ + "▁Drury", + -14.334369659423828 + ], + [ + "▁cytoplasm", + -14.334382057189941 + ], + [ + "▁AMOLED", + -14.334383964538574 + ], + [ + "▁malleable", + -14.334388732910156 + ], + [ + "randa", + -14.334404945373535 + ], + [ + "▁Headlight", + -14.334425926208496 + ], + [ + "lw", + -14.334441184997559 + ], + [ + "lass", + -14.334532737731934 + ], + [ + "▁cleansers", + -14.33457088470459 + ], + [ + "▁thunderous", + -14.33458137512207 + ], + [ + "TRY", + -14.334647178649902 + ], + [ + "rational", + -14.334647178649902 + ], + [ + "▁buttered", + -14.334650039672852 + ], + [ + "▁cvs", + -14.33465576171875 + ], + [ + "tä", + -14.334656715393066 + ], + [ + "カ", + -14.334715843200684 + ], + [ + "thorne", + -14.334744453430176 + ], + [ + "uerte", + -14.334803581237793 + ], + [ + "▁Expense", + -14.33484172821045 + ], + [ + "▁Rosso", + -14.334867477416992 + ], + [ + "▁Scooby", + -14.33488941192627 + ], + [ + "▁unread", + -14.33497142791748 + ], + [ + "▁Duggar", + -14.334972381591797 + ], + [ + "▁freshener", + -14.334976196289062 + ], + [ + "▁mineralization", + -14.334990501403809 + ], + [ + "▁exasperated", + -14.335031509399414 + ], + [ + "▁amphetamine", + -14.335041046142578 + ], + [ + "▁NATURAL", + -14.335054397583008 + ], + [ + "▁counterintuitive", + -14.335089683532715 + ], + [ + "▁Binance", + -14.335092544555664 + ], + [ + "▁Coatings", + -14.335107803344727 + ], + [ + "reverse", + -14.335121154785156 + ], + [ + "concert", + -14.335164070129395 + ], + [ + "▁Grav", + -14.335175514221191 + ], + [ + "▁cramp", + -14.335187911987305 + ], + [ + "▁Carbohydrate", + -14.335205078125 + ], + [ + "Watt", + -14.335229873657227 + ], + [ + "▁Bioinformatics", + -14.335238456726074 + ], + [ + "▁coders", + -14.335243225097656 + ], + [ + "▁Strengthening", + -14.335256576538086 + ], + [ + "▁Estrada", + -14.335268020629883 + ], + [ + "061", + -14.335345268249512 + ], + [ + "▁Diplomat", + -14.335348129272461 + ], + [ + "▁QUICK", + -14.335379600524902 + ], + [ + "▁SEAT", + -14.335382461547852 + ], + [ + "▁Asda", + -14.335413932800293 + ], + [ + "omic", + -14.33541488647461 + ], + [ + "▁Louboutin", + -14.335458755493164 + ], + [ + "▁downsize", + -14.335516929626465 + ], + [ + "▁sharpest", + -14.335625648498535 + ], + [ + "▁Rounding", + -14.335646629333496 + ], + [ + "通", + -14.335698127746582 + ], + [ + "khi", + -14.335726737976074 + ], + [ + "▁Impression", + -14.33576488494873 + ], + [ + "▁localised", + -14.335795402526855 + ], + [ + "▁haphazard", + -14.335799217224121 + ], + [ + "▁STRONG", + -14.3358793258667 + ], + [ + "853", + -14.33590316772461 + ], + [ + "▁hookups", + -14.335944175720215 + ], + [ + "▁sweatshirts", + -14.335989952087402 + ], + [ + "INGER", + -14.336002349853516 + ], + [ + "Forest", + -14.336023330688477 + ], + [ + "▁905", + -14.336042404174805 + ], + [ + "▁robert", + -14.336043357849121 + ], + [ + "▁Wildcat", + -14.336047172546387 + ], + [ + "▁pullback", + -14.33609676361084 + ], + [ + "urin", + -14.336114883422852 + ], + [ + "enzyme", + -14.336259841918945 + ], + [ + "▁Georgina", + -14.336278915405273 + ], + [ + "прав", + -14.336288452148438 + ], + [ + "▁Corral", + -14.336318016052246 + ], + [ + "▁servitude", + -14.336332321166992 + ], + [ + "▁Nacho", + -14.336339950561523 + ], + [ + "▁plaguing", + -14.336359024047852 + ], + [ + "neuro", + -14.336403846740723 + ], + [ + "▁eaves", + -14.336417198181152 + ], + [ + "▁Suri", + -14.336424827575684 + ], + [ + "▁bam", + -14.336434364318848 + ], + [ + "▁Padilla", + -14.33645248413086 + ], + [ + "nist", + -14.336498260498047 + ], + [ + "EIN", + -14.336539268493652 + ], + [ + "▁SPCA", + -14.336565017700195 + ], + [ + "▁Parole", + -14.336584091186523 + ], + [ + "▁Elephants", + -14.336601257324219 + ], + [ + "gana", + -14.336648941040039 + ], + [ + "▁Laine", + -14.336650848388672 + ], + [ + "▁stifled", + -14.336713790893555 + ], + [ + "▁intercession", + -14.336742401123047 + ], + [ + "Skip", + -14.336751937866211 + ], + [ + "▁Kirch", + -14.336762428283691 + ], + [ + "▁prefrontal", + -14.33676528930664 + ], + [ + "veil", + -14.336767196655273 + ], + [ + "▁unraveling", + -14.33682632446289 + ], + [ + "▁confection", + -14.336852073669434 + ], + [ + "CARE", + -14.33686637878418 + ], + [ + "▁carpool", + -14.336913108825684 + ], + [ + "Member", + -14.336981773376465 + ], + [ + "▁1770", + -14.336983680725098 + ], + [ + "▁Visually", + -14.336993217468262 + ], + [ + "▁Rota", + -14.337006568908691 + ], + [ + "hila", + -14.337011337280273 + ], + [ + "▁Farrow", + -14.337014198303223 + ], + [ + "Bush", + -14.337015151977539 + ], + [ + "▁WHILE", + -14.337064743041992 + ], + [ + "▁maxed", + -14.337119102478027 + ], + [ + "▁bushings", + -14.337170600891113 + ], + [ + "▁EGFR", + -14.337213516235352 + ], + [ + "▁Pilgrims", + -14.3372163772583 + ], + [ + "▁Lyc", + -14.337218284606934 + ], + [ + "partners", + -14.337234497070312 + ], + [ + "▁bettors", + -14.33729076385498 + ], + [ + "erous", + -14.33731746673584 + ], + [ + "▁Curie", + -14.337324142456055 + ], + [ + "Ven", + -14.33741569519043 + ], + [ + "▁dwarfs", + -14.337428092956543 + ], + [ + "▁Brutal", + -14.337448120117188 + ], + [ + "▁schizophrenic", + -14.33745002746582 + ], + [ + "▁enlisting", + -14.337467193603516 + ], + [ + "▁inimitable", + -14.337472915649414 + ], + [ + "rq", + -14.337526321411133 + ], + [ + "▁456", + -14.337550163269043 + ], + [ + "▁Watermelon", + -14.337570190429688 + ], + [ + "▁Carle", + -14.337627410888672 + ], + [ + "▁Ll", + -14.33764362335205 + ], + [ + "dancing", + -14.337660789489746 + ], + [ + "ał", + -14.337668418884277 + ], + [ + "▁facials", + -14.337684631347656 + ], + [ + "▁mailings", + -14.337745666503906 + ], + [ + "▁1798", + -14.337773323059082 + ], + [ + "▁Pio", + -14.337810516357422 + ], + [ + "▁conjured", + -14.337870597839355 + ], + [ + "▁Mund", + -14.337872505187988 + ], + [ + "▁watercraft", + -14.337879180908203 + ], + [ + "Enterprise", + -14.337904930114746 + ], + [ + "aş", + -14.337915420532227 + ], + [ + "IFICATION", + -14.337918281555176 + ], + [ + "▁Piccadilly", + -14.33793830871582 + ], + [ + "roni", + -14.337961196899414 + ], + [ + "▁Sora", + -14.337970733642578 + ], + [ + "▁maverick", + -14.337980270385742 + ], + [ + "791", + -14.338000297546387 + ], + [ + "▁sawdust", + -14.338006973266602 + ], + [ + "▁brightened", + -14.338025093078613 + ], + [ + "▁terry", + -14.338046073913574 + ], + [ + "Hong", + -14.338052749633789 + ], + [ + "deals", + -14.338066101074219 + ], + [ + "▁counterbalance", + -14.338105201721191 + ], + [ + "▁Pavlov", + -14.33810806274414 + ], + [ + "iggy", + -14.338129043579102 + ], + [ + "▁Vivi", + -14.338165283203125 + ], + [ + "▁cytoplasmic", + -14.33816909790039 + ], + [ + "PCS", + -14.338172912597656 + ], + [ + "▁modus", + -14.3381929397583 + ], + [ + "oce", + -14.3381986618042 + ], + [ + "attention", + -14.338217735290527 + ], + [ + "agua", + -14.338231086730957 + ], + [ + "▁McManus", + -14.338235855102539 + ], + [ + "plum", + -14.338238716125488 + ], + [ + "▁Holes", + -14.338239669799805 + ], + [ + "tunnel", + -14.338257789611816 + ], + [ + "▁hummingbird", + -14.33825969696045 + ], + [ + "RIE", + -14.338272094726562 + ], + [ + "▁Bluebird", + -14.338296890258789 + ], + [ + "▁BUS", + -14.33838939666748 + ], + [ + "▁pranks", + -14.338398933410645 + ], + [ + "priority", + -14.338427543640137 + ], + [ + "▁AJAX", + -14.338443756103516 + ], + [ + "▁tranche", + -14.338462829589844 + ], + [ + "▁Sainte", + -14.338500022888184 + ], + [ + "▁Terrorist", + -14.338550567626953 + ], + [ + "▁whiteness", + -14.33855152130127 + ], + [ + "MING", + -14.338590621948242 + ], + [ + "▁Dmitri", + -14.338595390319824 + ], + [ + "▁Upgraded", + -14.338651657104492 + ], + [ + "abstract", + -14.338658332824707 + ], + [ + "▁QUOTE", + -14.338666915893555 + ], + [ + "▁Quilts", + -14.338691711425781 + ], + [ + "▁melanin", + -14.338692665100098 + ], + [ + "enka", + -14.338719367980957 + ], + [ + "▁Tbilisi", + -14.338729858398438 + ], + [ + "진", + -14.338729858398438 + ], + [ + "▁manmade", + -14.338737487792969 + ], + [ + "▁Sauer", + -14.3387451171875 + ], + [ + "diabetic", + -14.338759422302246 + ], + [ + "▁Entities", + -14.338767051696777 + ], + [ + "▁Marius", + -14.33884048461914 + ], + [ + "▁throng", + -14.338958740234375 + ], + [ + "▁lemongrass", + -14.338976860046387 + ], + [ + "banking", + -14.338984489440918 + ], + [ + "▁Brayden", + -14.339048385620117 + ], + [ + "▁Forza", + -14.33906078338623 + ], + [ + "▁Dickerson", + -14.339133262634277 + ], + [ + "Universal", + -14.33918571472168 + ], + [ + "lari", + -14.339189529418945 + ], + [ + "▁psychopath", + -14.339208602905273 + ], + [ + "▁deleterious", + -14.339216232299805 + ], + [ + "▁RPA", + -14.339225769042969 + ], + [ + "▁Yugoslav", + -14.339254379272461 + ], + [ + "▁telephoto", + -14.339262962341309 + ], + [ + "▁ridership", + -14.339292526245117 + ], + [ + "▁Mortality", + -14.33935832977295 + ], + [ + "stupid", + -14.339359283447266 + ], + [ + "▁Couchbase", + -14.339364051818848 + ], + [ + "ги", + -14.339386940002441 + ], + [ + "▁Cranston", + -14.339458465576172 + ], + [ + "▁Osun", + -14.339495658874512 + ], + [ + "tige", + -14.339542388916016 + ], + [ + "▁Sulphur", + -14.339563369750977 + ], + [ + "warning", + -14.339574813842773 + ], + [ + "Cube", + -14.339604377746582 + ], + [ + "models", + -14.33961009979248 + ], + [ + "▁mirrorless", + -14.339621543884277 + ], + [ + "▁Pingback", + -14.339628219604492 + ], + [ + "lium", + -14.339640617370605 + ], + [ + "ogh", + -14.339692115783691 + ], + [ + "beast", + -14.339715957641602 + ], + [ + "▁ladle", + -14.33971881866455 + ], + [ + "▁Stroud", + -14.339754104614258 + ], + [ + "▁trumpets", + -14.339775085449219 + ], + [ + "▁Assisting", + -14.339783668518066 + ], + [ + "▁Parque", + -14.3397855758667 + ], + [ + "▁пред", + -14.3397855758667 + ], + [ + "▁Guitars", + -14.339788436889648 + ], + [ + "▁Pastel", + -14.339801788330078 + ], + [ + "▁Broth", + -14.339851379394531 + ], + [ + "▁undiagnosed", + -14.339868545532227 + ], + [ + "▁McKinnon", + -14.33996868133545 + ], + [ + "083", + -14.339990615844727 + ], + [ + "▁HALL", + -14.34007740020752 + ], + [ + "▁strapless", + -14.340085983276367 + ], + [ + "Domain", + -14.340086936950684 + ], + [ + "▁impeller", + -14.340094566345215 + ], + [ + "euil", + -14.340100288391113 + ], + [ + "▁Morningstar", + -14.340106010437012 + ], + [ + "식", + -14.34011459350586 + ], + [ + "▁Helio", + -14.340121269226074 + ], + [ + "fahr", + -14.340180397033691 + ], + [ + "▁gymnast", + -14.340184211730957 + ], + [ + "▁amass", + -14.340249061584473 + ], + [ + "▁lapsed", + -14.340252876281738 + ], + [ + "ता", + -14.340266227722168 + ], + [ + "miller", + -14.340301513671875 + ], + [ + "BET", + -14.340302467346191 + ], + [ + "▁Drawers", + -14.340315818786621 + ], + [ + "oxygen", + -14.340317726135254 + ], + [ + "▁Mikael", + -14.340375900268555 + ], + [ + "▁Katsu", + -14.340409278869629 + ], + [ + "Lift", + -14.340448379516602 + ], + [ + "▁Quadrant", + -14.340493202209473 + ], + [ + "rayed", + -14.340497970581055 + ], + [ + "Ai", + -14.340498924255371 + ], + [ + "▁Waking", + -14.340498924255371 + ], + [ + "slim", + -14.340511322021484 + ], + [ + "nosed", + -14.34051513671875 + ], + [ + "ABILITY", + -14.340556144714355 + ], + [ + "▁MBE", + -14.34057903289795 + ], + [ + "researched", + -14.340595245361328 + ], + [ + "▁EDUCATION", + -14.340603828430176 + ], + [ + "▁BOR", + -14.340608596801758 + ], + [ + "▁Prey", + -14.340620994567871 + ], + [ + "desh", + -14.340633392333984 + ], + [ + "▁Mop", + -14.340633392333984 + ], + [ + "Area", + -14.340667724609375 + ], + [ + "▁defection", + -14.34068489074707 + ], + [ + "NIS", + -14.34069538116455 + ], + [ + "MEX", + -14.340703010559082 + ], + [ + "▁QM", + -14.340726852416992 + ], + [ + "greater", + -14.34073543548584 + ], + [ + "▁Leahy", + -14.340770721435547 + ], + [ + "▁arraignment", + -14.340776443481445 + ], + [ + "drivers", + -14.340792655944824 + ], + [ + "flung", + -14.34079647064209 + ], + [ + "phyl", + -14.340805053710938 + ], + [ + "▁Causeway", + -14.340811729431152 + ], + [ + "▁omg", + -14.34082317352295 + ], + [ + "▁mealtime", + -14.340827941894531 + ], + [ + "▁Bedfordshire", + -14.340868949890137 + ], + [ + "▁prepayment", + -14.340874671936035 + ], + [ + "▁Aniston", + -14.34090518951416 + ], + [ + "▁SERVPRO", + -14.340928077697754 + ], + [ + "▁aerodynamics", + -14.340946197509766 + ], + [ + "▁Sku", + -14.341031074523926 + ], + [ + "▁Luang", + -14.341045379638672 + ], + [ + "iglio", + -14.341058731079102 + ], + [ + "▁raccoons", + -14.34108829498291 + ], + [ + "▁Hamad", + -14.341176986694336 + ], + [ + "▁Banda", + -14.341180801391602 + ], + [ + "▁Irrespective", + -14.341185569763184 + ], + [ + "μα", + -14.341194152832031 + ], + [ + "▁1813", + -14.341217994689941 + ], + [ + "▁curries", + -14.341222763061523 + ], + [ + "rima", + -14.341259002685547 + ], + [ + "▁Analyzing", + -14.341259002685547 + ], + [ + "▁tutu", + -14.34128475189209 + ], + [ + "▁pancreatitis", + -14.341307640075684 + ], + [ + "cak", + -14.341322898864746 + ], + [ + "▁touchy", + -14.34133529663086 + ], + [ + "idal", + -14.341412544250488 + ], + [ + "▁Holman", + -14.34146785736084 + ], + [ + "件", + -14.34147834777832 + ], + [ + "synthetic", + -14.341524124145508 + ], + [ + "▁Shuffle", + -14.341543197631836 + ], + [ + "artificial", + -14.341568946838379 + ], + [ + "▁macabre", + -14.341584205627441 + ], + [ + "ckman", + -14.341609001159668 + ], + [ + "▁Accommodations", + -14.341649055480957 + ], + [ + "pH", + -14.341680526733398 + ], + [ + "krishna", + -14.341691017150879 + ], + [ + "mple", + -14.341716766357422 + ], + [ + "▁Bedouin", + -14.341742515563965 + ], + [ + "▁mundo", + -14.341761589050293 + ], + [ + "▁Motherboard", + -14.341804504394531 + ], + [ + "▁EEOC", + -14.341811180114746 + ], + [ + "▁Boswell", + -14.34184741973877 + ], + [ + "ˆ", + -14.341893196105957 + ], + [ + "▁vanishes", + -14.341907501220703 + ], + [ + "▁€10", + -14.341951370239258 + ], + [ + "TES", + -14.341987609863281 + ], + [ + "▁foi", + -14.341991424560547 + ], + [ + "▁MUS", + -14.341996192932129 + ], + [ + "Arg", + -14.342010498046875 + ], + [ + "▁Hobbes", + -14.34203052520752 + ], + [ + "gall", + -14.342086791992188 + ], + [ + "▁1805", + -14.342142105102539 + ], + [ + "▁Erd", + -14.342159271240234 + ], + [ + "videos", + -14.34217643737793 + ], + [ + "rans", + -14.342226028442383 + ], + [ + "▁adversarial", + -14.342247009277344 + ], + [ + "▁untenable", + -14.342253684997559 + ], + [ + "english", + -14.342289924621582 + ], + [ + "▁Arrowhead", + -14.34230899810791 + ], + [ + "1941", + -14.34232234954834 + ], + [ + "▁Supposedly", + -14.342370986938477 + ], + [ + "前記", + -14.342371940612793 + ], + [ + "▁Shimmer", + -14.342425346374512 + ], + [ + "▁dazed", + -14.342432975769043 + ], + [ + "▁bunt", + -14.34244155883789 + ], + [ + "▁Lothian", + -14.342470169067383 + ], + [ + "▁wedged", + -14.342506408691406 + ], + [ + "892", + -14.342525482177734 + ], + [ + "▁blaring", + -14.342551231384277 + ], + [ + "▁Gatorade", + -14.342564582824707 + ], + [ + "▁Vallarta", + -14.34257984161377 + ], + [ + "▁Gw", + -14.342580795288086 + ], + [ + "▁schoolers", + -14.3425874710083 + ], + [ + "▁mace", + -14.34261417388916 + ], + [ + "▁epithet", + -14.342635154724121 + ], + [ + "▁DCI", + -14.342658996582031 + ], + [ + "▁Disp", + -14.342676162719727 + ], + [ + "plans", + -14.34268856048584 + ], + [ + "▁whooping", + -14.342694282531738 + ], + [ + "▁roofer", + -14.342714309692383 + ], + [ + "▁Oliveira", + -14.342720031738281 + ], + [ + "▁Addict", + -14.34272575378418 + ], + [ + "▁Retire", + -14.342752456665039 + ], + [ + "▁1827", + -14.342761039733887 + ], + [ + "▁Squat", + -14.342782974243164 + ], + [ + "▁Oats", + -14.34283447265625 + ], + [ + "▁oops", + -14.34285831451416 + ], + [ + "▁Northrop", + -14.342890739440918 + ], + [ + "▁WAL", + -14.342905044555664 + ], + [ + "▁intersecting", + -14.342911720275879 + ], + [ + "▁Mayhem", + -14.342915534973145 + ], + [ + "alty", + -14.342921257019043 + ], + [ + "▁cine", + -14.342923164367676 + ], + [ + "▁Apes", + -14.343001365661621 + ], + [ + "▁blacklisted", + -14.343005180358887 + ], + [ + "▁Eich", + -14.343012809753418 + ], + [ + "▁joker", + -14.343050003051758 + ], + [ + "▁divestment", + -14.343067169189453 + ], + [ + "thwaite", + -14.343127250671387 + ], + [ + "▁mesa", + -14.343143463134766 + ], + [ + "▁exude", + -14.343210220336914 + ], + [ + "▁Narnia", + -14.343214988708496 + ], + [ + "▁uncontrollably", + -14.34323501586914 + ], + [ + "▁verdicts", + -14.343238830566406 + ], + [ + "Crystal", + -14.343244552612305 + ], + [ + "▁Delegation", + -14.343245506286621 + ], + [ + "Movie", + -14.343280792236328 + ], + [ + "▁fleshy", + -14.343291282653809 + ], + [ + "mist", + -14.343403816223145 + ], + [ + "▁massacres", + -14.343429565429688 + ], + [ + "▁ile", + -14.34347152709961 + ], + [ + "▁Yel", + -14.343502044677734 + ], + [ + "▁Decal", + -14.343598365783691 + ], + [ + "▁craved", + -14.343645095825195 + ], + [ + "▁Fak", + -14.343701362609863 + ], + [ + "EVA", + -14.343706130981445 + ], + [ + "▁Elevate", + -14.343731880187988 + ], + [ + "▁Reminds", + -14.343735694885254 + ], + [ + "throat", + -14.343795776367188 + ], + [ + "▁Champlain", + -14.343809127807617 + ], + [ + "品", + -14.343815803527832 + ], + [ + "dien", + -14.343908309936523 + ], + [ + "vinyl", + -14.343911170959473 + ], + [ + "▁Bom", + -14.343926429748535 + ], + [ + "▁Leung", + -14.343964576721191 + ], + [ + "eans", + -14.34396743774414 + ], + [ + "▁innermost", + -14.34397029876709 + ], + [ + "▁fiscally", + -14.343982696533203 + ], + [ + "▁anvil", + -14.343988418579102 + ], + [ + "VX", + -14.344043731689453 + ], + [ + "griff", + -14.344077110290527 + ], + [ + "▁PROCESS", + -14.34407901763916 + ], + [ + "▁Obstetrics", + -14.344086647033691 + ], + [ + "▁opportune", + -14.34409236907959 + ], + [ + "▁Gemstone", + -14.34411907196045 + ], + [ + "▁χ", + -14.344244956970215 + ], + [ + "▁Spyder", + -14.344246864318848 + ], + [ + "▁RDF", + -14.344328880310059 + ], + [ + "matching", + -14.344350814819336 + ], + [ + "unto", + -14.344398498535156 + ], + [ + "▁BOOM", + -14.34440803527832 + ], + [ + "▁sterilized", + -14.3444242477417 + ], + [ + "▁photocopy", + -14.344470024108887 + ], + [ + "▁thickens", + -14.344475746154785 + ], + [ + "▁upping", + -14.344508171081543 + ], + [ + "joe", + -14.344532012939453 + ], + [ + "▁pocketed", + -14.344542503356934 + ], + [ + "▁carolina", + -14.344544410705566 + ], + [ + "▁dumbbells", + -14.344568252563477 + ], + [ + "▁indignant", + -14.34459114074707 + ], + [ + "▁Blythe", + -14.344618797302246 + ], + [ + "▁alumina", + -14.344618797302246 + ], + [ + "nari", + -14.344624519348145 + ], + [ + "▁خ", + -14.344706535339355 + ], + [ + "▁sensuality", + -14.344718933105469 + ], + [ + "Weight", + -14.34472942352295 + ], + [ + "▁Steep", + -14.344780921936035 + ], + [ + "▁Uranium", + -14.3447904586792 + ], + [ + "▁Samui", + -14.344816207885742 + ], + [ + "▁opined", + -14.344820022583008 + ], + [ + "▁nee", + -14.344837188720703 + ], + [ + "▁Kov", + -14.344880104064941 + ], + [ + "nem", + -14.344947814941406 + ], + [ + "▁Haifa", + -14.344974517822266 + ], + [ + "afe", + -14.345047950744629 + ], + [ + "▁parochial", + -14.345062255859375 + ], + [ + "▁Yakima", + -14.345069885253906 + ], + [ + "산", + -14.345083236694336 + ], + [ + "nutrition", + -14.345096588134766 + ], + [ + "OLE", + -14.345099449157715 + ], + [ + "▁Vla", + -14.345120429992676 + ], + [ + "▁Kamloops", + -14.345124244689941 + ], + [ + "▁Domains", + -14.345133781433105 + ], + [ + "frozen", + -14.345151901245117 + ], + [ + "ogic", + -14.345171928405762 + ], + [ + "▁LRT", + -14.345197677612305 + ], + [ + "▁Corker", + -14.345218658447266 + ], + [ + "▁bandana", + -14.345219612121582 + ], + [ + "▁438", + -14.34522533416748 + ], + [ + "Overall", + -14.345227241516113 + ], + [ + "▁Astrid", + -14.345233917236328 + ], + [ + "▁sentinel", + -14.345248222351074 + ], + [ + "sounds", + -14.345277786254883 + ], + [ + "▁Eritrean", + -14.345370292663574 + ], + [ + "▁Laure", + -14.345446586608887 + ], + [ + "authorized", + -14.34545612335205 + ], + [ + "▁coagulation", + -14.345516204833984 + ], + [ + "▁safaris", + -14.345521926879883 + ], + [ + "▁Saar", + -14.34553337097168 + ], + [ + "ENE", + -14.345542907714844 + ], + [ + "▁Policing", + -14.345572471618652 + ], + [ + "▁layover", + -14.345626831054688 + ], + [ + "asian", + -14.345657348632812 + ], + [ + "079", + -14.345660209655762 + ], + [ + "▁Hypertension", + -14.34566593170166 + ], + [ + "oeuvres", + -14.34570598602295 + ], + [ + "▁nothingness", + -14.345734596252441 + ], + [ + "romantic", + -14.345770835876465 + ], + [ + "adic", + -14.345787048339844 + ], + [ + "▁Zimbabwean", + -14.345837593078613 + ], + [ + "▁RCW", + -14.345846176147461 + ], + [ + "creek", + -14.345871925354004 + ], + [ + "сь", + -14.3458890914917 + ], + [ + "2022", + -14.345917701721191 + ], + [ + "▁belted", + -14.345930099487305 + ], + [ + "▁hippies", + -14.345952033996582 + ], + [ + "▁situate", + -14.345967292785645 + ], + [ + "▁pliable", + -14.346006393432617 + ], + [ + "▁BPO", + -14.346026420593262 + ], + [ + "Roger", + -14.346031188964844 + ], + [ + "plasia", + -14.34603214263916 + ], + [ + "▁PIXMA", + -14.34603214263916 + ], + [ + "definitely", + -14.346151351928711 + ], + [ + "▁Steff", + -14.346190452575684 + ], + [ + "851", + -14.346212387084961 + ], + [ + "▁AGAINST", + -14.34622573852539 + ], + [ + "platz", + -14.346322059631348 + ], + [ + "▁sapiens", + -14.346335411071777 + ], + [ + "iddy", + -14.346366882324219 + ], + [ + "▁scuffle", + -14.346431732177734 + ], + [ + "▁Worthing", + -14.346437454223633 + ], + [ + "▁armrest", + -14.346495628356934 + ], + [ + "valley", + -14.346513748168945 + ], + [ + "▁extort", + -14.34656047821045 + ], + [ + "administration", + -14.346577644348145 + ], + [ + "▁Azad", + -14.346593856811523 + ], + [ + "zko", + -14.346649169921875 + ], + [ + "▁defibrillator", + -14.346684455871582 + ], + [ + "AVE", + -14.346696853637695 + ], + [ + "opinion", + -14.346741676330566 + ], + [ + "acca", + -14.3467435836792 + ], + [ + "ovan", + -14.346752166748047 + ], + [ + "argo", + -14.34680461883545 + ], + [ + "chor", + -14.34681224822998 + ], + [ + "лен", + -14.346814155578613 + ], + [ + "▁doubleheader", + -14.346846580505371 + ], + [ + "imeter", + -14.346938133239746 + ], + [ + "▁hypersensitivity", + -14.346941947937012 + ], + [ + "Couple", + -14.346955299377441 + ], + [ + "▁physiotherapist", + -14.346960067749023 + ], + [ + "cyclic", + -14.346964836120605 + ], + [ + "▁crouched", + -14.347004890441895 + ], + [ + "tice", + -14.347005844116211 + ], + [ + "Gay", + -14.347034454345703 + ], + [ + "gale", + -14.347061157226562 + ], + [ + "▁Bully", + -14.347088813781738 + ], + [ + "▁Dud", + -14.347124099731445 + ], + [ + "▁odometer", + -14.347128868103027 + ], + [ + "959", + -14.34715461730957 + ], + [ + "hov", + -14.347171783447266 + ], + [ + "▁Crusader", + -14.347182273864746 + ], + [ + "minant", + -14.347214698791504 + ], + [ + "▁amphitheater", + -14.347232818603516 + ], + [ + "▁Telford", + -14.347249984741211 + ], + [ + "▁kibble", + -14.347254753112793 + ], + [ + "▁Ivey", + -14.347280502319336 + ], + [ + "firing", + -14.347309112548828 + ], + [ + "SIP", + -14.347314834594727 + ], + [ + "▁Jol", + -14.347314834594727 + ], + [ + "▁dharma", + -14.347329139709473 + ], + [ + "▁Kasi", + -14.347334861755371 + ], + [ + "▁Ansari", + -14.347359657287598 + ], + [ + "▁jesus", + -14.347371101379395 + ], + [ + "▁Vip", + -14.34742546081543 + ], + [ + "▁transgress", + -14.347426414489746 + ], + [ + "▁flagyl", + -14.34753704071045 + ], + [ + "▁Juve", + -14.347537994384766 + ], + [ + "▁Incorporate", + -14.34756088256836 + ], + [ + "▁braved", + -14.347577095031738 + ], + [ + "Prop", + -14.347587585449219 + ], + [ + "▁buoyed", + -14.347600936889648 + ], + [ + "▁arranges", + -14.347628593444824 + ], + [ + "▁Hanley", + -14.347688674926758 + ], + [ + "▁Dama", + -14.3477201461792 + ], + [ + "▁Bigg", + -14.347765922546387 + ], + [ + "▁Ayn", + -14.34778881072998 + ], + [ + "▁OBD", + -14.34779167175293 + ], + [ + "▁Auri", + -14.347813606262207 + ], + [ + "▁Aspect", + -14.347845077514648 + ], + [ + "▁shelled", + -14.34788990020752 + ], + [ + "telle", + -14.347900390625 + ], + [ + "weird", + -14.347915649414062 + ], + [ + "▁Envision", + -14.347942352294922 + ], + [ + "▁Ashby", + -14.347963333129883 + ], + [ + "▁ruse", + -14.347981452941895 + ], + [ + "▁eso", + -14.348005294799805 + ], + [ + "uur", + -14.34805965423584 + ], + [ + "▁meh", + -14.348064422607422 + ], + [ + "▁631", + -14.348109245300293 + ], + [ + "▁ow", + -14.348111152648926 + ], + [ + "▁Phosphate", + -14.348121643066406 + ], + [ + "▁Recipient", + -14.348133087158203 + ], + [ + "▁Priorities", + -14.3482027053833 + ], + [ + "▁Baez", + -14.348214149475098 + ], + [ + "lization", + -14.348254203796387 + ], + [ + "amara", + -14.348328590393066 + ], + [ + "▁exterminator", + -14.3483304977417 + ], + [ + "▁faceless", + -14.348345756530762 + ], + [ + "▁Elevated", + -14.348388671875 + ], + [ + "▁aimlessly", + -14.348396301269531 + ], + [ + "▁Dieter", + -14.348410606384277 + ], + [ + "Lou", + -14.348414421081543 + ], + [ + "▁Philippians", + -14.348432540893555 + ], + [ + "▁790", + -14.348437309265137 + ], + [ + "TAIN", + -14.3484525680542 + ], + [ + "▁Fetch", + -14.348475456237793 + ], + [ + "Ø", + -14.348483085632324 + ], + [ + "▁unsubstantiated", + -14.348492622375488 + ], + [ + "familiar", + -14.348538398742676 + ], + [ + "bog", + -14.348546981811523 + ], + [ + "▁Batu", + -14.348555564880371 + ], + [ + "Thread", + -14.348575592041016 + ], + [ + "inne", + -14.348640441894531 + ], + [ + "▁PUMA", + -14.348665237426758 + ], + [ + "▁Intl", + -14.348701477050781 + ], + [ + "▁Monta", + -14.348702430725098 + ], + [ + "▁Sourcing", + -14.348702430725098 + ], + [ + "▁Commun", + -14.348752975463867 + ], + [ + "▁Sani", + -14.3487548828125 + ], + [ + "▁Counts", + -14.34875774383545 + ], + [ + "▁myeloid", + -14.348762512207031 + ], + [ + "▁Odell", + -14.348776817321777 + ], + [ + "▁Gameplay", + -14.348783493041992 + ], + [ + "▁dressers", + -14.348798751831055 + ], + [ + "▁Criterion", + -14.34880256652832 + ], + [ + "▁conceit", + -14.348823547363281 + ], + [ + "▁Assay", + -14.348836898803711 + ], + [ + "▁Unions", + -14.34884262084961 + ], + [ + "SERV", + -14.34890079498291 + ], + [ + "▁Shotgun", + -14.3489408493042 + ], + [ + "▁Bho", + -14.349014282226562 + ], + [ + "▁Barely", + -14.349017143249512 + ], + [ + "cement", + -14.34909439086914 + ], + [ + "▁585", + -14.349142074584961 + ], + [ + "▁UHF", + -14.349180221557617 + ], + [ + "▁buckled", + -14.34920597076416 + ], + [ + "914", + -14.349206924438477 + ], + [ + "IFT", + -14.349215507507324 + ], + [ + "Council", + -14.34922981262207 + ], + [ + "▁Infections", + -14.349244117736816 + ], + [ + "▁Remains", + -14.34931755065918 + ], + [ + "Between", + -14.349386215209961 + ], + [ + "▁lagu", + -14.349409103393555 + ], + [ + "▁717", + -14.349418640136719 + ], + [ + "▁JVM", + -14.349418640136719 + ], + [ + "▁GOAL", + -14.349441528320312 + ], + [ + "▁Eastbourne", + -14.349445343017578 + ], + [ + "alex", + -14.349491119384766 + ], + [ + "▁rhinos", + -14.34957504272461 + ], + [ + "▁bron", + -14.349575996398926 + ], + [ + "▁Assemblies", + -14.349589347839355 + ], + [ + "▁447", + -14.349592208862305 + ], + [ + "▁tradesmen", + -14.34964656829834 + ], + [ + "Barr", + -14.349705696105957 + ], + [ + "▁Maarten", + -14.349756240844727 + ], + [ + "▁2800", + -14.34975814819336 + ], + [ + "▁extravagance", + -14.349762916564941 + ], + [ + "▁SYN", + -14.349771499633789 + ], + [ + "▁endgame", + -14.3497896194458 + ], + [ + "▁riskier", + -14.3497953414917 + ], + [ + "▁cau", + -14.349798202514648 + ], + [ + "▁sniffed", + -14.349807739257812 + ], + [ + "conventional", + -14.34982681274414 + ], + [ + "▁emperors", + -14.349879264831543 + ], + [ + "retirement", + -14.349899291992188 + ], + [ + "chman", + -14.349913597106934 + ], + [ + "▁MILLION", + -14.349964141845703 + ], + [ + "▁Maximus", + -14.35003662109375 + ], + [ + "ים", + -14.350103378295898 + ], + [ + "▁Fifa", + -14.350138664245605 + ], + [ + "Tiger", + -14.350159645080566 + ], + [ + "▁Ticketmaster", + -14.350173950195312 + ], + [ + "▁Bilingual", + -14.350232124328613 + ], + [ + "▁Storey", + -14.350232124328613 + ], + [ + "▁protectionism", + -14.350244522094727 + ], + [ + "▁Snowy", + -14.350248336791992 + ], + [ + "▁HealthCare", + -14.350269317626953 + ], + [ + "▁kiddo", + -14.350313186645508 + ], + [ + "▁Gim", + -14.350364685058594 + ], + [ + "▁Knew", + -14.350366592407227 + ], + [ + "▁radiated", + -14.350366592407227 + ], + [ + "▁KITCHEN", + -14.350382804870605 + ], + [ + "wagon", + -14.350390434265137 + ], + [ + "▁Exist", + -14.350469589233398 + ], + [ + "▁Valium", + -14.350555419921875 + ], + [ + "▁847", + -14.35055923461914 + ], + [ + "▁subliminal", + -14.350564002990723 + ], + [ + "주", + -14.350591659545898 + ], + [ + "▁Hutchison", + -14.350597381591797 + ], + [ + "▁insulator", + -14.350627899169922 + ], + [ + "goes", + -14.350630760192871 + ], + [ + "▁Whittier", + -14.350690841674805 + ], + [ + "861", + -14.350692749023438 + ], + [ + "gressive", + -14.35069465637207 + ], + [ + "▁462", + -14.350709915161133 + ], + [ + "▁appellation", + -14.350709915161133 + ], + [ + "▁realignment", + -14.350754737854004 + ], + [ + "▁singularity", + -14.350811004638672 + ], + [ + "▁antiretroviral", + -14.350833892822266 + ], + [ + "battery", + -14.350846290588379 + ], + [ + "▁congratulating", + -14.350863456726074 + ], + [ + "▁flanges", + -14.350863456726074 + ], + [ + "▁misspelled", + -14.350939750671387 + ], + [ + "▁FOUND", + -14.350943565368652 + ], + [ + "▁Drip", + -14.35096263885498 + ], + [ + "▁Priests", + -14.351000785827637 + ], + [ + "▁pluralism", + -14.351005554199219 + ], + [ + "▁Aperture", + -14.351058006286621 + ], + [ + "▁firefox", + -14.351072311401367 + ], + [ + "▁vita", + -14.351080894470215 + ], + [ + "▁Zinke", + -14.351194381713867 + ], + [ + "ADS", + -14.351201057434082 + ], + [ + "▁subcontract", + -14.351202964782715 + ], + [ + "▁RAND", + -14.351203918457031 + ], + [ + "ე", + -14.351302146911621 + ], + [ + "publisher", + -14.351322174072266 + ], + [ + "▁aliases", + -14.351348876953125 + ], + [ + "anxiety", + -14.351409912109375 + ], + [ + "▁statehood", + -14.351433753967285 + ], + [ + "▁OKC", + -14.351456642150879 + ], + [ + "▁Luiz", + -14.351459503173828 + ], + [ + "▁mowed", + -14.351476669311523 + ], + [ + "▁epistle", + -14.351485252380371 + ], + [ + "اب", + -14.3514986038208 + ], + [ + "▁tenderloin", + -14.351546287536621 + ], + [ + "▁epileptic", + -14.351553916931152 + ], + [ + "▁unspoiled", + -14.351560592651367 + ], + [ + "▁Antelope", + -14.351573944091797 + ], + [ + "▁raved", + -14.351592063903809 + ], + [ + "▁Bathurst", + -14.351632118225098 + ], + [ + "voiced", + -14.351637840270996 + ], + [ + "Ros", + -14.351656913757324 + ], + [ + "classified", + -14.351666450500488 + ], + [ + "▁eminently", + -14.351680755615234 + ], + [ + "▁Lindy", + -14.351726531982422 + ], + [ + "▁cameraman", + -14.3517484664917 + ], + [ + "rka", + -14.35175609588623 + ], + [ + "▁GTS", + -14.351762771606445 + ], + [ + "▁Barba", + -14.351770401000977 + ], + [ + "示", + -14.35177993774414 + ], + [ + "▁fibro", + -14.351828575134277 + ], + [ + "流", + -14.351909637451172 + ], + [ + "▁TRO", + -14.35194206237793 + ], + [ + "İ", + -14.351958274841309 + ], + [ + "heath", + -14.351968765258789 + ], + [ + "▁UVB", + -14.351968765258789 + ], + [ + "▁Marlboro", + -14.351969718933105 + ], + [ + "▁Ordnance", + -14.3519926071167 + ], + [ + "▁Merced", + -14.352044105529785 + ], + [ + "▁dropper", + -14.352062225341797 + ], + [ + "▁gelding", + -14.352076530456543 + ], + [ + "▁fm", + -14.352116584777832 + ], + [ + "▁carelessly", + -14.352131843566895 + ], + [ + "▁DIV", + -14.352132797241211 + ], + [ + "▁oneness", + -14.352133750915527 + ], + [ + "rme", + -14.352153778076172 + ], + [ + "▁Hinge", + -14.352153778076172 + ], + [ + "▁Bb", + -14.3521728515625 + ], + [ + "▁quickness", + -14.352194786071777 + ], + [ + "▁918", + -14.35219669342041 + ], + [ + "▁Radisson", + -14.352211952209473 + ], + [ + "ISON", + -14.352267265319824 + ], + [ + "Present", + -14.352290153503418 + ], + [ + "sampling", + -14.352313041687012 + ], + [ + "▁vacationers", + -14.352322578430176 + ], + [ + "▁mica", + -14.352328300476074 + ], + [ + "tsi", + -14.352331161499023 + ], + [ + "▁SUMMER", + -14.352352142333984 + ], + [ + "ание", + -14.352368354797363 + ], + [ + "▁methodically", + -14.352374076843262 + ], + [ + "▁SPEC", + -14.352375984191895 + ], + [ + "▁linebackers", + -14.35239315032959 + ], + [ + "PDP", + -14.352437973022461 + ], + [ + "ganj", + -14.352479934692383 + ], + [ + "alist", + -14.352497100830078 + ], + [ + "▁confiscation", + -14.352516174316406 + ], + [ + "サ", + -14.352517127990723 + ], + [ + "Jews", + -14.352530479431152 + ], + [ + "▁suitors", + -14.352642059326172 + ], + [ + "873", + -14.352659225463867 + ], + [ + "▁absurdly", + -14.352662086486816 + ], + [ + "ijk", + -14.352678298950195 + ], + [ + "▁drowsiness", + -14.352690696716309 + ], + [ + "▁Lanes", + -14.352713584899902 + ], + [ + "▁Tait", + -14.35279369354248 + ], + [ + "▁Tchaikovsky", + -14.352795600891113 + ], + [ + "▁Firebird", + -14.352822303771973 + ], + [ + "▁heavyweights", + -14.352858543395996 + ], + [ + "ICI", + -14.352859497070312 + ], + [ + "▁Covent", + -14.352859497070312 + ], + [ + "▁VAC", + -14.352876663208008 + ], + [ + "▁Serbs", + -14.35288143157959 + ], + [ + "▁specter", + -14.352893829345703 + ], + [ + "prevent", + -14.352903366088867 + ], + [ + "▁waned", + -14.352948188781738 + ], + [ + "▁strangle", + -14.3529634475708 + ], + [ + "▁Ervin", + -14.35299301147461 + ], + [ + "▁honouring", + -14.353065490722656 + ], + [ + "▁subversion", + -14.353074073791504 + ], + [ + "synthesis", + -14.35307502746582 + ], + [ + "▁canton", + -14.353124618530273 + ], + [ + "▁WORKS", + -14.353157043457031 + ], + [ + "▁biogas", + -14.353161811828613 + ], + [ + "YD", + -14.353172302246094 + ], + [ + "▁Mistake", + -14.353191375732422 + ], + [ + "▁Plumbers", + -14.353192329406738 + ], + [ + "ض", + -14.353198051452637 + ], + [ + "pora", + -14.353232383728027 + ], + [ + "▁reconciling", + -14.353248596191406 + ], + [ + "rhythm", + -14.353278160095215 + ], + [ + "▁ravioli", + -14.35329818725586 + ], + [ + "▁compilations", + -14.353317260742188 + ], + [ + "来", + -14.353327751159668 + ], + [ + "▁implore", + -14.353331565856934 + ], + [ + "▁unsaturated", + -14.353339195251465 + ], + [ + "RCA", + -14.353347778320312 + ], + [ + "▁stow", + -14.35338020324707 + ], + [ + "▁EVP", + -14.35339641571045 + ], + [ + "▁Foxconn", + -14.353416442871094 + ], + [ + "ác", + -14.353423118591309 + ], + [ + "kian", + -14.353439331054688 + ], + [ + "▁Foss", + -14.353450775146484 + ], + [ + "▁Mow", + -14.353499412536621 + ], + [ + "▁391", + -14.353503227233887 + ], + [ + "mongering", + -14.353544235229492 + ], + [ + "▁Tatiana", + -14.353569030761719 + ], + [ + "▁Param", + -14.3535737991333 + ], + [ + "▁Enquirer", + -14.353584289550781 + ], + [ + "▁cassettes", + -14.353615760803223 + ], + [ + "▁fluttering", + -14.3536376953125 + ], + [ + "▁LSE", + -14.353669166564941 + ], + [ + "▁hallowed", + -14.35373306274414 + ], + [ + "▁goodbyes", + -14.353734970092773 + ], + [ + "▁Dimitrov", + -14.353743553161621 + ], + [ + "▁Palau", + -14.353764533996582 + ], + [ + "▁burglaries", + -14.35378646850586 + ], + [ + "▁modulus", + -14.353848457336426 + ], + [ + "▁Rambo", + -14.353886604309082 + ], + [ + "▁muttering", + -14.353973388671875 + ], + [ + "▁Puritan", + -14.354002952575684 + ], + [ + "▁Bratislava", + -14.35403823852539 + ], + [ + "skew", + -14.354047775268555 + ], + [ + "contrast", + -14.35408878326416 + ], + [ + "▁glows", + -14.354113578796387 + ], + [ + "Ï", + -14.354151725769043 + ], + [ + "▁jazzy", + -14.354157447814941 + ], + [ + "umbo", + -14.354158401489258 + ], + [ + "alloy", + -14.354198455810547 + ], + [ + "▁Kirsty", + -14.354207992553711 + ], + [ + "▁Sealing", + -14.354246139526367 + ], + [ + "gression", + -14.354257583618164 + ], + [ + "▁DTC", + -14.35427188873291 + ], + [ + "▁Immersion", + -14.354318618774414 + ], + [ + "urance", + -14.354357719421387 + ], + [ + "▁Tokens", + -14.354358673095703 + ], + [ + "Rap", + -14.35435962677002 + ], + [ + "▁Curated", + -14.354427337646484 + ], + [ + "▁Bonita", + -14.35445785522461 + ], + [ + "EIS", + -14.354462623596191 + ], + [ + "▁Composites", + -14.354464530944824 + ], + [ + "▁authorise", + -14.354524612426758 + ], + [ + "▁Virtualization", + -14.354580879211426 + ], + [ + "▁UNO", + -14.354604721069336 + ], + [ + "▁Skoda", + -14.354608535766602 + ], + [ + "kö", + -14.354642868041992 + ], + [ + "▁sexiest", + -14.354667663574219 + ], + [ + "▁Devlin", + -14.354679107666016 + ], + [ + "evin", + -14.354681968688965 + ], + [ + "▁Classy", + -14.35472583770752 + ], + [ + "▁Orthodontics", + -14.354728698730469 + ], + [ + "choose", + -14.354785919189453 + ], + [ + "▁Ozark", + -14.354789733886719 + ], + [ + "▁Engels", + -14.3547945022583 + ], + [ + "▁latitudes", + -14.354806900024414 + ], + [ + "▁thu", + -14.354808807373047 + ], + [ + "▁gestured", + -14.354850769042969 + ], + [ + "▁Dauphin", + -14.354920387268066 + ], + [ + "▁exerts", + -14.354933738708496 + ], + [ + "계", + -14.354945182800293 + ], + [ + "Kent", + -14.354965209960938 + ], + [ + "▁arbiter", + -14.35499095916748 + ], + [ + "▁handball", + -14.355051040649414 + ], + [ + "Alert", + -14.355070114135742 + ], + [ + "▁Southland", + -14.355111122131348 + ], + [ + "CHER", + -14.355135917663574 + ], + [ + "▁beekeeping", + -14.355171203613281 + ], + [ + "▁infecting", + -14.35519790649414 + ], + [ + "▁Judo", + -14.355199813842773 + ], + [ + "▁jag", + -14.355216026306152 + ], + [ + "▁815", + -14.355222702026367 + ], + [ + "ität", + -14.355243682861328 + ], + [ + "▁adalah", + -14.355254173278809 + ], + [ + "ල", + -14.355276107788086 + ], + [ + "▁Weighing", + -14.355338096618652 + ], + [ + "▁Signup", + -14.355366706848145 + ], + [ + "▁dep", + -14.355371475219727 + ], + [ + "Ace", + -14.35538101196289 + ], + [ + "▁Ladd", + -14.355386734008789 + ], + [ + "▁Reduces", + -14.355387687683105 + ], + [ + "▁Nw", + -14.355392456054688 + ], + [ + "▁babble", + -14.355433464050293 + ], + [ + "competition", + -14.355450630187988 + ], + [ + "▁dimmed", + -14.355460166931152 + ], + [ + "pedal", + -14.355462074279785 + ], + [ + "EET", + -14.35547161102295 + ], + [ + "▁warship", + -14.355520248413086 + ], + [ + "▁Manley", + -14.355542182922363 + ], + [ + "▁Forth", + -14.355567932128906 + ], + [ + "▁Pura", + -14.355591773986816 + ], + [ + "vala", + -14.355608940124512 + ], + [ + "▁Commodities", + -14.355612754821777 + ], + [ + "QB", + -14.355645179748535 + ], + [ + "odes", + -14.355674743652344 + ], + [ + "▁deluded", + -14.355674743652344 + ], + [ + "▁generative", + -14.35567569732666 + ], + [ + "Hons", + -14.35570240020752 + ], + [ + "▁hoarder", + -14.355703353881836 + ], + [ + "PATH", + -14.35571002960205 + ], + [ + "▁ambushed", + -14.35573959350586 + ], + [ + "▁EAS", + -14.355751037597656 + ], + [ + "malware", + -14.355759620666504 + ], + [ + "▁Carta", + -14.355769157409668 + ], + [ + "▁bauxite", + -14.355780601501465 + ], + [ + "▁CER", + -14.35581111907959 + ], + [ + "▁Mindful", + -14.355846405029297 + ], + [ + "▁Charged", + -14.355877876281738 + ], + [ + "▁Ahhh", + -14.355924606323242 + ], + [ + "▁Limitations", + -14.355934143066406 + ], + [ + "ivation", + -14.355978965759277 + ], + [ + "lard", + -14.355986595153809 + ], + [ + "▁Cerro", + -14.355989456176758 + ], + [ + "tongue", + -14.355993270874023 + ], + [ + "▁UAS", + -14.35600471496582 + ], + [ + "▁MacOS", + -14.35603141784668 + ], + [ + "Beth", + -14.356043815612793 + ], + [ + "▁wielded", + -14.356084823608398 + ], + [ + "itte", + -14.356118202209473 + ], + [ + "▁BELIEVE", + -14.356130599975586 + ], + [ + "▁Funnel", + -14.3561372756958 + ], + [ + "▁bewildering", + -14.356146812438965 + ], + [ + "ISIS", + -14.356152534484863 + ], + [ + "▁Tierney", + -14.356181144714355 + ], + [ + "▁lightbulb", + -14.356197357177734 + ], + [ + "▁Kuk", + -14.356252670288086 + ], + [ + "nung", + -14.356261253356934 + ], + [ + "▁393", + -14.356301307678223 + ], + [ + "acho", + -14.356355667114258 + ], + [ + "▁OWNER", + -14.35636043548584 + ], + [ + "▁colonoscopy", + -14.35636043548584 + ], + [ + "▁GMA", + -14.356393814086914 + ], + [ + "▁thermally", + -14.356403350830078 + ], + [ + "▁ling", + -14.356404304504395 + ], + [ + "▁geometries", + -14.35641098022461 + ], + [ + "loads", + -14.356415748596191 + ], + [ + "▁handily", + -14.356452941894531 + ], + [ + "visible", + -14.356471061706543 + ], + [ + "▁ObamaCare", + -14.356476783752441 + ], + [ + "ampton", + -14.356500625610352 + ], + [ + "▁Wix", + -14.356542587280273 + ], + [ + "▁Tues", + -14.356586456298828 + ], + [ + "ய", + -14.356593132019043 + ], + [ + "▁Monitors", + -14.356608390808105 + ], + [ + "▁Omo", + -14.356612205505371 + ], + [ + "▁Düsseldorf", + -14.356635093688965 + ], + [ + "OVE", + -14.356664657592773 + ], + [ + "▁ferrous", + -14.356666564941406 + ], + [ + "▁vaporizer", + -14.356697082519531 + ], + [ + "Process", + -14.356766700744629 + ], + [ + "▁overestimate", + -14.356769561767578 + ], + [ + "▁tantamount", + -14.356789588928223 + ], + [ + "▁tyrannical", + -14.356789588928223 + ], + [ + "▁Needham", + -14.35680103302002 + ], + [ + "schel", + -14.356820106506348 + ], + [ + "▁reparations", + -14.356823921203613 + ], + [ + "▁culled", + -14.356855392456055 + ], + [ + "▁skated", + -14.356876373291016 + ], + [ + "074", + -14.356901168823242 + ], + [ + "strange", + -14.356932640075684 + ], + [ + "▁Dulles", + -14.356961250305176 + ], + [ + "▁McCar", + -14.356965065002441 + ], + [ + "▁redistricting", + -14.356971740722656 + ], + [ + "Manage", + -14.357000350952148 + ], + [ + "▁postural", + -14.357000350952148 + ], + [ + "▁underpinnings", + -14.357013702392578 + ], + [ + "▁Crushed", + -14.357024192810059 + ], + [ + "▁FLEX", + -14.357027053833008 + ], + [ + "▁shortcode", + -14.357061386108398 + ], + [ + "uelle", + -14.357176780700684 + ], + [ + "▁Jewelers", + -14.357186317443848 + ], + [ + "▁Cott", + -14.357189178466797 + ], + [ + "▁ROB", + -14.35722827911377 + ], + [ + "cracy", + -14.357270240783691 + ], + [ + "▁wk", + -14.35727596282959 + ], + [ + "▁thistle", + -14.357358932495117 + ], + [ + "Crew", + -14.357390403747559 + ], + [ + "Brazil", + -14.357433319091797 + ], + [ + "anski", + -14.357443809509277 + ], + [ + "▁Faraday", + -14.35745620727539 + ], + [ + "colo", + -14.357512474060059 + ], + [ + "quito", + -14.357526779174805 + ], + [ + "▁Ria", + -14.357550621032715 + ], + [ + "▁Rios", + -14.357560157775879 + ], + [ + "▁SLE", + -14.357562065124512 + ], + [ + "▁정", + -14.357583045959473 + ], + [ + "ENSE", + -14.35761547088623 + ], + [ + "▁Huey", + -14.357617378234863 + ], + [ + "▁legislate", + -14.357617378234863 + ], + [ + "chronic", + -14.357630729675293 + ], + [ + "sses", + -14.35763931274414 + ], + [ + "▁Discrete", + -14.357649803161621 + ], + [ + "▁retin", + -14.357659339904785 + ], + [ + "Flor", + -14.357665061950684 + ], + [ + "jean", + -14.357675552368164 + ], + [ + "Í", + -14.357731819152832 + ], + [ + "▁Mifflin", + -14.357757568359375 + ], + [ + "reaction", + -14.357842445373535 + ], + [ + "▁Intensity", + -14.357958793640137 + ], + [ + "▁Salaam", + -14.358040809631348 + ], + [ + "▁assholes", + -14.358043670654297 + ], + [ + "▁Handyman", + -14.358053207397461 + ], + [ + "▁Ruger", + -14.358105659484863 + ], + [ + "vore", + -14.358131408691406 + ], + [ + "▁Mesopotamia", + -14.358166694641113 + ], + [ + "▁Swar", + -14.358236312866211 + ], + [ + "▁Cusco", + -14.358245849609375 + ], + [ + "Houston", + -14.35824966430664 + ], + [ + "▁Slug", + -14.358315467834473 + ], + [ + "▁fisher", + -14.358335494995117 + ], + [ + "▁Kaf", + -14.358336448669434 + ], + [ + "▁contemporaneous", + -14.358353614807129 + ], + [ + "▁mba", + -14.358428955078125 + ], + [ + "▁Aung", + -14.358431816101074 + ], + [ + "▁pantheon", + -14.358440399169922 + ], + [ + "▁PERFORMANCE", + -14.35844612121582 + ], + [ + "▁Moritz", + -14.358468055725098 + ], + [ + "▁remittances", + -14.358485221862793 + ], + [ + "advertising", + -14.35848617553711 + ], + [ + "▁Pulaski", + -14.358498573303223 + ], + [ + "▁Woe", + -14.358532905578613 + ], + [ + "▁MRS", + -14.358574867248535 + ], + [ + "▁monarchs", + -14.358613967895508 + ], + [ + "▁MERCHANTABILITY", + -14.358641624450684 + ], + [ + "▁cuticle", + -14.358641624450684 + ], + [ + "▁musket", + -14.358654022216797 + ], + [ + "▁BSD", + -14.358749389648438 + ], + [ + "▁peculiarities", + -14.358750343322754 + ], + [ + "▁Shapes", + -14.35875415802002 + ], + [ + "▁Almanac", + -14.358804702758789 + ], + [ + "▁HIIT", + -14.35881519317627 + ], + [ + "XY", + -14.358826637268066 + ], + [ + "▁oeuvre", + -14.358829498291016 + ], + [ + "▁usernames", + -14.358845710754395 + ], + [ + "▁Enron", + -14.358854293823242 + ], + [ + "▁carbonated", + -14.358858108520508 + ], + [ + "Following", + -14.358874320983887 + ], + [ + "pano", + -14.358931541442871 + ], + [ + "▁524", + -14.358943939208984 + ], + [ + "▁APM", + -14.35897159576416 + ], + [ + "▁floored", + -14.359030723571777 + ], + [ + "▁Ballarat", + -14.359036445617676 + ], + [ + "▁sacking", + -14.359062194824219 + ], + [ + "spun", + -14.359100341796875 + ], + [ + "▁BAND", + -14.359160423278809 + ], + [ + "▁Balochistan", + -14.359162330627441 + ], + [ + "▁gallop", + -14.359196662902832 + ], + [ + "cido", + -14.359211921691895 + ], + [ + "▁rockin", + -14.359220504760742 + ], + [ + "Guardian", + -14.35926628112793 + ], + [ + "▁ه", + -14.359286308288574 + ], + [ + "▁blo", + -14.359292030334473 + ], + [ + "▁FIP", + -14.359292984008789 + ], + [ + "▁Gregorian", + -14.35932731628418 + ], + [ + "▁Catskill", + -14.359350204467773 + ], + [ + "▁Northwood", + -14.359355926513672 + ], + [ + "▁assuredly", + -14.359363555908203 + ], + [ + "▁timezone", + -14.359453201293945 + ], + [ + "▁Haydn", + -14.359466552734375 + ], + [ + "eland", + -14.359484672546387 + ], + [ + "▁homemaker", + -14.359484672546387 + ], + [ + "▁Specials", + -14.359588623046875 + ], + [ + "▁Differentially", + -14.359590530395508 + ], + [ + "▁Marked", + -14.359610557556152 + ], + [ + "▁shillings", + -14.359658241271973 + ], + [ + "▁Mez", + -14.359708786010742 + ], + [ + "▁Represented", + -14.359750747680664 + ], + [ + "▁Traumatic", + -14.359755516052246 + ], + [ + "▁telomere", + -14.359758377075195 + ], + [ + "ilda", + -14.359797477722168 + ], + [ + "▁Nautilus", + -14.359821319580078 + ], + [ + "▁crumbly", + -14.359838485717773 + ], + [ + "▁tutelage", + -14.359870910644531 + ], + [ + "869", + -14.359877586364746 + ], + [ + "▁Kuro", + -14.359911918640137 + ], + [ + "▁concourse", + -14.359920501708984 + ], + [ + "▁Personalised", + -14.359966278076172 + ], + [ + "▁Gustavo", + -14.360032081604004 + ], + [ + "▁HSP", + -14.36004638671875 + ], + [ + "▁fantas", + -14.36004638671875 + ], + [ + "ブ", + -14.360095977783203 + ], + [ + "▁Skyscanner", + -14.360137939453125 + ], + [ + "adores", + -14.360140800476074 + ], + [ + "▁redirecting", + -14.360143661499023 + ], + [ + "Unless", + -14.360161781311035 + ], + [ + "▁Berkley", + -14.360176086425781 + ], + [ + "▁Taxpayers", + -14.360194206237793 + ], + [ + "▁Theta", + -14.360209465026855 + ], + [ + "▁Joon", + -14.360254287719727 + ], + [ + "▁porosity", + -14.360337257385254 + ], + [ + "▁Palladium", + -14.360384941101074 + ], + [ + "▁Sheri", + -14.360389709472656 + ], + [ + "▁Argan", + -14.360438346862793 + ], + [ + "▁Annotations", + -14.360507011413574 + ], + [ + "capitalist", + -14.360526084899902 + ], + [ + "▁freeways", + -14.360569953918457 + ], + [ + "▁ROH", + -14.360577583312988 + ], + [ + "1951", + -14.36060619354248 + ], + [ + "▁MEAN", + -14.360644340515137 + ], + [ + "▁Cassini", + -14.360668182373047 + ], + [ + "TIA", + -14.360672950744629 + ], + [ + "VAT", + -14.36068058013916 + ], + [ + "nks", + -14.360735893249512 + ], + [ + "▁COUNTRY", + -14.360758781433105 + ], + [ + "▁logbook", + -14.360780715942383 + ], + [ + "▁Clermont", + -14.360793113708496 + ], + [ + "▁radishes", + -14.360801696777344 + ], + [ + "9999", + -14.360833168029785 + ], + [ + "▁colic", + -14.360855102539062 + ], + [ + "Dir", + -14.360931396484375 + ], + [ + "▁disallow", + -14.36096477508545 + ], + [ + "▁Gust", + -14.360967636108398 + ], + [ + "1947", + -14.361023902893066 + ], + [ + "▁Rö", + -14.361039161682129 + ], + [ + "▁jalapeño", + -14.361045837402344 + ], + [ + "Vis", + -14.36107063293457 + ], + [ + "▁flamenco", + -14.361085891723633 + ], + [ + "▁fitment", + -14.361103057861328 + ], + [ + "▁Bronco", + -14.36113452911377 + ], + [ + "▁Returned", + -14.36113452911377 + ], + [ + "▁prefab", + -14.361210823059082 + ], + [ + "▁bobbin", + -14.361225128173828 + ], + [ + "▁tera", + -14.36123275756836 + ], + [ + "▁Frontline", + -14.361241340637207 + ], + [ + "rape", + -14.361275672912598 + ], + [ + "CMP", + -14.36131763458252 + ], + [ + "▁JI", + -14.361331939697266 + ], + [ + "sui", + -14.36135196685791 + ], + [ + "bilities", + -14.361357688903809 + ], + [ + "▁substantiated", + -14.361383438110352 + ], + [ + "▁reci", + -14.361398696899414 + ], + [ + "▁Bolsonaro", + -14.361461639404297 + ], + [ + "▁Tennant", + -14.361527442932129 + ], + [ + "▁WBA", + -14.361573219299316 + ], + [ + "▁Frida", + -14.361591339111328 + ], + [ + "▁Dwelling", + -14.36159896850586 + ], + [ + "▁incisive", + -14.361625671386719 + ], + [ + "IRC", + -14.361640930175781 + ], + [ + "▁Excursion", + -14.361669540405273 + ], + [ + "▁Facilitator", + -14.36170768737793 + ], + [ + "certification", + -14.361712455749512 + ], + [ + "▁Heineken", + -14.361734390258789 + ], + [ + "▁MPP", + -14.361735343933105 + ], + [ + "▁MWC", + -14.361737251281738 + ], + [ + "▁Moser", + -14.361746788024902 + ], + [ + "▁Frederik", + -14.361773490905762 + ], + [ + "▁Chemist", + -14.361784934997559 + ], + [ + "▁boron", + -14.36179256439209 + ], + [ + "▁ADL", + -14.361811637878418 + ], + [ + "inan", + -14.361838340759277 + ], + [ + "▁Daniela", + -14.361859321594238 + ], + [ + "iero", + -14.361884117126465 + ], + [ + "Climate", + -14.361889839172363 + ], + [ + "▁bd", + -14.361943244934082 + ], + [ + "▁mull", + -14.361966133117676 + ], + [ + "‡", + -14.361990928649902 + ], + [ + "▁Nagasaki", + -14.361991882324219 + ], + [ + "▁retroactively", + -14.361993789672852 + ], + [ + "stating", + -14.36203670501709 + ], + [ + "translated", + -14.362049102783203 + ], + [ + "ovitz", + -14.362068176269531 + ], + [ + "▁sportsbook", + -14.362069129943848 + ], + [ + "▁shears", + -14.362072944641113 + ], + [ + "944", + -14.362184524536133 + ], + [ + "itia", + -14.362202644348145 + ], + [ + "▁interventional", + -14.36220645904541 + ], + [ + "▁excision", + -14.362232208251953 + ], + [ + "hta", + -14.362250328063965 + ], + [ + "lke", + -14.362253189086914 + ], + [ + "opter", + -14.362255096435547 + ], + [ + "▁Enemies", + -14.362285614013672 + ], + [ + "▁dl", + -14.362296104431152 + ], + [ + "schke", + -14.362319946289062 + ], + [ + "naire", + -14.36233901977539 + ], + [ + "▁все", + -14.362357139587402 + ], + [ + "lito", + -14.362370491027832 + ], + [ + "Twin", + -14.362415313720703 + ], + [ + "▁LOOKING", + -14.362419128417969 + ], + [ + "▁Dax", + -14.3624267578125 + ], + [ + "▁scoliosis", + -14.3624267578125 + ], + [ + "▁Whyte", + -14.362468719482422 + ], + [ + "▁Trau", + -14.362489700317383 + ], + [ + "▁caliper", + -14.3624906539917 + ], + [ + "▁gastronomy", + -14.362510681152344 + ], + [ + "scheduled", + -14.362518310546875 + ], + [ + "▁Jesuits", + -14.362532615661621 + ], + [ + "▁Lott", + -14.362544059753418 + ], + [ + "▁Enthusiast", + -14.362556457519531 + ], + [ + "▁repainted", + -14.362574577331543 + ], + [ + "لا", + -14.362592697143555 + ], + [ + "▁histamine", + -14.36260986328125 + ], + [ + "▁embarks", + -14.362640380859375 + ], + [ + "▁optimising", + -14.362680435180664 + ], + [ + "者", + -14.362692832946777 + ], + [ + "▁overeating", + -14.362709999084473 + ], + [ + "▁Parameter", + -14.362748146057129 + ], + [ + "▁Audiences", + -14.362775802612305 + ], + [ + "▁misrepresent", + -14.362784385681152 + ], + [ + "▁Ayr", + -14.362844467163086 + ], + [ + "▁freehold", + -14.362897872924805 + ], + [ + "▁fiend", + -14.362927436828613 + ], + [ + "▁CAPS", + -14.362943649291992 + ], + [ + "▁dispatching", + -14.363008499145508 + ], + [ + "▁whisking", + -14.363019943237305 + ], + [ + "▁Dario", + -14.363036155700684 + ], + [ + "apur", + -14.363053321838379 + ], + [ + "WARD", + -14.363055229187012 + ], + [ + "▁flickr", + -14.363058090209961 + ], + [ + "▁Riggs", + -14.363061904907227 + ], + [ + "▁EDITION", + -14.36309814453125 + ], + [ + "vra", + -14.36311149597168 + ], + [ + "▁nokia", + -14.363134384155273 + ], + [ + "▁Matheson", + -14.363225936889648 + ], + [ + "mitted", + -14.363231658935547 + ], + [ + "▁Strengthen", + -14.363239288330078 + ], + [ + "baker", + -14.363262176513672 + ], + [ + "▁Columns", + -14.363287925720215 + ], + [ + "provider", + -14.363299369812012 + ], + [ + "▁Difficulty", + -14.363309860229492 + ], + [ + "▁diehard", + -14.363327026367188 + ], + [ + "▁congestive", + -14.363335609436035 + ], + [ + "▁poi", + -14.36336612701416 + ], + [ + "▁shimmery", + -14.363438606262207 + ], + [ + "▁nucleotides", + -14.36345100402832 + ], + [ + "▁Voldemort", + -14.363484382629395 + ], + [ + "▁infrastructural", + -14.363492965698242 + ], + [ + "▁atrocity", + -14.363513946533203 + ], + [ + "▁immorality", + -14.363520622253418 + ], + [ + "▁Limb", + -14.363532066345215 + ], + [ + "▁Cholesterol", + -14.363533973693848 + ], + [ + "862", + -14.36354923248291 + ], + [ + "freak", + -14.3635892868042 + ], + [ + "alive", + -14.363722801208496 + ], + [ + "billed", + -14.363723754882812 + ], + [ + "idh", + -14.36373519897461 + ], + [ + "▁COPYRIGHT", + -14.36375904083252 + ], + [ + "adie", + -14.363779067993164 + ], + [ + "▁Emu", + -14.363797187805176 + ], + [ + "▁vaso", + -14.36380672454834 + ], + [ + "ecca", + -14.363813400268555 + ], + [ + "▁Krugman", + -14.363819122314453 + ], + [ + "burden", + -14.363919258117676 + ], + [ + "Barre", + -14.363937377929688 + ], + [ + "▁smokes", + -14.363990783691406 + ], + [ + "▁preamble", + -14.363992691040039 + ], + [ + "▁1817", + -14.364018440246582 + ], + [ + "SCH", + -14.364051818847656 + ], + [ + "▁neuroscientist", + -14.364062309265137 + ], + [ + "▁saddest", + -14.364089965820312 + ], + [ + "▁Morsi", + -14.364094734191895 + ], + [ + "▁Workspace", + -14.364118576049805 + ], + [ + "ύ", + -14.364121437072754 + ], + [ + "generate", + -14.364126205444336 + ], + [ + "▁Toon", + -14.364142417907715 + ], + [ + "Justin", + -14.364157676696777 + ], + [ + "▁Neill", + -14.36415958404541 + ], + [ + "▁Kaw", + -14.364195823669434 + ], + [ + "rè", + -14.364236831665039 + ], + [ + "▁dm", + -14.364253997802734 + ], + [ + "▁IMAGE", + -14.364276885986328 + ], + [ + "▁Socialists", + -14.364327430725098 + ], + [ + "▁discus", + -14.364355087280273 + ], + [ + "▁distanced", + -14.364362716674805 + ], + [ + "cik", + -14.364425659179688 + ], + [ + "▁COMM", + -14.364441871643066 + ], + [ + "▁firework", + -14.364468574523926 + ], + [ + "▁Canaveral", + -14.364480018615723 + ], + [ + "▁LGA", + -14.364486694335938 + ], + [ + "091", + -14.364487648010254 + ], + [ + "▁cytotoxic", + -14.364495277404785 + ], + [ + "▁Bahia", + -14.364521026611328 + ], + [ + "promoting", + -14.364532470703125 + ], + [ + "▁Poseidon", + -14.364550590515137 + ], + [ + "roz", + -14.364562034606934 + ], + [ + "▁Desai", + -14.364562034606934 + ], + [ + "▁Prosper", + -14.364583969116211 + ], + [ + "▁equips", + -14.364660263061523 + ], + [ + "▁Nougat", + -14.364721298217773 + ], + [ + "trek", + -14.364753723144531 + ], + [ + "962", + -14.364787101745605 + ], + [ + "▁Shipyard", + -14.364801406860352 + ], + [ + "▁FLO", + -14.36481761932373 + ], + [ + "▁fancier", + -14.364866256713867 + ], + [ + "927", + -14.364876747131348 + ], + [ + "▁disp", + -14.364876747131348 + ], + [ + "▁predominate", + -14.364901542663574 + ], + [ + "▁Marv", + -14.364909172058105 + ], + [ + "▁وال", + -14.364910125732422 + ], + [ + "▁HPA", + -14.364945411682129 + ], + [ + "▁Eun", + -14.364988327026367 + ], + [ + "▁Marry", + -14.364999771118164 + ], + [ + "▁Barking", + -14.365015983581543 + ], + [ + "▁Bui", + -14.365026473999023 + ], + [ + "▁REQUIRED", + -14.365033149719238 + ], + [ + "▁meteorite", + -14.36510944366455 + ], + [ + "▁Nip", + -14.36512565612793 + ], + [ + "Б", + -14.365142822265625 + ], + [ + "▁Mandate", + -14.3651762008667 + ], + [ + "▁immersing", + -14.365182876586914 + ], + [ + "dare", + -14.36518383026123 + ], + [ + "▁averse", + -14.365203857421875 + ], + [ + "▁Bia", + -14.365206718444824 + ], + [ + "▁Mauro", + -14.365278244018555 + ], + [ + "▁Cavern", + -14.365323066711426 + ], + [ + "xc", + -14.36533260345459 + ], + [ + "912", + -14.3654203414917 + ], + [ + "▁€6", + -14.365424156188965 + ], + [ + "▁Medvedev", + -14.365463256835938 + ], + [ + "▁Frogs", + -14.365476608276367 + ], + [ + "▁humanly", + -14.365476608276367 + ], + [ + "resist", + -14.365538597106934 + ], + [ + "▁Mush", + -14.365570068359375 + ], + [ + "▁Concession", + -14.365579605102539 + ], + [ + "bulb", + -14.36561107635498 + ], + [ + "laced", + -14.365665435791016 + ], + [ + "ს", + -14.365692138671875 + ], + [ + "▁Alexei", + -14.365718841552734 + ], + [ + "▁Lambeth", + -14.36574935913086 + ], + [ + "▁Ishi", + -14.365758895874023 + ], + [ + "Committee", + -14.365796089172363 + ], + [ + "▁browsed", + -14.365824699401855 + ], + [ + "boosting", + -14.365849494934082 + ], + [ + "lethal", + -14.36585807800293 + ], + [ + "前", + -14.365914344787598 + ], + [ + "gym", + -14.365941047668457 + ], + [ + "▁mangoes", + -14.365942001342773 + ], + [ + "▁amassing", + -14.366013526916504 + ], + [ + "▁Eff", + -14.3660306930542 + ], + [ + "▁angina", + -14.366055488586426 + ], + [ + "▁polymorphisms", + -14.366063117980957 + ], + [ + "▁Mauri", + -14.366082191467285 + ], + [ + "▁comprehensible", + -14.366087913513184 + ], + [ + "▁codecs", + -14.366137504577637 + ], + [ + "roche", + -14.366138458251953 + ], + [ + "YY", + -14.366155624389648 + ], + [ + "PES", + -14.366159439086914 + ], + [ + "pik", + -14.366263389587402 + ], + [ + "Blond", + -14.3662748336792 + ], + [ + "▁traitors", + -14.366320610046387 + ], + [ + "▁Gie", + -14.3663330078125 + ], + [ + "prof", + -14.36635684967041 + ], + [ + "▁Warhammer", + -14.366376876831055 + ], + [ + "▁Holbrook", + -14.366426467895508 + ], + [ + "Finally", + -14.366488456726074 + ], + [ + "▁Findlay", + -14.366497993469238 + ], + [ + "WOW", + -14.366510391235352 + ], + [ + "occurring", + -14.366533279418945 + ], + [ + "▁Jerk", + -14.36654281616211 + ], + [ + "▁RY", + -14.366552352905273 + ], + [ + "▁CNY", + -14.366579055786133 + ], + [ + "ט", + -14.36660099029541 + ], + [ + "▁tamoxifen", + -14.366615295410156 + ], + [ + "▁Pyrenees", + -14.366650581359863 + ], + [ + "fos", + -14.36667251586914 + ], + [ + "▁Bollinger", + -14.36667251586914 + ], + [ + "▁pronouncements", + -14.366684913635254 + ], + [ + "▁Arvind", + -14.366697311401367 + ], + [ + "976", + -14.366715431213379 + ], + [ + "Flu", + -14.36672306060791 + ], + [ + "▁Norbert", + -14.366731643676758 + ], + [ + "cooling", + -14.366750717163086 + ], + [ + "▁roped", + -14.366756439208984 + ], + [ + "lja", + -14.366767883300781 + ], + [ + "▁Cale", + -14.366792678833008 + ], + [ + "▁Jap", + -14.366806983947754 + ], + [ + "NIT", + -14.366820335388184 + ], + [ + "▁Prerequisites", + -14.366899490356445 + ], + [ + "Register", + -14.366917610168457 + ], + [ + "▁HDFC", + -14.366926193237305 + ], + [ + "▁Sukh", + -14.36693286895752 + ], + [ + "▁553", + -14.366975784301758 + ], + [ + "rith", + -14.366996765136719 + ], + [ + "1946", + -14.367018699645996 + ], + [ + "▁lev", + -14.367083549499512 + ], + [ + "▁Okla", + -14.367094039916992 + ], + [ + "Documents", + -14.367107391357422 + ], + [ + "▁Tania", + -14.36711597442627 + ], + [ + "▁overpass", + -14.367118835449219 + ], + [ + "▁Ammon", + -14.367166519165039 + ], + [ + "▁Tyres", + -14.367182731628418 + ], + [ + "Golf", + -14.367239952087402 + ], + [ + "▁Pleistocene", + -14.367243766784668 + ], + [ + "▁cronies", + -14.3672456741333 + ], + [ + "mena", + -14.367314338684082 + ], + [ + "▁TOKYO", + -14.367321014404297 + ], + [ + "▁jus", + -14.367361068725586 + ], + [ + "▁Tasha", + -14.367366790771484 + ], + [ + "▁Valves", + -14.36737060546875 + ], + [ + "▁McFadden", + -14.3673734664917 + ], + [ + "▁Rigid", + -14.367387771606445 + ], + [ + "▁heatwave", + -14.367387771606445 + ], + [ + "rsen", + -14.367390632629395 + ], + [ + "▁1792", + -14.367390632629395 + ], + [ + "▁Woolworths", + -14.367432594299316 + ], + [ + "из", + -14.367462158203125 + ], + [ + "rii", + -14.367481231689453 + ], + [ + "▁forties", + -14.36749267578125 + ], + [ + "▁tartan", + -14.367498397827148 + ], + [ + "▁México", + -14.367500305175781 + ], + [ + "▁diffused", + -14.367502212524414 + ], + [ + "▁overused", + -14.367507934570312 + ], + [ + "inator", + -14.367523193359375 + ], + [ + "▁Drought", + -14.367524147033691 + ], + [ + "▁consults", + -14.367569923400879 + ], + [ + "▁Liechtenstein", + -14.367599487304688 + ], + [ + "▁spay", + -14.367679595947266 + ], + [ + "▁koala", + -14.367688179016113 + ], + [ + "▁MEDICAL", + -14.367722511291504 + ], + [ + "▁Witcher", + -14.367740631103516 + ], + [ + "▁oscillate", + -14.367762565612793 + ], + [ + "▁requi", + -14.367790222167969 + ], + [ + "▁Shai", + -14.367798805236816 + ], + [ + "▁Lah", + -14.367836952209473 + ], + [ + "chocolate", + -14.367840766906738 + ], + [ + "▁PRS", + -14.367842674255371 + ], + [ + "▁urchin", + -14.367851257324219 + ], + [ + "▁Stol", + -14.367852210998535 + ], + [ + "▁catastrophes", + -14.367865562438965 + ], + [ + "▁ras", + -14.367873191833496 + ], + [ + "▁zine", + -14.367890357971191 + ], + [ + "▁Monogram", + -14.36803150177002 + ], + [ + "▁benefactor", + -14.368054389953613 + ], + [ + "lef", + -14.368088722229004 + ], + [ + "▁DUE", + -14.368117332458496 + ], + [ + "▁Xe", + -14.368149757385254 + ], + [ + "▁overland", + -14.368197441101074 + ], + [ + "▁solemnly", + -14.368256568908691 + ], + [ + "yel", + -14.368311882019043 + ], + [ + "spaces", + -14.368339538574219 + ], + [ + "▁dole", + -14.368395805358887 + ], + [ + "▁FARM", + -14.368409156799316 + ], + [ + "▁Divisional", + -14.368435859680176 + ], + [ + "▁abolitionist", + -14.368494987487793 + ], + [ + "itol", + -14.36849594116211 + ], + [ + "▁stepper", + -14.36849594116211 + ], + [ + "Guru", + -14.368504524230957 + ], + [ + "▁turban", + -14.368548393249512 + ], + [ + "▁Pairs", + -14.368553161621094 + ], + [ + "▁Roethlisberger", + -14.368556022644043 + ], + [ + "▁Topaz", + -14.36856460571289 + ], + [ + "subscribe", + -14.368582725524902 + ], + [ + "▁biometrics", + -14.368605613708496 + ], + [ + "▁linearly", + -14.368622779846191 + ], + [ + "▁utilises", + -14.368629455566406 + ], + [ + "pli", + -14.368650436401367 + ], + [ + "betting", + -14.368653297424316 + ], + [ + "Speak", + -14.368663787841797 + ], + [ + "▁Djibouti", + -14.368698120117188 + ], + [ + "▁Sneaker", + -14.368700981140137 + ], + [ + "▁defuse", + -14.368766784667969 + ], + [ + "osomal", + -14.368810653686523 + ], + [ + "▁bonkers", + -14.368829727172852 + ], + [ + "▁BEIJING", + -14.368853569030762 + ], + [ + "▁GRI", + -14.368866920471191 + ], + [ + "▁CHIP", + -14.36886978149414 + ], + [ + "▁dysplasia", + -14.36886978149414 + ], + [ + "▁seashore", + -14.368880271911621 + ], + [ + "▁sportsman", + -14.368885040283203 + ], + [ + "▁Tails", + -14.368898391723633 + ], + [ + "▁cavernous", + -14.368941307067871 + ], + [ + "▁Wert", + -14.368943214416504 + ], + [ + "▁valentines", + -14.368956565856934 + ], + [ + "scopic", + -14.36896800994873 + ], + [ + "▁searchers", + -14.368971824645996 + ], + [ + "▁Padre", + -14.369009017944336 + ], + [ + "PAL", + -14.369056701660156 + ], + [ + "▁Orca", + -14.369109153747559 + ], + [ + "▁Cort", + -14.36913013458252 + ], + [ + "▁goodie", + -14.36914348602295 + ], + [ + "▁Mitra", + -14.369176864624023 + ], + [ + "Lago", + -14.36919116973877 + ], + [ + "▁Admiralty", + -14.369192123413086 + ], + [ + "▁Sama", + -14.369200706481934 + ], + [ + "▁Homicide", + -14.369226455688477 + ], + [ + "▁Kitten", + -14.369235038757324 + ], + [ + "machi", + -14.36926555633545 + ], + [ + "▁sonata", + -14.369316101074219 + ], + [ + "Patrick", + -14.369325637817383 + ], + [ + "▁713", + -14.36933708190918 + ], + [ + "▁foolishly", + -14.369339942932129 + ], + [ + "▁Anima", + -14.369349479675293 + ], + [ + "▁surfactant", + -14.36938190460205 + ], + [ + "ETA", + -14.369451522827148 + ], + [ + "▁Bantam", + -14.369461059570312 + ], + [ + "▁Mackie", + -14.36948013305664 + ], + [ + "▁Subtle", + -14.369500160217285 + ], + [ + "▁Epiphany", + -14.369528770446777 + ], + [ + "▁Groves", + -14.369553565979004 + ], + [ + "Mountain", + -14.369568824768066 + ], + [ + "У", + -14.369574546813965 + ], + [ + "▁downplayed", + -14.369608879089355 + ], + [ + "yme", + -14.369640350341797 + ], + [ + "▁Sycamore", + -14.36964225769043 + ], + [ + "sanctioned", + -14.369654655456543 + ], + [ + "▁Federalist", + -14.369699478149414 + ], + [ + "▁COPY", + -14.369725227355957 + ], + [ + "▁OTHERWISE", + -14.369826316833496 + ], + [ + "▁regrettable", + -14.369831085205078 + ], + [ + "▁Shams", + -14.369836807250977 + ], + [ + "974", + -14.369840621948242 + ], + [ + "resa", + -14.36984920501709 + ], + [ + "▁amygdala", + -14.36986255645752 + ], + [ + "▁Hannover", + -14.369873046875 + ], + [ + "▁foodstuffs", + -14.36992359161377 + ], + [ + "▁Viejo", + -14.3699369430542 + ], + [ + "Austin", + -14.369942665100098 + ], + [ + "▁CBN", + -14.369962692260742 + ], + [ + "▁MCL", + -14.369965553283691 + ], + [ + "ehn", + -14.369988441467285 + ], + [ + "▁DAMAGE", + -14.370002746582031 + ], + [ + "▁masturbation", + -14.37003231048584 + ], + [ + "▁meridian", + -14.370040893554688 + ], + [ + "▁ghastly", + -14.370054244995117 + ], + [ + "stig", + -14.370072364807129 + ], + [ + "▁Tutu", + -14.37008285522461 + ], + [ + "▁dissociation", + -14.37010383605957 + ], + [ + "wane", + -14.370109558105469 + ], + [ + "▁howl", + -14.370157241821289 + ], + [ + "Dem", + -14.370158195495605 + ], + [ + "▁dismisses", + -14.370169639587402 + ], + [ + "▁homolog", + -14.370170593261719 + ], + [ + "▁Polka", + -14.3701753616333 + ], + [ + "▁recomend", + -14.370211601257324 + ], + [ + "▁rosacea", + -14.370251655578613 + ], + [ + "▁Roper", + -14.37026309967041 + ], + [ + "▁Valkyrie", + -14.370316505432129 + ], + [ + "▁soloists", + -14.370360374450684 + ], + [ + "▁Landis", + -14.370393753051758 + ], + [ + "▁Cooley", + -14.37042236328125 + ], + [ + "▁forestall", + -14.370441436767578 + ], + [ + "▁Shipment", + -14.37044906616211 + ], + [ + "▁proximate", + -14.37048053741455 + ], + [ + "▁agitator", + -14.370487213134766 + ], + [ + "▁Hubs", + -14.37049388885498 + ], + [ + "▁bushy", + -14.37050724029541 + ], + [ + "ographer", + -14.370528221130371 + ], + [ + "ERC", + -14.370529174804688 + ], + [ + "ssl", + -14.370601654052734 + ], + [ + "GCC", + -14.370613098144531 + ], + [ + "ITI", + -14.370623588562012 + ], + [ + "eña", + -14.370636940002441 + ], + [ + "▁poppies", + -14.370662689208984 + ], + [ + "▁Electra", + -14.370675086975098 + ], + [ + "gw", + -14.370676040649414 + ], + [ + "▁Nuevo", + -14.370745658874512 + ], + [ + "crowd", + -14.370758056640625 + ], + [ + "AUD", + -14.370763778686523 + ], + [ + "hoy", + -14.370776176452637 + ], + [ + "Healthy", + -14.370820999145508 + ], + [ + "GAL", + -14.370874404907227 + ], + [ + "▁Sug", + -14.370874404907227 + ], + [ + "▁Floss", + -14.370888710021973 + ], + [ + "▁SOON", + -14.370891571044922 + ], + [ + "▁seafront", + -14.37098217010498 + ], + [ + "tumor", + -14.370989799499512 + ], + [ + "▁Ebert", + -14.3710355758667 + ], + [ + "▁3600", + -14.37105941772461 + ], + [ + "▁Lewes", + -14.37108325958252 + ], + [ + "▁cashless", + -14.371088027954102 + ], + [ + "▁Sober", + -14.371091842651367 + ], + [ + "breakers", + -14.37114143371582 + ], + [ + "RAT", + -14.371147155761719 + ], + [ + "rect", + -14.371166229248047 + ], + [ + "hint", + -14.371198654174805 + ], + [ + "computing", + -14.371234893798828 + ], + [ + "▁squashed", + -14.371292114257812 + ], + [ + "Cab", + -14.371293067932129 + ], + [ + "▁SRC", + -14.371337890625 + ], + [ + "▁swarming", + -14.371350288391113 + ], + [ + "▁obs", + -14.371437072753906 + ], + [ + "936", + -14.371441841125488 + ], + [ + "maya", + -14.371447563171387 + ], + [ + "▁Brice", + -14.371453285217285 + ], + [ + "▁FLA", + -14.371453285217285 + ], + [ + "▁treks", + -14.371455192565918 + ], + [ + "▁editorials", + -14.37147045135498 + ], + [ + "▁DePaul", + -14.37153148651123 + ], + [ + "▁transduction", + -14.37154769897461 + ], + [ + "Boss", + -14.371576309204102 + ], + [ + "▁Jordi", + -14.371687889099121 + ], + [ + "▁smuggle", + -14.371689796447754 + ], + [ + "▁enrollees", + -14.371724128723145 + ], + [ + "▁egress", + -14.371759414672852 + ], + [ + "▁Mendocino", + -14.371760368347168 + ], + [ + "▁Streamline", + -14.371769905090332 + ], + [ + "▁Aza", + -14.37181282043457 + ], + [ + "▁wring", + -14.37182331085205 + ], + [ + "▁mou", + -14.371827125549316 + ], + [ + "Л", + -14.371844291687012 + ], + [ + "▁cadaver", + -14.37190055847168 + ], + [ + "vish", + -14.371910095214844 + ], + [ + "▁Talon", + -14.371922492980957 + ], + [ + "▁Elected", + -14.371930122375488 + ], + [ + "▁testifies", + -14.371950149536133 + ], + [ + "transferable", + -14.37198257446289 + ], + [ + "▁cobra", + -14.372016906738281 + ], + [ + "▁glitz", + -14.37202262878418 + ], + [ + "▁anesthesiologist", + -14.372087478637695 + ], + [ + "▁Insurers", + -14.37210750579834 + ], + [ + "▁prowl", + -14.372138977050781 + ], + [ + "▁30°", + -14.372159957885742 + ], + [ + "іс", + -14.372166633605957 + ], + [ + "ALI", + -14.372232437133789 + ], + [ + "concern", + -14.372264862060547 + ], + [ + "▁Trotsky", + -14.37226676940918 + ], + [ + "▁GUN", + -14.372306823730469 + ], + [ + "defining", + -14.372325897216797 + ], + [ + "▁Saree", + -14.372344017028809 + ], + [ + "▁hideout", + -14.372344017028809 + ], + [ + "▁intonation", + -14.372367858886719 + ], + [ + "vec", + -14.372371673583984 + ], + [ + "▁Glossary", + -14.372384071350098 + ], + [ + "▁Ecuadorian", + -14.372427940368652 + ], + [ + "urea", + -14.372489929199219 + ], + [ + "▁Biker", + -14.372519493103027 + ], + [ + "▁CIM", + -14.372564315795898 + ], + [ + "▁Hatter", + -14.372605323791504 + ], + [ + "▁RUB", + -14.372631072998047 + ], + [ + "▁Montclair", + -14.372678756713867 + ], + [ + "オ", + -14.372705459594727 + ], + [ + "▁FINE", + -14.372706413269043 + ], + [ + "▁Schengen", + -14.37272834777832 + ], + [ + "IZED", + -14.37273120880127 + ], + [ + "▁Rocking", + -14.372749328613281 + ], + [ + "▁Imper", + -14.372772216796875 + ], + [ + "841", + -14.37277889251709 + ], + [ + "▁auger", + -14.372797012329102 + ], + [ + "▁Vets", + -14.372800827026367 + ], + [ + "▁Infosys", + -14.37281608581543 + ], + [ + "fantasy", + -14.372858047485352 + ], + [ + "lona", + -14.372923851013184 + ], + [ + "▁enumeration", + -14.372957229614258 + ], + [ + "▁punter", + -14.37299919128418 + ], + [ + "▁gee", + -14.373045921325684 + ], + [ + "Together", + -14.3731050491333 + ], + [ + "retin", + -14.373208999633789 + ], + [ + "▁Performs", + -14.373212814331055 + ], + [ + "▁Kenmore", + -14.373223304748535 + ], + [ + "▁Kilda", + -14.373251914978027 + ], + [ + "▁triumphed", + -14.373270034790039 + ], + [ + "CTC", + -14.373271942138672 + ], + [ + "mouthed", + -14.373335838317871 + ], + [ + "▁undrafted", + -14.373346328735352 + ], + [ + "Almost", + -14.373373031616211 + ], + [ + "▁Sanger", + -14.373397827148438 + ], + [ + "▁mouthwash", + -14.373424530029297 + ], + [ + "▁BOSS", + -14.373427391052246 + ], + [ + "▁marinate", + -14.373428344726562 + ], + [ + "963", + -14.373434066772461 + ], + [ + "▁traumas", + -14.373435020446777 + ], + [ + "▁Koenig", + -14.373456954956055 + ], + [ + "▁Supergirl", + -14.373459815979004 + ], + [ + "▁Trac", + -14.373466491699219 + ], + [ + "▁legitimize", + -14.373466491699219 + ], + [ + "▁flowery", + -14.373499870300293 + ], + [ + "Month", + -14.373557090759277 + ], + [ + "▁benzene", + -14.373559951782227 + ], + [ + "▁Krueger", + -14.373584747314453 + ], + [ + "Dee", + -14.373588562011719 + ], + [ + "092", + -14.373595237731934 + ], + [ + "▁availing", + -14.37367057800293 + ], + [ + "▁comets", + -14.37368106842041 + ], + [ + "▁Honesty", + -14.373684883117676 + ], + [ + "▁munching", + -14.373741149902344 + ], + [ + "▁Satoshi", + -14.373766899108887 + ], + [ + "▁Ebb", + -14.373852729797363 + ], + [ + "▁Corinne", + -14.373897552490234 + ], + [ + "テ", + -14.37389850616455 + ], + [ + "▁blissfully", + -14.373929977416992 + ], + [ + "▁Pardon", + -14.373998641967773 + ], + [ + "▁steers", + -14.374037742614746 + ], + [ + "▁Femme", + -14.374046325683594 + ], + [ + "▁Kilo", + -14.374048233032227 + ], + [ + "smile", + -14.374095916748047 + ], + [ + "▁Intergovernmental", + -14.374120712280273 + ], + [ + "▁Annan", + -14.374130249023438 + ], + [ + "▁EAP", + -14.374135971069336 + ], + [ + "ivan", + -14.374160766601562 + ], + [ + "▁crockpot", + -14.374213218688965 + ], + [ + "Tis", + -14.374224662780762 + ], + [ + "engage", + -14.37423324584961 + ], + [ + "▁Outlets", + -14.374239921569824 + ], + [ + "▁FALL", + -14.374258995056152 + ], + [ + "▁Pickett", + -14.374260902404785 + ], + [ + "▁Chrys", + -14.374284744262695 + ], + [ + "▁Irishman", + -14.374299049377441 + ], + [ + "Alexander", + -14.374348640441895 + ], + [ + "▁diuretic", + -14.37435531616211 + ], + [ + "▁Gho", + -14.374399185180664 + ], + [ + "▁onesie", + -14.374399185180664 + ], + [ + "▁ppg", + -14.374402046203613 + ], + [ + "▁£400", + -14.374418258666992 + ], + [ + "▁diflucan", + -14.374445915222168 + ], + [ + "▁Fasting", + -14.3744478225708 + ], + [ + "▁Railing", + -14.37448501586914 + ], + [ + "▁Maki", + -14.374486923217773 + ], + [ + "▁Highlanders", + -14.374495506286621 + ], + [ + "▁Sinks", + -14.374497413635254 + ], + [ + "▁Nelly", + -14.374502182006836 + ], + [ + "▁Reviewing", + -14.374504089355469 + ], + [ + "▁mountainside", + -14.374520301818848 + ], + [ + "▁Investigating", + -14.374524116516113 + ], + [ + "▁recitals", + -14.374613761901855 + ], + [ + "▁SNMP", + -14.374635696411133 + ], + [ + "ව", + -14.374643325805664 + ], + [ + "odont", + -14.37466812133789 + ], + [ + "▁Outpatient", + -14.374704360961914 + ], + [ + "▁bolstering", + -14.374719619750977 + ], + [ + "▁ج", + -14.37472915649414 + ], + [ + "dactyl", + -14.374741554260254 + ], + [ + "bonus", + -14.374744415283203 + ], + [ + "▁Peanuts", + -14.374750137329102 + ], + [ + "consider", + -14.374757766723633 + ], + [ + "▁bodybuilders", + -14.374761581420898 + ], + [ + "omen", + -14.374804496765137 + ], + [ + "aqa", + -14.374829292297363 + ], + [ + "dari", + -14.374841690063477 + ], + [ + "rbo", + -14.374853134155273 + ], + [ + "▁ascribe", + -14.374861717224121 + ], + [ + "curi", + -14.374884605407715 + ], + [ + "▁girth", + -14.374942779541016 + ], + [ + "▁Exploit", + -14.374944686889648 + ], + [ + "▁OFFICIAL", + -14.374954223632812 + ], + [ + "▁carelessness", + -14.375040054321289 + ], + [ + "▁Switches", + -14.375046730041504 + ], + [ + "skie", + -14.375051498413086 + ], + [ + "▁Gabor", + -14.375059127807617 + ], + [ + "▁obsessing", + -14.375123023986816 + ], + [ + "▁humanistic", + -14.375150680541992 + ], + [ + "он", + -14.375163078308105 + ], + [ + "▁BBA", + -14.375194549560547 + ], + [ + "cannot", + -14.375321388244629 + ], + [ + "▁enthused", + -14.375347137451172 + ], + [ + "BAN", + -14.375375747680664 + ], + [ + "▁garter", + -14.375385284423828 + ], + [ + "▁reorganize", + -14.375438690185547 + ], + [ + "rust", + -14.37544059753418 + ], + [ + "ULATION", + -14.37546443939209 + ], + [ + "▁fuelling", + -14.37551498413086 + ], + [ + "▁WMV", + -14.375519752502441 + ], + [ + "▁taker", + -14.375542640686035 + ], + [ + "▁reconsideration", + -14.375545501708984 + ], + [ + "levrhome", + -14.3755521774292 + ], + [ + "▁burials", + -14.375604629516602 + ], + [ + "▁Midsummer", + -14.37562084197998 + ], + [ + "▁prudence", + -14.375630378723145 + ], + [ + "▁GRO", + -14.375659942626953 + ], + [ + "動", + -14.375661849975586 + ], + [ + "Shark", + -14.37569522857666 + ], + [ + "▁prejudiced", + -14.375696182250977 + ], + [ + "▁Halal", + -14.375699043273926 + ], + [ + "▁acetone", + -14.37574577331543 + ], + [ + "▁IRL", + -14.375792503356934 + ], + [ + "▁botanicals", + -14.37582778930664 + ], + [ + "ო", + -14.375840187072754 + ], + [ + "▁Planes", + -14.375850677490234 + ], + [ + "▁discontinuation", + -14.376008987426758 + ], + [ + "▁ACI", + -14.376056671142578 + ], + [ + "Controller", + -14.376065254211426 + ], + [ + "Commercial", + -14.376080513000488 + ], + [ + "▁hackathon", + -14.376123428344727 + ], + [ + "▁dapoxetine", + -14.376129150390625 + ], + [ + "▁monotony", + -14.376142501831055 + ], + [ + "▁insolvent", + -14.376145362854004 + ], + [ + "▁COMING", + -14.376191139221191 + ], + [ + "▁geyser", + -14.376197814941406 + ], + [ + "▁Knesset", + -14.376212120056152 + ], + [ + "Dom", + -14.376270294189453 + ], + [ + "▁Ryzen", + -14.3762845993042 + ], + [ + "▁Swipe", + -14.376312255859375 + ], + [ + "▁whistleblowers", + -14.376315116882324 + ], + [ + "Lot", + -14.3763427734375 + ], + [ + "▁proliferate", + -14.376349449157715 + ], + [ + "▁forsaken", + -14.376360893249512 + ], + [ + "▁Delia", + -14.376363754272461 + ], + [ + "▁crutch", + -14.376411437988281 + ], + [ + "▁Phar", + -14.376418113708496 + ], + [ + "immune", + -14.376423835754395 + ], + [ + "▁CMT", + -14.376428604125977 + ], + [ + "▁platformer", + -14.376428604125977 + ], + [ + "ULA", + -14.37643051147461 + ], + [ + "▁synthroid", + -14.376442909240723 + ], + [ + "▁supersede", + -14.376480102539062 + ], + [ + "エ", + -14.37649154663086 + ], + [ + "▁Mushrooms", + -14.376497268676758 + ], + [ + "▁tribunals", + -14.376577377319336 + ], + [ + "▁endoscopy", + -14.37658977508545 + ], + [ + "▁Controllers", + -14.376651763916016 + ], + [ + "▁Gilman", + -14.376673698425293 + ], + [ + "▁Sarkozy", + -14.37669563293457 + ], + [ + "▁animators", + -14.376712799072266 + ], + [ + "▁chimpanzees", + -14.376720428466797 + ], + [ + "▁numeral", + -14.376721382141113 + ], + [ + "▁WALK", + -14.376723289489746 + ], + [ + "▁rebalance", + -14.376726150512695 + ], + [ + "mane", + -14.37674331665039 + ], + [ + "knife", + -14.376755714416504 + ], + [ + "▁Explained", + -14.376778602600098 + ], + [ + "hran", + -14.376829147338867 + ], + [ + "crypto", + -14.376863479614258 + ], + [ + "▁Pillows", + -14.376898765563965 + ], + [ + "▁ruffles", + -14.376899719238281 + ], + [ + "jud", + -14.376904487609863 + ], + [ + "▁Woodford", + -14.376954078674316 + ], + [ + "ös", + -14.376965522766113 + ], + [ + "Deck", + -14.376992225646973 + ], + [ + "ג", + -14.377002716064453 + ], + [ + "▁Pesticide", + -14.377033233642578 + ], + [ + "▁Mollie", + -14.37713623046875 + ], + [ + "dav", + -14.377141952514648 + ], + [ + "▁unturned", + -14.377148628234863 + ], + [ + "righteous", + -14.377154350280762 + ], + [ + "ær", + -14.377177238464355 + ], + [ + "▁Dib", + -14.377237319946289 + ], + [ + "rial", + -14.377239227294922 + ], + [ + "▁salve", + -14.377239227294922 + ], + [ + "▁Ludlow", + -14.377241134643555 + ], + [ + "▁Headset", + -14.37724781036377 + ], + [ + "▁caged", + -14.377301216125488 + ], + [ + "cg", + -14.377330780029297 + ], + [ + "▁Motorcycles", + -14.37734317779541 + ], + [ + "894", + -14.377346992492676 + ], + [ + "▁intrigues", + -14.377388000488281 + ], + [ + "context", + -14.377442359924316 + ], + [ + "▁Expenditure", + -14.377453804016113 + ], + [ + "▁pews", + -14.377500534057617 + ], + [ + "▁Tompkins", + -14.377504348754883 + ], + [ + "▁Transitions", + -14.377538681030273 + ], + [ + "erts", + -14.377616882324219 + ], + [ + "laughter", + -14.377668380737305 + ], + [ + "Packard", + -14.377694129943848 + ], + [ + "equipment", + -14.377711296081543 + ], + [ + "▁southernmost", + -14.377713203430176 + ], + [ + "▁HOTEL", + -14.377716064453125 + ], + [ + "▁criss", + -14.37772274017334 + ], + [ + "▁ontological", + -14.377758026123047 + ], + [ + "▁MDM", + -14.377771377563477 + ], + [ + "▁Silverstone", + -14.377784729003906 + ], + [ + "▁utterance", + -14.377799987792969 + ], + [ + "▁Sorrow", + -14.377816200256348 + ], + [ + "▁casks", + -14.37783145904541 + ], + [ + "▁Bred", + -14.377840042114258 + ], + [ + "fh", + -14.377863883972168 + ], + [ + "▁criticising", + -14.377887725830078 + ], + [ + "▁Zay", + -14.37789249420166 + ], + [ + "▁Prov", + -14.377933502197266 + ], + [ + "INGTON", + -14.377958297729492 + ], + [ + "▁YET", + -14.378036499023438 + ], + [ + "venir", + -14.3780517578125 + ], + [ + "▁AUC", + -14.378071784973145 + ], + [ + "▁Zayn", + -14.37816047668457 + ], + [ + "▁PAP", + -14.378206253051758 + ], + [ + "▁Vulnerability", + -14.378262519836426 + ], + [ + "bhi", + -14.378289222717285 + ], + [ + "▁environmentalist", + -14.378348350524902 + ], + [ + "▁Unisex", + -14.378377914428711 + ], + [ + "▁Celebrations", + -14.378382682800293 + ], + [ + "forget", + -14.378397941589355 + ], + [ + "▁Gazprom", + -14.378408432006836 + ], + [ + "RESS", + -14.378426551818848 + ], + [ + "▁prawn", + -14.378467559814453 + ], + [ + "ofsky", + -14.378493309020996 + ], + [ + "▁headlamp", + -14.378494262695312 + ], + [ + "▁underperforming", + -14.378515243530273 + ], + [ + "▁partitioned", + -14.378554344177246 + ], + [ + "▁Brownie", + -14.378556251525879 + ], + [ + "wor", + -14.378596305847168 + ], + [ + "Breaking", + -14.378602981567383 + ], + [ + "▁unwieldy", + -14.378621101379395 + ], + [ + "istically", + -14.378623962402344 + ], + [ + "▁cytometry", + -14.37865161895752 + ], + [ + "▁Modify", + -14.378684997558594 + ], + [ + "▁Tern", + -14.378714561462402 + ], + [ + "▁Rabin", + -14.378724098205566 + ], + [ + "▁Andrey", + -14.378731727600098 + ], + [ + "attacks", + -14.378764152526855 + ], + [ + "▁Kagan", + -14.378766059875488 + ], + [ + "Cop", + -14.378769874572754 + ], + [ + "▁boston", + -14.378805160522461 + ], + [ + "▁Hamptons", + -14.378811836242676 + ], + [ + "▁Radford", + -14.378829956054688 + ], + [ + "belly", + -14.378832817077637 + ], + [ + "▁germinate", + -14.378839492797852 + ], + [ + "▁Cerebral", + -14.378945350646973 + ], + [ + "measure", + -14.378946304321289 + ], + [ + "least", + -14.378994941711426 + ], + [ + "barra", + -14.378997802734375 + ], + [ + "▁MediaCopyright", + -14.379016876220703 + ], + [ + "▁Quail", + -14.379042625427246 + ], + [ + "▁Zand", + -14.37906265258789 + ], + [ + "▁multimodal", + -14.379074096679688 + ], + [ + "▁TPM", + -14.379111289978027 + ], + [ + "▁constitutionality", + -14.379117965698242 + ], + [ + "▁underpins", + -14.379135131835938 + ], + [ + "▁aligners", + -14.379170417785645 + ], + [ + "▁Astana", + -14.379176139831543 + ], + [ + "ilde", + -14.379302024841309 + ], + [ + "▁loyalists", + -14.379343032836914 + ], + [ + "▁biome", + -14.379344940185547 + ], + [ + "▁SCOTT", + -14.379375457763672 + ], + [ + "▁pretrial", + -14.379377365112305 + ], + [ + "▁optimizes", + -14.379512786865234 + ], + [ + "▁matinee", + -14.379517555236816 + ], + [ + "ellan", + -14.379596710205078 + ], + [ + "▁FAQAccessibilityPurchase", + -14.379624366760254 + ], + [ + "▁lambda", + -14.379697799682617 + ], + [ + "▁Gond", + -14.379698753356934 + ], + [ + "▁Clarita", + -14.379820823669434 + ], + [ + "Rosa", + -14.37984561920166 + ], + [ + "▁Assorted", + -14.379877090454102 + ], + [ + "▁Multiplayer", + -14.379899978637695 + ], + [ + "snake", + -14.379900932312012 + ], + [ + "▁Riches", + -14.379928588867188 + ], + [ + "▁Acquired", + -14.379935264587402 + ], + [ + "▁Attributes", + -14.379971504211426 + ], + [ + "▁Worn", + -14.379983901977539 + ], + [ + "▁Khanna", + -14.379992485046387 + ], + [ + "fran", + -14.38000774383545 + ], + [ + "▁Describing", + -14.380060195922852 + ], + [ + "▁tij", + -14.380086898803711 + ], + [ + "▁uric", + -14.38008975982666 + ], + [ + "▁Citibank", + -14.380112648010254 + ], + [ + "nography", + -14.380119323730469 + ], + [ + "▁Roseanne", + -14.38012981414795 + ], + [ + "▁Garr", + -14.380166053771973 + ], + [ + "▁Regression", + -14.380188941955566 + ], + [ + "▁Sexuality", + -14.380196571350098 + ], + [ + "▁Illustrations", + -14.380227088928223 + ], + [ + "searching", + -14.380228042602539 + ], + [ + "▁gamb", + -14.380229949951172 + ], + [ + "▁january", + -14.380278587341309 + ], + [ + "▁Refill", + -14.380292892456055 + ], + [ + "▁lain", + -14.380298614501953 + ], + [ + "lounge", + -14.380349159240723 + ], + [ + "▁unsung", + -14.380435943603516 + ], + [ + "crossed", + -14.380441665649414 + ], + [ + "▁uninstalled", + -14.38045597076416 + ], + [ + "kini", + -14.380495071411133 + ], + [ + "▁Kola", + -14.380513191223145 + ], + [ + "▁outback", + -14.380571365356445 + ], + [ + "▁cellist", + -14.380579948425293 + ], + [ + "▁moored", + -14.380584716796875 + ], + [ + "▁assailants", + -14.380615234375 + ], + [ + "iOS", + -14.38062572479248 + ], + [ + "▁517", + -14.380651473999023 + ], + [ + "能", + -14.380651473999023 + ], + [ + "ption", + -14.380674362182617 + ], + [ + "▁496", + -14.38067626953125 + ], + [ + "087", + -14.380843162536621 + ], + [ + "▁testicular", + -14.380860328674316 + ], + [ + "▁Mileage", + -14.380874633789062 + ], + [ + "893", + -14.380880355834961 + ], + [ + "▁Teatro", + -14.380887031555176 + ], + [ + "▁DDT", + -14.3809175491333 + ], + [ + "▁Feminine", + -14.380926132202148 + ], + [ + "▁Barriers", + -14.380934715270996 + ], + [ + "▁Expires", + -14.380980491638184 + ], + [ + "▁Fences", + -14.381010055541992 + ], + [ + "▁jumpstart", + -14.381025314331055 + ], + [ + "▁subjecting", + -14.381027221679688 + ], + [ + "aic", + -14.38105297088623 + ], + [ + "▁DEEP", + -14.381065368652344 + ], + [ + "▁evasive", + -14.381099700927734 + ], + [ + "duce", + -14.381170272827148 + ], + [ + "073", + -14.381223678588867 + ], + [ + "Eli", + -14.381240844726562 + ], + [ + "kken", + -14.381324768066406 + ], + [ + "▁Geeks", + -14.381340026855469 + ], + [ + "ย", + -14.38134765625 + ], + [ + "▁BOM", + -14.381357192993164 + ], + [ + "▁Realms", + -14.381370544433594 + ], + [ + "▁Placed", + -14.381396293640137 + ], + [ + "▁DAB", + -14.38139820098877 + ], + [ + "▁judicious", + -14.38141918182373 + ], + [ + "▁chimed", + -14.38143539428711 + ], + [ + "▁Sanctions", + -14.381447792053223 + ], + [ + "managing", + -14.381465911865234 + ], + [ + "▁botanist", + -14.381468772888184 + ], + [ + "▁riveted", + -14.381471633911133 + ], + [ + "▁INVESTMENT", + -14.381492614746094 + ], + [ + "▁imperfection", + -14.381525993347168 + ], + [ + "Hispanic", + -14.381559371948242 + ], + [ + "uil", + -14.381575584411621 + ], + [ + "▁MotoGP", + -14.381625175476074 + ], + [ + "8217", + -14.38162612915039 + ], + [ + "▁Withdraw", + -14.381634712219238 + ], + [ + "ков", + -14.381646156311035 + ], + [ + "▁RTP", + -14.381647109985352 + ], + [ + "▁SAGE", + -14.381665229797363 + ], + [ + "▁cornering", + -14.381669998168945 + ], + [ + "▁Jodhpur", + -14.381698608398438 + ], + [ + "▁skydiving", + -14.381705284118652 + ], + [ + "spiration", + -14.381725311279297 + ], + [ + "▁Cyr", + -14.381762504577637 + ], + [ + "▁Headed", + -14.38177490234375 + ], + [ + "YouTube", + -14.381823539733887 + ], + [ + "▁serpentine", + -14.381837844848633 + ], + [ + "▁AUTHOR", + -14.381875991821289 + ], + [ + "▁rapes", + -14.381937026977539 + ], + [ + "▁Collie", + -14.381948471069336 + ], + [ + "▁famil", + -14.381999969482422 + ], + [ + "▁Thakur", + -14.382006645202637 + ], + [ + "▁Rajesh", + -14.382039070129395 + ], + [ + "▁VAL", + -14.382039070129395 + ], + [ + "▁545", + -14.382055282592773 + ], + [ + "▁Bukit", + -14.382083892822266 + ], + [ + "▁vesicles", + -14.382086753845215 + ], + [ + "▁bleachers", + -14.38213062286377 + ], + [ + "▁Dioxide", + -14.382168769836426 + ], + [ + "ploid", + -14.382173538208008 + ], + [ + "▁725", + -14.38217544555664 + ], + [ + "▁limping", + -14.38217544555664 + ], + [ + "Nar", + -14.382190704345703 + ], + [ + "▁cribs", + -14.382203102111816 + ], + [ + "▁Lov", + -14.382210731506348 + ], + [ + "CNS", + -14.38221549987793 + ], + [ + "HAL", + -14.382217407226562 + ], + [ + "Compare", + -14.382232666015625 + ], + [ + "▁CLS", + -14.382281303405762 + ], + [ + "▁befriend", + -14.382286071777344 + ], + [ + "▁Allahabad", + -14.382322311401367 + ], + [ + "天", + -14.382349014282227 + ], + [ + "▁EIS", + -14.382373809814453 + ], + [ + "▁Chamb", + -14.382376670837402 + ], + [ + "▁SYSTEMS", + -14.382377624511719 + ], + [ + "▁decompress", + -14.382390022277832 + ], + [ + "▁Nato", + -14.382458686828613 + ], + [ + "▁headroom", + -14.382473945617676 + ], + [ + "▁Wilma", + -14.382477760314941 + ], + [ + "▁Kermit", + -14.382491111755371 + ], + [ + "GES", + -14.382497787475586 + ], + [ + "hacker", + -14.38253402709961 + ], + [ + "▁Stretching", + -14.38255500793457 + ], + [ + "▁Chippewa", + -14.382555961608887 + ], + [ + "▁inkling", + -14.382573127746582 + ], + [ + "▁dipole", + -14.38260555267334 + ], + [ + "▁Gl", + -14.382686614990234 + ], + [ + "▁SPAM", + -14.382698059082031 + ], + [ + "▁437", + -14.382733345031738 + ], + [ + "▁flattening", + -14.382824897766113 + ], + [ + "▁SSS", + -14.382829666137695 + ], + [ + "ま", + -14.38284683227539 + ], + [ + "▁Carrollton", + -14.382905960083008 + ], + [ + "▁harboring", + -14.382922172546387 + ], + [ + "avy", + -14.382935523986816 + ], + [ + "▁moveable", + -14.38296127319336 + ], + [ + "▁thr", + -14.382967948913574 + ], + [ + "CFS", + -14.383014678955078 + ], + [ + "comments", + -14.383028984069824 + ], + [ + "▁ELL", + -14.38304615020752 + ], + [ + "▁throes", + -14.383079528808594 + ], + [ + "▁DeKalb", + -14.383086204528809 + ], + [ + "▁propriety", + -14.383109092712402 + ], + [ + "▁mutilation", + -14.383110046386719 + ], + [ + "▁worshiping", + -14.383153915405273 + ], + [ + "▁flexibly", + -14.383179664611816 + ], + [ + "▁Budweiser", + -14.383187294006348 + ], + [ + "skip", + -14.383203506469727 + ], + [ + "▁occupiers", + -14.383203506469727 + ], + [ + "Finding", + -14.38322925567627 + ], + [ + "▁WAC", + -14.38330078125 + ], + [ + "▁inhabiting", + -14.38330078125 + ], + [ + "▁Schofield", + -14.383317947387695 + ], + [ + "▁jun", + -14.383334159851074 + ], + [ + "Dash", + -14.383363723754883 + ], + [ + "▁sti", + -14.38337516784668 + ], + [ + "uffy", + -14.383414268493652 + ], + [ + "▁años", + -14.383421897888184 + ], + [ + "▁Hanger", + -14.383565902709961 + ], + [ + "▁Wages", + -14.383576393127441 + ], + [ + "iten", + -14.383577346801758 + ], + [ + "▁mulled", + -14.383605003356934 + ], + [ + "▁cooper", + -14.383618354797363 + ], + [ + "▁interviewers", + -14.383628845214844 + ], + [ + "▁pizzeria", + -14.383647918701172 + ], + [ + "▁Ahl", + -14.383651733398438 + ], + [ + "▁insular", + -14.383654594421387 + ], + [ + "▁Roi", + -14.383662223815918 + ], + [ + "▁715", + -14.383712768554688 + ], + [ + "▁MNC", + -14.383752822875977 + ], + [ + "작", + -14.383806228637695 + ], + [ + "▁Capo", + -14.3839111328125 + ], + [ + "▁hottie", + -14.383941650390625 + ], + [ + "hera", + -14.383950233459473 + ], + [ + "▁Maro", + -14.384037017822266 + ], + [ + "▁engrossing", + -14.384040832519531 + ], + [ + "▁peeing", + -14.384092330932617 + ], + [ + "▁Soybean", + -14.384156227111816 + ], + [ + "▁Zing", + -14.384157180786133 + ], + [ + "roon", + -14.384174346923828 + ], + [ + "iwi", + -14.384215354919434 + ], + [ + "▁Gove", + -14.384230613708496 + ], + [ + "Emma", + -14.384242057800293 + ], + [ + "▁informants", + -14.384285926818848 + ], + [ + "▁Chubb", + -14.384332656860352 + ], + [ + "Transfer", + -14.38435173034668 + ], + [ + "▁Jada", + -14.38436222076416 + ], + [ + "▁altruism", + -14.38437557220459 + ], + [ + "elu", + -14.384392738342285 + ], + [ + "058", + -14.384394645690918 + ], + [ + "Bitcoin", + -14.384394645690918 + ], + [ + "▁521", + -14.384480476379395 + ], + [ + "▁lagoons", + -14.384502410888672 + ], + [ + "▁BSC", + -14.384562492370605 + ], + [ + "oration", + -14.38459300994873 + ], + [ + "▁venison", + -14.38460922241211 + ], + [ + "▁Moyer", + -14.384639739990234 + ], + [ + "▁contradicting", + -14.384654998779297 + ], + [ + "chos", + -14.384676933288574 + ], + [ + "▁Cracked", + -14.384695053100586 + ], + [ + "▁werewolves", + -14.38471508026123 + ], + [ + "▁527", + -14.384723663330078 + ], + [ + "baba", + -14.384757995605469 + ], + [ + "▁Nomination", + -14.384758949279785 + ], + [ + "▁PSN", + -14.38477897644043 + ], + [ + "deh", + -14.384800910949707 + ], + [ + "passing", + -14.384827613830566 + ], + [ + "LTA", + -14.384832382202148 + ], + [ + "▁toenails", + -14.384855270385742 + ], + [ + "▁Ahmadinejad", + -14.384858131408691 + ], + [ + "▁LOB", + -14.384862899780273 + ], + [ + "psycho", + -14.384876251220703 + ], + [ + "▁MIG", + -14.384899139404297 + ], + [ + "pyr", + -14.38491439819336 + ], + [ + "▁Stam", + -14.384943962097168 + ], + [ + "christ", + -14.384990692138672 + ], + [ + "▁menthol", + -14.3850679397583 + ], + [ + "▁metaphorically", + -14.385124206542969 + ], + [ + "▁replays", + -14.385129928588867 + ], + [ + "▁cata", + -14.38513469696045 + ], + [ + "Zen", + -14.385141372680664 + ], + [ + "▁Roque", + -14.385161399841309 + ], + [ + "▁Slat", + -14.385168075561523 + ], + [ + "Featured", + -14.385178565979004 + ], + [ + "▁Localization", + -14.385191917419434 + ], + [ + "▁Kak", + -14.38524055480957 + ], + [ + "stepping", + -14.38524341583252 + ], + [ + "▁barcodes", + -14.385247230529785 + ], + [ + "▁Thessalonians", + -14.385261535644531 + ], + [ + "▁Bucky", + -14.385329246520996 + ], + [ + "▁Myra", + -14.385329246520996 + ], + [ + "082", + -14.385336875915527 + ], + [ + "▁espoused", + -14.385416984558105 + ], + [ + "OEM", + -14.38543701171875 + ], + [ + "▁nudged", + -14.385440826416016 + ], + [ + "Div", + -14.385456085205078 + ], + [ + "▁blouses", + -14.385459899902344 + ], + [ + "▁Schemes", + -14.385464668273926 + ], + [ + "▁・", + -14.385528564453125 + ], + [ + "▁Ural", + -14.385538101196289 + ], + [ + "allen", + -14.38554573059082 + ], + [ + "▁passcode", + -14.385551452636719 + ], + [ + "ylation", + -14.385571479797363 + ], + [ + "▁Fermi", + -14.385574340820312 + ], + [ + "▁keystone", + -14.385576248168945 + ], + [ + "▁Lateral", + -14.38558292388916 + ], + [ + "▁Classifieds", + -14.385600090026855 + ], + [ + "▁Coup", + -14.385603904724121 + ], + [ + "tractor", + -14.385619163513184 + ], + [ + "▁Jetta", + -14.385683059692383 + ], + [ + "▁Containing", + -14.385686874389648 + ], + [ + "▁Weinberg", + -14.385687828063965 + ], + [ + "▁Ethno", + -14.385705947875977 + ], + [ + "▁strayed", + -14.38570785522461 + ], + [ + "mington", + -14.385712623596191 + ], + [ + "rental", + -14.385741233825684 + ], + [ + "▁Burrows", + -14.385778427124023 + ], + [ + "▁defraud", + -14.38578987121582 + ], + [ + "posable", + -14.38582992553711 + ], + [ + "▁Kicking", + -14.385905265808105 + ], + [ + "oxa", + -14.385917663574219 + ], + [ + "▁Chongqing", + -14.385933876037598 + ], + [ + "tomo", + -14.386007308959961 + ], + [ + "▁rasp", + -14.38603687286377 + ], + [ + "ɑ", + -14.386058807373047 + ], + [ + "▁Camelot", + -14.386070251464844 + ], + [ + "⁄", + -14.386076927185059 + ], + [ + "CPU", + -14.386083602905273 + ], + [ + "▁laurels", + -14.386124610900879 + ], + [ + "▁Synth", + -14.386130332946777 + ], + [ + "▁Oat", + -14.386181831359863 + ], + [ + "▁BSN", + -14.386207580566406 + ], + [ + "▁sealants", + -14.386238098144531 + ], + [ + "youth", + -14.386260032653809 + ], + [ + "▁blowers", + -14.386263847351074 + ], + [ + "▁offbeat", + -14.386284828186035 + ], + [ + "▁tendered", + -14.386323928833008 + ], + [ + "amus", + -14.386336326599121 + ], + [ + "quez", + -14.386337280273438 + ], + [ + "▁Barring", + -14.386351585388184 + ], + [ + "▁Saxony", + -14.386404991149902 + ], + [ + "Sharp", + -14.386417388916016 + ], + [ + "▁QUA", + -14.386425971984863 + ], + [ + "issimo", + -14.386443138122559 + ], + [ + "▁Chara", + -14.386451721191406 + ], + [ + "▁austin", + -14.386452674865723 + ], + [ + "become", + -14.386454582214355 + ], + [ + "▁Pakistanis", + -14.386479377746582 + ], + [ + "eet", + -14.386503219604492 + ], + [ + "▁airtime", + -14.386520385742188 + ], + [ + "▁Drying", + -14.386539459228516 + ], + [ + "▁ELA", + -14.386556625366211 + ], + [ + "lh", + -14.386569023132324 + ], + [ + "forge", + -14.386570930480957 + ], + [ + "Aqua", + -14.386585235595703 + ], + [ + "▁oligonucleotide", + -14.386734962463379 + ], + [ + "Singapore", + -14.386775016784668 + ], + [ + "▁cardholder", + -14.386781692504883 + ], + [ + "▁Davie", + -14.386795043945312 + ], + [ + "▁5500", + -14.386820793151855 + ], + [ + "▁caved", + -14.386842727661133 + ], + [ + "▁enriches", + -14.386846542358398 + ], + [ + "▁islam", + -14.386855125427246 + ], + [ + "▁Alvaro", + -14.386862754821777 + ], + [ + "fone", + -14.386911392211914 + ], + [ + "▁SCAR", + -14.38691234588623 + ], + [ + "Nik", + -14.386945724487305 + ], + [ + "Mur", + -14.386946678161621 + ], + [ + "▁SCSI", + -14.386947631835938 + ], + [ + "▁coco", + -14.386970520019531 + ], + [ + "▁commutes", + -14.387001991271973 + ], + [ + "alert", + -14.387030601501465 + ], + [ + "▁carpal", + -14.387031555175781 + ], + [ + "▁Dropping", + -14.387051582336426 + ], + [ + "▁618", + -14.387093544006348 + ], + [ + "Parent", + -14.387097358703613 + ], + [ + "medi", + -14.387153625488281 + ], + [ + "▁medicated", + -14.387154579162598 + ], + [ + "▁Washburn", + -14.38715648651123 + ], + [ + "▁Taser", + -14.387210845947266 + ], + [ + "▁runes", + -14.387218475341797 + ], + [ + "pirate", + -14.387223243713379 + ], + [ + "▁supersonic", + -14.387323379516602 + ], + [ + "▁scammer", + -14.387340545654297 + ], + [ + "ذ", + -14.387378692626953 + ], + [ + "全", + -14.387388229370117 + ], + [ + "tans", + -14.387429237365723 + ], + [ + "▁Thoreau", + -14.38743782043457 + ], + [ + "somewhat", + -14.38744068145752 + ], + [ + "▁dwarves", + -14.38747787475586 + ], + [ + "▁retires", + -14.387497901916504 + ], + [ + "cision", + -14.3875093460083 + ], + [ + "▁Hsu", + -14.387513160705566 + ], + [ + "xu", + -14.387537956237793 + ], + [ + "dere", + -14.387552261352539 + ], + [ + "▁Mago", + -14.387552261352539 + ], + [ + "▁Leviticus", + -14.38757610321045 + ], + [ + "septic", + -14.387579917907715 + ], + [ + "▁Azul", + -14.387582778930664 + ], + [ + "iek", + -14.38759708404541 + ], + [ + "▁leadoff", + -14.387618064880371 + ], + [ + "▁Hmmmm", + -14.38762092590332 + ], + [ + "▁appetites", + -14.387672424316406 + ], + [ + "▁sauerkraut", + -14.387687683105469 + ], + [ + "jna", + -14.387728691101074 + ], + [ + "▁Hä", + -14.387731552124023 + ], + [ + "▁Krause", + -14.387761116027832 + ], + [ + "▁Attract", + -14.387843132019043 + ], + [ + "▁implausible", + -14.387849807739258 + ], + [ + "▁seeping", + -14.387885093688965 + ], + [ + "liya", + -14.387900352478027 + ], + [ + "▁Taf", + -14.387919425964355 + ], + [ + "▁Deca", + -14.387988090515137 + ], + [ + "▁Dependent", + -14.387995719909668 + ], + [ + "soccer", + -14.388008117675781 + ], + [ + "illes", + -14.38809585571289 + ], + [ + "innovation", + -14.388106346130371 + ], + [ + "▁Pancake", + -14.388172149658203 + ], + [ + "▁breakpoint", + -14.388175010681152 + ], + [ + "▁bunting", + -14.388205528259277 + ], + [ + "▁Takahashi", + -14.388238906860352 + ], + [ + "Lisa", + -14.388288497924805 + ], + [ + "▁Litchfield", + -14.388288497924805 + ], + [ + "rni", + -14.388328552246094 + ], + [ + "trait", + -14.38837718963623 + ], + [ + "shame", + -14.388384819030762 + ], + [ + "▁passable", + -14.38846206665039 + ], + [ + "▁preaches", + -14.388489723205566 + ], + [ + "▁banked", + -14.388494491577148 + ], + [ + "BIA", + -14.38850212097168 + ], + [ + "▁shipper", + -14.388524055480957 + ], + [ + "▁Diplomatic", + -14.388571739196777 + ], + [ + "▁impersonate", + -14.388585090637207 + ], + [ + "▁NEWSWIRE", + -14.388591766357422 + ], + [ + "shev", + -14.388611793518066 + ], + [ + "quar", + -14.388614654541016 + ], + [ + "▁commonality", + -14.388657569885254 + ], + [ + "Susan", + -14.388660430908203 + ], + [ + "nati", + -14.38868236541748 + ], + [ + "▁AMR", + -14.388703346252441 + ], + [ + "▁apical", + -14.388758659362793 + ], + [ + "▁multipliers", + -14.38878345489502 + ], + [ + "container", + -14.388786315917969 + ], + [ + "▁Mey", + -14.388789176940918 + ], + [ + "assie", + -14.388792037963867 + ], + [ + "Tam", + -14.388811111450195 + ], + [ + "▁RTL", + -14.388824462890625 + ], + [ + "▁Relying", + -14.388849258422852 + ], + [ + "▁Simplified", + -14.388858795166016 + ], + [ + "▁Ascent", + -14.388882637023926 + ], + [ + "▁twee", + -14.388894081115723 + ], + [ + "▁scott", + -14.38891887664795 + ], + [ + "REF", + -14.388985633850098 + ], + [ + "amura", + -14.389017105102539 + ], + [ + "LAY", + -14.389030456542969 + ], + [ + "▁concocted", + -14.389031410217285 + ], + [ + "izu", + -14.389046669006348 + ], + [ + "▁Jura", + -14.389081954956055 + ], + [ + "▁rephrase", + -14.389093399047852 + ], + [ + "▁Lakeshore", + -14.389105796813965 + ], + [ + "Johnny", + -14.389108657836914 + ], + [ + "▁evaporator", + -14.389127731323242 + ], + [ + "▁knits", + -14.389142990112305 + ], + [ + "▁Ome", + -14.389262199401855 + ], + [ + "liqu", + -14.389269828796387 + ], + [ + "▁Downton", + -14.38930892944336 + ], + [ + "▁burlesque", + -14.3893461227417 + ], + [ + "▁adores", + -14.389348030090332 + ], + [ + "▁Builderall", + -14.389358520507812 + ], + [ + "▁Emulator", + -14.389369010925293 + ], + [ + "categories", + -14.389412879943848 + ], + [ + "▁drapery", + -14.389448165893555 + ], + [ + "▁SDR", + -14.38945198059082 + ], + [ + "lawyer", + -14.389503479003906 + ], + [ + "▁Explorers", + -14.389512062072754 + ], + [ + "experiment", + -14.38951301574707 + ], + [ + "▁haptic", + -14.389542579650879 + ], + [ + "▁moor", + -14.38960075378418 + ], + [ + "▁propellant", + -14.389602661132812 + ], + [ + "▁magnify", + -14.389615058898926 + ], + [ + "▁fancies", + -14.38970947265625 + ], + [ + "contractors", + -14.389717102050781 + ], + [ + "wreck", + -14.389717102050781 + ], + [ + "▁Zul", + -14.38974666595459 + ], + [ + "▁hobbyist", + -14.389787673950195 + ], + [ + "Elect", + -14.389793395996094 + ], + [ + "▁multicast", + -14.389815330505371 + ], + [ + "▁shag", + -14.389815330505371 + ], + [ + "▁metamorphosis", + -14.38984489440918 + ], + [ + "rde", + -14.389845848083496 + ], + [ + "mach", + -14.389860153198242 + ], + [ + "▁baldness", + -14.389875411987305 + ], + [ + "▁Modesto", + -14.389896392822266 + ], + [ + "▁Subtitle", + -14.389922142028809 + ], + [ + "▁TIPS", + -14.389927864074707 + ], + [ + "▁Balfour", + -14.390031814575195 + ], + [ + "WY", + -14.390063285827637 + ], + [ + "ство", + -14.390191078186035 + ], + [ + "▁desirous", + -14.390193939208984 + ], + [ + "ibil", + -14.390206336975098 + ], + [ + "▁Dobbs", + -14.390213012695312 + ], + [ + "▁1787", + -14.390341758728027 + ], + [ + "▁Thug", + -14.390360832214355 + ], + [ + "▁BCCI", + -14.390405654907227 + ], + [ + "bride", + -14.390410423278809 + ], + [ + "▁Calculation", + -14.390427589416504 + ], + [ + "▁Đ", + -14.390461921691895 + ], + [ + "▁lavatory", + -14.390518188476562 + ], + [ + "ergy", + -14.390538215637207 + ], + [ + "▁Koon", + -14.390570640563965 + ], + [ + "▁Oliva", + -14.390625 + ], + [ + "lico", + -14.39063835144043 + ], + [ + "▁harmonics", + -14.390671730041504 + ], + [ + "hug", + -14.390705108642578 + ], + [ + "isë", + -14.390725135803223 + ], + [ + "cional", + -14.390734672546387 + ], + [ + "▁CEL", + -14.390763282775879 + ], + [ + "▁clutched", + -14.39078426361084 + ], + [ + "tuck", + -14.390817642211914 + ], + [ + "Andy", + -14.390872955322266 + ], + [ + "▁auditioned", + -14.390875816345215 + ], + [ + "▁vii", + -14.39089584350586 + ], + [ + "▁teardrop", + -14.390907287597656 + ], + [ + "▁matrimonial", + -14.390910148620605 + ], + [ + "vino", + -14.390915870666504 + ], + [ + "▁jurisdictional", + -14.390959739685059 + ], + [ + "naked", + -14.390983581542969 + ], + [ + "932", + -14.391019821166992 + ], + [ + "▁renegade", + -14.391077041625977 + ], + [ + "▁epitope", + -14.391105651855469 + ], + [ + "bhu", + -14.391121864318848 + ], + [ + "▁Yasmin", + -14.391218185424805 + ], + [ + "▁Parton", + -14.391225814819336 + ], + [ + "▁Keynesian", + -14.391233444213867 + ], + [ + "▁Claimant", + -14.391239166259766 + ], + [ + "▁starship", + -14.39124584197998 + ], + [ + "tempered", + -14.391246795654297 + ], + [ + "▁Thurman", + -14.391255378723145 + ], + [ + "▁brokerages", + -14.391278266906738 + ], + [ + "Bas", + -14.391284942626953 + ], + [ + "usc", + -14.391316413879395 + ], + [ + "▁hab", + -14.391324996948242 + ], + [ + "▁deletions", + -14.391365051269531 + ], + [ + "▁Effort", + -14.391389846801758 + ], + [ + "▁comparator", + -14.391412734985352 + ], + [ + "▁aficionado", + -14.3914155960083 + ], + [ + "ESH", + -14.391424179077148 + ], + [ + "▁fanboy", + -14.391448974609375 + ], + [ + "▁hunched", + -14.391465187072754 + ], + [ + "▁exalt", + -14.391470909118652 + ], + [ + "▁JET", + -14.39153003692627 + ], + [ + "▁Wandering", + -14.391531944274902 + ], + [ + "▁epidermal", + -14.39155101776123 + ], + [ + "Shadow", + -14.391554832458496 + ], + [ + "▁Cheung", + -14.391558647155762 + ], + [ + "▁NPT", + -14.391559600830078 + ], + [ + "▁QF", + -14.391563415527344 + ], + [ + "▁Journeys", + -14.391633987426758 + ], + [ + "volv", + -14.391642570495605 + ], + [ + "▁Yap", + -14.3916597366333 + ], + [ + "▁sym", + -14.391660690307617 + ], + [ + "▁leprosy", + -14.39173698425293 + ], + [ + "▁ske", + -14.391739845275879 + ], + [ + "massive", + -14.391744613647461 + ], + [ + "▁automates", + -14.391756057739258 + ], + [ + "heer", + -14.391819953918457 + ], + [ + "catalog", + -14.391860961914062 + ], + [ + "▁Kiran", + -14.391868591308594 + ], + [ + "▁traditionalist", + -14.391878128051758 + ], + [ + "Drug", + -14.39188289642334 + ], + [ + "aste", + -14.391900062561035 + ], + [ + "android", + -14.391916275024414 + ], + [ + "▁unrecognized", + -14.391921997070312 + ], + [ + "flux", + -14.391923904418945 + ], + [ + "▁Alderman", + -14.391938209533691 + ], + [ + "▁weightlifting", + -14.391942977905273 + ], + [ + "▁Sanct", + -14.391949653625488 + ], + [ + "▁489", + -14.391951560974121 + ], + [ + "institutional", + -14.391952514648438 + ], + [ + "▁Jurisdiction", + -14.39195442199707 + ], + [ + "margin", + -14.391960144042969 + ], + [ + "▁PRINCE", + -14.391966819763184 + ], + [ + "▁McMurray", + -14.392012596130371 + ], + [ + "▁SeaWorld", + -14.39204216003418 + ], + [ + "▁comps", + -14.39209270477295 + ], + [ + "coupon", + -14.392110824584961 + ], + [ + "▁propagating", + -14.392179489135742 + ], + [ + "▁tinged", + -14.392182350158691 + ], + [ + "▁Tylenol", + -14.39220905303955 + ], + [ + "▁rosewood", + -14.392251014709473 + ], + [ + "▁smallpox", + -14.392266273498535 + ], + [ + "▁Yolanda", + -14.392281532287598 + ], + [ + "▁iShares", + -14.392281532287598 + ], + [ + "▁crema", + -14.392303466796875 + ], + [ + "▁junta", + -14.392313957214355 + ], + [ + "▁disassembled", + -14.392318725585938 + ], + [ + "paragraph", + -14.392322540283203 + ], + [ + "▁Ransomware", + -14.392327308654785 + ], + [ + "desktop", + -14.392390251159668 + ], + [ + "Football", + -14.39240837097168 + ], + [ + "▁Shree", + -14.392411231994629 + ], + [ + "▁idling", + -14.392427444458008 + ], + [ + "epe", + -14.392487525939941 + ], + [ + "▁Irvin", + -14.39249324798584 + ], + [ + "▁ix", + -14.392500877380371 + ], + [ + "▁neurosurgeon", + -14.39250659942627 + ], + [ + "▁untouchable", + -14.39250659942627 + ], + [ + "▁serrated", + -14.392513275146484 + ], + [ + "▁Stoney", + -14.392526626586914 + ], + [ + "▁dave", + -14.392526626586914 + ], + [ + "trag", + -14.392629623413086 + ], + [ + "FOX", + -14.392668724060059 + ], + [ + "▁Algonquin", + -14.392695426940918 + ], + [ + "гра", + -14.392704010009766 + ], + [ + "Sham", + -14.392717361450195 + ], + [ + "regarded", + -14.392753601074219 + ], + [ + "▁ideologically", + -14.39276123046875 + ], + [ + "parameter", + -14.392767906188965 + ], + [ + "▁Ensign", + -14.392768859863281 + ], + [ + "▁McDavid", + -14.39277458190918 + ], + [ + "▁Grenfell", + -14.392842292785645 + ], + [ + "▁bastard", + -14.39285945892334 + ], + [ + "▁steakhouse", + -14.392870903015137 + ], + [ + "▁PUR", + -14.392906188964844 + ], + [ + "sealed", + -14.39291000366211 + ], + [ + "adv", + -14.392916679382324 + ], + [ + "▁Roxanne", + -14.392926216125488 + ], + [ + "ummer", + -14.393012046813965 + ], + [ + "▁VFX", + -14.393031120300293 + ], + [ + "▁Toowoomba", + -14.393044471740723 + ], + [ + "vous", + -14.393047332763672 + ], + [ + "Dig", + -14.393048286437988 + ], + [ + "▁taupe", + -14.393056869506836 + ], + [ + "▁Tapestry", + -14.393071174621582 + ], + [ + "▁Caitlyn", + -14.393078804016113 + ], + [ + "▁APRIL", + -14.393108367919922 + ], + [ + "▁Bola", + -14.393111228942871 + ], + [ + "▁abstractions", + -14.393167495727539 + ], + [ + "▁allusion", + -14.393295288085938 + ], + [ + "▁whereupon", + -14.393360137939453 + ], + [ + "▁jigs", + -14.393366813659668 + ], + [ + "Valley", + -14.393373489379883 + ], + [ + "▁instalments", + -14.393383979797363 + ], + [ + "▁equinox", + -14.393394470214844 + ], + [ + "▁pavilions", + -14.393426895141602 + ], + [ + "▁mister", + -14.39342975616455 + ], + [ + "▁fraternal", + -14.393445014953613 + ], + [ + "ท", + -14.393464088439941 + ], + [ + "hedral", + -14.393537521362305 + ], + [ + "▁Tame", + -14.393575668334961 + ], + [ + "▁Sina", + -14.393579483032227 + ], + [ + "chap", + -14.393586158752441 + ], + [ + "Rite", + -14.39360523223877 + ], + [ + "ioli", + -14.393677711486816 + ], + [ + "eia", + -14.393684387207031 + ], + [ + "▁Massimo", + -14.393791198730469 + ], + [ + "Kal", + -14.393821716308594 + ], + [ + "▁Jamison", + -14.393828392028809 + ], + [ + "▁INEC", + -14.39385986328125 + ], + [ + "▁immunodeficiency", + -14.393874168395996 + ], + [ + "▁energetically", + -14.393917083740234 + ], + [ + "▁frauds", + -14.393921852111816 + ], + [ + "IKA", + -14.393938064575195 + ], + [ + "mento", + -14.393939018249512 + ], + [ + "Description", + -14.393939971923828 + ], + [ + "SUB", + -14.393952369689941 + ], + [ + "▁lapping", + -14.393980979919434 + ], + [ + "Mars", + -14.394048690795898 + ], + [ + "▁mustn", + -14.39405632019043 + ], + [ + "▁Enclosure", + -14.394062995910645 + ], + [ + "▁Governmental", + -14.394067764282227 + ], + [ + "▁evading", + -14.394082069396973 + ], + [ + "▁Lenten", + -14.394089698791504 + ], + [ + "▁Tull", + -14.394113540649414 + ], + [ + "Verlag", + -14.394118309020996 + ], + [ + "▁MSF", + -14.394119262695312 + ], + [ + "▁Lexmark", + -14.394134521484375 + ], + [ + "▁Tapes", + -14.394149780273438 + ], + [ + "▁Shakti", + -14.394156455993652 + ], + [ + "▁Estado", + -14.394209861755371 + ], + [ + "▁Austral", + -14.394217491149902 + ], + [ + "▁autoplay", + -14.394250869750977 + ], + [ + "absorbed", + -14.394267082214355 + ], + [ + "▁Monaghan", + -14.394306182861328 + ], + [ + "053", + -14.39431095123291 + ], + [ + "gant", + -14.394312858581543 + ], + [ + "▁Fraternity", + -14.394318580627441 + ], + [ + "mpi", + -14.39436149597168 + ], + [ + "▁Gis", + -14.394369125366211 + ], + [ + "▁footbed", + -14.394476890563965 + ], + [ + "imat", + -14.39449405670166 + ], + [ + "▁Oooh", + -14.39453125 + ], + [ + "▁HANA", + -14.394535064697266 + ], + [ + "▁primacy", + -14.39459228515625 + ], + [ + "▁Pela", + -14.394596099853516 + ], + [ + "accurate", + -14.394617080688477 + ], + [ + "▁Commuter", + -14.394620895385742 + ], + [ + "rsk", + -14.394634246826172 + ], + [ + "honored", + -14.39463996887207 + ], + [ + "▁reformation", + -14.394684791564941 + ], + [ + "vus", + -14.394722938537598 + ], + [ + "▁vengeful", + -14.39472484588623 + ], + [ + "▁jon", + -14.39474105834961 + ], + [ + "▁modernisation", + -14.394759178161621 + ], + [ + "▁bugging", + -14.394832611083984 + ], + [ + "▁XXI", + -14.394843101501465 + ], + [ + "▁confirmations", + -14.394867897033691 + ], + [ + "▁clatter", + -14.394869804382324 + ], + [ + "▁Heim", + -14.394903182983398 + ], + [ + "▁CentOS", + -14.39492130279541 + ], + [ + "rue", + -14.394928932189941 + ], + [ + "▁Noodles", + -14.394978523254395 + ], + [ + "▁capitalizing", + -14.395014762878418 + ], + [ + "▁detest", + -14.395036697387695 + ], + [ + "▁très", + -14.395090103149414 + ], + [ + "▁BRO", + -14.395140647888184 + ], + [ + "▁Venn", + -14.395140647888184 + ], + [ + "▁Bootcamp", + -14.395151138305664 + ], + [ + "icu", + -14.39515209197998 + ], + [ + "▁predeceased", + -14.395159721374512 + ], + [ + "completed", + -14.395180702209473 + ], + [ + "▁Fairly", + -14.395234107971191 + ], + [ + "811", + -14.395235061645508 + ], + [ + "▁characterise", + -14.395238876342773 + ], + [ + "▁Bessie", + -14.395254135131836 + ], + [ + "946", + -14.395267486572266 + ], + [ + "▁ANGEL", + -14.395267486572266 + ], + [ + "▁kö", + -14.395267486572266 + ], + [ + "▁Salvage", + -14.395292282104492 + ], + [ + "▁Uncover", + -14.395359992980957 + ], + [ + "▁bioactive", + -14.395394325256348 + ], + [ + "▁Relation", + -14.395455360412598 + ], + [ + "▁EDTA", + -14.39545726776123 + ], + [ + "▁Installations", + -14.39552116394043 + ], + [ + "▁videogame", + -14.395549774169922 + ], + [ + "▁arab", + -14.395559310913086 + ], + [ + "▁Singaporeans", + -14.395567893981934 + ], + [ + "▁AGW", + -14.395647048950195 + ], + [ + "▁dispositions", + -14.395647048950195 + ], + [ + "986", + -14.395689964294434 + ], + [ + "▁Mauritania", + -14.395752906799316 + ], + [ + "▁Fluorescent", + -14.39577579498291 + ], + [ + "▁Broadcom", + -14.395830154418945 + ], + [ + "▁heaviness", + -14.395833015441895 + ], + [ + "itsch", + -14.395837783813477 + ], + [ + "▁Muddy", + -14.395848274230957 + ], + [ + "residence", + -14.395856857299805 + ], + [ + "▁dilation", + -14.395859718322754 + ], + [ + "pillar", + -14.395902633666992 + ], + [ + "CPC", + -14.395949363708496 + ], + [ + "▁ITU", + -14.395977973937988 + ], + [ + "▁Truss", + -14.396002769470215 + ], + [ + "ном", + -14.39603328704834 + ], + [ + "▁2048", + -14.396069526672363 + ], + [ + "▁zesty", + -14.396074295043945 + ], + [ + "▁Strict", + -14.396075248718262 + ], + [ + "▁CVT", + -14.396080017089844 + ], + [ + "ミ", + -14.396103858947754 + ], + [ + "fte", + -14.3961181640625 + ], + [ + "▁REN", + -14.3961181640625 + ], + [ + "breakfast", + -14.396149635314941 + ], + [ + "PHI", + -14.396160125732422 + ], + [ + "▁Ionic", + -14.396196365356445 + ], + [ + "▁Kultur", + -14.396210670471191 + ], + [ + "▁IPTV", + -14.396235466003418 + ], + [ + "▁baba", + -14.396286964416504 + ], + [ + "▁Fasten", + -14.396312713623047 + ], + [ + "wound", + -14.396333694458008 + ], + [ + "▁wort", + -14.396333694458008 + ], + [ + "▁CEU", + -14.39633560180664 + ], + [ + "zana", + -14.396350860595703 + ], + [ + "▁Nem", + -14.39638614654541 + ], + [ + "▁£19", + -14.396408081054688 + ], + [ + "▁autonomously", + -14.396409034729004 + ], + [ + "▁Shipbuilding", + -14.3964262008667 + ], + [ + "▁layoff", + -14.3964262008667 + ], + [ + "▁rioting", + -14.396446228027344 + ], + [ + "▁Seminoles", + -14.396458625793457 + ], + [ + "▁Slight", + -14.396465301513672 + ], + [ + "▁expository", + -14.396488189697266 + ], + [ + "poker", + -14.396519660949707 + ], + [ + "▁friendlier", + -14.396538734436035 + ], + [ + "▁Rode", + -14.396560668945312 + ], + [ + "▁Linguistic", + -14.396576881408691 + ], + [ + "▁admonition", + -14.396604537963867 + ], + [ + "▁treading", + -14.396612167358398 + ], + [ + "▁continuance", + -14.396615028381348 + ], + [ + "▁Inequality", + -14.396623611450195 + ], + [ + "▁Ovechkin", + -14.396684646606445 + ], + [ + "supplied", + -14.396709442138672 + ], + [ + "▁Dosage", + -14.396750450134277 + ], + [ + "geon", + -14.396800994873047 + ], + [ + "Route", + -14.396801948547363 + ], + [ + "▁Ishmael", + -14.396801948547363 + ], + [ + "▁lumpy", + -14.396835327148438 + ], + [ + "▁intergenerational", + -14.396902084350586 + ], + [ + "▁playfulness", + -14.396921157836914 + ], + [ + "▁Agar", + -14.396927833557129 + ], + [ + "▁538", + -14.396952629089355 + ], + [ + "▁NCT", + -14.396961212158203 + ], + [ + "▁Caster", + -14.396964073181152 + ], + [ + "▁Furman", + -14.396968841552734 + ], + [ + "▁xenophobia", + -14.396977424621582 + ], + [ + "▁chaser", + -14.39702320098877 + ], + [ + "lusive", + -14.397083282470703 + ], + [ + "▁Merriam", + -14.3970947265625 + ], + [ + "Phase", + -14.397101402282715 + ], + [ + "blogging", + -14.397112846374512 + ], + [ + "▁Meli", + -14.397122383117676 + ], + [ + "▁1793", + -14.397126197814941 + ], + [ + "BAL", + -14.397127151489258 + ], + [ + "submit", + -14.39712905883789 + ], + [ + "▁dic", + -14.39712905883789 + ], + [ + "etch", + -14.397132873535156 + ], + [ + "eaters", + -14.397168159484863 + ], + [ + "▁immovable", + -14.397173881530762 + ], + [ + "▁1650", + -14.397188186645508 + ], + [ + "▁DOB", + -14.397193908691406 + ], + [ + "▁sequencer", + -14.397218704223633 + ], + [ + "Taking", + -14.397234916687012 + ], + [ + "913", + -14.397305488586426 + ], + [ + "▁subtracted", + -14.397430419921875 + ], + [ + "SSE", + -14.397435188293457 + ], + [ + "▁tuk", + -14.397449493408203 + ], + [ + "▁supernova", + -14.397462844848633 + ], + [ + "▁spiel", + -14.397496223449707 + ], + [ + "▁signified", + -14.397499084472656 + ], + [ + "Minute", + -14.39755630493164 + ], + [ + "▁coincidental", + -14.397615432739258 + ], + [ + "Kh", + -14.397621154785156 + ], + [ + "▁stony", + -14.397735595703125 + ], + [ + "onta", + -14.397804260253906 + ], + [ + "▁mandating", + -14.397804260253906 + ], + [ + "▁Shocking", + -14.397806167602539 + ], + [ + "▁kettlebell", + -14.39785385131836 + ], + [ + "Gram", + -14.397918701171875 + ], + [ + "▁Favre", + -14.397951126098633 + ], + [ + "▁EQUIPMENT", + -14.397976875305176 + ], + [ + "你", + -14.397981643676758 + ], + [ + "▁percussionist", + -14.39799690246582 + ], + [ + "▁diversions", + -14.398016929626465 + ], + [ + "▁zillion", + -14.398065567016602 + ], + [ + "garten", + -14.398066520690918 + ], + [ + "ippy", + -14.398099899291992 + ], + [ + "humans", + -14.39811897277832 + ], + [ + "IW", + -14.398149490356445 + ], + [ + "▁lifelike", + -14.398183822631836 + ], + [ + "▁intercontinental", + -14.398205757141113 + ], + [ + "QE", + -14.398216247558594 + ], + [ + "▁COLL", + -14.398244857788086 + ], + [ + "▁Yell", + -14.398252487182617 + ], + [ + "▁Hush", + -14.39825439453125 + ], + [ + "▁ooh", + -14.398263931274414 + ], + [ + "▁Southwark", + -14.398269653320312 + ], + [ + "▁Sulfate", + -14.398375511169434 + ], + [ + "▁Vinnie", + -14.39838981628418 + ], + [ + "eten", + -14.398390769958496 + ], + [ + "▁alleviation", + -14.3984375 + ], + [ + "ế", + -14.398445129394531 + ], + [ + "▁CarPlay", + -14.398455619812012 + ], + [ + "Exam", + -14.398484230041504 + ], + [ + "▁Chaz", + -14.398530006408691 + ], + [ + "▁anthropologists", + -14.398603439331055 + ], + [ + "▁Instrumentation", + -14.398608207702637 + ], + [ + "▁pacifier", + -14.398612976074219 + ], + [ + "▁Duggan", + -14.398669242858887 + ], + [ + "▁cancels", + -14.398679733276367 + ], + [ + "▁MLAs", + -14.398691177368164 + ], + [ + "▁Collage", + -14.398760795593262 + ], + [ + "▁Rhetoric", + -14.398770332336426 + ], + [ + "▁SELL", + -14.398780822753906 + ], + [ + "▁obliterated", + -14.398849487304688 + ], + [ + "▁Proclamation", + -14.398853302001953 + ], + [ + "▁Rodríguez", + -14.398853302001953 + ], + [ + "Nicole", + -14.3988618850708 + ], + [ + "้", + -14.398884773254395 + ], + [ + "▁Nicaraguan", + -14.398914337158203 + ], + [ + "▁Anavar", + -14.39893627166748 + ], + [ + "▁Orson", + -14.39893913269043 + ], + [ + "▁sz", + -14.398958206176758 + ], + [ + "▁sledding", + -14.39897346496582 + ], + [ + "▁Enrichment", + -14.398975372314453 + ], + [ + "▁compaction", + -14.398982048034668 + ], + [ + "kura", + -14.398988723754883 + ], + [ + "▁Thermostat", + -14.399019241333008 + ], + [ + "▁enmity", + -14.399068832397461 + ], + [ + "stitched", + -14.399080276489258 + ], + [ + "▁fallback", + -14.399105072021484 + ], + [ + "▁Kalam", + -14.399130821228027 + ], + [ + "▁Teva", + -14.399150848388672 + ], + [ + "▁QoS", + -14.399161338806152 + ], + [ + "▁colorway", + -14.399177551269531 + ], + [ + "▁Mercantile", + -14.399182319641113 + ], + [ + "▁exerting", + -14.399212837219238 + ], + [ + "enn", + -14.399248123168945 + ], + [ + "▁Samar", + -14.399249076843262 + ], + [ + "▁nappies", + -14.399256706237793 + ], + [ + "924", + -14.399285316467285 + ], + [ + "▁grossing", + -14.399312973022461 + ], + [ + "▁schooled", + -14.399320602416992 + ], + [ + "mole", + -14.399334907531738 + ], + [ + "MENTS", + -14.399389266967773 + ], + [ + "Jordan", + -14.399404525756836 + ], + [ + "▁contaminating", + -14.399439811706543 + ], + [ + "▁tithe", + -14.399484634399414 + ], + [ + "▁combs", + -14.399557113647461 + ], + [ + "▁INTERNET", + -14.399561882019043 + ], + [ + "▁Proficiency", + -14.39956283569336 + ], + [ + "tano", + -14.399563789367676 + ], + [ + "▁Inflammation", + -14.399592399597168 + ], + [ + "▁grumble", + -14.39959716796875 + ], + [ + "▁whiter", + -14.39959716796875 + ], + [ + "PUR", + -14.399666786193848 + ], + [ + "▁Ciara", + -14.399779319763184 + ], + [ + "▁Jaz", + -14.399782180786133 + ], + [ + "▁Downloader", + -14.399785041809082 + ], + [ + "▁452", + -14.399805068969727 + ], + [ + "▁Avail", + -14.39982795715332 + ], + [ + "toxin", + -14.399832725524902 + ], + [ + "▁restated", + -14.39984130859375 + ], + [ + "▁bestellen", + -14.399950981140137 + ], + [ + "▁ruthlessly", + -14.399951934814453 + ], + [ + "938", + -14.399955749511719 + ], + [ + "▁archers", + -14.399955749511719 + ], + [ + "▁encapsulate", + -14.39997673034668 + ], + [ + "▁Redis", + -14.399996757507324 + ], + [ + "▁exhort", + -14.399999618530273 + ], + [ + "▁lacquered", + -14.400026321411133 + ], + [ + "Mn", + -14.400029182434082 + ], + [ + "▁underarm", + -14.400036811828613 + ], + [ + "明", + -14.40003776550293 + ], + [ + "▁darted", + -14.400059700012207 + ], + [ + "▁titans", + -14.400076866149902 + ], + [ + "▁therefor", + -14.400113105773926 + ], + [ + "▁connoisseurs", + -14.400130271911621 + ], + [ + "▁Mantle", + -14.40013313293457 + ], + [ + "▁TRIP", + -14.400205612182617 + ], + [ + "▁Ree", + -14.400253295898438 + ], + [ + "▁Kashi", + -14.400272369384766 + ], + [ + "▁Wasserman", + -14.400277137756348 + ], + [ + "owning", + -14.400315284729004 + ], + [ + "mpg", + -14.400321960449219 + ], + [ + "▁Tomo", + -14.400327682495117 + ], + [ + "▁Proving", + -14.400367736816406 + ], + [ + "jong", + -14.400429725646973 + ], + [ + "▁omnibus", + -14.400429725646973 + ], + [ + "▁Cayenne", + -14.400479316711426 + ], + [ + "▁Moriarty", + -14.400486946105957 + ], + [ + "▁indescribable", + -14.400492668151855 + ], + [ + "▁Brandenburg", + -14.400506973266602 + ], + [ + "▁loner", + -14.400511741638184 + ], + [ + "ай", + -14.400537490844727 + ], + [ + "신", + -14.400543212890625 + ], + [ + "ウ", + -14.400559425354004 + ], + [ + "iš", + -14.400569915771484 + ], + [ + "▁microstructure", + -14.400575637817383 + ], + [ + "atten", + -14.400606155395508 + ], + [ + "▁Taos", + -14.400700569152832 + ], + [ + "▁Kingfisher", + -14.400705337524414 + ], + [ + "▁subsystems", + -14.400734901428223 + ], + [ + "▁Robe", + -14.400778770446777 + ], + [ + "Wilson", + -14.400789260864258 + ], + [ + "dental", + -14.400793075561523 + ], + [ + "SPI", + -14.40079402923584 + ], + [ + "▁Ack", + -14.400794982910156 + ], + [ + "▁Munn", + -14.400864601135254 + ], + [ + "▁Kombat", + -14.400896072387695 + ], + [ + "▁Kimi", + -14.400924682617188 + ], + [ + "ookie", + -14.40093994140625 + ], + [ + "nden", + -14.400954246520996 + ], + [ + "▁Earnest", + -14.400964736938477 + ], + [ + "▁Hotmail", + -14.401071548461914 + ], + [ + "CCP", + -14.401119232177734 + ], + [ + "▁464", + -14.401185035705566 + ], + [ + "Vista", + -14.401206016540527 + ], + [ + "▁Muriel", + -14.401215553283691 + ], + [ + "TLS", + -14.401272773742676 + ], + [ + "▁AFM", + -14.401273727416992 + ], + [ + "MID", + -14.401275634765625 + ], + [ + "▁Guerra", + -14.401350975036621 + ], + [ + "▁beehive", + -14.401368141174316 + ], + [ + "crunch", + -14.401379585266113 + ], + [ + "▁mucosal", + -14.401382446289062 + ], + [ + "▁copycat", + -14.401388168334961 + ], + [ + "▁Preparedness", + -14.401419639587402 + ], + [ + "▁Karam", + -14.401453971862793 + ], + [ + "▁HAIR", + -14.401481628417969 + ], + [ + "▁Hillside", + -14.401503562927246 + ], + [ + "soo", + -14.40151596069336 + ], + [ + "▁earl", + -14.401535034179688 + ], + [ + "▁steve", + -14.401540756225586 + ], + [ + "▁impersonation", + -14.401598930358887 + ], + [ + "▁espouse", + -14.401616096496582 + ], + [ + "▁TARDIS", + -14.401622772216797 + ], + [ + "propyl", + -14.40166187286377 + ], + [ + "Rent", + -14.401700019836426 + ], + [ + "▁refurbish", + -14.401712417602539 + ], + [ + "compact", + -14.401718139648438 + ], + [ + "▁inconspicuous", + -14.401718139648438 + ], + [ + "▁freezers", + -14.401790618896484 + ], + [ + "▁Hearn", + -14.40180492401123 + ], + [ + "▁се", + -14.401841163635254 + ], + [ + "▁Acme", + -14.401846885681152 + ], + [ + "loff", + -14.401859283447266 + ], + [ + "▁Testimonials", + -14.40186882019043 + ], + [ + "▁RAN", + -14.401869773864746 + ], + [ + "▁Dickey", + -14.401871681213379 + ], + [ + "▁vr", + -14.401874542236328 + ], + [ + "xp", + -14.401925086975098 + ], + [ + "1917", + -14.401928901672363 + ], + [ + "▁Pli", + -14.40192985534668 + ], + [ + "▁Coldwell", + -14.40196704864502 + ], + [ + "881", + -14.401978492736816 + ], + [ + "ον", + -14.402010917663574 + ], + [ + "▁conjugated", + -14.402052879333496 + ], + [ + "jama", + -14.402067184448242 + ], + [ + "▁Zionists", + -14.402079582214355 + ], + [ + "▁Carre", + -14.402081489562988 + ], + [ + "▁Sarkar", + -14.402095794677734 + ], + [ + "▁Lenox", + -14.402114868164062 + ], + [ + "▁Moors", + -14.402154922485352 + ], + [ + "▁bootloader", + -14.402161598205566 + ], + [ + "▁delved", + -14.402179718017578 + ], + [ + "▁ATK", + -14.402182579040527 + ], + [ + "▁bicyclists", + -14.402192115783691 + ], + [ + "RPG", + -14.402199745178223 + ], + [ + "▁UPDATED", + -14.402207374572754 + ], + [ + "▁Phentermine", + -14.4022216796875 + ], + [ + "▁distill", + -14.402244567871094 + ], + [ + "drom", + -14.40224552154541 + ], + [ + "▁MONTH", + -14.402246475219727 + ], + [ + "cytes", + -14.402250289916992 + ], + [ + "Trend", + -14.402336120605469 + ], + [ + "▁beveled", + -14.402364730834961 + ], + [ + "▁Rifles", + -14.402379989624023 + ], + [ + "▁STONE", + -14.40238094329834 + ], + [ + "▁prophesy", + -14.402390480041504 + ], + [ + "ELS", + -14.402397155761719 + ], + [ + "▁Luciano", + -14.402397155761719 + ], + [ + "▁Pandey", + -14.402420043945312 + ], + [ + "▁397", + -14.402493476867676 + ], + [ + "anje", + -14.402600288391113 + ], + [ + "icles", + -14.402604103088379 + ], + [ + "▁immunoglobulin", + -14.40261173248291 + ], + [ + "▁archivist", + -14.402623176574707 + ], + [ + "ANN", + -14.402626991271973 + ], + [ + "▁touts", + -14.40263557434082 + ], + [ + "▁Oto", + -14.402641296386719 + ], + [ + "▁Harmonic", + -14.4026517868042 + ], + [ + "orse", + -14.402653694152832 + ], + [ + "ILLA", + -14.402681350708008 + ], + [ + "ild", + -14.402701377868652 + ], + [ + "charger", + -14.402704238891602 + ], + [ + "wic", + -14.40270709991455 + ], + [ + "▁Vallejo", + -14.402750968933105 + ], + [ + "▁sonnet", + -14.402767181396484 + ], + [ + "mium", + -14.402820587158203 + ], + [ + "▁Fernandes", + -14.402838706970215 + ], + [ + "▁droves", + -14.402861595153809 + ], + [ + "▁autophagy", + -14.402874946594238 + ], + [ + "administered", + -14.402880668640137 + ], + [ + "▁RTC", + -14.402891159057617 + ], + [ + "Kam", + -14.402901649475098 + ], + [ + "feedback", + -14.402912139892578 + ], + [ + "▁thinned", + -14.402928352355957 + ], + [ + "▁Foodie", + -14.402935981750488 + ], + [ + "ipo", + -14.402937889099121 + ], + [ + "▁serialized", + -14.402963638305664 + ], + [ + "▁Tucked", + -14.402971267700195 + ], + [ + "▁idealized", + -14.402981758117676 + ], + [ + "▁Esau", + -14.403002738952637 + ], + [ + "▁twitching", + -14.40305233001709 + ], + [ + "▁Flavors", + -14.403056144714355 + ], + [ + "heaven", + -14.403076171875 + ], + [ + "lipid", + -14.40308666229248 + ], + [ + "▁slat", + -14.403105735778809 + ], + [ + "▁statins", + -14.403115272521973 + ], + [ + "ielle", + -14.403200149536133 + ], + [ + "alka", + -14.403230667114258 + ], + [ + "▁leukocyte", + -14.403231620788574 + ], + [ + "▁Flinders", + -14.40329360961914 + ], + [ + "▁bigoted", + -14.403307914733887 + ], + [ + "CPS", + -14.403308868408203 + ], + [ + "▁Nr", + -14.403311729431152 + ], + [ + "strum", + -14.403327941894531 + ], + [ + "▁Nunn", + -14.403359413146973 + ], + [ + "▁biologic", + -14.403369903564453 + ], + [ + "▁successively", + -14.403396606445312 + ], + [ + "▁Tien", + -14.403448104858398 + ], + [ + "mora", + -14.403450012207031 + ], + [ + "ectin", + -14.403483390808105 + ], + [ + "▁postsecondary", + -14.403514862060547 + ], + [ + "▁pinion", + -14.403546333312988 + ], + [ + "KV", + -14.403558731079102 + ], + [ + "▁Adds", + -14.403568267822266 + ], + [ + "holme", + -14.40358829498291 + ], + [ + "▁unselfish", + -14.403593063354492 + ], + [ + "▁balmy", + -14.403609275817871 + ], + [ + "zada", + -14.403650283813477 + ], + [ + "▁thicket", + -14.403676986694336 + ], + [ + "▁juxtaposed", + -14.403706550598145 + ], + [ + "▁Competing", + -14.403718948364258 + ], + [ + "▁Advancing", + -14.403729438781738 + ], + [ + "▁seamstress", + -14.403731346130371 + ], + [ + "▁Duvet", + -14.403757095336914 + ], + [ + "분", + -14.403766632080078 + ], + [ + "chest", + -14.403783798217773 + ], + [ + "▁Huntingdon", + -14.403800010681152 + ], + [ + "▁repurpose", + -14.403807640075684 + ], + [ + "▁SHO", + -14.403815269470215 + ], + [ + "▁Kna", + -14.403980255126953 + ], + [ + "Mean", + -14.404017448425293 + ], + [ + "▁flaxseed", + -14.404033660888672 + ], + [ + "▁Mahler", + -14.404059410095215 + ], + [ + "▁Foxes", + -14.404068946838379 + ], + [ + "▁scoot", + -14.404141426086426 + ], + [ + "érie", + -14.404217720031738 + ], + [ + "▁Epoxy", + -14.4042329788208 + ], + [ + "vina", + -14.404237747192383 + ], + [ + "MDB", + -14.404293060302734 + ], + [ + "▁Juliana", + -14.404309272766113 + ], + [ + "▁Precise", + -14.404324531555176 + ], + [ + "▁Frag", + -14.404350280761719 + ], + [ + "▁appraise", + -14.404378890991211 + ], + [ + "▁alfresco", + -14.404399871826172 + ], + [ + "auth", + -14.404414176940918 + ], + [ + "▁gents", + -14.404425621032715 + ], + [ + "wadi", + -14.404430389404297 + ], + [ + "▁Plummer", + -14.404436111450195 + ], + [ + "gravity", + -14.404443740844727 + ], + [ + "▁BPD", + -14.404459953308105 + ], + [ + "1086", + -14.404505729675293 + ], + [ + "▁flatly", + -14.40450668334961 + ], + [ + "▁alia", + -14.404522895812988 + ], + [ + "QF", + -14.404526710510254 + ], + [ + "▁Twelfth", + -14.404542922973633 + ], + [ + "▁Cheri", + -14.404544830322266 + ], + [ + "▁180°", + -14.404573440551758 + ], + [ + "ّ", + -14.404577255249023 + ], + [ + "▁acetaminophen", + -14.404603958129883 + ], + [ + "tales", + -14.404675483703613 + ], + [ + "mbu", + -14.404685974121094 + ], + [ + "▁Markers", + -14.404705047607422 + ], + [ + "shri", + -14.404720306396484 + ], + [ + "▁Houthi", + -14.404730796813965 + ], + [ + "lump", + -14.404753684997559 + ], + [ + "▁Surveyor", + -14.404790878295898 + ], + [ + "▁Horst", + -14.404792785644531 + ], + [ + "▁LHC", + -14.404792785644531 + ], + [ + "▁Lymph", + -14.404803276062012 + ], + [ + "passion", + -14.404817581176758 + ], + [ + "responsible", + -14.404853820800781 + ], + [ + "▁Remover", + -14.40487003326416 + ], + [ + "▁brokered", + -14.404895782470703 + ], + [ + "ERY", + -14.404914855957031 + ], + [ + "Zip", + -14.404927253723145 + ], + [ + "Counter", + -14.404943466186523 + ], + [ + "tagged", + -14.40495491027832 + ], + [ + "▁petrified", + -14.404958724975586 + ], + [ + "TYPE", + -14.404966354370117 + ], + [ + "▁Valentina", + -14.404970169067383 + ], + [ + "▁Aeronautics", + -14.405056953430176 + ], + [ + "▁dame", + -14.405070304870605 + ], + [ + "▁flavonoids", + -14.405095100402832 + ], + [ + "numbers", + -14.405106544494629 + ], + [ + "▁consumable", + -14.405169486999512 + ], + [ + "▁NRI", + -14.405170440673828 + ], + [ + "STON", + -14.405191421508789 + ], + [ + "cyber", + -14.405244827270508 + ], + [ + "Ops", + -14.405255317687988 + ], + [ + "▁BAE", + -14.405255317687988 + ], + [ + "▁Quart", + -14.405303001403809 + ], + [ + "▁Paediatric", + -14.405322074890137 + ], + [ + "cko", + -14.405348777770996 + ], + [ + "2023", + -14.405352592468262 + ], + [ + "highway", + -14.405377388000488 + ], + [ + "▁Quakers", + -14.405406951904297 + ], + [ + "▁meander", + -14.40548038482666 + ], + [ + "quotes", + -14.405497550964355 + ], + [ + "dumb", + -14.405510902404785 + ], + [ + "worship", + -14.40554141998291 + ], + [ + "▁enticed", + -14.405557632446289 + ], + [ + "▁umpires", + -14.405590057373047 + ], + [ + "▁Ziegler", + -14.405718803405762 + ], + [ + "AAS", + -14.40574836730957 + ], + [ + "arios", + -14.40575122833252 + ], + [ + "▁Intimate", + -14.405780792236328 + ], + [ + "▁Kura", + -14.405789375305176 + ], + [ + "amiento", + -14.405795097351074 + ], + [ + "▁Helmut", + -14.405804634094238 + ], + [ + "▁nada", + -14.405824661254883 + ], + [ + "nod", + -14.405840873718262 + ], + [ + "▁dimer", + -14.405881881713867 + ], + [ + "▁relevancy", + -14.405881881713867 + ], + [ + "▁lampshade", + -14.405911445617676 + ], + [ + "▁Cheaper", + -14.40591812133789 + ], + [ + "▁quantifiable", + -14.405919075012207 + ], + [ + "▁Kept", + -14.40594482421875 + ], + [ + "uille", + -14.40601634979248 + ], + [ + "▁Palliative", + -14.406044960021973 + ], + [ + "FTA", + -14.406054496765137 + ], + [ + "▁bong", + -14.40607738494873 + ], + [ + "▁Convent", + -14.40610408782959 + ], + [ + "▁gawk", + -14.406160354614258 + ], + [ + "▁INTEREST", + -14.406184196472168 + ], + [ + "cket", + -14.406195640563965 + ], + [ + "▁Mongol", + -14.40623664855957 + ], + [ + "▁Alhambra", + -14.406256675720215 + ], + [ + "▁fMRI", + -14.4063138961792 + ], + [ + "zumi", + -14.406332969665527 + ], + [ + "▁swallows", + -14.406365394592285 + ], + [ + "▁Valiant", + -14.40639877319336 + ], + [ + "▁disengaged", + -14.40644359588623 + ], + [ + "▁Sublime", + -14.40645980834961 + ], + [ + "negotiable", + -14.40646743774414 + ], + [ + "▁Adkins", + -14.406468391418457 + ], + [ + "▁deb", + -14.406474113464355 + ], + [ + "▁Longhorns", + -14.406499862670898 + ], + [ + "▁cere", + -14.406500816345215 + ], + [ + "▁Manish", + -14.406506538391113 + ], + [ + "quire", + -14.406538009643555 + ], + [ + "▁innocently", + -14.406567573547363 + ], + [ + "▁Beto", + -14.406570434570312 + ], + [ + "069", + -14.406597137451172 + ], + [ + "▁chairwoman", + -14.40661907196045 + ], + [ + "Greg", + -14.406624794006348 + ], + [ + "▁Reh", + -14.406633377075195 + ], + [ + "noid", + -14.406641006469727 + ], + [ + "vä", + -14.40664291381836 + ], + [ + "nacle", + -14.406643867492676 + ], + [ + "▁tangerine", + -14.40670108795166 + ], + [ + "▁Exceptions", + -14.406710624694824 + ], + [ + "▁infuriated", + -14.406721115112305 + ], + [ + "▁Teenagers", + -14.406730651855469 + ], + [ + "igkeit", + -14.406736373901367 + ], + [ + "▁Arca", + -14.40673828125 + ], + [ + "▁param", + -14.406743049621582 + ], + [ + "▁Abbie", + -14.40677261352539 + ], + [ + "▁Mitsu", + -14.406794548034668 + ], + [ + "▁Blending", + -14.406818389892578 + ], + [ + "▁chal", + -14.406848907470703 + ], + [ + "▁Paco", + -14.40685749053955 + ], + [ + "▁Strategist", + -14.406872749328613 + ], + [ + "cogni", + -14.406883239746094 + ], + [ + "▁493", + -14.406966209411621 + ], + [ + "issen", + -14.407032012939453 + ], + [ + "▁Mada", + -14.407033920288086 + ], + [ + "gbo", + -14.407072067260742 + ], + [ + "▁GBX", + -14.407096862792969 + ], + [ + "▁cockroach", + -14.407110214233398 + ], + [ + "▁CONNECT", + -14.407124519348145 + ], + [ + "▁sb", + -14.407151222229004 + ], + [ + "compare", + -14.407174110412598 + ], + [ + "▁euphemism", + -14.407185554504395 + ], + [ + "▁IndyCar", + -14.40718936920166 + ], + [ + "▁Warbler", + -14.407194137573242 + ], + [ + "▁Houdini", + -14.40721321105957 + ], + [ + "▁boxy", + -14.40721321105957 + ], + [ + "▁hippocampal", + -14.40722370147705 + ], + [ + "Generation", + -14.407235145568848 + ], + [ + "▁pawns", + -14.407248497009277 + ], + [ + "▁TUR", + -14.407282829284668 + ], + [ + "▁Maurizio", + -14.4072904586792 + ], + [ + "▁Klux", + -14.407322883605957 + ], + [ + "tack", + -14.407333374023438 + ], + [ + "▁acquaint", + -14.4073486328125 + ], + [ + "▁hitched", + -14.407377243041992 + ], + [ + "▁LIM", + -14.407395362854004 + ], + [ + "▁talc", + -14.407416343688965 + ], + [ + "▁busses", + -14.407537460327148 + ], + [ + "▁customisable", + -14.407543182373047 + ], + [ + "▁sob", + -14.407623291015625 + ], + [ + "951", + -14.40770435333252 + ], + [ + "▁hypertrophy", + -14.407723426818848 + ], + [ + "entia", + -14.407771110534668 + ], + [ + "questions", + -14.40778636932373 + ], + [ + "qing", + -14.407830238342285 + ], + [ + "itsa", + -14.407838821411133 + ], + [ + "▁internalized", + -14.407840728759766 + ], + [ + "▁Sphinx", + -14.407855987548828 + ], + [ + "▁Wildwood", + -14.407891273498535 + ], + [ + "seek", + -14.407928466796875 + ], + [ + "alike", + -14.40793514251709 + ], + [ + "▁ValuEngine", + -14.407944679260254 + ], + [ + "▁Hustle", + -14.40794849395752 + ], + [ + "▁1823", + -14.407976150512695 + ], + [ + "▁thrombo", + -14.407987594604492 + ], + [ + "eque", + -14.407999992370605 + ], + [ + "▁4°", + -14.408012390136719 + ], + [ + "▁candlestick", + -14.408029556274414 + ], + [ + "failed", + -14.408041954040527 + ], + [ + "▁Counselors", + -14.408121109008789 + ], + [ + "confirmed", + -14.40812873840332 + ], + [ + "▁Rohr", + -14.408154487609863 + ], + [ + "▁Hola", + -14.408232688903809 + ], + [ + "▁vai", + -14.40825366973877 + ], + [ + "▁Bonham", + -14.408288955688477 + ], + [ + "▁REALTOR", + -14.408309936523438 + ], + [ + "bilis", + -14.408332824707031 + ], + [ + "▁Databases", + -14.408337593078613 + ], + [ + "SHE", + -14.40834903717041 + ], + [ + "▁Dann", + -14.40845012664795 + ], + [ + "▁Stim", + -14.408474922180176 + ], + [ + "▁Logging", + -14.408480644226074 + ], + [ + "▁beheaded", + -14.40853214263916 + ], + [ + "▁Loughborough", + -14.408539772033691 + ], + [ + "▁Preparatory", + -14.40854263305664 + ], + [ + "▁Dentists", + -14.408570289611816 + ], + [ + "▁joists", + -14.408570289611816 + ], + [ + "▁lvl", + -14.408611297607422 + ], + [ + "▁Misha", + -14.408626556396484 + ], + [ + "▁Madsen", + -14.40865707397461 + ], + [ + "archy", + -14.408658027648926 + ], + [ + "▁Scion", + -14.408658981323242 + ], + [ + "▁Malkin", + -14.408698081970215 + ], + [ + "RFC", + -14.408700942993164 + ], + [ + "▁ouster", + -14.408748626708984 + ], + [ + "▁Sophisticated", + -14.40877914428711 + ], + [ + "▁burg", + -14.408782005310059 + ], + [ + "▁Marjory", + -14.408823013305664 + ], + [ + "▁TIA", + -14.408839225769043 + ], + [ + "▁realign", + -14.408842086791992 + ], + [ + "forgotten", + -14.408955574035645 + ], + [ + "▁Toolbar", + -14.408956527709961 + ], + [ + "▁damsel", + -14.408982276916504 + ], + [ + "▁Pretend", + -14.408988952636719 + ], + [ + "▁haplotype", + -14.408992767333984 + ], + [ + "964", + -14.409039497375488 + ], + [ + "tase", + -14.409079551696777 + ], + [ + "▁SAFETY", + -14.40916919708252 + ], + [ + "▁fledged", + -14.409174919128418 + ], + [ + "▁Lupin", + -14.409188270568848 + ], + [ + "▁Larsson", + -14.409195899963379 + ], + [ + "▁carmaker", + -14.409220695495605 + ], + [ + "suits", + -14.409225463867188 + ], + [ + "orio", + -14.409242630004883 + ], + [ + "Jacob", + -14.409296989440918 + ], + [ + "▁scorpion", + -14.409297943115234 + ], + [ + "▁497", + -14.40931510925293 + ], + [ + "▁Ozil", + -14.409327507019043 + ], + [ + "つ", + -14.40933609008789 + ], + [ + "huang", + -14.409402847290039 + ], + [ + "▁HubSpot", + -14.409418106079102 + ], + [ + "Culture", + -14.409435272216797 + ], + [ + "▁Sind", + -14.409462928771973 + ], + [ + "▁ingress", + -14.409526824951172 + ], + [ + "956", + -14.40953540802002 + ], + [ + "▁squadrons", + -14.409578323364258 + ], + [ + "▁scooping", + -14.409599304199219 + ], + [ + "▁Weimar", + -14.40963077545166 + ], + [ + "▁strategize", + -14.409635543823242 + ], + [ + "cee", + -14.409640312194824 + ], + [ + "▁hula", + -14.409664154052734 + ], + [ + "▁incidences", + -14.409719467163086 + ], + [ + "HCA", + -14.409807205200195 + ], + [ + "▁Pharmaco", + -14.40982437133789 + ], + [ + "accept", + -14.409828186035156 + ], + [ + "▁McAllister", + -14.409873008728027 + ], + [ + "▁citywide", + -14.409897804260254 + ], + [ + "▁tenet", + -14.40990161895752 + ], + [ + "SRC", + -14.40994644165039 + ], + [ + "▁Spoken", + -14.409948348999023 + ], + [ + "▁Cater", + -14.409963607788086 + ], + [ + "adian", + -14.410009384155273 + ], + [ + "▁upland", + -14.41004467010498 + ], + [ + "▁timbre", + -14.41007137298584 + ], + [ + "▁capricious", + -14.410072326660156 + ], + [ + "▁suspenseful", + -14.410083770751953 + ], + [ + "▁tidying", + -14.410219192504883 + ], + [ + "▁Stryker", + -14.410318374633789 + ], + [ + "▁acrobatic", + -14.410331726074219 + ], + [ + "▁irrigated", + -14.410357475280762 + ], + [ + "▁Dishes", + -14.410401344299316 + ], + [ + "zner", + -14.410423278808594 + ], + [ + "dang", + -14.410444259643555 + ], + [ + "▁Maia", + -14.410466194152832 + ], + [ + "nault", + -14.41049861907959 + ], + [ + "▁Paired", + -14.410518646240234 + ], + [ + "▁retails", + -14.410577774047852 + ], + [ + "Challenge", + -14.410602569580078 + ], + [ + "▁mirage", + -14.41065788269043 + ], + [ + "efficacy", + -14.410669326782227 + ], + [ + "EMENT", + -14.410697937011719 + ], + [ + "Found", + -14.410727500915527 + ], + [ + "▁Isolated", + -14.41074275970459 + ], + [ + "▁Announcing", + -14.410788536071777 + ], + [ + "▁uninhabited", + -14.41080379486084 + ], + [ + "▁Movements", + -14.410805702209473 + ], + [ + "Carlton", + -14.410835266113281 + ], + [ + "▁AKC", + -14.410857200622559 + ], + [ + "▁hotbed", + -14.410886764526367 + ], + [ + "▁POTUS", + -14.41091251373291 + ], + [ + "▁Sé", + -14.41096305847168 + ], + [ + "USP", + -14.41098403930664 + ], + [ + "▁Coutinho", + -14.410996437072754 + ], + [ + "▁chilies", + -14.41102409362793 + ], + [ + "▁Tonic", + -14.411038398742676 + ], + [ + "▁Wilt", + -14.4110746383667 + ], + [ + "▁Coul", + -14.411151885986328 + ], + [ + "▁Suffer", + -14.411152839660645 + ], + [ + "▁DISC", + -14.41115951538086 + ], + [ + "SSS", + -14.41117000579834 + ], + [ + "▁INSURANCE", + -14.411173820495605 + ], + [ + "▁sordid", + -14.411182403564453 + ], + [ + "▁mused", + -14.411203384399414 + ], + [ + "▁reconnecting", + -14.411203384399414 + ], + [ + "▁Crafty", + -14.411218643188477 + ], + [ + "▁Manifest", + -14.411273002624512 + ], + [ + "▁Teil", + -14.411282539367676 + ], + [ + "▁Wilfred", + -14.4113187789917 + ], + [ + "▁Pharmacol", + -14.411347389221191 + ], + [ + "▁bleeds", + -14.411382675170898 + ], + [ + "▁Greenspan", + -14.411388397216797 + ], + [ + "▁Leith", + -14.41140365600586 + ], + [ + "▁judo", + -14.411404609680176 + ], + [ + "▁Perma", + -14.411418914794922 + ], + [ + "▁Overlay", + -14.411436080932617 + ], + [ + "dung", + -14.41143798828125 + ], + [ + "interpret", + -14.411459922790527 + ], + [ + "▁Fontaine", + -14.411467552185059 + ], + [ + "clockwise", + -14.411478996276855 + ], + [ + "▁BRING", + -14.411495208740234 + ], + [ + "▁domicile", + -14.411516189575195 + ], + [ + "▁entitle", + -14.411518096923828 + ], + [ + "▁timetables", + -14.411519050598145 + ], + [ + "▁pw", + -14.411538124084473 + ], + [ + "▁Gurley", + -14.411569595336914 + ], + [ + "▁Woodside", + -14.411595344543457 + ], + [ + "▁widower", + -14.411612510681152 + ], + [ + "▁Wunder", + -14.41163158416748 + ], + [ + "▁Tungsten", + -14.411652565002441 + ], + [ + "▁LPGA", + -14.411664009094238 + ], + [ + "▁pusher", + -14.4116792678833 + ], + [ + "▁SONG", + -14.411707878112793 + ], + [ + "▁å", + -14.411747932434082 + ], + [ + "▁paintbrush", + -14.411755561828613 + ], + [ + "rley", + -14.411766052246094 + ], + [ + "evsky", + -14.411771774291992 + ], + [ + "▁chirping", + -14.411819458007812 + ], + [ + "▁SNOW", + -14.41183853149414 + ], + [ + "▁Epilepsy", + -14.411876678466797 + ], + [ + "maria", + -14.411894798278809 + ], + [ + "▁CDMA", + -14.411901473999023 + ], + [ + "▁Selby", + -14.411927223205566 + ], + [ + "▁kay", + -14.41193675994873 + ], + [ + "▁instilling", + -14.411962509155273 + ], + [ + "FILE", + -14.411964416503906 + ], + [ + "▁Cleanser", + -14.41199016571045 + ], + [ + "▁Cigarette", + -14.412003517150879 + ], + [ + "▁Healey", + -14.412022590637207 + ], + [ + "ductive", + -14.41203498840332 + ], + [ + "dge", + -14.412055015563965 + ], + [ + "▁PREMIUM", + -14.4121732711792 + ], + [ + "▁Hadi", + -14.41219425201416 + ], + [ + "▁fireman", + -14.412199974060059 + ], + [ + "▁overdone", + -14.412280082702637 + ], + [ + "▁Anson", + -14.412288665771484 + ], + [ + "▁Himalaya", + -14.412402153015137 + ], + [ + "▁reshuffle", + -14.412412643432617 + ], + [ + "▁Grau", + -14.412434577941895 + ], + [ + "▁confessing", + -14.41246509552002 + ], + [ + "mast", + -14.412528991699219 + ], + [ + "▁Funded", + -14.412531852722168 + ], + [ + "▁Juarez", + -14.41257381439209 + ], + [ + "filed", + -14.412586212158203 + ], + [ + "▁Varun", + -14.412586212158203 + ], + [ + "forced", + -14.41259765625 + ], + [ + "▁eyepiece", + -14.412598609924316 + ], + [ + "▁636", + -14.41262149810791 + ], + [ + "▁Scalp", + -14.41262435913086 + ], + [ + "▁shrank", + -14.412635803222656 + ], + [ + "▁firstborn", + -14.412656784057617 + ], + [ + "▁Antonia", + -14.412686347961426 + ], + [ + "▁Ugg", + -14.412741661071777 + ], + [ + "precious", + -14.412763595581055 + ], + [ + "▁Stampede", + -14.41278076171875 + ], + [ + "▁merciless", + -14.412860870361328 + ], + [ + "▁Tattoos", + -14.412885665893555 + ], + [ + "MPS", + -14.41297435760498 + ], + [ + "▁LICENSE", + -14.41301155090332 + ], + [ + "▁Sánchez", + -14.413018226623535 + ], + [ + "Published", + -14.413070678710938 + ], + [ + "Quote", + -14.41312026977539 + ], + [ + "Ul", + -14.413125991821289 + ], + [ + "▁BREAK", + -14.413153648376465 + ], + [ + "064", + -14.41318130493164 + ], + [ + "Devil", + -14.41324520111084 + ], + [ + "▁Lordship", + -14.413247108459473 + ], + [ + "▁10600", + -14.413276672363281 + ], + [ + "Ω", + -14.413283348083496 + ], + [ + "▁Swaziland", + -14.413299560546875 + ], + [ + "▁deliciousness", + -14.41336727142334 + ], + [ + "▁vertebrate", + -14.41336727142334 + ], + [ + "▁plexus", + -14.413419723510742 + ], + [ + "▁Jaro", + -14.41346263885498 + ], + [ + "▁unholy", + -14.413469314575195 + ], + [ + "▁767", + -14.413512229919434 + ], + [ + "publication", + -14.41352653503418 + ], + [ + "encing", + -14.413535118103027 + ], + [ + "▁resets", + -14.413575172424316 + ], + [ + "▁Etienne", + -14.413578033447266 + ], + [ + "▁Beyer", + -14.413601875305176 + ], + [ + "pressive", + -14.413620948791504 + ], + [ + "nyl", + -14.413628578186035 + ], + [ + "▁Facilitate", + -14.413670539855957 + ], + [ + "▁sigma", + -14.41374397277832 + ], + [ + "▁unchanging", + -14.413750648498535 + ], + [ + "ник", + -14.413768768310547 + ], + [ + "laser", + -14.413774490356445 + ], + [ + "▁Downloading", + -14.413774490356445 + ], + [ + "phthal", + -14.413785934448242 + ], + [ + "▁928", + -14.41382884979248 + ], + [ + "wali", + -14.413830757141113 + ], + [ + "▁Tuff", + -14.413857460021973 + ], + [ + "Mega", + -14.413887977600098 + ], + [ + "▁redox", + -14.41391372680664 + ], + [ + "▁Soyuz", + -14.413924217224121 + ], + [ + "▁Emo", + -14.413936614990234 + ], + [ + "Swiss", + -14.413959503173828 + ], + [ + "▁Props", + -14.413969039916992 + ], + [ + "▁sheeting", + -14.414044380187988 + ], + [ + "▁supercharged", + -14.414055824279785 + ], + [ + "▁Disposable", + -14.414057731628418 + ], + [ + "persons", + -14.414074897766113 + ], + [ + "▁alcoholics", + -14.414093017578125 + ], + [ + "▁stomachs", + -14.414094924926758 + ], + [ + "▁Listener", + -14.4141206741333 + ], + [ + "▁urethane", + -14.414266586303711 + ], + [ + "ṣ", + -14.414274215698242 + ], + [ + "nita", + -14.41428279876709 + ], + [ + "▁amplifying", + -14.414341926574707 + ], + [ + "▁Dijon", + -14.414349555969238 + ], + [ + "▁overthrown", + -14.414351463317871 + ], + [ + "▁Alchemist", + -14.41435718536377 + ], + [ + "▁betraying", + -14.414376258850098 + ], + [ + "▁1811", + -14.414491653442383 + ], + [ + "ड", + -14.414546966552734 + ], + [ + "ements", + -14.414555549621582 + ], + [ + "▁Publix", + -14.414579391479492 + ], + [ + "Awesome", + -14.414592742919922 + ], + [ + "▁Hobson", + -14.41459846496582 + ], + [ + "urgi", + -14.414639472961426 + ], + [ + "▁Huxley", + -14.414665222167969 + ], + [ + "▁MDR", + -14.4146728515625 + ], + [ + "turbo", + -14.414715766906738 + ], + [ + "▁Aven", + -14.4147367477417 + ], + [ + "▁Medications", + -14.414745330810547 + ], + [ + "▁involuntarily", + -14.414772033691406 + ], + [ + "▁Remarkably", + -14.414780616760254 + ], + [ + "▁Beng", + -14.414787292480469 + ], + [ + "▁mangled", + -14.414819717407227 + ], + [ + "▁Alana", + -14.414857864379883 + ], + [ + "▁Oda", + -14.414892196655273 + ], + [ + "▁Buddies", + -14.414915084838867 + ], + [ + "▁Tramadol", + -14.414926528930664 + ], + [ + "▁SVN", + -14.414958953857422 + ], + [ + "▁Pomp", + -14.414970397949219 + ], + [ + "▁cursive", + -14.4149751663208 + ], + [ + "可以", + -14.414986610412598 + ], + [ + "▁Urs", + -14.414990425109863 + ], + [ + "rho", + -14.415054321289062 + ], + [ + "▁francs", + -14.41513442993164 + ], + [ + "▁Deaths", + -14.415143966674805 + ], + [ + "sep", + -14.415153503417969 + ], + [ + "▁Ambi", + -14.415153503417969 + ], + [ + "Memory", + -14.415167808532715 + ], + [ + "▁tussle", + -14.415203094482422 + ], + [ + "▁liven", + -14.415206909179688 + ], + [ + "UPS", + -14.415228843688965 + ], + [ + "▁Aster", + -14.415233612060547 + ], + [ + "▁adaption", + -14.41529655456543 + ], + [ + "▁Bixby", + -14.415311813354492 + ], + [ + "▁Indica", + -14.415319442749023 + ], + [ + "nym", + -14.415326118469238 + ], + [ + "▁Judgement", + -14.415329933166504 + ], + [ + "▁WMD", + -14.41537094116211 + ], + [ + "▁stovetop", + -14.415377616882324 + ], + [ + "▁Centenary", + -14.415424346923828 + ], + [ + "▁Osbourne", + -14.41544246673584 + ], + [ + "▁BRICS", + -14.415471076965332 + ], + [ + "bili", + -14.415494918823242 + ], + [ + "▁vindicated", + -14.415532112121582 + ], + [ + "ERROR", + -14.41555118560791 + ], + [ + "984", + -14.415595054626465 + ], + [ + "▁Thoroughbred", + -14.415602684020996 + ], + [ + "▁dp", + -14.415616035461426 + ], + [ + "▁Pocono", + -14.415634155273438 + ], + [ + "▁disoriented", + -14.415637016296387 + ], + [ + "▁tun", + -14.41563892364502 + ], + [ + "ikin", + -14.415647506713867 + ], + [ + "▁PIE", + -14.415650367736816 + ], + [ + "së", + -14.41565990447998 + ], + [ + "▁Bleeding", + -14.415688514709473 + ], + [ + "▁Guiding", + -14.415714263916016 + ], + [ + "▁GROW", + -14.415721893310547 + ], + [ + "▁Uppsala", + -14.415735244750977 + ], + [ + "▁beachside", + -14.41576862335205 + ], + [ + "▁endometrial", + -14.415780067443848 + ], + [ + "▁waitlist", + -14.415796279907227 + ], + [ + "PCI", + -14.4158353805542 + ], + [ + "TEK", + -14.415874481201172 + ], + [ + "▁battlefields", + -14.4158935546875 + ], + [ + "▁WNBA", + -14.415894508361816 + ], + [ + "usan", + -14.415901184082031 + ], + [ + "▁spellings", + -14.415925979614258 + ], + [ + "▁Bij", + -14.415928840637207 + ], + [ + "▁Hick", + -14.415986061096191 + ], + [ + "grader", + -14.416000366210938 + ], + [ + "Catch", + -14.416027069091797 + ], + [ + "▁Crematory", + -14.416049003601074 + ], + [ + "▁Loire", + -14.41606616973877 + ], + [ + "atorio", + -14.416069030761719 + ], + [ + "zr", + -14.41611385345459 + ], + [ + "▁resonator", + -14.416115760803223 + ], + [ + "▁IGT", + -14.416122436523438 + ], + [ + "dru", + -14.416125297546387 + ], + [ + "▁masterclass", + -14.416156768798828 + ], + [ + "▁Dunkirk", + -14.416173934936523 + ], + [ + "▁enforces", + -14.416190147399902 + ], + [ + "▁centro", + -14.416244506835938 + ], + [ + "▁wor", + -14.416285514831543 + ], + [ + "shak", + -14.416291236877441 + ], + [ + "▁esc", + -14.416314125061035 + ], + [ + "▁exchangers", + -14.416336059570312 + ], + [ + "▁audiophile", + -14.416339874267578 + ], + [ + "▁Professors", + -14.416345596313477 + ], + [ + "izzy", + -14.416373252868652 + ], + [ + "▁kraft", + -14.416374206542969 + ], + [ + "▁thatched", + -14.41643238067627 + ], + [ + "▁armoire", + -14.41647720336914 + ], + [ + "▁majored", + -14.41650104522705 + ], + [ + "TABLE", + -14.416525840759277 + ], + [ + "▁453", + -14.416549682617188 + ], + [ + "DEF", + -14.41655445098877 + ], + [ + "▁lessee", + -14.416583061218262 + ], + [ + "▁Ano", + -14.41660213470459 + ], + [ + "▁Pippa", + -14.416607856750488 + ], + [ + "scot", + -14.416681289672852 + ], + [ + "▁uprooted", + -14.416682243347168 + ], + [ + "bender", + -14.416725158691406 + ], + [ + "wicket", + -14.41675853729248 + ], + [ + "▁sears", + -14.416776657104492 + ], + [ + "▁interdependence", + -14.416780471801758 + ], + [ + "▁amethyst", + -14.416813850402832 + ], + [ + "▁Kaine", + -14.416820526123047 + ], + [ + "▁sinkhole", + -14.416829109191895 + ], + [ + "▁designates", + -14.416844367980957 + ], + [ + "▁Lazio", + -14.416849136352539 + ], + [ + "▁Cello", + -14.416982650756836 + ], + [ + "▁penning", + -14.417030334472656 + ], + [ + "▁muss", + -14.417038917541504 + ], + [ + "▁milkshake", + -14.417045593261719 + ], + [ + "▁inversely", + -14.41706657409668 + ], + [ + "▁regressive", + -14.41711139678955 + ], + [ + "▁Flori", + -14.417189598083496 + ], + [ + "▁unreported", + -14.417197227478027 + ], + [ + "Forex", + -14.41721248626709 + ], + [ + "▁Bish", + -14.41723346710205 + ], + [ + "▁Raffle", + -14.417256355285645 + ], + [ + "swap", + -14.417272567749023 + ], + [ + "▁Rauner", + -14.417296409606934 + ], + [ + "▁Innova", + -14.417308807373047 + ], + [ + "▁bioavailability", + -14.417348861694336 + ], + [ + "▁hart", + -14.417365074157715 + ], + [ + "1943", + -14.417407035827637 + ], + [ + "▁Borden", + -14.417479515075684 + ], + [ + "▁malnourished", + -14.417515754699707 + ], + [ + "▁miscommunication", + -14.417519569396973 + ], + [ + "NDI", + -14.417536735534668 + ], + [ + "▁Pantheon", + -14.417559623718262 + ], + [ + "▁printout", + -14.41756820678711 + ], + [ + "▁Ningbo", + -14.417584419250488 + ], + [ + "UNK", + -14.41761302947998 + ], + [ + "▁Chassis", + -14.417651176452637 + ], + [ + "▁jewish", + -14.417668342590332 + ], + [ + "947", + -14.417684555053711 + ], + [ + "▁hoarse", + -14.417695045471191 + ], + [ + "Chairman", + -14.417695999145508 + ], + [ + "▁Weller", + -14.417716026306152 + ], + [ + "▁storefronts", + -14.417725563049316 + ], + [ + "▁DAL", + -14.417734146118164 + ], + [ + "▁flailing", + -14.417821884155273 + ], + [ + "▁photojournalist", + -14.41788387298584 + ], + [ + "▁Bridgestone", + -14.417948722839355 + ], + [ + "toxicity", + -14.41799259185791 + ], + [ + "▁lyricist", + -14.418020248413086 + ], + [ + "▁Muj", + -14.418041229248047 + ], + [ + "RCC", + -14.418092727661133 + ], + [ + "▁enliven", + -14.418094635009766 + ], + [ + "▁SUNDAY", + -14.41810131072998 + ], + [ + "▁Bloomsbury", + -14.418122291564941 + ], + [ + "▁thawed", + -14.418128967285156 + ], + [ + "PCC", + -14.418129920959473 + ], + [ + "lema", + -14.418180465698242 + ], + [ + "▁Pls", + -14.418195724487305 + ], + [ + "▁tidak", + -14.418213844299316 + ], + [ + "UNE", + -14.418222427368164 + ], + [ + "▁Vivek", + -14.418225288391113 + ], + [ + "▁Cochin", + -14.418252944946289 + ], + [ + "923", + -14.418265342712402 + ], + [ + "▁Bolivian", + -14.418266296386719 + ], + [ + "Module", + -14.418291091918945 + ], + [ + "▁internment", + -14.418295860290527 + ], + [ + "▁SAND", + -14.418360710144043 + ], + [ + "▁luminosity", + -14.418394088745117 + ], + [ + "gery", + -14.418401718139648 + ], + [ + "▁Suburbs", + -14.418401718139648 + ], + [ + "nade", + -14.418436050415039 + ], + [ + "▁469", + -14.41844654083252 + ], + [ + "▁Muskegon", + -14.418564796447754 + ], + [ + "▁Tacos", + -14.418572425842285 + ], + [ + "▁Exhibitions", + -14.418599128723145 + ], + [ + "▁Ruf", + -14.41861343383789 + ], + [ + "▁bugged", + -14.418652534484863 + ], + [ + "▁captcha", + -14.418655395507812 + ], + [ + "▁Mammal", + -14.418658256530762 + ], + [ + "▁Universit", + -14.41866397857666 + ], + [ + "bele", + -14.418700218200684 + ], + [ + "▁Notepad", + -14.418705940246582 + ], + [ + "▁Evangel", + -14.41876220703125 + ], + [ + "▁Occasional", + -14.418776512145996 + ], + [ + "▁Locust", + -14.418811798095703 + ], + [ + "비", + -14.418828010559082 + ], + [ + "▁Pentax", + -14.418838500976562 + ], + [ + "▁1802", + -14.418844223022461 + ], + [ + "ulant", + -14.418862342834473 + ], + [ + "▁MBBS", + -14.418915748596191 + ], + [ + "▁일", + -14.418935775756836 + ], + [ + "▁Clarksville", + -14.41895866394043 + ], + [ + "▁organises", + -14.418959617614746 + ], + [ + "ORY", + -14.418960571289062 + ], + [ + "▁Kareem", + -14.419032096862793 + ], + [ + "▁Garde", + -14.41904354095459 + ], + [ + "▁normality", + -14.419044494628906 + ], + [ + "▁liquidated", + -14.419052124023438 + ], + [ + "▁graphing", + -14.419182777404785 + ], + [ + "▁unsold", + -14.419236183166504 + ], + [ + "▁FISH", + -14.419245719909668 + ], + [ + "▁SECRET", + -14.419268608093262 + ], + [ + "▁caspase", + -14.419280052185059 + ], + [ + "▁Beverages", + -14.419291496276855 + ], + [ + "▁PepsiCo", + -14.419292449951172 + ], + [ + "zinger", + -14.419299125671387 + ], + [ + "Fred", + -14.419305801391602 + ], + [ + "ся", + -14.419321060180664 + ], + [ + "▁blacked", + -14.419336318969727 + ], + [ + "▁Handsome", + -14.419390678405762 + ], + [ + "▁ü", + -14.41939926147461 + ], + [ + "▁Penthouse", + -14.41942024230957 + ], + [ + "▁Mutt", + -14.419463157653809 + ], + [ + "▁YPG", + -14.419466972351074 + ], + [ + "мер", + -14.419482231140137 + ], + [ + "▁Impulse", + -14.41956901550293 + ], + [ + "▁hinterland", + -14.419654846191406 + ], + [ + "▁FWD", + -14.419671058654785 + ], + [ + "▁Relativity", + -14.419692993164062 + ], + [ + "Pearl", + -14.419695854187012 + ], + [ + "▁settee", + -14.419715881347656 + ], + [ + "▁Ephesus", + -14.419795989990234 + ], + [ + "▁clippers", + -14.41986083984375 + ], + [ + "▁scoffed", + -14.419864654541016 + ], + [ + "lden", + -14.419868469238281 + ], + [ + "▁ugliness", + -14.419879913330078 + ], + [ + "▁835", + -14.419914245605469 + ], + [ + "▁Worthy", + -14.41993522644043 + ], + [ + "▁saviour", + -14.419944763183594 + ], + [ + "▁checkers", + -14.419975280761719 + ], + [ + "▁interlocutor", + -14.419975280761719 + ], + [ + "▁Examinations", + -14.420010566711426 + ], + [ + "▁readmission", + -14.420031547546387 + ], + [ + "▁reheat", + -14.420042991638184 + ], + [ + "▁impediments", + -14.420063972473145 + ], + [ + "▁Pigment", + -14.420092582702637 + ], + [ + "▁omitting", + -14.420124053955078 + ], + [ + "▁Dubois", + -14.420143127441406 + ], + [ + "onny", + -14.420172691345215 + ], + [ + "▁Hempstead", + -14.420172691345215 + ], + [ + "▁RISE", + -14.420173645019531 + ], + [ + "▁350°", + -14.420187950134277 + ], + [ + "▁druid", + -14.420199394226074 + ], + [ + "▁ICOs", + -14.420209884643555 + ], + [ + "nog", + -14.420217514038086 + ], + [ + "▁NCI", + -14.420235633850098 + ], + [ + "▁MAKES", + -14.420239448547363 + ], + [ + "▁Forming", + -14.42026138305664 + ], + [ + "▁Napoleonic", + -14.420289993286133 + ], + [ + "ké", + -14.42031478881836 + ], + [ + "▁falsified", + -14.420392990112305 + ], + [ + "transition", + -14.420416831970215 + ], + [ + "▁samba", + -14.420416831970215 + ], + [ + "▁Vinny", + -14.420449256896973 + ], + [ + "idio", + -14.420450210571289 + ], + [ + "▁pavements", + -14.420486450195312 + ], + [ + "▁Rong", + -14.420495986938477 + ], + [ + "spend", + -14.420504570007324 + ], + [ + "▁Rooftop", + -14.42054557800293 + ], + [ + "▁forehand", + -14.420588493347168 + ], + [ + "▁absorber", + -14.420600891113281 + ], + [ + "▁Langer", + -14.42060661315918 + ], + [ + "▁Deen", + -14.420624732971191 + ], + [ + "▁democratization", + -14.42072868347168 + ], + [ + "▁Gecko", + -14.420767784118652 + ], + [ + "▁Biscuit", + -14.420820236206055 + ], + [ + "▁Confucius", + -14.420923233032227 + ], + [ + "▁Urology", + -14.420923233032227 + ], + [ + "▁Grandparents", + -14.420965194702148 + ], + [ + "▁impurity", + -14.420967102050781 + ], + [ + "▁itemized", + -14.420995712280273 + ], + [ + "critic", + -14.421003341674805 + ], + [ + "ANC", + -14.42104434967041 + ], + [ + "▁cw", + -14.421150207519531 + ], + [ + "▁Sapp", + -14.42116641998291 + ], + [ + "▁Sturdy", + -14.421273231506348 + ], + [ + "▁Amigo", + -14.421285629272461 + ], + [ + "▁1791", + -14.421292304992676 + ], + [ + "▁moderates", + -14.421333312988281 + ], + [ + "▁Specialties", + -14.42138385772705 + ], + [ + "▁Bourdain", + -14.421418190002441 + ], + [ + "programs", + -14.421430587768555 + ], + [ + "whom", + -14.421442985534668 + ], + [ + "▁sebum", + -14.421459197998047 + ], + [ + "▁hellish", + -14.421486854553223 + ], + [ + "▁714", + -14.421516418457031 + ], + [ + "▁Toxicology", + -14.42154312133789 + ], + [ + "▁Martens", + -14.421574592590332 + ], + [ + "▁Oates", + -14.421600341796875 + ], + [ + "▁Waikato", + -14.42160415649414 + ], + [ + "▁Generated", + -14.421647071838379 + ], + [ + "ctl", + -14.421673774719238 + ], + [ + "anova", + -14.421689987182617 + ], + [ + "▁Mati", + -14.42170524597168 + ], + [ + "▁Adolph", + -14.421710968017578 + ], + [ + "▁LibraryThing", + -14.421780586242676 + ], + [ + "▁Veterinarian", + -14.421820640563965 + ], + [ + "bucks", + -14.421879768371582 + ], + [ + "▁scoping", + -14.421890258789062 + ], + [ + "occa", + -14.421939849853516 + ], + [ + "▁cobbler", + -14.421969413757324 + ], + [ + "▁Miku", + -14.421989440917969 + ], + [ + "▁quantitatively", + -14.422026634216309 + ], + [ + "▁whiz", + -14.42203140258789 + ], + [ + "▁dojo", + -14.42204761505127 + ], + [ + "temporary", + -14.422061920166016 + ], + [ + "▁Grumman", + -14.422067642211914 + ], + [ + "ully", + -14.422082901000977 + ], + [ + "▁vic", + -14.422125816345215 + ], + [ + "▁Hyman", + -14.422186851501465 + ], + [ + "057", + -14.422208786010742 + ], + [ + "▁spain", + -14.422225952148438 + ], + [ + "▁NFPA", + -14.42227840423584 + ], + [ + "▁flier", + -14.4223051071167 + ], + [ + "▁463", + -14.422367095947266 + ], + [ + "▁Attempting", + -14.42243480682373 + ], + [ + "▁Munoz", + -14.422440528869629 + ], + [ + "hb", + -14.422464370727539 + ], + [ + "▁df", + -14.422472953796387 + ], + [ + "▁inadvertent", + -14.4224853515625 + ], + [ + "▁Coro", + -14.422499656677246 + ], + [ + "▁Geller", + -14.422500610351562 + ], + [ + "▁Taught", + -14.422518730163574 + ], + [ + "▁distinctively", + -14.42251968383789 + ], + [ + "Bow", + -14.422529220581055 + ], + [ + "▁demeaning", + -14.42253589630127 + ], + [ + "▁Placid", + -14.422565460205078 + ], + [ + "▁hardline", + -14.422571182250977 + ], + [ + "▁Locked", + -14.422637939453125 + ], + [ + "▁acro", + -14.422651290893555 + ], + [ + "▁seabed", + -14.422685623168945 + ], + [ + "▁Mendez", + -14.42273998260498 + ], + [ + "▁swindle", + -14.422798156738281 + ], + [ + "▁malignancies", + -14.42280101776123 + ], + [ + "▁Mansour", + -14.422859191894531 + ], + [ + "ITT", + -14.422873497009277 + ], + [ + "▁Nea", + -14.422913551330566 + ], + [ + "cture", + -14.422944068908691 + ], + [ + "ζ", + -14.422972679138184 + ], + [ + "yro", + -14.422987937927246 + ], + [ + "Knight", + -14.42305850982666 + ], + [ + "▁Micheal", + -14.423088073730469 + ], + [ + "▁Frick", + -14.423117637634277 + ], + [ + "EON", + -14.423121452331543 + ], + [ + "▁jordans", + -14.423125267028809 + ], + [ + "▁Waite", + -14.423136711120605 + ], + [ + "▁bedspread", + -14.423144340515137 + ], + [ + "▁Uprising", + -14.423158645629883 + ], + [ + "ַ", + -14.42318058013916 + ], + [ + "ος", + -14.423187255859375 + ], + [ + "▁tablecloths", + -14.423264503479004 + ], + [ + "▁footy", + -14.423312187194824 + ], + [ + "▁triplets", + -14.423321723937988 + ], + [ + "▁starfish", + -14.42332649230957 + ], + [ + "destruct", + -14.42333984375 + ], + [ + "theater", + -14.423357009887695 + ], + [ + "▁McHenry", + -14.423385620117188 + ], + [ + "력", + -14.423407554626465 + ], + [ + "▁Odi", + -14.423434257507324 + ], + [ + "▁Prelude", + -14.423517227172852 + ], + [ + "▁Piggy", + -14.423583984375 + ], + [ + "▁adoptions", + -14.423595428466797 + ], + [ + "SIC", + -14.42361831665039 + ], + [ + "kms", + -14.42363166809082 + ], + [ + "erle", + -14.423672676086426 + ], + [ + "▁distorting", + -14.423705101013184 + ], + [ + "▁461", + -14.423755645751953 + ], + [ + "▁Composed", + -14.423774719238281 + ], + [ + "▁Pagoda", + -14.423776626586914 + ], + [ + "eso", + -14.423802375793457 + ], + [ + "Events", + -14.423810005187988 + ], + [ + "093", + -14.423827171325684 + ], + [ + "▁Loveland", + -14.423851013183594 + ], + [ + "sourcing", + -14.423860549926758 + ], + [ + "hesi", + -14.423867225646973 + ], + [ + "Billy", + -14.423869132995605 + ], + [ + "bata", + -14.423901557922363 + ], + [ + "089", + -14.42396354675293 + ], + [ + "▁tearful", + -14.424004554748535 + ], + [ + "▁cameos", + -14.424031257629395 + ], + [ + "▁ASX", + -14.42403507232666 + ], + [ + "▁Curling", + -14.424046516418457 + ], + [ + "▁Oriented", + -14.42407512664795 + ], + [ + "▁EDS", + -14.424088478088379 + ], + [ + "▁opulence", + -14.424095153808594 + ], + [ + "▁spooked", + -14.424125671386719 + ], + [ + "▁Cassi", + -14.424153327941895 + ], + [ + "▁infill", + -14.424163818359375 + ], + [ + "▁shortfalls", + -14.424166679382324 + ], + [ + "▁loaders", + -14.42419147491455 + ], + [ + "afford", + -14.424214363098145 + ], + [ + "▁baptised", + -14.424217224121094 + ], + [ + "▁Blah", + -14.424221992492676 + ], + [ + "▁subpoenas", + -14.424248695373535 + ], + [ + "ngel", + -14.424257278442383 + ], + [ + "lua", + -14.424270629882812 + ], + [ + "Coast", + -14.42427921295166 + ], + [ + "▁Guwahati", + -14.424284934997559 + ], + [ + "▁Makh", + -14.424311637878418 + ], + [ + "▁ved", + -14.424315452575684 + ], + [ + "▁McF", + -14.424325942993164 + ], + [ + "programming", + -14.424365997314453 + ], + [ + "revolutionary", + -14.42436695098877 + ], + [ + "▁PKK", + -14.424493789672852 + ], + [ + "▁antisocial", + -14.424493789672852 + ], + [ + "▁anthrax", + -14.4244966506958 + ], + [ + "rga", + -14.424529075622559 + ], + [ + "PTA", + -14.424540519714355 + ], + [ + "▁Tipperary", + -14.424558639526367 + ], + [ + "▁Driveway", + -14.424635887145996 + ], + [ + "▁oss", + -14.42467212677002 + ], + [ + "ANY", + -14.424683570861816 + ], + [ + "▁magnolia", + -14.424755096435547 + ], + [ + "GPU", + -14.424756050109863 + ], + [ + "cx", + -14.424759864807129 + ], + [ + "▁Recipients", + -14.424844741821289 + ], + [ + "handled", + -14.424851417541504 + ], + [ + "▁otter", + -14.424886703491211 + ], + [ + "好", + -14.424886703491211 + ], + [ + "improved", + -14.424888610839844 + ], + [ + "▁Nagoya", + -14.424903869628906 + ], + [ + "jax", + -14.424927711486816 + ], + [ + "▁Veda", + -14.424962997436523 + ], + [ + "▁nar", + -14.424989700317383 + ], + [ + "▁ceasing", + -14.424993515014648 + ], + [ + "▁plumb", + -14.425015449523926 + ], + [ + "▁repositioning", + -14.42503833770752 + ], + [ + "▁snort", + -14.425076484680176 + ], + [ + "▁MRO", + -14.425098419189453 + ], + [ + "▁RARE", + -14.425137519836426 + ], + [ + "▁conifer", + -14.425163269042969 + ], + [ + "▁colloquial", + -14.425207138061523 + ], + [ + "▁Miki", + -14.425219535827637 + ], + [ + "▁Castell", + -14.425235748291016 + ], + [ + "▁intensifies", + -14.425267219543457 + ], + [ + "▁Propaganda", + -14.425268173217773 + ], + [ + "osu", + -14.425325393676758 + ], + [ + "▁MANUAL", + -14.425341606140137 + ], + [ + "▁Compounds", + -14.425370216369629 + ], + [ + "fundamental", + -14.425383567810059 + ], + [ + "▁screensaver", + -14.425408363342285 + ], + [ + "▁Metadata", + -14.425454139709473 + ], + [ + "▁hur", + -14.425458908081055 + ], + [ + "▁illusory", + -14.425501823425293 + ], + [ + "▁cuppa", + -14.425506591796875 + ], + [ + "vall", + -14.425532341003418 + ], + [ + "▁GY", + -14.425559997558594 + ], + [ + "lino", + -14.425566673278809 + ], + [ + "tuna", + -14.425568580627441 + ], + [ + "▁pacifist", + -14.425590515136719 + ], + [ + "▁ITEM", + -14.425636291503906 + ], + [ + "▁constructively", + -14.425639152526855 + ], + [ + "Session", + -14.425649642944336 + ], + [ + "▁Engaged", + -14.4256591796875 + ], + [ + "▁FBA", + -14.425731658935547 + ], + [ + "▁SPR", + -14.425740242004395 + ], + [ + "▁eyesore", + -14.425763130187988 + ], + [ + "▁Therese", + -14.42578411102295 + ], + [ + "▁ophthalmic", + -14.425785064697266 + ], + [ + "strain", + -14.425801277160645 + ], + [ + "▁RESEARCH", + -14.425817489624023 + ], + [ + "▁conspicuously", + -14.425835609436035 + ], + [ + "▁patter", + -14.425848960876465 + ], + [ + "▁Tome", + -14.425893783569336 + ], + [ + "▁Lur", + -14.42590618133545 + ], + [ + "▁Université", + -14.42593765258789 + ], + [ + "threaded", + -14.425966262817383 + ], + [ + "▁Tui", + -14.425975799560547 + ], + [ + "SPECT", + -14.42597770690918 + ], + [ + "▁SMO", + -14.426006317138672 + ], + [ + "onal", + -14.426023483276367 + ], + [ + "▁Algo", + -14.426023483276367 + ], + [ + "▁cantilever", + -14.426040649414062 + ], + [ + "▁Plea", + -14.426054954528809 + ], + [ + "▁Mattresses", + -14.426063537597656 + ], + [ + "▁Rampage", + -14.426070213317871 + ], + [ + "▁Hersh", + -14.426145553588867 + ], + [ + "▁lethargy", + -14.42616081237793 + ], + [ + "▁condiment", + -14.426204681396484 + ], + [ + "▁hillsides", + -14.426239013671875 + ], + [ + "FAR", + -14.426263809204102 + ], + [ + "▁slo", + -14.426351547241211 + ], + [ + "▁devilish", + -14.42635440826416 + ], + [ + "▁Winkler", + -14.426376342773438 + ], + [ + "Saving", + -14.426385879516602 + ], + [ + "け", + -14.426393508911133 + ], + [ + "▁Envoy", + -14.426406860351562 + ], + [ + "isis", + -14.426414489746094 + ], + [ + "▁unbelievers", + -14.426457405090332 + ], + [ + "▁otters", + -14.426464080810547 + ], + [ + "▁Jama", + -14.426473617553711 + ], + [ + "▁Mord", + -14.426483154296875 + ], + [ + "▁riparian", + -14.426493644714355 + ], + [ + "▁1070", + -14.426506996154785 + ], + [ + "▁Wabash", + -14.426509857177734 + ], + [ + "Forms", + -14.426530838012695 + ], + [ + "▁sui", + -14.426533699035645 + ], + [ + "nucleotide", + -14.426567077636719 + ], + [ + "▁FAC", + -14.426605224609375 + ], + [ + "▁advertises", + -14.426608085632324 + ], + [ + "▁Nestlé", + -14.426609992980957 + ], + [ + "▁Jaitley", + -14.426614761352539 + ], + [ + "发", + -14.42667007446289 + ], + [ + "▁iPods", + -14.426713943481445 + ], + [ + "▁clubbing", + -14.426748275756836 + ], + [ + "aqua", + -14.426753997802734 + ], + [ + "recognition", + -14.426769256591797 + ], + [ + "▁rationalization", + -14.426802635192871 + ], + [ + "▁pandora", + -14.426834106445312 + ], + [ + "torial", + -14.426859855651855 + ], + [ + "▁549", + -14.426934242248535 + ], + [ + "▁£85", + -14.426974296569824 + ], + [ + "▁FRIENDS", + -14.42699146270752 + ], + [ + "▁Mockingbird", + -14.427018165588379 + ], + [ + "viruses", + -14.427101135253906 + ], + [ + "▁Anakin", + -14.427103042602539 + ], + [ + "▁Dreamers", + -14.427176475524902 + ], + [ + "▁commun", + -14.427201271057129 + ], + [ + "rillo", + -14.427237510681152 + ], + [ + "▁shoo", + -14.427263259887695 + ], + [ + "098", + -14.427268028259277 + ], + [ + "▁Smit", + -14.427294731140137 + ], + [ + "▁hospitalizations", + -14.427295684814453 + ], + [ + "▁cufflinks", + -14.427334785461426 + ], + [ + "▁leasehold", + -14.427382469177246 + ], + [ + "▁secrete", + -14.427398681640625 + ], + [ + "serial", + -14.427441596984863 + ], + [ + "▁394", + -14.427465438842773 + ], + [ + "▁postdoc", + -14.427559852600098 + ], + [ + "Nm", + -14.427572250366211 + ], + [ + "onnie", + -14.42758560180664 + ], + [ + "▁Shearer", + -14.427616119384766 + ], + [ + "ров", + -14.427618980407715 + ], + [ + "▁Finite", + -14.427632331848145 + ], + [ + "▁devotes", + -14.427675247192383 + ], + [ + "▁Schott", + -14.427708625793457 + ], + [ + "clusion", + -14.427730560302734 + ], + [ + "▁YU", + -14.427770614624023 + ], + [ + "▁Reina", + -14.427777290344238 + ], + [ + "▁mastectomy", + -14.427780151367188 + ], + [ + "▁Hetero", + -14.427804946899414 + ], + [ + "Emily", + -14.427807807922363 + ], + [ + "raja", + -14.427846908569336 + ], + [ + "▁Alicante", + -14.427852630615234 + ], + [ + "▁Fraction", + -14.427863121032715 + ], + [ + "▁repro", + -14.427878379821777 + ], + [ + "▁Trayvon", + -14.427896499633789 + ], + [ + "▁moped", + -14.427924156188965 + ], + [ + "▁Complementary", + -14.42793083190918 + ], + [ + "▁stagger", + -14.427931785583496 + ], + [ + "▁PROFESSIONAL", + -14.427950859069824 + ], + [ + "▁admittance", + -14.42795467376709 + ], + [ + "▁siphon", + -14.428079605102539 + ], + [ + "liza", + -14.428098678588867 + ], + [ + "WEB", + -14.4281005859375 + ], + [ + "▁DEVELOPMENT", + -14.428101539611816 + ], + [ + "IBA", + -14.428122520446777 + ], + [ + "934", + -14.42812442779541 + ], + [ + "▁się", + -14.428170204162598 + ], + [ + "spots", + -14.428177833557129 + ], + [ + "▁showrunner", + -14.428229331970215 + ], + [ + "▁Manas", + -14.428232192993164 + ], + [ + "baya", + -14.428245544433594 + ], + [ + "▁pragmatism", + -14.428258895874023 + ], + [ + "slope", + -14.428297996520996 + ], + [ + "roasted", + -14.428352355957031 + ], + [ + "▁Vul", + -14.42837905883789 + ], + [ + "▁Lauer", + -14.428391456604004 + ], + [ + "▁COLO", + -14.42839527130127 + ], + [ + "▁635", + -14.428470611572266 + ], + [ + "▁Rounds", + -14.428497314453125 + ], + [ + "▁Mitzvah", + -14.428515434265137 + ], + [ + "▁Breakers", + -14.428568840026855 + ], + [ + "▁lp", + -14.428598403930664 + ], + [ + "operator", + -14.42862319946289 + ], + [ + "▁singularly", + -14.428741455078125 + ], + [ + "▁Decals", + -14.428788185119629 + ], + [ + "▁то", + -14.428788185119629 + ], + [ + "▁IAM", + -14.428790092468262 + ], + [ + "▁driftwood", + -14.428794860839844 + ], + [ + "lí", + -14.428813934326172 + ], + [ + "▁gobble", + -14.428820610046387 + ], + [ + "▁Whedon", + -14.42884635925293 + ], + [ + "Secretary", + -14.428847312927246 + ], + [ + "▁Medusa", + -14.428850173950195 + ], + [ + "▁Elizabethan", + -14.428861618041992 + ], + [ + "▁Ladakh", + -14.42888069152832 + ], + [ + "▁revitalizing", + -14.428892135620117 + ], + [ + "idor", + -14.428897857666016 + ], + [ + "▁confide", + -14.428908348083496 + ], + [ + "▁telco", + -14.428940773010254 + ], + [ + "▁CEA", + -14.429011344909668 + ], + [ + "finity", + -14.42902946472168 + ], + [ + "▁Internally", + -14.429034233093262 + ], + [ + "▁flopped", + -14.429096221923828 + ], + [ + "noun", + -14.429104804992676 + ], + [ + "▁Meir", + -14.429130554199219 + ], + [ + "▁Grantham", + -14.429211616516113 + ], + [ + "▁pirated", + -14.42921257019043 + ], + [ + "▁diocesan", + -14.429230690002441 + ], + [ + "▁beggars", + -14.429243087768555 + ], + [ + "▁Regulators", + -14.429250717163086 + ], + [ + "MAD", + -14.429269790649414 + ], + [ + "symbol", + -14.429285049438477 + ], + [ + "necessary", + -14.429301261901855 + ], + [ + "▁TRACK", + -14.429338455200195 + ], + [ + "▁CEP", + -14.429339408874512 + ], + [ + "▁trinity", + -14.429346084594727 + ], + [ + "▁shipwreck", + -14.42937183380127 + ], + [ + "▁SARS", + -14.429404258728027 + ], + [ + "▁CIN", + -14.429423332214355 + ], + [ + "▁fundraise", + -14.429441452026367 + ], + [ + "▁Leukemia", + -14.429471969604492 + ], + [ + "▁decoded", + -14.429474830627441 + ], + [ + "▁449", + -14.429509162902832 + ], + [ + "▁Alb", + -14.429543495178223 + ], + [ + "▁cuando", + -14.42956256866455 + ], + [ + "▁marveled", + -14.429574012756348 + ], + [ + "Lan", + -14.429584503173828 + ], + [ + "▁BURN", + -14.429594039916992 + ], + [ + "▁obsessively", + -14.429595947265625 + ], + [ + "▁Dougherty", + -14.429631233215332 + ], + [ + "▁modulating", + -14.429652214050293 + ], + [ + "▁metered", + -14.429682731628418 + ], + [ + "Lev", + -14.429695129394531 + ], + [ + "▁overloading", + -14.429709434509277 + ], + [ + "▁racquet", + -14.429754257202148 + ], + [ + "▁blockbusters", + -14.429821968078613 + ], + [ + "▁roundtrip", + -14.429841995239258 + ], + [ + "▁ergonomically", + -14.429889678955078 + ], + [ + "▁MEA", + -14.42990493774414 + ], + [ + "▁Confirmed", + -14.429910659790039 + ], + [ + "▁Ruskin", + -14.429927825927734 + ], + [ + "▁correspondingly", + -14.42995548248291 + ], + [ + "drone", + -14.429960250854492 + ], + [ + "▁PDE", + -14.429999351501465 + ], + [ + "▁Roaring", + -14.430027961730957 + ], + [ + "▁miRNAs", + -14.430068016052246 + ], + [ + "▁Gorbachev", + -14.430082321166992 + ], + [ + "▁471", + -14.430089950561523 + ], + [ + "▁helplessly", + -14.430102348327637 + ], + [ + "▁stevia", + -14.430108070373535 + ], + [ + "Oreal", + -14.43011474609375 + ], + [ + "▁PMCID", + -14.430177688598633 + ], + [ + "▁hypnotherapy", + -14.430196762084961 + ], + [ + "▁husbandry", + -14.430232048034668 + ], + [ + "▁Brenner", + -14.43026351928711 + ], + [ + "▁552", + -14.430266380310059 + ], + [ + "▁safeguarded", + -14.430266380310059 + ], + [ + "▁paging", + -14.430304527282715 + ], + [ + "▁Vow", + -14.430327415466309 + ], + [ + "ipu", + -14.430405616760254 + ], + [ + "▁handsomely", + -14.43041706085205 + ], + [ + "▁Про", + -14.430444717407227 + ], + [ + "▁unjustly", + -14.430452346801758 + ], + [ + "▁PRIME", + -14.430455207824707 + ], + [ + "▁JetBlue", + -14.43045711517334 + ], + [ + "▁compatriots", + -14.430489540100098 + ], + [ + "▁это", + -14.430503845214844 + ], + [ + "▁Kondo", + -14.430512428283691 + ], + [ + "▁MICRO", + -14.430512428283691 + ], + [ + "▁lugs", + -14.430608749389648 + ], + [ + "accident", + -14.430627822875977 + ], + [ + "981", + -14.4306640625 + ], + [ + "valve", + -14.430686950683594 + ], + [ + "passed", + -14.430702209472656 + ], + [ + "▁pistachio", + -14.430703163146973 + ], + [ + "mez", + -14.43071460723877 + ], + [ + "▁workmen", + -14.430717468261719 + ], + [ + "zn", + -14.430802345275879 + ], + [ + "eville", + -14.430837631225586 + ], + [ + "▁Maca", + -14.4308500289917 + ], + [ + "SUN", + -14.430876731872559 + ], + [ + "▁LCC", + -14.430891990661621 + ], + [ + "▁fouling", + -14.430900573730469 + ], + [ + "▁christening", + -14.430919647216797 + ], + [ + "▁unflinching", + -14.430965423583984 + ], + [ + "jaya", + -14.430985450744629 + ], + [ + "▁porque", + -14.431007385253906 + ], + [ + "▁fairing", + -14.431014060974121 + ], + [ + "▁saddles", + -14.431031227111816 + ], + [ + "▁vultures", + -14.431089401245117 + ], + [ + "▁McDonough", + -14.431100845336914 + ], + [ + "Hum", + -14.431123733520508 + ], + [ + "Laura", + -14.431133270263672 + ], + [ + "▁overrides", + -14.431135177612305 + ], + [ + "▁BRT", + -14.431139945983887 + ], + [ + "▁Charms", + -14.431142807006836 + ], + [ + "Sigma", + -14.431148529052734 + ], + [ + "▁Variables", + -14.431180953979492 + ], + [ + "Mia", + -14.431194305419922 + ], + [ + "▁Quintana", + -14.431212425231934 + ], + [ + "▁permeated", + -14.431242942810059 + ], + [ + "vati", + -14.431268692016602 + ], + [ + "▁piste", + -14.431269645690918 + ], + [ + "▁DROP", + -14.431296348571777 + ], + [ + "▁Fenn", + -14.431303024291992 + ], + [ + "▁Vala", + -14.431320190429688 + ], + [ + "▁Mahathir", + -14.43133544921875 + ], + [ + "alina", + -14.431344032287598 + ], + [ + "▁catapulted", + -14.431344032287598 + ], + [ + "▁Osi", + -14.431382179260254 + ], + [ + "▁Gabi", + -14.43138599395752 + ], + [ + "×4", + -14.431418418884277 + ], + [ + "▁kennels", + -14.431424140930176 + ], + [ + "▁Khartoum", + -14.431426048278809 + ], + [ + "▁GARDEN", + -14.431436538696289 + ], + [ + "▁Shallow", + -14.431509017944336 + ], + [ + "ohn", + -14.431536674499512 + ], + [ + "▁Staple", + -14.431562423706055 + ], + [ + "shops", + -14.43161678314209 + ], + [ + "Naughty", + -14.431620597839355 + ], + [ + "▁crepes", + -14.431622505187988 + ], + [ + "comedy", + -14.431647300720215 + ], + [ + "▁Conducting", + -14.431660652160645 + ], + [ + "▁ANG", + -14.431683540344238 + ], + [ + "wielding", + -14.43168830871582 + ], + [ + "▁integrator", + -14.431690216064453 + ], + [ + "▁Haile", + -14.431732177734375 + ], + [ + "BEL", + -14.431760787963867 + ], + [ + "ск", + -14.431763648986816 + ], + [ + "LIFE", + -14.431801795959473 + ], + [ + "▁MAGIC", + -14.431830406188965 + ], + [ + "minister", + -14.431902885437012 + ], + [ + "▁Caval", + -14.431915283203125 + ], + [ + "▁hysterectomy", + -14.431918144226074 + ], + [ + "▁Neglect", + -14.431933403015137 + ], + [ + "891", + -14.43194580078125 + ], + [ + "▁Harassment", + -14.431947708129883 + ], + [ + "▁FACEBOOK", + -14.432016372680664 + ], + [ + "▁plankton", + -14.43201732635498 + ], + [ + "Horny", + -14.43204402923584 + ], + [ + "▁JUNE", + -14.43204402923584 + ], + [ + "▁undesired", + -14.43206787109375 + ], + [ + "▁encircle", + -14.432073593139648 + ], + [ + "▁Festive", + -14.432096481323242 + ], + [ + "▁Thankyou", + -14.432097434997559 + ], + [ + "▁vp", + -14.43211841583252 + ], + [ + "▁Topping", + -14.432127952575684 + ], + [ + "▁Silverlight", + -14.432140350341797 + ], + [ + "▁OPT", + -14.432146072387695 + ], + [ + "▁JOURNAL", + -14.432149887084961 + ], + [ + "▁Councilor", + -14.432159423828125 + ], + [ + "▁Reject", + -14.432247161865234 + ], + [ + "▁Cricut", + -14.43228530883789 + ], + [ + "▁polygons", + -14.432311058044434 + ], + [ + "▁Butterflies", + -14.432369232177734 + ], + [ + "▁été", + -14.432374000549316 + ], + [ + "▁Swag", + -14.432417869567871 + ], + [ + "JJ", + -14.432443618774414 + ], + [ + "▁Salute", + -14.432482719421387 + ], + [ + "dimension", + -14.432496070861816 + ], + [ + "▁Blackbird", + -14.432514190673828 + ], + [ + "OOP", + -14.432609558105469 + ], + [ + "▁mourned", + -14.43266773223877 + ], + [ + "▁ringer", + -14.432685852050781 + ], + [ + "▁Kham", + -14.432693481445312 + ], + [ + "▁battleship", + -14.432709693908691 + ], + [ + "▁Purchases", + -14.432726860046387 + ], + [ + "▁Starfleet", + -14.432746887207031 + ], + [ + "▁Kapil", + -14.432775497436523 + ], + [ + "▁Terriers", + -14.43278694152832 + ], + [ + "culation", + -14.432835578918457 + ], + [ + "▁Papi", + -14.43283748626709 + ], + [ + "▁circumstantial", + -14.432877540588379 + ], + [ + "chains", + -14.432887077331543 + ], + [ + "▁565", + -14.432908058166504 + ], + [ + "▁Fluffy", + -14.432939529418945 + ], + [ + "▁TPC", + -14.432947158813477 + ], + [ + "▁Cami", + -14.432948112487793 + ], + [ + "▁Kwon", + -14.43302059173584 + ], + [ + "▁kong", + -14.4330472946167 + ], + [ + "▁Eton", + -14.433055877685547 + ], + [ + "Associated", + -14.433088302612305 + ], + [ + "▁uninitiated", + -14.433098793029785 + ], + [ + "▁Shepherds", + -14.433124542236328 + ], + [ + "▁fanned", + -14.433135986328125 + ], + [ + "▁Inst", + -14.433137893676758 + ], + [ + "Answer", + -14.43313980102539 + ], + [ + "▁disclaim", + -14.433149337768555 + ], + [ + "▁Hammers", + -14.433170318603516 + ], + [ + "▁divorcing", + -14.43322467803955 + ], + [ + "▁Mercado", + -14.433247566223145 + ], + [ + "▁Hammock", + -14.433368682861328 + ], + [ + "▁Chak", + -14.433401107788086 + ], + [ + "▁abduct", + -14.433423042297363 + ], + [ + "Abstract", + -14.433435440063477 + ], + [ + "▁WASH", + -14.433464050292969 + ], + [ + "▁phenol", + -14.433465003967285 + ], + [ + "세", + -14.433466911315918 + ], + [ + "▁Sully", + -14.433496475219727 + ], + [ + "▁respons", + -14.433517456054688 + ], + [ + "prior", + -14.433558464050293 + ], + [ + "▁Fierce", + -14.433577537536621 + ], + [ + "家", + -14.433595657348633 + ], + [ + "▁ticketed", + -14.433622360229492 + ], + [ + "▁Borges", + -14.433623313903809 + ], + [ + "latch", + -14.43364143371582 + ], + [ + "▁Propane", + -14.433686256408691 + ], + [ + "▁Stardust", + -14.433712005615234 + ], + [ + "▁Hurdle", + -14.433740615844727 + ], + [ + "▁Sclerosis", + -14.433853149414062 + ], + [ + "▁Vere", + -14.433865547180176 + ], + [ + "▁microtubule", + -14.433891296386719 + ], + [ + "▁Olympiad", + -14.433955192565918 + ], + [ + "▁testicles", + -14.434028625488281 + ], + [ + "wack", + -14.434069633483887 + ], + [ + "blad", + -14.434074401855469 + ], + [ + "▁Haiku", + -14.434089660644531 + ], + [ + "frames", + -14.434090614318848 + ], + [ + "ら", + -14.434120178222656 + ], + [ + "▁Crucial", + -14.434141159057617 + ], + [ + "▁McClellan", + -14.43414306640625 + ], + [ + "▁complicates", + -14.434184074401855 + ], + [ + "▁Lari", + -14.434221267700195 + ], + [ + "▁Sweatshirt", + -14.434226036071777 + ], + [ + "▁snuggling", + -14.434266090393066 + ], + [ + "CRP", + -14.434272766113281 + ], + [ + "▁Modem", + -14.43427848815918 + ], + [ + "▁439", + -14.434280395507812 + ], + [ + "▁impatiently", + -14.434300422668457 + ], + [ + "▁Operated", + -14.43430233001709 + ], + [ + "▁cara", + -14.434324264526367 + ], + [ + "FAC", + -14.434428215026855 + ], + [ + "961", + -14.4344482421875 + ], + [ + "▁Cronin", + -14.434510231018066 + ], + [ + "optimized", + -14.434521675109863 + ], + [ + "▁undercurrent", + -14.434536933898926 + ], + [ + "▁kilt", + -14.434542655944824 + ], + [ + "▁mentee", + -14.434542655944824 + ], + [ + "▁Kildare", + -14.434614181518555 + ], + [ + "▁Serrano", + -14.434627532958984 + ], + [ + "▁bobbing", + -14.434642791748047 + ], + [ + "roux", + -14.434664726257324 + ], + [ + "▁Nagy", + -14.434672355651855 + ], + [ + "tiger", + -14.434707641601562 + ], + [ + "▁477", + -14.434708595275879 + ], + [ + "▁Nc", + -14.434720039367676 + ], + [ + "shut", + -14.434732437133789 + ], + [ + "▁Systemic", + -14.434772491455078 + ], + [ + "▁Ruling", + -14.434798240661621 + ], + [ + "▁sg", + -14.43481731414795 + ], + [ + "▁Gypsum", + -14.43483829498291 + ], + [ + "Robot", + -14.43487548828125 + ], + [ + "nson", + -14.4348783493042 + ], + [ + "▁seaport", + -14.434879302978516 + ], + [ + "▁accu", + -14.434885025024414 + ], + [ + "▁Schra", + -14.434955596923828 + ], + [ + "▁rougher", + -14.435050010681152 + ], + [ + "▁Topical", + -14.435053825378418 + ], + [ + "SIL", + -14.435083389282227 + ], + [ + "▁Inspectors", + -14.435103416442871 + ], + [ + "stuck", + -14.43510913848877 + ], + [ + "ого", + -14.435141563415527 + ], + [ + "▁COMMENT", + -14.43515396118164 + ], + [ + "miner", + -14.435186386108398 + ], + [ + "mada", + -14.435225486755371 + ], + [ + "▁FET", + -14.43522834777832 + ], + [ + "▁Patrons", + -14.435242652893066 + ], + [ + "▁Repeated", + -14.435388565063477 + ], + [ + "▁Tierra", + -14.435389518737793 + ], + [ + "▁integrators", + -14.435397148132324 + ], + [ + "▁Streak", + -14.435402870178223 + ], + [ + "▁BULL", + -14.435450553894043 + ], + [ + "▁modernizing", + -14.435479164123535 + ], + [ + "ण", + -14.435482025146484 + ], + [ + "▁trop", + -14.4354829788208 + ], + [ + "▁Boynton", + -14.43548583984375 + ], + [ + "▁strongholds", + -14.435487747192383 + ], + [ + "▁Yerevan", + -14.435490608215332 + ], + [ + "▁SANTA", + -14.435507774353027 + ], + [ + "▁Cowen", + -14.435518264770508 + ], + [ + "stands", + -14.435561180114746 + ], + [ + "▁candidly", + -14.435699462890625 + ], + [ + "PHA", + -14.43574333190918 + ], + [ + "▁Damaged", + -14.435749053955078 + ], + [ + "▁medicament", + -14.435751914978027 + ], + [ + "▁YC", + -14.435809135437012 + ], + [ + "▁Rods", + -14.43583869934082 + ], + [ + "vane", + -14.435870170593262 + ], + [ + "▁Reeve", + -14.43588638305664 + ], + [ + "sect", + -14.435893058776855 + ], + [ + "▁NPD", + -14.435901641845703 + ], + [ + "▁trotted", + -14.435909271240234 + ], + [ + "▁MLP", + -14.435951232910156 + ], + [ + "owed", + -14.435961723327637 + ], + [ + "▁Mondo", + -14.43597412109375 + ], + [ + "▁Injured", + -14.435982704162598 + ], + [ + "▁UU", + -14.43601131439209 + ], + [ + "▁gator", + -14.436029434204102 + ], + [ + "▁splint", + -14.436030387878418 + ], + [ + "▁YS", + -14.436039924621582 + ], + [ + "▁Krystal", + -14.4360933303833 + ], + [ + "▁Influenza", + -14.436103820800781 + ], + [ + "▁patri", + -14.436113357543945 + ], + [ + "▁hank", + -14.43612289428711 + ], + [ + "▁Yearly", + -14.436123847961426 + ], + [ + "icial", + -14.43614673614502 + ], + [ + "▁LTS", + -14.436229705810547 + ], + [ + "▁bronzer", + -14.436256408691406 + ], + [ + "▁Voss", + -14.436259269714355 + ], + [ + "▁Deg", + -14.436279296875 + ], + [ + "musical", + -14.436320304870605 + ], + [ + "directory", + -14.436395645141602 + ], + [ + "SID", + -14.436410903930664 + ], + [ + "▁nanotubes", + -14.43641471862793 + ], + [ + "▁corroborated", + -14.436448097229004 + ], + [ + "▁Gujarati", + -14.436463356018066 + ], + [ + "▁Peptide", + -14.436482429504395 + ], + [ + "▁Yvette", + -14.4365234375 + ], + [ + "▁alluvial", + -14.436583518981934 + ], + [ + "▁protectionist", + -14.436589241027832 + ], + [ + "Xx", + -14.436591148376465 + ], + [ + "rises", + -14.436619758605957 + ], + [ + "▁neutrons", + -14.436627388000488 + ], + [ + "▁sav", + -14.436637878417969 + ], + [ + "▁Marching", + -14.436670303344727 + ], + [ + "▁Occidental", + -14.436673164367676 + ], + [ + "▁headcount", + -14.436691284179688 + ], + [ + "▁infusing", + -14.436691284179688 + ], + [ + "identical", + -14.436694145202637 + ], + [ + "▁Andorra", + -14.436699867248535 + ], + [ + "▁Kristine", + -14.436707496643066 + ], + [ + "▁Brownsville", + -14.436722755432129 + ], + [ + "̶", + -14.436785697937012 + ], + [ + "advice", + -14.436848640441895 + ], + [ + "Label", + -14.436849594116211 + ], + [ + "▁eyeglass", + -14.436871528625488 + ], + [ + "▁Sli", + -14.436920166015625 + ], + [ + "▁visionaries", + -14.436928749084473 + ], + [ + "▁Retaining", + -14.436941146850586 + ], + [ + "▁weavers", + -14.43696117401123 + ], + [ + "▁Religions", + -14.436988830566406 + ], + [ + "▁aeration", + -14.436989784240723 + ], + [ + "▁Upgrading", + -14.43703556060791 + ], + [ + "zd", + -14.437057495117188 + ], + [ + "▁crocheting", + -14.437057495117188 + ], + [ + "▁wingspan", + -14.437076568603516 + ], + [ + "LOC", + -14.437116622924805 + ], + [ + "citing", + -14.437145233154297 + ], + [ + "waves", + -14.437152862548828 + ], + [ + "▁Maris", + -14.437155723571777 + ], + [ + "Scape", + -14.437163352966309 + ], + [ + "▁trickery", + -14.437185287475586 + ], + [ + "nada", + -14.437211036682129 + ], + [ + "ptic", + -14.437223434448242 + ], + [ + "CMC", + -14.43723201751709 + ], + [ + "▁FAB", + -14.43724250793457 + ], + [ + "▁endowments", + -14.43724536895752 + ], + [ + "▁Winona", + -14.437250137329102 + ], + [ + "▁INCIDENTAL", + -14.437265396118164 + ], + [ + "instrumentalist", + -14.437270164489746 + ], + [ + "▁outdone", + -14.437307357788086 + ], + [ + "FAA", + -14.437331199645996 + ], + [ + "▁Goldie", + -14.437345504760742 + ], + [ + "▁unbelief", + -14.437348365783691 + ], + [ + "▁OSCE", + -14.437356948852539 + ], + [ + "▁Depart", + -14.4373779296875 + ], + [ + "▁renditions", + -14.437385559082031 + ], + [ + "skate", + -14.437386512756348 + ], + [ + "▁vertebrates", + -14.437414169311523 + ], + [ + "▁polyps", + -14.437456130981445 + ], + [ + "▁Barrio", + -14.43752670288086 + ], + [ + "▁METAL", + -14.43757152557373 + ], + [ + "▁Octavia", + -14.437576293945312 + ], + [ + "▁homestay", + -14.437592506408691 + ], + [ + "junct", + -14.437594413757324 + ], + [ + "affe", + -14.43759536743164 + ], + [ + "▁uncooked", + -14.437609672546387 + ], + [ + "▁Nasir", + -14.437613487243652 + ], + [ + "barb", + -14.437638282775879 + ], + [ + "▁Fascist", + -14.437643051147461 + ], + [ + "Ty", + -14.437654495239258 + ], + [ + "983", + -14.437671661376953 + ], + [ + "▁Padded", + -14.437702178955078 + ], + [ + "Lincoln", + -14.437744140625 + ], + [ + "▁Ewan", + -14.437766075134277 + ], + [ + "▁cet", + -14.437782287597656 + ], + [ + "knot", + -14.437843322753906 + ], + [ + "nutrient", + -14.437860488891602 + ], + [ + "stä", + -14.437860488891602 + ], + [ + "▁ICF", + -14.43789291381836 + ], + [ + "sawa", + -14.437893867492676 + ], + [ + "Marine", + -14.437908172607422 + ], + [ + "orski", + -14.437915802001953 + ], + [ + "ම", + -14.437932968139648 + ], + [ + "GED", + -14.438002586364746 + ], + [ + "▁Jaeger", + -14.43807315826416 + ], + [ + "▁exhortation", + -14.438105583190918 + ], + [ + "▁riddles", + -14.438124656677246 + ], + [ + "▁sutures", + -14.438152313232422 + ], + [ + "▁Plainfield", + -14.438157081604004 + ], + [ + "onomic", + -14.438176155090332 + ], + [ + "Finish", + -14.438214302062988 + ], + [ + "mike", + -14.438236236572266 + ], + [ + "▁swiped", + -14.438319206237793 + ], + [ + "▁Sodom", + -14.438392639160156 + ], + [ + "▁Reportedly", + -14.438401222229004 + ], + [ + "▁foreboding", + -14.438444137573242 + ], + [ + "▁peddling", + -14.438446998596191 + ], + [ + "Moore", + -14.438450813293457 + ], + [ + "▁Learner", + -14.438474655151367 + ], + [ + "sborough", + -14.438481330871582 + ], + [ + "▁stubble", + -14.438506126403809 + ], + [ + "▁attributing", + -14.438543319702148 + ], + [ + "▁dwelt", + -14.438562393188477 + ], + [ + "▁yogi", + -14.438590049743652 + ], + [ + "▁volvo", + -14.438624382019043 + ], + [ + "▁Rotate", + -14.438660621643066 + ], + [ + "2100", + -14.438661575317383 + ], + [ + "▁Indi", + -14.438673973083496 + ], + [ + "▁Archipelago", + -14.43871021270752 + ], + [ + "▁synch", + -14.438718795776367 + ], + [ + "▁Australasian", + -14.438721656799316 + ], + [ + "▁IDA", + -14.438739776611328 + ], + [ + "▁Beh", + -14.438769340515137 + ], + [ + "▁Quarters", + -14.438838005065918 + ], + [ + "▁Jindal", + -14.438852310180664 + ], + [ + "▁Insulated", + -14.438868522644043 + ], + [ + "Belle", + -14.438874244689941 + ], + [ + "stamped", + -14.438876152038574 + ], + [ + "▁aftercare", + -14.4389009475708 + ], + [ + "▁Windham", + -14.43893814086914 + ], + [ + "▁magnificently", + -14.438974380493164 + ], + [ + "▁artichokes", + -14.439038276672363 + ], + [ + "sdorf", + -14.439055442810059 + ], + [ + "▁shadowing", + -14.439083099365234 + ], + [ + "之", + -14.439094543457031 + ], + [ + "▁trademarked", + -14.439248085021973 + ], + [ + "▁discolored", + -14.439337730407715 + ], + [ + "▁Gasoline", + -14.439340591430664 + ], + [ + "▁standup", + -14.439388275146484 + ], + [ + "▁whitewash", + -14.439414978027344 + ], + [ + "▁nullify", + -14.439440727233887 + ], + [ + "tables", + -14.439472198486328 + ], + [ + "▁Magneto", + -14.439476013183594 + ], + [ + "youtu", + -14.439497947692871 + ], + [ + "▁extruder", + -14.439528465270996 + ], + [ + "▁Footnote", + -14.439543724060059 + ], + [ + "▁inlaid", + -14.439547538757324 + ], + [ + "▁defenseless", + -14.439576148986816 + ], + [ + "▁Cv", + -14.439619064331055 + ], + [ + "▁RAP", + -14.439765930175781 + ], + [ + "▁innuendo", + -14.43980598449707 + ], + [ + "lege", + -14.439809799194336 + ], + [ + "▁Helmets", + -14.43982982635498 + ], + [ + "▁plumage", + -14.439842224121094 + ], + [ + "icos", + -14.43991756439209 + ], + [ + "glen", + -14.439937591552734 + ], + [ + "▁Propulsion", + -14.439957618713379 + ], + [ + "▁Hindustan", + -14.439983367919922 + ], + [ + "▁curbside", + -14.43999195098877 + ], + [ + "रा", + -14.44001579284668 + ], + [ + "wati", + -14.440030097961426 + ], + [ + "ggio", + -14.440044403076172 + ], + [ + "▁METHODS", + -14.4400634765625 + ], + [ + "▁cranks", + -14.440081596374512 + ], + [ + "▁inclusivity", + -14.440126419067383 + ], + [ + "▁TEMP", + -14.440134048461914 + ], + [ + "▁Cleary", + -14.44013786315918 + ], + [ + "▁fervently", + -14.440164566040039 + ], + [ + "▁despatch", + -14.440234184265137 + ], + [ + "▁mercilessly", + -14.440258979797363 + ], + [ + "▁nah", + -14.440289497375488 + ], + [ + "▁banknotes", + -14.440302848815918 + ], + [ + "▁Shimla", + -14.44031047821045 + ], + [ + "▁tamed", + -14.440360069274902 + ], + [ + "twist", + -14.440375328063965 + ], + [ + "▁Focal", + -14.440462112426758 + ], + [ + "blu", + -14.440467834472656 + ], + [ + "▁tras", + -14.440479278564453 + ], + [ + "▁Dua", + -14.440509796142578 + ], + [ + "▁Guadalajara", + -14.44051456451416 + ], + [ + "▁stomped", + -14.440528869628906 + ], + [ + "▁466", + -14.440550804138184 + ], + [ + "▁Columbine", + -14.44056510925293 + ], + [ + "ihi", + -14.440568923950195 + ], + [ + "931", + -14.440592765808105 + ], + [ + "▁rejections", + -14.440627098083496 + ], + [ + "▁bookmaker", + -14.440661430358887 + ], + [ + "▁distilleries", + -14.44068717956543 + ], + [ + "▁Raccoon", + -14.440720558166504 + ], + [ + "▁rebelled", + -14.44072437286377 + ], + [ + "stability", + -14.440740585327148 + ], + [ + "▁Cinemas", + -14.440752983093262 + ], + [ + "▁Crabtree", + -14.440774917602539 + ], + [ + "aww", + -14.440787315368652 + ], + [ + "▁Nautical", + -14.440796852111816 + ], + [ + "▁INSIDE", + -14.440810203552246 + ], + [ + "▁Delft", + -14.440849304199219 + ], + [ + "▁Priv", + -14.440850257873535 + ], + [ + "▁antennae", + -14.440878868103027 + ], + [ + "▁emulating", + -14.44089412689209 + ], + [ + "Christians", + -14.440945625305176 + ], + [ + "bj", + -14.440945625305176 + ], + [ + "immun", + -14.440953254699707 + ], + [ + "▁Keyless", + -14.440977096557617 + ], + [ + "▁Suspended", + -14.441036224365234 + ], + [ + "▁Huma", + -14.441069602966309 + ], + [ + "1935", + -14.441136360168457 + ], + [ + "▁Theodor", + -14.441191673278809 + ], + [ + "▁humiliate", + -14.441222190856934 + ], + [ + "▁pantomime", + -14.441286087036133 + ], + [ + "▁Oskar", + -14.441304206848145 + ], + [ + "▁infraction", + -14.441364288330078 + ], + [ + "▁ghostwriter", + -14.441384315490723 + ], + [ + "shka", + -14.441389083862305 + ], + [ + "▁workspaces", + -14.44140911102295 + ], + [ + "▁disengage", + -14.441417694091797 + ], + [ + "▁gargantuan", + -14.441529273986816 + ], + [ + "▁Hammersmith", + -14.44153118133545 + ], + [ + "▁pinky", + -14.44155216217041 + ], + [ + "▁Treated", + -14.441610336303711 + ], + [ + "▁chatbots", + -14.441628456115723 + ], + [ + "▁mich", + -14.441642761230469 + ], + [ + "▁barbershop", + -14.441648483276367 + ], + [ + "▁steppe", + -14.44168472290039 + ], + [ + "▁Danbury", + -14.441691398620605 + ], + [ + "ports", + -14.44170093536377 + ], + [ + "▁Hagan", + -14.441707611083984 + ], + [ + "▁Cardigan", + -14.44171142578125 + ], + [ + "▁gecko", + -14.441762924194336 + ], + [ + "▁hovers", + -14.441762924194336 + ], + [ + "Empire", + -14.441774368286133 + ], + [ + "▁alms", + -14.44179916381836 + ], + [ + "▁DCP", + -14.441802024841309 + ], + [ + "caro", + -14.441814422607422 + ], + [ + "▁MMC", + -14.441814422607422 + ], + [ + "bner", + -14.441838264465332 + ], + [ + "▁WILLIAMS", + -14.441852569580078 + ], + [ + "▁Banjo", + -14.441861152648926 + ], + [ + "Clinton", + -14.441864013671875 + ], + [ + "▁relinquished", + -14.441900253295898 + ], + [ + "loa", + -14.441976547241211 + ], + [ + "proc", + -14.44198989868164 + ], + [ + "1936", + -14.442000389099121 + ], + [ + "▁Astral", + -14.442014694213867 + ], + [ + "▁logon", + -14.442017555236816 + ], + [ + "▁virulence", + -14.442018508911133 + ], + [ + "Fur", + -14.442025184631348 + ], + [ + "▁Ghe", + -14.442041397094727 + ], + [ + "indicating", + -14.442056655883789 + ], + [ + "▁Needles", + -14.4420747756958 + ], + [ + "LSE", + -14.442102432250977 + ], + [ + "▁deconstruction", + -14.442119598388672 + ], + [ + "▁Luxor", + -14.442147254943848 + ], + [ + "kinetic", + -14.442172050476074 + ], + [ + "▁Benito", + -14.442205429077148 + ], + [ + "▁coughed", + -14.442208290100098 + ], + [ + "▁treachery", + -14.442246437072754 + ], + [ + "▁afresh", + -14.44227123260498 + ], + [ + "▁Deficit", + -14.442272186279297 + ], + [ + "▁Tabor", + -14.442296028137207 + ], + [ + "oline", + -14.44229793548584 + ], + [ + "▁bullshit", + -14.44230842590332 + ], + [ + "▁Crossover", + -14.442336082458496 + ], + [ + "bril", + -14.442337989807129 + ], + [ + "▁reorder", + -14.44235610961914 + ], + [ + "▁footrest", + -14.442374229431152 + ], + [ + "▁Wadi", + -14.442498207092285 + ], + [ + "▁Feat", + -14.44256591796875 + ], + [ + "umab", + -14.442566871643066 + ], + [ + "▁ECE", + -14.442583084106445 + ], + [ + "omorph", + -14.442593574523926 + ], + [ + "▁courtyards", + -14.442595481872559 + ], + [ + "▁usurp", + -14.44260025024414 + ], + [ + "ayi", + -14.442607879638672 + ], + [ + "▁Capturing", + -14.442609786987305 + ], + [ + "JK", + -14.442642211914062 + ], + [ + "▁476", + -14.44265079498291 + ], + [ + "▁parsed", + -14.442707061767578 + ], + [ + "▁unchallenged", + -14.44272232055664 + ], + [ + "▁Taman", + -14.442756652832031 + ], + [ + "Hal", + -14.442761421203613 + ], + [ + "▁SWIFT", + -14.442827224731445 + ], + [ + "ാ", + -14.442896842956543 + ], + [ + "▁708", + -14.44290542602539 + ], + [ + "▁Eindhoven", + -14.442940711975098 + ], + [ + "▁fortify", + -14.442952156066895 + ], + [ + "▁idiopathic", + -14.442972183227539 + ], + [ + "inae", + -14.442978858947754 + ], + [ + "tivity", + -14.442980766296387 + ], + [ + "▁immunology", + -14.442980766296387 + ], + [ + "▁capillaries", + -14.442987442016602 + ], + [ + "kett", + -14.442991256713867 + ], + [ + "▁828", + -14.443014144897461 + ], + [ + "▁Sze", + -14.443014144897461 + ], + [ + "iasis", + -14.443053245544434 + ], + [ + "▁accumulator", + -14.443056106567383 + ], + [ + "▁monte", + -14.443056106567383 + ], + [ + "eling", + -14.4430570602417 + ], + [ + "mier", + -14.443068504333496 + ], + [ + "▁forgets", + -14.443087577819824 + ], + [ + "▁SDGs", + -14.443096160888672 + ], + [ + "▁Pras", + -14.443116188049316 + ], + [ + "▁indecisive", + -14.443122863769531 + ], + [ + "▁marmalade", + -14.443124771118164 + ], + [ + "▁Amalfi", + -14.443161964416504 + ], + [ + "Lip", + -14.443233489990234 + ], + [ + "081", + -14.44324016571045 + ], + [ + "▁disregarding", + -14.44327449798584 + ], + [ + "▁blackboard", + -14.443305015563965 + ], + [ + "Status", + -14.443312644958496 + ], + [ + "▁Inheritance", + -14.443342208862305 + ], + [ + "▁dampened", + -14.44337272644043 + ], + [ + "nw", + -14.443405151367188 + ], + [ + "▁Faro", + -14.44340705871582 + ], + [ + "▁Faisal", + -14.443431854248047 + ], + [ + "▁reciprocate", + -14.443450927734375 + ], + [ + "▁moisturized", + -14.443455696105957 + ], + [ + "▁MacLeod", + -14.443506240844727 + ], + [ + "▁Hens", + -14.443507194519043 + ], + [ + "▁Insured", + -14.443517684936523 + ], + [ + "▁765", + -14.44354248046875 + ], + [ + "ظ", + -14.443559646606445 + ], + [ + "▁delhi", + -14.443608283996582 + ], + [ + "▁crediting", + -14.443626403808594 + ], + [ + "▁Fears", + -14.443655014038086 + ], + [ + "▁lentil", + -14.443711280822754 + ], + [ + "▁sorcery", + -14.44372844696045 + ], + [ + "▁UND", + -14.443729400634766 + ], + [ + "со", + -14.443766593933105 + ], + [ + "כ", + -14.443787574768066 + ], + [ + "▁più", + -14.443818092346191 + ], + [ + "▁cascades", + -14.443819999694824 + ], + [ + "▁NOV", + -14.443824768066406 + ], + [ + "▁underlining", + -14.443842887878418 + ], + [ + "▁SAW", + -14.443852424621582 + ], + [ + "▁Dilemma", + -14.443857192993164 + ], + [ + "▁Venues", + -14.443868637084961 + ], + [ + "▁FIGHT", + -14.443873405456543 + ], + [ + "▁jut", + -14.443882942199707 + ], + [ + "oyl", + -14.443906784057617 + ], + [ + "suggest", + -14.443941116333008 + ], + [ + "anchor", + -14.443968772888184 + ], + [ + "nter", + -14.444053649902344 + ], + [ + "▁wrangling", + -14.444058418273926 + ], + [ + "▁coerce", + -14.444066047668457 + ], + [ + "▁pricier", + -14.444082260131836 + ], + [ + "▁Moni", + -14.444108009338379 + ], + [ + "▁Darjeeling", + -14.44411849975586 + ], + [ + "▁Shinzo", + -14.444135665893555 + ], + [ + "▁Nestor", + -14.444147109985352 + ], + [ + "▁Grapes", + -14.444150924682617 + ], + [ + "▁simp", + -14.44415283203125 + ], + [ + "▁woodpecker", + -14.444156646728516 + ], + [ + "Career", + -14.444194793701172 + ], + [ + "▁Popper", + -14.444219589233398 + ], + [ + "phora", + -14.444230079650879 + ], + [ + "▁Malaya", + -14.444233894348145 + ], + [ + "▁Blackwood", + -14.444281578063965 + ], + [ + "▁Huston", + -14.44432258605957 + ], + [ + "▁barricade", + -14.444375991821289 + ], + [ + "Vir", + -14.44438362121582 + ], + [ + "▁Abhishek", + -14.444387435913086 + ], + [ + "listening", + -14.444403648376465 + ], + [ + "▁ig", + -14.44442081451416 + ], + [ + "▁hissed", + -14.444464683532715 + ], + [ + "▁Absence", + -14.44446849822998 + ], + [ + "▁extendable", + -14.444501876831055 + ], + [ + "▁RECORD", + -14.444535255432129 + ], + [ + "▁Refuse", + -14.444539070129395 + ], + [ + "▁pathophysiology", + -14.444539070129395 + ], + [ + "▁cytotec", + -14.444547653198242 + ], + [ + "▁underlies", + -14.44456958770752 + ], + [ + "▁borrows", + -14.44457721710205 + ], + [ + "▁palladium", + -14.44457721710205 + ], + [ + "replacement", + -14.444611549377441 + ], + [ + "▁MEET", + -14.444622039794922 + ], + [ + "▁904", + -14.444662094116211 + ], + [ + "▁Riverview", + -14.444663047790527 + ], + [ + "▁fumbling", + -14.444666862487793 + ], + [ + "▁Krav", + -14.444671630859375 + ], + [ + "▁gifs", + -14.444683074951172 + ], + [ + "▁Rajya", + -14.44471549987793 + ], + [ + "ше", + -14.444717407226562 + ], + [ + "▁HEC", + -14.444726943969727 + ], + [ + "ansi", + -14.444740295410156 + ], + [ + "▁Chime", + -14.44474983215332 + ], + [ + "▁heaping", + -14.444767951965332 + ], + [ + "▁Psychologists", + -14.444779396057129 + ], + [ + "▁appointee", + -14.444872856140137 + ], + [ + "▁Snowman", + -14.444915771484375 + ], + [ + "▁wetter", + -14.444937705993652 + ], + [ + "▁grandstand", + -14.4450044631958 + ], + [ + "1933", + -14.445023536682129 + ], + [ + "▁Brendon", + -14.445029258728027 + ], + [ + "▁Yaku", + -14.44507884979248 + ], + [ + "▁Albrecht", + -14.445093154907227 + ], + [ + "há", + -14.445122718811035 + ], + [ + "▁shrapnel", + -14.445128440856934 + ], + [ + "yuk", + -14.445174217224121 + ], + [ + "▁overheated", + -14.445213317871094 + ], + [ + "▁teacup", + -14.44521713256836 + ], + [ + "力", + -14.44522476196289 + ], + [ + "▁satan", + -14.44528865814209 + ], + [ + "▁UNT", + -14.445348739624023 + ], + [ + "ELE", + -14.445356369018555 + ], + [ + "▁shard", + -14.44538688659668 + ], + [ + "▁э", + -14.445413589477539 + ], + [ + "▁Stomp", + -14.445487976074219 + ], + [ + "▁shavings", + -14.445538520812988 + ], + [ + "▁Migrant", + -14.445597648620605 + ], + [ + "▁Slough", + -14.445627212524414 + ], + [ + "▁Parse", + -14.445685386657715 + ], + [ + "▁amex", + -14.445722579956055 + ], + [ + "▁hypoglycemia", + -14.445741653442383 + ], + [ + "▁Rivet", + -14.445748329162598 + ], + [ + "BON", + -14.445778846740723 + ], + [ + "Ivoire", + -14.445781707763672 + ], + [ + "▁Locator", + -14.445816040039062 + ], + [ + "▁Naidu", + -14.445833206176758 + ], + [ + "throwing", + -14.445886611938477 + ], + [ + "▁Rebate", + -14.445910453796387 + ], + [ + "▁déc", + -14.44593334197998 + ], + [ + "▁DeGeneres", + -14.445940017700195 + ], + [ + "▁Migraine", + -14.445950508117676 + ], + [ + "▁ATLANTA", + -14.445971488952637 + ], + [ + "▁annealing", + -14.445972442626953 + ], + [ + "▁posse", + -14.44601058959961 + ], + [ + "floating", + -14.446020126342773 + ], + [ + "▁staking", + -14.446020126342773 + ], + [ + "▁cacti", + -14.446074485778809 + ], + [ + "▁Bugatti", + -14.44608211517334 + ], + [ + "▁horseradish", + -14.446093559265137 + ], + [ + "ду", + -14.44610595703125 + ], + [ + "Package", + -14.446128845214844 + ], + [ + "▁highschool", + -14.446136474609375 + ], + [ + "dey", + -14.446158409118652 + ], + [ + "viii", + -14.446181297302246 + ], + [ + "▁rhinestones", + -14.446196556091309 + ], + [ + "▁Hidalgo", + -14.446231842041016 + ], + [ + "▁decried", + -14.446242332458496 + ], + [ + "lje", + -14.44626522064209 + ], + [ + "▁phosphatase", + -14.44626522064209 + ], + [ + "ckling", + -14.446370124816895 + ], + [ + "pso", + -14.446383476257324 + ], + [ + "bula", + -14.44638442993164 + ], + [ + "▁Bylaws", + -14.446418762207031 + ], + [ + "▁Zanu", + -14.44644832611084 + ], + [ + "▁Glucose", + -14.446475982666016 + ], + [ + "▁468", + -14.446496963500977 + ], + [ + "▁dislodge", + -14.446513175964355 + ], + [ + "▁reassigned", + -14.446523666381836 + ], + [ + "▁Nephi", + -14.446524620056152 + ], + [ + "▁Yor", + -14.446558952331543 + ], + [ + "▁rhinestone", + -14.44664192199707 + ], + [ + "▁crafters", + -14.446642875671387 + ], + [ + "ound", + -14.446654319763184 + ], + [ + "▁Bhubaneswar", + -14.446660995483398 + ], + [ + "▁grapevine", + -14.446669578552246 + ], + [ + "▁Cascades", + -14.446672439575195 + ], + [ + "▁McKnight", + -14.44667911529541 + ], + [ + "odia", + -14.446816444396973 + ], + [ + "▁LCS", + -14.446844100952148 + ], + [ + "▁Sweetheart", + -14.446852684020996 + ], + [ + "▁surnames", + -14.446900367736816 + ], + [ + "ilu", + -14.446916580200195 + ], + [ + "▁abstracted", + -14.446917533874512 + ], + [ + "▁Congresswoman", + -14.446938514709473 + ], + [ + "▁PPO", + -14.446952819824219 + ], + [ + "gener", + -14.446971893310547 + ], + [ + "▁mares", + -14.446977615356445 + ], + [ + "▁gags", + -14.447001457214355 + ], + [ + "BEC", + -14.44700813293457 + ], + [ + "▁Radial", + -14.447017669677734 + ], + [ + "CLA", + -14.447057723999023 + ], + [ + "▁Carbide", + -14.447088241577148 + ], + [ + "▁Moana", + -14.447102546691895 + ], + [ + "▁Grapefruit", + -14.447139739990234 + ], + [ + "▁dreamers", + -14.447152137756348 + ], + [ + "vue", + -14.447161674499512 + ], + [ + "▁Fanatic", + -14.447169303894043 + ], + [ + "▁Mino", + -14.44718074798584 + ], + [ + "REP", + -14.447190284729004 + ], + [ + "Mg", + -14.447227478027344 + ], + [ + "▁£80", + -14.447229385375977 + ], + [ + "heartedly", + -14.44726276397705 + ], + [ + "▁pb", + -14.447275161743164 + ], + [ + "▁825", + -14.447282791137695 + ], + [ + "Function", + -14.447347640991211 + ], + [ + "▁reinstalled", + -14.447351455688477 + ], + [ + "▁charade", + -14.44738483428955 + ], + [ + "▁dazzled", + -14.447386741638184 + ], + [ + "micron", + -14.447402954101562 + ], + [ + "▁dolly", + -14.447433471679688 + ], + [ + "ами", + -14.44748592376709 + ], + [ + "▁shoveling", + -14.447509765625 + ], + [ + "▁emblems", + -14.447530746459961 + ], + [ + "▁TDP", + -14.447546005249023 + ], + [ + "▁Jett", + -14.447608947753906 + ], + [ + "▁Posey", + -14.447614669799805 + ], + [ + "▁Hacienda", + -14.447628021240234 + ], + [ + "▁Infographic", + -14.447640419006348 + ], + [ + "▁Incentives", + -14.447651863098145 + ], + [ + "DIN", + -14.447673797607422 + ], + [ + "▁Cee", + -14.44775390625 + ], + [ + "lunch", + -14.447755813598633 + ], + [ + "▁Fiore", + -14.447796821594238 + ], + [ + "▁Fragment", + -14.447818756103516 + ], + [ + "▁plotter", + -14.447819709777832 + ], + [ + "▁Kalin", + -14.44782543182373 + ], + [ + "kovsky", + -14.447864532470703 + ], + [ + "▁Nineteenth", + -14.447884559631348 + ], + [ + "▁Martell", + -14.447946548461914 + ], + [ + "MARK", + -14.448005676269531 + ], + [ + "▁buttoned", + -14.448005676269531 + ], + [ + "heng", + -14.448017120361328 + ], + [ + "▁Experiencing", + -14.448034286499023 + ], + [ + "▁Gaining", + -14.448060989379883 + ], + [ + "undu", + -14.448088645935059 + ], + [ + "▁optimizations", + -14.44811725616455 + ], + [ + "▁verandah", + -14.448127746582031 + ], + [ + "▁Charters", + -14.448164939880371 + ], + [ + "▁memento", + -14.44817066192627 + ], + [ + "▁Dota", + -14.448179244995117 + ], + [ + "▁permutations", + -14.44819164276123 + ], + [ + "relle", + -14.448229789733887 + ], + [ + "▁croc", + -14.448232650756836 + ], + [ + "controller", + -14.448318481445312 + ], + [ + "▁1020", + -14.44836139678955 + ], + [ + "▁Bosh", + -14.448389053344727 + ], + [ + "▁Trimble", + -14.448413848876953 + ], + [ + "▁recessive", + -14.448469161987305 + ], + [ + "dancer", + -14.448509216308594 + ], + [ + "▁Hemi", + -14.448558807373047 + ], + [ + "calm", + -14.448596000671387 + ], + [ + "▁Hamburger", + -14.448634147644043 + ], + [ + "▁Horrible", + -14.448710441589355 + ], + [ + "▁italy", + -14.448714256286621 + ], + [ + "059", + -14.448755264282227 + ], + [ + "▁Interfaces", + -14.4487886428833 + ], + [ + "1937", + -14.448807716369629 + ], + [ + "tyre", + -14.448807716369629 + ], + [ + "ау", + -14.448835372924805 + ], + [ + "▁pelt", + -14.448846817016602 + ], + [ + "mary", + -14.44887638092041 + ], + [ + "▁saturate", + -14.448882102966309 + ], + [ + "dermal", + -14.448953628540039 + ], + [ + "▁Believers", + -14.44898509979248 + ], + [ + "▁Intercept", + -14.449014663696289 + ], + [ + "lodge", + -14.449016571044922 + ], + [ + "▁Ponder", + -14.449019432067871 + ], + [ + "Away", + -14.449051856994629 + ], + [ + "relatively", + -14.449063301086426 + ], + [ + "▁Statewide", + -14.44909381866455 + ], + [ + "pads", + -14.449131965637207 + ], + [ + "▁Matu", + -14.449206352233887 + ], + [ + "ision", + -14.449213027954102 + ], + [ + "▁Giraffe", + -14.44921588897705 + ], + [ + "▁broil", + -14.44921588897705 + ], + [ + "yay", + -14.449233055114746 + ], + [ + "▁Interventions", + -14.449247360229492 + ], + [ + "▁Tib", + -14.449275970458984 + ], + [ + "▁Artie", + -14.4492769241333 + ], + [ + "Buzz", + -14.449277877807617 + ], + [ + "▁Doreen", + -14.449302673339844 + ], + [ + "skiy", + -14.44934368133545 + ], + [ + "▁Palla", + -14.449371337890625 + ], + [ + "▁truer", + -14.449393272399902 + ], + [ + "▁Krys", + -14.4494047164917 + ], + [ + "▁PFC", + -14.449433326721191 + ], + [ + "▁Karol", + -14.449434280395508 + ], + [ + "doodle", + -14.449447631835938 + ], + [ + "▁narrates", + -14.44946002960205 + ], + [ + "▁windsurfing", + -14.449470520019531 + ], + [ + "▁Bigelow", + -14.449548721313477 + ], + [ + "hibi", + -14.449625968933105 + ], + [ + "▁Simms", + -14.44964599609375 + ], + [ + "orium", + -14.449663162231445 + ], + [ + "▁dra", + -14.449679374694824 + ], + [ + "▁SDI", + -14.449684143066406 + ], + [ + "▁Gare", + -14.44970703125 + ], + [ + "▁kami", + -14.449740409851074 + ], + [ + "Pie", + -14.449772834777832 + ], + [ + "atter", + -14.44979190826416 + ], + [ + "NCC", + -14.449792861938477 + ], + [ + "▁childless", + -14.449810028076172 + ], + [ + "▁ROLL", + -14.449811935424805 + ], + [ + "▁sundae", + -14.44983959197998 + ], + [ + "▁Whitehouse", + -14.449845314025879 + ], + [ + "ernal", + -14.449882507324219 + ], + [ + "▁pou", + -14.449898719787598 + ], + [ + "▁fixings", + -14.44992446899414 + ], + [ + "▁Rakhine", + -14.44997787475586 + ], + [ + "▁OCLC", + -14.449997901916504 + ], + [ + "▁Sensation", + -14.44999885559082 + ], + [ + "▁lunge", + -14.450032234191895 + ], + [ + "▁398", + -14.450078010559082 + ], + [ + "法", + -14.450085639953613 + ], + [ + "▁DIGITAL", + -14.450087547302246 + ], + [ + "▁SIA", + -14.450098037719727 + ], + [ + "▁Staircase", + -14.450115203857422 + ], + [ + "▁Geez", + -14.450169563293457 + ], + [ + "▁RSC", + -14.450252532958984 + ], + [ + "mug", + -14.450267791748047 + ], + [ + "▁Colosseum", + -14.450286865234375 + ], + [ + "xan", + -14.45030403137207 + ], + [ + "LTD", + -14.450325012207031 + ], + [ + "Shan", + -14.450345993041992 + ], + [ + "partial", + -14.450346946716309 + ], + [ + "接", + -14.450362205505371 + ], + [ + "▁RRP", + -14.45040512084961 + ], + [ + "▁Menendez", + -14.450425148010254 + ], + [ + "smokers", + -14.450472831726074 + ], + [ + "▁chronicling", + -14.450479507446289 + ], + [ + "Length", + -14.450485229492188 + ], + [ + "▁Hesse", + -14.450508117675781 + ], + [ + "▁Kessel", + -14.450523376464844 + ], + [ + "themes", + -14.450532913208008 + ], + [ + "ALD", + -14.450541496276855 + ], + [ + "▁LEG", + -14.450560569763184 + ], + [ + "▁Dynamite", + -14.450566291809082 + ], + [ + "▁Denzel", + -14.450567245483398 + ], + [ + "▁leptin", + -14.450571060180664 + ], + [ + "tonne", + -14.450618743896484 + ], + [ + "▁Abercrombie", + -14.4506254196167 + ], + [ + "▁changeover", + -14.450701713562012 + ], + [ + "▁Russel", + -14.450847625732422 + ], + [ + "▁harmoniously", + -14.4508695602417 + ], + [ + "vp", + -14.450905799865723 + ], + [ + "Vac", + -14.450922012329102 + ], + [ + "▁Rup", + -14.450932502746582 + ], + [ + "▁disbursement", + -14.450932502746582 + ], + [ + "mery", + -14.450942993164062 + ], + [ + "pressing", + -14.450970649719238 + ], + [ + "▁outrageously", + -14.450973510742188 + ], + [ + "▁Gwyneth", + -14.451022148132324 + ], + [ + "▁nomads", + -14.451057434082031 + ], + [ + "▁surcharges", + -14.451058387756348 + ], + [ + "ика", + -14.451067924499512 + ], + [ + "▁secs", + -14.451070785522461 + ], + [ + "Deb", + -14.451074600219727 + ], + [ + "grace", + -14.451144218444824 + ], + [ + "▁Placer", + -14.45114517211914 + ], + [ + "äu", + -14.451173782348633 + ], + [ + "ROOM", + -14.45119571685791 + ], + [ + "urus", + -14.451205253601074 + ], + [ + "▁quantifying", + -14.451247215270996 + ], + [ + "explore", + -14.451269149780273 + ], + [ + "ATCH", + -14.4512939453125 + ], + [ + "▁sear", + -14.4512939453125 + ], + [ + "▁tetracycline", + -14.451343536376953 + ], + [ + "▁carpark", + -14.45136547088623 + ], + [ + "▁tibia", + -14.451369285583496 + ], + [ + "stasis", + -14.45138168334961 + ], + [ + "runs", + -14.451398849487305 + ], + [ + "iferous", + -14.451469421386719 + ], + [ + "QP", + -14.451510429382324 + ], + [ + "▁gull", + -14.451543807983398 + ], + [ + "▁Wiseman", + -14.4515962600708 + ], + [ + "accepted", + -14.451629638671875 + ], + [ + "▁Thelma", + -14.451664924621582 + ], + [ + "ahem", + -14.451666831970215 + ], + [ + "▁slasher", + -14.451669692993164 + ], + [ + "▁sensuous", + -14.45167064666748 + ], + [ + "▁permissive", + -14.4517240524292 + ], + [ + "▁Oregonian", + -14.451741218566895 + ], + [ + "▁Xiamen", + -14.451741218566895 + ], + [ + "graders", + -14.451864242553711 + ], + [ + "Certified", + -14.451866149902344 + ], + [ + "▁Rha", + -14.451911926269531 + ], + [ + "▁Arlo", + -14.452057838439941 + ], + [ + "▁Enamel", + -14.452065467834473 + ], + [ + "ivities", + -14.452066421508789 + ], + [ + "▁booms", + -14.452104568481445 + ], + [ + "▁Grae", + -14.452181816101074 + ], + [ + "▁Whitfield", + -14.452191352844238 + ], + [ + "yur", + -14.452218055725098 + ], + [ + "▁scolded", + -14.452232360839844 + ], + [ + "Vitamin", + -14.45228385925293 + ], + [ + "ication", + -14.452303886413574 + ], + [ + "▁nursed", + -14.452305793762207 + ], + [ + "fac", + -14.452312469482422 + ], + [ + "▁Kraus", + -14.452327728271484 + ], + [ + "▁Trekking", + -14.45238208770752 + ], + [ + "▁HCP", + -14.452384948730469 + ], + [ + "▁marvels", + -14.452384948730469 + ], + [ + "opus", + -14.45240592956543 + ], + [ + "etsu", + -14.45241641998291 + ], + [ + "▁Assignments", + -14.452421188354492 + ], + [ + "▁Magee", + -14.452442169189453 + ], + [ + "▁RIT", + -14.452444076538086 + ], + [ + "▁OPI", + -14.452447891235352 + ], + [ + "▁RPI", + -14.452448844909668 + ], + [ + "valu", + -14.452506065368652 + ], + [ + "barred", + -14.452512741088867 + ], + [ + "▁479", + -14.452516555786133 + ], + [ + "▁SFP", + -14.452532768249512 + ], + [ + "Kon", + -14.452555656433105 + ], + [ + "▁CMD", + -14.452604293823242 + ], + [ + "▁Discovered", + -14.452618598937988 + ], + [ + "▁plummeting", + -14.452669143676758 + ], + [ + "▁PIR", + -14.452725410461426 + ], + [ + "▁Rp", + -14.452767372131348 + ], + [ + "▁DIFFERENT", + -14.452814102172852 + ], + [ + "▁netball", + -14.45284366607666 + ], + [ + "982", + -14.452844619750977 + ], + [ + "▁Bowes", + -14.45285415649414 + ], + [ + "▁mockup", + -14.45287036895752 + ], + [ + "▁WMS", + -14.452873229980469 + ], + [ + "Organ", + -14.452881813049316 + ], + [ + "▁slipcovers", + -14.452889442443848 + ], + [ + "Eagle", + -14.45291519165039 + ], + [ + "▁Clio", + -14.452923774719238 + ], + [ + "▁Lucius", + -14.452933311462402 + ], + [ + "unya", + -14.452954292297363 + ], + [ + "▁clamor", + -14.452973365783691 + ], + [ + "▁Lebron", + -14.452986717224121 + ], + [ + "▁Empathy", + -14.452997207641602 + ], + [ + "▁gills", + -14.45301342010498 + ], + [ + "foods", + -14.453030586242676 + ], + [ + "▁crisps", + -14.453075408935547 + ], + [ + "laptop", + -14.453083992004395 + ], + [ + "▁extrovert", + -14.453091621398926 + ], + [ + "▁Roscoe", + -14.453202247619629 + ], + [ + "▁hibiscus", + -14.45322322845459 + ], + [ + "ULAR", + -14.453234672546387 + ], + [ + "▁Capable", + -14.45326042175293 + ], + [ + "chase", + -14.453269958496094 + ], + [ + "▁kimchi", + -14.453272819519043 + ], + [ + "▁Amara", + -14.4533052444458 + ], + [ + "▁ONCE", + -14.453329086303711 + ], + [ + "rée", + -14.453339576721191 + ], + [ + "▁DeSantis", + -14.45339298248291 + ], + [ + "▁Sita", + -14.453428268432617 + ], + [ + "▁underdogs", + -14.453438758850098 + ], + [ + "tracked", + -14.453474044799805 + ], + [ + "▁Deeds", + -14.453527450561523 + ], + [ + "gasp", + -14.453579902648926 + ], + [ + "▁Rodrigues", + -14.45358657836914 + ], + [ + "▁LeBlanc", + -14.453597068786621 + ], + [ + "▁Backing", + -14.453600883483887 + ], + [ + "▁slacks", + -14.453634262084961 + ], + [ + "▁Franck", + -14.453645706176758 + ], + [ + "▁bushing", + -14.453652381896973 + ], + [ + "▁spearheading", + -14.453657150268555 + ], + [ + "tock", + -14.453707695007324 + ], + [ + "▁HRM", + -14.453747749328613 + ], + [ + "▁Revive", + -14.453778266906738 + ], + [ + "▁Relieve", + -14.453789710998535 + ], + [ + "minder", + -14.453791618347168 + ], + [ + "▁Engle", + -14.45383358001709 + ], + [ + "BJP", + -14.453865051269531 + ], + [ + "▁Nuke", + -14.453869819641113 + ], + [ + "1919", + -14.453873634338379 + ], + [ + "▁stratosphere", + -14.453896522521973 + ], + [ + "▁Quer", + -14.45391845703125 + ], + [ + "▁Lovato", + -14.453985214233398 + ], + [ + "▁Daytime", + -14.453993797302246 + ], + [ + "▁NOVA", + -14.454038619995117 + ], + [ + "▁elle", + -14.45410442352295 + ], + [ + "▁NHTSA", + -14.454107284545898 + ], + [ + "▁prays", + -14.45413875579834 + ], + [ + "▁Compromise", + -14.454150199890137 + ], + [ + "effer", + -14.454192161560059 + ], + [ + "blower", + -14.45424747467041 + ], + [ + "▁Middlebury", + -14.454259872436523 + ], + [ + "▁warheads", + -14.454283714294434 + ], + [ + "pada", + -14.454291343688965 + ], + [ + "ijo", + -14.454302787780762 + ], + [ + "▁Divider", + -14.454341888427734 + ], + [ + "▁wrest", + -14.454351425170898 + ], + [ + "▁MIAMI", + -14.454370498657227 + ], + [ + "▁Hennessy", + -14.45438289642334 + ], + [ + "▁NEEDS", + -14.454386711120605 + ], + [ + "▁NOC", + -14.454387664794922 + ], + [ + "Lay", + -14.45439624786377 + ], + [ + "presentation", + -14.454397201538086 + ], + [ + "branding", + -14.45445442199707 + ], + [ + "biting", + -14.454462051391602 + ], + [ + "▁SNS", + -14.454479217529297 + ], + [ + "▁Karina", + -14.454512596130371 + ], + [ + "▁Pfeiffer", + -14.454513549804688 + ], + [ + "▁unsurprising", + -14.454540252685547 + ], + [ + "▁shirtless", + -14.454548835754395 + ], + [ + "▁Origami", + -14.454556465148926 + ], + [ + "▁Sligo", + -14.454585075378418 + ], + [ + "ASX", + -14.454615592956543 + ], + [ + "▁Malloy", + -14.454651832580566 + ], + [ + "▁shoplifting", + -14.45466136932373 + ], + [ + "▁ook", + -14.45466423034668 + ], + [ + "icula", + -14.454670906066895 + ], + [ + "▁dehydrogenase", + -14.45469856262207 + ], + [ + "BQ", + -14.454710960388184 + ], + [ + "▁Retrieve", + -14.454771995544434 + ], + [ + "▁chestnuts", + -14.454910278320312 + ], + [ + "▁Colette", + -14.454913139343262 + ], + [ + "avu", + -14.454959869384766 + ], + [ + "nye", + -14.454973220825195 + ], + [ + "▁Uzbek", + -14.454991340637207 + ], + [ + "IOUS", + -14.454998016357422 + ], + [ + "splash", + -14.455102920532227 + ], + [ + "▁AVR", + -14.455118179321289 + ], + [ + "Vote", + -14.45512580871582 + ], + [ + "▁storeys", + -14.455154418945312 + ], + [ + "自", + -14.455160140991211 + ], + [ + "▁Kono", + -14.45519733428955 + ], + [ + "▁triathlete", + -14.455222129821777 + ], + [ + "technologies", + -14.455255508422852 + ], + [ + "DALE", + -14.455288887023926 + ], + [ + "▁Scaling", + -14.455349922180176 + ], + [ + "▁Thir", + -14.45540714263916 + ], + [ + "▁Ukrainians", + -14.455456733703613 + ], + [ + "▁classifies", + -14.455460548400879 + ], + [ + "▁Demographic", + -14.455467224121094 + ], + [ + "▁Hough", + -14.455540657043457 + ], + [ + "trex", + -14.455541610717773 + ], + [ + "hag", + -14.455547332763672 + ], + [ + "▁Hera", + -14.455570220947266 + ], + [ + "roch", + -14.455578804016113 + ], + [ + "▁decayed", + -14.455589294433594 + ], + [ + "▁DSA", + -14.455596923828125 + ], + [ + "▁commercialize", + -14.455638885498047 + ], + [ + "▁darned", + -14.455679893493652 + ], + [ + "▁498", + -14.455718040466309 + ], + [ + "ു", + -14.455758094787598 + ], + [ + "▁Piston", + -14.45577335357666 + ], + [ + "orbit", + -14.455787658691406 + ], + [ + "▁Compilation", + -14.455862045288086 + ], + [ + "▁critter", + -14.455863952636719 + ], + [ + "cou", + -14.455888748168945 + ], + [ + "lius", + -14.455934524536133 + ], + [ + "▁factually", + -14.456007957458496 + ], + [ + "▁REITs", + -14.456018447875977 + ], + [ + "▁Showdown", + -14.456019401550293 + ], + [ + "▁619", + -14.456047058105469 + ], + [ + "▁Bagel", + -14.456047058105469 + ], + [ + "quis", + -14.456079483032227 + ], + [ + "▁EYE", + -14.456096649169922 + ], + [ + "▁shyness", + -14.456110954284668 + ], + [ + "▁predisposed", + -14.456158638000488 + ], + [ + "▁evacuations", + -14.456165313720703 + ], + [ + "▁interleukin", + -14.456183433532715 + ], + [ + "▁SUS", + -14.456184387207031 + ], + [ + "beh", + -14.456221580505371 + ], + [ + "▁Armand", + -14.456242561340332 + ], + [ + "▁taunt", + -14.456302642822266 + ], + [ + "▁madman", + -14.456320762634277 + ], + [ + "olation", + -14.45634937286377 + ], + [ + "▁Opens", + -14.456357955932617 + ], + [ + "▁де", + -14.456363677978516 + ], + [ + "▁Pediatr", + -14.456365585327148 + ], + [ + "▁CAST", + -14.456393241882324 + ], + [ + "▁Soundcloud", + -14.45642375946045 + ], + [ + "▁Hors", + -14.456427574157715 + ], + [ + "▁slung", + -14.456460952758789 + ], + [ + "▁Westinghouse", + -14.456464767456055 + ], + [ + "▁overseer", + -14.456475257873535 + ], + [ + "▁Plaster", + -14.456503868103027 + ], + [ + "▁Kuch", + -14.456552505493164 + ], + [ + "diesel", + -14.456555366516113 + ], + [ + "cheat", + -14.456582069396973 + ], + [ + "▁accomplices", + -14.4566011428833 + ], + [ + "▁prote", + -14.456605911254883 + ], + [ + "▁justifications", + -14.456629753112793 + ], + [ + "COG", + -14.456632614135742 + ], + [ + "▁Meer", + -14.456661224365234 + ], + [ + "▁shill", + -14.456663131713867 + ], + [ + "MBO", + -14.456677436828613 + ], + [ + "denominational", + -14.456684112548828 + ], + [ + "ṭ", + -14.456756591796875 + ], + [ + "▁Nanda", + -14.456786155700684 + ], + [ + "▁Mille", + -14.456791877746582 + ], + [ + "unge", + -14.456792831420898 + ], + [ + "culus", + -14.456924438476562 + ], + [ + "ASE", + -14.456934928894043 + ], + [ + "▁zirconia", + -14.456988334655762 + ], + [ + "▁Legally", + -14.457048416137695 + ], + [ + "▁Cask", + -14.457066535949707 + ], + [ + "▁anaesthesia", + -14.45706844329834 + ], + [ + "Stuff", + -14.457074165344238 + ], + [ + "resse", + -14.457101821899414 + ], + [ + "rios", + -14.457118034362793 + ], + [ + "Award", + -14.457130432128906 + ], + [ + "▁Conventions", + -14.4571533203125 + ], + [ + "▁sneaks", + -14.457159042358398 + ], + [ + "▁refilled", + -14.457164764404297 + ], + [ + "▁Ignacio", + -14.457174301147461 + ], + [ + "▁Sooners", + -14.457210540771484 + ], + [ + "▁Kirkpatrick", + -14.45732593536377 + ], + [ + "▁Coldplay", + -14.4573392868042 + ], + [ + "▁thio", + -14.457473754882812 + ], + [ + "▁Tapping", + -14.457496643066406 + ], + [ + "Rat", + -14.457497596740723 + ], + [ + "▁sufficiency", + -14.457497596740723 + ], + [ + "2200", + -14.457520484924316 + ], + [ + "▁kir", + -14.457544326782227 + ], + [ + "▁Hiding", + -14.45755672454834 + ], + [ + "▁botnet", + -14.457561492919922 + ], + [ + "▁refs", + -14.457590103149414 + ], + [ + "▁groaning", + -14.457598686218262 + ], + [ + "▁surmise", + -14.45761775970459 + ], + [ + "bacher", + -14.45766544342041 + ], + [ + "▁Attribute", + -14.457682609558105 + ], + [ + "▁morons", + -14.457744598388672 + ], + [ + "▁frothy", + -14.457757949829102 + ], + [ + "▁dinnerware", + -14.457798957824707 + ], + [ + "▁reckons", + -14.457857131958008 + ], + [ + "▁Wrought", + -14.457878112792969 + ], + [ + "▁Cortes", + -14.457880973815918 + ], + [ + "▁Substantial", + -14.457942962646484 + ], + [ + "▁slippage", + -14.457999229431152 + ], + [ + "▁Ener", + -14.458000183105469 + ], + [ + "▁Auth", + -14.458074569702148 + ], + [ + "ós", + -14.458083152770996 + ], + [ + "▁bloat", + -14.458117485046387 + ], + [ + "▁Jira", + -14.458215713500977 + ], + [ + "▁Bhag", + -14.458223342895508 + ], + [ + "orus", + -14.458226203918457 + ], + [ + "ripe", + -14.458229064941406 + ], + [ + "▁Intuit", + -14.45823860168457 + ], + [ + "▁Referenced", + -14.458256721496582 + ], + [ + "▁unprocessed", + -14.458260536193848 + ], + [ + "▁те", + -14.458271026611328 + ], + [ + "▁summing", + -14.45827579498291 + ], + [ + "▁Stabil", + -14.458282470703125 + ], + [ + "▁Tariq", + -14.458287239074707 + ], + [ + "▁overlapped", + -14.458287239074707 + ], + [ + "▁711", + -14.458348274230957 + ], + [ + "▁Dade", + -14.458348274230957 + ], + [ + "▁breech", + -14.45835018157959 + ], + [ + "potent", + -14.458351135253906 + ], + [ + "▁Aguero", + -14.458378791809082 + ], + [ + "▁tamarind", + -14.45842170715332 + ], + [ + "▁contravention", + -14.458433151245117 + ], + [ + "positioned", + -14.458462715148926 + ], + [ + "▁windmills", + -14.458494186401367 + ], + [ + "▁Shoreline", + -14.45849609375 + ], + [ + "▁Rukh", + -14.458576202392578 + ], + [ + "▁reimbursements", + -14.458601951599121 + ], + [ + "▁nitride", + -14.458625793457031 + ], + [ + "▁truckers", + -14.458717346191406 + ], + [ + "▁USPTO", + -14.458723068237305 + ], + [ + "HOUSE", + -14.458728790283203 + ], + [ + "▁georgia", + -14.458733558654785 + ], + [ + "▁expatriates", + -14.458784103393555 + ], + [ + "▁INDIRECT", + -14.458799362182617 + ], + [ + "▁geologists", + -14.45883560180664 + ], + [ + "ières", + -14.458873748779297 + ], + [ + "▁resizing", + -14.458901405334473 + ], + [ + "kau", + -14.458916664123535 + ], + [ + "▁Swartz", + -14.458935737609863 + ], + [ + "▁granulated", + -14.458964347839355 + ], + [ + "▁raiders", + -14.458969116210938 + ], + [ + "▁McLa", + -14.458985328674316 + ], + [ + "▁Maastricht", + -14.45899772644043 + ], + [ + "▁Paltrow", + -14.459023475646973 + ], + [ + "▁Garnett", + -14.459039688110352 + ], + [ + "▁retardation", + -14.4590425491333 + ], + [ + "▁PVP", + -14.459053993225098 + ], + [ + "▁chole", + -14.459100723266602 + ], + [ + "▁penile", + -14.45910358428955 + ], + [ + "▁diabolical", + -14.459107398986816 + ], + [ + "▁tricycle", + -14.459157943725586 + ], + [ + "▁Scal", + -14.45916748046875 + ], + [ + "▁Azz", + -14.459174156188965 + ], + [ + "rung", + -14.45918083190918 + ], + [ + "▁mmHg", + -14.45923137664795 + ], + [ + "▁ARA", + -14.459232330322266 + ], + [ + "▁secularism", + -14.459240913391113 + ], + [ + "▁embezzlement", + -14.459242820739746 + ], + [ + "▁tresses", + -14.459243774414062 + ], + [ + "AVA", + -14.459320068359375 + ], + [ + "fog", + -14.45937442779541 + ], + [ + "GING", + -14.459429740905762 + ], + [ + "▁Chok", + -14.459453582763672 + ], + [ + "▁Mullin", + -14.459456443786621 + ], + [ + "▁radiological", + -14.459457397460938 + ], + [ + "kilometre", + -14.45946979522705 + ], + [ + "▁Juris", + -14.45947265625 + ], + [ + "▁Trisha", + -14.459480285644531 + ], + [ + "▁registr", + -14.459492683410645 + ], + [ + "▁individu", + -14.459502220153809 + ], + [ + "▁Solskjaer", + -14.459503173828125 + ], + [ + "086", + -14.459504127502441 + ], + [ + "Terra", + -14.459507942199707 + ], + [ + "▁frameless", + -14.459507942199707 + ], + [ + "▁Hort", + -14.459515571594238 + ], + [ + "іо", + -14.45952033996582 + ], + [ + "▁Sic", + -14.459590911865234 + ], + [ + "▁formulae", + -14.459614753723145 + ], + [ + "▁ADSL", + -14.45961856842041 + ], + [ + "▁Gastroenterology", + -14.459635734558105 + ], + [ + "▁supplant", + -14.459640502929688 + ], + [ + "호", + -14.459672927856445 + ], + [ + "▁GER", + -14.459736824035645 + ], + [ + "▁mammogram", + -14.459737777709961 + ], + [ + "▁Parfum", + -14.459748268127441 + ], + [ + "▁Wort", + -14.459794044494629 + ], + [ + "▁Whig", + -14.459802627563477 + ], + [ + "▁Zed", + -14.459809303283691 + ], + [ + "copper", + -14.459821701049805 + ], + [ + "▁TTL", + -14.459835052490234 + ], + [ + "▁Digger", + -14.459877014160156 + ], + [ + "▁Fuchs", + -14.459892272949219 + ], + [ + "▁Bracelets", + -14.459912300109863 + ], + [ + "▁swarms", + -14.459942817687988 + ], + [ + "▁deepens", + -14.460034370422363 + ], + [ + "Python", + -14.460051536560059 + ], + [ + "▁Muta", + -14.46005916595459 + ], + [ + "jem", + -14.460075378417969 + ], + [ + "▁Masks", + -14.4600830078125 + ], + [ + "nous", + -14.460084915161133 + ], + [ + "ḥ", + -14.46010684967041 + ], + [ + "▁Helene", + -14.46012020111084 + ], + [ + "ECC", + -14.460135459899902 + ], + [ + "952", + -14.4601411819458 + ], + [ + "▁Candid", + -14.460147857666016 + ], + [ + "▁Millard", + -14.460182189941406 + ], + [ + "▁appoints", + -14.460198402404785 + ], + [ + "▁Writings", + -14.460236549377441 + ], + [ + "▁permanence", + -14.460248947143555 + ], + [ + "▁speckled", + -14.460250854492188 + ], + [ + "▁partaking", + -14.460262298583984 + ], + [ + "holster", + -14.460272789001465 + ], + [ + "▁Brixton", + -14.460278511047363 + ], + [ + "▁fortuitous", + -14.460295677185059 + ], + [ + "▁Typing", + -14.460296630859375 + ], + [ + "▁Emission", + -14.460309982299805 + ], + [ + "▁vids", + -14.460342407226562 + ], + [ + "▁Crea", + -14.460423469543457 + ], + [ + "▁squirm", + -14.460426330566406 + ], + [ + "▁abc", + -14.460434913635254 + ], + [ + "▁junkies", + -14.460440635681152 + ], + [ + "▁daisies", + -14.460442543029785 + ], + [ + "▁sharpener", + -14.460443496704102 + ], + [ + "▁masquerading", + -14.460451126098633 + ], + [ + "▁DIP", + -14.460498809814453 + ], + [ + "frag", + -14.460516929626465 + ], + [ + "▁1808", + -14.460528373718262 + ], + [ + "Legend", + -14.46054744720459 + ], + [ + "▁ESTATE", + -14.460556030273438 + ], + [ + "INK", + -14.46059799194336 + ], + [ + "▁Paints", + -14.46065902709961 + ], + [ + "▁TOC", + -14.460697174072266 + ], + [ + "▁coca", + -14.460783958435059 + ], + [ + "▁Confident", + -14.460787773132324 + ], + [ + "▁Jawa", + -14.460820198059082 + ], + [ + "▁demoted", + -14.460861206054688 + ], + [ + "▁nightmarish", + -14.46086311340332 + ], + [ + "▁cheekbones", + -14.46090316772461 + ], + [ + "ELLE", + -14.460909843444824 + ], + [ + "IBM", + -14.460947036743164 + ], + [ + "▁nephro", + -14.460991859436035 + ], + [ + "ensen", + -14.461030006408691 + ], + [ + "▁headmaster", + -14.461077690124512 + ], + [ + "inton", + -14.461080551147461 + ], + [ + "▁sé", + -14.461118698120117 + ], + [ + "▁CHAR", + -14.461163520812988 + ], + [ + "▁salivary", + -14.46119499206543 + ], + [ + "▁nonverbal", + -14.46120548248291 + ], + [ + "delta", + -14.461219787597656 + ], + [ + "PhD", + -14.461241722106934 + ], + [ + "▁Rumsfeld", + -14.461259841918945 + ], + [ + "50°", + -14.461302757263184 + ], + [ + "opathic", + -14.461313247680664 + ], + [ + "ATES", + -14.461350440979004 + ], + [ + "▁acceptability", + -14.461370468139648 + ], + [ + "▁Aha", + -14.461380004882812 + ], + [ + "▁msg", + -14.461434364318848 + ], + [ + "▁Checked", + -14.461494445800781 + ], + [ + "▁TIG", + -14.461511611938477 + ], + [ + "▁socialite", + -14.461545944213867 + ], + [ + "▁Centuries", + -14.461563110351562 + ], + [ + "▁dura", + -14.461609840393066 + ], + [ + "▁Bullets", + -14.461647987365723 + ], + [ + "▁pompous", + -14.461674690246582 + ], + [ + "raman", + -14.461690902709961 + ], + [ + "▁Podesta", + -14.461691856384277 + ], + [ + "aaaaa", + -14.461694717407227 + ], + [ + "▁Euler", + -14.461694717407227 + ], + [ + "assured", + -14.461705207824707 + ], + [ + "▁Bradenton", + -14.461722373962402 + ], + [ + "NCA", + -14.461745262145996 + ], + [ + "papa", + -14.46176815032959 + ], + [ + "Available", + -14.461773872375488 + ], + [ + "Fact", + -14.461784362792969 + ], + [ + "manufactured", + -14.461804389953613 + ], + [ + "▁Tolstoy", + -14.461874961853027 + ], + [ + "वा", + -14.461882591247559 + ], + [ + "▁EDF", + -14.461899757385254 + ], + [ + "▁Professions", + -14.46192455291748 + ], + [ + "▁viewport", + -14.461929321289062 + ], + [ + "scroll", + -14.461987495422363 + ], + [ + "▁orangutan", + -14.46199893951416 + ], + [ + "▁Frat", + -14.462063789367676 + ], + [ + "▁Thiru", + -14.462129592895508 + ], + [ + "▁miter", + -14.462153434753418 + ], + [ + "▁MSD", + -14.462167739868164 + ], + [ + "▁Bets", + -14.462206840515137 + ], + [ + "▁WX", + -14.462224960327148 + ], + [ + "▁Sorting", + -14.46230697631836 + ], + [ + "▁Abnormal", + -14.46235466003418 + ], + [ + "ubby", + -14.462360382080078 + ], + [ + "▁McNally", + -14.46237564086914 + ], + [ + "▁unconfirmed", + -14.462404251098633 + ], + [ + "ativity", + -14.462417602539062 + ], + [ + "▁Puja", + -14.462437629699707 + ], + [ + "▁mags", + -14.462449073791504 + ], + [ + "caught", + -14.462477684020996 + ], + [ + "▁Rochdale", + -14.462480545043945 + ], + [ + "▁tut", + -14.462482452392578 + ], + [ + "▁Individually", + -14.462483406066895 + ], + [ + "inny", + -14.462555885314941 + ], + [ + "▁mountaintop", + -14.462565422058105 + ], + [ + "▁deferral", + -14.46260929107666 + ], + [ + "▁AEG", + -14.46263313293457 + ], + [ + "▁Roux", + -14.462671279907227 + ], + [ + "▁Octo", + -14.462697982788086 + ], + [ + "▁midwest", + -14.462702751159668 + ], + [ + "▁Eri", + -14.462709426879883 + ], + [ + "▁Memoirs", + -14.462717056274414 + ], + [ + "▁BitTorrent", + -14.462773323059082 + ], + [ + "▁Dit", + -14.462786674499512 + ], + [ + "▁Kauffman", + -14.462809562683105 + ], + [ + "▁Ries", + -14.462814331054688 + ], + [ + "▁maneuverability", + -14.462825775146484 + ], + [ + "▁refreshes", + -14.462825775146484 + ], + [ + "HIN", + -14.462841033935547 + ], + [ + "▁cryogenic", + -14.462854385375977 + ], + [ + "▁inoculation", + -14.462858200073242 + ], + [ + "▁FEL", + -14.462873458862305 + ], + [ + "▁492", + -14.46288013458252 + ], + [ + "▁sinusitis", + -14.462898254394531 + ], + [ + "▁angiogenesis", + -14.462925910949707 + ], + [ + "▁jim", + -14.462945938110352 + ], + [ + "▁Jingle", + -14.46295166015625 + ], + [ + "Ny", + -14.463005065917969 + ], + [ + "▁vesting", + -14.463020324707031 + ], + [ + "マ", + -14.46302604675293 + ], + [ + "▁kla", + -14.463079452514648 + ], + [ + "olly", + -14.463101387023926 + ], + [ + "▁meatloaf", + -14.46312141418457 + ], + [ + "carotene", + -14.463136672973633 + ], + [ + "▁Mancini", + -14.46325397491455 + ], + [ + "owl", + -14.463261604309082 + ], + [ + "ggett", + -14.463263511657715 + ], + [ + "▁COLLEGE", + -14.463284492492676 + ], + [ + "▁makeovers", + -14.46330738067627 + ], + [ + "▁Isuzu", + -14.463324546813965 + ], + [ + "▁Stallone", + -14.463391304016113 + ], + [ + "▁solvers", + -14.463391304016113 + ], + [ + "▁royals", + -14.463410377502441 + ], + [ + "国", + -14.463443756103516 + ], + [ + "▁rak", + -14.463449478149414 + ], + [ + "▁446", + -14.463473320007324 + ], + [ + "▁Sauna", + -14.463485717773438 + ], + [ + "▁pilates", + -14.46349811553955 + ], + [ + "▁archer", + -14.463501930236816 + ], + [ + "▁turbocharger", + -14.463545799255371 + ], + [ + "▁phage", + -14.463554382324219 + ], + [ + "▁grins", + -14.463623046875 + ], + [ + "cter", + -14.46363639831543 + ], + [ + "▁Nek", + -14.463656425476074 + ], + [ + "bead", + -14.463659286499023 + ], + [ + "VII", + -14.463667869567871 + ], + [ + "▁rehabilitated", + -14.463674545288086 + ], + [ + "▁Commanding", + -14.463698387145996 + ], + [ + "▁Holcomb", + -14.463722229003906 + ], + [ + "IMP", + -14.463724136352539 + ], + [ + "▁fainting", + -14.463730812072754 + ], + [ + "CNA", + -14.463751792907715 + ], + [ + "rifying", + -14.463769912719727 + ], + [ + "▁foodservice", + -14.463780403137207 + ], + [ + "▁Dijk", + -14.463783264160156 + ], + [ + "czak", + -14.46379280090332 + ], + [ + "▁wallow", + -14.463811874389648 + ], + [ + "▁MIP", + -14.463835716247559 + ], + [ + "▁wheezing", + -14.463846206665039 + ], + [ + "▁humpback", + -14.463848114013672 + ], + [ + "sacrifice", + -14.463878631591797 + ], + [ + "▁Yaz", + -14.463955879211426 + ], + [ + "▁emirate", + -14.463957786560059 + ], + [ + "▁BOS", + -14.463987350463867 + ], + [ + "▁Eliminating", + -14.46400260925293 + ], + [ + "▁biggie", + -14.464020729064941 + ], + [ + "▁gill", + -14.464028358459473 + ], + [ + "wheat", + -14.464049339294434 + ], + [ + "Around", + -14.4640531539917 + ], + [ + "▁fluxes", + -14.464094161987305 + ], + [ + "▁Nanotechnology", + -14.464098930358887 + ], + [ + "▁convening", + -14.46410083770752 + ], + [ + "▁Equities", + -14.464111328125 + ], + [ + "ود", + -14.464116096496582 + ], + [ + "pari", + -14.464158058166504 + ], + [ + "▁Descent", + -14.46420669555664 + ], + [ + "▁Hardwick", + -14.464240074157715 + ], + [ + "▁Taran", + -14.464261054992676 + ], + [ + "▁quack", + -14.464278221130371 + ], + [ + "▁Hanne", + -14.464280128479004 + ], + [ + "urgent", + -14.46435546875 + ], + [ + "▁snorted", + -14.464362144470215 + ], + [ + "Rule", + -14.464388847351074 + ], + [ + "Isaiah", + -14.46441650390625 + ], + [ + "▁Jeannie", + -14.464444160461426 + ], + [ + "▁Instance", + -14.464465141296387 + ], + [ + "▁Laid", + -14.464481353759766 + ], + [ + "▁Iberia", + -14.46450138092041 + ], + [ + "▁clickable", + -14.46451187133789 + ], + [ + "▁electrophoresis", + -14.464520454406738 + ], + [ + "▁Creep", + -14.464522361755371 + ], + [ + "▁ALD", + -14.464526176452637 + ], + [ + "▁phd", + -14.464533805847168 + ], + [ + "▁concedes", + -14.464545249938965 + ], + [ + "▁Quat", + -14.464614868164062 + ], + [ + "▁BLOOD", + -14.46474552154541 + ], + [ + "▁coleslaw", + -14.46478271484375 + ], + [ + "aldehyde", + -14.464797019958496 + ], + [ + "pap", + -14.464801788330078 + ], + [ + "▁indeterminate", + -14.464822769165039 + ], + [ + "urry", + -14.464827537536621 + ], + [ + "▁Baw", + -14.464879989624023 + ], + [ + "▁MENA", + -14.464911460876465 + ], + [ + "994", + -14.464975357055664 + ], + [ + "▁utensil", + -14.464984893798828 + ], + [ + "▁Jokes", + -14.464990615844727 + ], + [ + "▁Coincidentally", + -14.465001106262207 + ], + [ + "▁Shopper", + -14.465022087097168 + ], + [ + "▁diego", + -14.465024948120117 + ], + [ + "▁Fearless", + -14.465057373046875 + ], + [ + "taker", + -14.46507453918457 + ], + [ + "▁PTFE", + -14.46507453918457 + ], + [ + "▁Riff", + -14.465084075927734 + ], + [ + "Absolutely", + -14.465107917785645 + ], + [ + "▁FIL", + -14.465117454528809 + ], + [ + "▁Refrigeration", + -14.465142250061035 + ], + [ + "▁creationist", + -14.465170860290527 + ], + [ + "▁BELL", + -14.46517276763916 + ], + [ + "entertainment", + -14.46517562866211 + ], + [ + "▁Monks", + -14.465188026428223 + ], + [ + "▁Mais", + -14.465195655822754 + ], + [ + "▁Lighter", + -14.46522331237793 + ], + [ + "▁exacerbation", + -14.465259552001953 + ], + [ + "▁Logbook", + -14.46526050567627 + ], + [ + "▁NSS", + -14.465280532836914 + ], + [ + "▁parliamentarians", + -14.465306282043457 + ], + [ + "▁irradiated", + -14.465323448181152 + ], + [ + "▁Elie", + -14.465346336364746 + ], + [ + "▁Windermere", + -14.465353965759277 + ], + [ + "▁schoolboy", + -14.465394973754883 + ], + [ + "▁bisa", + -14.465396881103516 + ], + [ + "NerdRPG", + -14.465429306030273 + ], + [ + "▁Ivanov", + -14.465432167053223 + ], + [ + "onzo", + -14.465433120727539 + ], + [ + "▁MALE", + -14.465449333190918 + ], + [ + "▁Nantes", + -14.46551513671875 + ], + [ + "▁nad", + -14.465535163879395 + ], + [ + "▁Masi", + -14.465567588806152 + ], + [ + "▁Cadets", + -14.465574264526367 + ], + [ + "ход", + -14.46560001373291 + ], + [ + "▁Bolts", + -14.465606689453125 + ], + [ + "▁LaSalle", + -14.46562671661377 + ], + [ + "▁Ghosn", + -14.465638160705566 + ], + [ + "▁Monika", + -14.46565055847168 + ], + [ + "▁Corrosion", + -14.465673446655273 + ], + [ + "urri", + -14.465682983398438 + ], + [ + "doors", + -14.465693473815918 + ], + [ + "▁squish", + -14.465781211853027 + ], + [ + "logs", + -14.465791702270508 + ], + [ + "Template", + -14.46583366394043 + ], + [ + "▁permaculture", + -14.465839385986328 + ], + [ + "▁HPLC", + -14.465842247009277 + ], + [ + "arist", + -14.465855598449707 + ], + [ + "▁encircled", + -14.465866088867188 + ], + [ + "NEC", + -14.465876579284668 + ], + [ + "▁narrate", + -14.465882301330566 + ], + [ + "Mainland", + -14.46589183807373 + ], + [ + "kä", + -14.465901374816895 + ], + [ + "▁payloads", + -14.465901374816895 + ], + [ + "▁Prevalence", + -14.465907096862793 + ], + [ + "matt", + -14.465926170349121 + ], + [ + "▁craves", + -14.465933799743652 + ], + [ + "▁ui", + -14.465953826904297 + ], + [ + "▁reducer", + -14.465973854064941 + ], + [ + "▁Eager", + -14.466002464294434 + ], + [ + "Dun", + -14.466011047363281 + ], + [ + "▁monomer", + -14.466012954711914 + ], + [ + "▁elaborating", + -14.466020584106445 + ], + [ + "▁alternates", + -14.466079711914062 + ], + [ + "▁Goode", + -14.466121673583984 + ], + [ + "▁573", + -14.466140747070312 + ], + [ + "▁favourably", + -14.466150283813477 + ], + [ + "▁Curtin", + -14.466214179992676 + ], + [ + "▁Possess", + -14.466224670410156 + ], + [ + "▁personified", + -14.466226577758789 + ], + [ + "ير", + -14.466242790222168 + ], + [ + "▁calms", + -14.466242790222168 + ], + [ + "▁Anesthesia", + -14.466291427612305 + ], + [ + "▁Darien", + -14.466312408447266 + ], + [ + "tada", + -14.466338157653809 + ], + [ + "▁incapacity", + -14.466340065002441 + ], + [ + "▁grinds", + -14.46638298034668 + ], + [ + "▁trite", + -14.466423988342285 + ], + [ + "▁skilful", + -14.46644401550293 + ], + [ + "Wear", + -14.466452598571777 + ], + [ + "▁Barracuda", + -14.466470718383789 + ], + [ + "▁forgave", + -14.466496467590332 + ], + [ + "▁Freemasonry", + -14.466506958007812 + ], + [ + "▁Corel", + -14.466543197631836 + ], + [ + "▁backlink", + -14.466572761535645 + ], + [ + "▁Sixties", + -14.466594696044922 + ], + [ + "▁Gadgets", + -14.466595649719238 + ], + [ + "▁Grimsby", + -14.466605186462402 + ], + [ + "aero", + -14.466635704040527 + ], + [ + "▁Indicates", + -14.466646194458008 + ], + [ + "ually", + -14.466718673706055 + ], + [ + "▁Pantone", + -14.466777801513672 + ], + [ + "▁1807", + -14.466779708862305 + ], + [ + "▁LISTEN", + -14.466784477233887 + ], + [ + "Believe", + -14.466789245605469 + ], + [ + "▁Jahr", + -14.466824531555176 + ], + [ + "arz", + -14.466852188110352 + ], + [ + "▁pistachios", + -14.46690845489502 + ], + [ + "▁pothole", + -14.466911315917969 + ], + [ + "agram", + -14.46692180633545 + ], + [ + "▁Mie", + -14.466981887817383 + ], + [ + "▁dialectic", + -14.466995239257812 + ], + [ + "▁jumble", + -14.467041969299316 + ], + [ + "▁ESI", + -14.467045783996582 + ], + [ + "▁artistes", + -14.467072486877441 + ], + [ + "nzi", + -14.46709156036377 + ], + [ + "contest", + -14.467124938964844 + ], + [ + "▁Ç", + -14.46712875366211 + ], + [ + "▁Cubic", + -14.467158317565918 + ], + [ + "▁Spitzer", + -14.467167854309082 + ], + [ + "▁Ute", + -14.46718978881836 + ], + [ + "▁subsidised", + -14.467206954956055 + ], + [ + "çon", + -14.46721363067627 + ], + [ + "▁CKD", + -14.467246055603027 + ], + [ + "▁dapper", + -14.467248916625977 + ], + [ + "▁Jermaine", + -14.467255592346191 + ], + [ + "▁533", + -14.46725845336914 + ], + [ + "▁sanctified", + -14.467268943786621 + ], + [ + "▁Nieder", + -14.467281341552734 + ], + [ + "▁aggressiveness", + -14.46729564666748 + ], + [ + "intelligent", + -14.467315673828125 + ], + [ + "▁measly", + -14.467333793640137 + ], + [ + "▁Pare", + -14.467355728149414 + ], + [ + "▁Mulvaney", + -14.467378616333008 + ], + [ + "▁Kejriwal", + -14.467402458190918 + ], + [ + "PJ", + -14.467403411865234 + ], + [ + "Cole", + -14.46741008758545 + ], + [ + "▁lowland", + -14.467423439025879 + ], + [ + "▁Grosvenor", + -14.467432975769043 + ], + [ + "▁Bandar", + -14.467443466186523 + ], + [ + "▁photogenic", + -14.467450141906738 + ], + [ + "▁SINGAPORE", + -14.467472076416016 + ], + [ + "▁hydrogel", + -14.467498779296875 + ], + [ + "▁adjoin", + -14.467503547668457 + ], + [ + "mannered", + -14.467509269714355 + ], + [ + "▁unaffordable", + -14.46751880645752 + ], + [ + "▁passersby", + -14.46752643585205 + ], + [ + "▁Kuma", + -14.467529296875 + ], + [ + "▁blushing", + -14.467535972595215 + ], + [ + "▁Loy", + -14.467555046081543 + ], + [ + "▁reappeared", + -14.467557907104492 + ], + [ + "ADR", + -14.467564582824707 + ], + [ + "anca", + -14.467626571655273 + ], + [ + "kate", + -14.467628479003906 + ], + [ + "▁Graveyard", + -14.467630386352539 + ], + [ + "▁brightens", + -14.467632293701172 + ], + [ + "nsk", + -14.467668533325195 + ], + [ + "▁Noosa", + -14.467704772949219 + ], + [ + "▁Dinosaurs", + -14.467727661132812 + ], + [ + "▁cavalier", + -14.467772483825684 + ], + [ + "▁immer", + -14.46779727935791 + ], + [ + "▁tangles", + -14.467842102050781 + ], + [ + "▁barked", + -14.46786880493164 + ], + [ + "▁Minster", + -14.467896461486816 + ], + [ + "▁Helped", + -14.467904090881348 + ], + [ + "▁mourners", + -14.467904090881348 + ], + [ + "▁churned", + -14.467974662780762 + ], + [ + "▁floorboards", + -14.46798038482666 + ], + [ + "▁Jaffe", + -14.467987060546875 + ], + [ + "▁Dutt", + -14.468021392822266 + ], + [ + "▁Kao", + -14.468038558959961 + ], + [ + "▁781", + -14.468043327331543 + ], + [ + "▁dabbled", + -14.468053817749023 + ], + [ + "▁Khamenei", + -14.468091011047363 + ], + [ + "▁homologous", + -14.468108177185059 + ], + [ + "▁Olympians", + -14.468131065368652 + ], + [ + "▁Crumb", + -14.468132019042969 + ], + [ + "Walker", + -14.468134880065918 + ], + [ + "cta", + -14.468206405639648 + ], + [ + "▁salesmen", + -14.468222618103027 + ], + [ + "▁Inhibitor", + -14.468284606933594 + ], + [ + "iated", + -14.468323707580566 + ], + [ + "▁Fintech", + -14.468352317810059 + ], + [ + "▁counterattack", + -14.468358993530273 + ], + [ + "či", + -14.468367576599121 + ], + [ + "USC", + -14.468381881713867 + ], + [ + "▁FRESH", + -14.468389511108398 + ], + [ + "▁NCA", + -14.468399047851562 + ], + [ + "▁confectionery", + -14.468409538269043 + ], + [ + "spawn", + -14.46843147277832 + ], + [ + "▁coughs", + -14.468493461608887 + ], + [ + "▁Tortoise", + -14.468515396118164 + ], + [ + "▁drawdown", + -14.468578338623047 + ], + [ + "▁Acceleration", + -14.46860122680664 + ], + [ + "cancel", + -14.468608856201172 + ], + [ + "dolph", + -14.4686279296875 + ], + [ + "▁Prose", + -14.468655586242676 + ], + [ + "▁hulls", + -14.468664169311523 + ], + [ + "Oc", + -14.468666076660156 + ], + [ + "▁Aphrodite", + -14.46870231628418 + ], + [ + "▁Pomegranate", + -14.46870231628418 + ], + [ + "▁simplex", + -14.468737602233887 + ], + [ + "▁Bennington", + -14.46873950958252 + ], + [ + "▁sportsmen", + -14.468753814697266 + ], + [ + "▁competently", + -14.468796730041504 + ], + [ + "happen", + -14.468856811523438 + ], + [ + "Thor", + -14.468860626220703 + ], + [ + "uncle", + -14.468867301940918 + ], + [ + "▁freckles", + -14.468883514404297 + ], + [ + "▁Miko", + -14.468896865844727 + ], + [ + "▁disbursed", + -14.468917846679688 + ], + [ + "Kings", + -14.468939781188965 + ], + [ + "▁Arco", + -14.46897029876709 + ], + [ + "▁Autopilot", + -14.468979835510254 + ], + [ + "▁despatched", + -14.46899700164795 + ], + [ + "pearl", + -14.469022750854492 + ], + [ + "Beck", + -14.46910572052002 + ], + [ + "Holiday", + -14.469136238098145 + ], + [ + "▁Tbsp", + -14.469234466552734 + ], + [ + "▁Confluence", + -14.469326972961426 + ], + [ + "▁Schloss", + -14.469335556030273 + ], + [ + "▁pretreatment", + -14.469341278076172 + ], + [ + "▁Definitive", + -14.469376564025879 + ], + [ + "tribut", + -14.469399452209473 + ], + [ + "▁Randle", + -14.469403266906738 + ], + [ + "ativa", + -14.469441413879395 + ], + [ + "▁croissants", + -14.469450950622559 + ], + [ + "adhesive", + -14.469501495361328 + ], + [ + "▁wenn", + -14.469527244567871 + ], + [ + "▁PMO", + -14.469535827636719 + ], + [ + "▁Cormier", + -14.469539642333984 + ], + [ + "▁Porn", + -14.469545364379883 + ], + [ + "▁barbecues", + -14.469609260559082 + ], + [ + "iyya", + -14.4696683883667 + ], + [ + "▁AUGUST", + -14.469825744628906 + ], + [ + "fallen", + -14.469830513000488 + ], + [ + "▁tenured", + -14.469830513000488 + ], + [ + "▁Jie", + -14.469843864440918 + ], + [ + "▁Multiply", + -14.469864845275879 + ], + [ + "OOL", + -14.469869613647461 + ], + [ + "▁812", + -14.46987533569336 + ], + [ + "▁901", + -14.469939231872559 + ], + [ + "prod", + -14.46994686126709 + ], + [ + "prize", + -14.46996021270752 + ], + [ + "▁shaggy", + -14.470000267028809 + ], + [ + "breathing", + -14.470004081726074 + ], + [ + "▁Elegance", + -14.470088005065918 + ], + [ + "▁Rishi", + -14.470097541809082 + ], + [ + "▁Restless", + -14.470112800598145 + ], + [ + "legs", + -14.47019100189209 + ], + [ + "▁Appearing", + -14.470290184020996 + ], + [ + "▁Schau", + -14.470307350158691 + ], + [ + "▁commerical", + -14.470327377319336 + ], + [ + "Allow", + -14.470337867736816 + ], + [ + "▁SNA", + -14.47037410736084 + ], + [ + "foss", + -14.470405578613281 + ], + [ + "posting", + -14.470417022705078 + ], + [ + "Elizabeth", + -14.470431327819824 + ], + [ + "▁Spartanburg", + -14.470439910888672 + ], + [ + "adjustable", + -14.470481872558594 + ], + [ + "▁но", + -14.470540046691895 + ], + [ + "▁Má", + -14.470571517944336 + ], + [ + "lovely", + -14.470575332641602 + ], + [ + "▁Testimony", + -14.47057819366455 + ], + [ + "▁tidbit", + -14.470590591430664 + ], + [ + "▁toothbrushes", + -14.470605850219727 + ], + [ + "▁Hillcrest", + -14.470612525939941 + ], + [ + "ות", + -14.470632553100586 + ], + [ + "ential", + -14.470667839050293 + ], + [ + "▁Inquirer", + -14.470670700073242 + ], + [ + "▁Ormond", + -14.470673561096191 + ], + [ + "нов", + -14.470675468444824 + ], + [ + "rce", + -14.47067642211914 + ], + [ + "ු", + -14.470734596252441 + ], + [ + "▁Randi", + -14.470742225646973 + ], + [ + "silent", + -14.470747947692871 + ], + [ + "daw", + -14.470772743225098 + ], + [ + "▁Endor", + -14.470827102661133 + ], + [ + "▁butchers", + -14.470839500427246 + ], + [ + "▁Nep", + -14.470841407775879 + ], + [ + "▁Talented", + -14.47084903717041 + ], + [ + "Shut", + -14.470860481262207 + ], + [ + "▁Countryside", + -14.47087574005127 + ], + [ + "▁Eleventh", + -14.4708890914917 + ], + [ + "▁UTM", + -14.470898628234863 + ], + [ + "▁AROUND", + -14.470907211303711 + ], + [ + "Sunny", + -14.47094440460205 + ], + [ + "▁Chum", + -14.470965385437012 + ], + [ + "▁Acceptable", + -14.470967292785645 + ], + [ + "antas", + -14.471047401428223 + ], + [ + "imming", + -14.471057891845703 + ], + [ + "▁Proponents", + -14.471057891845703 + ], + [ + "Hang", + -14.471076011657715 + ], + [ + "repeat", + -14.471121788024902 + ], + [ + "reduced", + -14.471160888671875 + ], + [ + "mich", + -14.47116756439209 + ], + [ + "▁Serengeti", + -14.471175193786621 + ], + [ + "▁Hanuman", + -14.471203804016113 + ], + [ + "▁oddball", + -14.471213340759277 + ], + [ + "Flag", + -14.471233367919922 + ], + [ + "tomi", + -14.471237182617188 + ], + [ + "▁Custody", + -14.4712495803833 + ], + [ + "▁Watanabe", + -14.471292495727539 + ], + [ + "1938", + -14.471312522888184 + ], + [ + "msg", + -14.471334457397461 + ], + [ + "▁dinning", + -14.47133731842041 + ], + [ + "angal", + -14.471365928649902 + ], + [ + "▁goblin", + -14.471365928649902 + ], + [ + "Cities", + -14.471373558044434 + ], + [ + "iha", + -14.471384048461914 + ], + [ + "▁oppress", + -14.471389770507812 + ], + [ + "▁Epistle", + -14.471404075622559 + ], + [ + "▁decryption", + -14.471404075622559 + ], + [ + "trainer", + -14.471447944641113 + ], + [ + "▁renegotiate", + -14.471465110778809 + ], + [ + "▁Ventilation", + -14.471490859985352 + ], + [ + "▁Dhawan", + -14.471495628356934 + ], + [ + "▁curatorial", + -14.47152042388916 + ], + [ + "▁phoning", + -14.471550941467285 + ], + [ + "▁Amitabh", + -14.471578598022461 + ], + [ + "macher", + -14.471588134765625 + ], + [ + "parking", + -14.47159194946289 + ], + [ + "▁Advising", + -14.471598625183105 + ], + [ + "▁LHP", + -14.471607208251953 + ], + [ + "▁Activist", + -14.471638679504395 + ], + [ + "▁Voltaire", + -14.47164249420166 + ], + [ + "▁Taub", + -14.471664428710938 + ], + [ + "▁Palgrave", + -14.47168254852295 + ], + [ + "▁JSC", + -14.471689224243164 + ], + [ + "▁Hov", + -14.471695899963379 + ], + [ + "▁WITHIN", + -14.471723556518555 + ], + [ + "▁Shaffer", + -14.471760749816895 + ], + [ + "▁specialisation", + -14.471768379211426 + ], + [ + "▁stipulate", + -14.471776008605957 + ], + [ + "▁Motivational", + -14.47179126739502 + ], + [ + "▁gibt", + -14.47179889678955 + ], + [ + "Tracker", + -14.47182559967041 + ], + [ + "▁SPRINGS", + -14.471844673156738 + ], + [ + "▁rp", + -14.471891403198242 + ], + [ + "▁McNair", + -14.471939086914062 + ], + [ + "▁Boni", + -14.47196102142334 + ], + [ + "▁intracranial", + -14.47197151184082 + ], + [ + "welling", + -14.471973419189453 + ], + [ + "▁Novels", + -14.471981048583984 + ], + [ + "izia", + -14.47199821472168 + ], + [ + "▁STU", + -14.472038269042969 + ], + [ + "▁groping", + -14.472040176391602 + ], + [ + "kuma", + -14.472053527832031 + ], + [ + "▁Seite", + -14.472066879272461 + ], + [ + "approach", + -14.472101211547852 + ], + [ + "▁billiards", + -14.472136497497559 + ], + [ + "rolls", + -14.472173690795898 + ], + [ + "▁Flav", + -14.472347259521484 + ], + [ + "veni", + -14.472349166870117 + ], + [ + "▁Pillars", + -14.472362518310547 + ], + [ + "appear", + -14.472369194030762 + ], + [ + "▁Armando", + -14.472372055053711 + ], + [ + "Component", + -14.472392082214355 + ], + [ + "▁Mayflower", + -14.472400665283203 + ], + [ + "▁houseboat", + -14.472408294677734 + ], + [ + "▁allay", + -14.472411155700684 + ], + [ + "Judge", + -14.472416877746582 + ], + [ + "ār", + -14.472423553466797 + ], + [ + "Sell", + -14.472431182861328 + ], + [ + "spending", + -14.472456932067871 + ], + [ + "Leo", + -14.472457885742188 + ], + [ + "▁NRG", + -14.47245979309082 + ], + [ + "HTTP", + -14.472471237182617 + ], + [ + "hail", + -14.472479820251465 + ], + [ + "retto", + -14.472492218017578 + ], + [ + "concrete", + -14.472497940063477 + ], + [ + "991", + -14.472518920898438 + ], + [ + "▁ROT", + -14.472521781921387 + ], + [ + "▁Asif", + -14.472551345825195 + ], + [ + "▁Servi", + -14.472618103027344 + ], + [ + "▁Heir", + -14.472628593444824 + ], + [ + "▁WCC", + -14.47270393371582 + ], + [ + "▁douche", + -14.47278118133545 + ], + [ + "faction", + -14.472784996032715 + ], + [ + "▁ellipse", + -14.472794532775879 + ], + [ + "vault", + -14.47281551361084 + ], + [ + "▁Wap", + -14.472904205322266 + ], + [ + "▁wagging", + -14.472931861877441 + ], + [ + "▁Lonnie", + -14.472945213317871 + ], + [ + "▁monde", + -14.472953796386719 + ], + [ + "▁Liter", + -14.472990036010742 + ], + [ + "▁CFI", + -14.473001480102539 + ], + [ + "▁Gino", + -14.473020553588867 + ], + [ + "FJ", + -14.473027229309082 + ], + [ + "▁Navigating", + -14.473057746887207 + ], + [ + "▁capers", + -14.473060607910156 + ], + [ + "▁PAID", + -14.47312068939209 + ], + [ + "▁inductor", + -14.473187446594238 + ], + [ + "prison", + -14.4732027053833 + ], + [ + "▁keyhole", + -14.473206520080566 + ], + [ + "▁roleplaying", + -14.473209381103516 + ], + [ + "▁Frankfort", + -14.473403930664062 + ], + [ + "▁Tahir", + -14.473407745361328 + ], + [ + "▁Tensions", + -14.473409652709961 + ], + [ + "▁UNDP", + -14.473429679870605 + ], + [ + "▁Wearable", + -14.4734525680542 + ], + [ + "▁Bax", + -14.47346305847168 + ], + [ + "lites", + -14.473499298095703 + ], + [ + "▁Caron", + -14.473502159118652 + ], + [ + "aia", + -14.473515510559082 + ], + [ + "Vault", + -14.473517417907715 + ], + [ + "inum", + -14.473529815673828 + ], + [ + "▁optically", + -14.47356128692627 + ], + [ + "▁patting", + -14.473615646362305 + ], + [ + "▁DEV", + -14.473625183105469 + ], + [ + "▁Meme", + -14.473650932312012 + ], + [ + "Scientific", + -14.473673820495605 + ], + [ + "▁immunizations", + -14.473682403564453 + ], + [ + "▁outposts", + -14.473690032958984 + ], + [ + "▁Nef", + -14.473702430725098 + ], + [ + "▁donde", + -14.473723411560059 + ], + [ + "2021", + -14.473727226257324 + ], + [ + "▁MEPs", + -14.473764419555664 + ], + [ + "▁guan", + -14.473766326904297 + ], + [ + "▁PPE", + -14.473771095275879 + ], + [ + "▁cassava", + -14.473775863647461 + ], + [ + "▁Montpellier", + -14.473787307739258 + ], + [ + "heeled", + -14.473791122436523 + ], + [ + "▁marines", + -14.473814010620117 + ], + [ + "▁Grosse", + -14.473828315734863 + ], + [ + "owsky", + -14.473878860473633 + ], + [ + "▁Tua", + -14.473895072937012 + ], + [ + "▁Illumina", + -14.473921775817871 + ], + [ + "uzzle", + -14.473982810974121 + ], + [ + "electron", + -14.473992347717285 + ], + [ + "▁catchers", + -14.474019050598145 + ], + [ + "▁Considerations", + -14.474020004272461 + ], + [ + "▁lis", + -14.474029541015625 + ], + [ + "erva", + -14.47407341003418 + ], + [ + "▁vale", + -14.47407341003418 + ], + [ + "▁molybdenum", + -14.474078178405762 + ], + [ + "▁Roderick", + -14.474103927612305 + ], + [ + "▁delirium", + -14.474104881286621 + ], + [ + "lien", + -14.47414493560791 + ], + [ + "TOL", + -14.47415828704834 + ], + [ + "▁corr", + -14.47416877746582 + ], + [ + "▁jib", + -14.474175453186035 + ], + [ + "ablo", + -14.474197387695312 + ], + [ + "organisation", + -14.47421932220459 + ], + [ + "Alright", + -14.474221229553223 + ], + [ + "▁BUILDING", + -14.474241256713867 + ], + [ + "▁Lettuce", + -14.474262237548828 + ], + [ + "▁Fli", + -14.474266052246094 + ], + [ + "▁Brus", + -14.474281311035156 + ], + [ + "▁reuniting", + -14.4743070602417 + ], + [ + "▁eachother", + -14.474322319030762 + ], + [ + "▁Rhea", + -14.47432804107666 + ], + [ + "▁quarrying", + -14.474348068237305 + ], + [ + "▁netflix", + -14.474418640136719 + ], + [ + "▁Werk", + -14.474446296691895 + ], + [ + "Treat", + -14.474452018737793 + ], + [ + "▁Veneer", + -14.474514961242676 + ], + [ + "▁chieftain", + -14.474527359008789 + ], + [ + "▁Pairing", + -14.474556922912598 + ], + [ + "▁biosphere", + -14.474575996398926 + ], + [ + "▁Unionist", + -14.474637985229492 + ], + [ + "▁Gallant", + -14.47464370727539 + ], + [ + "▁Bebe", + -14.474664688110352 + ], + [ + "▁stimulator", + -14.47469711303711 + ], + [ + "▁Neme", + -14.474756240844727 + ], + [ + "▁Rojas", + -14.474777221679688 + ], + [ + "▁friggin", + -14.474790573120117 + ], + [ + "▁Reviewer", + -14.474844932556152 + ], + [ + "uwe", + -14.474845886230469 + ], + [ + "nana", + -14.474857330322266 + ], + [ + "Divine", + -14.47486400604248 + ], + [ + "▁rekindle", + -14.474878311157227 + ], + [ + "▁Scotsman", + -14.474932670593262 + ], + [ + "▁Simba", + -14.474976539611816 + ], + [ + "vention", + -14.47497844696045 + ], + [ + "1915", + -14.475000381469727 + ], + [ + "▁PINK", + -14.475034713745117 + ], + [ + "▁646", + -14.475044250488281 + ], + [ + "▁Debtor", + -14.475068092346191 + ], + [ + "konomi", + -14.475109100341797 + ], + [ + "▁ANI", + -14.475115776062012 + ], + [ + "▁Samo", + -14.47513198852539 + ], + [ + "hipped", + -14.475135803222656 + ], + [ + "▁Balloons", + -14.475173950195312 + ], + [ + "▁IIRC", + -14.475211143493652 + ], + [ + "▁hereinafter", + -14.475221633911133 + ], + [ + "magnet", + -14.47523307800293 + ], + [ + "▁Saks", + -14.475251197814941 + ], + [ + "▁Invasive", + -14.475255012512207 + ], + [ + "▁Discounted", + -14.475269317626953 + ], + [ + "▁Rigg", + -14.47529125213623 + ], + [ + "▁Streams", + -14.475297927856445 + ], + [ + "arena", + -14.475306510925293 + ], + [ + "▁Didier", + -14.475318908691406 + ], + [ + "▁PTS", + -14.475342750549316 + ], + [ + "▁Alligator", + -14.475364685058594 + ], + [ + "▁swanky", + -14.47536563873291 + ], + [ + "▁Trapp", + -14.475456237792969 + ], + [ + "▁Securing", + -14.475461959838867 + ], + [ + "kommen", + -14.475488662719727 + ], + [ + "▁Ozzy", + -14.47553825378418 + ], + [ + "▁Dooley", + -14.475542068481445 + ], + [ + "▁viciously", + -14.475546836853027 + ], + [ + "▁motherboards", + -14.47558307647705 + ], + [ + "▁Caste", + -14.475586891174316 + ], + [ + "▁Bernice", + -14.475598335266113 + ], + [ + "▁victimization", + -14.475600242614746 + ], + [ + "▁sidewall", + -14.475605010986328 + ], + [ + "Near", + -14.475610733032227 + ], + [ + "993", + -14.475680351257324 + ], + [ + "▁Avenatti", + -14.475704193115234 + ], + [ + "karan", + -14.475858688354492 + ], + [ + "riff", + -14.4758939743042 + ], + [ + "trivial", + -14.475905418395996 + ], + [ + "▁replenished", + -14.475932121276855 + ], + [ + "▁stupendous", + -14.475964546203613 + ], + [ + "▁Sustain", + -14.475975036621094 + ], + [ + "▁Tunis", + -14.476034164428711 + ], + [ + "cado", + -14.476072311401367 + ], + [ + "▁Staging", + -14.476078987121582 + ], + [ + "▁subreddit", + -14.476081848144531 + ], + [ + "RPA", + -14.476094245910645 + ], + [ + "▁travertine", + -14.476106643676758 + ], + [ + "▁doves", + -14.47610855102539 + ], + [ + "propelled", + -14.47611141204834 + ], + [ + "▁487", + -14.476154327392578 + ], + [ + "▁Islamophobia", + -14.47616958618164 + ], + [ + "ECA", + -14.476253509521484 + ], + [ + "▁Bakr", + -14.4762544631958 + ], + [ + "▁satanic", + -14.476304054260254 + ], + [ + "▁lobsters", + -14.476313591003418 + ], + [ + "▁astringent", + -14.476333618164062 + ], + [ + "▁eclipses", + -14.476360321044922 + ], + [ + "▁clarifications", + -14.476365089416504 + ], + [ + "▁lawless", + -14.476372718811035 + ], + [ + "▁도", + -14.476420402526855 + ], + [ + "atra", + -14.476424217224121 + ], + [ + "▁Gase", + -14.47642707824707 + ], + [ + "uding", + -14.476491928100586 + ], + [ + "▁1777", + -14.4765043258667 + ], + [ + "▁nukes", + -14.476526260375977 + ], + [ + "▁refrained", + -14.476560592651367 + ], + [ + "▁eukaryotic", + -14.476612091064453 + ], + [ + "▁473", + -14.47662353515625 + ], + [ + "▁Schumann", + -14.476673126220703 + ], + [ + "▁finalise", + -14.476696014404297 + ], + [ + "▁ferocity", + -14.476698875427246 + ], + [ + "ignore", + -14.476716995239258 + ], + [ + "▁Hoops", + -14.476757049560547 + ], + [ + "▁legroom", + -14.476785659790039 + ], + [ + "DOWN", + -14.476794242858887 + ], + [ + "▁Biafra", + -14.476805686950684 + ], + [ + "▁Perk", + -14.476858139038086 + ], + [ + "▁Alves", + -14.476933479309082 + ], + [ + "ppies", + -14.476970672607422 + ], + [ + "udd", + -14.476985931396484 + ], + [ + "▁Monuments", + -14.476988792419434 + ], + [ + "▁Beni", + -14.476998329162598 + ], + [ + "▁auth", + -14.477049827575684 + ], + [ + "nini", + -14.47705364227295 + ], + [ + "▁nub", + -14.477059364318848 + ], + [ + "Native", + -14.477080345153809 + ], + [ + "▁Sildenafil", + -14.477089881896973 + ], + [ + "▁Horticulture", + -14.477093696594238 + ], + [ + "▁keine", + -14.477108001708984 + ], + [ + "▁townhome", + -14.477153778076172 + ], + [ + "FAT", + -14.477156639099121 + ], + [ + "形", + -14.477157592773438 + ], + [ + "▁Sonora", + -14.477164268493652 + ], + [ + "▁STANDARD", + -14.477238655090332 + ], + [ + "▁Rainer", + -14.477256774902344 + ], + [ + "▁ihre", + -14.47729206085205 + ], + [ + "▁BMJ", + -14.477294921875 + ], + [ + "▁Pirelli", + -14.47730541229248 + ], + [ + "▁daffodils", + -14.4773588180542 + ], + [ + "▁Rawlings", + -14.477363586425781 + ], + [ + "Tone", + -14.477381706237793 + ], + [ + "fjord", + -14.477381706237793 + ], + [ + "financed", + -14.477392196655273 + ], + [ + "▁rigors", + -14.477421760559082 + ], + [ + "▁TBD", + -14.477465629577637 + ], + [ + "▁hearsay", + -14.477496147155762 + ], + [ + "▁11⁄2", + -14.477510452270508 + ], + [ + "3200", + -14.477513313293457 + ], + [ + "▁Stiff", + -14.477532386779785 + ], + [ + "▁HOWEVER", + -14.477537155151367 + ], + [ + "▁Sae", + -14.477545738220215 + ], + [ + "monger", + -14.477568626403809 + ], + [ + "tonia", + -14.477583885192871 + ], + [ + "▁Sade", + -14.4775972366333 + ], + [ + "▁ferro", + -14.477692604064941 + ], + [ + "▁Voc", + -14.477693557739258 + ], + [ + "▁Murdock", + -14.47770881652832 + ], + [ + "▁flatbread", + -14.477726936340332 + ], + [ + "ehler", + -14.477742195129395 + ], + [ + "▁Inbound", + -14.477752685546875 + ], + [ + "▁inexperience", + -14.477818489074707 + ], + [ + "▁daydreaming", + -14.477839469909668 + ], + [ + "▁OpenVPN", + -14.477846145629883 + ], + [ + "achieving", + -14.477877616882324 + ], + [ + "AIC", + -14.47790813446045 + ], + [ + "▁Tetris", + -14.477931022644043 + ], + [ + "▁engulf", + -14.477947235107422 + ], + [ + "▁alopecia", + -14.477948188781738 + ], + [ + "▁cookers", + -14.478009223937988 + ], + [ + "ulum", + -14.478022575378418 + ], + [ + "CCS", + -14.47803783416748 + ], + [ + "▁nymph", + -14.478103637695312 + ], + [ + "▁Revolt", + -14.478127479553223 + ], + [ + "▁republics", + -14.478133201599121 + ], + [ + "▁strep", + -14.47814655303955 + ], + [ + "▁ABN", + -14.478150367736816 + ], + [ + "ersen", + -14.478175163269043 + ], + [ + "▁Tula", + -14.478216171264648 + ], + [ + "▁cornice", + -14.478219032287598 + ], + [ + "▁Monsieur", + -14.478227615356445 + ], + [ + "▁vastness", + -14.478352546691895 + ], + [ + "▁Attitudes", + -14.478355407714844 + ], + [ + "▁Breakout", + -14.478381156921387 + ], + [ + "▁Bhai", + -14.478410720825195 + ], + [ + "084", + -14.47844123840332 + ], + [ + "ebi", + -14.478448867797852 + ], + [ + "increase", + -14.478486061096191 + ], + [ + "▁Genesee", + -14.478486061096191 + ], + [ + "▁laborer", + -14.478507041931152 + ], + [ + "DAN", + -14.478519439697266 + ], + [ + "▁anthems", + -14.478554725646973 + ], + [ + "▁patently", + -14.4785737991333 + ], + [ + "▁Incorrect", + -14.478590965270996 + ], + [ + "▁Revue", + -14.478596687316895 + ], + [ + "nych", + -14.478655815124512 + ], + [ + "phobe", + -14.4787015914917 + ], + [ + "▁delineated", + -14.47872257232666 + ], + [ + "phra", + -14.478727340698242 + ], + [ + "Dancing", + -14.478743553161621 + ], + [ + "▁Servo", + -14.478768348693848 + ], + [ + "▁uncut", + -14.478836059570312 + ], + [ + "▁priestly", + -14.478853225708008 + ], + [ + "▁Descriptive", + -14.478924751281738 + ], + [ + "▁rationing", + -14.478954315185547 + ], + [ + "▁Orthodoxy", + -14.47895622253418 + ], + [ + "Nd", + -14.478987693786621 + ], + [ + "▁Grooming", + -14.478987693786621 + ], + [ + "erce", + -14.478992462158203 + ], + [ + "▁Donner", + -14.479016304016113 + ], + [ + "▁Kapa", + -14.479045867919922 + ], + [ + "▁Ved", + -14.479074478149414 + ], + [ + "BMI", + -14.479084014892578 + ], + [ + "▁Zou", + -14.479132652282715 + ], + [ + "▁raison", + -14.479134559631348 + ], + [ + "▁Crossword", + -14.479218482971191 + ], + [ + "▁ARTICLE", + -14.479228019714355 + ], + [ + "busy", + -14.479249000549316 + ], + [ + "▁nexium", + -14.479269027709961 + ], + [ + "jat", + -14.479270935058594 + ], + [ + "▁Baca", + -14.479333877563477 + ], + [ + "▁anticoagulant", + -14.479340553283691 + ], + [ + "▁evaporates", + -14.479385375976562 + ], + [ + "▁ш", + -14.479424476623535 + ], + [ + "ivate", + -14.479430198669434 + ], + [ + "defendant", + -14.47946548461914 + ], + [ + "imagined", + -14.479470252990723 + ], + [ + "Gil", + -14.479516983032227 + ], + [ + "▁colloidal", + -14.479516983032227 + ], + [ + "▁Smol", + -14.479545593261719 + ], + [ + "▁Purity", + -14.479547500610352 + ], + [ + "▁Pg", + -14.479594230651855 + ], + [ + "▁xmas", + -14.479615211486816 + ], + [ + "▁Ü", + -14.479629516601562 + ], + [ + "winged", + -14.479649543762207 + ], + [ + "Jump", + -14.479659080505371 + ], + [ + "dairy", + -14.479669570922852 + ], + [ + "▁twirl", + -14.479684829711914 + ], + [ + "▁Grun", + -14.479705810546875 + ], + [ + "▁Councilmember", + -14.479744911193848 + ], + [ + "counsel", + -14.479811668395996 + ], + [ + "▁Dany", + -14.47988224029541 + ], + [ + "▁Assists", + -14.4799222946167 + ], + [ + "▁Osa", + -14.479972839355469 + ], + [ + "▁lep", + -14.479996681213379 + ], + [ + "▁Slag", + -14.479999542236328 + ], + [ + "▁Paths", + -14.480058670043945 + ], + [ + "▁Smoker", + -14.480123519897461 + ], + [ + "▁heparin", + -14.480125427246094 + ], + [ + "▁acupuncturist", + -14.480134010314941 + ], + [ + "▁harbinger", + -14.480134010314941 + ], + [ + "▁CANADA", + -14.480184555053711 + ], + [ + "elsen", + -14.480195045471191 + ], + [ + "gust", + -14.480203628540039 + ], + [ + "▁HAT", + -14.480229377746582 + ], + [ + "▁opiates", + -14.480253219604492 + ], + [ + "▁inherits", + -14.480264663696289 + ], + [ + "Experience", + -14.480271339416504 + ], + [ + "▁Dundas", + -14.480271339416504 + ], + [ + "▁MIR", + -14.480276107788086 + ], + [ + "Shin", + -14.480283737182617 + ], + [ + "cere", + -14.480283737182617 + ], + [ + "▁hamstrings", + -14.480299949645996 + ], + [ + "▁Palacio", + -14.480388641357422 + ], + [ + "▁Bacterial", + -14.48039436340332 + ], + [ + "uated", + -14.48039722442627 + ], + [ + "▁Gaylord", + -14.480422019958496 + ], + [ + "▁feb", + -14.480424880981445 + ], + [ + "nanda", + -14.480452537536621 + ], + [ + "▁remiss", + -14.480456352233887 + ], + [ + "▁smirked", + -14.480462074279785 + ], + [ + "▁defenceman", + -14.480467796325684 + ], + [ + "IFA", + -14.480525970458984 + ], + [ + "▁terroir", + -14.480530738830566 + ], + [ + "▁Chur", + -14.480561256408691 + ], + [ + "▁kol", + -14.480632781982422 + ], + [ + "▁Jog", + -14.480663299560547 + ], + [ + "▁Datuk", + -14.48066520690918 + ], + [ + "▁Mmm", + -14.480690956115723 + ], + [ + "▁Timbers", + -14.480695724487305 + ], + [ + "▁carriageway", + -14.480717658996582 + ], + [ + "▁precocious", + -14.480729103088379 + ], + [ + "▁Metroid", + -14.480754852294922 + ], + [ + "lala", + -14.480789184570312 + ], + [ + "rza", + -14.480796813964844 + ], + [ + "▁Promises", + -14.480813026428223 + ], + [ + "▁distaste", + -14.480883598327637 + ], + [ + "▁squabble", + -14.480911254882812 + ], + [ + "▁overcomes", + -14.480949401855469 + ], + [ + "лич", + -14.480976104736328 + ], + [ + "Kir", + -14.481016159057617 + ], + [ + "▁804", + -14.481022834777832 + ], + [ + "Thus", + -14.481032371520996 + ], + [ + "▁possum", + -14.481074333190918 + ], + [ + "▁BETWEEN", + -14.481101989746094 + ], + [ + "satellite", + -14.481107711791992 + ], + [ + "▁itunes", + -14.48111343383789 + ], + [ + "arat", + -14.481115341186523 + ], + [ + "Trail", + -14.481141090393066 + ], + [ + "èle", + -14.481167793273926 + ], + [ + "▁Reversible", + -14.481212615966797 + ], + [ + "▁chaps", + -14.481225967407227 + ], + [ + "▁Belts", + -14.48126220703125 + ], + [ + "▁Optionally", + -14.48129653930664 + ], + [ + "▁chatty", + -14.481300354003906 + ], + [ + "▁Volk", + -14.481307983398438 + ], + [ + "▁GETTY", + -14.481346130371094 + ], + [ + "wik", + -14.48134708404541 + ], + [ + "▁Speculation", + -14.481356620788574 + ], + [ + "▁azithromycin", + -14.481371879577637 + ], + [ + "zhen", + -14.481376647949219 + ], + [ + "Michigan", + -14.481389045715332 + ], + [ + "▁Spiro", + -14.481389999389648 + ], + [ + "OMG", + -14.481414794921875 + ], + [ + "Honor", + -14.481423377990723 + ], + [ + "▁tincture", + -14.481454849243164 + ], + [ + "DQ", + -14.48151683807373 + ], + [ + "locking", + -14.481538772583008 + ], + [ + "▁fistula", + -14.481555938720703 + ], + [ + "revenue", + -14.481590270996094 + ], + [ + "▁lumped", + -14.481622695922852 + ], + [ + "rmi", + -14.4816255569458 + ], + [ + "▁indoctrination", + -14.481634140014648 + ], + [ + "fli", + -14.481636047363281 + ], + [ + "▁interviewees", + -14.481643676757812 + ], + [ + "▁razors", + -14.481644630432129 + ], + [ + "▁Grupo", + -14.481659889221191 + ], + [ + "▁Regeneration", + -14.481671333312988 + ], + [ + "▁부", + -14.481688499450684 + ], + [ + "▁Vikas", + -14.481714248657227 + ], + [ + "▁retry", + -14.481717109680176 + ], + [ + "curve", + -14.48172664642334 + ], + [ + "▁Aar", + -14.481782913208008 + ], + [ + "▁Calibration", + -14.48180103302002 + ], + [ + "▁militar", + -14.481803894042969 + ], + [ + "jaz", + -14.481805801391602 + ], + [ + "▁apathetic", + -14.481866836547852 + ], + [ + "▁Sanofi", + -14.481876373291016 + ], + [ + "ussa", + -14.481977462768555 + ], + [ + "▁ро", + -14.481980323791504 + ], + [ + "▁Erlang", + -14.481982231140137 + ], + [ + "▁Paribas", + -14.481987953186035 + ], + [ + "ugo", + -14.48209285736084 + ], + [ + "OID", + -14.482145309448242 + ], + [ + "developing", + -14.482148170471191 + ], + [ + "▁Blackwater", + -14.482159614562988 + ], + [ + "▁niacin", + -14.482202529907227 + ], + [ + "▁SPORT", + -14.482221603393555 + ], + [ + "▁unwinding", + -14.48223876953125 + ], + [ + "erland", + -14.482309341430664 + ], + [ + "▁Regret", + -14.482328414916992 + ], + [ + "▁Figuring", + -14.48233413696289 + ], + [ + "▁dancefloor", + -14.482365608215332 + ], + [ + "▁dented", + -14.482368469238281 + ], + [ + "▁generalizations", + -14.482378959655762 + ], + [ + "▁Refine", + -14.482420921325684 + ], + [ + "arov", + -14.4824800491333 + ], + [ + "▁Heroic", + -14.482481002807617 + ], + [ + "▁Calc", + -14.482497215270996 + ], + [ + "▁CMM", + -14.482502937316895 + ], + [ + "▁mobster", + -14.48250675201416 + ], + [ + "▁Zell", + -14.482539176940918 + ], + [ + "Input", + -14.48255443572998 + ], + [ + "▁misc", + -14.482656478881836 + ], + [ + "▁intrude", + -14.482660293579102 + ], + [ + "▁Adequate", + -14.482666969299316 + ], + [ + "▁Pah", + -14.482696533203125 + ], + [ + "▁Dank", + -14.482733726501465 + ], + [ + "▁balancer", + -14.482738494873047 + ], + [ + "▁republicans", + -14.482739448547363 + ], + [ + "▁overturning", + -14.482748985290527 + ], + [ + "▁Laramie", + -14.482765197753906 + ], + [ + "▁teary", + -14.482771873474121 + ], + [ + "▁pulverizer", + -14.48277759552002 + ], + [ + "▁WOMAN", + -14.48282241821289 + ], + [ + "▁hypocrites", + -14.482830047607422 + ], + [ + "▁Converting", + -14.482857704162598 + ], + [ + "▁Chopper", + -14.48287296295166 + ], + [ + "▁thoughtfulness", + -14.482873916625977 + ], + [ + "▁Godly", + -14.482915878295898 + ], + [ + "▁uncluttered", + -14.482929229736328 + ], + [ + "▁आ", + -14.482945442199707 + ], + [ + "▁hazelnuts", + -14.482950210571289 + ], + [ + "desire", + -14.482954978942871 + ], + [ + "▁Overflow", + -14.483016014099121 + ], + [ + "▁upshot", + -14.483034133911133 + ], + [ + "1903", + -14.483043670654297 + ], + [ + "▁clar", + -14.483087539672852 + ], + [ + "pest", + -14.483088493347168 + ], + [ + "▁gigabit", + -14.483125686645508 + ], + [ + "CEP", + -14.483235359191895 + ], + [ + "▁headshot", + -14.483250617980957 + ], + [ + "Nova", + -14.483285903930664 + ], + [ + "▁dishonor", + -14.483311653137207 + ], + [ + "▁headboards", + -14.483321189880371 + ], + [ + "▁godfather", + -14.483338356018066 + ], + [ + "▁uncontested", + -14.483346939086914 + ], + [ + "▁royale", + -14.483355522155762 + ], + [ + "▁BASF", + -14.483357429504395 + ], + [ + "▁sid", + -14.483441352844238 + ], + [ + "▁Bhi", + -14.483467102050781 + ], + [ + "жд", + -14.483484268188477 + ], + [ + "▁nabbed", + -14.483489036560059 + ], + [ + "▁teases", + -14.48349380493164 + ], + [ + "▁paradoxically", + -14.483532905578613 + ], + [ + "infringement", + -14.483541488647461 + ], + [ + "ке", + -14.483612060546875 + ], + [ + "▁brokenness", + -14.483635902404785 + ], + [ + "features", + -14.483636856079102 + ], + [ + "▁cowardice", + -14.483640670776367 + ], + [ + "bashi", + -14.483697891235352 + ], + [ + "esce", + -14.48370361328125 + ], + [ + "▁gimbal", + -14.483705520629883 + ], + [ + "▁condi", + -14.483718872070312 + ], + [ + "▁Fanning", + -14.483785629272461 + ], + [ + "wold", + -14.483832359313965 + ], + [ + "▁worthiness", + -14.483863830566406 + ], + [ + "placement", + -14.483877182006836 + ], + [ + "▁Radius", + -14.483888626098633 + ], + [ + "▁bootable", + -14.483890533447266 + ], + [ + "grind", + -14.48391342163086 + ], + [ + "CLI", + -14.483953475952148 + ], + [ + "▁PokerStars", + -14.483955383300781 + ], + [ + "▁Coward", + -14.483967781066895 + ], + [ + "▁reinvest", + -14.484003067016602 + ], + [ + "▁534", + -14.4840087890625 + ], + [ + "▁Nazar", + -14.4840087890625 + ], + [ + "▁UNION", + -14.484026908874512 + ], + [ + "▁watertight", + -14.484029769897461 + ], + [ + "unny", + -14.484074592590332 + ], + [ + "Tur", + -14.484085083007812 + ], + [ + "▁QI", + -14.484089851379395 + ], + [ + "▁Fixture", + -14.48409366607666 + ], + [ + "▁decommissioned", + -14.48409652709961 + ], + [ + "▁extrinsic", + -14.484114646911621 + ], + [ + "▁Malek", + -14.484116554260254 + ], + [ + "▁Kada", + -14.484127044677734 + ], + [ + "THA", + -14.484142303466797 + ], + [ + "▁retrospectively", + -14.484176635742188 + ], + [ + "▁Communicating", + -14.484211921691895 + ], + [ + "Posts", + -14.484261512756348 + ], + [ + "▁Futon", + -14.484285354614258 + ], + [ + "ateur", + -14.48430061340332 + ], + [ + "▁cocked", + -14.484308242797852 + ], + [ + "▁Jn", + -14.484321594238281 + ], + [ + "▁trouser", + -14.484322547912598 + ], + [ + "▁disassembly", + -14.484323501586914 + ], + [ + "▁rouge", + -14.484326362609863 + ], + [ + "▁COLD", + -14.48435115814209 + ], + [ + "▁Euphrates", + -14.484362602233887 + ], + [ + "soldier", + -14.484414100646973 + ], + [ + "▁archway", + -14.484417915344238 + ], + [ + "▁467", + -14.484431266784668 + ], + [ + "aglio", + -14.484444618225098 + ], + [ + "▁Galicia", + -14.484477996826172 + ], + [ + "▁medicare", + -14.484526634216309 + ], + [ + "interior", + -14.48453426361084 + ], + [ + "▁TEM", + -14.484561920166016 + ], + [ + "Xi", + -14.48456859588623 + ], + [ + "▁unimpressed", + -14.484607696533203 + ], + [ + "▁Bhat", + -14.484611511230469 + ], + [ + "Patient", + -14.484614372253418 + ], + [ + "▁DOCTOR", + -14.484685897827148 + ], + [ + "swim", + -14.484686851501465 + ], + [ + "▁Weibo", + -14.484742164611816 + ], + [ + "▁Lethbridge", + -14.484783172607422 + ], + [ + "▁seasonality", + -14.484806060791016 + ], + [ + "proliferation", + -14.48481559753418 + ], + [ + "▁Leyland", + -14.48481559753418 + ], + [ + "▁DPA", + -14.484833717346191 + ], + [ + "▁minion", + -14.48483943939209 + ], + [ + "▁Suzie", + -14.48486614227295 + ], + [ + "▁Donut", + -14.48487663269043 + ], + [ + "▁wistful", + -14.484877586364746 + ], + [ + "▁miniscule", + -14.484878540039062 + ], + [ + "▁obstetric", + -14.484966278076172 + ], + [ + "▁bronchial", + -14.484972953796387 + ], + [ + "tinib", + -14.484976768493652 + ], + [ + "▁impregnated", + -14.484986305236816 + ], + [ + "▁salmonella", + -14.485010147094727 + ], + [ + "▁luminaire", + -14.48501968383789 + ], + [ + "Webster", + -14.48503589630127 + ], + [ + "▁parabens", + -14.485058784484863 + ], + [ + "BUT", + -14.485115051269531 + ], + [ + "▁Neurological", + -14.48513412475586 + ], + [ + "▁bargained", + -14.485167503356934 + ], + [ + "asti", + -14.485170364379883 + ], + [ + "▁Caf", + -14.48518180847168 + ], + [ + "▁accede", + -14.485186576843262 + ], + [ + "▁acorn", + -14.485190391540527 + ], + [ + "▁Dios", + -14.485213279724121 + ], + [ + "▁Composing", + -14.485284805297852 + ], + [ + "CHR", + -14.485288619995117 + ], + [ + "▁Innocence", + -14.485325813293457 + ], + [ + "▁reclusive", + -14.485404968261719 + ], + [ + "▁Typ", + -14.4854154586792 + ], + [ + "losing", + -14.485452651977539 + ], + [ + "▁AAU", + -14.485457420349121 + ], + [ + "▁890", + -14.485482215881348 + ], + [ + "▁Bananas", + -14.485483169555664 + ], + [ + "stimulated", + -14.485496520996094 + ], + [ + "▁Snakes", + -14.485529899597168 + ], + [ + "▁perforation", + -14.485600471496582 + ], + [ + "▁margaritas", + -14.485603332519531 + ], + [ + "▁MAKING", + -14.485607147216797 + ], + [ + "PLAN", + -14.485641479492188 + ], + [ + "Tang", + -14.4856595993042 + ], + [ + "▁respirator", + -14.485664367675781 + ], + [ + "▁experi", + -14.485685348510742 + ], + [ + "▁COLLECTION", + -14.485715866088867 + ], + [ + "▁chateau", + -14.485723495483398 + ], + [ + "mitt", + -14.485876083374023 + ], + [ + "921", + -14.485892295837402 + ], + [ + "▁Marek", + -14.485894203186035 + ], + [ + "▁confided", + -14.485942840576172 + ], + [ + "independence", + -14.485954284667969 + ], + [ + "cito", + -14.485973358154297 + ], + [ + "gaz", + -14.486006736755371 + ], + [ + "▁Genomic", + -14.486027717590332 + ], + [ + "▁Optima", + -14.486050605773926 + ], + [ + "▁Footprint", + -14.486058235168457 + ], + [ + "▁Surprising", + -14.486071586608887 + ], + [ + "▁UNIDENTIFIED", + -14.486090660095215 + ], + [ + "▁noose", + -14.48611068725586 + ], + [ + "▁Israelite", + -14.486117362976074 + ], + [ + "alda", + -14.486143112182617 + ], + [ + "▁obsessions", + -14.486244201660156 + ], + [ + "▁trailblazer", + -14.486283302307129 + ], + [ + "▁1060", + -14.486291885375977 + ], + [ + "▁Educ", + -14.486318588256836 + ], + [ + "▁hace", + -14.486343383789062 + ], + [ + "uzu", + -14.486364364624023 + ], + [ + "▁climactic", + -14.486371994018555 + ], + [ + "agog", + -14.486412048339844 + ], + [ + "▁Freedman", + -14.486432075500488 + ], + [ + "▁Strang", + -14.486433982849121 + ], + [ + "▁Ferries", + -14.486441612243652 + ], + [ + "▁Symbian", + -14.486475944519043 + ], + [ + "▁PII", + -14.486496925354004 + ], + [ + "▁metallurgical", + -14.486504554748535 + ], + [ + "Institut", + -14.486509323120117 + ], + [ + "▁Loa", + -14.48652172088623 + ], + [ + "psych", + -14.486527442932129 + ], + [ + "▁Domaine", + -14.486531257629395 + ], + [ + "Lynn", + -14.486536026000977 + ], + [ + "▁Prosecco", + -14.486549377441406 + ], + [ + "▁SDG", + -14.486562728881836 + ], + [ + "MEM", + -14.486583709716797 + ], + [ + "footer", + -14.486583709716797 + ], + [ + "▁polygamy", + -14.486616134643555 + ], + [ + "▁TOUCH", + -14.486634254455566 + ], + [ + "Columbia", + -14.486639976501465 + ], + [ + "▁yawning", + -14.486645698547363 + ], + [ + "1234", + -14.486720085144043 + ], + [ + "kang", + -14.486729621887207 + ], + [ + "▁USM", + -14.48674201965332 + ], + [ + "▁rah", + -14.486834526062012 + ], + [ + "▁£75", + -14.486838340759277 + ], + [ + "20°", + -14.486849784851074 + ], + [ + "819", + -14.486851692199707 + ], + [ + "▁pok", + -14.486908912658691 + ], + [ + "▁summarised", + -14.486909866333008 + ], + [ + "▁scepticism", + -14.486921310424805 + ], + [ + "▁Shaikh", + -14.486936569213867 + ], + [ + "rats", + -14.486980438232422 + ], + [ + "▁ARK", + -14.486989974975586 + ], + [ + "kwe", + -14.48701000213623 + ], + [ + "▁Glyn", + -14.48708438873291 + ], + [ + "▁kinases", + -14.487157821655273 + ], + [ + "▁Griff", + -14.487167358398438 + ], + [ + "Lover", + -14.487215995788574 + ], + [ + "crea", + -14.487256050109863 + ], + [ + "▁TFS", + -14.487260818481445 + ], + [ + "▁Tso", + -14.487288475036621 + ], + [ + "▁compilers", + -14.487314224243164 + ], + [ + "▁Housekeeping", + -14.487339973449707 + ], + [ + "Bound", + -14.487340927124023 + ], + [ + "▁coves", + -14.487349510192871 + ], + [ + "▁CORPORATION", + -14.487351417541504 + ], + [ + "▁ɑ", + -14.4873628616333 + ], + [ + "▁Pastry", + -14.487385749816895 + ], + [ + "▁Brigitte", + -14.487409591674805 + ], + [ + "▁IMAP", + -14.487422943115234 + ], + [ + "▁Armored", + -14.487445831298828 + ], + [ + "▁quel", + -14.487470626831055 + ], + [ + "▁Penrith", + -14.487473487854004 + ], + [ + "Buddy", + -14.48748779296875 + ], + [ + "▁Interpreter", + -14.487489700317383 + ], + [ + "peg", + -14.487549781799316 + ], + [ + "▁piercings", + -14.48762321472168 + ], + [ + "▁Blended", + -14.487663269042969 + ], + [ + "▁subtext", + -14.487675666809082 + ], + [ + "▁Raya", + -14.487687110900879 + ], + [ + "▁Potsdam", + -14.487710952758789 + ], + [ + "▁fizzy", + -14.487716674804688 + ], + [ + "▁Kiln", + -14.487717628479004 + ], + [ + "▁rusting", + -14.487725257873535 + ], + [ + "▁LaserJet", + -14.487746238708496 + ], + [ + "▁airfares", + -14.487754821777344 + ], + [ + "▁faxes", + -14.487770080566406 + ], + [ + "▁ably", + -14.487786293029785 + ], + [ + "▁Bloch", + -14.487792015075684 + ], + [ + "▁neutralizing", + -14.487792015075684 + ], + [ + "▁persevered", + -14.48780345916748 + ], + [ + "▁Shipped", + -14.487862586975098 + ], + [ + "▁condensing", + -14.487871170043945 + ], + [ + "▁Julianne", + -14.48787784576416 + ], + [ + "anal", + -14.487887382507324 + ], + [ + "▁Dealership", + -14.487908363342285 + ], + [ + "ovitch", + -14.487920761108398 + ], + [ + "▁cathedrals", + -14.487995147705078 + ], + [ + "hik", + -14.48805046081543 + ], + [ + "▁footfall", + -14.48813533782959 + ], + [ + "commissioned", + -14.48814582824707 + ], + [ + "▁deconstruct", + -14.488186836242676 + ], + [ + "directly", + -14.488188743591309 + ], + [ + "▁Chord", + -14.48820686340332 + ], + [ + "▁Blocking", + -14.488216400146484 + ], + [ + "ː", + -14.48824691772461 + ], + [ + "yung", + -14.488248825073242 + ], + [ + "▁watcher", + -14.488277435302734 + ], + [ + "Rating", + -14.488368034362793 + ], + [ + "▁Treasuries", + -14.488398551940918 + ], + [ + "▁snipers", + -14.488426208496094 + ], + [ + "▁durante", + -14.488433837890625 + ], + [ + "▁nebula", + -14.488542556762695 + ], + [ + "▁embers", + -14.488551139831543 + ], + [ + "izan", + -14.488561630249023 + ], + [ + "▁Hilltop", + -14.488576889038086 + ], + [ + "▁Sookie", + -14.488584518432617 + ], + [ + "beats", + -14.488619804382324 + ], + [ + "▁boyhood", + -14.488627433776855 + ], + [ + "RICK", + -14.488672256469727 + ], + [ + "yaz", + -14.488720893859863 + ], + [ + "▁Omi", + -14.488768577575684 + ], + [ + "▁choruses", + -14.488779067993164 + ], + [ + "▁choker", + -14.488785743713379 + ], + [ + "▁clamoring", + -14.488789558410645 + ], + [ + "FK", + -14.488795280456543 + ], + [ + "▁Mackey", + -14.48880386352539 + ], + [ + "ít", + -14.488815307617188 + ], + [ + "Mexican", + -14.488823890686035 + ], + [ + "▁YoY", + -14.488849639892578 + ], + [ + "▁Cram", + -14.488862037658691 + ], + [ + "▁ductwork", + -14.4888916015625 + ], + [ + "▁DMS", + -14.488912582397461 + ], + [ + "▁Guideline", + -14.488946914672852 + ], + [ + "▁Tiru", + -14.489124298095703 + ], + [ + "Nut", + -14.489128112792969 + ], + [ + "▁Akhtar", + -14.489148139953613 + ], + [ + "▁Xpress", + -14.489155769348145 + ], + [ + "▁disagreeing", + -14.489178657531738 + ], + [ + "▁lawnmower", + -14.489198684692383 + ], + [ + "▁Jaden", + -14.489230155944824 + ], + [ + "▁Ultrasonic", + -14.489250183105469 + ], + [ + "▁dex", + -14.489286422729492 + ], + [ + "▁1795", + -14.489291191101074 + ], + [ + "▁clang", + -14.489310264587402 + ], + [ + "▁technologist", + -14.489313125610352 + ], + [ + "teh", + -14.48934268951416 + ], + [ + "▁SEQ", + -14.489373207092285 + ], + [ + "▁Vish", + -14.489420890808105 + ], + [ + "▁IPR", + -14.489425659179688 + ], + [ + "▁Compu", + -14.489434242248535 + ], + [ + "▁glories", + -14.489444732666016 + ], + [ + "Az", + -14.489572525024414 + ], + [ + "▁Horsham", + -14.489574432373047 + ], + [ + "▁swaths", + -14.489607810974121 + ], + [ + "▁Vacancy", + -14.489642143249512 + ], + [ + "▁Runaway", + -14.489648818969727 + ], + [ + "▁Zucker", + -14.489665031433105 + ], + [ + "▁reliving", + -14.489712715148926 + ], + [ + "cella", + -14.48974609375 + ], + [ + "▁nomad", + -14.489762306213379 + ], + [ + "▁Pollack", + -14.489850997924805 + ], + [ + "▁Nec", + -14.4898681640625 + ], + [ + "▁Plow", + -14.489875793457031 + ], + [ + "▁liberalization", + -14.489885330200195 + ], + [ + "▁Racecourse", + -14.489964485168457 + ], + [ + "shooter", + -14.48996639251709 + ], + [ + "▁914", + -14.489985466003418 + ], + [ + "▁Tantra", + -14.49000358581543 + ], + [ + "▁Instituto", + -14.490023612976074 + ], + [ + "Jin", + -14.490099906921387 + ], + [ + "▁Aamir", + -14.490127563476562 + ], + [ + "BERG", + -14.49015998840332 + ], + [ + "autonomous", + -14.490160942077637 + ], + [ + "▁Discussing", + -14.490172386169434 + ], + [ + "▁Shep", + -14.490172386169434 + ], + [ + "rural", + -14.490185737609863 + ], + [ + "illard", + -14.490187644958496 + ], + [ + "▁Inexpensive", + -14.490217208862305 + ], + [ + "▁heretofore", + -14.490222930908203 + ], + [ + "▁Flashing", + -14.490251541137695 + ], + [ + "Alexa", + -14.490253448486328 + ], + [ + "▁toying", + -14.490299224853516 + ], + [ + "▁berths", + -14.490321159362793 + ], + [ + "▁scarier", + -14.490375518798828 + ], + [ + "▁Janie", + -14.490435600280762 + ], + [ + "▁Ej", + -14.490469932556152 + ], + [ + "chine", + -14.490495681762695 + ], + [ + "plasma", + -14.490545272827148 + ], + [ + "UO", + -14.490548133850098 + ], + [ + "▁nameplate", + -14.490548133850098 + ], + [ + "Logo", + -14.490551948547363 + ], + [ + "▁causative", + -14.490578651428223 + ], + [ + "▁Anarchy", + -14.490607261657715 + ], + [ + "▁epistemology", + -14.490632057189941 + ], + [ + "▁ug", + -14.490684509277344 + ], + [ + "▁Didi", + -14.490687370300293 + ], + [ + "▁CLO", + -14.490729331970215 + ], + [ + "▁couriers", + -14.490730285644531 + ], + [ + "▁Lilac", + -14.490745544433594 + ], + [ + "▁Dzi", + -14.490793228149414 + ], + [ + "▁talkative", + -14.490795135498047 + ], + [ + "▁humanism", + -14.490899085998535 + ], + [ + "evening", + -14.490949630737305 + ], + [ + "▁Medallion", + -14.490967750549316 + ], + [ + "▁Attendant", + -14.49101448059082 + ], + [ + "▁hyperplasia", + -14.491035461425781 + ], + [ + "▁subpar", + -14.491037368774414 + ], + [ + "dhu", + -14.491039276123047 + ], + [ + "▁Conditional", + -14.491043090820312 + ], + [ + "▁glowed", + -14.491050720214844 + ], + [ + "că", + -14.49106502532959 + ], + [ + "▁pela", + -14.49107551574707 + ], + [ + "▁Aikido", + -14.491096496582031 + ], + [ + "▁Winfield", + -14.491118431091309 + ], + [ + "▁Ghani", + -14.491127014160156 + ], + [ + "▁TES", + -14.491127967834473 + ], + [ + "▁befall", + -14.491138458251953 + ], + [ + "▁Glade", + -14.491155624389648 + ], + [ + "▁CNT", + -14.491159439086914 + ], + [ + "▁newsworthy", + -14.491195678710938 + ], + [ + "Spider", + -14.491215705871582 + ], + [ + "▁slipcover", + -14.491216659545898 + ], + [ + "▁Menard", + -14.491256713867188 + ], + [ + "TUS", + -14.491263389587402 + ], + [ + "▁mutilated", + -14.491338729858398 + ], + [ + "crete", + -14.491364479064941 + ], + [ + "▁travesty", + -14.491369247436523 + ], + [ + "▁habeas", + -14.491401672363281 + ], + [ + "▁drinkable", + -14.49140453338623 + ], + [ + "rner", + -14.49145221710205 + ], + [ + "▁beautification", + -14.491493225097656 + ], + [ + "WORD", + -14.491506576538086 + ], + [ + "icated", + -14.491530418395996 + ], + [ + "▁Murad", + -14.491551399230957 + ], + [ + "preferred", + -14.491555213928223 + ], + [ + "मा", + -14.491620063781738 + ], + [ + "Dispatch", + -14.491647720336914 + ], + [ + "▁Spokesman", + -14.491707801818848 + ], + [ + "1077", + -14.491726875305176 + ], + [ + "tao", + -14.491754531860352 + ], + [ + "▁faltered", + -14.491827011108398 + ], + [ + "▁accretion", + -14.491827964782715 + ], + [ + "▁Chicks", + -14.491872787475586 + ], + [ + "▁impartiality", + -14.491887092590332 + ], + [ + "cherry", + -14.491917610168457 + ], + [ + "▁PHONE", + -14.491991996765137 + ], + [ + "▁herbaceous", + -14.492003440856934 + ], + [ + "▁Pasha", + -14.492018699645996 + ], + [ + "±0", + -14.49203109741211 + ], + [ + "▁Moussa", + -14.492033958435059 + ], + [ + "▁divinely", + -14.492046356201172 + ], + [ + "▁ACCEPT", + -14.49209976196289 + ], + [ + "ithi", + -14.492124557495117 + ], + [ + "▁hora", + -14.492178916931152 + ], + [ + "▁psalm", + -14.492197036743164 + ], + [ + "▁Jigsaw", + -14.492260932922363 + ], + [ + "セ", + -14.492294311523438 + ], + [ + "▁curio", + -14.49229621887207 + ], + [ + "Hamilton", + -14.492330551147461 + ], + [ + "▁villainous", + -14.492349624633789 + ], + [ + "▁VFW", + -14.492363929748535 + ], + [ + "▁Ragnarok", + -14.492385864257812 + ], + [ + "▁Rajput", + -14.492403984069824 + ], + [ + "▁PIL", + -14.492416381835938 + ], + [ + "onomy", + -14.492424011230469 + ], + [ + "▁Therapies", + -14.492514610290527 + ], + [ + "▁Chameleon", + -14.49255657196045 + ], + [ + "▁Gry", + -14.49256420135498 + ], + [ + "▁schism", + -14.492583274841309 + ], + [ + "▁dram", + -14.492591857910156 + ], + [ + "▁Seagull", + -14.492612838745117 + ], + [ + "▁Humana", + -14.492650985717773 + ], + [ + "▁parables", + -14.492671012878418 + ], + [ + "▁spon", + -14.492674827575684 + ], + [ + "▁nutritionally", + -14.492703437805176 + ], + [ + "948", + -14.492725372314453 + ], + [ + "▁Durbin", + -14.492733001708984 + ], + [ + "▁bombard", + -14.492786407470703 + ], + [ + "▁constrict", + -14.492803573608398 + ], + [ + "▁NaNoWriMo", + -14.492805480957031 + ], + [ + "▁Killers", + -14.492829322814941 + ], + [ + "▁intelligible", + -14.492894172668457 + ], + [ + "alin", + -14.492897987365723 + ], + [ + "bacteria", + -14.49290943145752 + ], + [ + "▁Leona", + -14.492919921875 + ], + [ + "▁fretting", + -14.492982864379883 + ], + [ + "exec", + -14.493009567260742 + ], + [ + "▁urinal", + -14.493043899536133 + ], + [ + "▁Vanities", + -14.493060111999512 + ], + [ + "▁Ubud", + -14.493075370788574 + ], + [ + "▁Bett", + -14.493093490600586 + ], + [ + "▁Vigo", + -14.493101119995117 + ], + [ + "▁Strips", + -14.493109703063965 + ], + [ + "Export", + -14.493197441101074 + ], + [ + "▁goblet", + -14.493267059326172 + ], + [ + "时", + -14.493293762207031 + ], + [ + "▁chopsticks", + -14.493328094482422 + ], + [ + "▁reno", + -14.493342399597168 + ], + [ + "▁dishwashers", + -14.493359565734863 + ], + [ + "▁navigable", + -14.493391990661621 + ], + [ + "▁1788", + -14.49343204498291 + ], + [ + "▁uninspired", + -14.493465423583984 + ], + [ + "▁VEN", + -14.493528366088867 + ], + [ + "▁honorees", + -14.493528366088867 + ], + [ + "deeply", + -14.493538856506348 + ], + [ + "▁bromide", + -14.49360179901123 + ], + [ + "Hip", + -14.493624687194824 + ], + [ + "▁BUILD", + -14.493629455566406 + ], + [ + "▁PRESENT", + -14.49364185333252 + ], + [ + "▁hatchet", + -14.493672370910645 + ], + [ + "▁JONES", + -14.493705749511719 + ], + [ + "▁Shaking", + -14.493731498718262 + ], + [ + "▁abolishing", + -14.493734359741211 + ], + [ + "jad", + -14.493746757507324 + ], + [ + "▁jumbled", + -14.493754386901855 + ], + [ + "▁brig", + -14.493790626525879 + ], + [ + "▁también", + -14.493802070617676 + ], + [ + "▁Lorne", + -14.493804931640625 + ], + [ + "▁naysayers", + -14.493833541870117 + ], + [ + "▁FOB", + -14.493875503540039 + ], + [ + "transaction", + -14.49390983581543 + ], + [ + "▁Jeddah", + -14.493910789489746 + ], + [ + "▁Stained", + -14.493928909301758 + ], + [ + "▁Bez", + -14.493936538696289 + ], + [ + "joke", + -14.493956565856934 + ], + [ + "▁Onions", + -14.49399185180664 + ], + [ + "▁shearing", + -14.494022369384766 + ], + [ + "antine", + -14.494032859802246 + ], + [ + "▁homey", + -14.494046211242676 + ], + [ + "▁607", + -14.494063377380371 + ], + [ + "▁Annapurna", + -14.494074821472168 + ], + [ + "Delta", + -14.494086265563965 + ], + [ + "▁glassy", + -14.494089126586914 + ], + [ + "terrain", + -14.49419116973877 + ], + [ + "▁drowsy", + -14.4942045211792 + ], + [ + "▁socialise", + -14.494219779968262 + ], + [ + "assigned", + -14.494222640991211 + ], + [ + "▁mullet", + -14.494236946105957 + ], + [ + "▁nombre", + -14.494241714477539 + ], + [ + "▁okra", + -14.494268417358398 + ], + [ + "renewable", + -14.494281768798828 + ], + [ + "SVILLE", + -14.494322776794434 + ], + [ + "▁Nugget", + -14.494359970092773 + ], + [ + "▁COMMENTS", + -14.494386672973633 + ], + [ + "Finance", + -14.494409561157227 + ], + [ + "jpeg", + -14.494418144226074 + ], + [ + "▁Heap", + -14.49443531036377 + ], + [ + "▁Ahn", + -14.494461059570312 + ], + [ + "▁hummingbirds", + -14.494461059570312 + ], + [ + "▁broadcasted", + -14.494484901428223 + ], + [ + "▁vindictive", + -14.49454116821289 + ], + [ + "▁embodying", + -14.49454402923584 + ], + [ + "▁squint", + -14.494544982910156 + ], + [ + "iju", + -14.494553565979004 + ], + [ + "cage", + -14.494572639465332 + ], + [ + "▁frolic", + -14.494606018066406 + ], + [ + "rrrrr", + -14.49463939666748 + ], + [ + "▁Schedules", + -14.49463939666748 + ], + [ + "principle", + -14.494671821594238 + ], + [ + "▁Pederson", + -14.494734764099121 + ], + [ + "▁PCBs", + -14.494803428649902 + ], + [ + "companies", + -14.494830131530762 + ], + [ + "▁wilted", + -14.494933128356934 + ], + [ + "Movies", + -14.49498462677002 + ], + [ + "▁heatsink", + -14.494993209838867 + ], + [ + "▁antisemitism", + -14.495044708251953 + ], + [ + "▁panelist", + -14.4950532913208 + ], + [ + "xim", + -14.495068550109863 + ], + [ + "lowski", + -14.495096206665039 + ], + [ + "1024", + -14.495104789733887 + ], + [ + "quina", + -14.495104789733887 + ], + [ + "▁Mons", + -14.495149612426758 + ], + [ + "▁ARCH", + -14.495182991027832 + ], + [ + "Kick", + -14.495274543762207 + ], + [ + "▁Belong", + -14.495285034179688 + ], + [ + "▁Bowler", + -14.495304107666016 + ], + [ + "ordinating", + -14.495316505432129 + ], + [ + "▁mult", + -14.495327949523926 + ], + [ + "▁mammary", + -14.495328903198242 + ], + [ + "▁Arapahoe", + -14.495329856872559 + ], + [ + "Ran", + -14.495357513427734 + ], + [ + "arah", + -14.495366096496582 + ], + [ + "▁wc", + -14.495403289794922 + ], + [ + "▁armpit", + -14.49543571472168 + ], + [ + "abra", + -14.495439529418945 + ], + [ + "▁clings", + -14.495526313781738 + ], + [ + "▁NME", + -14.495539665222168 + ], + [ + "socket", + -14.495616912841797 + ], + [ + "▁478", + -14.495649337768555 + ], + [ + "▁Sway", + -14.495658874511719 + ], + [ + "▁MoU", + -14.495691299438477 + ], + [ + "ewicz", + -14.495692253112793 + ], + [ + "▁asia", + -14.495719909667969 + ], + [ + "▁CDI", + -14.495749473571777 + ], + [ + "avir", + -14.495774269104004 + ], + [ + "▁quarts", + -14.495832443237305 + ], + [ + "▁Sanitary", + -14.495833396911621 + ], + [ + "▁Crust", + -14.495840072631836 + ], + [ + "dena", + -14.495856285095215 + ], + [ + "▁Tuk", + -14.49587345123291 + ], + [ + "▁frag", + -14.495878219604492 + ], + [ + "giver", + -14.495882987976074 + ], + [ + "ив", + -14.49588394165039 + ], + [ + "▁Occ", + -14.495892524719238 + ], + [ + "▁blazed", + -14.49592113494873 + ], + [ + "▁Mandir", + -14.495943069458008 + ], + [ + "▁MODE", + -14.495950698852539 + ], + [ + "▁Sides", + -14.495986938476562 + ], + [ + "▁Www", + -14.495994567871094 + ], + [ + "▁RCS", + -14.496009826660156 + ], + [ + "▁playhouse", + -14.496033668518066 + ], + [ + "▁gruff", + -14.496045112609863 + ], + [ + "▁downloader", + -14.49605655670166 + ], + [ + "▁Splendid", + -14.496063232421875 + ], + [ + "▁multicolored", + -14.49606704711914 + ], + [ + "▁jovial", + -14.496073722839355 + ], + [ + "▁Ratna", + -14.496074676513672 + ], + [ + "▁strum", + -14.496156692504883 + ], + [ + "arne", + -14.496187210083008 + ], + [ + "▁slugging", + -14.496244430541992 + ], + [ + "ক", + -14.496255874633789 + ], + [ + "▁Patches", + -14.496255874633789 + ], + [ + "▁Dysfunction", + -14.496264457702637 + ], + [ + "▁Swat", + -14.496269226074219 + ], + [ + "▁Mentors", + -14.496320724487305 + ], + [ + "slam", + -14.496352195739746 + ], + [ + "oot", + -14.496374130249023 + ], + [ + "▁kry", + -14.49637508392334 + ], + [ + "▁Interfaith", + -14.496399879455566 + ], + [ + "OCK", + -14.496400833129883 + ], + [ + "▁coinciding", + -14.49643325805664 + ], + [ + "orta", + -14.496500968933105 + ], + [ + "机", + -14.496503829956055 + ], + [ + "▁crumbles", + -14.496505737304688 + ], + [ + "▁Tomcat", + -14.49651050567627 + ], + [ + "▁generalist", + -14.4965238571167 + ], + [ + "1010", + -14.49655818939209 + ], + [ + "▁Penalties", + -14.496603012084961 + ], + [ + "▁harry", + -14.496604919433594 + ], + [ + "▁warmers", + -14.496607780456543 + ], + [ + "▁intrusions", + -14.496626853942871 + ], + [ + "▁thyself", + -14.496650695800781 + ], + [ + "▁upswing", + -14.496668815612793 + ], + [ + "▁inculcate", + -14.496731758117676 + ], + [ + "▁waver", + -14.496732711791992 + ], + [ + "▁handiwork", + -14.496758460998535 + ], + [ + "▁collated", + -14.496827125549316 + ], + [ + "▁Monsoon", + -14.496837615966797 + ], + [ + "▁underweight", + -14.496910095214844 + ], + [ + "wheeled", + -14.496912002563477 + ], + [ + "▁clawed", + -14.496956825256348 + ], + [ + "▁Kü", + -14.496966361999512 + ], + [ + "fibre", + -14.49704360961914 + ], + [ + "▁negates", + -14.497118949890137 + ], + [ + "Registration", + -14.497147560119629 + ], + [ + "▁Fulfillment", + -14.497171401977539 + ], + [ + "studies", + -14.497182846069336 + ], + [ + "unter", + -14.497190475463867 + ], + [ + "▁Blower", + -14.497200012207031 + ], + [ + "▁transom", + -14.49725341796875 + ], + [ + "Cats", + -14.497269630432129 + ], + [ + "▁Chicagoland", + -14.497273445129395 + ], + [ + "▁nig", + -14.49731159210205 + ], + [ + "▁furrow", + -14.497322082519531 + ], + [ + "▁Coy", + -14.497328758239746 + ], + [ + "▁Toddlers", + -14.497353553771973 + ], + [ + "▁codebase", + -14.497363090515137 + ], + [ + "▁Cann", + -14.4973726272583 + ], + [ + "▁Chisholm", + -14.497380256652832 + ], + [ + "cod", + -14.497431755065918 + ], + [ + "▁DMX", + -14.49744701385498 + ], + [ + "▁idioms", + -14.497467994689941 + ], + [ + "▁Telecommunication", + -14.497559547424316 + ], + [ + "rige", + -14.497560501098633 + ], + [ + "▁spindles", + -14.49756908416748 + ], + [ + "▁Erdoğan", + -14.497587203979492 + ], + [ + "▁blotting", + -14.497599601745605 + ], + [ + "▁Phra", + -14.497600555419922 + ], + [ + "▁WHIP", + -14.497618675231934 + ], + [ + "actions", + -14.4976806640625 + ], + [ + "▁Northfield", + -14.497682571411133 + ], + [ + "▁Brandeis", + -14.49772834777832 + ], + [ + "▁prosciutto", + -14.497732162475586 + ], + [ + "▁Ney", + -14.497745513916016 + ], + [ + "▁Steampunk", + -14.497769355773926 + ], + [ + "▁Prisons", + -14.497779846191406 + ], + [ + "▁purport", + -14.497801780700684 + ], + [ + "▁rapists", + -14.497802734375 + ], + [ + "invent", + -14.497817993164062 + ], + [ + "▁Moyes", + -14.497859954833984 + ], + [ + "▁Ealing", + -14.497868537902832 + ], + [ + "▁CHARLES", + -14.497876167297363 + ], + [ + "▁habe", + -14.497886657714844 + ], + [ + "▁Chron", + -14.497971534729004 + ], + [ + "alen", + -14.497994422912598 + ], + [ + "▁HALF", + -14.497995376586914 + ], + [ + "▁motorcyclists", + -14.498032569885254 + ], + [ + "CKET", + -14.498072624206543 + ], + [ + "NITY", + -14.498088836669922 + ], + [ + "▁gravestone", + -14.498099327087402 + ], + [ + "▁Efficacy", + -14.498103141784668 + ], + [ + "▁juga", + -14.498115539550781 + ], + [ + "▁momento", + -14.49812126159668 + ], + [ + "▁sommelier", + -14.498126983642578 + ], + [ + "▁pregame", + -14.498150825500488 + ], + [ + "RTC", + -14.498183250427246 + ], + [ + "▁commendation", + -14.49819278717041 + ], + [ + "▁lik", + -14.498208999633789 + ], + [ + "▁priligy", + -14.498210906982422 + ], + [ + "▁McArthur", + -14.498215675354004 + ], + [ + "▁proudest", + -14.4982271194458 + ], + [ + "▁specifi", + -14.498250961303711 + ], + [ + "▁novelists", + -14.498252868652344 + ], + [ + "▁frightful", + -14.49827766418457 + ], + [ + "▁triples", + -14.49832534790039 + ], + [ + "leur", + -14.498344421386719 + ], + [ + "▁Harald", + -14.498397827148438 + ], + [ + "▁fundamentalism", + -14.498416900634766 + ], + [ + "▁naturalized", + -14.498416900634766 + ], + [ + "aah", + -14.498431205749512 + ], + [ + "▁6500", + -14.498443603515625 + ], + [ + "NAP", + -14.498457908630371 + ], + [ + "Josh", + -14.49846076965332 + ], + [ + "SME", + -14.498462677001953 + ], + [ + "Chancellor", + -14.4984712600708 + ], + [ + "▁Taz", + -14.498530387878418 + ], + [ + "▁raisin", + -14.49858283996582 + ], + [ + "▁anagram", + -14.498587608337402 + ], + [ + "▁compresses", + -14.498595237731934 + ], + [ + "▁chalked", + -14.49859619140625 + ], + [ + "▁Pressed", + -14.498600959777832 + ], + [ + "▁Chav", + -14.49860668182373 + ], + [ + "gid", + -14.498634338378906 + ], + [ + "Aw", + -14.498673439025879 + ], + [ + "▁lockable", + -14.49868106842041 + ], + [ + "▁Talia", + -14.498688697814941 + ], + [ + "▁JUSTICE", + -14.498729705810547 + ], + [ + "▁imitated", + -14.498777389526367 + ], + [ + "impl", + -14.498835563659668 + ], + [ + "▁dislocated", + -14.498870849609375 + ], + [ + "▁medi", + -14.498891830444336 + ], + [ + "▁dribbling", + -14.498903274536133 + ], + [ + "▁Shetty", + -14.498905181884766 + ], + [ + "▁Nig", + -14.498915672302246 + ], + [ + "▁distasteful", + -14.498929023742676 + ], + [ + "▁picturing", + -14.49896240234375 + ], + [ + "▁Dw", + -14.499004364013672 + ], + [ + "▁Wale", + -14.49903392791748 + ], + [ + "▁characteristically", + -14.499049186706543 + ], + [ + "理", + -14.49907398223877 + ], + [ + "Hyper", + -14.499091148376465 + ], + [ + "iño", + -14.49913215637207 + ], + [ + "▁622", + -14.499184608459473 + ], + [ + "▁assuage", + -14.499232292175293 + ], + [ + "vard", + -14.499268531799316 + ], + [ + "국", + -14.499282836914062 + ], + [ + "▁lim", + -14.499308586120605 + ], + [ + "ố", + -14.499322891235352 + ], + [ + "▁1794", + -14.499322891235352 + ], + [ + "▁Corfu", + -14.499327659606934 + ], + [ + "natch", + -14.499333381652832 + ], + [ + "▁tradeoff", + -14.499333381652832 + ], + [ + "▁Capitan", + -14.499336242675781 + ], + [ + "▁Aztecs", + -14.499344825744629 + ], + [ + "▁MOL", + -14.499350547790527 + ], + [ + "958", + -14.499363899230957 + ], + [ + "▁seri", + -14.499370574951172 + ], + [ + "▁Lach", + -14.499378204345703 + ], + [ + "itated", + -14.49937915802002 + ], + [ + "mox", + -14.499429702758789 + ], + [ + "▁roti", + -14.499430656433105 + ], + [ + "azoo", + -14.49947738647461 + ], + [ + "brun", + -14.49951171875 + ], + [ + "▁AEC", + -14.499530792236328 + ], + [ + "▁serie", + -14.499532699584961 + ], + [ + "▁Jel", + -14.49953556060791 + ], + [ + "ESP", + -14.499567031860352 + ], + [ + "▁janitorial", + -14.4995756149292 + ], + [ + "▁ceded", + -14.49958610534668 + ], + [ + "▁levelling", + -14.49960994720459 + ], + [ + "▁shamelessly", + -14.499637603759766 + ], + [ + "▁Parnell", + -14.499642372131348 + ], + [ + "▁Tanzanian", + -14.49966049194336 + ], + [ + "▁Whitening", + -14.49966049194336 + ], + [ + "▁Offense", + -14.499711990356445 + ], + [ + "▁stateside", + -14.499738693237305 + ], + [ + "▁Appointed", + -14.499748229980469 + ], + [ + "▁Kenwood", + -14.499759674072266 + ], + [ + "IGN", + -14.499775886535645 + ], + [ + "tidine", + -14.499776840209961 + ], + [ + "ят", + -14.49981689453125 + ], + [ + "▁Undertaker", + -14.499866485595703 + ], + [ + "▁deploys", + -14.499896049499512 + ], + [ + "winger", + -14.499968528747559 + ], + [ + "▁Deny", + -14.49997329711914 + ], + [ + "「", + -14.500001907348633 + ], + [ + "▁wisest", + -14.500022888183594 + ], + [ + "documents", + -14.500076293945312 + ], + [ + "yria", + -14.5001220703125 + ], + [ + "▁Esh", + -14.500197410583496 + ], + [ + "▁Wuhan", + -14.500221252441406 + ], + [ + "Mile", + -14.500232696533203 + ], + [ + "▁reconnected", + -14.50025749206543 + ], + [ + "HERE", + -14.500259399414062 + ], + [ + "ltd", + -14.500279426574707 + ], + [ + "Sw", + -14.500287055969238 + ], + [ + "▁Lawler", + -14.500321388244629 + ], + [ + "▁Woll", + -14.500343322753906 + ], + [ + "lemon", + -14.500365257263184 + ], + [ + "▁PAYMENT", + -14.500394821166992 + ], + [ + "▁lea", + -14.500408172607422 + ], + [ + "JF", + -14.500409126281738 + ], + [ + "▁dumbbell", + -14.500417709350586 + ], + [ + "▁Octagon", + -14.50047492980957 + ], + [ + "▁shocker", + -14.500536918640137 + ], + [ + "▁BERLIN", + -14.500539779663086 + ], + [ + "▁Reindeer", + -14.500545501708984 + ], + [ + "▁Adnan", + -14.500557899475098 + ], + [ + "▁Temporal", + -14.500558853149414 + ], + [ + "eing", + -14.500568389892578 + ], + [ + "pressor", + -14.500578880310059 + ], + [ + "ți", + -14.500582695007324 + ], + [ + "▁PETER", + -14.500616073608398 + ], + [ + "crystalline", + -14.500679969787598 + ], + [ + "▁Bling", + -14.500683784484863 + ], + [ + "▁hermeneutic", + -14.50072193145752 + ], + [ + "▁grisly", + -14.500734329223633 + ], + [ + "▁salamander", + -14.500746726989746 + ], + [ + "▁KEN", + -14.500749588012695 + ], + [ + "▁keyboardist", + -14.50075912475586 + ], + [ + "assets", + -14.500779151916504 + ], + [ + "▁Dumas", + -14.500840187072754 + ], + [ + "▁Erm", + -14.50084400177002 + ], + [ + "▁Gresham", + -14.500889778137207 + ], + [ + "chul", + -14.500951766967773 + ], + [ + "▁Guilt", + -14.500958442687988 + ], + [ + "▁Hamish", + -14.501001358032227 + ], + [ + "▁rick", + -14.501025199890137 + ], + [ + "▁ugh", + -14.501079559326172 + ], + [ + "inck", + -14.501081466674805 + ], + [ + "▁Bakh", + -14.501091003417969 + ], + [ + "▁Receptor", + -14.501092910766602 + ], + [ + "▁catchphrase", + -14.501129150390625 + ], + [ + "▁Minas", + -14.50117301940918 + ], + [ + "▁Aja", + -14.501178741455078 + ], + [ + "▁entwined", + -14.501189231872559 + ], + [ + "▁576", + -14.501193046569824 + ], + [ + "▁Performer", + -14.501195907592773 + ], + [ + "▁Freiburg", + -14.501214981079102 + ], + [ + "▁Ral", + -14.501220703125 + ], + [ + "▁Rotor", + -14.501314163208008 + ], + [ + "▁Westgate", + -14.501321792602539 + ], + [ + "▁Scottie", + -14.501358985900879 + ], + [ + "▁ARG", + -14.501398086547852 + ], + [ + "▁erupting", + -14.501405715942383 + ], + [ + "▁sprinted", + -14.501422882080078 + ], + [ + "▁hydra", + -14.501447677612305 + ], + [ + "▁UAB", + -14.50147819519043 + ], + [ + "▁Decided", + -14.501486778259277 + ], + [ + "▁pox", + -14.501516342163086 + ], + [ + "herd", + -14.501524925231934 + ], + [ + "▁dag", + -14.50157642364502 + ], + [ + "▁Picked", + -14.501577377319336 + ], + [ + "quant", + -14.50159740447998 + ], + [ + "ITH", + -14.501611709594727 + ], + [ + "▁Bizarre", + -14.501633644104004 + ], + [ + "▁Nobu", + -14.501638412475586 + ], + [ + "▁headless", + -14.501670837402344 + ], + [ + "▁Innis", + -14.501729965209961 + ], + [ + "▁shadowed", + -14.501740455627441 + ], + [ + "Youth", + -14.501754760742188 + ], + [ + "forever", + -14.501771926879883 + ], + [ + "▁SmackDown", + -14.501800537109375 + ], + [ + "▁CUSTOMER", + -14.5018310546875 + ], + [ + "▁aberrant", + -14.501835823059082 + ], + [ + "qualification", + -14.501837730407715 + ], + [ + "conv", + -14.501839637756348 + ], + [ + "▁mindsets", + -14.501839637756348 + ], + [ + "▁OMB", + -14.501862525939941 + ], + [ + "▁heaving", + -14.501867294311523 + ], + [ + "▁launder", + -14.501875877380371 + ], + [ + "omatic", + -14.501923561096191 + ], + [ + "▁Sorrento", + -14.501969337463379 + ], + [ + "▁oozes", + -14.502037048339844 + ], + [ + "▁Persians", + -14.50203800201416 + ], + [ + "▁codeine", + -14.502070426940918 + ], + [ + "▁724", + -14.502092361450195 + ], + [ + "cona", + -14.502093315124512 + ], + [ + "▁Occasion", + -14.502114295959473 + ], + [ + "CSP", + -14.502140998840332 + ], + [ + "▁hourglass", + -14.502152442932129 + ], + [ + "poverty", + -14.502235412597656 + ], + [ + "▁PoE", + -14.502251625061035 + ], + [ + "▁SLI", + -14.502253532409668 + ], + [ + "▁Pimp", + -14.50225830078125 + ], + [ + "embro", + -14.502279281616211 + ], + [ + "rgy", + -14.502296447753906 + ], + [ + "▁purports", + -14.502399444580078 + ], + [ + "Clock", + -14.502410888671875 + ], + [ + "▁Volumes", + -14.502424240112305 + ], + [ + "▁NEAR", + -14.502447128295898 + ], + [ + "▁Slap", + -14.502477645874023 + ], + [ + "grants", + -14.502498626708984 + ], + [ + "▁MOSCOW", + -14.50253677368164 + ], + [ + "▁kneading", + -14.50253677368164 + ], + [ + "NASA", + -14.50256633758545 + ], + [ + "▁Decrease", + -14.502582550048828 + ], + [ + "▁JOE", + -14.502629280090332 + ], + [ + "▁cementing", + -14.50265121459961 + ], + [ + "▁Atiku", + -14.502662658691406 + ], + [ + "▁hashing", + -14.50273609161377 + ], + [ + "▁proportionally", + -14.502809524536133 + ], + [ + "▁gushed", + -14.502819061279297 + ], + [ + "▁TSP", + -14.502845764160156 + ], + [ + "bonne", + -14.502857208251953 + ], + [ + "Invest", + -14.502920150756836 + ], + [ + "▁Screenplay", + -14.502938270568848 + ], + [ + "Discover", + -14.502985954284668 + ], + [ + "▁BLA", + -14.503009796142578 + ], + [ + "▁Dreamweaver", + -14.503024101257324 + ], + [ + "▁Dinesh", + -14.503028869628906 + ], + [ + "acin", + -14.50306510925293 + ], + [ + "dzie", + -14.503081321716309 + ], + [ + "▁stoner", + -14.503189086914062 + ], + [ + "onder", + -14.503199577331543 + ], + [ + "च", + -14.503244400024414 + ], + [ + "▁alba", + -14.503252029418945 + ], + [ + "TOM", + -14.503262519836426 + ], + [ + "▁DLP", + -14.503270149230957 + ], + [ + "▁sheepskin", + -14.503326416015625 + ], + [ + "▁Tada", + -14.503327369689941 + ], + [ + "▁Cloak", + -14.503349304199219 + ], + [ + "▁rainstorm", + -14.503396034240723 + ], + [ + "▁tempura", + -14.503434181213379 + ], + [ + "▁Hoot", + -14.50345516204834 + ], + [ + "▁tailings", + -14.503457069396973 + ], + [ + "▁Arunachal", + -14.503461837768555 + ], + [ + "▁Gymnasium", + -14.50352668762207 + ], + [ + "▁UNLV", + -14.503536224365234 + ], + [ + "▁regretting", + -14.503582954406738 + ], + [ + "Bang", + -14.503622055053711 + ], + [ + "▁Mahan", + -14.503650665283203 + ], + [ + "▁Lod", + -14.503656387329102 + ], + [ + "Ctrl", + -14.503684997558594 + ], + [ + "▁HCL", + -14.503703117370605 + ], + [ + "▁succumbing", + -14.503706932067871 + ], + [ + "▁Avec", + -14.503728866577148 + ], + [ + "▁refinements", + -14.503759384155273 + ], + [ + "omorphic", + -14.503778457641602 + ], + [ + "▁noninvasive", + -14.50379753112793 + ], + [ + "▁Bering", + -14.503813743591309 + ], + [ + "targeting", + -14.50382137298584 + ], + [ + "▁Ophelia", + -14.503827095031738 + ], + [ + "▁Aegis", + -14.5038480758667 + ], + [ + "▁Dahlia", + -14.503880500793457 + ], + [ + "▁CONNECTION", + -14.503890037536621 + ], + [ + "▁panacea", + -14.503968238830566 + ], + [ + "▁vacuums", + -14.503990173339844 + ], + [ + "▁retinopathy", + -14.50403881072998 + ], + [ + "▁Parson", + -14.504044532775879 + ], + [ + "▁mitt", + -14.504107475280762 + ], + [ + "▁airframe", + -14.50411319732666 + ], + [ + "▁wha", + -14.504179954528809 + ], + [ + "saurus", + -14.504186630249023 + ], + [ + "aise", + -14.504205703735352 + ], + [ + "▁Augsburg", + -14.504207611083984 + ], + [ + "▁Atheist", + -14.504219055175781 + ], + [ + "kami", + -14.504223823547363 + ], + [ + "▁contravene", + -14.504234313964844 + ], + [ + "▁contagion", + -14.504249572753906 + ], + [ + "▁uncheck", + -14.504250526428223 + ], + [ + "▁MSS", + -14.504286766052246 + ], + [ + "▁firestorm", + -14.504326820373535 + ], + [ + "▁bereft", + -14.504361152648926 + ], + [ + "▁Susanne", + -14.504365921020508 + ], + [ + "▁RSPCA", + -14.504378318786621 + ], + [ + "▁Sailors", + -14.504390716552734 + ], + [ + "▁centerline", + -14.504393577575684 + ], + [ + "▁centrality", + -14.504410743713379 + ], + [ + "ylate", + -14.504448890686035 + ], + [ + "▁coder", + -14.50445556640625 + ], + [ + "▁Inspiron", + -14.504460334777832 + ], + [ + "bbling", + -14.504463195800781 + ], + [ + "▁addendum", + -14.50455093383789 + ], + [ + "▁firemen", + -14.504570960998535 + ], + [ + "nitro", + -14.50457763671875 + ], + [ + "tmann", + -14.504599571228027 + ], + [ + "▁Temper", + -14.504636764526367 + ], + [ + "▁Northside", + -14.504683494567871 + ], + [ + "▁cuter", + -14.504740715026855 + ], + [ + "▁mutton", + -14.504772186279297 + ], + [ + "フ", + -14.504791259765625 + ], + [ + "▁boob", + -14.504849433898926 + ], + [ + "▁impotent", + -14.50487232208252 + ], + [ + "▁dil", + -14.504874229431152 + ], + [ + "▁duress", + -14.504894256591797 + ], + [ + "Oak", + -14.50489616394043 + ], + [ + "▁glib", + -14.504901885986328 + ], + [ + "▁Boden", + -14.504963874816895 + ], + [ + "942", + -14.504990577697754 + ], + [ + "▁DOOR", + -14.504997253417969 + ], + [ + "residents", + -14.505029678344727 + ], + [ + "PQ", + -14.505046844482422 + ], + [ + "▁WIDE", + -14.505058288574219 + ], + [ + "▁newsstand", + -14.505064010620117 + ], + [ + "▁Tally", + -14.505082130432129 + ], + [ + "tours", + -14.505110740661621 + ], + [ + "preservation", + -14.505114555358887 + ], + [ + "▁Snail", + -14.505118370056152 + ], + [ + "▁KID", + -14.50512409210205 + ], + [ + "ல்", + -14.505135536193848 + ], + [ + "▁Wellcome", + -14.505217552185059 + ], + [ + "▁SWF", + -14.505233764648438 + ], + [ + "▁Silber", + -14.505234718322754 + ], + [ + "▁rivet", + -14.505260467529297 + ], + [ + "▁inasmuch", + -14.505287170410156 + ], + [ + "▁hissing", + -14.505295753479004 + ], + [ + "schrift", + -14.505315780639648 + ], + [ + "▁Thoroughly", + -14.505335807800293 + ], + [ + "▁Gruber", + -14.505379676818848 + ], + [ + "▁qualitatively", + -14.505444526672363 + ], + [ + "▁tanner", + -14.505456924438477 + ], + [ + "▁Brac", + -14.505500793457031 + ], + [ + "▁Pays", + -14.505507469177246 + ], + [ + "oty", + -14.505555152893066 + ], + [ + "▁appraisers", + -14.505556106567383 + ], + [ + "▁EXT", + -14.505566596984863 + ], + [ + "▁Handbags", + -14.505572319030762 + ], + [ + "▁Motorhome", + -14.505613327026367 + ], + [ + "Kha", + -14.505622863769531 + ], + [ + "▁arable", + -14.505659103393555 + ], + [ + "genome", + -14.505661010742188 + ], + [ + "ostat", + -14.505667686462402 + ], + [ + "▁sheltering", + -14.505677223205566 + ], + [ + "IRO", + -14.505684852600098 + ], + [ + "VDC", + -14.505762100219727 + ], + [ + "▁boneless", + -14.505796432495117 + ], + [ + "▁Houthis", + -14.505800247192383 + ], + [ + "▁Gila", + -14.505845069885254 + ], + [ + "▁contaminant", + -14.505858421325684 + ], + [ + "teens", + -14.505894660949707 + ], + [ + "▁Hoosier", + -14.505914688110352 + ], + [ + "▁glycerol", + -14.505924224853516 + ], + [ + "▁cogent", + -14.505929946899414 + ], + [ + "Category", + -14.50593090057373 + ], + [ + "laugh", + -14.505934715270996 + ], + [ + "▁lavishly", + -14.505962371826172 + ], + [ + "▁Poi", + -14.505966186523438 + ], + [ + "▁Looney", + -14.50597095489502 + ], + [ + "▁Florentine", + -14.505972862243652 + ], + [ + "Kg", + -14.50599193572998 + ], + [ + "offers", + -14.506012916564941 + ], + [ + "▁ohms", + -14.506047248840332 + ], + [ + "▁Theoretically", + -14.506093978881836 + ], + [ + "▁connectedness", + -14.506103515625 + ], + [ + "▁Chiron", + -14.506122589111328 + ], + [ + "▁Meters", + -14.50620174407959 + ], + [ + "▁Sieg", + -14.506248474121094 + ], + [ + "▁Cooked", + -14.506258010864258 + ], + [ + "▁PLANT", + -14.506265640258789 + ], + [ + "▁Illumination", + -14.50629711151123 + ], + [ + "CHES", + -14.506299018859863 + ], + [ + "▁Hye", + -14.506302833557129 + ], + [ + "continuous", + -14.506319999694824 + ], + [ + "▁deformities", + -14.506357192993164 + ], + [ + "ieu", + -14.506380081176758 + ], + [ + "▁pedaling", + -14.506380081176758 + ], + [ + "▁amiable", + -14.506385803222656 + ], + [ + "▁jukebox", + -14.506535530090332 + ], + [ + "▁Optimized", + -14.506545066833496 + ], + [ + "▁resented", + -14.506561279296875 + ], + [ + "▁Overton", + -14.506573677062988 + ], + [ + "▁Releasing", + -14.506582260131836 + ], + [ + "▁laments", + -14.50659465789795 + ], + [ + "▁FV", + -14.506604194641113 + ], + [ + "▁placid", + -14.506614685058594 + ], + [ + "▁GAMES", + -14.506620407104492 + ], + [ + "▁Enrico", + -14.506625175476074 + ], + [ + "synth", + -14.5066556930542 + ], + [ + "▁oxidase", + -14.506665229797363 + ], + [ + "▁rucksack", + -14.506673812866211 + ], + [ + "▁bender", + -14.50674819946289 + ], + [ + "▁inclinations", + -14.50680923461914 + ], + [ + "▁Jeopardy", + -14.506830215454102 + ], + [ + "▁Marlow", + -14.5068359375 + ], + [ + "▁Tenor", + -14.506855010986328 + ], + [ + "▁Giordano", + -14.506875991821289 + ], + [ + "Berry", + -14.50688362121582 + ], + [ + "trieb", + -14.5068998336792 + ], + [ + "ocytosis", + -14.506932258605957 + ], + [ + "▁embroider", + -14.506998062133789 + ], + [ + "▁spire", + -14.507024765014648 + ], + [ + "▁Redlands", + -14.507040977478027 + ], + [ + "▁fumbles", + -14.507041931152344 + ], + [ + "▁Lakota", + -14.507078170776367 + ], + [ + "▁atau", + -14.507096290588379 + ], + [ + "Kra", + -14.507104873657227 + ], + [ + "▁Kiwis", + -14.507104873657227 + ], + [ + "▁REQUEST", + -14.50711727142334 + ], + [ + "▁buzzword", + -14.507133483886719 + ], + [ + "amount", + -14.507161140441895 + ], + [ + "servant", + -14.50717544555664 + ], + [ + "手", + -14.507238388061523 + ], + [ + "▁IOM", + -14.507243156433105 + ], + [ + "tactic", + -14.5072660446167 + ], + [ + "kbps", + -14.507316589355469 + ], + [ + "holds", + -14.507370948791504 + ], + [ + "Horse", + -14.507373809814453 + ], + [ + "▁CNG", + -14.507377624511719 + ], + [ + "▁Relaxing", + -14.50744915008545 + ], + [ + "zym", + -14.507458686828613 + ], + [ + "electronics", + -14.507477760314941 + ], + [ + "▁Onsite", + -14.507508277893066 + ], + [ + "apper", + -14.507530212402344 + ], + [ + "▁Organised", + -14.507542610168457 + ], + [ + "▁Hampden", + -14.50754451751709 + ], + [ + "rical", + -14.507590293884277 + ], + [ + "alba", + -14.507597923278809 + ], + [ + "▁Digging", + -14.507637023925781 + ], + [ + "▁kDa", + -14.507646560668945 + ], + [ + "HEAD", + -14.507654190063477 + ], + [ + "Toole", + -14.507662773132324 + ], + [ + "▁Lynchburg", + -14.507692337036133 + ], + [ + "▁ин", + -14.50772762298584 + ], + [ + "▁Dongguan", + -14.507765769958496 + ], + [ + "▁reconfigure", + -14.507773399353027 + ], + [ + "▁Perdue", + -14.507793426513672 + ], + [ + "▁etcetera", + -14.507822036743164 + ], + [ + "Defense", + -14.507823944091797 + ], + [ + "▁baggie", + -14.50783920288086 + ], + [ + "▁Spre", + -14.507872581481934 + ], + [ + "▁mannerisms", + -14.50787353515625 + ], + [ + "fellow", + -14.507877349853516 + ], + [ + "▁variegated", + -14.507879257202148 + ], + [ + "Tips", + -14.50789737701416 + ], + [ + "▁congruent", + -14.507899284362793 + ], + [ + "▁negation", + -14.507905006408691 + ], + [ + "▁Frankel", + -14.507918357849121 + ], + [ + "▁472", + -14.507925033569336 + ], + [ + "▁rustling", + -14.5079345703125 + ], + [ + "▁scavenging", + -14.507951736450195 + ], + [ + "▁disputing", + -14.507986068725586 + ], + [ + "▁alleviated", + -14.508000373840332 + ], + [ + "▁IUCN", + -14.508033752441406 + ], + [ + "▁Rhett", + -14.508033752441406 + ], + [ + "fetch", + -14.508061408996582 + ], + [ + "thu", + -14.508072853088379 + ], + [ + "▁Pender", + -14.508078575134277 + ], + [ + "▁Vamp", + -14.508103370666504 + ], + [ + "charter", + -14.508113861083984 + ], + [ + "▁Sprague", + -14.508126258850098 + ], + [ + "▁Lewandowski", + -14.508139610290527 + ], + [ + "▁Stallion", + -14.50815200805664 + ], + [ + "▁Hobbies", + -14.508155822753906 + ], + [ + "▁Icing", + -14.508169174194336 + ], + [ + "ungu", + -14.508201599121094 + ], + [ + "▁glutes", + -14.508209228515625 + ], + [ + "▁uro", + -14.50822925567627 + ], + [ + "▁SEVEN", + -14.508232116699219 + ], + [ + "versity", + -14.508243560791016 + ], + [ + "▁autumnal", + -14.50826358795166 + ], + [ + "▁Germantown", + -14.508291244506836 + ], + [ + "ensa", + -14.50829792022705 + ], + [ + "▁envi", + -14.508302688598633 + ], + [ + "▁Emporium", + -14.50830364227295 + ], + [ + "▁wheelbarrow", + -14.508343696594238 + ], + [ + "coats", + -14.508354187011719 + ], + [ + "▁attenuate", + -14.508360862731934 + ], + [ + "▁Basu", + -14.508380889892578 + ], + [ + "▁Wrapping", + -14.508384704589844 + ], + [ + "▁Vampires", + -14.5084228515625 + ], + [ + "▁Alternately", + -14.508447647094727 + ], + [ + "plicate", + -14.508472442626953 + ], + [ + "▁919", + -14.508472442626953 + ], + [ + "▁Hexa", + -14.508482933044434 + ], + [ + "▁housewives", + -14.508506774902344 + ], + [ + "Pipe", + -14.508535385131836 + ], + [ + "▁Gwinnett", + -14.508596420288086 + ], + [ + "Provide", + -14.508597373962402 + ], + [ + "garage", + -14.508609771728516 + ], + [ + "▁inverters", + -14.508622169494629 + ], + [ + "FET", + -14.508650779724121 + ], + [ + "▁homology", + -14.508687019348145 + ], + [ + "▁Framingham", + -14.508698463439941 + ], + [ + "booth", + -14.508817672729492 + ], + [ + "bias", + -14.508838653564453 + ], + [ + "▁Landlords", + -14.508844375610352 + ], + [ + "▁pocketbook", + -14.5088529586792 + ], + [ + "▁Revenues", + -14.508874893188477 + ], + [ + "▁blindfolded", + -14.508899688720703 + ], + [ + "943", + -14.508905410766602 + ], + [ + "▁diorama", + -14.508917808532715 + ], + [ + "▁afro", + -14.508965492248535 + ], + [ + "Jimmy", + -14.509026527404785 + ], + [ + "▁Jeong", + -14.50905704498291 + ], + [ + "▁Sherwin", + -14.509057998657227 + ], + [ + "▁SSN", + -14.509089469909668 + ], + [ + "▁AAS", + -14.509140968322754 + ], + [ + "agara", + -14.50915813446045 + ], + [ + "▁Pedersen", + -14.509160995483398 + ], + [ + "▁Hamill", + -14.509169578552246 + ], + [ + "pris", + -14.509181022644043 + ], + [ + "▁intersects", + -14.509186744689941 + ], + [ + "▁tiempo", + -14.509224891662598 + ], + [ + "Berlin", + -14.509231567382812 + ], + [ + "▁Margie", + -14.509237289428711 + ], + [ + "▁FINANCIAL", + -14.509241104125977 + ], + [ + "▁biosimilar", + -14.509251594543457 + ], + [ + "pharm", + -14.509269714355469 + ], + [ + "RUM", + -14.509283065795898 + ], + [ + "▁grazed", + -14.509377479553223 + ], + [ + "▁SMT", + -14.509384155273438 + ], + [ + "▁aussi", + -14.5094575881958 + ], + [ + "stud", + -14.509459495544434 + ], + [ + "Ruby", + -14.509481430053711 + ], + [ + "▁vermin", + -14.50948429107666 + ], + [ + "vb", + -14.509485244750977 + ], + [ + "▁Pey", + -14.509490013122559 + ], + [ + "Nazis", + -14.50951099395752 + ], + [ + "▁chowder", + -14.509519577026367 + ], + [ + "▁Kalu", + -14.509521484375 + ], + [ + "powder", + -14.509556770324707 + ], + [ + "psychological", + -14.509589195251465 + ], + [ + "▁empties", + -14.509590148925781 + ], + [ + "rir", + -14.509608268737793 + ], + [ + "▁Abandoned", + -14.509613990783691 + ], + [ + "▁CPO", + -14.509638786315918 + ], + [ + "▁Gallipoli", + -14.509685516357422 + ], + [ + "Male", + -14.50971794128418 + ], + [ + "▁Adair", + -14.509737014770508 + ], + [ + "▁Dona", + -14.509740829467773 + ], + [ + "▁bai", + -14.509740829467773 + ], + [ + "▁jitter", + -14.509769439697266 + ], + [ + "pron", + -14.509822845458984 + ], + [ + "atori", + -14.50986099243164 + ], + [ + "▁Minus", + -14.509864807128906 + ], + [ + "▁Masha", + -14.509902000427246 + ], + [ + "▁conservatively", + -14.50991439819336 + ], + [ + "▁revolutionizing", + -14.509936332702637 + ], + [ + "▁lurks", + -14.509967803955078 + ], + [ + "▁Pringle", + -14.509971618652344 + ], + [ + "▁Pano", + -14.509973526000977 + ], + [ + "▁VIX", + -14.509989738464355 + ], + [ + "▁Haru", + -14.509991645812988 + ], + [ + "▁granddaughters", + -14.510016441345215 + ], + [ + "▁Sorcerer", + -14.510025024414062 + ], + [ + "▁Atrium", + -14.5100679397583 + ], + [ + "▁pandas", + -14.510075569152832 + ], + [ + "▁Scheer", + -14.510086059570312 + ], + [ + "▁Kava", + -14.510100364685059 + ], + [ + "▁valium", + -14.510100364685059 + ], + [ + "olar", + -14.510101318359375 + ], + [ + "▁multifunction", + -14.510101318359375 + ], + [ + "▁Ranga", + -14.510127067565918 + ], + [ + "enzi", + -14.510129928588867 + ], + [ + "ratio", + -14.51013469696045 + ], + [ + "medic", + -14.510147094726562 + ], + [ + "Kitty", + -14.510161399841309 + ], + [ + "▁Syntax", + -14.510175704956055 + ], + [ + "▁monolith", + -14.510214805603027 + ], + [ + "rø", + -14.510242462158203 + ], + [ + "▁Ayrshire", + -14.510265350341797 + ], + [ + "▁williams", + -14.510310173034668 + ], + [ + "BERT", + -14.510342597961426 + ], + [ + "▁Tribulation", + -14.51037883758545 + ], + [ + "▁displacing", + -14.510406494140625 + ], + [ + "▁mickey", + -14.510416030883789 + ], + [ + "▁bok", + -14.510436058044434 + ], + [ + "▁APPLICATION", + -14.510438919067383 + ], + [ + "▁hyena", + -14.510457038879395 + ], + [ + "▁overblown", + -14.510461807250977 + ], + [ + "▁Losses", + -14.510465621948242 + ], + [ + "adden", + -14.51047134399414 + ], + [ + "tene", + -14.510493278503418 + ], + [ + "▁propellers", + -14.510498046875 + ], + [ + "curated", + -14.510541915893555 + ], + [ + "▁kV", + -14.510547637939453 + ], + [ + "▁FRE", + -14.51055908203125 + ], + [ + "▁SKIN", + -14.510563850402832 + ], + [ + "▁Wetlands", + -14.510586738586426 + ], + [ + "olino", + -14.510701179504395 + ], + [ + "éné", + -14.510704040527344 + ], + [ + "▁Curiously", + -14.510712623596191 + ], + [ + "▁Wrapped", + -14.510712623596191 + ], + [ + "▁Consuming", + -14.51075267791748 + ], + [ + "▁apertures", + -14.510760307312012 + ], + [ + "▁poplar", + -14.510770797729492 + ], + [ + "▁KILL", + -14.51078987121582 + ], + [ + "▁oregon", + -14.5108060836792 + ], + [ + "customers", + -14.510809898376465 + ], + [ + "▁1799", + -14.51082992553711 + ], + [ + "▁victoria", + -14.510830879211426 + ], + [ + "exceptional", + -14.510881423950195 + ], + [ + "主", + -14.510897636413574 + ], + [ + "са", + -14.510941505432129 + ], + [ + "▁highland", + -14.510973930358887 + ], + [ + "▁stubs", + -14.510977745056152 + ], + [ + "Thr", + -14.510985374450684 + ], + [ + "▁flushes", + -14.511014938354492 + ], + [ + "▁twisty", + -14.511082649230957 + ], + [ + "▁Launches", + -14.511148452758789 + ], + [ + "▁elegans", + -14.511155128479004 + ], + [ + "icity", + -14.51116943359375 + ], + [ + "▁implantable", + -14.511249542236328 + ], + [ + "Schedule", + -14.511251449584961 + ], + [ + "spouse", + -14.511308670043945 + ], + [ + "kta", + -14.511322975158691 + ], + [ + "▁Harrell", + -14.51136302947998 + ], + [ + "▁Tabs", + -14.511366844177246 + ], + [ + "ANNA", + -14.511370658874512 + ], + [ + "ead", + -14.511378288269043 + ], + [ + "▁WINNER", + -14.511441230773926 + ], + [ + "▁Hann", + -14.511453628540039 + ], + [ + "▁sno", + -14.511460304260254 + ], + [ + "▁Berlusconi", + -14.511505126953125 + ], + [ + "▁playwrights", + -14.511515617370605 + ], + [ + "094", + -14.511530876159668 + ], + [ + "▁Oshawa", + -14.511585235595703 + ], + [ + "NIE", + -14.511597633361816 + ], + [ + "▁Dalhousie", + -14.511610984802246 + ], + [ + "▁romper", + -14.511639595031738 + ], + [ + "EGA", + -14.511665344238281 + ], + [ + "Rush", + -14.511712074279785 + ], + [ + "εν", + -14.511723518371582 + ], + [ + "▁916", + -14.51172924041748 + ], + [ + "▁Burrell", + -14.51173210144043 + ], + [ + "▁Earnhardt", + -14.5117769241333 + ], + [ + "▁Giulia", + -14.511824607849121 + ], + [ + "▁repaying", + -14.511846542358398 + ], + [ + "scientists", + -14.511880874633789 + ], + [ + "efer", + -14.511961936950684 + ], + [ + "▁Biometric", + -14.51197338104248 + ], + [ + "1929", + -14.511974334716797 + ], + [ + "zte", + -14.51199722290039 + ], + [ + "▁Deir", + -14.512057304382324 + ], + [ + "▁preparer", + -14.512075424194336 + ], + [ + "▁unsteady", + -14.512081146240234 + ], + [ + "▁Boating", + -14.512083053588867 + ], + [ + "▁checkbook", + -14.512099266052246 + ], + [ + "▁Tei", + -14.512116432189941 + ], + [ + "▁topically", + -14.512152671813965 + ], + [ + "▁analyte", + -14.51215648651123 + ], + [ + "▁SoftBank", + -14.512174606323242 + ], + [ + "▁gasses", + -14.512174606323242 + ], + [ + "▁imaged", + -14.512176513671875 + ], + [ + "▁Fido", + -14.51220989227295 + ], + [ + "▁Blau", + -14.512218475341797 + ], + [ + "oder", + -14.512279510498047 + ], + [ + "▁detonation", + -14.512299537658691 + ], + [ + "lston", + -14.512310028076172 + ], + [ + "▁lithograph", + -14.51235580444336 + ], + [ + "▁Leningrad", + -14.512362480163574 + ], + [ + "▁pleads", + -14.512372970581055 + ], + [ + "hyun", + -14.512415885925293 + ], + [ + "▁plop", + -14.512444496154785 + ], + [ + "▁руб", + -14.512463569641113 + ], + [ + "▁suo", + -14.512526512145996 + ], + [ + "▁Glossy", + -14.51253890991211 + ], + [ + "▁pj", + -14.512542724609375 + ], + [ + "▁Jonathon", + -14.512578964233398 + ], + [ + "▁pivoting", + -14.512591361999512 + ], + [ + "▁immunological", + -14.512651443481445 + ], + [ + "NCI", + -14.512667655944824 + ], + [ + "▁operandi", + -14.512673377990723 + ], + [ + "▁Coffin", + -14.512675285339355 + ], + [ + "▁saunas", + -14.51270866394043 + ], + [ + "▁insures", + -14.512764930725098 + ], + [ + "2025", + -14.512823104858398 + ], + [ + "▁XY", + -14.512826919555664 + ], + [ + "▁Wayback", + -14.51286792755127 + ], + [ + "▁holistically", + -14.512890815734863 + ], + [ + "▁middleman", + -14.512906074523926 + ], + [ + "▁Pinellas", + -14.512909889221191 + ], + [ + "▁Commencement", + -14.512938499450684 + ], + [ + "▁Flax", + -14.512953758239746 + ], + [ + "▁Enid", + -14.51298999786377 + ], + [ + "droit", + -14.513012886047363 + ], + [ + "▁tenement", + -14.513050079345703 + ], + [ + "dric", + -14.513051986694336 + ], + [ + "▁swarmed", + -14.513097763061523 + ], + [ + "pital", + -14.513099670410156 + ], + [ + "▁nanometer", + -14.513099670410156 + ], + [ + "hner", + -14.513129234313965 + ], + [ + "▁655", + -14.513150215148926 + ], + [ + "▁fasciitis", + -14.513195991516113 + ], + [ + "▁gruelling", + -14.513199806213379 + ], + [ + "xion", + -14.513206481933594 + ], + [ + "▁Popp", + -14.513249397277832 + ], + [ + "▁Cpl", + -14.513272285461426 + ], + [ + "▁INCLUDED", + -14.513272285461426 + ], + [ + "bulk", + -14.513277053833008 + ], + [ + "式", + -14.513300895690918 + ], + [ + "▁linoleum", + -14.513315200805664 + ], + [ + "▁sequester", + -14.513315200805664 + ], + [ + "▁disused", + -14.513348579406738 + ], + [ + "mang", + -14.51335620880127 + ], + [ + "▁lessens", + -14.513360977172852 + ], + [ + "fert", + -14.51342487335205 + ], + [ + "reliant", + -14.513426780700684 + ], + [ + "▁reestablish", + -14.513426780700684 + ], + [ + "▁Pasco", + -14.513497352600098 + ], + [ + "isti", + -14.51350212097168 + ], + [ + "soil", + -14.513543128967285 + ], + [ + "▁Cont", + -14.5135498046875 + ], + [ + "▁Fonte", + -14.513569831848145 + ], + [ + "992", + -14.513612747192383 + ], + [ + "▁Miliband", + -14.513635635375977 + ], + [ + "▁Reston", + -14.513654708862305 + ], + [ + "▁Kimber", + -14.513754844665527 + ], + [ + "▁abutment", + -14.513775825500488 + ], + [ + "957", + -14.513795852661133 + ], + [ + "▁Lisp", + -14.513808250427246 + ], + [ + "▁Badminton", + -14.513847351074219 + ], + [ + "dimethyl", + -14.513864517211914 + ], + [ + "backup", + -14.513890266418457 + ], + [ + "DOM", + -14.513900756835938 + ], + [ + "▁isometric", + -14.513903617858887 + ], + [ + "▁Jacobsen", + -14.513927459716797 + ], + [ + "▁ciprofloxacin", + -14.51392936706543 + ], + [ + "▁Polynesia", + -14.513930320739746 + ], + [ + "▁Deception", + -14.513931274414062 + ], + [ + "▁Jaa", + -14.513936996459961 + ], + [ + "heed", + -14.51393985748291 + ], + [ + "▁loafers", + -14.514001846313477 + ], + [ + "▁ABT", + -14.514008522033691 + ], + [ + "▁cardholders", + -14.514104843139648 + ], + [ + "▁indiscriminately", + -14.51412582397461 + ], + [ + "pard", + -14.514169692993164 + ], + [ + "▁antler", + -14.514233589172363 + ], + [ + "▁practicum", + -14.514241218566895 + ], + [ + "▁perl", + -14.514270782470703 + ], + [ + "glas", + -14.514294624328613 + ], + [ + "▁Greenwald", + -14.514398574829102 + ], + [ + "▁confounded", + -14.514410018920898 + ], + [ + "▁quash", + -14.514423370361328 + ], + [ + "▁941", + -14.514463424682617 + ], + [ + "rapid", + -14.514467239379883 + ], + [ + "▁hammocks", + -14.514473915100098 + ], + [ + "▁Dunlap", + -14.51448917388916 + ], + [ + "▁uncon", + -14.514546394348145 + ], + [ + "egger", + -14.514583587646484 + ], + [ + "▁567", + -14.514607429504395 + ], + [ + "▁Neue", + -14.514610290527344 + ], + [ + "▁Dima", + -14.514616012573242 + ], + [ + "ilah", + -14.514633178710938 + ], + [ + "ский", + -14.51463794708252 + ], + [ + "▁773", + -14.514639854431152 + ], + [ + "▁booed", + -14.514639854431152 + ], + [ + "Policy", + -14.514671325683594 + ], + [ + "▁Toyo", + -14.514693260192871 + ], + [ + "exact", + -14.514707565307617 + ], + [ + "▁envisioning", + -14.514710426330566 + ], + [ + "▁clothesline", + -14.514724731445312 + ], + [ + "我", + -14.51477336883545 + ], + [ + "▁sanctification", + -14.514775276184082 + ], + [ + "▁Allure", + -14.51480484008789 + ], + [ + "breeze", + -14.514840126037598 + ], + [ + "▁docile", + -14.514867782592773 + ], + [ + "▁Restorative", + -14.51490592956543 + ], + [ + "▁ADB", + -14.514930725097656 + ], + [ + "▁xr", + -14.51497745513916 + ], + [ + "▁rRNA", + -14.51501750946045 + ], + [ + "1932", + -14.515032768249512 + ], + [ + "▁Detached", + -14.5150785446167 + ], + [ + "▁ionization", + -14.51512336730957 + ], + [ + "▁Towels", + -14.515192985534668 + ], + [ + "▁dann", + -14.515231132507324 + ], + [ + "Normal", + -14.51523494720459 + ], + [ + "CER", + -14.515284538269043 + ], + [ + "▁1760", + -14.515328407287598 + ], + [ + "▁regenerated", + -14.51533317565918 + ], + [ + "jk", + -14.515352249145508 + ], + [ + "▁amplifies", + -14.515423774719238 + ], + [ + "litter", + -14.5154447555542 + ], + [ + "▁Chlor", + -14.515453338623047 + ], + [ + "▁pathos", + -14.515485763549805 + ], + [ + "rabi", + -14.515510559082031 + ], + [ + "▁ungrateful", + -14.515534400939941 + ], + [ + "平", + -14.51558780670166 + ], + [ + "▁headgear", + -14.51559829711914 + ], + [ + "▁Zayed", + -14.515625 + ], + [ + "▁trumped", + -14.515640258789062 + ], + [ + "▁flicking", + -14.515677452087402 + ], + [ + "zimmer", + -14.515772819519043 + ], + [ + "▁Bonneville", + -14.515790939331055 + ], + [ + "▁Sweets", + -14.5158052444458 + ], + [ + "▁Yachts", + -14.515853881835938 + ], + [ + "▁multitudes", + -14.515875816345215 + ], + [ + "▁distancing", + -14.515900611877441 + ], + [ + "▁timescale", + -14.515908241271973 + ], + [ + "▁APN", + -14.515911102294922 + ], + [ + "BZ", + -14.515924453735352 + ], + [ + "▁Zoey", + -14.515932083129883 + ], + [ + "网", + -14.515936851501465 + ], + [ + "▁Strata", + -14.515939712524414 + ], + [ + "▁LIS", + -14.515958786010742 + ], + [ + "▁Ended", + -14.516016006469727 + ], + [ + "▁2027", + -14.516019821166992 + ], + [ + "▁soundness", + -14.516050338745117 + ], + [ + "▁Proactive", + -14.516063690185547 + ], + [ + "▁mistaking", + -14.516072273254395 + ], + [ + "▁terse", + -14.516109466552734 + ], + [ + "▁camshaft", + -14.516114234924316 + ], + [ + "▁Olde", + -14.516115188598633 + ], + [ + "isser", + -14.516120910644531 + ], + [ + "▁Starship", + -14.516134262084961 + ], + [ + "kopf", + -14.5161714553833 + ], + [ + "▁Forecasting", + -14.516172409057617 + ], + [ + "bale", + -14.516181945800781 + ], + [ + "▁Nauru", + -14.516196250915527 + ], + [ + "▁reinstalling", + -14.516207695007324 + ], + [ + "▁byproducts", + -14.516210556030273 + ], + [ + "▁starlet", + -14.516216278076172 + ], + [ + "▁inequities", + -14.516237258911133 + ], + [ + "PLAY", + -14.516244888305664 + ], + [ + "req", + -14.516253471374512 + ], + [ + "▁wildflower", + -14.516273498535156 + ], + [ + "▁shk", + -14.516319274902344 + ], + [ + "▁shui", + -14.516339302062988 + ], + [ + "▁Immunity", + -14.516340255737305 + ], + [ + "▁consternation", + -14.516351699829102 + ], + [ + "ishly", + -14.516366004943848 + ], + [ + "▁Finlay", + -14.516392707824707 + ], + [ + "▁Roadside", + -14.516451835632324 + ], + [ + "▁grafted", + -14.516471862792969 + ], + [ + "kens", + -14.516484260559082 + ], + [ + "▁WAVE", + -14.516587257385254 + ], + [ + "Continue", + -14.516600608825684 + ], + [ + "▁Pasteur", + -14.516606330871582 + ], + [ + "engaged", + -14.516611099243164 + ], + [ + "▁cipro", + -14.51663875579834 + ], + [ + "▁virtualized", + -14.516641616821289 + ], + [ + "erich", + -14.516644477844238 + ], + [ + "▁scrolled", + -14.516691207885742 + ], + [ + "▁Sacha", + -14.516718864440918 + ], + [ + "▁obj", + -14.516733169555664 + ], + [ + "▁Vaccines", + -14.516769409179688 + ], + [ + "Results", + -14.51679801940918 + ], + [ + "át", + -14.51680850982666 + ], + [ + "▁emulated", + -14.516838073730469 + ], + [ + "▁pulleys", + -14.516850471496582 + ], + [ + "▁harvester", + -14.516891479492188 + ], + [ + "▁SAID", + -14.516892433166504 + ], + [ + "CODE", + -14.516952514648438 + ], + [ + "▁ARB", + -14.516975402832031 + ], + [ + "▁Hirst", + -14.516987800598145 + ], + [ + "▁quay", + -14.516995429992676 + ], + [ + "genes", + -14.516998291015625 + ], + [ + "▁Panoramic", + -14.517034530639648 + ], + [ + "▁misgivings", + -14.51707649230957 + ], + [ + "ocin", + -14.517082214355469 + ], + [ + "▁Baccarat", + -14.517094612121582 + ], + [ + "▁HCl", + -14.517097473144531 + ], + [ + "▁FIELD", + -14.517132759094238 + ], + [ + "▁mammography", + -14.517183303833008 + ], + [ + "▁Baj", + -14.517184257507324 + ], + [ + "▁DRY", + -14.517295837402344 + ], + [ + "▁produ", + -14.517304420471191 + ], + [ + "▁Cuthbert", + -14.517322540283203 + ], + [ + "▁polity", + -14.51733684539795 + ], + [ + "▁599", + -14.517378807067871 + ], + [ + "▁intermediates", + -14.517389297485352 + ], + [ + "freezer", + -14.5173921585083 + ], + [ + "▁Asiatic", + -14.517393112182617 + ], + [ + "▁Vacancies", + -14.517414093017578 + ], + [ + "Alan", + -14.517433166503906 + ], + [ + "▁Neuron", + -14.517464637756348 + ], + [ + "▁armchairs", + -14.517467498779297 + ], + [ + "▁HMI", + -14.517541885375977 + ], + [ + "leadership", + -14.517557144165039 + ], + [ + "▁Mussel", + -14.517577171325684 + ], + [ + "യ", + -14.517578125 + ], + [ + "▁prophylactic", + -14.517602920532227 + ], + [ + "▁Vines", + -14.517619132995605 + ], + [ + "▁failover", + -14.517632484436035 + ], + [ + "getter", + -14.5176362991333 + ], + [ + "▁Ambien", + -14.517679214477539 + ], + [ + "attribute", + -14.517707824707031 + ], + [ + "▁argumentation", + -14.517719268798828 + ], + [ + "Trent", + -14.517729759216309 + ], + [ + "▁Packaged", + -14.517766952514648 + ], + [ + "zler", + -14.517809867858887 + ], + [ + "▁wearers", + -14.517831802368164 + ], + [ + "Analysis", + -14.517843246459961 + ], + [ + "▁Bluffs", + -14.517855644226074 + ], + [ + "Solid", + -14.517861366271973 + ], + [ + "▁interrogator", + -14.517873764038086 + ], + [ + "ajo", + -14.517898559570312 + ], + [ + "▁Embiid", + -14.517898559570312 + ], + [ + "▁Papal", + -14.517898559570312 + ], + [ + "▁trucker", + -14.517906188964844 + ], + [ + "▁Schön", + -14.517910957336426 + ], + [ + "▁alludes", + -14.517926216125488 + ], + [ + "▁tamp", + -14.518028259277344 + ], + [ + "▁biotin", + -14.518059730529785 + ], + [ + "clearly", + -14.518071174621582 + ], + [ + "Uncle", + -14.518073081970215 + ], + [ + "maine", + -14.518083572387695 + ], + [ + "▁fermenting", + -14.51816463470459 + ], + [ + "▁BLAST", + -14.518196105957031 + ], + [ + "quoted", + -14.51819896697998 + ], + [ + "Manchester", + -14.518210411071777 + ], + [ + "▁unhinged", + -14.518238067626953 + ], + [ + "▁Grading", + -14.518250465393066 + ], + [ + "▁Landau", + -14.518270492553711 + ], + [ + "Pub", + -14.518288612365723 + ], + [ + "▁Coltrane", + -14.518314361572266 + ], + [ + "▁mobilise", + -14.518331527709961 + ], + [ + "▁Kamara", + -14.518352508544922 + ], + [ + "▁intensification", + -14.518360137939453 + ], + [ + "▁Integer", + -14.518379211425781 + ], + [ + "▁ALBERTA", + -14.518452644348145 + ], + [ + "▁Booz", + -14.518452644348145 + ], + [ + "▁crawls", + -14.518478393554688 + ], + [ + "falling", + -14.5184907913208 + ], + [ + "Pb", + -14.518518447875977 + ], + [ + "▁Stel", + -14.51852035522461 + ], + [ + "ند", + -14.518575668334961 + ], + [ + "▁SAI", + -14.51858139038086 + ], + [ + "▁Stoker", + -14.518603324890137 + ], + [ + "▁conceptualization", + -14.51862621307373 + ], + [ + "▁noob", + -14.51862907409668 + ], + [ + "▁Oi", + -14.518637657165527 + ], + [ + "vendor", + -14.518692016601562 + ], + [ + "▁denigrate", + -14.51870059967041 + ], + [ + "AVI", + -14.518729209899902 + ], + [ + "olina", + -14.518729209899902 + ], + [ + "▁Ales", + -14.518731117248535 + ], + [ + "▁Pham", + -14.518753051757812 + ], + [ + "nag", + -14.518792152404785 + ], + [ + "▁CBE", + -14.518838882446289 + ], + [ + "▁Outperform", + -14.518843650817871 + ], + [ + "starring", + -14.518906593322754 + ], + [ + "▁pylon", + -14.518909454345703 + ], + [ + "▁lisinopril", + -14.518978118896484 + ], + [ + "▁darkish", + -14.519026756286621 + ], + [ + "▁Stencil", + -14.519050598144531 + ], + [ + "▁GTI", + -14.51905632019043 + ], + [ + "gine", + -14.51906967163086 + ], + [ + "dite", + -14.519073486328125 + ], + [ + "▁7500", + -14.51909065246582 + ], + [ + "▁Negotiation", + -14.51909065246582 + ], + [ + "▁fates", + -14.519150733947754 + ], + [ + "Allen", + -14.519163131713867 + ], + [ + "▁Bergeron", + -14.519173622131348 + ], + [ + "acclaimed", + -14.519176483154297 + ], + [ + "▁vocations", + -14.519200325012207 + ], + [ + "angling", + -14.519201278686523 + ], + [ + "▁Lucian", + -14.519213676452637 + ], + [ + "▁Domi", + -14.519254684448242 + ], + [ + "▁hairdo", + -14.519268035888672 + ], + [ + "parks", + -14.51931381225586 + ], + [ + "▁Ngo", + -14.51932144165039 + ], + [ + "▁Buzzfeed", + -14.519323348999023 + ], + [ + "glove", + -14.519329071044922 + ], + [ + "▁Teu", + -14.519332885742188 + ], + [ + "NIH", + -14.519342422485352 + ], + [ + "ил", + -14.519365310668945 + ], + [ + "▁glyc", + -14.519438743591309 + ], + [ + "Hoo", + -14.519462585449219 + ], + [ + "▁Acquiring", + -14.519590377807617 + ], + [ + "▁FRANK", + -14.519622802734375 + ], + [ + "▁NTFS", + -14.519622802734375 + ], + [ + "▁ADAM", + -14.519673347473145 + ], + [ + "▁Trad", + -14.519673347473145 + ], + [ + "▁Ponds", + -14.519674301147461 + ], + [ + "▁discouragement", + -14.519679069519043 + ], + [ + "▁CDA", + -14.519721984863281 + ], + [ + "▁Gert", + -14.519737243652344 + ], + [ + "ajar", + -14.519758224487305 + ], + [ + "MATIC", + -14.519790649414062 + ], + [ + "▁Stash", + -14.51990032196045 + ], + [ + "tying", + -14.519906997680664 + ], + [ + "▁decadence", + -14.519919395446777 + ], + [ + "▁cognac", + -14.51992130279541 + ], + [ + "▁Algebraic", + -14.519967079162598 + ], + [ + "▁MCG", + -14.520005226135254 + ], + [ + "צ", + -14.52006721496582 + ], + [ + "▁Diese", + -14.520103454589844 + ], + [ + "bex", + -14.520125389099121 + ], + [ + "ffler", + -14.520157814025879 + ], + [ + "▁couscous", + -14.520215034484863 + ], + [ + "dough", + -14.520224571228027 + ], + [ + "▁1796", + -14.520234107971191 + ], + [ + "Chrome", + -14.520258903503418 + ], + [ + "▁VCU", + -14.520280838012695 + ], + [ + "farmer", + -14.520363807678223 + ], + [ + "▁Throat", + -14.520381927490234 + ], + [ + "▁나", + -14.520429611206055 + ], + [ + "arta", + -14.520451545715332 + ], + [ + "▁Alvarado", + -14.520524978637695 + ], + [ + "▁Schindler", + -14.520578384399414 + ], + [ + "▁Lhasa", + -14.520615577697754 + ], + [ + "▁dai", + -14.520622253417969 + ], + [ + "VIEW", + -14.520652770996094 + ], + [ + "verted", + -14.520727157592773 + ], + [ + "▁chargeable", + -14.520760536193848 + ], + [ + "SIN", + -14.520769119262695 + ], + [ + "herself", + -14.520787239074707 + ], + [ + "▁Subscriptions", + -14.520788192749023 + ], + [ + "▁lander", + -14.520843505859375 + ], + [ + "▁DIG", + -14.520906448364258 + ], + [ + "▁Ashcroft", + -14.520914077758789 + ], + [ + "우", + -14.520966529846191 + ], + [ + "▁armament", + -14.521130561828613 + ], + [ + "Font", + -14.521148681640625 + ], + [ + "▁ectopic", + -14.521191596984863 + ], + [ + "▁steelhead", + -14.521200180053711 + ], + [ + "juan", + -14.521211624145508 + ], + [ + "Sab", + -14.52121639251709 + ], + [ + "▁Guang", + -14.521230697631836 + ], + [ + "▁woofer", + -14.521236419677734 + ], + [ + "▁Palmyra", + -14.521249771118164 + ], + [ + "abc", + -14.521258354187012 + ], + [ + "▁Restoring", + -14.521306037902832 + ], + [ + "▁unopposed", + -14.52133846282959 + ], + [ + "▁disinfect", + -14.52138614654541 + ], + [ + "▁forlorn", + -14.52138900756836 + ], + [ + "▁descendent", + -14.521398544311523 + ], + [ + "intended", + -14.52141284942627 + ], + [ + "▁Freya", + -14.521444320678711 + ], + [ + "▁Disciplinary", + -14.521461486816406 + ], + [ + "▁Lasting", + -14.521472930908203 + ], + [ + "▁Walsall", + -14.521475791931152 + ], + [ + "▁sri", + -14.52148723602295 + ], + [ + "▁Starling", + -14.521499633789062 + ], + [ + "▁Saline", + -14.521504402160645 + ], + [ + "▁motorcyclist", + -14.521512031555176 + ], + [ + "▁Chez", + -14.521520614624023 + ], + [ + "Impact", + -14.5215482711792 + ], + [ + "▁Gynecol", + -14.521560668945312 + ], + [ + "▁Conqueror", + -14.521613121032715 + ], + [ + "▁Windmill", + -14.52163314819336 + ], + [ + "▁Reinforced", + -14.521743774414062 + ], + [ + "▁Cocktails", + -14.521759033203125 + ], + [ + "Adventure", + -14.521777153015137 + ], + [ + "▁Zoology", + -14.521793365478516 + ], + [ + "▁Partnering", + -14.521819114685059 + ], + [ + "▁Nazism", + -14.521846771240234 + ], + [ + "boots", + -14.521848678588867 + ], + [ + "▁Pae", + -14.52186393737793 + ], + [ + "engagement", + -14.521867752075195 + ], + [ + "CBN", + -14.521872520446777 + ], + [ + "▁molestation", + -14.521875381469727 + ], + [ + "▁invigorate", + -14.521878242492676 + ], + [ + "yden", + -14.521891593933105 + ], + [ + "ól", + -14.521925926208496 + ], + [ + "▁Acro", + -14.521998405456543 + ], + [ + "▁flashcards", + -14.52202033996582 + ], + [ + "▁Schilling", + -14.522041320800781 + ], + [ + "Professor", + -14.52207088470459 + ], + [ + "▁Merk", + -14.522078514099121 + ], + [ + "▁Vengeance", + -14.522090911865234 + ], + [ + "▁McClain", + -14.522107124328613 + ], + [ + "▁statin", + -14.522128105163574 + ], + [ + "TCH", + -14.522162437438965 + ], + [ + "▁GOODMAN", + -14.522189140319824 + ], + [ + "▁Gyro", + -14.522189140319824 + ], + [ + "▁Geiger", + -14.522232055664062 + ], + [ + "1922", + -14.522257804870605 + ], + [ + "▁Harwood", + -14.522269248962402 + ], + [ + "▁tine", + -14.522293090820312 + ], + [ + "▁Dojo", + -14.522298812866211 + ], + [ + "▁journeyed", + -14.522344589233398 + ], + [ + "meo", + -14.522351264953613 + ], + [ + "▁representational", + -14.522356986999512 + ], + [ + "angled", + -14.52236270904541 + ], + [ + "mote", + -14.522368431091309 + ], + [ + "circ", + -14.522370338439941 + ], + [ + "▁chaste", + -14.522411346435547 + ], + [ + "anese", + -14.52250862121582 + ], + [ + "▁Pemberton", + -14.522528648376465 + ], + [ + "▁PAST", + -14.52253246307373 + ], + [ + "▁Miro", + -14.522534370422363 + ], + [ + "Virginia", + -14.522551536560059 + ], + [ + "wonderful", + -14.522565841674805 + ], + [ + "▁Azalea", + -14.522628784179688 + ], + [ + "▁shockwave", + -14.52263355255127 + ], + [ + "▁ALC", + -14.522692680358887 + ], + [ + "▁reinvention", + -14.522733688354492 + ], + [ + "▁Dalit", + -14.522797584533691 + ], + [ + "▁synod", + -14.522830963134766 + ], + [ + "▁crappie", + -14.522860527038574 + ], + [ + "▁Allman", + -14.522929191589355 + ], + [ + "▁euthanized", + -14.522966384887695 + ], + [ + "▁pk", + -14.522972106933594 + ], + [ + "▁disconnecting", + -14.523017883300781 + ], + [ + "▁bloodied", + -14.523018836975098 + ], + [ + "Isn", + -14.523040771484375 + ], + [ + "▁Skrill", + -14.523051261901855 + ], + [ + "Dick", + -14.523089408874512 + ], + [ + "▁ambivalence", + -14.523124694824219 + ], + [ + "▁moisturizers", + -14.5231294631958 + ], + [ + "▁Motherhood", + -14.523133277893066 + ], + [ + "▁Nicklaus", + -14.52314567565918 + ], + [ + "▁jen", + -14.523154258728027 + ], + [ + "drain", + -14.523168563842773 + ], + [ + "▁Bauhaus", + -14.52318286895752 + ], + [ + "▁Eil", + -14.523183822631836 + ], + [ + "▁Responder", + -14.523225784301758 + ], + [ + "Cyber", + -14.52324104309082 + ], + [ + "▁Genealogical", + -14.5232572555542 + ], + [ + "▁Armchair", + -14.523274421691895 + ], + [ + "▁Incorporation", + -14.523286819458008 + ], + [ + "gamma", + -14.523331642150879 + ], + [ + "▁droppings", + -14.523351669311523 + ], + [ + "Boat", + -14.523361206054688 + ], + [ + "▁MiG", + -14.5233793258667 + ], + [ + "▁Hagel", + -14.52340030670166 + ], + [ + "▁warmup", + -14.52341365814209 + ], + [ + "▁fascists", + -14.523435592651367 + ], + [ + "▁calamities", + -14.523439407348633 + ], + [ + "Tribune", + -14.523445129394531 + ], + [ + "▁Acquisitions", + -14.523455619812012 + ], + [ + "▁Tep", + -14.523507118225098 + ], + [ + "rubber", + -14.523514747619629 + ], + [ + "▁ushering", + -14.523526191711426 + ], + [ + "▁dank", + -14.523528099060059 + ], + [ + "▁Andersson", + -14.523538589477539 + ], + [ + "▁heiress", + -14.523538589477539 + ], + [ + "▁Pharrell", + -14.523542404174805 + ], + [ + "▁ULTRA", + -14.523552894592285 + ], + [ + "benefits", + -14.5235595703125 + ], + [ + "▁girdle", + -14.52356243133545 + ], + [ + "▁Tots", + -14.523590087890625 + ], + [ + "PPC", + -14.523598670959473 + ], + [ + "aving", + -14.523606300354004 + ], + [ + "▁blushed", + -14.523614883422852 + ], + [ + "▁Hendrick", + -14.523703575134277 + ], + [ + "バ", + -14.523706436157227 + ], + [ + "▁Obligation", + -14.52375602722168 + ], + [ + "▁Hydroxy", + -14.52376651763916 + ], + [ + "riga", + -14.523816108703613 + ], + [ + "LAT", + -14.523829460144043 + ], + [ + "▁weeklong", + -14.523839950561523 + ], + [ + "▁Avian", + -14.52384090423584 + ], + [ + "▁ministering", + -14.523853302001953 + ], + [ + "▁korean", + -14.52388858795166 + ], + [ + "▁Jayson", + -14.52389144897461 + ], + [ + "▁Medtronic", + -14.523893356323242 + ], + [ + "▁Orissa", + -14.523906707763672 + ], + [ + "pei", + -14.523920059204102 + ], + [ + "▁LPs", + -14.523938179016113 + ], + [ + "omon", + -14.523977279663086 + ], + [ + "olle", + -14.5239839553833 + ], + [ + "énergie", + -14.523988723754883 + ], + [ + "▁undying", + -14.52402400970459 + ], + [ + "▁scribbled", + -14.524044036865234 + ], + [ + "▁totalled", + -14.524103164672852 + ], + [ + "▁prospered", + -14.524117469787598 + ], + [ + "▁Competence", + -14.524150848388672 + ], + [ + "▁resolutely", + -14.524158477783203 + ], + [ + "▁816", + -14.524181365966797 + ], + [ + "▁thursday", + -14.524218559265137 + ], + [ + "▁Lure", + -14.524235725402832 + ], + [ + "methoxy", + -14.524236679077148 + ], + [ + "▁SLP", + -14.524246215820312 + ], + [ + "▁Tether", + -14.524316787719727 + ], + [ + "▁Stri", + -14.524320602416992 + ], + [ + "▁PUP", + -14.524335861206055 + ], + [ + "Grow", + -14.524336814880371 + ], + [ + "▁Cristian", + -14.52433967590332 + ], + [ + "▁Linton", + -14.524343490600586 + ], + [ + "▁Ranging", + -14.524368286132812 + ], + [ + "▁Surfaces", + -14.524391174316406 + ], + [ + "▁whitelist", + -14.524409294128418 + ], + [ + "hier", + -14.524431228637695 + ], + [ + "propecia", + -14.524432182312012 + ], + [ + "▁Jaws", + -14.524435997009277 + ], + [ + "▁mangroves", + -14.524441719055176 + ], + [ + "▁Tish", + -14.52452564239502 + ], + [ + "▁outgrow", + -14.524539947509766 + ], + [ + "▁Adopting", + -14.524563789367676 + ], + [ + "david", + -14.52458667755127 + ], + [ + "Morgan", + -14.524596214294434 + ], + [ + "▁shortbread", + -14.5246000289917 + ], + [ + "▁Vertigo", + -14.52462100982666 + ], + [ + "▁reprehensible", + -14.524672508239746 + ], + [ + "optim", + -14.524739265441895 + ], + [ + "rosis", + -14.524785041809082 + ], + [ + "entity", + -14.524808883666992 + ], + [ + "个", + -14.524832725524902 + ], + [ + "▁Pockets", + -14.524859428405762 + ], + [ + "▁Config", + -14.524862289428711 + ], + [ + "pv", + -14.52487564086914 + ], + [ + "▁Authenticity", + -14.524879455566406 + ], + [ + "sartan", + -14.52491569519043 + ], + [ + "▁Biggs", + -14.524949073791504 + ], + [ + "▁Legit", + -14.524949073791504 + ], + [ + "▁Cohort", + -14.524953842163086 + ], + [ + "▁Lido", + -14.524994850158691 + ], + [ + "cera", + -14.524995803833008 + ], + [ + "presented", + -14.525006294250488 + ], + [ + "Tickets", + -14.525032997131348 + ], + [ + "▁strident", + -14.52505874633789 + ], + [ + "▁perversion", + -14.525064468383789 + ], + [ + "▁felons", + -14.525087356567383 + ], + [ + "configuration", + -14.525104522705078 + ], + [ + "wonder", + -14.525153160095215 + ], + [ + "▁exponents", + -14.525157928466797 + ], + [ + "uddy", + -14.525176048278809 + ], + [ + "further", + -14.525177001953125 + ], + [ + "▁Caddy", + -14.525223731994629 + ], + [ + "▁Weaving", + -14.525235176086426 + ], + [ + "reset", + -14.525238037109375 + ], + [ + "lunk", + -14.525286674499512 + ], + [ + "▁MOTHER", + -14.525294303894043 + ], + [ + "▁Endpoint", + -14.525307655334473 + ], + [ + "▁Haywood", + -14.525310516357422 + ], + [ + "SBA", + -14.52534294128418 + ], + [ + "dieu", + -14.525360107421875 + ], + [ + "commonly", + -14.52539348602295 + ], + [ + "▁obituaries", + -14.525411605834961 + ], + [ + "▁Keurig", + -14.525428771972656 + ], + [ + "▁Playtech", + -14.525444984436035 + ], + [ + "▁917", + -14.525452613830566 + ], + [ + "ethical", + -14.525520324707031 + ], + [ + "alarm", + -14.525530815124512 + ], + [ + "▁DEM", + -14.525540351867676 + ], + [ + "▁tiebreaker", + -14.52561092376709 + ], + [ + "▁Clans", + -14.525634765625 + ], + [ + "pleasant", + -14.525651931762695 + ], + [ + "▁eq", + -14.52565860748291 + ], + [ + "▁HAPPEN", + -14.525666236877441 + ], + [ + "ragging", + -14.525667190551758 + ], + [ + "arbeit", + -14.525675773620605 + ], + [ + "▁Bunting", + -14.525677680969238 + ], + [ + "EAL", + -14.525686264038086 + ], + [ + "ODA", + -14.52569580078125 + ], + [ + "▁discourages", + -14.525713920593262 + ], + [ + "IGA", + -14.525731086730957 + ], + [ + "▁Woodley", + -14.525766372680664 + ], + [ + "opted", + -14.52578353881836 + ], + [ + "ту", + -14.525803565979004 + ], + [ + "ESE", + -14.525834083557129 + ], + [ + "dication", + -14.52584171295166 + ], + [ + "▁oxytocin", + -14.525876998901367 + ], + [ + "▁Seaman", + -14.525887489318848 + ], + [ + "fung", + -14.525895118713379 + ], + [ + "ktion", + -14.525912284851074 + ], + [ + "▁pCloud", + -14.525970458984375 + ], + [ + "▁laurel", + -14.526004791259766 + ], + [ + "uvel", + -14.526013374328613 + ], + [ + "▁Humphries", + -14.526034355163574 + ], + [ + "▁COX", + -14.526043891906738 + ], + [ + "▁summarise", + -14.526045799255371 + ], + [ + "▁Initiation", + -14.5260591506958 + ], + [ + "▁Ashwin", + -14.526220321655273 + ], + [ + "▁engravings", + -14.52627944946289 + ], + [ + "ి", + -14.526283264160156 + ], + [ + "obie", + -14.52630615234375 + ], + [ + "▁tiki", + -14.526309967041016 + ], + [ + "▁Α", + -14.526309967041016 + ], + [ + "oxidant", + -14.526321411132812 + ], + [ + "▁Confusion", + -14.526322364807129 + ], + [ + "▁afflict", + -14.526328086853027 + ], + [ + "▁Lax", + -14.526334762573242 + ], + [ + "cence", + -14.526345252990723 + ], + [ + "puff", + -14.526345252990723 + ], + [ + "▁Flacco", + -14.526345252990723 + ], + [ + "▁Frodo", + -14.526358604431152 + ], + [ + "▁parallax", + -14.5263671875 + ], + [ + "▁countermeasures", + -14.52637004852295 + ], + [ + "▁Frau", + -14.526434898376465 + ], + [ + "▁rattlesnake", + -14.526484489440918 + ], + [ + "▁Experian", + -14.526493072509766 + ], + [ + "▁813", + -14.526494979858398 + ], + [ + "CHAR", + -14.526503562927246 + ], + [ + "ckley", + -14.526529312133789 + ], + [ + "▁Rajan", + -14.526582717895508 + ], + [ + "mistake", + -14.526602745056152 + ], + [ + "▁MIGHT", + -14.526616096496582 + ], + [ + "▁refraction", + -14.526658058166504 + ], + [ + "vak", + -14.526692390441895 + ], + [ + "▁Khur", + -14.526724815368652 + ], + [ + "▁replenishment", + -14.526739120483398 + ], + [ + "▁smears", + -14.526835441589355 + ], + [ + "▁consigned", + -14.526922225952148 + ], + [ + "▁Kirkwood", + -14.52695083618164 + ], + [ + "▁proportioned", + -14.526955604553223 + ], + [ + "iña", + -14.526962280273438 + ], + [ + "▁Fav", + -14.526963233947754 + ], + [ + "▁zebrafish", + -14.526966094970703 + ], + [ + "▁Faroe", + -14.52697467803955 + ], + [ + "SOR", + -14.526981353759766 + ], + [ + "▁cappella", + -14.52701473236084 + ], + [ + "osus", + -14.527045249938965 + ], + [ + "▁Casualty", + -14.52705192565918 + ], + [ + "▁Xcode", + -14.527091026306152 + ], + [ + "▁Secretaries", + -14.527109146118164 + ], + [ + "▁certifies", + -14.527121543884277 + ], + [ + "▁sympathise", + -14.527145385742188 + ], + [ + "blatt", + -14.527148246765137 + ], + [ + "coins", + -14.527178764343262 + ], + [ + "▁Shaq", + -14.527180671691895 + ], + [ + "▁abhorrent", + -14.527183532714844 + ], + [ + "▁outflows", + -14.527190208435059 + ], + [ + "▁Cathay", + -14.527205467224121 + ], + [ + "▁melancholic", + -14.527247428894043 + ], + [ + "▁Assisi", + -14.527254104614258 + ], + [ + "▁Cairn", + -14.527277946472168 + ], + [ + "▁Armin", + -14.52731704711914 + ], + [ + "▁Counsellor", + -14.527326583862305 + ], + [ + "▁tattooing", + -14.527336120605469 + ], + [ + "▁manifolds", + -14.527365684509277 + ], + [ + "tram", + -14.527376174926758 + ], + [ + "▁chrono", + -14.5274019241333 + ], + [ + "▁pruned", + -14.52743148803711 + ], + [ + "Dean", + -14.527470588684082 + ], + [ + "▁telemarketing", + -14.527478218078613 + ], + [ + "▁Consume", + -14.527482032775879 + ], + [ + "judgmental", + -14.527563095092773 + ], + [ + "▁bibliographic", + -14.52757740020752 + ], + [ + "▁lifter", + -14.527633666992188 + ], + [ + "வ", + -14.5277738571167 + ], + [ + "lary", + -14.527785301208496 + ], + [ + "명", + -14.527795791625977 + ], + [ + "▁Lewiston", + -14.527804374694824 + ], + [ + "▁bodysuit", + -14.527812957763672 + ], + [ + "▁Wadsworth", + -14.527814865112305 + ], + [ + "▁POLICE", + -14.527838706970215 + ], + [ + "Turkish", + -14.527904510498047 + ], + [ + "დ", + -14.527904510498047 + ], + [ + "▁autocratic", + -14.527913093566895 + ], + [ + "▁Overlook", + -14.527928352355957 + ], + [ + "▁pardoned", + -14.527939796447754 + ], + [ + "▁stirs", + -14.52795124053955 + ], + [ + "▁Hatton", + -14.528018951416016 + ], + [ + "▁WRC", + -14.528036117553711 + ], + [ + "▁debutant", + -14.528038024902344 + ], + [ + "▁maa", + -14.528082847595215 + ], + [ + "▁ERISA", + -14.528090476989746 + ], + [ + "▁bestsellers", + -14.528132438659668 + ], + [ + "▁Ş", + -14.528142929077148 + ], + [ + "▁mending", + -14.528146743774414 + ], + [ + "▁hatchery", + -14.528160095214844 + ], + [ + "▁Lame", + -14.528167724609375 + ], + [ + "▁SNC", + -14.528216361999512 + ], + [ + "▁therewith", + -14.528237342834473 + ], + [ + "▁Automat", + -14.52829647064209 + ], + [ + "▁nerf", + -14.528328895568848 + ], + [ + "NOC", + -14.528369903564453 + ], + [ + "€¦", + -14.528373718261719 + ], + [ + "pov", + -14.52841567993164 + ], + [ + "olini", + -14.528416633605957 + ], + [ + "strapped", + -14.528434753417969 + ], + [ + "▁Fourteenth", + -14.528486251831055 + ], + [ + "▁chroma", + -14.528497695922852 + ], + [ + "stance", + -14.52851390838623 + ], + [ + "▁aerosols", + -14.528575897216797 + ], + [ + "▁Dena", + -14.528584480285645 + ], + [ + "▁Salva", + -14.528584480285645 + ], + [ + "▁cyclones", + -14.52858829498291 + ], + [ + "▁Givenchy", + -14.528599739074707 + ], + [ + "EAN", + -14.528640747070312 + ], + [ + "mau", + -14.528679847717285 + ], + [ + "▁turtleneck", + -14.528708457946777 + ], + [ + "▁Brut", + -14.528728485107422 + ], + [ + "kv", + -14.528749465942383 + ], + [ + "▁thrashed", + -14.528807640075684 + ], + [ + "Kai", + -14.5288667678833 + ], + [ + "▁Shred", + -14.52889347076416 + ], + [ + "vulnerable", + -14.528907775878906 + ], + [ + "▁litigator", + -14.528918266296387 + ], + [ + "PCA", + -14.528961181640625 + ], + [ + "▁FOI", + -14.528966903686523 + ], + [ + "▁Issuer", + -14.52896785736084 + ], + [ + "▁nebulous", + -14.528980255126953 + ], + [ + "elda", + -14.529001235961914 + ], + [ + "▁Banners", + -14.529017448425293 + ], + [ + "GIN", + -14.529062271118164 + ], + [ + "▁Immanuel", + -14.529071807861328 + ], + [ + "▁Bertie", + -14.529109954833984 + ], + [ + "Maya", + -14.529207229614258 + ], + [ + "Handler", + -14.52928638458252 + ], + [ + "▁Schmid", + -14.529324531555176 + ], + [ + "▁Aromatherapy", + -14.529356002807617 + ], + [ + "▁Lethal", + -14.529358863830566 + ], + [ + "▁Heuer", + -14.52944278717041 + ], + [ + "▁distilling", + -14.529528617858887 + ], + [ + "▁forked", + -14.52956485748291 + ], + [ + "▁Emirati", + -14.529576301574707 + ], + [ + "ndal", + -14.529607772827148 + ], + [ + "форм", + -14.529609680175781 + ], + [ + "▁Ema", + -14.529635429382324 + ], + [ + "▁boos", + -14.529641151428223 + ], + [ + "▁Lanier", + -14.529654502868652 + ], + [ + "▁floater", + -14.529655456542969 + ], + [ + "▁macroscopic", + -14.529671669006348 + ], + [ + "▁resold", + -14.529691696166992 + ], + [ + "▁Zest", + -14.529715538024902 + ], + [ + "tracks", + -14.529719352722168 + ], + [ + "▁proviso", + -14.529723167419434 + ], + [ + "▁turd", + -14.529747009277344 + ], + [ + "▁touchstone", + -14.52977180480957 + ], + [ + "▁Aramaic", + -14.529803276062012 + ], + [ + "▁Upside", + -14.529824256896973 + ], + [ + "▁Ceremonies", + -14.529927253723145 + ], + [ + "1850", + -14.529928207397461 + ], + [ + "Emb", + -14.529953956604004 + ], + [ + "▁stoma", + -14.529994010925293 + ], + [ + "▁Mö", + -14.530009269714355 + ], + [ + "schreib", + -14.530014038085938 + ], + [ + "noble", + -14.53001880645752 + ], + [ + "▁AVC", + -14.530043601989746 + ], + [ + "▁materiality", + -14.530059814453125 + ], + [ + "使用", + -14.53016185760498 + ], + [ + "▁ú", + -14.530165672302246 + ], + [ + "▁1783", + -14.530170440673828 + ], + [ + "kant", + -14.530192375183105 + ], + [ + "ания", + -14.530232429504395 + ], + [ + "▁prescribes", + -14.530275344848633 + ], + [ + "stabil", + -14.53027629852295 + ], + [ + "▁rulebook", + -14.530326843261719 + ], + [ + "▁apache", + -14.5303316116333 + ], + [ + "tsa", + -14.530349731445312 + ], + [ + "cyan", + -14.530383110046387 + ], + [ + "lde", + -14.530399322509766 + ], + [ + "extract", + -14.530522346496582 + ], + [ + "这", + -14.530522346496582 + ], + [ + "▁Batista", + -14.530533790588379 + ], + [ + "hav", + -14.530557632446289 + ], + [ + "FIP", + -14.530590057373047 + ], + [ + "▁deliverable", + -14.530592918395996 + ], + [ + "▁beholden", + -14.530623435974121 + ], + [ + "▁CCNA", + -14.530624389648438 + ], + [ + "▁bitrate", + -14.530644416809082 + ], + [ + "jeet", + -14.530668258666992 + ], + [ + "▁Sampler", + -14.530671119689941 + ], + [ + "problems", + -14.530715942382812 + ], + [ + "▁AFS", + -14.530733108520508 + ], + [ + "▁buster", + -14.530801773071289 + ], + [ + "▁Excise", + -14.530817985534668 + ], + [ + "▁Arpaio", + -14.530818939208984 + ], + [ + "shiro", + -14.530840873718262 + ], + [ + "Beach", + -14.530851364135742 + ], + [ + "▁unabated", + -14.530852317810059 + ], + [ + "▁bylaw", + -14.530998229980469 + ], + [ + "▁riverbank", + -14.531000137329102 + ], + [ + "▁Retin", + -14.531003952026367 + ], + [ + "rake", + -14.531005859375 + ], + [ + "▁thawing", + -14.531060218811035 + ], + [ + "▁pullout", + -14.531061172485352 + ], + [ + "HOR", + -14.531082153320312 + ], + [ + "▁gradation", + -14.531083106994629 + ], + [ + "▁WORKING", + -14.531142234802246 + ], + [ + "▁custodians", + -14.531177520751953 + ], + [ + "▁infringes", + -14.53118896484375 + ], + [ + "yani", + -14.531249046325684 + ], + [ + "icidal", + -14.531256675720215 + ], + [ + "▁swimsuits", + -14.53128433227539 + ], + [ + "▁worsens", + -14.531291961669922 + ], + [ + "Payment", + -14.531312942504883 + ], + [ + "1934", + -14.531332969665527 + ], + [ + "▁HBV", + -14.531333923339844 + ], + [ + "Reach", + -14.531341552734375 + ], + [ + "▁GLASS", + -14.531354904174805 + ], + [ + "▁throwaway", + -14.53136920928955 + ], + [ + "▁bezels", + -14.531377792358398 + ], + [ + "▁Marz", + -14.53138542175293 + ], + [ + "2400", + -14.531396865844727 + ], + [ + "▁hydrates", + -14.531415939331055 + ], + [ + "▁concord", + -14.531439781188965 + ], + [ + "derman", + -14.531453132629395 + ], + [ + "▁curveball", + -14.531460762023926 + ], + [ + "▁unapologetic", + -14.53148365020752 + ], + [ + "▁Numer", + -14.531492233276367 + ], + [ + "▁Albi", + -14.531509399414062 + ], + [ + "inform", + -14.531546592712402 + ], + [ + "Cultural", + -14.531594276428223 + ], + [ + "▁chatroom", + -14.531614303588867 + ], + [ + "▁tiptoe", + -14.531654357910156 + ], + [ + "▁leech", + -14.531720161437988 + ], + [ + "TOS", + -14.531732559204102 + ], + [ + "▁rejoiced", + -14.531744003295898 + ], + [ + "gada", + -14.531747817993164 + ], + [ + "▁Martyr", + -14.531754493713379 + ], + [ + "uvo", + -14.531780242919922 + ], + [ + "dinger", + -14.531782150268555 + ], + [ + "க", + -14.531784057617188 + ], + [ + "Specific", + -14.531787872314453 + ], + [ + "▁MOA", + -14.531787872314453 + ], + [ + "▁Colonies", + -14.53182601928711 + ], + [ + "▁limiter", + -14.531875610351562 + ], + [ + "▁queued", + -14.531895637512207 + ], + [ + "▁geranium", + -14.531939506530762 + ], + [ + "▁heroics", + -14.531947135925293 + ], + [ + "committed", + -14.531962394714355 + ], + [ + "▁cookout", + -14.531972885131836 + ], + [ + "▁LIE", + -14.532008171081543 + ], + [ + "▁thoroughbred", + -14.532020568847656 + ], + [ + "cellulose", + -14.532023429870605 + ], + [ + "▁Consistently", + -14.532048225402832 + ], + [ + "▁slings", + -14.532052040100098 + ], + [ + "icate", + -14.532060623168945 + ], + [ + "Political", + -14.532110214233398 + ], + [ + "▁FLV", + -14.53212833404541 + ], + [ + "▁cynic", + -14.532156944274902 + ], + [ + "▁Gama", + -14.532175064086914 + ], + [ + "owy", + -14.532219886779785 + ], + [ + "▁Crump", + -14.532258987426758 + ], + [ + "▁Untitled", + -14.532393455505371 + ], + [ + "rgo", + -14.53245735168457 + ], + [ + "▁withstood", + -14.532546997070312 + ], + [ + "▁में", + -14.532572746276855 + ], + [ + "▁Berne", + -14.532591819763184 + ], + [ + "▁902", + -14.532604217529297 + ], + [ + "▁dike", + -14.532618522644043 + ], + [ + "properties", + -14.532649040222168 + ], + [ + "▁equating", + -14.532651901245117 + ], + [ + "generator", + -14.532683372497559 + ], + [ + "della", + -14.532685279846191 + ], + [ + "▁linguist", + -14.532693862915039 + ], + [ + "Provider", + -14.532695770263672 + ], + [ + "▁Compost", + -14.532706260681152 + ], + [ + "MMC", + -14.532722473144531 + ], + [ + "gatherer", + -14.53272533416748 + ], + [ + "€¢", + -14.53272533416748 + ], + [ + "▁или", + -14.532754898071289 + ], + [ + "▁Calf", + -14.532768249511719 + ], + [ + "▁undertone", + -14.532792091369629 + ], + [ + "affect", + -14.532814979553223 + ], + [ + "Bud", + -14.532821655273438 + ], + [ + "▁malts", + -14.532831192016602 + ], + [ + "▁Chechen", + -14.53288459777832 + ], + [ + "toro", + -14.532920837402344 + ], + [ + "enham", + -14.53295612335205 + ], + [ + "▁gorgeously", + -14.532983779907227 + ], + [ + "lute", + -14.532991409301758 + ], + [ + "▁dyno", + -14.533016204833984 + ], + [ + "▁Afrikaans", + -14.533037185668945 + ], + [ + "▁х", + -14.533048629760742 + ], + [ + "inium", + -14.53307056427002 + ], + [ + "▁Oneida", + -14.533079147338867 + ], + [ + "carved", + -14.533106803894043 + ], + [ + "tadalafil", + -14.533129692077637 + ], + [ + "▁PCL", + -14.533167839050293 + ], + [ + "▁Truro", + -14.533171653747559 + ], + [ + "출", + -14.533182144165039 + ], + [ + "▁pris", + -14.533185958862305 + ], + [ + "Bac", + -14.533194541931152 + ], + [ + "▁Nettle", + -14.533196449279785 + ], + [ + "Gee", + -14.533211708068848 + ], + [ + "▁Edie", + -14.533249855041504 + ], + [ + "▁Foursquare", + -14.53325366973877 + ], + [ + "▁morgue", + -14.533256530761719 + ], + [ + "▁Lega", + -14.5332670211792 + ], + [ + "▁pounced", + -14.53330135345459 + ], + [ + "▁Primrose", + -14.533329963684082 + ], + [ + "▁rebar", + -14.533356666564941 + ], + [ + "▁Dz", + -14.533360481262207 + ], + [ + "▁Appalachia", + -14.533364295959473 + ], + [ + "plants", + -14.533458709716797 + ], + [ + "identification", + -14.533470153808594 + ], + [ + "▁Woj", + -14.533470153808594 + ], + [ + "▁bushels", + -14.533495903015137 + ], + [ + "▁Delano", + -14.533499717712402 + ], + [ + "▁ascetic", + -14.533509254455566 + ], + [ + "である", + -14.533544540405273 + ], + [ + "▁crowdsourcing", + -14.53357982635498 + ], + [ + "CID", + -14.533592224121094 + ], + [ + "▁dau", + -14.53360366821289 + ], + [ + "fide", + -14.533653259277344 + ], + [ + "▁divination", + -14.533672332763672 + ], + [ + "isu", + -14.533744812011719 + ], + [ + "▁Advertisers", + -14.533745765686035 + ], + [ + "▁liquidate", + -14.533761024475098 + ], + [ + "▁Cthulhu", + -14.533767700195312 + ], + [ + "▁RNAs", + -14.53385066986084 + ], + [ + "▁Nathalie", + -14.533851623535156 + ], + [ + "▁Hodgkin", + -14.533923149108887 + ], + [ + "nui", + -14.533926010131836 + ], + [ + "▁Koda", + -14.533956527709961 + ], + [ + "avor", + -14.53398323059082 + ], + [ + "▁Ageing", + -14.5339937210083 + ], + [ + "▁Noting", + -14.534025192260742 + ], + [ + "▁Heaters", + -14.534029006958008 + ], + [ + "TCP", + -14.534038543701172 + ], + [ + "Leon", + -14.534040451049805 + ], + [ + "▁Hexagon", + -14.534067153930664 + ], + [ + "▁gage", + -14.534071922302246 + ], + [ + "▁hairstylist", + -14.534098625183105 + ], + [ + "▁flor", + -14.534100532531738 + ], + [ + "▁McAuliffe", + -14.534219741821289 + ], + [ + "atrice", + -14.534252166748047 + ], + [ + "▁Breen", + -14.534259796142578 + ], + [ + "▁SPO", + -14.534265518188477 + ], + [ + "▁extrapolate", + -14.53427791595459 + ], + [ + "▁Concorde", + -14.534287452697754 + ], + [ + "▁Cervical", + -14.534347534179688 + ], + [ + "▁Extras", + -14.534348487854004 + ], + [ + "▁Ganges", + -14.53435230255127 + ], + [ + "▁Xtra", + -14.53436279296875 + ], + [ + "NEWS", + -14.534377098083496 + ], + [ + "▁Explosive", + -14.534406661987305 + ], + [ + "ños", + -14.53444766998291 + ], + [ + "goth", + -14.53457260131836 + ], + [ + "▁ww", + -14.534578323364258 + ], + [ + "Org", + -14.534582138061523 + ], + [ + "▁glyco", + -14.534613609313965 + ], + [ + "▁superfood", + -14.534642219543457 + ], + [ + "▁Sentencing", + -14.53465747833252 + ], + [ + "ANTS", + -14.534682273864746 + ], + [ + "cchio", + -14.534687995910645 + ], + [ + "sperm", + -14.534756660461426 + ], + [ + "▁readjust", + -14.53476619720459 + ], + [ + "▁Locksmiths", + -14.534802436828613 + ], + [ + "rato", + -14.534832954406738 + ], + [ + "▁Controversy", + -14.534839630126953 + ], + [ + "disabled", + -14.534880638122559 + ], + [ + "bois", + -14.534911155700684 + ], + [ + "▁encroaching", + -14.534923553466797 + ], + [ + "▁videography", + -14.53493595123291 + ], + [ + "▁Mashable", + -14.534942626953125 + ], + [ + "▁hag", + -14.535005569458008 + ], + [ + "▁snooker", + -14.535028457641602 + ], + [ + "▁erecting", + -14.535033226013184 + ], + [ + "▁Oshkosh", + -14.535040855407715 + ], + [ + "PBS", + -14.535114288330078 + ], + [ + "strategy", + -14.53511905670166 + ], + [ + "aju", + -14.535147666931152 + ], + [ + "▁Lilith", + -14.535162925720215 + ], + [ + "▁Modernism", + -14.535279273986816 + ], + [ + "▁opportunist", + -14.535326957702637 + ], + [ + "▁spits", + -14.535343170166016 + ], + [ + "Harris", + -14.535416603088379 + ], + [ + "ucha", + -14.53546142578125 + ], + [ + "▁rams", + -14.535503387451172 + ], + [ + "▁gunpowder", + -14.535514831542969 + ], + [ + "▁numeracy", + -14.53551959991455 + ], + [ + "▁Incoming", + -14.535552978515625 + ], + [ + "▁redevelop", + -14.535613059997559 + ], + [ + "awwy", + -14.535614967346191 + ], + [ + "▁swathes", + -14.535662651062012 + ], + [ + "▁jitters", + -14.535669326782227 + ], + [ + "▁REAR", + -14.535672187805176 + ], + [ + "▁SSO", + -14.535682678222656 + ], + [ + "▁Esca", + -14.535694122314453 + ], + [ + "▁Takeaway", + -14.53569507598877 + ], + [ + "▁Numerology", + -14.535703659057617 + ], + [ + "Nat", + -14.535731315612793 + ], + [ + "▁Temecula", + -14.53575325012207 + ], + [ + "▁Potentially", + -14.535893440246582 + ], + [ + "solv", + -14.535918235778809 + ], + [ + "▁ASOS", + -14.535966873168945 + ], + [ + "▁adopter", + -14.536022186279297 + ], + [ + "▁personalisation", + -14.53607177734375 + ], + [ + "▁CRU", + -14.53608512878418 + ], + [ + "agno", + -14.536108016967773 + ], + [ + "▁Mello", + -14.536125183105469 + ], + [ + "▁Tasman", + -14.536195755004883 + ], + [ + "hats", + -14.536203384399414 + ], + [ + "▁dwindle", + -14.536222457885742 + ], + [ + "▁Ginsberg", + -14.536240577697754 + ], + [ + "▁Sine", + -14.53624153137207 + ], + [ + "▁celebrant", + -14.536251068115234 + ], + [ + "▁extinguishers", + -14.53634262084961 + ], + [ + "▁Mainz", + -14.536371231079102 + ], + [ + "▁Federated", + -14.536407470703125 + ], + [ + "▁Sandbox", + -14.536432266235352 + ], + [ + "kula", + -14.53647232055664 + ], + [ + "пис", + -14.536480903625488 + ], + [ + "▁lakefront", + -14.53648567199707 + ], + [ + "▁Tripura", + -14.53649616241455 + ], + [ + "▁Bacillus", + -14.536567687988281 + ], + [ + "evic", + -14.536605834960938 + ], + [ + "▁gospels", + -14.536628723144531 + ], + [ + "▁Maura", + -14.536641120910645 + ], + [ + "▁pearly", + -14.536653518676758 + ], + [ + "▁porters", + -14.536683082580566 + ], + [ + "▁Criss", + -14.536690711975098 + ], + [ + "▁Certifications", + -14.536742210388184 + ], + [ + "▁MATTER", + -14.536751747131348 + ], + [ + "lyse", + -14.536762237548828 + ], + [ + "▁stingy", + -14.536787986755371 + ], + [ + "▁SGS", + -14.536795616149902 + ], + [ + "wam", + -14.536832809448242 + ], + [ + "▁cesarean", + -14.536876678466797 + ], + [ + "▁Cabana", + -14.536921501159668 + ], + [ + "arid", + -14.536959648132324 + ], + [ + "▁474", + -14.536964416503906 + ], + [ + "▁annals", + -14.536988258361816 + ], + [ + "Disc", + -14.536993980407715 + ], + [ + "▁Pape", + -14.537029266357422 + ], + [ + "▁Sentry", + -14.53703784942627 + ], + [ + "▁hemo", + -14.537129402160645 + ], + [ + "rgh", + -14.537154197692871 + ], + [ + "tact", + -14.537193298339844 + ], + [ + "▁footpaths", + -14.537209510803223 + ], + [ + "▁culpable", + -14.537211418151855 + ], + [ + "▁Convey", + -14.537248611450195 + ], + [ + "▁Kippur", + -14.537277221679688 + ], + [ + "interested", + -14.53727912902832 + ], + [ + "▁headliners", + -14.537315368652344 + ], + [ + "tox", + -14.537334442138672 + ], + [ + "fabric", + -14.537361145019531 + ], + [ + "▁alluding", + -14.53738021850586 + ], + [ + "型", + -14.537395477294922 + ], + [ + "▁HEL", + -14.537431716918945 + ], + [ + "suicide", + -14.537456512451172 + ], + [ + "▁shareholding", + -14.537466049194336 + ], + [ + "▁BIN", + -14.537482261657715 + ], + [ + "▁Hitman", + -14.537491798400879 + ], + [ + "▁Swede", + -14.537494659423828 + ], + [ + "injection", + -14.537517547607422 + ], + [ + "▁rebooting", + -14.53752613067627 + ], + [ + "▁Violation", + -14.537540435791016 + ], + [ + "▁Waymo", + -14.537551879882812 + ], + [ + "▁ln", + -14.53758716583252 + ], + [ + "▁Bainbridge", + -14.537596702575684 + ], + [ + "▁Yr", + -14.53762149810791 + ], + [ + "maintain", + -14.53762435913086 + ], + [ + "▁Ryerson", + -14.537637710571289 + ], + [ + "▁disheartened", + -14.53768253326416 + ], + [ + "▁Pittsburg", + -14.537750244140625 + ], + [ + "horror", + -14.537806510925293 + ], + [ + "▁Kinney", + -14.537860870361328 + ], + [ + "screening", + -14.537862777709961 + ], + [ + "Cookie", + -14.538049697875977 + ], + [ + "▁fishers", + -14.538080215454102 + ], + [ + "れ", + -14.53818130493164 + ], + [ + "▁Gronkowski", + -14.538206100463867 + ], + [ + "▁xenophobic", + -14.538229942321777 + ], + [ + "wb", + -14.538301467895508 + ], + [ + "▁Plu", + -14.538301467895508 + ], + [ + "▁Tyra", + -14.538331985473633 + ], + [ + "▁harem", + -14.53837776184082 + ], + [ + "pictures", + -14.53839111328125 + ], + [ + "▁antiquities", + -14.538396835327148 + ], + [ + "illus", + -14.538413047790527 + ], + [ + "▁crud", + -14.53841781616211 + ], + [ + "debug", + -14.538528442382812 + ], + [ + "walls", + -14.53856086730957 + ], + [ + "▁Googling", + -14.538594245910645 + ], + [ + "▁oxen", + -14.53861141204834 + ], + [ + "RSS", + -14.538630485534668 + ], + [ + "Guest", + -14.538650512695312 + ], + [ + "▁nutritionists", + -14.538660049438477 + ], + [ + "bum", + -14.53868293762207 + ], + [ + "ব", + -14.53873348236084 + ], + [ + "▁Quinoa", + -14.53873348236084 + ], + [ + "▁VOIP", + -14.538734436035156 + ], + [ + "▁sek", + -14.538762092590332 + ], + [ + "▁Enables", + -14.538778305053711 + ], + [ + "▁559", + -14.538780212402344 + ], + [ + "Position", + -14.538841247558594 + ], + [ + "▁unconnected", + -14.538869857788086 + ], + [ + "▁mortars", + -14.538905143737793 + ], + [ + "▁morphing", + -14.53896713256836 + ], + [ + "▁sages", + -14.538994789123535 + ], + [ + "▁Odom", + -14.539007186889648 + ], + [ + "DIY", + -14.539057731628418 + ], + [ + "AULT", + -14.539116859436035 + ], + [ + "▁Dhu", + -14.539132118225098 + ], + [ + "▁conceiving", + -14.53913688659668 + ], + [ + "principal", + -14.539161682128906 + ], + [ + "Ion", + -14.539209365844727 + ], + [ + "▁Mundo", + -14.539253234863281 + ], + [ + "▁reframe", + -14.539253234863281 + ], + [ + "▁trolleys", + -14.539278984069824 + ], + [ + "metic", + -14.53928279876709 + ], + [ + "▁JoAnn", + -14.539321899414062 + ], + [ + "▁Ammo", + -14.539346694946289 + ], + [ + "▁Spares", + -14.539361000061035 + ], + [ + "▁Lump", + -14.539369583129883 + ], + [ + "▁Shrek", + -14.53939151763916 + ], + [ + "Lucky", + -14.539484977722168 + ], + [ + "impaired", + -14.539490699768066 + ], + [ + "▁Bartolo", + -14.539502143859863 + ], + [ + "▁Veer", + -14.539523124694824 + ], + [ + "▁Hypothesis", + -14.53955078125 + ], + [ + "judicial", + -14.53963851928711 + ], + [ + "1925", + -14.539643287658691 + ], + [ + "scaping", + -14.539663314819336 + ], + [ + "unna", + -14.539692878723145 + ], + [ + "▁Imogen", + -14.539695739746094 + ], + [ + "▁nic", + -14.539717674255371 + ], + [ + "egation", + -14.539737701416016 + ], + [ + "dirt", + -14.539789199829102 + ], + [ + "▁Horgan", + -14.53980541229248 + ], + [ + "▁DAD", + -14.539878845214844 + ], + [ + "▁OBC", + -14.540006637573242 + ], + [ + "▁lark", + -14.540006637573242 + ], + [ + "▁Arora", + -14.540033340454102 + ], + [ + "▁unsweetened", + -14.540034294128418 + ], + [ + "▁Bernd", + -14.540070533752441 + ], + [ + "▁feng", + -14.540082931518555 + ], + [ + "▁CLEVELAND", + -14.540104866027832 + ], + [ + "COMP", + -14.540108680725098 + ], + [ + "ně", + -14.540122985839844 + ], + [ + "letta", + -14.540138244628906 + ], + [ + "▁pleats", + -14.540140151977539 + ], + [ + "▁caries", + -14.540159225463867 + ], + [ + "▁Gandalf", + -14.540205955505371 + ], + [ + "▁Desserts", + -14.540234565734863 + ], + [ + "▁electronica", + -14.540239334106445 + ], + [ + "▁alligators", + -14.540243148803711 + ], + [ + "▁featherweight", + -14.540268898010254 + ], + [ + "tonal", + -14.54028034210205 + ], + [ + "▁Petrov", + -14.540294647216797 + ], + [ + "▁rickshaw", + -14.540305137634277 + ], + [ + "etus", + -14.540308952331543 + ], + [ + "▁retrace", + -14.540323257446289 + ], + [ + "▁gusset", + -14.540324211120605 + ], + [ + "▁Disputes", + -14.54033374786377 + ], + [ + "slavery", + -14.540407180786133 + ], + [ + "▁Hinckley", + -14.540426254272461 + ], + [ + "▁bangle", + -14.540514945983887 + ], + [ + "▁nitrates", + -14.540519714355469 + ], + [ + "GLOBE", + -14.540573120117188 + ], + [ + "developer", + -14.540574073791504 + ], + [ + "excel", + -14.540586471557617 + ], + [ + "▁KVM", + -14.540595054626465 + ], + [ + "▁Disrupt", + -14.540603637695312 + ], + [ + "▁circ", + -14.540674209594727 + ], + [ + "ulan", + -14.540678977966309 + ], + [ + "▁Romain", + -14.540740966796875 + ], + [ + "▁crawlers", + -14.540753364562988 + ], + [ + "zou", + -14.54076099395752 + ], + [ + "▁elastomer", + -14.54078197479248 + ], + [ + "eser", + -14.540788650512695 + ], + [ + "rested", + -14.540791511535645 + ], + [ + "▁Chabad", + -14.540803909301758 + ], + [ + "Matrix", + -14.54080581665039 + ], + [ + "TAP", + -14.54080867767334 + ], + [ + "▁satchel", + -14.540836334228516 + ], + [ + "akha", + -14.540841102600098 + ], + [ + "▁preponderance", + -14.54084587097168 + ], + [ + "▁Dias", + -14.540886878967285 + ], + [ + "cipit", + -14.540903091430664 + ], + [ + "▁Abb", + -14.540912628173828 + ], + [ + "▁postulated", + -14.540918350219727 + ], + [ + "jä", + -14.540986061096191 + ], + [ + "▁Fright", + -14.541032791137695 + ], + [ + "visibility", + -14.541036605834961 + ], + [ + "Aware", + -14.541059494018555 + ], + [ + "▁Escondido", + -14.541081428527832 + ], + [ + "▁Hadrian", + -14.541084289550781 + ], + [ + "▁pectin", + -14.541092872619629 + ], + [ + "▁Filming", + -14.541096687316895 + ], + [ + "▁JAR", + -14.541132926940918 + ], + [ + "▁Shon", + -14.541143417358398 + ], + [ + "▁571", + -14.541149139404297 + ], + [ + "▁Wittgenstein", + -14.541149139404297 + ], + [ + "fraction", + -14.5411958694458 + ], + [ + "▁larceny", + -14.541208267211914 + ], + [ + "▁chattering", + -14.541282653808594 + ], + [ + "▁outgrowth", + -14.541287422180176 + ], + [ + "▁OTP", + -14.541312217712402 + ], + [ + "Verse", + -14.541313171386719 + ], + [ + "▁YT", + -14.541349411010742 + ], + [ + "Accessed", + -14.541365623474121 + ], + [ + "llum", + -14.54140567779541 + ], + [ + "▁GUARANTEE", + -14.541406631469727 + ], + [ + "▁polyphenols", + -14.541415214538574 + ], + [ + "▁cooperatively", + -14.54149341583252 + ], + [ + "▁MetLife", + -14.541522026062012 + ], + [ + "▁reintroduce", + -14.541528701782227 + ], + [ + "ocular", + -14.54155158996582 + ], + [ + "ived", + -14.541556358337402 + ], + [ + "▁Glenda", + -14.541560173034668 + ], + [ + "▁FORD", + -14.541561126708984 + ], + [ + "NSW", + -14.5415620803833 + ], + [ + "▁Mindset", + -14.541572570800781 + ], + [ + "▁Pate", + -14.541619300842285 + ], + [ + "▁Racks", + -14.541691780090332 + ], + [ + "▁Lech", + -14.541707038879395 + ], + [ + "▁Observing", + -14.541707992553711 + ], + [ + "▁Komp", + -14.541817665100098 + ], + [ + "▁blogpost", + -14.541860580444336 + ], + [ + "▁UCSF", + -14.541878700256348 + ], + [ + "Villa", + -14.54188060760498 + ], + [ + "▁Hillman", + -14.54190731048584 + ], + [ + "counting", + -14.541932106018066 + ], + [ + "▁lamination", + -14.541991233825684 + ], + [ + "shek", + -14.542024612426758 + ], + [ + "▁Commissioning", + -14.542027473449707 + ], + [ + "▁Fleury", + -14.542033195495605 + ], + [ + "▁CSX", + -14.54204273223877 + ], + [ + "▁Westmoreland", + -14.542068481445312 + ], + [ + "▁cruelly", + -14.542159080505371 + ], + [ + "▁languishing", + -14.54216194152832 + ], + [ + "shel", + -14.542235374450684 + ], + [ + "▁Dominguez", + -14.542237281799316 + ], + [ + "▁GIL", + -14.542248725891113 + ], + [ + "▁businesswoman", + -14.5422945022583 + ], + [ + "Navy", + -14.542315483093262 + ], + [ + "▁stiffen", + -14.542356491088867 + ], + [ + "▁Jakub", + -14.54239273071289 + ], + [ + "▁Jyoti", + -14.542404174804688 + ], + [ + "Probably", + -14.54240894317627 + ], + [ + "chand", + -14.542410850524902 + ], + [ + "▁Cargill", + -14.54242992401123 + ], + [ + "▁erupts", + -14.542439460754395 + ], + [ + "▁RING", + -14.542442321777344 + ], + [ + "▁Bangla", + -14.542491912841797 + ], + [ + "KES", + -14.542513847351074 + ], + [ + "▁loon", + -14.542525291442871 + ], + [ + "▁grates", + -14.542552947998047 + ], + [ + "▁elasticated", + -14.54258918762207 + ], + [ + "▁Econ", + -14.54265022277832 + ], + [ + "▁Colossians", + -14.542661666870117 + ], + [ + "▁Eisenberg", + -14.5426664352417 + ], + [ + "▁hematopoietic", + -14.54270076751709 + ], + [ + "▁unmanageable", + -14.542726516723633 + ], + [ + "ecological", + -14.54275894165039 + ], + [ + "ේ", + -14.542777061462402 + ], + [ + "▁perinatal", + -14.54278564453125 + ], + [ + "▁ubiquity", + -14.54280948638916 + ], + [ + "▁Tutoring", + -14.542865753173828 + ], + [ + "▁telltale", + -14.542890548706055 + ], + [ + "▁alchemist", + -14.542899131774902 + ], + [ + "▁Vara", + -14.542919158935547 + ], + [ + "▁lä", + -14.542962074279785 + ], + [ + "▁Fairchild", + -14.542999267578125 + ], + [ + "ttin", + -14.5430269241333 + ], + [ + "USER", + -14.54304027557373 + ], + [ + "▁ugg", + -14.54304313659668 + ], + [ + "▁tiller", + -14.543050765991211 + ], + [ + "fighters", + -14.543088912963867 + ], + [ + "apk", + -14.543110847473145 + ], + [ + "association", + -14.543134689331055 + ], + [ + "▁corre", + -14.543134689331055 + ], + [ + "▁Sadiq", + -14.543148040771484 + ], + [ + "▁refurbishing", + -14.543158531188965 + ], + [ + "▁cytochrome", + -14.543184280395508 + ], + [ + "christian", + -14.543246269226074 + ], + [ + "▁Calderon", + -14.543255805969238 + ], + [ + "▁Warn", + -14.543262481689453 + ], + [ + "▁Joliet", + -14.543331146240234 + ], + [ + "▁Expat", + -14.543352127075195 + ], + [ + "Citizen", + -14.543397903442383 + ], + [ + "▁Delray", + -14.543435096740723 + ], + [ + "▁bodes", + -14.543445587158203 + ], + [ + "zide", + -14.543464660644531 + ], + [ + "▁Bellator", + -14.543582916259766 + ], + [ + "stairs", + -14.54358959197998 + ], + [ + "▁Stil", + -14.543590545654297 + ], + [ + "▁Eunice", + -14.543622970581055 + ], + [ + "▁Suck", + -14.543662071228027 + ], + [ + "▁gratuity", + -14.543678283691406 + ], + [ + "▁Graduated", + -14.543681144714355 + ], + [ + "▁libre", + -14.543682098388672 + ], + [ + "▁Gigabyte", + -14.543696403503418 + ], + [ + "▁Taxis", + -14.543745994567871 + ], + [ + "▁UML", + -14.543766975402832 + ], + [ + "▁IRAs", + -14.54382610321045 + ], + [ + "riv", + -14.543840408325195 + ], + [ + "▁NAM", + -14.543842315673828 + ], + [ + "▁stealthy", + -14.543853759765625 + ], + [ + "▁globalized", + -14.543922424316406 + ], + [ + "▁absenteeism", + -14.5439453125 + ], + [ + "birthday", + -14.54397964477539 + ], + [ + "št", + -14.543988227844238 + ], + [ + "Industrial", + -14.543997764587402 + ], + [ + "▁sele", + -14.544059753417969 + ], + [ + "▁Wheeling", + -14.544068336486816 + ], + [ + "▁Chaffey", + -14.544098854064941 + ], + [ + "scented", + -14.544126510620117 + ], + [ + "facial", + -14.544140815734863 + ], + [ + "▁thesaurus", + -14.544145584106445 + ], + [ + "Bruce", + -14.544189453125 + ], + [ + "▁soured", + -14.544217109680176 + ], + [ + "▁disillusionment", + -14.544230461120605 + ], + [ + "colla", + -14.544272422790527 + ], + [ + "liff", + -14.544278144836426 + ], + [ + "cfg", + -14.544300079345703 + ], + [ + "weave", + -14.5443115234375 + ], + [ + "absolute", + -14.544316291809082 + ], + [ + "▁Pola", + -14.544336318969727 + ], + [ + "▁Significance", + -14.544356346130371 + ], + [ + "Jaw", + -14.544381141662598 + ], + [ + "Bloom", + -14.54438304901123 + ], + [ + "▁plucking", + -14.544384002685547 + ], + [ + "▁octane", + -14.544502258300781 + ], + [ + "▁Für", + -14.544523239135742 + ], + [ + "▁kombucha", + -14.544543266296387 + ], + [ + "▁Flaherty", + -14.5445556640625 + ], + [ + "▁Manger", + -14.54456615447998 + ], + [ + "Bowl", + -14.544568061828613 + ], + [ + "▁peeked", + -14.54456901550293 + ], + [ + "▁624", + -14.54458999633789 + ], + [ + "▁procrastinating", + -14.544593811035156 + ], + [ + "▁impeded", + -14.544629096984863 + ], + [ + "▁alveolar", + -14.544650077819824 + ], + [ + "▁moe", + -14.544705390930176 + ], + [ + "▁Chemo", + -14.54474925994873 + ], + [ + "▁deafness", + -14.544754028320312 + ], + [ + "▁stre", + -14.54482364654541 + ], + [ + "▁toenail", + -14.544825553894043 + ], + [ + "Bla", + -14.544828414916992 + ], + [ + "▁Tolle", + -14.54483413696289 + ], + [ + "cyte", + -14.54483699798584 + ], + [ + "▁reconfigured", + -14.544873237609863 + ], + [ + "olski", + -14.544918060302734 + ], + [ + "▁Rendering", + -14.54493522644043 + ], + [ + "▁FEB", + -14.544954299926758 + ], + [ + "▁Medals", + -14.544960021972656 + ], + [ + "▁nuestro", + -14.54496955871582 + ], + [ + "▁ramblings", + -14.545012474060059 + ], + [ + "buyer", + -14.545027732849121 + ], + [ + "▁cardinals", + -14.545036315917969 + ], + [ + "▁UNIVERSITY", + -14.545050621032715 + ], + [ + "▁precast", + -14.545069694519043 + ], + [ + "▁Gree", + -14.545096397399902 + ], + [ + "▁EARLY", + -14.545141220092773 + ], + [ + "▁outlast", + -14.545169830322266 + ], + [ + "Used", + -14.54517650604248 + ], + [ + "▁CLOSED", + -14.545231819152832 + ], + [ + "ORDER", + -14.545281410217285 + ], + [ + "▁Ew", + -14.545310974121094 + ], + [ + "▁Calvinist", + -14.545373916625977 + ], + [ + "▁Puzzles", + -14.545379638671875 + ], + [ + "▁ETL", + -14.545392990112305 + ], + [ + "▁Overcoming", + -14.54540729522705 + ], + [ + "▁Seung", + -14.545431137084961 + ], + [ + "▁northernmost", + -14.545439720153809 + ], + [ + "▁Headlines", + -14.54544448852539 + ], + [ + "offering", + -14.545451164245605 + ], + [ + "▁CHINA", + -14.545472145080566 + ], + [ + "▁León", + -14.545472145080566 + ], + [ + "▁Osiris", + -14.545475006103516 + ], + [ + "▁whiskies", + -14.545488357543945 + ], + [ + "▁Thayer", + -14.545515060424805 + ], + [ + "Conf", + -14.545601844787598 + ], + [ + "▁wands", + -14.545611381530762 + ], + [ + "▁ESO", + -14.545654296875 + ], + [ + "▁Berliner", + -14.545655250549316 + ], + [ + "Giving", + -14.545663833618164 + ], + [ + "▁Cred", + -14.545671463012695 + ], + [ + "▁salvo", + -14.54567813873291 + ], + [ + "▁Pies", + -14.545707702636719 + ], + [ + "▁Cis", + -14.545733451843262 + ], + [ + "▁Crum", + -14.545738220214844 + ], + [ + "▁conservationists", + -14.545758247375488 + ], + [ + "▁Hartmann", + -14.545816421508789 + ], + [ + "▁linguists", + -14.545829772949219 + ], + [ + "▁η", + -14.545848846435547 + ], + [ + "▁nazi", + -14.54585075378418 + ], + [ + "▁obstetrician", + -14.545872688293457 + ], + [ + "▁VOICE", + -14.545889854431152 + ], + [ + "▁Rosalind", + -14.545909881591797 + ], + [ + "▁secretions", + -14.545950889587402 + ], + [ + "reduce", + -14.545998573303223 + ], + [ + "▁jane", + -14.54601764678955 + ], + [ + "▁я", + -14.546059608459473 + ], + [ + "▁supervises", + -14.546070098876953 + ], + [ + "▁brioche", + -14.546111106872559 + ], + [ + "▁sic", + -14.546117782592773 + ], + [ + "▁piecemeal", + -14.546123504638672 + ], + [ + "oho", + -14.546220779418945 + ], + [ + "▁interceptor", + -14.546238899230957 + ], + [ + "▁Shakespearean", + -14.546263694763184 + ], + [ + "▁Pierson", + -14.546269416809082 + ], + [ + "▁precluded", + -14.546271324157715 + ], + [ + "▁fundamentalists", + -14.546284675598145 + ], + [ + "novo", + -14.546442031860352 + ], + [ + "▁Offender", + -14.546509742736816 + ], + [ + "▁Leary", + -14.546515464782715 + ], + [ + "Shoot", + -14.54653263092041 + ], + [ + "Institute", + -14.546547889709473 + ], + [ + "▁Bionic", + -14.546554565429688 + ], + [ + "esia", + -14.546555519104004 + ], + [ + "1901", + -14.54659366607666 + ], + [ + "▁toothache", + -14.546686172485352 + ], + [ + "▁Cartagena", + -14.546760559082031 + ], + [ + "▁Lamm", + -14.546772956848145 + ], + [ + "▁Nha", + -14.546789169311523 + ], + [ + "▁hadith", + -14.546802520751953 + ], + [ + "sleeping", + -14.54681396484375 + ], + [ + "▁Tipton", + -14.546843528747559 + ], + [ + "▁orchestrating", + -14.546882629394531 + ], + [ + "▁whiskers", + -14.546927452087402 + ], + [ + "▁Dumfries", + -14.546957015991211 + ], + [ + "pton", + -14.546979904174805 + ], + [ + "iş", + -14.546995162963867 + ], + [ + "bba", + -14.546996116638184 + ], + [ + "▁Ghetto", + -14.54700756072998 + ], + [ + "nnie", + -14.547039031982422 + ], + [ + "essie", + -14.547051429748535 + ], + [ + "▁Iroquois", + -14.547082901000977 + ], + [ + "▁kiddie", + -14.547088623046875 + ], + [ + "insight", + -14.547101974487305 + ], + [ + "▁withered", + -14.547118186950684 + ], + [ + "Α", + -14.547181129455566 + ], + [ + "▁marc", + -14.547182083129883 + ], + [ + "▁estimations", + -14.547192573547363 + ], + [ + "▁foursome", + -14.547200202941895 + ], + [ + "▁OAK", + -14.54720687866211 + ], + [ + "▁Dispenser", + -14.547210693359375 + ], + [ + "lı", + -14.547218322753906 + ], + [ + "▁conspire", + -14.547225952148438 + ], + [ + "▁imper", + -14.547232627868652 + ], + [ + "▁Worms", + -14.547255516052246 + ], + [ + "▁1660", + -14.547287940979004 + ], + [ + "▁uplifted", + -14.547310829162598 + ], + [ + "▁SRI", + -14.547311782836914 + ], + [ + "cated", + -14.547316551208496 + ], + [ + "▁ASB", + -14.547370910644531 + ], + [ + "▁tooltip", + -14.547370910644531 + ], + [ + "▁competences", + -14.547423362731934 + ], + [ + "▁Cabal", + -14.547470092773438 + ], + [ + "▁sedate", + -14.547493934631348 + ], + [ + "▁RTX", + -14.54751968383789 + ], + [ + "▁Marston", + -14.547523498535156 + ], + [ + "pipes", + -14.54753303527832 + ], + [ + "ducing", + -14.547536849975586 + ], + [ + "stellen", + -14.547550201416016 + ], + [ + "providing", + -14.547606468200684 + ], + [ + "▁matchmaker", + -14.547618865966797 + ], + [ + "▁Ozarks", + -14.547717094421387 + ], + [ + "zur", + -14.547725677490234 + ], + [ + "ன", + -14.547727584838867 + ], + [ + "stik", + -14.547728538513184 + ], + [ + "▁SpongeBob", + -14.547738075256348 + ], + [ + "lata", + -14.54774284362793 + ], + [ + "▁avg", + -14.547750473022461 + ], + [ + "lse", + -14.54775619506836 + ], + [ + "Corn", + -14.547769546508789 + ], + [ + "▁supposition", + -14.54778003692627 + ], + [ + "iris", + -14.54781436920166 + ], + [ + "▁상기", + -14.547815322875977 + ], + [ + "▁Alpaca", + -14.547845840454102 + ], + [ + "▁incitement", + -14.547871589660645 + ], + [ + "▁Quar", + -14.547883987426758 + ], + [ + "▁Papadopoulos", + -14.547897338867188 + ], + [ + "▁Oka", + -14.547928810119629 + ], + [ + "▁livre", + -14.547938346862793 + ], + [ + "▁Maldonado", + -14.54796028137207 + ], + [ + "trunk", + -14.547977447509766 + ], + [ + "avana", + -14.54800796508789 + ], + [ + "ര", + -14.54800796508789 + ], + [ + "fulfilling", + -14.548028945922852 + ], + [ + "urie", + -14.548036575317383 + ], + [ + "ži", + -14.54804515838623 + ], + [ + "▁Biloxi", + -14.54804515838623 + ], + [ + "infrared", + -14.54809856414795 + ], + [ + "▁537", + -14.548101425170898 + ], + [ + "▁igniting", + -14.548102378845215 + ], + [ + "▁Reprinted", + -14.548126220703125 + ], + [ + "▁HCI", + -14.548148155212402 + ], + [ + "▁Oberlin", + -14.548171997070312 + ], + [ + "▁Karna", + -14.548222541809082 + ], + [ + "▁tassels", + -14.548240661621094 + ], + [ + "▁Sins", + -14.548248291015625 + ], + [ + "аѕ", + -14.548269271850586 + ], + [ + "omme", + -14.548279762268066 + ], + [ + "ographers", + -14.548303604125977 + ], + [ + "▁Mohd", + -14.548309326171875 + ], + [ + "▁dey", + -14.548317909240723 + ], + [ + "qo", + -14.548321723937988 + ], + [ + "▁Awe", + -14.548331260681152 + ], + [ + "probe", + -14.54835033416748 + ], + [ + "▁equatorial", + -14.548364639282227 + ], + [ + "▁Empowering", + -14.548391342163086 + ], + [ + "▁costumed", + -14.548441886901855 + ], + [ + "▁sprawled", + -14.548444747924805 + ], + [ + "Amber", + -14.548449516296387 + ], + [ + "▁Fong", + -14.54845905303955 + ], + [ + "▁Giza", + -14.548474311828613 + ], + [ + "ousse", + -14.54848861694336 + ], + [ + "Linda", + -14.548498153686523 + ], + [ + "▁Kier", + -14.548518180847168 + ], + [ + "▁Boar", + -14.54852294921875 + ], + [ + "▁Vazquez", + -14.54853343963623 + ], + [ + "▁mutter", + -14.548553466796875 + ], + [ + "▁Caruso", + -14.548579216003418 + ], + [ + "▁bookies", + -14.548744201660156 + ], + [ + "▁Prefix", + -14.548748016357422 + ], + [ + "▁undersea", + -14.548748970031738 + ], + [ + "▁resonating", + -14.548796653747559 + ], + [ + "▁lotteries", + -14.548861503601074 + ], + [ + "▁Yung", + -14.548870086669922 + ], + [ + "occhi", + -14.548911094665527 + ], + [ + "▁refereed", + -14.548913955688477 + ], + [ + "▁dictation", + -14.548917770385742 + ], + [ + "Republic", + -14.548993110656738 + ], + [ + "▁LaTeX", + -14.548995018005371 + ], + [ + "urgeon", + -14.549005508422852 + ], + [ + "▁maven", + -14.549019813537598 + ], + [ + "▁addons", + -14.549054145812988 + ], + [ + "▁belittle", + -14.549059867858887 + ], + [ + "aney", + -14.549068450927734 + ], + [ + "▁Spector", + -14.54906940460205 + ], + [ + "enni", + -14.549079895019531 + ], + [ + "▁paraded", + -14.549087524414062 + ], + [ + "▁gaffe", + -14.549111366271973 + ], + [ + "▁deceleration", + -14.54911994934082 + ], + [ + "▁Gah", + -14.54913330078125 + ], + [ + "▁Duarte", + -14.549150466918945 + ], + [ + "▁Citations", + -14.549164772033691 + ], + [ + "▁Herz", + -14.549164772033691 + ], + [ + "▁kaolin", + -14.549166679382324 + ], + [ + "▁Quilting", + -14.54917049407959 + ], + [ + "▁Succession", + -14.549181938171387 + ], + [ + "▁microscopes", + -14.549182891845703 + ], + [ + "▁Lucinda", + -14.549199104309082 + ], + [ + "usia", + -14.549212455749512 + ], + [ + "▁Dinah", + -14.549222946166992 + ], + [ + "uet", + -14.549229621887207 + ], + [ + "hotels", + -14.54926586151123 + ], + [ + "▁Haircuts", + -14.549283981323242 + ], + [ + "▁VBS", + -14.549330711364746 + ], + [ + "▁Infusion", + -14.54935359954834 + ], + [ + "▁eb", + -14.549375534057617 + ], + [ + "Util", + -14.549381256103516 + ], + [ + "▁Thanh", + -14.54942512512207 + ], + [ + "▁Bandwidth", + -14.54942798614502 + ], + [ + "▁Bazar", + -14.549497604370117 + ], + [ + "▁Gaye", + -14.549506187438965 + ], + [ + "onov", + -14.549516677856445 + ], + [ + "▁obtuse", + -14.549528121948242 + ], + [ + "▁PEACE", + -14.549541473388672 + ], + [ + "▁valtrex", + -14.549554824829102 + ], + [ + "▁Asgard", + -14.549576759338379 + ], + [ + "helping", + -14.549598693847656 + ], + [ + "Clip", + -14.54963493347168 + ], + [ + "useful", + -14.549638748168945 + ], + [ + "▁Hairstyle", + -14.549652099609375 + ], + [ + "▁Billions", + -14.54965591430664 + ], + [ + "▁Sardar", + -14.549715042114258 + ], + [ + "ianism", + -14.549755096435547 + ], + [ + "▁WTI", + -14.549758911132812 + ], + [ + "ujo", + -14.549769401550293 + ], + [ + "▁Became", + -14.549769401550293 + ], + [ + "▁wireframe", + -14.549784660339355 + ], + [ + "▁Relatives", + -14.549786567687988 + ], + [ + "▁littering", + -14.549898147583008 + ], + [ + "▁MOBILE", + -14.549910545349121 + ], + [ + "時", + -14.549934387207031 + ], + [ + "953", + -14.549944877624512 + ], + [ + "LOR", + -14.549973487854004 + ], + [ + "▁mediates", + -14.549989700317383 + ], + [ + "▁warfarin", + -14.550016403198242 + ], + [ + "▁disarming", + -14.550018310546875 + ], + [ + "▁rustle", + -14.550097465515137 + ], + [ + "▁weaved", + -14.550098419189453 + ], + [ + "haa", + -14.550101280212402 + ], + [ + "▁decentralization", + -14.550148010253906 + ], + [ + "▁derided", + -14.550151824951172 + ], + [ + "▁vagina", + -14.550154685974121 + ], + [ + "▁Haupt", + -14.550176620483398 + ], + [ + "▁DAT", + -14.550189971923828 + ], + [ + "チ", + -14.550200462341309 + ], + [ + "▁townspeople", + -14.550213813781738 + ], + [ + "rao", + -14.550226211547852 + ], + [ + "▁flaring", + -14.550233840942383 + ], + [ + "Saudi", + -14.55028247833252 + ], + [ + "回", + -14.550284385681152 + ], + [ + "▁ron", + -14.550288200378418 + ], + [ + "▁Keira", + -14.550326347351074 + ], + [ + "▁Flagship", + -14.550375938415527 + ], + [ + "▁gaggle", + -14.550394058227539 + ], + [ + "▁Deeper", + -14.550406455993652 + ], + [ + "メ", + -14.55041790008545 + ], + [ + "▁denoting", + -14.550426483154297 + ], + [ + "▁AME", + -14.55046558380127 + ], + [ + "▁felled", + -14.550467491149902 + ], + [ + "CEA", + -14.550532341003418 + ], + [ + "ewa", + -14.550549507141113 + ], + [ + "▁Obsidian", + -14.550558090209961 + ], + [ + "▁Gabriella", + -14.550559997558594 + ], + [ + "▁Astrophysics", + -14.550568580627441 + ], + [ + "▁Dissolve", + -14.550578117370605 + ], + [ + "▁pv", + -14.550600051879883 + ], + [ + "▁Tangerine", + -14.550620079040527 + ], + [ + "▁HIGHLY", + -14.550678253173828 + ], + [ + "▁Eros", + -14.550680160522461 + ], + [ + "▁Zwi", + -14.550697326660156 + ], + [ + "▁Humphreys", + -14.550698280334473 + ], + [ + "yaki", + -14.550714492797852 + ], + [ + "▁McKe", + -14.5507230758667 + ], + [ + "▁fulltime", + -14.550724029541016 + ], + [ + "▁574", + -14.550742149353027 + ], + [ + "ORT", + -14.550743103027344 + ], + [ + "▁provokes", + -14.550775527954102 + ], + [ + "▁EXTENT", + -14.550782203674316 + ], + [ + "feminist", + -14.550864219665527 + ], + [ + "▁womanhood", + -14.55087947845459 + ], + [ + "▁mitts", + -14.55090618133545 + ], + [ + "▁misread", + -14.550917625427246 + ], + [ + "▁justifiably", + -14.55099105834961 + ], + [ + "▁Sne", + -14.550992012023926 + ], + [ + "▁526", + -14.550997734069824 + ], + [ + "ozy", + -14.551036834716797 + ], + [ + "▁universality", + -14.551042556762695 + ], + [ + "▁desirability", + -14.551058769226074 + ], + [ + "▁decommissioning", + -14.55107593536377 + ], + [ + "▁Hilbert", + -14.551102638244629 + ], + [ + "▁Quezon", + -14.551132202148438 + ], + [ + "IPP", + -14.551136016845703 + ], + [ + "graded", + -14.551178932189941 + ], + [ + "▁slaughterhouse", + -14.551218032836914 + ], + [ + "▁madam", + -14.55121898651123 + ], + [ + "▁Warmer", + -14.551241874694824 + ], + [ + "▁stampede", + -14.551251411437988 + ], + [ + "▁Ebenezer", + -14.551288604736328 + ], + [ + "itar", + -14.551302909851074 + ], + [ + "▁videogames", + -14.551318168640137 + ], + [ + "entrepreneur", + -14.551321029663086 + ], + [ + "▁grieved", + -14.551321029663086 + ], + [ + "▁roasts", + -14.551345825195312 + ], + [ + "형", + -14.551399230957031 + ], + [ + "lives", + -14.551410675048828 + ], + [ + "ebook", + -14.551438331604004 + ], + [ + "▁Utilization", + -14.55144214630127 + ], + [ + "▁Nilsson", + -14.551454544067383 + ], + [ + "▁improvisational", + -14.551483154296875 + ], + [ + "▁commercialized", + -14.551501274108887 + ], + [ + "▁Solved", + -14.55151653289795 + ], + [ + "Cel", + -14.551544189453125 + ], + [ + "▁Coolidge", + -14.551581382751465 + ], + [ + "▁kala", + -14.55159854888916 + ], + [ + "Hawaii", + -14.551614761352539 + ], + [ + "▁invalidated", + -14.551614761352539 + ], + [ + "▁paddled", + -14.55164623260498 + ], + [ + "▁Aarhus", + -14.551665306091309 + ], + [ + "▁Bobo", + -14.551674842834473 + ], + [ + "де", + -14.551681518554688 + ], + [ + "▁562", + -14.551689147949219 + ], + [ + "LATE", + -14.551694869995117 + ], + [ + "▁Maxima", + -14.551702499389648 + ], + [ + "▁redemptive", + -14.551766395568848 + ], + [ + "▁Compete", + -14.55177116394043 + ], + [ + "cub", + -14.551785469055176 + ], + [ + "▁972", + -14.551804542541504 + ], + [ + "▁poachers", + -14.55180549621582 + ], + [ + "▁therefrom", + -14.55186653137207 + ], + [ + "▁Patrik", + -14.551867485046387 + ], + [ + "Gang", + -14.551877975463867 + ], + [ + "▁matting", + -14.551889419555664 + ], + [ + "▁artiste", + -14.551918983459473 + ], + [ + "▁telly", + -14.552057266235352 + ], + [ + "▁automat", + -14.552096366882324 + ], + [ + "Adult", + -14.55209732055664 + ], + [ + "▁rud", + -14.552108764648438 + ], + [ + "▁VAS", + -14.552114486694336 + ], + [ + "▁Immerse", + -14.552117347717285 + ], + [ + "tipped", + -14.552164077758789 + ], + [ + "▁Crowder", + -14.552178382873535 + ], + [ + "▁grotto", + -14.552188873291016 + ], + [ + "▁gamification", + -14.552193641662598 + ], + [ + "▁decomposed", + -14.552203178405762 + ], + [ + "▁Distressed", + -14.552240371704102 + ], + [ + "▁conformance", + -14.552252769470215 + ], + [ + "▁IAF", + -14.552261352539062 + ], + [ + "▁diastolic", + -14.552321434020996 + ], + [ + "▁streamer", + -14.552370071411133 + ], + [ + "▁Sault", + -14.552393913269043 + ], + [ + "plugins", + -14.552444458007812 + ], + [ + "▁infiltrating", + -14.552506446838379 + ], + [ + "Ville", + -14.552508354187012 + ], + [ + "CBT", + -14.552533149719238 + ], + [ + "▁Tuf", + -14.552563667297363 + ], + [ + "▁rafts", + -14.552583694458008 + ], + [ + "▁Susquehanna", + -14.552600860595703 + ], + [ + "▁plinth", + -14.552621841430664 + ], + [ + "▁relished", + -14.552652359008789 + ], + [ + "mog", + -14.552664756774902 + ], + [ + "▁Herschel", + -14.552665710449219 + ], + [ + "▁Represents", + -14.552698135375977 + ], + [ + "▁Stunt", + -14.552703857421875 + ], + [ + "▁TCC", + -14.552709579467773 + ], + [ + "▁kefir", + -14.552730560302734 + ], + [ + "▁Sna", + -14.552738189697266 + ], + [ + "▁shambles", + -14.552783966064453 + ], + [ + "▁vols", + -14.552797317504883 + ], + [ + "▁portrayals", + -14.552817344665527 + ], + [ + "mune", + -14.552818298339844 + ], + [ + "breasted", + -14.55282974243164 + ], + [ + "▁GPO", + -14.552842140197754 + ], + [ + "Mai", + -14.5528564453125 + ], + [ + "lily", + -14.55289363861084 + ], + [ + "dispers", + -14.552895545959473 + ], + [ + "icul", + -14.552908897399902 + ], + [ + "▁screech", + -14.552911758422852 + ], + [ + "▁inflating", + -14.5529146194458 + ], + [ + "▁lightened", + -14.55292797088623 + ], + [ + "MONT", + -14.552966117858887 + ], + [ + "▁avionics", + -14.55297565460205 + ], + [ + "▁Demar", + -14.553044319152832 + ], + [ + "▁concoct", + -14.553055763244629 + ], + [ + "ј", + -14.553078651428223 + ], + [ + "▁Hottest", + -14.553079605102539 + ], + [ + "▁Derivatives", + -14.553125381469727 + ], + [ + "▁NER", + -14.553133010864258 + ], + [ + "▁ICM", + -14.553193092346191 + ], + [ + "▁inconveniences", + -14.553193092346191 + ], + [ + "orra", + -14.553229331970215 + ], + [ + "▁buffets", + -14.553229331970215 + ], + [ + "▁persisting", + -14.55323600769043 + ], + [ + "▁Hamza", + -14.553241729736328 + ], + [ + "▁Hauser", + -14.55324649810791 + ], + [ + "▁buffered", + -14.553264617919922 + ], + [ + "▁bps", + -14.55328369140625 + ], + [ + "▁Mecklenburg", + -14.553300857543945 + ], + [ + "▁earpiece", + -14.553308486938477 + ], + [ + "▁parquet", + -14.553362846374512 + ], + [ + "▁Tramp", + -14.55336856842041 + ], + [ + "▁phobias", + -14.553433418273926 + ], + [ + "▁TIE", + -14.553506851196289 + ], + [ + "▁homeware", + -14.553508758544922 + ], + [ + "▁Poroshenko", + -14.553522109985352 + ], + [ + "▁Manuka", + -14.5535306930542 + ], + [ + "▁hypotension", + -14.553561210632324 + ], + [ + "▁melan", + -14.553574562072754 + ], + [ + "▁Aided", + -14.55357551574707 + ], + [ + "▁demarcation", + -14.553606986999512 + ], + [ + "Fold", + -14.553617477416992 + ], + [ + "▁Hark", + -14.553631782531738 + ], + [ + "▁vul", + -14.553656578063965 + ], + [ + "▁captors", + -14.553778648376465 + ], + [ + "▁baccarat", + -14.553787231445312 + ], + [ + "Vice", + -14.553831100463867 + ], + [ + "▁motocross", + -14.553853034973145 + ], + [ + "drenched", + -14.553861618041992 + ], + [ + "▁SPECT", + -14.553875923156738 + ], + [ + "▁Chechnya", + -14.553888320922852 + ], + [ + "emble", + -14.553890228271484 + ], + [ + "▁Byers", + -14.553909301757812 + ], + [ + "▁Viscount", + -14.553910255432129 + ], + [ + "▁flyover", + -14.553929328918457 + ], + [ + "▁GIA", + -14.553935050964355 + ], + [ + "▁Spectral", + -14.554007530212402 + ], + [ + "▁trembled", + -14.5540132522583 + ], + [ + "milla", + -14.5540189743042 + ], + [ + "CLU", + -14.554019927978516 + ], + [ + "▁UTV", + -14.554065704345703 + ], + [ + "▁wintertime", + -14.554071426391602 + ], + [ + "▁Avo", + -14.554086685180664 + ], + [ + "▁crannies", + -14.554094314575195 + ], + [ + "▁BHK", + -14.554113388061523 + ], + [ + "▁postbox", + -14.554121971130371 + ], + [ + "▁IAAF", + -14.554125785827637 + ], + [ + "embl", + -14.5541410446167 + ], + [ + "Limit", + -14.554149627685547 + ], + [ + "riti", + -14.554157257080078 + ], + [ + "▁ALLOW", + -14.554159164428711 + ], + [ + "EAS", + -14.554165840148926 + ], + [ + "уч", + -14.554179191589355 + ], + [ + "▁stor", + -14.55422306060791 + ], + [ + "▁Cartridges", + -14.554258346557617 + ], + [ + "▁waveforms", + -14.554303169250488 + ], + [ + "▁stylishly", + -14.554340362548828 + ], + [ + "▁sips", + -14.55448055267334 + ], + [ + "Words", + -14.554512023925781 + ], + [ + "coverage", + -14.554524421691895 + ], + [ + "▁PLM", + -14.554532051086426 + ], + [ + "▁axiom", + -14.554537773132324 + ], + [ + "▁flexed", + -14.554577827453613 + ], + [ + "▁adenoma", + -14.554596900939941 + ], + [ + "▁Ign", + -14.554614067077637 + ], + [ + "▁essayist", + -14.554667472839355 + ], + [ + "thur", + -14.554673194885254 + ], + [ + "ryu", + -14.554683685302734 + ], + [ + "erz", + -14.554696083068848 + ], + [ + "▁Poisson", + -14.554696083068848 + ], + [ + "▁spotter", + -14.554699897766113 + ], + [ + "▁Bina", + -14.554705619812012 + ], + [ + "▁bros", + -14.554741859436035 + ], + [ + "▁redneck", + -14.554778099060059 + ], + [ + "▁Steffen", + -14.554793357849121 + ], + [ + "▁Lodi", + -14.554803848266602 + ], + [ + "터", + -14.554807662963867 + ], + [ + "▁Visited", + -14.554808616638184 + ], + [ + "▁Philosopher", + -14.554823875427246 + ], + [ + "limb", + -14.55483341217041 + ], + [ + "▁underfloor", + -14.554840087890625 + ], + [ + "retro", + -14.554862976074219 + ], + [ + "▁Miramar", + -14.554876327514648 + ], + [ + "▁LEAVE", + -14.554889678955078 + ], + [ + "▁hmmm", + -14.554924964904785 + ], + [ + "▁accords", + -14.554960250854492 + ], + [ + "▁backfired", + -14.55496883392334 + ], + [ + "▁dynasties", + -14.555032730102539 + ], + [ + "▁polemic", + -14.555035591125488 + ], + [ + "目", + -14.555045127868652 + ], + [ + "▁rubies", + -14.555048942565918 + ], + [ + "▁611", + -14.555092811584473 + ], + [ + "▁operand", + -14.55510139465332 + ], + [ + "▁Gump", + -14.555105209350586 + ], + [ + "▁FOREVER", + -14.55517864227295 + ], + [ + "▁TRU", + -14.55517864227295 + ], + [ + "uman", + -14.555194854736328 + ], + [ + "crine", + -14.555272102355957 + ], + [ + "▁Stroller", + -14.555285453796387 + ], + [ + "▁geophysical", + -14.555293083190918 + ], + [ + "▁escorting", + -14.5552978515625 + ], + [ + "supplement", + -14.555404663085938 + ], + [ + "▁Subsection", + -14.555442810058594 + ], + [ + "▁bagpipe", + -14.555458068847656 + ], + [ + "▁olympic", + -14.555495262145996 + ], + [ + "조", + -14.555519104003906 + ], + [ + "Aaron", + -14.555522918701172 + ], + [ + "BIE", + -14.555571556091309 + ], + [ + "▁2035", + -14.555596351623535 + ], + [ + "▁Complications", + -14.555597305297852 + ], + [ + "▁POLY", + -14.555612564086914 + ], + [ + "conduct", + -14.555631637573242 + ], + [ + "▁Lala", + -14.55565357208252 + ], + [ + "▁Pima", + -14.555656433105469 + ], + [ + "▁Hava", + -14.555659294128418 + ], + [ + "▁orthodontics", + -14.555665969848633 + ], + [ + "▁Stinger", + -14.555706977844238 + ], + [ + "liar", + -14.555731773376465 + ], + [ + "▁analogues", + -14.555760383605957 + ], + [ + "VID", + -14.555794715881348 + ], + [ + "▁Ingle", + -14.555800437927246 + ], + [ + "▁Nortel", + -14.555800437927246 + ], + [ + "▁Gillard", + -14.555804252624512 + ], + [ + "▁knick", + -14.55582332611084 + ], + [ + "Span", + -14.555887222290039 + ], + [ + "▁POOL", + -14.555891990661621 + ], + [ + "rump", + -14.555908203125 + ], + [ + "▁Tuttle", + -14.555932998657227 + ], + [ + "▁raffles", + -14.555954933166504 + ], + [ + "▁tahini", + -14.555963516235352 + ], + [ + "▁NONE", + -14.556015014648438 + ], + [ + "▁Staal", + -14.556036949157715 + ], + [ + "▁vapors", + -14.556044578552246 + ], + [ + "▁restock", + -14.556046485900879 + ], + [ + "▁unflattering", + -14.556056022644043 + ], + [ + "▁hemline", + -14.556066513061523 + ], + [ + "▁pathologies", + -14.55607795715332 + ], + [ + "▁Relatively", + -14.556085586547852 + ], + [ + "▁Spl", + -14.556112289428711 + ], + [ + "▁criticizes", + -14.556114196777344 + ], + [ + "▁gliders", + -14.556144714355469 + ], + [ + "▁atomizer", + -14.55615520477295 + ], + [ + "▁extensible", + -14.556163787841797 + ], + [ + "▁lf", + -14.55616569519043 + ], + [ + "Dot", + -14.556169509887695 + ], + [ + "▁Manatee", + -14.556173324584961 + ], + [ + "▁Gatlinburg", + -14.556200981140137 + ], + [ + "▁suave", + -14.5562162399292 + ], + [ + "▁Burj", + -14.556229591369629 + ], + [ + "scatter", + -14.55639362335205 + ], + [ + "▁faltering", + -14.55640697479248 + ], + [ + "▁Eskom", + -14.556437492370605 + ], + [ + "▁pfizer", + -14.556442260742188 + ], + [ + "▁Zhengzhou", + -14.556464195251465 + ], + [ + "charm", + -14.556495666503906 + ], + [ + "▁cyberattacks", + -14.556504249572754 + ], + [ + "об", + -14.5565185546875 + ], + [ + "▁Zambian", + -14.55653190612793 + ], + [ + "▁cloaked", + -14.556550025939941 + ], + [ + "▁mumble", + -14.556583404541016 + ], + [ + "▁varietal", + -14.556612968444824 + ], + [ + "▁miscarriages", + -14.556614875793457 + ], + [ + "▁Somme", + -14.556629180908203 + ], + [ + "▁symbolizing", + -14.556648254394531 + ], + [ + "▁Beckman", + -14.556652069091797 + ], + [ + "guna", + -14.556655883789062 + ], + [ + "▁Captured", + -14.556661605834961 + ], + [ + "▁tuners", + -14.55669116973877 + ], + [ + "Qa", + -14.556692123413086 + ], + [ + "ORI", + -14.55672836303711 + ], + [ + "▁unclog", + -14.556767463684082 + ], + [ + "▁anemic", + -14.556790351867676 + ], + [ + "▁hibernate", + -14.556829452514648 + ], + [ + "▁Tofu", + -14.556857109069824 + ], + [ + "▁Existence", + -14.556913375854492 + ], + [ + "▁Leif", + -14.556924819946289 + ], + [ + "▁riverfront", + -14.556974411010742 + ], + [ + "kran", + -14.556981086730957 + ], + [ + "titude", + -14.556985855102539 + ], + [ + "▁infatuation", + -14.557008743286133 + ], + [ + "▁Leng", + -14.557045936584473 + ], + [ + "lvin", + -14.55710220336914 + ], + [ + "▁hydrophilic", + -14.557108879089355 + ], + [ + "ATP", + -14.557110786437988 + ], + [ + "dresses", + -14.557112693786621 + ], + [ + "▁Fredrik", + -14.557168960571289 + ], + [ + "▁Vivienne", + -14.55717658996582 + ], + [ + "1912", + -14.557211875915527 + ], + [ + "▁Neiman", + -14.557252883911133 + ], + [ + "ció", + -14.557307243347168 + ], + [ + "▁CGM", + -14.557311058044434 + ], + [ + "▁비", + -14.557340621948242 + ], + [ + "▁grander", + -14.557377815246582 + ], + [ + "rabbit", + -14.557384490966797 + ], + [ + "▁Heaton", + -14.557388305664062 + ], + [ + "lifestyle", + -14.557425498962402 + ], + [ + "▁Raju", + -14.557455062866211 + ], + [ + "▁кон", + -14.557524681091309 + ], + [ + "▁Vande", + -14.557527542114258 + ], + [ + "▁Flap", + -14.55754566192627 + ], + [ + "▁Musée", + -14.557554244995117 + ], + [ + "▁CHD", + -14.557574272155762 + ], + [ + "▁reimagined", + -14.557580947875977 + ], + [ + "arang", + -14.557594299316406 + ], + [ + "▁stockholder", + -14.557615280151367 + ], + [ + "▁Dryden", + -14.557621002197266 + ], + [ + "▁SLO", + -14.557638168334961 + ], + [ + "▁Samir", + -14.557650566101074 + ], + [ + "▁coastlines", + -14.557670593261719 + ], + [ + "▁Laying", + -14.557676315307617 + ], + [ + "DEV", + -14.557694435119629 + ], + [ + "▁repute", + -14.557699203491211 + ], + [ + "▁Indirect", + -14.55772590637207 + ], + [ + "▁wristwatch", + -14.557726860046387 + ], + [ + "haba", + -14.557767868041992 + ], + [ + "ojnë", + -14.557769775390625 + ], + [ + "▁Spices", + -14.557769775390625 + ], + [ + "▁Potion", + -14.557788848876953 + ], + [ + "1913", + -14.55780029296875 + ], + [ + "▁tinder", + -14.55781364440918 + ], + [ + "▁Vaccination", + -14.557841300964355 + ], + [ + "▁adjourn", + -14.557846069335938 + ], + [ + "▁cir", + -14.557861328125 + ], + [ + "gliano", + -14.55787467956543 + ], + [ + "▁Reveals", + -14.557886123657227 + ], + [ + "latest", + -14.557894706726074 + ], + [ + "▁Changer", + -14.557917594909668 + ], + [ + "▁immobilized", + -14.557930946350098 + ], + [ + "▁householder", + -14.55793285369873 + ], + [ + "▁thrower", + -14.557940483093262 + ], + [ + "▁Oakwood", + -14.557948112487793 + ], + [ + "▁viv", + -14.557963371276855 + ], + [ + "▁melons", + -14.557984352111816 + ], + [ + "▁illiteracy", + -14.558116912841797 + ], + [ + "effort", + -14.558197975158691 + ], + [ + "impossible", + -14.558199882507324 + ], + [ + "▁Anzac", + -14.558205604553223 + ], + [ + "▁Infini", + -14.558207511901855 + ], + [ + "▁Bayside", + -14.558208465576172 + ], + [ + "availability", + -14.558334350585938 + ], + [ + "▁manhunt", + -14.558380126953125 + ], + [ + "▁Kym", + -14.558389663696289 + ], + [ + "▁stowed", + -14.55841064453125 + ], + [ + "▁woolly", + -14.558414459228516 + ], + [ + "▁philip", + -14.558425903320312 + ], + [ + "▁Dory", + -14.558433532714844 + ], + [ + "▁refit", + -14.558464050292969 + ], + [ + "▁Osteo", + -14.558465957641602 + ], + [ + "Rachel", + -14.558506965637207 + ], + [ + "▁Mombasa", + -14.558560371398926 + ], + [ + "ERRA", + -14.558588981628418 + ], + [ + "▁cupping", + -14.55860424041748 + ], + [ + "▁Tidy", + -14.558613777160645 + ], + [ + "▁cosmological", + -14.558613777160645 + ], + [ + "▁£45", + -14.558618545532227 + ], + [ + "preci", + -14.558624267578125 + ], + [ + "Entry", + -14.558650016784668 + ], + [ + "echi", + -14.55865478515625 + ], + [ + "▁Batavia", + -14.558669090270996 + ], + [ + "▁Meaningful", + -14.558704376220703 + ], + [ + "fern", + -14.558706283569336 + ], + [ + "▁amputated", + -14.558712005615234 + ], + [ + "▁retraining", + -14.558762550354004 + ], + [ + "▁lazily", + -14.55876636505127 + ], + [ + "▁colonize", + -14.558794975280762 + ], + [ + "boob", + -14.558813095092773 + ], + [ + "Batman", + -14.558826446533203 + ], + [ + "Mul", + -14.558829307556152 + ], + [ + "PRC", + -14.55884838104248 + ], + [ + "▁coauthor", + -14.558895111083984 + ], + [ + "▁Arguments", + -14.558910369873047 + ], + [ + "▁LCA", + -14.558942794799805 + ], + [ + "▁Furnishings", + -14.558954238891602 + ], + [ + "ibid", + -14.559009552001953 + ], + [ + "decker", + -14.559013366699219 + ], + [ + "▁punctured", + -14.559056282043457 + ], + [ + "▁Mediator", + -14.55909538269043 + ], + [ + "NATO", + -14.55912971496582 + ], + [ + "▁Arti", + -14.559151649475098 + ], + [ + "▁stoneware", + -14.55916976928711 + ], + [ + "▁DOHC", + -14.559188842773438 + ], + [ + "▁Recht", + -14.559188842773438 + ], + [ + "organisms", + -14.559207916259766 + ], + [ + "▁weaned", + -14.559223175048828 + ], + [ + "▁empathic", + -14.559226036071777 + ], + [ + "▁inferiority", + -14.559250831604004 + ], + [ + "grading", + -14.55926513671875 + ], + [ + "▁Trot", + -14.559272766113281 + ], + [ + "▁lengthened", + -14.55927562713623 + ], + [ + "IDENT", + -14.559330940246582 + ], + [ + "nunci", + -14.559343338012695 + ], + [ + "▁Klee", + -14.559357643127441 + ], + [ + "▁theorized", + -14.559412002563477 + ], + [ + "▁Makar", + -14.559415817260742 + ], + [ + "▁dystrophy", + -14.559431076049805 + ], + [ + "imoto", + -14.559475898742676 + ], + [ + "▁awed", + -14.559511184692383 + ], + [ + "▁Voy", + -14.559529304504395 + ], + [ + "▁Maize", + -14.55955982208252 + ], + [ + "▁Cambria", + -14.55960750579834 + ], + [ + "▁polenta", + -14.559617042541504 + ], + [ + "él", + -14.55962085723877 + ], + [ + "▁babbling", + -14.559629440307617 + ], + [ + "▁linings", + -14.559633255004883 + ], + [ + "▁Bandai", + -14.55966567993164 + ], + [ + "Sheet", + -14.559711456298828 + ], + [ + "▁Nominated", + -14.559720039367676 + ], + [ + "▁LEC", + -14.559728622436523 + ], + [ + "▁الأ", + -14.559728622436523 + ], + [ + "graphical", + -14.559791564941406 + ], + [ + "▁Revo", + -14.559795379638672 + ], + [ + "michael", + -14.559840202331543 + ], + [ + "▁cacophony", + -14.55986499786377 + ], + [ + "▁Tandem", + -14.5598726272583 + ], + [ + "▁previewed", + -14.55991268157959 + ], + [ + "▁wieder", + -14.559934616088867 + ], + [ + "▁verde", + -14.55994987487793 + ], + [ + "▁iffy", + -14.560075759887695 + ], + [ + "▁schooner", + -14.560131072998047 + ], + [ + "ائ", + -14.560149192810059 + ], + [ + "halla", + -14.560165405273438 + ], + [ + "▁là", + -14.560182571411133 + ], + [ + "▁Marlowe", + -14.560186386108398 + ], + [ + "▁722", + -14.560188293457031 + ], + [ + "▁Mossad", + -14.560203552246094 + ], + [ + "fina", + -14.560205459594727 + ], + [ + "derma", + -14.560212135314941 + ], + [ + "▁Yew", + -14.560219764709473 + ], + [ + "▁honk", + -14.560232162475586 + ], + [ + "▁Aqui", + -14.560258865356445 + ], + [ + "LAM", + -14.560260772705078 + ], + [ + "▁Formica", + -14.560301780700684 + ], + [ + "▁Matlab", + -14.560342788696289 + ], + [ + "▁내", + -14.560405731201172 + ], + [ + "▁Slay", + -14.560430526733398 + ], + [ + "▁counseled", + -14.560460090637207 + ], + [ + "▁reproducibility", + -14.560474395751953 + ], + [ + "Medline", + -14.56047534942627 + ], + [ + "alik", + -14.56047534942627 + ], + [ + "ndu", + -14.560510635375977 + ], + [ + "▁Provinces", + -14.560532569885254 + ], + [ + "▁716", + -14.56053352355957 + ], + [ + "Sonic", + -14.560537338256836 + ], + [ + "▁timescales", + -14.56056022644043 + ], + [ + "behavioral", + -14.560563087463379 + ], + [ + "▁Pastors", + -14.560569763183594 + ], + [ + "▁leopards", + -14.560585021972656 + ], + [ + "▁Dawg", + -14.560588836669922 + ], + [ + "▁FRI", + -14.560596466064453 + ], + [ + "patients", + -14.560638427734375 + ], + [ + "DSS", + -14.560643196105957 + ], + [ + "▁Bobbie", + -14.560644149780273 + ], + [ + "Palm", + -14.560653686523438 + ], + [ + "▁Huo", + -14.560662269592285 + ], + [ + "▁Angio", + -14.560677528381348 + ], + [ + "Tweet", + -14.56071949005127 + ], + [ + "▁TERM", + -14.56074333190918 + ], + [ + "▁carnivorous", + -14.560818672180176 + ], + [ + "▁constitutive", + -14.56096076965332 + ], + [ + "▁mopping", + -14.560961723327637 + ], + [ + "Blade", + -14.560982704162598 + ], + [ + "▁precipice", + -14.560990333557129 + ], + [ + "ध", + -14.56100082397461 + ], + [ + "▁snatching", + -14.561020851135254 + ], + [ + "▁discursive", + -14.561023712158203 + ], + [ + "▁Drape", + -14.561051368713379 + ], + [ + "▁DURING", + -14.561058044433594 + ], + [ + "▁tuesday", + -14.561067581176758 + ], + [ + "▁Celiac", + -14.561075210571289 + ], + [ + "undo", + -14.56109619140625 + ], + [ + "▁Graff", + -14.561100959777832 + ], + [ + "▁Maude", + -14.561125755310059 + ], + [ + "weekend", + -14.561182975769043 + ], + [ + "▁Abt", + -14.561322212219238 + ], + [ + "ometri", + -14.561339378356934 + ], + [ + "agawa", + -14.56136417388916 + ], + [ + "Loop", + -14.561456680297852 + ], + [ + "оо", + -14.561506271362305 + ], + [ + "크", + -14.561540603637695 + ], + [ + "▁wimp", + -14.56160831451416 + ], + [ + "▁KwaZulu", + -14.561616897583008 + ], + [ + "▁inactivation", + -14.56163501739502 + ], + [ + "▁TRAINING", + -14.561665534973145 + ], + [ + "▁Faction", + -14.561694145202637 + ], + [ + "▁UGA", + -14.561704635620117 + ], + [ + "khar", + -14.561711311340332 + ], + [ + "▁DEAR", + -14.561731338500977 + ], + [ + "▁Punt", + -14.561747550964355 + ], + [ + "▁Accel", + -14.56177043914795 + ], + [ + "▁Competency", + -14.56179141998291 + ], + [ + "▁Bastille", + -14.561824798583984 + ], + [ + "▁Milligan", + -14.561830520629883 + ], + [ + "▁pastas", + -14.561832427978516 + ], + [ + "▁Babi", + -14.561838150024414 + ], + [ + "mise", + -14.56188678741455 + ], + [ + "▁Seam", + -14.56191349029541 + ], + [ + "▁reshaped", + -14.561917304992676 + ], + [ + "▁Prest", + -14.561924934387207 + ], + [ + "▁Colossus", + -14.561927795410156 + ], + [ + "▁Amend", + -14.561931610107422 + ], + [ + "▁rages", + -14.561931610107422 + ], + [ + "▁fads", + -14.561936378479004 + ], + [ + "▁544", + -14.561983108520508 + ], + [ + "▁Gonzalo", + -14.561983108520508 + ], + [ + "▁STARS", + -14.561988830566406 + ], + [ + "recent", + -14.562028884887695 + ], + [ + "▁Impacts", + -14.562047958374023 + ], + [ + "▁luxuriously", + -14.562104225158691 + ], + [ + "▁prioritizes", + -14.562104225158691 + ], + [ + "▁McEl", + -14.562113761901855 + ], + [ + "▁Translational", + -14.562118530273438 + ], + [ + "▁PURE", + -14.562148094177246 + ], + [ + "▁Zechariah", + -14.562169075012207 + ], + [ + "▁Cruising", + -14.562200546264648 + ], + [ + "方法", + -14.562206268310547 + ], + [ + "▁lauren", + -14.562213897705078 + ], + [ + "▁accidently", + -14.562214851379395 + ], + [ + "▁Cassel", + -14.562284469604492 + ], + [ + "▁unrestrained", + -14.562289237976074 + ], + [ + "▁duplicating", + -14.562297821044922 + ], + [ + "benz", + -14.562345504760742 + ], + [ + "▁BOE", + -14.562365531921387 + ], + [ + "▁sculptors", + -14.56238842010498 + ], + [ + "▁Geriatric", + -14.56240177154541 + ], + [ + "EMP", + -14.56240463256836 + ], + [ + "▁Motorists", + -14.562424659729004 + ], + [ + "▁Oso", + -14.56242561340332 + ], + [ + "Gbps", + -14.562427520751953 + ], + [ + "Within", + -14.562433242797852 + ], + [ + "ezza", + -14.562459945678711 + ], + [ + "▁fortification", + -14.56248664855957 + ], + [ + "▁Rivals", + -14.562493324279785 + ], + [ + "▁Alhaji", + -14.562549591064453 + ], + [ + "cator", + -14.562552452087402 + ], + [ + "▁psy", + -14.562557220458984 + ], + [ + "quia", + -14.562576293945312 + ], + [ + "▁synthesizers", + -14.562591552734375 + ], + [ + "▁corduroy", + -14.562599182128906 + ], + [ + "▁recaps", + -14.562640190124512 + ], + [ + "▁depository", + -14.562641143798828 + ], + [ + "optical", + -14.562686920166016 + ], + [ + "▁Bahr", + -14.56274127960205 + ], + [ + "▁pained", + -14.562776565551758 + ], + [ + "▁scri", + -14.562833786010742 + ], + [ + "▁dollhouse", + -14.562874794006348 + ], + [ + "Babe", + -14.562881469726562 + ], + [ + "▁Juli", + -14.562967300415039 + ], + [ + "Cars", + -14.562989234924316 + ], + [ + "▁Othello", + -14.563030242919922 + ], + [ + "▁Hallelujah", + -14.563064575195312 + ], + [ + "타", + -14.563072204589844 + ], + [ + "▁Ants", + -14.563076972961426 + ], + [ + "lever", + -14.563091278076172 + ], + [ + "▁Geld", + -14.563117980957031 + ], + [ + "▁Faw", + -14.563150405883789 + ], + [ + "▁VET", + -14.563155174255371 + ], + [ + "▁Luftwaffe", + -14.563167572021484 + ], + [ + "cane", + -14.563187599182129 + ], + [ + "▁aspen", + -14.563228607177734 + ], + [ + "KAR", + -14.563278198242188 + ], + [ + "▁Zie", + -14.563294410705566 + ], + [ + "▁shrugs", + -14.563326835632324 + ], + [ + "▁Aguilera", + -14.563331604003906 + ], + [ + "brecht", + -14.563344955444336 + ], + [ + "▁Nationalism", + -14.563348770141602 + ], + [ + "Gary", + -14.56338119506836 + ], + [ + "▁Teg", + -14.563405990600586 + ], + [ + "▁Yorktown", + -14.563414573669434 + ], + [ + "▁HFC", + -14.56346607208252 + ], + [ + "▁Histories", + -14.563492774963379 + ], + [ + "▁MBC", + -14.563508033752441 + ], + [ + "▁Bö", + -14.563528060913086 + ], + [ + "▁Monterrey", + -14.5635986328125 + ], + [ + "minimal", + -14.563629150390625 + ], + [ + "▁HIF", + -14.563645362854004 + ], + [ + "▁glioma", + -14.563652038574219 + ], + [ + "▁uttering", + -14.563711166381836 + ], + [ + "▁Customization", + -14.563713073730469 + ], + [ + "brands", + -14.563725471496582 + ], + [ + "▁ledges", + -14.563754081726074 + ], + [ + "▁Surfers", + -14.563763618469238 + ], + [ + "▁fetuses", + -14.563786506652832 + ], + [ + "▁Kobayashi", + -14.563819885253906 + ], + [ + "点", + -14.563865661621094 + ], + [ + "▁thrifty", + -14.56391429901123 + ], + [ + "▁displeased", + -14.563969612121582 + ], + [ + "▁SERP", + -14.564010620117188 + ], + [ + "ации", + -14.56411361694336 + ], + [ + "▁socialising", + -14.564125061035156 + ], + [ + "onix", + -14.564176559448242 + ], + [ + "▁Bhavan", + -14.564205169677734 + ], + [ + "ucher", + -14.564254760742188 + ], + [ + "Edition", + -14.564271926879883 + ], + [ + "▁complimenting", + -14.564318656921387 + ], + [ + "▁politeness", + -14.564339637756348 + ], + [ + "carn", + -14.564349174499512 + ], + [ + "▁Pane", + -14.564349174499512 + ], + [ + "▁aint", + -14.564350128173828 + ], + [ + "corporation", + -14.564352989196777 + ], + [ + "▁Thumbs", + -14.564371109008789 + ], + [ + "▁abbot", + -14.564379692077637 + ], + [ + "▁Dink", + -14.564397811889648 + ], + [ + "▁insoles", + -14.564407348632812 + ], + [ + "▁Esch", + -14.564413070678711 + ], + [ + "▁FGF", + -14.564451217651367 + ], + [ + "▁Lest", + -14.564465522766113 + ], + [ + "intend", + -14.564480781555176 + ], + [ + "Penn", + -14.564508438110352 + ], + [ + "▁posits", + -14.564534187316895 + ], + [ + "▁enormity", + -14.564555168151855 + ], + [ + "▁EMG", + -14.564579010009766 + ], + [ + "regulating", + -14.56458854675293 + ], + [ + "scrib", + -14.564589500427246 + ], + [ + "▁EAR", + -14.564591407775879 + ], + [ + "▁Restrict", + -14.564619064331055 + ], + [ + "ubu", + -14.564692497253418 + ], + [ + "▁Approaching", + -14.564697265625 + ], + [ + "▁Wnt", + -14.564708709716797 + ], + [ + "▁Thad", + -14.564718246459961 + ], + [ + "▁Apricot", + -14.56474494934082 + ], + [ + "▁Roster", + -14.564772605895996 + ], + [ + "▁Pneumatic", + -14.564831733703613 + ], + [ + "▁Sema", + -14.564831733703613 + ], + [ + "▁sophomores", + -14.564840316772461 + ], + [ + "パ", + -14.564841270446777 + ], + [ + "▁victorian", + -14.564889907836914 + ], + [ + "▁McHugh", + -14.564915657043457 + ], + [ + "▁uprisings", + -14.564918518066406 + ], + [ + "▁Feud", + -14.564984321594238 + ], + [ + "▁Generous", + -14.564992904663086 + ], + [ + "STONE", + -14.5650053024292 + ], + [ + "Essential", + -14.565011978149414 + ], + [ + "ERI", + -14.56501579284668 + ], + [ + "▁Enbridge", + -14.565028190612793 + ], + [ + "▁REASON", + -14.565065383911133 + ], + [ + "▁endangerment", + -14.56507396697998 + ], + [ + "▁Endocrinology", + -14.565092086791992 + ], + [ + "▁Buzzard", + -14.565117835998535 + ], + [ + "charya", + -14.5651216506958 + ], + [ + "quiring", + -14.565197944641113 + ], + [ + "▁attentively", + -14.565237045288086 + ], + [ + "▁bodyguards", + -14.565279006958008 + ], + [ + "trauma", + -14.565288543701172 + ], + [ + "▁showy", + -14.565288543701172 + ], + [ + "▁algal", + -14.565299987792969 + ], + [ + "ITO", + -14.565340042114258 + ], + [ + "▁southerly", + -14.565345764160156 + ], + [ + "▁Indicate", + -14.565373420715332 + ], + [ + "fol", + -14.56537914276123 + ], + [ + "Comments", + -14.565382957458496 + ], + [ + "▁eloquence", + -14.565409660339355 + ], + [ + "▁percussive", + -14.56541919708252 + ], + [ + "institute", + -14.565457344055176 + ], + [ + "▁Gaulle", + -14.565485954284668 + ], + [ + "▁abhor", + -14.565499305725098 + ], + [ + "▁Comparisons", + -14.565522193908691 + ], + [ + "▁SCREEN", + -14.565530776977539 + ], + [ + "▁stockpiles", + -14.565553665161133 + ], + [ + "▁Greed", + -14.565563201904297 + ], + [ + "▁543", + -14.565581321716309 + ], + [ + "utor", + -14.5656156539917 + ], + [ + "Passion", + -14.565625190734863 + ], + [ + "▁angiography", + -14.565634727478027 + ], + [ + "lissa", + -14.565640449523926 + ], + [ + "macro", + -14.565650939941406 + ], + [ + "Revelation", + -14.56566333770752 + ], + [ + "▁OTTAWA", + -14.565669059753418 + ], + [ + "▁Refining", + -14.565695762634277 + ], + [ + "ulative", + -14.565710067749023 + ], + [ + "▁BLU", + -14.565757751464844 + ], + [ + "▁raincoat", + -14.565773010253906 + ], + [ + "▁WCW", + -14.565778732299805 + ], + [ + "mob", + -14.565803527832031 + ], + [ + "▁lawlessness", + -14.565821647644043 + ], + [ + "▁Elia", + -14.565829277038574 + ], + [ + "み", + -14.565851211547852 + ], + [ + "▁tanto", + -14.565864562988281 + ], + [ + "▁Adjacent", + -14.565902709960938 + ], + [ + "▁Steroids", + -14.565911293029785 + ], + [ + "eighth", + -14.565912246704102 + ], + [ + "▁DCA", + -14.565921783447266 + ], + [ + "▁earner", + -14.565922737121582 + ], + [ + "ี", + -14.565930366516113 + ], + [ + "▁fainted", + -14.565938949584961 + ], + [ + "▁architecturally", + -14.565949440002441 + ], + [ + "▁haemo", + -14.565949440002441 + ], + [ + "▁sobbed", + -14.56595516204834 + ], + [ + "▁Styrofoam", + -14.566023826599121 + ], + [ + "▁Galvan", + -14.566027641296387 + ], + [ + "▁whirling", + -14.566049575805664 + ], + [ + "haan", + -14.566078186035156 + ], + [ + "fection", + -14.566079139709473 + ], + [ + "bv", + -14.566176414489746 + ], + [ + "▁Cervantes", + -14.566179275512695 + ], + [ + "▁unafraid", + -14.566218376159668 + ], + [ + "▁Eventbrite", + -14.566239356994629 + ], + [ + "rale", + -14.566246032714844 + ], + [ + "▁bankruptcies", + -14.566251754760742 + ], + [ + "Cum", + -14.566254615783691 + ], + [ + "▁airplay", + -14.566255569458008 + ], + [ + "▁melodramatic", + -14.566267013549805 + ], + [ + "▁Stef", + -14.566282272338867 + ], + [ + "щи", + -14.566293716430664 + ], + [ + "▁americans", + -14.566301345825195 + ], + [ + "▁Sono", + -14.566309928894043 + ], + [ + "▁Ample", + -14.566317558288574 + ], + [ + "▁Raytheon", + -14.56631851196289 + ], + [ + "require", + -14.566329956054688 + ], + [ + "▁booksellers", + -14.56633472442627 + ], + [ + "▁unreadable", + -14.566337585449219 + ], + [ + "▁459", + -14.566366195678711 + ], + [ + "armor", + -14.566372871398926 + ], + [ + "▁BSNL", + -14.566380500793457 + ], + [ + "Opens", + -14.566442489624023 + ], + [ + "▁Glynn", + -14.566452980041504 + ], + [ + "▁Cud", + -14.566474914550781 + ], + [ + "▁011", + -14.566502571105957 + ], + [ + "▁Entrepreneurial", + -14.566503524780273 + ], + [ + "্", + -14.566512107849121 + ], + [ + "▁NWS", + -14.566526412963867 + ], + [ + "▁Mante", + -14.566585540771484 + ], + [ + "▁vil", + -14.566605567932129 + ], + [ + "▁crystallization", + -14.566629409790039 + ], + [ + "▁caricatures", + -14.56665325164795 + ], + [ + "▁945", + -14.566686630249023 + ], + [ + "▁Armagh", + -14.56668758392334 + ], + [ + "▁Versions", + -14.566695213317871 + ], + [ + "▁begotten", + -14.5667142868042 + ], + [ + "▁Goats", + -14.566725730895996 + ], + [ + "diameter", + -14.56688404083252 + ], + [ + "▁precondition", + -14.56689453125 + ], + [ + "▁Punisher", + -14.566895484924316 + ], + [ + "▁Companions", + -14.566900253295898 + ], + [ + "imiento", + -14.56690502166748 + ], + [ + "▁Beanie", + -14.566919326782227 + ], + [ + "Seal", + -14.56692123413086 + ], + [ + "▁lcd", + -14.566959381103516 + ], + [ + "▁Duro", + -14.566991806030273 + ], + [ + "▁Cellars", + -14.567015647888184 + ], + [ + "proofing", + -14.567046165466309 + ], + [ + "▁FLASH", + -14.567057609558105 + ], + [ + "Contract", + -14.567068099975586 + ], + [ + "▁unadulterated", + -14.56707763671875 + ], + [ + "▁Pity", + -14.567086219787598 + ], + [ + "▁hilarity", + -14.56710433959961 + ], + [ + "입", + -14.567130088806152 + ], + [ + "noi", + -14.567138671875 + ], + [ + "▁Homeschool", + -14.56714153289795 + ], + [ + "pip", + -14.567159652709961 + ], + [ + "usp", + -14.567169189453125 + ], + [ + "Fight", + -14.567184448242188 + ], + [ + "▁Raquel", + -14.567206382751465 + ], + [ + "▁hcg", + -14.567238807678223 + ], + [ + "▁sleepiness", + -14.567292213439941 + ], + [ + "업", + -14.567294120788574 + ], + [ + "▁Heavens", + -14.567333221435547 + ], + [ + "▁Feathers", + -14.567334175109863 + ], + [ + "drugs", + -14.567340850830078 + ], + [ + "▁Inquire", + -14.567389488220215 + ], + [ + "▁Э", + -14.567404747009277 + ], + [ + "▁propranolol", + -14.567432403564453 + ], + [ + "▁consonants", + -14.567479133605957 + ], + [ + "▁exploitative", + -14.567530632019043 + ], + [ + "ollo", + -14.56753158569336 + ], + [ + "rca", + -14.56753158569336 + ], + [ + "▁FZ", + -14.567584037780762 + ], + [ + "Proof", + -14.567604064941406 + ], + [ + "icky", + -14.567612648010254 + ], + [ + "▁Mortuary", + -14.567633628845215 + ], + [ + "▁menopausal", + -14.56765079498291 + ], + [ + "▁Rubicon", + -14.567667007446289 + ], + [ + "flush", + -14.567675590515137 + ], + [ + "coaster", + -14.567732810974121 + ], + [ + "▁FOCUS", + -14.567816734313965 + ], + [ + "▁JUN", + -14.56783676147461 + ], + [ + "▁Behavioural", + -14.56784439086914 + ], + [ + "▁Nehemiah", + -14.567891120910645 + ], + [ + "▁TRX", + -14.567917823791504 + ], + [ + "Chuck", + -14.567924499511719 + ], + [ + "▁Centaur", + -14.567930221557617 + ], + [ + "▁supersedes", + -14.567992210388184 + ], + [ + "▁impeding", + -14.568012237548828 + ], + [ + "▁clasped", + -14.568013191223145 + ], + [ + "▁eli", + -14.568023681640625 + ], + [ + "▁RHS", + -14.568077087402344 + ], + [ + "▁ROD", + -14.568109512329102 + ], + [ + "▁desolation", + -14.56816291809082 + ], + [ + "▁Carat", + -14.568184852600098 + ], + [ + "▁forays", + -14.568221092224121 + ], + [ + "▁destabilizing", + -14.568228721618652 + ], + [ + "▁Keel", + -14.568245887756348 + ], + [ + "▁Manuscripts", + -14.568253517150879 + ], + [ + "▁Fibro", + -14.568280220031738 + ], + [ + "▁lex", + -14.568296432495117 + ], + [ + "▁Makati", + -14.568297386169434 + ], + [ + "▁psychometric", + -14.568302154541016 + ], + [ + "▁Ornaments", + -14.568305015563965 + ], + [ + "▁pastimes", + -14.568305015563965 + ], + [ + "vigil", + -14.56832504272461 + ], + [ + "fing", + -14.568344116210938 + ], + [ + "▁rebuffed", + -14.568374633789062 + ], + [ + "▁Twinkle", + -14.568398475646973 + ], + [ + "▁fatherhood", + -14.568408012390137 + ], + [ + "adha", + -14.568418502807617 + ], + [ + "▁Excelsior", + -14.568419456481934 + ], + [ + "▁disobey", + -14.568429946899414 + ], + [ + "pathology", + -14.568439483642578 + ], + [ + "jol", + -14.568480491638184 + ], + [ + "▁Leftover", + -14.568485260009766 + ], + [ + "▁Sach", + -14.568490028381348 + ], + [ + "▁misinformed", + -14.568492889404297 + ], + [ + "▁caliphate", + -14.56851863861084 + ], + [ + "SITE", + -14.568575859069824 + ], + [ + "Parts", + -14.568608283996582 + ], + [ + "urer", + -14.568609237670898 + ], + [ + "KiB", + -14.568624496459961 + ], + [ + "▁Spooky", + -14.568643569946289 + ], + [ + "LTE", + -14.568653106689453 + ], + [ + "ATR", + -14.568656921386719 + ], + [ + "▁Lucasfilm", + -14.568668365478516 + ], + [ + "REE", + -14.56867504119873 + ], + [ + "▁NOx", + -14.56870174407959 + ], + [ + "▁Grandmaster", + -14.568702697753906 + ], + [ + "▁slither", + -14.568704605102539 + ], + [ + "▁reverting", + -14.568730354309082 + ], + [ + "glio", + -14.568758010864258 + ], + [ + "▁FMCG", + -14.56877326965332 + ], + [ + "solved", + -14.5687837600708 + ], + [ + "ladder", + -14.568788528442383 + ], + [ + "▁Mascara", + -14.568790435791016 + ], + [ + "CPI", + -14.568803787231445 + ], + [ + "▁Bonaparte", + -14.568852424621582 + ], + [ + "▁Sper", + -14.568860054016113 + ], + [ + "▁Baruch", + -14.568862915039062 + ], + [ + "▁beheading", + -14.568886756896973 + ], + [ + "PLUS", + -14.568887710571289 + ], + [ + "wong", + -14.568892478942871 + ], + [ + "▁Manali", + -14.56893253326416 + ], + [ + "1926", + -14.568971633911133 + ], + [ + "▁조", + -14.568975448608398 + ], + [ + "Token", + -14.56898307800293 + ], + [ + "▁midtown", + -14.569009780883789 + ], + [ + "▁Capone", + -14.569049835205078 + ], + [ + "▁vashikaran", + -14.569104194641113 + ], + [ + "tracker", + -14.569148063659668 + ], + [ + "jö", + -14.569151878356934 + ], + [ + "▁Nichol", + -14.569151878356934 + ], + [ + "▁Bolshevik", + -14.569165229797363 + ], + [ + "▁Broughton", + -14.569173812866211 + ], + [ + "▁Geoscience", + -14.569236755371094 + ], + [ + "▁batten", + -14.56929874420166 + ], + [ + "▁Mykonos", + -14.56931209564209 + ], + [ + "▁FALSE", + -14.56933879852295 + ], + [ + "▁reprimanded", + -14.569382667541504 + ], + [ + "▁caverns", + -14.569400787353516 + ], + [ + "inette", + -14.569404602050781 + ], + [ + "▁Redesign", + -14.569461822509766 + ], + [ + "▁actuation", + -14.569559097290039 + ], + [ + "xf", + -14.56956672668457 + ], + [ + "theism", + -14.569568634033203 + ], + [ + "▁webcams", + -14.569568634033203 + ], + [ + "abha", + -14.569600105285645 + ], + [ + "pana", + -14.569611549377441 + ], + [ + "▁Gour", + -14.569642066955566 + ], + [ + "olus", + -14.569648742675781 + ], + [ + "▁kickboxing", + -14.569652557373047 + ], + [ + "▁Bf", + -14.569660186767578 + ], + [ + "▁ute", + -14.569669723510742 + ], + [ + "▁به", + -14.569680213928223 + ], + [ + "▁Kuri", + -14.569722175598145 + ], + [ + "zki", + -14.569759368896484 + ], + [ + "essler", + -14.569768905639648 + ], + [ + "位", + -14.569768905639648 + ], + [ + "▁Arche", + -14.569839477539062 + ], + [ + "referenced", + -14.569853782653809 + ], + [ + "▁trawl", + -14.569934844970703 + ], + [ + "▁Musharraf", + -14.56999683380127 + ], + [ + "▁Shaping", + -14.569999694824219 + ], + [ + "▁Starch", + -14.570023536682129 + ], + [ + "▁PERIOD", + -14.57005786895752 + ], + [ + "▁ICON", + -14.570063591003418 + ], + [ + "▁barbarian", + -14.570114135742188 + ], + [ + "▁Kiwanis", + -14.570136070251465 + ], + [ + "▁uptrend", + -14.57014274597168 + ], + [ + "EXE", + -14.570159912109375 + ], + [ + "▁captained", + -14.570168495178223 + ], + [ + "Fantasy", + -14.570178031921387 + ], + [ + "vacation", + -14.570196151733398 + ], + [ + "▁Handheld", + -14.570202827453613 + ], + [ + "▁Embracing", + -14.570207595825195 + ], + [ + "VAS", + -14.57021713256836 + ], + [ + "▁VSI", + -14.570256233215332 + ], + [ + "Remote", + -14.570268630981445 + ], + [ + "▁Soli", + -14.570271492004395 + ], + [ + "▁ombre", + -14.570283889770508 + ], + [ + "▁Austro", + -14.570291519165039 + ], + [ + "▁faultless", + -14.570301055908203 + ], + [ + "biased", + -14.570323944091797 + ], + [ + "yke", + -14.57033920288086 + ], + [ + "distant", + -14.57034969329834 + ], + [ + "Indeed", + -14.570392608642578 + ], + [ + "▁Aldrich", + -14.570413589477539 + ], + [ + "▁desalination", + -14.570413589477539 + ], + [ + "ர", + -14.570416450500488 + ], + [ + "thyroid", + -14.570490837097168 + ], + [ + "▁Madre", + -14.570514678955078 + ], + [ + "▁Lino", + -14.570523262023926 + ], + [ + "▁Gillis", + -14.57054615020752 + ], + [ + "▁violins", + -14.570588111877441 + ], + [ + "▁interred", + -14.570590019226074 + ], + [ + "▁bung", + -14.570594787597656 + ], + [ + "▁volunteerism", + -14.570650100708008 + ], + [ + "▁Kora", + -14.570667266845703 + ], + [ + "▁Silv", + -14.570697784423828 + ], + [ + "▁midget", + -14.570703506469727 + ], + [ + "▁bravado", + -14.570704460144043 + ], + [ + "▁gur", + -14.570712089538574 + ], + [ + "▁Leviathan", + -14.57072639465332 + ], + [ + "▁Puig", + -14.570730209350586 + ], + [ + "▁Finney", + -14.570734977722168 + ], + [ + "▁vandal", + -14.570749282836914 + ], + [ + "▁tradeshow", + -14.570780754089355 + ], + [ + "▁Mythology", + -14.570802688598633 + ], + [ + "▁Australasia", + -14.570837020874023 + ], + [ + "▁Langdon", + -14.570853233337402 + ], + [ + "▁Cyborg", + -14.57087516784668 + ], + [ + "ühl", + -14.570894241333008 + ], + [ + "Hungarian", + -14.570913314819336 + ], + [ + "Pulse", + -14.570915222167969 + ], + [ + "instagram", + -14.570934295654297 + ], + [ + "▁PHILADELPHIA", + -14.570978164672852 + ], + [ + "▁Lancer", + -14.571004867553711 + ], + [ + "▁Kurz", + -14.57101058959961 + ], + [ + "▁कर", + -14.571012496948242 + ], + [ + "fekt", + -14.57101821899414 + ], + [ + "▁Dowling", + -14.571023941040039 + ], + [ + "▁Saito", + -14.571073532104492 + ], + [ + "▁ISLAMABAD", + -14.57108211517334 + ], + [ + "▁rab", + -14.571112632751465 + ], + [ + "▁Akademi", + -14.571123123168945 + ], + [ + "▁Coon", + -14.571155548095703 + ], + [ + "▁Wenn", + -14.571172714233398 + ], + [ + "▁EXCELLENT", + -14.571186065673828 + ], + [ + "olysis", + -14.571208953857422 + ], + [ + "ially", + -14.571215629577637 + ], + [ + "▁Vedas", + -14.571216583251953 + ], + [ + "▁Pseudomonas", + -14.571239471435547 + ], + [ + "DOR", + -14.571300506591797 + ], + [ + "quent", + -14.571303367614746 + ], + [ + "hf", + -14.571306228637695 + ], + [ + "▁Alca", + -14.571306228637695 + ], + [ + "submitted", + -14.571402549743652 + ], + [ + "▁microfinance", + -14.57143783569336 + ], + [ + "▁arcades", + -14.571443557739258 + ], + [ + "▁Hinds", + -14.571477890014648 + ], + [ + "▁seattle", + -14.571486473083496 + ], + [ + "▁middlemen", + -14.571575164794922 + ], + [ + "▁Eme", + -14.5715970993042 + ], + [ + "duo", + -14.571611404418945 + ], + [ + "deva", + -14.57162094116211 + ], + [ + "▁CAE", + -14.571634292602539 + ], + [ + "Malaysia", + -14.57165241241455 + ], + [ + "kj", + -14.571752548217773 + ], + [ + "▁623", + -14.57175350189209 + ], + [ + "▁Zeno", + -14.571778297424316 + ], + [ + "▁Cotter", + -14.571799278259277 + ], + [ + "▁placards", + -14.571822166442871 + ], + [ + "▁trickling", + -14.571868896484375 + ], + [ + "▁kel", + -14.571904182434082 + ], + [ + "▁BIC", + -14.571908950805664 + ], + [ + "▁reformist", + -14.571928024291992 + ], + [ + "▁moisturising", + -14.572020530700684 + ], + [ + "▁633", + -14.572027206420898 + ], + [ + "▁massaged", + -14.572090148925781 + ], + [ + "▁Harrah", + -14.572125434875488 + ], + [ + "▁Ravel", + -14.572159767150879 + ], + [ + "▁Trance", + -14.572173118591309 + ], + [ + "▁Metcalf", + -14.572221755981445 + ], + [ + "▁Daria", + -14.57223892211914 + ], + [ + "▁misinterpretation", + -14.57223892211914 + ], + [ + "▁wid", + -14.572260856628418 + ], + [ + "▁cultivar", + -14.57226848602295 + ], + [ + "Marvel", + -14.572330474853516 + ], + [ + "▁Ml", + -14.57233715057373 + ], + [ + "▁Mahomes", + -14.572376251220703 + ], + [ + "▁Magdalena", + -14.57238483428955 + ], + [ + "▁Tied", + -14.57239818572998 + ], + [ + "guides", + -14.572405815124512 + ], + [ + "▁Seva", + -14.572436332702637 + ], + [ + "soy", + -14.57251262664795 + ], + [ + "▁Auditing", + -14.572531700134277 + ], + [ + "acus", + -14.572535514831543 + ], + [ + "▁Maximilian", + -14.572535514831543 + ], + [ + "grim", + -14.572566032409668 + ], + [ + "▁Agni", + -14.572576522827148 + ], + [ + "plin", + -14.572606086730957 + ], + [ + "xiang", + -14.572608947753906 + ], + [ + "Kur", + -14.57261848449707 + ], + [ + "▁phenom", + -14.572622299194336 + ], + [ + "▁raiser", + -14.57262897491455 + ], + [ + "▁Vogt", + -14.572650909423828 + ], + [ + "▁Gynecology", + -14.57265567779541 + ], + [ + "▁unprofitable", + -14.572664260864258 + ], + [ + "materials", + -14.572675704956055 + ], + [ + "▁officiate", + -14.57270622253418 + ], + [ + "▁Kund", + -14.572707176208496 + ], + [ + "cruiser", + -14.57273006439209 + ], + [ + "▁utterances", + -14.572735786437988 + ], + [ + "▁Busan", + -14.572739601135254 + ], + [ + "▁Fuku", + -14.572846412658691 + ], + [ + "▁Advise", + -14.572866439819336 + ], + [ + "▁Osh", + -14.572879791259766 + ], + [ + "▁cymbals", + -14.572900772094727 + ], + [ + "appe", + -14.572942733764648 + ], + [ + "▁España", + -14.572962760925293 + ], + [ + "1093", + -14.572999000549316 + ], + [ + "▁gander", + -14.573022842407227 + ], + [ + "▁superstructure", + -14.573066711425781 + ], + [ + "▁relaying", + -14.573077201843262 + ], + [ + "▁surefire", + -14.573107719421387 + ], + [ + "▁Lyd", + -14.573153495788574 + ], + [ + "▁beckons", + -14.5731840133667 + ], + [ + "▁nuevo", + -14.573204040527344 + ], + [ + "Operator", + -14.57325267791748 + ], + [ + "▁EXC", + -14.573262214660645 + ], + [ + "▁Samoan", + -14.57330322265625 + ], + [ + "Slim", + -14.573308944702148 + ], + [ + "▁invoiced", + -14.573352813720703 + ], + [ + "▁إ", + -14.573419570922852 + ], + [ + "▁Halsey", + -14.573441505432129 + ], + [ + "▁Tertiary", + -14.573490142822266 + ], + [ + "hdl", + -14.573552131652832 + ], + [ + "▁VJ", + -14.573569297790527 + ], + [ + "▁Rouse", + -14.57358455657959 + ], + [ + "climb", + -14.573593139648438 + ], + [ + "▁friendliest", + -14.57363510131836 + ], + [ + "▁Upland", + -14.57364273071289 + ], + [ + "▁chalets", + -14.573643684387207 + ], + [ + "azu", + -14.57369613647461 + ], + [ + "Jer", + -14.573718070983887 + ], + [ + "xiv", + -14.573719024658203 + ], + [ + "mobility", + -14.573738098144531 + ], + [ + "▁UO", + -14.573741912841797 + ], + [ + "▁Renovations", + -14.573768615722656 + ], + [ + "▁Twickenham", + -14.573795318603516 + ], + [ + "▁Digestive", + -14.57380485534668 + ], + [ + "dua", + -14.573832511901855 + ], + [ + "▁875", + -14.57384204864502 + ], + [ + "claimed", + -14.57388687133789 + ], + [ + "▁Wager", + -14.573970794677734 + ], + [ + "Mun", + -14.573973655700684 + ], + [ + "▁aspired", + -14.573978424072266 + ], + [ + "▁Montoya", + -14.57400894165039 + ], + [ + "tsy", + -14.574016571044922 + ], + [ + "podcast", + -14.574066162109375 + ], + [ + "qr", + -14.57408618927002 + ], + [ + "Traffic", + -14.574090957641602 + ], + [ + "▁Inaugural", + -14.57409954071045 + ], + [ + "▁Ananda", + -14.574114799499512 + ], + [ + "▁Cuckoo", + -14.574126243591309 + ], + [ + "▁TREE", + -14.574127197265625 + ], + [ + "▁gentile", + -14.574183464050293 + ], + [ + "▁MDMA", + -14.574186325073242 + ], + [ + "▁Magu", + -14.574187278747559 + ], + [ + "▁Dated", + -14.574244499206543 + ], + [ + "▁ECA", + -14.574249267578125 + ], + [ + "▁Planets", + -14.574254035949707 + ], + [ + "▁frescoes", + -14.574272155761719 + ], + [ + "Num", + -14.574300765991211 + ], + [ + "▁002", + -14.574371337890625 + ], + [ + "▁FER", + -14.574400901794434 + ], + [ + "▁scratchy", + -14.574422836303711 + ], + [ + "▁Carpets", + -14.57444953918457 + ], + [ + "▁Quinton", + -14.574469566345215 + ], + [ + "▁libro", + -14.574525833129883 + ], + [ + "ONIC", + -14.57453441619873 + ], + [ + "▁smallholder", + -14.574581146240234 + ], + [ + "▁Mandala", + -14.574599266052246 + ], + [ + "▁excreted", + -14.57461929321289 + ], + [ + "▁overheads", + -14.574678421020508 + ], + [ + "▁entreat", + -14.574682235717773 + ], + [ + "▁FileMaker", + -14.57468318939209 + ], + [ + "▁Ganesha", + -14.574687004089355 + ], + [ + "▁Carte", + -14.574688911437988 + ], + [ + "pox", + -14.574703216552734 + ], + [ + "▁kaleidoscope", + -14.57470989227295 + ], + [ + "▁caucuses", + -14.574751853942871 + ], + [ + "▁upholds", + -14.574777603149414 + ], + [ + "▁transcendence", + -14.574779510498047 + ], + [ + "iqui", + -14.574787139892578 + ], + [ + "▁Finalist", + -14.574787139892578 + ], + [ + "▁auditioning", + -14.574790954589844 + ], + [ + "▁Thrust", + -14.574793815612793 + ], + [ + "▁Bridging", + -14.57479476928711 + ], + [ + "▁confound", + -14.57479476928711 + ], + [ + "▁STUDIO", + -14.574806213378906 + ], + [ + "enactment", + -14.574813842773438 + ], + [ + "▁Northumbria", + -14.57482624053955 + ], + [ + "hued", + -14.57483959197998 + ], + [ + "▁Verses", + -14.574874877929688 + ], + [ + "▁Drafting", + -14.574889183044434 + ], + [ + "azin", + -14.574893951416016 + ], + [ + "MPA", + -14.574921607971191 + ], + [ + "▁Prod", + -14.57492733001709 + ], + [ + "▁Towson", + -14.574930191040039 + ], + [ + "▁gil", + -14.574982643127441 + ], + [ + "CORE", + -14.575000762939453 + ], + [ + "▁CEN", + -14.575013160705566 + ], + [ + "▁Songwriter", + -14.575017929077148 + ], + [ + "steal", + -14.575034141540527 + ], + [ + "▁Masch", + -14.575121879577637 + ], + [ + "▁rectification", + -14.575215339660645 + ], + [ + "▁SWEET", + -14.57522964477539 + ], + [ + "▁occ", + -14.575349807739258 + ], + [ + "▁Muz", + -14.575350761413574 + ], + [ + "▁pelo", + -14.575377464294434 + ], + [ + "naz", + -14.575389862060547 + ], + [ + "▁minding", + -14.575394630432129 + ], + [ + "▁Dragonfly", + -14.575479507446289 + ], + [ + "▁nem", + -14.575480461120605 + ], + [ + "OVA", + -14.57552433013916 + ], + [ + "thai", + -14.575541496276855 + ], + [ + "▁Malm", + -14.575582504272461 + ], + [ + "iology", + -14.575601577758789 + ], + [ + "Previous", + -14.575608253479004 + ], + [ + "▁Addie", + -14.575613975524902 + ], + [ + "gba", + -14.575644493103027 + ], + [ + "yeong", + -14.575672149658203 + ], + [ + "▁Banc", + -14.575677871704102 + ], + [ + "▁detoxify", + -14.575721740722656 + ], + [ + "sauce", + -14.575785636901855 + ], + [ + "▁Statesman", + -14.57579517364502 + ], + [ + "▁Lipid", + -14.575849533081055 + ], + [ + "airline", + -14.575854301452637 + ], + [ + "▁POM", + -14.575882911682129 + ], + [ + "median", + -14.575897216796875 + ], + [ + "▁Unfinished", + -14.575900077819824 + ], + [ + "Coffee", + -14.575957298278809 + ], + [ + "▁desi", + -14.576056480407715 + ], + [ + "▁overreach", + -14.576075553894043 + ], + [ + "▁mobilisation", + -14.57609748840332 + ], + [ + "typic", + -14.576099395751953 + ], + [ + "yler", + -14.57610034942627 + ], + [ + "▁IMEI", + -14.576102256774902 + ], + [ + "▁loungers", + -14.5761079788208 + ], + [ + "chord", + -14.576109886169434 + ], + [ + "▁Moslem", + -14.576115608215332 + ], + [ + "▁LETTER", + -14.576153755187988 + ], + [ + "▁straits", + -14.57616138458252 + ], + [ + "▁PAH", + -14.57616901397705 + ], + [ + "▁Hangouts", + -14.576254844665527 + ], + [ + "àn", + -14.576301574707031 + ], + [ + "▁Starwood", + -14.57630443572998 + ], + [ + "▁lira", + -14.576321601867676 + ], + [ + "▁unpretentious", + -14.576394081115723 + ], + [ + "▁meagre", + -14.576410293579102 + ], + [ + "▁Marquee", + -14.576412200927734 + ], + [ + "▁Wastewater", + -14.576478004455566 + ], + [ + "▁Jahre", + -14.576482772827148 + ], + [ + "▁FACTS", + -14.576484680175781 + ], + [ + "▁Spaniel", + -14.576510429382324 + ], + [ + "▁politicized", + -14.57655143737793 + ], + [ + "▁checksum", + -14.576581001281738 + ], + [ + "Tier", + -14.576605796813965 + ], + [ + "▁Neurol", + -14.576613426208496 + ], + [ + "azon", + -14.576621055603027 + ], + [ + "▁luminance", + -14.576639175415039 + ], + [ + "▁stator", + -14.57672119140625 + ], + [ + "lingen", + -14.57674789428711 + ], + [ + "▁Thx", + -14.576767921447754 + ], + [ + "▁Usual", + -14.576770782470703 + ], + [ + "▁Dubuque", + -14.57677936553955 + ], + [ + "▁Tibetans", + -14.57677936553955 + ], + [ + "▁Caz", + -14.576836585998535 + ], + [ + "operators", + -14.576904296875 + ], + [ + "▁NCD", + -14.576973915100098 + ], + [ + "▁ISU", + -14.577041625976562 + ], + [ + "▁depleting", + -14.577056884765625 + ], + [ + "▁RAY", + -14.577081680297852 + ], + [ + "▁Chy", + -14.57710075378418 + ], + [ + "▁briskly", + -14.577104568481445 + ], + [ + "▁1797", + -14.577126502990723 + ], + [ + "▁kcal", + -14.577131271362305 + ], + [ + "▁Westpac", + -14.577205657958984 + ], + [ + "magical", + -14.57726764678955 + ], + [ + "CBA", + -14.57728385925293 + ], + [ + "▁Conyers", + -14.577285766601562 + ], + [ + "▁acorns", + -14.577287673950195 + ], + [ + "▁Rainy", + -14.577289581298828 + ], + [ + "issy", + -14.577308654785156 + ], + [ + "▁Surfer", + -14.577320098876953 + ], + [ + "beginning", + -14.577391624450684 + ], + [ + "▁JIM", + -14.577391624450684 + ], + [ + "BIL", + -14.577420234680176 + ], + [ + "crim", + -14.577423095703125 + ], + [ + "▁8217", + -14.577505111694336 + ], + [ + "▁straightaway", + -14.57751750946045 + ], + [ + "▁Headline", + -14.577520370483398 + ], + [ + "NPR", + -14.577521324157715 + ], + [ + "▁Analyses", + -14.577530860900879 + ], + [ + "EAST", + -14.577543258666992 + ], + [ + "yka", + -14.577553749084473 + ], + [ + "▁overridden", + -14.577553749084473 + ], + [ + "▁authoritarianism", + -14.577613830566406 + ], + [ + "▁nightfall", + -14.57763957977295 + ], + [ + "hardware", + -14.577641487121582 + ], + [ + "MDA", + -14.577656745910645 + ], + [ + "EJ", + -14.577657699584961 + ], + [ + "accio", + -14.577675819396973 + ], + [ + "trax", + -14.577683448791504 + ], + [ + "▁Ghar", + -14.57768726348877 + ], + [ + "▁mountaineer", + -14.5776948928833 + ], + [ + "▁combi", + -14.577698707580566 + ], + [ + "SIGN", + -14.577701568603516 + ], + [ + "▁AUSTRALIA", + -14.577704429626465 + ], + [ + "entered", + -14.57771110534668 + ], + [ + "▁공", + -14.577727317810059 + ], + [ + "▁Sree", + -14.5777587890625 + ], + [ + "▁Hyp", + -14.577762603759766 + ], + [ + "▁cede", + -14.577798843383789 + ], + [ + "▁Frameless", + -14.577800750732422 + ], + [ + "enze", + -14.577835083007812 + ], + [ + "▁Iona", + -14.577836990356445 + ], + [ + "▁Surprised", + -14.577840805053711 + ], + [ + "▁devalue", + -14.577840805053711 + ], + [ + "▁Antibody", + -14.577857971191406 + ], + [ + "▁Heartbreak", + -14.577858924865723 + ], + [ + "1905", + -14.577878952026367 + ], + [ + "▁manhole", + -14.577919960021973 + ], + [ + "▁slicer", + -14.577920913696289 + ], + [ + "▁το", + -14.577939987182617 + ], + [ + "▁shoal", + -14.577963829040527 + ], + [ + "▁denver", + -14.57803726196289 + ], + [ + "nun", + -14.578071594238281 + ], + [ + "▁rpg", + -14.578108787536621 + ], + [ + "▁712", + -14.578141212463379 + ], + [ + "▁epilogue", + -14.578171730041504 + ], + [ + "▁nuptials", + -14.578181266784668 + ], + [ + "▁Stringer", + -14.578197479248047 + ], + [ + "ए", + -14.578238487243652 + ], + [ + "▁Konrad", + -14.578243255615234 + ], + [ + "Products", + -14.5782470703125 + ], + [ + "▁typology", + -14.57827091217041 + ], + [ + "utility", + -14.578279495239258 + ], + [ + "shaking", + -14.57831859588623 + ], + [ + "cative", + -14.57834529876709 + ], + [ + "▁Sconce", + -14.578393936157227 + ], + [ + "arine", + -14.578407287597656 + ], + [ + "Whenever", + -14.578449249267578 + ], + [ + "1923", + -14.578511238098145 + ], + [ + "▁untangle", + -14.57851791381836 + ], + [ + "ISD", + -14.578540802001953 + ], + [ + "▁Betfair", + -14.578553199768066 + ], + [ + "▁MEMS", + -14.578624725341797 + ], + [ + "▁구", + -14.578673362731934 + ], + [ + "▁gyr", + -14.57873821258545 + ], + [ + "▁kenya", + -14.578813552856445 + ], + [ + "Regional", + -14.578845024108887 + ], + [ + "hika", + -14.578887939453125 + ], + [ + "▁leanings", + -14.578912734985352 + ], + [ + "morrow", + -14.5789213180542 + ], + [ + "▁fc", + -14.578927040100098 + ], + [ + "▁Hellenistic", + -14.578929901123047 + ], + [ + "▁Borrow", + -14.578938484191895 + ], + [ + "▁Gn", + -14.578956604003906 + ], + [ + "dab", + -14.578996658325195 + ], + [ + "jug", + -14.57901382446289 + ], + [ + "▁DMD", + -14.579030990600586 + ], + [ + "aak", + -14.579033851623535 + ], + [ + "▁Bridesmaid", + -14.579044342041016 + ], + [ + "1072", + -14.579075813293457 + ], + [ + "rott", + -14.579118728637695 + ], + [ + "▁mystique", + -14.579124450683594 + ], + [ + "▁Gera", + -14.579163551330566 + ], + [ + "▁ecu", + -14.579170227050781 + ], + [ + "▁Raghu", + -14.579238891601562 + ], + [ + "▁Scallop", + -14.579243659973145 + ], + [ + "▁wormhole", + -14.579258918762207 + ], + [ + "▁overflows", + -14.579276084899902 + ], + [ + "valid", + -14.57938289642334 + ], + [ + "▁Revisited", + -14.579385757446289 + ], + [ + "▁Kabir", + -14.579408645629883 + ], + [ + "▁Steg", + -14.579447746276855 + ], + [ + "▁Peso", + -14.57945728302002 + ], + [ + "▁Abingdon", + -14.579505920410156 + ], + [ + "▁Sturm", + -14.579551696777344 + ], + [ + "▁Rethinking", + -14.579573631286621 + ], + [ + "▁shad", + -14.579591751098633 + ], + [ + "▁particip", + -14.579597473144531 + ], + [ + "▁reflexology", + -14.579629898071289 + ], + [ + "▁Rotorua", + -14.579647064208984 + ], + [ + "▁ulterior", + -14.579655647277832 + ], + [ + "aig", + -14.579667091369629 + ], + [ + "▁unaltered", + -14.57969856262207 + ], + [ + "▁Manna", + -14.579708099365234 + ], + [ + "flor", + -14.579717636108398 + ], + [ + "▁newsfeed", + -14.57974624633789 + ], + [ + "▁Cheque", + -14.57974910736084 + ], + [ + "▁Choco", + -14.579768180847168 + ], + [ + "osse", + -14.579787254333496 + ], + [ + "▁scaffolds", + -14.579805374145508 + ], + [ + "embedded", + -14.579808235168457 + ], + [ + "▁Bogart", + -14.579809188842773 + ], + [ + "▁있는", + -14.579809188842773 + ], + [ + "▁Trier", + -14.57982349395752 + ], + [ + "▁ARI", + -14.579846382141113 + ], + [ + "▁bikinis", + -14.579853057861328 + ], + [ + "вод", + -14.57986068725586 + ], + [ + "Launch", + -14.57987117767334 + ], + [ + "▁oxymoron", + -14.579874038696289 + ], + [ + "quí", + -14.579876899719238 + ], + [ + "▁compatriot", + -14.579891204833984 + ], + [ + "▁Bouchard", + -14.579903602600098 + ], + [ + "▁faxing", + -14.579937934875488 + ], + [ + "▁TiVo", + -14.579938888549805 + ], + [ + "▁Fundamentally", + -14.579943656921387 + ], + [ + "logger", + -14.579986572265625 + ], + [ + "▁CURRENT", + -14.579998016357422 + ], + [ + "▁Optimisation", + -14.580084800720215 + ], + [ + "pear", + -14.58011531829834 + ], + [ + "▁RAL", + -14.580161094665527 + ], + [ + "▁pharmaco", + -14.58016300201416 + ], + [ + "▁Thankful", + -14.580207824707031 + ], + [ + "▁Coburn", + -14.580219268798828 + ], + [ + "▁embolism", + -14.580231666564941 + ], + [ + "▁outlaws", + -14.580241203308105 + ], + [ + "▁MONDAY", + -14.58027172088623 + ], + [ + "inary", + -14.580290794372559 + ], + [ + "xyl", + -14.580293655395508 + ], + [ + "▁Gabriela", + -14.580315589904785 + ], + [ + "▁Topped", + -14.580316543579102 + ], + [ + "▁Juba", + -14.580334663391113 + ], + [ + "▁tema", + -14.580347061157227 + ], + [ + "▁Shutterstock", + -14.580389976501465 + ], + [ + "▁Stomach", + -14.580394744873047 + ], + [ + "equ", + -14.58041763305664 + ], + [ + "▁buckling", + -14.580436706542969 + ], + [ + "▁Raisin", + -14.580448150634766 + ], + [ + "edible", + -14.580474853515625 + ], + [ + "voor", + -14.58049201965332 + ], + [ + "▁arabic", + -14.580507278442383 + ], + [ + "▁Micromax", + -14.580510139465332 + ], + [ + "ostomy", + -14.580523490905762 + ], + [ + "▁polynomials", + -14.580552101135254 + ], + [ + "odon", + -14.580565452575684 + ], + [ + "▁Booklet", + -14.580571174621582 + ], + [ + "prazole", + -14.58057975769043 + ], + [ + "▁unwrapped", + -14.580585479736328 + ], + [ + "▁heartening", + -14.580608367919922 + ], + [ + "Jennifer", + -14.580633163452148 + ], + [ + "▁Zoho", + -14.580642700195312 + ], + [ + "screened", + -14.580707550048828 + ], + [ + "monium", + -14.580716133117676 + ], + [ + "neither", + -14.580718994140625 + ], + [ + "defend", + -14.580742835998535 + ], + [ + "Tail", + -14.58076000213623 + ], + [ + "▁Pittman", + -14.58078670501709 + ], + [ + "SSP", + -14.580796241760254 + ], + [ + "▁DAX", + -14.580819129943848 + ], + [ + "▁bloodline", + -14.58089828491211 + ], + [ + "▁Babes", + -14.580900192260742 + ], + [ + "▁Nass", + -14.580903053283691 + ], + [ + "▁Cori", + -14.580926895141602 + ], + [ + "▁topsoil", + -14.58093547821045 + ], + [ + "▁Brunel", + -14.581003189086914 + ], + [ + "▁pointedly", + -14.581009864807129 + ], + [ + "▁Horus", + -14.581019401550293 + ], + [ + "▁giraffes", + -14.581023216247559 + ], + [ + "Jen", + -14.581045150756836 + ], + [ + "theist", + -14.581067085266113 + ], + [ + "▁Spindle", + -14.581069946289062 + ], + [ + "▁Guevara", + -14.581076622009277 + ], + [ + "вет", + -14.581088066101074 + ], + [ + "▁allegorical", + -14.5811185836792 + ], + [ + "▁Sassy", + -14.581119537353516 + ], + [ + "▁ра", + -14.581124305725098 + ], + [ + "trotter", + -14.581146240234375 + ], + [ + "▁Juanita", + -14.581174850463867 + ], + [ + "sixth", + -14.581188201904297 + ], + [ + "▁Tanker", + -14.581192016601562 + ], + [ + "IEL", + -14.581215858459473 + ], + [ + "▁rhinoplasty", + -14.581233978271484 + ], + [ + "▁Prob", + -14.58132553100586 + ], + [ + "sima", + -14.581390380859375 + ], + [ + "▁recompense", + -14.581391334533691 + ], + [ + "▁depravity", + -14.581425666809082 + ], + [ + "tetra", + -14.581433296203613 + ], + [ + "▁Partially", + -14.581454277038574 + ], + [ + "Region", + -14.581460952758789 + ], + [ + "myself", + -14.581462860107422 + ], + [ + "▁battering", + -14.581465721130371 + ], + [ + "▁hollowed", + -14.581466674804688 + ], + [ + "niak", + -14.581525802612305 + ], + [ + "Nigeria", + -14.581561088562012 + ], + [ + "▁airlifted", + -14.581570625305176 + ], + [ + "USS", + -14.581591606140137 + ], + [ + "‹", + -14.581598281860352 + ], + [ + "▁Antiquity", + -14.58162784576416 + ], + [ + "▁prefixes", + -14.58166217803955 + ], + [ + "▁pandering", + -14.58169937133789 + ], + [ + "▁Tsa", + -14.581707000732422 + ], + [ + "Billboard", + -14.581737518310547 + ], + [ + "▁Nazarene", + -14.581744194030762 + ], + [ + "sheim", + -14.581769943237305 + ], + [ + "▁savannah", + -14.581775665283203 + ], + [ + "▁586", + -14.581883430480957 + ], + [ + "▁Polygon", + -14.58191204071045 + ], + [ + "frac", + -14.581929206848145 + ], + [ + "mali", + -14.581937789916992 + ], + [ + "dependency", + -14.581938743591309 + ], + [ + "▁buttress", + -14.581940650939941 + ], + [ + "▁Replication", + -14.581969261169434 + ], + [ + "▁Chávez", + -14.582022666931152 + ], + [ + "▁Mailbox", + -14.582048416137695 + ], + [ + "▁excelling", + -14.582128524780273 + ], + [ + "▁Grotto", + -14.582146644592285 + ], + [ + "▁TSC", + -14.582161903381348 + ], + [ + "▁trusses", + -14.582233428955078 + ], + [ + "▁Zynga", + -14.582236289978027 + ], + [ + "▁misspelling", + -14.582237243652344 + ], + [ + "uß", + -14.58224105834961 + ], + [ + "▁agonists", + -14.582289695739746 + ], + [ + "Victor", + -14.582313537597656 + ], + [ + "Mum", + -14.582320213317871 + ], + [ + "▁zit", + -14.582348823547363 + ], + [ + "▁Esplanade", + -14.582356452941895 + ], + [ + "▁Olin", + -14.582357406616211 + ], + [ + "▁Hebei", + -14.582427978515625 + ], + [ + "▁Designation", + -14.582440376281738 + ], + [ + "▁Bambi", + -14.582448959350586 + ], + [ + "combined", + -14.582498550415039 + ], + [ + "▁housemates", + -14.582500457763672 + ], + [ + "▁Equatorial", + -14.582539558410645 + ], + [ + "VED", + -14.582612991333008 + ], + [ + "▁Avg", + -14.58261775970459 + ], + [ + "▁Coughlin", + -14.582618713378906 + ], + [ + "▁assembler", + -14.582635879516602 + ], + [ + "ROAD", + -14.582664489746094 + ], + [ + "▁آ", + -14.582691192626953 + ], + [ + "▁Reclaimed", + -14.582714080810547 + ], + [ + "▁terrarium", + -14.582728385925293 + ], + [ + "▁donâ", + -14.582748413085938 + ], + [ + "▁negated", + -14.582771301269531 + ], + [ + "▁ELSE", + -14.582786560058594 + ], + [ + "▁invisibility", + -14.582810401916504 + ], + [ + "1928", + -14.582846641540527 + ], + [ + "loh", + -14.582847595214844 + ], + [ + "▁Odysseus", + -14.582857131958008 + ], + [ + "▁gynecologist", + -14.582868576049805 + ], + [ + "▁PALM", + -14.582880973815918 + ], + [ + "▁Buon", + -14.582890510559082 + ], + [ + "▁reeled", + -14.582929611206055 + ], + [ + "▁regenerating", + -14.5829439163208 + ], + [ + "Surf", + -14.582954406738281 + ], + [ + "▁DIRECTV", + -14.582962989807129 + ], + [ + "▁OSI", + -14.582983016967773 + ], + [ + "ryan", + -14.583008766174316 + ], + [ + "▁Seeker", + -14.583022117614746 + ], + [ + "Expo", + -14.583057403564453 + ], + [ + "▁Meow", + -14.583061218261719 + ], + [ + "Plate", + -14.583062171936035 + ], + [ + "Extension", + -14.583078384399414 + ], + [ + "▁661", + -14.58308219909668 + ], + [ + "▁Kean", + -14.583086967468262 + ], + [ + "▁headlong", + -14.583093643188477 + ], + [ + "▁GERD", + -14.58310317993164 + ], + [ + "gado", + -14.583104133605957 + ], + [ + "▁Abid", + -14.583106994628906 + ], + [ + "▁Mattie", + -14.583183288574219 + ], + [ + "▁amputee", + -14.583209991455078 + ], + [ + "▁fittest", + -14.583215713500977 + ], + [ + "▁washcloth", + -14.583226203918457 + ], + [ + "▁modding", + -14.583240509033203 + ], + [ + "rya", + -14.583259582519531 + ], + [ + "stealing", + -14.583269119262695 + ], + [ + "▁Goshen", + -14.583270072937012 + ], + [ + "▁liv", + -14.583292961120605 + ], + [ + "▁tailgating", + -14.583319664001465 + ], + [ + "▁Outpost", + -14.583328247070312 + ], + [ + "Friend", + -14.583348274230957 + ], + [ + "▁Loomis", + -14.58335018157959 + ], + [ + "▁smoldering", + -14.583395957946777 + ], + [ + "▁Monti", + -14.583401679992676 + ], + [ + "Baker", + -14.583403587341309 + ], + [ + "▁Blankets", + -14.583438873291016 + ], + [ + "▁Masala", + -14.583478927612305 + ], + [ + "▁purveyors", + -14.583491325378418 + ], + [ + "▁Sigmund", + -14.583541870117188 + ], + [ + "indeed", + -14.583551406860352 + ], + [ + "SSD", + -14.58356761932373 + ], + [ + "▁inclusiveness", + -14.583581924438477 + ], + [ + "▁Henrique", + -14.583613395690918 + ], + [ + "▁Kicks", + -14.5836181640625 + ], + [ + "articulate", + -14.58362102508545 + ], + [ + "▁Amended", + -14.583635330200195 + ], + [ + "▁Stationery", + -14.583662986755371 + ], + [ + "▁princip", + -14.583671569824219 + ], + [ + "▁Pedestal", + -14.58369255065918 + ], + [ + "▁Bernal", + -14.583701133728027 + ], + [ + "inci", + -14.583724021911621 + ], + [ + "▁lubricate", + -14.58372974395752 + ], + [ + "▁shumë", + -14.58375358581543 + ], + [ + "▁Kills", + -14.58377456665039 + ], + [ + "▁ISSUE", + -14.583780288696289 + ], + [ + "▁constru", + -14.583792686462402 + ], + [ + "▁Jarrod", + -14.58381462097168 + ], + [ + "▁NBER", + -14.583824157714844 + ], + [ + "uai", + -14.583856582641602 + ], + [ + "▁gauging", + -14.583868026733398 + ], + [ + "obvious", + -14.583869934082031 + ], + [ + "▁REMEMBER", + -14.58388614654541 + ], + [ + "▁SPX", + -14.583915710449219 + ], + [ + "▁ASR", + -14.583949089050293 + ], + [ + "genius", + -14.583967208862305 + ], + [ + "pricing", + -14.583986282348633 + ], + [ + "▁irate", + -14.584005355834961 + ], + [ + "▁glitzy", + -14.58405876159668 + ], + [ + "τα", + -14.58406925201416 + ], + [ + "Running", + -14.584118843078613 + ], + [ + "▁Tides", + -14.584148406982422 + ], + [ + "▁595", + -14.584196090698242 + ], + [ + "▁Qo", + -14.584197998046875 + ], + [ + "▁undetermined", + -14.584205627441406 + ], + [ + "▁quicken", + -14.584210395812988 + ], + [ + "▁trumpeter", + -14.584227561950684 + ], + [ + "▁BEAT", + -14.58424186706543 + ], + [ + "▁huff", + -14.584248542785645 + ], + [ + "▁Rumi", + -14.584264755249023 + ], + [ + "▁€7", + -14.584308624267578 + ], + [ + "▁stabilizers", + -14.584381103515625 + ], + [ + "Outdoor", + -14.58442497253418 + ], + [ + "Roy", + -14.584434509277344 + ], + [ + "Automatic", + -14.584488868713379 + ], + [ + "▁Pash", + -14.584524154663086 + ], + [ + "▁wavering", + -14.584526062011719 + ], + [ + "▁iP", + -14.584537506103516 + ], + [ + "pedic", + -14.584539413452148 + ], + [ + "▁untill", + -14.584593772888184 + ], + [ + "▁Clapper", + -14.58462142944336 + ], + [ + "cous", + -14.584670066833496 + ], + [ + "strings", + -14.584863662719727 + ], + [ + "FIX", + -14.584884643554688 + ], + [ + "vegetarian", + -14.584956169128418 + ], + [ + "▁chastity", + -14.584977149963379 + ], + [ + "▁551", + -14.584991455078125 + ], + [ + "Gard", + -14.585006713867188 + ], + [ + "▁Fairtrade", + -14.585028648376465 + ], + [ + "imetric", + -14.585047721862793 + ], + [ + "▁FAVORITE", + -14.58505630493164 + ], + [ + "Claim", + -14.585089683532715 + ], + [ + "Wrap", + -14.585094451904297 + ], + [ + "▁revisionist", + -14.585125923156738 + ], + [ + "▁shivered", + -14.585148811340332 + ], + [ + "▁Mahon", + -14.585164070129395 + ], + [ + "▁Lookup", + -14.585193634033203 + ], + [ + "▁refinished", + -14.58519458770752 + ], + [ + "chromatic", + -14.585212707519531 + ], + [ + "jb", + -14.585286140441895 + ], + [ + "▁effectual", + -14.58531665802002 + ], + [ + "▁masa", + -14.585332870483398 + ], + [ + "▁HMD", + -14.585339546203613 + ], + [ + "▁AFF", + -14.585351943969727 + ], + [ + "▁Lovin", + -14.585356712341309 + ], + [ + "▁bureaucrat", + -14.585357666015625 + ], + [ + "▁Glassdoor", + -14.585397720336914 + ], + [ + "▁Holley", + -14.58539867401123 + ], + [ + "▁repurposing", + -14.585413932800293 + ], + [ + "▁vane", + -14.585432052612305 + ], + [ + "aqui", + -14.585437774658203 + ], + [ + "▁DETROIT", + -14.585453033447266 + ], + [ + "abh", + -14.585456848144531 + ], + [ + "▁ruck", + -14.585500717163086 + ], + [ + "▁loch", + -14.58551025390625 + ], + [ + "▁Kod", + -14.585512161254883 + ], + [ + "▁Paola", + -14.585525512695312 + ], + [ + "raga", + -14.585546493530273 + ], + [ + "CZ", + -14.585556030273438 + ], + [ + "▁Sleeves", + -14.585558891296387 + ], + [ + "▁snarl", + -14.585594177246094 + ], + [ + "▁Shutters", + -14.585627555847168 + ], + [ + "FCA", + -14.585639953613281 + ], + [ + "▁evaded", + -14.585653305053711 + ], + [ + "▁Stadt", + -14.585654258728027 + ], + [ + "Intel", + -14.585657119750977 + ], + [ + "▁Matisse", + -14.585672378540039 + ], + [ + "▁purée", + -14.585724830627441 + ], + [ + "cession", + -14.585728645324707 + ], + [ + "puls", + -14.58573055267334 + ], + [ + "▁MTC", + -14.585735321044922 + ], + [ + "▁TIF", + -14.58576488494873 + ], + [ + "▁brickwork", + -14.58579158782959 + ], + [ + "▁cliches", + -14.585808753967285 + ], + [ + "▁campervan", + -14.585809707641602 + ], + [ + "▁POI", + -14.585890769958496 + ], + [ + "▁gunning", + -14.585890769958496 + ], + [ + "▁Firebase", + -14.585918426513672 + ], + [ + "▁hypothalamus", + -14.585946083068848 + ], + [ + "spent", + -14.585972785949707 + ], + [ + "akti", + -14.585976600646973 + ], + [ + "greet", + -14.58598804473877 + ], + [ + "▁overgrowth", + -14.585994720458984 + ], + [ + "▁postmenopausal", + -14.586009979248047 + ], + [ + "▁Selangor", + -14.586016654968262 + ], + [ + "▁marshals", + -14.586020469665527 + ], + [ + "▁arizona", + -14.586081504821777 + ], + [ + "▁pang", + -14.58608627319336 + ], + [ + "izado", + -14.586089134216309 + ], + [ + "단", + -14.586132049560547 + ], + [ + "judgment", + -14.586201667785645 + ], + [ + "▁Wesson", + -14.586240768432617 + ], + [ + "▁midwifery", + -14.586259841918945 + ], + [ + "▁Peregrine", + -14.586280822753906 + ], + [ + "▁sanitized", + -14.586284637451172 + ], + [ + "delayed", + -14.586296081542969 + ], + [ + "▁Messina", + -14.586358070373535 + ], + [ + "consumption", + -14.586360931396484 + ], + [ + "▁hysterically", + -14.5863618850708 + ], + [ + "▁Lined", + -14.586371421813965 + ], + [ + "▁Recharge", + -14.586377143859863 + ], + [ + "▁Guterres", + -14.58637809753418 + ], + [ + "▁Belvedere", + -14.586396217346191 + ], + [ + "▁Ranveer", + -14.586405754089355 + ], + [ + "▁indemnification", + -14.586421966552734 + ], + [ + "▁HOLY", + -14.586459159851074 + ], + [ + "ɪ", + -14.586491584777832 + ], + [ + "▁Solder", + -14.586504936218262 + ], + [ + "▁Tabitha", + -14.586518287658691 + ], + [ + "▁lorries", + -14.5865478515625 + ], + [ + "acio", + -14.586572647094727 + ], + [ + "▁ABM", + -14.586580276489258 + ], + [ + "▁Caulfield", + -14.586583137512207 + ], + [ + "mano", + -14.586658477783203 + ], + [ + "▁roadster", + -14.58675479888916 + ], + [ + "▁Personalize", + -14.586759567260742 + ], + [ + "facto", + -14.586764335632324 + ], + [ + "▁COBRA", + -14.586795806884766 + ], + [ + "▁caving", + -14.58680534362793 + ], + [ + "▁earmark", + -14.586817741394043 + ], + [ + "▁Golem", + -14.586840629577637 + ], + [ + "▁Flaming", + -14.586873054504395 + ], + [ + "▁Quora", + -14.586896896362305 + ], + [ + "Eph", + -14.58692455291748 + ], + [ + "▁underwritten", + -14.586986541748047 + ], + [ + "pharmaceutical", + -14.587078094482422 + ], + [ + "rome", + -14.587140083312988 + ], + [ + "jab", + -14.587141990661621 + ], + [ + "▁Hounds", + -14.58716106414795 + ], + [ + "▁Improper", + -14.587167739868164 + ], + [ + "▁SATURDAY", + -14.58724308013916 + ], + [ + "▁Leftist", + -14.587299346923828 + ], + [ + "▁subparagraph", + -14.587309837341309 + ], + [ + "▁Tatt", + -14.58731746673584 + ], + [ + "angelo", + -14.587319374084473 + ], + [ + "radiation", + -14.587334632873535 + ], + [ + "▁Cancellations", + -14.587355613708496 + ], + [ + "▁unaffiliated", + -14.587363243103027 + ], + [ + "▁pantries", + -14.587366104125977 + ], + [ + "quita", + -14.58738899230957 + ], + [ + "▁neoplasm", + -14.58739948272705 + ], + [ + "glazed", + -14.587408065795898 + ], + [ + "ovy", + -14.587409973144531 + ], + [ + "iggly", + -14.587425231933594 + ], + [ + "▁Wollongong", + -14.587454795837402 + ], + [ + "▁centimeter", + -14.587496757507324 + ], + [ + "herb", + -14.587501525878906 + ], + [ + "▁Krebs", + -14.587516784667969 + ], + [ + "convert", + -14.58754825592041 + ], + [ + "usse", + -14.58756160736084 + ], + [ + "▁NGS", + -14.587596893310547 + ], + [ + "▁Carmelo", + -14.587625503540039 + ], + [ + "▁Falkland", + -14.587626457214355 + ], + [ + "▁Kuz", + -14.58763599395752 + ], + [ + "▁Contreras", + -14.587666511535645 + ], + [ + "▁Eugenie", + -14.587690353393555 + ], + [ + "▁moisturise", + -14.587705612182617 + ], + [ + "▁RESPECT", + -14.587754249572754 + ], + [ + "▁ELI", + -14.587812423706055 + ], + [ + "INTER", + -14.587841033935547 + ], + [ + "mailing", + -14.587854385375977 + ], + [ + "odge", + -14.587858200073242 + ], + [ + "▁Quigley", + -14.587882995605469 + ], + [ + "iyi", + -14.587885856628418 + ], + [ + "urine", + -14.587897300720215 + ], + [ + "▁multichannel", + -14.58790111541748 + ], + [ + "LAW", + -14.587902069091797 + ], + [ + "▁Chula", + -14.587958335876465 + ], + [ + "▁з", + -14.587987899780273 + ], + [ + "Teaching", + -14.58800983428955 + ], + [ + "▁HSS", + -14.588096618652344 + ], + [ + "ρα", + -14.58813190460205 + ], + [ + "▁NCP", + -14.58813190460205 + ], + [ + "Success", + -14.588153839111328 + ], + [ + "▁torpedoes", + -14.588157653808594 + ], + [ + "▁spayed", + -14.588160514831543 + ], + [ + "ätt", + -14.588179588317871 + ], + [ + "▁CMU", + -14.588207244873047 + ], + [ + "▁eggshell", + -14.588211059570312 + ], + [ + "▁Nabi", + -14.588238716125488 + ], + [ + "▁misinterpret", + -14.588276863098145 + ], + [ + "▁godsend", + -14.588303565979004 + ], + [ + "▁anima", + -14.588305473327637 + ], + [ + "▁inputting", + -14.588356971740723 + ], + [ + "▁JOSEPH", + -14.588425636291504 + ], + [ + "▁Avan", + -14.58842658996582 + ], + [ + "▁depraved", + -14.588479042053223 + ], + [ + "▁paddlers", + -14.588496208190918 + ], + [ + "Valid", + -14.588516235351562 + ], + [ + "▁botany", + -14.588530540466309 + ], + [ + "▁Č", + -14.588540077209473 + ], + [ + "▁Kopp", + -14.588558197021484 + ], + [ + "▁boa", + -14.588580131530762 + ], + [ + "▁iBooks", + -14.58859634399414 + ], + [ + "▁Alston", + -14.588678359985352 + ], + [ + "▁Lumi", + -14.588695526123047 + ], + [ + "ITZ", + -14.58875560760498 + ], + [ + "▁Energ", + -14.588796615600586 + ], + [ + "▁pajama", + -14.588804244995117 + ], + [ + "▁539", + -14.5888090133667 + ], + [ + "TICAL", + -14.588810920715332 + ], + [ + "▁Hearth", + -14.588811874389648 + ], + [ + "XV", + -14.588857650756836 + ], + [ + "▁Divas", + -14.588884353637695 + ], + [ + "settings", + -14.588894844055176 + ], + [ + "▁пере", + -14.588924407958984 + ], + [ + "▁Veli", + -14.588929176330566 + ], + [ + "▁argon", + -14.588929176330566 + ], + [ + "ultimate", + -14.588940620422363 + ], + [ + "▁Osage", + -14.588964462280273 + ], + [ + "Evans", + -14.588972091674805 + ], + [ + "ossa", + -14.588972091674805 + ], + [ + "▁Redevelopment", + -14.588973045349121 + ], + [ + "▁LIB", + -14.588994979858398 + ], + [ + "Tonight", + -14.58901596069336 + ], + [ + "▁Tambo", + -14.589044570922852 + ], + [ + "▁LTTE", + -14.589077949523926 + ], + [ + "dita", + -14.589078903198242 + ], + [ + "▁Refreshments", + -14.589081764221191 + ], + [ + "▁Coulson", + -14.589088439941406 + ], + [ + "explain", + -14.589120864868164 + ], + [ + "▁playthrough", + -14.589132308959961 + ], + [ + "lind", + -14.589141845703125 + ], + [ + "▁Amon", + -14.589163780212402 + ], + [ + "▁bellows", + -14.589197158813477 + ], + [ + "▁hardcore", + -14.589205741882324 + ], + [ + "▁Brando", + -14.589237213134766 + ], + [ + "▁Neha", + -14.589288711547852 + ], + [ + "▁slaughtering", + -14.589311599731445 + ], + [ + "▁ARV", + -14.589322090148926 + ], + [ + "alah", + -14.589408874511719 + ], + [ + "▁Ardern", + -14.589412689208984 + ], + [ + "Contra", + -14.589442253112793 + ], + [ + "▁skids", + -14.589452743530273 + ], + [ + "▁wrenches", + -14.589493751525879 + ], + [ + "▁Bendigo", + -14.589527130126953 + ], + [ + "Berg", + -14.589620590209961 + ], + [ + "▁Kuta", + -14.589621543884277 + ], + [ + "▁Tk", + -14.589621543884277 + ], + [ + "▁Klamath", + -14.589643478393555 + ], + [ + "▁refilling", + -14.58968448638916 + ], + [ + "nauts", + -14.589693069458008 + ], + [ + "lika", + -14.589704513549805 + ], + [ + "▁Patil", + -14.589715003967285 + ], + [ + "▁percutaneous", + -14.589717864990234 + ], + [ + "▁pornstar", + -14.589800834655762 + ], + [ + "▁windowsill", + -14.589802742004395 + ], + [ + "Sony", + -14.58981704711914 + ], + [ + "mcg", + -14.589821815490723 + ], + [ + "▁deflate", + -14.589834213256836 + ], + [ + "▁impure", + -14.589834213256836 + ], + [ + "▁Annu", + -14.589837074279785 + ], + [ + "UMA", + -14.589850425720215 + ], + [ + "▁Jayme", + -14.58986759185791 + ], + [ + "▁Cruelty", + -14.589909553527832 + ], + [ + "babies", + -14.589917182922363 + ], + [ + "▁Fascism", + -14.589917182922363 + ], + [ + "▁Kasper", + -14.58991813659668 + ], + [ + "▁northerly", + -14.58994197845459 + ], + [ + "▁demonstrably", + -14.589946746826172 + ], + [ + "▁FRP", + -14.589991569519043 + ], + [ + "▁Piotr", + -14.590052604675293 + ], + [ + "▁Fawcett", + -14.59005355834961 + ], + [ + "▁Shand", + -14.590072631835938 + ], + [ + "▁phenyl", + -14.590091705322266 + ], + [ + "hiya", + -14.590105056762695 + ], + [ + "▁fedora", + -14.590106010437012 + ], + [ + "▁Wot", + -14.590165138244629 + ], + [ + "▁congregational", + -14.59017562866211 + ], + [ + "▁Regrettably", + -14.590177536010742 + ], + [ + "▁chipper", + -14.590188026428223 + ], + [ + "Visa", + -14.590195655822754 + ], + [ + "▁postponing", + -14.590203285217285 + ], + [ + "▁hong", + -14.590208053588867 + ], + [ + "▁Monarchs", + -14.590219497680664 + ], + [ + "▁Simmonds", + -14.590256690979004 + ], + [ + "▁Chiu", + -14.590327262878418 + ], + [ + "▁Gower", + -14.590354919433594 + ], + [ + "▁JIS", + -14.590361595153809 + ], + [ + "▁Automobiles", + -14.590371131896973 + ], + [ + "wheels", + -14.59040641784668 + ], + [ + "▁pales", + -14.590418815612793 + ], + [ + "kama", + -14.590462684631348 + ], + [ + "▁Nasa", + -14.590489387512207 + ], + [ + "beaten", + -14.590490341186523 + ], + [ + "▁allusions", + -14.590520858764648 + ], + [ + "ROLL", + -14.59053897857666 + ], + [ + "▁Spra", + -14.590543746948242 + ], + [ + "▁Protests", + -14.590556144714355 + ], + [ + "▁superficially", + -14.590560913085938 + ], + [ + "▁Shovel", + -14.590563774108887 + ], + [ + "▁vitriol", + -14.590572357177734 + ], + [ + "▁appliqué", + -14.590593338012695 + ], + [ + "Knowledge", + -14.590597152709961 + ], + [ + "▁Activ", + -14.590612411499023 + ], + [ + "▁restarts", + -14.590615272521973 + ], + [ + "▁IMA", + -14.59062385559082 + ], + [ + "Helen", + -14.590635299682617 + ], + [ + "hō", + -14.590648651123047 + ], + [ + "▁conservator", + -14.590654373168945 + ], + [ + "▁tuple", + -14.590656280517578 + ], + [ + "▁Accession", + -14.590668678283691 + ], + [ + "▁Pelham", + -14.590689659118652 + ], + [ + "▁WOR", + -14.590703010559082 + ], + [ + "Gabriel", + -14.590741157531738 + ], + [ + "▁wedded", + -14.590765953063965 + ], + [ + "▁Fleck", + -14.590795516967773 + ], + [ + "Resource", + -14.590807914733887 + ], + [ + "GK", + -14.590839385986328 + ], + [ + "▁crockery", + -14.590842247009277 + ], + [ + "▁Kodiak", + -14.590853691101074 + ], + [ + "▁RPS", + -14.590868949890137 + ], + [ + "▁dishing", + -14.590872764587402 + ], + [ + "Hur", + -14.59089469909668 + ], + [ + "▁wrangle", + -14.590900421142578 + ], + [ + "▁welds", + -14.590916633605957 + ], + [ + "▁sitters", + -14.590961456298828 + ], + [ + "nev", + -14.590965270996094 + ], + [ + "▁anathema", + -14.590988159179688 + ], + [ + "▁shak", + -14.590993881225586 + ], + [ + "▁Understandably", + -14.591019630432129 + ], + [ + "delay", + -14.591020584106445 + ], + [ + "kauf", + -14.591055870056152 + ], + [ + "analytic", + -14.59107494354248 + ], + [ + "▁SYS", + -14.591107368469238 + ], + [ + "▁neuter", + -14.591126441955566 + ], + [ + "▁deja", + -14.591132164001465 + ], + [ + "ට", + -14.591134071350098 + ], + [ + "luk", + -14.591140747070312 + ], + [ + "▁Andrade", + -14.591142654418945 + ], + [ + "initiated", + -14.591145515441895 + ], + [ + "olli", + -14.591161727905273 + ], + [ + "▁BOD", + -14.591161727905273 + ], + [ + "▁LOAN", + -14.591184616088867 + ], + [ + "rova", + -14.591194152832031 + ], + [ + "Weather", + -14.591254234313965 + ], + [ + "racht", + -14.591257095336914 + ], + [ + "▁Reptile", + -14.591263771057129 + ], + [ + "TTA", + -14.591300964355469 + ], + [ + "▁Picker", + -14.591340065002441 + ], + [ + "PubMed", + -14.591355323791504 + ], + [ + "▁Pickens", + -14.591360092163086 + ], + [ + "▁iguana", + -14.591370582580566 + ], + [ + "▁tama", + -14.591402053833008 + ], + [ + "▁577", + -14.591429710388184 + ], + [ + "▁Madoff", + -14.591451644897461 + ], + [ + "pont", + -14.591461181640625 + ], + [ + "▁titer", + -14.5914945602417 + ], + [ + "▁003", + -14.591506004333496 + ], + [ + "▁Kandi", + -14.591517448425293 + ], + [ + "franc", + -14.591540336608887 + ], + [ + "▁Pran", + -14.591588973999023 + ], + [ + "▁bridged", + -14.59158992767334 + ], + [ + "▁herbalist", + -14.591621398925781 + ], + [ + "▁Haslam", + -14.59164810180664 + ], + [ + "▁Comets", + -14.591649055480957 + ], + [ + "cumber", + -14.591662406921387 + ], + [ + "▁BASED", + -14.591665267944336 + ], + [ + "▁Frustrated", + -14.591683387756348 + ], + [ + "1931", + -14.591704368591309 + ], + [ + "scribed", + -14.591744422912598 + ], + [ + "▁psyched", + -14.591753005981445 + ], + [ + "arty", + -14.591773986816406 + ], + [ + "▁DASH", + -14.591778755187988 + ], + [ + "ERE", + -14.591779708862305 + ], + [ + "halten", + -14.591970443725586 + ], + [ + "▁hawkish", + -14.592001914978027 + ], + [ + "HOO", + -14.592004776000977 + ], + [ + "goat", + -14.592005729675293 + ], + [ + "▁croissant", + -14.592079162597656 + ], + [ + "▁Nandi", + -14.592174530029297 + ], + [ + "▁HUNT", + -14.592183113098145 + ], + [ + "▁epistemological", + -14.59222412109375 + ], + [ + "▁acrylics", + -14.592226028442383 + ], + [ + "▁CHALLENGE", + -14.592241287231445 + ], + [ + "CSR", + -14.592257499694824 + ], + [ + "▁MOON", + -14.592296600341797 + ], + [ + "▁showbiz", + -14.59230899810791 + ], + [ + "▁parka", + -14.592330932617188 + ], + [ + "raven", + -14.592336654663086 + ], + [ + "▁Possessing", + -14.592351913452148 + ], + [ + "▁Stingray", + -14.592389106750488 + ], + [ + "▁kanji", + -14.592418670654297 + ], + [ + "▁bushel", + -14.592429161071777 + ], + [ + "▁Pooja", + -14.592438697814941 + ], + [ + "▁SPIN", + -14.592438697814941 + ], + [ + "▁£22", + -14.592453956604004 + ], + [ + "▁beefy", + -14.592477798461914 + ], + [ + "▁QPR", + -14.592486381530762 + ], + [ + "▁Beli", + -14.592529296875 + ], + [ + "▁DIEGO", + -14.592535972595215 + ], + [ + "ikal", + -14.592560768127441 + ], + [ + "▁roe", + -14.592582702636719 + ], + [ + "▁Bek", + -14.592585563659668 + ], + [ + "missive", + -14.592586517333984 + ], + [ + "▁Mio", + -14.592589378356934 + ], + [ + "▁Alban", + -14.592591285705566 + ], + [ + "▁Enduro", + -14.592616081237793 + ], + [ + "▁Chute", + -14.592630386352539 + ], + [ + "▁Skateboard", + -14.592632293701172 + ], + [ + "▁Carrots", + -14.592676162719727 + ], + [ + "▁inched", + -14.592677116394043 + ], + [ + "initial", + -14.59267807006836 + ], + [ + "▁peut", + -14.59270191192627 + ], + [ + "▁BEE", + -14.592719078063965 + ], + [ + "▁cordially", + -14.592730522155762 + ], + [ + "▁FGM", + -14.592731475830078 + ], + [ + "LUM", + -14.592769622802734 + ], + [ + "employer", + -14.592789649963379 + ], + [ + "▁outsized", + -14.592793464660645 + ], + [ + "▁styl", + -14.592819213867188 + ], + [ + "▁thrusting", + -14.592856407165527 + ], + [ + "ifiers", + -14.592866897583008 + ], + [ + "▁malign", + -14.592940330505371 + ], + [ + "▁Zinn", + -14.592951774597168 + ], + [ + "▁fru", + -14.592968940734863 + ], + [ + "▁menards", + -14.592982292175293 + ], + [ + "Fantastic", + -14.592992782592773 + ], + [ + "▁adventuring", + -14.593040466308594 + ], + [ + "▁Filmed", + -14.593058586120605 + ], + [ + "▁Bhutto", + -14.59306812286377 + ], + [ + "separate", + -14.593069076538086 + ], + [ + "▁upsurge", + -14.593084335327148 + ], + [ + "▁Hawkes", + -14.593111038208008 + ], + [ + "▁foretold", + -14.593134880065918 + ], + [ + "▁Elmore", + -14.593149185180664 + ], + [ + "PAS", + -14.593207359313965 + ], + [ + "更", + -14.593255043029785 + ], + [ + "▁Manic", + -14.593295097351074 + ], + [ + "ló", + -14.593313217163086 + ], + [ + "▁Permanente", + -14.59333324432373 + ], + [ + "Rio", + -14.593341827392578 + ], + [ + "▁billiard", + -14.59334659576416 + ], + [ + "▁Walther", + -14.593406677246094 + ], + [ + "leash", + -14.593408584594727 + ], + [ + "▁suis", + -14.593430519104004 + ], + [ + "▁scold", + -14.593443870544434 + ], + [ + "▁onyx", + -14.593451499938965 + ], + [ + "▁biomechanics", + -14.59345817565918 + ], + [ + "▁posthumous", + -14.593459129333496 + ], + [ + "▁Lorain", + -14.593537330627441 + ], + [ + "▁Estuary", + -14.593541145324707 + ], + [ + "▁prosthetics", + -14.593563079833984 + ], + [ + "▁dioceses", + -14.59356689453125 + ], + [ + "▁finn", + -14.593589782714844 + ], + [ + "▁PROBLEM", + -14.59366512298584 + ], + [ + "▁cornmeal", + -14.593719482421875 + ], + [ + "▁Licenses", + -14.59372329711914 + ], + [ + "▁Spawn", + -14.593770980834961 + ], + [ + "▁Langston", + -14.59381103515625 + ], + [ + "▁CAMERA", + -14.593846321105957 + ], + [ + "▁cannabidiol", + -14.593856811523438 + ], + [ + "mela", + -14.593877792358398 + ], + [ + "AAAAAA", + -14.593928337097168 + ], + [ + "irri", + -14.593928337097168 + ], + [ + "▁caseload", + -14.593987464904785 + ], + [ + "▁Wheatley", + -14.594063758850098 + ], + [ + "▁moldings", + -14.594067573547363 + ], + [ + "pag", + -14.59407901763916 + ], + [ + "▁timepieces", + -14.594080924987793 + ], + [ + "▁materialist", + -14.594110488891602 + ], + [ + "▁remixed", + -14.594152450561523 + ], + [ + "1902", + -14.594159126281738 + ], + [ + "EDIT", + -14.59416389465332 + ], + [ + "meme", + -14.594216346740723 + ], + [ + "▁poz", + -14.594229698181152 + ], + [ + "▁Nutrient", + -14.594257354736328 + ], + [ + "▁Antiquities", + -14.594284057617188 + ], + [ + "▁hypothesize", + -14.59428596496582 + ], + [ + "▁smelting", + -14.594305038452148 + ], + [ + "▁perfectionism", + -14.594319343566895 + ], + [ + "▁Yule", + -14.594359397888184 + ], + [ + "▁IAC", + -14.594385147094727 + ], + [ + "benzo", + -14.594395637512207 + ], + [ + "lize", + -14.594420433044434 + ], + [ + "▁Kyr", + -14.594449043273926 + ], + [ + "▁curler", + -14.594472885131836 + ], + [ + "▁Delayed", + -14.594473838806152 + ], + [ + "adze", + -14.594476699829102 + ], + [ + "▁817", + -14.594486236572266 + ], + [ + "▁Muppets", + -14.594610214233398 + ], + [ + "voi", + -14.594669342041016 + ], + [ + "▁parlance", + -14.594671249389648 + ], + [ + "▁Trotter", + -14.594691276550293 + ], + [ + "▁speedometer", + -14.594708442687988 + ], + [ + "▁conglomerates", + -14.594711303710938 + ], + [ + "▁Fredrick", + -14.59472370147705 + ], + [ + "▁WPF", + -14.594742774963379 + ], + [ + "▁Shor", + -14.59476089477539 + ], + [ + "▁associative", + -14.59476375579834 + ], + [ + "▁Mendi", + -14.594792366027832 + ], + [ + "warrior", + -14.594796180725098 + ], + [ + "arva", + -14.594810485839844 + ], + [ + "▁advisories", + -14.594810485839844 + ], + [ + "重", + -14.594812393188477 + ], + [ + "ہ", + -14.594817161560059 + ], + [ + "他", + -14.594839096069336 + ], + [ + "▁ITF", + -14.594844818115234 + ], + [ + "▁helmed", + -14.594858169555664 + ], + [ + "discussed", + -14.594864845275879 + ], + [ + "▁concisely", + -14.594865798950195 + ], + [ + "▁luv", + -14.594976425170898 + ], + [ + "▁ooze", + -14.59499740600586 + ], + [ + "▁UNTIL", + -14.59501838684082 + ], + [ + "keyboard", + -14.595067024230957 + ], + [ + "행", + -14.59508228302002 + ], + [ + "اء", + -14.595173835754395 + ], + [ + "097", + -14.595181465148926 + ], + [ + "sert", + -14.595198631286621 + ], + [ + "▁Arie", + -14.595203399658203 + ], + [ + "▁neutrophils", + -14.595227241516113 + ], + [ + "▁benz", + -14.595237731933594 + ], + [ + "▁rigidly", + -14.595242500305176 + ], + [ + "▁foodstuff", + -14.595270156860352 + ], + [ + "dvd", + -14.595321655273438 + ], + [ + "▁croutons", + -14.595324516296387 + ], + [ + "▁Bibb", + -14.595369338989258 + ], + [ + "▁Alina", + -14.595401763916016 + ], + [ + "odu", + -14.595478057861328 + ], + [ + "IKE", + -14.595488548278809 + ], + [ + "xyz", + -14.595497131347656 + ], + [ + "devices", + -14.595519065856934 + ], + [ + "▁Spinoza", + -14.595519065856934 + ], + [ + "▁Homme", + -14.59556770324707 + ], + [ + "año", + -14.595575332641602 + ], + [ + "▁Bonnet", + -14.595620155334473 + ], + [ + "▁Carved", + -14.595647811889648 + ], + [ + "▁Ladbrokes", + -14.595671653747559 + ], + [ + "▁Kirsch", + -14.59567928314209 + ], + [ + "shank", + -14.595714569091797 + ], + [ + "▁CARFAX", + -14.595733642578125 + ], + [ + "Fil", + -14.595739364624023 + ], + [ + "▁Micronesia", + -14.595739364624023 + ], + [ + "togethers", + -14.595746040344238 + ], + [ + "▁का", + -14.595766067504883 + ], + [ + "▁Chianti", + -14.595795631408691 + ], + [ + "kli", + -14.595815658569336 + ], + [ + "▁transfusions", + -14.595819473266602 + ], + [ + "▁Phelan", + -14.595830917358398 + ], + [ + "▁arrhythmia", + -14.595867156982422 + ], + [ + "▁Siegfried", + -14.595913887023926 + ], + [ + "▁screed", + -14.595946311950684 + ], + [ + "▁Vary", + -14.595983505249023 + ], + [ + "▁Accountancy", + -14.595999717712402 + ], + [ + "rupa", + -14.5960054397583 + ], + [ + "▁Shelving", + -14.5960054397583 + ], + [ + "▁Vash", + -14.596049308776855 + ], + [ + "▁falsehoods", + -14.596098899841309 + ], + [ + "trophy", + -14.596144676208496 + ], + [ + "▁Topshop", + -14.59618854522705 + ], + [ + "▁Zend", + -14.596197128295898 + ], + [ + "structures", + -14.596240043640137 + ], + [ + "crown", + -14.596320152282715 + ], + [ + "Boom", + -14.596333503723145 + ], + [ + "▁Kellie", + -14.596358299255371 + ], + [ + "▁Moog", + -14.596378326416016 + ], + [ + "▁SRAM", + -14.596380233764648 + ], + [ + "▁Schri", + -14.596383094787598 + ], + [ + "▁Transmitter", + -14.596391677856445 + ], + [ + "▁pkg", + -14.596400260925293 + ], + [ + "▁deviated", + -14.596413612365723 + ], + [ + "ponent", + -14.596427917480469 + ], + [ + "▁Erb", + -14.596454620361328 + ], + [ + "▁officiated", + -14.596475601196289 + ], + [ + "▁Textured", + -14.596540451049805 + ], + [ + "▁Salu", + -14.596555709838867 + ], + [ + "ccio", + -14.596556663513184 + ], + [ + "▁Screaming", + -14.596556663513184 + ], + [ + "▁WebMD", + -14.596563339233398 + ], + [ + "▁Kuan", + -14.596566200256348 + ], + [ + "▁Cough", + -14.596611022949219 + ], + [ + "▁zealand", + -14.596616744995117 + ], + [ + "▁immobile", + -14.596628189086914 + ], + [ + "су", + -14.596632957458496 + ], + [ + "▁consecration", + -14.596651077270508 + ], + [ + "▁Trib", + -14.596654891967773 + ], + [ + "▁forthwith", + -14.596752166748047 + ], + [ + "▁Е", + -14.5968017578125 + ], + [ + "▁Popeye", + -14.596847534179688 + ], + [ + "▁Hilo", + -14.59684944152832 + ], + [ + "architecture", + -14.5968599319458 + ], + [ + "▁steadfastly", + -14.596883773803711 + ], + [ + "▁Thyme", + -14.596902847290039 + ], + [ + "hava", + -14.596924781799316 + ], + [ + "▁Intersection", + -14.59692668914795 + ], + [ + "lao", + -14.596942901611328 + ], + [ + "chew", + -14.597000122070312 + ], + [ + "▁MPLS", + -14.597007751464844 + ], + [ + "▁cuddles", + -14.59702205657959 + ], + [ + "▁Lucerne", + -14.597031593322754 + ], + [ + "▁Nomura", + -14.59705924987793 + ], + [ + "▁Raffles", + -14.597061157226562 + ], + [ + "▁Medley", + -14.597064971923828 + ], + [ + "Traditional", + -14.597070693969727 + ], + [ + "▁newness", + -14.597073554992676 + ], + [ + "▁expendable", + -14.597101211547852 + ], + [ + "▁Sharapova", + -14.597123146057129 + ], + [ + "▁Hints", + -14.597126960754395 + ], + [ + "▁aberrations", + -14.597129821777344 + ], + [ + "▁HACK", + -14.59713363647461 + ], + [ + "▁naloxone", + -14.597158432006836 + ], + [ + "▁Wordsworth", + -14.597162246704102 + ], + [ + "▁nanoscale", + -14.597197532653809 + ], + [ + "▁demented", + -14.597208023071289 + ], + [ + "sightedness", + -14.597217559814453 + ], + [ + "▁Thong", + -14.5972261428833 + ], + [ + "▁Jour", + -14.597282409667969 + ], + [ + "▁Arias", + -14.597344398498535 + ], + [ + "▁Dc", + -14.597344398498535 + ], + [ + "▁animating", + -14.597410202026367 + ], + [ + "▁watchmaker", + -14.597426414489746 + ], + [ + "▁Tupac", + -14.597465515136719 + ], + [ + "▁Cleve", + -14.597482681274414 + ], + [ + "akos", + -14.597495079040527 + ], + [ + "▁DOING", + -14.597513198852539 + ], + [ + "▁billowing", + -14.597515106201172 + ], + [ + "▁gymnasts", + -14.59756851196289 + ], + [ + "schau", + -14.597591400146484 + ], + [ + "▁vivacious", + -14.597597122192383 + ], + [ + "▁Mute", + -14.597626686096191 + ], + [ + "▁aplenty", + -14.597633361816406 + ], + [ + "▁warhead", + -14.597652435302734 + ], + [ + "▁benevolence", + -14.597658157348633 + ], + [ + "▁propagandist", + -14.597700119018555 + ], + [ + "▁Lehmann", + -14.597709655761719 + ], + [ + "albert", + -14.597745895385742 + ], + [ + "sorb", + -14.597745895385742 + ], + [ + "tissue", + -14.597763061523438 + ], + [ + "▁TPU", + -14.597769737243652 + ], + [ + "attempt", + -14.597810745239258 + ], + [ + "hauser", + -14.597831726074219 + ], + [ + "▁gnocchi", + -14.597845077514648 + ], + [ + "اد", + -14.59786605834961 + ], + [ + "RZ", + -14.597867012023926 + ], + [ + "▁swingers", + -14.597867965698242 + ], + [ + "MIL", + -14.597968101501465 + ], + [ + "▁cricketers", + -14.597982406616211 + ], + [ + "▁Tuberculosis", + -14.59798812866211 + ], + [ + "▁coinage", + -14.598052978515625 + ], + [ + "▁Plunge", + -14.598061561584473 + ], + [ + "▁peritoneal", + -14.598087310791016 + ], + [ + "rogue", + -14.598124504089355 + ], + [ + "▁Doran", + -14.598140716552734 + ], + [ + "UKE", + -14.598217964172363 + ], + [ + "Physical", + -14.598219871520996 + ], + [ + "▁contrarian", + -14.598258972167969 + ], + [ + "線", + -14.598265647888184 + ], + [ + "▁MFP", + -14.59827995300293 + ], + [ + "▁BANG", + -14.598283767700195 + ], + [ + "▁Comfy", + -14.598298072814941 + ], + [ + "▁misdemeanors", + -14.59836483001709 + ], + [ + "▁Esteban", + -14.598372459411621 + ], + [ + "▁janë", + -14.598394393920898 + ], + [ + "▁Sane", + -14.598418235778809 + ], + [ + "arche", + -14.598432540893555 + ], + [ + "▁taskbar", + -14.598433494567871 + ], + [ + "▁lanai", + -14.598442077636719 + ], + [ + "egar", + -14.598488807678223 + ], + [ + "▁inertial", + -14.598501205444336 + ], + [ + "▁554", + -14.598508834838867 + ], + [ + "▁Judeo", + -14.5985107421875 + ], + [ + "▁Photonics", + -14.598628997802734 + ], + [ + "Jazz", + -14.598640441894531 + ], + [ + "wissenschaft", + -14.59865665435791 + ], + [ + "▁demonetisation", + -14.598666191101074 + ], + [ + "▁Hoosiers", + -14.598715782165527 + ], + [ + "▁Sint", + -14.598732948303223 + ], + [ + "▁WISH", + -14.598763465881348 + ], + [ + "▁septum", + -14.598764419555664 + ], + [ + "Nam", + -14.598767280578613 + ], + [ + "Condition", + -14.598777770996094 + ], + [ + "plugin", + -14.598791122436523 + ], + [ + "tei", + -14.598795890808105 + ], + [ + "▁Cie", + -14.598800659179688 + ], + [ + "▁UNDERSTAND", + -14.598801612854004 + ], + [ + "▁Tumble", + -14.59882640838623 + ], + [ + "▁troughs", + -14.598859786987305 + ], + [ + "NDE", + -14.59887409210205 + ], + [ + "▁oddities", + -14.598897933959961 + ], + [ + "IZATION", + -14.598909378051758 + ], + [ + "▁CLIENT", + -14.598977088928223 + ], + [ + "esthesia", + -14.599059104919434 + ], + [ + "▁Fairness", + -14.599087715148926 + ], + [ + "Dallas", + -14.599125862121582 + ], + [ + "▁Gid", + -14.599125862121582 + ], + [ + "▁refract", + -14.599126815795898 + ], + [ + "▁Alo", + -14.59915542602539 + ], + [ + "onate", + -14.599162101745605 + ], + [ + "▁chiles", + -14.599175453186035 + ], + [ + "▁posited", + -14.599203109741211 + ], + [ + "▁Zürich", + -14.599237442016602 + ], + [ + "▁corrupting", + -14.599238395690918 + ], + [ + "▁Acetate", + -14.599258422851562 + ], + [ + "▁Berth", + -14.599311828613281 + ], + [ + "▁prze", + -14.599349975585938 + ], + [ + "▁912", + -14.599420547485352 + ], + [ + "▁sixes", + -14.599425315856934 + ], + [ + "UNT", + -14.599448204040527 + ], + [ + "▁Kahl", + -14.599461555480957 + ], + [ + "▁Neverland", + -14.59947395324707 + ], + [ + "▁suv", + -14.599493026733398 + ], + [ + "elon", + -14.599504470825195 + ], + [ + "▁depositors", + -14.599506378173828 + ], + [ + "interactive", + -14.59952163696289 + ], + [ + "PART", + -14.599575996398926 + ], + [ + "replica", + -14.599649429321289 + ], + [ + "▁Khao", + -14.599660873413086 + ], + [ + "▁reconditioned", + -14.599713325500488 + ], + [ + "▁smelter", + -14.599729537963867 + ], + [ + "arda", + -14.599823951721191 + ], + [ + "▁Butterfield", + -14.599827766418457 + ], + [ + "attend", + -14.59985637664795 + ], + [ + "▁Naming", + -14.599870681762695 + ], + [ + "szcz", + -14.599903106689453 + ], + [ + "▁paring", + -14.599933624267578 + ], + [ + "Understanding", + -14.599945068359375 + ], + [ + "▁guardrail", + -14.59995174407959 + ], + [ + "▁Microsystems", + -14.599952697753906 + ], + [ + "▁APEC", + -14.599957466125488 + ], + [ + "mae", + -14.599980354309082 + ], + [ + "▁lattes", + -14.599990844726562 + ], + [ + "▁strived", + -14.599994659423828 + ], + [ + "▁Solis", + -14.600000381469727 + ], + [ + "▁Odo", + -14.600043296813965 + ], + [ + "▁TCG", + -14.600114822387695 + ], + [ + "▁Oren", + -14.600122451782227 + ], + [ + "▁parched", + -14.600146293640137 + ], + [ + "▁Christendom", + -14.600149154663086 + ], + [ + "▁Reiner", + -14.60015869140625 + ], + [ + "▁Capstone", + -14.600163459777832 + ], + [ + "▁Acha", + -14.600164413452148 + ], + [ + "iß", + -14.600168228149414 + ], + [ + "▁toads", + -14.600202560424805 + ], + [ + "▁Fiddler", + -14.600244522094727 + ], + [ + "▁EDU", + -14.600250244140625 + ], + [ + "erus", + -14.600259780883789 + ], + [ + "Slow", + -14.600260734558105 + ], + [ + "MHC", + -14.600295066833496 + ], + [ + "▁zh", + -14.600296974182129 + ], + [ + "ipur", + -14.600309371948242 + ], + [ + "PTI", + -14.600343704223633 + ], + [ + "▁Kundalini", + -14.600363731384277 + ], + [ + "▁OPPO", + -14.600383758544922 + ], + [ + "▁biomechanical", + -14.600395202636719 + ], + [ + "arelli", + -14.600400924682617 + ], + [ + "▁CLASSIC", + -14.600406646728516 + ], + [ + "▁NECTAR", + -14.600421905517578 + ], + [ + "▁Tailored", + -14.600422859191895 + ], + [ + "▁renounced", + -14.600465774536133 + ], + [ + "▁sidestep", + -14.60049057006836 + ], + [ + "mpo", + -14.600493431091309 + ], + [ + "▁retrieves", + -14.600496292114258 + ], + [ + "isner", + -14.60051441192627 + ], + [ + "▁forklifts", + -14.600515365600586 + ], + [ + "ussen", + -14.600566864013672 + ], + [ + "CEL", + -14.600579261779785 + ], + [ + "▁emphasising", + -14.60065746307373 + ], + [ + "▁corollary", + -14.600666046142578 + ], + [ + "viewer", + -14.600696563720703 + ], + [ + "▁dynamo", + -14.600720405578613 + ], + [ + "▁Wulf", + -14.600743293762207 + ], + [ + "▁TRAIN", + -14.6007719039917 + ], + [ + "▁Colvin", + -14.600774765014648 + ], + [ + "▁setlist", + -14.600777626037598 + ], + [ + "Shock", + -14.600778579711914 + ], + [ + "▁reflectors", + -14.60078239440918 + ], + [ + "▁Corsica", + -14.600788116455078 + ], + [ + "▁Combi", + -14.600789070129395 + ], + [ + "▁starchy", + -14.600846290588379 + ], + [ + "▁£24", + -14.600849151611328 + ], + [ + "▁enumerate", + -14.600852012634277 + ], + [ + "▁supposing", + -14.600876808166504 + ], + [ + "Zu", + -14.60091781616211 + ], + [ + "▁conferring", + -14.600921630859375 + ], + [ + "▁submerge", + -14.600958824157715 + ], + [ + "▁unmistakably", + -14.600972175598145 + ], + [ + "▁waxy", + -14.60097599029541 + ], + [ + "▁propylene", + -14.600985527038574 + ], + [ + "▁retweeted", + -14.600990295410156 + ], + [ + "▁Gunter", + -14.601016998291016 + ], + [ + "▁Venezuelans", + -14.60102653503418 + ], + [ + "cmd", + -14.60110092163086 + ], + [ + "racism", + -14.601105690002441 + ], + [ + "▁fallow", + -14.601122856140137 + ], + [ + "▁Pella", + -14.601147651672363 + ], + [ + "▁retaliated", + -14.601181030273438 + ], + [ + "▁Bic", + -14.601203918457031 + ], + [ + "▁Lymphoma", + -14.601253509521484 + ], + [ + "▁Connors", + -14.601261138916016 + ], + [ + "▁Charl", + -14.601265907287598 + ], + [ + "▁overhanging", + -14.60128402709961 + ], + [ + "▁isoforms", + -14.601293563842773 + ], + [ + "jane", + -14.601330757141113 + ], + [ + "▁542", + -14.601340293884277 + ], + [ + "▁BUTTON", + -14.601344108581543 + ], + [ + "▁contr", + -14.601400375366211 + ], + [ + "GYN", + -14.601457595825195 + ], + [ + "▁droop", + -14.601491928100586 + ], + [ + "rland", + -14.601505279541016 + ], + [ + "Smoke", + -14.601523399353027 + ], + [ + "▁nv", + -14.601566314697266 + ], + [ + "▁seedy", + -14.601593971252441 + ], + [ + "▁Credential", + -14.601625442504883 + ], + [ + "ylated", + -14.601631164550781 + ], + [ + "zá", + -14.601713180541992 + ], + [ + "▁sneer", + -14.601717948913574 + ], + [ + "▁Prabhu", + -14.60172176361084 + ], + [ + "Kitchen", + -14.601731300354004 + ], + [ + "discharge", + -14.6017484664917 + ], + [ + "0026", + -14.601752281188965 + ], + [ + "▁herringbone", + -14.60175895690918 + ], + [ + "▁enema", + -14.601776123046875 + ], + [ + "▁Chappell", + -14.601846694946289 + ], + [ + "▁XA", + -14.601858139038086 + ], + [ + "▁unsealed", + -14.601948738098145 + ], + [ + "▁cutbacks", + -14.601962089538574 + ], + [ + "▁Expecting", + -14.601988792419434 + ], + [ + "년", + -14.6019926071167 + ], + [ + "osum", + -14.601999282836914 + ], + [ + "▁Gillibrand", + -14.602019309997559 + ], + [ + "▁21⁄2", + -14.602020263671875 + ], + [ + "▁Meteorology", + -14.602083206176758 + ], + [ + "▁Autograph", + -14.602104187011719 + ], + [ + "orientation", + -14.602119445800781 + ], + [ + "▁Martínez", + -14.602132797241211 + ], + [ + "▁internalize", + -14.602133750915527 + ], + [ + "▁Salter", + -14.602157592773438 + ], + [ + "▁ADI", + -14.602158546447754 + ], + [ + "▁Deeply", + -14.602171897888184 + ], + [ + "▁reflexive", + -14.60217571258545 + ], + [ + "entine", + -14.602184295654297 + ], + [ + "▁Signage", + -14.602187156677246 + ], + [ + "BOR", + -14.602230072021484 + ], + [ + "RBI", + -14.60223388671875 + ], + [ + "▁Denison", + -14.602242469787598 + ], + [ + "▁Laing", + -14.602253913879395 + ], + [ + "▁stereotyping", + -14.602256774902344 + ], + [ + "lijk", + -14.602295875549316 + ], + [ + "▁jabs", + -14.602312088012695 + ], + [ + "ftp", + -14.60233211517334 + ], + [ + "▁Disqus", + -14.602352142333984 + ], + [ + "▁burly", + -14.602365493774414 + ], + [ + "Zi", + -14.602374076843262 + ], + [ + "FTP", + -14.602384567260742 + ], + [ + "▁Antibiotics", + -14.602478981018066 + ], + [ + "▁lubricating", + -14.602494239807129 + ], + [ + "inflation", + -14.602495193481445 + ], + [ + "▁Tobi", + -14.602498054504395 + ], + [ + "▁Surplus", + -14.602505683898926 + ], + [ + "▁vas", + -14.602518081665039 + ], + [ + "▁Shanti", + -14.602537155151367 + ], + [ + "▁Vad", + -14.602564811706543 + ], + [ + "▁RUSH", + -14.602583885192871 + ], + [ + "▁yurt", + -14.602645874023438 + ], + [ + "inden", + -14.60264778137207 + ], + [ + "▁autosomal", + -14.60267162322998 + ], + [ + "▁conceptualize", + -14.602682113647461 + ], + [ + "▁POE", + -14.602686882019043 + ], + [ + "▁denizens", + -14.602718353271484 + ], + [ + "hanga", + -14.602721214294434 + ], + [ + "kovich", + -14.602728843688965 + ], + [ + "▁SHOT", + -14.602728843688965 + ], + [ + "ql", + -14.602784156799316 + ], + [ + "▁Sewell", + -14.602836608886719 + ], + [ + "▁Philistines", + -14.602916717529297 + ], + [ + "▁catheters", + -14.602935791015625 + ], + [ + "▁755", + -14.603021621704102 + ], + [ + "▁Cordoba", + -14.603045463562012 + ], + [ + "▁Abou", + -14.603066444396973 + ], + [ + "▁pings", + -14.603080749511719 + ], + [ + "▁spaceflight", + -14.603140830993652 + ], + [ + "BLA", + -14.60315227508545 + ], + [ + "▁bidirectional", + -14.603170394897461 + ], + [ + "▁stringing", + -14.603175163269043 + ], + [ + "▁Brava", + -14.603204727172852 + ], + [ + "ာ", + -14.603238105773926 + ], + [ + "▁PVT", + -14.603302955627441 + ], + [ + "▁peeks", + -14.6033353805542 + ], + [ + "▁linker", + -14.603342056274414 + ], + [ + "▁BHA", + -14.603361129760742 + ], + [ + "diving", + -14.603410720825195 + ], + [ + "▁Trax", + -14.60344123840332 + ], + [ + "bildung", + -14.603442192077637 + ], + [ + "cycles", + -14.603485107421875 + ], + [ + "▁sashimi", + -14.603507995605469 + ], + [ + "chondri", + -14.603528022766113 + ], + [ + "▁helpfully", + -14.603536605834961 + ], + [ + "▁pyjamas", + -14.603538513183594 + ], + [ + "elina", + -14.60364818572998 + ], + [ + "▁Hager", + -14.603656768798828 + ], + [ + "▁Dimon", + -14.60369873046875 + ], + [ + "▁Aristo", + -14.603713989257812 + ], + [ + "▁multilevel", + -14.603769302368164 + ], + [ + "▁Mba", + -14.603780746459961 + ], + [ + "ouz", + -14.603842735290527 + ], + [ + "tá", + -14.603842735290527 + ], + [ + "▁ज", + -14.603923797607422 + ], + [ + "▁Hyperion", + -14.603924751281738 + ], + [ + "▁Surveyors", + -14.603978157043457 + ], + [ + "▁Septic", + -14.604002952575684 + ], + [ + "ட", + -14.604005813598633 + ], + [ + "▁patronize", + -14.604068756103516 + ], + [ + "▁Tubing", + -14.604109764099121 + ], + [ + "▁Devonshire", + -14.604143142700195 + ], + [ + "▁underwrite", + -14.604166984558105 + ], + [ + "▁Español", + -14.604171752929688 + ], + [ + "tă", + -14.604182243347168 + ], + [ + "▁Voila", + -14.604225158691406 + ], + [ + "▁SRM", + -14.604241371154785 + ], + [ + "▁DUN", + -14.604278564453125 + ], + [ + "▁underpaid", + -14.604288101196289 + ], + [ + "ovirus", + -14.604326248168945 + ], + [ + "SHI", + -14.60433292388916 + ], + [ + "τι", + -14.60440731048584 + ], + [ + "▁maar", + -14.604408264160156 + ], + [ + "▁absolve", + -14.604416847229004 + ], + [ + "earning", + -14.604423522949219 + ], + [ + "▁carnivores", + -14.604429244995117 + ], + [ + "▁inhabits", + -14.60444450378418 + ], + [ + "▁Amadeus", + -14.604453086853027 + ], + [ + "▁stylesheet", + -14.604509353637695 + ], + [ + "▁fondue", + -14.604516983032227 + ], + [ + "▁ZZ", + -14.604555130004883 + ], + [ + "▁Sandman", + -14.604558944702148 + ], + [ + "OTH", + -14.6046142578125 + ], + [ + "▁microservices", + -14.60462474822998 + ], + [ + "Boys", + -14.604632377624512 + ], + [ + "instruction", + -14.604642868041992 + ], + [ + "▁Maybelline", + -14.60465145111084 + ], + [ + "▁Kendal", + -14.604656219482422 + ], + [ + "▁fü", + -14.604700088500977 + ], + [ + "gura", + -14.604713439941406 + ], + [ + "▁empresa", + -14.604718208312988 + ], + [ + "▁Teamwork", + -14.604763984680176 + ], + [ + "▁811", + -14.604772567749023 + ], + [ + "▁£70", + -14.604806900024414 + ], + [ + "▁Vag", + -14.604813575744629 + ], + [ + "▁Haut", + -14.60482120513916 + ], + [ + "ых", + -14.604844093322754 + ], + [ + "akura", + -14.604874610900879 + ], + [ + "▁deform", + -14.60488510131836 + ], + [ + "potentially", + -14.604920387268066 + ], + [ + "quir", + -14.604951858520508 + ], + [ + "▁triceps", + -14.604972839355469 + ], + [ + "Bath", + -14.604986190795898 + ], + [ + "▁Recital", + -14.605010986328125 + ], + [ + "解", + -14.605018615722656 + ], + [ + "Sad", + -14.605032920837402 + ], + [ + "▁Shareholder", + -14.605042457580566 + ], + [ + "▁Exceed", + -14.605095863342285 + ], + [ + "▁546", + -14.60510540008545 + ], + [ + "▁Prin", + -14.605118751525879 + ], + [ + "▁foreshadowing", + -14.605148315429688 + ], + [ + "▁sleazy", + -14.605168342590332 + ], + [ + "▁pharaoh", + -14.60517692565918 + ], + [ + "▁Legg", + -14.605183601379395 + ], + [ + "▁fuchsia", + -14.605186462402344 + ], + [ + "▁spiky", + -14.605210304260254 + ], + [ + "▁demolishing", + -14.605273246765137 + ], + [ + "inity", + -14.605293273925781 + ], + [ + "▁ached", + -14.605298042297363 + ], + [ + "▁Electrician", + -14.605320930480957 + ], + [ + "▁소", + -14.605332374572754 + ], + [ + "▁shortcoming", + -14.605339050292969 + ], + [ + "▁limped", + -14.605363845825195 + ], + [ + "Cert", + -14.605376243591309 + ], + [ + "kB", + -14.605382919311523 + ], + [ + "▁Mü", + -14.605412483215332 + ], + [ + "treasure", + -14.605415344238281 + ], + [ + "TICS", + -14.605422019958496 + ], + [ + "▁Deakin", + -14.605483055114746 + ], + [ + "▁Bodhi", + -14.605504035949707 + ], + [ + "▁Adonis", + -14.605514526367188 + ], + [ + "▁Voor", + -14.605539321899414 + ], + [ + "▁Burd", + -14.605550765991211 + ], + [ + "▁SSRI", + -14.605566024780273 + ], + [ + "▁Zol", + -14.605573654174805 + ], + [ + "▁Weekends", + -14.605578422546387 + ], + [ + "▁DHT", + -14.605584144592285 + ], + [ + "▁asymptotic", + -14.605589866638184 + ], + [ + "▁Contributed", + -14.60559368133545 + ], + [ + "▁LePage", + -14.605597496032715 + ], + [ + "▁Corre", + -14.605610847473145 + ], + [ + "▁Cura", + -14.605650901794434 + ], + [ + "▁federalism", + -14.605657577514648 + ], + [ + "BURG", + -14.605691909790039 + ], + [ + "▁impeached", + -14.605694770812988 + ], + [ + "▁nitrite", + -14.605704307556152 + ], + [ + "▁rimmed", + -14.605721473693848 + ], + [ + "▁radioactivity", + -14.605724334716797 + ], + [ + "moy", + -14.60574722290039 + ], + [ + "▁blackouts", + -14.605749130249023 + ], + [ + "▁536", + -14.605758666992188 + ], + [ + "▁fluctuates", + -14.605843544006348 + ], + [ + "▁AstraZeneca", + -14.60586929321289 + ], + [ + "▁Kraken", + -14.6058931350708 + ], + [ + "▁ureter", + -14.6058988571167 + ], + [ + "Fee", + -14.60593032836914 + ], + [ + "▁organo", + -14.60593318939209 + ], + [ + "▁timesheet", + -14.605981826782227 + ], + [ + "homme", + -14.606025695800781 + ], + [ + "▁Timely", + -14.606027603149414 + ], + [ + "▁Frisbee", + -14.606051445007324 + ], + [ + "▁Walcott", + -14.606086730957031 + ], + [ + "▁encephalitis", + -14.606101989746094 + ], + [ + "▁prostatic", + -14.606180191040039 + ], + [ + "Tro", + -14.606197357177734 + ], + [ + "▁teasers", + -14.606300354003906 + ], + [ + "▁underfunded", + -14.606322288513184 + ], + [ + "teachers", + -14.606330871582031 + ], + [ + "▁CrossRef", + -14.606343269348145 + ], + [ + "▁Modernist", + -14.606354713439941 + ], + [ + "▁Nene", + -14.606361389160156 + ], + [ + "owen", + -14.606363296508789 + ], + [ + "VOC", + -14.606438636779785 + ], + [ + "RPC", + -14.606468200683594 + ], + [ + "▁predates", + -14.606488227844238 + ], + [ + "▁843", + -14.6065034866333 + ], + [ + "▁WHEEL", + -14.606581687927246 + ], + [ + "VW", + -14.606610298156738 + ], + [ + "ié", + -14.606616020202637 + ], + [ + "ovey", + -14.606626510620117 + ], + [ + "▁absorbers", + -14.606678009033203 + ], + [ + "▁GRACE", + -14.606681823730469 + ], + [ + "▁jawbone", + -14.606684684753418 + ], + [ + "▁Toshi", + -14.606690406799316 + ], + [ + "anthi", + -14.606748580932617 + ], + [ + "▁woodworker", + -14.606748580932617 + ], + [ + "▁Manipulation", + -14.60675048828125 + ], + [ + "IUS", + -14.606757164001465 + ], + [ + "TUR", + -14.606762886047363 + ], + [ + "oula", + -14.606775283813477 + ], + [ + "▁fw", + -14.606779098510742 + ], + [ + "▁tis", + -14.606781959533691 + ], + [ + "▁punchline", + -14.606823921203613 + ], + [ + "▁rebuked", + -14.606840133666992 + ], + [ + "▁choreographers", + -14.60684871673584 + ], + [ + "▁Barnum", + -14.606874465942383 + ], + [ + "▁Navarre", + -14.606884956359863 + ], + [ + "▁cardiomyopathy", + -14.60688591003418 + ], + [ + "hö", + -14.606888771057129 + ], + [ + "▁Noonan", + -14.606926918029785 + ], + [ + "▁bobcat", + -14.60698127746582 + ], + [ + "▁Sleeps", + -14.607009887695312 + ], + [ + "cora", + -14.607019424438477 + ], + [ + "▁unc", + -14.607032775878906 + ], + [ + "Michelle", + -14.607046127319336 + ], + [ + "▁Emer", + -14.607063293457031 + ], + [ + "▁PHA", + -14.607093811035156 + ], + [ + "▁CENTRAL", + -14.607121467590332 + ], + [ + "▁Newberry", + -14.607123374938965 + ], + [ + "floxacin", + -14.607155799865723 + ], + [ + "▁defected", + -14.60716438293457 + ], + [ + "Ren", + -14.60716724395752 + ], + [ + "▁borrowings", + -14.607183456420898 + ], + [ + "▁unrecognizable", + -14.607183456420898 + ], + [ + "mitsu", + -14.607207298278809 + ], + [ + "▁exiles", + -14.607233047485352 + ], + [ + "BRE", + -14.607245445251465 + ], + [ + "hep", + -14.607266426086426 + ], + [ + "▁shuddered", + -14.60728931427002 + ], + [ + "▁Annabel", + -14.607339859008789 + ], + [ + "▁Yoshida", + -14.607352256774902 + ], + [ + "▁reconstructing", + -14.607402801513672 + ], + [ + "▁reaped", + -14.607443809509277 + ], + [ + "▁Resolved", + -14.607461929321289 + ], + [ + "▁overruled", + -14.6074800491333 + ], + [ + "▁backpacker", + -14.607497215270996 + ], + [ + "▁Weldon", + -14.607561111450195 + ], + [ + "▁admonish", + -14.607576370239258 + ], + [ + "äng", + -14.607580184936523 + ], + [ + "truly", + -14.607589721679688 + ], + [ + "▁Sediment", + -14.607609748840332 + ], + [ + "▁Tighten", + -14.607612609863281 + ], + [ + "▁Warne", + -14.607619285583496 + ], + [ + "saying", + -14.607624053955078 + ], + [ + "▁acrobatics", + -14.607633590698242 + ], + [ + "▁Researching", + -14.607658386230469 + ], + [ + "▁schoolwork", + -14.607667922973633 + ], + [ + "▁enslave", + -14.607687950134277 + ], + [ + "▁integr", + -14.607715606689453 + ], + [ + "▁Arra", + -14.607718467712402 + ], + [ + "Same", + -14.607760429382324 + ], + [ + "▁shifters", + -14.607793807983398 + ], + [ + "▁croak", + -14.607807159423828 + ], + [ + "Environmental", + -14.607819557189941 + ], + [ + "▁enlarging", + -14.607831001281738 + ], + [ + "▁Gough", + -14.607869148254395 + ], + [ + "▁Stagg", + -14.607881546020508 + ], + [ + "▁IMDB", + -14.607885360717773 + ], + [ + "▁formulaic", + -14.607898712158203 + ], + [ + "▁cadres", + -14.607931137084961 + ], + [ + "▁raping", + -14.607951164245605 + ], + [ + "▁flustered", + -14.607975959777832 + ], + [ + "UZ", + -14.607980728149414 + ], + [ + "dye", + -14.607980728149414 + ], + [ + "▁astrophysics", + -14.60799503326416 + ], + [ + "▁fete", + -14.60808277130127 + ], + [ + "▁McL", + -14.608085632324219 + ], + [ + "▁hepato", + -14.608111381530762 + ], + [ + "▁Madigan", + -14.608128547668457 + ], + [ + "▁ATTENTION", + -14.608138084411621 + ], + [ + "▁planing", + -14.608190536499023 + ], + [ + "▁geneticist", + -14.608244895935059 + ], + [ + "▁Catal", + -14.608247756958008 + ], + [ + "♥", + -14.608308792114258 + ], + [ + "▁Afri", + -14.608312606811523 + ], + [ + "▁Eames", + -14.60831356048584 + ], + [ + "▁permafrost", + -14.608345985412598 + ], + [ + "▁SHR", + -14.608360290527344 + ], + [ + "MEL", + -14.60844612121582 + ], + [ + "sional", + -14.608460426330566 + ], + [ + "▁lugar", + -14.608480453491211 + ], + [ + "▁stubbornness", + -14.608499526977539 + ], + [ + "▁954", + -14.608513832092285 + ], + [ + "▁BHS", + -14.608522415161133 + ], + [ + "▁Gilliam", + -14.608538627624512 + ], + [ + "▁Elgar", + -14.60856819152832 + ], + [ + "▁violators", + -14.60862922668457 + ], + [ + "Lang", + -14.608664512634277 + ], + [ + "▁retweets", + -14.608664512634277 + ], + [ + "▁Titled", + -14.60866641998291 + ], + [ + "▁Engraving", + -14.60866928100586 + ], + [ + "appointment", + -14.608671188354492 + ], + [ + "▁handrail", + -14.608695983886719 + ], + [ + "▁678", + -14.608704566955566 + ], + [ + "▁starkly", + -14.60875129699707 + ], + [ + "▁Minolta", + -14.60875415802002 + ], + [ + "caller", + -14.608780860900879 + ], + [ + "▁Chamomile", + -14.6088228225708 + ], + [ + "▁FANTASTIC", + -14.608832359313965 + ], + [ + "▁Rennie", + -14.608877182006836 + ], + [ + "▁PPD", + -14.608881950378418 + ], + [ + "чи", + -14.608899116516113 + ], + [ + "ää", + -14.608902931213379 + ], + [ + "kte", + -14.608906745910645 + ], + [ + "▁Glan", + -14.608908653259277 + ], + [ + "▁piezoelectric", + -14.608941078186035 + ], + [ + "▁EHS", + -14.608967781066895 + ], + [ + "▁Miele", + -14.608970642089844 + ], + [ + "▁healthily", + -14.608993530273438 + ], + [ + "arma", + -14.608999252319336 + ], + [ + "▁Acadian", + -14.609001159667969 + ], + [ + "▁Miu", + -14.609009742736816 + ], + [ + "▁Whales", + -14.609025955200195 + ], + [ + "deco", + -14.609074592590332 + ], + [ + "▁Chromebooks", + -14.609074592590332 + ], + [ + "▁Ž", + -14.609077453613281 + ], + [ + "▁darting", + -14.609078407287598 + ], + [ + "▁Welcoming", + -14.60908317565918 + ], + [ + "▁Whiteside", + -14.609110832214355 + ], + [ + "▁Mallet", + -14.609138488769531 + ], + [ + "▁popsicle", + -14.609143257141113 + ], + [ + "▁mechanized", + -14.609156608581543 + ], + [ + "▁thematically", + -14.609248161315918 + ], + [ + "▁chlamydia", + -14.60925579071045 + ], + [ + "▁Grainger", + -14.609257698059082 + ], + [ + "▁Replaced", + -14.609270095825195 + ], + [ + "aina", + -14.609278678894043 + ], + [ + "▁indigent", + -14.609299659729004 + ], + [ + "XXXX", + -14.609314918518066 + ], + [ + "▁Borrowing", + -14.609332084655762 + ], + [ + "cfm", + -14.609370231628418 + ], + [ + "aty", + -14.60938835144043 + ], + [ + "▁Banned", + -14.609407424926758 + ], + [ + "vasi", + -14.609454154968262 + ], + [ + "▁Lucien", + -14.609471321105957 + ], + [ + "▁PHIL", + -14.609489440917969 + ], + [ + "▁1550", + -14.60949420928955 + ], + [ + "▁Repertory", + -14.609508514404297 + ], + [ + "rgu", + -14.609509468078613 + ], + [ + "▁motorways", + -14.609518051147461 + ], + [ + "▁apparition", + -14.609528541564941 + ], + [ + "▁Rakhi", + -14.609533309936523 + ], + [ + "▁Sunnyvale", + -14.609580993652344 + ], + [ + "certainly", + -14.609612464904785 + ], + [ + "▁Firefighter", + -14.609621047973633 + ], + [ + "▁rou", + -14.60963249206543 + ], + [ + "▁snoop", + -14.609642028808594 + ], + [ + "▁Coupling", + -14.609650611877441 + ], + [ + "fronted", + -14.609654426574707 + ], + [ + "▁Neh", + -14.609685897827148 + ], + [ + "acker", + -14.609687805175781 + ], + [ + "▁Nueva", + -14.609695434570312 + ], + [ + "질", + -14.609761238098145 + ], + [ + "▁muslims", + -14.609889030456543 + ], + [ + "erase", + -14.609950065612793 + ], + [ + "▁rockstar", + -14.609956741333008 + ], + [ + "agents", + -14.609977722167969 + ], + [ + "seems", + -14.609993934631348 + ], + [ + "▁payed", + -14.609999656677246 + ], + [ + "▁tricho", + -14.610003471374512 + ], + [ + "▁Wiper", + -14.610004425048828 + ], + [ + "▁dissecting", + -14.610007286071777 + ], + [ + "configured", + -14.610016822814941 + ], + [ + "▁peppery", + -14.610044479370117 + ], + [ + "▁smo", + -14.610054016113281 + ], + [ + "noc", + -14.610072135925293 + ], + [ + "▁crucifix", + -14.610118865966797 + ], + [ + "▁slaps", + -14.610119819641113 + ], + [ + "▁Juri", + -14.610128402709961 + ], + [ + "ん", + -14.61014175415039 + ], + [ + "igung", + -14.610145568847656 + ], + [ + "Random", + -14.610147476196289 + ], + [ + "▁kara", + -14.610167503356934 + ], + [ + "ISSN", + -14.610174179077148 + ], + [ + "▁jobsite", + -14.610176086425781 + ], + [ + "▁ster", + -14.610198020935059 + ], + [ + "▁tightens", + -14.61023235321045 + ], + [ + "▁CPL", + -14.610238075256348 + ], + [ + "▁Boomerang", + -14.610255241394043 + ], + [ + "▁Sza", + -14.61026382446289 + ], + [ + "▁dapat", + -14.610340118408203 + ], + [ + "▁melamine", + -14.610340118408203 + ], + [ + "styling", + -14.610417366027832 + ], + [ + "yari", + -14.610437393188477 + ], + [ + "▁Innsbruck", + -14.610438346862793 + ], + [ + "▁unfilled", + -14.61043930053711 + ], + [ + "された", + -14.610454559326172 + ], + [ + "▁SIMPLE", + -14.610471725463867 + ], + [ + "▁herniated", + -14.610503196716309 + ], + [ + "▁disables", + -14.610522270202637 + ], + [ + "▁Strengths", + -14.610539436340332 + ], + [ + "▁Sunscreen", + -14.610546112060547 + ], + [ + "Gui", + -14.610556602478027 + ], + [ + "▁comforters", + -14.610587120056152 + ], + [ + "▁Bonne", + -14.610612869262695 + ], + [ + "▁impairs", + -14.610627174377441 + ], + [ + "▁Consist", + -14.610663414001465 + ], + [ + "▁Sumo", + -14.61068344116211 + ], + [ + "▁prednisolone", + -14.61069107055664 + ], + [ + "▁Klay", + -14.610716819763184 + ], + [ + "▁Gardeners", + -14.610755920410156 + ], + [ + "Wizard", + -14.61080265045166 + ], + [ + "ห", + -14.610860824584961 + ], + [ + "▁protégé", + -14.610880851745605 + ], + [ + "▁islanders", + -14.610888481140137 + ], + [ + "▁monographs", + -14.610888481140137 + ], + [ + "▁rippling", + -14.610913276672363 + ], + [ + "reserve", + -14.610929489135742 + ], + [ + "heri", + -14.61093521118164 + ], + [ + "▁dumbfounded", + -14.610941886901855 + ], + [ + "lame", + -14.610978126525879 + ], + [ + "▁midfielders", + -14.61099624633789 + ], + [ + "▁DART", + -14.611008644104004 + ], + [ + "▁WOO", + -14.611024856567383 + ], + [ + "Constitution", + -14.61103343963623 + ], + [ + "meets", + -14.611063003540039 + ], + [ + "▁sarees", + -14.611104965209961 + ], + [ + "▁FRC", + -14.611238479614258 + ], + [ + "▁Chha", + -14.611245155334473 + ], + [ + "trouble", + -14.611263275146484 + ], + [ + "▁sweatpants", + -14.611265182495117 + ], + [ + "Wine", + -14.6112699508667 + ], + [ + "algia", + -14.611274719238281 + ], + [ + "▁CRF", + -14.611292839050293 + ], + [ + "료", + -14.611296653747559 + ], + [ + "▁Laf", + -14.611297607421875 + ], + [ + "adri", + -14.61130142211914 + ], + [ + "▁spiking", + -14.611358642578125 + ], + [ + "▁tachycardia", + -14.611480712890625 + ], + [ + "solver", + -14.611495018005371 + ], + [ + "▁labourer", + -14.6115083694458 + ], + [ + "shiba", + -14.611520767211914 + ], + [ + "▁voxel", + -14.61153507232666 + ], + [ + "ую", + -14.611554145812988 + ], + [ + "▁Oblivion", + -14.611568450927734 + ], + [ + "▁dio", + -14.61158561706543 + ], + [ + "하였다", + -14.611631393432617 + ], + [ + "▁dino", + -14.611696243286133 + ], + [ + "▁Magenta", + -14.611700057983398 + ], + [ + "▁KOs", + -14.611766815185547 + ], + [ + "▁Gly", + -14.611771583557129 + ], + [ + "▁vicariously", + -14.611795425415039 + ], + [ + "▁Borderlands", + -14.611802101135254 + ], + [ + "Volt", + -14.611881256103516 + ], + [ + "▁Ableton", + -14.61188793182373 + ], + [ + "▁Mechan", + -14.611998558044434 + ], + [ + "▁TSS", + -14.61206340789795 + ], + [ + "▁cobwebs", + -14.612071990966797 + ], + [ + "▁spurring", + -14.612080574035645 + ], + [ + "YU", + -14.612102508544922 + ], + [ + "unfortunately", + -14.612128257751465 + ], + [ + "▁concurred", + -14.61217212677002 + ], + [ + "▁Woodson", + -14.612183570861816 + ], + [ + "▁FEE", + -14.612198829650879 + ], + [ + "▁bailouts", + -14.612221717834473 + ], + [ + "dna", + -14.612228393554688 + ], + [ + "▁Lupus", + -14.612271308898926 + ], + [ + "saved", + -14.612310409545898 + ], + [ + "▁Azhar", + -14.612391471862793 + ], + [ + "▁turner", + -14.612398147583008 + ], + [ + "▁Darnell", + -14.612454414367676 + ], + [ + "gist", + -14.612475395202637 + ], + [ + "▁doped", + -14.612479209899902 + ], + [ + "▁NSAIDs", + -14.612584114074707 + ], + [ + "ankle", + -14.612587928771973 + ], + [ + "▁Apartheid", + -14.612625122070312 + ], + [ + "▁taylor", + -14.612626075744629 + ], + [ + "Disease", + -14.612634658813477 + ], + [ + "äl", + -14.61266803741455 + ], + [ + "▁OneNote", + -14.61268138885498 + ], + [ + "▁Draghi", + -14.61268424987793 + ], + [ + "▁amply", + -14.612700462341309 + ], + [ + "▁Turnover", + -14.61270809173584 + ], + [ + "τε", + -14.612709999084473 + ], + [ + "culum", + -14.612714767456055 + ], + [ + "▁MCF", + -14.612730026245117 + ], + [ + "Disk", + -14.612739562988281 + ], + [ + "lver", + -14.612739562988281 + ], + [ + "Village", + -14.612760543823242 + ], + [ + "▁inferno", + -14.61280632019043 + ], + [ + "▁Retrieval", + -14.61288070678711 + ], + [ + "▁pimple", + -14.612926483154297 + ], + [ + "▁Maryam", + -14.612927436828613 + ], + [ + "carpet", + -14.61295223236084 + ], + [ + "▁overstate", + -14.612955093383789 + ], + [ + "▁SOUL", + -14.612972259521484 + ], + [ + "ucco", + -14.61301040649414 + ], + [ + "▁fac", + -14.613031387329102 + ], + [ + "▁preferentially", + -14.613031387329102 + ], + [ + "Wake", + -14.61305046081543 + ], + [ + "▁Indexes", + -14.613073348999023 + ], + [ + "▁disclaimers", + -14.613078117370605 + ], + [ + "▁barbarians", + -14.613089561462402 + ], + [ + "▁infertile", + -14.61309814453125 + ], + [ + "degrees", + -14.613115310668945 + ], + [ + "▁cairn", + -14.613263130187988 + ], + [ + "roop", + -14.613275527954102 + ], + [ + "▁Minimize", + -14.613286972045898 + ], + [ + "ierte", + -14.61330795288086 + ], + [ + "▁Heyman", + -14.613308906555176 + ], + [ + "▁acidification", + -14.613311767578125 + ], + [ + "queue", + -14.61335563659668 + ], + [ + "▁Skan", + -14.613460540771484 + ], + [ + "▁purists", + -14.613471984863281 + ], + [ + "1916", + -14.61349105834961 + ], + [ + "▁occassion", + -14.613518714904785 + ], + [ + "ferrous", + -14.613555908203125 + ], + [ + "Independent", + -14.61356258392334 + ], + [ + "Loading", + -14.61361026763916 + ], + [ + "▁acrobat", + -14.613691329956055 + ], + [ + "▁deadpan", + -14.613722801208496 + ], + [ + "▁winked", + -14.613725662231445 + ], + [ + "▁mournful", + -14.613753318786621 + ], + [ + "▁Checkpoint", + -14.613765716552734 + ], + [ + "Accept", + -14.613798141479492 + ], + [ + "▁Durand", + -14.613799095153809 + ], + [ + "▁rebalancing", + -14.613811492919922 + ], + [ + "▁Ksh", + -14.61382007598877 + ], + [ + "▁tyrants", + -14.6138334274292 + ], + [ + "lagen", + -14.613835334777832 + ], + [ + "▁radiologist", + -14.613836288452148 + ], + [ + "▁Accents", + -14.613837242126465 + ], + [ + "▁Sacks", + -14.613920211791992 + ], + [ + "▁snot", + -14.613922119140625 + ], + [ + "▁swerve", + -14.613936424255371 + ], + [ + "▁Concurrent", + -14.613944053649902 + ], + [ + "▁misaligned", + -14.613987922668457 + ], + [ + "▁Longtime", + -14.614014625549316 + ], + [ + "igma", + -14.614038467407227 + ], + [ + "▁grantees", + -14.614047050476074 + ], + [ + "Lane", + -14.614052772521973 + ], + [ + "▁Ultron", + -14.614055633544922 + ], + [ + "▁CSL", + -14.614089012145996 + ], + [ + "▁gopher", + -14.614090919494629 + ], + [ + "▁рас", + -14.614120483398438 + ], + [ + "▁parabolic", + -14.614142417907715 + ], + [ + "▁shallower", + -14.61415958404541 + ], + [ + "▁Basingstoke", + -14.614185333251953 + ], + [ + "▁MUN", + -14.614189147949219 + ], + [ + "Industry", + -14.614229202270508 + ], + [ + "▁flavouring", + -14.614237785339355 + ], + [ + "▁Fitzroy", + -14.614251136779785 + ], + [ + "eral", + -14.614266395568848 + ], + [ + "▁Shima", + -14.614274024963379 + ], + [ + "▁HRT", + -14.614301681518555 + ], + [ + "▁civilised", + -14.614341735839844 + ], + [ + "▁MCD", + -14.614422798156738 + ], + [ + "Prep", + -14.614424705505371 + ], + [ + "commit", + -14.614441871643066 + ], + [ + "▁Aviator", + -14.614450454711914 + ], + [ + "▁Miyazaki", + -14.614476203918457 + ], + [ + "rington", + -14.61453628540039 + ], + [ + "▁Stetson", + -14.614548683166504 + ], + [ + "▁Sandal", + -14.61460018157959 + ], + [ + "steer", + -14.614609718322754 + ], + [ + "▁Awning", + -14.614625930786133 + ], + [ + "▁Froome", + -14.614641189575195 + ], + [ + "信号", + -14.614680290222168 + ], + [ + "▁Astonishing", + -14.614688873291016 + ], + [ + "▁Atherton", + -14.614705085754395 + ], + [ + "▁Curacao", + -14.614729881286621 + ], + [ + "▁limousines", + -14.61477279663086 + ], + [ + "▁incubators", + -14.614787101745605 + ], + [ + "Duck", + -14.614789962768555 + ], + [ + "▁DANCE", + -14.614792823791504 + ], + [ + "▁NSX", + -14.6148042678833 + ], + [ + "▁ushers", + -14.614873886108398 + ], + [ + "conditions", + -14.614950180053711 + ], + [ + "rific", + -14.614956855773926 + ], + [ + "▁Wolfram", + -14.61497688293457 + ], + [ + "▁Muppet", + -14.614985466003418 + ], + [ + "▁eulogy", + -14.615015983581543 + ], + [ + "▁Moray", + -14.615022659301758 + ], + [ + "▁decorum", + -14.615035057067871 + ], + [ + "▁Stade", + -14.61506175994873 + ], + [ + "▁Notary", + -14.615073204040527 + ], + [ + "arden", + -14.61507511138916 + ], + [ + "▁Desks", + -14.615118980407715 + ], + [ + "▁whimper", + -14.615133285522461 + ], + [ + "▁Pompey", + -14.61527156829834 + ], + [ + "▁choc", + -14.615273475646973 + ], + [ + "▁Armen", + -14.615277290344238 + ], + [ + "▁RESULT", + -14.615289688110352 + ], + [ + "▁LDP", + -14.615300178527832 + ], + [ + "▁Palisades", + -14.615312576293945 + ], + [ + "Collect", + -14.615316390991211 + ], + [ + "▁Delilah", + -14.615347862243652 + ], + [ + "▁PIM", + -14.615371704101562 + ], + [ + "Ji", + -14.6154146194458 + ], + [ + "▁superstitions", + -14.615421295166016 + ], + [ + "▁Breck", + -14.615428924560547 + ], + [ + "▁Assemblyman", + -14.615455627441406 + ], + [ + "▁Asahi", + -14.615459442138672 + ], + [ + "Example", + -14.61548137664795 + ], + [ + "문", + -14.615484237670898 + ], + [ + "▁SGD", + -14.615495681762695 + ], + [ + "▁SUCCESS", + -14.615535736083984 + ], + [ + "▁647", + -14.615544319152832 + ], + [ + "▁incompatibility", + -14.615554809570312 + ], + [ + "▁Ambani", + -14.615557670593262 + ], + [ + "0027", + -14.61557388305664 + ], + [ + "▁Kandy", + -14.615594863891602 + ], + [ + "▁wellbutrin", + -14.6156005859375 + ], + [ + "▁unfavourable", + -14.615618705749512 + ], + [ + "ZU", + -14.615633010864258 + ], + [ + "zahl", + -14.615659713745117 + ], + [ + "▁headbands", + -14.615674018859863 + ], + [ + "glut", + -14.615710258483887 + ], + [ + "▁cordon", + -14.615728378295898 + ], + [ + "▁bangles", + -14.615729331970215 + ], + [ + "▁Parachute", + -14.615763664245605 + ], + [ + "▁caribou", + -14.615800857543945 + ], + [ + "gamer", + -14.615812301635742 + ], + [ + "▁Jamieson", + -14.615817070007324 + ], + [ + "▁ombudsman", + -14.615863800048828 + ], + [ + "ngan", + -14.615882873535156 + ], + [ + "▁Programmable", + -14.615896224975586 + ], + [ + "▁Prae", + -14.615897178649902 + ], + [ + "▁Damned", + -14.6159029006958 + ], + [ + "▁decimals", + -14.615904808044434 + ], + [ + "▁Gnostic", + -14.61590576171875 + ], + [ + "▁Llama", + -14.615918159484863 + ], + [ + "▁Rado", + -14.615944862365723 + ], + [ + "▁Unauthorized", + -14.615948677062988 + ], + [ + "▁Winch", + -14.615970611572266 + ], + [ + "▁Khyber", + -14.615981101989746 + ], + [ + "▁Leaning", + -14.616040229797363 + ], + [ + "▁pleural", + -14.616066932678223 + ], + [ + "▁Touching", + -14.616142272949219 + ], + [ + "▁Zad", + -14.616242408752441 + ], + [ + "▁combinatorial", + -14.616257667541504 + ], + [ + "▁unfunded", + -14.616286277770996 + ], + [ + "▁tryout", + -14.61629581451416 + ], + [ + "▁Erskine", + -14.616299629211426 + ], + [ + "▁confiscate", + -14.616314888000488 + ], + [ + "▁ornamentation", + -14.616397857666016 + ], + [ + "▁EFFECT", + -14.616455078125 + ], + [ + "Bryan", + -14.61652660369873 + ], + [ + "▁DSTV", + -14.616634368896484 + ], + [ + "Cry", + -14.616650581359863 + ], + [ + "▁wraparound", + -14.616703987121582 + ], + [ + "▁wednesday", + -14.616708755493164 + ], + [ + "Rot", + -14.616762161254883 + ], + [ + "▁Eyewitness", + -14.616777420043945 + ], + [ + "▁Geri", + -14.616782188415527 + ], + [ + "▁hir", + -14.616789817810059 + ], + [ + "eken", + -14.61680793762207 + ], + [ + "▁Sequel", + -14.616835594177246 + ], + [ + "▁Bew", + -14.616840362548828 + ], + [ + "▁Locating", + -14.61684799194336 + ], + [ + "▁kratom", + -14.616852760314941 + ], + [ + "▁archdiocese", + -14.616863250732422 + ], + [ + "▁Gabbana", + -14.616898536682129 + ], + [ + "frank", + -14.616900444030762 + ], + [ + "▁Corinthian", + -14.616926193237305 + ], + [ + "▁Commissioned", + -14.616952896118164 + ], + [ + "▁evidentiary", + -14.617034912109375 + ], + [ + "hike", + -14.617087364196777 + ], + [ + "ు", + -14.617181777954102 + ], + [ + "▁ephemera", + -14.61721420288086 + ], + [ + "▁Vedanta", + -14.617215156555176 + ], + [ + "▁tenderly", + -14.617230415344238 + ], + [ + "maki", + -14.617240905761719 + ], + [ + "Thunder", + -14.617250442504883 + ], + [ + "▁Obsession", + -14.617255210876465 + ], + [ + "ceramic", + -14.617300987243652 + ], + [ + "Driven", + -14.617319107055664 + ], + [ + "▁env", + -14.617429733276367 + ], + [ + "▁Ridiculous", + -14.617454528808594 + ], + [ + "▁Carrey", + -14.617505073547363 + ], + [ + "▁Helpline", + -14.617506980895996 + ], + [ + "▁xeno", + -14.61756706237793 + ], + [ + "▁weft", + -14.617579460144043 + ], + [ + "▁demonstrable", + -14.617636680603027 + ], + [ + "▁PMA", + -14.617640495300293 + ], + [ + "▁Marchand", + -14.617655754089355 + ], + [ + "▁Donahue", + -14.617691993713379 + ], + [ + "▁Intrepid", + -14.617709159851074 + ], + [ + "▁Jeffries", + -14.617749214172363 + ], + [ + "▁blackheads", + -14.617762565612793 + ], + [ + "changes", + -14.61776351928711 + ], + [ + "▁Clough", + -14.617774963378906 + ], + [ + "▁Avondale", + -14.617782592773438 + ], + [ + "▁Collectibles", + -14.617788314819336 + ], + [ + "▁corned", + -14.617807388305664 + ], + [ + "▁scalpel", + -14.617827415466309 + ], + [ + "ilor", + -14.617829322814941 + ], + [ + "Supplementary", + -14.617855072021484 + ], + [ + "▁grumbled", + -14.617897033691406 + ], + [ + "▁Tamworth", + -14.617912292480469 + ], + [ + "▁denominated", + -14.617931365966797 + ], + [ + "glasses", + -14.617932319641113 + ], + [ + "▁receded", + -14.61795425415039 + ], + [ + "BOARD", + -14.617981910705566 + ], + [ + "▁HUM", + -14.61799430847168 + ], + [ + "▁Trina", + -14.618037223815918 + ], + [ + "▁gibb", + -14.618040084838867 + ], + [ + "▁toasting", + -14.618046760559082 + ], + [ + "▁사용", + -14.618062973022461 + ], + [ + "▁Joann", + -14.618066787719727 + ], + [ + "▁ப", + -14.618124961853027 + ], + [ + "▁autre", + -14.618157386779785 + ], + [ + "▁Provident", + -14.618189811706543 + ], + [ + "▁spor", + -14.618203163146973 + ], + [ + "▁Hattie", + -14.618204116821289 + ], + [ + "▁SIC", + -14.618229866027832 + ], + [ + "▁Transplantation", + -14.618230819702148 + ], + [ + "▁Fuels", + -14.618237495422363 + ], + [ + "orous", + -14.618287086486816 + ], + [ + "passes", + -14.618326187133789 + ], + [ + "necked", + -14.618369102478027 + ], + [ + "wireless", + -14.618402481079102 + ], + [ + "▁563", + -14.618470191955566 + ], + [ + "▁Mz", + -14.618547439575195 + ], + [ + "thana", + -14.618612289428711 + ], + [ + "▁GRP", + -14.618617057800293 + ], + [ + "▁1350", + -14.61872673034668 + ], + [ + "▁untrustworthy", + -14.618728637695312 + ], + [ + "▁Constituency", + -14.618766784667969 + ], + [ + "CRO", + -14.618817329406738 + ], + [ + "▁excavators", + -14.618826866149902 + ], + [ + "▁declutter", + -14.618841171264648 + ], + [ + "▁martyred", + -14.618876457214355 + ], + [ + "▁rectifier", + -14.618901252746582 + ], + [ + "결", + -14.618910789489746 + ], + [ + "▁Entertaining", + -14.618936538696289 + ], + [ + "▁Goodwood", + -14.618937492370605 + ], + [ + "ვ", + -14.61894702911377 + ], + [ + "Lucy", + -14.618950843811035 + ], + [ + "▁infighting", + -14.618959426879883 + ], + [ + "DHS", + -14.61898136138916 + ], + [ + "▁incriminating", + -14.619001388549805 + ], + [ + "▁Clocks", + -14.619010925292969 + ], + [ + "▁Sorensen", + -14.619050979614258 + ], + [ + "▁Dyn", + -14.619072914123535 + ], + [ + "▁Hauling", + -14.619176864624023 + ], + [ + "▁FAM", + -14.61917781829834 + ], + [ + "▁Peaches", + -14.619258880615234 + ], + [ + "SOM", + -14.619297981262207 + ], + [ + "▁detainee", + -14.619302749633789 + ], + [ + "▁Poz", + -14.619307518005371 + ], + [ + "▁prolonging", + -14.619339942932129 + ], + [ + "understood", + -14.61935043334961 + ], + [ + "▁Backward", + -14.619452476501465 + ], + [ + "▁mesenchymal", + -14.619458198547363 + ], + [ + "▁Lactobacillus", + -14.61949348449707 + ], + [ + "▁KLM", + -14.619500160217285 + ], + [ + "▁Shiba", + -14.619505882263184 + ], + [ + "▁Morro", + -14.6195068359375 + ], + [ + "程", + -14.619512557983398 + ], + [ + "▁Translations", + -14.619524955749512 + ], + [ + "▁IEA", + -14.619572639465332 + ], + [ + "▁Claiming", + -14.619601249694824 + ], + [ + "▁Marcellus", + -14.619606971740723 + ], + [ + "▁RIO", + -14.619617462158203 + ], + [ + "▁slugger", + -14.619629859924316 + ], + [ + "▁nationalistic", + -14.619641304016113 + ], + [ + "▁february", + -14.619694709777832 + ], + [ + "▁ADVISED", + -14.619712829589844 + ], + [ + "ста", + -14.619722366333008 + ], + [ + "hose", + -14.61973762512207 + ], + [ + "▁surpluses", + -14.61974811553955 + ], + [ + "▁Flore", + -14.619751930236816 + ], + [ + "Blonde", + -14.619784355163574 + ], + [ + "indu", + -14.619792938232422 + ], + [ + "▁caffeinated", + -14.619792938232422 + ], + [ + "▁resized", + -14.619794845581055 + ], + [ + "▁wiretap", + -14.619836807250977 + ], + [ + "▁basilica", + -14.619843482971191 + ], + [ + "▁oddity", + -14.619856834411621 + ], + [ + "▁Taro", + -14.619871139526367 + ], + [ + "imov", + -14.619874954223633 + ], + [ + "▁jetted", + -14.619887351989746 + ], + [ + "nect", + -14.6199369430542 + ], + [ + "▁Buz", + -14.619950294494629 + ], + [ + "▁Complement", + -14.619972229003906 + ], + [ + "puram", + -14.620000839233398 + ], + [ + "▁Snider", + -14.620002746582031 + ], + [ + "▁Gravi", + -14.620015144348145 + ], + [ + "▁OTR", + -14.620019912719727 + ], + [ + "mainstream", + -14.620072364807129 + ], + [ + "rais", + -14.620091438293457 + ], + [ + "ус", + -14.620105743408203 + ], + [ + "▁baffles", + -14.620267868041992 + ], + [ + "▁Psychiatrist", + -14.620280265808105 + ], + [ + "decent", + -14.620281219482422 + ], + [ + "▁JPY", + -14.62034797668457 + ], + [ + "습니다", + -14.620359420776367 + ], + [ + "▁NetApp", + -14.620361328125 + ], + [ + "bib", + -14.620376586914062 + ], + [ + "iamo", + -14.620382308959961 + ], + [ + "▁COG", + -14.620387077331543 + ], + [ + "▁Feeds", + -14.620394706726074 + ], + [ + "▁Playbook", + -14.620407104492188 + ], + [ + "▁foie", + -14.620429039001465 + ], + [ + "Salt", + -14.620468139648438 + ], + [ + "▁Duda", + -14.620482444763184 + ], + [ + "▁pled", + -14.620508193969727 + ], + [ + "▁Osteopathic", + -14.620545387268066 + ], + [ + "▁bluster", + -14.620601654052734 + ], + [ + "▁Haider", + -14.620609283447266 + ], + [ + "▁Fernández", + -14.62061595916748 + ], + [ + "▁Bode", + -14.620617866516113 + ], + [ + "foul", + -14.620674133300781 + ], + [ + "▁sparrow", + -14.620710372924805 + ], + [ + "▁nether", + -14.62071704864502 + ], + [ + "▁Burgh", + -14.620720863342285 + ], + [ + "▁так", + -14.620777130126953 + ], + [ + "▁Axiom", + -14.620790481567383 + ], + [ + "▁Safeguarding", + -14.62083911895752 + ], + [ + "▁NIR", + -14.620861053466797 + ], + [ + "▁Madurai", + -14.620871543884277 + ], + [ + "▁transducers", + -14.620879173278809 + ], + [ + "▁airstrip", + -14.62089729309082 + ], + [ + "Mostly", + -14.620951652526855 + ], + [ + "edema", + -14.620964050292969 + ], + [ + "▁Mormonism", + -14.621024131774902 + ], + [ + "▁Esc", + -14.62104606628418 + ], + [ + "▁BOOT", + -14.621112823486328 + ], + [ + "▁dispersing", + -14.621153831481934 + ], + [ + "▁Chastain", + -14.621160507202148 + ], + [ + "▁Cupboard", + -14.621203422546387 + ], + [ + "▁Briton", + -14.621209144592285 + ], + [ + "▁octagonal", + -14.621209144592285 + ], + [ + "▁Komen", + -14.621212005615234 + ], + [ + "▁Bahn", + -14.621231079101562 + ], + [ + "duration", + -14.62125301361084 + ], + [ + "▁св", + -14.621278762817383 + ], + [ + "▁За", + -14.62130069732666 + ], + [ + "Radar", + -14.621306419372559 + ], + [ + "▁earplugs", + -14.62131118774414 + ], + [ + "▁2028", + -14.621329307556152 + ], + [ + "▁misdeeds", + -14.62136459350586 + ], + [ + "▁flamingo", + -14.621365547180176 + ], + [ + "▁Kyu", + -14.621383666992188 + ], + [ + "▁extradited", + -14.621384620666504 + ], + [ + "▁globalist", + -14.621389389038086 + ], + [ + "emma", + -14.6215181350708 + ], + [ + "▁Gannon", + -14.621522903442383 + ], + [ + "▁Dey", + -14.621528625488281 + ], + [ + "▁deacons", + -14.621565818786621 + ], + [ + "▁vestibular", + -14.621582984924316 + ], + [ + "liber", + -14.621654510498047 + ], + [ + "▁Anim", + -14.621689796447754 + ], + [ + "marie", + -14.621697425842285 + ], + [ + "▁fertilize", + -14.621699333190918 + ], + [ + "esar", + -14.621747016906738 + ], + [ + "▁Eldorado", + -14.621793746948242 + ], + [ + "shme", + -14.62182903289795 + ], + [ + "▁starches", + -14.62183952331543 + ], + [ + "sef", + -14.621856689453125 + ], + [ + "▁bragged", + -14.62186050415039 + ], + [ + "narrative", + -14.621898651123047 + ], + [ + "▁پ", + -14.621932029724121 + ], + [ + "▁savored", + -14.621954917907715 + ], + [ + "▁comprehending", + -14.621990203857422 + ], + [ + "holic", + -14.621994018554688 + ], + [ + "defunct", + -14.622036933898926 + ], + [ + "▁sistema", + -14.62204360961914 + ], + [ + "Amb", + -14.62204647064209 + ], + [ + "hive", + -14.622078895568848 + ], + [ + "▁Villiers", + -14.62208080291748 + ], + [ + "▁Pointing", + -14.622081756591797 + ], + [ + "▁dolor", + -14.622093200683594 + ], + [ + "▁Aida", + -14.622109413146973 + ], + [ + "▁Vivaldi", + -14.622252464294434 + ], + [ + "▁demeanour", + -14.622262954711914 + ], + [ + "tained", + -14.622323989868164 + ], + [ + "▁Dozen", + -14.622347831726074 + ], + [ + "▁CEE", + -14.622352600097656 + ], + [ + "▁Succulent", + -14.622379302978516 + ], + [ + "▁viper", + -14.622386932373047 + ], + [ + "▁schoolhouse", + -14.622391700744629 + ], + [ + "▁Samaritans", + -14.622393608093262 + ], + [ + "▁Rada", + -14.62243938446045 + ], + [ + "PACK", + -14.622443199157715 + ], + [ + "essentially", + -14.622481346130371 + ], + [ + "aime", + -14.622495651245117 + ], + [ + "▁jacked", + -14.622513771057129 + ], + [ + "ού", + -14.622516632080078 + ], + [ + "▁SZ", + -14.622518539428711 + ], + [ + "▁scintillating", + -14.62252140045166 + ], + [ + "▁radi", + -14.622626304626465 + ], + [ + "Hash", + -14.62266731262207 + ], + [ + "▁Brookline", + -14.622675895690918 + ], + [ + "▁SFA", + -14.622690200805664 + ], + [ + "▁Molding", + -14.622693061828613 + ], + [ + "innie", + -14.62271499633789 + ], + [ + "▁inoculated", + -14.622715950012207 + ], + [ + "▁rebut", + -14.622715950012207 + ], + [ + "▁viking", + -14.622727394104004 + ], + [ + "▁Scrivener", + -14.622735023498535 + ], + [ + "▁timeframes", + -14.622783660888672 + ], + [ + "▁Midas", + -14.622846603393555 + ], + [ + "▁Trademarks", + -14.622873306274414 + ], + [ + "EAU", + -14.622913360595703 + ], + [ + "▁Kall", + -14.622958183288574 + ], + [ + "▁BOC", + -14.622962951660156 + ], + [ + "franchise", + -14.622982025146484 + ], + [ + "abelle", + -14.622984886169434 + ], + [ + "Character", + -14.623078346252441 + ], + [ + "▁Purge", + -14.62308120727539 + ], + [ + "▁Oma", + -14.623100280761719 + ], + [ + "triple", + -14.623106956481934 + ], + [ + "ICU", + -14.62310791015625 + ], + [ + "urra", + -14.62320327758789 + ], + [ + "▁birthstone", + -14.623223304748535 + ], + [ + "▁Gei", + -14.623251914978027 + ], + [ + "heh", + -14.623255729675293 + ], + [ + "▁Biking", + -14.623265266418457 + ], + [ + "▁Drywall", + -14.623270034790039 + ], + [ + "▁SGA", + -14.62329387664795 + ], + [ + "▁candor", + -14.623322486877441 + ], + [ + "ну", + -14.623331069946289 + ], + [ + "feldt", + -14.623345375061035 + ], + [ + "▁Herndon", + -14.623350143432617 + ], + [ + "afia", + -14.623351097106934 + ], + [ + "▁gash", + -14.623388290405273 + ], + [ + "says", + -14.623437881469727 + ], + [ + "wholesale", + -14.623442649841309 + ], + [ + "eeee", + -14.623453140258789 + ], + [ + "▁Beneficiation", + -14.623503684997559 + ], + [ + "▁gazette", + -14.62352180480957 + ], + [ + "▁Gaudi", + -14.623556137084961 + ], + [ + "▁Econometric", + -14.623565673828125 + ], + [ + "Myers", + -14.623603820800781 + ], + [ + "▁Fairway", + -14.623637199401855 + ], + [ + "▁fasci", + -14.623638153076172 + ], + [ + "POWER", + -14.623658180236816 + ], + [ + "▁Swahili", + -14.623678207397461 + ], + [ + "▁vocally", + -14.623682975769043 + ], + [ + "▁BJJ", + -14.623697280883789 + ], + [ + "▁aquifers", + -14.623708724975586 + ], + [ + "▁fatter", + -14.62374210357666 + ], + [ + "▁Tiananmen", + -14.623832702636719 + ], + [ + "▁HarperCollins", + -14.623847961425781 + ], + [ + "▁Yeats", + -14.623858451843262 + ], + [ + "▁CELL", + -14.6239013671875 + ], + [ + "▁Raoul", + -14.623905181884766 + ], + [ + "riva", + -14.623931884765625 + ], + [ + "▁Presto", + -14.62407398223877 + ], + [ + "Highway", + -14.624110221862793 + ], + [ + "▁digitize", + -14.624110221862793 + ], + [ + "▁Ruck", + -14.62415885925293 + ], + [ + "▁Myspace", + -14.624194145202637 + ], + [ + "▁FOREX", + -14.624252319335938 + ], + [ + "▁ATX", + -14.624295234680176 + ], + [ + "▁Downstairs", + -14.624316215515137 + ], + [ + "▁econometric", + -14.624363899230957 + ], + [ + "▁overbought", + -14.624373435974121 + ], + [ + "▁ravages", + -14.624396324157715 + ], + [ + "▁larva", + -14.624417304992676 + ], + [ + "stimulation", + -14.624420166015625 + ], + [ + "eine", + -14.62442684173584 + ], + [ + "▁delighting", + -14.624505043029785 + ], + [ + "▁Kisses", + -14.624532699584961 + ], + [ + "▁547", + -14.624533653259277 + ], + [ + "▁Enabled", + -14.624542236328125 + ], + [ + "▁Meghalaya", + -14.624547004699707 + ], + [ + "▁AIP", + -14.624565124511719 + ], + [ + "▁Longitudinal", + -14.624571800231934 + ], + [ + "▁BATH", + -14.624573707580566 + ], + [ + "1890", + -14.624574661254883 + ], + [ + "Foreign", + -14.62458324432373 + ], + [ + "▁colander", + -14.624628067016602 + ], + [ + "▁metabolize", + -14.62463092803955 + ], + [ + "▁Ferrara", + -14.62465763092041 + ], + [ + "▁daniel", + -14.624682426452637 + ], + [ + "▁aspirant", + -14.624686241149902 + ], + [ + "▁stateless", + -14.624690055847168 + ], + [ + "microbial", + -14.624703407287598 + ], + [ + "▁Udemy", + -14.624703407287598 + ], + [ + "▁Thereby", + -14.624722480773926 + ], + [ + "▁Berries", + -14.624733924865723 + ], + [ + "▁GDC", + -14.624757766723633 + ], + [ + "▁Decorated", + -14.62476634979248 + ], + [ + "prom", + -14.624777793884277 + ], + [ + "LIT", + -14.624794960021973 + ], + [ + "▁defaulting", + -14.62484073638916 + ], + [ + "▁Registrant", + -14.624846458435059 + ], + [ + "pale", + -14.624872207641602 + ], + [ + "▁Searle", + -14.624876022338867 + ], + [ + "gans", + -14.624920845031738 + ], + [ + "ucan", + -14.624968528747559 + ], + [ + "somal", + -14.62497329711914 + ], + [ + "▁Freund", + -14.625061988830566 + ], + [ + "▁Fc", + -14.625075340270996 + ], + [ + "▁demonstrator", + -14.625075340270996 + ], + [ + "fuss", + -14.625106811523438 + ], + [ + "▁MAF", + -14.625138282775879 + ], + [ + "▁artefact", + -14.625140190124512 + ], + [ + "▁Konami", + -14.62515640258789 + ], + [ + "▁Nightclub", + -14.625158309936523 + ], + [ + "RILL", + -14.625164985656738 + ], + [ + "▁slough", + -14.625211715698242 + ], + [ + "▁Perennial", + -14.625223159790039 + ], + [ + "▁mages", + -14.625247955322266 + ], + [ + "experimental", + -14.625249862670898 + ], + [ + "corrupt", + -14.625276565551758 + ], + [ + "▁Comer", + -14.625286102294922 + ], + [ + "▁Steyn", + -14.625372886657715 + ], + [ + "▁Terran", + -14.62540340423584 + ], + [ + "▁Estelle", + -14.625425338745117 + ], + [ + "▁naturalization", + -14.625431060791016 + ], + [ + "irr", + -14.625435829162598 + ], + [ + "breast", + -14.625468254089355 + ], + [ + "Output", + -14.625475883483887 + ], + [ + "Login", + -14.625495910644531 + ], + [ + "orientated", + -14.625529289245605 + ], + [ + "▁Northridge", + -14.625536918640137 + ], + [ + "▁monologues", + -14.6255464553833 + ], + [ + "improve", + -14.625556945800781 + ], + [ + "▁Haku", + -14.625566482543945 + ], + [ + "▁skits", + -14.625581741333008 + ], + [ + "▁Incubator", + -14.625582695007324 + ], + [ + "▁doomsday", + -14.625624656677246 + ], + [ + "▁Sonar", + -14.625685691833496 + ], + [ + "▁Rickey", + -14.625723838806152 + ], + [ + "▁Expeditions", + -14.625754356384277 + ], + [ + "▁STUDY", + -14.625761032104492 + ], + [ + "▁weaver", + -14.625775337219238 + ], + [ + "▁slop", + -14.625798225402832 + ], + [ + "▁knitwear", + -14.625802993774414 + ], + [ + "▁EPL", + -14.625862121582031 + ], + [ + "owska", + -14.625934600830078 + ], + [ + "▁quali", + -14.625940322875977 + ], + [ + "▁jones", + -14.625946998596191 + ], + [ + "uddle", + -14.625971794128418 + ], + [ + "▁Grier", + -14.625984191894531 + ], + [ + "▁sickened", + -14.626018524169922 + ], + [ + "flexible", + -14.626028060913086 + ], + [ + "▁DeWitt", + -14.62605094909668 + ], + [ + "▁bhp", + -14.626058578491211 + ], + [ + "linn", + -14.626060485839844 + ], + [ + "wers", + -14.626067161560059 + ], + [ + "ësi", + -14.62608814239502 + ], + [ + "▁prodding", + -14.626107215881348 + ], + [ + "▁zovirax", + -14.62613296508789 + ], + [ + "▁Jahan", + -14.626137733459473 + ], + [ + "▁conch", + -14.62617015838623 + ], + [ + "▁pec", + -14.626184463500977 + ], + [ + "▁Bromwich", + -14.626249313354492 + ], + [ + "▁preconceptions", + -14.626260757446289 + ], + [ + "ossi", + -14.626274108886719 + ], + [ + "PEC", + -14.6262788772583 + ], + [ + "кра", + -14.626285552978516 + ], + [ + "▁RAR", + -14.626290321350098 + ], + [ + "▁Nagel", + -14.626309394836426 + ], + [ + "myo", + -14.626319885253906 + ], + [ + "▁Splunk", + -14.626322746276855 + ], + [ + "▁908", + -14.626323699951172 + ], + [ + "▁937", + -14.626355171203613 + ], + [ + "▁Sandstone", + -14.626364707946777 + ], + [ + "▁coalesce", + -14.626386642456055 + ], + [ + "▁Jacoby", + -14.626387596130371 + ], + [ + "▁Fisch", + -14.62643814086914 + ], + [ + "saur", + -14.62646770477295 + ], + [ + "▁Aristocrat", + -14.626498222351074 + ], + [ + "▁surfactants", + -14.626505851745605 + ], + [ + "ensky", + -14.62653636932373 + ], + [ + "▁Eccles", + -14.626537322998047 + ], + [ + "minated", + -14.626550674438477 + ], + [ + "vate", + -14.626553535461426 + ], + [ + "▁cochlear", + -14.626558303833008 + ], + [ + "emper", + -14.626582145690918 + ], + [ + "▁jap", + -14.6265869140625 + ], + [ + "zei", + -14.626603126525879 + ], + [ + "▁racy", + -14.626626014709473 + ], + [ + "Rub", + -14.626657485961914 + ], + [ + "▁GORGEOUS", + -14.626748085021973 + ], + [ + "bolo", + -14.62675666809082 + ], + [ + "arctic", + -14.626803398132324 + ], + [ + "IQUE", + -14.626811027526855 + ], + [ + "▁Gophers", + -14.6268310546875 + ], + [ + "▁Zeng", + -14.626842498779297 + ], + [ + "ων", + -14.626858711242676 + ], + [ + "▁wriggle", + -14.626869201660156 + ], + [ + "essi", + -14.626901626586914 + ], + [ + "▁commonalities", + -14.626904487609863 + ], + [ + "▁mummies", + -14.626946449279785 + ], + [ + "evski", + -14.62695598602295 + ], + [ + "trusted", + -14.62696647644043 + ], + [ + "▁multitask", + -14.626993179321289 + ], + [ + "huh", + -14.627006530761719 + ], + [ + "coup", + -14.627020835876465 + ], + [ + "▁veils", + -14.627030372619629 + ], + [ + "▁ω", + -14.62704086303711 + ], + [ + "コ", + -14.627106666564941 + ], + [ + "▁FLY", + -14.627126693725586 + ], + [ + "▁Enquiry", + -14.627142906188965 + ], + [ + "▁Crain", + -14.627156257629395 + ], + [ + "▁Murakami", + -14.627161979675293 + ], + [ + "▁PSE", + -14.627204895019531 + ], + [ + "▁parasol", + -14.627209663391113 + ], + [ + "▁aphids", + -14.627215385437012 + ], + [ + "▁GSE", + -14.627246856689453 + ], + [ + "CKS", + -14.627248764038086 + ], + [ + "▁Kanpur", + -14.627263069152832 + ], + [ + "▁CAPE", + -14.627283096313477 + ], + [ + "▁hazing", + -14.62732219696045 + ], + [ + "▁Waugh", + -14.62736701965332 + ], + [ + "▁ranching", + -14.627420425415039 + ], + [ + "▁Muck", + -14.627445220947266 + ], + [ + "UME", + -14.627452850341797 + ], + [ + "borrow", + -14.627488136291504 + ], + [ + "pregnancy", + -14.627490043640137 + ], + [ + "composer", + -14.627496719360352 + ], + [ + "▁berm", + -14.627509117126465 + ], + [ + "tourist", + -14.627517700195312 + ], + [ + "▁bibs", + -14.627518653869629 + ], + [ + "▁laudable", + -14.62757396697998 + ], + [ + "1921", + -14.627580642700195 + ], + [ + "ilation", + -14.627585411071777 + ], + [ + "▁Dap", + -14.627603530883789 + ], + [ + "horsepower", + -14.62762451171875 + ], + [ + "Milk", + -14.627645492553711 + ], + [ + "▁blobs", + -14.627680778503418 + ], + [ + "▁acquirer", + -14.627694129943848 + ], + [ + "Heavy", + -14.627707481384277 + ], + [ + "▁aeruginosa", + -14.627731323242188 + ], + [ + "▁Watched", + -14.627741813659668 + ], + [ + "▁forbade", + -14.627788543701172 + ], + [ + "▁Ginn", + -14.627856254577637 + ], + [ + "▁camber", + -14.627901077270508 + ], + [ + "▁paisley", + -14.627927780151367 + ], + [ + "▁Ovid", + -14.627934455871582 + ], + [ + "لي", + -14.627973556518555 + ], + [ + "▁LATE", + -14.62799072265625 + ], + [ + "arie", + -14.62804889678955 + ], + [ + "▁Jayhawks", + -14.628049850463867 + ], + [ + "▁GFC", + -14.628116607666016 + ], + [ + "▁memorization", + -14.628117561340332 + ], + [ + "▁wii", + -14.628122329711914 + ], + [ + "▁frailty", + -14.628144264221191 + ], + [ + "beans", + -14.628155708312988 + ], + [ + "▁Errol", + -14.628173828125 + ], + [ + "▁vill", + -14.628183364868164 + ], + [ + "▁cz", + -14.628194808959961 + ], + [ + "▁ruff", + -14.628199577331543 + ], + [ + "matics", + -14.628239631652832 + ], + [ + "▁oligarchs", + -14.628270149230957 + ], + [ + "▁Wam", + -14.628273010253906 + ], + [ + "▁DARPA", + -14.628361701965332 + ], + [ + "▁Bruges", + -14.628365516662598 + ], + [ + "▁Dreyfus", + -14.62839126586914 + ], + [ + "▁smoothest", + -14.628396034240723 + ], + [ + "schein", + -14.62840747833252 + ], + [ + "ynn", + -14.628417015075684 + ], + [ + "4500", + -14.628434181213379 + ], + [ + "▁Excalibur", + -14.62844181060791 + ], + [ + "Sister", + -14.62845516204834 + ], + [ + "▁Townhouse", + -14.628486633300781 + ], + [ + "▁Nous", + -14.628581047058105 + ], + [ + "▁comming", + -14.628604888916016 + ], + [ + "▁McCra", + -14.62862491607666 + ], + [ + "▁CDM", + -14.628636360168457 + ], + [ + "▁lifters", + -14.628649711608887 + ], + [ + "▁Scribe", + -14.628655433654785 + ], + [ + "þ", + -14.628676414489746 + ], + [ + "▁£0", + -14.628691673278809 + ], + [ + "▁745", + -14.628701210021973 + ], + [ + "▁McCaffrey", + -14.628826141357422 + ], + [ + "▁Brunette", + -14.628862380981445 + ], + [ + "1927", + -14.628874778747559 + ], + [ + "Communication", + -14.628888130187988 + ], + [ + "moth", + -14.628926277160645 + ], + [ + "▁Limitation", + -14.628926277160645 + ], + [ + "dó", + -14.628973007202148 + ], + [ + "▁subcategories", + -14.628995895385742 + ], + [ + "▁632", + -14.628997802734375 + ], + [ + "▁Backstage", + -14.629034042358398 + ], + [ + "▁easygoing", + -14.629053115844727 + ], + [ + "▁nostril", + -14.629161834716797 + ], + [ + "▁javelin", + -14.629169464111328 + ], + [ + "▁Darin", + -14.629173278808594 + ], + [ + "▁trapper", + -14.62917709350586 + ], + [ + "▁Norah", + -14.629179954528809 + ], + [ + "▁Tarn", + -14.629179954528809 + ], + [ + "▁WORTH", + -14.629191398620605 + ], + [ + "▁Shap", + -14.62922477722168 + ], + [ + "stopper", + -14.629237174987793 + ], + [ + "▁Longest", + -14.62926197052002 + ], + [ + "▁simmered", + -14.629262924194336 + ], + [ + "▁Ferra", + -14.629321098327637 + ], + [ + "▁Erase", + -14.629361152648926 + ], + [ + "igra", + -14.629378318786621 + ], + [ + "cii", + -14.62938404083252 + ], + [ + "DRC", + -14.629432678222656 + ], + [ + "▁SEED", + -14.629446983337402 + ], + [ + "▁SMM", + -14.62948226928711 + ], + [ + "YF", + -14.62951946258545 + ], + [ + "▁Thie", + -14.629521369934082 + ], + [ + "▁toppling", + -14.629535675048828 + ], + [ + "▁stasis", + -14.629541397094727 + ], + [ + "дел", + -14.629593849182129 + ], + [ + "Maine", + -14.629598617553711 + ], + [ + "▁dieser", + -14.629602432250977 + ], + [ + "▁affidavits", + -14.62964916229248 + ], + [ + "▁Sounders", + -14.629691123962402 + ], + [ + "่", + -14.629693984985352 + ], + [ + "▁whitewashed", + -14.629704475402832 + ], + [ + "اس", + -14.629733085632324 + ], + [ + "▁partisanship", + -14.629737854003906 + ], + [ + "opera", + -14.629756927490234 + ], + [ + "▁Epsilon", + -14.629764556884766 + ], + [ + "▁Auctioneer", + -14.629803657531738 + ], + [ + "▁CRAZY", + -14.629920959472656 + ], + [ + "absorbing", + -14.629929542541504 + ], + [ + "▁zy", + -14.6299409866333 + ], + [ + "▁mimosa", + -14.629951477050781 + ], + [ + "▁Motif", + -14.630023002624512 + ], + [ + "▁Tropicana", + -14.630024909973145 + ], + [ + "Iowa", + -14.630034446716309 + ], + [ + "▁rho", + -14.630040168762207 + ], + [ + "▁overwritten", + -14.6300687789917 + ], + [ + "▁adrenalin", + -14.630126953125 + ], + [ + "▁aggregating", + -14.630143165588379 + ], + [ + "ompa", + -14.630166053771973 + ], + [ + "PHY", + -14.63017749786377 + ], + [ + "▁Freebie", + -14.630191802978516 + ], + [ + "▁dragonfly", + -14.63019847869873 + ], + [ + "▁obscuring", + -14.630206108093262 + ], + [ + "▁assassinations", + -14.630230903625488 + ], + [ + "erde", + -14.630253791809082 + ], + [ + "▁Yonge", + -14.63028621673584 + ], + [ + "hok", + -14.63029670715332 + ], + [ + "appy", + -14.630305290222168 + ], + [ + "▁Asad", + -14.63035774230957 + ], + [ + "▁alphanumeric", + -14.630367279052734 + ], + [ + "▁maha", + -14.630388259887695 + ], + [ + "▁Tecno", + -14.630413055419922 + ], + [ + "▁του", + -14.630472183227539 + ], + [ + "▁esse", + -14.63047981262207 + ], + [ + "▁tbh", + -14.630499839782715 + ], + [ + "eño", + -14.630513191223145 + ], + [ + "▁Wickham", + -14.63058090209961 + ], + [ + "hadi", + -14.63061809539795 + ], + [ + "▁calcite", + -14.63062572479248 + ], + [ + "역", + -14.630629539489746 + ], + [ + "SURE", + -14.630669593811035 + ], + [ + "Crime", + -14.630674362182617 + ], + [ + "pray", + -14.63076400756836 + ], + [ + "▁molt", + -14.630765914916992 + ], + [ + "▁Hoskins", + -14.630800247192383 + ], + [ + "▁eons", + -14.630809783935547 + ], + [ + "▁Boba", + -14.630849838256836 + ], + [ + "indian", + -14.630850791931152 + ], + [ + "▁Skunk", + -14.630890846252441 + ], + [ + "▁Martino", + -14.63090991973877 + ], + [ + "Flat", + -14.63094425201416 + ], + [ + "▁anatomic", + -14.630951881408691 + ], + [ + "▁baboon", + -14.630974769592285 + ], + [ + "▁renderer", + -14.630979537963867 + ], + [ + "▁conceptualized", + -14.631046295166016 + ], + [ + "▁caddie", + -14.631047248840332 + ], + [ + "mandated", + -14.631068229675293 + ], + [ + "▁Metaphor", + -14.63107681274414 + ], + [ + "▁lop", + -14.631077766418457 + ], + [ + "acrylate", + -14.631109237670898 + ], + [ + "▁jerking", + -14.63111400604248 + ], + [ + "▁falafel", + -14.631118774414062 + ], + [ + "uela", + -14.63112735748291 + ], + [ + "intra", + -14.631152153015137 + ], + [ + "▁Exhibits", + -14.631184577941895 + ], + [ + "Lei", + -14.631217002868652 + ], + [ + "DEP", + -14.631218910217285 + ], + [ + "情報", + -14.631230354309082 + ], + [ + "▁PRIOR", + -14.631239891052246 + ], + [ + "▁detonate", + -14.631256103515625 + ], + [ + "▁Yucatan", + -14.631257057189941 + ], + [ + "▁Spies", + -14.631270408630371 + ], + [ + "▁Biscayne", + -14.631349563598633 + ], + [ + "▁Iglesias", + -14.631412506103516 + ], + [ + "▁SMD", + -14.63142204284668 + ], + [ + "unni", + -14.631464958190918 + ], + [ + "▁apoptotic", + -14.631467819213867 + ], + [ + "▁Brei", + -14.631494522094727 + ], + [ + "▁cysteine", + -14.631497383117676 + ], + [ + "QQ", + -14.631525039672852 + ], + [ + "▁CLAIM", + -14.63154411315918 + ], + [ + "▁да", + -14.631549835205078 + ], + [ + "▁XX", + -14.631558418273926 + ], + [ + "▁unleashes", + -14.631611824035645 + ], + [ + "▁industrialist", + -14.63166618347168 + ], + [ + "▁idiocy", + -14.631671905517578 + ], + [ + "▁Cortland", + -14.631677627563477 + ], + [ + "legitimate", + -14.631695747375488 + ], + [ + "▁Cruel", + -14.631725311279297 + ], + [ + "SIVE", + -14.631731986999512 + ], + [ + "▁Assured", + -14.631734848022461 + ], + [ + "▁elastin", + -14.63176155090332 + ], + [ + "▁summarily", + -14.63180160522461 + ], + [ + "▁earthen", + -14.631807327270508 + ], + [ + "▁radiative", + -14.631819725036621 + ], + [ + "oretic", + -14.63187313079834 + ], + [ + "▁BRIDGE", + -14.63189697265625 + ], + [ + "hydrogen", + -14.631924629211426 + ], + [ + "aten", + -14.631951332092285 + ], + [ + "▁axed", + -14.631957054138184 + ], + [ + "Hon", + -14.631985664367676 + ], + [ + "kele", + -14.631998062133789 + ], + [ + "▁Carbonate", + -14.632019996643066 + ], + [ + "AIM", + -14.632037162780762 + ], + [ + "ritis", + -14.632070541381836 + ], + [ + "▁silencer", + -14.632157325744629 + ], + [ + "▁Malhotra", + -14.632216453552246 + ], + [ + "▁myelin", + -14.632226943969727 + ], + [ + "▁Overcome", + -14.632230758666992 + ], + [ + "ppler", + -14.632233619689941 + ], + [ + "▁QUEEN", + -14.632248878479004 + ], + [ + "▁beekeepers", + -14.632257461547852 + ], + [ + "▁MILES", + -14.632269859313965 + ], + [ + "spinner", + -14.632270812988281 + ], + [ + "▁Westland", + -14.632284164428711 + ], + [ + "FBI", + -14.632306098937988 + ], + [ + "▁premiering", + -14.63234806060791 + ], + [ + "▁PEM", + -14.63237190246582 + ], + [ + "▁Settlements", + -14.632391929626465 + ], + [ + "▁spel", + -14.632401466369629 + ], + [ + "▁soundscape", + -14.632429122924805 + ], + [ + "▁PageRank", + -14.632450103759766 + ], + [ + "▁Illuminated", + -14.632473945617676 + ], + [ + "▁Cigna", + -14.632526397705078 + ], + [ + "rda", + -14.632545471191406 + ], + [ + "AMC", + -14.632566452026367 + ], + [ + "▁condolence", + -14.632568359375 + ], + [ + "▁Spectroscopy", + -14.632576942443848 + ], + [ + "▁Puli", + -14.632593154907227 + ], + [ + "▁watersheds", + -14.632638931274414 + ], + [ + "▁می", + -14.632638931274414 + ], + [ + "signs", + -14.632683753967285 + ], + [ + "▁Occult", + -14.632709503173828 + ], + [ + "▁EXE", + -14.63271427154541 + ], + [ + "▁Seismic", + -14.632735252380371 + ], + [ + "▁BYOD", + -14.63273811340332 + ], + [ + "▁NTSB", + -14.632742881774902 + ], + [ + "▁Bue", + -14.632750511169434 + ], + [ + "▁sty", + -14.63278865814209 + ], + [ + "▁Excavation", + -14.63282585144043 + ], + [ + "▁Ricciardo", + -14.632828712463379 + ], + [ + "reliable", + -14.63283920288086 + ], + [ + "▁impre", + -14.632866859436035 + ], + [ + "lano", + -14.632874488830566 + ], + [ + "▁enslavement", + -14.632915496826172 + ], + [ + "£3", + -14.632925033569336 + ], + [ + "▁benzo", + -14.632989883422852 + ], + [ + "▁tapestries", + -14.633085250854492 + ], + [ + "▁inaccuracy", + -14.633139610290527 + ], + [ + "stern", + -14.633174896240234 + ], + [ + "▁kingpin", + -14.633183479309082 + ], + [ + "▁Wrexham", + -14.633195877075195 + ], + [ + "▁workbooks", + -14.633200645446777 + ], + [ + "▁OAuth", + -14.63320255279541 + ], + [ + "▁Burnside", + -14.633213996887207 + ], + [ + "willed", + -14.633225440979004 + ], + [ + "EEE", + -14.633238792419434 + ], + [ + "Shanghai", + -14.63325023651123 + ], + [ + "▁Riemann", + -14.633296012878418 + ], + [ + "INFRINGEMENT", + -14.633325576782227 + ], + [ + "RAIN", + -14.633332252502441 + ], + [ + "▁Groningen", + -14.633347511291504 + ], + [ + "▁castes", + -14.633369445800781 + ], + [ + "Brun", + -14.633387565612793 + ], + [ + "▁JANE", + -14.63338851928711 + ], + [ + "▁mitral", + -14.63342571258545 + ], + [ + "Dell", + -14.633472442626953 + ], + [ + "▁Allegiance", + -14.633491516113281 + ], + [ + "deploy", + -14.633502006530762 + ], + [ + "AWA", + -14.633513450622559 + ], + [ + "cien", + -14.633529663085938 + ], + [ + "1880", + -14.633533477783203 + ], + [ + "▁Bronte", + -14.633538246154785 + ], + [ + "▁Amgen", + -14.633565902709961 + ], + [ + "▁Messianic", + -14.633569717407227 + ], + [ + "▁Susannah", + -14.633624076843262 + ], + [ + "▁Menace", + -14.633649826049805 + ], + [ + "▁personification", + -14.633684158325195 + ], + [ + "▁imbue", + -14.633688926696777 + ], + [ + "▁touristic", + -14.63371753692627 + ], + [ + "▁Rebbe", + -14.633777618408203 + ], + [ + "Circle", + -14.63379192352295 + ], + [ + "▁Harford", + -14.633851051330566 + ], + [ + "▁chairmanship", + -14.633858680725098 + ], + [ + "▁Warlock", + -14.633862495422363 + ], + [ + "▁reactivate", + -14.633880615234375 + ], + [ + "▁Stub", + -14.633886337280273 + ], + [ + "▁Karel", + -14.633922576904297 + ], + [ + "▁Murat", + -14.633954048156738 + ], + [ + "▁Shami", + -14.634002685546875 + ], + [ + "▁ravenous", + -14.634017944335938 + ], + [ + "▁anticancer", + -14.634025573730469 + ], + [ + "▁MINUTES", + -14.63403034210205 + ], + [ + "▁LOD", + -14.634040832519531 + ], + [ + "climbing", + -14.634055137634277 + ], + [ + "▁blogroll", + -14.634072303771973 + ], + [ + "SIG", + -14.63408088684082 + ], + [ + "▁Sticking", + -14.634105682373047 + ], + [ + "▁Catfish", + -14.634117126464844 + ], + [ + "▁Liners", + -14.634149551391602 + ], + [ + "council", + -14.634163856506348 + ], + [ + "▁Lek", + -14.634233474731445 + ], + [ + "ecke", + -14.634237289428711 + ], + [ + "▁eller", + -14.634245872497559 + ], + [ + "▁‐", + -14.634258270263672 + ], + [ + "▁reconstructions", + -14.634267807006836 + ], + [ + "▁Rises", + -14.634283065795898 + ], + [ + "▁whiny", + -14.63428783416748 + ], + [ + "▁XJ", + -14.634292602539062 + ], + [ + "▁Iced", + -14.634312629699707 + ], + [ + "szt", + -14.634322166442871 + ], + [ + "▁Safely", + -14.634324073791504 + ], + [ + "astra", + -14.634370803833008 + ], + [ + "▁defensible", + -14.634417533874512 + ], + [ + "orte", + -14.634424209594727 + ], + [ + "Robin", + -14.634442329406738 + ], + [ + "1865", + -14.63447093963623 + ], + [ + "▁Asimov", + -14.634509086608887 + ], + [ + "▁presale", + -14.634519577026367 + ], + [ + "▁soffit", + -14.634521484375 + ], + [ + "▁DISCOUNT", + -14.634528160095215 + ], + [ + "▁Enugu", + -14.634530067443848 + ], + [ + "▁Alias", + -14.634532928466797 + ], + [ + "▁Demonstrated", + -14.634532928466797 + ], + [ + "▁babysit", + -14.634532928466797 + ], + [ + "▁Bloomingdale", + -14.63457202911377 + ], + [ + "▁Molecules", + -14.634580612182617 + ], + [ + "▁Rebuild", + -14.634612083435059 + ], + [ + "▁고", + -14.634637832641602 + ], + [ + "nodes", + -14.634639739990234 + ], + [ + "vance", + -14.634642601013184 + ], + [ + "LGBT", + -14.634647369384766 + ], + [ + "▁Cameo", + -14.634653091430664 + ], + [ + "Esp", + -14.634671211242676 + ], + [ + "▁Shazam", + -14.634686470031738 + ], + [ + "▁Rupp", + -14.63469123840332 + ], + [ + "ří", + -14.634699821472168 + ], + [ + "crushing", + -14.634716987609863 + ], + [ + "▁chugging", + -14.634734153747559 + ], + [ + "▁supplication", + -14.63475227355957 + ], + [ + "rsch", + -14.634790420532227 + ], + [ + "tles", + -14.634803771972656 + ], + [ + "▁Coyne", + -14.634809494018555 + ], + [ + "zeug", + -14.6348237991333 + ], + [ + "▁ZR", + -14.634832382202148 + ], + [ + "▁mead", + -14.634840965270996 + ], + [ + "▁Fashioned", + -14.634897232055664 + ], + [ + "▁jews", + -14.634910583496094 + ], + [ + "▁capri", + -14.634963035583496 + ], + [ + "▁Pogo", + -14.635001182556152 + ], + [ + "▁nudging", + -14.635041236877441 + ], + [ + "▁showpiece", + -14.63506031036377 + ], + [ + "▁Pyle", + -14.63515567779541 + ], + [ + "▁Montero", + -14.635207176208496 + ], + [ + "▁Quixote", + -14.635211944580078 + ], + [ + "▁precept", + -14.63525390625 + ], + [ + "▁973", + -14.635274887084961 + ], + [ + "▁Cheating", + -14.635355949401855 + ], + [ + "бо", + -14.635369300842285 + ], + [ + "elberg", + -14.63537311553955 + ], + [ + "xr", + -14.635388374328613 + ], + [ + "▁Machining", + -14.635396957397461 + ], + [ + "▁Sask", + -14.635407447814941 + ], + [ + "▁Tuxedo", + -14.635416984558105 + ], + [ + "▁Reprint", + -14.635445594787598 + ], + [ + "ậ", + -14.635461807250977 + ], + [ + "▁islets", + -14.635469436645508 + ], + [ + "omar", + -14.635504722595215 + ], + [ + "▁Rubbish", + -14.635519981384277 + ], + [ + "▁unappealing", + -14.635526657104492 + ], + [ + "Keeping", + -14.63553524017334 + ], + [ + "▁aliment", + -14.635544776916504 + ], + [ + "▁Monograph", + -14.635550498962402 + ], + [ + "▁PEC", + -14.635605812072754 + ], + [ + "▁Keh", + -14.635615348815918 + ], + [ + "▁kv", + -14.635615348815918 + ], + [ + "1908", + -14.63564682006836 + ], + [ + "▁786", + -14.635650634765625 + ], + [ + "▁Dales", + -14.635665893554688 + ], + [ + "▁duffel", + -14.635677337646484 + ], + [ + "▁slapstick", + -14.6356840133667 + ], + [ + "▁stymied", + -14.635729789733887 + ], + [ + "▁glamor", + -14.635740280151367 + ], + [ + "포", + -14.635748863220215 + ], + [ + "▁thundering", + -14.635787010192871 + ], + [ + "▁Ringtone", + -14.63588809967041 + ], + [ + "FLA", + -14.63590145111084 + ], + [ + "сто", + -14.635978698730469 + ], + [ + "▁Wicklow", + -14.635998725891113 + ], + [ + "arella", + -14.636002540588379 + ], + [ + "▁MKV", + -14.636002540588379 + ], + [ + "▁ihr", + -14.636038780212402 + ], + [ + "▁marchers", + -14.636048316955566 + ], + [ + "punct", + -14.636052131652832 + ], + [ + "Utah", + -14.636101722717285 + ], + [ + "▁Canonical", + -14.636144638061523 + ], + [ + "▁Wahlberg", + -14.636175155639648 + ], + [ + "▁parodies", + -14.636184692382812 + ], + [ + "▁omnipotent", + -14.63626766204834 + ], + [ + "▁Rucker", + -14.636271476745605 + ], + [ + "iture", + -14.636311531066895 + ], + [ + "▁Xp", + -14.63633918762207 + ], + [ + "▁Nola", + -14.636353492736816 + ], + [ + "Suppl", + -14.636363983154297 + ], + [ + "▁Waitrose", + -14.636399269104004 + ], + [ + "▁GWAS", + -14.636434555053711 + ], + [ + "▁USG", + -14.636434555053711 + ], + [ + "▁Alisa", + -14.636449813842773 + ], + [ + "正", + -14.636451721191406 + ], + [ + "Extreme", + -14.636463165283203 + ], + [ + "▁Sebring", + -14.636478424072266 + ], + [ + "▁Rehearsal", + -14.636490821838379 + ], + [ + "SING", + -14.636553764343262 + ], + [ + "▁reconstituted", + -14.636579513549805 + ], + [ + "weiler", + -14.636597633361816 + ], + [ + "▁Intentional", + -14.636597633361816 + ], + [ + "▁Polyurethane", + -14.63662052154541 + ], + [ + "▁GRAMMY", + -14.636648178100586 + ], + [ + "▁loam", + -14.63668441772461 + ], + [ + "Psych", + -14.636727333068848 + ], + [ + "ư", + -14.636739730834961 + ], + [ + "▁precludes", + -14.636748313903809 + ], + [ + "▁blesses", + -14.63675594329834 + ], + [ + "▁RSL", + -14.636760711669922 + ], + [ + "▁NWA", + -14.636787414550781 + ], + [ + "▁worktops", + -14.63680362701416 + ], + [ + "illie", + -14.63681697845459 + ], + [ + "▁Symbolic", + -14.636848449707031 + ], + [ + "▁Gershwin", + -14.636855125427246 + ], + [ + "estrogen", + -14.636856079101562 + ], + [ + "▁Caffe", + -14.636857986450195 + ], + [ + "▁orthotics", + -14.636857986450195 + ], + [ + "▁irregularly", + -14.636860847473145 + ], + [ + "▁Mek", + -14.636861801147461 + ], + [ + "▁NoSQL", + -14.636948585510254 + ], + [ + "▁khan", + -14.636970520019531 + ], + [ + "▁Postdoctoral", + -14.636981010437012 + ], + [ + "gris", + -14.636987686157227 + ], + [ + "Done", + -14.637007713317871 + ], + [ + "▁specializations", + -14.637017250061035 + ], + [ + "▁JULY", + -14.637072563171387 + ], + [ + "▁Overstock", + -14.63709545135498 + ], + [ + "▁Suzhou", + -14.637125968933105 + ], + [ + "▁juego", + -14.637164115905762 + ], + [ + "▁Jez", + -14.637166023254395 + ], + [ + "▁critiquing", + -14.637167930603027 + ], + [ + "▁Penske", + -14.637177467346191 + ], + [ + "▁Polling", + -14.637188911437988 + ], + [ + "▁circumcised", + -14.637215614318848 + ], + [ + "▁dietician", + -14.637225151062012 + ], + [ + "Currently", + -14.637228965759277 + ], + [ + "wanda", + -14.637238502502441 + ], + [ + "Lower", + -14.637290000915527 + ], + [ + "▁gulls", + -14.637324333190918 + ], + [ + "▁Siamese", + -14.63732624053955 + ], + [ + "▁Improves", + -14.63734245300293 + ], + [ + "▁Milos", + -14.637344360351562 + ], + [ + "▁Adrien", + -14.63736343383789 + ], + [ + "▁Sump", + -14.637364387512207 + ], + [ + "▁cornerstones", + -14.637367248535156 + ], + [ + "Tank", + -14.63737678527832 + ], + [ + "▁fie", + -14.637386322021484 + ], + [ + "▁alarmist", + -14.637415885925293 + ], + [ + "▁Whitewater", + -14.63741683959961 + ], + [ + "▁eels", + -14.637447357177734 + ], + [ + "▁ketamine", + -14.63750171661377 + ], + [ + "▁UPA", + -14.6375093460083 + ], + [ + "▁Algiers", + -14.637521743774414 + ], + [ + "▁behoove", + -14.63752269744873 + ], + [ + "▁OpenOffice", + -14.63753604888916 + ], + [ + "▁armband", + -14.637567520141602 + ], + [ + "▁RAIN", + -14.637585639953613 + ], + [ + "Jonathan", + -14.637598991394043 + ], + [ + "▁Smashwords", + -14.637667655944824 + ], + [ + "▁necro", + -14.63769817352295 + ], + [ + "▁Sb", + -14.637707710266113 + ], + [ + "▁reassert", + -14.637711524963379 + ], + [ + "▁Appears", + -14.637731552124023 + ], + [ + "▁Tb", + -14.63774299621582 + ], + [ + "▁Yulia", + -14.637763023376465 + ], + [ + "▁Fx", + -14.637803077697754 + ], + [ + "▁telematics", + -14.637811660766602 + ], + [ + "▁BMD", + -14.637825965881348 + ], + [ + "▁Clapham", + -14.637828826904297 + ], + [ + "▁Pris", + -14.637839317321777 + ], + [ + "▁Rashford", + -14.63788890838623 + ], + [ + "▁cuckoo", + -14.637956619262695 + ], + [ + "▁preemptive", + -14.637958526611328 + ], + [ + "Laws", + -14.637965202331543 + ], + [ + "▁Entertainer", + -14.637969970703125 + ], + [ + "▁transportable", + -14.638026237487793 + ], + [ + "Karl", + -14.638045310974121 + ], + [ + "▁Darnold", + -14.638063430786133 + ], + [ + "▁Brentford", + -14.638066291809082 + ], + [ + "▁Neonatal", + -14.63809871673584 + ], + [ + "Ward", + -14.63813304901123 + ], + [ + "▁inducement", + -14.638138771057129 + ], + [ + "SDA", + -14.63818645477295 + ], + [ + "hoon", + -14.638224601745605 + ], + [ + "▁Ashram", + -14.638236999511719 + ], + [ + "▁Beating", + -14.6383056640625 + ], + [ + "▁scaly", + -14.638307571411133 + ], + [ + "▁Dreamer", + -14.638322830200195 + ], + [ + "ROP", + -14.638328552246094 + ], + [ + "Cru", + -14.638372421264648 + ], + [ + "▁sprains", + -14.638436317443848 + ], + [ + "▁biblio", + -14.638457298278809 + ], + [ + "AYA", + -14.638473510742188 + ], + [ + "Pull", + -14.638506889343262 + ], + [ + "▁snazzy", + -14.638543128967285 + ], + [ + "▁Universalist", + -14.638564109802246 + ], + [ + "▁Rascal", + -14.638615608215332 + ], + [ + "▁806", + -14.63866901397705 + ], + [ + "▁Nikol", + -14.638692855834961 + ], + [ + "▁Kame", + -14.638707160949707 + ], + [ + "disaster", + -14.638716697692871 + ], + [ + "▁perturbation", + -14.638731002807617 + ], + [ + "▁ILO", + -14.638750076293945 + ], + [ + "egna", + -14.63875675201416 + ], + [ + "▁effet", + -14.63875961303711 + ], + [ + "ança", + -14.638762474060059 + ], + [ + "brooke", + -14.638835906982422 + ], + [ + "▁Koala", + -14.638849258422852 + ], + [ + "tropin", + -14.638886451721191 + ], + [ + "▁Loudoun", + -14.638909339904785 + ], + [ + "▁TEFL", + -14.63891315460205 + ], + [ + "▁unfairness", + -14.638962745666504 + ], + [ + "▁thinnest", + -14.63897705078125 + ], + [ + "FIA", + -14.638999938964844 + ], + [ + "▁fois", + -14.639018058776855 + ], + [ + "▁Mahmood", + -14.639046669006348 + ], + [ + "▁Sociological", + -14.639105796813965 + ], + [ + "▁Posi", + -14.639113426208496 + ], + [ + "oosh", + -14.639134407043457 + ], + [ + "▁acacia", + -14.63915729522705 + ], + [ + "▁placate", + -14.63916301727295 + ], + [ + "▁boarders", + -14.639164924621582 + ], + [ + "▁Mums", + -14.63919448852539 + ], + [ + "▁Nunez", + -14.639209747314453 + ], + [ + "Progress", + -14.63921070098877 + ], + [ + "▁defini", + -14.639217376708984 + ], + [ + "▁adenosine", + -14.639230728149414 + ], + [ + "▁Omer", + -14.639235496520996 + ], + [ + "▁MILL", + -14.639266967773438 + ], + [ + "▁glycoprotein", + -14.639275550842285 + ], + [ + "▁CONTINUE", + -14.63928508758545 + ], + [ + "▁objecting", + -14.639291763305664 + ], + [ + "Forever", + -14.639322280883789 + ], + [ + "▁Deleted", + -14.63935661315918 + ], + [ + "▁Scramble", + -14.639365196228027 + ], + [ + "▁Desc", + -14.639404296875 + ], + [ + "▁CAME", + -14.639422416687012 + ], + [ + "▁Rigby", + -14.639437675476074 + ], + [ + "▁Autobiography", + -14.639440536499023 + ], + [ + "ISBN", + -14.639446258544922 + ], + [ + "間", + -14.639447212219238 + ], + [ + "▁binocular", + -14.63945484161377 + ], + [ + "▁meniscus", + -14.63945484161377 + ], + [ + "▁©2019", + -14.639528274536133 + ], + [ + "ckin", + -14.6395845413208 + ], + [ + "▁tableau", + -14.639595031738281 + ], + [ + "1904", + -14.639619827270508 + ], + [ + "▁Telluride", + -14.639619827270508 + ], + [ + "▁Rhee", + -14.639652252197266 + ], + [ + "▁Biblio", + -14.639663696289062 + ], + [ + "▁Mbappe", + -14.639707565307617 + ], + [ + "▁Allaah", + -14.639718055725098 + ], + [ + "▁trike", + -14.639719009399414 + ], + [ + "ERR", + -14.639724731445312 + ], + [ + "octane", + -14.639728546142578 + ], + [ + "▁Stables", + -14.639775276184082 + ], + [ + "▁Hadith", + -14.639781951904297 + ], + [ + "▁774", + -14.639822959899902 + ], + [ + "▁Ignorance", + -14.639871597290039 + ], + [ + "▁MEMBERS", + -14.639875411987305 + ], + [ + "▁calci", + -14.639933586120605 + ], + [ + "▁Sinus", + -14.639994621276855 + ], + [ + "▁viscose", + -14.640039443969727 + ], + [ + "▁obstetrics", + -14.640046119689941 + ], + [ + "affordable", + -14.6400785446167 + ], + [ + "gonia", + -14.64012622833252 + ], + [ + "rides", + -14.64017105102539 + ], + [ + "▁straightener", + -14.64025592803955 + ], + [ + "▁SiteGround", + -14.640286445617676 + ], + [ + "▁lofts", + -14.640336990356445 + ], + [ + "▁Sweetwater", + -14.640344619750977 + ], + [ + "▁VIOLATION", + -14.640401840209961 + ], + [ + "timo", + -14.640450477600098 + ], + [ + "orial", + -14.640454292297363 + ], + [ + "▁instituting", + -14.640459060668945 + ], + [ + "kinase", + -14.640514373779297 + ], + [ + "▁hipsters", + -14.640520095825195 + ], + [ + "▁Garvey", + -14.640562057495117 + ], + [ + "▁Alte", + -14.640564918518066 + ], + [ + "▁€100", + -14.640568733215332 + ], + [ + "▁Hoc", + -14.640585899353027 + ], + [ + "featuring", + -14.640597343444824 + ], + [ + "▁culling", + -14.640650749206543 + ], + [ + "▁refactoring", + -14.640716552734375 + ], + [ + "▁Teaser", + -14.64072036743164 + ], + [ + "▁656", + -14.640722274780273 + ], + [ + "▁Takeda", + -14.640725135803223 + ], + [ + "▁toolset", + -14.640735626220703 + ], + [ + "▁Soci", + -14.640755653381348 + ], + [ + "▁Educating", + -14.640756607055664 + ], + [ + "▁freer", + -14.640812873840332 + ], + [ + "Andrea", + -14.640844345092773 + ], + [ + "▁acclimated", + -14.640847206115723 + ], + [ + "▁Shana", + -14.64085578918457 + ], + [ + "▁spouting", + -14.640896797180176 + ], + [ + "▁CPAs", + -14.640938758850098 + ], + [ + "▁Mesquite", + -14.64094352722168 + ], + [ + "▁Shoreditch", + -14.640961647033691 + ], + [ + "Sample", + -14.640985488891602 + ], + [ + "Reviews", + -14.641053199768066 + ], + [ + "▁의", + -14.641063690185547 + ], + [ + "hoop", + -14.641073226928711 + ], + [ + "▁Hone", + -14.641077995300293 + ], + [ + "fru", + -14.641164779663086 + ], + [ + "masa", + -14.641203880310059 + ], + [ + "WAS", + -14.641216278076172 + ], + [ + "▁jew", + -14.641234397888184 + ], + [ + "JUST", + -14.641321182250977 + ], + [ + "ák", + -14.64133071899414 + ], + [ + "▁Avril", + -14.641336441040039 + ], + [ + "▁Menon", + -14.64137077331543 + ], + [ + "2024", + -14.641403198242188 + ], + [ + "▁Eti", + -14.64140796661377 + ], + [ + "▁sneaked", + -14.64141845703125 + ], + [ + "▁dampness", + -14.641434669494629 + ], + [ + "▁Sunnis", + -14.641446113586426 + ], + [ + "silk", + -14.641458511352539 + ], + [ + "▁Torri", + -14.641519546508789 + ], + [ + "▁SCE", + -14.641526222229004 + ], + [ + "▁steed", + -14.641542434692383 + ], + [ + "▁ASF", + -14.641622543334961 + ], + [ + "SCP", + -14.641630172729492 + ], + [ + "Ashley", + -14.641654014587402 + ], + [ + "▁eX", + -14.641715049743652 + ], + [ + "tribe", + -14.6417818069458 + ], + [ + "▁Stalker", + -14.641804695129395 + ], + [ + "▁Adjusting", + -14.641838073730469 + ], + [ + "▁Crick", + -14.641862869262695 + ], + [ + "▁Propecia", + -14.641884803771973 + ], + [ + "▁asthmatic", + -14.641886711120605 + ], + [ + "▁Tonk", + -14.641887664794922 + ], + [ + "▁Superbowl", + -14.641899108886719 + ], + [ + "lipo", + -14.641936302185059 + ], + [ + "▁Enclosed", + -14.64194393157959 + ], + [ + "yeon", + -14.641951560974121 + ], + [ + "▁brigades", + -14.64195728302002 + ], + [ + "▁Influential", + -14.641966819763184 + ], + [ + "▁eventuality", + -14.64198112487793 + ], + [ + "▁crouch", + -14.642026901245117 + ], + [ + "▁Linz", + -14.642038345336914 + ], + [ + "▁Bernier", + -14.642044067382812 + ], + [ + "▁suiting", + -14.642059326171875 + ], + [ + "▁Rosé", + -14.642101287841797 + ], + [ + "▁rar", + -14.64212417602539 + ], + [ + "▁unspoilt", + -14.642152786254883 + ], + [ + "▁Permissions", + -14.642154693603516 + ], + [ + "▁heretical", + -14.64217758178711 + ], + [ + "×3", + -14.642253875732422 + ], + [ + "▁fissure", + -14.642300605773926 + ], + [ + "▁Technologist", + -14.642309188842773 + ], + [ + "▁Selections", + -14.642327308654785 + ], + [ + "Issue", + -14.642337799072266 + ], + [ + "▁على", + -14.642376899719238 + ], + [ + "▁Cim", + -14.642406463623047 + ], + [ + "▁Insects", + -14.642410278320312 + ], + [ + "▁intercede", + -14.64242172241211 + ], + [ + "▁491", + -14.642500877380371 + ], + [ + "▁NSK", + -14.642526626586914 + ], + [ + "▁bergamot", + -14.642526626586914 + ], + [ + "▁feverish", + -14.642533302307129 + ], + [ + "▁HDPE", + -14.642537117004395 + ], + [ + "▁CARS", + -14.642580032348633 + ], + [ + "▁motorsports", + -14.642586708068848 + ], + [ + "pepper", + -14.642590522766113 + ], + [ + "enu", + -14.642657279968262 + ], + [ + "boa", + -14.642661094665527 + ], + [ + "▁barks", + -14.64273738861084 + ], + [ + "▁Cordless", + -14.6427640914917 + ], + [ + "▁Saj", + -14.642818450927734 + ], + [ + "▁본", + -14.642852783203125 + ], + [ + "clus", + -14.642854690551758 + ], + [ + "▁PBA", + -14.642888069152832 + ], + [ + "▁streamlines", + -14.642906188964844 + ], + [ + "▁Clove", + -14.642910957336426 + ], + [ + "pelle", + -14.643049240112305 + ], + [ + "▁Ehrlich", + -14.643057823181152 + ], + [ + "▁Comstock", + -14.643062591552734 + ], + [ + "hli", + -14.643070220947266 + ], + [ + "icola", + -14.643085479736328 + ], + [ + "▁Foe", + -14.643144607543945 + ], + [ + "▁Notorious", + -14.643153190612793 + ], + [ + "DIR", + -14.643178939819336 + ], + [ + "▁Cows", + -14.643233299255371 + ], + [ + "▁Neem", + -14.643247604370117 + ], + [ + "▁singleton", + -14.6432523727417 + ], + [ + "▁Aramco", + -14.643264770507812 + ], + [ + "▁Scared", + -14.643271446228027 + ], + [ + "▁Pera", + -14.643298149108887 + ], + [ + "▁Prodigy", + -14.64330005645752 + ], + [ + "▁spectre", + -14.643351554870605 + ], + [ + "invisible", + -14.64335823059082 + ], + [ + "▁Newsletters", + -14.643377304077148 + ], + [ + "udes", + -14.643416404724121 + ], + [ + "▁policymaking", + -14.643425941467285 + ], + [ + "▁Mallard", + -14.6434326171875 + ], + [ + "▁Vertex", + -14.643438339233398 + ], + [ + "▁JAY", + -14.643453598022461 + ], + [ + "▁Gervais", + -14.6434965133667 + ], + [ + "▁Cornelia", + -14.643547058105469 + ], + [ + "GATE", + -14.643583297729492 + ], + [ + "voted", + -14.643588066101074 + ], + [ + "▁purifiers", + -14.643641471862793 + ], + [ + "▁Mea", + -14.643657684326172 + ], + [ + "▁Keno", + -14.643664360046387 + ], + [ + "Association", + -14.643675804138184 + ], + [ + "▁transcended", + -14.643692016601562 + ], + [ + "▁MUD", + -14.643693923950195 + ], + [ + "▁Junkie", + -14.643707275390625 + ], + [ + "▁Kevlar", + -14.643733978271484 + ], + [ + "▁Pata", + -14.643753051757812 + ], + [ + "founding", + -14.643768310546875 + ], + [ + "▁conjugation", + -14.643786430358887 + ], + [ + "▁bashed", + -14.643792152404785 + ], + [ + "Correct", + -14.643799781799316 + ], + [ + "netics", + -14.643824577331543 + ], + [ + "تر", + -14.643855094909668 + ], + [ + "drained", + -14.643856048583984 + ], + [ + "▁Martyrs", + -14.643881797790527 + ], + [ + "▁Bonny", + -14.643885612487793 + ], + [ + "▁clothe", + -14.643898010253906 + ], + [ + "▁ric", + -14.643908500671387 + ], + [ + "▁individualistic", + -14.643954277038574 + ], + [ + "▁Ramallah", + -14.643985748291016 + ], + [ + "ေ", + -14.643990516662598 + ], + [ + "fungal", + -14.643993377685547 + ], + [ + "▁smacking", + -14.644014358520508 + ], + [ + "▁COUNT", + -14.644041061401367 + ], + [ + "▁Wiel", + -14.644047737121582 + ], + [ + "trips", + -14.644049644470215 + ], + [ + "니", + -14.644074440002441 + ], + [ + "VET", + -14.644105911254883 + ], + [ + "▁Colm", + -14.644131660461426 + ], + [ + "chek", + -14.644134521484375 + ], + [ + "▁buoys", + -14.644135475158691 + ], + [ + "▁yup", + -14.644142150878906 + ], + [ + "▁sulf", + -14.644169807434082 + ], + [ + "▁Performers", + -14.644217491149902 + ], + [ + "▁incredulous", + -14.644292831420898 + ], + [ + "TORY", + -14.644295692443848 + ], + [ + "▁Matcha", + -14.644307136535645 + ], + [ + "Sounds", + -14.644320487976074 + ], + [ + "▁QUESTIONS", + -14.644330978393555 + ], + [ + "▁bangalore", + -14.644336700439453 + ], + [ + "▁dru", + -14.644368171691895 + ], + [ + "取", + -14.644368171691895 + ], + [ + "▁Photon", + -14.644401550292969 + ], + [ + "▁Conta", + -14.644429206848145 + ], + [ + "キ", + -14.644441604614258 + ], + [ + "▁Dwell", + -14.6444730758667 + ], + [ + "▁schoolteacher", + -14.644477844238281 + ], + [ + "▁underbelly", + -14.644497871398926 + ], + [ + "▁mira", + -14.644508361816406 + ], + [ + "▁BCG", + -14.644514083862305 + ], + [ + "▁coincidences", + -14.644515991210938 + ], + [ + "▁Endgame", + -14.644525527954102 + ], + [ + "▁pir", + -14.644545555114746 + ], + [ + "名", + -14.644563674926758 + ], + [ + "Warning", + -14.644577980041504 + ], + [ + "▁NCO", + -14.64458179473877 + ], + [ + "▁rin", + -14.644596099853516 + ], + [ + "▁Asteroid", + -14.644614219665527 + ], + [ + "▁obliterate", + -14.644635200500488 + ], + [ + "▁CERT", + -14.644640922546387 + ], + [ + "▁LAT", + -14.644670486450195 + ], + [ + "▁flees", + -14.644680976867676 + ], + [ + "▁Theron", + -14.644695281982422 + ], + [ + "doer", + -14.644715309143066 + ], + [ + "▁puffing", + -14.644728660583496 + ], + [ + "antra", + -14.644744873046875 + ], + [ + "▁convo", + -14.644758224487305 + ], + [ + "▁premeditated", + -14.644776344299316 + ], + [ + "ggan", + -14.644801139831543 + ], + [ + "▁Nami", + -14.64484691619873 + ], + [ + "พ", + -14.644877433776855 + ], + [ + "▁Fijian", + -14.644879341125488 + ], + [ + "▁churchyard", + -14.644886016845703 + ], + [ + "oje", + -14.64489459991455 + ], + [ + "▁UPVC", + -14.644916534423828 + ], + [ + "▁confectioner", + -14.644927024841309 + ], + [ + "destruction", + -14.644976615905762 + ], + [ + "Conn", + -14.645002365112305 + ], + [ + "▁baseboard", + -14.645015716552734 + ], + [ + "Details", + -14.64502239227295 + ], + [ + "Purpose", + -14.645037651062012 + ], + [ + "▁LEAF", + -14.64504623413086 + ], + [ + "ット", + -14.645049095153809 + ], + [ + "▁pinkish", + -14.64510726928711 + ], + [ + "▁snooping", + -14.645136833190918 + ], + [ + "▁Flagler", + -14.645143508911133 + ], + [ + "▁Trang", + -14.64514446258545 + ], + [ + "▁westerly", + -14.645151138305664 + ], + [ + "▁gully", + -14.645161628723145 + ], + [ + "▁hyperactive", + -14.645216941833496 + ], + [ + "Tru", + -14.645217895507812 + ], + [ + "plasty", + -14.645304679870605 + ], + [ + "infested", + -14.6453275680542 + ], + [ + "vocals", + -14.645329475402832 + ], + [ + "▁Ajit", + -14.645333290100098 + ], + [ + "▁intergovernmental", + -14.645341873168945 + ], + [ + "arama", + -14.645357131958008 + ], + [ + "▁Modernization", + -14.645405769348145 + ], + [ + "▁hydrodynamic", + -14.645405769348145 + ], + [ + "▁Reactive", + -14.64542007446289 + ], + [ + "▁Scrape", + -14.64545726776123 + ], + [ + "▁Squarespace", + -14.64547061920166 + ], + [ + "▁SMSF", + -14.64549732208252 + ], + [ + "▁ladybug", + -14.645517349243164 + ], + [ + "▁Jacque", + -14.645585060119629 + ], + [ + "vator", + -14.645589828491211 + ], + [ + "▁Godhead", + -14.64559555053711 + ], + [ + "▁Opry", + -14.645604133605957 + ], + [ + "walkers", + -14.64560604095459 + ], + [ + "▁homesick", + -14.645612716674805 + ], + [ + "Cards", + -14.645668983459473 + ], + [ + "vila", + -14.645681381225586 + ], + [ + "▁Dho", + -14.645712852478027 + ], + [ + "Members", + -14.64572811126709 + ], + [ + "▁Mohamad", + -14.645751953125 + ], + [ + "▁reprints", + -14.64576244354248 + ], + [ + "chetti", + -14.645792961120605 + ], + [ + "▁afoul", + -14.645812034606934 + ], + [ + "ettler", + -14.645813941955566 + ], + [ + "▁Cip", + -14.645837783813477 + ], + [ + "▁aioli", + -14.645867347717285 + ], + [ + "▁Vickie", + -14.64589786529541 + ], + [ + "▁autoresponder", + -14.645898818969727 + ], + [ + "▁proletarian", + -14.645898818969727 + ], + [ + "▁Ghouta", + -14.645922660827637 + ], + [ + "▁Mogadishu", + -14.645936012268066 + ], + [ + "candidate", + -14.645959854125977 + ], + [ + "▁Jayden", + -14.645963668823242 + ], + [ + "▁Mfg", + -14.645973205566406 + ], + [ + "peter", + -14.645997047424316 + ], + [ + "▁Mame", + -14.645999908447266 + ], + [ + "kraft", + -14.6460542678833 + ], + [ + "▁Bertram", + -14.646060943603516 + ], + [ + "jig", + -14.646077156066895 + ], + [ + "▁WebSite", + -14.64608383178711 + ], + [ + "▁628", + -14.646090507507324 + ], + [ + "▁ogre", + -14.646097183227539 + ], + [ + "▁JIRA", + -14.646100997924805 + ], + [ + "▁Neale", + -14.646117210388184 + ], + [ + "▁orcs", + -14.6461181640625 + ], + [ + "▁USN", + -14.64614486694336 + ], + [ + "IIT", + -14.646160125732422 + ], + [ + "▁Uncharted", + -14.646161079406738 + ], + [ + "▁Taekwondo", + -14.646162986755371 + ], + [ + "▁Stal", + -14.646185874938965 + ], + [ + "▁Wildflower", + -14.646197319030762 + ], + [ + "▁smother", + -14.646208763122559 + ], + [ + "Heb", + -14.646222114562988 + ], + [ + "fidelity", + -14.646288871765137 + ], + [ + "▁Carton", + -14.646316528320312 + ], + [ + "▁afghan", + -14.646331787109375 + ], + [ + "▁affable", + -14.646332740783691 + ], + [ + "kernel", + -14.646341323852539 + ], + [ + "▁Pritzker", + -14.646357536315918 + ], + [ + "▁LAMP", + -14.64635944366455 + ], + [ + "partement", + -14.646376609802246 + ], + [ + "▁marbled", + -14.646387100219727 + ], + [ + "SKI", + -14.646392822265625 + ], + [ + "▁Cadence", + -14.646462440490723 + ], + [ + "fingers", + -14.646486282348633 + ], + [ + "▁Mazar", + -14.646490097045898 + ], + [ + "▁dampers", + -14.646503448486328 + ], + [ + "▁throttling", + -14.646507263183594 + ], + [ + "▁Paloma", + -14.646514892578125 + ], + [ + "▁Capita", + -14.64661693572998 + ], + [ + "▁PON", + -14.646617889404297 + ], + [ + "▁Rockingham", + -14.6466646194458 + ], + [ + "▁Begum", + -14.64672565460205 + ], + [ + "▁IDS", + -14.646727561950684 + ], + [ + "▁Giu", + -14.646780967712402 + ], + [ + "▁hooligan", + -14.646818161010742 + ], + [ + "▁Bonanza", + -14.646820068359375 + ], + [ + "▁outermost", + -14.64682388305664 + ], + [ + "▁Collateral", + -14.64684772491455 + ], + [ + "▁Harv", + -14.646854400634766 + ], + [ + "homa", + -14.646934509277344 + ], + [ + "dae", + -14.646942138671875 + ], + [ + "schutz", + -14.646961212158203 + ], + [ + "▁vassal", + -14.647056579589844 + ], + [ + "phro", + -14.647072792053223 + ], + [ + "▁Humanist", + -14.64712142944336 + ], + [ + "▁fables", + -14.647186279296875 + ], + [ + "▁Hagg", + -14.647201538085938 + ], + [ + "mistress", + -14.647214889526367 + ], + [ + "▁Crying", + -14.647218704223633 + ], + [ + "▁gaudy", + -14.647256851196289 + ], + [ + "▁SDA", + -14.647307395935059 + ], + [ + "▁sido", + -14.64731216430664 + ], + [ + "▁Cumberbatch", + -14.647350311279297 + ], + [ + "▁Violations", + -14.6473970413208 + ], + [ + "▁QuickTime", + -14.647442817687988 + ], + [ + "▁conduits", + -14.647454261779785 + ], + [ + "2600", + -14.647467613220215 + ], + [ + "▁portland", + -14.647468566894531 + ], + [ + "opol", + -14.647518157958984 + ], + [ + "wealth", + -14.647552490234375 + ], + [ + "▁Liars", + -14.647562980651855 + ], + [ + "Edu", + -14.647566795349121 + ], + [ + "▁hardwired", + -14.647590637207031 + ], + [ + "▁telehealth", + -14.647607803344727 + ], + [ + "▁canter", + -14.647627830505371 + ], + [ + "Rocket", + -14.647671699523926 + ], + [ + "rrrr", + -14.647757530212402 + ], + [ + "▁Truckee", + -14.647761344909668 + ], + [ + "▁beseech", + -14.647769927978516 + ], + [ + "discussion", + -14.647787094116211 + ], + [ + "yoko", + -14.647794723510742 + ], + [ + "▁cartoonish", + -14.64780044555664 + ], + [ + "▁midsection", + -14.647801399230957 + ], + [ + "▁Luisa", + -14.64780330657959 + ], + [ + "▁BOOKS", + -14.647844314575195 + ], + [ + "如", + -14.647857666015625 + ], + [ + "UEL", + -14.647858619689941 + ], + [ + "▁Orc", + -14.64791488647461 + ], + [ + "Retail", + -14.647928237915039 + ], + [ + "▁Sauté", + -14.647948265075684 + ], + [ + "ograms", + -14.647966384887695 + ], + [ + "ATM", + -14.647991180419922 + ], + [ + "▁785", + -14.647997856140137 + ], + [ + "وم", + -14.648056030273438 + ], + [ + "▁Bani", + -14.648075103759766 + ], + [ + "▁Billiard", + -14.648083686828613 + ], + [ + "▁Buell", + -14.648139953613281 + ], + [ + "▁pari", + -14.64819049835205 + ], + [ + "▁Messe", + -14.648202896118164 + ], + [ + "▁chickpea", + -14.648205757141113 + ], + [ + "AUS", + -14.648221015930176 + ], + [ + "▁Bohr", + -14.648286819458008 + ], + [ + "▁floodwaters", + -14.648338317871094 + ], + [ + "▁Renner", + -14.648344993591309 + ], + [ + "▁TRUCK", + -14.648351669311523 + ], + [ + "▁Pizzeria", + -14.64836597442627 + ], + [ + "kasi", + -14.648372650146484 + ], + [ + "▁Acropolis", + -14.648384094238281 + ], + [ + "nement", + -14.64841365814209 + ], + [ + "▁Specimen", + -14.648429870605469 + ], + [ + "يا", + -14.648433685302734 + ], + [ + "▁WONDERFUL", + -14.648468971252441 + ], + [ + "▁Groen", + -14.648493766784668 + ], + [ + "▁locket", + -14.648497581481934 + ], + [ + "▁auntie", + -14.648508071899414 + ], + [ + "▁818", + -14.64852523803711 + ], + [ + "▁Blackman", + -14.648584365844727 + ], + [ + "▁Colman", + -14.648589134216309 + ], + [ + "▁Geschichte", + -14.64864444732666 + ], + [ + "▁Sidewalk", + -14.64864444732666 + ], + [ + "プ", + -14.648659706115723 + ], + [ + "clothes", + -14.64869499206543 + ], + [ + "cai", + -14.648711204528809 + ], + [ + "▁maka", + -14.648805618286133 + ], + [ + "prevention", + -14.648877143859863 + ], + [ + "▁holidaymakers", + -14.64887809753418 + ], + [ + "▁Cz", + -14.648879051208496 + ], + [ + "▁macrophage", + -14.648953437805176 + ], + [ + "イン", + -14.648958206176758 + ], + [ + "▁deservedly", + -14.648979187011719 + ], + [ + "▁radiographic", + -14.648980140686035 + ], + [ + "▁jojoba", + -14.648982048034668 + ], + [ + "▁narrating", + -14.648985862731934 + ], + [ + "▁Guitarist", + -14.649003982543945 + ], + [ + "▁Perch", + -14.649096488952637 + ], + [ + "▁bemused", + -14.649114608764648 + ], + [ + "▁ineffectual", + -14.649154663085938 + ], + [ + "nca", + -14.64916706085205 + ], + [ + "methane", + -14.649181365966797 + ], + [ + "vitt", + -14.649185180664062 + ], + [ + "▁treehouse", + -14.649206161499023 + ], + [ + "▁posi", + -14.649213790893555 + ], + [ + "▁hypervisor", + -14.64924430847168 + ], + [ + "▁SPIRIT", + -14.649285316467285 + ], + [ + "Push", + -14.649311065673828 + ], + [ + "▁Vending", + -14.649327278137207 + ], + [ + "▁unreachable", + -14.649330139160156 + ], + [ + "trell", + -14.64937686920166 + ], + [ + "1924", + -14.649384498596191 + ], + [ + "▁KAL", + -14.649401664733887 + ], + [ + "▁bloomed", + -14.64941120147705 + ], + [ + "otter", + -14.649443626403809 + ], + [ + "▁Rotarian", + -14.649450302124023 + ], + [ + "▁fascinate", + -14.64952564239502 + ], + [ + "REY", + -14.649579048156738 + ], + [ + "acceptance", + -14.649629592895508 + ], + [ + "▁Inverter", + -14.649629592895508 + ], + [ + "quier", + -14.649676322937012 + ], + [ + "▁Mian", + -14.649704933166504 + ], + [ + "Ear", + -14.649721145629883 + ], + [ + "▁Stubbs", + -14.649727821350098 + ], + [ + "▁연구", + -14.649734497070312 + ], + [ + "lago", + -14.64975357055664 + ], + [ + "▁doormat", + -14.649762153625488 + ], + [ + "▁Dehradun", + -14.649789810180664 + ], + [ + "▁YouTuber", + -14.64982795715332 + ], + [ + "▁cui", + -14.64987564086914 + ], + [ + "▁Pend", + -14.64990234375 + ], + [ + "▁Cashmere", + -14.649927139282227 + ], + [ + "▁genitalia", + -14.649931907653809 + ], + [ + "intel", + -14.649933815002441 + ], + [ + "▁valence", + -14.650019645690918 + ], + [ + "▁Blanchett", + -14.65003490447998 + ], + [ + "▁subdomain", + -14.650046348571777 + ], + [ + "▁Nance", + -14.650062561035156 + ], + [ + "▁Beaux", + -14.65009880065918 + ], + [ + "▁rotted", + -14.650116920471191 + ], + [ + "▁Cited", + -14.650145530700684 + ], + [ + "▁Amr", + -14.650146484375 + ], + [ + "▁bonanza", + -14.650177001953125 + ], + [ + "▁dork", + -14.650189399719238 + ], + [ + "awat", + -14.650190353393555 + ], + [ + "▁Urine", + -14.650203704833984 + ], + [ + "▁Dizzy", + -14.650227546691895 + ], + [ + "▁dubbing", + -14.650274276733398 + ], + [ + "jewel", + -14.650286674499512 + ], + [ + "▁Keyes", + -14.650297164916992 + ], + [ + "▁img", + -14.650314331054688 + ], + [ + "▁641", + -14.650335311889648 + ], + [ + "▁stalwarts", + -14.650395393371582 + ], + [ + "▁flexi", + -14.650406837463379 + ], + [ + "▁Rewind", + -14.650410652160645 + ], + [ + "▁McGu", + -14.650423049926758 + ], + [ + "OTS", + -14.650450706481934 + ], + [ + "Thou", + -14.650459289550781 + ], + [ + "▁AHS", + -14.650466918945312 + ], + [ + "Corporate", + -14.650538444519043 + ], + [ + "▁Arches", + -14.65054702758789 + ], + [ + "reflect", + -14.65054988861084 + ], + [ + "priest", + -14.650566101074219 + ], + [ + "▁underutilized", + -14.65057373046875 + ], + [ + "▁degrades", + -14.65059757232666 + ], + [ + "▁Corresponding", + -14.650598526000977 + ], + [ + "▁massacred", + -14.650607109069824 + ], + [ + "▁regrowth", + -14.650612831115723 + ], + [ + "▁Oko", + -14.650666236877441 + ], + [ + "▁assessors", + -14.650714874267578 + ], + [ + "▁Accelerate", + -14.650720596313477 + ], + [ + "▁Widespread", + -14.650753021240234 + ], + [ + "▁Roberson", + -14.650772094726562 + ], + [ + "adan", + -14.650814056396484 + ], + [ + "▁Shaver", + -14.650824546813965 + ], + [ + "▁pangs", + -14.650829315185547 + ], + [ + "▁Pied", + -14.650849342346191 + ], + [ + "jara", + -14.650863647460938 + ], + [ + "▁Priebus", + -14.650869369506836 + ], + [ + "Poor", + -14.650936126708984 + ], + [ + "▁Freezing", + -14.650940895080566 + ], + [ + "▁tc", + -14.650954246520996 + ], + [ + "▁Sandeep", + -14.650959014892578 + ], + [ + "▁snark", + -14.650964736938477 + ], + [ + "▁escalates", + -14.650988578796387 + ], + [ + "ragon", + -14.6510009765625 + ], + [ + "▁FLORIDA", + -14.651002883911133 + ], + [ + "Cooper", + -14.651004791259766 + ], + [ + "▁ك", + -14.651008605957031 + ], + [ + "nesia", + -14.65102767944336 + ], + [ + "ason", + -14.651039123535156 + ], + [ + "▁crystallized", + -14.651141166687012 + ], + [ + "▁localize", + -14.651192665100098 + ], + [ + "prise", + -14.65120792388916 + ], + [ + "▁vaccinate", + -14.651208877563477 + ], + [ + "▁Keats", + -14.651220321655273 + ], + [ + "alpa", + -14.651222229003906 + ], + [ + "▁SHIELD", + -14.651256561279297 + ], + [ + "CPR", + -14.651262283325195 + ], + [ + "▁worksite", + -14.651283264160156 + ], + [ + "Oscar", + -14.651294708251953 + ], + [ + "Pain", + -14.651331901550293 + ], + [ + "▁Everytime", + -14.651337623596191 + ], + [ + "▁Unlocking", + -14.651373863220215 + ], + [ + "▁biofeedback", + -14.651379585266113 + ], + [ + "ATC", + -14.651383399963379 + ], + [ + "▁Hyaluronic", + -14.651397705078125 + ], + [ + "▁defray", + -14.651408195495605 + ], + [ + "▁VOA", + -14.651444435119629 + ], + [ + "▁Vä", + -14.651460647583008 + ], + [ + "▁Homelessness", + -14.65147590637207 + ], + [ + "▁Wrench", + -14.651490211486816 + ], + [ + "▁Senna", + -14.651575088500977 + ], + [ + "Tran", + -14.651582717895508 + ], + [ + "▁disse", + -14.651588439941406 + ], + [ + "▁MACD", + -14.651626586914062 + ], + [ + "▁tshirt", + -14.651678085327148 + ], + [ + "▁557", + -14.651698112487793 + ], + [ + "▁Clementine", + -14.65169906616211 + ], + [ + "▁Peat", + -14.651751518249512 + ], + [ + "▁bing", + -14.651772499084473 + ], + [ + "олог", + -14.65182113647461 + ], + [ + "▁busily", + -14.651836395263672 + ], + [ + "▁Adamson", + -14.651866912841797 + ], + [ + "▁absinthe", + -14.651874542236328 + ], + [ + "▁peacekeepers", + -14.651937484741211 + ], + [ + "MEC", + -14.651959419250488 + ], + [ + "▁ESB", + -14.651981353759766 + ], + [ + "▁dueling", + -14.652029991149902 + ], + [ + "▁APL", + -14.652037620544434 + ], + [ + "▁denier", + -14.652046203613281 + ], + [ + "dade", + -14.652048110961914 + ], + [ + "▁subordinated", + -14.652057647705078 + ], + [ + "▁Masterclass", + -14.652064323425293 + ], + [ + "▁Segway", + -14.652106285095215 + ], + [ + "▁Loftus", + -14.652109146118164 + ], + [ + "▁panache", + -14.652142524719238 + ], + [ + "▁Reclamation", + -14.652168273925781 + ], + [ + "cita", + -14.652170181274414 + ], + [ + "▁Rawalpindi", + -14.652170181274414 + ], + [ + "okan", + -14.652189254760742 + ], + [ + "▁doused", + -14.65223217010498 + ], + [ + "▁MOSFET", + -14.652264595031738 + ], + [ + "▁Vihar", + -14.6522798538208 + ], + [ + "▁Vashikaran", + -14.65228271484375 + ], + [ + "SPAN", + -14.6522855758667 + ], + [ + "▁821", + -14.65231704711914 + ], + [ + "▁Conflicts", + -14.652320861816406 + ], + [ + "▁allocates", + -14.652365684509277 + ], + [ + "detection", + -14.652390480041504 + ], + [ + "petition", + -14.652403831481934 + ], + [ + "Steam", + -14.652413368225098 + ], + [ + "studied", + -14.652432441711426 + ], + [ + "▁Primate", + -14.652444839477539 + ], + [ + "▁wisp", + -14.652462005615234 + ], + [ + "emme", + -14.652471542358398 + ], + [ + "▁crinkle", + -14.652472496032715 + ], + [ + "▁devolve", + -14.652475357055664 + ], + [ + "점", + -14.652499198913574 + ], + [ + "erum", + -14.652509689331055 + ], + [ + "▁instigate", + -14.652520179748535 + ], + [ + "▁Prozac", + -14.652530670166016 + ], + [ + "▁vCenter", + -14.652554512023926 + ], + [ + "▁MOC", + -14.652565956115723 + ], + [ + "separated", + -14.65259075164795 + ], + [ + "▁chur", + -14.652607917785645 + ], + [ + "▁Inglewood", + -14.652665138244629 + ], + [ + "▁smacks", + -14.652698516845703 + ], + [ + "▁LSA", + -14.652721405029297 + ], + [ + "▁reputational", + -14.652727127075195 + ], + [ + "▁Meiji", + -14.652732849121094 + ], + [ + "▁Toffee", + -14.652735710144043 + ], + [ + "▁Bianchi", + -14.652746200561523 + ], + [ + "▁balustrade", + -14.652772903442383 + ], + [ + "weapon", + -14.652788162231445 + ], + [ + "▁Blouse", + -14.652792930603027 + ], + [ + "▁furlough", + -14.652793884277344 + ], + [ + "▁Saro", + -14.652801513671875 + ], + [ + "▁Dedication", + -14.652815818786621 + ], + [ + "figures", + -14.652822494506836 + ], + [ + "▁556", + -14.652824401855469 + ], + [ + "▁Omg", + -14.652887344360352 + ], + [ + "▁CTL", + -14.652918815612793 + ], + [ + "kell", + -14.65292739868164 + ], + [ + "hata", + -14.652984619140625 + ], + [ + "▁unedited", + -14.6530179977417 + ], + [ + "▁Apparatus", + -14.653037071228027 + ], + [ + "▁francisco", + -14.653046607971191 + ], + [ + "▁Lifelong", + -14.653091430664062 + ], + [ + "joo", + -14.653101921081543 + ], + [ + "▁attractively", + -14.653116226196289 + ], + [ + "▁hundredth", + -14.653149604797363 + ], + [ + "Creating", + -14.653159141540527 + ], + [ + "▁Narcotics", + -14.653162956237793 + ], + [ + "▁Warnings", + -14.653194427490234 + ], + [ + "▁optimizer", + -14.653226852416992 + ], + [ + "▁RTO", + -14.653234481811523 + ], + [ + "▁Abandon", + -14.653254508972168 + ], + [ + "apartment", + -14.6532564163208 + ], + [ + "▁alternated", + -14.65325927734375 + ], + [ + "▁eps", + -14.653338432312012 + ], + [ + "▁की", + -14.653349876403809 + ], + [ + "▁Wallabies", + -14.65337085723877 + ], + [ + "roi", + -14.653425216674805 + ], + [ + "▁boomed", + -14.653432846069336 + ], + [ + "Atlanta", + -14.65346622467041 + ], + [ + "▁Abdi", + -14.653470039367676 + ], + [ + "▁loathing", + -14.653494834899902 + ], + [ + "▁bucking", + -14.653533935546875 + ], + [ + "▁unscheduled", + -14.653550148010254 + ], + [ + "▁headstone", + -14.653570175170898 + ], + [ + "▁maintainer", + -14.65358829498291 + ], + [ + "▁Jacinto", + -14.653607368469238 + ], + [ + "▁sullen", + -14.65361213684082 + ], + [ + "▁exhaled", + -14.653660774230957 + ], + [ + "▁KYC", + -14.653665542602539 + ], + [ + "▁Wraps", + -14.653691291809082 + ], + [ + "▁Stride", + -14.653729438781738 + ], + [ + "▁Abundance", + -14.65373420715332 + ], + [ + "identify", + -14.653741836547852 + ], + [ + "▁第", + -14.653748512268066 + ], + [ + "▁Lorde", + -14.653764724731445 + ], + [ + "▁savoring", + -14.653764724731445 + ], + [ + "▁Petti", + -14.653800010681152 + ], + [ + "▁Falkirk", + -14.653803825378418 + ], + [ + "▁chapels", + -14.653810501098633 + ], + [ + "▁등", + -14.653834342956543 + ], + [ + "▁Chesterton", + -14.653836250305176 + ], + [ + "▁compensates", + -14.653923034667969 + ], + [ + "▁EPI", + -14.6539306640625 + ], + [ + "lui", + -14.653976440429688 + ], + [ + "▁Allegro", + -14.653987884521484 + ], + [ + "tsev", + -14.65400218963623 + ], + [ + "▁Estimating", + -14.654007911682129 + ], + [ + "▁hm", + -14.654058456420898 + ], + [ + "lighter", + -14.654075622558594 + ], + [ + "▁Cia", + -14.654078483581543 + ], + [ + "▁rerun", + -14.654091835021973 + ], + [ + "▁MSR", + -14.65410327911377 + ], + [ + "▁spillage", + -14.654118537902832 + ], + [ + "▁Ziggy", + -14.654170036315918 + ], + [ + "▁sorrowful", + -14.654173851013184 + ], + [ + "Guys", + -14.654176712036133 + ], + [ + "▁Leuven", + -14.65418529510498 + ], + [ + "alot", + -14.654217720031738 + ], + [ + "▁comms", + -14.654234886169434 + ], + [ + "klar", + -14.654248237609863 + ], + [ + "▁Benji", + -14.65426254272461 + ], + [ + "▁mists", + -14.654293060302734 + ], + [ + "▁Jamil", + -14.65434455871582 + ], + [ + "▁moldy", + -14.654367446899414 + ], + [ + "▁Crusades", + -14.65438175201416 + ], + [ + "boring", + -14.654397010803223 + ], + [ + "▁Takashi", + -14.654397010803223 + ], + [ + "▁동", + -14.654399871826172 + ], + [ + "▁congressmen", + -14.654439926147461 + ], + [ + "▁Jumeirah", + -14.654441833496094 + ], + [ + "▁Cormac", + -14.654455184936523 + ], + [ + "▁Handmaid", + -14.65449333190918 + ], + [ + "▁Mortar", + -14.654499053955078 + ], + [ + "▁uninstalling", + -14.654542922973633 + ], + [ + "▁broadside", + -14.654568672180176 + ], + [ + "▁ALF", + -14.654589653015137 + ], + [ + "LEX", + -14.654598236083984 + ], + [ + "▁KitchenAid", + -14.654631614685059 + ], + [ + "▁Hermit", + -14.654644966125488 + ], + [ + "▁leper", + -14.654644966125488 + ], + [ + "▁piper", + -14.654655456542969 + ], + [ + "ե", + -14.654678344726562 + ], + [ + "▁partisans", + -14.654711723327637 + ], + [ + "dependant", + -14.654732704162598 + ], + [ + "▁dictatorial", + -14.654741287231445 + ], + [ + "▁Mavic", + -14.654742240905762 + ], + [ + "▁shou", + -14.654743194580078 + ], + [ + "▁halibut", + -14.654744148254395 + ], + [ + "▁AirAsia", + -14.654787063598633 + ], + [ + "▁Sumter", + -14.654792785644531 + ], + [ + "▁bah", + -14.654809951782227 + ], + [ + "PHO", + -14.65484619140625 + ], + [ + "menopausal", + -14.654853820800781 + ], + [ + "▁Deflect", + -14.654858589172363 + ], + [ + "▁chews", + -14.654860496520996 + ], + [ + "▁TKO", + -14.654982566833496 + ], + [ + "▁Poodle", + -14.655014991760254 + ], + [ + "▁psychoanalytic", + -14.655078887939453 + ], + [ + "▁Valet", + -14.655105590820312 + ], + [ + "▁Claudius", + -14.65512466430664 + ], + [ + "pkg", + -14.655136108398438 + ], + [ + "▁Hummel", + -14.6551513671875 + ], + [ + "▁Hmong", + -14.655183792114258 + ], + [ + "▁Eyed", + -14.655200958251953 + ], + [ + "▁564", + -14.655204772949219 + ], + [ + "▁scoreline", + -14.655242919921875 + ], + [ + "▁sche", + -14.655248641967773 + ], + [ + "▁Britten", + -14.65524959564209 + ], + [ + "▁elects", + -14.655252456665039 + ], + [ + "▁sanitize", + -14.655267715454102 + ], + [ + "▁rotisserie", + -14.6552734375 + ], + [ + "▁ADDRESS", + -14.655285835266113 + ], + [ + "▁Bracken", + -14.655311584472656 + ], + [ + "▁Boyz", + -14.655389785766602 + ], + [ + "▁contextualize", + -14.655394554138184 + ], + [ + "▁Gasol", + -14.655414581298828 + ], + [ + "▁manatee", + -14.655434608459473 + ], + [ + "AML", + -14.655447959899902 + ], + [ + "▁methotrexate", + -14.655481338500977 + ], + [ + "valo", + -14.655498504638672 + ], + [ + "▁israel", + -14.655519485473633 + ], + [ + "checker", + -14.655522346496582 + ], + [ + "▁Belkin", + -14.655574798583984 + ], + [ + "▁Scheduler", + -14.655591011047363 + ], + [ + "▁Kiosk", + -14.655592918395996 + ], + [ + "▁LSAT", + -14.655592918395996 + ], + [ + "Supply", + -14.655595779418945 + ], + [ + "▁ulcerative", + -14.655600547790527 + ], + [ + "▁735", + -14.655628204345703 + ], + [ + "▁REPAIR", + -14.655654907226562 + ], + [ + "▁CONSTRUCTION", + -14.655707359313965 + ], + [ + "▁jamb", + -14.655715942382812 + ], + [ + "▁Tracing", + -14.655716896057129 + ], + [ + "▁harshness", + -14.65572738647461 + ], + [ + "▁FUNCTION", + -14.655729293823242 + ], + [ + "Amendment", + -14.655734062194824 + ], + [ + "▁Leavenworth", + -14.65576457977295 + ], + [ + "Charlotte", + -14.655765533447266 + ], + [ + "▁sobs", + -14.655776023864746 + ], + [ + "lud", + -14.655781745910645 + ], + [ + "▁sisterhood", + -14.655792236328125 + ], + [ + "▁KIA", + -14.655805587768555 + ], + [ + "▁yearlong", + -14.655839920043945 + ], + [ + "▁redraw", + -14.655905723571777 + ], + [ + "▁Strato", + -14.65590763092041 + ], + [ + "flation", + -14.655922889709473 + ], + [ + "▁Deirdre", + -14.655936241149902 + ], + [ + "bori", + -14.655946731567383 + ], + [ + "▁Proprietary", + -14.656020164489746 + ], + [ + "▁Argyll", + -14.656049728393555 + ], + [ + "feather", + -14.656085968017578 + ], + [ + "▁Crops", + -14.656102180480957 + ], + [ + "▁crunches", + -14.656124114990234 + ], + [ + "▁Bidding", + -14.656146049499512 + ], + [ + "▁SIU", + -14.656164169311523 + ], + [ + "AIA", + -14.656184196472168 + ], + [ + "CHF", + -14.656231880187988 + ], + [ + "▁messiah", + -14.656248092651367 + ], + [ + "▁Posture", + -14.656251907348633 + ], + [ + "▁Downer", + -14.656285285949707 + ], + [ + "▁Odu", + -14.656317710876465 + ], + [ + "minal", + -14.656332969665527 + ], + [ + "▁Gracias", + -14.656362533569336 + ], + [ + "▁muni", + -14.656370162963867 + ], + [ + "▁Cem", + -14.65637493133545 + ], + [ + "▁dowry", + -14.656439781188965 + ], + [ + "▁Moc", + -14.65644359588623 + ], + [ + "▁Canaria", + -14.656450271606445 + ], + [ + "▁joggers", + -14.65645694732666 + ], + [ + "fancy", + -14.656458854675293 + ], + [ + "nten", + -14.656468391418457 + ], + [ + "▁Teague", + -14.65649700164795 + ], + [ + "▁Schreiber", + -14.656501770019531 + ], + [ + "▁sputtering", + -14.656516075134277 + ], + [ + "Subscribe", + -14.656527519226074 + ], + [ + "▁Tass", + -14.65653133392334 + ], + [ + "▁Gü", + -14.656538009643555 + ], + [ + "▁hemodynamic", + -14.656566619873047 + ], + [ + "throated", + -14.656588554382324 + ], + [ + "▁Tricho", + -14.656646728515625 + ], + [ + "機", + -14.656659126281738 + ], + [ + "academy", + -14.65672492980957 + ], + [ + "▁Cress", + -14.656787872314453 + ], + [ + "▁serif", + -14.65680980682373 + ], + [ + "▁combust", + -14.656811714172363 + ], + [ + "ritic", + -14.656843185424805 + ], + [ + "▁RIAA", + -14.65685749053955 + ], + [ + "▁Mumford", + -14.656862258911133 + ], + [ + "▁veganism", + -14.656878471374512 + ], + [ + "▁fissures", + -14.656949043273926 + ], + [ + "▁Zain", + -14.656975746154785 + ], + [ + "atte", + -14.657004356384277 + ], + [ + "▁Spokesperson", + -14.657032012939453 + ], + [ + "Š", + -14.65707778930664 + ], + [ + "admission", + -14.657083511352539 + ], + [ + "▁repelled", + -14.657088279724121 + ], + [ + "stav", + -14.657147407531738 + ], + [ + "▁Seiko", + -14.657177925109863 + ], + [ + "▁Skeptic", + -14.657196044921875 + ], + [ + "▁Conform", + -14.657232284545898 + ], + [ + "▁EAC", + -14.65723705291748 + ], + [ + "▁Qureshi", + -14.657241821289062 + ], + [ + "▁reiterating", + -14.657249450683594 + ], + [ + "▁Revelations", + -14.65725326538086 + ], + [ + "VIII", + -14.657285690307617 + ], + [ + "▁Strawberries", + -14.657327651977539 + ], + [ + "▁Rattle", + -14.657393455505371 + ], + [ + "ubbing", + -14.657394409179688 + ], + [ + "gola", + -14.657422065734863 + ], + [ + "dation", + -14.657474517822266 + ], + [ + "▁Pershing", + -14.657498359680176 + ], + [ + "Individual", + -14.657511711120605 + ], + [ + "▁Bombs", + -14.657539367675781 + ], + [ + "▁Friction", + -14.657553672790527 + ], + [ + "▁Fibromyalgia", + -14.65758991241455 + ], + [ + "shocked", + -14.657590866088867 + ], + [ + "▁webcomic", + -14.657613754272461 + ], + [ + "▁Parm", + -14.65761661529541 + ], + [ + "layers", + -14.65762710571289 + ], + [ + "▁diam", + -14.657630920410156 + ], + [ + "▁revere", + -14.657666206359863 + ], + [ + "fü", + -14.657693862915039 + ], + [ + "▁Kirin", + -14.657712936401367 + ], + [ + "oule", + -14.657718658447266 + ], + [ + "ッ", + -14.657759666442871 + ], + [ + "▁Vegeta", + -14.657795906066895 + ], + [ + "▁enviroment", + -14.657814025878906 + ], + [ + "▁Beowulf", + -14.657817840576172 + ], + [ + "ordering", + -14.657833099365234 + ], + [ + "MATE", + -14.657846450805664 + ], + [ + "▁favouring", + -14.657877922058105 + ], + [ + "UNC", + -14.657880783081055 + ], + [ + "▁undersigned", + -14.657917022705078 + ], + [ + "▁Halt", + -14.65797233581543 + ], + [ + "▁stabilisation", + -14.657975196838379 + ], + [ + "▁Dandelion", + -14.657987594604492 + ], + [ + "▁macaque", + -14.658018112182617 + ], + [ + "▁Extinction", + -14.65804386138916 + ], + [ + "REX", + -14.658047676086426 + ], + [ + "▁Possibility", + -14.65805435180664 + ], + [ + "▁corrode", + -14.658080101013184 + ], + [ + "▁Naturalist", + -14.658087730407715 + ], + [ + "▁EIN", + -14.658136367797852 + ], + [ + "mosa", + -14.658153533935547 + ], + [ + "▁fib", + -14.658160209655762 + ], + [ + "▁TOTALLY", + -14.658187866210938 + ], + [ + "▁Sark", + -14.658188819885254 + ], + [ + "▁chargeback", + -14.65820598602295 + ], + [ + "beating", + -14.658235549926758 + ], + [ + "▁Volcanic", + -14.658238410949707 + ], + [ + "▁cubicles", + -14.658272743225098 + ], + [ + "▁downwind", + -14.65827751159668 + ], + [ + "▁Biscuits", + -14.658280372619629 + ], + [ + "▁Gazebo", + -14.658295631408691 + ], + [ + "▁annotate", + -14.658303260803223 + ], + [ + "▁LEATHER", + -14.658329010009766 + ], + [ + "▁Pud", + -14.658333778381348 + ], + [ + "▁Debris", + -14.658342361450195 + ], + [ + "▁Purification", + -14.658361434936523 + ], + [ + "▁Esposito", + -14.658376693725586 + ], + [ + "▁Greitens", + -14.658425331115723 + ], + [ + "▁Kalo", + -14.658442497253418 + ], + [ + "▁parallelism", + -14.658455848693848 + ], + [ + "▁lass", + -14.658503532409668 + ], + [ + "▁CMV", + -14.658507347106934 + ], + [ + "▁gambit", + -14.658561706542969 + ], + [ + "▁Connectors", + -14.658592224121094 + ], + [ + "Anderson", + -14.658615112304688 + ], + [ + "▁jud", + -14.658646583557129 + ], + [ + "▁Zei", + -14.658655166625977 + ], + [ + "ా", + -14.658679962158203 + ], + [ + "▁Meister", + -14.65870189666748 + ], + [ + "bbly", + -14.65880298614502 + ], + [ + "一个", + -14.658806800842285 + ], + [ + "Poll", + -14.658854484558105 + ], + [ + "▁Deepwater", + -14.658864974975586 + ], + [ + "▁Benning", + -14.65887451171875 + ], + [ + "roach", + -14.658896446228027 + ], + [ + "▁imposter", + -14.65890884399414 + ], + [ + "▁1781", + -14.65898323059082 + ], + [ + "▁FERC", + -14.659077644348145 + ], + [ + "▁betrays", + -14.659085273742676 + ], + [ + "ACO", + -14.659111976623535 + ], + [ + "activities", + -14.659116744995117 + ], + [ + "▁Gilda", + -14.659122467041016 + ], + [ + "▁crucible", + -14.659135818481445 + ], + [ + "▁Stitcher", + -14.659136772155762 + ], + [ + "▁Fowl", + -14.659150123596191 + ], + [ + "▁Johansen", + -14.659160614013672 + ], + [ + "▁Polis", + -14.659162521362305 + ], + [ + "Duke", + -14.659167289733887 + ], + [ + "nagh", + -14.65917682647705 + ], + [ + "prin", + -14.65918254852295 + ], + [ + "▁kiddies", + -14.659183502197266 + ], + [ + "▁haulers", + -14.659198760986328 + ], + [ + "▁Manoj", + -14.65921401977539 + ], + [ + "▁Liao", + -14.659257888793945 + ], + [ + "cey", + -14.659306526184082 + ], + [ + "cond", + -14.659332275390625 + ], + [ + "orbital", + -14.659355163574219 + ], + [ + "▁Pancakes", + -14.659370422363281 + ], + [ + "Ton", + -14.659380912780762 + ], + [ + "▁Sender", + -14.659383773803711 + ], + [ + "elton", + -14.659393310546875 + ], + [ + "▁truely", + -14.659523010253906 + ], + [ + "▁unsere", + -14.659543991088867 + ], + [ + "▁ARR", + -14.659589767456055 + ], + [ + "▁SHS", + -14.659662246704102 + ], + [ + "GLE", + -14.659666061401367 + ], + [ + "cile", + -14.659672737121582 + ], + [ + "▁Gant", + -14.659679412841797 + ], + [ + "▁Pulled", + -14.659693717956543 + ], + [ + "▁Streisand", + -14.659699440002441 + ], + [ + "▁teleconference", + -14.65970516204834 + ], + [ + "bounce", + -14.659747123718262 + ], + [ + "▁Khor", + -14.659757614135742 + ], + [ + "OTE", + -14.659782409667969 + ], + [ + "美", + -14.659810066223145 + ], + [ + "▁APEX", + -14.659815788269043 + ], + [ + "▁sass", + -14.659826278686523 + ], + [ + "▁comport", + -14.659850120544434 + ], + [ + "▁ese", + -14.659858703613281 + ], + [ + "SEP", + -14.659867286682129 + ], + [ + "adda", + -14.659876823425293 + ], + [ + "iscal", + -14.659886360168457 + ], + [ + "isce", + -14.659903526306152 + ], + [ + "端", + -14.659926414489746 + ], + [ + "▁delirious", + -14.659945487976074 + ], + [ + "▁SENT", + -14.659976959228516 + ], + [ + "▁Whoops", + -14.66001033782959 + ], + [ + "▁Creepy", + -14.660102844238281 + ], + [ + "▁Cumulative", + -14.660122871398926 + ], + [ + "×6", + -14.660151481628418 + ], + [ + "▁lifeguards", + -14.660161018371582 + ], + [ + "▁hexadecimal", + -14.660207748413086 + ], + [ + "▁Beattie", + -14.660233497619629 + ], + [ + "▁Felton", + -14.660244941711426 + ], + [ + "Philadelphia", + -14.660253524780273 + ], + [ + "▁Danvers", + -14.6602783203125 + ], + [ + "▁laity", + -14.660343170166016 + ], + [ + "▁SUM", + -14.660354614257812 + ], + [ + "topics", + -14.660355567932129 + ], + [ + "▁Wilshire", + -14.660375595092773 + ], + [ + "▁pillowcase", + -14.660375595092773 + ], + [ + "LIB", + -14.660467147827148 + ], + [ + "Unique", + -14.660526275634766 + ], + [ + "ности", + -14.660591125488281 + ], + [ + "Tin", + -14.660594940185547 + ], + [ + "▁Sharpen", + -14.660605430603027 + ], + [ + "scheid", + -14.660606384277344 + ], + [ + "▁WIL", + -14.660621643066406 + ], + [ + "▁imprints", + -14.660635948181152 + ], + [ + "▁apostrophe", + -14.660673141479492 + ], + [ + "▁Ricketts", + -14.660677909851074 + ], + [ + "agus", + -14.660690307617188 + ], + [ + "▁girder", + -14.660703659057617 + ], + [ + "Sydney", + -14.66072940826416 + ], + [ + "▁Gilmour", + -14.660738945007324 + ], + [ + "▁funder", + -14.660743713378906 + ], + [ + "▁Foothills", + -14.660768508911133 + ], + [ + "▁Vesper", + -14.660778999328613 + ], + [ + "▁prostrate", + -14.66077995300293 + ], + [ + "continu", + -14.660792350769043 + ], + [ + "▁thickest", + -14.66084098815918 + ], + [ + "▁Alteration", + -14.660844802856445 + ], + [ + "▁ALI", + -14.660847663879395 + ], + [ + "▁Whitt", + -14.660848617553711 + ], + [ + "UDE", + -14.66085433959961 + ], + [ + "▁shivers", + -14.660860061645508 + ], + [ + "▁GTO", + -14.660886764526367 + ], + [ + "▁outpaced", + -14.660919189453125 + ], + [ + "▁tetanus", + -14.660919189453125 + ], + [ + "▁Winnebago", + -14.66097640991211 + ], + [ + "▁Deh", + -14.66098690032959 + ], + [ + "records", + -14.66102123260498 + ], + [ + "▁803", + -14.661052703857422 + ], + [ + "▁subservient", + -14.661090850830078 + ], + [ + "nois", + -14.661102294921875 + ], + [ + "▁lossless", + -14.66110897064209 + ], + [ + "Plugin", + -14.661116600036621 + ], + [ + "▁Millet", + -14.66114330291748 + ], + [ + "ruff", + -14.661199569702148 + ], + [ + "excited", + -14.661235809326172 + ], + [ + "▁SRP", + -14.661239624023438 + ], + [ + "élé", + -14.661249160766602 + ], + [ + "▁McNeill", + -14.66125774383545 + ], + [ + "▁evo", + -14.661321640014648 + ], + [ + "PON", + -14.66132926940918 + ], + [ + "▁clergyman", + -14.661332130432129 + ], + [ + "dude", + -14.66133975982666 + ], + [ + "publications", + -14.661352157592773 + ], + [ + "▁excavating", + -14.661394119262695 + ], + [ + "▁fronting", + -14.661431312561035 + ], + [ + "desc", + -14.661434173583984 + ], + [ + "▁flail", + -14.661473274230957 + ], + [ + "TSA", + -14.661479949951172 + ], + [ + "▁Comanche", + -14.661486625671387 + ], + [ + "▁waistcoat", + -14.661520004272461 + ], + [ + "▁Biomass", + -14.661556243896484 + ], + [ + "uing", + -14.661589622497559 + ], + [ + "bullet", + -14.661641120910645 + ], + [ + "peel", + -14.66164779663086 + ], + [ + "▁serendipitous", + -14.661699295043945 + ], + [ + "▁trowel", + -14.66170597076416 + ], + [ + "▁vandalized", + -14.661721229553223 + ], + [ + "▁Femi", + -14.661757469177246 + ], + [ + "▁LPN", + -14.661757469177246 + ], + [ + "TEM", + -14.661775588989258 + ], + [ + "▁Ма", + -14.661782264709473 + ], + [ + "▁Pleas", + -14.661796569824219 + ], + [ + "▁micrometer", + -14.661798477172852 + ], + [ + "▁Leibniz", + -14.661803245544434 + ], + [ + "▁Mascot", + -14.661803245544434 + ], + [ + "▁Meuble", + -14.66180419921875 + ], + [ + "ench", + -14.661808013916016 + ], + [ + "▁Nunavut", + -14.661822319030762 + ], + [ + "nology", + -14.661846160888672 + ], + [ + "twenty", + -14.66186237335205 + ], + [ + "▁BLE", + -14.661865234375 + ], + [ + "OWN", + -14.661874771118164 + ], + [ + "▁impressionable", + -14.66190242767334 + ], + [ + "▁conjunct", + -14.661906242370605 + ], + [ + "BIO", + -14.66191291809082 + ], + [ + "nyc", + -14.66191577911377 + ], + [ + "▁hawker", + -14.661927223205566 + ], + [ + "▁YOURSELF", + -14.661938667297363 + ], + [ + "▁Chevalier", + -14.661953926086426 + ], + [ + "▁italic", + -14.661982536315918 + ], + [ + "▁TEXAS", + -14.662003517150879 + ], + [ + "▁Nisha", + -14.662030220031738 + ], + [ + "▁elaborately", + -14.662042617797852 + ], + [ + "▁soma", + -14.662056922912598 + ], + [ + "▁Refurbished", + -14.66206169128418 + ], + [ + "▁orphanages", + -14.662066459655762 + ], + [ + "DOL", + -14.662109375 + ], + [ + "ANDY", + -14.66211223602295 + ], + [ + "▁Atonement", + -14.662128448486328 + ], + [ + "▁Corrigan", + -14.662192344665527 + ], + [ + "▁Premises", + -14.662233352661133 + ], + [ + "▁Reviewers", + -14.662235260009766 + ], + [ + "▁gigabytes", + -14.662306785583496 + ], + [ + "▁batman", + -14.662322998046875 + ], + [ + "ciation", + -14.662348747253418 + ], + [ + "▁25°", + -14.662363052368164 + ], + [ + "▁unyielding", + -14.662468910217285 + ], + [ + "Beer", + -14.662495613098145 + ], + [ + "ancies", + -14.662622451782227 + ], + [ + "idic", + -14.66265869140625 + ], + [ + "▁Simcoe", + -14.66266918182373 + ], + [ + "▁Adolescents", + -14.662675857543945 + ], + [ + "▁multilayer", + -14.662700653076172 + ], + [ + "▁Gulch", + -14.662705421447754 + ], + [ + "agni", + -14.6627197265625 + ], + [ + "▁Bricks", + -14.66275691986084 + ], + [ + "▁PGP", + -14.662769317626953 + ], + [ + "▁Romanesque", + -14.662779808044434 + ], + [ + "▁naj", + -14.662782669067383 + ], + [ + "nfl", + -14.66279125213623 + ], + [ + "Ç", + -14.662796020507812 + ], + [ + "STOP", + -14.662840843200684 + ], + [ + "▁Totem", + -14.66286849975586 + ], + [ + "▁Expeditionary", + -14.662872314453125 + ], + [ + "▁BOLD", + -14.662919998168945 + ], + [ + "▁Powerhouse", + -14.662942886352539 + ], + [ + "▁Shoemaker", + -14.662980079650879 + ], + [ + "renewal", + -14.663013458251953 + ], + [ + "▁eines", + -14.663046836853027 + ], + [ + "▁Levinson", + -14.663053512573242 + ], + [ + "▁cowards", + -14.663086891174316 + ], + [ + "▁alarmingly", + -14.663087844848633 + ], + [ + "develop", + -14.663105010986328 + ], + [ + "▁Flaubert", + -14.663125991821289 + ], + [ + "▁geotechnical", + -14.663152694702148 + ], + [ + "gani", + -14.663186073303223 + ], + [ + "▁cuddled", + -14.663208961486816 + ], + [ + "▁reminiscence", + -14.663222312927246 + ], + [ + "▁Hunan", + -14.663344383239746 + ], + [ + "▁dermatologists", + -14.663358688354492 + ], + [ + "▁ringed", + -14.663394927978516 + ], + [ + "▁trample", + -14.663436889648438 + ], + [ + "▁dammit", + -14.66349983215332 + ], + [ + "▁Giroud", + -14.663527488708496 + ], + [ + "Scar", + -14.66353988647461 + ], + [ + "amper", + -14.663541793823242 + ], + [ + "▁Itself", + -14.663565635681152 + ], + [ + "▁yi", + -14.663572311401367 + ], + [ + "hati", + -14.663636207580566 + ], + [ + "mbly", + -14.6636381149292 + ], + [ + "▁RIDE", + -14.663671493530273 + ], + [ + "▁Octa", + -14.66370677947998 + ], + [ + "▁tubers", + -14.663739204406738 + ], + [ + "▁Perks", + -14.663740158081055 + ], + [ + "Added", + -14.663797378540039 + ], + [ + "▁drunkenness", + -14.663800239562988 + ], + [ + "▁Deter", + -14.663838386535645 + ], + [ + "▁goons", + -14.663897514343262 + ], + [ + "▁sarcastically", + -14.663920402526855 + ], + [ + "▁Chaser", + -14.663922309875488 + ], + [ + "▁threefold", + -14.664113998413086 + ], + [ + "▁Burl", + -14.664114952087402 + ], + [ + "dramatic", + -14.664131164550781 + ], + [ + "▁Shur", + -14.664134979248047 + ], + [ + "▁clinker", + -14.664149284362793 + ], + [ + "RISE", + -14.66419506072998 + ], + [ + "▁mailer", + -14.664196014404297 + ], + [ + "▁proprietorship", + -14.66419792175293 + ], + [ + "ndon", + -14.664262771606445 + ], + [ + "▁Flannery", + -14.66426944732666 + ], + [ + "▁Almeida", + -14.664311408996582 + ], + [ + "▁horsemen", + -14.664350509643555 + ], + [ + "▁commando", + -14.664353370666504 + ], + [ + "▁deportations", + -14.664353370666504 + ], + [ + "▁LEN", + -14.664362907409668 + ], + [ + "▁Figueroa", + -14.664392471313477 + ], + [ + "▁Eisner", + -14.664412498474121 + ], + [ + "tosh", + -14.664419174194336 + ], + [ + "▁Ruk", + -14.664421081542969 + ], + [ + "▁trotting", + -14.664423942565918 + ], + [ + "▁Chaney", + -14.664443016052246 + ], + [ + "enheim", + -14.664514541625977 + ], + [ + "▁fingertip", + -14.664528846740723 + ], + [ + "▁MIB", + -14.664530754089355 + ], + [ + "crawl", + -14.66454792022705 + ], + [ + "▁Мо", + -14.664558410644531 + ], + [ + "▁rezeptfrei", + -14.664565086364746 + ], + [ + "gag", + -14.664568901062012 + ], + [ + "PEL", + -14.664571762084961 + ], + [ + "contaminated", + -14.664627075195312 + ], + [ + "бр", + -14.664705276489258 + ], + [ + "▁Gillum", + -14.664767265319824 + ], + [ + "▁thickly", + -14.664804458618164 + ], + [ + "▁evangelists", + -14.664860725402832 + ], + [ + "▁unavailability", + -14.664884567260742 + ], + [ + "▁verbose", + -14.664894104003906 + ], + [ + "▁Tash", + -14.664908409118652 + ], + [ + "▁armrests", + -14.664921760559082 + ], + [ + "afo", + -14.664925575256348 + ], + [ + "▁emanate", + -14.664935111999512 + ], + [ + "▁Rawls", + -14.664953231811523 + ], + [ + "electrical", + -14.664983749389648 + ], + [ + "Points", + -14.665006637573242 + ], + [ + "Drink", + -14.665009498596191 + ], + [ + "▁lignin", + -14.665077209472656 + ], + [ + "Champion", + -14.665125846862793 + ], + [ + "AMD", + -14.665138244628906 + ], + [ + "▁profited", + -14.665172576904297 + ], + [ + "▁Fixes", + -14.665186882019043 + ], + [ + "Quant", + -14.665213584899902 + ], + [ + "▁Beatrix", + -14.66522216796875 + ], + [ + "▁Catechism", + -14.665270805358887 + ], + [ + "voluntary", + -14.665289878845215 + ], + [ + "▁Sprinter", + -14.665302276611328 + ], + [ + "▁Beneficial", + -14.665315628051758 + ], + [ + "gnu", + -14.665319442749023 + ], + [ + "▁Peralta", + -14.665359497070312 + ], + [ + "Tagged", + -14.665382385253906 + ], + [ + "▁detoxifying", + -14.66539478302002 + ], + [ + "▁Figaro", + -14.665409088134766 + ], + [ + "▁expletive", + -14.665409088134766 + ], + [ + "Zn", + -14.66541862487793 + ], + [ + "▁vip", + -14.665465354919434 + ], + [ + "▁Tripod", + -14.665473937988281 + ], + [ + "asio", + -14.665569305419922 + ], + [ + "▁MINE", + -14.665613174438477 + ], + [ + "▁autor", + -14.665628433227539 + ], + [ + "▁Deity", + -14.665660858154297 + ], + [ + "Abd", + -14.665689468383789 + ], + [ + "▁Neeson", + -14.665699005126953 + ], + [ + "▁Historia", + -14.665704727172852 + ], + [ + "chte", + -14.665716171264648 + ], + [ + "▁Abilities", + -14.66574478149414 + ], + [ + "▁Valverde", + -14.665756225585938 + ], + [ + "winners", + -14.665792465209961 + ], + [ + "▁Pave", + -14.665809631347656 + ], + [ + "▁Lagerfeld", + -14.665840148925781 + ], + [ + "▁Ofcom", + -14.66589069366455 + ], + [ + "▁IRON", + -14.665904998779297 + ], + [ + "▁Latch", + -14.665950775146484 + ], + [ + "animated", + -14.666000366210938 + ], + [ + "kool", + -14.66603946685791 + ], + [ + "▁workgroup", + -14.666051864624023 + ], + [ + "▁tabular", + -14.666132926940918 + ], + [ + "▁Hashimoto", + -14.666152000427246 + ], + [ + "hyped", + -14.666178703308105 + ], + [ + "seki", + -14.66618537902832 + ], + [ + "ibble", + -14.666208267211914 + ], + [ + "▁DANIEL", + -14.666213989257812 + ], + [ + "▁Hoyer", + -14.666242599487305 + ], + [ + "▁FAG", + -14.666248321533203 + ], + [ + "▁abt", + -14.666279792785645 + ], + [ + "hump", + -14.666309356689453 + ], + [ + "Toy", + -14.666329383850098 + ], + [ + "▁Dickie", + -14.666329383850098 + ], + [ + "pino", + -14.666330337524414 + ], + [ + "▁Blasting", + -14.66635799407959 + ], + [ + "uir", + -14.666375160217285 + ], + [ + "▁Kassi", + -14.666378021240234 + ], + [ + "▁Edgewood", + -14.66639232635498 + ], + [ + "▁Derived", + -14.666439056396484 + ], + [ + "▁json", + -14.666441917419434 + ], + [ + "▁ratepayers", + -14.666447639465332 + ], + [ + "▁Urb", + -14.666484832763672 + ], + [ + "xil", + -14.666496276855469 + ], + [ + "▁Telekom", + -14.666511535644531 + ], + [ + "▁refinish", + -14.66654109954834 + ], + [ + "▁país", + -14.666549682617188 + ], + [ + "▁Lidl", + -14.666557312011719 + ], + [ + "Division", + -14.666582107543945 + ], + [ + "nosti", + -14.666626930236816 + ], + [ + "jf", + -14.666627883911133 + ], + [ + "▁anemone", + -14.666634559631348 + ], + [ + "appreciated", + -14.666656494140625 + ], + [ + "▁915", + -14.666664123535156 + ], + [ + "ία", + -14.666716575622559 + ], + [ + "▁dabbling", + -14.666755676269531 + ], + [ + "▁DZ", + -14.666948318481445 + ], + [ + "▁WSOP", + -14.666986465454102 + ], + [ + "▁accruing", + -14.667008399963379 + ], + [ + "Hook", + -14.667064666748047 + ], + [ + "ώ", + -14.667092323303223 + ], + [ + "▁viaduct", + -14.66712474822998 + ], + [ + "▁Messer", + -14.667167663574219 + ], + [ + "ロ", + -14.667201042175293 + ], + [ + "▁oxycodone", + -14.667219161987305 + ], + [ + "ollah", + -14.667240142822266 + ], + [ + "▁Sonam", + -14.667244911193848 + ], + [ + "▁outpace", + -14.667259216308594 + ], + [ + "▁swat", + -14.667263984680176 + ], + [ + "Limited", + -14.667282104492188 + ], + [ + "▁Defiance", + -14.667292594909668 + ], + [ + "▁Grei", + -14.667366027832031 + ], + [ + "acu", + -14.667373657226562 + ], + [ + "▁cava", + -14.667375564575195 + ], + [ + "▁Vijaya", + -14.667407989501953 + ], + [ + "▁optioned", + -14.6674222946167 + ], + [ + "Fake", + -14.667455673217773 + ], + [ + "arge", + -14.667473793029785 + ], + [ + "▁weirder", + -14.667476654052734 + ], + [ + "▁slacker", + -14.66748332977295 + ], + [ + "Italia", + -14.667484283447266 + ], + [ + "▁Garnier", + -14.66760540008545 + ], + [ + "▁Lute", + -14.667630195617676 + ], + [ + "JW", + -14.667641639709473 + ], + [ + "್", + -14.667656898498535 + ], + [ + "▁Duchy", + -14.667682647705078 + ], + [ + "▁Nostalgia", + -14.667696952819824 + ], + [ + "▁Whittle", + -14.667829513549805 + ], + [ + "▁hobbled", + -14.667835235595703 + ], + [ + "rci", + -14.667848587036133 + ], + [ + "Luna", + -14.667876243591309 + ], + [ + "sucker", + -14.667877197265625 + ], + [ + "relax", + -14.667901992797852 + ], + [ + "▁SONY", + -14.667922019958496 + ], + [ + "ră", + -14.667935371398926 + ], + [ + "▁phono", + -14.667935371398926 + ], + [ + "shta", + -14.667936325073242 + ], + [ + "▁Fizz", + -14.667950630187988 + ], + [ + "▁Chilton", + -14.667963027954102 + ], + [ + "Blessed", + -14.667970657348633 + ], + [ + "▁Palos", + -14.66801643371582 + ], + [ + "ASI", + -14.66802978515625 + ], + [ + "▁Upright", + -14.668055534362793 + ], + [ + "▁Misfit", + -14.668058395385742 + ], + [ + "▁Calypso", + -14.668061256408691 + ], + [ + "▁straddle", + -14.668105125427246 + ], + [ + "▁BCAA", + -14.668140411376953 + ], + [ + "▁pretence", + -14.66814136505127 + ], + [ + "▁Helicopters", + -14.668203353881836 + ], + [ + "▁Energetic", + -14.668216705322266 + ], + [ + "▁MIPS", + -14.668222427368164 + ], + [ + "▁PDS", + -14.668235778808594 + ], + [ + "▁Curves", + -14.668252944946289 + ], + [ + "defying", + -14.668253898620605 + ], + [ + "▁inexpensively", + -14.668255805969238 + ], + [ + "▁dewy", + -14.668280601501465 + ], + [ + "htaccess", + -14.668293952941895 + ], + [ + "▁Bolivar", + -14.668293952941895 + ], + [ + "hurt", + -14.668298721313477 + ], + [ + "▁Zola", + -14.668314933776855 + ], + [ + "▁Condon", + -14.668318748474121 + ], + [ + "▁anche", + -14.668365478515625 + ], + [ + "proud", + -14.668370246887207 + ], + [ + "bora", + -14.66837215423584 + ], + [ + "▁951", + -14.668381690979004 + ], + [ + "lamo", + -14.66838550567627 + ], + [ + "Orthodox", + -14.668388366699219 + ], + [ + "▁flaking", + -14.668412208557129 + ], + [ + "▁Viennese", + -14.668415069580078 + ], + [ + "oggle", + -14.668416023254395 + ], + [ + "aluminum", + -14.668416976928711 + ], + [ + "▁swooped", + -14.668418884277344 + ], + [ + "▁Diffusion", + -14.668444633483887 + ], + [ + "▁Accompanied", + -14.668462753295898 + ], + [ + "jg", + -14.66854190826416 + ], + [ + "imetry", + -14.668549537658691 + ], + [ + "▁BCM", + -14.668551445007324 + ], + [ + "▁Lani", + -14.668572425842285 + ], + [ + "cookie", + -14.668575286865234 + ], + [ + "▁Toilets", + -14.668609619140625 + ], + [ + "▁Vite", + -14.668632507324219 + ], + [ + "arco", + -14.6686372756958 + ], + [ + "▁Waterman", + -14.668672561645508 + ], + [ + "CAF", + -14.668689727783203 + ], + [ + "Fuel", + -14.668713569641113 + ], + [ + "▁lugging", + -14.668713569641113 + ], + [ + "▁Tiller", + -14.668732643127441 + ], + [ + "▁admixture", + -14.668733596801758 + ], + [ + "▁logarithmic", + -14.668764114379883 + ], + [ + "▁Preset", + -14.6687650680542 + ], + [ + "▁declarative", + -14.668771743774414 + ], + [ + "FIL", + -14.668798446655273 + ], + [ + "LOAD", + -14.668807029724121 + ], + [ + "▁Mutation", + -14.668878555297852 + ], + [ + "finalist", + -14.668891906738281 + ], + [ + "▁Onboard", + -14.6689453125 + ], + [ + "▁Camila", + -14.668954849243164 + ], + [ + "▁1640", + -14.668990135192871 + ], + [ + "▁Bursa", + -14.66901969909668 + ], + [ + "▁plotline", + -14.669029235839844 + ], + [ + "▁Katniss", + -14.669049263000488 + ], + [ + "▁carcinogens", + -14.669058799743652 + ], + [ + "▁DVB", + -14.669099807739258 + ], + [ + "Carol", + -14.669129371643066 + ], + [ + "hectare", + -14.669133186340332 + ], + [ + "▁truthfulness", + -14.669139862060547 + ], + [ + "▁easements", + -14.669145584106445 + ], + [ + "london", + -14.669163703918457 + ], + [ + "▁tux", + -14.669180870056152 + ], + [ + "▁CHOOSE", + -14.66919231414795 + ], + [ + "▁Invoices", + -14.66921615600586 + ], + [ + "nobody", + -14.669301986694336 + ], + [ + "▁iMessage", + -14.669327735900879 + ], + [ + "▁prebiotic", + -14.669331550598145 + ], + [ + "▁possibil", + -14.669347763061523 + ], + [ + "▁Marriages", + -14.669376373291016 + ], + [ + "adol", + -14.669466018676758 + ], + [ + "ない", + -14.669506072998047 + ], + [ + "▁Hibiscus", + -14.669525146484375 + ], + [ + "▁Lyra", + -14.669535636901855 + ], + [ + "▁couplings", + -14.669536590576172 + ], + [ + "▁Pinball", + -14.669567108154297 + ], + [ + "▁elliptic", + -14.669567108154297 + ], + [ + "発", + -14.669575691223145 + ], + [ + "▁sociologists", + -14.669655799865723 + ], + [ + "GMA", + -14.669656753540039 + ], + [ + "▁SPY", + -14.669670104980469 + ], + [ + "▁tampons", + -14.669678688049316 + ], + [ + "▁fucker", + -14.669723510742188 + ], + [ + "Squirt", + -14.669733047485352 + ], + [ + "▁Croat", + -14.669736862182617 + ], + [ + "ocytic", + -14.669737815856934 + ], + [ + "▁Sahel", + -14.669746398925781 + ], + [ + "▁RTG", + -14.669761657714844 + ], + [ + "▁Aguirre", + -14.669803619384766 + ], + [ + "clan", + -14.669825553894043 + ], + [ + "▁physiologic", + -14.66984748840332 + ], + [ + "▁Volks", + -14.669867515563965 + ], + [ + "TRE", + -14.669920921325684 + ], + [ + "▁nurtures", + -14.66992473602295 + ], + [ + "Marcus", + -14.669968605041504 + ], + [ + "▁ashtray", + -14.669981002807617 + ], + [ + "▁Cinder", + -14.669983863830566 + ], + [ + "▁Hinch", + -14.67000961303711 + ], + [ + "▁maul", + -14.670021057128906 + ], + [ + "EIA", + -14.67004108428955 + ], + [ + "▁UPON", + -14.670069694519043 + ], + [ + "▁Cordelia", + -14.670077323913574 + ], + [ + "▁EFCC", + -14.670099258422852 + ], + [ + "assurance", + -14.670110702514648 + ], + [ + "▁Schie", + -14.670149803161621 + ], + [ + "▁roleplay", + -14.67016315460205 + ], + [ + "▁Helios", + -14.670165061950684 + ], + [ + "swamy", + -14.670172691345215 + ], + [ + "▁traverses", + -14.670184135437012 + ], + [ + "▁wields", + -14.670210838317871 + ], + [ + "▁chloro", + -14.67023754119873 + ], + [ + "Julia", + -14.670271873474121 + ], + [ + "▁Scarecrow", + -14.670273780822754 + ], + [ + "▁improvising", + -14.670300483703613 + ], + [ + "prox", + -14.670316696166992 + ], + [ + "▁reti", + -14.670356750488281 + ], + [ + "▁Fenwick", + -14.670374870300293 + ], + [ + "raq", + -14.67037582397461 + ], + [ + "▁alumna", + -14.670411109924316 + ], + [ + "▁Noted", + -14.670441627502441 + ], + [ + "▁Moulin", + -14.670464515686035 + ], + [ + "▁Bolsheviks", + -14.670472145080566 + ], + [ + "▁pied", + -14.670475006103516 + ], + [ + "▁Dene", + -14.670485496520996 + ], + [ + "▁transitory", + -14.670499801635742 + ], + [ + "▁Slapshot", + -14.670510292053223 + ], + [ + "▁Emmys", + -14.670519828796387 + ], + [ + "conversation", + -14.67052936553955 + ], + [ + "▁Tuner", + -14.67055606842041 + ], + [ + "▁Derrida", + -14.670577049255371 + ], + [ + "Unknown", + -14.6705904006958 + ], + [ + "dier", + -14.67063045501709 + ], + [ + "▁confocal", + -14.67063045501709 + ], + [ + "▁PROTECT", + -14.67064094543457 + ], + [ + "uven", + -14.67065143585205 + ], + [ + "▁broach", + -14.670737266540527 + ], + [ + "▁Danilo", + -14.67077350616455 + ], + [ + "artists", + -14.670804023742676 + ], + [ + "▁ρ", + -14.670808792114258 + ], + [ + "▁DAV", + -14.67082691192627 + ], + [ + "▁Kasey", + -14.670827865600586 + ], + [ + "▁Ery", + -14.670829772949219 + ], + [ + "typ", + -14.6708402633667 + ], + [ + "▁zwei", + -14.67085075378418 + ], + [ + "▁ROTC", + -14.670889854431152 + ], + [ + "Tai", + -14.670914649963379 + ], + [ + "▁ABBA", + -14.670960426330566 + ], + [ + "niz", + -14.671014785766602 + ], + [ + "folded", + -14.671111106872559 + ], + [ + "路", + -14.671165466308594 + ], + [ + "▁با", + -14.671167373657227 + ], + [ + "▁follicular", + -14.671204566955566 + ], + [ + "▁Purim", + -14.671219825744629 + ], + [ + "▁Windshield", + -14.671221733093262 + ], + [ + "▁Altima", + -14.671222686767578 + ], + [ + "ssler", + -14.671229362487793 + ], + [ + "▁tugs", + -14.671244621276855 + ], + [ + "▁purl", + -14.671262741088867 + ], + [ + "▁1450", + -14.671277046203613 + ], + [ + "▁Karzai", + -14.671286582946777 + ], + [ + "▁tailed", + -14.67129135131836 + ], + [ + "▁Satisfied", + -14.671299934387207 + ], + [ + "▁Chambre", + -14.671303749084473 + ], + [ + "▁Kaj", + -14.671320915222168 + ], + [ + "▁bab", + -14.671323776245117 + ], + [ + "▁Tartar", + -14.671330451965332 + ], + [ + "bina", + -14.671335220336914 + ], + [ + "▁Seaport", + -14.671384811401367 + ], + [ + "▁covertly", + -14.671396255493164 + ], + [ + "▁SOD", + -14.671418190002441 + ], + [ + "▁Tomahawk", + -14.67143440246582 + ], + [ + "Korea", + -14.671443939208984 + ], + [ + "uity", + -14.671468734741211 + ], + [ + "▁VIS", + -14.671487808227539 + ], + [ + "▁Bj", + -14.671561241149902 + ], + [ + "▁Anglers", + -14.671573638916016 + ], + [ + "▁Maf", + -14.671616554260254 + ], + [ + "detailed", + -14.671650886535645 + ], + [ + "▁clinching", + -14.671658515930176 + ], + [ + "▁Hillsdale", + -14.671663284301758 + ], + [ + "▁Suriname", + -14.671686172485352 + ], + [ + "▁Holstein", + -14.671738624572754 + ], + [ + "alco", + -14.671743392944336 + ], + [ + "▁Trailing", + -14.671768188476562 + ], + [ + "▁Adventurer", + -14.671784400939941 + ], + [ + "bral", + -14.671853065490723 + ], + [ + "▁LUX", + -14.671868324279785 + ], + [ + "▁philosophically", + -14.671873092651367 + ], + [ + "▁virgins", + -14.671880722045898 + ], + [ + "▁Obstacle", + -14.671895027160645 + ], + [ + "▁bottomed", + -14.671908378601074 + ], + [ + "omania", + -14.67193603515625 + ], + [ + "▁anchovies", + -14.67196273803711 + ], + [ + "▁teenaged", + -14.672037124633789 + ], + [ + "▁Morality", + -14.672057151794434 + ], + [ + "IMF", + -14.672069549560547 + ], + [ + "Playing", + -14.672090530395508 + ], + [ + "▁anaemia", + -14.672101020812988 + ], + [ + "Cad", + -14.672106742858887 + ], + [ + "▁OPM", + -14.67213249206543 + ], + [ + "▁relent", + -14.672149658203125 + ], + [ + "▁detritus", + -14.672174453735352 + ], + [ + "▁airmen", + -14.672175407409668 + ], + [ + "▁PLN", + -14.672225952148438 + ], + [ + "▁Filtering", + -14.672228813171387 + ], + [ + "ansa", + -14.672229766845703 + ], + [ + "ophilus", + -14.672250747680664 + ], + [ + "▁Goodrich", + -14.672300338745117 + ], + [ + "pics", + -14.6723051071167 + ], + [ + "▁Aris", + -14.672308921813965 + ], + [ + "▁Hoard", + -14.672316551208496 + ], + [ + "▁transsexual", + -14.672378540039062 + ], + [ + "cosm", + -14.672435760498047 + ], + [ + "▁AWARD", + -14.67246150970459 + ], + [ + "▁60°", + -14.672476768493652 + ], + [ + "rva", + -14.672480583190918 + ], + [ + "▁Luzon", + -14.672510147094727 + ], + [ + "lko", + -14.672536849975586 + ], + [ + "oxetine", + -14.672547340393066 + ], + [ + "▁myopia", + -14.672584533691406 + ], + [ + "▁GRC", + -14.672600746154785 + ], + [ + "▁masts", + -14.672640800476074 + ], + [ + "haran", + -14.672642707824707 + ], + [ + "▁beholder", + -14.672661781311035 + ], + [ + "▁dejected", + -14.672663688659668 + ], + [ + "▁immortalized", + -14.672698974609375 + ], + [ + "synchron", + -14.672758102416992 + ], + [ + "▁calcification", + -14.672760009765625 + ], + [ + "▁Zora", + -14.672773361206055 + ], + [ + "▁heeded", + -14.672829627990723 + ], + [ + "▁Tents", + -14.672843933105469 + ], + [ + "Certainly", + -14.672844886779785 + ], + [ + "▁Maidstone", + -14.672884941101074 + ], + [ + "▁Invent", + -14.672900199890137 + ], + [ + "▁sia", + -14.67292308807373 + ], + [ + "▁Retrospective", + -14.672932624816895 + ], + [ + "▁Sprouts", + -14.672938346862793 + ], + [ + "थ", + -14.672942161560059 + ], + [ + "▁Brainstorm", + -14.673008918762207 + ], + [ + "▁imprecise", + -14.673008918762207 + ], + [ + "▁reimagine", + -14.673035621643066 + ], + [ + "▁Hariri", + -14.673057556152344 + ], + [ + "geography", + -14.67308235168457 + ], + [ + "▁Knockout", + -14.67310619354248 + ], + [ + "▁Hilliard", + -14.673121452331543 + ], + [ + "buds", + -14.67312240600586 + ], + [ + "▁Layered", + -14.673129081726074 + ], + [ + "▁Linksys", + -14.673151016235352 + ], + [ + "▁Depository", + -14.67315673828125 + ], + [ + "▁Rockin", + -14.673185348510742 + ], + [ + "Into", + -14.673202514648438 + ], + [ + "▁microfluidic", + -14.673212051391602 + ], + [ + "▁augmenting", + -14.67321491241455 + ], + [ + "▁unaccounted", + -14.673240661621094 + ], + [ + "▁blameless", + -14.673270225524902 + ], + [ + "▁Segmentation", + -14.673277854919434 + ], + [ + "▁š", + -14.673277854919434 + ], + [ + "▁Rapunzel", + -14.673375129699707 + ], + [ + "anui", + -14.673410415649414 + ], + [ + "▁Cranes", + -14.673431396484375 + ], + [ + "▁Repo", + -14.673446655273438 + ], + [ + "Production", + -14.673457145690918 + ], + [ + "▁boggle", + -14.673457145690918 + ], + [ + "ativ", + -14.673471450805664 + ], + [ + "▁skein", + -14.673471450805664 + ], + [ + "▁rhizome", + -14.673486709594727 + ], + [ + "▁lustre", + -14.673513412475586 + ], + [ + "▁Houzz", + -14.673524856567383 + ], + [ + "forme", + -14.673529624938965 + ], + [ + "▁crustaceans", + -14.673554420471191 + ], + [ + "cycled", + -14.673608779907227 + ], + [ + "uthi", + -14.67361068725586 + ], + [ + "rimin", + -14.673627853393555 + ], + [ + "▁Truthfully", + -14.673656463623047 + ], + [ + "▁Advan", + -14.673674583435059 + ], + [ + "acetic", + -14.673684120178223 + ], + [ + "▁Flashback", + -14.673707962036133 + ], + [ + "▁Wycombe", + -14.673728942871094 + ], + [ + "▁Valparaiso", + -14.673731803894043 + ], + [ + "▁heretics", + -14.673744201660156 + ], + [ + "▁RISC", + -14.673749923706055 + ], + [ + "▁cosa", + -14.673778533935547 + ], + [ + "▁otra", + -14.673784255981445 + ], + [ + "rious", + -14.673786163330078 + ], + [ + "▁CLP", + -14.67379379272461 + ], + [ + "▁Torquay", + -14.673818588256836 + ], + [ + "▁cotta", + -14.673871040344238 + ], + [ + "aree", + -14.673882484436035 + ], + [ + "Til", + -14.673904418945312 + ], + [ + "▁Guil", + -14.67391300201416 + ], + [ + "▁meteoric", + -14.673952102661133 + ], + [ + "▁RBA", + -14.674020767211914 + ], + [ + "▁Duckworth", + -14.674023628234863 + ], + [ + "Vintage", + -14.674121856689453 + ], + [ + "prov", + -14.674135208129883 + ], + [ + "▁confederation", + -14.674164772033691 + ], + [ + "transformation", + -14.674165725708008 + ], + [ + "▁Salina", + -14.674177169799805 + ], + [ + "▁Dense", + -14.674236297607422 + ], + [ + "ianna", + -14.674251556396484 + ], + [ + "▁Bellagio", + -14.674271583557129 + ], + [ + "Military", + -14.674273490905762 + ], + [ + "▁epistemic", + -14.674358367919922 + ], + [ + "luca", + -14.674406051635742 + ], + [ + "▁incongruous", + -14.67442512512207 + ], + [ + "erberg", + -14.674516677856445 + ], + [ + "▁Passat", + -14.674571990966797 + ], + [ + "▁nondescript", + -14.674580574035645 + ], + [ + "▁Cobain", + -14.674593925476074 + ], + [ + "▁switcher", + -14.674610137939453 + ], + [ + "▁armpits", + -14.674643516540527 + ], + [ + "▁Panchayat", + -14.674651145935059 + ], + [ + "lowering", + -14.674659729003906 + ], + [ + "▁PFA", + -14.674665451049805 + ], + [ + "▁Samu", + -14.674673080444336 + ], + [ + "▁lodgings", + -14.67467975616455 + ], + [ + "▁viii", + -14.674697875976562 + ], + [ + "▁bombastic", + -14.674715042114258 + ], + [ + "▁Horatio", + -14.67476749420166 + ], + [ + "ök", + -14.674768447875977 + ], + [ + "▁diverged", + -14.67477035522461 + ], + [ + "▁sali", + -14.674771308898926 + ], + [ + "rasi", + -14.674787521362305 + ], + [ + "algebra", + -14.67482852935791 + ], + [ + "▁Braintree", + -14.674867630004883 + ], + [ + "▁Reimbursement", + -14.674867630004883 + ], + [ + "▁IPOs", + -14.674875259399414 + ], + [ + "▁Kuwaiti", + -14.674896240234375 + ], + [ + "▁PLR", + -14.674898147583008 + ], + [ + "▁Reconnaissance", + -14.674906730651855 + ], + [ + "ugly", + -14.67493724822998 + ], + [ + "Annual", + -14.674938201904297 + ], + [ + "ickle", + -14.67496109008789 + ], + [ + "▁728", + -14.674980163574219 + ], + [ + "maniac", + -14.675010681152344 + ], + [ + "▁Thé", + -14.675016403198242 + ], + [ + "▁divin", + -14.675030708312988 + ], + [ + "▁Trudy", + -14.675036430358887 + ], + [ + "ffle", + -14.67508316040039 + ], + [ + "▁bookseller", + -14.675091743469238 + ], + [ + "▁Glider", + -14.6751070022583 + ], + [ + "▁Groovy", + -14.675149917602539 + ], + [ + "▁Shag", + -14.675162315368652 + ], + [ + "perl", + -14.675179481506348 + ], + [ + "glacial", + -14.675185203552246 + ], + [ + "▁DET", + -14.675188064575195 + ], + [ + "▁Oden", + -14.675203323364258 + ], + [ + "olen", + -14.675209045410156 + ], + [ + "▁Bangle", + -14.675230979919434 + ], + [ + "▁coronal", + -14.675249099731445 + ], + [ + "▁XZ", + -14.67525577545166 + ], + [ + "▁sulk", + -14.675291061401367 + ], + [ + "paration", + -14.675312995910645 + ], + [ + "MAIL", + -14.675318717956543 + ], + [ + "▁Devan", + -14.675372123718262 + ], + [ + "▁Analytic", + -14.675395965576172 + ], + [ + "▁sartorial", + -14.675408363342285 + ], + [ + "deprecating", + -14.67543888092041 + ], + [ + "Comfort", + -14.67544937133789 + ], + [ + "▁Hillel", + -14.675466537475586 + ], + [ + "rkin", + -14.675470352172852 + ], + [ + "veda", + -14.675477981567383 + ], + [ + "▁Interrupt", + -14.675491333007812 + ], + [ + "▁jetting", + -14.675493240356445 + ], + [ + "▁footbridge", + -14.675507545471191 + ], + [ + "▁Lovett", + -14.675518989562988 + ], + [ + "▁goosebumps", + -14.675532341003418 + ], + [ + "▁Bahama", + -14.675537109375 + ], + [ + "▁priestess", + -14.675538063049316 + ], + [ + "troll", + -14.675577163696289 + ], + [ + "Via", + -14.675592422485352 + ], + [ + "▁Hiroshi", + -14.6755952835083 + ], + [ + "▁aegis", + -14.675618171691895 + ], + [ + "▁COOK", + -14.675622940063477 + ], + [ + "▁734", + -14.675667762756348 + ], + [ + "ruc", + -14.675671577453613 + ], + [ + "▁scavenge", + -14.67568302154541 + ], + [ + "▁Bourke", + -14.675692558288574 + ], + [ + "▁IMC", + -14.675716400146484 + ], + [ + "▁Dermot", + -14.675752639770508 + ], + [ + "singh", + -14.67584228515625 + ], + [ + "▁AGI", + -14.675850868225098 + ], + [ + "▁racehorse", + -14.675859451293945 + ], + [ + "▁overhear", + -14.675887107849121 + ], + [ + "▁GBA", + -14.67591667175293 + ], + [ + "▁Chyna", + -14.67594051361084 + ], + [ + "fter", + -14.675996780395508 + ], + [ + "pounder", + -14.676008224487305 + ], + [ + "Slide", + -14.676067352294922 + ], + [ + "insider", + -14.676078796386719 + ], + [ + "goer", + -14.676085472106934 + ], + [ + "▁guerilla", + -14.676111221313477 + ], + [ + "ower", + -14.676124572753906 + ], + [ + "▁Lü", + -14.676139831542969 + ], + [ + "▁disapproved", + -14.676139831542969 + ], + [ + "rber", + -14.676161766052246 + ], + [ + "▁Ambition", + -14.676177024841309 + ], + [ + "▁Elmira", + -14.676190376281738 + ], + [ + "▁resistive", + -14.676194190979004 + ], + [ + "ERK", + -14.676226615905762 + ], + [ + "▁Hagar", + -14.676237106323242 + ], + [ + "▁Incomplete", + -14.676252365112305 + ], + [ + "▁Meijer", + -14.676267623901367 + ], + [ + "▁Manziel", + -14.676307678222656 + ], + [ + "UPI", + -14.676312446594238 + ], + [ + "ophy", + -14.676342010498047 + ], + [ + "▁multibillion", + -14.676351547241211 + ], + [ + "▁Paralympics", + -14.676362037658691 + ], + [ + "▁bludgeon", + -14.676401138305664 + ], + [ + "▁667", + -14.676405906677246 + ], + [ + "▁carted", + -14.676424980163574 + ], + [ + "bop", + -14.676447868347168 + ], + [ + "▁kro", + -14.676471710205078 + ], + [ + "▁unconcerned", + -14.676505088806152 + ], + [ + "▁intertwine", + -14.676521301269531 + ], + [ + "▁Yip", + -14.67656421661377 + ], + [ + "▁primo", + -14.67660140991211 + ], + [ + "▁Straus", + -14.67661190032959 + ], + [ + "shun", + -14.676624298095703 + ], + [ + "▁Applies", + -14.676684379577637 + ], + [ + "▁Collectible", + -14.676694869995117 + ], + [ + "▁Gradient", + -14.676697731018066 + ], + [ + "▁bos", + -14.676698684692383 + ], + [ + "▁Nicotine", + -14.676700592041016 + ], + [ + "▁Valli", + -14.67672348022461 + ], + [ + "▁enveloping", + -14.676726341247559 + ], + [ + "▁Glance", + -14.676730155944824 + ], + [ + "▁Phrase", + -14.676745414733887 + ], + [ + "▁Menzies", + -14.676797866821289 + ], + [ + "brace", + -14.67682933807373 + ], + [ + "▁Specialization", + -14.676868438720703 + ], + [ + "▁Signaling", + -14.67695140838623 + ], + [ + "▁Anarchist", + -14.676963806152344 + ], + [ + "▁Fuentes", + -14.676982879638672 + ], + [ + "▁chromo", + -14.67700481414795 + ], + [ + "▁Realism", + -14.677007675170898 + ], + [ + "▁vardenafil", + -14.6770601272583 + ], + [ + "▁transfection", + -14.677070617675781 + ], + [ + "▁Devotion", + -14.677077293395996 + ], + [ + "▁TSH", + -14.677092552185059 + ], + [ + "▁Affiliated", + -14.677103042602539 + ], + [ + "▁ballooning", + -14.677125930786133 + ], + [ + "▁McPhee", + -14.67713451385498 + ], + [ + "▁Haig", + -14.67714786529541 + ], + [ + "ensing", + -14.677164077758789 + ], + [ + "UPDATE", + -14.677173614501953 + ], + [ + "▁Obs", + -14.677191734313965 + ], + [ + "▁Noam", + -14.677206039428711 + ], + [ + "▁dampening", + -14.677241325378418 + ], + [ + "▁neutralized", + -14.677251815795898 + ], + [ + "▁hornet", + -14.677263259887695 + ], + [ + "▁blighted", + -14.67728042602539 + ], + [ + "▁journeyman", + -14.677281379699707 + ], + [ + "▁BACKGROUND", + -14.67731761932373 + ], + [ + "▁Communi", + -14.677326202392578 + ], + [ + "isel", + -14.677337646484375 + ], + [ + "▁Icahn", + -14.677339553833008 + ], + [ + "▁621", + -14.677422523498535 + ], + [ + "▁qa", + -14.677435874938965 + ], + [ + "▁theorems", + -14.677445411682129 + ], + [ + "▁Bile", + -14.677453994750977 + ], + [ + "▁morphs", + -14.677469253540039 + ], + [ + "hedron", + -14.677528381347656 + ], + [ + "elier", + -14.677532196044922 + ], + [ + "skiing", + -14.677535057067871 + ], + [ + "▁Mox", + -14.677541732788086 + ], + [ + "▁Armitage", + -14.677549362182617 + ], + [ + "tog", + -14.677559852600098 + ], + [ + "▁concurrency", + -14.677595138549805 + ], + [ + "supplier", + -14.677621841430664 + ], + [ + "acek", + -14.677632331848145 + ], + [ + "moz", + -14.677647590637207 + ], + [ + "repeated", + -14.677690505981445 + ], + [ + "Balance", + -14.677713394165039 + ], + [ + "Walking", + -14.677742958068848 + ], + [ + "Portal", + -14.677752494812012 + ], + [ + "▁Compliant", + -14.677767753601074 + ], + [ + "alva", + -14.677773475646973 + ], + [ + "▁HughesNet", + -14.677812576293945 + ], + [ + "rigid", + -14.677854537963867 + ], + [ + "▁Turismo", + -14.677854537963867 + ], + [ + "▁RECEIVE", + -14.677903175354004 + ], + [ + "▁captioning", + -14.677907943725586 + ], + [ + "Annie", + -14.6779203414917 + ], + [ + "▁Educated", + -14.677984237670898 + ], + [ + "▁Perce", + -14.677986145019531 + ], + [ + "oscopic", + -14.67798900604248 + ], + [ + "▁retweet", + -14.678003311157227 + ], + [ + "▁retinol", + -14.67800521850586 + ], + [ + "▁Х", + -14.67801570892334 + ], + [ + "▁Hyland", + -14.678047180175781 + ], + [ + "▁paves", + -14.678049087524414 + ], + [ + "ORN", + -14.678060531616211 + ], + [ + "refresh", + -14.678094863891602 + ], + [ + "maha", + -14.678102493286133 + ], + [ + "▁Vishal", + -14.678135871887207 + ], + [ + "scient", + -14.678140640258789 + ], + [ + "RIM", + -14.67814826965332 + ], + [ + "▁prat", + -14.678165435791016 + ], + [ + "▁psychics", + -14.678168296813965 + ], + [ + "▁Forskolin", + -14.678177833557129 + ], + [ + "▁PARTS", + -14.678179740905762 + ], + [ + "▁Herbie", + -14.678192138671875 + ], + [ + "rauch", + -14.678193092346191 + ], + [ + "音", + -14.678199768066406 + ], + [ + "▁Moos", + -14.67822265625 + ], + [ + "▁JOHNSON", + -14.678223609924316 + ], + [ + "▁conformed", + -14.678239822387695 + ], + [ + "acer", + -14.67825698852539 + ], + [ + "songs", + -14.678264617919922 + ], + [ + "▁abridged", + -14.678300857543945 + ], + [ + "▁sceptic", + -14.678325653076172 + ], + [ + "islav", + -14.678326606750488 + ], + [ + "▁Bogdan", + -14.678327560424805 + ], + [ + "▁Chemotherapy", + -14.678332328796387 + ], + [ + "▁arXiv", + -14.678332328796387 + ], + [ + "▁jellies", + -14.678351402282715 + ], + [ + "▁pathologists", + -14.678362846374512 + ], + [ + "Rae", + -14.678375244140625 + ], + [ + "▁Macroeconomic", + -14.678378105163574 + ], + [ + "▁Josephus", + -14.678415298461914 + ], + [ + "▁Choctaw", + -14.678421020507812 + ], + [ + "Dude", + -14.678424835205078 + ], + [ + "▁913", + -14.678462982177734 + ], + [ + "▁leuk", + -14.678488731384277 + ], + [ + "▁Sizing", + -14.678491592407227 + ], + [ + "▁Gasket", + -14.67850399017334 + ], + [ + "▁retouching", + -14.678579330444336 + ], + [ + "ruf", + -14.678590774536133 + ], + [ + "Swan", + -14.678717613220215 + ], + [ + "HEA", + -14.678739547729492 + ], + [ + "jordan", + -14.678743362426758 + ], + [ + "▁effusion", + -14.67876148223877 + ], + [ + "▁Rafe", + -14.678763389587402 + ], + [ + "▁Daydream", + -14.67878246307373 + ], + [ + "▁Swine", + -14.678797721862793 + ], + [ + "▁skirmishes", + -14.678807258605957 + ], + [ + "ük", + -14.678814888000488 + ], + [ + "▁Agora", + -14.678825378417969 + ], + [ + "▁Riz", + -14.678826332092285 + ], + [ + "Medium", + -14.678840637207031 + ], + [ + "yrus", + -14.678877830505371 + ], + [ + "mpf", + -14.678898811340332 + ], + [ + "Among", + -14.678958892822266 + ], + [ + "License", + -14.678959846496582 + ], + [ + "▁Phoenician", + -14.678973197937012 + ], + [ + "sweat", + -14.679001808166504 + ], + [ + "▁lapped", + -14.679009437561035 + ], + [ + "▁goodnight", + -14.67906379699707 + ], + [ + "▁identically", + -14.679076194763184 + ], + [ + "▁Suggestion", + -14.679107666015625 + ], + [ + "gotten", + -14.679123878479004 + ], + [ + "fowl", + -14.679165840148926 + ], + [ + "éro", + -14.679256439208984 + ], + [ + "▁FOMC", + -14.679288864135742 + ], + [ + "▁paradoxes", + -14.67929744720459 + ], + [ + "▁MEETING", + -14.679339408874512 + ], + [ + "▁LPC", + -14.679347038269043 + ], + [ + "▁Monahan", + -14.679349899291992 + ], + [ + "▁CONFERENCE", + -14.67940616607666 + ], + [ + "▁Endeavor", + -14.679415702819824 + ], + [ + "▁Occasions", + -14.679422378540039 + ], + [ + "▁Excavator", + -14.679444313049316 + ], + [ + "▁Groundhog", + -14.679450035095215 + ], + [ + "▁BASIS", + -14.679472923278809 + ], + [ + "▁FEAR", + -14.6795015335083 + ], + [ + "Along", + -14.67951488494873 + ], + [ + "▁OSC", + -14.679532051086426 + ], + [ + "▁NEET", + -14.679582595825195 + ], + [ + "▁Wolfpack", + -14.679594993591309 + ], + [ + "estra", + -14.679649353027344 + ], + [ + "MTA", + -14.679652214050293 + ], + [ + "▁skimpy", + -14.679652214050293 + ], + [ + "▁FEW", + -14.679657936096191 + ], + [ + "Carbon", + -14.679705619812012 + ], + [ + "▁mesmerising", + -14.679715156555176 + ], + [ + "▁Acharya", + -14.6797456741333 + ], + [ + "▁Longevity", + -14.679763793945312 + ], + [ + "▁Insomnia", + -14.679788589477539 + ], + [ + "▁duckling", + -14.679813385009766 + ], + [ + "learned", + -14.67984390258789 + ], + [ + "▁batching", + -14.679880142211914 + ], + [ + "▁IBPS", + -14.679899215698242 + ], + [ + "▁Obedience", + -14.679996490478516 + ], + [ + "▁Jud", + -14.680012702941895 + ], + [ + "▁Scorecard", + -14.680013656616211 + ], + [ + "▁KRA", + -14.680036544799805 + ], + [ + "▁fibroids", + -14.680044174194336 + ], + [ + "PERS", + -14.68005084991455 + ], + [ + "▁Tye", + -14.680061340332031 + ], + [ + "▁ophthalmology", + -14.68006420135498 + ], + [ + "▁Rancher", + -14.680083274841309 + ], + [ + "▁Hü", + -14.680086135864258 + ], + [ + "Rider", + -14.680136680603027 + ], + [ + "▁BOT", + -14.680194854736328 + ], + [ + "▁taunts", + -14.680238723754883 + ], + [ + "arek", + -14.680251121520996 + ], + [ + "▁Wilkerson", + -14.680261611938477 + ], + [ + "▁revs", + -14.680298805236816 + ], + [ + "▁ew", + -14.680317878723145 + ], + [ + "▁Livonia", + -14.680336952209473 + ], + [ + "motivation", + -14.680343627929688 + ], + [ + "▁triglyceride", + -14.68035888671875 + ], + [ + "▁gasps", + -14.680359840393066 + ], + [ + "속", + -14.680364608764648 + ], + [ + "CFA", + -14.68037223815918 + ], + [ + "chop", + -14.68042278289795 + ], + [ + "▁Babb", + -14.680459976196289 + ], + [ + "▁Atlassian", + -14.680587768554688 + ], + [ + "▁3300", + -14.680612564086914 + ], + [ + "lusion", + -14.68064022064209 + ], + [ + "Flower", + -14.680675506591797 + ], + [ + "ções", + -14.680689811706543 + ], + [ + "▁muses", + -14.680756568908691 + ], + [ + "▁volta", + -14.68077278137207 + ], + [ + "▁Drayton", + -14.6807861328125 + ], + [ + "communications", + -14.680793762207031 + ], + [ + "smelling", + -14.680793762207031 + ], + [ + "▁locomotion", + -14.680814743041992 + ], + [ + "▁Remnant", + -14.680825233459473 + ], + [ + "▁Pavement", + -14.680831909179688 + ], + [ + "vich", + -14.680849075317383 + ], + [ + "▁rehash", + -14.680871963500977 + ], + [ + "▁kidnappers", + -14.68089485168457 + ], + [ + "Commission", + -14.68090534210205 + ], + [ + "▁machin", + -14.68097972869873 + ], + [ + "▁Newbie", + -14.681007385253906 + ], + [ + "▁Mohr", + -14.681028366088867 + ], + [ + "▁soundscapes", + -14.681051254272461 + ], + [ + "EMI", + -14.68105697631836 + ], + [ + "▁Modal", + -14.681077003479004 + ], + [ + "boi", + -14.681124687194824 + ], + [ + "censor", + -14.681132316589355 + ], + [ + "▁jalapenos", + -14.681159019470215 + ], + [ + "▁breaded", + -14.681221008300781 + ], + [ + "▁Salma", + -14.68122386932373 + ], + [ + "▁Ottomans", + -14.681229591369629 + ], + [ + "▁painkiller", + -14.681245803833008 + ], + [ + "▁Eucharistic", + -14.681262016296387 + ], + [ + "▁attestation", + -14.681266784667969 + ], + [ + "▁Trujillo", + -14.681275367736816 + ], + [ + "ningen", + -14.681299209594727 + ], + [ + "durable", + -14.681304931640625 + ], + [ + "▁altars", + -14.681306838989258 + ], + [ + "erung", + -14.681317329406738 + ], + [ + "▁headpiece", + -14.681363105773926 + ], + [ + "diverse", + -14.681370735168457 + ], + [ + "▁jewelers", + -14.681376457214355 + ], + [ + "▁XHTML", + -14.681429862976074 + ], + [ + "▁spank", + -14.681440353393555 + ], + [ + "▁LEAST", + -14.6814603805542 + ], + [ + "▁Leamington", + -14.681502342224121 + ], + [ + "▁undemocratic", + -14.68150520324707 + ], + [ + "jic", + -14.681516647338867 + ], + [ + "▁CARL", + -14.681527137756348 + ], + [ + "▁Candlestick", + -14.681547164916992 + ], + [ + "▁Gana", + -14.681574821472168 + ], + [ + "▁Bamba", + -14.681617736816406 + ], + [ + "awake", + -14.681647300720215 + ], + [ + "riders", + -14.68167495727539 + ], + [ + "▁subroutine", + -14.681702613830566 + ], + [ + "anywhere", + -14.68171501159668 + ], + [ + "▁Oversee", + -14.681763648986816 + ], + [ + "▁GOVERNMENT", + -14.68178939819336 + ], + [ + "knows", + -14.681794166564941 + ], + [ + "▁finial", + -14.681842803955078 + ], + [ + "modulation", + -14.681872367858887 + ], + [ + "▁Conch", + -14.681888580322266 + ], + [ + "▁wetness", + -14.681923866271973 + ], + [ + "▁conceals", + -14.681924819946289 + ], + [ + "▁Sennheiser", + -14.68193531036377 + ], + [ + "▁Stoner", + -14.681970596313477 + ], + [ + "▁Laughlin", + -14.681973457336426 + ], + [ + "▁decrepit", + -14.681974411010742 + ], + [ + "▁seething", + -14.681975364685059 + ], + [ + "▁587", + -14.681995391845703 + ], + [ + "▁다", + -14.682026863098145 + ], + [ + "thri", + -14.682047843933105 + ], + [ + "▁raj", + -14.682073593139648 + ], + [ + "▁molars", + -14.682080268859863 + ], + [ + "▁VPC", + -14.68210220336914 + ], + [ + "▁hampering", + -14.682103157043457 + ], + [ + "Backup", + -14.682106018066406 + ], + [ + "completion", + -14.682106018066406 + ], + [ + "▁Selector", + -14.682117462158203 + ], + [ + "CAST", + -14.68212604522705 + ], + [ + "Walter", + -14.68212604522705 + ], + [ + "▁Handbag", + -14.682254791259766 + ], + [ + "▁Scarp", + -14.68226146697998 + ], + [ + "▁icky", + -14.682271003723145 + ], + [ + "▁Sandwiches", + -14.682307243347168 + ], + [ + "▁irritant", + -14.682319641113281 + ], + [ + "▁Coronary", + -14.68232250213623 + ], + [ + "▁Giroux", + -14.682361602783203 + ], + [ + "▁diferent", + -14.68237590789795 + ], + [ + "NAM", + -14.682379722595215 + ], + [ + "▁Haddad", + -14.682411193847656 + ], + [ + "▁Sugi", + -14.682411193847656 + ], + [ + "ferring", + -14.682418823242188 + ], + [ + "▁AAF", + -14.682466506958008 + ], + [ + "hada", + -14.682486534118652 + ], + [ + "▁immaculately", + -14.682496070861816 + ], + [ + "▁639", + -14.682514190673828 + ], + [ + "▁Rubi", + -14.68254280090332 + ], + [ + "hud", + -14.6825590133667 + ], + [ + "gator", + -14.68256664276123 + ], + [ + "▁Unger", + -14.682567596435547 + ], + [ + "▁Hakim", + -14.682605743408203 + ], + [ + "▁Ethanol", + -14.682622909545898 + ], + [ + "▁Markit", + -14.682650566101074 + ], + [ + "▁Mahmud", + -14.682658195495605 + ], + [ + "만", + -14.68266487121582 + ], + [ + "itsky", + -14.682685852050781 + ], + [ + "▁macadamia", + -14.682711601257324 + ], + [ + "▁guar", + -14.682727813720703 + ], + [ + "▁Battersea", + -14.682737350463867 + ], + [ + "aksha", + -14.682740211486816 + ], + [ + "▁Overdrive", + -14.682741165161133 + ], + [ + "▁MacKinnon", + -14.68274974822998 + ], + [ + "▁Ibadan", + -14.682771682739258 + ], + [ + "Ticket", + -14.682775497436523 + ], + [ + "spinal", + -14.682788848876953 + ], + [ + "mycin", + -14.682823181152344 + ], + [ + "ム", + -14.682855606079102 + ], + [ + "uah", + -14.682856559753418 + ], + [ + "zma", + -14.682868957519531 + ], + [ + "▁groans", + -14.682879447937012 + ], + [ + "outer", + -14.68288803100586 + ], + [ + "жи", + -14.682889938354492 + ], + [ + "▁separators", + -14.682890892028809 + ], + [ + "▁mumbai", + -14.682909965515137 + ], + [ + "duh", + -14.682997703552246 + ], + [ + "▁sleight", + -14.683005332946777 + ], + [ + "▁Baru", + -14.683019638061523 + ], + [ + "▁Sokol", + -14.683040618896484 + ], + [ + "▁Adhere", + -14.683045387268066 + ], + [ + "axle", + -14.683112144470215 + ], + [ + "▁Unleashed", + -14.683117866516113 + ], + [ + "massage", + -14.683124542236328 + ], + [ + "dhya", + -14.68313217163086 + ], + [ + "ivar", + -14.683134078979492 + ], + [ + "▁salutation", + -14.683148384094238 + ], + [ + "affiliate", + -14.683154106140137 + ], + [ + "▁Dalmatian", + -14.683154106140137 + ], + [ + "Miles", + -14.683178901672363 + ], + [ + "▁MONTHS", + -14.683205604553223 + ], + [ + "▁Critter", + -14.683211326599121 + ], + [ + "rangi", + -14.683250427246094 + ], + [ + "▁polyp", + -14.683279037475586 + ], + [ + "▁Grasshopper", + -14.683280944824219 + ], + [ + "▁antecedent", + -14.6832914352417 + ], + [ + "▁Meantime", + -14.68329906463623 + ], + [ + "▁eric", + -14.68329906463623 + ], + [ + "▁LGBTI", + -14.683357238769531 + ], + [ + "▁uppermost", + -14.683358192443848 + ], + [ + "leck", + -14.683359146118164 + ], + [ + "▁gesturing", + -14.683364868164062 + ], + [ + "▁Maja", + -14.683366775512695 + ], + [ + "▁underwriter", + -14.683389663696289 + ], + [ + "▁Sumerian", + -14.68344497680664 + ], + [ + "▁storehouse", + -14.683446884155273 + ], + [ + "▁fringed", + -14.6834716796875 + ], + [ + "▁spore", + -14.683517456054688 + ], + [ + "တ", + -14.6835355758667 + ], + [ + "▁soars", + -14.68355941772461 + ], + [ + "binder", + -14.683574676513672 + ], + [ + "▁quartile", + -14.683574676513672 + ], + [ + "▁pectoral", + -14.683588027954102 + ], + [ + "laya", + -14.683622360229492 + ], + [ + "▁letterpress", + -14.68362808227539 + ], + [ + "▁lefties", + -14.68363094329834 + ], + [ + "▁Cesare", + -14.6836519241333 + ], + [ + "ería", + -14.683659553527832 + ], + [ + "▁Hah", + -14.683661460876465 + ], + [ + "▁sedimentation", + -14.683700561523438 + ], + [ + "▁antenatal", + -14.683706283569336 + ], + [ + "SDS", + -14.683712005615234 + ], + [ + "▁45°", + -14.683730125427246 + ], + [ + "▁Hartlepool", + -14.683731079101562 + ], + [ + "▁Unleash", + -14.683746337890625 + ], + [ + "▁lunges", + -14.68376636505127 + ], + [ + "▁persecute", + -14.683797836303711 + ], + [ + "▁straighter", + -14.683813095092773 + ], + [ + "▁Resilient", + -14.683828353881836 + ], + [ + "▁Cydia", + -14.683835983276367 + ], + [ + "▁Alsace", + -14.683841705322266 + ], + [ + "Souza", + -14.683854103088379 + ], + [ + "▁ACTIVE", + -14.683876037597656 + ], + [ + "▁Dermatol", + -14.683878898620605 + ], + [ + "▁Lynette", + -14.683979988098145 + ], + [ + "▁necessitating", + -14.68399429321289 + ], + [ + "▁Concealed", + -14.684021949768066 + ], + [ + "▁ALLEN", + -14.68404483795166 + ], + [ + "▁Cabinetry", + -14.68404769897461 + ], + [ + "▁Waukesha", + -14.684081077575684 + ], + [ + "▁Sion", + -14.68408203125 + ], + [ + "▁Icarus", + -14.684165000915527 + ], + [ + "▁Possibilities", + -14.684168815612793 + ], + [ + "▁Kindred", + -14.684173583984375 + ], + [ + "表", + -14.684185028076172 + ], + [ + "▁yd", + -14.684191703796387 + ], + [ + "▁Fret", + -14.684207916259766 + ], + [ + "▁Diners", + -14.68423843383789 + ], + [ + "imagining", + -14.684284210205078 + ], + [ + "▁railed", + -14.684343338012695 + ], + [ + "spaced", + -14.684345245361328 + ], + [ + "pills", + -14.684349060058594 + ], + [ + "▁Hallows", + -14.684355735778809 + ], + [ + "▁untitled", + -14.684355735778809 + ], + [ + "▁propels", + -14.68437671661377 + ], + [ + "▁VIR", + -14.684410095214844 + ], + [ + "▁Flop", + -14.684419631958008 + ], + [ + "▁Jum", + -14.684426307678223 + ], + [ + "▁Arr", + -14.684435844421387 + ], + [ + "▁wicks", + -14.68448257446289 + ], + [ + "SNA", + -14.684484481811523 + ], + [ + "▁Alva", + -14.684503555297852 + ], + [ + "▁fashionista", + -14.684503555297852 + ], + [ + "▁Neapolitan", + -14.684518814086914 + ], + [ + "而", + -14.684527397155762 + ], + [ + "OCH", + -14.68455982208252 + ], + [ + "▁Auch", + -14.684562683105469 + ], + [ + "▁Carers", + -14.684630393981934 + ], + [ + "Ghz", + -14.684645652770996 + ], + [ + "▁Nespresso", + -14.68465805053711 + ], + [ + "▁Guer", + -14.684663772583008 + ], + [ + "isme", + -14.684690475463867 + ], + [ + "crush", + -14.684694290161133 + ], + [ + "▁flatware", + -14.684709548950195 + ], + [ + "▁Stellenbosch", + -14.684713363647461 + ], + [ + "etin", + -14.684782028198242 + ], + [ + "assy", + -14.684822082519531 + ], + [ + "▁savanna", + -14.684845924377441 + ], + [ + "▁maligned", + -14.684870719909668 + ], + [ + "▁1785", + -14.68490219116211 + ], + [ + "▁drooping", + -14.684915542602539 + ], + [ + "gae", + -14.684921264648438 + ], + [ + "▁purporting", + -14.684937477111816 + ], + [ + "▁Enclave", + -14.684956550598145 + ], + [ + "gye", + -14.68496036529541 + ], + [ + "▁Mountaineers", + -14.68497085571289 + ], + [ + "▁Rabat", + -14.68499755859375 + ], + [ + "▁Occur", + -14.685009956359863 + ], + [ + "▁hearken", + -14.68501091003418 + ], + [ + "▁Maier", + -14.685023307800293 + ], + [ + "▁poco", + -14.685025215148926 + ], + [ + "▁AirPods", + -14.685036659240723 + ], + [ + "▁pediatricians", + -14.685056686401367 + ], + [ + "▁Urge", + -14.685074806213379 + ], + [ + "▁Homewood", + -14.685089111328125 + ], + [ + "▁galloping", + -14.685091972351074 + ], + [ + "▁Reverb", + -14.685093879699707 + ], + [ + "▁UGG", + -14.685097694396973 + ], + [ + "▁ROUND", + -14.68510627746582 + ], + [ + "▁Shroud", + -14.685117721557617 + ], + [ + "▁extricate", + -14.685142517089844 + ], + [ + "▁Leib", + -14.685149192810059 + ], + [ + "▁Mä", + -14.685179710388184 + ], + [ + "▁Dingle", + -14.685185432434082 + ], + [ + "Sophie", + -14.685188293457031 + ], + [ + "三", + -14.685196876525879 + ], + [ + "素", + -14.685234069824219 + ], + [ + "例", + -14.6852388381958 + ], + [ + "▁dispatches", + -14.685304641723633 + ], + [ + "CIN", + -14.685311317443848 + ], + [ + "▁Cataract", + -14.685336112976074 + ], + [ + "locating", + -14.685344696044922 + ], + [ + "▁Craps", + -14.685349464416504 + ], + [ + "Kris", + -14.685359954833984 + ], + [ + "▁overpaid", + -14.685389518737793 + ], + [ + "▁congenial", + -14.685395240783691 + ], + [ + "▁Rogan", + -14.685401916503906 + ], + [ + "Evil", + -14.685413360595703 + ], + [ + "ikos", + -14.685422897338867 + ], + [ + "Saver", + -14.685445785522461 + ], + [ + "▁collate", + -14.685452461242676 + ], + [ + "ARRY", + -14.685492515563965 + ], + [ + "▁être", + -14.685510635375977 + ], + [ + "▁Reload", + -14.685517311096191 + ], + [ + "stretched", + -14.685527801513672 + ], + [ + "▁GSP", + -14.685538291931152 + ], + [ + "cchia", + -14.685539245605469 + ], + [ + "▁flied", + -14.685551643371582 + ], + [ + "FAS", + -14.685574531555176 + ], + [ + "▁Represent", + -14.685576438903809 + ], + [ + "แ", + -14.685606002807617 + ], + [ + "▁Hossein", + -14.685612678527832 + ], + [ + "▁Hailing", + -14.685623168945312 + ], + [ + "analyze", + -14.685704231262207 + ], + [ + "▁Dominik", + -14.685736656188965 + ], + [ + "▁Lillie", + -14.685769081115723 + ], + [ + "▁dermis", + -14.685774803161621 + ], + [ + "▁ROA", + -14.685794830322266 + ], + [ + "▁Piero", + -14.68581771850586 + ], + [ + "ً", + -14.685832977294922 + ], + [ + "▁Stargate", + -14.6858549118042 + ], + [ + "EEA", + -14.68587589263916 + ], + [ + "▁redeveloped", + -14.685894966125488 + ], + [ + "▁degli", + -14.685909271240234 + ], + [ + "▁coped", + -14.685912132263184 + ], + [ + "▁Martinique", + -14.68593692779541 + ], + [ + "▁meritorious", + -14.685940742492676 + ], + [ + "aric", + -14.685946464538574 + ], + [ + "sweep", + -14.685959815979004 + ], + [ + "apan", + -14.685994148254395 + ], + [ + "Keeper", + -14.686004638671875 + ], + [ + "ummies", + -14.686055183410645 + ], + [ + "▁misappropriation", + -14.686078071594238 + ], + [ + "army", + -14.686079025268555 + ], + [ + "ecto", + -14.68609619140625 + ], + [ + "Iranian", + -14.686126708984375 + ], + [ + "▁pensioner", + -14.686141967773438 + ], + [ + "▁buffing", + -14.68616008758545 + ], + [ + "▁screenwriting", + -14.686186790466309 + ], + [ + "aking", + -14.68620491027832 + ], + [ + "Arizona", + -14.686205863952637 + ], + [ + "gave", + -14.68624210357666 + ], + [ + "▁Prenatal", + -14.686253547668457 + ], + [ + "COT", + -14.686264038085938 + ], + [ + "▁Lanc", + -14.686266899108887 + ], + [ + "Loan", + -14.686296463012695 + ], + [ + "owan", + -14.686323165893555 + ], + [ + "▁Riker", + -14.686373710632324 + ], + [ + "▁Badges", + -14.68639087677002 + ], + [ + "utan", + -14.686394691467285 + ], + [ + "Merry", + -14.686418533325195 + ], + [ + "▁outshine", + -14.68645191192627 + ], + [ + "▁Pem", + -14.686500549316406 + ], + [ + "▁kindest", + -14.686508178710938 + ], + [ + "▁UPSC", + -14.686545372009277 + ], + [ + "heroes", + -14.686641693115234 + ], + [ + "▁Naira", + -14.686644554138184 + ], + [ + "▁cybernetic", + -14.686678886413574 + ], + [ + "▁الت", + -14.686725616455078 + ], + [ + "▁fascinates", + -14.686779022216797 + ], + [ + "protocol", + -14.686789512634277 + ], + [ + "▁Satisfy", + -14.686797142028809 + ], + [ + "▁rex", + -14.686799049377441 + ], + [ + "▁decider", + -14.686866760253906 + ], + [ + "▁hustling", + -14.68687629699707 + ], + [ + "ир", + -14.686883926391602 + ], + [ + "▁Andrés", + -14.686901092529297 + ], + [ + "▁wheeling", + -14.686902046203613 + ], + [ + "▁EPDM", + -14.68691349029541 + ], + [ + "▁Katelyn", + -14.68696403503418 + ], + [ + "▁temperamental", + -14.68704605102539 + ], + [ + "▁568", + -14.687047004699707 + ], + [ + "▁domination", + -14.68707275390625 + ], + [ + "▁WINS", + -14.687085151672363 + ], + [ + "fontein", + -14.68713092803955 + ], + [ + "▁Oud", + -14.687141418457031 + ], + [ + "▁smallish", + -14.68716049194336 + ], + [ + "KAN", + -14.687177658081055 + ], + [ + "▁chondro", + -14.68718147277832 + ], + [ + "previous", + -14.687193870544434 + ], + [ + "Congratulations", + -14.687225341796875 + ], + [ + "데", + -14.687227249145508 + ], + [ + "hexa", + -14.687276840209961 + ], + [ + "▁devastate", + -14.687297821044922 + ], + [ + "NCH", + -14.687313079833984 + ], + [ + "NTS", + -14.687328338623047 + ], + [ + "▁Lannister", + -14.68734359741211 + ], + [ + "hoven", + -14.687347412109375 + ], + [ + "Chu", + -14.687495231628418 + ], + [ + "▁FSM", + -14.687586784362793 + ], + [ + "▁Spells", + -14.687615394592285 + ], + [ + "▁cerevisiae", + -14.68765640258789 + ], + [ + "▁Chari", + -14.687663078308105 + ], + [ + "▁XIX", + -14.687664985656738 + ], + [ + "▁lacy", + -14.687674522399902 + ], + [ + "▁helpdesk", + -14.687695503234863 + ], + [ + "poison", + -14.687708854675293 + ], + [ + "▁woolen", + -14.687727928161621 + ], + [ + "journalist", + -14.687747955322266 + ], + [ + "▁oldies", + -14.687751770019531 + ], + [ + "lity", + -14.687752723693848 + ], + [ + "MOR", + -14.68776798248291 + ], + [ + "▁Onward", + -14.687785148620605 + ], + [ + "▁disintegrated", + -14.687824249267578 + ], + [ + "▁putts", + -14.68783187866211 + ], + [ + "▁bop", + -14.687870025634766 + ], + [ + "▁Lennar", + -14.687883377075195 + ], + [ + "leben", + -14.687919616699219 + ], + [ + "actively", + -14.687926292419434 + ], + [ + "▁Demographics", + -14.68792724609375 + ], + [ + "▁forefoot", + -14.687928199768066 + ], + [ + "films", + -14.687938690185547 + ], + [ + "▁genocidal", + -14.687938690185547 + ], + [ + "▁FARC", + -14.687989234924316 + ], + [ + "▁nymphs", + -14.688013076782227 + ], + [ + "▁EDWARD", + -14.688014030456543 + ], + [ + "▁Snug", + -14.688032150268555 + ], + [ + "▁Bundes", + -14.688051223754883 + ], + [ + "ligh", + -14.688069343566895 + ], + [ + "▁typhoid", + -14.688085556030273 + ], + [ + "▁Homeopathy", + -14.688087463378906 + ], + [ + "Fusion", + -14.68809700012207 + ], + [ + "▁Salty", + -14.688101768493652 + ], + [ + "▁shied", + -14.688101768493652 + ], + [ + "▁Machi", + -14.688129425048828 + ], + [ + "▁hippy", + -14.68813419342041 + ], + [ + "▁Ibrahimovic", + -14.688186645507812 + ], + [ + "bole", + -14.688187599182129 + ], + [ + "wada", + -14.68822956085205 + ], + [ + "▁Sura", + -14.68828010559082 + ], + [ + "▁Herpes", + -14.688344955444336 + ], + [ + "cancerous", + -14.688360214233398 + ], + [ + "stereo", + -14.688362121582031 + ], + [ + "▁Holyoke", + -14.688392639160156 + ], + [ + "wipe", + -14.688411712646484 + ], + [ + "▁MSW", + -14.6884183883667 + ], + [ + "▁Cotswolds", + -14.688451766967773 + ], + [ + "forma", + -14.688454627990723 + ], + [ + "▁Therm", + -14.688459396362305 + ], + [ + "guys", + -14.688478469848633 + ], + [ + "▁ECT", + -14.68850326538086 + ], + [ + "bellied", + -14.688508033752441 + ], + [ + "▁Bowel", + -14.68855094909668 + ], + [ + "faire", + -14.688612937927246 + ], + [ + "▁sharia", + -14.688613891601562 + ], + [ + "▁polygraph", + -14.68864631652832 + ], + [ + "▁Joh", + -14.688671112060547 + ], + [ + "Shares", + -14.688673973083496 + ], + [ + "trash", + -14.688732147216797 + ], + [ + "EES", + -14.68879222869873 + ], + [ + "▁evaluator", + -14.688799858093262 + ], + [ + "ře", + -14.688858032226562 + ], + [ + "▁lonesome", + -14.688859939575195 + ], + [ + "▁Melee", + -14.68886661529541 + ], + [ + "▁guerrillas", + -14.688871383666992 + ], + [ + "▁rudely", + -14.688883781433105 + ], + [ + "▁Bobcat", + -14.688889503479004 + ], + [ + "▁Kissimmee", + -14.688896179199219 + ], + [ + "▁FIBA", + -14.688911437988281 + ], + [ + "▁Screenshot", + -14.688912391662598 + ], + [ + "▁Sandro", + -14.688931465148926 + ], + [ + "▁Gluco", + -14.68896484375 + ], + [ + "▁PRES", + -14.688974380493164 + ], + [ + "▁PSV", + -14.689001083374023 + ], + [ + "atri", + -14.689034461975098 + ], + [ + "▁impo", + -14.68903923034668 + ], + [ + "Matter", + -14.689046859741211 + ], + [ + "▁Amana", + -14.689048767089844 + ], + [ + "▁FCP", + -14.689064979553223 + ], + [ + "zard", + -14.68910026550293 + ], + [ + "▁OVA", + -14.689109802246094 + ], + [ + "▁powerhouses", + -14.689135551452637 + ], + [ + "▁Emilie", + -14.689165115356445 + ], + [ + "▁SWA", + -14.68917179107666 + ], + [ + "▁Liar", + -14.689190864562988 + ], + [ + "correction", + -14.689203262329102 + ], + [ + "▁Integra", + -14.689231872558594 + ], + [ + "▁SPG", + -14.689244270324707 + ], + [ + "stranded", + -14.68925666809082 + ], + [ + "▁Stead", + -14.689258575439453 + ], + [ + "▁sku", + -14.689291000366211 + ], + [ + "▁Midget", + -14.689292907714844 + ], + [ + "▁wove", + -14.689312934875488 + ], + [ + "▁Elektro", + -14.68932056427002 + ], + [ + "▁644", + -14.68936538696289 + ], + [ + "Yoga", + -14.689371109008789 + ], + [ + "▁FLAT", + -14.68938159942627 + ], + [ + "▁Bianco", + -14.689399719238281 + ], + [ + "▁homogeneity", + -14.689414024353027 + ], + [ + "▁Olly", + -14.689421653747559 + ], + [ + "▁florets", + -14.689525604248047 + ], + [ + "▁Keenum", + -14.689526557922363 + ], + [ + "▁Registering", + -14.68954086303711 + ], + [ + "▁withering", + -14.689573287963867 + ], + [ + "▁Crispin", + -14.689582824707031 + ], + [ + "Diet", + -14.689613342285156 + ], + [ + "▁Yag", + -14.689629554748535 + ], + [ + "▁smartwatches", + -14.689632415771484 + ], + [ + "▁conta", + -14.689665794372559 + ], + [ + "▁Microbial", + -14.689842224121094 + ], + [ + "▁convulsions", + -14.689864158630371 + ], + [ + "▁overclocking", + -14.689921379089355 + ], + [ + "▁distracts", + -14.689923286437988 + ], + [ + "▁obsolescence", + -14.690010070800781 + ], + [ + "PHE", + -14.690011024475098 + ], + [ + "olith", + -14.69002628326416 + ], + [ + "▁Pumpkins", + -14.69002914428711 + ], + [ + "▁enablers", + -14.690062522888184 + ], + [ + "▁Yandex", + -14.690068244934082 + ], + [ + "▁alibi", + -14.690070152282715 + ], + [ + "Danny", + -14.690107345581055 + ], + [ + "▁culpability", + -14.690129280090332 + ], + [ + "africa", + -14.690154075622559 + ], + [ + "uty", + -14.690178871154785 + ], + [ + "▁backtrack", + -14.690242767333984 + ], + [ + "Kansas", + -14.690250396728516 + ], + [ + "▁Ghaziabad", + -14.690314292907715 + ], + [ + "▁Nemesis", + -14.690322875976562 + ], + [ + "▁quenching", + -14.690357208251953 + ], + [ + "▁Cease", + -14.690360069274902 + ], + [ + "Vietnam", + -14.690425872802734 + ], + [ + "▁guillotine", + -14.690430641174316 + ], + [ + "▁pneumoniae", + -14.690478324890137 + ], + [ + "▁Macao", + -14.690483093261719 + ], + [ + "akar", + -14.690510749816895 + ], + [ + "▁Rotating", + -14.69053840637207 + ], + [ + "▁kul", + -14.690553665161133 + ], + [ + "▁neocon", + -14.690555572509766 + ], + [ + "▁duets", + -14.690557479858398 + ], + [ + "▁Buh", + -14.690579414367676 + ], + [ + "▁Promising", + -14.690581321716309 + ], + [ + "▁Со", + -14.690645217895508 + ], + [ + "▁REGISTER", + -14.690653800964355 + ], + [ + "▁Morristown", + -14.690667152404785 + ], + [ + "▁denominational", + -14.690690994262695 + ], + [ + "▁Progression", + -14.690710067749023 + ], + [ + "▁phi", + -14.69071102142334 + ], + [ + "▁hobo", + -14.690731048583984 + ], + [ + "bundle", + -14.69076156616211 + ], + [ + "▁digitalization", + -14.69080638885498 + ], + [ + "▁ANALYST", + -14.690813064575195 + ], + [ + "Monte", + -14.690834999084473 + ], + [ + "εί", + -14.690878868103027 + ], + [ + "▁Transcend", + -14.690886497497559 + ], + [ + "▁frizzy", + -14.690909385681152 + ], + [ + "▁Abdo", + -14.690913200378418 + ], + [ + "▁814", + -14.690914154052734 + ], + [ + "▁collarbone", + -14.690937995910645 + ], + [ + "▁Miata", + -14.690957069396973 + ], + [ + "Purple", + -14.69096565246582 + ], + [ + "Norman", + -14.690975189208984 + ], + [ + "▁crazier", + -14.691001892089844 + ], + [ + "▁uptown", + -14.691051483154297 + ], + [ + "SKY", + -14.691100120544434 + ], + [ + "ffici", + -14.691104888916016 + ], + [ + "▁GlaxoSmithKline", + -14.691106796264648 + ], + [ + "TAB", + -14.691142082214355 + ], + [ + "▁transcriptome", + -14.69115161895752 + ], + [ + "▁Lattice", + -14.691157341003418 + ], + [ + "Wedding", + -14.691161155700684 + ], + [ + "ным", + -14.69117259979248 + ], + [ + "illah", + -14.69118881225586 + ], + [ + "▁injunctive", + -14.691234588623047 + ], + [ + "▁CFTC", + -14.691241264343262 + ], + [ + "oxid", + -14.6912841796875 + ], + [ + "▁karmic", + -14.691286087036133 + ], + [ + "▁Kratom", + -14.691300392150879 + ], + [ + "toys", + -14.691344261169434 + ], + [ + "▁Krieg", + -14.691354751586914 + ], + [ + "▁bigot", + -14.691388130187988 + ], + [ + "▁Highlighting", + -14.691407203674316 + ], + [ + "▁cubed", + -14.691407203674316 + ], + [ + "▁Beryl", + -14.691411018371582 + ], + [ + "▁victors", + -14.691445350646973 + ], + [ + "calf", + -14.691475868225098 + ], + [ + "taki", + -14.691493034362793 + ], + [ + "▁trashy", + -14.691503524780273 + ], + [ + "▁hijackers", + -14.691506385803223 + ], + [ + "▁Francine", + -14.691530227661133 + ], + [ + "mortgage", + -14.691539764404297 + ], + [ + "▁rook", + -14.691559791564941 + ], + [ + "▁outrun", + -14.691563606262207 + ], + [ + "道", + -14.691607475280762 + ], + [ + "lair", + -14.691627502441406 + ], + [ + "گ", + -14.691632270812988 + ], + [ + "▁bentonite", + -14.691657066345215 + ], + [ + "ensure", + -14.691669464111328 + ], + [ + "▁adverb", + -14.691673278808594 + ], + [ + "적으로", + -14.691685676574707 + ], + [ + "▁Disruption", + -14.69174861907959 + ], + [ + "▁ICBM", + -14.691755294799805 + ], + [ + "gali", + -14.69177532196045 + ], + [ + "▁detours", + -14.691798210144043 + ], + [ + "singing", + -14.691803932189941 + ], + [ + "▁Styl", + -14.691828727722168 + ], + [ + "Waste", + -14.691861152648926 + ], + [ + "Oregon", + -14.691892623901367 + ], + [ + "ZR", + -14.691903114318848 + ], + [ + "▁Sawa", + -14.691914558410645 + ], + [ + "▁HOR", + -14.691950798034668 + ], + [ + "▁TEL", + -14.692023277282715 + ], + [ + "Growing", + -14.692028999328613 + ], + [ + "Engineering", + -14.69206428527832 + ], + [ + "▁eavesdropping", + -14.692112922668457 + ], + [ + "toward", + -14.692124366760254 + ], + [ + "▁reintroduction", + -14.692127227783203 + ], + [ + "▁Farrar", + -14.692140579223633 + ], + [ + "▁misnomer", + -14.692145347595215 + ], + [ + "DSA", + -14.69218635559082 + ], + [ + "▁DCF", + -14.692275047302246 + ], + [ + "ર", + -14.69231128692627 + ], + [ + "▁incursion", + -14.692322731018066 + ], + [ + "bela", + -14.69233512878418 + ], + [ + "▁twirling", + -14.69236946105957 + ], + [ + "▁puja", + -14.692375183105469 + ], + [ + "charts", + -14.69240665435791 + ], + [ + "▁soothed", + -14.69243049621582 + ], + [ + "▁Knu", + -14.692452430725098 + ], + [ + "▁dimple", + -14.69245719909668 + ], + [ + "Images", + -14.692484855651855 + ], + [ + "▁relapsed", + -14.692551612854004 + ], + [ + "▁countrywide", + -14.69255256652832 + ], + [ + "▁chennai", + -14.692585945129395 + ], + [ + "▁spectroscopic", + -14.692595481872559 + ], + [ + "▁darkroom", + -14.692655563354492 + ], + [ + "phosphonate", + -14.692678451538086 + ], + [ + "anji", + -14.692686080932617 + ], + [ + "esophageal", + -14.692791938781738 + ], + [ + "▁chimpanzee", + -14.6928071975708 + ], + [ + "▁Skelton", + -14.692840576171875 + ], + [ + "▁ARS", + -14.692846298217773 + ], + [ + "▁Myron", + -14.692853927612305 + ], + [ + "▁Maturity", + -14.692911148071289 + ], + [ + "▁reselling", + -14.692950248718262 + ], + [ + "▁Raft", + -14.692984580993652 + ], + [ + "▁tibial", + -14.692992210388184 + ], + [ + "Privacy", + -14.693018913269043 + ], + [ + "▁swaddle", + -14.693020820617676 + ], + [ + "▁LUT", + -14.693120956420898 + ], + [ + "▁paucity", + -14.69322395324707 + ], + [ + "▁Lifecycle", + -14.693224906921387 + ], + [ + "▁TSB", + -14.693232536315918 + ], + [ + "miracle", + -14.69324016571045 + ], + [ + "▁Maasai", + -14.69325065612793 + ], + [ + "Mau", + -14.693284034729004 + ], + [ + "▁Evgeni", + -14.693297386169434 + ], + [ + "OIL", + -14.69331169128418 + ], + [ + "▁scatters", + -14.69333267211914 + ], + [ + "▁Golding", + -14.693367958068848 + ], + [ + "▁Chunky", + -14.693376541137695 + ], + [ + "etty", + -14.693416595458984 + ], + [ + "▁cré", + -14.693455696105957 + ], + [ + "▁clemency", + -14.693489074707031 + ], + [ + "▁Rebirth", + -14.693517684936523 + ], + [ + "▁fingerprinting", + -14.693591117858887 + ], + [ + "▁Dianabol", + -14.69361686706543 + ], + [ + "▁dwarfed", + -14.693703651428223 + ], + [ + "▁stents", + -14.693724632263184 + ], + [ + "socialist", + -14.693741798400879 + ], + [ + "Denis", + -14.693747520446777 + ], + [ + "weapons", + -14.693791389465332 + ], + [ + "▁medallions", + -14.693821907043457 + ], + [ + "▁jacquard", + -14.693822860717773 + ], + [ + "би", + -14.693828582763672 + ], + [ + "▁Hoya", + -14.693832397460938 + ], + [ + "▁ITEMS", + -14.693849563598633 + ], + [ + "▁WAP", + -14.69387149810791 + ], + [ + "▁Postcards", + -14.693926811218262 + ], + [ + "▁Automate", + -14.694026947021484 + ], + [ + "▁wavered", + -14.694047927856445 + ], + [ + "▁Referendum", + -14.694059371948242 + ], + [ + "бе", + -14.69407844543457 + ], + [ + "▁Foote", + -14.694101333618164 + ], + [ + "▁Waterbury", + -14.694132804870605 + ], + [ + "EEL", + -14.694184303283691 + ], + [ + "▁macarons", + -14.694188117980957 + ], + [ + "trails", + -14.69421672821045 + ], + [ + "nze", + -14.694231986999512 + ], + [ + "▁Levitt", + -14.694302558898926 + ], + [ + "▁arthritic", + -14.694303512573242 + ], + [ + "▁Shum", + -14.694311141967773 + ], + [ + "chips", + -14.694360733032227 + ], + [ + "ulsive", + -14.69437026977539 + ], + [ + "zinski", + -14.694419860839844 + ], + [ + "▁reconsidered", + -14.694424629211426 + ], + [ + "▁karat", + -14.694451332092285 + ], + [ + "COMM", + -14.694461822509766 + ], + [ + "mittel", + -14.694466590881348 + ], + [ + "Society", + -14.694480895996094 + ], + [ + "▁Filipina", + -14.694504737854004 + ], + [ + "▁vene", + -14.694511413574219 + ], + [ + "▁menial", + -14.694579124450684 + ], + [ + "▁Anatolia", + -14.694623947143555 + ], + [ + "▁Folklore", + -14.694646835327148 + ], + [ + "▁Selina", + -14.694719314575195 + ], + [ + "oct", + -14.694730758666992 + ], + [ + "▁enlistment", + -14.694755554199219 + ], + [ + "weld", + -14.694779396057129 + ], + [ + "▁Gilroy", + -14.694823265075684 + ], + [ + "▁matric", + -14.694825172424316 + ], + [ + "introduced", + -14.694829940795898 + ], + [ + "positor", + -14.694835662841797 + ], + [ + "▁Bagley", + -14.694879531860352 + ], + [ + "▁choreograph", + -14.694916725158691 + ], + [ + "enfant", + -14.694929122924805 + ], + [ + "spatial", + -14.694958686828613 + ], + [ + "ROCK", + -14.694972038269043 + ], + [ + "▁Azar", + -14.694977760314941 + ], + [ + "▁BCH", + -14.69501781463623 + ], + [ + "▁Viruses", + -14.695037841796875 + ], + [ + "▁Desp", + -14.695062637329102 + ], + [ + "▁SAMSUNG", + -14.695089340209961 + ], + [ + "▁jubilant", + -14.695090293884277 + ], + [ + "uccio", + -14.69510555267334 + ], + [ + "▁sublimation", + -14.69511890411377 + ], + [ + "▁oxid", + -14.695131301879883 + ], + [ + "▁recaptured", + -14.695137977600098 + ], + [ + "▁Suga", + -14.695155143737793 + ], + [ + "jumping", + -14.695170402526855 + ], + [ + "▁Alcatraz", + -14.695198059082031 + ], + [ + "nef", + -14.695199966430664 + ], + [ + "▁etymology", + -14.695207595825195 + ], + [ + "▁Obituary", + -14.69521713256836 + ], + [ + "▁Dever", + -14.695226669311523 + ], + [ + "▁GRANT", + -14.695235252380371 + ], + [ + "▁Aggie", + -14.69525146484375 + ], + [ + "▁Quinnipiac", + -14.695266723632812 + ], + [ + "▁Rourke", + -14.695302963256836 + ], + [ + "▁schon", + -14.695342063903809 + ], + [ + "SPR", + -14.695403099060059 + ], + [ + "▁redecorate", + -14.69543743133545 + ], + [ + "▁palpitations", + -14.695444107055664 + ], + [ + "▁Constituent", + -14.69549560546875 + ], + [ + "ennial", + -14.695511817932129 + ], + [ + "▁FAIL", + -14.695562362670898 + ], + [ + "▁LBJ", + -14.695574760437012 + ], + [ + "rara", + -14.695627212524414 + ], + [ + "▁Wigg", + -14.695638656616211 + ], + [ + "strasse", + -14.695669174194336 + ], + [ + "▁chuckles", + -14.695682525634766 + ], + [ + "▁kë", + -14.69571304321289 + ], + [ + "▁Shara", + -14.695722579956055 + ], + [ + "promise", + -14.695745468139648 + ], + [ + "▁cleave", + -14.695745468139648 + ], + [ + "ое", + -14.695786476135254 + ], + [ + "▁аѕ", + -14.695833206176758 + ], + [ + "MUS", + -14.695845603942871 + ], + [ + "▁NextGen", + -14.695850372314453 + ], + [ + "▁Fendi", + -14.695884704589844 + ], + [ + "▁Horticultural", + -14.695886611938477 + ], + [ + "▁Moha", + -14.69588851928711 + ], + [ + "▁payee", + -14.69591236114502 + ], + [ + "▁PFS", + -14.6959228515625 + ], + [ + "▁Armistice", + -14.69592571258545 + ], + [ + "▁votive", + -14.695930480957031 + ], + [ + "▁Mittel", + -14.695932388305664 + ], + [ + "ophyte", + -14.695943832397461 + ], + [ + "ז", + -14.695974349975586 + ], + [ + "▁Brutus", + -14.695990562438965 + ], + [ + "▁Nieuw", + -14.69600772857666 + ], + [ + "▁resourcefulness", + -14.69604778289795 + ], + [ + "▁Ecumenical", + -14.69609260559082 + ], + [ + "▁Hainan", + -14.696106910705566 + ], + [ + "▁DRIVER", + -14.696113586425781 + ], + [ + "こと", + -14.696187973022461 + ], + [ + "elegant", + -14.696243286132812 + ], + [ + "▁givers", + -14.696267127990723 + ], + [ + "guine", + -14.696274757385254 + ], + [ + "▁bhi", + -14.696297645568848 + ], + [ + "▁McGuinness", + -14.696309089660645 + ], + [ + "▁Kenn", + -14.696310043334961 + ], + [ + "▁FMS", + -14.696324348449707 + ], + [ + "▁Capabilities", + -14.696334838867188 + ], + [ + "▁RTE", + -14.69636058807373 + ], + [ + "▁belting", + -14.696385383605957 + ], + [ + "▁elation", + -14.696405410766602 + ], + [ + "▁Caw", + -14.696412086486816 + ], + [ + "▁jin", + -14.696423530578613 + ], + [ + "▁Corsa", + -14.696441650390625 + ], + [ + "▁Stabilization", + -14.696452140808105 + ], + [ + "▁Jair", + -14.696474075317383 + ], + [ + "▁Lair", + -14.69649600982666 + ], + [ + "▁ign", + -14.696497917175293 + ], + [ + "▁mAb", + -14.696523666381836 + ], + [ + "▁stethoscope", + -14.696545600891113 + ], + [ + "▁SFC", + -14.696548461914062 + ], + [ + "▁Alcoholics", + -14.696553230285645 + ], + [ + "▁Hypno", + -14.696573257446289 + ], + [ + "▁mx", + -14.696592330932617 + ], + [ + "assen", + -14.696687698364258 + ], + [ + "▁Monrovia", + -14.696722984313965 + ], + [ + "proving", + -14.696735382080078 + ], + [ + "期", + -14.69674301147461 + ], + [ + "▁patrolled", + -14.69678783416748 + ], + [ + "▁AFI", + -14.696819305419922 + ], + [ + "▁dro", + -14.696880340576172 + ], + [ + "SSO", + -14.696887969970703 + ], + [ + "▁NTT", + -14.696907043457031 + ], + [ + "▁carbine", + -14.696916580200195 + ], + [ + "Convert", + -14.696944236755371 + ], + [ + "▁Petraeus", + -14.696961402893066 + ], + [ + "▁OWL", + -14.697001457214355 + ], + [ + "Mall", + -14.69700813293457 + ], + [ + "▁misogynistic", + -14.697032928466797 + ], + [ + "▁Boycott", + -14.697041511535645 + ], + [ + "RANCE", + -14.697067260742188 + ], + [ + "omir", + -14.697113037109375 + ], + [ + "▁thither", + -14.697128295898438 + ], + [ + "▁recherche", + -14.69713020324707 + ], + [ + "▁medio", + -14.697155952453613 + ], + [ + "▁outperforming", + -14.697158813476562 + ], + [ + "▁laboring", + -14.697175025939941 + ], + [ + "▁artifice", + -14.697213172912598 + ], + [ + "▁cramming", + -14.697229385375977 + ], + [ + "▁Persistence", + -14.697237968444824 + ], + [ + "▁Rhone", + -14.69733715057373 + ], + [ + "▁idealist", + -14.697342872619629 + ], + [ + "οι", + -14.697372436523438 + ], + [ + "▁scion", + -14.697372436523438 + ], + [ + "▁Goon", + -14.697434425354004 + ], + [ + "▁aphrodisiac", + -14.6974515914917 + ], + [ + "▁Logistic", + -14.697526931762695 + ], + [ + "▁Schme", + -14.697566986083984 + ], + [ + "▁Absinthe", + -14.69758129119873 + ], + [ + "▁Moulton", + -14.697586059570312 + ], + [ + "▁VCs", + -14.697610855102539 + ], + [ + "▁Wayland", + -14.69762134552002 + ], + [ + "▁mercedes", + -14.69762897491455 + ], + [ + "▁pleaser", + -14.69763469696045 + ], + [ + "1909", + -14.69764518737793 + ], + [ + "▁gingham", + -14.697647094726562 + ], + [ + "▁Lync", + -14.697649002075195 + ], + [ + "aab", + -14.697672843933105 + ], + [ + "▁Bumblebee", + -14.697691917419434 + ], + [ + "PCB", + -14.697714805603027 + ], + [ + "▁skied", + -14.697721481323242 + ], + [ + "▁erections", + -14.697726249694824 + ], + [ + "▁Diplo", + -14.69774341583252 + ], + [ + "▁tipster", + -14.69775676727295 + ], + [ + "preet", + -14.697770118713379 + ], + [ + "▁guava", + -14.697772026062012 + ], + [ + "amycin", + -14.697795867919922 + ], + [ + "▁shawls", + -14.697799682617188 + ], + [ + "kota", + -14.697839736938477 + ], + [ + "▁gibberish", + -14.697885513305664 + ], + [ + "▁segregate", + -14.69789981842041 + ], + [ + "▁Oye", + -14.697903633117676 + ], + [ + "onica", + -14.697969436645508 + ], + [ + "▁entranced", + -14.698019027709961 + ], + [ + "▁unfurl", + -14.698028564453125 + ], + [ + "Nano", + -14.69809627532959 + ], + [ + "及", + -14.698163032531738 + ], + [ + "▁thermos", + -14.698166847229004 + ], + [ + "▁galvanised", + -14.698174476623535 + ], + [ + "▁bumbling", + -14.698186874389648 + ], + [ + "▁Watering", + -14.69819450378418 + ], + [ + "▁Sunbeam", + -14.698206901550293 + ], + [ + "▁Gaya", + -14.69825553894043 + ], + [ + "▁Nez", + -14.698260307312012 + ], + [ + "▁Magpies", + -14.698261260986328 + ], + [ + "rā", + -14.69832992553711 + ], + [ + "▁relaunched", + -14.698366165161133 + ], + [ + "▁waterline", + -14.698405265808105 + ], + [ + "Ec", + -14.698434829711914 + ], + [ + "▁Clomid", + -14.698480606079102 + ], + [ + "▁liquidator", + -14.69848346710205 + ], + [ + "▁Sonnen", + -14.698504447937012 + ], + [ + "▁Σ", + -14.698528289794922 + ], + [ + "▁ELECTRIC", + -14.698535919189453 + ], + [ + "▁arrhythmias", + -14.698545455932617 + ], + [ + "▁Lenz", + -14.69857406616211 + ], + [ + "▁Comme", + -14.698580741882324 + ], + [ + "▁Chard", + -14.698613166809082 + ], + [ + "▁brainwashing", + -14.698614120483398 + ], + [ + "▁mettle", + -14.69863224029541 + ], + [ + "▁Uhuru", + -14.698657989501953 + ], + [ + "▁musicality", + -14.698712348937988 + ], + [ + "McG", + -14.698775291442871 + ], + [ + "▁ganz", + -14.698775291442871 + ], + [ + "▁Orban", + -14.698779106140137 + ], + [ + "▁Aachen", + -14.698797225952148 + ], + [ + "▁sunscreens", + -14.698822021484375 + ], + [ + "▁pax", + -14.698854446411133 + ], + [ + "▁Netgear", + -14.698868751525879 + ], + [ + "▁confidentially", + -14.698895454406738 + ], + [ + "▁RANGE", + -14.698898315429688 + ], + [ + "▁annihilate", + -14.698904991149902 + ], + [ + "▁Crag", + -14.698925018310547 + ], + [ + "▁computationally", + -14.69892692565918 + ], + [ + "csv", + -14.698952674865723 + ], + [ + "▁Dietitian", + -14.698960304260254 + ], + [ + "▁reciprocating", + -14.698970794677734 + ], + [ + "Junior", + -14.699024200439453 + ], + [ + "▁NetSuite", + -14.699033737182617 + ], + [ + "▁KIM", + -14.699041366577148 + ], + [ + "novate", + -14.699053764343262 + ], + [ + "▁Lic", + -14.699067115783691 + ], + [ + "CIT", + -14.699077606201172 + ], + [ + "▁worshipers", + -14.699117660522461 + ], + [ + "送", + -14.699146270751953 + ], + [ + "▁Optometry", + -14.6991548538208 + ], + [ + "▁Eldridge", + -14.69915771484375 + ], + [ + "▁reruns", + -14.699167251586914 + ], + [ + "▁interviewee", + -14.699173927307129 + ], + [ + "▁Crucible", + -14.699176788330078 + ], + [ + "Loc", + -14.699195861816406 + ], + [ + "▁quandary", + -14.699207305908203 + ], + [ + "▁racketeering", + -14.699210166931152 + ], + [ + "▁immobili", + -14.699264526367188 + ], + [ + "▁ZF", + -14.699265480041504 + ], + [ + "▁Bots", + -14.699271202087402 + ], + [ + "▁prin", + -14.699301719665527 + ], + [ + "▁Wp", + -14.699304580688477 + ], + [ + "▁Protestantism", + -14.69930648803711 + ], + [ + "▁MyBB", + -14.699322700500488 + ], + [ + "▁Strive", + -14.699347496032715 + ], + [ + "▁lincoln", + -14.699371337890625 + ], + [ + "Warrior", + -14.69938850402832 + ], + [ + "▁Hearthstone", + -14.699396133422852 + ], + [ + "▁eddy", + -14.699403762817383 + ], + [ + "▁adoptee", + -14.699410438537598 + ], + [ + "Glo", + -14.699424743652344 + ], + [ + "▁Panera", + -14.699453353881836 + ], + [ + "▁Lombok", + -14.699463844299316 + ], + [ + "▁Quark", + -14.69949722290039 + ], + [ + "▁Crepe", + -14.699527740478516 + ], + [ + "Ink", + -14.699544906616211 + ], + [ + "onie", + -14.699548721313477 + ], + [ + "▁Krauss", + -14.699589729309082 + ], + [ + "▁Helium", + -14.699614524841309 + ], + [ + "▁uneasiness", + -14.699642181396484 + ], + [ + "▁Giancarlo", + -14.699681282043457 + ], + [ + "Winning", + -14.699731826782227 + ], + [ + "▁Radiance", + -14.699747085571289 + ], + [ + "▁fester", + -14.699748992919922 + ], + [ + "▁modicum", + -14.699793815612793 + ], + [ + "▁enhancers", + -14.699801445007324 + ], + [ + "▁Marshals", + -14.699872016906738 + ], + [ + "▁Chilliwack", + -14.69998836517334 + ], + [ + "▁Simpli", + -14.700034141540527 + ], + [ + "▁Weeknd", + -14.700041770935059 + ], + [ + "Gem", + -14.70007610321045 + ], + [ + "▁axons", + -14.700077056884766 + ], + [ + "1906", + -14.700091361999512 + ], + [ + "▁Bop", + -14.700128555297852 + ], + [ + "▁req", + -14.700176239013672 + ], + [ + "▁beckoning", + -14.70019245147705 + ], + [ + "▁SFO", + -14.700220108032227 + ], + [ + "▁markdown", + -14.700220108032227 + ], + [ + "▁garlands", + -14.700325012207031 + ], + [ + "▁Innovate", + -14.700347900390625 + ], + [ + "▁admonished", + -14.700384140014648 + ], + [ + "destination", + -14.700417518615723 + ], + [ + "▁Folly", + -14.700424194335938 + ], + [ + "▁ALEX", + -14.700444221496582 + ], + [ + "olone", + -14.700447082519531 + ], + [ + "▁LBS", + -14.700448036193848 + ], + [ + "▁raves", + -14.700468063354492 + ], + [ + "▁Biltmore", + -14.700481414794922 + ], + [ + "▁mudslide", + -14.700489044189453 + ], + [ + "▁trabajo", + -14.700502395629883 + ], + [ + "visor", + -14.700584411621094 + ], + [ + "rtha", + -14.700600624084473 + ], + [ + "▁mobil", + -14.700627326965332 + ], + [ + "▁boson", + -14.700631141662598 + ], + [ + "lige", + -14.700652122497559 + ], + [ + "CSU", + -14.700660705566406 + ], + [ + "▁Syr", + -14.700671195983887 + ], + [ + "AVIS", + -14.700674057006836 + ], + [ + "▁Brushes", + -14.700724601745605 + ], + [ + "deleted", + -14.700745582580566 + ], + [ + "▁Ubi", + -14.700793266296387 + ], + [ + "DOE", + -14.700801849365234 + ], + [ + "▁disbursements", + -14.700807571411133 + ], + [ + "▁Eriksson", + -14.700814247131348 + ], + [ + "▁Budgeting", + -14.70082950592041 + ], + [ + "ला", + -14.700895309448242 + ], + [ + "▁switchboard", + -14.700899124145508 + ], + [ + "python", + -14.700910568237305 + ], + [ + "▁Synonym", + -14.700913429260254 + ], + [ + "▁Clutter", + -14.700945854187012 + ], + [ + "▁conspirators", + -14.70095157623291 + ], + [ + "inov", + -14.700955390930176 + ], + [ + "▁Scrapbook", + -14.700983047485352 + ], + [ + "▁questo", + -14.701018333435059 + ], + [ + "▁cargoes", + -14.701022148132324 + ], + [ + "▁beckoned", + -14.701031684875488 + ], + [ + "▁Emir", + -14.701047897338867 + ], + [ + "▁solvency", + -14.701072692871094 + ], + [ + "hain", + -14.701119422912598 + ], + [ + "▁Suma", + -14.70113468170166 + ], + [ + "▁adjudicator", + -14.701144218444824 + ], + [ + "atore", + -14.701155662536621 + ], + [ + "▁reinvigorate", + -14.701176643371582 + ], + [ + "▁Riverfront", + -14.70120906829834 + ], + [ + "▁infantile", + -14.701211929321289 + ], + [ + "acchi", + -14.701237678527832 + ], + [ + "▁Generators", + -14.70124340057373 + ], + [ + "▁resurgent", + -14.701245307922363 + ], + [ + "Funny", + -14.701251029968262 + ], + [ + "▁Baccalaureate", + -14.701262474060059 + ], + [ + "▁repainting", + -14.701285362243652 + ], + [ + "▁weightless", + -14.701288223266602 + ], + [ + "▁Leesburg", + -14.701310157775879 + ], + [ + "公", + -14.70132064819336 + ], + [ + "▁Wav", + -14.701336860656738 + ], + [ + "Schools", + -14.70134162902832 + ], + [ + "FAQ", + -14.701354026794434 + ], + [ + "▁abounding", + -14.70136833190918 + ], + [ + "▁Seemingly", + -14.701371192932129 + ], + [ + "▁exhilaration", + -14.701400756835938 + ], + [ + "▁ä", + -14.701409339904785 + ], + [ + "▁Caicos", + -14.701416015625 + ], + [ + "▁Darwinian", + -14.701430320739746 + ], + [ + "ipient", + -14.701451301574707 + ], + [ + "berly", + -14.701458930969238 + ], + [ + "▁bella", + -14.701468467712402 + ], + [ + "NST", + -14.701478958129883 + ], + [ + "▁Carvalho", + -14.701510429382324 + ], + [ + "▁Wooster", + -14.701565742492676 + ], + [ + "▁shareable", + -14.701616287231445 + ], + [ + "TIP", + -14.701627731323242 + ], + [ + "▁Rehman", + -14.701627731323242 + ], + [ + "▁EMV", + -14.701639175415039 + ], + [ + "▁Pilgrimage", + -14.701666831970215 + ], + [ + "▁Kaylee", + -14.701702117919922 + ], + [ + "▁draping", + -14.701766014099121 + ], + [ + "▁cellophane", + -14.701767921447754 + ], + [ + "▁interment", + -14.701790809631348 + ], + [ + "DIE", + -14.701902389526367 + ], + [ + "▁Sedgwick", + -14.701935768127441 + ], + [ + "▁Yal", + -14.70194149017334 + ], + [ + "bular", + -14.701981544494629 + ], + [ + "Wright", + -14.702006340026855 + ], + [ + "CARD", + -14.702022552490234 + ], + [ + "ncies", + -14.702049255371094 + ], + [ + "▁Yeovil", + -14.702131271362305 + ], + [ + "▁glum", + -14.702208518981934 + ], + [ + "meno", + -14.702235221862793 + ], + [ + "▁Mohs", + -14.702256202697754 + ], + [ + "▁Esa", + -14.702309608459473 + ], + [ + "▁sunspot", + -14.702360153198242 + ], + [ + "▁tabloids", + -14.702411651611328 + ], + [ + "▁Loe", + -14.702433586120605 + ], + [ + "▁Horoscope", + -14.702437400817871 + ], + [ + "▁prolapse", + -14.70244312286377 + ], + [ + "▁lubricated", + -14.702446937561035 + ], + [ + "HZ", + -14.702459335327148 + ], + [ + "Lau", + -14.702466011047363 + ], + [ + "flesh", + -14.7025146484375 + ], + [ + "▁NTP", + -14.702568054199219 + ], + [ + "terior", + -14.702701568603516 + ], + [ + "▁Galla", + -14.702730178833008 + ], + [ + "▁contemplates", + -14.702733039855957 + ], + [ + "▁tapioca", + -14.702737808227539 + ], + [ + "disambiguation", + -14.702742576599121 + ], + [ + "▁FUEL", + -14.702762603759766 + ], + [ + "▁dialectical", + -14.702780723571777 + ], + [ + "▁twang", + -14.702783584594727 + ], + [ + "ungan", + -14.702795028686523 + ], + [ + "▁Formulated", + -14.70283031463623 + ], + [ + "事", + -14.70285415649414 + ], + [ + "▁decluttering", + -14.702860832214355 + ], + [ + "Foundation", + -14.702866554260254 + ], + [ + "▁Flooding", + -14.702903747558594 + ], + [ + "ayat", + -14.70290470123291 + ], + [ + "▁Diocesan", + -14.70296573638916 + ], + [ + "2040", + -14.703001976013184 + ], + [ + "NAV", + -14.703014373779297 + ], + [ + "recipe", + -14.703020095825195 + ], + [ + "▁prongs", + -14.70302963256836 + ], + [ + "▁Arna", + -14.703054428100586 + ], + [ + "▁Snoopy", + -14.703062057495117 + ], + [ + "adar", + -14.703078269958496 + ], + [ + "▁mulberry", + -14.703081130981445 + ], + [ + "▁Airy", + -14.703109741210938 + ], + [ + "▁Hierarchy", + -14.703145027160645 + ], + [ + "▁marshall", + -14.703168869018555 + ], + [ + "NSF", + -14.703176498413086 + ], + [ + "Hil", + -14.703178405761719 + ], + [ + "▁Kole", + -14.703178405761719 + ], + [ + "REAL", + -14.703206062316895 + ], + [ + "▁coven", + -14.703217506408691 + ], + [ + "▁juried", + -14.703228950500488 + ], + [ + "▁Filo", + -14.703234672546387 + ], + [ + "strup", + -14.703256607055664 + ], + [ + "ANGER", + -14.70331859588623 + ], + [ + "该", + -14.70333194732666 + ], + [ + "diagnosis", + -14.703336715698242 + ], + [ + "▁1680", + -14.703337669372559 + ], + [ + "▁Crore", + -14.703341484069824 + ], + [ + "▁pureed", + -14.703367233276367 + ], + [ + "▁Sous", + -14.703370094299316 + ], + [ + "▁Sela", + -14.703381538391113 + ], + [ + "▁rickety", + -14.70339298248291 + ], + [ + "▁Mosk", + -14.703401565551758 + ], + [ + "7500", + -14.703414916992188 + ], + [ + "IBER", + -14.703429222106934 + ], + [ + "steady", + -14.703434944152832 + ], + [ + "▁Nerf", + -14.703465461730957 + ], + [ + "▁Dorr", + -14.703474044799805 + ], + [ + "▁Forensics", + -14.703500747680664 + ], + [ + "clients", + -14.703520774841309 + ], + [ + "データ", + -14.703567504882812 + ], + [ + "▁IFS", + -14.703592300415039 + ], + [ + "▁Drago", + -14.703648567199707 + ], + [ + "mayer", + -14.703652381896973 + ], + [ + "▁Mahama", + -14.703658103942871 + ], + [ + "▁Rensselaer", + -14.703659057617188 + ], + [ + "▁Verstappen", + -14.703699111938477 + ], + [ + "▁massager", + -14.7037353515625 + ], + [ + "▁emb", + -14.703747749328613 + ], + [ + "▁Benches", + -14.703752517700195 + ], + [ + "▁criminalize", + -14.703784942626953 + ], + [ + "ÑÐ", + -14.703789710998535 + ], + [ + "▁overactive", + -14.7037935256958 + ], + [ + "COA", + -14.70383358001709 + ], + [ + "由", + -14.703893661499023 + ], + [ + "▁Peta", + -14.7039155960083 + ], + [ + "▁ме", + -14.703938484191895 + ], + [ + "arla", + -14.703961372375488 + ], + [ + "shawn", + -14.703978538513184 + ], + [ + "▁histori", + -14.704001426696777 + ], + [ + "zhu", + -14.704029083251953 + ], + [ + "▁الع", + -14.704044342041016 + ], + [ + "▁halve", + -14.704084396362305 + ], + [ + "representative", + -14.704113006591797 + ], + [ + "▁Obrador", + -14.704117774963379 + ], + [ + "asil", + -14.704168319702148 + ], + [ + "▁MLC", + -14.704231262207031 + ], + [ + "▁tryptophan", + -14.704272270202637 + ], + [ + "▁Narrator", + -14.704273223876953 + ], + [ + "ię", + -14.704288482666016 + ], + [ + "▁−0", + -14.704312324523926 + ], + [ + "▁Pupil", + -14.704325675964355 + ], + [ + "▁Luthor", + -14.70438003540039 + ], + [ + "uhan", + -14.704399108886719 + ], + [ + "▁provost", + -14.704492568969727 + ], + [ + "▁Villain", + -14.704569816589355 + ], + [ + "▁Daft", + -14.704570770263672 + ], + [ + "▁1778", + -14.704593658447266 + ], + [ + "▁sleuth", + -14.704633712768555 + ], + [ + "IEEE", + -14.704682350158691 + ], + [ + "▁longterm", + -14.7047700881958 + ], + [ + "▁thankfulness", + -14.704815864562988 + ], + [ + "arski", + -14.704850196838379 + ], + [ + "UGH", + -14.70488452911377 + ], + [ + "▁emulators", + -14.704899787902832 + ], + [ + "▁Iridium", + -14.704902648925781 + ], + [ + "Speaking", + -14.704904556274414 + ], + [ + "▁grunts", + -14.704907417297363 + ], + [ + "stakeholder", + -14.704937934875488 + ], + [ + "▁seeps", + -14.70496940612793 + ], + [ + "Pix", + -14.705000877380371 + ], + [ + "▁Malaysians", + -14.70500373840332 + ], + [ + "▁CTI", + -14.705023765563965 + ], + [ + "▁streetwear", + -14.705047607421875 + ], + [ + "▁blurs", + -14.70506477355957 + ], + [ + "▁Mannheim", + -14.705118179321289 + ], + [ + "▁Tout", + -14.705121994018555 + ], + [ + "▁Camellia", + -14.70512866973877 + ], + [ + "hime", + -14.705129623413086 + ], + [ + "▁Kuznetsov", + -14.70519733428955 + ], + [ + "▁introverts", + -14.705205917358398 + ], + [ + "▁obligate", + -14.705217361450195 + ], + [ + "blah", + -14.705267906188965 + ], + [ + "Neu", + -14.705303192138672 + ], + [ + "▁Clockwork", + -14.705317497253418 + ], + [ + "▁HOP", + -14.705318450927734 + ], + [ + "▁outsmart", + -14.705388069152832 + ], + [ + "▁Concise", + -14.705411911010742 + ], + [ + "▁NAN", + -14.705424308776855 + ], + [ + "▁Inauguration", + -14.705525398254395 + ], + [ + "▁1066", + -14.705530166625977 + ], + [ + "▁SunTrust", + -14.705534934997559 + ], + [ + "amina", + -14.705538749694824 + ], + [ + "ioni", + -14.705559730529785 + ], + [ + "▁retorted", + -14.705561637878418 + ], + [ + "▁Garret", + -14.705574035644531 + ], + [ + "hye", + -14.705642700195312 + ], + [ + "▁waiving", + -14.705673217773438 + ], + [ + "▁Freeware", + -14.705710411071777 + ], + [ + "▁brussels", + -14.705765724182129 + ], + [ + "Behold", + -14.705780029296875 + ], + [ + "▁Tyl", + -14.705796241760254 + ], + [ + "▁Corden", + -14.705798149108887 + ], + [ + "▁Rodman", + -14.705815315246582 + ], + [ + "hita", + -14.705828666687012 + ], + [ + "Detroit", + -14.70585823059082 + ], + [ + "▁Amba", + -14.705860137939453 + ], + [ + "▁Pickles", + -14.705888748168945 + ], + [ + "▁Mailer", + -14.705913543701172 + ], + [ + "iec", + -14.706000328063965 + ], + [ + "▁Mahdi", + -14.706048965454102 + ], + [ + "▁1774", + -14.706140518188477 + ], + [ + "▁Kalli", + -14.706146240234375 + ], + [ + "▁naturopathic", + -14.70621109008789 + ], + [ + "▁Moen", + -14.706214904785156 + ], + [ + "▁chapbook", + -14.706258773803711 + ], + [ + "▁Randomized", + -14.706302642822266 + ], + [ + "▁closeup", + -14.706307411193848 + ], + [ + "▁thrush", + -14.706323623657227 + ], + [ + "▁Activism", + -14.706335067749023 + ], + [ + "Pharma", + -14.706360816955566 + ], + [ + "▁Ordinarily", + -14.706379890441895 + ], + [ + "▁€20", + -14.706391334533691 + ], + [ + "▁remediate", + -14.706424713134766 + ], + [ + "Besides", + -14.706460952758789 + ], + [ + "▁tallying", + -14.706503868103027 + ], + [ + "▁mia", + -14.706534385681152 + ], + [ + "▁overvalued", + -14.706536293029785 + ], + [ + "▁Folders", + -14.706560134887695 + ], + [ + "▁sombre", + -14.706570625305176 + ], + [ + "Academic", + -14.706595420837402 + ], + [ + "Innovation", + -14.706616401672363 + ], + [ + "▁razed", + -14.706629753112793 + ], + [ + "▁Exa", + -14.706707000732422 + ], + [ + "Moving", + -14.706743240356445 + ], + [ + "efe", + -14.706792831420898 + ], + [ + "▁Roca", + -14.706820487976074 + ], + [ + "▁FEI", + -14.706859588623047 + ], + [ + "▁dedicates", + -14.706880569458008 + ], + [ + "appeal", + -14.706914901733398 + ], + [ + "▁Basra", + -14.70692253112793 + ], + [ + "APE", + -14.706982612609863 + ], + [ + "▁plein", + -14.707008361816406 + ], + [ + "▁radiologists", + -14.707021713256836 + ], + [ + "▁olden", + -14.70704174041748 + ], + [ + "▁Visualize", + -14.70709228515625 + ], + [ + "annu", + -14.707123756408691 + ], + [ + "▁encircling", + -14.707135200500488 + ], + [ + "▁Moorish", + -14.707157135009766 + ], + [ + "▁Shoals", + -14.707161903381348 + ], + [ + "▁CBRE", + -14.707178115844727 + ], + [ + "Signal", + -14.707179069519043 + ], + [ + "▁vBulletin", + -14.70719051361084 + ], + [ + "▁inheriting", + -14.707195281982422 + ], + [ + "arren", + -14.707235336303711 + ], + [ + "▁Zapier", + -14.707235336303711 + ], + [ + "▁demean", + -14.707243919372559 + ], + [ + "Lyn", + -14.707256317138672 + ], + [ + "▁gingerly", + -14.707262992858887 + ], + [ + "▁tannin", + -14.707296371459961 + ], + [ + "▁np", + -14.70729923248291 + ], + [ + "▁Centerpiece", + -14.707331657409668 + ], + [ + "licher", + -14.707357406616211 + ], + [ + "ZIP", + -14.70736312866211 + ], + [ + "ECE", + -14.707380294799805 + ], + [ + "▁Banksy", + -14.707392692565918 + ], + [ + "▁Fantasia", + -14.707403182983398 + ], + [ + "▁Rattan", + -14.707465171813965 + ], + [ + "▁kanë", + -14.707476615905762 + ], + [ + "▁PHD", + -14.707529067993164 + ], + [ + "▁Potty", + -14.707529067993164 + ], + [ + "▁Iverson", + -14.707531929016113 + ], + [ + "TEST", + -14.707592010498047 + ], + [ + "▁Kenton", + -14.707599639892578 + ], + [ + "razo", + -14.707606315612793 + ], + [ + "fabricated", + -14.70761489868164 + ], + [ + "inol", + -14.7076997756958 + ], + [ + "▁tipo", + -14.707737922668457 + ], + [ + "▁Ashburn", + -14.707743644714355 + ], + [ + "▁sills", + -14.707744598388672 + ], + [ + "▁upsell", + -14.707771301269531 + ], + [ + "melting", + -14.707780838012695 + ], + [ + "▁FaceBook", + -14.707796096801758 + ], + [ + "▁Denham", + -14.70782470703125 + ], + [ + "Camera", + -14.707837104797363 + ], + [ + "या", + -14.707837104797363 + ], + [ + "▁extremly", + -14.707881927490234 + ], + [ + "▁Michi", + -14.707889556884766 + ], + [ + "▁proffer", + -14.70789623260498 + ], + [ + "rinda", + -14.707898139953613 + ], + [ + "▁Bonding", + -14.70791244506836 + ], + [ + "▁Kade", + -14.707918167114258 + ], + [ + "adapted", + -14.707942008972168 + ], + [ + "▁samo", + -14.707968711853027 + ], + [ + "음", + -14.707971572875977 + ], + [ + "▁endocannabinoid", + -14.708012580871582 + ], + [ + "▁Emmet", + -14.70801830291748 + ], + [ + "▁remakes", + -14.708026885986328 + ], + [ + "▁parentage", + -14.708036422729492 + ], + [ + "▁RIS", + -14.708040237426758 + ], + [ + "▁shopkeeper", + -14.708050727844238 + ], + [ + "▁Chiropractor", + -14.708118438720703 + ], + [ + "▁curable", + -14.708136558532715 + ], + [ + "Solutions", + -14.70814323425293 + ], + [ + "Summary", + -14.70816707611084 + ], + [ + "▁RUS", + -14.70821762084961 + ], + [ + "▁HEI", + -14.708226203918457 + ], + [ + "▁Welded", + -14.708248138427734 + ], + [ + "▁Pitney", + -14.70828628540039 + ], + [ + "▁Preface", + -14.708292961120605 + ], + [ + "▁Workman", + -14.708293914794922 + ], + [ + "▁evictions", + -14.708329200744629 + ], + [ + "▁gnaw", + -14.708341598510742 + ], + [ + "Cata", + -14.708344459533691 + ], + [ + "▁kansas", + -14.708351135253906 + ], + [ + "▁Jaffa", + -14.708359718322754 + ], + [ + "ël", + -14.708364486694336 + ], + [ + "subscription", + -14.70840835571289 + ], + [ + "▁Yangtze", + -14.70843505859375 + ], + [ + "▁í", + -14.708439826965332 + ], + [ + "օ", + -14.708450317382812 + ], + [ + "Beam", + -14.708489418029785 + ], + [ + "▁biohazard", + -14.708489418029785 + ], + [ + "▁Gateshead", + -14.708503723144531 + ], + [ + "▁batik", + -14.708503723144531 + ], + [ + "▁AUSTIN", + -14.708523750305176 + ], + [ + "▁HSL", + -14.70853042602539 + ], + [ + "gey", + -14.708535194396973 + ], + [ + "neum", + -14.708549499511719 + ], + [ + "▁probationary", + -14.708572387695312 + ], + [ + "▁peed", + -14.708590507507324 + ], + [ + "▁hurrying", + -14.708613395690918 + ], + [ + "stam", + -14.708633422851562 + ], + [ + "▁compostable", + -14.708636283874512 + ], + [ + "blanc", + -14.708638191223145 + ], + [ + "▁Daring", + -14.708710670471191 + ], + [ + "▁CLC", + -14.708711624145508 + ], + [ + "▁Halen", + -14.708731651306152 + ], + [ + "elius", + -14.708734512329102 + ], + [ + "▁vulture", + -14.708749771118164 + ], + [ + "▁Pulverizer", + -14.708770751953125 + ], + [ + "▁Yonkers", + -14.708821296691895 + ], + [ + "▁070", + -14.708876609802246 + ], + [ + "▁machinist", + -14.708884239196777 + ], + [ + "▁retainers", + -14.708885192871094 + ], + [ + "▁Dodson", + -14.708906173706055 + ], + [ + "▁ו", + -14.708910942077637 + ], + [ + "▁bibliographical", + -14.709033966064453 + ], + [ + "▁affluence", + -14.709038734436035 + ], + [ + "▁perky", + -14.709097862243652 + ], + [ + "baud", + -14.709098815917969 + ], + [ + "▁CNV", + -14.709104537963867 + ], + [ + "▁Goodnight", + -14.709148406982422 + ], + [ + "manifest", + -14.70923137664795 + ], + [ + "Invitrogen", + -14.709330558776855 + ], + [ + "Seek", + -14.709339141845703 + ], + [ + "▁headland", + -14.7093505859375 + ], + [ + "▁Kort", + -14.709364891052246 + ], + [ + "▁ACV", + -14.709416389465332 + ], + [ + "▁Probiotics", + -14.709417343139648 + ], + [ + "▁generika", + -14.70944881439209 + ], + [ + "▁SPM", + -14.709454536437988 + ], + [ + "▁Savor", + -14.709457397460938 + ], + [ + "▁crag", + -14.70945930480957 + ], + [ + "▁Obli", + -14.709492683410645 + ], + [ + "▁Stansted", + -14.709517478942871 + ], + [ + "▁neoliberalism", + -14.70952320098877 + ], + [ + "▁biannual", + -14.70955753326416 + ], + [ + "▁Sturgis", + -14.709580421447754 + ], + [ + "каз", + -14.70959186553955 + ], + [ + "▁deniers", + -14.709600448608398 + ], + [ + "lieb", + -14.709601402282715 + ], + [ + "ará", + -14.709616661071777 + ], + [ + "▁Georgi", + -14.709671020507812 + ], + [ + "▁ELF", + -14.709671974182129 + ], + [ + "quinone", + -14.709676742553711 + ], + [ + "▁Compassionate", + -14.709685325622559 + ], + [ + "▁fibreglass", + -14.70971393585205 + ], + [ + "broadcast", + -14.709729194641113 + ], + [ + "udra", + -14.709794044494629 + ], + [ + "▁bisect", + -14.709802627563477 + ], + [ + "▁Stork", + -14.709803581237793 + ], + [ + "▁replenishing", + -14.709816932678223 + ], + [ + "▁Admire", + -14.709818840026855 + ], + [ + "adrenergic", + -14.709823608398438 + ], + [ + "▁Magda", + -14.709851264953613 + ], + [ + "▁Uncommon", + -14.7099027633667 + ], + [ + "Sum", + -14.709918975830078 + ], + [ + "exc", + -14.709985733032227 + ], + [ + "▁Spooner", + -14.709993362426758 + ], + [ + "▁Daemon", + -14.7100248336792 + ], + [ + "▁scho", + -14.710026741027832 + ], + [ + "▁neoclassical", + -14.710094451904297 + ], + [ + "▁Burrito", + -14.710111618041992 + ], + [ + "▁20°", + -14.710204124450684 + ], + [ + "▁saucy", + -14.710240364074707 + ], + [ + "▁carcinogen", + -14.710243225097656 + ], + [ + "▁Rechargeable", + -14.7102632522583 + ], + [ + "▁Schalke", + -14.710265159606934 + ], + [ + "श", + -14.710268020629883 + ], + [ + "▁mutt", + -14.710314750671387 + ], + [ + "▁VICE", + -14.710342407226562 + ], + [ + "chou", + -14.710357666015625 + ], + [ + "Clinical", + -14.710359573364258 + ], + [ + "▁Emi", + -14.710378646850586 + ], + [ + "▁Surveying", + -14.710409164428711 + ], + [ + "▁inhabitant", + -14.710448265075684 + ], + [ + "▁Neff", + -14.710501670837402 + ], + [ + "antique", + -14.710538864135742 + ], + [ + "▁Hollister", + -14.710546493530273 + ], + [ + "▁않", + -14.710569381713867 + ], + [ + "ILO", + -14.710579872131348 + ], + [ + "▁emanates", + -14.710579872131348 + ], + [ + "tenu", + -14.71060562133789 + ], + [ + "zem", + -14.710607528686523 + ], + [ + "▁payline", + -14.710650444030762 + ], + [ + "▁14001", + -14.710651397705078 + ], + [ + "▁Diddy", + -14.710674285888672 + ], + [ + "username", + -14.710683822631836 + ], + [ + "trends", + -14.710695266723633 + ], + [ + "GRE", + -14.71073055267334 + ], + [ + "▁Pyramids", + -14.710733413696289 + ], + [ + "▁appendices", + -14.710824012756348 + ], + [ + "chelle", + -14.710833549499512 + ], + [ + "▁Seekers", + -14.710888862609863 + ], + [ + "mystery", + -14.710920333862305 + ], + [ + "▁alder", + -14.7109375 + ], + [ + "skating", + -14.710988998413086 + ], + [ + "▁eke", + -14.711008071899414 + ], + [ + "▁Gambit", + -14.711026191711426 + ], + [ + "▁garish", + -14.711066246032715 + ], + [ + "▁oomph", + -14.711071968078613 + ], + [ + "▁WPS", + -14.711078643798828 + ], + [ + "debate", + -14.7111234664917 + ], + [ + "▁maison", + -14.711163520812988 + ], + [ + "▁Souvenir", + -14.711164474487305 + ], + [ + "▁rezoning", + -14.711173057556152 + ], + [ + "weep", + -14.711196899414062 + ], + [ + "▁irritants", + -14.711196899414062 + ], + [ + "▁864", + -14.711198806762695 + ], + [ + "zole", + -14.711201667785645 + ], + [ + "▁Trailblazer", + -14.711228370666504 + ], + [ + "▁Alonzo", + -14.71123218536377 + ], + [ + "ị", + -14.711263656616211 + ], + [ + "▁Persi", + -14.711282730102539 + ], + [ + "▁relented", + -14.711285591125488 + ], + [ + "closure", + -14.711325645446777 + ], + [ + "▁Lowery", + -14.711358070373535 + ], + [ + "▁Gres", + -14.711372375488281 + ], + [ + "▁LOAD", + -14.711410522460938 + ], + [ + "▁Moreland", + -14.71142578125 + ], + [ + "repo", + -14.71144962310791 + ], + [ + "Own", + -14.71146297454834 + ], + [ + "▁Lingerie", + -14.711467742919922 + ], + [ + "ГўВЂВ", + -14.711483001708984 + ], + [ + "▁EDITOR", + -14.711487770080566 + ], + [ + "▁Severus", + -14.711488723754883 + ], + [ + "▁velo", + -14.71155834197998 + ], + [ + "▁workarounds", + -14.711570739746094 + ], + [ + "▁Scor", + -14.711577415466309 + ], + [ + "affer", + -14.711578369140625 + ], + [ + "▁RRSP", + -14.71164321899414 + ], + [ + "▁Muscular", + -14.711669921875 + ], + [ + "▁Noelle", + -14.711688995361328 + ], + [ + "▁INVEST", + -14.711731910705566 + ], + [ + "▁paella", + -14.711780548095703 + ], + [ + "▁albino", + -14.71178150177002 + ], + [ + "▁Altered", + -14.711838722229004 + ], + [ + "▁administra", + -14.711845397949219 + ], + [ + "▁busyness", + -14.711869239807129 + ], + [ + "▁Projekt", + -14.711886405944824 + ], + [ + "▁gripper", + -14.71188735961914 + ], + [ + "▁Forecasts", + -14.711894989013672 + ], + [ + "BUSINESS", + -14.711909294128418 + ], + [ + "▁uppercase", + -14.711923599243164 + ], + [ + "▁pacer", + -14.711938858032227 + ], + [ + "Nancy", + -14.71198844909668 + ], + [ + "▁BEAR", + -14.711994171142578 + ], + [ + "▁Ghoul", + -14.711997985839844 + ], + [ + "▁Coquitlam", + -14.712042808532715 + ], + [ + "▁Poy", + -14.712056159973145 + ], + [ + "▁Slime", + -14.712114334106445 + ], + [ + "▁oaths", + -14.712150573730469 + ], + [ + "▁whores", + -14.712228775024414 + ], + [ + "ALES", + -14.712263107299805 + ], + [ + "če", + -14.712263107299805 + ], + [ + "▁Vespa", + -14.7122802734375 + ], + [ + "▁whistled", + -14.712300300598145 + ], + [ + "▁Netball", + -14.712303161621094 + ], + [ + "kyu", + -14.712363243103027 + ], + [ + "次", + -14.71237564086914 + ], + [ + "Adjust", + -14.712379455566406 + ], + [ + "▁ис", + -14.712407112121582 + ], + [ + "GOT", + -14.712410926818848 + ], + [ + "▁Kaufmann", + -14.71241283416748 + ], + [ + "▁1784", + -14.712423324584961 + ], + [ + "්", + -14.71246337890625 + ], + [ + "▁Edgewater", + -14.7124662399292 + ], + [ + "Õ", + -14.712492942810059 + ], + [ + "conquer", + -14.71253490447998 + ], + [ + "ouli", + -14.712544441223145 + ], + [ + "▁odorless", + -14.712552070617676 + ], + [ + "▁IVR", + -14.712600708007812 + ], + [ + "calendar", + -14.712672233581543 + ], + [ + "▁Cowley", + -14.712682723999023 + ], + [ + "CoA", + -14.712711334228516 + ], + [ + "▁MEMBER", + -14.712730407714844 + ], + [ + "▁Proximity", + -14.712773323059082 + ], + [ + "▁Peele", + -14.71277904510498 + ], + [ + "▁spacetime", + -14.712790489196777 + ], + [ + "▁Sequential", + -14.71280288696289 + ], + [ + "▁propping", + -14.71280574798584 + ], + [ + "▁Scare", + -14.71281909942627 + ], + [ + "martial", + -14.7128324508667 + ], + [ + "фи", + -14.712885856628418 + ], + [ + "umer", + -14.712897300720215 + ], + [ + "▁Phono", + -14.712909698486328 + ], + [ + "pler", + -14.712916374206543 + ], + [ + "centrism", + -14.712964057922363 + ], + [ + "Jerry", + -14.71298885345459 + ], + [ + "▁Loveseat", + -14.713001251220703 + ], + [ + "보", + -14.7130126953125 + ], + [ + "▁Duvall", + -14.713045120239258 + ], + [ + "▁Embark", + -14.713067054748535 + ], + [ + "▁Alco", + -14.713072776794434 + ], + [ + "▁NUS", + -14.713091850280762 + ], + [ + "Keys", + -14.713098526000977 + ], + [ + "▁approximated", + -14.713111877441406 + ], + [ + "▁Indiegogo", + -14.713134765625 + ], + [ + "▁sawing", + -14.713151931762695 + ], + [ + "▁QX", + -14.713176727294922 + ], + [ + "exactly", + -14.713240623474121 + ], + [ + "▁SNR", + -14.713254928588867 + ], + [ + "▁pianists", + -14.713257789611816 + ], + [ + "urist", + -14.713282585144043 + ], + [ + "▁costumer", + -14.713285446166992 + ], + [ + "▁difficile", + -14.713343620300293 + ], + [ + "▁FRS", + -14.713353157043457 + ], + [ + "▁hark", + -14.71337604522705 + ], + [ + "talent", + -14.713398933410645 + ], + [ + "▁siting", + -14.71343994140625 + ], + [ + "▁promissory", + -14.713443756103516 + ], + [ + "Neo", + -14.713451385498047 + ], + [ + "▁ADVICE", + -14.713486671447754 + ], + [ + "Gel", + -14.713491439819336 + ], + [ + "▁Planter", + -14.713500022888184 + ], + [ + "ක", + -14.713521957397461 + ], + [ + "▁Deuce", + -14.71353530883789 + ], + [ + "▁headwind", + -14.713542938232422 + ], + [ + "▁INCLUDE", + -14.713543891906738 + ], + [ + "▁chemokine", + -14.71355152130127 + ], + [ + "▁Physiological", + -14.713557243347168 + ], + [ + "automated", + -14.713570594787598 + ], + [ + "▁Tipping", + -14.713601112365723 + ], + [ + "▁Frazer", + -14.713621139526367 + ], + [ + "auder", + -14.713631629943848 + ], + [ + "▁MES", + -14.71365737915039 + ], + [ + "tilt", + -14.713665008544922 + ], + [ + "▁CAG", + -14.713677406311035 + ], + [ + "Ы", + -14.713691711425781 + ], + [ + "▁organza", + -14.713730812072754 + ], + [ + "ELLER", + -14.713785171508789 + ], + [ + "▁Bridg", + -14.713808059692383 + ], + [ + "▁urethra", + -14.713814735412598 + ], + [ + "▁Barrymore", + -14.71385383605957 + ], + [ + "▁Breyer", + -14.7139310836792 + ], + [ + "ZN", + -14.713933944702148 + ], + [ + "▁Omen", + -14.713950157165527 + ], + [ + "▁ZEN", + -14.713976860046387 + ], + [ + "▁assignee", + -14.713996887207031 + ], + [ + "▁3100", + -14.71406364440918 + ], + [ + "▁marinas", + -14.714086532592773 + ], + [ + "▁nontraditional", + -14.714132308959961 + ], + [ + "▁PEA", + -14.714159965515137 + ], + [ + "▁wreaking", + -14.714165687561035 + ], + [ + "▁Squi", + -14.714170455932617 + ], + [ + "▁Ambedkar", + -14.714184761047363 + ], + [ + "▁mnemonic", + -14.714224815368652 + ], + [ + "▁mortified", + -14.714227676391602 + ], + [ + "▁perceptible", + -14.714237213134766 + ], + [ + "yaan", + -14.714256286621094 + ], + [ + "oine", + -14.714280128479004 + ], + [ + "▁Halep", + -14.714280128479004 + ], + [ + "▁Peppa", + -14.71428108215332 + ], + [ + "▁rheumatic", + -14.714295387268066 + ], + [ + "▁approximations", + -14.714302062988281 + ], + [ + "▁Trig", + -14.714303970336914 + ], + [ + "immuno", + -14.714305877685547 + ], + [ + "▁Solu", + -14.714306831359863 + ], + [ + "▁letdown", + -14.714319229125977 + ], + [ + "gula", + -14.71433162689209 + ], + [ + "▁turnips", + -14.714353561401367 + ], + [ + "▁Moseley", + -14.714385986328125 + ], + [ + "▁Frugal", + -14.71448802947998 + ], + [ + "▁ENGLISH", + -14.714496612548828 + ], + [ + "▁notarized", + -14.714509963989258 + ], + [ + "▁Ashleigh", + -14.714529037475586 + ], + [ + "▁Hosp", + -14.7145414352417 + ], + [ + "▁Huy", + -14.714566230773926 + ], + [ + "▁inlays", + -14.714567184448242 + ], + [ + "▁Fujian", + -14.714569091796875 + ], + [ + "▁oodles", + -14.714604377746582 + ], + [ + "▁apostasy", + -14.71462631225586 + ], + [ + "▁indiana", + -14.714649200439453 + ], + [ + "▁telescoping", + -14.714666366577148 + ], + [ + "▁Morty", + -14.714676856994629 + ], + [ + "▁torched", + -14.71468448638916 + ], + [ + "▁TSN", + -14.714701652526855 + ], + [ + "void", + -14.714722633361816 + ], + [ + "्य", + -14.714754104614258 + ], + [ + "▁ricochet", + -14.714759826660156 + ], + [ + "▁amicus", + -14.714764595031738 + ], + [ + "▁unassisted", + -14.71477222442627 + ], + [ + "▁litho", + -14.714794158935547 + ], + [ + "violet", + -14.71480655670166 + ], + [ + "▁microenvironment", + -14.714816093444824 + ], + [ + "▁Shredder", + -14.714847564697266 + ], + [ + "ím", + -14.71485710144043 + ], + [ + "▁Carving", + -14.714926719665527 + ], + [ + "longer", + -14.714935302734375 + ], + [ + "▁dings", + -14.714942932128906 + ], + [ + "▁boozy", + -14.714947700500488 + ], + [ + "▁Swatch", + -14.714991569519043 + ], + [ + "▁NCLEX", + -14.714994430541992 + ], + [ + "▁McCallum", + -14.715001106262207 + ], + [ + "▁Glick", + -14.715010643005371 + ], + [ + "Merc", + -14.715054512023926 + ], + [ + "fuelled", + -14.71507740020752 + ], + [ + "▁oscilloscope", + -14.71507740020752 + ], + [ + "MBS", + -14.715082168579102 + ], + [ + "GTA", + -14.715094566345215 + ], + [ + "riving", + -14.715106964111328 + ], + [ + "▁Caregivers", + -14.715141296386719 + ], + [ + "glu", + -14.715142250061035 + ], + [ + "usser", + -14.7151460647583 + ], + [ + "▁Bagan", + -14.715152740478516 + ], + [ + "▁mandible", + -14.715179443359375 + ], + [ + "▁enablement", + -14.715180397033691 + ], + [ + "▁indecision", + -14.715200424194336 + ], + [ + "▁Gerrit", + -14.71520709991455 + ], + [ + "▁Homs", + -14.715231895446777 + ], + [ + "▁DRA", + -14.715258598327637 + ], + [ + "▁Metab", + -14.715263366699219 + ], + [ + "▁ï", + -14.715315818786621 + ], + [ + "▁Bisexual", + -14.715320587158203 + ], + [ + "▁slashes", + -14.715322494506836 + ], + [ + "▁bumble", + -14.715351104736328 + ], + [ + "▁Caden", + -14.715357780456543 + ], + [ + "▁UNM", + -14.715364456176758 + ], + [ + "ITC", + -14.71536636352539 + ], + [ + "▁redundancies", + -14.715368270874023 + ], + [ + "mmmmm", + -14.715388298034668 + ], + [ + "▁Trucker", + -14.715394020080566 + ], + [ + "▁KONG", + -14.715435028076172 + ], + [ + "ombe", + -14.71544361114502 + ], + [ + "▁raymond", + -14.715447425842285 + ], + [ + "cheapest", + -14.715450286865234 + ], + [ + "▁octagon", + -14.715461730957031 + ], + [ + "SUR", + -14.715469360351562 + ], + [ + "kro", + -14.715527534484863 + ], + [ + "▁2560", + -14.715581893920898 + ], + [ + "▁icebreaker", + -14.71560001373291 + ], + [ + "▁monocytes", + -14.715616226196289 + ], + [ + "Shake", + -14.715652465820312 + ], + [ + "▁endoscope", + -14.715664863586426 + ], + [ + "specialty", + -14.715697288513184 + ], + [ + "▁midline", + -14.715718269348145 + ], + [ + "ellum", + -14.715821266174316 + ], + [ + "▁depositions", + -14.71583080291748 + ], + [ + "▁Tarr", + -14.715861320495605 + ], + [ + "splitting", + -14.715907096862793 + ], + [ + "▁materialise", + -14.715932846069336 + ], + [ + "▁subsidizing", + -14.7160005569458 + ], + [ + "uminous", + -14.716002464294434 + ], + [ + "▁GIMP", + -14.716072082519531 + ], + [ + "▁Immun", + -14.71610164642334 + ], + [ + "▁remaster", + -14.716155052185059 + ], + [ + "obacter", + -14.71618938446045 + ], + [ + "lution", + -14.716208457946777 + ], + [ + "▁Visionary", + -14.716225624084473 + ], + [ + "▁frowning", + -14.716229438781738 + ], + [ + "▁Acknowledge", + -14.71623706817627 + ], + [ + "▁naira", + -14.71628189086914 + ], + [ + "erno", + -14.716287612915039 + ], + [ + "▁Moncton", + -14.71632194519043 + ], + [ + "assignment", + -14.71633243560791 + ], + [ + "▁SHI", + -14.716391563415527 + ], + [ + "▁courted", + -14.716415405273438 + ], + [ + "▁Wye", + -14.716422080993652 + ], + [ + "▁utiliza", + -14.716459274291992 + ], + [ + "▁foregone", + -14.716469764709473 + ], + [ + "▁fost", + -14.71650505065918 + ], + [ + "▁Halliburton", + -14.71654224395752 + ], + [ + "▁Ledge", + -14.716556549072266 + ], + [ + "gini", + -14.71656608581543 + ], + [ + "▁Galactica", + -14.71660327911377 + ], + [ + "▁BUG", + -14.716625213623047 + ], + [ + "▁Nori", + -14.716668128967285 + ], + [ + "▁cogni", + -14.716683387756348 + ], + [ + "▁Periscope", + -14.716723442077637 + ], + [ + "▁screenplays", + -14.716757774353027 + ], + [ + "▁Saatchi", + -14.716778755187988 + ], + [ + "▁QTL", + -14.716841697692871 + ], + [ + "▁Craving", + -14.716856956481934 + ], + [ + "▁exoskeleton", + -14.716924667358398 + ], + [ + "▁Tyrion", + -14.716928482055664 + ], + [ + "▁paneer", + -14.71692943572998 + ], + [ + "▁palp", + -14.716939926147461 + ], + [ + "looked", + -14.716973304748535 + ], + [ + "▁regi", + -14.717050552368164 + ], + [ + "perception", + -14.717063903808594 + ], + [ + "▁OOP", + -14.717071533203125 + ], + [ + "▁Vessels", + -14.717082023620605 + ], + [ + "▁relishing", + -14.717086791992188 + ], + [ + "▁Gustave", + -14.71710205078125 + ], + [ + "▁Cersei", + -14.717116355895996 + ], + [ + "▁Rend", + -14.717143058776855 + ], + [ + "possess", + -14.717153549194336 + ], + [ + "▁futur", + -14.717175483703613 + ], + [ + "▁Chitra", + -14.717183113098145 + ], + [ + "▁Hopp", + -14.717193603515625 + ], + [ + "▁clipper", + -14.717220306396484 + ], + [ + "doping", + -14.717227935791016 + ], + [ + "▁Kazi", + -14.717242240905762 + ], + [ + "▁Gaze", + -14.71725082397461 + ], + [ + "▁Describes", + -14.71725845336914 + ], + [ + "▁encrusted", + -14.71726131439209 + ], + [ + "▁trav", + -14.717279434204102 + ], + [ + "це", + -14.71728515625 + ], + [ + "▁minimization", + -14.717296600341797 + ], + [ + "Colorado", + -14.717303276062012 + ], + [ + "▁SCD", + -14.717305183410645 + ], + [ + "▁friar", + -14.71731185913086 + ], + [ + "▁BIRTHDAY", + -14.71732234954834 + ], + [ + "▁EBS", + -14.717330932617188 + ], + [ + "▁Elks", + -14.717350006103516 + ], + [ + "▁Biochemical", + -14.717361450195312 + ], + [ + "▁Rockport", + -14.717384338378906 + ], + [ + "▁Fabri", + -14.717392921447754 + ], + [ + "▁Barbuda", + -14.717416763305664 + ], + [ + "émi", + -14.717438697814941 + ], + [ + "▁hobbit", + -14.717443466186523 + ], + [ + "▁Bored", + -14.717446327209473 + ], + [ + "▁quadrupled", + -14.717455863952637 + ], + [ + "▁beagle", + -14.717463493347168 + ], + [ + "▁Krei", + -14.71746826171875 + ], + [ + "▁Epidemiol", + -14.717473030090332 + ], + [ + "▁strippers", + -14.717497825622559 + ], + [ + "usz", + -14.717498779296875 + ], + [ + "▁Ecole", + -14.717511177062988 + ], + [ + "▁coffins", + -14.717525482177734 + ], + [ + "▁949", + -14.717538833618164 + ], + [ + "▁RULES", + -14.717594146728516 + ], + [ + "▁courageously", + -14.717645645141602 + ], + [ + "▁MRP", + -14.717721939086914 + ], + [ + "navi", + -14.71772289276123 + ], + [ + "▁Vieira", + -14.717723846435547 + ], + [ + "▁xxx", + -14.717740058898926 + ], + [ + "▁Grinders", + -14.717755317687988 + ], + [ + "▁WOD", + -14.71776294708252 + ], + [ + "▁gunfight", + -14.717843055725098 + ], + [ + "ographies", + -14.717876434326172 + ], + [ + "▁nanoparticle", + -14.717878341674805 + ], + [ + "▁Johnathan", + -14.717890739440918 + ], + [ + "▁infects", + -14.717897415161133 + ], + [ + "automat", + -14.717912673950195 + ], + [ + "chandra", + -14.717936515808105 + ], + [ + "occupation", + -14.71795654296875 + ], + [ + "hhhhh", + -14.717964172363281 + ], + [ + "▁einfach", + -14.71798324584961 + ], + [ + "▁mercurial", + -14.717989921569824 + ], + [ + "▁hairspray", + -14.718015670776367 + ], + [ + "▁Intuition", + -14.718019485473633 + ], + [ + "▁crayfish", + -14.718040466308594 + ], + [ + "▁pneumo", + -14.718098640441895 + ], + [ + "▁Aru", + -14.718116760253906 + ], + [ + "Kindle", + -14.718169212341309 + ], + [ + "▁649", + -14.718175888061523 + ], + [ + "▁MOOC", + -14.718195915222168 + ], + [ + "▁Napolitano", + -14.718202590942383 + ], + [ + "aho", + -14.718269348144531 + ], + [ + "▁collared", + -14.718330383300781 + ], + [ + "▁Strzok", + -14.718331336975098 + ], + [ + "▁RSV", + -14.71839427947998 + ], + [ + "▁phpBB", + -14.718441009521484 + ], + [ + "occur", + -14.718484878540039 + ], + [ + "ARO", + -14.718512535095215 + ], + [ + "oidal", + -14.718522071838379 + ], + [ + "▁Enzyme", + -14.718530654907227 + ], + [ + "HOL", + -14.718531608581543 + ], + [ + "야", + -14.71855354309082 + ], + [ + "▁JY", + -14.718586921691895 + ], + [ + "turner", + -14.718587875366211 + ], + [ + "▁Nevin", + -14.71865177154541 + ], + [ + "▁vim", + -14.718653678894043 + ], + [ + "▁multicenter", + -14.71865463256836 + ], + [ + "▁Sudoku", + -14.71866226196289 + ], + [ + "▁Logger", + -14.718687057495117 + ], + [ + "cris", + -14.718696594238281 + ], + [ + "▁Motivated", + -14.718700408935547 + ], + [ + "▁Sybil", + -14.718707084655762 + ], + [ + "▁uplink", + -14.71871566772461 + ], + [ + "▁Clergy", + -14.718728065490723 + ], + [ + "▁emitters", + -14.718734741210938 + ], + [ + "▁driest", + -14.71874713897705 + ], + [ + "audi", + -14.718751907348633 + ], + [ + "▁Girardi", + -14.718770980834961 + ], + [ + "landers", + -14.718780517578125 + ], + [ + "▁vancouver", + -14.71883487701416 + ], + [ + "▁FINANCE", + -14.71885871887207 + ], + [ + "▁Pao", + -14.71889591217041 + ], + [ + "▁sacramental", + -14.718992233276367 + ], + [ + "▁MARS", + -14.719002723693848 + ], + [ + "uden", + -14.719010353088379 + ], + [ + "▁bacterio", + -14.719038963317871 + ], + [ + "▁doorknob", + -14.719050407409668 + ], + [ + "▁rezept", + -14.719086647033691 + ], + [ + "culp", + -14.719123840332031 + ], + [ + "▁Dietetic", + -14.719161987304688 + ], + [ + "▁tabbed", + -14.719170570373535 + ], + [ + "▁apologists", + -14.719188690185547 + ], + [ + "▁CEF", + -14.719206809997559 + ], + [ + "▁Siobhan", + -14.719207763671875 + ], + [ + "▁Filtration", + -14.719237327575684 + ], + [ + "▁Hawker", + -14.719245910644531 + ], + [ + "▁evacuees", + -14.719247817993164 + ], + [ + "▁Emacs", + -14.719254493713379 + ], + [ + "tograph", + -14.719271659851074 + ], + [ + "▁registrars", + -14.719277381896973 + ], + [ + "▁performative", + -14.719283103942871 + ], + [ + "▁dich", + -14.719298362731934 + ], + [ + "▁ر", + -14.719314575195312 + ], + [ + "▁Insolvency", + -14.719318389892578 + ], + [ + "▁ASIN", + -14.719361305236816 + ], + [ + "▁CSIRO", + -14.719361305236816 + ], + [ + "▁overcoat", + -14.719364166259766 + ], + [ + "quam", + -14.719376564025879 + ], + [ + "▁Beliefs", + -14.719390869140625 + ], + [ + "uum", + -14.719401359558105 + ], + [ + "▁Hurts", + -14.719417572021484 + ], + [ + "▁finality", + -14.719439506530762 + ], + [ + "▁FAITH", + -14.719463348388672 + ], + [ + "▁Sangh", + -14.719537734985352 + ], + [ + "▁Bilbo", + -14.719539642333984 + ], + [ + "television", + -14.71959114074707 + ], + [ + "YAN", + -14.719598770141602 + ], + [ + "▁Daenerys", + -14.719600677490234 + ], + [ + "circular", + -14.719610214233398 + ], + [ + "▁analgesia", + -14.719630241394043 + ], + [ + "▁boycotting", + -14.719730377197266 + ], + [ + "▁ILL", + -14.71973705291748 + ], + [ + "▁Maclean", + -14.719758033752441 + ], + [ + "▁digger", + -14.719764709472656 + ], + [ + "dje", + -14.719768524169922 + ], + [ + "▁grantee", + -14.719771385192871 + ], + [ + "▁ROYAL", + -14.719781875610352 + ], + [ + "▁poder", + -14.719791412353516 + ], + [ + "▁Naik", + -14.719826698303223 + ], + [ + "RIDE", + -14.719852447509766 + ], + [ + "reinforced", + -14.71986198425293 + ], + [ + "▁Reyna", + -14.719863891601562 + ], + [ + "▁coldly", + -14.719865798950195 + ], + [ + "▁oars", + -14.719876289367676 + ], + [ + "antonio", + -14.719897270202637 + ], + [ + "MCC", + -14.719968795776367 + ], + [ + "▁Spectacle", + -14.720003128051758 + ], + [ + "▁Melting", + -14.72000789642334 + ], + [ + "genuine", + -14.720025062561035 + ], + [ + "▁Playwright", + -14.720035552978516 + ], + [ + "▁PNP", + -14.720038414001465 + ], + [ + "novich", + -14.720053672790527 + ], + [ + "▁Steinbeck", + -14.720053672790527 + ], + [ + "▁Gully", + -14.72010612487793 + ], + [ + "wä", + -14.720149040222168 + ], + [ + "▁waded", + -14.720179557800293 + ], + [ + "▁Obasanjo", + -14.720185279846191 + ], + [ + "compression", + -14.720193862915039 + ], + [ + "▁tangential", + -14.720195770263672 + ], + [ + "▁hv", + -14.720250129699707 + ], + [ + "▁João", + -14.720305442810059 + ], + [ + "▁sabotaging", + -14.720338821411133 + ], + [ + "▁outbuildings", + -14.720358848571777 + ], + [ + "▁cowhide", + -14.720376014709473 + ], + [ + "Hospital", + -14.720376968383789 + ], + [ + "▁cutthroat", + -14.720416069030762 + ], + [ + "▁armature", + -14.720439910888672 + ], + [ + "▁Barge", + -14.720446586608887 + ], + [ + "▁Algae", + -14.720479011535645 + ], + [ + "hni", + -14.720491409301758 + ], + [ + "▁rouse", + -14.720519065856934 + ], + [ + "▁bequeathed", + -14.720537185668945 + ], + [ + "bigger", + -14.720556259155273 + ], + [ + "ophyll", + -14.72060489654541 + ], + [ + "▁SOE", + -14.72061824798584 + ], + [ + "▁bigots", + -14.720670700073242 + ], + [ + "▁constriction", + -14.720681190490723 + ], + [ + "▁Gesellschaft", + -14.720699310302734 + ], + [ + "▁ServerPlease", + -14.720708847045898 + ], + [ + "▁Silvio", + -14.720717430114746 + ], + [ + "▁collard", + -14.720744132995605 + ], + [ + "▁professing", + -14.720852851867676 + ], + [ + "ubli", + -14.720855712890625 + ], + [ + "▁Jethro", + -14.720891952514648 + ], + [ + "Subject", + -14.720926284790039 + ], + [ + "▁bribed", + -14.720939636230469 + ], + [ + "▁concoctions", + -14.720942497253418 + ], + [ + "▁Mastermind", + -14.720980644226074 + ], + [ + "platinum", + -14.720983505249023 + ], + [ + "▁Notting", + -14.720983505249023 + ], + [ + "▁Pino", + -14.72103214263916 + ], + [ + "▁boomerang", + -14.721061706542969 + ], + [ + "金", + -14.72113037109375 + ], + [ + "rece", + -14.721181869506836 + ], + [ + "▁ITA", + -14.721198081970215 + ], + [ + "▁downtrend", + -14.721246719360352 + ], + [ + "▁childbearing", + -14.721248626708984 + ], + [ + "▁Longmont", + -14.721250534057617 + ], + [ + "▁Purposes", + -14.721251487731934 + ], + [ + "当", + -14.7212553024292 + ], + [ + "spear", + -14.721261978149414 + ], + [ + "위", + -14.721274375915527 + ], + [ + "▁Sapporo", + -14.721288681030273 + ], + [ + "▁convergent", + -14.721291542053223 + ], + [ + "▁Preserving", + -14.72131061553955 + ], + [ + "▁Leandro", + -14.721333503723145 + ], + [ + "heartedness", + -14.721380233764648 + ], + [ + "▁Chay", + -14.721389770507812 + ], + [ + "▁Arnie", + -14.72144889831543 + ], + [ + "▁Schwan", + -14.721501350402832 + ], + [ + "▁Bungie", + -14.721512794494629 + ], + [ + "▁Safeguard", + -14.721515655517578 + ], + [ + "▁styrofoam", + -14.72154712677002 + ], + [ + "▁executioner", + -14.721548080444336 + ], + [ + "▁Hamer", + -14.721572875976562 + ], + [ + "assess", + -14.72159194946289 + ], + [ + "▁Adria", + -14.721617698669434 + ], + [ + "▁LIMIT", + -14.72162914276123 + ], + [ + "▁Meath", + -14.721643447875977 + ], + [ + "être", + -14.7216796875 + ], + [ + "▁XB", + -14.721694946289062 + ], + [ + "cester", + -14.721698760986328 + ], + [ + "▁excl", + -14.721699714660645 + ], + [ + "▁Dalian", + -14.721741676330566 + ], + [ + "shelter", + -14.721745491027832 + ], + [ + "▁Corsi", + -14.721787452697754 + ], + [ + "▁Yuk", + -14.72178840637207 + ], + [ + "grinding", + -14.721808433532715 + ], + [ + "▁Reinhart", + -14.721818923950195 + ], + [ + "▁Ekiti", + -14.721829414367676 + ], + [ + "portion", + -14.721856117248535 + ], + [ + "▁polyamide", + -14.721857070922852 + ], + [ + "▁shirk", + -14.72189712524414 + ], + [ + "▁CVC", + -14.72189998626709 + ], + [ + "Switzerland", + -14.721900939941406 + ], + [ + "ugue", + -14.721903800964355 + ], + [ + "▁gluco", + -14.721921920776367 + ], + [ + "▁watersports", + -14.721924781799316 + ], + [ + "▁MANAGER", + -14.722021102905273 + ], + [ + "▁odours", + -14.722024917602539 + ], + [ + "▁sledge", + -14.722062110900879 + ], + [ + "▁hemmed", + -14.722076416015625 + ], + [ + "운", + -14.722122192382812 + ], + [ + "▁heeled", + -14.722126960754395 + ], + [ + "▁Earthquakes", + -14.72213363647461 + ], + [ + "dealing", + -14.722140312194824 + ], + [ + "▁arrowhead", + -14.722140312194824 + ], + [ + "▁Emancipation", + -14.722142219543457 + ], + [ + "Sar", + -14.722171783447266 + ], + [ + "▁underestimating", + -14.722210884094238 + ], + [ + "▁Wessex", + -14.722220420837402 + ], + [ + "ISTS", + -14.722245216369629 + ], + [ + "▁ROG", + -14.722248077392578 + ], + [ + "▁moans", + -14.722278594970703 + ], + [ + "▁Queries", + -14.722314834594727 + ], + [ + "▁Chiropractors", + -14.722331047058105 + ], + [ + "▁mamas", + -14.722373008728027 + ], + [ + "ivos", + -14.722392082214355 + ], + [ + "▁Tendulkar", + -14.722405433654785 + ], + [ + "▁Kingsbury", + -14.722411155700684 + ], + [ + "▁Callaghan", + -14.722460746765137 + ], + [ + "▁fume", + -14.722481727600098 + ], + [ + "♠", + -14.722485542297363 + ], + [ + "▁Sangha", + -14.72249984741211 + ], + [ + "▁Spidey", + -14.722517967224121 + ], + [ + "champion", + -14.722546577453613 + ], + [ + "▁Nourish", + -14.722557067871094 + ], + [ + "Ephesians", + -14.722588539123535 + ], + [ + "▁buybacks", + -14.722626686096191 + ], + [ + "STS", + -14.722684860229492 + ], + [ + "▁repented", + -14.722689628601074 + ], + [ + "entering", + -14.722722053527832 + ], + [ + "▁Chuk", + -14.722736358642578 + ], + [ + "itur", + -14.722752571105957 + ], + [ + "azioni", + -14.72276782989502 + ], + [ + "▁dispatchers", + -14.7227783203125 + ], + [ + "dori", + -14.722797393798828 + ], + [ + "▁Lionsgate", + -14.722814559936523 + ], + [ + "▁bogs", + -14.722833633422852 + ], + [ + "▁disorientation", + -14.722841262817383 + ], + [ + "▁pickers", + -14.722848892211914 + ], + [ + "▁Yoder", + -14.722869873046875 + ], + [ + "▁patronizing", + -14.722887992858887 + ], + [ + "▁aplomb", + -14.72288990020752 + ], + [ + "Historical", + -14.72293758392334 + ], + [ + "terre", + -14.722980499267578 + ], + [ + "▁Prospectus", + -14.72298812866211 + ], + [ + "▁muff", + -14.72300910949707 + ], + [ + "▁736", + -14.723010063171387 + ], + [ + "▁cupped", + -14.723011016845703 + ], + [ + "▁winded", + -14.723028182983398 + ], + [ + "ел", + -14.723054885864258 + ], + [ + "▁banquets", + -14.723055839538574 + ], + [ + "▁ADO", + -14.723112106323242 + ], + [ + "▁Maggi", + -14.723126411437988 + ], + [ + "▁Undead", + -14.723132133483887 + ], + [ + "▁purist", + -14.723265647888184 + ], + [ + "▁Omnibus", + -14.723282814025879 + ], + [ + "▁Boracay", + -14.723326683044434 + ], + [ + "Arabic", + -14.723365783691406 + ], + [ + "▁cushy", + -14.723368644714355 + ], + [ + "▁Restriction", + -14.723377227783203 + ], + [ + "Shine", + -14.723410606384277 + ], + [ + "▁Thinker", + -14.72344970703125 + ], + [ + "▁blazes", + -14.723465919494629 + ], + [ + "printer", + -14.723475456237793 + ], + [ + "ficient", + -14.723485946655273 + ], + [ + "▁GLO", + -14.72351360321045 + ], + [ + "▁topmost", + -14.723517417907715 + ], + [ + "ères", + -14.72352123260498 + ], + [ + "ebu", + -14.723621368408203 + ], + [ + "Dreams", + -14.72362995147705 + ], + [ + "URY", + -14.723665237426758 + ], + [ + "▁Laravel", + -14.723674774169922 + ], + [ + "▁Thaw", + -14.723675727844238 + ], + [ + "▁Twister", + -14.723691940307617 + ], + [ + "▁Cutie", + -14.72370719909668 + ], + [ + "▁SPECIFIC", + -14.723714828491211 + ], + [ + "▁Colleague", + -14.723718643188477 + ], + [ + "▁defensemen", + -14.723799705505371 + ], + [ + "▁jittery", + -14.723803520202637 + ], + [ + "▁ANALYSIS", + -14.723810195922852 + ], + [ + "▁Fie", + -14.723814010620117 + ], + [ + "vay", + -14.723817825317383 + ], + [ + "後", + -14.723830223083496 + ], + [ + "▁Brind", + -14.723837852478027 + ], + [ + "shattering", + -14.723846435546875 + ], + [ + "▁Suppress", + -14.72386360168457 + ], + [ + "▁CONTAIN", + -14.723894119262695 + ], + [ + "▁garde", + -14.723913192749023 + ], + [ + "uggle", + -14.723917007446289 + ], + [ + "▁IFSC", + -14.723934173583984 + ], + [ + "▁Overlooking", + -14.723937034606934 + ], + [ + "▁NFA", + -14.723970413208008 + ], + [ + "▁iPlayer", + -14.723999977111816 + ], + [ + "합", + -14.724082946777344 + ], + [ + "▁AFA", + -14.724138259887695 + ], + [ + "▁Adore", + -14.724148750305176 + ], + [ + "▁Jeju", + -14.724159240722656 + ], + [ + "fade", + -14.72418212890625 + ], + [ + "▁Skar", + -14.7241849899292 + ], + [ + "▁Terrance", + -14.724188804626465 + ], + [ + "CNC", + -14.72419261932373 + ], + [ + "▁typ", + -14.72419261932373 + ], + [ + "allowing", + -14.72423267364502 + ], + [ + "▁Pulsed", + -14.724254608154297 + ], + [ + "▁JIT", + -14.724262237548828 + ], + [ + "▁incensed", + -14.724267959594727 + ], + [ + "▁español", + -14.724286079406738 + ], + [ + "▁topographical", + -14.724287986755371 + ], + [ + "▁TZ", + -14.724321365356445 + ], + [ + "irc", + -14.724337577819824 + ], + [ + "▁TSI", + -14.724337577819824 + ], + [ + "▁Parra", + -14.724339485168457 + ], + [ + "▁hydrological", + -14.724365234375 + ], + [ + "cran", + -14.724370002746582 + ], + [ + "▁PAINT", + -14.724387168884277 + ], + [ + "▁sellout", + -14.724398612976074 + ], + [ + "▁loggers", + -14.724406242370605 + ], + [ + "▁TiO", + -14.72442626953125 + ], + [ + "▁Clusters", + -14.72443962097168 + ], + [ + "▁nba", + -14.724444389343262 + ], + [ + "▁909", + -14.724455833435059 + ], + [ + "▁ALREADY", + -14.724467277526855 + ], + [ + "▁hastened", + -14.72449016571045 + ], + [ + "▁Hairy", + -14.724518775939941 + ], + [ + "▁granularity", + -14.724528312683105 + ], + [ + "▁Kabbalah", + -14.724540710449219 + ], + [ + "▁Impressionist", + -14.724560737609863 + ], + [ + "▁jak", + -14.724569320678711 + ], + [ + "Chef", + -14.724611282348633 + ], + [ + "▁Tatsu", + -14.724617958068848 + ], + [ + "▁fearlessly", + -14.724655151367188 + ], + [ + "▁Immunization", + -14.72465991973877 + ], + [ + "Seattle", + -14.724689483642578 + ], + [ + "SAF", + -14.724696159362793 + ], + [ + "wav", + -14.724724769592285 + ], + [ + "▁Collider", + -14.724724769592285 + ], + [ + "meni", + -14.72473430633545 + ], + [ + "▁Dull", + -14.72474479675293 + ], + [ + "▁Johar", + -14.724772453308105 + ], + [ + "▁puny", + -14.724791526794434 + ], + [ + "▁Refreshing", + -14.724813461303711 + ], + [ + "▁Refined", + -14.724817276000977 + ], + [ + "▁Warlord", + -14.724823951721191 + ], + [ + "dico", + -14.72485637664795 + ], + [ + "▁Henne", + -14.724881172180176 + ], + [ + "Gamer", + -14.724899291992188 + ], + [ + "▁Haitians", + -14.724909782409668 + ], + [ + "▁Witchcraft", + -14.724922180175781 + ], + [ + "▁Ruh", + -14.72495174407959 + ], + [ + "▁penalised", + -14.724952697753906 + ], + [ + "▁Quintet", + -14.724953651428223 + ], + [ + "▁underperformed", + -14.724958419799805 + ], + [ + "Result", + -14.724970817565918 + ], + [ + "▁Nasi", + -14.72500228881836 + ], + [ + "▁hus", + -14.725013732910156 + ], + [ + "Except", + -14.72502326965332 + ], + [ + "▁Blond", + -14.725050926208496 + ], + [ + "▁wanderer", + -14.725059509277344 + ], + [ + "Ь", + -14.72508430480957 + ], + [ + "▁Sima", + -14.725086212158203 + ], + [ + "▁Leonid", + -14.725101470947266 + ], + [ + "technic", + -14.725130081176758 + ], + [ + "RPM", + -14.725165367126465 + ], + [ + "▁DeMar", + -14.72519588470459 + ], + [ + "安", + -14.725282669067383 + ], + [ + "لم", + -14.725299835205078 + ], + [ + "▁Summa", + -14.725310325622559 + ], + [ + "▁READING", + -14.725316047668457 + ], + [ + "▁MacLean", + -14.725322723388672 + ], + [ + "▁Modifications", + -14.725340843200684 + ], + [ + "▁phospholipid", + -14.72534465789795 + ], + [ + "▁NTN", + -14.725356101989746 + ], + [ + "▁resplendent", + -14.725359916687012 + ], + [ + "▁stim", + -14.725372314453125 + ], + [ + "▁NOLA", + -14.725375175476074 + ], + [ + "maier", + -14.725491523742676 + ], + [ + "▁handrails", + -14.725589752197266 + ], + [ + "▁Lachlan", + -14.725605010986328 + ], + [ + "▁placental", + -14.72560977935791 + ], + [ + "▁Jau", + -14.725622177124023 + ], + [ + "assed", + -14.725629806518555 + ], + [ + "▁blustery", + -14.725634574890137 + ], + [ + "▁keepsakes", + -14.725641250610352 + ], + [ + "Blind", + -14.725645065307617 + ], + [ + "▁Popularity", + -14.725662231445312 + ], + [ + "RDC", + -14.72568130493164 + ], + [ + "tsk", + -14.72568130493164 + ], + [ + "▁Bastian", + -14.725692749023438 + ], + [ + "▁Raheem", + -14.725700378417969 + ], + [ + "▁Rapidshare", + -14.725711822509766 + ], + [ + "▁Vann", + -14.725723266601562 + ], + [ + "▁VND", + -14.725739479064941 + ], + [ + "▁naan", + -14.72575569152832 + ], + [ + "ै", + -14.725764274597168 + ], + [ + "▁McFarlane", + -14.725794792175293 + ], + [ + "▁Pragmatic", + -14.725821495056152 + ], + [ + "▁Atheists", + -14.725851058959961 + ], + [ + "▁DUR", + -14.725872993469238 + ], + [ + "▁afflictions", + -14.725892066955566 + ], + [ + "работ", + -14.725909233093262 + ], + [ + "▁Bilal", + -14.725916862487793 + ], + [ + "▁Murcia", + -14.725936889648438 + ], + [ + "▁inequity", + -14.725964546203613 + ], + [ + "truction", + -14.726006507873535 + ], + [ + "▁stratum", + -14.726027488708496 + ], + [ + "entin", + -14.72609806060791 + ], + [ + "▁meow", + -14.726137161254883 + ], + [ + "glie", + -14.726143836975098 + ], + [ + "▁trickled", + -14.726153373718262 + ], + [ + "▁Rabb", + -14.726164817810059 + ], + [ + "▁racecourse", + -14.726186752319336 + ], + [ + "▁interoperable", + -14.726190567016602 + ], + [ + "▁gatekeepers", + -14.726204872131348 + ], + [ + "▁languish", + -14.726223945617676 + ], + [ + "▁derision", + -14.726234436035156 + ], + [ + "PRINT", + -14.726243019104004 + ], + [ + "▁beret", + -14.726286888122559 + ], + [ + "lora", + -14.726344108581543 + ], + [ + "▁Dandy", + -14.726386070251465 + ], + [ + "department", + -14.726401329040527 + ], + [ + "▁Fawn", + -14.72640609741211 + ], + [ + "итель", + -14.726411819458008 + ], + [ + "▁Buoy", + -14.726436614990234 + ], + [ + "▁GDS", + -14.726445198059082 + ], + [ + "▁eyewitnesses", + -14.726465225219727 + ], + [ + "▁Disciples", + -14.726531982421875 + ], + [ + "▁Universität", + -14.726531982421875 + ], + [ + "▁모", + -14.726531982421875 + ], + [ + "▁Waterway", + -14.726548194885254 + ], + [ + "▁lumin", + -14.726642608642578 + ], + [ + "▁με", + -14.726651191711426 + ], + [ + "▁Gleeson", + -14.726668357849121 + ], + [ + "▁Foxy", + -14.72668170928955 + ], + [ + "▁foci", + -14.726716995239258 + ], + [ + "▁Buda", + -14.726739883422852 + ], + [ + "▁strappy", + -14.726787567138672 + ], + [ + "diabetes", + -14.72683048248291 + ], + [ + "▁Scissors", + -14.72683334350586 + ], + [ + "▁Amphitheatre", + -14.726850509643555 + ], + [ + "▁magick", + -14.726890563964844 + ], + [ + "▁Broderick", + -14.726893424987793 + ], + [ + "▁Seguin", + -14.726911544799805 + ], + [ + "▁Larissa", + -14.72691535949707 + ], + [ + "▁Oxnard", + -14.726927757263184 + ], + [ + "▁dressy", + -14.726940155029297 + ], + [ + "▁1150", + -14.726943016052246 + ], + [ + "▁Pokhara", + -14.726947784423828 + ], + [ + "▁commuted", + -14.726993560791016 + ], + [ + "▁Hypnotherapy", + -14.727004051208496 + ], + [ + "▁cataloging", + -14.727021217346191 + ], + [ + "▁Bayley", + -14.727130889892578 + ], + [ + "kem", + -14.727136611938477 + ], + [ + "Slot", + -14.727158546447754 + ], + [ + "▁Rename", + -14.727274894714355 + ], + [ + "▁Keygen", + -14.727277755737305 + ], + [ + "saccharide", + -14.727291107177734 + ], + [ + "▁Yuen", + -14.72729778289795 + ], + [ + "▁Swimmer", + -14.727394104003906 + ], + [ + "▁MAH", + -14.727396965026855 + ], + [ + "Castle", + -14.727400779724121 + ], + [ + "attended", + -14.727405548095703 + ], + [ + "coco", + -14.72744083404541 + ], + [ + "▁extrem", + -14.727511405944824 + ], + [ + "▁EKG", + -14.727523803710938 + ], + [ + "▁imprison", + -14.72752571105957 + ], + [ + "▁camouflaged", + -14.727538108825684 + ], + [ + "▁beeps", + -14.727547645568848 + ], + [ + "▁Alka", + -14.72755241394043 + ], + [ + "kani", + -14.727554321289062 + ], + [ + "▁Transnational", + -14.727574348449707 + ], + [ + "▁Fjord", + -14.727579116821289 + ], + [ + "▁cisco", + -14.727601051330566 + ], + [ + "▁trill", + -14.727618217468262 + ], + [ + "▁thickener", + -14.72762393951416 + ], + [ + "▁hou", + -14.727672576904297 + ], + [ + "hanger", + -14.727747917175293 + ], + [ + "▁Oakes", + -14.727754592895508 + ], + [ + "▁Gilligan", + -14.727773666381836 + ], + [ + "gradation", + -14.727789878845215 + ], + [ + "▁NPs", + -14.727801322937012 + ], + [ + "▁trashing", + -14.727829933166504 + ], + [ + "▁derailment", + -14.727910995483398 + ], + [ + "▁Faiz", + -14.727911949157715 + ], + [ + "▁bodybuilder", + -14.727925300598145 + ], + [ + "▁terrorized", + -14.727989196777344 + ], + [ + "▁Capitalist", + -14.72800064086914 + ], + [ + "▁Darden", + -14.72802734375 + ], + [ + "▁Ulm", + -14.728071212768555 + ], + [ + "▁WINTER", + -14.728074073791504 + ], + [ + "▁Kine", + -14.728097915649414 + ], + [ + "▁Joyner", + -14.728142738342285 + ], + [ + "▁dermato", + -14.728199005126953 + ], + [ + "▁Grandview", + -14.728212356567383 + ], + [ + "▁injurious", + -14.728218078613281 + ], + [ + "▁rocketed", + -14.72823715209961 + ], + [ + "▁incinerator", + -14.728240966796875 + ], + [ + "earing", + -14.728243827819824 + ], + [ + "▁corvette", + -14.728254318237305 + ], + [ + "▁rubbery", + -14.728273391723633 + ], + [ + "▁allude", + -14.728285789489746 + ], + [ + "pico", + -14.728292465209961 + ], + [ + "▁Mendelssohn", + -14.728312492370605 + ], + [ + "▁wince", + -14.728360176086426 + ], + [ + "proportion", + -14.728419303894043 + ], + [ + "▁tenfold", + -14.72842025756836 + ], + [ + "▁Finishes", + -14.728434562683105 + ], + [ + "▁particulates", + -14.728449821472168 + ], + [ + "▁Javed", + -14.72847843170166 + ], + [ + "▁Protea", + -14.728479385375977 + ], + [ + "▁sewerage", + -14.728484153747559 + ], + [ + "▁Hitchens", + -14.728506088256836 + ], + [ + "▁Π", + -14.72852897644043 + ], + [ + "▁Rosalie", + -14.728553771972656 + ], + [ + "▁Doughty", + -14.7285737991333 + ], + [ + "▁Blondie", + -14.728575706481934 + ], + [ + "▁teetering", + -14.728581428527832 + ], + [ + "▁Masu", + -14.72858715057373 + ], + [ + "▁leukaemia", + -14.728597640991211 + ], + [ + "▁SEMA", + -14.728604316711426 + ], + [ + "▁pinhole", + -14.728609085083008 + ], + [ + "▁Manner", + -14.728614807128906 + ], + [ + "spheric", + -14.72862720489502 + ], + [ + "▁Alloys", + -14.728630065917969 + ], + [ + "▁Risen", + -14.728686332702637 + ], + [ + "▁Eta", + -14.728719711303711 + ], + [ + "▁Binh", + -14.728732109069824 + ], + [ + "▁spatter", + -14.728741645812988 + ], + [ + "▁Discs", + -14.72877311706543 + ], + [ + "▁viva", + -14.728777885437012 + ], + [ + "▁planetarium", + -14.728787422180176 + ], + [ + "▁BUD", + -14.7288818359375 + ], + [ + "▁oboe", + -14.72894287109375 + ], + [ + "▁Kolb", + -14.728951454162598 + ], + [ + "kaku", + -14.728954315185547 + ], + [ + "meadow", + -14.72896957397461 + ], + [ + "nasal", + -14.728971481323242 + ], + [ + "▁Takata", + -14.728978157043457 + ], + [ + "▁demagogue", + -14.728995323181152 + ], + [ + "▁readied", + -14.729000091552734 + ], + [ + "▁LMP", + -14.729025840759277 + ], + [ + "▁Bjork", + -14.729045867919922 + ], + [ + "▁Relaxed", + -14.729077339172363 + ], + [ + "▁nutri", + -14.729084014892578 + ], + [ + "▁zany", + -14.729101181030273 + ], + [ + "wami", + -14.729106903076172 + ], + [ + "▁él", + -14.729111671447754 + ], + [ + "▁regex", + -14.729145050048828 + ], + [ + "▁Volo", + -14.729181289672852 + ], + [ + "▁inching", + -14.7291841506958 + ], + [ + "satz", + -14.72918701171875 + ], + [ + "▁TRP", + -14.72921371459961 + ], + [ + "▁Eben", + -14.729214668273926 + ], + [ + "▁defame", + -14.72923755645752 + ], + [ + "▁belies", + -14.729239463806152 + ], + [ + "ecology", + -14.729249954223633 + ], + [ + "▁VISION", + -14.729275703430176 + ], + [ + "▁Aub", + -14.729284286499023 + ], + [ + "▁waar", + -14.729331970214844 + ], + [ + "1907", + -14.72938060760498 + ], + [ + "▁Clad", + -14.729382514953613 + ], + [ + "▁Bonsai", + -14.729429244995117 + ], + [ + "▁bandmates", + -14.72947883605957 + ], + [ + "ydd", + -14.729482650756836 + ], + [ + "Jake", + -14.729499816894531 + ], + [ + "possession", + -14.7295560836792 + ], + [ + "taxi", + -14.729575157165527 + ], + [ + "▁Fasci", + -14.729618072509766 + ], + [ + "dpi", + -14.729630470275879 + ], + [ + "flora", + -14.729640007019043 + ], + [ + "Instagram", + -14.729681015014648 + ], + [ + "▁tastier", + -14.729695320129395 + ], + [ + "Pel", + -14.729716300964355 + ], + [ + "▁Karthik", + -14.729716300964355 + ], + [ + "▁Amazonian", + -14.729729652404785 + ], + [ + "▁Zimmermann", + -14.729737281799316 + ], + [ + "▁Rickard", + -14.72974681854248 + ], + [ + "▁832", + -14.729779243469238 + ], + [ + "▁taunted", + -14.72978687286377 + ], + [ + "▁Ange", + -14.729799270629883 + ], + [ + "▁TXT", + -14.729809761047363 + ], + [ + "▁META", + -14.729818344116211 + ], + [ + "▁Aweber", + -14.729830741882324 + ], + [ + "▁godliness", + -14.729840278625488 + ], + [ + "▁NCIS", + -14.729876518249512 + ], + [ + "▁Willett", + -14.72989273071289 + ], + [ + "▁Lotte", + -14.729896545410156 + ], + [ + "▁philanthropists", + -14.729910850524902 + ], + [ + "▁WCS", + -14.72994613647461 + ], + [ + "▁baiting", + -14.729987144470215 + ], + [ + "▁Pelle", + -14.7300386428833 + ], + [ + "จ", + -14.730039596557617 + ], + [ + "▁Arianna", + -14.73010540008545 + ], + [ + "stitution", + -14.730106353759766 + ], + [ + "▁MERC", + -14.730131149291992 + ], + [ + "▁Roshan", + -14.730131149291992 + ], + [ + "▁tarps", + -14.730134010314941 + ], + [ + "▁nuestra", + -14.730278968811035 + ], + [ + "Simply", + -14.730283737182617 + ], + [ + "▁Murfreesboro", + -14.730348587036133 + ], + [ + "▁foretell", + -14.7304048538208 + ], + [ + "Effect", + -14.730494499206543 + ], + [ + "▁Muscles", + -14.73051929473877 + ], + [ + "▁raptor", + -14.730522155761719 + ], + [ + "▁spawns", + -14.730539321899414 + ], + [ + "Beau", + -14.730549812316895 + ], + [ + "▁misfire", + -14.730561256408691 + ], + [ + "▁GIRLS", + -14.730682373046875 + ], + [ + "▁finicky", + -14.730749130249023 + ], + [ + "оч", + -14.730790138244629 + ], + [ + "▁furtherance", + -14.730795860290527 + ], + [ + "▁prairies", + -14.730831146240234 + ], + [ + "▁Maza", + -14.73084831237793 + ], + [ + "potter", + -14.730854034423828 + ], + [ + "▁Lacquer", + -14.730856895446777 + ], + [ + "▁Moist", + -14.730874061584473 + ], + [ + "▁breastfed", + -14.73093318939209 + ], + [ + "▁purgatory", + -14.730948448181152 + ], + [ + "▁hospitalised", + -14.73096752166748 + ], + [ + "emerging", + -14.730995178222656 + ], + [ + "psychology", + -14.731009483337402 + ], + [ + "▁Waverley", + -14.73106861114502 + ], + [ + "piro", + -14.731111526489258 + ], + [ + "▁plying", + -14.731131553649902 + ], + [ + "▁histology", + -14.731173515319824 + ], + [ + "Consult", + -14.731182098388672 + ], + [ + "▁reenactment", + -14.731257438659668 + ], + [ + "cdc", + -14.731263160705566 + ], + [ + "▁Bluestone", + -14.731277465820312 + ], + [ + "▁Bahamian", + -14.731287956237793 + ], + [ + "vail", + -14.731300354003906 + ], + [ + "▁philosoph", + -14.731302261352539 + ], + [ + "Beta", + -14.731359481811523 + ], + [ + "▁Unofficial", + -14.73138427734375 + ], + [ + "▁MIMO", + -14.7313871383667 + ], + [ + "jones", + -14.731409072875977 + ], + [ + "▁Pitchfork", + -14.731440544128418 + ], + [ + "▁Kontakt", + -14.731462478637695 + ], + [ + "desert", + -14.731471061706543 + ], + [ + "▁665", + -14.731475830078125 + ], + [ + "▁aqueduct", + -14.731478691101074 + ], + [ + "Lean", + -14.731487274169922 + ], + [ + "▁tints", + -14.731497764587402 + ], + [ + "▁Brantley", + -14.731536865234375 + ], + [ + "▁Rhymes", + -14.73155689239502 + ], + [ + "▁Kati", + -14.73157024383545 + ], + [ + "▁Rodent", + -14.731653213500977 + ], + [ + "▁delineation", + -14.731674194335938 + ], + [ + "▁voir", + -14.73169994354248 + ], + [ + "ravi", + -14.731706619262695 + ], + [ + "constitutional", + -14.731745719909668 + ], + [ + "▁republish", + -14.7317533493042 + ], + [ + "▁irish", + -14.731809616088867 + ], + [ + "▁Damages", + -14.731844902038574 + ], + [ + "ав", + -14.731852531433105 + ], + [ + "▁gallo", + -14.731884956359863 + ], + [ + "idol", + -14.731887817382812 + ], + [ + "▁Parsi", + -14.731902122497559 + ], + [ + "TWO", + -14.731922149658203 + ], + [ + "ruti", + -14.731971740722656 + ], + [ + "▁mermaids", + -14.732030868530273 + ], + [ + "▁Coloured", + -14.732034683227539 + ], + [ + "▁kap", + -14.732075691223145 + ], + [ + "▁Hardie", + -14.732087135314941 + ], + [ + "▁tryouts", + -14.73208999633789 + ], + [ + "▁decanter", + -14.732094764709473 + ], + [ + "▁Lilian", + -14.732115745544434 + ], + [ + "osto", + -14.732142448425293 + ], + [ + "▁Pollen", + -14.732172966003418 + ], + [ + "▁mutate", + -14.732199668884277 + ], + [ + "▁filigree", + -14.732202529907227 + ], + [ + "▁stromal", + -14.732231140136719 + ], + [ + "▁BPS", + -14.732327461242676 + ], + [ + "inspiration", + -14.732370376586914 + ], + [ + "decorated", + -14.732380867004395 + ], + [ + "conjugated", + -14.732420921325684 + ], + [ + "▁1782", + -14.73243236541748 + ], + [ + "Effective", + -14.732436180114746 + ], + [ + "▁repugnant", + -14.732437133789062 + ], + [ + "▁Ruffle", + -14.732475280761719 + ], + [ + "hatta", + -14.732518196105957 + ], + [ + "beek", + -14.732553482055664 + ], + [ + "Ski", + -14.732626914978027 + ], + [ + "▁Kwe", + -14.732649803161621 + ], + [ + "▁elicits", + -14.732730865478516 + ], + [ + "semester", + -14.73273754119873 + ], + [ + "▁Achievements", + -14.73281192779541 + ], + [ + "Mala", + -14.732841491699219 + ], + [ + "lapping", + -14.732911109924316 + ], + [ + "▁striping", + -14.732916831970215 + ], + [ + "▁Trillion", + -14.732954978942871 + ], + [ + "▁hock", + -14.732976913452148 + ], + [ + "▁Gogo", + -14.732987403869629 + ], + [ + "▁Sharpton", + -14.733023643493652 + ], + [ + "NPC", + -14.7330322265625 + ], + [ + "▁Cac", + -14.733043670654297 + ], + [ + "▁Succ", + -14.733061790466309 + ], + [ + "▁Anushka", + -14.733119010925293 + ], + [ + "▁OCS", + -14.733135223388672 + ], + [ + "zna", + -14.733195304870605 + ], + [ + "▁Gratuit", + -14.733224868774414 + ], + [ + "▁GROUND", + -14.7332763671875 + ], + [ + "▁THOUGHT", + -14.73330307006836 + ], + [ + "Goddess", + -14.733327865600586 + ], + [ + "Rou", + -14.733342170715332 + ], + [ + "▁bushfire", + -14.733358383178711 + ], + [ + "Dub", + -14.73337459564209 + ], + [ + "▁Vinod", + -14.733402252197266 + ], + [ + "▁Hopewell", + -14.733413696289062 + ], + [ + "▁Rask", + -14.733428001403809 + ], + [ + "▁JACKSON", + -14.733451843261719 + ], + [ + "▁Nizam", + -14.73349380493164 + ], + [ + "▁Siddiqui", + -14.733499526977539 + ], + [ + "▁unofficially", + -14.73353385925293 + ], + [ + "▁Intermittent", + -14.733580589294434 + ], + [ + "▁Crossfit", + -14.733601570129395 + ], + [ + "▁Raha", + -14.73363208770752 + ], + [ + "▁landlocked", + -14.733649253845215 + ], + [ + "▁Archival", + -14.733651161193848 + ], + [ + "▁831", + -14.733708381652832 + ], + [ + "wach", + -14.73373794555664 + ], + [ + "▁Fiddle", + -14.733749389648438 + ], + [ + "▁Heid", + -14.733765602111816 + ], + [ + "▁WestJet", + -14.733771324157715 + ], + [ + "trian", + -14.733800888061523 + ], + [ + "▁yardstick", + -14.73381519317627 + ], + [ + "arita", + -14.733823776245117 + ], + [ + "▁resupply", + -14.733826637268066 + ], + [ + "utti", + -14.733898162841797 + ], + [ + "removal", + -14.733930587768555 + ], + [ + "▁CHEM", + -14.73393440246582 + ], + [ + "▁vagaries", + -14.733962059020996 + ], + [ + "▁enclaves", + -14.734004974365234 + ], + [ + "sucking", + -14.734012603759766 + ], + [ + "▁footballing", + -14.734012603759766 + ], + [ + "hockey", + -14.734020233154297 + ], + [ + "▁complet", + -14.734021186828613 + ], + [ + "Raj", + -14.734073638916016 + ], + [ + "orient", + -14.734131813049316 + ], + [ + "protest", + -14.734166145324707 + ], + [ + "▁Farid", + -14.734210014343262 + ], + [ + "▁McVay", + -14.734210014343262 + ], + [ + "icin", + -14.734216690063477 + ], + [ + "▁blindfold", + -14.73421859741211 + ], + [ + "▁Zon", + -14.734223365783691 + ], + [ + "▁Tennyson", + -14.73422622680664 + ], + [ + "missed", + -14.73424243927002 + ], + [ + "▁Inverse", + -14.734254837036133 + ], + [ + "▁infuses", + -14.734269142150879 + ], + [ + "thriller", + -14.734293937683105 + ], + [ + "hram", + -14.734332084655762 + ], + [ + "Phys", + -14.734354972839355 + ], + [ + "▁roaches", + -14.734363555908203 + ], + [ + "bps", + -14.734396934509277 + ], + [ + "▁CDU", + -14.734442710876465 + ], + [ + "▁Chunk", + -14.734515190124512 + ], + [ + "▁peddle", + -14.734527587890625 + ], + [ + "quoting", + -14.734528541564941 + ], + [ + "▁Marauder", + -14.734539031982422 + ], + [ + "▁APU", + -14.734553337097168 + ], + [ + "Gone", + -14.734562873840332 + ], + [ + "관", + -14.734566688537598 + ], + [ + "▁TOGETHER", + -14.734612464904785 + ], + [ + "▁Declare", + -14.734622955322266 + ], + [ + "▁beeping", + -14.73462963104248 + ], + [ + "▁WINDOWS", + -14.73464298248291 + ], + [ + "▁IHC", + -14.734646797180176 + ], + [ + "▁hypertensive", + -14.734647750854492 + ], + [ + "▁Morata", + -14.734668731689453 + ], + [ + "leaves", + -14.734674453735352 + ], + [ + "ngu", + -14.734694480895996 + ], + [ + "ivu", + -14.734745979309082 + ], + [ + "▁Accessing", + -14.734771728515625 + ], + [ + "dying", + -14.734781265258789 + ], + [ + "▁Arjuna", + -14.734783172607422 + ], + [ + "▁Cherie", + -14.734786033630371 + ], + [ + "▁bolus", + -14.734820365905762 + ], + [ + "▁Sisi", + -14.734883308410645 + ], + [ + "▁Conducted", + -14.734912872314453 + ], + [ + "▁trawler", + -14.734929084777832 + ], + [ + "▁yds", + -14.734935760498047 + ], + [ + "▁kebab", + -14.734936714172363 + ], + [ + "▁tortoises", + -14.73494815826416 + ], + [ + "▁Frosted", + -14.734950065612793 + ], + [ + "▁faxed", + -14.734977722167969 + ], + [ + "▁Hilfiger", + -14.734980583190918 + ], + [ + "합니다", + -14.734980583190918 + ], + [ + "RDS", + -14.735037803649902 + ], + [ + "▁autologous", + -14.735062599182129 + ], + [ + "▁Kipp", + -14.735065460205078 + ], + [ + "▁barbs", + -14.735065460205078 + ], + [ + "▁Homeowner", + -14.735089302062988 + ], + [ + "▁bollard", + -14.735105514526367 + ], + [ + "▁Mele", + -14.735125541687012 + ], + [ + "elke", + -14.735139846801758 + ], + [ + "▁Keefe", + -14.73514461517334 + ], + [ + "▁Citric", + -14.735148429870605 + ], + [ + "▁Knopf", + -14.735167503356934 + ], + [ + "koh", + -14.73523235321045 + ], + [ + "HX", + -14.735245704650879 + ], + [ + "yse", + -14.735271453857422 + ], + [ + "EDGE", + -14.735349655151367 + ], + [ + "abile", + -14.735395431518555 + ], + [ + "▁tidings", + -14.735400199890137 + ], + [ + "ollen", + -14.735404014587402 + ], + [ + "▁Albemarle", + -14.735410690307617 + ], + [ + "ASD", + -14.73542594909668 + ], + [ + "Vic", + -14.735429763793945 + ], + [ + "▁Cauliflower", + -14.735441207885742 + ], + [ + "▁bolsters", + -14.735486030578613 + ], + [ + "rocco", + -14.735503196716309 + ], + [ + "▁treadmills", + -14.735511779785156 + ], + [ + "PPS", + -14.735528945922852 + ], + [ + "enial", + -14.735570907592773 + ], + [ + "▁paddleboard", + -14.735572814941406 + ], + [ + "collect", + -14.73558521270752 + ], + [ + "▁GRU", + -14.73558521270752 + ], + [ + "▁Sitka", + -14.735591888427734 + ], + [ + "▁whiten", + -14.735635757446289 + ], + [ + "▁stateroom", + -14.735642433166504 + ], + [ + "▁Maintains", + -14.735650062561035 + ], + [ + "WEST", + -14.7356538772583 + ], + [ + "MANN", + -14.735660552978516 + ], + [ + "▁fanning", + -14.735675811767578 + ], + [ + "▁Deficiency", + -14.735687255859375 + ], + [ + "▁Preis", + -14.735711097717285 + ], + [ + "▁atoll", + -14.73575496673584 + ], + [ + "▁PZ", + -14.735758781433105 + ], + [ + "▁cybercriminals", + -14.735769271850586 + ], + [ + "ன்", + -14.73577880859375 + ], + [ + "▁bobby", + -14.735780715942383 + ], + [ + "▁Keita", + -14.735795021057129 + ], + [ + "▁avowed", + -14.735818862915039 + ], + [ + "awful", + -14.73588752746582 + ], + [ + "▁Karo", + -14.735901832580566 + ], + [ + "▁mange", + -14.735904693603516 + ], + [ + "Split", + -14.735910415649414 + ], + [ + "fik", + -14.735912322998047 + ], + [ + "▁usefull", + -14.735926628112793 + ], + [ + "▁Skylar", + -14.735929489135742 + ], + [ + "▁CMI", + -14.735943794250488 + ], + [ + "▁Petal", + -14.735956192016602 + ], + [ + "▁bidet", + -14.735966682434082 + ], + [ + "▁BBN", + -14.735983848571777 + ], + [ + "▁orgasm", + -14.736014366149902 + ], + [ + "HEC", + -14.736058235168457 + ], + [ + "▁scruffy", + -14.736079216003418 + ], + [ + "▁Miri", + -14.736111640930176 + ], + [ + "▁PHOENIX", + -14.736178398132324 + ], + [ + "variance", + -14.736227035522461 + ], + [ + "▁Polishing", + -14.736230850219727 + ], + [ + "▁trestle", + -14.736262321472168 + ], + [ + "▁Durability", + -14.736263275146484 + ], + [ + "erte", + -14.736274719238281 + ], + [ + "▁JDK", + -14.736310958862305 + ], + [ + "▁Encrypt", + -14.736350059509277 + ], + [ + "▁tendering", + -14.73635196685791 + ], + [ + "▁Crenshaw", + -14.736352920532227 + ], + [ + "lada", + -14.73641586303711 + ], + [ + "ANCY", + -14.736421585083008 + ], + [ + "markt", + -14.73643970489502 + ], + [ + "▁phytoplankton", + -14.736446380615234 + ], + [ + "pany", + -14.736478805541992 + ], + [ + "empel", + -14.736486434936523 + ], + [ + "▁Zuni", + -14.736533164978027 + ], + [ + "▁mottled", + -14.736547470092773 + ], + [ + "ADI", + -14.73656177520752 + ], + [ + "▁terrorize", + -14.736572265625 + ], + [ + "stuffed", + -14.736608505249023 + ], + [ + "Primary", + -14.736616134643555 + ], + [ + "▁Roddy", + -14.736626625061035 + ], + [ + "chloride", + -14.736634254455566 + ], + [ + "boxing", + -14.736668586730957 + ], + [ + "1090", + -14.736699104309082 + ], + [ + "▁EVENTS", + -14.736706733703613 + ], + [ + "▁inoperable", + -14.736713409423828 + ], + [ + "▁Tufted", + -14.736716270446777 + ], + [ + "▁REE", + -14.736737251281738 + ], + [ + "▁boomer", + -14.736763954162598 + ], + [ + "▁Eduard", + -14.73678207397461 + ], + [ + "▁pervades", + -14.736846923828125 + ], + [ + "Ideal", + -14.736862182617188 + ], + [ + "▁pokes", + -14.73690414428711 + ], + [ + "▁CLR", + -14.736919403076172 + ], + [ + "avil", + -14.736988067626953 + ], + [ + "▁Addams", + -14.737017631530762 + ], + [ + "▁Coping", + -14.737034797668457 + ], + [ + "▁unsavory", + -14.737039566040039 + ], + [ + "▁tumult", + -14.737051010131836 + ], + [ + "assemble", + -14.73706340789795 + ], + [ + "photograph", + -14.73706340789795 + ], + [ + "▁Angelique", + -14.737139701843262 + ], + [ + "▁emu", + -14.737147331237793 + ], + [ + "▁artic", + -14.737168312072754 + ], + [ + "▁iterator", + -14.737186431884766 + ], + [ + "▁barbie", + -14.737196922302246 + ], + [ + "▁vendetta", + -14.737204551696777 + ], + [ + "▁Ulta", + -14.737236976623535 + ], + [ + "▁Validate", + -14.737302780151367 + ], + [ + "WHAT", + -14.737326622009277 + ], + [ + "▁Copernicus", + -14.737337112426758 + ], + [ + "▁nibbles", + -14.737344741821289 + ], + [ + "▁Oku", + -14.737353324890137 + ], + [ + "hio", + -14.737386703491211 + ], + [ + "▁junkyard", + -14.737398147583008 + ], + [ + "▁Griswold", + -14.737421035766602 + ], + [ + "▁opine", + -14.737445831298828 + ], + [ + "▁middling", + -14.737467765808105 + ], + [ + "▁orgasms", + -14.737557411193848 + ], + [ + "physician", + -14.737603187561035 + ], + [ + "▁Lightfoot", + -14.737627983093262 + ], + [ + "차", + -14.73764419555664 + ], + [ + "▁Mariota", + -14.737658500671387 + ], + [ + "▁Silverstein", + -14.737680435180664 + ], + [ + "▁nannies", + -14.737680435180664 + ], + [ + "▁Hourly", + -14.73770809173584 + ], + [ + "▁Communicator", + -14.737717628479004 + ], + [ + "▁Optimizing", + -14.737747192382812 + ], + [ + "ouille", + -14.737767219543457 + ], + [ + "▁ग", + -14.737812995910645 + ], + [ + "▁grimy", + -14.737836837768555 + ], + [ + "▁Playboy", + -14.73784351348877 + ], + [ + "▁RFA", + -14.73784351348877 + ], + [ + "▁lysine", + -14.73784351348877 + ], + [ + "▁tf", + -14.737844467163086 + ], + [ + "▁JAC", + -14.7378568649292 + ], + [ + "▁Gunther", + -14.737890243530273 + ], + [ + "▁Obvious", + -14.737908363342285 + ], + [ + "▁Antalya", + -14.737932205200195 + ], + [ + "▁heartworm", + -14.738009452819824 + ], + [ + "▁FTD", + -14.73801040649414 + ], + [ + "▁urologist", + -14.73801040649414 + ], + [ + "▁719", + -14.73803997039795 + ], + [ + "▁Fukuoka", + -14.73803997039795 + ], + [ + "distributed", + -14.738046646118164 + ], + [ + "▁vibrato", + -14.738089561462402 + ], + [ + "▁kerato", + -14.738091468811035 + ], + [ + "▁Brookhaven", + -14.738117218017578 + ], + [ + "▁Clun", + -14.738147735595703 + ], + [ + "Bou", + -14.73820686340332 + ], + [ + "udging", + -14.738213539123535 + ], + [ + "▁overhauling", + -14.738243103027344 + ], + [ + "trench", + -14.738263130187988 + ], + [ + "Wit", + -14.738273620605469 + ], + [ + "▁Triggers", + -14.73830795288086 + ], + [ + "▁Kanna", + -14.738420486450195 + ], + [ + "▁Keo", + -14.738425254821777 + ], + [ + "resolved", + -14.738431930541992 + ], + [ + "▁Roald", + -14.738523483276367 + ], + [ + "PVC", + -14.738525390625 + ], + [ + "FPS", + -14.7385835647583 + ], + [ + "▁pate", + -14.738595008850098 + ], + [ + "Giant", + -14.738619804382324 + ], + [ + "▁zipping", + -14.738658905029297 + ], + [ + "▁frets", + -14.738666534423828 + ], + [ + "▁convivial", + -14.73867130279541 + ], + [ + "RUN", + -14.738675117492676 + ], + [ + "▁CUNY", + -14.738679885864258 + ], + [ + "▁hashes", + -14.738736152648926 + ], + [ + "atorium", + -14.738738059997559 + ], + [ + "Whoever", + -14.738743782043457 + ], + [ + "▁retrofitting", + -14.73875617980957 + ], + [ + "▁HENRY", + -14.738771438598633 + ], + [ + "▁bassline", + -14.738788604736328 + ], + [ + "▁Abbasi", + -14.738801956176758 + ], + [ + "▁Ansel", + -14.738809585571289 + ], + [ + "▁butchered", + -14.738885879516602 + ], + [ + "Hillary", + -14.738914489746094 + ], + [ + "тер", + -14.738924026489258 + ], + [ + "NQ", + -14.738938331604004 + ], + [ + "▁Mufti", + -14.738966941833496 + ], + [ + "weigh", + -14.738992691040039 + ], + [ + "▁HOLIDAY", + -14.739009857177734 + ], + [ + "▁vandals", + -14.739025115966797 + ], + [ + "luminescence", + -14.739048957824707 + ], + [ + "▁Economies", + -14.739112854003906 + ], + [ + "CLASS", + -14.739126205444336 + ], + [ + "orden", + -14.739201545715332 + ], + [ + "▁cashflow", + -14.739217758178711 + ], + [ + "▁Cushman", + -14.739334106445312 + ], + [ + "▁thoughtless", + -14.739340782165527 + ], + [ + "▁Annotated", + -14.73936939239502 + ], + [ + "▁Tira", + -14.739463806152344 + ], + [ + "▁spigot", + -14.739474296569824 + ], + [ + "▁Hallam", + -14.739510536193848 + ], + [ + "schule", + -14.739516258239746 + ], + [ + "▁blanketed", + -14.739516258239746 + ], + [ + "▁Benfica", + -14.739524841308594 + ], + [ + "jl", + -14.73953628540039 + ], + [ + "ум", + -14.739541053771973 + ], + [ + "▁Fares", + -14.739546775817871 + ], + [ + "▁technicalities", + -14.7395601272583 + ], + [ + "▁Ashkenazi", + -14.739582061767578 + ], + [ + "▁Aquaculture", + -14.739607810974121 + ], + [ + "▁airstrike", + -14.739629745483398 + ], + [ + "▁hoverboard", + -14.739662170410156 + ], + [ + "inni", + -14.739666938781738 + ], + [ + "▁Rainey", + -14.739679336547852 + ], + [ + "▁Louth", + -14.739690780639648 + ], + [ + "▁perturbed", + -14.739690780639648 + ], + [ + "▁federations", + -14.739720344543457 + ], + [ + "其", + -14.739725112915039 + ], + [ + "▁Alti", + -14.739740371704102 + ], + [ + "▁Spoil", + -14.739749908447266 + ], + [ + "▁662", + -14.739764213562012 + ], + [ + "▁transmembrane", + -14.739781379699707 + ], + [ + "▁Shipley", + -14.739782333374023 + ], + [ + "ические", + -14.739795684814453 + ], + [ + "▁Contender", + -14.739803314208984 + ], + [ + "原", + -14.739815711975098 + ], + [ + "Exit", + -14.739839553833008 + ], + [ + "▁diction", + -14.739899635314941 + ], + [ + "▁cmd", + -14.739948272705078 + ], + [ + "philia", + -14.739952087402344 + ], + [ + "1899", + -14.739959716796875 + ], + [ + "ക", + -14.739965438842773 + ], + [ + "★", + -14.739991188049316 + ], + [ + "▁FRANCE", + -14.740009307861328 + ], + [ + "▁singly", + -14.740023612976074 + ], + [ + "▁litmus", + -14.740038871765137 + ], + [ + "▁Dissertations", + -14.740047454833984 + ], + [ + "▁APD", + -14.740055084228516 + ], + [ + "▁spongy", + -14.74006462097168 + ], + [ + "composite", + -14.740084648132324 + ], + [ + "▁escapism", + -14.74008846282959 + ], + [ + "▁Ingredient", + -14.740153312683105 + ], + [ + "▁SUBJECT", + -14.740160942077637 + ], + [ + "▁Jewry", + -14.740211486816406 + ], + [ + "▁SMBs", + -14.740211486816406 + ], + [ + "rson", + -14.740219116210938 + ], + [ + "▁TCL", + -14.740233421325684 + ], + [ + "▁flattery", + -14.740239143371582 + ], + [ + "▁Venezia", + -14.7402925491333 + ], + [ + "▁Hehe", + -14.740301132202148 + ], + [ + "▁Glazed", + -14.740321159362793 + ], + [ + "▁Essie", + -14.74034595489502 + ], + [ + "▁Fortis", + -14.740347862243652 + ], + [ + "▁638", + -14.740350723266602 + ], + [ + "Growth", + -14.740368843078613 + ], + [ + "▁determinism", + -14.740387916564941 + ], + [ + "▁Berl", + -14.740425109863281 + ], + [ + "▁Elkins", + -14.740427017211914 + ], + [ + "erville", + -14.74044418334961 + ], + [ + "▁NYE", + -14.740471839904785 + ], + [ + "▁Ludhiana", + -14.740479469299316 + ], + [ + "▁credentialed", + -14.740490913391113 + ], + [ + "haft", + -14.740510940551758 + ], + [ + "▁685", + -14.740530967712402 + ], + [ + "▁sama", + -14.740530967712402 + ], + [ + "▁astigmatism", + -14.740541458129883 + ], + [ + "sicht", + -14.740545272827148 + ], + [ + "▁altcoins", + -14.740551948547363 + ], + [ + "CTS", + -14.74055290222168 + ], + [ + "▁772", + -14.740553855895996 + ], + [ + "lding", + -14.740562438964844 + ], + [ + "rück", + -14.740622520446777 + ], + [ + "표", + -14.740623474121094 + ], + [ + "▁communicable", + -14.740633010864258 + ], + [ + "▁Hazards", + -14.740669250488281 + ], + [ + "▁Pique", + -14.740680694580078 + ], + [ + "▁Stefanie", + -14.740753173828125 + ], + [ + "Mistress", + -14.74079704284668 + ], + [ + "▁Leger", + -14.740811347961426 + ], + [ + "▁exacerbating", + -14.740829467773438 + ], + [ + "▁단", + -14.740849494934082 + ], + [ + "tailored", + -14.740852355957031 + ], + [ + "usu", + -14.740921020507812 + ], + [ + "▁Akash", + -14.740930557250977 + ], + [ + "▁Vulnerable", + -14.740973472595215 + ], + [ + "▁Azam", + -14.740999221801758 + ], + [ + "▁Adj", + -14.741025924682617 + ], + [ + "▁woodwind", + -14.741044998168945 + ], + [ + "BODY", + -14.741082191467285 + ], + [ + "▁Thule", + -14.74108600616455 + ], + [ + "▁unwrap", + -14.741106033325195 + ], + [ + "Phoenix", + -14.741146087646484 + ], + [ + "▁uc", + -14.741175651550293 + ], + [ + "▁estuaries", + -14.741194725036621 + ], + [ + "eev", + -14.741238594055176 + ], + [ + "Slave", + -14.741247177124023 + ], + [ + "▁COLUMBIA", + -14.741302490234375 + ], + [ + "▁EXO", + -14.741304397583008 + ], + [ + "▁electrolysis", + -14.741305351257324 + ], + [ + "▁emulsifier", + -14.741333961486816 + ], + [ + "trib", + -14.741344451904297 + ], + [ + "EXP", + -14.741354942321777 + ], + [ + "russian", + -14.741376876831055 + ], + [ + "liffe", + -14.741392135620117 + ], + [ + "▁Goodall", + -14.74143123626709 + ], + [ + "▁nirvana", + -14.741456985473633 + ], + [ + "▁Canaanite", + -14.74146842956543 + ], + [ + "▁stirrup", + -14.741487503051758 + ], + [ + "▁Jive", + -14.741495132446289 + ], + [ + "▁Hamper", + -14.741512298583984 + ], + [ + "knight", + -14.741541862487793 + ], + [ + "▁reimagining", + -14.741559028625488 + ], + [ + "Mirror", + -14.741602897644043 + ], + [ + "ension", + -14.741615295410156 + ], + [ + "▁mementos", + -14.74162483215332 + ], + [ + "▁Audition", + -14.741683959960938 + ], + [ + "▁untamed", + -14.741683959960938 + ], + [ + "▁supercharger", + -14.741684913635254 + ], + [ + "▁Kandahar", + -14.741691589355469 + ], + [ + "▁daggers", + -14.74169635772705 + ], + [ + "▁Feline", + -14.741720199584961 + ], + [ + "▁Autistic", + -14.741752624511719 + ], + [ + "▁Saki", + -14.74176025390625 + ], + [ + "▁Kare", + -14.741767883300781 + ], + [ + "temple", + -14.74177074432373 + ], + [ + "gnan", + -14.741786003112793 + ], + [ + "▁chuckling", + -14.74180793762207 + ], + [ + "▁MMT", + -14.741827964782715 + ], + [ + "З", + -14.741828918457031 + ], + [ + "▁prioritised", + -14.741832733154297 + ], + [ + "▁QD", + -14.74183464050293 + ], + [ + "▁sanctioning", + -14.741836547851562 + ], + [ + "▁Superstore", + -14.741951942443848 + ], + [ + "▁videotaped", + -14.741987228393555 + ], + [ + "▁walgreens", + -14.741992950439453 + ], + [ + "▁Brigid", + -14.741999626159668 + ], + [ + "را", + -14.7420015335083 + ], + [ + "▁dimethyl", + -14.742049217224121 + ], + [ + "▁Payable", + -14.7420654296875 + ], + [ + "▁Chapin", + -14.74210262298584 + ], + [ + "▁Distant", + -14.742110252380371 + ], + [ + "開", + -14.742148399353027 + ], + [ + "▁reconvene", + -14.742185592651367 + ], + [ + "▁Τ", + -14.742193222045898 + ], + [ + "▁gobbled", + -14.742230415344238 + ], + [ + "▁reverberate", + -14.742237091064453 + ], + [ + "▁Doomsday", + -14.742243766784668 + ], + [ + "xian", + -14.74227237701416 + ], + [ + "Adv", + -14.742284774780273 + ], + [ + "▁Awaken", + -14.74230670928955 + ], + [ + "▁Herefordshire", + -14.742330551147461 + ], + [ + "▁SCADA", + -14.74233627319336 + ], + [ + "▁Kwik", + -14.742348670959473 + ], + [ + "▁Gauntlet", + -14.742385864257812 + ], + [ + "allowed", + -14.742391586303711 + ], + [ + "▁Yatra", + -14.742485046386719 + ], + [ + "▁misstep", + -14.742510795593262 + ], + [ + "▁creamer", + -14.742535591125488 + ], + [ + "▁underappreciated", + -14.742554664611816 + ], + [ + "▁lecithin", + -14.7426118850708 + ], + [ + "▁Feral", + -14.742659568786621 + ], + [ + "▁Peril", + -14.742661476135254 + ], + [ + "▁Shat", + -14.742668151855469 + ], + [ + "▁implosion", + -14.742668151855469 + ], + [ + "idation", + -14.742687225341797 + ], + [ + "ruled", + -14.742733001708984 + ], + [ + "▁Reuse", + -14.742755889892578 + ], + [ + "▁leotard", + -14.742766380310059 + ], + [ + "▁COACH", + -14.74278450012207 + ], + [ + "▁Artem", + -14.7428617477417 + ], + [ + "▁QQ", + -14.742918968200684 + ], + [ + "▁ducking", + -14.742982864379883 + ], + [ + "▁Staunton", + -14.743013381958008 + ], + [ + "▁Objection", + -14.743059158325195 + ], + [ + "riol", + -14.743075370788574 + ], + [ + "▁Grundlagen", + -14.74307632446289 + ], + [ + "▁ESXi", + -14.743081092834473 + ], + [ + "▁Incarnation", + -14.743093490600586 + ], + [ + "iensis", + -14.743098258972168 + ], + [ + "nome", + -14.743133544921875 + ], + [ + "lode", + -14.743199348449707 + ], + [ + "enriched", + -14.743200302124023 + ], + [ + "▁lemur", + -14.743202209472656 + ], + [ + "▁GAD", + -14.743253707885742 + ], + [ + "▁arginine", + -14.743255615234375 + ], + [ + "▁Gilchrist", + -14.743268013000488 + ], + [ + "▁Husqvarna", + -14.743302345275879 + ], + [ + "roud", + -14.743349075317383 + ], + [ + "▁këtë", + -14.743376731872559 + ], + [ + "▁insufficiently", + -14.743383407592773 + ], + [ + "▁discerned", + -14.743426322937012 + ], + [ + "▁boyish", + -14.743432998657227 + ], + [ + "▁Kach", + -14.743460655212402 + ], + [ + "▁vibratory", + -14.743512153625488 + ], + [ + "向", + -14.743520736694336 + ], + [ + "▁Layne", + -14.743585586547852 + ], + [ + "arak", + -14.74361801147461 + ], + [ + "Pont", + -14.743619918823242 + ], + [ + "▁Microscope", + -14.743633270263672 + ], + [ + "▁vc", + -14.743643760681152 + ], + [ + "▁decentralised", + -14.743715286254883 + ], + [ + "▁Keanu", + -14.743738174438477 + ], + [ + "▁APPLE", + -14.743842124938965 + ], + [ + "orrhea", + -14.743901252746582 + ], + [ + "▁Peres", + -14.743903160095215 + ], + [ + "▁scribbling", + -14.743911743164062 + ], + [ + "▁drumstick", + -14.743913650512695 + ], + [ + "▁demystify", + -14.743956565856934 + ], + [ + "▁ubiquitin", + -14.74399185180664 + ], + [ + "▁Thrifty", + -14.743998527526855 + ], + [ + "ADHD", + -14.744023323059082 + ], + [ + "▁charles", + -14.744037628173828 + ], + [ + "▁circulates", + -14.744051933288574 + ], + [ + "▁constructors", + -14.744056701660156 + ], + [ + "▁TRADING", + -14.744077682495117 + ], + [ + "▁blurted", + -14.744152069091797 + ], + [ + "▁myopic", + -14.74420166015625 + ], + [ + "▁kasi", + -14.74421501159668 + ], + [ + "▁berserk", + -14.744241714477539 + ], + [ + "▁mumbling", + -14.744248390197754 + ], + [ + "killed", + -14.74426555633545 + ], + [ + "▁AXA", + -14.74426555633545 + ], + [ + "▁「", + -14.744292259216309 + ], + [ + "alignment", + -14.744312286376953 + ], + [ + "▁enchiladas", + -14.744400978088379 + ], + [ + "▁hombre", + -14.744443893432617 + ], + [ + "▁Redondo", + -14.74445915222168 + ], + [ + "affi", + -14.744532585144043 + ], + [ + "▁Mixture", + -14.744613647460938 + ], + [ + "▁maw", + -14.744667053222656 + ], + [ + "▁ASSOCIATION", + -14.744706153869629 + ], + [ + "▁Kinsey", + -14.744730949401855 + ], + [ + "▁dander", + -14.744735717773438 + ], + [ + "▁bloodthirsty", + -14.744771003723145 + ], + [ + "▁zag", + -14.744772911071777 + ], + [ + "▁downtrodden", + -14.744811058044434 + ], + [ + "▁Grubb", + -14.744834899902344 + ], + [ + "hamma", + -14.744848251342773 + ], + [ + "unden", + -14.744852066040039 + ], + [ + "ств", + -14.74485969543457 + ], + [ + "▁Rump", + -14.744864463806152 + ], + [ + "▁extrapolation", + -14.744871139526367 + ], + [ + "ده", + -14.74488639831543 + ], + [ + "▁haphazardly", + -14.744898796081543 + ], + [ + "▁Audiobook", + -14.744932174682617 + ], + [ + "▁kerala", + -14.744946479797363 + ], + [ + "▁Morecambe", + -14.745016098022461 + ], + [ + "▁gutsy", + -14.745025634765625 + ], + [ + "ponder", + -14.745074272155762 + ], + [ + "deer", + -14.745139122009277 + ], + [ + "indy", + -14.745145797729492 + ], + [ + "lten", + -14.745157241821289 + ], + [ + "▁automaton", + -14.745162010192871 + ], + [ + "▁Lacking", + -14.745169639587402 + ], + [ + "▁atelier", + -14.745184898376465 + ], + [ + "▁Sheds", + -14.745185852050781 + ], + [ + "parenting", + -14.745224952697754 + ], + [ + "▁Writ", + -14.745271682739258 + ], + [ + "▁tradeoffs", + -14.745285987854004 + ], + [ + "āh", + -14.745287895202637 + ], + [ + "▁concurrence", + -14.745302200317383 + ], + [ + "QUA", + -14.745319366455078 + ], + [ + "▁chipboard", + -14.745380401611328 + ], + [ + "SOP", + -14.745389938354492 + ], + [ + "▁orlando", + -14.745396614074707 + ], + [ + "▁wanderlust", + -14.7454252243042 + ], + [ + "▁Crooks", + -14.745479583740234 + ], + [ + "nomial", + -14.745481491088867 + ], + [ + "Dating", + -14.745534896850586 + ], + [ + "▁Krug", + -14.745552062988281 + ], + [ + "▁ව", + -14.745585441589355 + ], + [ + "▁McCarty", + -14.745590209960938 + ], + [ + "▁vestibule", + -14.745646476745605 + ], + [ + "Electro", + -14.74567699432373 + ], + [ + "影", + -14.745678901672363 + ], + [ + "▁Berks", + -14.745687484741211 + ], + [ + "▁privatized", + -14.745732307434082 + ], + [ + "▁spake", + -14.745733261108398 + ], + [ + "Palestine", + -14.745738983154297 + ], + [ + "▁warlord", + -14.745787620544434 + ], + [ + "▁ashram", + -14.745814323425293 + ], + [ + "▁trifecta", + -14.74582290649414 + ], + [ + "▁Escalade", + -14.745838165283203 + ], + [ + "▁wtf", + -14.745911598205566 + ], + [ + "▁paralysed", + -14.745925903320312 + ], + [ + "▁pivots", + -14.745929718017578 + ], + [ + "▁bough", + -14.74593734741211 + ], + [ + "▁strangeness", + -14.745996475219727 + ], + [ + "▁Musgrave", + -14.746000289916992 + ], + [ + "▁MATT", + -14.746016502380371 + ], + [ + "▁Kaza", + -14.746021270751953 + ], + [ + "trem", + -14.74605655670166 + ], + [ + "freezing", + -14.746077537536621 + ], + [ + "▁omniscient", + -14.746077537536621 + ], + [ + "▁Manners", + -14.746088981628418 + ], + [ + "▁creaking", + -14.746193885803223 + ], + [ + "▁marigold", + -14.7462158203125 + ], + [ + "attachment", + -14.746227264404297 + ], + [ + "▁fittingly", + -14.746227264404297 + ], + [ + "▁SQLite", + -14.746228218078613 + ], + [ + "ග", + -14.746235847473145 + ], + [ + "slav", + -14.74624252319336 + ], + [ + "▁Municipalities", + -14.74626636505127 + ], + [ + "brothers", + -14.746267318725586 + ], + [ + "▁meteors", + -14.746283531188965 + ], + [ + "pek", + -14.74628734588623 + ], + [ + "ondi", + -14.746356010437012 + ], + [ + "spite", + -14.746371269226074 + ], + [ + "▁Klar", + -14.746379852294922 + ], + [ + "▁Antimicrobial", + -14.746391296386719 + ], + [ + "JPY", + -14.746440887451172 + ], + [ + "▁Katha", + -14.746452331542969 + ], + [ + "▁tinsel", + -14.746498107910156 + ], + [ + "▁troublemaker", + -14.746508598327637 + ], + [ + "▁grommets", + -14.746509552001953 + ], + [ + "▁Cotswold", + -14.74653148651123 + ], + [ + "continued", + -14.746551513671875 + ], + [ + "▁quakes", + -14.746561050415039 + ], + [ + "▁militancy", + -14.746598243713379 + ], + [ + "▁Sketches", + -14.746623039245605 + ], + [ + "▁Unternehmen", + -14.74662971496582 + ], + [ + "▁Geese", + -14.746634483337402 + ], + [ + "▁Overtime", + -14.746651649475098 + ], + [ + "▁Winding", + -14.746651649475098 + ], + [ + "▁856", + -14.74666976928711 + ], + [ + "▁reportage", + -14.746678352355957 + ], + [ + "▁Cruces", + -14.746679306030273 + ], + [ + "▁hoover", + -14.746712684631348 + ], + [ + "▁latrine", + -14.74674129486084 + ], + [ + "▁Broadly", + -14.746766090393066 + ], + [ + "▁flotilla", + -14.746774673461914 + ], + [ + "▁Killarney", + -14.74679946899414 + ], + [ + "▁compactor", + -14.746832847595215 + ], + [ + "▁Pilar", + -14.746862411499023 + ], + [ + "FIC", + -14.746880531311035 + ], + [ + "▁leek", + -14.746882438659668 + ], + [ + "▁hairdressing", + -14.746910095214844 + ], + [ + "▁dint", + -14.746919631958008 + ], + [ + "cyn", + -14.746926307678223 + ], + [ + "▁cerebellum", + -14.746981620788574 + ], + [ + "▁balms", + -14.747020721435547 + ], + [ + "▁Migrants", + -14.747023582458496 + ], + [ + "jv", + -14.747045516967773 + ], + [ + "▁grist", + -14.747076034545898 + ], + [ + "PAY", + -14.747097969055176 + ], + [ + "▁ENV", + -14.747116088867188 + ], + [ + "▁Visio", + -14.747123718261719 + ], + [ + "▁mascots", + -14.747167587280273 + ], + [ + "▁Homi", + -14.747209548950195 + ], + [ + "▁epinephrine", + -14.747232437133789 + ], + [ + "▁IOP", + -14.74725341796875 + ], + [ + "▁EXPECT", + -14.747259140014648 + ], + [ + "▁Dhamma", + -14.747260093688965 + ], + [ + "▁Traci", + -14.74731159210205 + ], + [ + "divorce", + -14.747320175170898 + ], + [ + "▁microbiological", + -14.747333526611328 + ], + [ + "▁comers", + -14.74734115600586 + ], + [ + "Britain", + -14.747346878051758 + ], + [ + "▁से", + -14.747361183166504 + ], + [ + "▁uninspiring", + -14.747365951538086 + ], + [ + "▁vuitton", + -14.74737548828125 + ], + [ + "▁Foyer", + -14.747384071350098 + ], + [ + "▁DWP", + -14.747392654418945 + ], + [ + "▁Brack", + -14.747415542602539 + ], + [ + "▁Politically", + -14.747428894042969 + ], + [ + "▁Amphitheater", + -14.747468948364258 + ], + [ + "▁retest", + -14.74747371673584 + ], + [ + "▁radicalism", + -14.747491836547852 + ], + [ + "▁sectoral", + -14.747495651245117 + ], + [ + "▁tamb", + -14.747511863708496 + ], + [ + "40°", + -14.74753475189209 + ], + [ + "▁Adil", + -14.747540473937988 + ], + [ + "▁Approve", + -14.747541427612305 + ], + [ + "gya", + -14.747544288635254 + ], + [ + "▁Salaries", + -14.747559547424316 + ], + [ + "▁dumpling", + -14.747578620910645 + ], + [ + "converted", + -14.747605323791504 + ], + [ + "▁plasmids", + -14.747614860534668 + ], + [ + "▁tortuous", + -14.74761962890625 + ], + [ + "▁944", + -14.747705459594727 + ], + [ + "▁Kickoff", + -14.747715950012207 + ], + [ + "▁Greenbelt", + -14.74771785736084 + ], + [ + "naturally", + -14.747722625732422 + ], + [ + "affair", + -14.747769355773926 + ], + [ + "fantastic", + -14.747774124145508 + ], + [ + "latitude", + -14.74780559539795 + ], + [ + "▁ella", + -14.747854232788086 + ], + [ + "lude", + -14.747896194458008 + ], + [ + "convenient", + -14.747918128967285 + ], + [ + "▁Syriac", + -14.747919082641602 + ], + [ + "▁Starz", + -14.747925758361816 + ], + [ + "▁tampon", + -14.747940063476562 + ], + [ + "poke", + -14.747943878173828 + ], + [ + "molar", + -14.747960090637207 + ], + [ + "Border", + -14.74799633026123 + ], + [ + "Lie", + -14.748011589050293 + ], + [ + "▁Finnegan", + -14.748011589050293 + ], + [ + "▁Stimulation", + -14.74802017211914 + ], + [ + "yyy", + -14.748099327087402 + ], + [ + "▁italia", + -14.748116493225098 + ], + [ + "Meter", + -14.74813175201416 + ], + [ + "▁bypasses", + -14.74813175201416 + ], + [ + "▁hamsters", + -14.748176574707031 + ], + [ + "▁relativism", + -14.748188972473145 + ], + [ + "german", + -14.748191833496094 + ], + [ + "▁Butterworth", + -14.748193740844727 + ], + [ + "▁adjournment", + -14.748194694519043 + ], + [ + "Ted", + -14.74819564819336 + ], + [ + "imu", + -14.748237609863281 + ], + [ + "▁Respir", + -14.74824333190918 + ], + [ + "BAS", + -14.748254776000977 + ], + [ + "▁vertebra", + -14.748392105102539 + ], + [ + "▁Viti", + -14.74839973449707 + ], + [ + "letting", + -14.748411178588867 + ], + [ + "porte", + -14.748416900634766 + ], + [ + "▁motley", + -14.748419761657715 + ], + [ + "▁JCB", + -14.74843978881836 + ], + [ + "unque", + -14.74847412109375 + ], + [ + "manda", + -14.74848461151123 + ], + [ + "▁monomers", + -14.748573303222656 + ], + [ + "▁honorably", + -14.748578071594238 + ], + [ + "izzard", + -14.748579025268555 + ], + [ + "opping", + -14.748580932617188 + ], + [ + "inata", + -14.748601913452148 + ], + [ + "▁HRH", + -14.74860954284668 + ], + [ + "▁boycotted", + -14.748644828796387 + ], + [ + "cada", + -14.74866008758545 + ], + [ + "▁0°", + -14.748665809631348 + ], + [ + "▁Prabhupada", + -14.748671531677246 + ], + [ + "▁Rushmore", + -14.748677253723145 + ], + [ + "▁uninvited", + -14.74869155883789 + ], + [ + "▁Referred", + -14.748701095581055 + ], + [ + "▁disavow", + -14.748743057250977 + ], + [ + "▁prostaglandin", + -14.748743057250977 + ], + [ + "▁secretarial", + -14.748754501342773 + ], + [ + "▁goalies", + -14.748767852783203 + ], + [ + "▁Christa", + -14.748769760131836 + ], + [ + "▁RAI", + -14.748784065246582 + ], + [ + "▁ambiguities", + -14.748815536499023 + ], + [ + "▁Quotation", + -14.748857498168945 + ], + [ + "▁Kigali", + -14.748865127563477 + ], + [ + "▁auteur", + -14.74886703491211 + ], + [ + "cov", + -14.748868942260742 + ], + [ + "▁Coloriage", + -14.748888969421387 + ], + [ + "Gla", + -14.748889923095703 + ], + [ + "▁writhing", + -14.7489013671875 + ], + [ + "▁Alkaline", + -14.74890422821045 + ], + [ + "▁groped", + -14.748939514160156 + ], + [ + "ACL", + -14.749006271362305 + ], + [ + "enau", + -14.7490234375 + ], + [ + "▁parietal", + -14.74911880493164 + ], + [ + "▁monorail", + -14.749151229858398 + ], + [ + "▁widens", + -14.749177932739258 + ], + [ + "▁Muhammed", + -14.749220848083496 + ], + [ + "▁albicans", + -14.749261856079102 + ], + [ + "▁mudroom", + -14.749281883239746 + ], + [ + "ıl", + -14.749290466308594 + ], + [ + "▁Laban", + -14.749290466308594 + ], + [ + "▁PRACTICE", + -14.7493257522583 + ], + [ + "▁GLS", + -14.749363899230957 + ], + [ + "▁Healthier", + -14.749364852905273 + ], + [ + "▁Coolers", + -14.74940013885498 + ], + [ + "▁Blaise", + -14.749403953552246 + ], + [ + "▁Fb", + -14.749423027038574 + ], + [ + "▁Observers", + -14.749434471130371 + ], + [ + "▁ADDITIONAL", + -14.749492645263672 + ], + [ + "▁fallacies", + -14.749505996704102 + ], + [ + "▁Brno", + -14.749521255493164 + ], + [ + "universe", + -14.749532699584961 + ], + [ + "▁hater", + -14.749532699584961 + ], + [ + "▁burrows", + -14.749578475952148 + ], + [ + "▁Contain", + -14.749581336975098 + ], + [ + "ߋ", + -14.749584197998047 + ], + [ + "▁Holyrood", + -14.749591827392578 + ], + [ + "▁Mulch", + -14.74959945678711 + ], + [ + "heli", + -14.749605178833008 + ], + [ + "uron", + -14.749608993530273 + ], + [ + "Papa", + -14.749613761901855 + ], + [ + "▁curiosities", + -14.749625205993652 + ], + [ + "OCA", + -14.749651908874512 + ], + [ + "▁decontamination", + -14.749692916870117 + ], + [ + "▁dormitories", + -14.7496976852417 + ], + [ + "▁twinge", + -14.749720573425293 + ], + [ + "▁tastiest", + -14.749750137329102 + ], + [ + "ould", + -14.749770164489746 + ], + [ + "▁undeserved", + -14.749810218811035 + ], + [ + "▁Taxpayer", + -14.749821662902832 + ], + [ + "▁Trab", + -14.74985408782959 + ], + [ + "▁operationally", + -14.74985408782959 + ], + [ + "zari", + -14.749896049499512 + ], + [ + "yim", + -14.749910354614258 + ], + [ + "▁Rajapaksa", + -14.749916076660156 + ], + [ + "▁glucocorticoid", + -14.749946594238281 + ], + [ + "Silent", + -14.74995231628418 + ], + [ + "▁Rely", + -14.74996566772461 + ], + [ + "▁punctuality", + -14.749966621398926 + ], + [ + "▁reassessment", + -14.749980926513672 + ], + [ + "▁transacted", + -14.749981880187988 + ], + [ + "▁£600", + -14.749991416931152 + ], + [ + "Alternative", + -14.750000953674316 + ], + [ + "TAM", + -14.750011444091797 + ], + [ + "khov", + -14.750025749206543 + ], + [ + "quilibr", + -14.750049591064453 + ], + [ + "▁diluting", + -14.750052452087402 + ], + [ + "▁backroom", + -14.750056266784668 + ], + [ + "▁ARTIST", + -14.750077247619629 + ], + [ + "▁ECHO", + -14.750092506408691 + ], + [ + "▁Carbondale", + -14.750142097473145 + ], + [ + "▁permutation", + -14.750143051147461 + ], + [ + "▁Hendrik", + -14.750160217285156 + ], + [ + "▁oscillators", + -14.750199317932129 + ], + [ + "▁hesitating", + -14.750215530395508 + ], + [ + "▁MAIL", + -14.750227928161621 + ], + [ + "▁basses", + -14.750231742858887 + ], + [ + "Plex", + -14.750240325927734 + ], + [ + "▁polyvinyl", + -14.750265121459961 + ], + [ + "▁Statistically", + -14.750296592712402 + ], + [ + "▁AGC", + -14.750311851501465 + ], + [ + "직", + -14.75035285949707 + ], + [ + "owie", + -14.75036907196045 + ], + [ + "▁Waterhouse", + -14.75037670135498 + ], + [ + "emerge", + -14.750388145446777 + ], + [ + "▁Atti", + -14.750405311584473 + ], + [ + "▁Xcel", + -14.750412940979004 + ], + [ + "prote", + -14.75041389465332 + ], + [ + "▁BX", + -14.750420570373535 + ], + [ + "▁kate", + -14.750456809997559 + ], + [ + "▁axon", + -14.750459671020508 + ], + [ + "▁Lineage", + -14.750490188598633 + ], + [ + "▁prejudicial", + -14.750499725341797 + ], + [ + "▁mainstays", + -14.750500679016113 + ], + [ + "▁731", + -14.750509262084961 + ], + [ + "▁865", + -14.750517845153809 + ], + [ + "▁Monero", + -14.75053882598877 + ], + [ + "▁Geothermal", + -14.7505521774292 + ], + [ + "mixing", + -14.750554084777832 + ], + [ + "competent", + -14.750558853149414 + ], + [ + "▁RENT", + -14.750560760498047 + ], + [ + "▁Stott", + -14.75058650970459 + ], + [ + "▁obstinate", + -14.750601768493652 + ], + [ + "DSL", + -14.750615119934082 + ], + [ + "▁corroded", + -14.750680923461914 + ], + [ + "▁deducting", + -14.750686645507812 + ], + [ + "ShareAlike", + -14.750701904296875 + ], + [ + "acceptable", + -14.750701904296875 + ], + [ + "aggression", + -14.750709533691406 + ], + [ + "▁Spreading", + -14.75075626373291 + ], + [ + "chette", + -14.750819206237793 + ], + [ + "ность", + -14.75083065032959 + ], + [ + "▁misusing", + -14.75083065032959 + ], + [ + "▁Alcoholic", + -14.750861167907715 + ], + [ + "arguably", + -14.750862121582031 + ], + [ + "▁whitish", + -14.750863075256348 + ], + [ + "▁encrypting", + -14.750880241394043 + ], + [ + "▁micrograms", + -14.750936508178711 + ], + [ + "▁Renton", + -14.750937461853027 + ], + [ + "▁FMC", + -14.750947952270508 + ], + [ + "▁rekindled", + -14.750981330871582 + ], + [ + "1371", + -14.751042366027832 + ], + [ + "pke", + -14.751062393188477 + ], + [ + "kissed", + -14.751077651977539 + ], + [ + "emption", + -14.751100540161133 + ], + [ + "cumen", + -14.751108169555664 + ], + [ + "DHA", + -14.75112247467041 + ], + [ + "▁reprogramming", + -14.751157760620117 + ], + [ + "▁Celts", + -14.751163482666016 + ], + [ + "▁Yeshiva", + -14.751171112060547 + ], + [ + "▁doodles", + -14.751191139221191 + ], + [ + "lieu", + -14.751205444335938 + ], + [ + "spoiler", + -14.751303672790527 + ], + [ + "▁JAPAN", + -14.751453399658203 + ], + [ + "▁Simulations", + -14.751477241516113 + ], + [ + "▁Ostro", + -14.751501083374023 + ], + [ + "▁Lv", + -14.751508712768555 + ], + [ + "▁Grenoble", + -14.751558303833008 + ], + [ + "tinged", + -14.751587867736816 + ], + [ + "▁kitchenaid", + -14.751659393310547 + ], + [ + "▁Saraki", + -14.751688003540039 + ], + [ + "▁chipmunk", + -14.751755714416504 + ], + [ + "AHL", + -14.751760482788086 + ], + [ + "▁benefactors", + -14.7517671585083 + ], + [ + "▁Olli", + -14.751770973205566 + ], + [ + "Vegas", + -14.751778602600098 + ], + [ + "▁thermometers", + -14.751779556274414 + ], + [ + "▁Copley", + -14.751781463623047 + ], + [ + "▁CDK", + -14.75179386138916 + ], + [ + "▁crisper", + -14.751815795898438 + ], + [ + "epic", + -14.751830101013184 + ], + [ + "▁Quirk", + -14.751832008361816 + ], + [ + "▁carbonation", + -14.751846313476562 + ], + [ + "▁instal", + -14.751851081848145 + ], + [ + "▁Govern", + -14.751866340637207 + ], + [ + "▁calving", + -14.751867294311523 + ], + [ + "SSR", + -14.751873016357422 + ], + [ + "▁McA", + -14.751876831054688 + ], + [ + "▁recuperation", + -14.751901626586914 + ], + [ + "ucca", + -14.751908302307129 + ], + [ + "ADC", + -14.751916885375977 + ], + [ + "consciously", + -14.751946449279785 + ], + [ + "▁Rodger", + -14.751953125 + ], + [ + "▁precariously", + -14.751958847045898 + ], + [ + "audible", + -14.75202751159668 + ], + [ + "▁Sergi", + -14.75207805633545 + ], + [ + "▁scolding", + -14.752087593078613 + ], + [ + "ål", + -14.75208854675293 + ], + [ + "▁Trieste", + -14.752096176147461 + ], + [ + "▁Morten", + -14.75213623046875 + ], + [ + "▁sifted", + -14.752161979675293 + ], + [ + "Neuro", + -14.752235412597656 + ], + [ + "koo", + -14.7522554397583 + ], + [ + "▁Quang", + -14.752285957336426 + ], + [ + "Morris", + -14.75234317779541 + ], + [ + "mentation", + -14.752355575561523 + ], + [ + "▁COLUMBUS", + -14.752401351928711 + ], + [ + "racy", + -14.752425193786621 + ], + [ + "▁Frosty", + -14.752427101135254 + ], + [ + "announced", + -14.752469062805176 + ], + [ + "▁floodgates", + -14.752477645874023 + ], + [ + "▁Madera", + -14.752558708190918 + ], + [ + "▁monotone", + -14.7525634765625 + ], + [ + "Role", + -14.752631187438965 + ], + [ + "▁horned", + -14.75267219543457 + ], + [ + "musician", + -14.752680778503418 + ], + [ + "▁Fryer", + -14.75269889831543 + ], + [ + "▁Galbraith", + -14.752713203430176 + ], + [ + "▁Attachments", + -14.752737998962402 + ], + [ + "WATER", + -14.752758979797363 + ], + [ + "❤", + -14.75278377532959 + ], + [ + "▁ciudad", + -14.752786636352539 + ], + [ + "▁rattles", + -14.752805709838867 + ], + [ + "Especially", + -14.752808570861816 + ], + [ + "▁Creamery", + -14.752849578857422 + ], + [ + "▁amphi", + -14.752850532531738 + ], + [ + "▁glyphs", + -14.752873420715332 + ], + [ + "quoi", + -14.75289249420166 + ], + [ + "▁Inhibition", + -14.752902030944824 + ], + [ + "▁Beltway", + -14.752909660339355 + ], + [ + "▁Rupee", + -14.752928733825684 + ], + [ + "Recent", + -14.752938270568848 + ], + [ + "▁outperforms", + -14.752947807312012 + ], + [ + "▁applauding", + -14.75301456451416 + ], + [ + "LATION", + -14.753021240234375 + ], + [ + "▁punishes", + -14.753023147583008 + ], + [ + "▁persevering", + -14.753057479858398 + ], + [ + "▁brandishing", + -14.753059387207031 + ], + [ + "▁Technic", + -14.753063201904297 + ], + [ + "▁balked", + -14.753069877624512 + ], + [ + "manga", + -14.753084182739258 + ], + [ + "▁crunched", + -14.75308609008789 + ], + [ + "▁mutiny", + -14.753087997436523 + ], + [ + "▁Ariane", + -14.753129005432129 + ], + [ + "vida", + -14.753131866455078 + ], + [ + "▁Musings", + -14.753164291381836 + ], + [ + "▁Launceston", + -14.753223419189453 + ], + [ + "▁Outlaws", + -14.753255844116211 + ], + [ + "▁Stry", + -14.753268241882324 + ], + [ + "▁varietals", + -14.753289222717285 + ], + [ + "▁floodlight", + -14.753300666809082 + ], + [ + "▁unabashed", + -14.753302574157715 + ], + [ + "STEIN", + -14.75335693359375 + ], + [ + "▁Gulfstream", + -14.75337028503418 + ], + [ + "▁OUTSIDE", + -14.75344181060791 + ], + [ + "▁Sula", + -14.753515243530273 + ], + [ + "▁Rutledge", + -14.753517150878906 + ], + [ + "▁kali", + -14.753520965576172 + ], + [ + "▁tolerating", + -14.753535270690918 + ], + [ + "▁Ballistic", + -14.753546714782715 + ], + [ + "▁ignites", + -14.753546714782715 + ], + [ + "▁banc", + -14.75355052947998 + ], + [ + "▁diatribe", + -14.753551483154297 + ], + [ + "▁grunted", + -14.753555297851562 + ], + [ + "▁Distinctive", + -14.753556251525879 + ], + [ + "▁Nib", + -14.753567695617676 + ], + [ + "▁Caregiver", + -14.753581047058105 + ], + [ + "▁Atticus", + -14.753597259521484 + ], + [ + "lami", + -14.753602027893066 + ], + [ + "Barb", + -14.753607749938965 + ], + [ + "▁glisten", + -14.753647804260254 + ], + [ + "▁Srila", + -14.753650665283203 + ], + [ + "▁Berea", + -14.753664016723633 + ], + [ + "wracking", + -14.753671646118164 + ], + [ + "▁combatant", + -14.753677368164062 + ], + [ + "trium", + -14.75368595123291 + ], + [ + "Corruption", + -14.75369644165039 + ], + [ + "Hebrews", + -14.753708839416504 + ], + [ + "▁wrangler", + -14.75376033782959 + ], + [ + "▁Differ", + -14.75377082824707 + ], + [ + "▁Giver", + -14.753796577453613 + ], + [ + "▁costlier", + -14.753806114196777 + ], + [ + "Strength", + -14.753870964050293 + ], + [ + "▁Unblock", + -14.753890991210938 + ], + [ + "▁Strad", + -14.753902435302734 + ], + [ + "▁Biff", + -14.753907203674316 + ], + [ + "▁JCC", + -14.753962516784668 + ], + [ + "joining", + -14.753969192504883 + ], + [ + "SUP", + -14.754011154174805 + ], + [ + "▁Revolver", + -14.754048347473145 + ], + [ + "▁LUN", + -14.754068374633789 + ], + [ + "▁formalism", + -14.75407600402832 + ], + [ + "▁sowie", + -14.754076957702637 + ], + [ + "Thai", + -14.754079818725586 + ], + [ + "▁Snapper", + -14.7540864944458 + ], + [ + "▁unquestionable", + -14.75408935546875 + ], + [ + "Mir", + -14.754090309143066 + ], + [ + "saint", + -14.75411605834961 + ], + [ + "▁molesting", + -14.754130363464355 + ], + [ + "Gaming", + -14.754137992858887 + ], + [ + "▁Ragnar", + -14.754145622253418 + ], + [ + "▁Repeal", + -14.754167556762695 + ], + [ + "CUM", + -14.75418472290039 + ], + [ + "▁peachy", + -14.754326820373535 + ], + [ + "▁SOLE", + -14.75435733795166 + ], + [ + "▁dripped", + -14.754368782043457 + ], + [ + "▁Cruze", + -14.754429817199707 + ], + [ + "▁SUMMARY", + -14.754444122314453 + ], + [ + "ococcus", + -14.754447937011719 + ], + [ + "▁vue", + -14.754451751708984 + ], + [ + "▁Osceola", + -14.754453659057617 + ], + [ + "▁midlife", + -14.754515647888184 + ], + [ + "▁eardrum", + -14.754546165466309 + ], + [ + "▁Keb", + -14.75455093383789 + ], + [ + "▁Eclectic", + -14.754570007324219 + ], + [ + "▁scape", + -14.754575729370117 + ], + [ + "▁Goh", + -14.754594802856445 + ], + [ + "▁henchmen", + -14.754611015319824 + ], + [ + "цион", + -14.754630088806152 + ], + [ + "nickel", + -14.75467586517334 + ], + [ + "▁WEAR", + -14.754676818847656 + ], + [ + "▁Kidz", + -14.754712104797363 + ], + [ + "▁kohler", + -14.75475025177002 + ], + [ + "▁sapphires", + -14.75477123260498 + ], + [ + "▁Adderall", + -14.754779815673828 + ], + [ + "▁warbler", + -14.754779815673828 + ], + [ + "▁annul", + -14.754796028137207 + ], + [ + "Plastic", + -14.754812240600586 + ], + [ + "weise", + -14.754864692687988 + ], + [ + "▁lunchbox", + -14.75487995147705 + ], + [ + "éré", + -14.754883766174316 + ], + [ + "▁Fling", + -14.754887580871582 + ], + [ + "Adams", + -14.754899024963379 + ], + [ + "▁Jester", + -14.754974365234375 + ], + [ + "▁Bevan", + -14.754992485046387 + ], + [ + "Scout", + -14.755012512207031 + ], + [ + "▁Realistically", + -14.755035400390625 + ], + [ + "dispens", + -14.755048751831055 + ], + [ + "▁faceoff", + -14.755048751831055 + ], + [ + "grossing", + -14.755085945129395 + ], + [ + "▁Cian", + -14.75508975982666 + ], + [ + "▁ascendancy", + -14.755112648010254 + ], + [ + "▁Neva", + -14.755120277404785 + ], + [ + "▁hither", + -14.755132675170898 + ], + [ + "▁Pacheco", + -14.755197525024414 + ], + [ + "▁ness", + -14.755200386047363 + ], + [ + "SPORT", + -14.755233764648438 + ], + [ + "▁Namibian", + -14.755328178405762 + ], + [ + "Organic", + -14.755334854125977 + ], + [ + "▁Bledsoe", + -14.755372047424316 + ], + [ + "▁Villarreal", + -14.755422592163086 + ], + [ + "▁Wraith", + -14.755425453186035 + ], + [ + "▁solu", + -14.755437850952148 + ], + [ + "Pete", + -14.755461692810059 + ], + [ + "▁Twig", + -14.755464553833008 + ], + [ + "▁grandest", + -14.755470275878906 + ], + [ + "▁Cozumel", + -14.755476951599121 + ], + [ + "ETE", + -14.755494117736816 + ], + [ + "▁overpopulation", + -14.75553035736084 + ], + [ + "▁NAF", + -14.755624771118164 + ], + [ + "▁superintendents", + -14.755633354187012 + ], + [ + "▁oxygenation", + -14.755637168884277 + ], + [ + "▁Cherish", + -14.755685806274414 + ], + [ + "▁integrin", + -14.755729675292969 + ], + [ + "▁unambiguously", + -14.755756378173828 + ], + [ + "asser", + -14.755772590637207 + ], + [ + "▁Meehan", + -14.75578498840332 + ], + [ + "▁nak", + -14.755788803100586 + ], + [ + "▁photosynthetic", + -14.755805969238281 + ], + [ + "▁Ontology", + -14.755837440490723 + ], + [ + "Prim", + -14.755839347839355 + ], + [ + "▁placard", + -14.755859375 + ], + [ + "▁JSP", + -14.755906105041504 + ], + [ + "▁Connery", + -14.755969047546387 + ], + [ + "▁Reblogged", + -14.755980491638184 + ], + [ + "▁EULA", + -14.755989074707031 + ], + [ + "Draft", + -14.756010055541992 + ], + [ + "Later", + -14.756065368652344 + ], + [ + "medication", + -14.756081581115723 + ], + [ + "▁FMLA", + -14.756089210510254 + ], + [ + "adel", + -14.756119728088379 + ], + [ + "▁Huns", + -14.756122589111328 + ], + [ + "▁extractive", + -14.756206512451172 + ], + [ + "ección", + -14.756277084350586 + ], + [ + "▁Trolls", + -14.756291389465332 + ], + [ + "▁1520", + -14.756294250488281 + ], + [ + "quine", + -14.756296157836914 + ], + [ + "▁Bushnell", + -14.756306648254395 + ], + [ + "▁IUD", + -14.756314277648926 + ], + [ + "▁Schuyler", + -14.756314277648926 + ], + [ + "▁CMR", + -14.756353378295898 + ], + [ + "dhe", + -14.75639533996582 + ], + [ + "straw", + -14.756404876708984 + ], + [ + "▁Wissenschaft", + -14.756417274475098 + ], + [ + "▁stewed", + -14.756463050842285 + ], + [ + "▁neutrophil", + -14.756489753723145 + ], + [ + "ист", + -14.756518363952637 + ], + [ + "▁Rhod", + -14.756559371948242 + ], + [ + "activating", + -14.756579399108887 + ], + [ + "glad", + -14.756583213806152 + ], + [ + "studios", + -14.756611824035645 + ], + [ + "ダ", + -14.756619453430176 + ], + [ + "▁Righteous", + -14.756681442260742 + ], + [ + "▁Jasmin", + -14.756705284118652 + ], + [ + "▁Mantel", + -14.75675106048584 + ], + [ + "▁engrave", + -14.75675106048584 + ], + [ + "▁Crested", + -14.75681209564209 + ], + [ + "▁Kain", + -14.756863594055176 + ], + [ + "▁Sharpie", + -14.756928443908691 + ], + [ + "▁Corso", + -14.756935119628906 + ], + [ + "limp", + -14.757041931152344 + ], + [ + "▁PRIZE", + -14.757068634033203 + ], + [ + "▁ordnance", + -14.757118225097656 + ], + [ + "▁rancid", + -14.757120132446289 + ], + [ + "▁tallies", + -14.757123947143555 + ], + [ + "▁livid", + -14.757140159606934 + ], + [ + "▁hairdressers", + -14.75717544555664 + ], + [ + "▁Cartesian", + -14.757185935974121 + ], + [ + "▁Mangalore", + -14.757196426391602 + ], + [ + "▁Kemper", + -14.757207870483398 + ], + [ + "▁Espa", + -14.757218360900879 + ], + [ + "lx", + -14.757225036621094 + ], + [ + "▁handicraft", + -14.757246971130371 + ], + [ + "▁reloaded", + -14.757246971130371 + ], + [ + "▁counterfeiting", + -14.757250785827637 + ], + [ + "▁Ogre", + -14.757264137268066 + ], + [ + "▁NTSC", + -14.757271766662598 + ], + [ + "▁Madhav", + -14.757311820983887 + ], + [ + "▁Fres", + -14.757359504699707 + ], + [ + "▁Buggy", + -14.757372856140137 + ], + [ + "manufacturer", + -14.757373809814453 + ], + [ + "▁dif", + -14.757434844970703 + ], + [ + "Serial", + -14.75748348236084 + ], + [ + "usb", + -14.757489204406738 + ], + [ + "▁Rasmus", + -14.757505416870117 + ], + [ + "▁mouthfeel", + -14.757529258728027 + ], + [ + "▁Bahadur", + -14.757585525512695 + ], + [ + "JL", + -14.757651329040527 + ], + [ + "▁tanking", + -14.757681846618652 + ], + [ + "PAP", + -14.757695198059082 + ], + [ + "▁Renewed", + -14.757701873779297 + ], + [ + "NTA", + -14.757728576660156 + ], + [ + "▁Blowing", + -14.757872581481934 + ], + [ + "▁Jordyn", + -14.757877349853516 + ], + [ + "▁futurist", + -14.757922172546387 + ], + [ + "▁648", + -14.757946968078613 + ], + [ + "▁Masai", + -14.75794792175293 + ], + [ + "▁conversant", + -14.757959365844727 + ], + [ + "▁Darts", + -14.757980346679688 + ], + [ + "▁Constructing", + -14.758003234863281 + ], + [ + "▁Kyra", + -14.758040428161621 + ], + [ + "zian", + -14.758045196533203 + ], + [ + "1088", + -14.758064270019531 + ], + [ + "▁arbitrators", + -14.758066177368164 + ], + [ + "▁npm", + -14.75816822052002 + ], + [ + "velocity", + -14.758183479309082 + ], + [ + "▁Verlander", + -14.758201599121094 + ], + [ + "jira", + -14.758203506469727 + ], + [ + "▁Hassle", + -14.758227348327637 + ], + [ + "Insight", + -14.758249282836914 + ], + [ + "lado", + -14.758259773254395 + ], + [ + "▁suspecting", + -14.75826358795166 + ], + [ + "▁Moreau", + -14.758277893066406 + ], + [ + "▁Sabin", + -14.758286476135254 + ], + [ + "▁Shingles", + -14.75828742980957 + ], + [ + "▁BGP", + -14.758295059204102 + ], + [ + "ρι", + -14.758318901062012 + ], + [ + "▁Stamping", + -14.758340835571289 + ], + [ + "▁Moderne", + -14.758356094360352 + ], + [ + "▁CALIFORNIA", + -14.758373260498047 + ], + [ + "▁Lopes", + -14.758423805236816 + ], + [ + "▁Daf", + -14.758434295654297 + ], + [ + "▁pai", + -14.758440017700195 + ], + [ + "▁reflectance", + -14.758448600769043 + ], + [ + "▁Hina", + -14.758487701416016 + ], + [ + "▁YWCA", + -14.758488655090332 + ], + [ + "haru", + -14.758543014526367 + ], + [ + "▁Appraiser", + -14.758562088012695 + ], + [ + "ත", + -14.758578300476074 + ], + [ + "▁tex", + -14.758607864379883 + ], + [ + "▁Stagecoach", + -14.758617401123047 + ], + [ + "́", + -14.758631706237793 + ], + [ + "▁Occupied", + -14.758708953857422 + ], + [ + "像", + -14.758715629577637 + ], + [ + "▁symbiosis", + -14.758719444274902 + ], + [ + "▁humongous", + -14.758750915527344 + ], + [ + "▁Fetal", + -14.75875186920166 + ], + [ + "▁mimicked", + -14.758777618408203 + ], + [ + "pptx", + -14.758779525756836 + ], + [ + "▁Schon", + -14.758780479431152 + ], + [ + "lotte", + -14.758831024169922 + ], + [ + "▁Ukulele", + -14.758833885192871 + ], + [ + "otin", + -14.758842468261719 + ], + [ + "▁ATVs", + -14.758929252624512 + ], + [ + "acetate", + -14.759034156799316 + ], + [ + "▁drudgery", + -14.759034156799316 + ], + [ + "▁misbehave", + -14.75906753540039 + ], + [ + "spike", + -14.759106636047363 + ], + [ + "PEN", + -14.75912857055664 + ], + [ + "INF", + -14.75914478302002 + ], + [ + "cque", + -14.7591552734375 + ], + [ + "▁crevice", + -14.759163856506348 + ], + [ + "Baltimore", + -14.759173393249512 + ], + [ + "▁prev", + -14.759187698364258 + ], + [ + "▁Docks", + -14.759188652038574 + ], + [ + "▁Daze", + -14.759227752685547 + ], + [ + "▁Cae", + -14.759259223937988 + ], + [ + "▁ODD", + -14.75928020477295 + ], + [ + "▁TPA", + -14.75928020477295 + ], + [ + "▁Neri", + -14.759329795837402 + ], + [ + "▁Heroin", + -14.7593355178833 + ], + [ + "▁warplanes", + -14.759344100952148 + ], + [ + "▁Lewisham", + -14.759361267089844 + ], + [ + "Fiction", + -14.759383201599121 + ], + [ + "▁goalscorer", + -14.759387969970703 + ], + [ + "▁Prana", + -14.75942611694336 + ], + [ + "utty", + -14.759438514709473 + ], + [ + "▁parapet", + -14.75944709777832 + ], + [ + "▁stockpiling", + -14.75947380065918 + ], + [ + "msn", + -14.759485244750977 + ], + [ + "▁respawn", + -14.75948715209961 + ], + [ + "▁mindlessly", + -14.759503364562988 + ], + [ + "▁anthropomorphic", + -14.759517669677734 + ], + [ + "▁barons", + -14.759532928466797 + ], + [ + "zac", + -14.759571075439453 + ], + [ + "▁Talib", + -14.759574890136719 + ], + [ + "▁Sightseeing", + -14.759605407714844 + ], + [ + "▁Symptom", + -14.759648323059082 + ], + [ + "▁blogspot", + -14.759653091430664 + ], + [ + "Meeting", + -14.759698867797852 + ], + [ + "promising", + -14.759705543518066 + ], + [ + "▁boarder", + -14.759716987609863 + ], + [ + "TRAC", + -14.759722709655762 + ], + [ + "▁Havre", + -14.75976276397705 + ], + [ + "Epi", + -14.759767532348633 + ], + [ + "▁Solano", + -14.759808540344238 + ], + [ + "LCS", + -14.759825706481934 + ], + [ + "▁Grassroots", + -14.759895324707031 + ], + [ + "fman", + -14.759929656982422 + ], + [ + "▁Shoal", + -14.759950637817383 + ], + [ + "▁Huntley", + -14.75996208190918 + ], + [ + "▁hawthorn", + -14.75998592376709 + ], + [ + "▁pronouncing", + -14.760010719299316 + ], + [ + "▁Garri", + -14.760013580322266 + ], + [ + "luna", + -14.760029792785645 + ], + [ + "▁Appear", + -14.760039329528809 + ], + [ + "▁Fluke", + -14.760039329528809 + ], + [ + "代", + -14.760075569152832 + ], + [ + "Blast", + -14.76010799407959 + ], + [ + "hagen", + -14.760125160217285 + ], + [ + "▁DTM", + -14.760130882263184 + ], + [ + "ENDING", + -14.760137557983398 + ], + [ + "▁bobble", + -14.760150909423828 + ], + [ + "▁flavourful", + -14.760154724121094 + ], + [ + "delle", + -14.760160446166992 + ], + [ + "▁Corpse", + -14.760162353515625 + ], + [ + "portfolio", + -14.760163307189941 + ], + [ + "cutaneous", + -14.760171890258789 + ], + [ + "▁Classifier", + -14.760196685791016 + ], + [ + "▁Deliveries", + -14.760202407836914 + ], + [ + "▁Río", + -14.760248184204102 + ], + [ + "▁mV", + -14.760326385498047 + ], + [ + "controlling", + -14.760330200195312 + ], + [ + "▁Caliber", + -14.760357856750488 + ], + [ + "NCR", + -14.760358810424805 + ], + [ + "▁Albertson", + -14.760420799255371 + ], + [ + "Carter", + -14.760430335998535 + ], + [ + "▁ESV", + -14.760451316833496 + ], + [ + "wx", + -14.760452270507812 + ], + [ + "▁braiding", + -14.760464668273926 + ], + [ + "▁nudes", + -14.760464668273926 + ], + [ + "Indonesia", + -14.760489463806152 + ], + [ + "▁changers", + -14.76050090789795 + ], + [ + "TSE", + -14.760523796081543 + ], + [ + "▁Catalunya", + -14.760523796081543 + ], + [ + "monstr", + -14.760565757751465 + ], + [ + "Female", + -14.760634422302246 + ], + [ + "▁mauve", + -14.760693550109863 + ], + [ + "▁Lathe", + -14.760734558105469 + ], + [ + "SCRIPT", + -14.760751724243164 + ], + [ + "▁Graphical", + -14.760773658752441 + ], + [ + "▁eyelets", + -14.760794639587402 + ], + [ + "collective", + -14.760796546936035 + ], + [ + "▁panties", + -14.760796546936035 + ], + [ + "Minister", + -14.760807991027832 + ], + [ + "▁RNAi", + -14.76082992553711 + ], + [ + "▁surrealist", + -14.760845184326172 + ], + [ + "▁Calabria", + -14.760858535766602 + ], + [ + "▁pipette", + -14.760863304138184 + ], + [ + "▁Neteller", + -14.760881423950195 + ], + [ + "glide", + -14.760889053344727 + ], + [ + "▁Millwall", + -14.76089859008789 + ], + [ + "ohet", + -14.760904312133789 + ], + [ + "▁reductase", + -14.760915756225586 + ], + [ + "▁SRA", + -14.760958671569824 + ], + [ + "▁Salo", + -14.760965347290039 + ], + [ + "▁pam", + -14.760985374450684 + ], + [ + "heir", + -14.76104736328125 + ], + [ + "▁Chantal", + -14.761048316955566 + ], + [ + "▁holiest", + -14.761073112487793 + ], + [ + "▁Ginseng", + -14.761079788208008 + ], + [ + "▁Preet", + -14.761079788208008 + ], + [ + "Brit", + -14.761088371276855 + ], + [ + "▁McAl", + -14.761157989501953 + ], + [ + "▁assemblages", + -14.761157989501953 + ], + [ + "▁Naya", + -14.761183738708496 + ], + [ + "▁BEGIN", + -14.761201858520508 + ], + [ + "▁Rennes", + -14.761231422424316 + ], + [ + "oltz", + -14.761250495910645 + ], + [ + "▁minty", + -14.761255264282227 + ], + [ + "Scene", + -14.7612943649292 + ], + [ + "Tokyo", + -14.761300086975098 + ], + [ + "▁Cognac", + -14.761338233947754 + ], + [ + "▁Margate", + -14.761348724365234 + ], + [ + "prog", + -14.761372566223145 + ], + [ + "▁Thala", + -14.761384963989258 + ], + [ + "Twenty", + -14.761442184448242 + ], + [ + "▁Overture", + -14.761475563049316 + ], + [ + "▁Colli", + -14.761486053466797 + ], + [ + "LCD", + -14.761490821838379 + ], + [ + "被", + -14.761528968811035 + ], + [ + "▁Piping", + -14.761544227600098 + ], + [ + "▁Interpreting", + -14.761570930480957 + ], + [ + "▁Gj", + -14.761590003967285 + ], + [ + "therapie", + -14.761598587036133 + ], + [ + "▁Landfill", + -14.761737823486328 + ], + [ + "▁astrologers", + -14.76175594329834 + ], + [ + "BES", + -14.761802673339844 + ], + [ + "subtle", + -14.761828422546387 + ], + [ + "▁silage", + -14.761835098266602 + ], + [ + "▁Grisham", + -14.761850357055664 + ], + [ + "▁emphysema", + -14.76186752319336 + ], + [ + "▁Wyman", + -14.761884689331055 + ], + [ + "tzler", + -14.761887550354004 + ], + [ + "SCR", + -14.761917114257812 + ], + [ + "▁Halton", + -14.761962890625 + ], + [ + "▁Flask", + -14.761967658996582 + ], + [ + "▁Nh", + -14.761977195739746 + ], + [ + "▁GOLF", + -14.761988639831543 + ], + [ + "▁Throttle", + -14.761994361877441 + ], + [ + "stocking", + -14.762003898620605 + ], + [ + "▁Longview", + -14.762035369873047 + ], + [ + "▁Lucca", + -14.762075424194336 + ], + [ + "▁Kenner", + -14.76211166381836 + ], + [ + "▁selflessness", + -14.762114524841309 + ], + [ + "▁creeper", + -14.762116432189941 + ], + [ + "▁Reinhardt", + -14.76213550567627 + ], + [ + "Pl", + -14.762179374694824 + ], + [ + "▁NOK", + -14.762240409851074 + ], + [ + "▁cyberbullying", + -14.762252807617188 + ], + [ + "▁backstroke", + -14.762256622314453 + ], + [ + "statin", + -14.7622709274292 + ], + [ + "rón", + -14.762284278869629 + ], + [ + "ivas", + -14.762310981750488 + ], + [ + "ELO", + -14.762332916259766 + ], + [ + "▁oppressors", + -14.762392044067383 + ], + [ + "▁NAA", + -14.76240062713623 + ], + [ + "▁Takeover", + -14.762406349182129 + ], + [ + "▁Sulfur", + -14.762471199035645 + ], + [ + "▁uncompressed", + -14.76251220703125 + ], + [ + "▁Kamb", + -14.762521743774414 + ], + [ + "▁Catharines", + -14.762529373168945 + ], + [ + "Fisher", + -14.762530326843262 + ], + [ + "▁caulking", + -14.76254653930664 + ], + [ + "▁Landes", + -14.762577056884766 + ], + [ + "ophil", + -14.762578010559082 + ], + [ + "▁Shabby", + -14.762579917907715 + ], + [ + "bres", + -14.762588500976562 + ], + [ + "▁EDA", + -14.76260757446289 + ], + [ + "▁deterring", + -14.76260757446289 + ], + [ + "▁HOUR", + -14.76264476776123 + ], + [ + "Past", + -14.762666702270508 + ], + [ + "liana", + -14.762754440307617 + ], + [ + "PPI", + -14.762755393981934 + ], + [ + "▁Nadi", + -14.7627592086792 + ], + [ + "▁Ranbir", + -14.762776374816895 + ], + [ + "▁warren", + -14.762791633605957 + ], + [ + "GAS", + -14.762807846069336 + ], + [ + "▁SLEEP", + -14.76282787322998 + ], + [ + "▁mumps", + -14.76284408569336 + ], + [ + "▁CERTAIN", + -14.76286792755127 + ], + [ + "▁cymbalta", + -14.762938499450684 + ], + [ + "▁Ryde", + -14.763028144836426 + ], + [ + "culate", + -14.763051986694336 + ], + [ + "ры", + -14.763067245483398 + ], + [ + "▁PARTIES", + -14.76310920715332 + ], + [ + "▁Eriksen", + -14.763145446777344 + ], + [ + "▁GLP", + -14.763177871704102 + ], + [ + "▁homozygous", + -14.763202667236328 + ], + [ + "▁gsm", + -14.763254165649414 + ], + [ + "▁energ", + -14.763324737548828 + ], + [ + "▁Scorch", + -14.7633638381958 + ], + [ + "▁Martel", + -14.763388633728027 + ], + [ + "▁puffer", + -14.763415336608887 + ], + [ + "▁Ranchi", + -14.763456344604492 + ], + [ + "▁Thorough", + -14.76346492767334 + ], + [ + "▁prodded", + -14.763495445251465 + ], + [ + "▁winced", + -14.763508796691895 + ], + [ + "▁squawk", + -14.763519287109375 + ], + [ + "▁adamantly", + -14.76353931427002 + ], + [ + "▁Prak", + -14.763547897338867 + ], + [ + "▁fasted", + -14.763554573059082 + ], + [ + "▁ribbing", + -14.763567924499512 + ], + [ + "chicago", + -14.763568878173828 + ], + [ + "▁BDC", + -14.76357650756836 + ], + [ + "PLC", + -14.763580322265625 + ], + [ + "▁Carina", + -14.763592720031738 + ], + [ + "▁latching", + -14.763599395751953 + ], + [ + "▁promiscuous", + -14.7636137008667 + ], + [ + "▁lunged", + -14.763628959655762 + ], + [ + "ம்", + -14.763629913330078 + ], + [ + "▁Forklift", + -14.763664245605469 + ], + [ + "oš", + -14.763691902160645 + ], + [ + "▁Gesch", + -14.763694763183594 + ], + [ + "▁boatload", + -14.763715744018555 + ], + [ + "▁litigated", + -14.7637357711792 + ], + [ + "▁Guaido", + -14.763777732849121 + ], + [ + "▁Pasture", + -14.763785362243652 + ], + [ + "▁Lipton", + -14.763788223266602 + ], + [ + "Excuse", + -14.763824462890625 + ], + [ + "xxxx", + -14.763833045959473 + ], + [ + "▁kangaroos", + -14.763833045959473 + ], + [ + "▁urinating", + -14.763873100280762 + ], + [ + "Halloween", + -14.76396656036377 + ], + [ + "▁unmodified", + -14.763967514038086 + ], + [ + "空", + -14.76399040222168 + ], + [ + "▁Faridabad", + -14.763994216918945 + ], + [ + "functions", + -14.763999938964844 + ], + [ + "▁Marais", + -14.764036178588867 + ], + [ + "▁Farooq", + -14.764062881469727 + ], + [ + "▁gyroscope", + -14.764081954956055 + ], + [ + "미", + -14.764092445373535 + ], + [ + "vium", + -14.764105796813965 + ], + [ + "▁Guesthouse", + -14.764106750488281 + ], + [ + "▁equalization", + -14.764106750488281 + ], + [ + "imbu", + -14.764111518859863 + ], + [ + "▁Flee", + -14.764116287231445 + ], + [ + "JH", + -14.764121055603027 + ], + [ + "▁SOF", + -14.764122009277344 + ], + [ + "▁glazes", + -14.764140129089355 + ], + [ + "▁pinstripe", + -14.764144897460938 + ], + [ + "▁REO", + -14.764147758483887 + ], + [ + "▁DALLAS", + -14.764152526855469 + ], + [ + "Ellen", + -14.764163970947266 + ], + [ + "▁Rockhampton", + -14.764190673828125 + ], + [ + "▁vag", + -14.764202117919922 + ], + [ + "lán", + -14.764254570007324 + ], + [ + "▁scarecrow", + -14.764262199401855 + ], + [ + "narrow", + -14.76426887512207 + ], + [ + "certificate", + -14.764291763305664 + ], + [ + "▁activ", + -14.764307022094727 + ], + [ + "dumping", + -14.764322280883789 + ], + [ + "▁Arran", + -14.764324188232422 + ], + [ + "york", + -14.764328002929688 + ], + [ + "▁levee", + -14.764396667480469 + ], + [ + "BRI", + -14.764409065246582 + ], + [ + "▁flirtation", + -14.764412879943848 + ], + [ + "▁Keg", + -14.76443099975586 + ], + [ + "▁scurrying", + -14.764431953430176 + ], + [ + "coaching", + -14.764507293701172 + ], + [ + "▁faulted", + -14.76452922821045 + ], + [ + "▁limos", + -14.764565467834473 + ], + [ + "liability", + -14.764638900756836 + ], + [ + "▁harmonized", + -14.76465129852295 + ], + [ + "architect", + -14.764683723449707 + ], + [ + "▁haemato", + -14.764732360839844 + ], + [ + "▁Nz", + -14.76475715637207 + ], + [ + "▁novelties", + -14.764790534973145 + ], + [ + "ventricular", + -14.764796257019043 + ], + [ + "UAE", + -14.76480484008789 + ], + [ + "▁AID", + -14.764817237854004 + ], + [ + "▁IIM", + -14.764862060546875 + ], + [ + "vince", + -14.76488208770752 + ], + [ + "▁Escal", + -14.764886856079102 + ], + [ + "▁apostate", + -14.764892578125 + ], + [ + "▁effervescent", + -14.764908790588379 + ], + [ + "▁blinks", + -14.764910697937012 + ], + [ + "▁entrapment", + -14.76496696472168 + ], + [ + "conazole", + -14.765008926391602 + ], + [ + "cay", + -14.765026092529297 + ], + [ + "▁Poop", + -14.765026092529297 + ], + [ + "Claire", + -14.765071868896484 + ], + [ + "▁delegating", + -14.765141487121582 + ], + [ + "▁polyunsaturated", + -14.765144348144531 + ], + [ + "schw", + -14.765174865722656 + ], + [ + "Honestly", + -14.765192031860352 + ], + [ + "▁fantasize", + -14.76519775390625 + ], + [ + "▁addressable", + -14.765198707580566 + ], + [ + "▁contractually", + -14.765241622924805 + ], + [ + "▁unwashed", + -14.765250205993652 + ], + [ + "marc", + -14.765279769897461 + ], + [ + "▁zeitgeist", + -14.765298843383789 + ], + [ + "▁Guts", + -14.765332221984863 + ], + [ + "kaa", + -14.76537036895752 + ], + [ + "MSP", + -14.76537799835205 + ], + [ + "▁BIRD", + -14.76538372039795 + ], + [ + "▁answerable", + -14.76539421081543 + ], + [ + "▁solidity", + -14.765409469604492 + ], + [ + "▁Taq", + -14.765420913696289 + ], + [ + "▁clamour", + -14.765429496765137 + ], + [ + "▁musing", + -14.765447616577148 + ], + [ + "Alien", + -14.765450477600098 + ], + [ + "Upper", + -14.765485763549805 + ], + [ + "▁Desiree", + -14.76552677154541 + ], + [ + "▁stepson", + -14.765544891357422 + ], + [ + "▁Allende", + -14.765565872192383 + ], + [ + "▁Roadshow", + -14.765589714050293 + ], + [ + "▁GPIO", + -14.765628814697266 + ], + [ + "uler", + -14.765644073486328 + ], + [ + "▁Bmw", + -14.765686988830566 + ], + [ + "ageing", + -14.765698432922363 + ], + [ + "▁recu", + -14.765703201293945 + ], + [ + "▁swa", + -14.765731811523438 + ], + [ + "▁Manassas", + -14.765787124633789 + ], + [ + "▁forgetful", + -14.765806198120117 + ], + [ + "raff", + -14.765837669372559 + ], + [ + "▁Ballina", + -14.765861511230469 + ], + [ + "IVO", + -14.765894889831543 + ], + [ + "▁Puente", + -14.765929222106934 + ], + [ + "temper", + -14.765933990478516 + ], + [ + "▁colourway", + -14.765934944152832 + ], + [ + "▁Durr", + -14.765953063964844 + ], + [ + "framework", + -14.765958786010742 + ], + [ + "▁SCOTUS", + -14.765974044799805 + ], + [ + "fah", + -14.766002655029297 + ], + [ + "catenin", + -14.766010284423828 + ], + [ + "▁cognate", + -14.766022682189941 + ], + [ + "▁cots", + -14.766024589538574 + ], + [ + "AZE", + -14.766033172607422 + ], + [ + "▁straddling", + -14.766037940979004 + ], + [ + "▁ballgame", + -14.766039848327637 + ], + [ + "▁PERMITTED", + -14.766080856323242 + ], + [ + "▁Storyteller", + -14.766080856323242 + ], + [ + "HOW", + -14.766118049621582 + ], + [ + "INCLUDING", + -14.766128540039062 + ], + [ + "▁Locomotive", + -14.766133308410645 + ], + [ + "▁underscoring", + -14.766182899475098 + ], + [ + "▁Bexley", + -14.766186714172363 + ], + [ + "▁prozac", + -14.766219139099121 + ], + [ + "▁intraocular", + -14.766244888305664 + ], + [ + "▁endow", + -14.766281127929688 + ], + [ + "指", + -14.766291618347168 + ], + [ + "▁Chua", + -14.766308784484863 + ], + [ + "▁Snohomish", + -14.766311645507812 + ], + [ + "▁Debug", + -14.766326904296875 + ], + [ + "意", + -14.766363143920898 + ], + [ + "▁Docket", + -14.766386985778809 + ], + [ + "▁WVU", + -14.766398429870605 + ], + [ + "▁lv", + -14.766411781311035 + ], + [ + "Mental", + -14.766427993774414 + ], + [ + "▁leniency", + -14.766481399536133 + ], + [ + "▁Harrier", + -14.766535758972168 + ], + [ + "atro", + -14.766575813293457 + ], + [ + "▁Whitworth", + -14.766593933105469 + ], + [ + "▁Newcomer", + -14.76661491394043 + ], + [ + "▁Haag", + -14.766651153564453 + ], + [ + "▁Bodega", + -14.766676902770996 + ], + [ + "▁politik", + -14.76668930053711 + ], + [ + "▁exorcism", + -14.76673412322998 + ], + [ + "▁panoramas", + -14.76675033569336 + ], + [ + "▁Timberland", + -14.766779899597168 + ], + [ + "▁breakneck", + -14.766790390014648 + ], + [ + "▁capo", + -14.766794204711914 + ], + [ + "inking", + -14.766836166381836 + ], + [ + "▁Komodo", + -14.76684284210205 + ], + [ + "fauna", + -14.76685619354248 + ], + [ + "▁TAT", + -14.766863822937012 + ], + [ + "▁WebSphere", + -14.766867637634277 + ], + [ + "▁Iliad", + -14.766870498657227 + ], + [ + "▁Helga", + -14.766874313354492 + ], + [ + "▁engendered", + -14.766890525817871 + ], + [ + "▁troy", + -14.766897201538086 + ], + [ + "▁YM", + -14.766935348510742 + ], + [ + "▁subsea", + -14.766976356506348 + ], + [ + "▁overruns", + -14.767008781433105 + ], + [ + "bati", + -14.767017364501953 + ], + [ + "harmon", + -14.767061233520508 + ], + [ + "▁BCI", + -14.767061233520508 + ], + [ + "▁Nymph", + -14.767112731933594 + ], + [ + "SPS", + -14.767128944396973 + ], + [ + "▁paraphrasing", + -14.767135620117188 + ], + [ + "▁Jezebel", + -14.767136573791504 + ], + [ + "▁styrene", + -14.767147064208984 + ], + [ + "mood", + -14.767155647277832 + ], + [ + "▁Féin", + -14.767168998718262 + ], + [ + "▁Critically", + -14.767172813415527 + ], + [ + "▁smashes", + -14.767189025878906 + ], + [ + "▁Racist", + -14.767294883728027 + ], + [ + "▁MZ", + -14.767308235168457 + ], + [ + "▁tactically", + -14.767317771911621 + ], + [ + "egner", + -14.767353057861328 + ], + [ + "▁Bair", + -14.767353057861328 + ], + [ + "gew", + -14.767387390136719 + ], + [ + "▁Girona", + -14.767420768737793 + ], + [ + "▁FRED", + -14.767425537109375 + ], + [ + "▁Clarissa", + -14.767464637756348 + ], + [ + "▁ELE", + -14.76754093170166 + ], + [ + "▁‹", + -14.767557144165039 + ], + [ + "▁Rodin", + -14.767605781555176 + ], + [ + "▁steepest", + -14.767611503601074 + ], + [ + "▁Thicke", + -14.767614364624023 + ], + [ + "amble", + -14.767620086669922 + ], + [ + "cannon", + -14.767637252807617 + ], + [ + "lande", + -14.76763916015625 + ], + [ + "▁vindication", + -14.767698287963867 + ], + [ + "▁duster", + -14.76771354675293 + ], + [ + "▁Richey", + -14.767731666564941 + ], + [ + "▁1740", + -14.7677583694458 + ], + [ + "▁Taggart", + -14.7677583694458 + ], + [ + "▁Taoist", + -14.767769813537598 + ], + [ + "▁symp", + -14.767797470092773 + ], + [ + "▁Murkowski", + -14.76781177520752 + ], + [ + "▁inexcusable", + -14.767844200134277 + ], + [ + "▁beheld", + -14.76785659790039 + ], + [ + "▁ganglion", + -14.767889022827148 + ], + [ + "▁Fuzz", + -14.76789379119873 + ], + [ + "стро", + -14.767895698547363 + ], + [ + "LMS", + -14.767910957336426 + ], + [ + "▁Melk", + -14.767936706542969 + ], + [ + "inaudible", + -14.767990112304688 + ], + [ + "contemporary", + -14.768030166625977 + ], + [ + "ARCH", + -14.76807689666748 + ], + [ + "gation", + -14.768082618713379 + ], + [ + "dix", + -14.76809024810791 + ], + [ + "▁Ketone", + -14.768153190612793 + ], + [ + "AFA", + -14.768155097961426 + ], + [ + "▁abscond", + -14.768258094787598 + ], + [ + "▁Blot", + -14.768261909484863 + ], + [ + "▁gunk", + -14.768317222595215 + ], + [ + "▁prescriber", + -14.768402099609375 + ], + [ + "▁McCaskill", + -14.768417358398438 + ], + [ + "▁ribosome", + -14.768421173095703 + ], + [ + "▁GPRS", + -14.768482208251953 + ], + [ + "▁reoccurring", + -14.768485069274902 + ], + [ + "▁toyed", + -14.768502235412598 + ], + [ + "pizza", + -14.768507957458496 + ], + [ + "▁hydrotherapy", + -14.768521308898926 + ], + [ + "gow", + -14.76854419708252 + ], + [ + "HSAA", + -14.768555641174316 + ], + [ + "▁Berklee", + -14.768630027770996 + ], + [ + "▁amok", + -14.768643379211426 + ], + [ + "уд", + -14.76866626739502 + ], + [ + "glucose", + -14.768704414367676 + ], + [ + "▁Laurier", + -14.768704414367676 + ], + [ + "▁Anja", + -14.768732070922852 + ], + [ + "▁Xamarin", + -14.768733024597168 + ], + [ + "▁smearing", + -14.768735885620117 + ], + [ + "ëve", + -14.768744468688965 + ], + [ + "Adobe", + -14.768756866455078 + ], + [ + "▁Mudd", + -14.76878833770752 + ], + [ + "▁Ainsworth", + -14.768817901611328 + ], + [ + "▁Lviv", + -14.768868446350098 + ], + [ + "▁snags", + -14.76887035369873 + ], + [ + "▁Nitin", + -14.768880844116211 + ], + [ + "texas", + -14.768890380859375 + ], + [ + "1860", + -14.768906593322754 + ], + [ + "bagh", + -14.768912315368652 + ], + [ + "▁CUTE", + -14.768994331359863 + ], + [ + "tony", + -14.769006729125977 + ], + [ + "▁Dumont", + -14.769026756286621 + ], + [ + "▁actuated", + -14.769028663635254 + ], + [ + "Behind", + -14.76903247833252 + ], + [ + "▁GTR", + -14.769061088562012 + ], + [ + "▁acoustical", + -14.76906681060791 + ], + [ + "▁Dolph", + -14.769094467163086 + ], + [ + "▁oncologists", + -14.769124031066895 + ], + [ + "Trace", + -14.76916217803955 + ], + [ + "▁1620", + -14.769248008728027 + ], + [ + "▁ochre", + -14.769262313842773 + ], + [ + "▁leery", + -14.769289016723633 + ], + [ + "▁Moisturizer", + -14.769293785095215 + ], + [ + "▁Fio", + -14.769309043884277 + ], + [ + "▁Magnets", + -14.769311904907227 + ], + [ + "▁Derm", + -14.769363403320312 + ], + [ + "▁divisible", + -14.769376754760742 + ], + [ + "▁Grains", + -14.769408226013184 + ], + [ + "▁sara", + -14.76944637298584 + ], + [ + "▁bë", + -14.769458770751953 + ], + [ + "▁slideshows", + -14.769481658935547 + ], + [ + "▁Irregular", + -14.769506454467773 + ], + [ + "▁Rape", + -14.769518852233887 + ], + [ + "▁escalators", + -14.769529342651367 + ], + [ + "ے", + -14.769536972045898 + ], + [ + "mancy", + -14.76954460144043 + ], + [ + "classification", + -14.769545555114746 + ], + [ + "▁worktop", + -14.769550323486328 + ], + [ + "▁stork", + -14.769551277160645 + ], + [ + "▁Appleby", + -14.769575119018555 + ], + [ + "▁purebred", + -14.769636154174805 + ], + [ + "▁injunctions", + -14.769643783569336 + ], + [ + "▁randomization", + -14.769648551940918 + ], + [ + "▁Varieties", + -14.7696533203125 + ], + [ + "▁Garber", + -14.769658088684082 + ], + [ + "grapher", + -14.769718170166016 + ], + [ + "primer", + -14.769719123840332 + ], + [ + "▁Bede", + -14.769726753234863 + ], + [ + "▁Sidi", + -14.76972770690918 + ], + [ + "▁yada", + -14.769775390625 + ], + [ + "▁Redirect", + -14.769804954528809 + ], + [ + "▁mistook", + -14.769806861877441 + ], + [ + "▁Gurney", + -14.769822120666504 + ], + [ + "tort", + -14.769831657409668 + ], + [ + "том", + -14.769845962524414 + ], + [ + "Ep", + -14.769887924194336 + ], + [ + "▁disturbs", + -14.769893646240234 + ], + [ + "imet", + -14.76990032196045 + ], + [ + "oten", + -14.769901275634766 + ], + [ + "▁Interviewer", + -14.769989967346191 + ], + [ + "uzzo", + -14.769990921020508 + ], + [ + "▁hc", + -14.770003318786621 + ], + [ + "▁Brownies", + -14.77000617980957 + ], + [ + "Upload", + -14.770018577575684 + ], + [ + "▁morsel", + -14.770030975341797 + ], + [ + "▁Authorised", + -14.77004337310791 + ], + [ + "ilus", + -14.770050048828125 + ], + [ + "▁Allergies", + -14.770100593566895 + ], + [ + "Rules", + -14.770121574401855 + ], + [ + "kindness", + -14.770142555236816 + ], + [ + "takers", + -14.770146369934082 + ], + [ + "▁UPI", + -14.770169258117676 + ], + [ + "▁721", + -14.770198822021484 + ], + [ + "▁welders", + -14.770211219787598 + ], + [ + "▁reinvested", + -14.770212173461914 + ], + [ + "ophan", + -14.770237922668457 + ], + [ + "▁Tragically", + -14.770264625549316 + ], + [ + "▁Legislators", + -14.770289421081543 + ], + [ + "ISTIC", + -14.770291328430176 + ], + [ + "▁McCollum", + -14.770294189453125 + ], + [ + "athletic", + -14.770295143127441 + ], + [ + "brev", + -14.770305633544922 + ], + [ + "▁normalizing", + -14.770353317260742 + ], + [ + "▁casi", + -14.770356178283691 + ], + [ + "cooler", + -14.770374298095703 + ], + [ + "▁MMM", + -14.770384788513184 + ], + [ + "▁fluted", + -14.770401954650879 + ], + [ + "▁PRESENTATION", + -14.77042007446289 + ], + [ + "▁vellum", + -14.770421981811523 + ], + [ + "passive", + -14.770472526550293 + ], + [ + "IBS", + -14.770482063293457 + ], + [ + "▁Chariot", + -14.770522117614746 + ], + [ + "▁Amina", + -14.770527839660645 + ], + [ + "Notice", + -14.770530700683594 + ], + [ + "▁grimace", + -14.770552635192871 + ], + [ + "▁FSX", + -14.770561218261719 + ], + [ + "▁Constand", + -14.770563125610352 + ], + [ + "analyses", + -14.770614624023438 + ], + [ + "▁Measured", + -14.770626068115234 + ], + [ + "▁Calli", + -14.770633697509766 + ], + [ + "▁Transient", + -14.77065372467041 + ], + [ + "▁oligarch", + -14.77065658569336 + ], + [ + "▁Lewin", + -14.770674705505371 + ], + [ + "▁Propeller", + -14.77069091796875 + ], + [ + "▁Caltech", + -14.770695686340332 + ], + [ + "▁imperceptible", + -14.770712852478027 + ], + [ + "nale", + -14.770719528198242 + ], + [ + "▁ridding", + -14.770722389221191 + ], + [ + "▁Kreme", + -14.770724296569824 + ], + [ + "▁TAL", + -14.770760536193848 + ], + [ + "AAAA", + -14.770763397216797 + ], + [ + "▁crosshairs", + -14.770764350891113 + ], + [ + "▁microglia", + -14.770767211914062 + ], + [ + "▁mTOR", + -14.770770072937012 + ], + [ + "▁Maku", + -14.770808219909668 + ], + [ + "री", + -14.770870208740234 + ], + [ + "▁nodal", + -14.770888328552246 + ], + [ + "▁Cyclops", + -14.770931243896484 + ], + [ + "magi", + -14.770940780639648 + ], + [ + "▁fleur", + -14.770947456359863 + ], + [ + "▁Redstone", + -14.770970344543457 + ], + [ + "▁Vixen", + -14.770977973937988 + ], + [ + "▁Plough", + -14.770978927612305 + ], + [ + "▁Deleuze", + -14.771000862121582 + ], + [ + "3100", + -14.77104663848877 + ], + [ + "anen", + -14.771068572998047 + ], + [ + "bello", + -14.771098136901855 + ], + [ + "▁Rockaway", + -14.771124839782715 + ], + [ + "voc", + -14.771191596984863 + ], + [ + "ї", + -14.77121353149414 + ], + [ + "мент", + -14.771227836608887 + ], + [ + "▁Farnham", + -14.77122974395752 + ], + [ + "dene", + -14.77129077911377 + ], + [ + "▁Bhav", + -14.771320343017578 + ], + [ + "▁herdsmen", + -14.771334648132324 + ], + [ + "▁gladness", + -14.771339416503906 + ], + [ + "▁docu", + -14.771343231201172 + ], + [ + "▁FPV", + -14.771370887756348 + ], + [ + "▁Coordinates", + -14.77138614654541 + ], + [ + "▁Makin", + -14.771430969238281 + ], + [ + "▁Selva", + -14.771435737609863 + ], + [ + "▁educative", + -14.771470069885254 + ], + [ + "▁Roxbury", + -14.771500587463379 + ], + [ + "▁pigtail", + -14.77150821685791 + ], + [ + "EDI", + -14.771509170532227 + ], + [ + "Clearly", + -14.771564483642578 + ], + [ + "Fabric", + -14.771573066711426 + ], + [ + "▁edifying", + -14.771578788757324 + ], + [ + "▁bifurcation", + -14.771615028381348 + ], + [ + "guo", + -14.77161979675293 + ], + [ + "▁Hazrat", + -14.771651268005371 + ], + [ + "▁1779", + -14.771713256835938 + ], + [ + "▁Dern", + -14.771746635437012 + ], + [ + "▁Hansard", + -14.771780014038086 + ], + [ + "▁Heine", + -14.771790504455566 + ], + [ + "▁tufting", + -14.771800994873047 + ], + [ + "▁1031", + -14.771817207336426 + ], + [ + "iww", + -14.771825790405273 + ], + [ + "SHOP", + -14.77184009552002 + ], + [ + "▁대한", + -14.7718505859375 + ], + [ + "▁Briscoe", + -14.771852493286133 + ], + [ + "▁Inkjet", + -14.77190113067627 + ], + [ + "▁immeasurably", + -14.77190113067627 + ], + [ + "▁Reiss", + -14.771907806396484 + ], + [ + "▁LEAP", + -14.77192211151123 + ], + [ + "▁Trello", + -14.771944046020508 + ], + [ + "▁Firing", + -14.771985054016113 + ], + [ + "▁Vaish", + -14.772014617919922 + ], + [ + "▁escapades", + -14.772026062011719 + ], + [ + "Refer", + -14.772028923034668 + ], + [ + "▁mammograms", + -14.772156715393066 + ], + [ + "Mouse", + -14.772162437438965 + ], + [ + "▁Aoki", + -14.772164344787598 + ], + [ + "▁Pedagogy", + -14.77220344543457 + ], + [ + "▁yellowing", + -14.772214889526367 + ], + [ + "Politics", + -14.772222518920898 + ], + [ + "ancia", + -14.772266387939453 + ], + [ + "▁Dominant", + -14.772281646728516 + ], + [ + "THC", + -14.772310256958008 + ], + [ + "PAM", + -14.77233600616455 + ], + [ + "▁squealing", + -14.772374153137207 + ], + [ + "▁kitsch", + -14.772385597229004 + ], + [ + "▁HbA", + -14.772387504577637 + ], + [ + "▁Platoon", + -14.7723970413208 + ], + [ + "▁ambien", + -14.7723970413208 + ], + [ + "▁Confidentiality", + -14.772405624389648 + ], + [ + "▁Fianna", + -14.772433280944824 + ], + [ + "▁baptize", + -14.77249813079834 + ], + [ + "▁ligation", + -14.772512435913086 + ], + [ + "▁Lugo", + -14.772517204284668 + ], + [ + "▁Beltran", + -14.772546768188477 + ], + [ + "ACHE", + -14.772570610046387 + ], + [ + "alvin", + -14.77258586883545 + ], + [ + "▁damnation", + -14.772601127624512 + ], + [ + "EIGHT", + -14.772613525390625 + ], + [ + "프", + -14.772624015808105 + ], + [ + "tinted", + -14.772651672363281 + ], + [ + "▁Paver", + -14.772686958312988 + ], + [ + "▁erotic", + -14.772727012634277 + ], + [ + "skid", + -14.77275276184082 + ], + [ + "τη", + -14.772760391235352 + ], + [ + "▁SOLUTIONS", + -14.772773742675781 + ], + [ + "▁Kavanagh", + -14.772826194763184 + ], + [ + "bees", + -14.772832870483398 + ], + [ + "▁Charle", + -14.772893905639648 + ], + [ + "▁divestiture", + -14.772932052612305 + ], + [ + "▁pyramidal", + -14.77298641204834 + ], + [ + "▁jubilee", + -14.773016929626465 + ], + [ + "▁Karr", + -14.773018836975098 + ], + [ + "ի", + -14.773090362548828 + ], + [ + "▁featurette", + -14.773130416870117 + ], + [ + "▁bassinet", + -14.773138046264648 + ], + [ + "▁geb", + -14.773152351379395 + ], + [ + "▁vw", + -14.773154258728027 + ], + [ + "literate", + -14.773164749145508 + ], + [ + "▁pont", + -14.773164749145508 + ], + [ + "▁Niels", + -14.77316951751709 + ], + [ + "▁digitizing", + -14.77318000793457 + ], + [ + "ptr", + -14.773180961608887 + ], + [ + "▁Simultaneous", + -14.77319622039795 + ], + [ + "igation", + -14.773255348205566 + ], + [ + "▁Ч", + -14.773274421691895 + ], + [ + "оп", + -14.773348808288574 + ], + [ + "▁Inscription", + -14.77337646484375 + ], + [ + "▁TSR", + -14.773402214050293 + ], + [ + "▁loveable", + -14.77340316772461 + ], + [ + "▁Spandex", + -14.773470878601074 + ], + [ + "▁Actively", + -14.773476600646973 + ], + [ + "showing", + -14.773497581481934 + ], + [ + "▁Blyth", + -14.77349853515625 + ], + [ + "▁Chautauqua", + -14.773516654968262 + ], + [ + "quid", + -14.773557662963867 + ], + [ + "anonymous", + -14.773591041564941 + ], + [ + "▁fullscreen", + -14.773599624633789 + ], + [ + "적인", + -14.773612976074219 + ], + [ + "▁ENGINEERING", + -14.773622512817383 + ], + [ + "affirming", + -14.773630142211914 + ], + [ + "▁Lata", + -14.77364730834961 + ], + [ + "▁Underlying", + -14.773650169372559 + ], + [ + "hrung", + -14.773658752441406 + ], + [ + "▁conquests", + -14.773664474487305 + ], + [ + "▁calamari", + -14.77369499206543 + ], + [ + "▁Thiem", + -14.773701667785645 + ], + [ + "▁naturopath", + -14.773701667785645 + ], + [ + "▁ALM", + -14.773737907409668 + ], + [ + "▁recidivism", + -14.7737398147583 + ], + [ + "RIO", + -14.773764610290527 + ], + [ + "▁Limiting", + -14.773765563964844 + ], + [ + "▁jockeys", + -14.773818969726562 + ], + [ + "▁Widgets", + -14.773866653442383 + ], + [ + "Tales", + -14.773893356323242 + ], + [ + "ología", + -14.773921012878418 + ], + [ + "▁Elohim", + -14.773948669433594 + ], + [ + "▁telepathic", + -14.773975372314453 + ], + [ + "Yesterday", + -14.773983001708984 + ], + [ + "▁SOM", + -14.773998260498047 + ], + [ + "▁trackpad", + -14.77401065826416 + ], + [ + "▁CAPITAL", + -14.774017333984375 + ], + [ + "extend", + -14.774066925048828 + ], + [ + "▁boggling", + -14.774096488952637 + ], + [ + "▁Awake", + -14.77411937713623 + ], + [ + "enso", + -14.774130821228027 + ], + [ + "iffer", + -14.774137496948242 + ], + [ + "▁RICH", + -14.774157524108887 + ], + [ + "▁BDO", + -14.774158477783203 + ], + [ + "layout", + -14.774163246154785 + ], + [ + "Demo", + -14.774187088012695 + ], + [ + "▁Campion", + -14.774192810058594 + ], + [ + "▁Boudreau", + -14.77421760559082 + ], + [ + "BEN", + -14.77422046661377 + ], + [ + "▁OAS", + -14.774223327636719 + ], + [ + "▁tempering", + -14.7742338180542 + ], + [ + "bromo", + -14.774236679077148 + ], + [ + "Studies", + -14.774275779724121 + ], + [ + "▁flaunting", + -14.77428150177002 + ], + [ + "▁Valk", + -14.774298667907715 + ], + [ + "nuptial", + -14.774304389953613 + ], + [ + "5500", + -14.774309158325195 + ], + [ + "WTO", + -14.774349212646484 + ], + [ + "POST", + -14.774361610412598 + ], + [ + "▁poach", + -14.774389266967773 + ], + [ + "▁Harvick", + -14.774409294128418 + ], + [ + "idase", + -14.77441120147705 + ], + [ + "aneous", + -14.774446487426758 + ], + [ + "▁Breathtaking", + -14.774517059326172 + ], + [ + "▁Summertime", + -14.774530410766602 + ], + [ + "▁Balsam", + -14.774569511413574 + ], + [ + "▁Vali", + -14.774580001831055 + ], + [ + "ပ", + -14.7746000289917 + ], + [ + "▁suitor", + -14.774679183959961 + ], + [ + "SAFE", + -14.774696350097656 + ], + [ + "▁во", + -14.774703979492188 + ], + [ + "axin", + -14.774771690368652 + ], + [ + "▁Flashlight", + -14.774772644042969 + ], + [ + "urier", + -14.774794578552246 + ], + [ + "▁abate", + -14.774829864501953 + ], + [ + "▁PROP", + -14.774857521057129 + ], + [ + "▁roars", + -14.774859428405762 + ], + [ + "ogu", + -14.774887084960938 + ], + [ + "▁Predicting", + -14.77489185333252 + ], + [ + "Scarlet", + -14.774913787841797 + ], + [ + "▁glu", + -14.77492618560791 + ], + [ + "▁nothin", + -14.774945259094238 + ], + [ + "▁injects", + -14.774950981140137 + ], + [ + "▁709", + -14.774951934814453 + ], + [ + "▁Decorators", + -14.774955749511719 + ], + [ + "▁Sundown", + -14.774970054626465 + ], + [ + "sliding", + -14.774977684020996 + ], + [ + "▁megapixels", + -14.77499008178711 + ], + [ + "▁Kyung", + -14.775005340576172 + ], + [ + "▁Humidity", + -14.775084495544434 + ], + [ + "orda", + -14.775132179260254 + ], + [ + "▁581", + -14.77514934539795 + ], + [ + "ELLO", + -14.775150299072266 + ], + [ + "▁Shaving", + -14.775172233581543 + ], + [ + "▁unrealized", + -14.77519702911377 + ], + [ + "▁Matsumoto", + -14.77523422241211 + ], + [ + "scores", + -14.77530574798584 + ], + [ + "▁unapologetically", + -14.775311470031738 + ], + [ + "▁regrettably", + -14.775315284729004 + ], + [ + "▁Percival", + -14.775325775146484 + ], + [ + "Wallet", + -14.775330543518066 + ], + [ + "Arthur", + -14.775341987609863 + ], + [ + "▁reconfiguration", + -14.775381088256836 + ], + [ + "larger", + -14.775404930114746 + ], + [ + "▁unkempt", + -14.775453567504883 + ], + [ + "▁Zamora", + -14.7754545211792 + ], + [ + "ordina", + -14.775465965270996 + ], + [ + "contamination", + -14.775466918945312 + ], + [ + "▁Kann", + -14.775519371032715 + ], + [ + "▁Camus", + -14.775527000427246 + ], + [ + "▁reelected", + -14.775553703308105 + ], + [ + "▁Supportive", + -14.775583267211914 + ], + [ + "OUL", + -14.775588989257812 + ], + [ + "satisfied", + -14.775593757629395 + ], + [ + "wid", + -14.77560043334961 + ], + [ + "humanity", + -14.775617599487305 + ], + [ + "▁saucers", + -14.775638580322266 + ], + [ + "kita", + -14.775662422180176 + ], + [ + "Neither", + -14.775664329528809 + ], + [ + "Layout", + -14.775674819946289 + ], + [ + "▁ewe", + -14.775676727294922 + ], + [ + "DMS", + -14.775677680969238 + ], + [ + "版", + -14.77570629119873 + ], + [ + "OPEC", + -14.775715827941895 + ], + [ + "▁Wohl", + -14.775715827941895 + ], + [ + "▁Anno", + -14.775718688964844 + ], + [ + "▁Assyria", + -14.775725364685059 + ], + [ + "お", + -14.775757789611816 + ], + [ + "▁Kanban", + -14.775784492492676 + ], + [ + "BIC", + -14.775787353515625 + ], + [ + "▁Pedi", + -14.775789260864258 + ], + [ + "Astro", + -14.775873184204102 + ], + [ + "IDO", + -14.775900840759277 + ], + [ + "▁miscalculation", + -14.77590560913086 + ], + [ + "▁midseason", + -14.775908470153809 + ], + [ + "зи", + -14.775921821594238 + ], + [ + "▁CLIP", + -14.775935173034668 + ], + [ + "▁Bottas", + -14.775949478149414 + ], + [ + "▁FAI", + -14.775962829589844 + ], + [ + "▁tensed", + -14.775976181030273 + ], + [ + "▁circumferential", + -14.77598762512207 + ], + [ + "▁Fractal", + -14.775996208190918 + ], + [ + "▁Griezmann", + -14.776028633117676 + ], + [ + "▁Tsipras", + -14.776060104370117 + ], + [ + "schooling", + -14.776070594787598 + ], + [ + "1186", + -14.776077270507812 + ], + [ + "moe", + -14.776110649108887 + ], + [ + "▁reticle", + -14.776116371154785 + ], + [ + "▁Kootenay", + -14.776124954223633 + ], + [ + "▁Malala", + -14.776188850402832 + ], + [ + "UFC", + -14.776200294494629 + ], + [ + "▁vestiges", + -14.776208877563477 + ], + [ + "instrument", + -14.77621078491211 + ], + [ + "linsky", + -14.776288986206055 + ], + [ + "▁Marrow", + -14.77629566192627 + ], + [ + "CIC", + -14.7763032913208 + ], + [ + "kter", + -14.776317596435547 + ], + [ + "▁Chiara", + -14.776331901550293 + ], + [ + "▁Tyrol", + -14.776397705078125 + ], + [ + "▁Sire", + -14.776403427124023 + ], + [ + "▁rai", + -14.77645492553711 + ], + [ + "▁Battleground", + -14.776455879211426 + ], + [ + "▁Vicksburg", + -14.776456832885742 + ], + [ + "▁Nationality", + -14.776459693908691 + ], + [ + "▁så", + -14.776460647583008 + ], + [ + "▁Butts", + -14.776472091674805 + ], + [ + "▁Rioja", + -14.776474952697754 + ], + [ + "▁honking", + -14.776484489440918 + ], + [ + "missile", + -14.776495933532715 + ], + [ + "▁XVIII", + -14.776545524597168 + ], + [ + "▁cisplatin", + -14.776551246643066 + ], + [ + "▁Ibis", + -14.776569366455078 + ], + [ + "Autumn", + -14.776602745056152 + ], + [ + "▁Composers", + -14.776606559753418 + ], + [ + "▁Bullard", + -14.77662181854248 + ], + [ + "▁Innes", + -14.776631355285645 + ], + [ + "Construction", + -14.776632308959961 + ], + [ + "▁Qiu", + -14.776651382446289 + ], + [ + "▁Corri", + -14.776655197143555 + ], + [ + "▁denunciation", + -14.776673316955566 + ], + [ + "▁fritters", + -14.776740074157715 + ], + [ + "▁diuretics", + -14.776782035827637 + ], + [ + "ல", + -14.776784896850586 + ], + [ + "▁kya", + -14.776784896850586 + ], + [ + "▁Wahoo", + -14.776823043823242 + ], + [ + "▁geolocation", + -14.776881217956543 + ], + [ + "์", + -14.776902198791504 + ], + [ + "▁해", + -14.776951789855957 + ], + [ + "▁Lillard", + -14.776970863342285 + ], + [ + "▁Kenilworth", + -14.7769775390625 + ], + [ + "▁chloroplast", + -14.776983261108398 + ], + [ + "▁DeAndre", + -14.777005195617676 + ], + [ + "▁MANILA", + -14.777005195617676 + ], + [ + "clare", + -14.777036666870117 + ], + [ + "▁cytotoxicity", + -14.777056694030762 + ], + [ + "▁Inglis", + -14.777181625366211 + ], + [ + "▁debrief", + -14.777196884155273 + ], + [ + "ecting", + -14.777203559875488 + ], + [ + "clips", + -14.777256965637207 + ], + [ + "▁CHC", + -14.777257919311523 + ], + [ + "▁WYSIWYG", + -14.777276992797852 + ], + [ + "▁lun", + -14.777284622192383 + ], + [ + "ulph", + -14.777289390563965 + ], + [ + "▁Hopi", + -14.77735710144043 + ], + [ + "▁BEC", + -14.777371406555176 + ], + [ + "Definition", + -14.777458190917969 + ], + [ + "▁Liszt", + -14.777467727661133 + ], + [ + "▁mig", + -14.777471542358398 + ], + [ + "▁alleyway", + -14.777480125427246 + ], + [ + "▁prohibitively", + -14.777494430541992 + ], + [ + "▁fjord", + -14.777512550354004 + ], + [ + "Mint", + -14.777521133422852 + ], + [ + "▁Osmond", + -14.777552604675293 + ], + [ + "rachi", + -14.777558326721191 + ], + [ + "vim", + -14.777580261230469 + ], + [ + "Ÿ", + -14.777594566345215 + ], + [ + "ZT", + -14.777595520019531 + ], + [ + "▁richard", + -14.777670860290527 + ], + [ + "▁glimpsed", + -14.77769947052002 + ], + [ + "▁627", + -14.777722358703613 + ], + [ + "▁Spoilers", + -14.777763366699219 + ], + [ + "▁Seasoned", + -14.7777681350708 + ], + [ + "▁cuticles", + -14.777802467346191 + ], + [ + "▁Cursed", + -14.777843475341797 + ], + [ + "Hindu", + -14.777850151062012 + ], + [ + "▁Corrugated", + -14.77790641784668 + ], + [ + "▁beguiling", + -14.777913093566895 + ], + [ + "▁YHWH", + -14.77791690826416 + ], + [ + "▁franchised", + -14.777924537658691 + ], + [ + "▁lurid", + -14.777952194213867 + ], + [ + "▁CIE", + -14.777983665466309 + ], + [ + "▁Saran", + -14.777992248535156 + ], + [ + "Tomorrow", + -14.778035163879395 + ], + [ + "▁926", + -14.778068542480469 + ], + [ + "▁Matz", + -14.778071403503418 + ], + [ + "▁nibs", + -14.778072357177734 + ], + [ + "▁quivering", + -14.778127670288086 + ], + [ + "след", + -14.778143882751465 + ], + [ + "axton", + -14.77816390991211 + ], + [ + "▁dropouts", + -14.778170585632324 + ], + [ + "▁EPP", + -14.778180122375488 + ], + [ + "NHS", + -14.77820110321045 + ], + [ + "▁Shogun", + -14.778205871582031 + ], + [ + "▁TQ", + -14.778236389160156 + ], + [ + "▁Montserrat", + -14.778247833251953 + ], + [ + "scaled", + -14.778250694274902 + ], + [ + "▁UNIQUE", + -14.778251647949219 + ], + [ + "▁Extender", + -14.778261184692383 + ], + [ + "explained", + -14.778275489807129 + ], + [ + "▁BROTHER", + -14.778278350830078 + ], + [ + "▁crisscross", + -14.77829360961914 + ], + [ + "▁disengagement", + -14.778304100036621 + ], + [ + "▁bathrobe", + -14.778356552124023 + ], + [ + "chle", + -14.778377532958984 + ], + [ + "Mommy", + -14.77839469909668 + ], + [ + "Matic", + -14.778429985046387 + ], + [ + "개", + -14.778461456298828 + ], + [ + "Nah", + -14.778489112854004 + ], + [ + "executed", + -14.778531074523926 + ], + [ + "▁Leong", + -14.778544425964355 + ], + [ + "▁unconvincing", + -14.77855396270752 + ], + [ + "Firm", + -14.778558731079102 + ], + [ + "▁FLAG", + -14.778563499450684 + ], + [ + "▁DreamWorks", + -14.778607368469238 + ], + [ + "▁misogynist", + -14.778616905212402 + ], + [ + "▁Distinct", + -14.778676986694336 + ], + [ + "▁expanses", + -14.7786865234375 + ], + [ + "▁Barnaby", + -14.778702735900879 + ], + [ + "▁Jeri", + -14.77871036529541 + ], + [ + "▁Jeez", + -14.778722763061523 + ], + [ + "thirty", + -14.778738975524902 + ], + [ + "▁unbound", + -14.778753280639648 + ], + [ + "▁MFT", + -14.778766632080078 + ], + [ + "▁Nx", + -14.778818130493164 + ], + [ + "urse", + -14.778849601745605 + ], + [ + "ffrey", + -14.778884887695312 + ], + [ + "▁expelling", + -14.778892517089844 + ], + [ + "▁Breitling", + -14.778894424438477 + ], + [ + "activist", + -14.778908729553223 + ], + [ + "▁axioms", + -14.778958320617676 + ], + [ + "mundo", + -14.779031753540039 + ], + [ + "▁naar", + -14.779032707214355 + ], + [ + "▁quintessentially", + -14.779054641723633 + ], + [ + "▁serine", + -14.779122352600098 + ], + [ + "LGA", + -14.779193878173828 + ], + [ + "surable", + -14.779195785522461 + ], + [ + "▁radially", + -14.779205322265625 + ], + [ + "▁genealogist", + -14.779221534729004 + ], + [ + "▁Bookshelf", + -14.779229164123535 + ], + [ + "▁Sprinkler", + -14.77926254272461 + ], + [ + "▁Ralston", + -14.779326438903809 + ], + [ + "▁Bicycles", + -14.779329299926758 + ], + [ + "▁Benign", + -14.779330253601074 + ], + [ + "▁ela", + -14.779351234436035 + ], + [ + "igging", + -14.779385566711426 + ], + [ + "▁Eoin", + -14.779409408569336 + ], + [ + "OOOOOO", + -14.779430389404297 + ], + [ + "Ο", + -14.77945613861084 + ], + [ + "▁strongman", + -14.779571533203125 + ], + [ + "gabe", + -14.779576301574707 + ], + [ + "▁roz", + -14.779577255249023 + ], + [ + "▁infomercial", + -14.779655456542969 + ], + [ + "×8", + -14.779661178588867 + ], + [ + "▁Olmsted", + -14.779681205749512 + ], + [ + "▁Gaal", + -14.779703140258789 + ], + [ + "▁caldera", + -14.779794692993164 + ], + [ + "rola", + -14.779807090759277 + ], + [ + "▁fiddly", + -14.779850959777832 + ], + [ + "▁flagpole", + -14.779860496520996 + ], + [ + "▁gabapentin", + -14.779884338378906 + ], + [ + "лу", + -14.779888153076172 + ], + [ + "ranga", + -14.779897689819336 + ], + [ + "▁Recessed", + -14.779923439025879 + ], + [ + "ví", + -14.779926300048828 + ], + [ + "▁annulment", + -14.77993106842041 + ], + [ + "stancia", + -14.779936790466309 + ], + [ + "▁Reborn", + -14.7799654006958 + ], + [ + "▁provigil", + -14.779974937438965 + ], + [ + "▁trac", + -14.779998779296875 + ], + [ + "▁UNSC", + -14.780003547668457 + ], + [ + "▁unconsciousness", + -14.780014991760254 + ], + [ + "▁Romani", + -14.780064582824707 + ], + [ + "▁hoisting", + -14.780067443847656 + ], + [ + "juven", + -14.780068397521973 + ], + [ + "▁Leech", + -14.780097961425781 + ], + [ + "▁PAIN", + -14.780115127563477 + ], + [ + "▁obverse", + -14.780146598815918 + ], + [ + "▁Examiners", + -14.78015422821045 + ], + [ + "▁Vous", + -14.780155181884766 + ], + [ + "devi", + -14.780157089233398 + ], + [ + "▁Fonseca", + -14.780183792114258 + ], + [ + "vald", + -14.780202865600586 + ], + [ + "▁Hatcher", + -14.780233383178711 + ], + [ + "▁Gestalt", + -14.780257225036621 + ], + [ + "▁POSSIBILITY", + -14.780280113220215 + ], + [ + "▁Ravenna", + -14.780282974243164 + ], + [ + "▁하", + -14.780290603637695 + ], + [ + "▁Repairing", + -14.780306816101074 + ], + [ + "▁sitcoms", + -14.780320167541504 + ], + [ + "▁protege", + -14.780341148376465 + ], + [ + "知", + -14.780341148376465 + ], + [ + "▁pheromones", + -14.78034782409668 + ], + [ + "▁iota", + -14.780351638793945 + ], + [ + "회", + -14.780356407165527 + ], + [ + "▁nouvelle", + -14.780377388000488 + ], + [ + "lera", + -14.780420303344727 + ], + [ + "▁retrofitted", + -14.780447006225586 + ], + [ + "▁stingray", + -14.780465126037598 + ], + [ + "▁psalms", + -14.780475616455078 + ], + [ + "лю", + -14.780516624450684 + ], + [ + "▁seeped", + -14.780524253845215 + ], + [ + "▁visage", + -14.780534744262695 + ], + [ + "▁Gavi", + -14.780552864074707 + ], + [ + "▁queso", + -14.780559539794922 + ], + [ + "▁modulates", + -14.780571937561035 + ], + [ + "▁Schr", + -14.780608177185059 + ], + [ + "gage", + -14.780622482299805 + ], + [ + "Oréal", + -14.78062915802002 + ], + [ + "▁halide", + -14.78063678741455 + ], + [ + "▁contraindications", + -14.780659675598145 + ], + [ + "▁arduino", + -14.780689239501953 + ], + [ + "▁Hooded", + -14.780691146850586 + ], + [ + "▁Minot", + -14.780691146850586 + ], + [ + "▁nei", + -14.780694007873535 + ], + [ + "▁GOES", + -14.780713081359863 + ], + [ + "rizz", + -14.780768394470215 + ], + [ + "▁Goldwater", + -14.78077220916748 + ], + [ + "▁llvm", + -14.780779838562012 + ], + [ + "▁Charlestown", + -14.780802726745605 + ], + [ + "▁Schneiderman", + -14.780829429626465 + ], + [ + "spinning", + -14.780845642089844 + ], + [ + "▁goalless", + -14.780864715576172 + ], + [ + "▁Longoria", + -14.780937194824219 + ], + [ + "▁Visi", + -14.78100299835205 + ], + [ + "▁Hosea", + -14.78103256225586 + ], + [ + "melan", + -14.781041145324707 + ], + [ + "elements", + -14.7810640335083 + ], + [ + "▁headshots", + -14.781094551086426 + ], + [ + "conforming", + -14.78115177154541 + ], + [ + "▁Wilber", + -14.78115177154541 + ], + [ + "▁Workbench", + -14.78117561340332 + ], + [ + "▁bewilderment", + -14.781232833862305 + ], + [ + "▁596", + -14.781255722045898 + ], + [ + "▁bursary", + -14.78126049041748 + ], + [ + "▁Meltdown", + -14.781271934509277 + ], + [ + "▁Sheesh", + -14.781387329101562 + ], + [ + "▁charcuterie", + -14.781394004821777 + ], + [ + "▁NEM", + -14.7814302444458 + ], + [ + "Lac", + -14.781495094299316 + ], + [ + "formatted", + -14.781498908996582 + ], + [ + "▁preload", + -14.78153133392334 + ], + [ + "nehmen", + -14.7815580368042 + ], + [ + "▁undress", + -14.781587600708008 + ], + [ + "▁asshole", + -14.781659126281738 + ], + [ + "▁symphonies", + -14.781694412231445 + ], + [ + "technique", + -14.781761169433594 + ], + [ + "▁arthropod", + -14.781765937805176 + ], + [ + "▁evaluators", + -14.781780242919922 + ], + [ + "roman", + -14.781786918640137 + ], + [ + "▁gnawing", + -14.781787872314453 + ], + [ + "▁má", + -14.781793594360352 + ], + [ + "▁Lindbergh", + -14.781801223754883 + ], + [ + "▁Skim", + -14.781818389892578 + ], + [ + "ним", + -14.781828880310059 + ], + [ + "▁scalping", + -14.78183364868164 + ], + [ + "▁flan", + -14.781858444213867 + ], + [ + "▁deze", + -14.7818603515625 + ], + [ + "RIGHT", + -14.781862258911133 + ], + [ + "▁Sosa", + -14.781905174255371 + ], + [ + "▁flirted", + -14.781905174255371 + ], + [ + "▁Technol", + -14.781920433044434 + ], + [ + "▁devalued", + -14.781933784484863 + ], + [ + "▁violets", + -14.781949043273926 + ], + [ + "▁bums", + -14.781999588012695 + ], + [ + "▁squall", + -14.782017707824707 + ], + [ + "▁CCT", + -14.782021522521973 + ], + [ + "▁40°", + -14.782045364379883 + ], + [ + "▁secede", + -14.782063484191895 + ], + [ + "Communist", + -14.78207015991211 + ], + [ + "▁Symon", + -14.782085418701172 + ], + [ + "▁Nashua", + -14.782090187072754 + ], + [ + "▁Dawes", + -14.782106399536133 + ], + [ + "▁Aberdeenshire", + -14.782108306884766 + ], + [ + "Stan", + -14.782118797302246 + ], + [ + "URS", + -14.782123565673828 + ], + [ + "▁sciatic", + -14.782144546508789 + ], + [ + "▁Jesper", + -14.782166481018066 + ], + [ + "▁softwood", + -14.78217601776123 + ], + [ + "▁phosphorous", + -14.78226375579834 + ], + [ + "▁customarily", + -14.782268524169922 + ], + [ + "▁Hansel", + -14.78235149383545 + ], + [ + "▁exult", + -14.782378196716309 + ], + [ + "▁DEPARTMENT", + -14.782380104064941 + ], + [ + "▁Constantin", + -14.782427787780762 + ], + [ + "▁USL", + -14.782442092895508 + ], + [ + "▁Anis", + -14.782493591308594 + ], + [ + "▁ORF", + -14.782520294189453 + ], + [ + "credi", + -14.782546997070312 + ], + [ + "▁grocers", + -14.782574653625488 + ], + [ + "▁magi", + -14.782578468322754 + ], + [ + "vf", + -14.782581329345703 + ], + [ + "▁loudness", + -14.78264045715332 + ], + [ + "yron", + -14.782668113708496 + ], + [ + "▁ODM", + -14.782679557800293 + ], + [ + "▁Soprano", + -14.782721519470215 + ], + [ + "▁stabs", + -14.782737731933594 + ], + [ + "▁Bristow", + -14.782753944396973 + ], + [ + "rja", + -14.782757759094238 + ], + [ + "▁Regenerative", + -14.782767295837402 + ], + [ + "▁LIP", + -14.782792091369629 + ], + [ + "▁566", + -14.782795906066895 + ], + [ + "▁Anambra", + -14.782804489135742 + ], + [ + "▁roach", + -14.782824516296387 + ], + [ + "▁Dict", + -14.78292465209961 + ], + [ + "▁Ringer", + -14.782930374145508 + ], + [ + "smaller", + -14.782934188842773 + ], + [ + "▁Safi", + -14.782943725585938 + ], + [ + "▁Treehouse", + -14.782949447631836 + ], + [ + "▁censoring", + -14.782989501953125 + ], + [ + "▁confining", + -14.782999038696289 + ], + [ + "▁1630", + -14.783010482788086 + ], + [ + "▁LSI", + -14.783014297485352 + ], + [ + "▁achievers", + -14.783047676086426 + ], + [ + "▁schemas", + -14.783062934875488 + ], + [ + "▁ARTS", + -14.78307819366455 + ], + [ + "▁COLLECT", + -14.783082008361816 + ], + [ + "▁Polymers", + -14.783105850219727 + ], + [ + "▁supplanted", + -14.783121109008789 + ], + [ + "▁Pajama", + -14.783138275146484 + ], + [ + "▁ESM", + -14.783170700073242 + ], + [ + "▁Yanukovych", + -14.783174514770508 + ], + [ + "▁Afrika", + -14.78325080871582 + ], + [ + "partum", + -14.783282279968262 + ], + [ + "аль", + -14.783295631408691 + ], + [ + "acea", + -14.783316612243652 + ], + [ + "▁Woking", + -14.783326148986816 + ], + [ + "▁Mangal", + -14.783340454101562 + ], + [ + "▁ODBC", + -14.78335189819336 + ], + [ + "▁gastritis", + -14.783378601074219 + ], + [ + "▁myspace", + -14.783381462097168 + ], + [ + "gency", + -14.7833890914917 + ], + [ + "▁SHIFT", + -14.783453941345215 + ], + [ + "▁superstore", + -14.783485412597656 + ], + [ + "▁Millen", + -14.7835111618042 + ], + [ + "▁JoJo", + -14.783534049987793 + ], + [ + "▁Phipps", + -14.78354263305664 + ], + [ + "emergence", + -14.783550262451172 + ], + [ + "▁Pursue", + -14.783551216125488 + ], + [ + "▁Sequencing", + -14.783560752868652 + ], + [ + "▁cheater", + -14.78356647491455 + ], + [ + "▁ABLE", + -14.783583641052246 + ], + [ + "azzle", + -14.783586502075195 + ], + [ + "tripping", + -14.78359317779541 + ], + [ + "proved", + -14.783623695373535 + ], + [ + "▁Sharm", + -14.783635139465332 + ], + [ + "▁Gbps", + -14.783684730529785 + ], + [ + "▁reversion", + -14.783711433410645 + ], + [ + "▁inadequately", + -14.783717155456543 + ], + [ + "Marco", + -14.78372573852539 + ], + [ + "▁Hump", + -14.783729553222656 + ], + [ + "tivism", + -14.783735275268555 + ], + [ + "ENN", + -14.783769607543945 + ], + [ + "▁Pradhan", + -14.783774375915527 + ], + [ + "▁Kies", + -14.783791542053223 + ], + [ + "▁Beaded", + -14.783803939819336 + ], + [ + "▁Woohoo", + -14.783820152282715 + ], + [ + "▁MBP", + -14.783834457397461 + ], + [ + "issima", + -14.783910751342773 + ], + [ + "▁Amma", + -14.783943176269531 + ], + [ + "ouse", + -14.784034729003906 + ], + [ + "deceased", + -14.78406047821045 + ], + [ + "▁Grasp", + -14.784103393554688 + ], + [ + "▁Lanza", + -14.784113883972168 + ], + [ + "corrected", + -14.78414249420166 + ], + [ + "▁upregulated", + -14.78415298461914 + ], + [ + "edging", + -14.784186363220215 + ], + [ + "dain", + -14.784213066101074 + ], + [ + "▁rb", + -14.784224510192871 + ], + [ + "▁Holling", + -14.784261703491211 + ], + [ + "Ι", + -14.784292221069336 + ], + [ + "▁Negri", + -14.784296035766602 + ], + [ + "Jr", + -14.784313201904297 + ], + [ + "eaten", + -14.784313201904297 + ], + [ + "hertz", + -14.78432559967041 + ], + [ + "▁obi", + -14.784364700317383 + ], + [ + "ια", + -14.784407615661621 + ], + [ + "▁Shyam", + -14.784466743469238 + ], + [ + "ša", + -14.7844820022583 + ], + [ + "ол", + -14.784500122070312 + ], + [ + "▁Jiao", + -14.784546852111816 + ], + [ + "▁incursions", + -14.784610748291016 + ], + [ + "▁MISSION", + -14.78464126586914 + ], + [ + "▁needful", + -14.784757614135742 + ], + [ + "▁arguable", + -14.78478717803955 + ], + [ + "▁Cavan", + -14.784870147705078 + ], + [ + "▁Baka", + -14.784871101379395 + ], + [ + "▁VALLEY", + -14.784875869750977 + ], + [ + "▁Clinique", + -14.78488540649414 + ], + [ + "▁STUFF", + -14.785011291503906 + ], + [ + "▁INDIAN", + -14.785038948059082 + ], + [ + "yssa", + -14.785053253173828 + ], + [ + "Polish", + -14.785067558288574 + ], + [ + "▁Echoes", + -14.785117149353027 + ], + [ + "globe", + -14.785136222839355 + ], + [ + "▁Limon", + -14.785171508789062 + ], + [ + "▁Strass", + -14.785181045532227 + ], + [ + "▁LIT", + -14.785185813903809 + ], + [ + "▁pecuniary", + -14.785195350646973 + ], + [ + "habi", + -14.785196304321289 + ], + [ + "Jenny", + -14.78521728515625 + ], + [ + "▁rangefinder", + -14.785237312316895 + ], + [ + "▁squelch", + -14.785250663757324 + ], + [ + "▁hui", + -14.785320281982422 + ], + [ + "▁reentry", + -14.785407066345215 + ], + [ + "PIP", + -14.785408973693848 + ], + [ + "▁internationalization", + -14.78542423248291 + ], + [ + "Brew", + -14.785459518432617 + ], + [ + "▁Dek", + -14.785476684570312 + ], + [ + "significantly", + -14.785480499267578 + ], + [ + "▁phenomenological", + -14.785507202148438 + ], + [ + "▁shaders", + -14.785508155822754 + ], + [ + "▁Uruguayan", + -14.785518646240234 + ], + [ + "▁enforcer", + -14.78553295135498 + ], + [ + "HANA", + -14.785536766052246 + ], + [ + "▁ici", + -14.785542488098145 + ], + [ + "▁chucked", + -14.785569190979004 + ], + [ + "rj", + -14.785603523254395 + ], + [ + "▁TMA", + -14.785606384277344 + ], + [ + "▁yore", + -14.785612106323242 + ], + [ + "▁proteomics", + -14.785613059997559 + ], + [ + "assu", + -14.785635948181152 + ], + [ + "▁Boggs", + -14.785669326782227 + ], + [ + "dering", + -14.785676956176758 + ], + [ + "▁PowerPlay", + -14.785676956176758 + ], + [ + "Dress", + -14.785707473754883 + ], + [ + "ック", + -14.785730361938477 + ], + [ + "▁Aerobic", + -14.78573226928711 + ], + [ + "▁localhost", + -14.785743713378906 + ], + [ + "Dust", + -14.785764694213867 + ], + [ + "▁Theatrical", + -14.78579044342041 + ], + [ + "▁caper", + -14.78580379486084 + ], + [ + "▁Abdominal", + -14.78584098815918 + ], + [ + "lazy", + -14.785883903503418 + ], + [ + "▁Merida", + -14.785917282104492 + ], + [ + "▁holler", + -14.785926818847656 + ], + [ + "▁simulcast", + -14.785943031311035 + ], + [ + "▁gazillion", + -14.78594970703125 + ], + [ + "▁Roosters", + -14.785956382751465 + ], + [ + "fringe", + -14.786064147949219 + ], + [ + "anse", + -14.786117553710938 + ], + [ + "▁investigational", + -14.78615951538086 + ], + [ + "▁Mex", + -14.786205291748047 + ], + [ + "▁ville", + -14.786229133605957 + ], + [ + "▁Stravinsky", + -14.786249160766602 + ], + [ + "▁eV", + -14.786279678344727 + ], + [ + "▁fifa", + -14.786293029785156 + ], + [ + "▁gcc", + -14.786311149597168 + ], + [ + "▁ripper", + -14.786327362060547 + ], + [ + "▁ostentatious", + -14.786335945129395 + ], + [ + "▁shareware", + -14.786364555358887 + ], + [ + "▁ramekin", + -14.786413192749023 + ], + [ + "pä", + -14.7864351272583 + ], + [ + "vá", + -14.786457061767578 + ], + [ + "▁mashing", + -14.786493301391602 + ], + [ + "▁MBR", + -14.786555290222168 + ], + [ + "ktu", + -14.78657054901123 + ], + [ + "CIL", + -14.786601066589355 + ], + [ + "oderma", + -14.786605834960938 + ], + [ + "▁recklessness", + -14.786622047424316 + ], + [ + "aesthetic", + -14.786657333374023 + ], + [ + "▁naman", + -14.78668212890625 + ], + [ + "▁unscientific", + -14.786683082580566 + ], + [ + "Dump", + -14.786686897277832 + ], + [ + "▁RTM", + -14.786711692810059 + ], + [ + "會", + -14.786725997924805 + ], + [ + "▁pronouncement", + -14.786728858947754 + ], + [ + "▁Ghan", + -14.786751747131348 + ], + [ + "▁boilerplate", + -14.786771774291992 + ], + [ + "▁Hutchins", + -14.786786079406738 + ], + [ + "wijk", + -14.786794662475586 + ], + [ + "▁tachometer", + -14.786822319030762 + ], + [ + "pfer", + -14.786825180053711 + ], + [ + "▁Wasser", + -14.786859512329102 + ], + [ + "6500", + -14.786876678466797 + ], + [ + "▁pucker", + -14.786928176879883 + ], + [ + "▁rascal", + -14.786940574645996 + ], + [ + "olithic", + -14.786954879760742 + ], + [ + "▁contributory", + -14.78696060180664 + ], + [ + "rike", + -14.78700065612793 + ], + [ + "THIS", + -14.787016868591309 + ], + [ + "▁hotkey", + -14.787053108215332 + ], + [ + "▁blazers", + -14.787074089050293 + ], + [ + "▁Ply", + -14.787116050720215 + ], + [ + "rken", + -14.787123680114746 + ], + [ + "▁Sheik", + -14.787135124206543 + ], + [ + "▁dente", + -14.787142753601074 + ], + [ + "▁ITT", + -14.787152290344238 + ], + [ + "okh", + -14.787172317504883 + ], + [ + "Rome", + -14.787181854248047 + ], + [ + "▁kickbacks", + -14.787198066711426 + ], + [ + "▁quietness", + -14.787214279174805 + ], + [ + "conn", + -14.787243843078613 + ], + [ + "Blake", + -14.78725528717041 + ], + [ + "▁soviet", + -14.78726577758789 + ], + [ + "ruch", + -14.787294387817383 + ], + [ + "▁vulcan", + -14.787304878234863 + ], + [ + "▁erythrocyte", + -14.787306785583496 + ], + [ + "▁Abreu", + -14.787307739257812 + ], + [ + "▁Deserve", + -14.787313461303711 + ], + [ + "▁chiral", + -14.78731632232666 + ], + [ + "▁sanctify", + -14.787318229675293 + ], + [ + "▁Ratchet", + -14.787373542785645 + ], + [ + "Tyr", + -14.787384033203125 + ], + [ + "patri", + -14.787391662597656 + ], + [ + "▁ACF", + -14.787398338317871 + ], + [ + "uha", + -14.787412643432617 + ], + [ + "▁Ingraham", + -14.78741455078125 + ], + [ + "Truck", + -14.787446022033691 + ], + [ + "leptic", + -14.787470817565918 + ], + [ + "▁Ingalls", + -14.787553787231445 + ], + [ + "▁Salz", + -14.787558555603027 + ], + [ + "▁ONS", + -14.787574768066406 + ], + [ + "Warner", + -14.787588119506836 + ], + [ + "bearers", + -14.78763198852539 + ], + [ + "▁Pract", + -14.787667274475098 + ], + [ + "▁Halliday", + -14.78771686553955 + ], + [ + "▁Dartmoor", + -14.787724494934082 + ], + [ + "▁AWA", + -14.787800788879395 + ], + [ + "Museum", + -14.787810325622559 + ], + [ + "▁WEIGHT", + -14.787816047668457 + ], + [ + "È", + -14.78785514831543 + ], + [ + "▁Gallatin", + -14.787898063659668 + ], + [ + "▁Hezekiah", + -14.787909507751465 + ], + [ + "rotation", + -14.787941932678223 + ], + [ + "decor", + -14.787944793701172 + ], + [ + "Larry", + -14.787954330444336 + ], + [ + "▁Malden", + -14.787989616394043 + ], + [ + "▁922", + -14.787991523742676 + ], + [ + "▁choline", + -14.787993431091309 + ], + [ + "▁Goalkeeper", + -14.788002967834473 + ], + [ + "რ", + -14.788033485412598 + ], + [ + "▁unwitting", + -14.788041114807129 + ], + [ + "▁AISI", + -14.788057327270508 + ], + [ + "Glen", + -14.788070678710938 + ], + [ + "▁MOUNT", + -14.788107872009277 + ], + [ + "Olympic", + -14.788125038146973 + ], + [ + "øy", + -14.788128852844238 + ], + [ + "▁Neanderthal", + -14.788131713867188 + ], + [ + "▁flickered", + -14.788175582885742 + ], + [ + "▁urns", + -14.788190841674805 + ], + [ + "▁Marginal", + -14.788235664367676 + ], + [ + "CKER", + -14.788244247436523 + ], + [ + "▁ð", + -14.788265228271484 + ], + [ + "▁Wakanda", + -14.788267135620117 + ], + [ + "▁grubby", + -14.788289070129395 + ], + [ + "▁platonic", + -14.788294792175293 + ], + [ + "▁Elmhurst", + -14.788331031799316 + ], + [ + "▁hydrostatic", + -14.788338661193848 + ], + [ + "▁fda", + -14.78834056854248 + ], + [ + "faculty", + -14.788355827331543 + ], + [ + "enhall", + -14.788362503051758 + ], + [ + "▁Seasoning", + -14.788374900817871 + ], + [ + "▁924", + -14.78840446472168 + ], + [ + "▁Nasal", + -14.788467407226562 + ], + [ + "icha", + -14.788468360900879 + ], + [ + "▁Remus", + -14.788508415222168 + ], + [ + "Internal", + -14.78860855102539 + ], + [ + "ERG", + -14.788620948791504 + ], + [ + "industri", + -14.788627624511719 + ], + [ + "▁Ideology", + -14.788627624511719 + ], + [ + "boul", + -14.788681030273438 + ], + [ + "templates", + -14.788708686828613 + ], + [ + "nerd", + -14.788711547851562 + ], + [ + "▁gnat", + -14.788718223571777 + ], + [ + "▁proportionately", + -14.788745880126953 + ], + [ + "survival", + -14.788753509521484 + ], + [ + "▁SEI", + -14.788786888122559 + ], + [ + "▁hemispheres", + -14.788816452026367 + ], + [ + "▁exonerated", + -14.788823127746582 + ], + [ + "▁irregularity", + -14.7888765335083 + ], + [ + "▁ARIA", + -14.788891792297363 + ], + [ + "▁Horned", + -14.788905143737793 + ], + [ + "▁Urinary", + -14.788908004760742 + ], + [ + "▁Agilent", + -14.788911819458008 + ], + [ + "▁accentuates", + -14.788912773132324 + ], + [ + "▁Naylor", + -14.788914680480957 + ], + [ + "▁Capa", + -14.788930892944336 + ], + [ + "Several", + -14.788948059082031 + ], + [ + "▁DSD", + -14.788976669311523 + ], + [ + "▁NZD", + -14.788994789123535 + ], + [ + "Medic", + -14.789019584655762 + ], + [ + "rard", + -14.789058685302734 + ], + [ + "ctions", + -14.789102554321289 + ], + [ + "▁yan", + -14.78911304473877 + ], + [ + "▁vanquished", + -14.78915023803711 + ], + [ + "▁3800", + -14.789172172546387 + ], + [ + "obj", + -14.78917407989502 + ], + [ + "▁Optimizer", + -14.789194107055664 + ], + [ + "fangled", + -14.789200782775879 + ], + [ + "▁Sparky", + -14.789264678955078 + ], + [ + "▁empath", + -14.78926944732666 + ], + [ + "iata", + -14.789396286010742 + ], + [ + "Nike", + -14.789407730102539 + ], + [ + "▁Décor", + -14.789413452148438 + ], + [ + "▁Thermodynamics", + -14.789427757263184 + ], + [ + "▁viol", + -14.789430618286133 + ], + [ + "▁baptismal", + -14.789449691772461 + ], + [ + "研究", + -14.789477348327637 + ], + [ + "endum", + -14.789531707763672 + ], + [ + "ן", + -14.78953742980957 + ], + [ + "virgin", + -14.789591789245605 + ], + [ + "▁godmother", + -14.789612770080566 + ], + [ + "visited", + -14.789678573608398 + ], + [ + "Attack", + -14.789679527282715 + ], + [ + "▁conductance", + -14.789687156677246 + ], + [ + "▁REGISTRATION", + -14.789690971374512 + ], + [ + "▁crested", + -14.789714813232422 + ], + [ + "▁arty", + -14.789730072021484 + ], + [ + "▁McGinn", + -14.789732933044434 + ], + [ + "▁synthesizing", + -14.789766311645508 + ], + [ + "▁dismount", + -14.78978157043457 + ], + [ + "▁Petru", + -14.789819717407227 + ], + [ + "▁Streptococcus", + -14.7898530960083 + ], + [ + "▁Woodpecker", + -14.789863586425781 + ], + [ + "▁Baptiste", + -14.789881706237793 + ], + [ + "▁Fiori", + -14.789921760559082 + ], + [ + "waving", + -14.78993034362793 + ], + [ + "▁Kohn", + -14.789941787719727 + ], + [ + "▁plait", + -14.78996467590332 + ], + [ + "▁MetaTrader", + -14.789970397949219 + ], + [ + "▁한", + -14.790019989013672 + ], + [ + "▁Coker", + -14.790030479431152 + ], + [ + "dres", + -14.79005241394043 + ], + [ + "▁Payout", + -14.790067672729492 + ], + [ + "▁Helsing", + -14.790077209472656 + ], + [ + "▁immemorial", + -14.790108680725098 + ], + [ + "▁WRITE", + -14.790122985839844 + ], + [ + "▁Sere", + -14.790139198303223 + ], + [ + "▁stilts", + -14.790143013000488 + ], + [ + "BALL", + -14.790151596069336 + ], + [ + "▁Hoh", + -14.790180206298828 + ], + [ + "▁Nashik", + -14.790221214294434 + ], + [ + "▁Dozier", + -14.790227890014648 + ], + [ + "▁canvassing", + -14.790243148803711 + ], + [ + "▁Deane", + -14.790246963500977 + ], + [ + "sculpt", + -14.790249824523926 + ], + [ + "copyright", + -14.790267944335938 + ], + [ + "▁scorned", + -14.79028034210205 + ], + [ + "▁Vane", + -14.790353775024414 + ], + [ + "▁Yahya", + -14.790393829345703 + ], + [ + "▁surrogates", + -14.790460586547852 + ], + [ + "pulsion", + -14.790472030639648 + ], + [ + "▁snarled", + -14.790488243103027 + ], + [ + "reply", + -14.790555000305176 + ], + [ + "▁callbacks", + -14.790559768676758 + ], + [ + "Advance", + -14.790571212768555 + ], + [ + "▁chauffeurs", + -14.790593147277832 + ], + [ + "▁Mavis", + -14.790596961975098 + ], + [ + "▁Dropped", + -14.790626525878906 + ], + [ + "basement", + -14.790632247924805 + ], + [ + "▁fireproof", + -14.790671348571777 + ], + [ + "piracy", + -14.790674209594727 + ], + [ + "▁lithe", + -14.790677070617676 + ], + [ + "rajan", + -14.790745735168457 + ], + [ + "increased", + -14.790785789489746 + ], + [ + "alpine", + -14.790843963623047 + ], + [ + "▁PPL", + -14.790850639343262 + ], + [ + "▁unevenly", + -14.79085922241211 + ], + [ + "▁eliciting", + -14.790861129760742 + ], + [ + "▁archeologist", + -14.790903091430664 + ], + [ + "▁monstrosity", + -14.790955543518066 + ], + [ + "▁Moul", + -14.790973663330078 + ], + [ + "scout", + -14.791010856628418 + ], + [ + "▁Eni", + -14.791011810302734 + ], + [ + "▁gettin", + -14.791051864624023 + ], + [ + "lomi", + -14.791064262390137 + ], + [ + "▁Verna", + -14.791068077087402 + ], + [ + "▁distorts", + -14.791082382202148 + ], + [ + "▁Malmö", + -14.791104316711426 + ], + [ + "▁Masquerade", + -14.791109085083008 + ], + [ + "guaranteed", + -14.791121482849121 + ], + [ + "▁DisplayPort", + -14.791122436523438 + ], + [ + "▁Seabrook", + -14.791139602661133 + ], + [ + "▁Coordinated", + -14.791141510009766 + ], + [ + "▁spanner", + -14.791172981262207 + ], + [ + "▁Bento", + -14.791186332702637 + ], + [ + "▁muito", + -14.791186332702637 + ], + [ + "▁figurehead", + -14.791223526000977 + ], + [ + "▁gatekeeper", + -14.791232109069824 + ], + [ + "▁Chatterjee", + -14.791260719299316 + ], + [ + "divi", + -14.791265487670898 + ], + [ + "▁Biotechnol", + -14.791340827941895 + ], + [ + "▁harken", + -14.791366577148438 + ], + [ + "begin", + -14.79138469696045 + ], + [ + "▁Jaga", + -14.791397094726562 + ], + [ + "▁HTS", + -14.791417121887207 + ], + [ + "▁Manus", + -14.791422843933105 + ], + [ + "▁Sieve", + -14.791437149047852 + ], + [ + "▁scouted", + -14.7914457321167 + ], + [ + "▁Asparagus", + -14.791486740112305 + ], + [ + "▁Corte", + -14.791487693786621 + ], + [ + "▁Rov", + -14.791488647460938 + ], + [ + "▁guestbook", + -14.791508674621582 + ], + [ + "▁hydrothermal", + -14.791528701782227 + ], + [ + "▁INDIANAPOLIS", + -14.791540145874023 + ], + [ + "▁Stalinist", + -14.791557312011719 + ], + [ + "▁echelons", + -14.791571617126465 + ], + [ + "ergo", + -14.79159927368164 + ], + [ + "▁slowness", + -14.791600227355957 + ], + [ + "▁FULLY", + -14.791603088378906 + ], + [ + "▁KKR", + -14.791607856750488 + ], + [ + "assault", + -14.791664123535156 + ], + [ + "rrer", + -14.791679382324219 + ], + [ + "▁meatball", + -14.791679382324219 + ], + [ + "▁scoundrel", + -14.791681289672852 + ], + [ + "口", + -14.791716575622559 + ], + [ + "▁Newsday", + -14.791776657104492 + ], + [ + "▁lounger", + -14.791777610778809 + ], + [ + "▁Depend", + -14.791780471801758 + ], + [ + "▁Moravian", + -14.791808128356934 + ], + [ + "fico", + -14.791817665100098 + ], + [ + "lubri", + -14.791852951049805 + ], + [ + "▁Poké", + -14.791874885559082 + ], + [ + "▁Panamanian", + -14.791882514953613 + ], + [ + "Plane", + -14.791895866394043 + ], + [ + "pointe", + -14.791912078857422 + ], + [ + "▁Fearing", + -14.791937828063965 + ], + [ + "▁Patten", + -14.791971206665039 + ], + [ + "▁sparrows", + -14.791976928710938 + ], + [ + "▁ABSOLUTELY", + -14.792009353637695 + ], + [ + "▁keystrokes", + -14.792057037353516 + ], + [ + "▁chiseled", + -14.79206657409668 + ], + [ + "oyed", + -14.792086601257324 + ], + [ + "▁pharmacokinetics", + -14.792131423950195 + ], + [ + "▁competi", + -14.792141914367676 + ], + [ + "Somebody", + -14.792182922363281 + ], + [ + "▁Mentioned", + -14.79218864440918 + ], + [ + "▁Hennepin", + -14.792200088500977 + ], + [ + "▁OHS", + -14.792217254638672 + ], + [ + "▁videographers", + -14.792222023010254 + ], + [ + "objects", + -14.792227745056152 + ], + [ + "▁679", + -14.792229652404785 + ], + [ + "▁có", + -14.792274475097656 + ], + [ + "▁paintwork", + -14.79228687286377 + ], + [ + "spiele", + -14.792288780212402 + ], + [ + "tennis", + -14.792289733886719 + ], + [ + "▁RESPONSIBILITY", + -14.792330741882324 + ], + [ + "Lust", + -14.792381286621094 + ], + [ + "▁Endocrinol", + -14.79240894317627 + ], + [ + "▁balding", + -14.792420387268066 + ], + [ + "▁Acoustics", + -14.792438507080078 + ], + [ + "▁Ovarian", + -14.792449951171875 + ], + [ + "▁Gamecocks", + -14.792474746704102 + ], + [ + "▁lighthouses", + -14.792494773864746 + ], + [ + "▁Famine", + -14.792497634887695 + ], + [ + "▁cantaloupe", + -14.79251480102539 + ], + [ + "▁Cajon", + -14.792525291442871 + ], + [ + "▁capitalisation", + -14.792611122131348 + ], + [ + "▁Formulation", + -14.792613983154297 + ], + [ + "▁sabbath", + -14.792617797851562 + ], + [ + "ию", + -14.792619705200195 + ], + [ + "▁sidetracked", + -14.792628288269043 + ], + [ + "▁Pattinson", + -14.792647361755371 + ], + [ + "▁Ricard", + -14.792658805847168 + ], + [ + "▁BCP", + -14.792665481567383 + ], + [ + "▁Hath", + -14.792689323425293 + ], + [ + "▁Biographical", + -14.792698860168457 + ], + [ + "mukh", + -14.792719841003418 + ], + [ + "▁THURSDAY", + -14.792742729187012 + ], + [ + "▁Solitude", + -14.792747497558594 + ], + [ + "mede", + -14.792784690856934 + ], + [ + "▁leer", + -14.792799949645996 + ], + [ + "robo", + -14.792811393737793 + ], + [ + "▁Padua", + -14.79281234741211 + ], + [ + "Vet", + -14.792829513549805 + ], + [ + "▁Stepan", + -14.792837142944336 + ], + [ + "cleaner", + -14.792852401733398 + ], + [ + "▁Abundant", + -14.79287338256836 + ], + [ + "▁tickling", + -14.792922019958496 + ], + [ + "▁saluted", + -14.792928695678711 + ], + [ + "▁Haver", + -14.792954444885254 + ], + [ + "▁Vocalist", + -14.79297924041748 + ], + [ + "qw", + -14.79300594329834 + ], + [ + "στ", + -14.793042182922363 + ], + [ + "alto", + -14.793054580688477 + ], + [ + "iaceae", + -14.793118476867676 + ], + [ + "▁Hori", + -14.793137550354004 + ], + [ + "▁puffiness", + -14.793145179748535 + ], + [ + "cato", + -14.793157577514648 + ], + [ + "pyridine", + -14.793198585510254 + ], + [ + "▁smock", + -14.793218612670898 + ], + [ + "cav", + -14.793257713317871 + ], + [ + "▁GAM", + -14.793268203735352 + ], + [ + "DRO", + -14.793272018432617 + ], + [ + "▁Casca", + -14.793272972106934 + ], + [ + "▁phenomenology", + -14.79327392578125 + ], + [ + "apache", + -14.793275833129883 + ], + [ + "▁Sotomayor", + -14.793286323547363 + ], + [ + "Purchase", + -14.793315887451172 + ], + [ + "▁gerrymandering", + -14.793367385864258 + ], + [ + "1870", + -14.79338550567627 + ], + [ + "bish", + -14.793463706970215 + ], + [ + "▁HX", + -14.793498992919922 + ], + [ + "▁Slipper", + -14.793501853942871 + ], + [ + "uddha", + -14.79354190826416 + ], + [ + "▁Medellin", + -14.793582916259766 + ], + [ + "▁antifreeze", + -14.793608665466309 + ], + [ + "▁tempest", + -14.793619155883789 + ], + [ + "iscus", + -14.793634414672852 + ], + [ + "▁558", + -14.793708801269531 + ], + [ + "employees", + -14.793780326843262 + ], + [ + "制", + -14.793845176696777 + ], + [ + "▁steely", + -14.793846130371094 + ], + [ + "VZ", + -14.793874740600586 + ], + [ + "▁Spitz", + -14.793896675109863 + ], + [ + "▁Undercover", + -14.793927192687988 + ], + [ + "▁solute", + -14.793930053710938 + ], + [ + "tisch", + -14.793938636779785 + ], + [ + "declared", + -14.79395866394043 + ], + [ + "▁millimetres", + -14.793959617614746 + ], + [ + "▁ALPHA", + -14.793968200683594 + ], + [ + "▁serendipity", + -14.793968200683594 + ], + [ + "Duty", + -14.793973922729492 + ], + [ + "tober", + -14.793987274169922 + ], + [ + "▁ACD", + -14.793997764587402 + ], + [ + "▁Pettit", + -14.79400634765625 + ], + [ + "▁Parlour", + -14.79403305053711 + ], + [ + "▁plundered", + -14.794046401977539 + ], + [ + "▁disagreeable", + -14.794049263000488 + ], + [ + "▁Commandant", + -14.79405403137207 + ], + [ + "machines", + -14.794071197509766 + ], + [ + "▁Canned", + -14.794075012207031 + ], + [ + "hedra", + -14.794081687927246 + ], + [ + "▁relativistic", + -14.794096946716309 + ], + [ + "▁Habsburg", + -14.79410457611084 + ], + [ + "incl", + -14.794116973876953 + ], + [ + "▁Oligo", + -14.794142723083496 + ], + [ + "▁IATA", + -14.794169425964355 + ], + [ + "▁Harri", + -14.794239044189453 + ], + [ + "▁sensitization", + -14.794244766235352 + ], + [ + "äch", + -14.794318199157715 + ], + [ + "▁Hallowe", + -14.794326782226562 + ], + [ + "tph", + -14.794333457946777 + ], + [ + "▁PUMP", + -14.794340133666992 + ], + [ + "▁Fram", + -14.794342041015625 + ], + [ + "▁DMSO", + -14.79434585571289 + ], + [ + "▁USMC", + -14.794368743896484 + ], + [ + "▁misfortunes", + -14.794408798217773 + ], + [ + "ング", + -14.794422149658203 + ], + [ + "▁capsicum", + -14.794425964355469 + ], + [ + "▁coldness", + -14.794435501098633 + ], + [ + "▁UCD", + -14.794437408447266 + ], + [ + "royd", + -14.79444408416748 + ], + [ + "jevic", + -14.794458389282227 + ], + [ + "▁Belcher", + -14.794468879699707 + ], + [ + "▁platitudes", + -14.7944917678833 + ], + [ + "czynski", + -14.794510841369629 + ], + [ + "▁Tj", + -14.794526100158691 + ], + [ + "▁lymphocyte", + -14.794570922851562 + ], + [ + "▁plagiarized", + -14.794580459594727 + ], + [ + "▁aubergine", + -14.794597625732422 + ], + [ + "▁Stakeholders", + -14.794598579406738 + ], + [ + "▁shrieking", + -14.794607162475586 + ], + [ + "▁PPR", + -14.794610023498535 + ], + [ + "fielder", + -14.794617652893066 + ], + [ + "рав", + -14.794621467590332 + ], + [ + "▁Pkwy", + -14.794631004333496 + ], + [ + "fist", + -14.794641494750977 + ], + [ + "▁Anthropo", + -14.794645309448242 + ], + [ + "▁straying", + -14.794656753540039 + ], + [ + "▁unmask", + -14.794683456420898 + ], + [ + "▁MEDI", + -14.794687271118164 + ], + [ + "▁Swin", + -14.79469108581543 + ], + [ + "▁Trou", + -14.794724464416504 + ], + [ + "▁IWC", + -14.794727325439453 + ], + [ + "quing", + -14.794729232788086 + ], + [ + "▁panchayat", + -14.794750213623047 + ], + [ + "zzzz", + -14.794751167297363 + ], + [ + "▁Marysville", + -14.794766426086426 + ], + [ + "ELLI", + -14.794788360595703 + ], + [ + "▁Scattered", + -14.794801712036133 + ], + [ + "ceding", + -14.794832229614258 + ], + [ + "▁Dekker", + -14.794842720031738 + ], + [ + "▁Ende", + -14.794862747192383 + ], + [ + "▁manicures", + -14.794873237609863 + ], + [ + "ringa", + -14.794918060302734 + ], + [ + "▁blokes", + -14.794963836669922 + ], + [ + "▁Superbike", + -14.794975280761719 + ], + [ + "▁startle", + -14.794995307922363 + ], + [ + "STEP", + -14.795098304748535 + ], + [ + "▁deconstructed", + -14.79510498046875 + ], + [ + "tiful", + -14.795188903808594 + ], + [ + "▁mtDNA", + -14.795218467712402 + ], + [ + "vington", + -14.795222282409668 + ], + [ + "▁KSA", + -14.795228958129883 + ], + [ + "▁Trott", + -14.795235633850098 + ], + [ + "▁HEM", + -14.79530143737793 + ], + [ + "▁scorch", + -14.795307159423828 + ], + [ + "▁PBR", + -14.795326232910156 + ], + [ + "▁Voll", + -14.795336723327637 + ], + [ + "▁Dera", + -14.795342445373535 + ], + [ + "IZA", + -14.795361518859863 + ], + [ + "▁Weill", + -14.795390129089355 + ], + [ + "▁nobleman", + -14.795402526855469 + ], + [ + "▁ELIZABETH", + -14.79542350769043 + ], + [ + "▁Rialto", + -14.795477867126465 + ], + [ + "▁Razak", + -14.79548168182373 + ], + [ + "viewing", + -14.795499801635742 + ], + [ + "▁erotica", + -14.795504570007324 + ], + [ + "▁jeopardizing", + -14.79552173614502 + ], + [ + "▁Laga", + -14.795530319213867 + ], + [ + "▁Piccolo", + -14.795537948608398 + ], + [ + "ERMAN", + -14.795565605163574 + ], + [ + "경", + -14.795570373535156 + ], + [ + "▁Micky", + -14.795594215393066 + ], + [ + "▁unloved", + -14.795645713806152 + ], + [ + "curse", + -14.795656204223633 + ], + [ + "indulgent", + -14.79565715789795 + ], + [ + "▁bokeh", + -14.795660018920898 + ], + [ + "▁Changi", + -14.795677185058594 + ], + [ + "▁Privy", + -14.795683860778809 + ], + [ + "▁Accompanying", + -14.795706748962402 + ], + [ + "▁Overlord", + -14.795727729797363 + ], + [ + "▁Kiyo", + -14.795732498168945 + ], + [ + "▁Killian", + -14.795746803283691 + ], + [ + "▁Macri", + -14.795751571655273 + ], + [ + "Hydro", + -14.795761108398438 + ], + [ + "▁Sian", + -14.795781135559082 + ], + [ + "▁Lupe", + -14.795783042907715 + ], + [ + "▁Snook", + -14.795853614807129 + ], + [ + "argue", + -14.79587173461914 + ], + [ + "▁sulfuric", + -14.79590129852295 + ], + [ + "▁Clima", + -14.795910835266113 + ], + [ + "▁dcor", + -14.795926094055176 + ], + [ + "▁armistice", + -14.795945167541504 + ], + [ + "▁Wagga", + -14.795950889587402 + ], + [ + "▁stile", + -14.795995712280273 + ], + [ + "▁DEX", + -14.795997619628906 + ], + [ + "▁DAMN", + -14.79601764678955 + ], + [ + "rmo", + -14.796037673950195 + ], + [ + "ț", + -14.796046257019043 + ], + [ + "▁phenergan", + -14.79610824584961 + ], + [ + "▁BRAKE", + -14.796124458312988 + ], + [ + "▁shamanic", + -14.796152114868164 + ], + [ + "▁Hayat", + -14.796168327331543 + ], + [ + "▁Daleks", + -14.796194076538086 + ], + [ + "▁hypertext", + -14.796198844909668 + ], + [ + "▁Ozzie", + -14.796246528625488 + ], + [ + "▁686", + -14.79625129699707 + ], + [ + "▁affi", + -14.796282768249512 + ], + [ + "Circ", + -14.79633617401123 + ], + [ + "▁Rina", + -14.796344757080078 + ], + [ + "▁Shafi", + -14.796345710754395 + ], + [ + "Gazette", + -14.796407699584961 + ], + [ + "▁respectability", + -14.796467781066895 + ], + [ + "▁disband", + -14.79647159576416 + ], + [ + "Jn", + -14.796481132507324 + ], + [ + "FLAG", + -14.796504974365234 + ], + [ + "▁POA", + -14.796531677246094 + ], + [ + "YX", + -14.796557426452637 + ], + [ + "▁Affirm", + -14.796567916870117 + ], + [ + "▁knickers", + -14.796568870544434 + ], + [ + "Alaska", + -14.796579360961914 + ], + [ + "▁Landmarks", + -14.796585083007812 + ], + [ + "▁€8", + -14.796610832214355 + ], + [ + "Venture", + -14.79661750793457 + ], + [ + "▁Graphs", + -14.796684265136719 + ], + [ + "▁SPARK", + -14.796684265136719 + ], + [ + "AFC", + -14.796714782714844 + ], + [ + "receive", + -14.796721458435059 + ], + [ + "▁funneled", + -14.796725273132324 + ], + [ + "▁Benue", + -14.796730041503906 + ], + [ + "▁Mersey", + -14.796732902526855 + ], + [ + "▁hydrogenated", + -14.796747207641602 + ], + [ + "▁historia", + -14.796753883361816 + ], + [ + "▁aspirated", + -14.796754837036133 + ], + [ + "▁walkie", + -14.796757698059082 + ], + [ + "▁OHL", + -14.79676342010498 + ], + [ + "▁Krsna", + -14.796769142150879 + ], + [ + "▁FOOT", + -14.796781539916992 + ], + [ + "▁Phish", + -14.796808242797852 + ], + [ + "▁Sperm", + -14.796838760375977 + ], + [ + "Updated", + -14.796865463256836 + ], + [ + "▁Awkward", + -14.796892166137695 + ], + [ + "▁Krieger", + -14.796918869018555 + ], + [ + "▁mollusk", + -14.79694652557373 + ], + [ + "्या", + -14.796960830688477 + ], + [ + "deni", + -14.796964645385742 + ], + [ + "▁covariance", + -14.796967506408691 + ], + [ + "▁drugmaker", + -14.79699420928955 + ], + [ + "TIL", + -14.797013282775879 + ], + [ + "attu", + -14.797015190124512 + ], + [ + "▁aeronautical", + -14.797045707702637 + ], + [ + "▁Balenciaga", + -14.797077178955078 + ], + [ + "▁commercialisation", + -14.797079086303711 + ], + [ + "▁Bookshop", + -14.797090530395508 + ], + [ + "▁william", + -14.797093391418457 + ], + [ + "▁Azores", + -14.79713249206543 + ], + [ + "▁Configuring", + -14.797144889831543 + ], + [ + "▁Springbok", + -14.797201156616211 + ], + [ + "▁Corvallis", + -14.797240257263184 + ], + [ + "▁BOP", + -14.797309875488281 + ], + [ + "ewski", + -14.797327041625977 + ], + [ + "▁ministered", + -14.797348022460938 + ], + [ + "▁fortresses", + -14.79736042022705 + ], + [ + "hmann", + -14.797364234924316 + ], + [ + "uvia", + -14.797480583190918 + ], + [ + "▁Sunnyside", + -14.797491073608398 + ], + [ + "▁Shingle", + -14.797497749328613 + ], + [ + "▁arching", + -14.797502517700195 + ], + [ + "▁ordain", + -14.797524452209473 + ], + [ + "▁GIVEAWAY", + -14.797567367553711 + ], + [ + "▁eggnog", + -14.797568321228027 + ], + [ + "▁BETA", + -14.797666549682617 + ], + [ + "Raven", + -14.79768180847168 + ], + [ + "▁Conce", + -14.797698020935059 + ], + [ + "brian", + -14.797724723815918 + ], + [ + "ogg", + -14.797759056091309 + ], + [ + "▁thermocouple", + -14.797794342041016 + ], + [ + "Mex", + -14.797809600830078 + ], + [ + "▁Stig", + -14.797842979431152 + ], + [ + "▁evacuating", + -14.797850608825684 + ], + [ + "▁Lottie", + -14.797856330871582 + ], + [ + "▁Kingman", + -14.797876358032227 + ], + [ + "▁metabolized", + -14.797893524169922 + ], + [ + "organizing", + -14.797932624816895 + ], + [ + "linski", + -14.797966003417969 + ], + [ + "▁RTF", + -14.7979736328125 + ], + [ + "▁733", + -14.798011779785156 + ], + [ + "▁※", + -14.798023223876953 + ], + [ + "▁LTV", + -14.798028945922852 + ], + [ + "▁Hofstra", + -14.798030853271484 + ], + [ + "▁Seated", + -14.798043251037598 + ], + [ + "▁Lef", + -14.798083305358887 + ], + [ + "▁unconscionable", + -14.798089981079102 + ], + [ + "▁Stephane", + -14.798096656799316 + ], + [ + "Lil", + -14.798108100891113 + ], + [ + "Equi", + -14.798116683959961 + ], + [ + "▁1720", + -14.798125267028809 + ], + [ + "▁Southfield", + -14.798150062561035 + ], + [ + "▁어", + -14.798160552978516 + ], + [ + "▁sprigs", + -14.79819107055664 + ], + [ + "ECH", + -14.798238754272461 + ], + [ + "localhost", + -14.798284530639648 + ], + [ + "▁Adorno", + -14.798357009887695 + ], + [ + "▁OPTIONS", + -14.798367500305176 + ], + [ + "▁barstools", + -14.79840087890625 + ], + [ + "absorption", + -14.798439025878906 + ], + [ + "▁preform", + -14.798456192016602 + ], + [ + "▁Pembrokeshire", + -14.798458099365234 + ], + [ + "▁constricted", + -14.798501014709473 + ], + [ + "▁Additions", + -14.798501968383789 + ], + [ + "▁Profitable", + -14.798519134521484 + ], + [ + "▁Alexey", + -14.798547744750977 + ], + [ + "▁householders", + -14.798595428466797 + ], + [ + "▁teeter", + -14.798615455627441 + ], + [ + "▁marginalization", + -14.798622131347656 + ], + [ + "igli", + -14.798680305480957 + ], + [ + "▁Reels", + -14.79871940612793 + ], + [ + "▁Diversion", + -14.798727989196777 + ], + [ + "▁Pitbull", + -14.798730850219727 + ], + [ + "▁verso", + -14.79874324798584 + ], + [ + "SNP", + -14.798748970031738 + ], + [ + "▁Jamboree", + -14.798754692077637 + ], + [ + "agree", + -14.798796653747559 + ], + [ + "▁Kwame", + -14.798840522766113 + ], + [ + "promote", + -14.798851013183594 + ], + [ + "▁CTD", + -14.798851013183594 + ], + [ + "▁masturbating", + -14.798852920532227 + ], + [ + "▁lama", + -14.798858642578125 + ], + [ + "PFC", + -14.79886245727539 + ], + [ + "▁mung", + -14.798870086669922 + ], + [ + "▁Schizophrenia", + -14.798885345458984 + ], + [ + "Pixel", + -14.798900604248047 + ], + [ + "▁meetups", + -14.798910140991211 + ], + [ + "GIRL", + -14.79902172088623 + ], + [ + "▁Combustion", + -14.79903793334961 + ], + [ + "▁Nagaland", + -14.799076080322266 + ], + [ + "▁SOFT", + -14.799083709716797 + ], + [ + "▁바", + -14.799090385437012 + ], + [ + "▁TUESDAY", + -14.799103736877441 + ], + [ + "▁INSTALL", + -14.799131393432617 + ], + [ + "▁bailiff", + -14.799132347106934 + ], + [ + "ニ", + -14.799145698547363 + ], + [ + "CASE", + -14.79920768737793 + ], + [ + "▁Balk", + -14.79927921295166 + ], + [ + "▁Crimestoppers", + -14.799310684204102 + ], + [ + "▁func", + -14.799328804016113 + ], + [ + "▁voy", + -14.79932975769043 + ], + [ + "▁Mirren", + -14.799336433410645 + ], + [ + "▁Strateg", + -14.799354553222656 + ], + [ + "▁Insanity", + -14.799388885498047 + ], + [ + "▁politico", + -14.799417495727539 + ], + [ + "거", + -14.799492835998535 + ], + [ + "▁在", + -14.799534797668457 + ], + [ + "▁Travolta", + -14.799548149108887 + ], + [ + "▁629", + -14.799564361572266 + ], + [ + "▁Pocahontas", + -14.799568176269531 + ], + [ + "▁swabs", + -14.799619674682617 + ], + [ + "▁Loyalist", + -14.799636840820312 + ], + [ + "▁peloton", + -14.799637794494629 + ], + [ + "▁Sensi", + -14.799659729003906 + ], + [ + "▁parfait", + -14.799660682678223 + ], + [ + "▁bunion", + -14.799662590026855 + ], + [ + "▁nasties", + -14.799684524536133 + ], + [ + "Enable", + -14.799748420715332 + ], + [ + "▁groomsmen", + -14.799773216247559 + ], + [ + "▁jinx", + -14.799783706665039 + ], + [ + "▁replayed", + -14.799789428710938 + ], + [ + "▁appellants", + -14.799803733825684 + ], + [ + "▁Arvi", + -14.799823760986328 + ], + [ + "▁WINE", + -14.799842834472656 + ], + [ + "Mann", + -14.799860000610352 + ], + [ + "▁litigants", + -14.799878120422363 + ], + [ + "▁Blenheim", + -14.799912452697754 + ], + [ + "otoxin", + -14.799915313720703 + ], + [ + "Tee", + -14.799921989440918 + ], + [ + "RRI", + -14.799933433532715 + ], + [ + "PTC", + -14.799947738647461 + ], + [ + "▁surreptitiously", + -14.799972534179688 + ], + [ + "▁Longhorn", + -14.800004959106445 + ], + [ + "▁verve", + -14.800021171569824 + ], + [ + "▁decibels", + -14.800063133239746 + ], + [ + "▁Tween", + -14.800086975097656 + ], + [ + "dorp", + -14.800104141235352 + ], + [ + "▁Hyo", + -14.800134658813477 + ], + [ + "▁nanomaterials", + -14.800140380859375 + ], + [ + "▁Winton", + -14.800145149230957 + ], + [ + "heen", + -14.800149917602539 + ], + [ + "ERSON", + -14.800177574157715 + ], + [ + "▁immunisation", + -14.800195693969727 + ], + [ + "▁Breweries", + -14.800196647644043 + ], + [ + "mhz", + -14.80019760131836 + ], + [ + "ECTION", + -14.800200462341309 + ], + [ + "▁bluffs", + -14.800227165222168 + ], + [ + "▁spillover", + -14.8002347946167 + ], + [ + "▁MacMillan", + -14.800250053405762 + ], + [ + "▁mario", + -14.800267219543457 + ], + [ + "▁overpayment", + -14.800320625305176 + ], + [ + "后", + -14.800353050231934 + ], + [ + "▁retrial", + -14.800354957580566 + ], + [ + "▁sexier", + -14.800395965576172 + ], + [ + "▁causeway", + -14.800397872924805 + ], + [ + "bail", + -14.800408363342285 + ], + [ + "scientist", + -14.800408363342285 + ], + [ + "▁TAFE", + -14.800414085388184 + ], + [ + "onville", + -14.80042552947998 + ], + [ + "▁Spri", + -14.800433158874512 + ], + [ + "თ", + -14.800435066223145 + ], + [ + "curator", + -14.800437927246094 + ], + [ + "stellar", + -14.80044174194336 + ], + [ + "▁З", + -14.800446510314941 + ], + [ + "▁phosphorylated", + -14.800493240356445 + ], + [ + "▁hems", + -14.800521850585938 + ], + [ + "▁Lilli", + -14.800549507141113 + ], + [ + "▁Postage", + -14.800567626953125 + ], + [ + "▁Panch", + -14.8005952835083 + ], + [ + "▁Clenbuterol", + -14.800621032714844 + ], + [ + "▁macbook", + -14.80062484741211 + ], + [ + "▁Reusable", + -14.800627708435059 + ], + [ + "chun", + -14.800634384155273 + ], + [ + "▁TWENTY", + -14.800642013549805 + ], + [ + "▁sphincter", + -14.800642967224121 + ], + [ + "Beast", + -14.800678253173828 + ], + [ + "▁Burley", + -14.800679206848145 + ], + [ + "CSO", + -14.800694465637207 + ], + [ + "▁daze", + -14.80073356628418 + ], + [ + "▁Blocker", + -14.800735473632812 + ], + [ + "hopped", + -14.800759315490723 + ], + [ + "▁CDO", + -14.800771713256836 + ], + [ + "▁£90", + -14.800777435302734 + ], + [ + "▁deciphering", + -14.80079174041748 + ], + [ + "Statement", + -14.800826072692871 + ], + [ + "▁missive", + -14.800837516784668 + ], + [ + "▁Maytag", + -14.800859451293945 + ], + [ + "▁danish", + -14.800896644592285 + ], + [ + "overall", + -14.800908088684082 + ], + [ + "▁Adani", + -14.800960540771484 + ], + [ + "▁Bauman", + -14.800963401794434 + ], + [ + "▁FAILURE", + -14.800993919372559 + ], + [ + "noch", + -14.801004409790039 + ], + [ + "ナ", + -14.801074028015137 + ], + [ + "▁eva", + -14.801080703735352 + ], + [ + "oq", + -14.801090240478516 + ], + [ + "trea", + -14.80111026763916 + ], + [ + "▁Sorb", + -14.801136016845703 + ], + [ + "▁Ravelry", + -14.80117416381836 + ], + [ + "ibrate", + -14.801197052001953 + ], + [ + "▁Roch", + -14.801222801208496 + ], + [ + "▁ndër", + -14.80123233795166 + ], + [ + "▁ethnography", + -14.801249504089355 + ], + [ + "▁numer", + -14.80125904083252 + ], + [ + "▁reiterates", + -14.801286697387695 + ], + [ + "Usually", + -14.801298141479492 + ], + [ + "▁Kula", + -14.801311492919922 + ], + [ + "▁Goran", + -14.801372528076172 + ], + [ + "▁Optus", + -14.80140495300293 + ], + [ + "▁Mercier", + -14.801440238952637 + ], + [ + "▁TAI", + -14.801484107971191 + ], + [ + "▁Muffin", + -14.801490783691406 + ], + [ + "▁felling", + -14.801494598388672 + ], + [ + "▁spiele", + -14.801507949829102 + ], + [ + "▁Finalists", + -14.801519393920898 + ], + [ + "▁Auditors", + -14.801535606384277 + ], + [ + "▁megawatt", + -14.80154800415039 + ], + [ + "logia", + -14.801575660705566 + ], + [ + "oxidants", + -14.801593780517578 + ], + [ + "▁licenced", + -14.801634788513184 + ], + [ + "▁corporeal", + -14.80166244506836 + ], + [ + "orak", + -14.801700592041016 + ], + [ + "pling", + -14.801746368408203 + ], + [ + "▁Interns", + -14.801751136779785 + ], + [ + "Birth", + -14.801826477050781 + ], + [ + "▁Criminology", + -14.80184555053711 + ], + [ + "▁lewis", + -14.801851272583008 + ], + [ + "▁Inpatient", + -14.801868438720703 + ], + [ + "▁amped", + -14.801897048950195 + ], + [ + "Multiple", + -14.801916122436523 + ], + [ + "chmann", + -14.801932334899902 + ], + [ + "▁lamina", + -14.801979064941406 + ], + [ + "Guil", + -14.801984786987305 + ], + [ + "▁intravenously", + -14.801994323730469 + ], + [ + "disable", + -14.802023887634277 + ], + [ + "▁dijo", + -14.802035331726074 + ], + [ + "▁Cinque", + -14.802037239074707 + ], + [ + "▁snowpack", + -14.80205249786377 + ], + [ + "▁Redman", + -14.80212116241455 + ], + [ + "▁SCAN", + -14.802145957946777 + ], + [ + "▁Namco", + -14.802146911621094 + ], + [ + "ệ", + -14.802173614501953 + ], + [ + "cred", + -14.802248001098633 + ], + [ + "▁physiotherapists", + -14.802276611328125 + ], + [ + "▁legwork", + -14.802279472351074 + ], + [ + "uuuuu", + -14.80229377746582 + ], + [ + "▁BES", + -14.8023099899292 + ], + [ + "▁Borno", + -14.802316665649414 + ], + [ + "▁Shorty", + -14.802319526672363 + ], + [ + "scholar", + -14.802352905273438 + ], + [ + "▁Lise", + -14.802364349365234 + ], + [ + "▁grat", + -14.802370071411133 + ], + [ + "▁haggle", + -14.802408218383789 + ], + [ + "▁corkscrew", + -14.80246353149414 + ], + [ + "▁Dov", + -14.802511215209961 + ], + [ + "▁BEAUTY", + -14.802525520324707 + ], + [ + "Ami", + -14.802528381347656 + ], + [ + "foli", + -14.802530288696289 + ], + [ + "▁thro", + -14.80253791809082 + ], + [ + "▁subtitled", + -14.802542686462402 + ], + [ + "▁dreamlike", + -14.802549362182617 + ], + [ + "▁Mantis", + -14.802569389343262 + ], + [ + "▁irrefutable", + -14.802578926086426 + ], + [ + "▁pheromone", + -14.802597045898438 + ], + [ + "▁Vasa", + -14.802597999572754 + ], + [ + "▁dui", + -14.80260944366455 + ], + [ + "Officer", + -14.802610397338867 + ], + [ + "▁Notley", + -14.8026123046875 + ], + [ + "▁purveyor", + -14.802644729614258 + ], + [ + "gateway", + -14.802657127380371 + ], + [ + "wagen", + -14.802663803100586 + ], + [ + "▁Zet", + -14.8026762008667 + ], + [ + "iyal", + -14.802684783935547 + ], + [ + "▁seabirds", + -14.802688598632812 + ], + [ + "Σ", + -14.802699089050293 + ], + [ + "▁cen", + -14.802726745605469 + ], + [ + "▁wasabi", + -14.802727699279785 + ], + [ + "▁MTR", + -14.80276870727539 + ], + [ + "▁Kyrgyz", + -14.80280590057373 + ], + [ + "▁neutrino", + -14.80283260345459 + ], + [ + "▁homily", + -14.802844047546387 + ], + [ + "goals", + -14.802846908569336 + ], + [ + "▁chariots", + -14.80291748046875 + ], + [ + "▁Naw", + -14.802969932556152 + ], + [ + "▁yachting", + -14.802971839904785 + ], + [ + "▁Lalit", + -14.803001403808594 + ], + [ + "▁Fredericton", + -14.80302906036377 + ], + [ + "▁Matic", + -14.803060531616211 + ], + [ + "▁Ohtani", + -14.803062438964844 + ], + [ + "▁glycine", + -14.80306339263916 + ], + [ + "EMO", + -14.803064346313477 + ], + [ + "▁buzzwords", + -14.80306625366211 + ], + [ + "loot", + -14.803098678588867 + ], + [ + "Assist", + -14.803105354309082 + ], + [ + "Won", + -14.803132057189941 + ], + [ + "▁significa", + -14.803135871887207 + ], + [ + "▁acidosis", + -14.803157806396484 + ], + [ + "▁NAIA", + -14.80317497253418 + ], + [ + "kash", + -14.803241729736328 + ], + [ + "buddy", + -14.803291320800781 + ], + [ + "▁BRC", + -14.803304672241211 + ], + [ + "▁Cilic", + -14.803306579589844 + ], + [ + "▁micronutrients", + -14.803314208984375 + ], + [ + "otec", + -14.803329467773438 + ], + [ + "▁UCS", + -14.803349494934082 + ], + [ + "Megan", + -14.803376197814941 + ], + [ + "▁REDD", + -14.803413391113281 + ], + [ + "▁Khomeini", + -14.803421974182129 + ], + [ + "▁ROE", + -14.803428649902344 + ], + [ + "TCC", + -14.803430557250977 + ], + [ + "▁milkshakes", + -14.80343246459961 + ], + [ + "hounds", + -14.803462982177734 + ], + [ + "▁Chatsworth", + -14.803545951843262 + ], + [ + "transferase", + -14.803557395935059 + ], + [ + "▁CSD", + -14.803582191467285 + ], + [ + "▁Aitken", + -14.80359935760498 + ], + [ + "isten", + -14.8036527633667 + ], + [ + "▁SAYS", + -14.803667068481445 + ], + [ + "Different", + -14.803668975830078 + ], + [ + "▁MAK", + -14.803711891174316 + ], + [ + "▁CHANCE", + -14.803722381591797 + ], + [ + "▁plastering", + -14.80374526977539 + ], + [ + "components", + -14.803767204284668 + ], + [ + "▁unrefined", + -14.803773880004883 + ], + [ + "▁Faucets", + -14.80382251739502 + ], + [ + "▁Fagan", + -14.803850173950195 + ], + [ + "▁Autonomy", + -14.803853034973145 + ], + [ + "MRT", + -14.80388069152832 + ], + [ + "lco", + -14.803888320922852 + ], + [ + "▁reactant", + -14.803902626037598 + ], + [ + "lvey", + -14.803909301757812 + ], + [ + "▁Exercising", + -14.803961753845215 + ], + [ + "ysse", + -14.803990364074707 + ], + [ + "▁Mmmm", + -14.803998947143555 + ], + [ + "▁Wonka", + -14.804019927978516 + ], + [ + "း", + -14.804024696350098 + ], + [ + "▁Qigong", + -14.804052352905273 + ], + [ + "▁Brix", + -14.804064750671387 + ], + [ + "crap", + -14.804071426391602 + ], + [ + "▁taverns", + -14.804110527038574 + ], + [ + "▁RESPONSIBLE", + -14.804134368896484 + ], + [ + "▁suppressant", + -14.804134368896484 + ], + [ + "▁calender", + -14.804163932800293 + ], + [ + "kë", + -14.804174423217773 + ], + [ + "▁Reus", + -14.804332733154297 + ], + [ + "▁4800", + -14.804338455200195 + ], + [ + "▁charlotte", + -14.804340362548828 + ], + [ + "▁brothels", + -14.804362297058105 + ], + [ + "▁Birdie", + -14.804364204406738 + ], + [ + "yea", + -14.80438232421875 + ], + [ + "▁iMovie", + -14.804444313049316 + ], + [ + "Peak", + -14.804447174072266 + ], + [ + "▁DRAW", + -14.804455757141113 + ], + [ + "isal", + -14.804492950439453 + ], + [ + "▁Crichton", + -14.8045072555542 + ], + [ + "▁Caribou", + -14.804574012756348 + ], + [ + "▁SEATTLE", + -14.804574012756348 + ], + [ + "▁KIR", + -14.804594039916992 + ], + [ + "Exodus", + -14.804624557495117 + ], + [ + "▁writeup", + -14.804633140563965 + ], + [ + "▁Jürgen", + -14.804638862609863 + ], + [ + "hoot", + -14.804671287536621 + ], + [ + "▁AUM", + -14.804679870605469 + ], + [ + "▁chevrolet", + -14.804682731628418 + ], + [ + "▁Vinson", + -14.804705619812012 + ], + [ + "Dame", + -14.804740905761719 + ], + [ + "▁Siro", + -14.804763793945312 + ], + [ + "grandson", + -14.804780006408691 + ], + [ + "▁Cossack", + -14.804784774780273 + ], + [ + "▁acetylcholine", + -14.804803848266602 + ], + [ + "arial", + -14.804810523986816 + ], + [ + "▁Koval", + -14.804817199707031 + ], + [ + "▁Joao", + -14.80482006072998 + ], + [ + "▁carnations", + -14.804838180541992 + ], + [ + "CLC", + -14.804854393005371 + ], + [ + "Sphere", + -14.804854393005371 + ], + [ + "▁ITHAKA", + -14.804880142211914 + ], + [ + "▁critiqued", + -14.804895401000977 + ], + [ + "▁Explicit", + -14.804917335510254 + ], + [ + "▁lynch", + -14.805000305175781 + ], + [ + "▁leprechaun", + -14.805023193359375 + ], + [ + "▁Kv", + -14.80502700805664 + ], + [ + "PMI", + -14.805102348327637 + ], + [ + "▁dns", + -14.805112838745117 + ], + [ + "▁ACTUALLY", + -14.805127143859863 + ], + [ + "▁Jaco", + -14.805137634277344 + ], + [ + "▁Hernández", + -14.805143356323242 + ], + [ + "▁Agnew", + -14.805144309997559 + ], + [ + "▁Valhalla", + -14.805164337158203 + ], + [ + "▁Mideast", + -14.80517864227295 + ], + [ + "▁Ralf", + -14.805179595947266 + ], + [ + "▁Quetta", + -14.805190086364746 + ], + [ + "drilled", + -14.805229187011719 + ], + [ + "▁upended", + -14.80525016784668 + ], + [ + "manu", + -14.805269241333008 + ], + [ + "▁Manpower", + -14.805303573608398 + ], + [ + "▁MIKE", + -14.805313110351562 + ], + [ + "▁Maury", + -14.805317878723145 + ], + [ + "▁Doh", + -14.805338859558105 + ], + [ + "▁hurtling", + -14.805346488952637 + ], + [ + "itty", + -14.805349349975586 + ], + [ + "ishes", + -14.805354118347168 + ], + [ + "▁TRC", + -14.805395126342773 + ], + [ + "▁Dugan", + -14.805404663085938 + ], + [ + "esper", + -14.805415153503418 + ], + [ + "▁MESSAGE", + -14.805419921875 + ], + [ + "▁riv", + -14.805510520935059 + ], + [ + "▁gainful", + -14.805521011352539 + ], + [ + "▁disembodied", + -14.805527687072754 + ], + [ + "▁Sinner", + -14.805530548095703 + ], + [ + "tuar", + -14.805536270141602 + ], + [ + "▁Mikro", + -14.805556297302246 + ], + [ + "▁Judson", + -14.805570602416992 + ], + [ + "▁SENIOR", + -14.80561637878418 + ], + [ + "▁Caviar", + -14.805617332458496 + ], + [ + "NTU", + -14.8056640625 + ], + [ + "▁angiotensin", + -14.805719375610352 + ], + [ + "▁PICTURE", + -14.805736541748047 + ], + [ + "▁Screws", + -14.805756568908691 + ], + [ + "interrupt", + -14.805769920349121 + ], + [ + "▁Bongo", + -14.805793762207031 + ], + [ + "×5", + -14.80579948425293 + ], + [ + "▁POLICY", + -14.805824279785156 + ], + [ + "▁spillway", + -14.805826187133789 + ], + [ + "▁Debates", + -14.805851936340332 + ], + [ + "Hear", + -14.805853843688965 + ], + [ + "▁bub", + -14.805912017822266 + ], + [ + "▁loyalist", + -14.80593490600586 + ], + [ + "yacht", + -14.805938720703125 + ], + [ + "▁Bertol", + -14.805967330932617 + ], + [ + "▁damask", + -14.80601978302002 + ], + [ + "▁Kawhi", + -14.806059837341309 + ], + [ + "▁Shauna", + -14.806063652038574 + ], + [ + "ferent", + -14.806072235107422 + ], + [ + "flare", + -14.806113243103027 + ], + [ + "estri", + -14.806131362915039 + ], + [ + "▁brocade", + -14.806142807006836 + ], + [ + "▁docent", + -14.806146621704102 + ], + [ + "DSP", + -14.806161880493164 + ], + [ + "▁comically", + -14.806180000305176 + ], + [ + "vile", + -14.80623722076416 + ], + [ + "▁fanfiction", + -14.806245803833008 + ], + [ + "▁historiography", + -14.806299209594727 + ], + [ + "▁Shimon", + -14.806320190429688 + ], + [ + "тив", + -14.806367874145508 + ], + [ + "ghat", + -14.806374549865723 + ], + [ + "▁Cocaine", + -14.806443214416504 + ], + [ + "▁cath", + -14.806446075439453 + ], + [ + "CERT", + -14.8064546585083 + ], + [ + "▁Trumbull", + -14.806461334228516 + ], + [ + "Champaign", + -14.80648136138916 + ], + [ + "▁Muffins", + -14.806497573852539 + ], + [ + "▁Salamanca", + -14.806506156921387 + ], + [ + "▁kilns", + -14.806517601013184 + ], + [ + "▁demonize", + -14.80652904510498 + ], + [ + "▁Illini", + -14.806574821472168 + ], + [ + "▁enquired", + -14.806581497192383 + ], + [ + "▁MoMA", + -14.806601524353027 + ], + [ + "territorial", + -14.806607246398926 + ], + [ + "▁Escrow", + -14.806634902954102 + ], + [ + "▁Velasquez", + -14.806680679321289 + ], + [ + "▁pollsters", + -14.806705474853516 + ], + [ + "▁Crayon", + -14.806734085083008 + ], + [ + "framing", + -14.80673599243164 + ], + [ + "▁Spectro", + -14.806756973266602 + ], + [ + "▁HON", + -14.80677318572998 + ], + [ + "▁sepia", + -14.806804656982422 + ], + [ + "▁Oyo", + -14.806829452514648 + ], + [ + "▁Jojo", + -14.806845664978027 + ], + [ + "▁carver", + -14.806890487670898 + ], + [ + "▁Closest", + -14.80689525604248 + ], + [ + "▁chastised", + -14.806912422180176 + ], + [ + "▁Clary", + -14.806917190551758 + ], + [ + "▁causa", + -14.806923866271973 + ], + [ + "▁FURTHER", + -14.806933403015137 + ], + [ + "▁Hanford", + -14.806962966918945 + ], + [ + "Created", + -14.806973457336426 + ], + [ + "▁maliciously", + -14.807029724121094 + ], + [ + "Demon", + -14.807048797607422 + ], + [ + "▁dystopia", + -14.807060241699219 + ], + [ + "Melissa", + -14.8070707321167 + ], + [ + "▁MPa", + -14.807092666625977 + ], + [ + "▁BECOME", + -14.807100296020508 + ], + [ + "▁typefaces", + -14.807104110717773 + ], + [ + "llinger", + -14.807109832763672 + ], + [ + "divine", + -14.807111740112305 + ], + [ + "▁revolting", + -14.807129859924316 + ], + [ + "▁TDD", + -14.807136535644531 + ], + [ + "▁rereading", + -14.807158470153809 + ], + [ + "änder", + -14.807188034057617 + ], + [ + "▁Lehrer", + -14.80718994140625 + ], + [ + "▁Muster", + -14.807198524475098 + ], + [ + "Attribute", + -14.80722713470459 + ], + [ + "▁gracing", + -14.807232856750488 + ], + [ + "EXT", + -14.807246208190918 + ], + [ + "presidential", + -14.807289123535156 + ], + [ + "▁сайт", + -14.807294845581055 + ], + [ + "▁Pandya", + -14.807295799255371 + ], + [ + "Albert", + -14.807341575622559 + ], + [ + "▁kita", + -14.807403564453125 + ], + [ + "▁minutiae", + -14.807403564453125 + ], + [ + "▁McAvoy", + -14.80740737915039 + ], + [ + "vocal", + -14.807417869567871 + ], + [ + "galo", + -14.807422637939453 + ], + [ + "▁firming", + -14.807442665100098 + ], + [ + "▁Biologist", + -14.80744743347168 + ], + [ + "▁Stationary", + -14.807463645935059 + ], + [ + "▁Kelso", + -14.807543754577637 + ], + [ + "motive", + -14.807554244995117 + ], + [ + "ọ", + -14.80759334564209 + ], + [ + "▁VCS", + -14.807626724243164 + ], + [ + "▁neuropathic", + -14.80763053894043 + ], + [ + "▁Universiti", + -14.807648658752441 + ], + [ + "▁convoys", + -14.807655334472656 + ], + [ + "▁Nightly", + -14.807659149169922 + ], + [ + "▁Bayview", + -14.807673454284668 + ], + [ + "▁omnichannel", + -14.8077392578125 + ], + [ + "▁Speck", + -14.807740211486816 + ], + [ + "▁Gaffney", + -14.807746887207031 + ], + [ + "INES", + -14.807751655578613 + ], + [ + "▁AUG", + -14.807762145996094 + ], + [ + "HDL", + -14.807785034179688 + ], + [ + "Activity", + -14.807805061340332 + ], + [ + "hush", + -14.807805061340332 + ], + [ + "▁Malia", + -14.807809829711914 + ], + [ + "▁emollient", + -14.80781364440918 + ], + [ + "james", + -14.80795955657959 + ], + [ + "▁Labeling", + -14.807988166809082 + ], + [ + "▁Heirloom", + -14.807991027832031 + ], + [ + "Defamation", + -14.808005332946777 + ], + [ + "▁Sylvie", + -14.808009147644043 + ], + [ + "▁754", + -14.808018684387207 + ], + [ + "▁echocardiography", + -14.80803394317627 + ], + [ + "▁tuber", + -14.80805778503418 + ], + [ + "▁bulimia", + -14.808088302612305 + ], + [ + "luxe", + -14.808097839355469 + ], + [ + "Unlike", + -14.80812931060791 + ], + [ + "▁Cambrian", + -14.808167457580566 + ], + [ + "OUCH", + -14.808259963989258 + ], + [ + "▁Sickle", + -14.808260917663574 + ], + [ + "▁Klei", + -14.808262825012207 + ], + [ + "▁Cryptocurrencies", + -14.808266639709473 + ], + [ + "▁Promotes", + -14.808282852172852 + ], + [ + "▁Croc", + -14.808289527893066 + ], + [ + "▁CORRECT", + -14.808348655700684 + ], + [ + "Vent", + -14.808378219604492 + ], + [ + "Basically", + -14.808385848999023 + ], + [ + "▁LSC", + -14.808401107788086 + ], + [ + "▁Cigars", + -14.808411598205566 + ], + [ + "▁Thrasher", + -14.808428764343262 + ], + [ + "▁695", + -14.808476448059082 + ], + [ + "ран", + -14.808524131774902 + ], + [ + "Breath", + -14.808542251586914 + ], + [ + "▁subbed", + -14.808615684509277 + ], + [ + "▁aperitif", + -14.80862808227539 + ], + [ + "▁Eloise", + -14.808661460876465 + ], + [ + "▁slumping", + -14.808670997619629 + ], + [ + "▁Gait", + -14.808679580688477 + ], + [ + "▁Crowne", + -14.808767318725586 + ], + [ + "▁Scotiabank", + -14.808771133422852 + ], + [ + "▁easterly", + -14.808788299560547 + ], + [ + "▁Demetri", + -14.808792114257812 + ], + [ + "▁Redux", + -14.808794021606445 + ], + [ + "▁Amway", + -14.808818817138672 + ], + [ + "▁Gog", + -14.808825492858887 + ], + [ + "▁Karlsruhe", + -14.808870315551758 + ], + [ + "▁rabble", + -14.808882713317871 + ], + [ + "▁Situations", + -14.808948516845703 + ], + [ + "▁soulless", + -14.808968544006348 + ], + [ + "▁Replies", + -14.808987617492676 + ], + [ + "▁seatbelts", + -14.809052467346191 + ], + [ + "▁Farrah", + -14.809061050415039 + ], + [ + "Amanda", + -14.809085845947266 + ], + [ + "▁Uighur", + -14.809112548828125 + ], + [ + "▁Gutters", + -14.80915355682373 + ], + [ + "▁‚", + -14.8092041015625 + ], + [ + "semitism", + -14.809209823608398 + ], + [ + "▁Nominating", + -14.809234619140625 + ], + [ + "▁Komatsu", + -14.809292793273926 + ], + [ + "▁hcl", + -14.809313774108887 + ], + [ + "▁streaking", + -14.809334754943848 + ], + [ + "▁JEAN", + -14.809351921081543 + ], + [ + "essy", + -14.809367179870605 + ], + [ + "IAM", + -14.809380531311035 + ], + [ + "▁piazza", + -14.809385299682617 + ], + [ + "▁Equilibrium", + -14.809399604797363 + ], + [ + "▁occasioned", + -14.809442520141602 + ], + [ + "▁Ε", + -14.809492111206055 + ], + [ + "ئ", + -14.809496879577637 + ], + [ + "▁año", + -14.80955982208252 + ], + [ + "▁RSM", + -14.809602737426758 + ], + [ + "groove", + -14.809611320495605 + ], + [ + "CROSS", + -14.809612274169922 + ], + [ + "▁feldspar", + -14.809619903564453 + ], + [ + "▁Tawa", + -14.809645652770996 + ], + [ + "ای", + -14.809698104858398 + ], + [ + "occi", + -14.809708595275879 + ], + [ + "hetero", + -14.809718132019043 + ], + [ + "ný", + -14.809728622436523 + ], + [ + "▁Candi", + -14.809774398803711 + ], + [ + "▁Jell", + -14.809798240661621 + ], + [ + "urizing", + -14.809810638427734 + ], + [ + "▁Slender", + -14.809832572937012 + ], + [ + "▁compu", + -14.809846878051758 + ], + [ + "▁tutored", + -14.809847831726074 + ], + [ + "cork", + -14.80984878540039 + ], + [ + "ÃÂ", + -14.809849739074707 + ], + [ + "▁paragon", + -14.809857368469238 + ], + [ + "▁ENTRY", + -14.809863090515137 + ], + [ + "ësh", + -14.809889793395996 + ], + [ + "loka", + -14.80989933013916 + ], + [ + "oprost", + -14.809943199157715 + ], + [ + "echa", + -14.809951782226562 + ], + [ + "▁Mutations", + -14.809951782226562 + ], + [ + "▁Fray", + -14.80998706817627 + ], + [ + "▁fuming", + -14.810011863708496 + ], + [ + "▁Eraser", + -14.810014724731445 + ], + [ + "▁Fluent", + -14.810153007507324 + ], + [ + "▁Planetarium", + -14.810158729553223 + ], + [ + "▁Freshers", + -14.810184478759766 + ], + [ + "▁nary", + -14.810201644897461 + ], + [ + "▁piggyback", + -14.810232162475586 + ], + [ + "▁GRADE", + -14.810234069824219 + ], + [ + "▁Rishikesh", + -14.810248374938965 + ], + [ + "▁Exchequer", + -14.810259819030762 + ], + [ + "introduction", + -14.810287475585938 + ], + [ + "▁fingernail", + -14.810297012329102 + ], + [ + "▁GEAR", + -14.810306549072266 + ], + [ + "▁judi", + -14.810317993164062 + ], + [ + "FRI", + -14.810322761535645 + ], + [ + "▁disbelieve", + -14.810372352600098 + ], + [ + "STRICT", + -14.810381889343262 + ], + [ + "badge", + -14.810381889343262 + ], + [ + "▁583", + -14.810385704040527 + ], + [ + "beef", + -14.810394287109375 + ], + [ + "▁DELETE", + -14.81042194366455 + ], + [ + "▁cataclysmic", + -14.810425758361816 + ], + [ + "▁Infirmary", + -14.810436248779297 + ], + [ + "▁lowlands", + -14.810460090637207 + ], + [ + "Resources", + -14.810473442077637 + ], + [ + "▁FRAME", + -14.810478210449219 + ], + [ + "▁Levites", + -14.8104887008667 + ], + [ + "▁ECP", + -14.810489654541016 + ], + [ + "▁eHarmony", + -14.810516357421875 + ], + [ + "STRUCT", + -14.810517311096191 + ], + [ + "performed", + -14.810528755187988 + ], + [ + "▁Haug", + -14.810532569885254 + ], + [ + "▁5200", + -14.810552597045898 + ], + [ + "wiring", + -14.810598373413086 + ], + [ + "▁Shatner", + -14.810601234436035 + ], + [ + "EHR", + -14.810665130615234 + ], + [ + "muni", + -14.810673713684082 + ], + [ + "vax", + -14.810674667358398 + ], + [ + "clude", + -14.810746192932129 + ], + [ + "cero", + -14.810769081115723 + ], + [ + "▁mise", + -14.81078052520752 + ], + [ + "wop", + -14.810818672180176 + ], + [ + "▁751", + -14.81082820892334 + ], + [ + "▁Shanna", + -14.810836791992188 + ], + [ + "▁Deut", + -14.810853958129883 + ], + [ + "▁preloaded", + -14.810858726501465 + ], + [ + "▁deductive", + -14.810901641845703 + ], + [ + "▁mercies", + -14.810904502868652 + ], + [ + "climat", + -14.81091022491455 + ], + [ + "LNG", + -14.810916900634766 + ], + [ + "rling", + -14.810959815979004 + ], + [ + "nlm", + -14.810964584350586 + ], + [ + "▁Yann", + -14.811017990112305 + ], + [ + "▁raptors", + -14.811019897460938 + ], + [ + "adopt", + -14.811023712158203 + ], + [ + "append", + -14.81103229522705 + ], + [ + "▁glioblastoma", + -14.811043739318848 + ], + [ + "▁Trubisky", + -14.811054229736328 + ], + [ + "▁vino", + -14.81106948852539 + ], + [ + "▁Engraved", + -14.811076164245605 + ], + [ + "▁brainwave", + -14.811083793640137 + ], + [ + "antic", + -14.811105728149414 + ], + [ + "NUT", + -14.811132431030273 + ], + [ + "▁centrifugation", + -14.811153411865234 + ], + [ + "Courtesy", + -14.811175346374512 + ], + [ + "ubo", + -14.811178207397461 + ], + [ + "casa", + -14.811195373535156 + ], + [ + "္", + -14.811217308044434 + ], + [ + "globulin", + -14.81130599975586 + ], + [ + "pony", + -14.811330795288086 + ], + [ + "▁Novelty", + -14.811341285705566 + ], + [ + "▁frisbee", + -14.81137466430664 + ], + [ + "Entertainment", + -14.811409950256348 + ], + [ + "▁687", + -14.811441421508789 + ], + [ + "LEC", + -14.811453819274902 + ], + [ + "▁cohabit", + -14.811479568481445 + ], + [ + "▁Castellano", + -14.811514854431152 + ], + [ + "ように", + -14.8115816116333 + ], + [ + "▁pantyhose", + -14.81159496307373 + ], + [ + "▁Pancha", + -14.811615943908691 + ], + [ + "▁obliging", + -14.811650276184082 + ], + [ + "▁jose", + -14.81168270111084 + ], + [ + "▁Reckless", + -14.811701774597168 + ], + [ + "spotting", + -14.81173038482666 + ], + [ + "▁Utili", + -14.811762809753418 + ], + [ + "▁LATEST", + -14.811767578125 + ], + [ + "▁Pani", + -14.811796188354492 + ], + [ + "ghar", + -14.811823844909668 + ], + [ + "▁tern", + -14.811866760253906 + ], + [ + "LZ", + -14.811890602111816 + ], + [ + "seasonal", + -14.811895370483398 + ], + [ + "▁Armoire", + -14.811897277832031 + ], + [ + "▁IRIS", + -14.811920166015625 + ], + [ + "▁Compiler", + -14.811924934387207 + ], + [ + "▁Relational", + -14.811955451965332 + ], + [ + "▁anarchism", + -14.812005043029785 + ], + [ + "▁BSI", + -14.812012672424316 + ], + [ + "▁CHAN", + -14.812017440795898 + ], + [ + "toni", + -14.812021255493164 + ], + [ + "▁eigenvalue", + -14.812037467956543 + ], + [ + "▁ILS", + -14.812051773071289 + ], + [ + "▁Glaser", + -14.812087059020996 + ], + [ + "▁corticosteroid", + -14.812092781066895 + ], + [ + "▁scowl", + -14.812093734741211 + ], + [ + "▁Misra", + -14.812094688415527 + ], + [ + "▁czar", + -14.812111854553223 + ], + [ + "compulsive", + -14.812126159667969 + ], + [ + "▁Spook", + -14.81213092803955 + ], + [ + "▁JDBC", + -14.812132835388184 + ], + [ + "▁AfD", + -14.81215763092041 + ], + [ + "▁Roadrunner", + -14.812172889709473 + ], + [ + "vastatin", + -14.812182426452637 + ], + [ + "▁Giacomo", + -14.812198638916016 + ], + [ + "▁LAWS", + -14.812202453613281 + ], + [ + "▁plunk", + -14.812215805053711 + ], + [ + "▁Bonfire", + -14.81221866607666 + ], + [ + "▁Sce", + -14.812322616577148 + ], + [ + "▁Kinesiology", + -14.812335968017578 + ], + [ + "▁spliced", + -14.812373161315918 + ], + [ + "▁indulgences", + -14.812378883361816 + ], + [ + "▁Në", + -14.812386512756348 + ], + [ + "Reflect", + -14.812447547912598 + ], + [ + "EVO", + -14.812472343444824 + ], + [ + "▁Connaught", + -14.81249713897705 + ], + [ + "▁Schenectady", + -14.812500953674316 + ], + [ + "▁BON", + -14.812525749206543 + ], + [ + "▁STDs", + -14.812548637390137 + ], + [ + "Partly", + -14.812554359436035 + ], + [ + "▁Zaman", + -14.8125638961792 + ], + [ + "▁Watermark", + -14.812621116638184 + ], + [ + "horne", + -14.812644004821777 + ], + [ + "SEY", + -14.81265926361084 + ], + [ + "▁Strick", + -14.812664985656738 + ], + [ + "▁MacGregor", + -14.812673568725586 + ], + [ + "Rama", + -14.812681198120117 + ], + [ + "▁Verve", + -14.812688827514648 + ], + [ + "▁picures", + -14.812727928161621 + ], + [ + "▁quietest", + -14.812752723693848 + ], + [ + "号", + -14.812777519226074 + ], + [ + "carbonate", + -14.812785148620605 + ], + [ + "▁Bleacher", + -14.812804222106934 + ], + [ + "▁bayou", + -14.81280517578125 + ], + [ + "▁nite", + -14.812807083129883 + ], + [ + "▁HEA", + -14.812811851501465 + ], + [ + "▁resubmit", + -14.812811851501465 + ], + [ + "▁Dope", + -14.812817573547363 + ], + [ + "▁tracksuit", + -14.812820434570312 + ], + [ + "▁encrypts", + -14.812823295593262 + ], + [ + "算", + -14.812837600708008 + ], + [ + "▁semiotic", + -14.812874794006348 + ], + [ + "Reply", + -14.812932014465332 + ], + [ + "▁Bartender", + -14.812943458557129 + ], + [ + "▁voided", + -14.81297492980957 + ], + [ + "Isa", + -14.813007354736328 + ], + [ + "▁GHS", + -14.813014030456543 + ], + [ + "▁catalogued", + -14.813037872314453 + ], + [ + "Lauren", + -14.813070297241211 + ], + [ + "▁LOR", + -14.813084602355957 + ], + [ + "sponsors", + -14.813103675842285 + ], + [ + "▁Competent", + -14.813114166259766 + ], + [ + "▁Padukone", + -14.813142776489258 + ], + [ + "▁hemorrhoid", + -14.813154220581055 + ], + [ + "ojë", + -14.813161849975586 + ], + [ + "patio", + -14.813172340393066 + ], + [ + "ilen", + -14.813182830810547 + ], + [ + "▁Jawaharlal", + -14.813186645507812 + ], + [ + "▁VDC", + -14.813190460205078 + ], + [ + "▁Schwa", + -14.813240051269531 + ], + [ + "hacking", + -14.81324291229248 + ], + [ + "▁GPR", + -14.813250541687012 + ], + [ + "▁perpetuates", + -14.813271522521973 + ], + [ + "▁Vincenzo", + -14.813283920288086 + ], + [ + "▁Etruscan", + -14.813285827636719 + ], + [ + "将", + -14.813325881958008 + ], + [ + "pacific", + -14.813348770141602 + ], + [ + "Lily", + -14.813358306884766 + ], + [ + "econ", + -14.813361167907715 + ], + [ + "▁£1000", + -14.813369750976562 + ], + [ + "▁McRae", + -14.813386917114258 + ], + [ + "▁Moreton", + -14.813404083251953 + ], + [ + "▁Moringa", + -14.813414573669434 + ], + [ + "▁778", + -14.813421249389648 + ], + [ + "▁Smo", + -14.813436508178711 + ], + [ + "▁alleyways", + -14.813458442687988 + ], + [ + "▁Taki", + -14.813469886779785 + ], + [ + "▁Londonderry", + -14.813485145568848 + ], + [ + "hauer", + -14.813519477844238 + ], + [ + "▁nginx", + -14.813521385192871 + ], + [ + "▁Villar", + -14.813555717468262 + ], + [ + "▁Smashing", + -14.813557624816895 + ], + [ + "HIM", + -14.813566207885742 + ], + [ + "▁Carsten", + -14.813572883605957 + ], + [ + "igal", + -14.813616752624512 + ], + [ + "▁Centrally", + -14.813759803771973 + ], + [ + "▁kwa", + -14.813774108886719 + ], + [ + "fam", + -14.813799858093262 + ], + [ + "▁Gimme", + -14.813811302185059 + ], + [ + "▁Kerber", + -14.813846588134766 + ], + [ + "▁sinker", + -14.813863754272461 + ], + [ + "▁Speer", + -14.813910484313965 + ], + [ + "deli", + -14.813924789428711 + ], + [ + "▁superfoods", + -14.813931465148926 + ], + [ + "▁Relevance", + -14.813950538635254 + ], + [ + "▁flit", + -14.81396198272705 + ], + [ + "DSM", + -14.813973426818848 + ], + [ + "▁intergalactic", + -14.813997268676758 + ], + [ + "▁Ehr", + -14.813998222351074 + ], + [ + "▁Notts", + -14.814058303833008 + ], + [ + "recognised", + -14.814062118530273 + ], + [ + "▁ли", + -14.81406307220459 + ], + [ + "▁steamboat", + -14.814065933227539 + ], + [ + "▁TMD", + -14.814080238342285 + ], + [ + "▁lanky", + -14.814091682434082 + ], + [ + "▁Burrow", + -14.814167022705078 + ], + [ + "▁Atoll", + -14.814181327819824 + ], + [ + "▁OCTOBER", + -14.814205169677734 + ], + [ + "Origin", + -14.814225196838379 + ], + [ + "Former", + -14.814228057861328 + ], + [ + "▁beefed", + -14.814231872558594 + ], + [ + "▁Injustice", + -14.81424331665039 + ], + [ + "▁Pizz", + -14.81424617767334 + ], + [ + "▁Montpelier", + -14.814249038696289 + ], + [ + "HOLD", + -14.814254760742188 + ], + [ + "ید", + -14.814277648925781 + ], + [ + "▁Scalise", + -14.81429386138916 + ], + [ + "▁863", + -14.81429672241211 + ], + [ + "▁Addendum", + -14.81429672241211 + ], + [ + "▁cuss", + -14.814319610595703 + ], + [ + "▁wavelet", + -14.814319610595703 + ], + [ + "ская", + -14.814321517944336 + ], + [ + "collected", + -14.814334869384766 + ], + [ + "Cancel", + -14.81436824798584 + ], + [ + "▁Merca", + -14.81437873840332 + ], + [ + "▁gingivitis", + -14.814393043518066 + ], + [ + "TIONAL", + -14.814423561096191 + ], + [ + "▁cornucopia", + -14.814437866210938 + ], + [ + "Features", + -14.814452171325684 + ], + [ + "▁annihilated", + -14.814467430114746 + ], + [ + "▁SanDisk", + -14.814482688903809 + ], + [ + "eshi", + -14.814504623413086 + ], + [ + "▁Univision", + -14.814522743225098 + ], + [ + "valuable", + -14.814558029174805 + ], + [ + "▁Mikko", + -14.814558029174805 + ], + [ + "Zoom", + -14.814568519592285 + ], + [ + "▁Hangover", + -14.814587593078613 + ], + [ + "▁repulsed", + -14.81462574005127 + ], + [ + "▁humanely", + -14.814634323120117 + ], + [ + "▁EMPLOYEES", + -14.814679145812988 + ], + [ + "inappropriate", + -14.81468677520752 + ], + [ + "▁Sf", + -14.814742088317871 + ], + [ + "▁Johnstown", + -14.814809799194336 + ], + [ + "▁Lowering", + -14.8148193359375 + ], + [ + "▁Longwood", + -14.814851760864258 + ], + [ + "Ontario", + -14.814857482910156 + ], + [ + "▁YG", + -14.814889907836914 + ], + [ + "▁Orville", + -14.814896583557129 + ], + [ + "▁tuba", + -14.814901351928711 + ], + [ + "GAP", + -14.814905166625977 + ], + [ + "▁inaugurate", + -14.814916610717773 + ], + [ + "▁Phal", + -14.814990043640137 + ], + [ + "▁personhood", + -14.814993858337402 + ], + [ + "▁pillowcases", + -14.81500244140625 + ], + [ + "financing", + -14.815080642700195 + ], + [ + "▁Вы", + -14.815083503723145 + ], + [ + "▁trachea", + -14.815092086791992 + ], + [ + "▁impersonating", + -14.81512451171875 + ], + [ + "▁gargoyle", + -14.815169334411621 + ], + [ + "▁streaked", + -14.815199851989746 + ], + [ + "ropod", + -14.815201759338379 + ], + [ + "▁DRESS", + -14.815218925476074 + ], + [ + "▁634", + -14.815224647521973 + ], + [ + "circa", + -14.815237998962402 + ], + [ + "ෙ", + -14.815267562866211 + ], + [ + "lichkeit", + -14.815275192260742 + ], + [ + "▁PUSH", + -14.81528377532959 + ], + [ + "▁AFR", + -14.815289497375488 + ], + [ + "▁Enduring", + -14.815302848815918 + ], + [ + "▁programmatically", + -14.815313339233398 + ], + [ + "▁Brunner", + -14.81533432006836 + ], + [ + "▁Captive", + -14.81534194946289 + ], + [ + "▁Gesture", + -14.815357208251953 + ], + [ + "malai", + -14.815360069274902 + ], + [ + "▁Elkhart", + -14.8153657913208 + ], + [ + "▁Descendants", + -14.81538200378418 + ], + [ + "▁Quince", + -14.815401077270508 + ], + [ + "ற", + -14.815412521362305 + ], + [ + "▁Orland", + -14.815430641174316 + ], + [ + "nivers", + -14.815436363220215 + ], + [ + "ieber", + -14.815457344055176 + ], + [ + "journey", + -14.815485000610352 + ], + [ + "Sym", + -14.815516471862793 + ], + [ + "▁Neanderthals", + -14.81551742553711 + ], + [ + "▁Morg", + -14.815526962280273 + ], + [ + "zyg", + -14.815535545349121 + ], + [ + "▁untoward", + -14.815546989440918 + ], + [ + "▁gyratory", + -14.815549850463867 + ], + [ + "▁ACU", + -14.81557846069336 + ], + [ + "thou", + -14.81558609008789 + ], + [ + "▁Temer", + -14.815587997436523 + ], + [ + "▁CED", + -14.815631866455078 + ], + [ + "▁Moby", + -14.815694808959961 + ], + [ + "▁Gambino", + -14.815788269042969 + ], + [ + "nationalist", + -14.815855026245117 + ], + [ + "▁Marxists", + -14.815901756286621 + ], + [ + "▁Euclidean", + -14.815930366516113 + ], + [ + "▁Modena", + -14.815958976745605 + ], + [ + "▁snuggly", + -14.815960884094238 + ], + [ + "ү", + -14.815966606140137 + ], + [ + "▁subsides", + -14.815978050231934 + ], + [ + "Samsung", + -14.81602954864502 + ], + [ + "▁mailers", + -14.816044807434082 + ], + [ + "▁FAU", + -14.81606388092041 + ], + [ + "▁Particles", + -14.81607437133789 + ], + [ + "▁Chainsaw", + -14.81607723236084 + ], + [ + "▁Pesca", + -14.81612491607666 + ], + [ + "doro", + -14.816126823425293 + ], + [ + "▁glyph", + -14.81613826751709 + ], + [ + "▁Obligations", + -14.81616497039795 + ], + [ + "Hungary", + -14.816168785095215 + ], + [ + "▁Guiana", + -14.816176414489746 + ], + [ + "chey", + -14.816189765930176 + ], + [ + "▁AIC", + -14.816215515136719 + ], + [ + "▁TUC", + -14.816216468811035 + ], + [ + "▁playmate", + -14.816216468811035 + ], + [ + "▁lithography", + -14.816217422485352 + ], + [ + "palli", + -14.816247940063477 + ], + [ + "▁Marnie", + -14.816265106201172 + ], + [ + "▁Salvini", + -14.816265106201172 + ], + [ + "contra", + -14.816268920898438 + ], + [ + "▁ICI", + -14.816268920898438 + ], + [ + "▁Perf", + -14.816311836242676 + ], + [ + "▁Manmohan", + -14.816377639770508 + ], + [ + "zum", + -14.81639575958252 + ], + [ + "▁Solvent", + -14.81639575958252 + ], + [ + "▁bulwark", + -14.81643295288086 + ], + [ + "▁undersized", + -14.816448211669922 + ], + [ + "AMG", + -14.816485404968262 + ], + [ + "▁Elmwood", + -14.816493034362793 + ], + [ + "▁psychopaths", + -14.816515922546387 + ], + [ + "FZ", + -14.816564559936523 + ], + [ + "▁hitches", + -14.81657886505127 + ], + [ + "▁Gantt", + -14.81658935546875 + ], + [ + "▁rewrote", + -14.816593170166016 + ], + [ + "▁Awful", + -14.81661605834961 + ], + [ + "▁sooth", + -14.816633224487305 + ], + [ + "▁Boud", + -14.816650390625 + ], + [ + "▁fanfic", + -14.816658973693848 + ], + [ + "▁Aix", + -14.816661834716797 + ], + [ + "calcium", + -14.816680908203125 + ], + [ + "▁Timken", + -14.816764831542969 + ], + [ + "▁confederate", + -14.816777229309082 + ], + [ + "▁mortuary", + -14.816779136657715 + ], + [ + "gwa", + -14.816790580749512 + ], + [ + "▁Neighbours", + -14.816791534423828 + ], + [ + "▁spewed", + -14.816814422607422 + ], + [ + "▁sportsbooks", + -14.816816329956055 + ], + [ + "▁implode", + -14.816859245300293 + ], + [ + "▁ripoff", + -14.816892623901367 + ], + [ + "▁DeLa", + -14.816908836364746 + ], + [ + "icho", + -14.816911697387695 + ], + [ + "▁TIN", + -14.816924095153809 + ], + [ + "▁novellas", + -14.816936492919922 + ], + [ + "هم", + -14.816940307617188 + ], + [ + "▁berlin", + -14.816980361938477 + ], + [ + "▁Nij", + -14.817037582397461 + ], + [ + "▁Rendezvous", + -14.81707763671875 + ], + [ + "▁CENT", + -14.817131042480469 + ], + [ + "▁Quik", + -14.817131042480469 + ], + [ + "Publisher", + -14.81719970703125 + ], + [ + "▁Frenzy", + -14.817206382751465 + ], + [ + "▁Onco", + -14.817252159118652 + ], + [ + "▁Idee", + -14.817270278930664 + ], + [ + "▁Reclining", + -14.81727123260498 + ], + [ + "▁peonies", + -14.817299842834473 + ], + [ + "▁praxis", + -14.817312240600586 + ], + [ + "▁Keir", + -14.817316055297852 + ], + [ + "▁Distribute", + -14.817325592041016 + ], + [ + "▁Peasant", + -14.817346572875977 + ], + [ + "▁fireside", + -14.81742000579834 + ], + [ + "▁Schafer", + -14.817426681518555 + ], + [ + "ѕі", + -14.817429542541504 + ], + [ + "▁Feasibility", + -14.817432403564453 + ], + [ + "▁adorns", + -14.817449569702148 + ], + [ + "▁prodigal", + -14.817458152770996 + ], + [ + "▁Gilded", + -14.817469596862793 + ], + [ + "▁annoyingly", + -14.817523956298828 + ], + [ + "▁ganglia", + -14.817541122436523 + ], + [ + "▁suff", + -14.817544937133789 + ], + [ + "oxic", + -14.817553520202637 + ], + [ + "ternity", + -14.817569732666016 + ], + [ + "▁gusty", + -14.817621231079102 + ], + [ + "NAB", + -14.817623138427734 + ], + [ + "▁Jib", + -14.817627906799316 + ], + [ + "▁Yisrael", + -14.817642211914062 + ], + [ + "bock", + -14.817670822143555 + ], + [ + "Corps", + -14.817678451538086 + ], + [ + "▁588", + -14.817697525024414 + ], + [ + "ìn", + -14.817733764648438 + ], + [ + "▁Lapland", + -14.817744255065918 + ], + [ + "pang", + -14.81775188446045 + ], + [ + "▁Savar", + -14.817768096923828 + ], + [ + "▁COB", + -14.817774772644043 + ], + [ + "▁Involve", + -14.817817687988281 + ], + [ + "viable", + -14.817818641662598 + ], + [ + "▁Employ", + -14.817849159240723 + ], + [ + "▁matron", + -14.81786060333252 + ], + [ + "jala", + -14.817872047424316 + ], + [ + "▁hookah", + -14.817872047424316 + ], + [ + "MOND", + -14.817882537841797 + ], + [ + "▁Macca", + -14.817910194396973 + ], + [ + "IHS", + -14.817923545837402 + ], + [ + "polished", + -14.817975044250488 + ], + [ + "lho", + -14.817984580993652 + ], + [ + "▁Revlon", + -14.817985534667969 + ], + [ + "▁Rv", + -14.81800651550293 + ], + [ + "▁LDC", + -14.818008422851562 + ], + [ + "▁Zucchini", + -14.8180570602417 + ], + [ + "▁suboptimal", + -14.818062782287598 + ], + [ + "▁Spurgeon", + -14.818082809448242 + ], + [ + "▁inexorably", + -14.818099975585938 + ], + [ + "▁Pegg", + -14.818136215209961 + ], + [ + "▁Guildhall", + -14.818143844604492 + ], + [ + "▁Heston", + -14.818154335021973 + ], + [ + "▁brushless", + -14.818181991577148 + ], + [ + "▁phrased", + -14.818181991577148 + ], + [ + "▁Esper", + -14.818243026733398 + ], + [ + "▁usefully", + -14.818248748779297 + ], + [ + "▁censors", + -14.818253517150879 + ], + [ + "▁ENOUGH", + -14.81828784942627 + ], + [ + "▁POSSIBLE", + -14.818288803100586 + ], + [ + "▁Blok", + -14.818305015563965 + ], + [ + "▁Cornyn", + -14.818318367004395 + ], + [ + "▁NED", + -14.818323135375977 + ], + [ + "▁DRS", + -14.818355560302734 + ], + [ + "▁Paramedics", + -14.818370819091797 + ], + [ + "▁clit", + -14.818406105041504 + ], + [ + "线", + -14.818432807922363 + ], + [ + "entra", + -14.818469047546387 + ], + [ + "▁Ahab", + -14.81851577758789 + ], + [ + "▁Tyneside", + -14.8185453414917 + ], + [ + "stepped", + -14.818585395812988 + ], + [ + "▁Sperry", + -14.81862735748291 + ], + [ + "▁Williston", + -14.818653106689453 + ], + [ + "▁GIANT", + -14.81865406036377 + ], + [ + "babe", + -14.81867790222168 + ], + [ + "▁colluded", + -14.818755149841309 + ], + [ + "activ", + -14.818779945373535 + ], + [ + "▁Flawless", + -14.8187837600708 + ], + [ + "▁spurts", + -14.818805694580078 + ], + [ + "▁FEM", + -14.81883430480957 + ], + [ + "▁Deming", + -14.818860054016113 + ], + [ + "▁Stole", + -14.818888664245605 + ], + [ + "Uploaded", + -14.818957328796387 + ], + [ + "▁Musica", + -14.818975448608398 + ], + [ + "▁fajita", + -14.818988800048828 + ], + [ + "▁Hatha", + -14.819022178649902 + ], + [ + "▁Caledonian", + -14.8190279006958 + ], + [ + "▁ATLAS", + -14.81903076171875 + ], + [ + "▁enforcers", + -14.819067001342773 + ], + [ + "▁Wirral", + -14.819083213806152 + ], + [ + "▁Shutdown", + -14.819087982177734 + ], + [ + "▁bulldozer", + -14.819107055664062 + ], + [ + "▁blackface", + -14.819111824035645 + ], + [ + "chromat", + -14.819130897521973 + ], + [ + "▁£350", + -14.819169998168945 + ], + [ + "▁patchouli", + -14.819195747375488 + ], + [ + "▁bento", + -14.819222450256348 + ], + [ + "fridge", + -14.81925106048584 + ], + [ + "▁charlatan", + -14.819292068481445 + ], + [ + "ype", + -14.819303512573242 + ], + [ + "▁astrocytes", + -14.819313049316406 + ], + [ + "▁suppl", + -14.819332122802734 + ], + [ + "HIP", + -14.819347381591797 + ], + [ + "▁Bevin", + -14.81938362121582 + ], + [ + "Expand", + -14.819401741027832 + ], + [ + "▁VCP", + -14.81942081451416 + ], + [ + "▁À", + -14.81943416595459 + ], + [ + "applicable", + -14.819515228271484 + ], + [ + "▁rota", + -14.819576263427734 + ], + [ + "▁Neutrality", + -14.819616317749023 + ], + [ + "iosa", + -14.819621086120605 + ], + [ + "▁eyelet", + -14.819639205932617 + ], + [ + "▁bizarrely", + -14.819726943969727 + ], + [ + "▁WHOIS", + -14.81973934173584 + ], + [ + "▁repossession", + -14.81974983215332 + ], + [ + "▁Buford", + -14.819754600524902 + ], + [ + "ლ", + -14.819793701171875 + ], + [ + "▁LEADER", + -14.819839477539062 + ], + [ + "friendliness", + -14.819847106933594 + ], + [ + "▁Chowk", + -14.819855690002441 + ], + [ + "▁Pewter", + -14.819860458374023 + ], + [ + "▁ANU", + -14.819869041442871 + ], + [ + "▁Mecha", + -14.81987476348877 + ], + [ + "▁snowshoeing", + -14.819948196411133 + ], + [ + "courtesy", + -14.819955825805664 + ], + [ + "IPC", + -14.819972038269043 + ], + [ + "▁594", + -14.819985389709473 + ], + [ + "▁Almonds", + -14.8200101852417 + ], + [ + "▁Anguilla", + -14.820047378540039 + ], + [ + "▁carne", + -14.82009506225586 + ], + [ + "affirm", + -14.820096015930176 + ], + [ + "▁solicitations", + -14.820097923278809 + ], + [ + "supervised", + -14.820098876953125 + ], + [ + "HOU", + -14.820135116577148 + ], + [ + "▁Geist", + -14.820158958435059 + ], + [ + "▁comorbidities", + -14.820168495178223 + ], + [ + "▁Divya", + -14.82018756866455 + ], + [ + "▁Tulsi", + -14.82025146484375 + ], + [ + "kenzie", + -14.820252418518066 + ], + [ + "▁Brahm", + -14.820255279541016 + ], + [ + "▁droit", + -14.820263862609863 + ], + [ + "▁expeditiously", + -14.820273399353027 + ], + [ + "▁emigrate", + -14.820277214050293 + ], + [ + "▁isotopic", + -14.820294380187988 + ], + [ + "Buyer", + -14.820298194885254 + ], + [ + "1892", + -14.82031536102295 + ], + [ + "▁monogamous", + -14.82032585144043 + ], + [ + "▁ACID", + -14.820329666137695 + ], + [ + "Barn", + -14.82036018371582 + ], + [ + "▁jackson", + -14.820374488830566 + ], + [ + "▁Camacho", + -14.820382118225098 + ], + [ + "iyama", + -14.820401191711426 + ], + [ + "▁manufac", + -14.820439338684082 + ], + [ + "ignol", + -14.820488929748535 + ], + [ + "▁shamrock", + -14.820504188537598 + ], + [ + "▁SEGA", + -14.820533752441406 + ], + [ + "▁Sociedad", + -14.820549011230469 + ], + [ + "▁possessor", + -14.820563316345215 + ], + [ + "▁macronutrient", + -14.820570945739746 + ], + [ + "▁proctor", + -14.820589065551758 + ], + [ + "▁erudite", + -14.820592880249023 + ], + [ + "▁rhinitis", + -14.820626258850098 + ], + [ + "▁Anker", + -14.82063102722168 + ], + [ + "▁Comparatively", + -14.820667266845703 + ], + [ + "▁UBI", + -14.820671081542969 + ], + [ + "uction", + -14.820698738098145 + ], + [ + "▁Lamo", + -14.820713996887207 + ], + [ + "▁recluse", + -14.820772171020508 + ], + [ + "▁prostatitis", + -14.820794105529785 + ], + [ + "▁Woodhouse", + -14.82082748413086 + ], + [ + "▁lacklustre", + -14.820860862731934 + ], + [ + "▁Accused", + -14.8208646774292 + ], + [ + "▁Schaeffer", + -14.82088565826416 + ], + [ + "▁decomposing", + -14.820927619934082 + ], + [ + "▁inhospitable", + -14.820939064025879 + ], + [ + "▁Quilter", + -14.820976257324219 + ], + [ + "Brooklyn", + -14.821002006530762 + ], + [ + "▁Zarif", + -14.821043014526367 + ], + [ + "▁Polite", + -14.821045875549316 + ], + [ + "▁Asuka", + -14.82105827331543 + ], + [ + "lber", + -14.821065902709961 + ], + [ + "▁Moa", + -14.821065902709961 + ], + [ + "▁Directing", + -14.821066856384277 + ], + [ + "▁Quasi", + -14.821146011352539 + ], + [ + "▁Focuses", + -14.821174621582031 + ], + [ + "▁rencontre", + -14.821184158325195 + ], + [ + "Poker", + -14.82120132446289 + ], + [ + "▁breathtakingly", + -14.821218490600586 + ], + [ + "▁Flamenco", + -14.821256637573242 + ], + [ + "▁Generalized", + -14.821259498596191 + ], + [ + "▁Nusa", + -14.821357727050781 + ], + [ + "teryx", + -14.821470260620117 + ], + [ + "▁Dodo", + -14.821495056152344 + ], + [ + "▁Gest", + -14.821515083312988 + ], + [ + "politik", + -14.821549415588379 + ], + [ + "▁spi", + -14.821564674377441 + ], + [ + "▁Vasil", + -14.821584701538086 + ], + [ + "▁Cymru", + -14.82160758972168 + ], + [ + "ignite", + -14.82161808013916 + ], + [ + "▁hijacker", + -14.821621894836426 + ], + [ + "ского", + -14.821622848510742 + ], + [ + "▁abstention", + -14.821690559387207 + ], + [ + "▁overstuffed", + -14.821711540222168 + ], + [ + "▁butterscotch", + -14.821730613708496 + ], + [ + "▁Fave", + -14.821785926818848 + ], + [ + "▁panto", + -14.821823120117188 + ], + [ + "▁proofreader", + -14.821860313415527 + ], + [ + "▁knitters", + -14.821935653686523 + ], + [ + "▁Ribs", + -14.821956634521484 + ], + [ + "▁Goyal", + -14.821961402893066 + ], + [ + "▁RON", + -14.82205867767334 + ], + [ + "▁Swimsuit", + -14.822097778320312 + ], + [ + "▁Amari", + -14.822113037109375 + ], + [ + "Wayne", + -14.822148323059082 + ], + [ + "▁Gwa", + -14.822161674499512 + ], + [ + "SPE", + -14.8222074508667 + ], + [ + "▁Mikel", + -14.822239875793457 + ], + [ + "phore", + -14.822240829467773 + ], + [ + "▁glutamine", + -14.822250366210938 + ], + [ + "▁Hofmann", + -14.822278022766113 + ], + [ + "▁panelling", + -14.82230281829834 + ], + [ + "▁quashed", + -14.822307586669922 + ], + [ + "fk", + -14.82240104675293 + ], + [ + "▁PROS", + -14.822440147399902 + ], + [ + "▁intubation", + -14.822446823120117 + ], + [ + "▁Bosworth", + -14.822450637817383 + ], + [ + "▁cradled", + -14.822454452514648 + ], + [ + "▁Rakesh", + -14.822455406188965 + ], + [ + "▁Spanning", + -14.82245922088623 + ], + [ + "▁DMZ", + -14.822463035583496 + ], + [ + "▁Zoological", + -14.822468757629395 + ], + [ + "Waterloo", + -14.822482109069824 + ], + [ + "▁foamy", + -14.822487831115723 + ], + [ + "▁TransCanada", + -14.822530746459961 + ], + [ + "▁geopolitics", + -14.82254695892334 + ], + [ + "▁grammatically", + -14.822554588317871 + ], + [ + "▁titanic", + -14.822554588317871 + ], + [ + "william", + -14.822563171386719 + ], + [ + "ILLING", + -14.822575569152832 + ], + [ + "Neck", + -14.822583198547363 + ], + [ + "▁rubberized", + -14.822603225708008 + ], + [ + "▁buffoon", + -14.82262134552002 + ], + [ + "egy", + -14.822629928588867 + ], + [ + "▁Ridgefield", + -14.822681427001953 + ], + [ + "▁Bldg", + -14.82270622253418 + ], + [ + "▁Shaheen", + -14.822710037231445 + ], + [ + "▁maxima", + -14.822714805603027 + ], + [ + "▁Ramakrishna", + -14.822772979736328 + ], + [ + "▁Moya", + -14.822794914245605 + ], + [ + "▁Schatz", + -14.82281494140625 + ], + [ + "JV", + -14.822824478149414 + ], + [ + "▁LEI", + -14.822830200195312 + ], + [ + "lech", + -14.822854042053223 + ], + [ + "▁tastebuds", + -14.822900772094727 + ], + [ + "▁NIE", + -14.82292366027832 + ], + [ + "salon", + -14.822935104370117 + ], + [ + "▁megaphone", + -14.822967529296875 + ], + [ + "Ν", + -14.822992324829102 + ], + [ + "▁transfixed", + -14.823003768920898 + ], + [ + "▁Hostess", + -14.823017120361328 + ], + [ + "achiever", + -14.823040962219238 + ], + [ + "▁Natura", + -14.823053359985352 + ], + [ + "▁Aiming", + -14.82306957244873 + ], + [ + "POINT", + -14.823075294494629 + ], + [ + "▁grupo", + -14.823080062866211 + ], + [ + "sticky", + -14.823101997375488 + ], + [ + "▁Processors", + -14.823110580444336 + ], + [ + "▁transplanting", + -14.823111534118652 + ], + [ + "Outside", + -14.823139190673828 + ], + [ + "▁Debussy", + -14.823142051696777 + ], + [ + "▁Villanueva", + -14.823160171508789 + ], + [ + "phytes", + -14.823161125183105 + ], + [ + "▁Mentally", + -14.823165893554688 + ], + [ + "▁Incumbent", + -14.823204040527344 + ], + [ + "▁Milly", + -14.823221206665039 + ], + [ + "▁£120", + -14.823277473449707 + ], + [ + "▁Larimer", + -14.82329273223877 + ], + [ + "▁Steroid", + -14.82329273223877 + ], + [ + "▁stereotyped", + -14.823309898376465 + ], + [ + "antara", + -14.823315620422363 + ], + [ + "▁vulgaris", + -14.823336601257324 + ], + [ + "▁homing", + -14.823341369628906 + ], + [ + "▁Markup", + -14.823357582092285 + ], + [ + "▁unorganized", + -14.823394775390625 + ], + [ + "▁encephalopathy", + -14.823405265808105 + ], + [ + "▁Sweetie", + -14.823441505432129 + ], + [ + "▁TRIM", + -14.823451042175293 + ], + [ + "▁Braces", + -14.823468208312988 + ], + [ + "Dual", + -14.823502540588379 + ], + [ + "▁Nucleic", + -14.823528289794922 + ], + [ + "▁melodious", + -14.823529243469238 + ], + [ + "typing", + -14.823566436767578 + ], + [ + "▁FIU", + -14.823606491088867 + ], + [ + "▁Andalusia", + -14.823609352111816 + ], + [ + "▁Osmo", + -14.823628425598145 + ], + [ + "▁Montevideo", + -14.823652267456055 + ], + [ + "carat", + -14.823677062988281 + ], + [ + "recently", + -14.823705673217773 + ], + [ + "▁Rolle", + -14.823755264282227 + ], + [ + "▁CHRIS", + -14.82380485534668 + ], + [ + "▁Fertil", + -14.823895454406738 + ], + [ + "dola", + -14.823922157287598 + ], + [ + "▁Talley", + -14.82396411895752 + ], + [ + "sorted", + -14.824014663696289 + ], + [ + "▁baccalaureate", + -14.824028968811035 + ], + [ + "▁RTD", + -14.824055671691895 + ], + [ + "▁Cooney", + -14.824116706848145 + ], + [ + "Belgium", + -14.82418155670166 + ], + [ + "▁Fluoride", + -14.824186325073242 + ], + [ + "▁eccentricity", + -14.824203491210938 + ], + [ + "TTC", + -14.824213027954102 + ], + [ + "▁Fib", + -14.824220657348633 + ], + [ + "▁engraver", + -14.824225425720215 + ], + [ + "Chicken", + -14.824268341064453 + ], + [ + "▁Councilwoman", + -14.824286460876465 + ], + [ + "▁DDA", + -14.82429027557373 + ], + [ + "cology", + -14.824309349060059 + ], + [ + "intense", + -14.824311256408691 + ], + [ + "▁opti", + -14.824333190917969 + ], + [ + "▁CIBC", + -14.824336051940918 + ], + [ + "▁Mingle", + -14.824372291564941 + ], + [ + "▁Tulum", + -14.824378967285156 + ], + [ + "▁Manx", + -14.824393272399902 + ], + [ + "▁Shinji", + -14.82442855834961 + ], + [ + "▁Ingersoll", + -14.824467658996582 + ], + [ + "▁cleverness", + -14.824491500854492 + ], + [ + "releasing", + -14.82450008392334 + ], + [ + "▁adjudicated", + -14.824503898620605 + ], + [ + "ebri", + -14.824511528015137 + ], + [ + "▁Tapas", + -14.824546813964844 + ], + [ + "▁rit", + -14.824548721313477 + ], + [ + "▁flowered", + -14.82456111907959 + ], + [ + "▁sluts", + -14.824593544006348 + ], + [ + "▁Svi", + -14.824602127075195 + ], + [ + "vaccine", + -14.824625015258789 + ], + [ + "▁Dominick", + -14.82467269897461 + ], + [ + "▁MSPs", + -14.824687957763672 + ], + [ + "amora", + -14.824695587158203 + ], + [ + "▁Brighten", + -14.82469654083252 + ], + [ + "CYCLE", + -14.824716567993164 + ], + [ + "▁OCEAN", + -14.824722290039062 + ], + [ + "▁larynx", + -14.824769973754883 + ], + [ + "louis", + -14.82479190826416 + ], + [ + "▁LBP", + -14.824810028076172 + ], + [ + "healthcare", + -14.824821472167969 + ], + [ + "▁Kylo", + -14.824830055236816 + ], + [ + "▁Stealing", + -14.824859619140625 + ], + [ + "▁ageless", + -14.824867248535156 + ], + [ + "▁estradiol", + -14.824885368347168 + ], + [ + "▁stabilised", + -14.824931144714355 + ], + [ + "ICP", + -14.824934959411621 + ], + [ + "▁punts", + -14.824953079223633 + ], + [ + "Grady", + -14.82497787475586 + ], + [ + "ர்", + -14.825019836425781 + ], + [ + "Craig", + -14.82507038116455 + ], + [ + "▁Antilles", + -14.825082778930664 + ], + [ + "▁Pré", + -14.825100898742676 + ], + [ + "▁Quadri", + -14.82510757446289 + ], + [ + "hazard", + -14.825117111206055 + ], + [ + "eesh", + -14.8251314163208 + ], + [ + "landing", + -14.825139045715332 + ], + [ + "▁russia", + -14.825148582458496 + ], + [ + "▁NMDA", + -14.825151443481445 + ], + [ + "▁572", + -14.825152397155762 + ], + [ + "winded", + -14.82519245147705 + ], + [ + "▁whosoever", + -14.82519817352295 + ], + [ + "▁harga", + -14.825224876403809 + ], + [ + "▁Kuru", + -14.82525634765625 + ], + [ + "iliary", + -14.825298309326172 + ], + [ + "NOM", + -14.825340270996094 + ], + [ + "▁Tc", + -14.825356483459473 + ], + [ + "Sharing", + -14.825357437133789 + ], + [ + "▁quizzed", + -14.825366020202637 + ], + [ + "▁Starburst", + -14.825372695922852 + ], + [ + "opod", + -14.82541275024414 + ], + [ + "▁Kanu", + -14.825425148010254 + ], + [ + "Й", + -14.825450897216797 + ], + [ + "▁tendrils", + -14.825455665588379 + ], + [ + "coupling", + -14.825458526611328 + ], + [ + "ত", + -14.825464248657227 + ], + [ + "▁Citrate", + -14.82548713684082 + ], + [ + "▁Thales", + -14.825495719909668 + ], + [ + "▁itinerant", + -14.825505256652832 + ], + [ + "▁meteorites", + -14.825531959533691 + ], + [ + "▁CHAT", + -14.825538635253906 + ], + [ + "▁grained", + -14.825540542602539 + ], + [ + "▁resveratrol", + -14.825575828552246 + ], + [ + "gaku", + -14.825617790222168 + ], + [ + "FIRE", + -14.825627326965332 + ], + [ + "▁pithy", + -14.825632095336914 + ], + [ + "▁Futur", + -14.825647354125977 + ], + [ + "▁Messy", + -14.825654029846191 + ], + [ + "▁예", + -14.82571029663086 + ], + [ + "occurrence", + -14.825732231140137 + ], + [ + "▁Wessel", + -14.825732231140137 + ], + [ + "▁fluoxetine", + -14.825743675231934 + ], + [ + "▁outlive", + -14.825746536254883 + ], + [ + "Dogs", + -14.825777053833008 + ], + [ + "shree", + -14.825789451599121 + ], + [ + "▁quips", + -14.82579517364502 + ], + [ + "▁creak", + -14.825797080993652 + ], + [ + "intermediate", + -14.825811386108398 + ], + [ + "▁WAG", + -14.825921058654785 + ], + [ + "▁Propagation", + -14.825923919677734 + ], + [ + "CCO", + -14.825944900512695 + ], + [ + "▁solidifying", + -14.825945854187012 + ], + [ + "▁phlegm", + -14.825953483581543 + ], + [ + "desi", + -14.825971603393555 + ], + [ + "▁Resting", + -14.82598876953125 + ], + [ + "▁irked", + -14.826005935668945 + ], + [ + "▁renegotiation", + -14.826030731201172 + ], + [ + "moni", + -14.826054573059082 + ], + [ + "▁Herrmann", + -14.82606029510498 + ], + [ + "▁903", + -14.826083183288574 + ], + [ + "Yang", + -14.8261079788208 + ], + [ + "▁Chaim", + -14.826119422912598 + ], + [ + "CVD", + -14.826123237609863 + ], + [ + "▁mismo", + -14.826123237609863 + ], + [ + "▁même", + -14.82614517211914 + ], + [ + "▁Nicosia", + -14.82614803314209 + ], + [ + "Hidden", + -14.826150894165039 + ], + [ + "▁SLT", + -14.82615852355957 + ], + [ + "▁Yost", + -14.826187133789062 + ], + [ + "▁puppeteer", + -14.826194763183594 + ], + [ + "▁Shinto", + -14.826216697692871 + ], + [ + "oar", + -14.826220512390137 + ], + [ + "outperform", + -14.826239585876465 + ], + [ + "▁leashes", + -14.826252937316895 + ], + [ + "vora", + -14.826288223266602 + ], + [ + "▁Revis", + -14.826335906982422 + ], + [ + "▁albatross", + -14.826338768005371 + ], + [ + "▁remanufactured", + -14.826353073120117 + ], + [ + "▁geno", + -14.826355934143066 + ], + [ + "▁sko", + -14.826375961303711 + ], + [ + "SDI", + -14.826383590698242 + ], + [ + "ր", + -14.826404571533203 + ], + [ + "▁1730", + -14.826444625854492 + ], + [ + "▁flirtatious", + -14.826472282409668 + ], + [ + "▁Prune", + -14.826491355895996 + ], + [ + "▁relaxant", + -14.826509475708008 + ], + [ + "▁Laila", + -14.826523780822754 + ], + [ + "▁NIM", + -14.826526641845703 + ], + [ + "▁ravens", + -14.826557159423828 + ], + [ + "▁Battlefront", + -14.82656478881836 + ], + [ + "Governor", + -14.826587677001953 + ], + [ + "▁spaceships", + -14.82659912109375 + ], + [ + "spill", + -14.826607704162598 + ], + [ + "ን", + -14.826618194580078 + ], + [ + "deoxy", + -14.82663345336914 + ], + [ + "▁Hippie", + -14.826680183410645 + ], + [ + "▁stiffened", + -14.826680183410645 + ], + [ + "▁Saff", + -14.826714515686035 + ], + [ + "▁AUX", + -14.826716423034668 + ], + [ + "▁Departmental", + -14.826725959777832 + ], + [ + "▁Suleiman", + -14.826752662658691 + ], + [ + "▁Yanks", + -14.826759338378906 + ], + [ + "▁Setter", + -14.826784133911133 + ], + [ + "▁Cashier", + -14.826787948608398 + ], + [ + "▁Dube", + -14.826804161071777 + ], + [ + "▁POSITION", + -14.826810836791992 + ], + [ + "▁deplore", + -14.826818466186523 + ], + [ + "▁pmid", + -14.826834678649902 + ], + [ + "wayne", + -14.8268404006958 + ], + [ + "▁Linder", + -14.826854705810547 + ], + [ + "▁cordoned", + -14.826876640319824 + ], + [ + "compensated", + -14.826915740966797 + ], + [ + "▁Khair", + -14.826915740966797 + ], + [ + "▁casement", + -14.826930046081543 + ], + [ + "oker", + -14.827021598815918 + ], + [ + "▁Catania", + -14.827038764953613 + ], + [ + "greatest", + -14.82703971862793 + ], + [ + "▁Schein", + -14.82705020904541 + ], + [ + "▁boe", + -14.827088356018066 + ], + [ + "erant", + -14.827089309692383 + ], + [ + "▁Medigap", + -14.827109336853027 + ], + [ + "▁sternly", + -14.827132225036621 + ], + [ + "▁935", + -14.827134132385254 + ], + [ + "▁provolone", + -14.827134132385254 + ], + [ + "OTO", + -14.827156066894531 + ], + [ + "▁Wider", + -14.827163696289062 + ], + [ + "NHL", + -14.827201843261719 + ], + [ + "▁Electrolux", + -14.827245712280273 + ], + [ + "▁744", + -14.82726001739502 + ], + [ + "Tower", + -14.827266693115234 + ], + [ + "▁filers", + -14.827280044555664 + ], + [ + "ôn", + -14.827303886413574 + ], + [ + "▁Medway", + -14.827317237854004 + ], + [ + "▁Aotearoa", + -14.827336311340332 + ], + [ + "▁Umbria", + -14.827338218688965 + ], + [ + "aunch", + -14.827350616455078 + ], + [ + "▁amniotic", + -14.82735824584961 + ], + [ + "▁Vonn", + -14.827363967895508 + ], + [ + "▁Advert", + -14.82739543914795 + ], + [ + "▁Cada", + -14.82742691040039 + ], + [ + "tutorial", + -14.827435493469238 + ], + [ + "utils", + -14.827497482299805 + ], + [ + "kindergarten", + -14.827520370483398 + ], + [ + "▁gravitated", + -14.827555656433105 + ], + [ + "▁Unsure", + -14.827609062194824 + ], + [ + "▁Prawn", + -14.827619552612305 + ], + [ + "▁Donbas", + -14.827643394470215 + ], + [ + "▁Neely", + -14.827646255493164 + ], + [ + "▁vaudeville", + -14.82765007019043 + ], + [ + "▁oversupply", + -14.827672004699707 + ], + [ + "usch", + -14.827690124511719 + ], + [ + "ivable", + -14.827691078186035 + ], + [ + "න්", + -14.827709197998047 + ], + [ + "▁dyslexic", + -14.827717781066895 + ], + [ + "▁instinctual", + -14.827718734741211 + ], + [ + "▁Boas", + -14.827729225158691 + ], + [ + "▁participle", + -14.827730178833008 + ], + [ + "▁straddles", + -14.82773208618164 + ], + [ + "各", + -14.827781677246094 + ], + [ + "▁snowshoe", + -14.827875137329102 + ], + [ + "Horn", + -14.827881813049316 + ], + [ + "ԁ", + -14.827953338623047 + ], + [ + "▁Malwarebytes", + -14.827966690063477 + ], + [ + "KINS", + -14.828017234802246 + ], + [ + "▁Woodard", + -14.828039169311523 + ], + [ + "walla", + -14.828088760375977 + ], + [ + "▁jer", + -14.828089714050293 + ], + [ + "▁HORSE", + -14.828092575073242 + ], + [ + "▁benzodiazepines", + -14.828131675720215 + ], + [ + "▁Patented", + -14.828132629394531 + ], + [ + "▁Sitter", + -14.828149795532227 + ], + [ + "▁retrain", + -14.82815170288086 + ], + [ + "▁dumbest", + -14.828218460083008 + ], + [ + "▁turnip", + -14.828219413757324 + ], + [ + "▁blasphemous", + -14.828234672546387 + ], + [ + "▁Afrin", + -14.82823657989502 + ], + [ + "expense", + -14.82824420928955 + ], + [ + "Bol", + -14.828288078308105 + ], + [ + "▁flowy", + -14.828311920166016 + ], + [ + "▁Domenico", + -14.828316688537598 + ], + [ + "▁dicks", + -14.828398704528809 + ], + [ + "▁copay", + -14.828442573547363 + ], + [ + "▁Basse", + -14.828490257263184 + ], + [ + "▁Kincaid", + -14.828493118286133 + ], + [ + "▁triumphantly", + -14.828499794006348 + ], + [ + "consulting", + -14.828516960144043 + ], + [ + "Repair", + -14.8285551071167 + ], + [ + "Karen", + -14.828584671020508 + ], + [ + "▁Organiser", + -14.82861042022705 + ], + [ + "ziel", + -14.82862377166748 + ], + [ + "▁webserver", + -14.828654289245605 + ], + [ + "DAM", + -14.828689575195312 + ], + [ + "▁plopped", + -14.828734397888184 + ], + [ + "▁manta", + -14.828764915466309 + ], + [ + "▁corded", + -14.828765869140625 + ], + [ + "▁echelon", + -14.828775405883789 + ], + [ + "▁tillage", + -14.828792572021484 + ], + [ + "▁Braga", + -14.828803062438965 + ], + [ + "▁Aunty", + -14.82882022857666 + ], + [ + "▁PostPrevious", + -14.828903198242188 + ], + [ + "▁Fishman", + -14.828937530517578 + ], + [ + "▁Centric", + -14.82898235321045 + ], + [ + "Wis", + -14.828985214233398 + ], + [ + "▁gir", + -14.829001426696777 + ], + [ + "▁pander", + -14.829005241394043 + ], + [ + "▁GLEN", + -14.829041481018066 + ], + [ + "▁FWIW", + -14.829045295715332 + ], + [ + "▁chug", + -14.829046249389648 + ], + [ + "▁Battleship", + -14.829059600830078 + ], + [ + "▁Pinky", + -14.82913589477539 + ], + [ + "Sri", + -14.82915210723877 + ], + [ + "▁Microscopy", + -14.829156875610352 + ], + [ + "▁meteorology", + -14.829208374023438 + ], + [ + "▁Interference", + -14.829225540161133 + ], + [ + "▁Cef", + -14.829251289367676 + ], + [ + "▁Newswire", + -14.829259872436523 + ], + [ + "▁Princesses", + -14.829267501831055 + ], + [ + "▁haystack", + -14.829289436340332 + ], + [ + "▁Kerouac", + -14.829318046569824 + ], + [ + "▁mishandling", + -14.829318046569824 + ], + [ + "▁Endorsement", + -14.82936954498291 + ], + [ + "BAD", + -14.82939338684082 + ], + [ + "▁TomTom", + -14.829416275024414 + ], + [ + "▁OSM", + -14.82947826385498 + ], + [ + "▁Blooming", + -14.829524040222168 + ], + [ + "▁Kissing", + -14.829533576965332 + ], + [ + "▁STATEMENT", + -14.829534530639648 + ], + [ + "worx", + -14.829571723937988 + ], + [ + "Premium", + -14.829606056213379 + ], + [ + "▁Fauna", + -14.829614639282227 + ], + [ + "▁industrialists", + -14.829633712768555 + ], + [ + "▁Bk", + -14.829634666442871 + ], + [ + "▁produit", + -14.829646110534668 + ], + [ + "▁Influenced", + -14.829662322998047 + ], + [ + "▁Haida", + -14.829684257507324 + ], + [ + "gbe", + -14.829686164855957 + ], + [ + "▁contraindicated", + -14.829708099365234 + ], + [ + "▁Terrorists", + -14.829769134521484 + ], + [ + "▁Zoroastrian", + -14.829773902893066 + ], + [ + "▁Slum", + -14.829787254333496 + ], + [ + "▁ERK", + -14.829818725585938 + ], + [ + "▁ewes", + -14.829824447631836 + ], + [ + "arson", + -14.829835891723633 + ], + [ + "▁Fili", + -14.829855918884277 + ], + [ + "▁Sopranos", + -14.829866409301758 + ], + [ + "▁disarmed", + -14.829899787902832 + ], + [ + "▁cognitively", + -14.82990837097168 + ], + [ + "clutch", + -14.829916000366211 + ], + [ + "▁Subversion", + -14.82992172241211 + ], + [ + "▁journeying", + -14.829963684082031 + ], + [ + "▁amphibian", + -14.82996654510498 + ], + [ + "▁PUC", + -14.829977989196777 + ], + [ + "▁Crabb", + -14.830011367797852 + ], + [ + "ABR", + -14.830024719238281 + ], + [ + "▁Palmerston", + -14.830058097839355 + ], + [ + "▁offends", + -14.830065727233887 + ], + [ + "▁Marconi", + -14.830068588256836 + ], + [ + "▁Diode", + -14.830074310302734 + ], + [ + "▁analyzers", + -14.830098152160645 + ], + [ + "Worker", + -14.830100059509277 + ], + [ + "▁вЂ", + -14.830108642578125 + ], + [ + "▁Seba", + -14.830119132995605 + ], + [ + "▁overstock", + -14.830144882202148 + ], + [ + "▁AUTOMATIC", + -14.830158233642578 + ], + [ + "▁LTL", + -14.830162048339844 + ], + [ + "vano", + -14.83018970489502 + ], + [ + "▁Commune", + -14.830201148986816 + ], + [ + "▁Barbra", + -14.830229759216309 + ], + [ + "▁LADY", + -14.830246925354004 + ], + [ + "▁dispenses", + -14.830336570739746 + ], + [ + "вы", + -14.830368041992188 + ], + [ + "▁billy", + -14.830394744873047 + ], + [ + "▁Foothill", + -14.830411911010742 + ], + [ + "▁viel", + -14.830423355102539 + ], + [ + "▁contemptuous", + -14.830437660217285 + ], + [ + "▁668", + -14.830443382263184 + ], + [ + "▁concret", + -14.830530166625977 + ], + [ + "▁deathbed", + -14.83054256439209 + ], + [ + "guish", + -14.830565452575684 + ], + [ + "▁atlantic", + -14.830565452575684 + ], + [ + "ullen", + -14.830574989318848 + ], + [ + "▁Mehdi", + -14.830625534057617 + ], + [ + "▁Competitiveness", + -14.830636978149414 + ], + [ + "▁Gestapo", + -14.830663681030273 + ], + [ + "▁barrow", + -14.830665588378906 + ], + [ + "▁Perimeter", + -14.830692291259766 + ], + [ + "▁Skidmore", + -14.83071517944336 + ], + [ + "▁DELL", + -14.830724716186523 + ], + [ + "▁scrunch", + -14.830726623535156 + ], + [ + "RANT", + -14.830742835998535 + ], + [ + "Rather", + -14.830742835998535 + ], + [ + "▁Converge", + -14.830747604370117 + ], + [ + "▁physiologically", + -14.830754280090332 + ], + [ + "ല", + -14.83078670501709 + ], + [ + "▁grav", + -14.830810546875 + ], + [ + "thousands", + -14.830833435058594 + ], + [ + "▁sturdier", + -14.830842971801758 + ], + [ + "▁fibrin", + -14.83085823059082 + ], + [ + "▁adherent", + -14.83088207244873 + ], + [ + "▁portage", + -14.830892562866211 + ], + [ + "▁reallocated", + -14.830934524536133 + ], + [ + "▁pessimist", + -14.830942153930664 + ], + [ + "▁Agha", + -14.83096981048584 + ], + [ + "▁announcers", + -14.830999374389648 + ], + [ + "▁Hula", + -14.831012725830078 + ], + [ + "GBP", + -14.831019401550293 + ], + [ + "Costa", + -14.83104133605957 + ], + [ + "▁SMG", + -14.831061363220215 + ], + [ + "▁Promoted", + -14.831082344055176 + ], + [ + "▁TONS", + -14.8311128616333 + ], + [ + "▁Woot", + -14.831114768981934 + ], + [ + "▁excrement", + -14.831114768981934 + ], + [ + "MPL", + -14.831165313720703 + ], + [ + "Vehicle", + -14.83118724822998 + ], + [ + "GGG", + -14.831214904785156 + ], + [ + "▁greg", + -14.831220626831055 + ], + [ + "OJ", + -14.831235885620117 + ], + [ + "▁Wilmer", + -14.831242561340332 + ], + [ + "▁clair", + -14.831259727478027 + ], + [ + "▁Pardo", + -14.831291198730469 + ], + [ + "▁Cultivate", + -14.831318855285645 + ], + [ + "▁provisionally", + -14.831320762634277 + ], + [ + "▁Sandia", + -14.831337928771973 + ], + [ + "▁Mair", + -14.8313570022583 + ], + [ + "LASH", + -14.831374168395996 + ], + [ + "лов", + -14.831382751464844 + ], + [ + "бор", + -14.831391334533691 + ], + [ + "▁GTE", + -14.83141803741455 + ], + [ + "▁Sebastien", + -14.831419944763184 + ], + [ + "IANA", + -14.831426620483398 + ], + [ + "▁consign", + -14.831463813781738 + ], + [ + "▁virtuosity", + -14.831497192382812 + ], + [ + "▁infatuated", + -14.83151912689209 + ], + [ + "ač", + -14.831551551818848 + ], + [ + "▁Arre", + -14.831568717956543 + ], + [ + "до", + -14.831574440002441 + ], + [ + "▁Puna", + -14.831576347351074 + ], + [ + "▁McCulloch", + -14.831586837768555 + ], + [ + "▁658", + -14.831605911254883 + ], + [ + "▁heirlooms", + -14.831616401672363 + ], + [ + "odium", + -14.831625938415527 + ], + [ + "▁tradesman", + -14.831629753112793 + ], + [ + "Mara", + -14.831631660461426 + ], + [ + "Perform", + -14.831636428833008 + ], + [ + "▁rhododendron", + -14.83165454864502 + ], + [ + "▁languid", + -14.831695556640625 + ], + [ + "▁fussing", + -14.831698417663574 + ], + [ + "watchers", + -14.831701278686523 + ], + [ + "မ", + -14.831721305847168 + ], + [ + "Mono", + -14.831743240356445 + ], + [ + "▁Bourgeois", + -14.831765174865723 + ], + [ + "▁intercepts", + -14.831769943237305 + ], + [ + "▁tubule", + -14.83177375793457 + ], + [ + "Topic", + -14.831840515136719 + ], + [ + "▁Dian", + -14.831841468811035 + ], + [ + "▁conformational", + -14.831872940063477 + ], + [ + "▁sighing", + -14.83193302154541 + ], + [ + "▁biliary", + -14.831947326660156 + ], + [ + "▁Feynman", + -14.831958770751953 + ], + [ + "▁Dorman", + -14.831968307495117 + ], + [ + "▁Moura", + -14.831986427307129 + ], + [ + "▁Soni", + -14.832022666931152 + ], + [ + "hene", + -14.832046508789062 + ], + [ + "erber", + -14.832061767578125 + ], + [ + "▁MAPK", + -14.832067489624023 + ], + [ + "▁BRAD", + -14.832085609436035 + ], + [ + "▁Rebound", + -14.8320894241333 + ], + [ + "▁Hwa", + -14.832113265991211 + ], + [ + "Poli", + -14.832115173339844 + ], + [ + "▁laundromat", + -14.83215045928955 + ], + [ + "▁Comprar", + -14.8321533203125 + ], + [ + "▁Knut", + -14.832173347473145 + ], + [ + "bergen", + -14.832182884216309 + ], + [ + "▁zona", + -14.832209587097168 + ], + [ + "▁woeful", + -14.832245826721191 + ], + [ + "▁chipsets", + -14.832267761230469 + ], + [ + "▁Leake", + -14.832279205322266 + ], + [ + "STP", + -14.83229923248291 + ], + [ + "adequate", + -14.8323392868042 + ], + [ + "▁quince", + -14.832395553588867 + ], + [ + "▁Haskins", + -14.832396507263184 + ], + [ + "▁Ptolemy", + -14.832409858703613 + ], + [ + "▁Solver", + -14.832411766052246 + ], + [ + "oog", + -14.832414627075195 + ], + [ + "eol", + -14.832419395446777 + ], + [ + "▁Simp", + -14.832460403442383 + ], + [ + "交", + -14.832477569580078 + ], + [ + "▁wilson", + -14.832559585571289 + ], + [ + "▁lanka", + -14.832563400268555 + ], + [ + "Zoo", + -14.832578659057617 + ], + [ + "▁splintered", + -14.832579612731934 + ], + [ + "NEX", + -14.83258056640625 + ], + [ + "ellation", + -14.832581520080566 + ], + [ + "▁moncler", + -14.832596778869629 + ], + [ + "▁interrelationship", + -14.832616806030273 + ], + [ + "▁GAC", + -14.832621574401855 + ], + [ + "▁Whitefish", + -14.832649230957031 + ], + [ + "Seeing", + -14.832658767700195 + ], + [ + "Newsletter", + -14.832696914672852 + ], + [ + "▁Barbican", + -14.832698822021484 + ], + [ + "hiri", + -14.832733154296875 + ], + [ + "▁Musi", + -14.832847595214844 + ], + [ + "▁acupressure", + -14.832850456237793 + ], + [ + "▁Platter", + -14.83285140991211 + ], + [ + "Insert", + -14.832876205444336 + ], + [ + "▁Posse", + -14.832906723022461 + ], + [ + "▁Ashanti", + -14.832921028137207 + ], + [ + "kashi", + -14.832930564880371 + ], + [ + "▁Cashew", + -14.833001136779785 + ], + [ + "▁BBM", + -14.833008766174316 + ], + [ + "▁Presidio", + -14.833009719848633 + ], + [ + "▁CPG", + -14.833109855651855 + ], + [ + "Hood", + -14.833111763000488 + ], + [ + "▁Daniele", + -14.8331298828125 + ], + [ + "▁LUM", + -14.833142280578613 + ], + [ + "ceae", + -14.833162307739258 + ], + [ + "Cruz", + -14.833170890808105 + ], + [ + "▁ADE", + -14.833176612854004 + ], + [ + "▁Jardine", + -14.83318042755127 + ], + [ + "▁Crowdfunding", + -14.833194732666016 + ], + [ + "▁Compliment", + -14.833209991455078 + ], + [ + "▁heifers", + -14.833280563354492 + ], + [ + "▁Impaired", + -14.833306312561035 + ], + [ + "▁misfits", + -14.833380699157715 + ], + [ + "▁Epidemic", + -14.833402633666992 + ], + [ + "▁shuck", + -14.833427429199219 + ], + [ + "concil", + -14.833428382873535 + ], + [ + "pou", + -14.833428382873535 + ], + [ + "▁frit", + -14.833439826965332 + ], + [ + "▁ALE", + -14.833467483520508 + ], + [ + "leon", + -14.833475112915039 + ], + [ + "▁Downloaded", + -14.833479881286621 + ], + [ + "▁Forging", + -14.833518028259277 + ], + [ + "▁Indices", + -14.833518981933594 + ], + [ + "▁Kek", + -14.833520889282227 + ], + [ + "▁perfumed", + -14.833539009094238 + ], + [ + "Quad", + -14.833573341369629 + ], + [ + "kham", + -14.833580017089844 + ], + [ + "▁servicio", + -14.833638191223145 + ], + [ + "▁Brecht", + -14.833677291870117 + ], + [ + "▁Furnished", + -14.833680152893066 + ], + [ + "▁EXPRESSLY", + -14.8336820602417 + ], + [ + "▁ballooned", + -14.83368968963623 + ], + [ + "polish", + -14.833771705627441 + ], + [ + "▁1786", + -14.833813667297363 + ], + [ + "▁caressing", + -14.833820343017578 + ], + [ + "▁Sovereignty", + -14.833824157714844 + ], + [ + "▁569", + -14.833830833435059 + ], + [ + "▁CAIR", + -14.833831787109375 + ], + [ + "▁brazil", + -14.83383846282959 + ], + [ + "▁bookish", + -14.833881378173828 + ], + [ + "▁Lismore", + -14.833884239196777 + ], + [ + "governance", + -14.833907127380371 + ], + [ + "선", + -14.833918571472168 + ], + [ + "▁582", + -14.833925247192383 + ], + [ + "▁CMB", + -14.833934783935547 + ], + [ + "▁Crucially", + -14.833986282348633 + ], + [ + "▁photocopies", + -14.834017753601074 + ], + [ + "racer", + -14.834037780761719 + ], + [ + "▁ley", + -14.834046363830566 + ], + [ + "▁cyano", + -14.834049224853516 + ], + [ + "privileged", + -14.834051132202148 + ], + [ + "▁Westeros", + -14.834062576293945 + ], + [ + "▁despondent", + -14.834158897399902 + ], + [ + "auction", + -14.83419418334961 + ], + [ + "▁Microfiber", + -14.834216117858887 + ], + [ + "▁subfolder", + -14.834237098693848 + ], + [ + "▁Hoshi", + -14.834248542785645 + ], + [ + "terio", + -14.834310531616211 + ], + [ + "▁potentiometer", + -14.834317207336426 + ], + [ + "▁Swinton", + -14.834324836730957 + ], + [ + "▁Kowloon", + -14.834351539611816 + ], + [ + "rebel", + -14.834360122680664 + ], + [ + "▁Evolving", + -14.83439826965332 + ], + [ + "Stories", + -14.8344144821167 + ], + [ + "▁colo", + -14.834423065185547 + ], + [ + "▁penitent", + -14.834460258483887 + ], + [ + "▁να", + -14.83447551727295 + ], + [ + "▁serialization", + -14.83449935913086 + ], + [ + "Yi", + -14.834506034851074 + ], + [ + "ubba", + -14.834527015686035 + ], + [ + "▁pestle", + -14.834535598754883 + ], + [ + "▁HEAR", + -14.834577560424805 + ], + [ + "▁PRICES", + -14.834589004516602 + ], + [ + "brilliant", + -14.834607124328613 + ], + [ + "▁wav", + -14.834634780883789 + ], + [ + "▁Coarse", + -14.834654808044434 + ], + [ + "▁Rumours", + -14.834657669067383 + ], + [ + "▁symposia", + -14.834667205810547 + ], + [ + "CFC", + -14.834668159484863 + ], + [ + "Includes", + -14.834684371948242 + ], + [ + "symmetric", + -14.834685325622559 + ], + [ + "2300", + -14.83469009399414 + ], + [ + "▁après", + -14.83469009399414 + ], + [ + "Gill", + -14.834700584411621 + ], + [ + "▁kia", + -14.834708213806152 + ], + [ + "▁Airfield", + -14.834726333618164 + ], + [ + "▁£27", + -14.83473014831543 + ], + [ + "urnal", + -14.834735870361328 + ], + [ + "ONAL", + -14.834755897521973 + ], + [ + "iara", + -14.8347806930542 + ], + [ + "▁Airstream", + -14.834836959838867 + ], + [ + "▁Downloadable", + -14.834846496582031 + ], + [ + "က", + -14.834882736206055 + ], + [ + "▁Corgi", + -14.834906578063965 + ], + [ + "▁Harrods", + -14.83491325378418 + ], + [ + "▁speedboat", + -14.83495044708252 + ], + [ + "plete", + -14.83497428894043 + ], + [ + "▁monolayer", + -14.834990501403809 + ], + [ + "politic", + -14.8350191116333 + ], + [ + "gham", + -14.835029602050781 + ], + [ + "▁Malabar", + -14.835029602050781 + ], + [ + "vante", + -14.835033416748047 + ], + [ + "す", + -14.835037231445312 + ], + [ + "▁NASHVILLE", + -14.835041999816895 + ], + [ + "gifts", + -14.835086822509766 + ], + [ + "▁Leek", + -14.835097312927246 + ], + [ + "▁Veracruz", + -14.83520221710205 + ], + [ + "▁Quadra", + -14.835223197937012 + ], + [ + "▁familia", + -14.835258483886719 + ], + [ + "▁Acker", + -14.835271835327148 + ], + [ + "RTA", + -14.835277557373047 + ], + [ + "▁Nurture", + -14.835277557373047 + ], + [ + "▁tricking", + -14.835307121276855 + ], + [ + "SOS", + -14.835330963134766 + ], + [ + "pte", + -14.835349082946777 + ], + [ + "▁tightest", + -14.83535385131836 + ], + [ + "melo", + -14.835378646850586 + ], + [ + "▁Smackdown", + -14.835397720336914 + ], + [ + "▁Tisch", + -14.835445404052734 + ], + [ + "Mania", + -14.835531234741211 + ], + [ + "▁Abbreviation", + -14.835537910461426 + ], + [ + "▁Infused", + -14.835540771484375 + ], + [ + "▁manifestly", + -14.835546493530273 + ], + [ + "Cancer", + -14.835553169250488 + ], + [ + "▁Volga", + -14.835601806640625 + ], + [ + "▁ducted", + -14.835619926452637 + ], + [ + "1050", + -14.835627555847168 + ], + [ + "▁Goebbels", + -14.835628509521484 + ], + [ + "biblical", + -14.835637092590332 + ], + [ + "▁Fournier", + -14.835638046264648 + ], + [ + "▁Daycare", + -14.835651397705078 + ], + [ + "▁Etta", + -14.835688591003418 + ], + [ + "▁handcraft", + -14.835693359375 + ], + [ + "▁leapfrog", + -14.835697174072266 + ], + [ + "▁652", + -14.835698127746582 + ], + [ + "сп", + -14.835700988769531 + ], + [ + "▁dubstep", + -14.835734367370605 + ], + [ + "averse", + -14.835738182067871 + ], + [ + "▁Pinocchio", + -14.83579158782959 + ], + [ + "▁Swaraj", + -14.835794448852539 + ], + [ + "Mich", + -14.83582878112793 + ], + [ + "▁deteriorates", + -14.835856437683105 + ], + [ + "▁immunized", + -14.835865020751953 + ], + [ + "iego", + -14.835883140563965 + ], + [ + "encio", + -14.835917472839355 + ], + [ + "▁Beatle", + -14.835976600646973 + ], + [ + "▁Schro", + -14.836016654968262 + ], + [ + "eventually", + -14.836020469665527 + ], + [ + "▁binomial", + -14.83608341217041 + ], + [ + "▁ERIC", + -14.836091995239258 + ], + [ + "Starting", + -14.836140632629395 + ], + [ + "▁stillbirth", + -14.836142539978027 + ], + [ + "▁NEMA", + -14.836174964904785 + ], + [ + "▁grayscale", + -14.836193084716797 + ], + [ + "Axis", + -14.836217880249023 + ], + [ + "▁AGENTS", + -14.83625316619873 + ], + [ + "▁naively", + -14.836285591125488 + ], + [ + "▁Biosphere", + -14.836299896240234 + ], + [ + "doh", + -14.836331367492676 + ], + [ + "Hosting", + -14.836336135864258 + ], + [ + "Grip", + -14.83635139465332 + ], + [ + "zir", + -14.836381912231445 + ], + [ + "Linked", + -14.836382865905762 + ], + [ + "▁antonio", + -14.836414337158203 + ], + [ + "▁Pulwama", + -14.836432456970215 + ], + [ + "▁Kicker", + -14.836440086364746 + ], + [ + "▁crawfish", + -14.836464881896973 + ], + [ + "monic", + -14.836474418640137 + ], + [ + "glomer", + -14.836567878723145 + ], + [ + "▁Likud", + -14.836579322814941 + ], + [ + "▁implored", + -14.83658218383789 + ], + [ + "▁elucidated", + -14.836597442626953 + ], + [ + "▁spud", + -14.836607933044434 + ], + [ + "▁harpsichord", + -14.836647987365723 + ], + [ + "▁Beaverton", + -14.836658477783203 + ], + [ + "▁vivi", + -14.836661338806152 + ], + [ + "▁sangria", + -14.836684226989746 + ], + [ + "▁knitter", + -14.836705207824707 + ], + [ + "Christopher", + -14.836724281311035 + ], + [ + "▁Evol", + -14.836726188659668 + ], + [ + "▁Montauk", + -14.836726188659668 + ], + [ + "BCC", + -14.836740493774414 + ], + [ + "arca", + -14.83675765991211 + ], + [ + "▁Internships", + -14.836772918701172 + ], + [ + "NonCommercial", + -14.836787223815918 + ], + [ + "▁workaholic", + -14.8367919921875 + ], + [ + "▁Zav", + -14.836810111999512 + ], + [ + "▁Observ", + -14.83681869506836 + ], + [ + "▁voluptuous", + -14.83682918548584 + ], + [ + "▁Laundering", + -14.836830139160156 + ], + [ + "▁utero", + -14.836831092834473 + ], + [ + "ichler", + -14.836856842041016 + ], + [ + "▁Wether", + -14.836906433105469 + ], + [ + "CEC", + -14.836907386779785 + ], + [ + "▁debe", + -14.836908340454102 + ], + [ + "▁Ayres", + -14.836928367614746 + ], + [ + "▁Liss", + -14.836935997009277 + ], + [ + "▁coursing", + -14.83693790435791 + ], + [ + "▁München", + -14.836941719055176 + ], + [ + "▁Brann", + -14.836967468261719 + ], + [ + "▁permet", + -14.83697509765625 + ], + [ + "etsky", + -14.836989402770996 + ], + [ + "▁Confi", + -14.836992263793945 + ], + [ + "zinc", + -14.836997985839844 + ], + [ + "▁CHRISTIAN", + -14.837011337280273 + ], + [ + "▁Rainfall", + -14.837016105651855 + ], + [ + "jø", + -14.837030410766602 + ], + [ + "trimmed", + -14.837041854858398 + ], + [ + "▁Clif", + -14.837051391601562 + ], + [ + "▁PDR", + -14.837081909179688 + ], + [ + "silicon", + -14.837153434753418 + ], + [ + "▁Sá", + -14.837173461914062 + ], + [ + "▁FACS", + -14.837282180786133 + ], + [ + "razine", + -14.837285995483398 + ], + [ + "photon", + -14.837286949157715 + ], + [ + "▁Barrister", + -14.837323188781738 + ], + [ + "▁blankly", + -14.83739185333252 + ], + [ + "▁adornment", + -14.83741569519043 + ], + [ + "▁Modul", + -14.837419509887695 + ], + [ + "▁nestle", + -14.83743667602539 + ], + [ + "▁Jord", + -14.837451934814453 + ], + [ + "▁MOUNTAIN", + -14.837475776672363 + ], + [ + "Dollar", + -14.837522506713867 + ], + [ + "▁Fach", + -14.837557792663574 + ], + [ + "▁Sacco", + -14.83760929107666 + ], + [ + "▁Touche", + -14.837618827819824 + ], + [ + "▁Begg", + -14.837624549865723 + ], + [ + "▁suffocate", + -14.837721824645996 + ], + [ + "▁casseroles", + -14.837723731994629 + ], + [ + "hí", + -14.837762832641602 + ], + [ + "▁Cassette", + -14.837785720825195 + ], + [ + "▁streetscape", + -14.837822914123535 + ], + [ + "▁Sanaa", + -14.837838172912598 + ], + [ + "▁HSR", + -14.837878227233887 + ], + [ + "▁Singularity", + -14.837885856628418 + ], + [ + "tapping", + -14.837897300720215 + ], + [ + "▁Regen", + -14.83790397644043 + ], + [ + "▁salicylic", + -14.837973594665527 + ], + [ + "▁gravitas", + -14.838033676147461 + ], + [ + "▁Portion", + -14.838058471679688 + ], + [ + "▁Nominee", + -14.838079452514648 + ], + [ + "▁£29", + -14.838090896606445 + ], + [ + "▁Yamada", + -14.838103294372559 + ], + [ + "▁Muth", + -14.838117599487305 + ], + [ + "▁arborists", + -14.83814811706543 + ], + [ + "▁Diem", + -14.838168144226074 + ], + [ + "graha", + -14.838178634643555 + ], + [ + "ča", + -14.8381986618042 + ], + [ + "▁soundproof", + -14.838226318359375 + ], + [ + "▁equaled", + -14.838236808776855 + ], + [ + "meber", + -14.83824348449707 + ], + [ + "▁yogis", + -14.838251113891602 + ], + [ + "▁uae", + -14.838274955749512 + ], + [ + "▁SDP", + -14.838287353515625 + ], + [ + "ları", + -14.838293075561523 + ], + [ + "Heroes", + -14.838308334350586 + ], + [ + "Aqsa", + -14.8383207321167 + ], + [ + "▁buffed", + -14.838330268859863 + ], + [ + "kiri", + -14.838379859924316 + ], + [ + "▁merrily", + -14.838382720947266 + ], + [ + "Douglas", + -14.838385581970215 + ], + [ + "mapped", + -14.83840560913086 + ], + [ + "▁enlists", + -14.838509559631348 + ], + [ + "▁LAM", + -14.83853816986084 + ], + [ + "▁excit", + -14.838545799255371 + ], + [ + "▁articular", + -14.838568687438965 + ], + [ + "▁unbeknownst", + -14.838597297668457 + ], + [ + "▁க", + -14.83863639831543 + ], + [ + "shaping", + -14.8386812210083 + ], + [ + "▁sunnies", + -14.83869743347168 + ], + [ + "▁VirtualBox", + -14.838700294494629 + ], + [ + "▁roused", + -14.838757514953613 + ], + [ + "▁airsoft", + -14.838783264160156 + ], + [ + "Bible", + -14.838789939880371 + ], + [ + "▁EQUI", + -14.8388090133667 + ], + [ + "TIM", + -14.83882999420166 + ], + [ + "▁discontinuing", + -14.83882999420166 + ], + [ + "▁Cep", + -14.83890151977539 + ], + [ + "▁WPP", + -14.838903427124023 + ], + [ + "divided", + -14.8389892578125 + ], + [ + "▁Vau", + -14.839024543762207 + ], + [ + "▁Walpole", + -14.839077949523926 + ], + [ + "▁simile", + -14.839082717895508 + ], + [ + "▁Arif", + -14.839130401611328 + ], + [ + "membrane", + -14.839139938354492 + ], + [ + "▁embarrassingly", + -14.839150428771973 + ], + [ + "▁Deduction", + -14.839166641235352 + ], + [ + "tsuka", + -14.839173316955566 + ], + [ + "▁Indio", + -14.839227676391602 + ], + [ + "▁Copic", + -14.839232444763184 + ], + [ + "▁unhindered", + -14.8392333984375 + ], + [ + "▁Rejoice", + -14.839237213134766 + ], + [ + "▁BUN", + -14.839279174804688 + ], + [ + "ulence", + -14.839280128479004 + ], + [ + "▁Fostering", + -14.839282035827637 + ], + [ + "▁organiza", + -14.839315414428711 + ], + [ + "Milan", + -14.839375495910645 + ], + [ + "▁peculiarly", + -14.83941650390625 + ], + [ + "▁JAX", + -14.839445114135742 + ], + [ + "BURY", + -14.839462280273438 + ], + [ + "▁Alk", + -14.83952522277832 + ], + [ + "donia", + -14.839543342590332 + ], + [ + "▁colonic", + -14.839561462402344 + ], + [ + "nero", + -14.83956241607666 + ], + [ + "mancer", + -14.839577674865723 + ], + [ + "▁exterminate", + -14.839577674865723 + ], + [ + "▁grownup", + -14.839600563049316 + ], + [ + "▁Trixie", + -14.839605331420898 + ], + [ + "Opti", + -14.83962345123291 + ], + [ + "▁ص", + -14.83968734741211 + ], + [ + "▁categorizing", + -14.839698791503906 + ], + [ + "▁FREEDOM", + -14.839727401733398 + ], + [ + "▁weariness", + -14.839743614196777 + ], + [ + "sorption", + -14.839754104614258 + ], + [ + "▁PDB", + -14.839755058288574 + ], + [ + "▁WRX", + -14.839761734008789 + ], + [ + "▁terrorizing", + -14.839781761169434 + ], + [ + "▁PostNext", + -14.839812278747559 + ], + [ + "▁envied", + -14.839844703674316 + ], + [ + "insulin", + -14.839860916137695 + ], + [ + "▁conjuring", + -14.839869499206543 + ], + [ + "▁amphitheatre", + -14.839893341064453 + ], + [ + "ORD", + -14.839895248413086 + ], + [ + "▁theorize", + -14.839910507202148 + ], + [ + "idyl", + -14.83991813659668 + ], + [ + "Employee", + -14.839932441711426 + ], + [ + "▁Emergence", + -14.839956283569336 + ], + [ + "▁Carmine", + -14.840004920959473 + ], + [ + "▁pinot", + -14.840005874633789 + ], + [ + "▁Assassins", + -14.840015411376953 + ], + [ + "▁Midlothian", + -14.840039253234863 + ], + [ + "▁Librarians", + -14.840069770812988 + ], + [ + "▁Viewpoint", + -14.840069770812988 + ], + [ + "UIT", + -14.840127944946289 + ], + [ + "prayer", + -14.840132713317871 + ], + [ + "▁Gyllenhaal", + -14.840142250061035 + ], + [ + "▁nepotism", + -14.840165138244629 + ], + [ + "villain", + -14.840176582336426 + ], + [ + "▁mili", + -14.840198516845703 + ], + [ + "سا", + -14.840200424194336 + ], + [ + "▁Nucl", + -14.840221405029297 + ], + [ + "▁impassable", + -14.840221405029297 + ], + [ + "▁Sensex", + -14.840250968933105 + ], + [ + "▁Borr", + -14.840267181396484 + ], + [ + "▁impounded", + -14.84029483795166 + ], + [ + "▁UIC", + -14.840333938598633 + ], + [ + "puesto", + -14.840356826782227 + ], + [ + "▁Untold", + -14.840357780456543 + ], + [ + "▁को", + -14.840368270874023 + ], + [ + "▁Pons", + -14.840415954589844 + ], + [ + "▁luckiest", + -14.840421676635742 + ], + [ + "▁unionized", + -14.840472221374512 + ], + [ + "▁bicep", + -14.840475082397461 + ], + [ + "▁Reba", + -14.840530395507812 + ], + [ + "▁beaut", + -14.840584754943848 + ], + [ + "▁unknowable", + -14.840585708618164 + ], + [ + "▁Culp", + -14.84058666229248 + ], + [ + "SPACE", + -14.840627670288086 + ], + [ + "▁NIKE", + -14.840655326843262 + ], + [ + "▁reinvestment", + -14.840710639953613 + ], + [ + "▁Polyethylene", + -14.84072494506836 + ], + [ + "▁Tamilnadu", + -14.840744972229004 + ], + [ + "hä", + -14.84079647064209 + ], + [ + "Mou", + -14.840834617614746 + ], + [ + "▁Imagery", + -14.840834617614746 + ], + [ + "▁Mycobacterium", + -14.840835571289062 + ], + [ + "▁Hemming", + -14.840862274169922 + ], + [ + "▁Warburton", + -14.840869903564453 + ], + [ + "▁USO", + -14.840883255004883 + ], + [ + "▁caf", + -14.840883255004883 + ], + [ + "bue", + -14.840888023376465 + ], + [ + "▁Comput", + -14.840893745422363 + ], + [ + "▁spic", + -14.840958595275879 + ], + [ + "▁ADVERTISEMENT", + -14.841064453125 + ], + [ + "▁Hildebrand", + -14.841123580932617 + ], + [ + "▁Rupees", + -14.841136932373047 + ], + [ + "▁urbanisation", + -14.841192245483398 + ], + [ + "▁JVC", + -14.84121322631836 + ], + [ + "JAN", + -14.841238021850586 + ], + [ + "▁Grundy", + -14.841240882873535 + ], + [ + "▁Faerie", + -14.841261863708496 + ], + [ + "▁teriyaki", + -14.841279029846191 + ], + [ + "стр", + -14.841283798217773 + ], + [ + "▁Zang", + -14.841285705566406 + ], + [ + "corporeal", + -14.841300010681152 + ], + [ + "▁Whitecaps", + -14.841313362121582 + ], + [ + "▁rewire", + -14.841361045837402 + ], + [ + "▁beaker", + -14.841399192810059 + ], + [ + "innen", + -14.84146499633789 + ], + [ + "▁Upward", + -14.841500282287598 + ], + [ + "▁Lexicon", + -14.841514587402344 + ], + [ + "YLE", + -14.841516494750977 + ], + [ + "▁tilapia", + -14.841541290283203 + ], + [ + "Emergency", + -14.841560363769531 + ], + [ + "▁masterwork", + -14.841569900512695 + ], + [ + "임", + -14.841574668884277 + ], + [ + "▁Imitation", + -14.841581344604492 + ], + [ + "▁grooved", + -14.841597557067871 + ], + [ + "▁Buckner", + -14.841611862182617 + ], + [ + "▁Spank", + -14.841634750366211 + ], + [ + "todo", + -14.841646194458008 + ], + [ + "▁dosa", + -14.841646194458008 + ], + [ + "▁BOAT", + -14.841650009155273 + ], + [ + "▁moviegoers", + -14.841658592224121 + ], + [ + "表示", + -14.8416748046875 + ], + [ + "brained", + -14.84168529510498 + ], + [ + "▁McCle", + -14.841768264770508 + ], + [ + "▁abrasions", + -14.84182071685791 + ], + [ + "ート", + -14.841866493225098 + ], + [ + "poet", + -14.841867446899414 + ], + [ + "ый", + -14.841875076293945 + ], + [ + "▁spanked", + -14.841875076293945 + ], + [ + "▁Teamsters", + -14.841893196105957 + ], + [ + "ütz", + -14.841904640197754 + ], + [ + "▁hulk", + -14.841938018798828 + ], + [ + "▁Dham", + -14.841944694519043 + ], + [ + "▁597", + -14.841958045959473 + ], + [ + "▁exasperation", + -14.841973304748535 + ], + [ + "▁Arnaud", + -14.841974258422852 + ], + [ + "▁downpours", + -14.842002868652344 + ], + [ + "guar", + -14.84202766418457 + ], + [ + "▁Markdown", + -14.842042922973633 + ], + [ + "▁Assassination", + -14.84208869934082 + ], + [ + "▁cannibalism", + -14.842097282409668 + ], + [ + "▁leo", + -14.842098236083984 + ], + [ + "zhong", + -14.842106819152832 + ], + [ + "▁Bandera", + -14.842114448547363 + ], + [ + "▁preempt", + -14.842121124267578 + ], + [ + "conducting", + -14.842154502868652 + ], + [ + "▁Horan", + -14.842157363891602 + ], + [ + "▁staunchly", + -14.842164993286133 + ], + [ + "▁Nani", + -14.842166900634766 + ], + [ + "▁Antler", + -14.842185020446777 + ], + [ + "▁korea", + -14.842190742492676 + ], + [ + "▁modded", + -14.84219741821289 + ], + [ + "fibro", + -14.842208862304688 + ], + [ + "▁Upto", + -14.842236518859863 + ], + [ + "Kara", + -14.842242240905762 + ], + [ + "▁SKI", + -14.842248916625977 + ], + [ + "▁HSM", + -14.842263221740723 + ], + [ + "ammer", + -14.842288970947266 + ], + [ + "crat", + -14.842416763305664 + ], + [ + "▁hardens", + -14.84241771697998 + ], + [ + "▁Manchin", + -14.842422485351562 + ], + [ + "lewski", + -14.842453956604004 + ], + [ + "▁Ampli", + -14.842453956604004 + ], + [ + "▁Whin", + -14.842473983764648 + ], + [ + "▁LUC", + -14.842501640319824 + ], + [ + "▁GETTING", + -14.84254264831543 + ], + [ + "▁Derwent", + -14.842546463012695 + ], + [ + "▁Kunz", + -14.84257698059082 + ], + [ + "▁slayer", + -14.842582702636719 + ], + [ + "▁HAI", + -14.842613220214844 + ], + [ + "▁Assn", + -14.842615127563477 + ], + [ + "flin", + -14.842650413513184 + ], + [ + "▁breaststroke", + -14.842668533325195 + ], + [ + "▁DFA", + -14.842671394348145 + ], + [ + "FTC", + -14.842681884765625 + ], + [ + "LIM", + -14.842693328857422 + ], + [ + "Patch", + -14.8427152633667 + ], + [ + "▁Sufficient", + -14.842737197875977 + ], + [ + "ZER", + -14.842765808105469 + ], + [ + "▁FTE", + -14.842808723449707 + ], + [ + "fem", + -14.842833518981934 + ], + [ + "▁chalice", + -14.842842102050781 + ], + [ + "Upon", + -14.842859268188477 + ], + [ + "▁repertory", + -14.842873573303223 + ], + [ + "▁Dembele", + -14.84292221069336 + ], + [ + "viva", + -14.842961311340332 + ], + [ + "Critical", + -14.842966079711914 + ], + [ + "handel", + -14.843001365661621 + ], + [ + "▁Lacan", + -14.843029022216797 + ], + [ + "▁waitresses", + -14.843039512634277 + ], + [ + "▁RNG", + -14.843048095703125 + ], + [ + "▁overzealous", + -14.843058586120605 + ], + [ + "TIPS", + -14.843077659606934 + ], + [ + "▁emigrants", + -14.843104362487793 + ], + [ + "▁norepinephrine", + -14.843124389648438 + ], + [ + "asque", + -14.84312629699707 + ], + [ + "▁Grate", + -14.84314250946045 + ], + [ + "numeric", + -14.843145370483398 + ], + [ + "▁RCP", + -14.843164443969727 + ], + [ + "▁backhoe", + -14.843189239501953 + ], + [ + "▁semana", + -14.843205451965332 + ], + [ + "▁fitters", + -14.843216896057129 + ], + [ + "▁Sinister", + -14.843223571777344 + ], + [ + "▁Bogotá", + -14.843226432800293 + ], + [ + "되는", + -14.843229293823242 + ], + [ + "▁disintegrating", + -14.843231201171875 + ], + [ + "▁INTRODUCTION", + -14.84323787689209 + ], + [ + "▁Groundwater", + -14.843246459960938 + ], + [ + "▁Borderline", + -14.843250274658203 + ], + [ + "▁excepting", + -14.843256950378418 + ], + [ + "▁demerit", + -14.843269348144531 + ], + [ + "▁Squibb", + -14.843278884887695 + ], + [ + "▁excavate", + -14.843318939208984 + ], + [ + "▁eugenics", + -14.843337059020996 + ], + [ + "▁4200", + -14.84335708618164 + ], + [ + "conditioner", + -14.84337043762207 + ], + [ + "▁kickstarter", + -14.843387603759766 + ], + [ + "▁recuse", + -14.843390464782715 + ], + [ + "▁ugliest", + -14.843400001525879 + ], + [ + "▁splattered", + -14.843424797058105 + ], + [ + "utm", + -14.843432426452637 + ], + [ + "▁Kenosha", + -14.843473434448242 + ], + [ + "▁revocable", + -14.843477249145508 + ], + [ + "дан", + -14.843506813049316 + ], + [ + "▁Strava", + -14.843544006347656 + ], + [ + "▁koji", + -14.843546867370605 + ], + [ + "ggles", + -14.843574523925781 + ], + [ + "▁WHS", + -14.843619346618652 + ], + [ + "ση", + -14.843631744384766 + ], + [ + "holtz", + -14.843671798706055 + ], + [ + "▁wether", + -14.843674659729004 + ], + [ + "▁Soaring", + -14.843689918518066 + ], + [ + "▁CAV", + -14.843716621398926 + ], + [ + "▁gratified", + -14.843722343444824 + ], + [ + "▁centralize", + -14.843735694885254 + ], + [ + "Sail", + -14.843785285949707 + ], + [ + "forcing", + -14.843796730041504 + ], + [ + "▁multiverse", + -14.843801498413086 + ], + [ + "▁sicker", + -14.84382438659668 + ], + [ + "▁hunker", + -14.843832015991211 + ], + [ + "▁Compiled", + -14.843833923339844 + ], + [ + "▁Reached", + -14.843860626220703 + ], + [ + "Platform", + -14.843923568725586 + ], + [ + "Sweden", + -14.843960762023926 + ], + [ + "europe", + -14.843973159790039 + ], + [ + "▁Metcalfe", + -14.844008445739746 + ], + [ + "▁प्र", + -14.844106674194336 + ], + [ + "usage", + -14.844109535217285 + ], + [ + "ulta", + -14.844120979309082 + ], + [ + "▁Supa", + -14.844132423400879 + ], + [ + "▁ERRORS", + -14.844157218933105 + ], + [ + "▁Lycra", + -14.844200134277344 + ], + [ + "▁subpopulation", + -14.844213485717773 + ], + [ + "▁militaries", + -14.844234466552734 + ], + [ + "▁NEB", + -14.844243049621582 + ], + [ + "▁NUM", + -14.844244003295898 + ], + [ + "ESPN", + -14.844259262084961 + ], + [ + "measures", + -14.8443021774292 + ], + [ + "▁decapitated", + -14.844318389892578 + ], + [ + "▁Rhoda", + -14.844325065612793 + ], + [ + "▁indented", + -14.844327926635742 + ], + [ + "▁Enzymes", + -14.844348907470703 + ], + [ + "▁taillights", + -14.84436321258545 + ], + [ + "▁Cystic", + -14.844442367553711 + ], + [ + "工", + -14.844465255737305 + ], + [ + "Caribbean", + -14.844482421875 + ], + [ + "▁Graphene", + -14.844486236572266 + ], + [ + "tacular", + -14.84451961517334 + ], + [ + "▁Jurors", + -14.844534873962402 + ], + [ + "▁grudgingly", + -14.844536781311035 + ], + [ + "▁Rayon", + -14.844560623168945 + ], + [ + "▁Thunderbirds", + -14.844573974609375 + ], + [ + "▁Anvil", + -14.84461498260498 + ], + [ + "Jacques", + -14.844629287719727 + ], + [ + "warden", + -14.844633102416992 + ], + [ + "▁Kruse", + -14.844636917114258 + ], + [ + "uben", + -14.844650268554688 + ], + [ + "▁tj", + -14.84467887878418 + ], + [ + "dorff", + -14.844695091247559 + ], + [ + "▁TDC", + -14.844735145568848 + ], + [ + "▁SSM", + -14.844822883605957 + ], + [ + "▁snowmen", + -14.844836235046387 + ], + [ + "wab", + -14.844837188720703 + ], + [ + "▁SoHo", + -14.844846725463867 + ], + [ + "▁moiety", + -14.844855308532715 + ], + [ + "Flying", + -14.844863891601562 + ], + [ + "▁Teigen", + -14.844864845275879 + ], + [ + "▁Garten", + -14.844880104064941 + ], + [ + "▁topaz", + -14.844895362854004 + ], + [ + "URAL", + -14.844904899597168 + ], + [ + "acco", + -14.84496021270752 + ], + [ + "▁EPR", + -14.844987869262695 + ], + [ + "▁ssl", + -14.844990730285645 + ], + [ + "▁Racers", + -14.845048904418945 + ], + [ + "▁Pontifical", + -14.845087051391602 + ], + [ + "▁disobedient", + -14.845121383666992 + ], + [ + "▁EITHER", + -14.845122337341309 + ], + [ + "ства", + -14.845123291015625 + ], + [ + "ビ", + -14.845170021057129 + ], + [ + "▁Elantra", + -14.84518814086914 + ], + [ + "Regular", + -14.845277786254883 + ], + [ + "▁907", + -14.845282554626465 + ], + [ + "Suit", + -14.845293998718262 + ], + [ + "▁Kanda", + -14.845294952392578 + ], + [ + "vow", + -14.845403671264648 + ], + [ + "▁Unmanned", + -14.845438957214355 + ], + [ + "easter", + -14.845455169677734 + ], + [ + "▁venerated", + -14.84546947479248 + ], + [ + "▁Witte", + -14.845475196838379 + ], + [ + "GAT", + -14.84550952911377 + ], + [ + "▁Multinational", + -14.845515251159668 + ], + [ + "▁destruct", + -14.845539093017578 + ], + [ + "▁Aslan", + -14.845580101013184 + ], + [ + "DSC", + -14.845592498779297 + ], + [ + "▁Blacksmith", + -14.84561538696289 + ], + [ + "▁cheaters", + -14.84563159942627 + ], + [ + "▁Pech", + -14.845651626586914 + ], + [ + "sumption", + -14.845656394958496 + ], + [ + "Problem", + -14.84566593170166 + ], + [ + "▁possiblity", + -14.845669746398926 + ], + [ + "▁torturous", + -14.84569263458252 + ], + [ + "insulated", + -14.845705032348633 + ], + [ + "▁833", + -14.845709800720215 + ], + [ + "embo", + -14.845749855041504 + ], + [ + "iyar", + -14.845813751220703 + ], + [ + "▁allotments", + -14.845817565917969 + ], + [ + "▁Reiter", + -14.845820426940918 + ], + [ + "▁Daten", + -14.845832824707031 + ], + [ + "▁Crim", + -14.845841407775879 + ], + [ + "imaging", + -14.845848083496094 + ], + [ + "Gain", + -14.845853805541992 + ], + [ + "aume", + -14.84587574005127 + ], + [ + "▁DNF", + -14.845888137817383 + ], + [ + "▁oem", + -14.845890045166016 + ], + [ + "▁quenched", + -14.845895767211914 + ], + [ + "Joan", + -14.845939636230469 + ], + [ + "▁Settlers", + -14.845941543579102 + ], + [ + "itarianism", + -14.845963478088379 + ], + [ + "▁destinies", + -14.845966339111328 + ], + [ + "FAO", + -14.846016883850098 + ], + [ + "Colour", + -14.846026420593262 + ], + [ + "encoded", + -14.846029281616211 + ], + [ + "▁ʻ", + -14.846035957336426 + ], + [ + "▁energised", + -14.846064567565918 + ], + [ + "isso", + -14.84607219696045 + ], + [ + "Aldrich", + -14.84610366821289 + ], + [ + "Imp", + -14.846117973327637 + ], + [ + "aghi", + -14.846138000488281 + ], + [ + "▁Rother", + -14.846138954162598 + ], + [ + "▁Hebdo", + -14.84615421295166 + ], + [ + "▁jibe", + -14.846172332763672 + ], + [ + "▁heralds", + -14.846200942993164 + ], + [ + "▁wilder", + -14.846208572387695 + ], + [ + "▁unprovoked", + -14.846240997314453 + ], + [ + "▁radiographs", + -14.846258163452148 + ], + [ + "▁Bottled", + -14.846275329589844 + ], + [ + "commitment", + -14.846281051635742 + ], + [ + "▁robustly", + -14.846295356750488 + ], + [ + "spare", + -14.8463134765625 + ], + [ + "▁Veneto", + -14.846321105957031 + ], + [ + "▁overlying", + -14.846325874328613 + ], + [ + "▁Friar", + -14.846354484558105 + ], + [ + "weaver", + -14.846368789672852 + ], + [ + "▁Aptitude", + -14.846386909484863 + ], + [ + "Taiwan", + -14.846407890319824 + ], + [ + "▁AGA", + -14.84641170501709 + ], + [ + "უ", + -14.846446990966797 + ], + [ + "▁Öz", + -14.846458435058594 + ], + [ + "nama", + -14.846461296081543 + ], + [ + "AGG", + -14.846497535705566 + ], + [ + "cja", + -14.846515655517578 + ], + [ + "▁apprised", + -14.846517562866211 + ], + [ + "▁resettled", + -14.846517562866211 + ], + [ + "▁reso", + -14.846597671508789 + ], + [ + "neuron", + -14.846607208251953 + ], + [ + "▁oligarchy", + -14.846611976623535 + ], + [ + "romo", + -14.846617698669434 + ], + [ + "▁Breit", + -14.846624374389648 + ], + [ + "▁Slaves", + -14.846659660339355 + ], + [ + "▁DAF", + -14.846677780151367 + ], + [ + "presence", + -14.846724510192871 + ], + [ + "▁malformations", + -14.846735954284668 + ], + [ + "▁creamed", + -14.846762657165527 + ], + [ + "▁sailboats", + -14.84680461883545 + ], + [ + "▁7200", + -14.846826553344727 + ], + [ + "心", + -14.846837043762207 + ], + [ + "▁Plumb", + -14.846842765808105 + ], + [ + "Forge", + -14.846843719482422 + ], + [ + "▁Osteoporosis", + -14.846858978271484 + ], + [ + "▁Pita", + -14.846872329711914 + ], + [ + "▁Blackhawk", + -14.846914291381836 + ], + [ + "▁Darla", + -14.846975326538086 + ], + [ + "Proxy", + -14.847001075744629 + ], + [ + "arious", + -14.847007751464844 + ], + [ + "▁Freehold", + -14.847053527832031 + ], + [ + "Icon", + -14.847063064575195 + ], + [ + "▁Disappear", + -14.847071647644043 + ], + [ + "▁Restructuring", + -14.847126960754395 + ], + [ + "▁multimeter", + -14.847174644470215 + ], + [ + "▁privat", + -14.847183227539062 + ], + [ + "▁televi", + -14.847187995910645 + ], + [ + "hind", + -14.847241401672363 + ], + [ + "▁louboutin", + -14.847244262695312 + ], + [ + "▁Broomfield", + -14.847254753112793 + ], + [ + "▁favoritism", + -14.847282409667969 + ], + [ + "▁peng", + -14.847298622131348 + ], + [ + "▁ACCC", + -14.84738826751709 + ], + [ + "luminescent", + -14.847471237182617 + ], + [ + "▁firefight", + -14.84749698638916 + ], + [ + "▁Albin", + -14.847506523132324 + ], + [ + "Haul", + -14.847542762756348 + ], + [ + "▁Cacao", + -14.847557067871094 + ], + [ + "▁plows", + -14.847610473632812 + ], + [ + "▁sumo", + -14.847625732421875 + ], + [ + "NTP", + -14.847627639770508 + ], + [ + "▁Holst", + -14.84765338897705 + ], + [ + "▁undies", + -14.847723007202148 + ], + [ + "▁CLARK", + -14.847725868225098 + ], + [ + "مر", + -14.84774112701416 + ], + [ + "▁dailies", + -14.847756385803223 + ], + [ + "▁Stockholders", + -14.847819328308105 + ], + [ + "▁Srinivas", + -14.847845077514648 + ], + [ + "▁Gambler", + -14.847846984863281 + ], + [ + "▁nanowire", + -14.847882270812988 + ], + [ + "▁imputed", + -14.84789752960205 + ], + [ + "▁chokes", + -14.847908020019531 + ], + [ + "carnitine", + -14.847955703735352 + ], + [ + "cono", + -14.847994804382324 + ], + [ + "▁protozoa", + -14.848002433776855 + ], + [ + "▁fluctuated", + -14.84802532196045 + ], + [ + "▁rehabilitative", + -14.848037719726562 + ], + [ + "▁acai", + -14.848085403442383 + ], + [ + "▁Krispy", + -14.8480863571167 + ], + [ + "▁crouching", + -14.848090171813965 + ], + [ + "lori", + -14.848104476928711 + ], + [ + "▁Freeview", + -14.84811019897461 + ], + [ + "ollie", + -14.848201751708984 + ], + [ + "procedure", + -14.848220825195312 + ], + [ + "french", + -14.848261833190918 + ], + [ + "▁Marketer", + -14.848267555236816 + ], + [ + "▁woodcut", + -14.848283767700195 + ], + [ + "rás", + -14.8483304977417 + ], + [ + "▁Goto", + -14.848374366760254 + ], + [ + "▁overclock", + -14.848422050476074 + ], + [ + "▁umm", + -14.84843921661377 + ], + [ + "arabi", + -14.848464012145996 + ], + [ + "▁gorges", + -14.848464965820312 + ], + [ + "▁brawn", + -14.848489761352539 + ], + [ + "▁chafing", + -14.84853458404541 + ], + [ + "▁Colloquium", + -14.848553657531738 + ], + [ + "▁Varna", + -14.848591804504395 + ], + [ + "▁Zir", + -14.84860610961914 + ], + [ + "▁Suppression", + -14.848638534545898 + ], + [ + "meda", + -14.848700523376465 + ], + [ + "▁peppercorns", + -14.848727226257324 + ], + [ + "▁Attenborough", + -14.848782539367676 + ], + [ + "▁mote", + -14.848798751831055 + ], + [ + "▁Bloor", + -14.848823547363281 + ], + [ + "EDT", + -14.848855018615723 + ], + [ + "▁⇒", + -14.848861694335938 + ], + [ + "ري", + -14.848881721496582 + ], + [ + "▁Lonzo", + -14.848894119262695 + ], + [ + "▁lysis", + -14.848895072937012 + ], + [ + "Egg", + -14.848899841308594 + ], + [ + "▁counterweight", + -14.848919868469238 + ], + [ + "Mason", + -14.84893798828125 + ], + [ + "ttling", + -14.848938941955566 + ], + [ + "▁Transporter", + -14.8489408493042 + ], + [ + "▁Kennesaw", + -14.848956108093262 + ], + [ + "claims", + -14.848968505859375 + ], + [ + "▁664", + -14.848968505859375 + ], + [ + "▁calcul", + -14.849004745483398 + ], + [ + "▁Fashionable", + -14.849010467529297 + ], + [ + "IOC", + -14.84902286529541 + ], + [ + "▁alternation", + -14.849042892456055 + ], + [ + "▁Regulated", + -14.84907054901123 + ], + [ + "▁Conscience", + -14.84908390045166 + ], + [ + "▁Newsroom", + -14.849088668823242 + ], + [ + "▁obama", + -14.84911060333252 + ], + [ + "▁absolut", + -14.849128723144531 + ], + [ + "▁Tupperware", + -14.849142074584961 + ], + [ + "▁Roomba", + -14.849176406860352 + ], + [ + "▁Orthopä", + -14.849178314208984 + ], + [ + "ethoxy", + -14.849238395690918 + ], + [ + "▁paler", + -14.849241256713867 + ], + [ + "▁Tannehill", + -14.849252700805664 + ], + [ + "▁sensitively", + -14.849279403686523 + ], + [ + "▁Tunic", + -14.84929370880127 + ], + [ + "Doug", + -14.849309921264648 + ], + [ + "▁Booty", + -14.849329948425293 + ], + [ + "▁CHARACTER", + -14.849355697631836 + ], + [ + "▁Shaykh", + -14.849358558654785 + ], + [ + "▁ROK", + -14.84938907623291 + ], + [ + "vh", + -14.84940242767334 + ], + [ + "▁Goofy", + -14.849414825439453 + ], + [ + "streak", + -14.849425315856934 + ], + [ + "▁demure", + -14.849453926086426 + ], + [ + "▁Puebla", + -14.849493980407715 + ], + [ + "Pump", + -14.849494934082031 + ], + [ + "accu", + -14.849515914916992 + ], + [ + "▁pronto", + -14.849552154541016 + ], + [ + "▁Cigarettes", + -14.849588394165039 + ], + [ + "▁Lich", + -14.849591255187988 + ], + [ + "▁589", + -14.849625587463379 + ], + [ + "▁stagnate", + -14.84964370727539 + ], + [ + "Ukraine", + -14.849702835083008 + ], + [ + "▁RFI", + -14.849722862243652 + ], + [ + "▁Avenida", + -14.849735260009766 + ], + [ + "▁OBS", + -14.849762916564941 + ], + [ + "论坛", + -14.849780082702637 + ], + [ + "▁sentimentality", + -14.849830627441406 + ], + [ + "mutation", + -14.849905967712402 + ], + [ + "Belt", + -14.849916458129883 + ], + [ + "▁Utter", + -14.84992790222168 + ], + [ + "▁reasonableness", + -14.84992790222168 + ], + [ + "▁enforceability", + -14.849964141845703 + ], + [ + "▁farts", + -14.8499755859375 + ], + [ + "▁audiologist", + -14.850022315979004 + ], + [ + "▁capsized", + -14.850038528442383 + ], + [ + "▁Chaudhry", + -14.850101470947266 + ], + [ + "▁nudist", + -14.85011100769043 + ], + [ + "▁Electr", + -14.850111961364746 + ], + [ + "▁Hasn", + -14.850123405456543 + ], + [ + "▁Daz", + -14.850133895874023 + ], + [ + "stripe", + -14.8501615524292 + ], + [ + "▁Absorption", + -14.850164413452148 + ], + [ + "▁presupposition", + -14.850170135498047 + ], + [ + "▁reverberation", + -14.850173950195312 + ], + [ + "▁Physicist", + -14.850207328796387 + ], + [ + "Clay", + -14.850237846374512 + ], + [ + "▁barricaded", + -14.850255966186523 + ], + [ + "▁Westbury", + -14.850275993347168 + ], + [ + "bbc", + -14.850285530090332 + ], + [ + "▁tightrope", + -14.850300788879395 + ], + [ + "▁Leto", + -14.850305557250977 + ], + [ + "▁underlay", + -14.850326538085938 + ], + [ + "yao", + -14.850340843200684 + ], + [ + "▁trippy", + -14.850349426269531 + ], + [ + "▁TRANSMISSION", + -14.850367546081543 + ], + [ + "Vel", + -14.85037899017334 + ], + [ + "▁và", + -14.85037899017334 + ], + [ + "▁Solon", + -14.850418090820312 + ], + [ + "observer", + -14.850445747375488 + ], + [ + "▁fle", + -14.850460052490234 + ], + [ + "▁upheavals", + -14.850478172302246 + ], + [ + "▁Aubameyang", + -14.850492477416992 + ], + [ + "▁Dazzle", + -14.850505828857422 + ], + [ + "▁Tycoon", + -14.850515365600586 + ], + [ + "ะ", + -14.850547790527344 + ], + [ + "▁Cele", + -14.850550651550293 + ], + [ + "▁MIDDLE", + -14.85056209564209 + ], + [ + "▁Pompano", + -14.850568771362305 + ], + [ + "▁Dvorak", + -14.850584030151367 + ], + [ + "kz", + -14.850600242614746 + ], + [ + "▁Pickford", + -14.850632667541504 + ], + [ + "▁flippant", + -14.850646018981934 + ], + [ + "▁Georgette", + -14.850685119628906 + ], + [ + "pathi", + -14.850693702697754 + ], + [ + "ouk", + -14.850708961486816 + ], + [ + "▁Dependency", + -14.850712776184082 + ], + [ + "▁osteopath", + -14.850715637207031 + ], + [ + "▁rhodium", + -14.850781440734863 + ], + [ + "▁UAH", + -14.850790977478027 + ], + [ + "shiki", + -14.850801467895508 + ], + [ + "▁naturalism", + -14.850820541381836 + ], + [ + "▁Sylv", + -14.850863456726074 + ], + [ + "▁Danica", + -14.850869178771973 + ], + [ + "▁dawning", + -14.850875854492188 + ], + [ + "GMP", + -14.850902557373047 + ], + [ + "diagnostic", + -14.850930213928223 + ], + [ + "Toys", + -14.850998878479004 + ], + [ + "▁BPH", + -14.85100269317627 + ], + [ + "▁grappled", + -14.851036071777344 + ], + [ + "▁Witten", + -14.851056098937988 + ], + [ + "▁Beecher", + -14.851090431213379 + ], + [ + "▁legislated", + -14.851113319396973 + ], + [ + "▁Exploitation", + -14.851115226745605 + ], + [ + "▁yall", + -14.851116180419922 + ], + [ + "ಿ", + -14.851122856140137 + ], + [ + "▁Adjustments", + -14.851153373718262 + ], + [ + "▁Elwood", + -14.851184844970703 + ], + [ + "▁RIC", + -14.85119915008545 + ], + [ + "▁Shaolin", + -14.851261138916016 + ], + [ + "Resident", + -14.851268768310547 + ], + [ + "participant", + -14.851277351379395 + ], + [ + "joined", + -14.851303100585938 + ], + [ + "Hmm", + -14.851312637329102 + ], + [ + "▁menos", + -14.851339340209961 + ], + [ + "1895", + -14.85137939453125 + ], + [ + "▁stupor", + -14.851402282714844 + ], + [ + "▁Staley", + -14.851418495178223 + ], + [ + "▁aristocrats", + -14.851432800292969 + ], + [ + "▁Maidan", + -14.851455688476562 + ], + [ + "▁ANIMAL", + -14.851459503173828 + ], + [ + "▁immigrate", + -14.851470947265625 + ], + [ + "▁Cylindrical", + -14.851561546325684 + ], + [ + "▁Diab", + -14.851578712463379 + ], + [ + "▁flecks", + -14.851588249206543 + ], + [ + "Bunny", + -14.851597785949707 + ], + [ + "▁specks", + -14.851604461669922 + ], + [ + "▁phthalates", + -14.85163688659668 + ], + [ + "Thinking", + -14.851653099060059 + ], + [ + "▁monopolize", + -14.851664543151855 + ], + [ + "Luxury", + -14.851678848266602 + ], + [ + "▁Outsiders", + -14.851682662963867 + ], + [ + "▁Collett", + -14.85169506072998 + ], + [ + "▁Stayed", + -14.851704597473145 + ], + [ + "molded", + -14.851726531982422 + ], + [ + "▁TICKETS", + -14.851746559143066 + ], + [ + "▁PIECE", + -14.85175609588623 + ], + [ + "lloway", + -14.851762771606445 + ], + [ + "nomy", + -14.851765632629395 + ], + [ + "▁Defines", + -14.851834297180176 + ], + [ + "▁stapled", + -14.85184383392334 + ], + [ + "oblast", + -14.8518648147583 + ], + [ + "gion", + -14.851890563964844 + ], + [ + "Organization", + -14.851922988891602 + ], + [ + "moore", + -14.851937294006348 + ], + [ + "▁Geode", + -14.851962089538574 + ], + [ + "▁Prolonged", + -14.851963996887207 + ], + [ + "ír", + -14.851964950561523 + ], + [ + "▁Valletta", + -14.852006912231445 + ], + [ + "▁Vinay", + -14.85204792022705 + ], + [ + "Transport", + -14.852072715759277 + ], + [ + "▁Interstellar", + -14.852080345153809 + ], + [ + "▁bollywood", + -14.85208511352539 + ], + [ + "Ultimate", + -14.852107048034668 + ], + [ + "▁predispose", + -14.852108001708984 + ], + [ + "▁Grot", + -14.852118492126465 + ], + [ + "▁gregarious", + -14.852124214172363 + ], + [ + "▁matrimony", + -14.85213565826416 + ], + [ + "▁NLC", + -14.852150917053223 + ], + [ + "▁JAK", + -14.852165222167969 + ], + [ + "▁Orpheus", + -14.852169036865234 + ], + [ + "▁columbia", + -14.852170944213867 + ], + [ + "▁PKC", + -14.85221004486084 + ], + [ + "▁Wiggle", + -14.852263450622559 + ], + [ + "▁Mathematica", + -14.852269172668457 + ], + [ + "▁creationism", + -14.852273941040039 + ], + [ + "Initial", + -14.852274894714355 + ], + [ + "rhiz", + -14.852335929870605 + ], + [ + "NAL", + -14.852336883544922 + ], + [ + "▁resi", + -14.852336883544922 + ], + [ + "▁INDUSTRIAL", + -14.852399826049805 + ], + [ + "▁dormer", + -14.852502822875977 + ], + [ + "▁grudges", + -14.85252571105957 + ], + [ + "▁Affidavit", + -14.85254955291748 + ], + [ + "▁shipyards", + -14.852555274963379 + ], + [ + "▁kitchenware", + -14.852557182312012 + ], + [ + "▁ActiveX", + -14.852566719055176 + ], + [ + "Driving", + -14.8525972366333 + ], + [ + "officially", + -14.852619171142578 + ], + [ + "ැ", + -14.852642059326172 + ], + [ + "Campus", + -14.852646827697754 + ], + [ + "▁Deja", + -14.852693557739258 + ], + [ + "seminar", + -14.85270881652832 + ], + [ + "▁experimenter", + -14.852724075317383 + ], + [ + "▁SOLID", + -14.85273551940918 + ], + [ + "unlock", + -14.852737426757812 + ], + [ + "▁Marcello", + -14.852743148803711 + ], + [ + "▁Scripting", + -14.852770805358887 + ], + [ + "▁moonshine", + -14.852789878845215 + ], + [ + "▁Eigen", + -14.85284423828125 + ], + [ + "▁Sulawesi", + -14.852871894836426 + ], + [ + "▁pueblo", + -14.85289478302002 + ], + [ + "Guitar", + -14.852919578552246 + ], + [ + "▁nonhuman", + -14.852919578552246 + ], + [ + "▁multiplies", + -14.852930068969727 + ], + [ + "▁melding", + -14.852937698364258 + ], + [ + "▁floundering", + -14.85294246673584 + ], + [ + "▁Hiya", + -14.852957725524902 + ], + [ + "▁overtures", + -14.852992057800293 + ], + [ + "▁cranny", + -14.85299301147461 + ], + [ + "hmm", + -14.853001594543457 + ], + [ + "POLI", + -14.853029251098633 + ], + [ + "benzene", + -14.853041648864746 + ], + [ + "▁fingerboard", + -14.853070259094238 + ], + [ + "▁noncompliance", + -14.853078842163086 + ], + [ + "▁catnip", + -14.853090286254883 + ], + [ + "▁jolted", + -14.853093147277832 + ], + [ + "Fixed", + -14.853133201599121 + ], + [ + "▁Medica", + -14.853140830993652 + ], + [ + "HILL", + -14.853145599365234 + ], + [ + "▁Claiborne", + -14.853182792663574 + ], + [ + "▁snagging", + -14.853222846984863 + ], + [ + "▁icicle", + -14.85322380065918 + ], + [ + "▁vaunted", + -14.853228569030762 + ], + [ + "▁neuroimaging", + -14.853233337402344 + ], + [ + "▁Coma", + -14.853272438049316 + ], + [ + "ర", + -14.85327434539795 + ], + [ + "Labor", + -14.853277206420898 + ], + [ + "▁Shatter", + -14.853286743164062 + ], + [ + "seasoned", + -14.853294372558594 + ], + [ + "▁Kubota", + -14.853303909301758 + ], + [ + "▁Showcasing", + -14.853309631347656 + ], + [ + "▁spires", + -14.85332202911377 + ], + [ + "nide", + -14.853330612182617 + ], + [ + "▁Stearate", + -14.853343963623047 + ], + [ + "▁683", + -14.853403091430664 + ], + [ + "▁Asterisk", + -14.85340404510498 + ], + [ + "▁Tyrell", + -14.85341739654541 + ], + [ + "enol", + -14.853424072265625 + ], + [ + "▁Sheena", + -14.853450775146484 + ], + [ + "▁Mauna", + -14.853452682495117 + ], + [ + "▁FEATURE", + -14.853504180908203 + ], + [ + "▁ritualistic", + -14.853528022766113 + ], + [ + "▁Udo", + -14.853557586669922 + ], + [ + "▁colorways", + -14.853557586669922 + ], + [ + "prob", + -14.853564262390137 + ], + [ + "▁roadshow", + -14.853564262390137 + ], + [ + "vitz", + -14.853584289550781 + ], + [ + "▁Arcane", + -14.853589057922363 + ], + [ + "▁SEATS", + -14.853590965270996 + ], + [ + "▁Boardman", + -14.853618621826172 + ], + [ + "kron", + -14.853622436523438 + ], + [ + "▁Dressage", + -14.853622436523438 + ], + [ + "ference", + -14.853625297546387 + ], + [ + "▁Petaluma", + -14.853630065917969 + ], + [ + "▁disapproving", + -14.853631973266602 + ], + [ + "verified", + -14.853645324707031 + ], + [ + "▁Steamer", + -14.85365104675293 + ], + [ + "▁Chaco", + -14.853662490844727 + ], + [ + "▁Productive", + -14.853665351867676 + ], + [ + "▁Multnomah", + -14.853666305541992 + ], + [ + "▁pilfer", + -14.853673934936523 + ], + [ + "▁shilling", + -14.853705406188965 + ], + [ + "▁blushes", + -14.853758811950684 + ], + [ + "▁undergrowth", + -14.85377025604248 + ], + [ + "▁Ypsilanti", + -14.853804588317871 + ], + [ + "rua", + -14.853867530822754 + ], + [ + "challenged", + -14.853907585144043 + ], + [ + "▁felici", + -14.85391902923584 + ], + [ + "▁lullaby", + -14.853933334350586 + ], + [ + "▁bitching", + -14.853952407836914 + ], + [ + "▁Geyser", + -14.853970527648926 + ], + [ + "aida", + -14.853986740112305 + ], + [ + "roun", + -14.854011535644531 + ], + [ + "FSC", + -14.854049682617188 + ], + [ + "▁Aquila", + -14.854077339172363 + ], + [ + "▁Merrimack", + -14.854084014892578 + ], + [ + "▁Covey", + -14.854098320007324 + ], + [ + "▁Stacked", + -14.854103088378906 + ], + [ + "▁Mises", + -14.854105949401855 + ], + [ + "▁Riccardo", + -14.854127883911133 + ], + [ + "▁HPS", + -14.854170799255371 + ], + [ + "▁Alix", + -14.8541898727417 + ], + [ + "naw", + -14.85420036315918 + ], + [ + "▁maniacal", + -14.854205131530762 + ], + [ + "▁prototypical", + -14.854256629943848 + ], + [ + "▁foals", + -14.85426139831543 + ], + [ + "▁GOV", + -14.854269981384277 + ], + [ + "Mona", + -14.854314804077148 + ], + [ + "న", + -14.854323387145996 + ], + [ + "unlimited", + -14.854331970214844 + ], + [ + "nima", + -14.85437297821045 + ], + [ + "neal", + -14.85438060760498 + ], + [ + "려", + -14.854392051696777 + ], + [ + "1021", + -14.85439395904541 + ], + [ + "集", + -14.854400634765625 + ], + [ + "▁Aerosmith", + -14.85445785522461 + ], + [ + "▁Tauranga", + -14.854514122009277 + ], + [ + "▁shacks", + -14.85451602935791 + ], + [ + "▁Corby", + -14.854523658752441 + ], + [ + "▁Cherries", + -14.854592323303223 + ], + [ + "▁ECN", + -14.854592323303223 + ], + [ + "rasse", + -14.854625701904297 + ], + [ + "▁DOR", + -14.854667663574219 + ], + [ + "▁biweekly", + -14.854673385620117 + ], + [ + "▁sedated", + -14.8546781539917 + ], + [ + "▁Harvesting", + -14.854679107666016 + ], + [ + "▁passerby", + -14.85472583770752 + ], + [ + "▁FASHION", + -14.854738235473633 + ], + [ + "▁Trevi", + -14.854752540588379 + ], + [ + "▁Demonstrator", + -14.854761123657227 + ], + [ + "inflated", + -14.854780197143555 + ], + [ + "ख", + -14.854789733886719 + ], + [ + "▁Ś", + -14.8548002243042 + ], + [ + "▁reverie", + -14.854818344116211 + ], + [ + "OOC", + -14.854846954345703 + ], + [ + "▁Teixeira", + -14.854853630065918 + ], + [ + "rgic", + -14.854883193969727 + ], + [ + "▁Mehmet", + -14.854900360107422 + ], + [ + "bree", + -14.854960441589355 + ], + [ + "▁jello", + -14.854982376098633 + ], + [ + "actress", + -14.855009078979492 + ], + [ + "▁hemorrhagic", + -14.855027198791504 + ], + [ + "▁997", + -14.855030059814453 + ], + [ + "▁environmentalism", + -14.855033874511719 + ], + [ + "▁Rejection", + -14.85505485534668 + ], + [ + "▁Leggings", + -14.85509967803955 + ], + [ + "▁Forcing", + -14.855121612548828 + ], + [ + "Whit", + -14.855158805847168 + ], + [ + "UTI", + -14.855177879333496 + ], + [ + "▁Holdem", + -14.855183601379395 + ], + [ + "▁unceasing", + -14.855189323425293 + ], + [ + "keen", + -14.855195045471191 + ], + [ + "▁lah", + -14.85519790649414 + ], + [ + "▁susan", + -14.855204582214355 + ], + [ + "▁Ordo", + -14.85525131225586 + ], + [ + "▁Burge", + -14.855326652526855 + ], + [ + "▁Kellyanne", + -14.855328559875488 + ], + [ + "▁Mose", + -14.855376243591309 + ], + [ + "▁Wasps", + -14.855391502380371 + ], + [ + "▁WWDC", + -14.855420112609863 + ], + [ + "▁Uninstaller", + -14.855422019958496 + ], + [ + "▁از", + -14.855430603027344 + ], + [ + "▁Attended", + -14.855433464050293 + ], + [ + "sulfur", + -14.855475425720215 + ], + [ + "▁Aleks", + -14.855496406555176 + ], + [ + "▁Plural", + -14.85550594329834 + ], + [ + "Interview", + -14.855537414550781 + ], + [ + "▁Garros", + -14.855557441711426 + ], + [ + "koro", + -14.85558032989502 + ], + [ + "▁Deposition", + -14.855587005615234 + ], + [ + "atories", + -14.855591773986816 + ], + [ + "copies", + -14.855628967285156 + ], + [ + "▁Dismiss", + -14.8556489944458 + ], + [ + "▁recant", + -14.855663299560547 + ], + [ + "▁Latif", + -14.855677604675293 + ], + [ + "▁constraining", + -14.855682373046875 + ], + [ + "▁Chicano", + -14.855714797973633 + ], + [ + "▁paralyzing", + -14.855731010437012 + ], + [ + "▁Informative", + -14.855734825134277 + ], + [ + "ntar", + -14.855735778808594 + ], + [ + "ODE", + -14.855743408203125 + ], + [ + "advertise", + -14.855765342712402 + ], + [ + "UCE", + -14.855777740478516 + ], + [ + "dao", + -14.855783462524414 + ], + [ + "▁unblocked", + -14.855792999267578 + ], + [ + "▁Acknowledgement", + -14.855803489685059 + ], + [ + "▁Tahrir", + -14.855836868286133 + ], + [ + "▁twister", + -14.855839729309082 + ], + [ + "▁scuttle", + -14.855857849121094 + ], + [ + "▁Primark", + -14.855859756469727 + ], + [ + "▁Cramp", + -14.855862617492676 + ], + [ + "▁Diggs", + -14.855870246887207 + ], + [ + "▁REFUND", + -14.855873107910156 + ], + [ + "Leaf", + -14.855910301208496 + ], + [ + "▁Svetlana", + -14.855939865112305 + ], + [ + "▁chancel", + -14.855997085571289 + ], + [ + "▁Pharmacist", + -14.856009483337402 + ], + [ + "ые", + -14.856014251708984 + ], + [ + "▁Schmitz", + -14.856029510498047 + ], + [ + "ffner", + -14.856032371520996 + ], + [ + "▁reptilian", + -14.856042861938477 + ], + [ + "isio", + -14.85604476928711 + ], + [ + "1250", + -14.856049537658691 + ], + [ + "chuan", + -14.856059074401855 + ], + [ + "▁JOSE", + -14.856060028076172 + ], + [ + "▁Blackmore", + -14.856070518493652 + ], + [ + "▁preschooler", + -14.856075286865234 + ], + [ + "▁Mariam", + -14.85611629486084 + ], + [ + "▁ILLEGAL", + -14.856158256530762 + ], + [ + "cali", + -14.856165885925293 + ], + [ + "▁quagmire", + -14.856181144714355 + ], + [ + "▁Brough", + -14.856196403503418 + ], + [ + "▁Grumpy", + -14.856215476989746 + ], + [ + "▁Hydration", + -14.856237411499023 + ], + [ + "▁ELECTRONIC", + -14.85625171661377 + ], + [ + "▁strumming", + -14.85628604888916 + ], + [ + "Indiana", + -14.856297492980957 + ], + [ + "▁USGA", + -14.856300354003906 + ], + [ + "▁스", + -14.856315612792969 + ], + [ + "Chemical", + -14.856362342834473 + ], + [ + "▁Symmetry", + -14.856369018554688 + ], + [ + "▁Studi", + -14.8563871383667 + ], + [ + "▁Manitou", + -14.856415748596191 + ], + [ + "parametric", + -14.856419563293457 + ], + [ + "▁birders", + -14.85642147064209 + ], + [ + "▁cymbal", + -14.856423377990723 + ], + [ + "▁passageways", + -14.856433868408203 + ], + [ + "intern", + -14.856438636779785 + ], + [ + "▁Margins", + -14.856441497802734 + ], + [ + "▁KZ", + -14.856486320495605 + ], + [ + "▁reticent", + -14.856493949890137 + ], + [ + "▁booby", + -14.856502532958984 + ], + [ + "▁Riordan", + -14.8565034866333 + ], + [ + "pedi", + -14.85650634765625 + ], + [ + "▁placket", + -14.856518745422363 + ], + [ + "ே", + -14.856538772583008 + ], + [ + "fluor", + -14.856565475463867 + ], + [ + "▁Diamant", + -14.856575965881348 + ], + [ + "▁PLATE", + -14.856595039367676 + ], + [ + "▁Chima", + -14.856656074523926 + ], + [ + "▁Poco", + -14.85667896270752 + ], + [ + "shrink", + -14.856694221496582 + ], + [ + "RST", + -14.85673713684082 + ], + [ + "celebrate", + -14.856752395629883 + ], + [ + "▁Kluwer", + -14.856776237487793 + ], + [ + "nina", + -14.856876373291016 + ], + [ + "▁discontinuous", + -14.856945991516113 + ], + [ + "▁moore", + -14.85694694519043 + ], + [ + "▁shackled", + -14.856950759887695 + ], + [ + "▁muco", + -14.856966972351074 + ], + [ + "▁heaved", + -14.857015609741211 + ], + [ + "▁Suz", + -14.857028007507324 + ], + [ + "▁Casta", + -14.857054710388184 + ], + [ + "▁Arranged", + -14.85707950592041 + ], + [ + "▁fran", + -14.857085227966309 + ], + [ + "Zionist", + -14.857099533081055 + ], + [ + "romance", + -14.85710620880127 + ], + [ + "▁Martindale", + -14.857108116149902 + ], + [ + "▁Anheuser", + -14.85711669921875 + ], + [ + "▁MARKETING", + -14.857131004333496 + ], + [ + "▁Woodman", + -14.857148170471191 + ], + [ + "ň", + -14.857163429260254 + ], + [ + "▁Nineveh", + -14.85716438293457 + ], + [ + "▁flagstone", + -14.85718059539795 + ], + [ + "▁Alessandra", + -14.857197761535645 + ], + [ + "▁Kw", + -14.857213020324707 + ], + [ + "Fitness", + -14.857222557067871 + ], + [ + "▁Anselm", + -14.857231140136719 + ], + [ + "▁Haq", + -14.857246398925781 + ], + [ + "glance", + -14.857250213623047 + ], + [ + "▁POWs", + -14.857336044311523 + ], + [ + "welt", + -14.857351303100586 + ], + [ + "prospect", + -14.857358932495117 + ], + [ + "▁malady", + -14.857388496398926 + ], + [ + "▁hulking", + -14.857399940490723 + ], + [ + "▁ploughed", + -14.857420921325684 + ], + [ + "▁reenter", + -14.857444763183594 + ], + [ + "▁SERVER", + -14.85744857788086 + ], + [ + "▁awsome", + -14.857450485229492 + ], + [ + "▁Eugen", + -14.85745906829834 + ], + [ + "래", + -14.857463836669922 + ], + [ + "matique", + -14.857468605041504 + ], + [ + "▁Needing", + -14.857514381408691 + ], + [ + "▁Gearbox", + -14.857515335083008 + ], + [ + "PST", + -14.857529640197754 + ], + [ + "▁Jitsu", + -14.857537269592285 + ], + [ + "▁Raikkonen", + -14.857544898986816 + ], + [ + "1898", + -14.857561111450195 + ], + [ + "▁Mortensen", + -14.857604026794434 + ], + [ + "▁aristocrat", + -14.857605934143066 + ], + [ + "anzi", + -14.857644081115723 + ], + [ + "▁SHARP", + -14.857648849487305 + ], + [ + "Joint", + -14.857649803161621 + ], + [ + "▁Masood", + -14.857665061950684 + ], + [ + "▁INDUSTRY", + -14.857671737670898 + ], + [ + "appan", + -14.857677459716797 + ], + [ + "▁Joyful", + -14.857685089111328 + ], + [ + "▁Vei", + -14.857696533203125 + ], + [ + "Violet", + -14.857796669006348 + ], + [ + "▁MARIE", + -14.85782241821289 + ], + [ + "▁Hargreaves", + -14.857833862304688 + ], + [ + "▁splints", + -14.857888221740723 + ], + [ + "▁Harbin", + -14.857891082763672 + ], + [ + "Barbara", + -14.857904434204102 + ], + [ + "gere", + -14.857908248901367 + ], + [ + "▁reaper", + -14.857934951782227 + ], + [ + "▁Nominees", + -14.857939720153809 + ], + [ + "ため", + -14.85798168182373 + ], + [ + "▁Kabila", + -14.857992172241211 + ], + [ + "▁XBOX", + -14.857995986938477 + ], + [ + "▁Saya", + -14.858000755310059 + ], + [ + "▁579", + -14.858037948608398 + ], + [ + "easing", + -14.858098030090332 + ], + [ + "▁Portions", + -14.858109474182129 + ], + [ + "▁Baines", + -14.858120918273926 + ], + [ + "Viewer", + -14.858123779296875 + ], + [ + "▁Baraka", + -14.858129501342773 + ], + [ + "SAA", + -14.858162879943848 + ], + [ + "▁egotistical", + -14.858176231384277 + ], + [ + "▁ELD", + -14.858186721801758 + ], + [ + "Percent", + -14.858205795288086 + ], + [ + "▁Elly", + -14.858237266540527 + ], + [ + "▁WARS", + -14.858240127563477 + ], + [ + "▁Corse", + -14.858247756958008 + ], + [ + "ruby", + -14.858259201049805 + ], + [ + "▁Sasa", + -14.858282089233398 + ], + [ + "sofa", + -14.858287811279297 + ], + [ + "▁drivel", + -14.858345985412598 + ], + [ + "jed", + -14.858436584472656 + ], + [ + "▁Kilauea", + -14.858458518981934 + ], + [ + "▁repeatability", + -14.858458518981934 + ], + [ + "▁WAT", + -14.858504295349121 + ], + [ + "▁GEL", + -14.858506202697754 + ], + [ + "▁592", + -14.858521461486816 + ], + [ + "rile", + -14.858532905578613 + ], + [ + "ે", + -14.858551025390625 + ], + [ + "▁appendages", + -14.858572006225586 + ], + [ + "SPO", + -14.858583450317383 + ], + [ + "▁Hashtag", + -14.858586311340332 + ], + [ + "▁Condolence", + -14.85865592956543 + ], + [ + "▁Klang", + -14.858684539794922 + ], + [ + "▁whittled", + -14.858687400817871 + ], + [ + "▁Novgorod", + -14.858726501464844 + ], + [ + "▁Vitali", + -14.858736038208008 + ], + [ + "ды", + -14.858746528625488 + ], + [ + "potato", + -14.858816146850586 + ], + [ + "▁Imperfect", + -14.858824729919434 + ], + [ + "▁roo", + -14.858863830566406 + ], + [ + "Indo", + -14.858893394470215 + ], + [ + "▁서", + -14.858906745910645 + ], + [ + "▁Petco", + -14.858922958374023 + ], + [ + "▁waders", + -14.858924865722656 + ], + [ + "▁Viber", + -14.858927726745605 + ], + [ + "▁Tecumseh", + -14.8589448928833 + ], + [ + "▁Conviction", + -14.858951568603516 + ], + [ + "▁HEX", + -14.858952522277832 + ], + [ + "▁apropos", + -14.858964920043945 + ], + [ + "▁Aspirants", + -14.858991622924805 + ], + [ + "thian", + -14.85899829864502 + ], + [ + "▁demography", + -14.85900592803955 + ], + [ + "▁Keck", + -14.85901165008545 + ], + [ + "schema", + -14.859025001525879 + ], + [ + "▁Presiding", + -14.859031677246094 + ], + [ + "▁Charlemagne", + -14.859037399291992 + ], + [ + "omma", + -14.859050750732422 + ], + [ + "▁parlay", + -14.859113693237305 + ], + [ + "▁Raghav", + -14.859124183654785 + ], + [ + "▁Explosives", + -14.859185218811035 + ], + [ + "▁Marte", + -14.859189987182617 + ], + [ + "▁Amri", + -14.859198570251465 + ], + [ + "▁kum", + -14.859222412109375 + ], + [ + "▁Neutron", + -14.859247207641602 + ], + [ + "▁fronds", + -14.859249114990234 + ], + [ + "▁Purifier", + -14.859264373779297 + ], + [ + "▁Yucca", + -14.85928726196289 + ], + [ + "▁appendage", + -14.85936450958252 + ], + [ + "▁jetzt", + -14.859395980834961 + ], + [ + "▁Moshi", + -14.859396934509277 + ], + [ + "▁VEL", + -14.859411239624023 + ], + [ + "hating", + -14.859465599060059 + ], + [ + "dns", + -14.859468460083008 + ], + [ + "▁Donnell", + -14.859490394592285 + ], + [ + "▁wideout", + -14.859495162963867 + ], + [ + "▁Dori", + -14.859527587890625 + ], + [ + "PMS", + -14.859578132629395 + ], + [ + "▁surmised", + -14.859579086303711 + ], + [ + "numbing", + -14.859620094299316 + ], + [ + "▁Squirt", + -14.85963249206543 + ], + [ + "▁dominoes", + -14.859649658203125 + ], + [ + "▁mannered", + -14.859687805175781 + ], + [ + "▁revolutionise", + -14.85971450805664 + ], + [ + "encourage", + -14.859724998474121 + ], + [ + "▁Gorda", + -14.859736442565918 + ], + [ + "▁Fulani", + -14.859739303588867 + ], + [ + "flour", + -14.859740257263184 + ], + [ + "▁н", + -14.859796524047852 + ], + [ + "▁scot", + -14.859798431396484 + ], + [ + "▁morn", + -14.859816551208496 + ], + [ + "infant", + -14.859848976135254 + ], + [ + "بي", + -14.859862327575684 + ], + [ + "▁Largely", + -14.859870910644531 + ], + [ + "▁infamously", + -14.85987377166748 + ], + [ + "▁Kronos", + -14.859885215759277 + ], + [ + "hern", + -14.859890937805176 + ], + [ + "▁DeRozan", + -14.859894752502441 + ], + [ + "▁Squaw", + -14.859903335571289 + ], + [ + "▁progenitors", + -14.8599271774292 + ], + [ + "regions", + -14.859931945800781 + ], + [ + "▁Instruct", + -14.859931945800781 + ], + [ + "▁sinning", + -14.859931945800781 + ], + [ + "▁carafe", + -14.859962463378906 + ], + [ + "▁Aurelia", + -14.860044479370117 + ], + [ + "cholesterol", + -14.860074043273926 + ], + [ + "▁mezzo", + -14.860154151916504 + ], + [ + "▁bulking", + -14.860158920288086 + ], + [ + "▁chaplains", + -14.860159873962402 + ], + [ + "▁frazzled", + -14.860173225402832 + ], + [ + "▁Yamaguchi", + -14.860176086425781 + ], + [ + "iety", + -14.860185623168945 + ], + [ + "▁Delivers", + -14.860215187072754 + ], + [ + "▁pyre", + -14.860215187072754 + ], + [ + "증", + -14.860231399536133 + ], + [ + "legacy", + -14.860280990600586 + ], + [ + "▁cnc", + -14.860294342041016 + ], + [ + "▁Banning", + -14.860336303710938 + ], + [ + "erick", + -14.860344886779785 + ], + [ + "LDL", + -14.860356330871582 + ], + [ + "دا", + -14.86036205291748 + ], + [ + "soap", + -14.860368728637695 + ], + [ + "politan", + -14.860434532165527 + ], + [ + "▁실", + -14.860482215881348 + ], + [ + "▁proces", + -14.86048412322998 + ], + [ + "Vita", + -14.860538482666016 + ], + [ + "iegel", + -14.860544204711914 + ], + [ + "▁Dutta", + -14.860546112060547 + ], + [ + "▁Cyndi", + -14.860547065734863 + ], + [ + "various", + -14.860556602478027 + ], + [ + "dja", + -14.860576629638672 + ], + [ + "ngzhou", + -14.86058235168457 + ], + [ + "▁Vitae", + -14.860604286193848 + ], + [ + "▁Rafale", + -14.860610008239746 + ], + [ + "animation", + -14.860610961914062 + ], + [ + "curl", + -14.86063289642334 + ], + [ + "▁Cyclones", + -14.860658645629883 + ], + [ + "maj", + -14.860664367675781 + ], + [ + "▁brotherly", + -14.860664367675781 + ], + [ + "▁Adept", + -14.860678672790527 + ], + [ + "▁seascape", + -14.860684394836426 + ], + [ + "zburg", + -14.860705375671387 + ], + [ + "naud", + -14.860713005065918 + ], + [ + "▁Silverton", + -14.86072063446045 + ], + [ + "▁PrEP", + -14.860725402832031 + ], + [ + "▁Schar", + -14.860753059387207 + ], + [ + "▁CDF", + -14.86075496673584 + ], + [ + "Ladies", + -14.860763549804688 + ], + [ + "▁Splinter", + -14.860776901245117 + ], + [ + "▁Charisma", + -14.860783576965332 + ], + [ + "complicated", + -14.860784530639648 + ], + [ + "▁Kase", + -14.860807418823242 + ], + [ + "feat", + -14.860820770263672 + ], + [ + "▁PARKING", + -14.860820770263672 + ], + [ + "Coat", + -14.860867500305176 + ], + [ + "▁earphone", + -14.860872268676758 + ], + [ + "olog", + -14.860875129699707 + ], + [ + "EDC", + -14.860918045043945 + ], + [ + "▁overpay", + -14.860960960388184 + ], + [ + "▁Calico", + -14.860971450805664 + ], + [ + "▁Mystical", + -14.860976219177246 + ], + [ + "▁Caused", + -14.860979080200195 + ], + [ + "▁Bartel", + -14.861013412475586 + ], + [ + "homo", + -14.86102294921875 + ], + [ + "Journey", + -14.861047744750977 + ], + [ + "▁MARI", + -14.861061096191406 + ], + [ + "▁Sealer", + -14.861132621765137 + ], + [ + "▁Caballero", + -14.861159324645996 + ], + [ + "▁Wab", + -14.861222267150879 + ], + [ + "ча", + -14.861247062683105 + ], + [ + "▁Leben", + -14.861272811889648 + ], + [ + "▁Majid", + -14.861279487609863 + ], + [ + "▁Pharmacists", + -14.861296653747559 + ], + [ + "QD", + -14.861297607421875 + ], + [ + "bq", + -14.861297607421875 + ], + [ + "Midnight", + -14.861309051513672 + ], + [ + "laundering", + -14.861339569091797 + ], + [ + "▁Boxed", + -14.86135482788086 + ], + [ + "▁753", + -14.861357688903809 + ], + [ + "▁Lawless", + -14.861398696899414 + ], + [ + "▁Nebuchadnezzar", + -14.861414909362793 + ], + [ + "▁Ctr", + -14.861422538757324 + ], + [ + "Aero", + -14.861445426940918 + ], + [ + "▁WFP", + -14.861445426940918 + ], + [ + "▁cunt", + -14.861489295959473 + ], + [ + "▁generality", + -14.861501693725586 + ], + [ + "▁spools", + -14.861536979675293 + ], + [ + "zhan", + -14.861556053161621 + ], + [ + "Egypt", + -14.861565589904785 + ], + [ + "▁CUDA", + -14.861570358276367 + ], + [ + "dige", + -14.861590385437012 + ], + [ + "状", + -14.861599922180176 + ], + [ + "▁Occupancy", + -14.861635208129883 + ], + [ + "▁scythe", + -14.861648559570312 + ], + [ + "▁Paralegal", + -14.86169719696045 + ], + [ + "▁grommet", + -14.861712455749512 + ], + [ + "▁Grayling", + -14.861734390258789 + ], + [ + "▁Carpathian", + -14.861740112304688 + ], + [ + "▁Hangar", + -14.861759185791016 + ], + [ + "▁ambit", + -14.861763000488281 + ], + [ + "▁LZ", + -14.86176586151123 + ], + [ + "esthetic", + -14.861810684204102 + ], + [ + "▁Martín", + -14.86181640625 + ], + [ + "coordinate", + -14.861823081970215 + ], + [ + "▁Wain", + -14.861831665039062 + ], + [ + "ল", + -14.861855506896973 + ], + [ + "▁Wasteland", + -14.861957550048828 + ], + [ + "extraordinary", + -14.861969947814941 + ], + [ + "omina", + -14.86197566986084 + ], + [ + "▁disrespected", + -14.861992835998535 + ], + [ + "▁Tubular", + -14.862011909484863 + ], + [ + "culin", + -14.862021446228027 + ], + [ + "Database", + -14.862060546875 + ], + [ + "confidential", + -14.862070083618164 + ], + [ + "也", + -14.862120628356934 + ], + [ + "mongers", + -14.862127304077148 + ], + [ + "▁Tartan", + -14.862190246582031 + ], + [ + "phos", + -14.862198829650879 + ], + [ + "▁Werewolf", + -14.862199783325195 + ], + [ + "▁Snag", + -14.862225532531738 + ], + [ + "▁Chippendale", + -14.862239837646484 + ], + [ + "▁경우", + -14.862251281738281 + ], + [ + "▁strove", + -14.862277030944824 + ], + [ + "▁WCF", + -14.862320899963379 + ], + [ + "Metric", + -14.862371444702148 + ], + [ + "▁DJing", + -14.862394332885742 + ], + [ + "ид", + -14.862415313720703 + ], + [ + "▁Distiller", + -14.86242389678955 + ], + [ + "GPP", + -14.862460136413574 + ], + [ + "▁Gili", + -14.862462997436523 + ], + [ + "nomie", + -14.862508773803711 + ], + [ + "▁whacked", + -14.862509727478027 + ], + [ + "▁Petter", + -14.862518310546875 + ], + [ + "▁fred", + -14.86252212524414 + ], + [ + "▁HELLO", + -14.86254596710205 + ], + [ + "SaaS", + -14.862568855285645 + ], + [ + "▁Sabina", + -14.86257553100586 + ], + [ + "▁Pich", + -14.862614631652832 + ], + [ + "Coco", + -14.862627983093262 + ], + [ + "▁eavesdrop", + -14.862648963928223 + ], + [ + "▁Jeannette", + -14.862661361694336 + ], + [ + "▁PROM", + -14.862714767456055 + ], + [ + "▁Chlorine", + -14.862719535827637 + ], + [ + "stimulating", + -14.862747192382812 + ], + [ + "akshi", + -14.862777709960938 + ], + [ + "▁vietnam", + -14.862787246704102 + ], + [ + "fever", + -14.862789154052734 + ], + [ + "▁wily", + -14.862794876098633 + ], + [ + "▁reductive", + -14.862825393676758 + ], + [ + "▁Nadler", + -14.862886428833008 + ], + [ + "▁Bandung", + -14.86288833618164 + ], + [ + "▁Antetokounmpo", + -14.86290168762207 + ], + [ + "▁masseuse", + -14.86290454864502 + ], + [ + "tronix", + -14.86291217803955 + ], + [ + "Roche", + -14.862927436828613 + ], + [ + "vide", + -14.862927436828613 + ], + [ + "gritty", + -14.862940788269043 + ], + [ + "▁Aromatic", + -14.86296558380127 + ], + [ + "LLC", + -14.862980842590332 + ], + [ + "▁shopkeepers", + -14.862981796264648 + ], + [ + "▁soooooo", + -14.86298942565918 + ], + [ + "▁Gangster", + -14.862992286682129 + ], + [ + "KIT", + -14.863001823425293 + ], + [ + "filtered", + -14.863008499145508 + ], + [ + "▁Pore", + -14.863052368164062 + ], + [ + "hima", + -14.863053321838379 + ], + [ + "Portland", + -14.863064765930176 + ], + [ + "WARE", + -14.863065719604492 + ], + [ + "Sue", + -14.863066673278809 + ], + [ + "▁excised", + -14.863086700439453 + ], + [ + "Instant", + -14.863113403320312 + ], + [ + "▁Nephro", + -14.86314582824707 + ], + [ + "▁faerie", + -14.863204956054688 + ], + [ + "▁sledgehammer", + -14.863205909729004 + ], + [ + "Porn", + -14.86322021484375 + ], + [ + "▁Astrologer", + -14.863227844238281 + ], + [ + "▁Compressing", + -14.863235473632812 + ], + [ + "▁Oldsmobile", + -14.86325454711914 + ], + [ + "console", + -14.86325740814209 + ], + [ + "▁EEC", + -14.863269805908203 + ], + [ + "▁disfigured", + -14.863297462463379 + ], + [ + "▁excepted", + -14.863302230834961 + ], + [ + "▁jiu", + -14.863313674926758 + ], + [ + "▁misdiagnosed", + -14.86332893371582 + ], + [ + "▁Wij", + -14.863330841064453 + ], + [ + "▁Behav", + -14.86345386505127 + ], + [ + "Silicon", + -14.863462448120117 + ], + [ + "▁ExpressVPN", + -14.863489151000977 + ], + [ + "▁Dede", + -14.863533020019531 + ], + [ + "▁torrid", + -14.863540649414062 + ], + [ + "▁cruciate", + -14.863553047180176 + ], + [ + "▁goaltending", + -14.863557815551758 + ], + [ + "▁FEES", + -14.86355972290039 + ], + [ + "▁directorate", + -14.863561630249023 + ], + [ + "▁Perceptions", + -14.863572120666504 + ], + [ + "▁Poh", + -14.863597869873047 + ], + [ + "▁Gerd", + -14.86361312866211 + ], + [ + "▁bumblebee", + -14.863624572753906 + ], + [ + "xv", + -14.863652229309082 + ], + [ + "▁vilified", + -14.863653182983398 + ], + [ + "▁consummation", + -14.863658905029297 + ], + [ + "▁Rajendra", + -14.86368179321289 + ], + [ + "▁mirth", + -14.8637113571167 + ], + [ + "▁Mundi", + -14.863733291625977 + ], + [ + "▁predominance", + -14.863737106323242 + ], + [ + "equilibrium", + -14.863804817199707 + ], + [ + "hazardous", + -14.863809585571289 + ], + [ + "▁NLRB", + -14.86382007598877 + ], + [ + "▁impersonator", + -14.863832473754883 + ], + [ + "▁fiddler", + -14.86386489868164 + ], + [ + "pep", + -14.863873481750488 + ], + [ + "▁paladin", + -14.863907814025879 + ], + [ + "referential", + -14.86394214630127 + ], + [ + "▁defin", + -14.86395263671875 + ], + [ + "▁falciparum", + -14.863960266113281 + ], + [ + "bringing", + -14.863984107971191 + ], + [ + "▁637", + -14.864021301269531 + ], + [ + "millionaire", + -14.864028930664062 + ], + [ + "worldly", + -14.864047050476074 + ], + [ + "▁sprig", + -14.864083290100098 + ], + [ + "▁Zenfone", + -14.86412239074707 + ], + [ + "▁Recovering", + -14.864166259765625 + ], + [ + "▁provocations", + -14.864198684692383 + ], + [ + "▁Lynd", + -14.864214897155762 + ], + [ + "ogon", + -14.86422348022461 + ], + [ + "料", + -14.864256858825684 + ], + [ + "excuse", + -14.864274024963379 + ], + [ + "▁dispassionate", + -14.864295959472656 + ], + [ + "▁Undo", + -14.864312171936035 + ], + [ + "▁Sleigh", + -14.864331245422363 + ], + [ + "▁yung", + -14.864360809326172 + ], + [ + "▁baste", + -14.8643798828125 + ], + [ + "mnt", + -14.864386558532715 + ], + [ + "Concept", + -14.864392280578613 + ], + [ + "▁Macaulay", + -14.864398956298828 + ], + [ + "▁forcible", + -14.864404678344727 + ], + [ + "hob", + -14.86443042755127 + ], + [ + "▁Evgeny", + -14.8644380569458 + ], + [ + "▁spellbinding", + -14.86446762084961 + ], + [ + "cinema", + -14.864474296569824 + ], + [ + "▁Cassius", + -14.86451530456543 + ], + [ + "▁enjoin", + -14.864516258239746 + ], + [ + "arpur", + -14.864522933959961 + ], + [ + "▁telepathy", + -14.864553451538086 + ], + [ + "HCC", + -14.864580154418945 + ], + [ + "▁nematodes", + -14.864591598510742 + ], + [ + "▁Ailes", + -14.864622116088867 + ], + [ + "▁regalia", + -14.864623069763184 + ], + [ + "▁mastic", + -14.864624977111816 + ], + [ + "▁Surname", + -14.864692687988281 + ], + [ + "▁adverbs", + -14.864704132080078 + ], + [ + "▁Molo", + -14.864706039428711 + ], + [ + "1089", + -14.864707946777344 + ], + [ + "▁newsgroups", + -14.864720344543457 + ], + [ + "himi", + -14.864748001098633 + ], + [ + "▁Nata", + -14.864761352539062 + ], + [ + "▁cosmo", + -14.864815711975098 + ], + [ + "▁NFP", + -14.864840507507324 + ], + [ + "▁johnson", + -14.864840507507324 + ], + [ + "yph", + -14.864884376525879 + ], + [ + "▁Glazer", + -14.864968299865723 + ], + [ + "▁Fugitive", + -14.864974021911621 + ], + [ + "opportunity", + -14.86497688293457 + ], + [ + "▁majeure", + -14.864996910095215 + ], + [ + "timber", + -14.865074157714844 + ], + [ + "▁TELE", + -14.865084648132324 + ], + [ + "▁Balmain", + -14.865094184875488 + ], + [ + "▁1763", + -14.865150451660156 + ], + [ + "▁pacify", + -14.865174293518066 + ], + [ + "▁Opa", + -14.865190505981445 + ], + [ + "▁scorpions", + -14.865203857421875 + ], + [ + "▁abstained", + -14.86520767211914 + ], + [ + "▁impinge", + -14.865228652954102 + ], + [ + "drol", + -14.86526870727539 + ], + [ + "ÂÂ", + -14.865279197692871 + ], + [ + "▁pensive", + -14.865334510803223 + ], + [ + "vessel", + -14.865337371826172 + ], + [ + "Nico", + -14.865345001220703 + ], + [ + "Mic", + -14.86546802520752 + ], + [ + "▁Trapped", + -14.865479469299316 + ], + [ + "ες", + -14.8655366897583 + ], + [ + "▁JAS", + -14.865574836730957 + ], + [ + "▁awoken", + -14.865633010864258 + ], + [ + "▁연", + -14.865643501281738 + ], + [ + "▁Boiling", + -14.865649223327637 + ], + [ + "LDS", + -14.8656644821167 + ], + [ + "▁Aftermarket", + -14.865669250488281 + ], + [ + "▁Paterno", + -14.865717887878418 + ], + [ + "▁turntables", + -14.865717887878418 + ], + [ + "NOV", + -14.865734100341797 + ], + [ + "Dealer", + -14.865757942199707 + ], + [ + "▁Woke", + -14.865757942199707 + ], + [ + "▁Salvadoran", + -14.865758895874023 + ], + [ + "▁pauper", + -14.865795135498047 + ], + [ + "▁stockbroker", + -14.865910530090332 + ], + [ + "lactic", + -14.865933418273926 + ], + [ + "▁Opto", + -14.865938186645508 + ], + [ + "▁Laxmi", + -14.865951538085938 + ], + [ + "neuter", + -14.86595344543457 + ], + [ + "Howard", + -14.865957260131836 + ], + [ + "▁anachronistic", + -14.865964889526367 + ], + [ + "▁Glamorgan", + -14.866058349609375 + ], + [ + "▁cuenta", + -14.866061210632324 + ], + [ + "Oriented", + -14.866074562072754 + ], + [ + "grande", + -14.86611270904541 + ], + [ + "▁unboxing", + -14.866142272949219 + ], + [ + "▁Pheasant", + -14.866174697875977 + ], + [ + "▁headquarter", + -14.866178512573242 + ], + [ + "vanna", + -14.866179466247559 + ], + [ + "▁Naturopathic", + -14.866179466247559 + ], + [ + "▁Gallardo", + -14.86623764038086 + ], + [ + "▁CGT", + -14.866247177124023 + ], + [ + "▁cyclin", + -14.866250038146973 + ], + [ + "▁minnows", + -14.866253852844238 + ], + [ + "▁Maxime", + -14.866254806518555 + ], + [ + "▁Aceh", + -14.866278648376465 + ], + [ + "Democratic", + -14.866291046142578 + ], + [ + "asar", + -14.866307258605957 + ], + [ + "cruise", + -14.866327285766602 + ], + [ + "▁acolyte", + -14.866375923156738 + ], + [ + "▁Mazur", + -14.866378784179688 + ], + [ + "▁Usability", + -14.86639404296875 + ], + [ + "▁Randal", + -14.86644172668457 + ], + [ + "Worth", + -14.866449356079102 + ], + [ + "▁paracetamol", + -14.866454124450684 + ], + [ + "▁misbehavior", + -14.866460800170898 + ], + [ + "▁flasks", + -14.866477966308594 + ], + [ + "▁Adopted", + -14.866499900817871 + ], + [ + "▁snatch", + -14.866504669189453 + ], + [ + "рус", + -14.866527557373047 + ], + [ + "wolves", + -14.866532325744629 + ], + [ + "ョ", + -14.866545677185059 + ], + [ + "tasy", + -14.866559982299805 + ], + [ + "▁Crowell", + -14.866560935974121 + ], + [ + "▁seafloor", + -14.866569519042969 + ], + [ + "▁deutschland", + -14.866592407226562 + ], + [ + "▁executors", + -14.866598129272461 + ], + [ + "▁corte", + -14.866606712341309 + ], + [ + "▁concordance", + -14.866630554199219 + ], + [ + "requires", + -14.866680145263672 + ], + [ + "▁telcos", + -14.866684913635254 + ], + [ + "laka", + -14.866787910461426 + ], + [ + "asking", + -14.866791725158691 + ], + [ + "defeating", + -14.866814613342285 + ], + [ + "▁Doolittle", + -14.866814613342285 + ], + [ + "▁profusion", + -14.866837501525879 + ], + [ + "▁uptight", + -14.866847038269043 + ], + [ + "zey", + -14.866851806640625 + ], + [ + "▁PROFITS", + -14.866861343383789 + ], + [ + "▁bloomer", + -14.86689281463623 + ], + [ + "▁Giri", + -14.866950988769531 + ], + [ + "▁loveliest", + -14.866950988769531 + ], + [ + "▁Watcher", + -14.866959571838379 + ], + [ + "▁Kearns", + -14.866983413696289 + ], + [ + "nase", + -14.867008209228516 + ], + [ + "éli", + -14.867012023925781 + ], + [ + "▁rambunctious", + -14.86701488494873 + ], + [ + "▁Morneau", + -14.86701774597168 + ], + [ + "▁wordless", + -14.86703872680664 + ], + [ + "▁WEDNESDAY", + -14.867061614990234 + ], + [ + "nori", + -14.867070198059082 + ], + [ + "▁Plywood", + -14.867100715637207 + ], + [ + "▁PRISM", + -14.867141723632812 + ], + [ + "yda", + -14.867156982421875 + ], + [ + "▁DPD", + -14.867180824279785 + ], + [ + "▁coaxed", + -14.86719036102295 + ], + [ + "Netflix", + -14.867203712463379 + ], + [ + "▁uncaring", + -14.86721420288086 + ], + [ + "CCT", + -14.867247581481934 + ], + [ + "idus", + -14.867256164550781 + ], + [ + "▁Strasburg", + -14.867267608642578 + ], + [ + "▁Ummm", + -14.867286682128906 + ], + [ + "▁hedgerow", + -14.867297172546387 + ], + [ + "▁illinois", + -14.867302894592285 + ], + [ + "AED", + -14.867310523986816 + ], + [ + "▁Gerson", + -14.867311477661133 + ], + [ + "▁MODERN", + -14.867318153381348 + ], + [ + "▁manoeuvres", + -14.86732006072998 + ], + [ + "Ng", + -14.867375373840332 + ], + [ + "▁pivoted", + -14.867379188537598 + ], + [ + "▁Agate", + -14.867392539978027 + ], + [ + "▁tweens", + -14.867443084716797 + ], + [ + "▁trickster", + -14.86745834350586 + ], + [ + "LITE", + -14.867466926574707 + ], + [ + "▁romanticism", + -14.867478370666504 + ], + [ + "▁yaw", + -14.8674898147583 + ], + [ + "ferential", + -14.867497444152832 + ], + [ + "oval", + -14.867527961730957 + ], + [ + "▁996", + -14.867534637451172 + ], + [ + "▁Gawker", + -14.867547988891602 + ], + [ + "▁Unlocked", + -14.867576599121094 + ], + [ + "▁signposted", + -14.867581367492676 + ], + [ + "▁Maisie", + -14.867640495300293 + ], + [ + "▁AQUA", + -14.867647171020508 + ], + [ + "▁Heyer", + -14.867664337158203 + ], + [ + "iene", + -14.86767578125 + ], + [ + "▁Schweitzer", + -14.867682456970215 + ], + [ + "wits", + -14.867693901062012 + ], + [ + "▁customising", + -14.867714881896973 + ], + [ + "▁Valla", + -14.867729187011719 + ], + [ + "▁Cardiol", + -14.867748260498047 + ], + [ + "▁Stored", + -14.867754936218262 + ], + [ + "▁Bundaberg", + -14.867762565612793 + ], + [ + "▁Pujols", + -14.867762565612793 + ], + [ + "▁Schrader", + -14.867794036865234 + ], + [ + "▁Methadone", + -14.867796897888184 + ], + [ + "Built", + -14.867819786071777 + ], + [ + "▁Limpopo", + -14.867833137512207 + ], + [ + "▁sce", + -14.867833137512207 + ], + [ + "▁scrabble", + -14.867833137512207 + ], + [ + "▁Leavitt", + -14.86783504486084 + ], + [ + "▁Tranquil", + -14.86784553527832 + ], + [ + "olol", + -14.867884635925293 + ], + [ + "▁defrauded", + -14.867908477783203 + ], + [ + "▁Lubricant", + -14.867914199829102 + ], + [ + "pocalypse", + -14.867959976196289 + ], + [ + "▁Aspiring", + -14.867980003356934 + ], + [ + "▁hallucination", + -14.867993354797363 + ], + [ + "▁kors", + -14.867999076843262 + ], + [ + "▁Solihull", + -14.868008613586426 + ], + [ + "cium", + -14.868014335632324 + ], + [ + "MMS", + -14.868019104003906 + ], + [ + "▁Thornhill", + -14.868024826049805 + ], + [ + "Œ", + -14.868029594421387 + ], + [ + "▁Recruiter", + -14.86804485321045 + ], + [ + "▁Inviting", + -14.868081092834473 + ], + [ + "ży", + -14.868084907531738 + ], + [ + "▁flunk", + -14.868183135986328 + ], + [ + "лет", + -14.868216514587402 + ], + [ + "▁Favors", + -14.868218421936035 + ], + [ + "▁clonal", + -14.868245124816895 + ], + [ + "▁Klass", + -14.868246078491211 + ], + [ + "▁reinterpret", + -14.868250846862793 + ], + [ + "▁chalky", + -14.868278503417969 + ], + [ + "▁interconnectedness", + -14.868303298950195 + ], + [ + "▁Skopje", + -14.868334770202637 + ], + [ + "gwu", + -14.8683443069458 + ], + [ + "▁Maniac", + -14.868356704711914 + ], + [ + "▁commandos", + -14.868371963500977 + ], + [ + "restore", + -14.868375778198242 + ], + [ + "▁revelatory", + -14.86839771270752 + ], + [ + "▁Cinna", + -14.868403434753418 + ], + [ + "▁gw", + -14.868423461914062 + ], + [ + "ipi", + -14.868424415588379 + ], + [ + "▁Straps", + -14.868438720703125 + ], + [ + "▁moorings", + -14.868446350097656 + ], + [ + "ām", + -14.868484497070312 + ], + [ + "Freak", + -14.868491172790527 + ], + [ + "gade", + -14.86849594116211 + ], + [ + "▁tonsils", + -14.868511199951172 + ], + [ + "blocker", + -14.868535995483398 + ], + [ + "▁playability", + -14.868645668029785 + ], + [ + "▁Aristotelian", + -14.868650436401367 + ], + [ + "Saw", + -14.868751525878906 + ], + [ + "▁unceremoniously", + -14.868762969970703 + ], + [ + "▁Dries", + -14.86877727508545 + ], + [ + "▁mercifully", + -14.868793487548828 + ], + [ + "▁Braided", + -14.868823051452637 + ], + [ + "▁squinting", + -14.86884593963623 + ], + [ + "▁stiletto", + -14.868854522705078 + ], + [ + "▁credentialing", + -14.868882179260254 + ], + [ + "▁PLOS", + -14.868921279907227 + ], + [ + "▁swooping", + -14.868962287902832 + ], + [ + "▁tiff", + -14.868968963623047 + ], + [ + "▁Mourn", + -14.869032859802246 + ], + [ + "mediation", + -14.869074821472168 + ], + [ + "▁Bhagavad", + -14.8690824508667 + ], + [ + "▁Palatine", + -14.869086265563965 + ], + [ + "▁croquet", + -14.869114875793457 + ], + [ + "▁grownups", + -14.86912727355957 + ], + [ + "▁breadwinner", + -14.869174003601074 + ], + [ + "▁webshop", + -14.869184494018555 + ], + [ + "dama", + -14.869217872619629 + ], + [ + "▁Homeopathic", + -14.869309425354004 + ], + [ + "▁Parkes", + -14.869329452514648 + ], + [ + "▁Exclusively", + -14.869343757629395 + ], + [ + "▁Banyan", + -14.869344711303711 + ], + [ + "Genius", + -14.869348526000977 + ], + [ + "▁digg", + -14.86935043334961 + ], + [ + "▁CHEAP", + -14.869373321533203 + ], + [ + "▁SLOW", + -14.869394302368164 + ], + [ + "▁Longman", + -14.869422912597656 + ], + [ + "▁scrutinizing", + -14.869434356689453 + ], + [ + "ontological", + -14.869446754455566 + ], + [ + "GEM", + -14.8694486618042 + ], + [ + "▁foetus", + -14.869463920593262 + ], + [ + "SKA", + -14.869482040405273 + ], + [ + "▁Abad", + -14.86948299407959 + ], + [ + "▁Abbe", + -14.869487762451172 + ], + [ + "▁Joule", + -14.869521141052246 + ], + [ + "▁Bladder", + -14.869524955749512 + ], + [ + "meli", + -14.869532585144043 + ], + [ + "Rox", + -14.86953353881836 + ], + [ + "▁indistinct", + -14.869545936584473 + ], + [ + "▁Spor", + -14.86957836151123 + ], + [ + "▁Gozo", + -14.869583129882812 + ], + [ + "▁efect", + -14.869617462158203 + ], + [ + "▁MEXICO", + -14.869621276855469 + ], + [ + "inyl", + -14.86963176727295 + ], + [ + "helper", + -14.869672775268555 + ], + [ + "▁SPOILER", + -14.869678497314453 + ], + [ + "fanatics", + -14.869680404663086 + ], + [ + "▁FATHER", + -14.869688034057617 + ], + [ + "▁hydrology", + -14.869688034057617 + ], + [ + "▁heuristics", + -14.869705200195312 + ], + [ + "▁Shrub", + -14.869739532470703 + ], + [ + "▁fiercest", + -14.869755744934082 + ], + [ + "▁CEM", + -14.869769096374512 + ], + [ + "lecture", + -14.869770050048828 + ], + [ + "▁Mankato", + -14.869832992553711 + ], + [ + "▁Forwarding", + -14.869833946228027 + ], + [ + "▁PSO", + -14.869836807250977 + ], + [ + "▁ש", + -14.869845390319824 + ], + [ + "▁763", + -14.869852066040039 + ], + [ + "▁Angler", + -14.869882583618164 + ], + [ + "グ", + -14.869888305664062 + ], + [ + "র", + -14.869935989379883 + ], + [ + "▁dancehall", + -14.869939804077148 + ], + [ + "trending", + -14.869945526123047 + ], + [ + "alicious", + -14.869948387145996 + ], + [ + "glin", + -14.869956970214844 + ], + [ + "▁Luft", + -14.869962692260742 + ], + [ + "▁Eighteenth", + -14.869978904724121 + ], + [ + "▁Jorgensen", + -14.870054244995117 + ], + [ + "▁minimised", + -14.87005615234375 + ], + [ + "▁Schol", + -14.870072364807129 + ], + [ + "Bolt", + -14.870089530944824 + ], + [ + "flake", + -14.870136260986328 + ], + [ + "ugen", + -14.87015151977539 + ], + [ + "▁Trimmer", + -14.870253562927246 + ], + [ + "▁Entrants", + -14.870255470275879 + ], + [ + "▁Akwa", + -14.870259284973145 + ], + [ + "안", + -14.870262145996094 + ], + [ + "ERGE", + -14.870274543762207 + ], + [ + "Insider", + -14.870290756225586 + ], + [ + "▁equalize", + -14.870311737060547 + ], + [ + "formula", + -14.87032699584961 + ], + [ + "▁MEK", + -14.870329856872559 + ], + [ + "▁Dennison", + -14.870345115661621 + ], + [ + "▁cleat", + -14.870365142822266 + ], + [ + "▁Nittany", + -14.870452880859375 + ], + [ + "▁Swinging", + -14.870458602905273 + ], + [ + "▁Falco", + -14.870464324951172 + ], + [ + "▁punto", + -14.870482444763184 + ], + [ + "▁BATTLE", + -14.870514869689941 + ], + [ + "▁centralization", + -14.870532989501953 + ], + [ + "▁agitate", + -14.870535850524902 + ], + [ + "▁Armies", + -14.870550155639648 + ], + [ + "▁Kosta", + -14.870552062988281 + ], + [ + "▁Argonaut", + -14.870580673217773 + ], + [ + "Murray", + -14.870622634887695 + ], + [ + "▁Dataset", + -14.870643615722656 + ], + [ + "▁Hashim", + -14.870647430419922 + ], + [ + "▁WISE", + -14.870656967163086 + ], + [ + "▁Parsley", + -14.87069320678711 + ], + [ + "roh", + -14.870707511901855 + ], + [ + "▁Putney", + -14.87071704864502 + ], + [ + "▁perusal", + -14.870718955993652 + ], + [ + "▁infringer", + -14.870738983154297 + ], + [ + "scheme", + -14.870769500732422 + ], + [ + "▁familiarise", + -14.87077808380127 + ], + [ + "▁AbbVie", + -14.870862007141113 + ], + [ + "frills", + -14.870881080627441 + ], + [ + "山", + -14.870881080627441 + ], + [ + "その", + -14.870882034301758 + ], + [ + "imble", + -14.870903968811035 + ], + [ + "▁shrubbery", + -14.87093734741211 + ], + [ + "Alba", + -14.870941162109375 + ], + [ + "▁Applebee", + -14.87094783782959 + ], + [ + "▁McDonagh", + -14.87096881866455 + ], + [ + "ând", + -14.870990753173828 + ], + [ + "capita", + -14.871002197265625 + ], + [ + "▁myrtle", + -14.871002197265625 + ], + [ + "▁JUMP", + -14.871012687683105 + ], + [ + "Mario", + -14.8710298538208 + ], + [ + "▁matchless", + -14.871073722839355 + ], + [ + "▁regurgitate", + -14.871097564697266 + ], + [ + "▁Compartment", + -14.871103286743164 + ], + [ + "aoui", + -14.871176719665527 + ], + [ + "▁erratically", + -14.87118911743164 + ], + [ + "▁PTE", + -14.87119197845459 + ], + [ + "▁Veld", + -14.87119197845459 + ], + [ + "▁invader", + -14.871192932128906 + ], + [ + "rater", + -14.871208190917969 + ], + [ + "▁Watchdog", + -14.871209144592285 + ], + [ + "▁Vadodara", + -14.871214866638184 + ], + [ + "▁Batten", + -14.8712739944458 + ], + [ + "▁Haim", + -14.871294975280762 + ], + [ + "▁sissy", + -14.871316909790039 + ], + [ + "▁affinities", + -14.871356010437012 + ], + [ + "▁pageviews", + -14.871416091918945 + ], + [ + "keyword", + -14.871450424194336 + ], + [ + "icillin", + -14.871484756469727 + ], + [ + "▁Mulan", + -14.871526718139648 + ], + [ + "▁Vermeer", + -14.871556282043457 + ], + [ + "▁intersected", + -14.871583938598633 + ], + [ + "▁morsels", + -14.87159252166748 + ], + [ + "▁Gabba", + -14.871636390686035 + ], + [ + "Changing", + -14.87165641784668 + ], + [ + "▁Paseo", + -14.871659278869629 + ], + [ + "DLL", + -14.871671676635742 + ], + [ + "▁Ardmore", + -14.87169075012207 + ], + [ + "▁panhandle", + -14.871709823608398 + ], + [ + "terrible", + -14.87173843383789 + ], + [ + "▁VMS", + -14.871780395507812 + ], + [ + "NSC", + -14.871794700622559 + ], + [ + "Portrait", + -14.871800422668457 + ], + [ + "▁encroach", + -14.871803283691406 + ], + [ + "▁gnarly", + -14.871824264526367 + ], + [ + "▁headspace", + -14.871825218200684 + ], + [ + "▁metronidazole", + -14.871870994567871 + ], + [ + "▁imbalanced", + -14.871894836425781 + ], + [ + "▁skyward", + -14.87190055847168 + ], + [ + "▁statically", + -14.871903419494629 + ], + [ + "ન", + -14.871906280517578 + ], + [ + "▁Uro", + -14.871954917907715 + ], + [ + "bhar", + -14.871978759765625 + ], + [ + "▁seagulls", + -14.871997833251953 + ], + [ + "ской", + -14.872003555297852 + ], + [ + "▁Spei", + -14.872044563293457 + ], + [ + "▁BUCK", + -14.872049331665039 + ], + [ + "▁Lando", + -14.872057914733887 + ], + [ + "▁strattera", + -14.872062683105469 + ], + [ + "▁becuase", + -14.872082710266113 + ], + [ + "▁Fergie", + -14.87211799621582 + ], + [ + "▁CHANGES", + -14.872137069702148 + ], + [ + "▁Waddell", + -14.872160911560059 + ], + [ + "▁Patra", + -14.87216567993164 + ], + [ + "▁Standardization", + -14.872207641601562 + ], + [ + "▁continu", + -14.872209548950195 + ], + [ + "▁tanked", + -14.872214317321777 + ], + [ + "▁DBT", + -14.87221908569336 + ], + [ + "superior", + -14.872220039367676 + ], + [ + "towel", + -14.872251510620117 + ], + [ + "lete", + -14.872306823730469 + ], + [ + "▁Razz", + -14.872313499450684 + ], + [ + "▁shoebox", + -14.872321128845215 + ], + [ + "▁Darwinism", + -14.872371673583984 + ], + [ + "followed", + -14.872434616088867 + ], + [ + "ushka", + -14.872488021850586 + ], + [ + "▁마", + -14.872535705566406 + ], + [ + "▁Subsidiary", + -14.872551918029785 + ], + [ + "▁Seder", + -14.872565269470215 + ], + [ + "▁Nanak", + -14.872588157653809 + ], + [ + "▁photoreceptor", + -14.87259292602539 + ], + [ + "▁Taoiseach", + -14.872598648071289 + ], + [ + "Crypt", + -14.87269115447998 + ], + [ + "▁Blay", + -14.872700691223145 + ], + [ + "▁UAVs", + -14.8727388381958 + ], + [ + "▁thailand", + -14.872753143310547 + ], + [ + "swept", + -14.872757911682129 + ], + [ + "chromic", + -14.87276840209961 + ], + [ + "Latino", + -14.872776985168457 + ], + [ + "▁Vasco", + -14.872784614562988 + ], + [ + "▁aggregators", + -14.872791290283203 + ], + [ + "▁VISTA", + -14.872797012329102 + ], + [ + "▁Judaic", + -14.872831344604492 + ], + [ + "muir", + -14.872835159301758 + ], + [ + "▁Rube", + -14.872855186462402 + ], + [ + "▁Veranda", + -14.872857093811035 + ], + [ + "utton", + -14.872879028320312 + ], + [ + "▁RDP", + -14.872883796691895 + ], + [ + "▁mussel", + -14.872893333435059 + ], + [ + "▁undeclared", + -14.8729248046875 + ], + [ + "▁Quaid", + -14.872953414916992 + ], + [ + "▁uproot", + -14.872963905334473 + ], + [ + "vapor", + -14.873004913330078 + ], + [ + "▁leche", + -14.873005867004395 + ], + [ + "dei", + -14.873035430908203 + ], + [ + "▁Bruyne", + -14.873055458068848 + ], + [ + "▁Robber", + -14.87307071685791 + ], + [ + "▁jiffy", + -14.873190879821777 + ], + [ + "zé", + -14.873205184936523 + ], + [ + "▁Sallie", + -14.873223304748535 + ], + [ + "▁Rade", + -14.873245239257812 + ], + [ + "▁Bech", + -14.873276710510254 + ], + [ + "ич", + -14.87330150604248 + ], + [ + "luster", + -14.873329162597656 + ], + [ + "abble", + -14.873335838317871 + ], + [ + "▁recursion", + -14.87335205078125 + ], + [ + "blocked", + -14.873366355895996 + ], + [ + "▁yearned", + -14.873373985290527 + ], + [ + "▁Keil", + -14.87337875366211 + ], + [ + "▁uncharacteristically", + -14.873419761657715 + ], + [ + "▁nella", + -14.873429298400879 + ], + [ + "▁Ghanaians", + -14.87345027923584 + ], + [ + "▁vacu", + -14.873470306396484 + ], + [ + "▁intimation", + -14.87347412109375 + ], + [ + "▁Pergola", + -14.873478889465332 + ], + [ + "eddy", + -14.873485565185547 + ], + [ + "▁Marist", + -14.873485565185547 + ], + [ + "▁chez", + -14.873505592346191 + ], + [ + "▁Cerve", + -14.873566627502441 + ], + [ + "▁König", + -14.873612403869629 + ], + [ + "escens", + -14.873634338378906 + ], + [ + "▁Tigre", + -14.873642921447754 + ], + [ + "▁Reinforcement", + -14.873661041259766 + ], + [ + "Charm", + -14.873664855957031 + ], + [ + "▁ringside", + -14.873702049255371 + ], + [ + "▁Distortion", + -14.8737154006958 + ], + [ + "▁NWO", + -14.8737154006958 + ], + [ + "▁Haunting", + -14.87371826171875 + ], + [ + "▁MOH", + -14.873724937438965 + ], + [ + "▁embolden", + -14.873738288879395 + ], + [ + "▁RAPID", + -14.873780250549316 + ], + [ + "▁houseplants", + -14.873819351196289 + ], + [ + "▁Congenital", + -14.873900413513184 + ], + [ + "▁GameStop", + -14.873912811279297 + ], + [ + "심", + -14.87391471862793 + ], + [ + "▁Gumtree", + -14.873927116394043 + ], + [ + "elian", + -14.873968124389648 + ], + [ + "▁foodborne", + -14.873985290527344 + ], + [ + "因", + -14.87398910522461 + ], + [ + "▁piglets", + -14.87402629852295 + ], + [ + "▁carotenoids", + -14.874053955078125 + ], + [ + "▁mistletoe", + -14.874079704284668 + ], + [ + "Prov", + -14.874083518981934 + ], + [ + "▁dethrone", + -14.874105453491211 + ], + [ + "▁Olo", + -14.874124526977539 + ], + [ + "▁NARA", + -14.874141693115234 + ], + [ + "araj", + -14.874143600463867 + ], + [ + "▁quarantined", + -14.874143600463867 + ], + [ + "etched", + -14.87417221069336 + ], + [ + "Manual", + -14.874173164367676 + ], + [ + "▁HART", + -14.874183654785156 + ], + [ + "▁Mongols", + -14.87420654296875 + ], + [ + "▁Astronomers", + -14.874226570129395 + ], + [ + "▁invigorated", + -14.87425422668457 + ], + [ + "▁Moyo", + -14.874296188354492 + ], + [ + "3333", + -14.874308586120605 + ], + [ + "AZA", + -14.874311447143555 + ], + [ + "achu", + -14.874321937561035 + ], + [ + "▁ATG", + -14.874324798583984 + ], + [ + "▁springy", + -14.874332427978516 + ], + [ + "hemi", + -14.874370574951172 + ], + [ + "▁Rostov", + -14.874388694763184 + ], + [ + "▁Portability", + -14.874414443969727 + ], + [ + "▁DIM", + -14.874415397644043 + ], + [ + "▁Geary", + -14.874417304992676 + ], + [ + "▁correlating", + -14.874458312988281 + ], + [ + "▁584", + -14.874491691589355 + ], + [ + "▁Pretzel", + -14.874493598937988 + ], + [ + "▁nullified", + -14.874518394470215 + ], + [ + "koi", + -14.874526977539062 + ], + [ + "▁paleontologist", + -14.87453842163086 + ], + [ + "▁lutein", + -14.874545097351074 + ], + [ + "dealers", + -14.874547958374023 + ], + [ + "▁monogrammed", + -14.874547958374023 + ], + [ + "▁BRIGHT", + -14.874557495117188 + ], + [ + "▁postcolonial", + -14.874568939208984 + ], + [ + "Investor", + -14.874662399291992 + ], + [ + "Pace", + -14.874761581420898 + ], + [ + "gamy", + -14.874771118164062 + ], + [ + "▁Antibiotic", + -14.874788284301758 + ], + [ + "SLR", + -14.874814987182617 + ], + [ + "▁SESSION", + -14.874820709228516 + ], + [ + "▁footstool", + -14.874849319458008 + ], + [ + "▁Referrals", + -14.874860763549805 + ], + [ + "▁sarco", + -14.874866485595703 + ], + [ + "SIE", + -14.874889373779297 + ], + [ + "pride", + -14.874890327453613 + ], + [ + "zynski", + -14.874916076660156 + ], + [ + "▁Intranet", + -14.87492561340332 + ], + [ + "ENNA", + -14.874929428100586 + ], + [ + "▁Posner", + -14.874929428100586 + ], + [ + "▁colle", + -14.874938011169434 + ], + [ + "cratic", + -14.874945640563965 + ], + [ + "militar", + -14.874951362609863 + ], + [ + "▁landscapers", + -14.875100135803223 + ], + [ + "▁Ribeiro", + -14.8751220703125 + ], + [ + "▁Meant", + -14.875199317932129 + ], + [ + "▁IDEAS", + -14.875201225280762 + ], + [ + "▁kegs", + -14.87523365020752 + ], + [ + "HIT", + -14.875256538391113 + ], + [ + "landscape", + -14.87527847290039 + ], + [ + "▁carting", + -14.875282287597656 + ], + [ + "PTSD", + -14.875300407409668 + ], + [ + "▁Haddon", + -14.87533187866211 + ], + [ + "▁Adelson", + -14.875370979309082 + ], + [ + "▁capitulate", + -14.875391960144043 + ], + [ + "▁phylogeny", + -14.875432014465332 + ], + [ + "Hide", + -14.875434875488281 + ], + [ + "▁showerhead", + -14.875438690185547 + ], + [ + "Magazine", + -14.875446319580078 + ], + [ + "niche", + -14.875470161437988 + ], + [ + "▁Mopar", + -14.87547779083252 + ], + [ + "▁scull", + -14.87549114227295 + ], + [ + "▁799", + -14.875614166259766 + ], + [ + "▁Coleridge", + -14.875631332397461 + ], + [ + "▁determin", + -14.875686645507812 + ], + [ + "Holly", + -14.875707626342773 + ], + [ + "▁SDSU", + -14.875718116760254 + ], + [ + "▁Acai", + -14.875752449035645 + ], + [ + "▁Memes", + -14.87575912475586 + ], + [ + "▁obelisk", + -14.875774383544922 + ], + [ + "toun", + -14.875791549682617 + ], + [ + "▁Asana", + -14.87580680847168 + ], + [ + "appel", + -14.875811576843262 + ], + [ + "yyyy", + -14.875811576843262 + ], + [ + "▁XVII", + -14.875813484191895 + ], + [ + "TCA", + -14.875880241394043 + ], + [ + "Pig", + -14.875908851623535 + ], + [ + "▁Spontaneous", + -14.87591552734375 + ], + [ + "PMC", + -14.875968933105469 + ], + [ + "▁zeroed", + -14.875968933105469 + ], + [ + "▁bilge", + -14.875978469848633 + ], + [ + "▁PVA", + -14.875981330871582 + ], + [ + "▁tomboy", + -14.875995635986328 + ], + [ + "▁Bulawayo", + -14.875997543334961 + ], + [ + "chez", + -14.876014709472656 + ], + [ + "▁ghouls", + -14.876028060913086 + ], + [ + "▁pertussis", + -14.876032829284668 + ], + [ + "▁Lanzarote", + -14.876068115234375 + ], + [ + "▁Palaeo", + -14.876068115234375 + ], + [ + "▁657", + -14.876089096069336 + ], + [ + "▁stapler", + -14.876090049743652 + ], + [ + "Rum", + -14.876163482666016 + ], + [ + "▁Funko", + -14.876213073730469 + ], + [ + "▁expropriation", + -14.876233100891113 + ], + [ + "eski", + -14.87624454498291 + ], + [ + "▁revi", + -14.876266479492188 + ], + [ + "▁Organisers", + -14.876311302185059 + ], + [ + "▁Woodlawn", + -14.876355171203613 + ], + [ + "▁Maeve", + -14.876363754272461 + ], + [ + "▁Wolfsburg", + -14.87636947631836 + ], + [ + "▁criminology", + -14.876379013061523 + ], + [ + "▁Birla", + -14.876387596130371 + ], + [ + "decided", + -14.876389503479004 + ], + [ + "▁Amphi", + -14.876389503479004 + ], + [ + "dresser", + -14.876426696777344 + ], + [ + "nara", + -14.876458168029785 + ], + [ + "cially", + -14.876459121704102 + ], + [ + "▁crossfire", + -14.876493453979492 + ], + [ + "▁provisioned", + -14.87657642364502 + ], + [ + "RAF", + -14.876581192016602 + ], + [ + "▁glorifying", + -14.876623153686523 + ], + [ + "buyers", + -14.876632690429688 + ], + [ + "ین", + -14.87663745880127 + ], + [ + "grilled", + -14.876657485961914 + ], + [ + "Coupon", + -14.87667179107666 + ], + [ + "▁sternum", + -14.876676559448242 + ], + [ + "▁Gere", + -14.876687049865723 + ], + [ + "▁refiners", + -14.876696586608887 + ], + [ + "▁Optimist", + -14.87672233581543 + ], + [ + "nser", + -14.876724243164062 + ], + [ + "▁Swell", + -14.876733779907227 + ], + [ + "inë", + -14.87673568725586 + ], + [ + "▁Midstream", + -14.876738548278809 + ], + [ + "VEL", + -14.876744270324707 + ], + [ + "Harvard", + -14.876753807067871 + ], + [ + "▁Esperanza", + -14.876753807067871 + ], + [ + "▁liaising", + -14.87677001953125 + ], + [ + "▁IgE", + -14.876787185668945 + ], + [ + "▁bluesy", + -14.876810073852539 + ], + [ + "▁yogic", + -14.876846313476562 + ], + [ + "▁Combe", + -14.876851081848145 + ], + [ + "▁Pepperdine", + -14.876870155334473 + ], + [ + "▁ultralight", + -14.876910209655762 + ], + [ + "▁Niklas", + -14.876937866210938 + ], + [ + "▁Telo", + -14.876938819885254 + ], + [ + "indoor", + -14.876961708068848 + ], + [ + "physiology", + -14.877018928527832 + ], + [ + "▁Aeon", + -14.877042770385742 + ], + [ + "▁lyrically", + -14.877069473266602 + ], + [ + "Waiting", + -14.877071380615234 + ], + [ + "▁cherub", + -14.877155303955078 + ], + [ + "clav", + -14.877175331115723 + ], + [ + "▁Markey", + -14.877270698547363 + ], + [ + "▁Snowball", + -14.877312660217285 + ], + [ + "▁nix", + -14.877372741699219 + ], + [ + "▁Negotiating", + -14.877459526062012 + ], + [ + "▁motorhomes", + -14.877476692199707 + ], + [ + "▁Pivotal", + -14.877494812011719 + ], + [ + "▁Cid", + -14.877509117126465 + ], + [ + "▁Ripon", + -14.87751293182373 + ], + [ + "▁foreclose", + -14.877574920654297 + ], + [ + "hena", + -14.877575874328613 + ], + [ + "▁Trophies", + -14.87762451171875 + ], + [ + "Browse", + -14.877641677856445 + ], + [ + "▁proliferating", + -14.877683639526367 + ], + [ + "mould", + -14.877689361572266 + ], + [ + "▁benched", + -14.877692222595215 + ], + [ + "▁gente", + -14.87770938873291 + ], + [ + "▁transcending", + -14.877781867980957 + ], + [ + "▁Antitrust", + -14.877790451049805 + ], + [ + "▁datum", + -14.877799987792969 + ], + [ + "▁Khawaja", + -14.877801895141602 + ], + [ + "▁pisses", + -14.877812385559082 + ], + [ + "Discovery", + -14.87782096862793 + ], + [ + "▁3400", + -14.877873420715332 + ], + [ + "▁gnomes", + -14.877883911132812 + ], + [ + "pple", + -14.877897262573242 + ], + [ + "▁frustrates", + -14.877907752990723 + ], + [ + "EKA", + -14.877944946289062 + ], + [ + "하기", + -14.877944946289062 + ], + [ + "▁Dissent", + -14.877959251403809 + ], + [ + "▁PRODUCTION", + -14.877991676330566 + ], + [ + "▁Moj", + -14.87800407409668 + ], + [ + "▁reprogram", + -14.8780517578125 + ], + [ + "▁TNC", + -14.878057479858398 + ], + [ + "▁sentry", + -14.878060340881348 + ], + [ + "▁Hightower", + -14.878084182739258 + ], + [ + "▁Juke", + -14.878097534179688 + ], + [ + "Wonderful", + -14.87817096710205 + ], + [ + "▁StarCraft", + -14.878173828125 + ], + [ + "▁Leaks", + -14.878189086914062 + ], + [ + "doom", + -14.878190994262695 + ], + [ + "▁Watters", + -14.878241539001465 + ], + [ + "wander", + -14.878251075744629 + ], + [ + "▁Danforth", + -14.878264427185059 + ], + [ + "▁steeple", + -14.878324508666992 + ], + [ + "▁referent", + -14.878327369689941 + ], + [ + "▁Société", + -14.878438949584961 + ], + [ + "▁Zoya", + -14.878576278686523 + ], + [ + "▁Gaby", + -14.878581047058105 + ], + [ + "▁tutti", + -14.878584861755371 + ], + [ + "▁UNA", + -14.878620147705078 + ], + [ + "▁Foxtel", + -14.878632545471191 + ], + [ + "▁expediency", + -14.87867546081543 + ], + [ + "▁Schulte", + -14.878677368164062 + ], + [ + "▁tufts", + -14.878681182861328 + ], + [ + "clusive", + -14.878726959228516 + ], + [ + "efa", + -14.878759384155273 + ], + [ + "▁Shing", + -14.878774642944336 + ], + [ + "▁Chantilly", + -14.878786087036133 + ], + [ + "▁Freemasons", + -14.878793716430664 + ], + [ + "▁Authorize", + -14.878867149353027 + ], + [ + "▁conscription", + -14.878877639770508 + ], + [ + "▁positron", + -14.878884315490723 + ], + [ + "▁Yosef", + -14.878891944885254 + ], + [ + "▁Rebuilding", + -14.87891674041748 + ], + [ + "▁gagged", + -14.878942489624023 + ], + [ + "▁unfollow", + -14.878971099853516 + ], + [ + "▁unelected", + -14.87898063659668 + ], + [ + "▁verily", + -14.87898063659668 + ], + [ + "▁906", + -14.878996849060059 + ], + [ + "▁JANUARY", + -14.879006385803223 + ], + [ + "▁evangelize", + -14.879079818725586 + ], + [ + "▁Macclesfield", + -14.879100799560547 + ], + [ + "▁Chorale", + -14.879104614257812 + ], + [ + "▁Muc", + -14.879106521606445 + ], + [ + "▁Sande", + -14.879159927368164 + ], + [ + "▁Scand", + -14.879173278808594 + ], + [ + "▁ayurvedic", + -14.879195213317871 + ], + [ + "Aging", + -14.879205703735352 + ], + [ + "▁HMC", + -14.879222869873047 + ], + [ + "▁gegen", + -14.879228591918945 + ], + [ + "▁GCP", + -14.87923526763916 + ], + [ + "▁Mackinac", + -14.879242897033691 + ], + [ + "▁Fishermen", + -14.879247665405273 + ], + [ + "▁Storing", + -14.879279136657715 + ], + [ + "BSA", + -14.879369735717773 + ], + [ + "▁Whalen", + -14.87938404083252 + ], + [ + "▁Haggard", + -14.879405975341797 + ], + [ + "еу", + -14.879509925842285 + ], + [ + "▁imagin", + -14.879541397094727 + ], + [ + "▁mulching", + -14.879547119140625 + ], + [ + "opathies", + -14.879598617553711 + ], + [ + "▁FEMALE", + -14.879615783691406 + ], + [ + "▁Brach", + -14.879621505737305 + ], + [ + "▁Luci", + -14.879684448242188 + ], + [ + "▁unabashedly", + -14.879697799682617 + ], + [ + "IGO", + -14.879731178283691 + ], + [ + "▁CRL", + -14.879755973815918 + ], + [ + "▁quadri", + -14.879777908325195 + ], + [ + "jera", + -14.879791259765625 + ], + [ + "▁hydrochloric", + -14.879833221435547 + ], + [ + "اه", + -14.879853248596191 + ], + [ + "ズ", + -14.879862785339355 + ], + [ + "▁Knead", + -14.879876136779785 + ], + [ + "▁congregants", + -14.879892349243164 + ], + [ + "▁Therma", + -14.879922866821289 + ], + [ + "▁CCW", + -14.879928588867188 + ], + [ + "▁ibid", + -14.879938125610352 + ], + [ + "▁CWA", + -14.879952430725098 + ], + [ + "▁Aishwarya", + -14.879963874816895 + ], + [ + "▁DIDN", + -14.879966735839844 + ], + [ + "▁Varnish", + -14.88001823425293 + ], + [ + "▁neonates", + -14.880111694335938 + ], + [ + "▁CoQ", + -14.88011360168457 + ], + [ + "ุ", + -14.880115509033203 + ], + [ + "▁Compressed", + -14.880121231079102 + ], + [ + "▁Vide", + -14.880125045776367 + ], + [ + "▁skilfully", + -14.88014030456543 + ], + [ + "▁terre", + -14.880168914794922 + ], + [ + "▁intraoperative", + -14.880172729492188 + ], + [ + "▁OCA", + -14.880193710327148 + ], + [ + "▁fizzled", + -14.880193710327148 + ], + [ + "▁DuPage", + -14.880204200744629 + ], + [ + "▁exegesis", + -14.88021183013916 + ], + [ + "▁idiosyncrasies", + -14.88023567199707 + ], + [ + "▁Peli", + -14.88025188446045 + ], + [ + "▁councilman", + -14.88029956817627 + ], + [ + "▁807", + -14.880321502685547 + ], + [ + "▁aghast", + -14.880354881286621 + ], + [ + "▁protestant", + -14.88035774230957 + ], + [ + "▁Lancers", + -14.880362510681152 + ], + [ + "▁Geis", + -14.880379676818848 + ], + [ + "▁scamper", + -14.880385398864746 + ], + [ + "▁Chancery", + -14.880425453186035 + ], + [ + "▁laundered", + -14.880453109741211 + ], + [ + "▁Mangan", + -14.880456924438477 + ], + [ + "▁otros", + -14.880491256713867 + ], + [ + "▁Ghibli", + -14.880501747131348 + ], + [ + "▁Boho", + -14.880535125732422 + ], + [ + "▁bookshops", + -14.880538940429688 + ], + [ + "▁suburbia", + -14.880550384521484 + ], + [ + "▁Stevenage", + -14.880609512329102 + ], + [ + "▁Sockets", + -14.88061237335205 + ], + [ + "▁DCM", + -14.880617141723633 + ], + [ + "▁pariah", + -14.880627632141113 + ], + [ + "▁fugitives", + -14.880714416503906 + ], + [ + "isierung", + -14.880766868591309 + ], + [ + "▁Thoracic", + -14.880769729614258 + ], + [ + "Hodgkin", + -14.880792617797852 + ], + [ + "alley", + -14.88079833984375 + ], + [ + "▁Seventies", + -14.880802154541016 + ], + [ + "▁Halong", + -14.88080883026123 + ], + [ + "▁Tapper", + -14.880897521972656 + ], + [ + "circum", + -14.880918502807617 + ], + [ + "▁Rushing", + -14.880918502807617 + ], + [ + "▁vibrates", + -14.880925178527832 + ], + [ + "▁McConaughey", + -14.88093376159668 + ], + [ + "LAST", + -14.880939483642578 + ], + [ + "▁Decimal", + -14.880953788757324 + ], + [ + "▁engulfing", + -14.880993843078613 + ], + [ + "▁subgenre", + -14.881006240844727 + ], + [ + "whistle", + -14.881012916564941 + ], + [ + "▁€50", + -14.88101577758789 + ], + [ + "▁Shibuya", + -14.881016731262207 + ], + [ + "▁Absolut", + -14.881030082702637 + ], + [ + "▁Kani", + -14.88104248046875 + ], + [ + "ộ", + -14.881062507629395 + ], + [ + "▁Chiba", + -14.88109302520752 + ], + [ + "▁Maurer", + -14.881101608276367 + ], + [ + "▁Lond", + -14.881107330322266 + ], + [ + "▁physic", + -14.881115913391113 + ], + [ + "analyse", + -14.881145477294922 + ], + [ + "Quin", + -14.881152153015137 + ], + [ + "▁gru", + -14.88117790222168 + ], + [ + "glaze", + -14.881192207336426 + ], + [ + "▁Wold", + -14.881205558776855 + ], + [ + "▁Winger", + -14.881216049194336 + ], + [ + "▁AAV", + -14.881223678588867 + ], + [ + "▁McDougal", + -14.881359100341797 + ], + [ + "▁Antioxidant", + -14.881361961364746 + ], + [ + "▁Adjuster", + -14.881402015686035 + ], + [ + "▁expe", + -14.881413459777832 + ], + [ + "NEA", + -14.881418228149414 + ], + [ + "▁Frid", + -14.881424903869629 + ], + [ + "buried", + -14.881439208984375 + ], + [ + "▁NEEDED", + -14.881452560424805 + ], + [ + "peck", + -14.881457328796387 + ], + [ + "▁clamber", + -14.881485939025879 + ], + [ + "▁Detachment", + -14.881490707397461 + ], + [ + "▁captaincy", + -14.881502151489258 + ], + [ + "▁slather", + -14.881564140319824 + ], + [ + "▁Latimer", + -14.881566047668457 + ], + [ + "▁dese", + -14.881575584411621 + ], + [ + "▁și", + -14.881608963012695 + ], + [ + "▁prion", + -14.881685256958008 + ], + [ + "▁Tremendous", + -14.881715774536133 + ], + [ + "▁utah", + -14.881729125976562 + ], + [ + "▁daw", + -14.881791114807129 + ], + [ + "rris", + -14.881817817687988 + ], + [ + "▁Goya", + -14.881826400756836 + ], + [ + "▁Galley", + -14.881855964660645 + ], + [ + "▁haughty", + -14.881857872009277 + ], + [ + "▁perches", + -14.881878852844238 + ], + [ + "▁workweek", + -14.881881713867188 + ], + [ + "▁Vib", + -14.881884574890137 + ], + [ + "Reports", + -14.88192367553711 + ], + [ + "▁viti", + -14.881991386413574 + ], + [ + "▁MOOCs", + -14.882044792175293 + ], + [ + "▁Lieut", + -14.882055282592773 + ], + [ + "▁sylv", + -14.882059097290039 + ], + [ + "▁Dundalk", + -14.882071495056152 + ], + [ + "▁MSE", + -14.882071495056152 + ], + [ + "▁Niacin", + -14.88209342956543 + ], + [ + "▁004", + -14.882123947143555 + ], + [ + "▁wettest", + -14.882137298583984 + ], + [ + "▁Microchip", + -14.882148742675781 + ], + [ + "RIG", + -14.882183074951172 + ], + [ + "escalation", + -14.88221263885498 + ], + [ + "▁dismembered", + -14.882213592529297 + ], + [ + "▁Nutritionist", + -14.882216453552246 + ], + [ + "▁Vaseline", + -14.882241249084473 + ], + [ + "▁Balu", + -14.88227653503418 + ], + [ + "▁Pathol", + -14.882308959960938 + ], + [ + "▁Zambezi", + -14.882367134094238 + ], + [ + "Outstanding", + -14.882370948791504 + ], + [ + "▁Yamato", + -14.882386207580566 + ], + [ + "apura", + -14.8823881149292 + ], + [ + "Busch", + -14.882408142089844 + ], + [ + "▁Italic", + -14.882425308227539 + ], + [ + "vinci", + -14.882447242736816 + ], + [ + "▁fairgrounds", + -14.882472038269043 + ], + [ + "▁Filippo", + -14.88254165649414 + ], + [ + "punkt", + -14.882587432861328 + ], + [ + "▁Brood", + -14.882594108581543 + ], + [ + "▁dyke", + -14.882628440856934 + ], + [ + "Pattern", + -14.88263988494873 + ], + [ + "▁psychotropic", + -14.88263988494873 + ], + [ + "nego", + -14.882648468017578 + ], + [ + "▁WHL", + -14.882658004760742 + ], + [ + "▁Vile", + -14.882691383361816 + ], + [ + "▁buggies", + -14.88269329071045 + ], + [ + "ề", + -14.882699012756348 + ], + [ + "▁Crayola", + -14.882705688476562 + ], + [ + "▁bluebird", + -14.882710456848145 + ], + [ + "guardians", + -14.882721900939941 + ], + [ + "courage", + -14.882728576660156 + ], + [ + "▁Douma", + -14.882789611816406 + ], + [ + "Cream", + -14.882808685302734 + ], + [ + "▁nonviolence", + -14.882810592651367 + ], + [ + "▁uf", + -14.882840156555176 + ], + [ + "▁Muff", + -14.88286304473877 + ], + [ + "▁boudoir", + -14.882877349853516 + ], + [ + "▁Barnier", + -14.882895469665527 + ], + [ + "▁throngs", + -14.88291072845459 + ], + [ + "▁Glyc", + -14.882964134216309 + ], + [ + "▁COAST", + -14.883005142211914 + ], + [ + "TRANS", + -14.883014678955078 + ], + [ + "▁Mourning", + -14.883030891418457 + ], + [ + "▁Mukesh", + -14.883038520812988 + ], + [ + "▁impostor", + -14.883161544799805 + ], + [ + "▁presuming", + -14.883185386657715 + ], + [ + "▁659", + -14.883260726928711 + ], + [ + "▁cowgirl", + -14.883304595947266 + ], + [ + "▁inalienable", + -14.883317947387695 + ], + [ + "mutual", + -14.883331298828125 + ], + [ + "▁tellers", + -14.883341789245605 + ], + [ + "였", + -14.883352279663086 + ], + [ + "Trak", + -14.883377075195312 + ], + [ + "▁Periodically", + -14.883378028869629 + ], + [ + "▁Kahlo", + -14.88339614868164 + ], + [ + "▁HEAVY", + -14.883410453796387 + ], + [ + "▁McAllen", + -14.883434295654297 + ], + [ + "Cafe", + -14.883437156677246 + ], + [ + "▁redeploy", + -14.883451461791992 + ], + [ + "▁Consort", + -14.883463859558105 + ], + [ + "▁Calorie", + -14.883469581604004 + ], + [ + "▁diverging", + -14.8834810256958 + ], + [ + "▁Expired", + -14.88354206085205 + ], + [ + "haler", + -14.883550643920898 + ], + [ + "situation", + -14.88355541229248 + ], + [ + "Tiny", + -14.88355827331543 + ], + [ + "▁HEY", + -14.883586883544922 + ], + [ + "ROL", + -14.883590698242188 + ], + [ + "RATOR", + -14.88361644744873 + ], + [ + "▁Zinfandel", + -14.883648872375488 + ], + [ + "▁MHS", + -14.883654594421387 + ], + [ + "▁logarithm", + -14.883666038513184 + ], + [ + "eberg", + -14.883707046508789 + ], + [ + "▁Modulation", + -14.883753776550293 + ], + [ + "▁Museveni", + -14.883770942687988 + ], + [ + "▁snubbed", + -14.883793830871582 + ], + [ + "▁Exorcist", + -14.883849143981934 + ], + [ + "YYYY", + -14.88385009765625 + ], + [ + "ridi", + -14.883868217468262 + ], + [ + "▁Hibernate", + -14.88389778137207 + ], + [ + "▁validator", + -14.883942604064941 + ], + [ + "Katie", + -14.883943557739258 + ], + [ + "▁NSCLC", + -14.883980751037598 + ], + [ + "▁Initiate", + -14.883987426757812 + ], + [ + "▁VERSION", + -14.883990287780762 + ], + [ + "▁chairmen", + -14.883991241455078 + ], + [ + "Latest", + -14.884016990661621 + ], + [ + "▁ان", + -14.88401985168457 + ], + [ + "हा", + -14.884032249450684 + ], + [ + "▁dastardly", + -14.884063720703125 + ], + [ + "KAT", + -14.884096145629883 + ], + [ + "▁Rovi", + -14.884099006652832 + ], + [ + "ceta", + -14.884140014648438 + ], + [ + "▁발", + -14.884164810180664 + ], + [ + "expo", + -14.884186744689941 + ], + [ + "pushing", + -14.884204864501953 + ], + [ + "▁🙁", + -14.884208679199219 + ], + [ + "▁Oki", + -14.884223937988281 + ], + [ + "▁pejorative", + -14.884230613708496 + ], + [ + "clamp", + -14.884247779846191 + ], + [ + "wives", + -14.884256362915039 + ], + [ + "▁litigate", + -14.884258270263672 + ], + [ + "▁KOM", + -14.884264945983887 + ], + [ + "▁portico", + -14.884286880493164 + ], + [ + "▁Verda", + -14.884318351745605 + ], + [ + "▁UAW", + -14.884331703186035 + ], + [ + "▁carmakers", + -14.8843355178833 + ], + [ + "PGA", + -14.88435173034668 + ], + [ + "Qual", + -14.884357452392578 + ], + [ + "adore", + -14.884382247924805 + ], + [ + "▁proportionality", + -14.884383201599121 + ], + [ + "▁Cantina", + -14.884387969970703 + ], + [ + "就", + -14.884393692016602 + ], + [ + "▁Glencoe", + -14.884397506713867 + ], + [ + "Bobby", + -14.884407997131348 + ], + [ + "▁reaffirms", + -14.884411811828613 + ], + [ + "pork", + -14.884454727172852 + ], + [ + "▁त", + -14.884495735168457 + ], + [ + "▁Narc", + -14.88454818725586 + ], + [ + "▁reactivated", + -14.884549140930176 + ], + [ + "▁dictum", + -14.884580612182617 + ], + [ + "▁Chekhov", + -14.884583473205566 + ], + [ + "Buffer", + -14.884593963623047 + ], + [ + "−2", + -14.884622573852539 + ], + [ + "▁Quoting", + -14.884671211242676 + ], + [ + "▁manna", + -14.88476276397705 + ], + [ + "▁Zafar", + -14.88479995727539 + ], + [ + "▁BZ", + -14.884806632995605 + ], + [ + "▁cogs", + -14.884808540344238 + ], + [ + "▁BLT", + -14.884854316711426 + ], + [ + "▁battleships", + -14.884854316711426 + ], + [ + "▁Sancho", + -14.88486385345459 + ], + [ + "▁travelogue", + -14.884864807128906 + ], + [ + "vegetable", + -14.884897232055664 + ], + [ + "▁Seger", + -14.884897232055664 + ], + [ + "▁REA", + -14.884903907775879 + ], + [ + "▁unencumbered", + -14.884931564331055 + ], + [ + "disco", + -14.88493537902832 + ], + [ + "▁piezo", + -14.884965896606445 + ], + [ + "▁presumptuous", + -14.884966850280762 + ], + [ + "▁outcrop", + -14.885028839111328 + ], + [ + "▁Bowery", + -14.885048866271973 + ], + [ + "Structure", + -14.885055541992188 + ], + [ + "▁bridegroom", + -14.885062217712402 + ], + [ + "▁communique", + -14.885068893432617 + ], + [ + "▁irritates", + -14.885074615478516 + ], + [ + "▁Snapdeal", + -14.885089874267578 + ], + [ + "▁mire", + -14.88509464263916 + ], + [ + "elco", + -14.885098457336426 + ], + [ + "▁Waze", + -14.885098457336426 + ], + [ + "mico", + -14.885124206542969 + ], + [ + "▁categorizes", + -14.885176658630371 + ], + [ + "▁CHR", + -14.885178565979004 + ], + [ + "▁ALJ", + -14.885196685791016 + ], + [ + "▁veni", + -14.885209083557129 + ], + [ + "▁Haman", + -14.885215759277344 + ], + [ + "пи", + -14.885296821594238 + ], + [ + "▁Isolate", + -14.885311126708984 + ], + [ + "▁abominable", + -14.8853120803833 + ], + [ + "▁Coder", + -14.88536548614502 + ], + [ + "▁taser", + -14.885369300842285 + ], + [ + "▁Maren", + -14.88541316986084 + ], + [ + "▁toughened", + -14.885418891906738 + ], + [ + "▁Prick", + -14.885458946228027 + ], + [ + "▁friendlies", + -14.88547134399414 + ], + [ + "▁Ock", + -14.885476112365723 + ], + [ + "essing", + -14.885515213012695 + ], + [ + "▁Dietz", + -14.885518074035645 + ], + [ + "▁rudeness", + -14.885564804077148 + ], + [ + "▁FESTIVAL", + -14.88558578491211 + ], + [ + "EEC", + -14.885586738586426 + ], + [ + "Stats", + -14.885645866394043 + ], + [ + "▁Preached", + -14.88565444946289 + ], + [ + "▁Guadeloupe", + -14.885668754577637 + ], + [ + "▁aspartame", + -14.885668754577637 + ], + [ + "환", + -14.885680198669434 + ], + [ + "▁826", + -14.88569450378418 + ], + [ + "▁Brackets", + -14.885699272155762 + ], + [ + "▁Akan", + -14.885747909545898 + ], + [ + "▁speci", + -14.885756492614746 + ], + [ + "▁개", + -14.885775566101074 + ], + [ + "IEN", + -14.88577938079834 + ], + [ + "▁822", + -14.885787963867188 + ], + [ + "▁mindfully", + -14.885810852050781 + ], + [ + "▁▼", + -14.885838508605957 + ], + [ + "ości", + -14.885857582092285 + ], + [ + "droid", + -14.885893821716309 + ], + [ + "herr", + -14.885920524597168 + ], + [ + "lamb", + -14.885924339294434 + ], + [ + "▁DISTRICT", + -14.885946273803711 + ], + [ + "osha", + -14.885967254638672 + ], + [ + "▁chafe", + -14.885974884033203 + ], + [ + "▁Не", + -14.885978698730469 + ], + [ + "▁ruckus", + -14.885979652404785 + ], + [ + "▁Polypropylene", + -14.885980606079102 + ], + [ + "▁Constructor", + -14.886042594909668 + ], + [ + "▁Pik", + -14.88609504699707 + ], + [ + "vary", + -14.886126518249512 + ], + [ + "▁mouthed", + -14.886128425598145 + ], + [ + "▁reenact", + -14.886148452758789 + ], + [ + "▁Extractor", + -14.88615608215332 + ], + [ + "▁SPDR", + -14.886192321777344 + ], + [ + "▁Residual", + -14.886240005493164 + ], + [ + "▁Sibley", + -14.886282920837402 + ], + [ + "▁Numb", + -14.886312484741211 + ], + [ + "▁YouGov", + -14.886341094970703 + ], + [ + "▁cloister", + -14.886343955993652 + ], + [ + "▁slurp", + -14.886345863342285 + ], + [ + "▁Yaw", + -14.886356353759766 + ], + [ + "▁CENTURY", + -14.886359214782715 + ], + [ + "▁SCT", + -14.88640308380127 + ], + [ + "▁Multilingual", + -14.886425018310547 + ], + [ + "▁SINCE", + -14.886465072631836 + ], + [ + "▁Starry", + -14.886480331420898 + ], + [ + "Paradise", + -14.886505126953125 + ], + [ + "therapist", + -14.886570930480957 + ], + [ + "arlo", + -14.88659954071045 + ], + [ + "Loss", + -14.886611938476562 + ], + [ + "ticle", + -14.886622428894043 + ], + [ + "▁quilters", + -14.886643409729004 + ], + [ + "台", + -14.886689186096191 + ], + [ + "▁maneuvered", + -14.886740684509277 + ], + [ + "▁Balearic", + -14.88674259185791 + ], + [ + "▁catalysis", + -14.886764526367188 + ], + [ + "▁Raging", + -14.8867826461792 + ], + [ + "▁pickling", + -14.886786460876465 + ], + [ + "ologische", + -14.88680362701416 + ], + [ + "▁whizz", + -14.88681697845459 + ], + [ + "Seller", + -14.88684368133545 + ], + [ + "▁Mandal", + -14.88697624206543 + ], + [ + "amber", + -14.886981010437012 + ], + [ + "▁Tuo", + -14.887030601501465 + ], + [ + "▁Fruity", + -14.887072563171387 + ], + [ + "▁Grader", + -14.887077331542969 + ], + [ + "▁Soothing", + -14.887121200561523 + ], + [ + "αλ", + -14.887165069580078 + ], + [ + "▁wherewithal", + -14.88716983795166 + ], + [ + "▁unsound", + -14.887211799621582 + ], + [ + "▁hegemonic", + -14.887234687805176 + ], + [ + "▁Parasite", + -14.887249946594238 + ], + [ + "yep", + -14.887284278869629 + ], + [ + "settled", + -14.887340545654297 + ], + [ + "▁Wyden", + -14.88737678527832 + ], + [ + "▁NATION", + -14.887397766113281 + ], + [ + "▁dispelled", + -14.887397766113281 + ], + [ + "SSB", + -14.887421607971191 + ], + [ + "▁hankering", + -14.887423515319824 + ], + [ + "▁odious", + -14.887454986572266 + ], + [ + "▁Stinson", + -14.887460708618164 + ], + [ + "implement", + -14.887473106384277 + ], + [ + "▁bali", + -14.887481689453125 + ], + [ + "▁commode", + -14.887489318847656 + ], + [ + "▁alkaloids", + -14.887499809265137 + ], + [ + "immediately", + -14.887519836425781 + ], + [ + "ANTI", + -14.887529373168945 + ], + [ + "▁Scissor", + -14.887534141540527 + ], + [ + "▁splendidly", + -14.887535095214844 + ], + [ + "▁Maddow", + -14.887541770935059 + ], + [ + "▁Gout", + -14.88754653930664 + ], + [ + "Desire", + -14.887574195861816 + ], + [ + "▁Intercultural", + -14.887654304504395 + ], + [ + "▁Pellegrini", + -14.887728691101074 + ], + [ + "▁Yazidi", + -14.887743949890137 + ], + [ + "▁STATION", + -14.887762069702148 + ], + [ + "▁Tartu", + -14.887796401977539 + ], + [ + "▁laissez", + -14.887797355651855 + ], + [ + "▁DRE", + -14.88780689239502 + ], + [ + "▁peerless", + -14.88782024383545 + ], + [ + "▁LEV", + -14.887834548950195 + ], + [ + "▁detaining", + -14.887850761413574 + ], + [ + "governing", + -14.887887001037598 + ], + [ + "LOY", + -14.887894630432129 + ], + [ + "▁Broil", + -14.887922286987305 + ], + [ + "▁sadder", + -14.887975692749023 + ], + [ + "▁Toews", + -14.888006210327148 + ], + [ + "▁Stasi", + -14.888062477111816 + ], + [ + "Opera", + -14.888076782226562 + ], + [ + "äh", + -14.888145446777344 + ], + [ + "▁presto", + -14.888150215148926 + ], + [ + "▁overrule", + -14.88818645477295 + ], + [ + "olive", + -14.888193130493164 + ], + [ + "▁kelly", + -14.88825511932373 + ], + [ + "▁Glitch", + -14.888264656066895 + ], + [ + "kV", + -14.88827133178711 + ], + [ + "outstanding", + -14.888290405273438 + ], + [ + "▁LAR", + -14.888352394104004 + ], + [ + "▁Lui", + -14.888394355773926 + ], + [ + "▁turnstile", + -14.888410568237305 + ], + [ + "▁Modric", + -14.888445854187012 + ], + [ + "▁Innovators", + -14.888452529907227 + ], + [ + "▁Mede", + -14.888453483581543 + ], + [ + "huan", + -14.888460159301758 + ], + [ + "Senator", + -14.888482093811035 + ], + [ + "pounding", + -14.888490676879883 + ], + [ + "▁Kadi", + -14.88851261138916 + ], + [ + "▁Nome", + -14.888513565063477 + ], + [ + "IKI", + -14.888551712036133 + ], + [ + "▁vanadium", + -14.888574600219727 + ], + [ + "▁unintelligible", + -14.888578414916992 + ], + [ + "▁cosine", + -14.888596534729004 + ], + [ + "▁Quoted", + -14.888601303100586 + ], + [ + "▁undercarriage", + -14.88862133026123 + ], + [ + "▁zircon", + -14.888649940490723 + ], + [ + "▁spunky", + -14.888651847839355 + ], + [ + "▁Niv", + -14.888659477233887 + ], + [ + "▁brisbane", + -14.88868236541748 + ], + [ + "품", + -14.88868236541748 + ], + [ + "▁Aerosol", + -14.888689041137695 + ], + [ + "plegia", + -14.888693809509277 + ], + [ + "prince", + -14.888713836669922 + ], + [ + "▁LIFT", + -14.888716697692871 + ], + [ + "vind", + -14.888739585876465 + ], + [ + "▁Ridgewood", + -14.888749122619629 + ], + [ + "fitter", + -14.888774871826172 + ], + [ + "plicity", + -14.888803482055664 + ], + [ + "▁dimmable", + -14.888838768005371 + ], + [ + "Collins", + -14.888846397399902 + ], + [ + "▁sirloin", + -14.888850212097168 + ], + [ + "▁synapse", + -14.888875961303711 + ], + [ + "▁Newburgh", + -14.888893127441406 + ], + [ + "provision", + -14.888933181762695 + ], + [ + "▁Hatchback", + -14.888958930969238 + ], + [ + "▁scrawled", + -14.888964653015137 + ], + [ + "▁raunchy", + -14.888980865478516 + ], + [ + "▁WANTED", + -14.889005661010742 + ], + [ + "▁braille", + -14.889009475708008 + ], + [ + "▁Corti", + -14.889022827148438 + ], + [ + "▁Pern", + -14.88902473449707 + ], + [ + "▁Wipes", + -14.889034271240234 + ], + [ + "▁combatting", + -14.889120101928711 + ], + [ + "▁Bama", + -14.889147758483887 + ], + [ + "▁EMDR", + -14.889178276062012 + ], + [ + "항", + -14.88918399810791 + ], + [ + "▁Robbery", + -14.889184951782227 + ], + [ + "▁Yeoman", + -14.88924503326416 + ], + [ + "▁oestrogen", + -14.889248847961426 + ], + [ + "▁PWD", + -14.889259338378906 + ], + [ + "▁Meena", + -14.889266014099121 + ], + [ + "▁Weighted", + -14.889272689819336 + ], + [ + "▁harbored", + -14.889300346374512 + ], + [ + "▁trou", + -14.88932991027832 + ], + [ + "VGA", + -14.889350891113281 + ], + [ + "▁absorbance", + -14.889451026916504 + ], + [ + "▁numero", + -14.88945198059082 + ], + [ + "▁Swee", + -14.889464378356934 + ], + [ + "ticus", + -14.889472961425781 + ], + [ + "ツ", + -14.88947582244873 + ], + [ + "▁Newtonian", + -14.889493942260742 + ], + [ + "lanta", + -14.889524459838867 + ], + [ + "▁twa", + -14.88953971862793 + ], + [ + "▁Amity", + -14.889543533325195 + ], + [ + "▁bossy", + -14.889557838439941 + ], + [ + "▁Firmino", + -14.889575958251953 + ], + [ + "coff", + -14.889582633972168 + ], + [ + "iones", + -14.889610290527344 + ], + [ + "straße", + -14.889617919921875 + ], + [ + "▁roping", + -14.889617919921875 + ], + [ + "▁hypno", + -14.889631271362305 + ], + [ + "▁Friars", + -14.889634132385254 + ], + [ + "Bachelor", + -14.889641761779785 + ], + [ + "ρο", + -14.889646530151367 + ], + [ + "▁Lanarkshire", + -14.889662742614746 + ], + [ + "▁moisturizes", + -14.889663696289062 + ], + [ + "▁Altoona", + -14.889666557312012 + ], + [ + "▁Conklin", + -14.889700889587402 + ], + [ + "▁Cirrus", + -14.889708518981934 + ], + [ + "▁rosa", + -14.889752388000488 + ], + [ + "▁lettered", + -14.889763832092285 + ], + [ + "▁apparatuses", + -14.889793395996094 + ], + [ + "▁loathed", + -14.889817237854004 + ], + [ + "▁CFDs", + -14.889825820922852 + ], + [ + "▁OpenSSL", + -14.889849662780762 + ], + [ + "마", + -14.889877319335938 + ], + [ + "▁METHOD", + -14.889886856079102 + ], + [ + "▁Supt", + -14.889937400817871 + ], + [ + "▁Salted", + -14.889969825744629 + ], + [ + "▁Constabulary", + -14.889984130859375 + ], + [ + "arë", + -14.890015602111816 + ], + [ + "▁Multan", + -14.890020370483398 + ], + [ + "UAN", + -14.890052795410156 + ], + [ + "▁NPL", + -14.890052795410156 + ], + [ + "EVE", + -14.89008617401123 + ], + [ + "Evolution", + -14.890097618103027 + ], + [ + "▁glandular", + -14.890172958374023 + ], + [ + "hugging", + -14.890193939208984 + ], + [ + "▁Kampf", + -14.890230178833008 + ], + [ + "▁blindsided", + -14.89024543762207 + ], + [ + "▁COMMISSION", + -14.890260696411133 + ], + [ + "karma", + -14.89026165008545 + ], + [ + "▁Renn", + -14.890274047851562 + ], + [ + "ช", + -14.890279769897461 + ], + [ + "▁Lansdowne", + -14.890280723571777 + ], + [ + "detector", + -14.890329360961914 + ], + [ + "▁Foshan", + -14.890347480773926 + ], + [ + "huri", + -14.890361785888672 + ], + [ + "▁Invictus", + -14.890401840209961 + ], + [ + "▁paywall", + -14.89041805267334 + ], + [ + "▁Neko", + -14.890438079833984 + ], + [ + "▁Ayu", + -14.890519142150879 + ], + [ + "▁diesem", + -14.890544891357422 + ], + [ + "▁Splice", + -14.89055061340332 + ], + [ + "▁미", + -14.89055061340332 + ], + [ + "▁Breg", + -14.890565872192383 + ], + [ + "Keeffe", + -14.890576362609863 + ], + [ + "cida", + -14.890591621398926 + ], + [ + "▁GOLDEN", + -14.890604019165039 + ], + [ + "▁sheathing", + -14.890612602233887 + ], + [ + "UCH", + -14.890647888183594 + ], + [ + "▁skittish", + -14.890653610229492 + ], + [ + "▁pru", + -14.890664100646973 + ], + [ + "▁bribing", + -14.890669822692871 + ], + [ + "ASB", + -14.890710830688477 + ], + [ + "Enough", + -14.890730857849121 + ], + [ + "▁statesmen", + -14.890790939331055 + ], + [ + "▁neem", + -14.8908109664917 + ], + [ + "▁AWG", + -14.890819549560547 + ], + [ + "TTI", + -14.890830993652344 + ], + [ + "▁ferrets", + -14.890859603881836 + ], + [ + "▁Mediafire", + -14.89087963104248 + ], + [ + "▁stinger", + -14.890888214111328 + ], + [ + "▁Kä", + -14.890890121459961 + ], + [ + "▁MacKay", + -14.890928268432617 + ], + [ + "Column", + -14.890942573547363 + ], + [ + "▁Brinkley", + -14.890950202941895 + ], + [ + "▁contig", + -14.890974998474121 + ], + [ + "▁tener", + -14.89099407196045 + ], + [ + "ız", + -14.891054153442383 + ], + [ + "▁electromechanical", + -14.89110279083252 + ], + [ + "▁Kosh", + -14.891119003295898 + ], + [ + "▁peasy", + -14.891122817993164 + ], + [ + "▁diurnal", + -14.89114761352539 + ], + [ + "▁Gastroenterol", + -14.891154289245605 + ], + [ + "Todd", + -14.891178131103516 + ], + [ + "cze", + -14.891196250915527 + ], + [ + "▁cubby", + -14.891216278076172 + ], + [ + "▁UEFI", + -14.891228675842285 + ], + [ + "▁compo", + -14.89123249053955 + ], + [ + "▁Nonfiction", + -14.891279220581055 + ], + [ + "▁Proust", + -14.891328811645508 + ], + [ + "▁Gobi", + -14.891355514526367 + ], + [ + "▁islamic", + -14.891379356384277 + ], + [ + "▁wafting", + -14.891397476196289 + ], + [ + "▁mosh", + -14.891398429870605 + ], + [ + "▁Kestrel", + -14.891422271728516 + ], + [ + "▁catalyzed", + -14.891424179077148 + ], + [ + "TIES", + -14.891430854797363 + ], + [ + "▁Blob", + -14.891448974609375 + ], + [ + "▁kbps", + -14.891539573669434 + ], + [ + "▁honeysuckle", + -14.891561508178711 + ], + [ + "▁Fishery", + -14.891584396362305 + ], + [ + "▁Κ", + -14.891603469848633 + ], + [ + "▁ó", + -14.89163589477539 + ], + [ + "▁OASIS", + -14.891636848449707 + ], + [ + "▁LINKS", + -14.891789436340332 + ], + [ + "▁Jojoba", + -14.89179801940918 + ], + [ + "▁Nusra", + -14.891844749450684 + ], + [ + "opian", + -14.891851425170898 + ], + [ + "▁Litre", + -14.891897201538086 + ], + [ + "biotics", + -14.891904830932617 + ], + [ + "▁AMOUNT", + -14.891922950744629 + ], + [ + "▁Mih", + -14.891936302185059 + ], + [ + "Frog", + -14.891945838928223 + ], + [ + "▁spammy", + -14.891961097717285 + ], + [ + "Render", + -14.891993522644043 + ], + [ + "▁golem", + -14.892023086547852 + ], + [ + "▁Honeycomb", + -14.89207649230957 + ], + [ + "alar", + -14.892080307006836 + ], + [ + "▁prayerful", + -14.892119407653809 + ], + [ + "▁Kenne", + -14.892127990722656 + ], + [ + "▁Roan", + -14.892149925231934 + ], + [ + "▁counterclockwise", + -14.892155647277832 + ], + [ + "▁NOVEMBER", + -14.892220497131348 + ], + [ + "▁deadbolt", + -14.892223358154297 + ], + [ + "▁vitreous", + -14.892244338989258 + ], + [ + "▁Gaff", + -14.892253875732422 + ], + [ + "Parker", + -14.8922758102417 + ], + [ + "▁parry", + -14.892293930053711 + ], + [ + "▁DMR", + -14.892327308654785 + ], + [ + "▁Kaku", + -14.892337799072266 + ], + [ + "▁personalizing", + -14.892422676086426 + ], + [ + "basis", + -14.892435073852539 + ], + [ + "▁outpacing", + -14.892437934875488 + ], + [ + "prompt", + -14.892470359802246 + ], + [ + "▁pathologic", + -14.8925199508667 + ], + [ + "▁NMS", + -14.892558097839355 + ], + [ + "kite", + -14.892571449279785 + ], + [ + "▁seahorse", + -14.892574310302734 + ], + [ + "▁Ionian", + -14.892580032348633 + ], + [ + "▁ROOT", + -14.892594337463379 + ], + [ + "▁clearinghouse", + -14.892594337463379 + ], + [ + "▁modernise", + -14.892599105834961 + ], + [ + "risa", + -14.89260482788086 + ], + [ + "▁BPI", + -14.89262866973877 + ], + [ + "▁dislodged", + -14.892647743225098 + ], + [ + "▁frustratingly", + -14.892647743225098 + ], + [ + "▁Wies", + -14.892678260803223 + ], + [ + "ур", + -14.892681121826172 + ], + [ + "▁amicably", + -14.892688751220703 + ], + [ + "▁interject", + -14.89268970489502 + ], + [ + "ancient", + -14.892701148986816 + ], + [ + "committal", + -14.892719268798828 + ], + [ + "mbal", + -14.892741203308105 + ], + [ + "▁Brest", + -14.8927640914917 + ], + [ + "▁upvote", + -14.892765045166016 + ], + [ + "▁Equator", + -14.892853736877441 + ], + [ + "▁Superstars", + -14.892861366271973 + ], + [ + "▁Roundabout", + -14.892871856689453 + ], + [ + "▁vive", + -14.892874717712402 + ], + [ + "▁tampa", + -14.892876625061035 + ], + [ + "▁cess", + -14.892885208129883 + ], + [ + "▁militarism", + -14.892943382263184 + ], + [ + "▁publicised", + -14.892967224121094 + ], + [ + "▁Troubled", + -14.893013000488281 + ], + [ + "ysa", + -14.893025398254395 + ], + [ + "cabinet", + -14.89303207397461 + ], + [ + "層", + -14.89303970336914 + ], + [ + "▁Flipboard", + -14.893082618713379 + ], + [ + "▁HomePod", + -14.893096923828125 + ], + [ + "▁Salerno", + -14.893117904663086 + ], + [ + "▁CONSIDER", + -14.893120765686035 + ], + [ + "▁toothless", + -14.893159866333008 + ], + [ + "Semite", + -14.893168449401855 + ], + [ + "matik", + -14.893190383911133 + ], + [ + "▁Bitdefender", + -14.893226623535156 + ], + [ + "▁Vina", + -14.893253326416016 + ], + [ + "▁Konica", + -14.893274307250977 + ], + [ + "▁Stitched", + -14.893325805664062 + ], + [ + "▁Shariah", + -14.893330574035645 + ], + [ + "▁seaplane", + -14.893350601196289 + ], + [ + "▁Aylesbury", + -14.89338207244873 + ], + [ + "▁FID", + -14.893394470214844 + ], + [ + "▁guttering", + -14.893442153930664 + ], + [ + "▁safeties", + -14.893453598022461 + ], + [ + "TNF", + -14.893487930297852 + ], + [ + "▁murmurs", + -14.89354419708252 + ], + [ + "▁Jealous", + -14.893599510192871 + ], + [ + "▁princely", + -14.893608093261719 + ], + [ + "▁commonest", + -14.893625259399414 + ], + [ + "liev", + -14.893672943115234 + ], + [ + "▁grabber", + -14.8936767578125 + ], + [ + "▁repatriated", + -14.89369010925293 + ], + [ + "系", + -14.893693923950195 + ], + [ + "Mesh", + -14.893694877624512 + ], + [ + "▁Semitic", + -14.89372444152832 + ], + [ + "▁wreaked", + -14.893733024597168 + ], + [ + "medal", + -14.8937349319458 + ], + [ + "chung", + -14.89375114440918 + ], + [ + "▁Ecclesiastical", + -14.893766403198242 + ], + [ + "▁Borrowers", + -14.893792152404785 + ], + [ + "▁Rhinestone", + -14.893843650817871 + ], + [ + "▁Luminous", + -14.893851280212402 + ], + [ + "Bab", + -14.893857955932617 + ], + [ + "▁BRAIN", + -14.893866539001465 + ], + [ + "▁Geographically", + -14.893887519836426 + ], + [ + "yab", + -14.893915176391602 + ], + [ + "8477", + -14.893940925598145 + ], + [ + "▁lynx", + -14.893957138061523 + ], + [ + "▁ප", + -14.893957138061523 + ], + [ + "indulgence", + -14.894022941589355 + ], + [ + "▁Feinberg", + -14.894042015075684 + ], + [ + "wooden", + -14.894055366516113 + ], + [ + "▁Ene", + -14.894082069396973 + ], + [ + "▁Rapporteur", + -14.894083976745605 + ], + [ + "▁memorialize", + -14.894084930419922 + ], + [ + "▁Rayne", + -14.894102096557617 + ], + [ + "Hai", + -14.894113540649414 + ], + [ + "▁859", + -14.894116401672363 + ], + [ + "▁waft", + -14.894172668457031 + ], + [ + "ম", + -14.894185066223145 + ], + [ + "pita", + -14.89420223236084 + ], + [ + "▁superman", + -14.894220352172852 + ], + [ + "Height", + -14.894274711608887 + ], + [ + "▁관", + -14.894281387329102 + ], + [ + "▁forgetfulness", + -14.89434814453125 + ], + [ + "▁Gulfport", + -14.894394874572754 + ], + [ + "partition", + -14.894433975219727 + ], + [ + "▁frostbite", + -14.894437789916992 + ], + [ + "Doing", + -14.89444637298584 + ], + [ + "▁FOUNDATION", + -14.894462585449219 + ], + [ + "▁doldrums", + -14.894485473632812 + ], + [ + "▁Tumbler", + -14.89450740814209 + ], + [ + "▁Xenon", + -14.894590377807617 + ], + [ + "▁instil", + -14.894614219665527 + ], + [ + "▁celibacy", + -14.894617080688477 + ], + [ + "や", + -14.894637107849121 + ], + [ + "▁RIB", + -14.89465045928955 + ], + [ + "analog", + -14.894697189331055 + ], + [ + "ocaine", + -14.894698143005371 + ], + [ + "▁Blasey", + -14.894710540771484 + ], + [ + "Vee", + -14.89471435546875 + ], + [ + "Insurance", + -14.894721031188965 + ], + [ + "Directory", + -14.894735336303711 + ], + [ + "GIE", + -14.894762992858887 + ], + [ + "▁hoopla", + -14.894801139831543 + ], + [ + "▁Pacha", + -14.8948335647583 + ], + [ + "illier", + -14.894838333129883 + ], + [ + "▁headdress", + -14.894852638244629 + ], + [ + "▁Geert", + -14.894898414611816 + ], + [ + "▁panini", + -14.894923210144043 + ], + [ + "chant", + -14.894977569580078 + ], + [ + "▁Operative", + -14.895000457763672 + ], + [ + "kulam", + -14.895015716552734 + ], + [ + "▁geographer", + -14.895081520080566 + ], + [ + "aqi", + -14.895089149475098 + ], + [ + "▁euch", + -14.895092010498047 + ], + [ + "▁Clarinet", + -14.895094871520996 + ], + [ + "▁SECURE", + -14.895094871520996 + ], + [ + "▁Calumet", + -14.895103454589844 + ], + [ + "▁paralyze", + -14.895105361938477 + ], + [ + "▁CONTAINED", + -14.895125389099121 + ], + [ + "▁sak", + -14.895150184631348 + ], + [ + "色", + -14.895155906677246 + ], + [ + "▁anthocyanin", + -14.895182609558105 + ], + [ + "variate", + -14.895186424255371 + ], + [ + "▁Kahan", + -14.895238876342773 + ], + [ + "▁tantalising", + -14.895289421081543 + ], + [ + "Sandra", + -14.89529800415039 + ], + [ + "purchased", + -14.895318031311035 + ], + [ + "▁Rizal", + -14.89532470703125 + ], + [ + "▁Gauthier", + -14.8953857421875 + ], + [ + "▁telemarketer", + -14.89540958404541 + ], + [ + "▁transacting", + -14.895416259765625 + ], + [ + "▁reupholster", + -14.895526885986328 + ], + [ + "HSC", + -14.895541191101074 + ], + [ + "reveal", + -14.895564079284668 + ], + [ + "▁SITES", + -14.895580291748047 + ], + [ + "▁Holocene", + -14.89560604095459 + ], + [ + "▁unforgivable", + -14.895626068115234 + ], + [ + "▁Hora", + -14.895658493041992 + ], + [ + "drunk", + -14.895669937133789 + ], + [ + "▁sideshow", + -14.895706176757812 + ], + [ + "spyware", + -14.895734786987305 + ], + [ + "▁magnetically", + -14.895747184753418 + ], + [ + "▁Scholarly", + -14.895790100097656 + ], + [ + "▁Tibb", + -14.895803451538086 + ], + [ + "▁Díaz", + -14.895806312561035 + ], + [ + "▁Leander", + -14.895819664001465 + ], + [ + "▁Suspend", + -14.895824432373047 + ], + [ + "omega", + -14.89587116241455 + ], + [ + "▁643", + -14.89587688446045 + ], + [ + "▁Glimpse", + -14.895878791809082 + ], + [ + "sealing", + -14.895910263061523 + ], + [ + "▁lic", + -14.895936012268066 + ], + [ + "▁predilection", + -14.895950317382812 + ], + [ + "▁surly", + -14.895950317382812 + ], + [ + "▁Vassar", + -14.895971298217773 + ], + [ + "ações", + -14.895980834960938 + ], + [ + "EPC", + -14.896052360534668 + ], + [ + "▁Mote", + -14.89608097076416 + ], + [ + "വ", + -14.896130561828613 + ], + [ + "crow", + -14.896220207214355 + ], + [ + "▁ULTIMATE", + -14.89622688293457 + ], + [ + "▁Motto", + -14.896271705627441 + ], + [ + "▁redoing", + -14.896303176879883 + ], + [ + "quilt", + -14.89632511138916 + ], + [ + "▁£26", + -14.896352767944336 + ], + [ + "▁Tombstone", + -14.89635944366455 + ], + [ + "▁Baht", + -14.896422386169434 + ], + [ + "▁Gub", + -14.896424293518066 + ], + [ + "▁taming", + -14.896437644958496 + ], + [ + "▁Kogan", + -14.896482467651367 + ], + [ + "▁Angelic", + -14.89651870727539 + ], + [ + "ний", + -14.89653491973877 + ], + [ + "▁Motive", + -14.89659595489502 + ], + [ + "▁î", + -14.89659595489502 + ], + [ + "▁acceptor", + -14.896597862243652 + ], + [ + "trapping", + -14.896600723266602 + ], + [ + "▁Miso", + -14.8966646194458 + ], + [ + "Illinois", + -14.89666748046875 + ], + [ + "▁Villeneuve", + -14.896696090698242 + ], + [ + "lgi", + -14.896720886230469 + ], + [ + "▁wheelie", + -14.896727561950684 + ], + [ + "▁Circumstances", + -14.896742820739746 + ], + [ + "▁indomitable", + -14.896743774414062 + ], + [ + "▁Chandeliers", + -14.896758079528809 + ], + [ + "hawa", + -14.896777153015137 + ], + [ + "▁Bernabeu", + -14.896780014038086 + ], + [ + "▁statisticians", + -14.896796226501465 + ], + [ + "▁unsatisfying", + -14.896805763244629 + ], + [ + "▁Econom", + -14.896821022033691 + ], + [ + "▁sappy", + -14.896879196166992 + ], + [ + "▁Simona", + -14.896892547607422 + ], + [ + "▁Thoughtful", + -14.8969087600708 + ], + [ + "Harper", + -14.896921157836914 + ], + [ + "▁Plunkett", + -14.89699649810791 + ], + [ + "STRA", + -14.897004127502441 + ], + [ + "▁dissipates", + -14.897031784057617 + ], + [ + "yster", + -14.8970365524292 + ], + [ + "▁currant", + -14.8970365524292 + ], + [ + "toothed", + -14.897054672241211 + ], + [ + "▁COIN", + -14.897065162658691 + ], + [ + "▁Guidebook", + -14.897103309631348 + ], + [ + "なる", + -14.89710807800293 + ], + [ + "ZM", + -14.897161483764648 + ], + [ + "▁polyclonal", + -14.897165298461914 + ], + [ + "▁bravest", + -14.897172927856445 + ], + [ + "▁stranglehold", + -14.897177696228027 + ], + [ + "ufa", + -14.897200584411621 + ], + [ + "▁Bevel", + -14.89725399017334 + ], + [ + "gestion", + -14.897279739379883 + ], + [ + "▁svn", + -14.897289276123047 + ], + [ + "▁SPEAK", + -14.89731502532959 + ], + [ + "▁merriment", + -14.897321701049805 + ], + [ + "ARP", + -14.897329330444336 + ], + [ + "▁699", + -14.89742374420166 + ], + [ + "▁quip", + -14.897448539733887 + ], + [ + "▁Vichy", + -14.897466659545898 + ], + [ + "▁Wigs", + -14.897473335266113 + ], + [ + "▁782", + -14.89747428894043 + ], + [ + "adrenal", + -14.89754867553711 + ], + [ + "▁tach", + -14.897658348083496 + ], + [ + "Liberal", + -14.897675514221191 + ], + [ + "ões", + -14.897683143615723 + ], + [ + "deprived", + -14.897689819335938 + ], + [ + "Tyler", + -14.897699356079102 + ], + [ + "bitter", + -14.897699356079102 + ], + [ + "▁kebabs", + -14.897738456726074 + ], + [ + "▁mannequins", + -14.89773941040039 + ], + [ + "▁buttonhole", + -14.897740364074707 + ], + [ + "▁antithetical", + -14.897746086120605 + ], + [ + "▁OPERATION", + -14.897754669189453 + ], + [ + "▁baa", + -14.897793769836426 + ], + [ + "pow", + -14.897814750671387 + ], + [ + "▁fending", + -14.897847175598145 + ], + [ + "▁dehydrator", + -14.89785099029541 + ], + [ + "▁signifier", + -14.897856712341309 + ], + [ + "▁598", + -14.897862434387207 + ], + [ + "▁Epoch", + -14.897950172424316 + ], + [ + "▁Danni", + -14.897953987121582 + ], + [ + "Anyway", + -14.897954940795898 + ], + [ + "▁reprisal", + -14.897960662841797 + ], + [ + "▁JPL", + -14.897977828979492 + ], + [ + "▁Ecker", + -14.897981643676758 + ], + [ + "▁subsidence", + -14.8980073928833 + ], + [ + "▁flippers", + -14.89804458618164 + ], + [ + "hundreds", + -14.898055076599121 + ], + [ + "▁Annoying", + -14.8980712890625 + ], + [ + "▁Gretzky", + -14.898094177246094 + ], + [ + "▁Bestseller", + -14.898126602172852 + ], + [ + "▁√", + -14.898130416870117 + ], + [ + "▁Silesia", + -14.89815902709961 + ], + [ + "▁Treatise", + -14.898165702819824 + ], + [ + "▁Shootout", + -14.89820671081543 + ], + [ + "▁fibroblast", + -14.898226737976074 + ], + [ + "▁instigator", + -14.89822769165039 + ], + [ + "▁Edel", + -14.898241996765137 + ], + [ + "ствен", + -14.898250579833984 + ], + [ + "▁Kher", + -14.8982515335083 + ], + [ + "▁whitetail", + -14.898252487182617 + ], + [ + "surge", + -14.898253440856934 + ], + [ + "▁fruiting", + -14.898265838623047 + ], + [ + "▁jettison", + -14.89827823638916 + ], + [ + "♣", + -14.898284912109375 + ], + [ + "idence", + -14.898332595825195 + ], + [ + "ִ", + -14.898336410522461 + ], + [ + "▁Zah", + -14.89838695526123 + ], + [ + "▁raindrops", + -14.898392677307129 + ], + [ + "trafficking", + -14.898407936096191 + ], + [ + "Miner", + -14.898456573486328 + ], + [ + "▁hari", + -14.898507118225098 + ], + [ + "▁Legitimate", + -14.898514747619629 + ], + [ + "▁hydrangea", + -14.898530960083008 + ], + [ + "Orlando", + -14.89854621887207 + ], + [ + "▁Garoppolo", + -14.898550033569336 + ], + [ + "▁Canva", + -14.898585319519043 + ], + [ + "▁exclaims", + -14.898637771606445 + ], + [ + "▁Restroom", + -14.898651123046875 + ], + [ + "▁Marci", + -14.898681640625 + ], + [ + "▁JUDGE", + -14.898740768432617 + ], + [ + "▁لل", + -14.898740768432617 + ], + [ + "wicking", + -14.898768424987793 + ], + [ + "▁Calculations", + -14.898772239685059 + ], + [ + "▁Pek", + -14.89880657196045 + ], + [ + "▁unpunished", + -14.898815155029297 + ], + [ + "▁Muñoz", + -14.898826599121094 + ], + [ + "▁TITAN", + -14.898850440979004 + ], + [ + "ribe", + -14.898880958557129 + ], + [ + "Nasty", + -14.898930549621582 + ], + [ + "현", + -14.898935317993164 + ], + [ + "▁FIFO", + -14.8989839553833 + ], + [ + "▁pref", + -14.89906120300293 + ], + [ + "composed", + -14.899069786071777 + ], + [ + "▁Manually", + -14.89908218383789 + ], + [ + "▁Ballon", + -14.89908504486084 + ], + [ + "▁radiography", + -14.899101257324219 + ], + [ + "▁Tagore", + -14.899113655090332 + ], + [ + "▁marlin", + -14.899120330810547 + ], + [ + "adjust", + -14.899124145507812 + ], + [ + "▁Zverev", + -14.899212837219238 + ], + [ + "ơ", + -14.899249076843262 + ], + [ + "▁Llewellyn", + -14.899272918701172 + ], + [ + "▁Floridians", + -14.899306297302246 + ], + [ + "Easter", + -14.899312019348145 + ], + [ + "▁741", + -14.899375915527344 + ], + [ + "▁incantation", + -14.899380683898926 + ], + [ + "▁innards", + -14.899399757385254 + ], + [ + "▁Aeronautical", + -14.899430274963379 + ], + [ + "▁Renato", + -14.899462699890137 + ], + [ + "ahoe", + -14.899497985839844 + ], + [ + "▁Frasier", + -14.899510383605957 + ], + [ + "▁contre", + -14.899511337280273 + ], + [ + "▁senescence", + -14.899579048156738 + ], + [ + "CRAFT", + -14.899588584899902 + ], + [ + "Grad", + -14.899599075317383 + ], + [ + "射", + -14.89964485168457 + ], + [ + "▁MORNING", + -14.899648666381836 + ], + [ + "▁lind", + -14.899663925170898 + ], + [ + "▁THI", + -14.899687767028809 + ], + [ + "antu", + -14.899691581726074 + ], + [ + "00000000", + -14.899707794189453 + ], + [ + "▁Bakken", + -14.899707794189453 + ], + [ + "▁Selkirk", + -14.899725914001465 + ], + [ + "ventura", + -14.89975357055664 + ], + [ + "LOX", + -14.89975643157959 + ], + [ + "▁Littlefield", + -14.899792671203613 + ], + [ + "sniff", + -14.89981460571289 + ], + [ + "▁Evacuation", + -14.899815559387207 + ], + [ + "▁equivalency", + -14.89987564086914 + ], + [ + "▁Oceanography", + -14.899877548217773 + ], + [ + "▁technicality", + -14.899879455566406 + ], + [ + "olf", + -14.899888038635254 + ], + [ + "▁OIC", + -14.899924278259277 + ], + [ + "▁statist", + -14.899931907653809 + ], + [ + "▁Lomond", + -14.899949073791504 + ], + [ + "installing", + -14.899984359741211 + ], + [ + "▁Klem", + -14.900012016296387 + ], + [ + "▁inexhaustible", + -14.900032997131348 + ], + [ + "MPH", + -14.90005874633789 + ], + [ + "Shu", + -14.90008544921875 + ], + [ + "▁CONCACAF", + -14.900116920471191 + ], + [ + "▁heretic", + -14.900185585021973 + ], + [ + "▁Blac", + -14.900192260742188 + ], + [ + "fame", + -14.90020751953125 + ], + [ + "cón", + -14.900238990783691 + ], + [ + "▁Farber", + -14.900280952453613 + ], + [ + "▁aplica", + -14.90028190612793 + ], + [ + "▁Ballmer", + -14.900297164916992 + ], + [ + "▁motorcade", + -14.900330543518066 + ], + [ + "▁OIG", + -14.900337219238281 + ], + [ + "COO", + -14.900349617004395 + ], + [ + "▁adjustability", + -14.900352478027344 + ], + [ + "▁Marcin", + -14.900386810302734 + ], + [ + "▁Glyco", + -14.900436401367188 + ], + [ + "ASM", + -14.900487899780273 + ], + [ + "ordained", + -14.900522232055664 + ], + [ + "▁KICK", + -14.90052318572998 + ], + [ + "▁Defects", + -14.900524139404297 + ], + [ + "▁jeff", + -14.900524139404297 + ], + [ + "▁Palsy", + -14.900534629821777 + ], + [ + "▁Copying", + -14.900547981262207 + ], + [ + "▁villager", + -14.90058422088623 + ], + [ + "Nan", + -14.900585174560547 + ], + [ + "酸", + -14.900585174560547 + ], + [ + "▁HBCU", + -14.900611877441406 + ], + [ + "▁Zeitung", + -14.900691032409668 + ], + [ + "▁Bending", + -14.90074634552002 + ], + [ + "▁tailwind", + -14.90078067779541 + ], + [ + "iella", + -14.900813102722168 + ], + [ + "▁Doritos", + -14.900838851928711 + ], + [ + "▁gumbo", + -14.900842666625977 + ], + [ + "▁explica", + -14.900843620300293 + ], + [ + "▁Hollie", + -14.900856971740723 + ], + [ + "pok", + -14.900869369506836 + ], + [ + "▁rescheduling", + -14.900885581970215 + ], + [ + "▁Upstream", + -14.900897979736328 + ], + [ + "▁Natsu", + -14.900907516479492 + ], + [ + "▁Barrick", + -14.90093994140625 + ], + [ + "Doping", + -14.900951385498047 + ], + [ + "▁flamingos", + -14.900970458984375 + ], + [ + "▁Entwicklung", + -14.901010513305664 + ], + [ + "▁neurosurgery", + -14.901023864746094 + ], + [ + "▁presupposes", + -14.901034355163574 + ], + [ + "router", + -14.901046752929688 + ], + [ + "▁분", + -14.901053428649902 + ], + [ + "▁WARRANT", + -14.901069641113281 + ], + [ + "ardini", + -14.901127815246582 + ], + [ + "های", + -14.90114688873291 + ], + [ + "Pirate", + -14.90116024017334 + ], + [ + "premier", + -14.901179313659668 + ], + [ + "▁dilate", + -14.901193618774414 + ], + [ + "▁उ", + -14.901204109191895 + ], + [ + "▁Erectile", + -14.901209831237793 + ], + [ + "▁hamlets", + -14.901209831237793 + ], + [ + "▁vacuumed", + -14.901214599609375 + ], + [ + "rify", + -14.901216506958008 + ], + [ + "plica", + -14.901225090026855 + ], + [ + "▁UTA", + -14.901226997375488 + ], + [ + "tsov", + -14.901230812072754 + ], + [ + "▁Drucker", + -14.901260375976562 + ], + [ + "▁notching", + -14.90133285522461 + ], + [ + "▁downspouts", + -14.901350975036621 + ], + [ + "▁rehabilitating", + -14.901385307312012 + ], + [ + "▁Belton", + -14.90145492553711 + ], + [ + "suspect", + -14.901477813720703 + ], + [ + "▁flipside", + -14.901496887207031 + ], + [ + "▁Espinosa", + -14.901517868041992 + ], + [ + "kinson", + -14.901538848876953 + ], + [ + "pata", + -14.901542663574219 + ], + [ + "▁Etna", + -14.901561737060547 + ], + [ + "▁GPM", + -14.901570320129395 + ], + [ + "▁Lode", + -14.901570320129395 + ], + [ + "▁BOW", + -14.901580810546875 + ], + [ + "▁befriends", + -14.901596069335938 + ], + [ + "▁Skyler", + -14.901602745056152 + ], + [ + "▁unverified", + -14.901607513427734 + ], + [ + "▁revue", + -14.90162181854248 + ], + [ + "▁Hebert", + -14.90168571472168 + ], + [ + "▁Sapa", + -14.901690483093262 + ], + [ + "▁bg", + -14.90169620513916 + ], + [ + "▁Sarnia", + -14.901711463928223 + ], + [ + "тр", + -14.901718139648438 + ], + [ + "▁cerebrospinal", + -14.901723861694336 + ], + [ + "▁subfamily", + -14.901786804199219 + ], + [ + "şi", + -14.901843070983887 + ], + [ + "▁Harriers", + -14.901843070983887 + ], + [ + "Excel", + -14.901854515075684 + ], + [ + "▁whined", + -14.901876449584961 + ], + [ + "▁brie", + -14.901885032653809 + ], + [ + "▁AmeriCorps", + -14.901894569396973 + ], + [ + "ortho", + -14.901896476745605 + ], + [ + "mild", + -14.901902198791504 + ], + [ + "brit", + -14.901904106140137 + ], + [ + "▁motorised", + -14.901907920837402 + ], + [ + "▁reintegration", + -14.901939392089844 + ], + [ + "atica", + -14.901966094970703 + ], + [ + "保", + -14.90197467803955 + ], + [ + "▁wickedly", + -14.901981353759766 + ], + [ + "compassion", + -14.901993751525879 + ], + [ + "▁cuffed", + -14.902023315429688 + ], + [ + "▁Ronny", + -14.902029037475586 + ], + [ + "▁paratrooper", + -14.902034759521484 + ], + [ + "▁slingshot", + -14.902036666870117 + ], + [ + "▁keyring", + -14.902047157287598 + ], + [ + "▁topcoat", + -14.90205192565918 + ], + [ + "▁groggy", + -14.902068138122559 + ], + [ + "▁Starcraft", + -14.902070999145508 + ], + [ + "▁suds", + -14.90209674835205 + ], + [ + "▁Haney", + -14.902142524719238 + ], + [ + "▁Napster", + -14.902144432067871 + ], + [ + "▁Bremer", + -14.90217113494873 + ], + [ + "▁Unai", + -14.902188301086426 + ], + [ + "▁Controversial", + -14.902207374572754 + ], + [ + "▁Ω", + -14.902219772338867 + ], + [ + "Paw", + -14.902228355407715 + ], + [ + "▁osteopathic", + -14.902239799499512 + ], + [ + "▁Quorum", + -14.902294158935547 + ], + [ + "ют", + -14.90233039855957 + ], + [ + "vri", + -14.902338027954102 + ], + [ + "▁673", + -14.902363777160645 + ], + [ + "▁Grunt", + -14.902414321899414 + ], + [ + "▁Cyst", + -14.902420043945312 + ], + [ + "▁lyricism", + -14.902437210083008 + ], + [ + "▁Acqui", + -14.902454376220703 + ], + [ + "▁TET", + -14.902495384216309 + ], + [ + "▁AIPAC", + -14.902507781982422 + ], + [ + "Verify", + -14.90251636505127 + ], + [ + "ROE", + -14.902538299560547 + ], + [ + "loi", + -14.902545928955078 + ], + [ + "▁ACCURACY", + -14.902545928955078 + ], + [ + "▁Recruiters", + -14.902548789978027 + ], + [ + "▁Moorhead", + -14.902610778808594 + ], + [ + "▁Cashman", + -14.902637481689453 + ], + [ + "▁notional", + -14.902642250061035 + ], + [ + "▁Jiangxi", + -14.902660369873047 + ], + [ + "▁Technicolor", + -14.902703285217285 + ], + [ + "▁CRB", + -14.902731895446777 + ], + [ + "▁Anastasi", + -14.902735710144043 + ], + [ + "▁Argento", + -14.902780532836914 + ], + [ + "▁NCL", + -14.902804374694824 + ], + [ + "▁vagrant", + -14.902823448181152 + ], + [ + "▁Shra", + -14.902832984924316 + ], + [ + "▁populating", + -14.902843475341797 + ], + [ + "sequent", + -14.90284538269043 + ], + [ + "▁worden", + -14.902861595153809 + ], + [ + "▁MediaTek", + -14.90286922454834 + ], + [ + "▁Olney", + -14.902885437011719 + ], + [ + "▁meilleur", + -14.902915000915527 + ], + [ + "angka", + -14.902921676635742 + ], + [ + "▁auburn", + -14.902935981750488 + ], + [ + "▁Petrie", + -14.902944564819336 + ], + [ + "▁flapper", + -14.902946472167969 + ], + [ + "▁explainer", + -14.903003692626953 + ], + [ + "▁sinew", + -14.903003692626953 + ], + [ + "▁Functionality", + -14.9030122756958 + ], + [ + "▁Secur", + -14.903022766113281 + ], + [ + "▁Imperium", + -14.903036117553711 + ], + [ + "ண", + -14.90306568145752 + ], + [ + "▁Blume", + -14.903094291687012 + ], + [ + "▁Papaya", + -14.903094291687012 + ], + [ + "▁Hendry", + -14.90311336517334 + ], + [ + "▁Unlikely", + -14.9031400680542 + ], + [ + "▁Implemented", + -14.903189659118652 + ], + [ + "▁Thra", + -14.903216361999512 + ], + [ + "▁telefon", + -14.903230667114258 + ], + [ + "▁lymphoid", + -14.903264999389648 + ], + [ + "Bart", + -14.903265953063965 + ], + [ + "ulic", + -14.90327262878418 + ], + [ + "pseudo", + -14.90329647064209 + ], + [ + "grill", + -14.903305053710938 + ], + [ + "BLACK", + -14.903316497802734 + ], + [ + "▁TIC", + -14.90332317352295 + ], + [ + "▁Vittorio", + -14.903332710266113 + ], + [ + "▁Matchmaking", + -14.903338432312012 + ], + [ + "▁Amaze", + -14.903341293334961 + ], + [ + "▁Varadkar", + -14.903368949890137 + ], + [ + "Thailand", + -14.90337085723877 + ], + [ + "▁Midwifery", + -14.903376579284668 + ], + [ + "recession", + -14.903389930725098 + ], + [ + "▁SEPTEMBER", + -14.90340518951416 + ], + [ + "되", + -14.903410911560059 + ], + [ + "▁Allergan", + -14.9034423828125 + ], + [ + "▁comparability", + -14.903495788574219 + ], + [ + "princess", + -14.90351390838623 + ], + [ + "rummer", + -14.90351390838623 + ], + [ + "▁Banshee", + -14.90355396270752 + ], + [ + "1085", + -14.90356731414795 + ], + [ + "▁convocation", + -14.903580665588379 + ], + [ + "▁DLA", + -14.903590202331543 + ], + [ + "▁symbolise", + -14.903593063354492 + ], + [ + "▁Kalanick", + -14.903618812561035 + ], + [ + "▁transiting", + -14.903620719909668 + ], + [ + "▁bui", + -14.9036226272583 + ], + [ + "rÃ", + -14.903644561767578 + ], + [ + "▁Smells", + -14.903648376464844 + ], + [ + "▁comprehended", + -14.903658866882324 + ], + [ + "RENA", + -14.90366268157959 + ], + [ + "▁despairing", + -14.90369987487793 + ], + [ + "▁Sativa", + -14.903708457946777 + ], + [ + "▁fanaticism", + -14.90373420715332 + ], + [ + "▁Harvester", + -14.903761863708496 + ], + [ + "fate", + -14.903764724731445 + ], + [ + "▁formalize", + -14.903776168823242 + ], + [ + "學", + -14.903790473937988 + ], + [ + "▁Jost", + -14.903816223144531 + ], + [ + "LATIN", + -14.903942108154297 + ], + [ + "▁Machiavelli", + -14.90395736694336 + ], + [ + "▁Bullion", + -14.90399169921875 + ], + [ + "▁Vishwa", + -14.904050827026367 + ], + [ + "circulation", + -14.904081344604492 + ], + [ + "▁Emmerson", + -14.904106140136719 + ], + [ + "▁miler", + -14.904135704040527 + ], + [ + "▁shellac", + -14.904141426086426 + ], + [ + "▁Bogo", + -14.90422248840332 + ], + [ + "▁LAG", + -14.904272079467773 + ], + [ + "▁ICAO", + -14.904277801513672 + ], + [ + "▁dna", + -14.904292106628418 + ], + [ + "▁plucky", + -14.904364585876465 + ], + [ + "▁paragliding", + -14.90454387664795 + ], + [ + "▁rese", + -14.904555320739746 + ], + [ + "▁ISN", + -14.904565811157227 + ], + [ + "▁WSR", + -14.904583930969238 + ], + [ + "▁Anni", + -14.904592514038086 + ], + [ + "▁Cantrell", + -14.904610633850098 + ], + [ + "▁sclero", + -14.904635429382324 + ], + [ + "変", + -14.904648780822754 + ], + [ + "▁FUR", + -14.904656410217285 + ], + [ + "▁severing", + -14.904693603515625 + ], + [ + "▁fairest", + -14.904711723327637 + ], + [ + "▁declassified", + -14.904742240905762 + ], + [ + "hida", + -14.904746055603027 + ], + [ + "▁CHL", + -14.904789924621582 + ], + [ + "▁TFA", + -14.904808044433594 + ], + [ + "▁GBS", + -14.904841423034668 + ], + [ + "▁Я", + -14.904901504516602 + ], + [ + "Gentle", + -14.904938697814941 + ], + [ + "▁previewing", + -14.904959678649902 + ], + [ + "▁accredit", + -14.904997825622559 + ], + [ + "▁guile", + -14.905001640319824 + ], + [ + "INDER", + -14.905086517333984 + ], + [ + "gnac", + -14.905128479003906 + ], + [ + "largely", + -14.9051513671875 + ], + [ + "▁beavers", + -14.905187606811523 + ], + [ + "▁mv", + -14.905187606811523 + ], + [ + "ninger", + -14.905200004577637 + ], + [ + "▁sabre", + -14.905211448669434 + ], + [ + "ficial", + -14.905223846435547 + ], + [ + "▁sympathizers", + -14.905227661132812 + ], + [ + "▁Hired", + -14.905231475830078 + ], + [ + "▁Tanta", + -14.905258178710938 + ], + [ + "▁dinette", + -14.905277252197266 + ], + [ + "▁cower", + -14.90528392791748 + ], + [ + "▁Pursuing", + -14.905320167541504 + ], + [ + "▁squeamish", + -14.905380249023438 + ], + [ + "▁Hobo", + -14.90538501739502 + ], + [ + "тра", + -14.905390739440918 + ], + [ + "▁iodide", + -14.90539264678955 + ], + [ + "triggered", + -14.905399322509766 + ], + [ + "▁sacral", + -14.905425071716309 + ], + [ + "▁dah", + -14.905445098876953 + ], + [ + "▁depreciate", + -14.905448913574219 + ], + [ + "▁Monza", + -14.9054594039917 + ], + [ + "▁DIAMOND", + -14.90549087524414 + ], + [ + "regime", + -14.905492782592773 + ], + [ + "▁Raina", + -14.90550708770752 + ], + [ + "Above", + -14.905508995056152 + ], + [ + "▁BFI", + -14.905531883239746 + ], + [ + "varying", + -14.90554141998291 + ], + [ + "▁Bortles", + -14.905555725097656 + ], + [ + "▁hepatocellular", + -14.905563354492188 + ], + [ + "cursive", + -14.905616760253906 + ], + [ + "▁fondest", + -14.905624389648438 + ], + [ + "fini", + -14.905645370483398 + ], + [ + "▁Andrej", + -14.905665397644043 + ], + [ + "▁airbase", + -14.905693054199219 + ], + [ + "ας", + -14.905731201171875 + ], + [ + "pril", + -14.905741691589355 + ], + [ + "▁Pulsar", + -14.905746459960938 + ], + [ + "izability", + -14.90575122833252 + ], + [ + "▁Ashoka", + -14.90575122833252 + ], + [ + "▁эк", + -14.905768394470215 + ], + [ + "junior", + -14.905786514282227 + ], + [ + "▁Shuk", + -14.905792236328125 + ], + [ + "▁subjugation", + -14.905805587768555 + ], + [ + "▁Colla", + -14.905806541442871 + ], + [ + "Principal", + -14.905826568603516 + ], + [ + "nace", + -14.90583324432373 + ], + [ + "▁Koji", + -14.905839920043945 + ], + [ + "▁VCA", + -14.905891418457031 + ], + [ + "▁SCAM", + -14.90590763092041 + ], + [ + "▁Bandits", + -14.905915260314941 + ], + [ + "aigh", + -14.905936241149902 + ], + [ + "▁Displacement", + -14.905940055847168 + ], + [ + "▁Ronde", + -14.90594482421875 + ], + [ + "▁SVM", + -14.905948638916016 + ], + [ + "▁usurped", + -14.90595531463623 + ], + [ + "▁dri", + -14.90597152709961 + ], + [ + "denial", + -14.906001091003418 + ], + [ + "▁coincident", + -14.906023025512695 + ], + [ + "▁glossed", + -14.90604019165039 + ], + [ + "Titan", + -14.906048774719238 + ], + [ + "▁HAY", + -14.906061172485352 + ], + [ + "Oz", + -14.906064987182617 + ], + [ + "▁timberland", + -14.906111717224121 + ], + [ + "▁RATE", + -14.906116485595703 + ], + [ + "CALL", + -14.906159400939941 + ], + [ + "clause", + -14.906161308288574 + ], + [ + "▁Isobel", + -14.906185150146484 + ], + [ + "▁Manifold", + -14.906195640563965 + ], + [ + "▁Cil", + -14.906221389770508 + ], + [ + "▁Brion", + -14.90623664855957 + ], + [ + "ylla", + -14.906244277954102 + ], + [ + "▁capitulation", + -14.906302452087402 + ], + [ + "▁Taper", + -14.906320571899414 + ], + [ + "▁RAB", + -14.906326293945312 + ], + [ + "▁AGP", + -14.906397819519043 + ], + [ + "▁Enriched", + -14.906410217285156 + ], + [ + "▁Baugh", + -14.906412124633789 + ], + [ + "▁688", + -14.906445503234863 + ], + [ + "▁debunking", + -14.906461715698242 + ], + [ + "▁841", + -14.906493186950684 + ], + [ + "▁Debby", + -14.906493186950684 + ], + [ + "▁Tailgate", + -14.906510353088379 + ], + [ + "▁Heywood", + -14.906540870666504 + ], + [ + "▁queasy", + -14.906557083129883 + ], + [ + "▁nibbling", + -14.9065580368042 + ], + [ + "▁transcribing", + -14.906559944152832 + ], + [ + "ordinates", + -14.906579971313477 + ], + [ + "dez", + -14.906586647033691 + ], + [ + "▁Pancras", + -14.906587600708008 + ], + [ + "nax", + -14.90658950805664 + ], + [ + "▁Inception", + -14.906600952148438 + ], + [ + "▁staid", + -14.90660285949707 + ], + [ + "icina", + -14.906604766845703 + ], + [ + "▁DRI", + -14.906641006469727 + ], + [ + "▁Zlatan", + -14.906641960144043 + ], + [ + "för", + -14.90668773651123 + ], + [ + "▁stereoscopic", + -14.906689643859863 + ], + [ + "▁Zeller", + -14.90669059753418 + ], + [ + "▁extinguishing", + -14.906722068786621 + ], + [ + "▁summarises", + -14.906740188598633 + ], + [ + "▁aldehyde", + -14.906749725341797 + ], + [ + "urch", + -14.906774520874023 + ], + [ + "▁Fragments", + -14.906781196594238 + ], + [ + "avour", + -14.90684700012207 + ], + [ + "па", + -14.906861305236816 + ], + [ + "Slip", + -14.906867980957031 + ], + [ + "otel", + -14.906876564025879 + ], + [ + "▁Seren", + -14.906928062438965 + ], + [ + "▁whitespace", + -14.90696907043457 + ], + [ + "▁Annika", + -14.90697193145752 + ], + [ + "▁Tiff", + -14.90699577331543 + ], + [ + "▁Darker", + -14.907000541687012 + ], + [ + "▁Fenix", + -14.90701961517334 + ], + [ + "▁thrusters", + -14.90705394744873 + ], + [ + "▁TORT", + -14.907062530517578 + ], + [ + "▁Esme", + -14.90711498260498 + ], + [ + "▁Basalt", + -14.907224655151367 + ], + [ + "▁Clojure", + -14.907238006591797 + ], + [ + "PATCH", + -14.907267570495605 + ], + [ + "cyst", + -14.907278060913086 + ], + [ + "▁Doro", + -14.907279014587402 + ], + [ + "▁refillable", + -14.907279968261719 + ], + [ + "ป", + -14.907309532165527 + ], + [ + "▁Unused", + -14.907328605651855 + ], + [ + "▁testable", + -14.907344818115234 + ], + [ + "▁Tabletop", + -14.907398223876953 + ], + [ + "authorization", + -14.907424926757812 + ], + [ + "▁Installers", + -14.907440185546875 + ], + [ + "常", + -14.907455444335938 + ], + [ + "▁Kristoff", + -14.907477378845215 + ], + [ + "▁technic", + -14.907506942749023 + ], + [ + "▁Yow", + -14.907512664794922 + ], + [ + "Huge", + -14.907588958740234 + ], + [ + "▁drake", + -14.907622337341309 + ], + [ + "▁derailleur", + -14.907629013061523 + ], + [ + "▁GONE", + -14.907649993896484 + ], + [ + "▁ROOF", + -14.907660484313965 + ], + [ + "ecchi", + -14.907698631286621 + ], + [ + "FACE", + -14.90775203704834 + ], + [ + "Pul", + -14.907772064208984 + ], + [ + "▁reprisals", + -14.907783508300781 + ], + [ + "BOL", + -14.907793998718262 + ], + [ + "▁Subsidiaries", + -14.907809257507324 + ], + [ + "▁Diageo", + -14.907815933227539 + ], + [ + "▁SMI", + -14.907929420471191 + ], + [ + "▁Silky", + -14.907953262329102 + ], + [ + "▁Sondheim", + -14.907955169677734 + ], + [ + "▁Vella", + -14.907976150512695 + ], + [ + "▁Liquidity", + -14.907981872558594 + ], + [ + "compute", + -14.90800666809082 + ], + [ + "▁578", + -14.908028602600098 + ], + [ + "都", + -14.90803337097168 + ], + [ + "▁suspenders", + -14.908066749572754 + ], + [ + "▁THB", + -14.90806770324707 + ], + [ + "CDF", + -14.90807056427002 + ], + [ + "▁Garb", + -14.908089637756348 + ], + [ + "▁Whitmore", + -14.908135414123535 + ], + [ + "▁WORDS", + -14.908178329467773 + ], + [ + "▁Elway", + -14.908194541931152 + ], + [ + "▁rhinoceros", + -14.908210754394531 + ], + [ + "▁cringed", + -14.908220291137695 + ], + [ + "▁Forschung", + -14.908248901367188 + ], + [ + "▁lovin", + -14.908248901367188 + ], + [ + "Dock", + -14.908286094665527 + ], + [ + "▁Quickbooks", + -14.90829086303711 + ], + [ + "▁chivalry", + -14.908308029174805 + ], + [ + "essner", + -14.908310890197754 + ], + [ + "▁MASSIVE", + -14.908378601074219 + ], + [ + "▁parading", + -14.908393859863281 + ], + [ + "Properties", + -14.908405303955078 + ], + [ + "▁Intercollegiate", + -14.90843391418457 + ], + [ + "▁Schur", + -14.908446311950684 + ], + [ + "▁FFT", + -14.908451080322266 + ], + [ + "▁Viceroy", + -14.908458709716797 + ], + [ + "▁esa", + -14.908477783203125 + ], + [ + "▁Penticton", + -14.908478736877441 + ], + [ + "▁Shukla", + -14.9085054397583 + ], + [ + "▁Earhart", + -14.90853500366211 + ], + [ + "▁transpose", + -14.90855884552002 + ], + [ + "wiz", + -14.908561706542969 + ], + [ + "▁Ogilvy", + -14.908563613891602 + ], + [ + "▁WOLF", + -14.908563613891602 + ], + [ + "▁sna", + -14.908594131469727 + ], + [ + "couldn", + -14.908621788024902 + ], + [ + "▁Fucked", + -14.908632278442383 + ], + [ + "▁Oldest", + -14.90864372253418 + ], + [ + "pulmonary", + -14.908656120300293 + ], + [ + "▁GAIN", + -14.90866470336914 + ], + [ + "PUB", + -14.908684730529785 + ], + [ + "▁FIRM", + -14.908716201782227 + ], + [ + "▁Shayne", + -14.90872573852539 + ], + [ + "umph", + -14.908727645874023 + ], + [ + "▁Volker", + -14.908756256103516 + ], + [ + "▁cosmetology", + -14.908759117126465 + ], + [ + "▁Sinaloa", + -14.908766746520996 + ], + [ + "▁chairing", + -14.908771514892578 + ], + [ + "aš", + -14.908807754516602 + ], + [ + "ֶ", + -14.908831596374512 + ], + [ + "▁LOUD", + -14.908836364746094 + ], + [ + "▁Blight", + -14.908848762512207 + ], + [ + "▁Liberalism", + -14.90885066986084 + ], + [ + "▁NATURE", + -14.908896446228027 + ], + [ + "cj", + -14.908903121948242 + ], + [ + "fugi", + -14.908934593200684 + ], + [ + "▁homme", + -14.908939361572266 + ], + [ + "▁monotherapy", + -14.908971786499023 + ], + [ + "▁tah", + -14.908985137939453 + ], + [ + "▁GUEST", + -14.908987045288086 + ], + [ + "▁accessorize", + -14.908997535705566 + ], + [ + "▁Nouvelle", + -14.909062385559082 + ], + [ + "▁foment", + -14.909063339233398 + ], + [ + "▁Appealing", + -14.909090995788574 + ], + [ + "▁Snickers", + -14.909096717834473 + ], + [ + "NIM", + -14.909128189086914 + ], + [ + "▁Rottweiler", + -14.909184455871582 + ], + [ + "POD", + -14.909191131591797 + ], + [ + "INER", + -14.909201622009277 + ], + [ + "archi", + -14.90922737121582 + ], + [ + "▁அ", + -14.909242630004883 + ], + [ + "LUX", + -14.909271240234375 + ], + [ + "▁Goodluck", + -14.909280776977539 + ], + [ + "▁Headmaster", + -14.909303665161133 + ], + [ + "OQ", + -14.909316062927246 + ], + [ + "ektor", + -14.909320831298828 + ], + [ + "terpene", + -14.909330368041992 + ], + [ + "▁projet", + -14.909345626831055 + ], + [ + "▁Invaders", + -14.90935230255127 + ], + [ + "▁jogged", + -14.909392356872559 + ], + [ + "▁Hynes", + -14.90941047668457 + ], + [ + "▁SOMEONE", + -14.909478187561035 + ], + [ + "▁Fahr", + -14.909496307373047 + ], + [ + "▁cerca", + -14.90951156616211 + ], + [ + "▁Quarantine", + -14.909514427185059 + ], + [ + "▁Fincher", + -14.909537315368652 + ], + [ + "▁Bikram", + -14.909584045410156 + ], + [ + "Ava", + -14.909646034240723 + ], + [ + "CUL", + -14.909647941589355 + ], + [ + "alou", + -14.90968132019043 + ], + [ + "▁Gladwell", + -14.909684181213379 + ], + [ + "spasm", + -14.90970516204834 + ], + [ + "▁Kailash", + -14.909734725952148 + ], + [ + "airport", + -14.909738540649414 + ], + [ + "▁Mover", + -14.909744262695312 + ], + [ + "▁underinsured", + -14.909758567810059 + ], + [ + "▁reignite", + -14.909819602966309 + ], + [ + "▁Roblox", + -14.909834861755371 + ], + [ + "iselle", + -14.90984058380127 + ], + [ + "▁Playback", + -14.909871101379395 + ], + [ + "labelled", + -14.909897804260254 + ], + [ + "▁despot", + -14.909899711608887 + ], + [ + "▁chapped", + -14.909904479980469 + ], + [ + "▁TIL", + -14.909913063049316 + ], + [ + "Further", + -14.909918785095215 + ], + [ + "econom", + -14.909926414489746 + ], + [ + "▁Hafiz", + -14.909957885742188 + ], + [ + "▁hedged", + -14.909961700439453 + ], + [ + "Minn", + -14.90996265411377 + ], + [ + "▁Rabe", + -14.90999984741211 + ], + [ + "▁heterozygous", + -14.910000801086426 + ], + [ + "▁MONT", + -14.910008430480957 + ], + [ + "▁urology", + -14.91001033782959 + ], + [ + "▁Muncie", + -14.910024642944336 + ], + [ + "▁suppleness", + -14.910024642944336 + ], + [ + "▁Receipts", + -14.910065650939941 + ], + [ + "▁Afford", + -14.910140037536621 + ], + [ + "▁swerved", + -14.910165786743164 + ], + [ + "元", + -14.910170555114746 + ], + [ + "Mining", + -14.910172462463379 + ], + [ + "▁GMB", + -14.910174369812012 + ], + [ + "akul", + -14.910181999206543 + ], + [ + "▁satiety", + -14.91020679473877 + ], + [ + "amour", + -14.910209655761719 + ], + [ + "Survey", + -14.910212516784668 + ], + [ + "▁FORWARD", + -14.910246849060059 + ], + [ + "▁Acknowledging", + -14.910257339477539 + ], + [ + "▁Kree", + -14.910261154174805 + ], + [ + "▁inductees", + -14.910308837890625 + ], + [ + "▁Rott", + -14.910329818725586 + ], + [ + "▁ж", + -14.91033935546875 + ], + [ + "▁unconvinced", + -14.910354614257812 + ], + [ + "ikar", + -14.91037654876709 + ], + [ + "▁Artifact", + -14.910414695739746 + ], + [ + "considering", + -14.910415649414062 + ], + [ + "▁672", + -14.910419464111328 + ], + [ + "▁£28", + -14.910421371459961 + ], + [ + "▁potash", + -14.91042423248291 + ], + [ + "easily", + -14.910484313964844 + ], + [ + "▁Hookup", + -14.910489082336426 + ], + [ + "pheno", + -14.91055965423584 + ], + [ + "▁telugu", + -14.910578727722168 + ], + [ + "expand", + -14.910614967346191 + ], + [ + "▁dieters", + -14.91061782836914 + ], + [ + "▁Eko", + -14.910624504089355 + ], + [ + "vira", + -14.910630226135254 + ], + [ + "▁unionists", + -14.910717010498047 + ], + [ + "▁efr", + -14.910725593566895 + ], + [ + "▁estar", + -14.910774230957031 + ], + [ + "▁gantry", + -14.910791397094727 + ], + [ + "şti", + -14.910792350769043 + ], + [ + "▁Boaz", + -14.91080093383789 + ], + [ + "▁INDIVIDUAL", + -14.910805702209473 + ], + [ + "▁Shona", + -14.910819053649902 + ], + [ + "▁Yehuda", + -14.910845756530762 + ], + [ + "instance", + -14.910868644714355 + ], + [ + "▁leavers", + -14.910880088806152 + ], + [ + "▁Vasili", + -14.910890579223633 + ], + [ + "▁fluttered", + -14.910905838012695 + ], + [ + "hro", + -14.910917282104492 + ], + [ + "ILS", + -14.910923957824707 + ], + [ + "▁DSO", + -14.910932540893555 + ], + [ + "unch", + -14.910942077636719 + ], + [ + "MASTER", + -14.910970687866211 + ], + [ + "▁Prank", + -14.910999298095703 + ], + [ + "▁Jav", + -14.911017417907715 + ], + [ + "▁panelled", + -14.911029815673828 + ], + [ + "rota", + -14.911065101623535 + ], + [ + "evaluated", + -14.911069869995117 + ], + [ + "▁Bonaventure", + -14.911137580871582 + ], + [ + "sterone", + -14.911168098449707 + ], + [ + "▁intercepting", + -14.911170959472656 + ], + [ + "▁zealots", + -14.911191940307617 + ], + [ + "▁McAdams", + -14.911229133605957 + ], + [ + "▁jihadi", + -14.91126823425293 + ], + [ + "▁Binge", + -14.911274909973145 + ], + [ + "▁inventiveness", + -14.911295890808105 + ], + [ + "▁pickpocket", + -14.911320686340332 + ], + [ + "▁GSC", + -14.911373138427734 + ], + [ + "▁Lehr", + -14.911378860473633 + ], + [ + "▁skeins", + -14.911408424377441 + ], + [ + "▁hoy", + -14.911410331726074 + ], + [ + "▁dishwashing", + -14.911431312561035 + ], + [ + "▁bolting", + -14.91148853302002 + ], + [ + "▁Etiquette", + -14.911489486694336 + ], + [ + "▁retracement", + -14.911507606506348 + ], + [ + "▁growls", + -14.911511421203613 + ], + [ + "▁Haircut", + -14.91152572631836 + ], + [ + "▁Kanji", + -14.911526679992676 + ], + [ + "rary", + -14.911547660827637 + ], + [ + "▁evaporative", + -14.91161060333252 + ], + [ + "▁spectro", + -14.911619186401367 + ], + [ + "▁Eurostar", + -14.911623001098633 + ], + [ + "▁Tuskegee", + -14.911623001098633 + ], + [ + "▁interminable", + -14.911628723144531 + ], + [ + "▁deliberated", + -14.911689758300781 + ], + [ + "▁Tiara", + -14.91169261932373 + ], + [ + "▁DPM", + -14.911711692810059 + ], + [ + "▁PPAR", + -14.91172981262207 + ], + [ + "bbl", + -14.911757469177246 + ], + [ + "▁Identified", + -14.911782264709473 + ], + [ + "▁ADVANCE", + -14.911802291870117 + ], + [ + "▁BBL", + -14.911811828613281 + ], + [ + "▁VIDEOS", + -14.911815643310547 + ], + [ + "▁ANDREW", + -14.911831855773926 + ], + [ + "▁berg", + -14.911837577819824 + ], + [ + "▁EXPERT", + -14.911845207214355 + ], + [ + "▁YZ", + -14.911871910095215 + ], + [ + "archives", + -14.911882400512695 + ], + [ + "▁Stoll", + -14.911888122558594 + ], + [ + "▁CML", + -14.911919593811035 + ], + [ + "panic", + -14.911927223205566 + ], + [ + "▁Purgatory", + -14.911928176879883 + ], + [ + "▁Geronimo", + -14.911968231201172 + ], + [ + "▁gul", + -14.912022590637207 + ], + [ + "ネ", + -14.912041664123535 + ], + [ + "▁Mulholland", + -14.912076950073242 + ], + [ + "▁Lawrenceville", + -14.912123680114746 + ], + [ + "▁Chab", + -14.912134170532227 + ], + [ + "▁0521", + -14.912147521972656 + ], + [ + "wia", + -14.912151336669922 + ], + [ + "▁THEORY", + -14.912176132202148 + ], + [ + "Strategy", + -14.912196159362793 + ], + [ + "▁exes", + -14.912200927734375 + ], + [ + "▁Matric", + -14.91221809387207 + ], + [ + "Surface", + -14.91224193572998 + ], + [ + "▁suffocated", + -14.912297248840332 + ], + [ + "▁trudged", + -14.912347793579102 + ], + [ + "Stranger", + -14.912349700927734 + ], + [ + "▁epidemiologist", + -14.9124174118042 + ], + [ + "▁Hunk", + -14.91242504119873 + ], + [ + "▁ස", + -14.912431716918945 + ], + [ + "▁triplicate", + -14.912455558776855 + ], + [ + "▁Parlor", + -14.912531852722168 + ], + [ + "▁homeschooled", + -14.91254997253418 + ], + [ + "▁reservist", + -14.912551879882812 + ], + [ + "▁shanty", + -14.912595748901367 + ], + [ + "shëm", + -14.912653923034668 + ], + [ + "▁TfL", + -14.912653923034668 + ], + [ + "▁Voivodeship", + -14.912673950195312 + ], + [ + "dius", + -14.91273021697998 + ], + [ + "▁QUAL", + -14.912796020507812 + ], + [ + "▁YELLOW", + -14.912808418273926 + ], + [ + "gonal", + -14.91281509399414 + ], + [ + "▁Jeho", + -14.91281509399414 + ], + [ + "▁MoD", + -14.912824630737305 + ], + [ + "▁BLITZER", + -14.912832260131836 + ], + [ + "▁Diversified", + -14.912866592407227 + ], + [ + "▁SUIT", + -14.912898063659668 + ], + [ + "schoolers", + -14.912903785705566 + ], + [ + "Peer", + -14.912939071655273 + ], + [ + "▁Doubleday", + -14.91296672821045 + ], + [ + "▁obra", + -14.912968635559082 + ], + [ + "▁Laksh", + -14.913006782531738 + ], + [ + "▁BARR", + -14.913041114807129 + ], + [ + "▁Freudian", + -14.913068771362305 + ], + [ + "無", + -14.913074493408203 + ], + [ + "▁dha", + -14.91308879852295 + ], + [ + "Designer", + -14.913104057312012 + ], + [ + "▁overestimated", + -14.913169860839844 + ], + [ + "▁Misa", + -14.91317081451416 + ], + [ + "▁Paintball", + -14.913171768188477 + ], + [ + "Residence", + -14.91317367553711 + ], + [ + "▁overreact", + -14.913176536560059 + ], + [ + "▁BEYOND", + -14.913180351257324 + ], + [ + "▁Kenji", + -14.913191795349121 + ], + [ + "▁BMG", + -14.913222312927246 + ], + [ + "▁DME", + -14.913228034973145 + ], + [ + "▁Lonsdale", + -14.913241386413574 + ], + [ + "Vu", + -14.913264274597168 + ], + [ + "▁Shivaji", + -14.913280487060547 + ], + [ + "▁593", + -14.913286209106445 + ], + [ + "▁insipid", + -14.91329288482666 + ], + [ + "ouw", + -14.913301467895508 + ], + [ + "▁Midfielder", + -14.913312911987305 + ], + [ + "▁Whitehorse", + -14.913317680358887 + ], + [ + "▁ASN", + -14.913357734680176 + ], + [ + "▁SWE", + -14.913361549377441 + ], + [ + "▁ANS", + -14.913368225097656 + ], + [ + "▁Tashkent", + -14.913370132446289 + ], + [ + "▁Militant", + -14.913439750671387 + ], + [ + "▁Excerpts", + -14.913460731506348 + ], + [ + "▁sachets", + -14.91346549987793 + ], + [ + "▁Chuan", + -14.91349983215332 + ], + [ + "▁Faulk", + -14.913503646850586 + ], + [ + "ち", + -14.913503646850586 + ], + [ + "▁knockoff", + -14.913527488708496 + ], + [ + "▁mitotic", + -14.913544654846191 + ], + [ + "▁Motherwell", + -14.913548469543457 + ], + [ + "chris", + -14.913566589355469 + ], + [ + "▁Alcantara", + -14.913566589355469 + ], + [ + "ř", + -14.913569450378418 + ], + [ + "sovereign", + -14.913582801818848 + ], + [ + "APR", + -14.91359806060791 + ], + [ + "▁COW", + -14.913612365722656 + ], + [ + "Chen", + -14.913622856140137 + ], + [ + "▁Reimer", + -14.91368293762207 + ], + [ + "▁Antioxidants", + -14.913689613342285 + ], + [ + "▁Zep", + -14.913708686828613 + ], + [ + "loathing", + -14.913717269897461 + ], + [ + "merit", + -14.913719177246094 + ], + [ + "ported", + -14.913724899291992 + ], + [ + "▁toothed", + -14.913731575012207 + ], + [ + "▁millisecond", + -14.913769721984863 + ], + [ + "▁subfloor", + -14.91377067565918 + ], + [ + "▁Lune", + -14.91378402709961 + ], + [ + "▁Suspense", + -14.913810729980469 + ], + [ + "▁PBL", + -14.913874626159668 + ], + [ + "▁hick", + -14.913931846618652 + ], + [ + "cía", + -14.913934707641602 + ], + [ + "caria", + -14.913946151733398 + ], + [ + "guera", + -14.91396713256836 + ], + [ + "▁Westworld", + -14.913997650146484 + ], + [ + "▁BLESS", + -14.914009094238281 + ], + [ + "▁Ounce", + -14.914066314697266 + ], + [ + "▁Esco", + -14.914083480834961 + ], + [ + "▁Aftermath", + -14.914102554321289 + ], + [ + "▁Trois", + -14.914111137390137 + ], + [ + "▁qubit", + -14.91411304473877 + ], + [ + "▁KNEW", + -14.91412353515625 + ], + [ + "▁UAC", + -14.914125442504883 + ], + [ + "▁Brandywine", + -14.914146423339844 + ], + [ + "▁مع", + -14.91415023803711 + ], + [ + "▁Ngu", + -14.914154052734375 + ], + [ + "▁forewarned", + -14.914165496826172 + ], + [ + "▁unscramble", + -14.914175033569336 + ], + [ + "▁Wada", + -14.914209365844727 + ], + [ + "▁enum", + -14.914216995239258 + ], + [ + "▁alabama", + -14.914217948913574 + ], + [ + "▁reassemble", + -14.914225578308105 + ], + [ + "ले", + -14.914227485656738 + ], + [ + "▁Cellulose", + -14.914233207702637 + ], + [ + "landia", + -14.914254188537598 + ], + [ + "Cow", + -14.914262771606445 + ], + [ + "▁Hamster", + -14.914307594299316 + ], + [ + "Killer", + -14.91433334350586 + ], + [ + "▁LIBOR", + -14.914346694946289 + ], + [ + "▁Thani", + -14.914363861083984 + ], + [ + "▁Fid", + -14.91436767578125 + ], + [ + "removed", + -14.914410591125488 + ], + [ + "록", + -14.914422988891602 + ], + [ + "forecast", + -14.914429664611816 + ], + [ + "▁Sequin", + -14.914462089538574 + ], + [ + "▁1769", + -14.914491653442383 + ], + [ + "▁Cela", + -14.914493560791016 + ], + [ + "▁Rubik", + -14.914534568786621 + ], + [ + "▁Struck", + -14.914542198181152 + ], + [ + "establishing", + -14.914566993713379 + ], + [ + "Sponsor", + -14.914591789245605 + ], + [ + "▁wilful", + -14.914593696594238 + ], + [ + "▁Trak", + -14.91459846496582 + ], + [ + "kada", + -14.914607048034668 + ], + [ + "▁ORDERS", + -14.914724349975586 + ], + [ + "▁divisor", + -14.91474437713623 + ], + [ + "oderm", + -14.914749145507812 + ], + [ + "GPA", + -14.914778709411621 + ], + [ + "▁Specter", + -14.914793968200684 + ], + [ + "▁honoree", + -14.91482162475586 + ], + [ + "▁bw", + -14.914823532104492 + ], + [ + "importance", + -14.914828300476074 + ], + [ + "lese", + -14.91486930847168 + ], + [ + "▁IMMEDIATELY", + -14.914880752563477 + ], + [ + "vion", + -14.914911270141602 + ], + [ + "▁forceps", + -14.91493034362793 + ], + [ + "▁Hervey", + -14.914956092834473 + ], + [ + "representing", + -14.914992332458496 + ], + [ + "▁inadequacies", + -14.915022850036621 + ], + [ + "▁sierra", + -14.91502857208252 + ], + [ + "Lind", + -14.915044784545898 + ], + [ + "ënë", + -14.915094375610352 + ], + [ + "▁RTÉ", + -14.915125846862793 + ], + [ + "▁anatomically", + -14.915138244628906 + ], + [ + "▁Divergent", + -14.9151611328125 + ], + [ + "▁Rudra", + -14.915170669555664 + ], + [ + "rimmed", + -14.915197372436523 + ], + [ + "▁framerate", + -14.915210723876953 + ], + [ + "▁Debenhams", + -14.915218353271484 + ], + [ + "▁Impairment", + -14.915230751037598 + ], + [ + "▁peroxidase", + -14.915240287780762 + ], + [ + "▁meridians", + -14.915283203125 + ], + [ + "Pc", + -14.915340423583984 + ], + [ + "▁Matador", + -14.915377616882324 + ], + [ + "▁Quali", + -14.91538143157959 + ], + [ + "▁reassembled", + -14.915398597717285 + ], + [ + "▁Fuego", + -14.915410995483398 + ], + [ + "▁Darmstadt", + -14.915414810180664 + ], + [ + "▁Mailchimp", + -14.915414810180664 + ], + [ + "▁Purdy", + -14.915427207946777 + ], + [ + "▁591", + -14.915440559387207 + ], + [ + "▁ASO", + -14.915454864501953 + ], + [ + "AAR", + -14.915486335754395 + ], + [ + "▁Osgood", + -14.91556167602539 + ], + [ + "Pride", + -14.915589332580566 + ], + [ + "▁Spon", + -14.91560173034668 + ], + [ + "▁Southbank", + -14.915616989135742 + ], + [ + "▁Baggage", + -14.915621757507324 + ], + [ + "▁LAD", + -14.915635108947754 + ], + [ + "marital", + -14.915637969970703 + ], + [ + "▁extrapolated", + -14.9156494140625 + ], + [ + "▁clobber", + -14.915661811828613 + ], + [ + "▁Yeon", + -14.915670394897461 + ], + [ + "▁conciliatory", + -14.915672302246094 + ], + [ + "▁bree", + -14.915691375732422 + ], + [ + "contractor", + -14.915692329406738 + ], + [ + "▁otro", + -14.915694236755371 + ], + [ + "▁focusses", + -14.91574764251709 + ], + [ + "LONG", + -14.915752410888672 + ], + [ + "▁modafinil", + -14.915759086608887 + ], + [ + "▁infinitesimal", + -14.915820121765137 + ], + [ + "▁MPV", + -14.915821075439453 + ], + [ + "Drum", + -14.91582202911377 + ], + [ + "▁cruz", + -14.91582202911377 + ], + [ + "▁Colouring", + -14.915848731994629 + ], + [ + "▁paddocks", + -14.91586971282959 + ], + [ + "▁ROME", + -14.915902137756348 + ], + [ + "discriminatory", + -14.91593074798584 + ], + [ + "▁Winehouse", + -14.915970802307129 + ], + [ + "opedia", + -14.915990829467773 + ], + [ + "▁debenture", + -14.916015625 + ], + [ + "▁GLC", + -14.916115760803223 + ], + [ + "▁downsized", + -14.916122436523438 + ], + [ + "▁Riser", + -14.916158676147461 + ], + [ + "▁систем", + -14.916162490844727 + ], + [ + "VERSE", + -14.916189193725586 + ], + [ + "stehen", + -14.916196823120117 + ], + [ + "▁Sincerely", + -14.916207313537598 + ], + [ + "▁reviled", + -14.916234016418457 + ], + [ + "▁classifiers", + -14.916263580322266 + ], + [ + "▁Feliz", + -14.916276931762695 + ], + [ + "▁retargeting", + -14.916293144226074 + ], + [ + "▁purring", + -14.91629409790039 + ], + [ + "教", + -14.916297912597656 + ], + [ + "▁placemats", + -14.91632080078125 + ], + [ + "ṇa", + -14.916385650634766 + ], + [ + "elijk", + -14.916400909423828 + ], + [ + "▁Phyl", + -14.916410446166992 + ], + [ + "▁uke", + -14.91641902923584 + ], + [ + "▁ensconced", + -14.916419982910156 + ], + [ + "処理", + -14.916435241699219 + ], + [ + "▁Anglesey", + -14.916560173034668 + ], + [ + "▁Somaliland", + -14.9165678024292 + ], + [ + "▁Seeger", + -14.916597366333008 + ], + [ + "▁uncharacteristic", + -14.916604995727539 + ], + [ + "bomber", + -14.916605949401855 + ], + [ + "▁PIPE", + -14.916614532470703 + ], + [ + "▁Resignation", + -14.916616439819336 + ], + [ + "▁aneurysms", + -14.916620254516602 + ], + [ + "▁fallacious", + -14.916629791259766 + ], + [ + "Vector", + -14.916638374328613 + ], + [ + "rotor", + -14.916656494140625 + ], + [ + "▁biotic", + -14.91667652130127 + ], + [ + "▁Persuasive", + -14.916723251342773 + ], + [ + "▁Majorca", + -14.916726112365723 + ], + [ + "▁Sajid", + -14.916757583618164 + ], + [ + "유", + -14.916773796081543 + ], + [ + "ის", + -14.916816711425781 + ], + [ + "▁STAFF", + -14.916816711425781 + ], + [ + "▁doubters", + -14.916842460632324 + ], + [ + "▁Sensational", + -14.916882514953613 + ], + [ + "▁SCHEDULE", + -14.916922569274902 + ], + [ + "▁Medline", + -14.916925430297852 + ], + [ + "yielding", + -14.916927337646484 + ], + [ + "▁Portia", + -14.9169340133667 + ], + [ + "▁Springdale", + -14.916936874389648 + ], + [ + "▁Jetty", + -14.917001724243164 + ], + [ + "▁Loi", + -14.917004585266113 + ], + [ + "▁Pippin", + -14.917027473449707 + ], + [ + "▁McCourt", + -14.917057037353516 + ], + [ + "▁Pica", + -14.91706657409668 + ], + [ + "▁porcupine", + -14.917095184326172 + ], + [ + "▁Haan", + -14.917180061340332 + ], + [ + "▁hitmaker", + -14.917187690734863 + ], + [ + "▁Planters", + -14.917231559753418 + ], + [ + "▁luminescent", + -14.917242050170898 + ], + [ + "▁Kiva", + -14.917247772216797 + ], + [ + "Avengers", + -14.917251586914062 + ], + [ + "▁Quadro", + -14.917252540588379 + ], + [ + "SCHE", + -14.917274475097656 + ], + [ + "▁−1", + -14.917275428771973 + ], + [ + "▁WBO", + -14.917354583740234 + ], + [ + "▁seagrass", + -14.917362213134766 + ], + [ + "▁mandrel", + -14.9174222946167 + ], + [ + "▁intramuscular", + -14.917442321777344 + ], + [ + "terrorists", + -14.917540550231934 + ], + [ + "▁burnished", + -14.917542457580566 + ], + [ + "▁retell", + -14.917547225952148 + ], + [ + "▁Excludes", + -14.917557716369629 + ], + [ + "venom", + -14.917560577392578 + ], + [ + "▁kindling", + -14.917562484741211 + ], + [ + "▁imbibe", + -14.917573928833008 + ], + [ + "▁Primera", + -14.917588233947754 + ], + [ + "်", + -14.917591094970703 + ], + [ + "agami", + -14.91759204864502 + ], + [ + "▁Baran", + -14.917593955993652 + ], + [ + "▁Gulen", + -14.917619705200195 + ], + [ + "▁Bá", + -14.917628288269043 + ], + [ + "▁Zahra", + -14.917640686035156 + ], + [ + "▁Biotin", + -14.917644500732422 + ], + [ + "▁meanders", + -14.917691230773926 + ], + [ + "▁Gif", + -14.917703628540039 + ], + [ + "capsule", + -14.917709350585938 + ], + [ + "▁demonstrative", + -14.917733192443848 + ], + [ + "є", + -14.917737007141113 + ], + [ + "▁Mackintosh", + -14.917745590209961 + ], + [ + "nhardt", + -14.917814254760742 + ], + [ + "indra", + -14.917824745178223 + ], + [ + "brae", + -14.917871475219727 + ], + [ + "livia", + -14.917872428894043 + ], + [ + "▁jutting", + -14.917925834655762 + ], + [ + "▁BNC", + -14.917949676513672 + ], + [ + "Arrow", + -14.917990684509277 + ], + [ + "▁biodynamic", + -14.918013572692871 + ], + [ + "▁birdhouse", + -14.91801643371582 + ], + [ + "wede", + -14.91802978515625 + ], + [ + "▁Toomey", + -14.91805648803711 + ], + [ + "▁GUYS", + -14.918063163757324 + ], + [ + "▁OER", + -14.918105125427246 + ], + [ + "▁deir", + -14.918136596679688 + ], + [ + "katsu", + -14.918150901794434 + ], + [ + "▁electrolytic", + -14.918161392211914 + ], + [ + "medica", + -14.918190956115723 + ], + [ + "▁Techni", + -14.918212890625 + ], + [ + "▁spoofing", + -14.918305397033691 + ], + [ + "ба", + -14.918331146240234 + ], + [ + "▁grater", + -14.91833782196045 + ], + [ + "▁KAM", + -14.918357849121094 + ], + [ + "conductive", + -14.918368339538574 + ], + [ + "▁clawing", + -14.918402671813965 + ], + [ + "▁Ochoa", + -14.918435096740723 + ], + [ + "▁WEEKEND", + -14.918445587158203 + ], + [ + "▁Turpin", + -14.918484687805176 + ], + [ + "▁Ferndale", + -14.91850757598877 + ], + [ + "▁genotyping", + -14.918558120727539 + ], + [ + "▁LLB", + -14.918563842773438 + ], + [ + "Setup", + -14.91856575012207 + ], + [ + "▁Bitumen", + -14.918595314025879 + ], + [ + "▁Faris", + -14.918620109558105 + ], + [ + "▁Fibrosis", + -14.918644905090332 + ], + [ + "▁citrusy", + -14.918651580810547 + ], + [ + "▁merited", + -14.918651580810547 + ], + [ + "erina", + -14.918680191040039 + ], + [ + "Nusra", + -14.918684005737305 + ], + [ + "▁Whitsunday", + -14.91870403289795 + ], + [ + "WCA", + -14.91871452331543 + ], + [ + "▁Tardi", + -14.918715476989746 + ], + [ + "▁wardens", + -14.918715476989746 + ], + [ + "libri", + -14.918717384338379 + ], + [ + "respecting", + -14.918758392333984 + ], + [ + "▁Lapp", + -14.918780326843262 + ], + [ + "др", + -14.918793678283691 + ], + [ + "▁Xiong", + -14.91879940032959 + ], + [ + "ldo", + -14.918803215026855 + ], + [ + "USDA", + -14.918815612792969 + ], + [ + "Cape", + -14.918818473815918 + ], + [ + "▁bilirubin", + -14.918827056884766 + ], + [ + "▁Castello", + -14.918846130371094 + ], + [ + "▁Woolwich", + -14.918869972229004 + ], + [ + "▁YB", + -14.918889999389648 + ], + [ + "▁hyperinflation", + -14.918913841247559 + ], + [ + "OXY", + -14.918922424316406 + ], + [ + "▁MRA", + -14.918923377990723 + ], + [ + "arissa", + -14.918950080871582 + ], + [ + "▁Moise", + -14.919002532958984 + ], + [ + "▁Glob", + -14.919022560119629 + ], + [ + "▁Stevia", + -14.919029235839844 + ], + [ + "▁Madan", + -14.919055938720703 + ], + [ + "▁Lucio", + -14.919071197509766 + ], + [ + "▁professorship", + -14.919105529785156 + ], + [ + "▁texturing", + -14.919127464294434 + ], + [ + "▁Synchron", + -14.919129371643066 + ], + [ + "▁scuffs", + -14.919150352478027 + ], + [ + "▁Malacca", + -14.91917896270752 + ], + [ + "atric", + -14.919191360473633 + ], + [ + "Transform", + -14.919272422790527 + ], + [ + "▁quadcopter", + -14.91930103302002 + ], + [ + "▁Javelin", + -14.919330596923828 + ], + [ + "amsa", + -14.919342994689941 + ], + [ + "notably", + -14.919370651245117 + ], + [ + "▁plusieurs", + -14.919392585754395 + ], + [ + "▁Informa", + -14.919404983520508 + ], + [ + "cheer", + -14.919413566589355 + ], + [ + "실", + -14.91944408416748 + ], + [ + "▁UCSD", + -14.91948127746582 + ], + [ + "▁WQ", + -14.9194974899292 + ], + [ + "BBY", + -14.919551849365234 + ], + [ + "▁transpire", + -14.919556617736816 + ], + [ + "▁uncooperative", + -14.919632911682129 + ], + [ + "▁Bada", + -14.919652938842773 + ], + [ + "NCT", + -14.919672012329102 + ], + [ + "BURN", + -14.919734001159668 + ], + [ + "▁astrophysicist", + -14.919751167297363 + ], + [ + "Stra", + -14.919754981994629 + ], + [ + "▁Unification", + -14.91979694366455 + ], + [ + "▁SJW", + -14.919806480407715 + ], + [ + "▁guidebooks", + -14.919822692871094 + ], + [ + "▁Furry", + -14.919844627380371 + ], + [ + "SMC", + -14.919898986816406 + ], + [ + "kier", + -14.919907569885254 + ], + [ + "Assessment", + -14.91990852355957 + ], + [ + "▁ORANGE", + -14.91991138458252 + ], + [ + "▁uninhibited", + -14.919925689697266 + ], + [ + "Sandy", + -14.919962882995605 + ], + [ + "▁HoloLens", + -14.92002010345459 + ], + [ + "▁déjà", + -14.92002010345459 + ], + [ + "▁synchronicity", + -14.92002010345459 + ], + [ + "▁ARD", + -14.920023918151855 + ], + [ + "▁Dorothea", + -14.920100212097168 + ], + [ + "比", + -14.92010498046875 + ], + [ + "▁Staats", + -14.920137405395508 + ], + [ + "▁rummaging", + -14.920143127441406 + ], + [ + "▁Sniff", + -14.920160293579102 + ], + [ + "AES", + -14.920207977294922 + ], + [ + "▁temporally", + -14.920218467712402 + ], + [ + "▁Observed", + -14.92025089263916 + ], + [ + "encephalo", + -14.92027759552002 + ], + [ + "BBB", + -14.9202880859375 + ], + [ + "▁Neurosurgery", + -14.92029857635498 + ], + [ + "▁TNG", + -14.920299530029297 + ], + [ + "▁JBoss", + -14.920320510864258 + ], + [ + "▁ἐ", + -14.920334815979004 + ], + [ + "▁Airbag", + -14.920352935791016 + ], + [ + "VIDEO", + -14.920369148254395 + ], + [ + "▁exclusionary", + -14.920391082763672 + ], + [ + "▁biosensor", + -14.920393943786621 + ], + [ + "adj", + -14.92039966583252 + ], + [ + "▁bureaucracies", + -14.920402526855469 + ], + [ + "▁Hilde", + -14.920434951782227 + ], + [ + "▁Masterson", + -14.920439720153809 + ], + [ + "Mob", + -14.920482635498047 + ], + [ + "grease", + -14.920482635498047 + ], + [ + "Crack", + -14.920485496520996 + ], + [ + "▁Creatine", + -14.92052936553955 + ], + [ + "▁gallows", + -14.92056941986084 + ], + [ + "ncbi", + -14.920573234558105 + ], + [ + "secular", + -14.920575141906738 + ], + [ + "associate", + -14.920601844787598 + ], + [ + "▁Elective", + -14.920623779296875 + ], + [ + "▁Taku", + -14.920625686645508 + ], + [ + "▁Forgetting", + -14.920659065246582 + ], + [ + "▁DAO", + -14.920692443847656 + ], + [ + "▁Brasserie", + -14.920723915100098 + ], + [ + "▁Cusack", + -14.92074203491211 + ], + [ + "▁candlesticks", + -14.920757293701172 + ], + [ + "▁Embodiment", + -14.920796394348145 + ], + [ + "ffo", + -14.92080307006836 + ], + [ + "Alexandr", + -14.920913696289062 + ], + [ + "▁경", + -14.920936584472656 + ], + [ + "▁megabytes", + -14.920937538146973 + ], + [ + "▁stonework", + -14.920970916748047 + ], + [ + "OTD", + -14.921048164367676 + ], + [ + "muck", + -14.921051025390625 + ], + [ + "▁Wilmot", + -14.921069145202637 + ], + [ + "▁Scandi", + -14.921089172363281 + ], + [ + "▁Reflexology", + -14.921122550964355 + ], + [ + "▁Rosy", + -14.921150207519531 + ], + [ + "▁ACORN", + -14.921207427978516 + ], + [ + "▁popsicles", + -14.921228408813477 + ], + [ + "alyn", + -14.92123031616211 + ], + [ + "▁HathiTrust", + -14.921252250671387 + ], + [ + "▁Klug", + -14.921252250671387 + ], + [ + "▁Maplewood", + -14.92126178741455 + ], + [ + "▁Manju", + -14.921286582946777 + ], + [ + "▁lye", + -14.92128849029541 + ], + [ + "▁cerebellar", + -14.921338081359863 + ], + [ + "pion", + -14.921364784240723 + ], + [ + "▁Socratic", + -14.921432495117188 + ], + [ + "▁WIS", + -14.9214448928833 + ], + [ + "▁tinned", + -14.921453475952148 + ], + [ + "SAL", + -14.921454429626465 + ], + [ + "▁lunacy", + -14.921483039855957 + ], + [ + "▁narrowest", + -14.921493530273438 + ], + [ + "▁Sunbrella", + -14.921523094177246 + ], + [ + "laj", + -14.921551704406738 + ], + [ + "Practice", + -14.921587944030762 + ], + [ + "▁inconsiderate", + -14.921614646911621 + ], + [ + "ły", + -14.921631813049316 + ], + [ + "▁EVIL", + -14.921638488769531 + ], + [ + "evel", + -14.921651840209961 + ], + [ + "▁Perlman", + -14.921701431274414 + ], + [ + "nasty", + -14.921710968017578 + ], + [ + "▁Fogg", + -14.921714782714844 + ], + [ + "▁muti", + -14.921714782714844 + ], + [ + "▁Lumbar", + -14.92171573638916 + ], + [ + "trik", + -14.92172908782959 + ], + [ + "BANK", + -14.921735763549805 + ], + [ + "Mature", + -14.921748161315918 + ], + [ + "▁FRIEND", + -14.921782493591309 + ], + [ + "▁Ballast", + -14.921802520751953 + ], + [ + "▁Linc", + -14.921817779541016 + ], + [ + "bunk", + -14.921841621398926 + ], + [ + "▁OBJECTIVE", + -14.921845436096191 + ], + [ + "▁NHRA", + -14.921873092651367 + ], + [ + "Terri", + -14.921951293945312 + ], + [ + "▁nipped", + -14.92199420928955 + ], + [ + "▁glided", + -14.922038078308105 + ], + [ + "▁bequeath", + -14.922041893005371 + ], + [ + "▁riled", + -14.92206859588623 + ], + [ + "▁Wiccan", + -14.922076225280762 + ], + [ + "▁gazelle", + -14.92208194732666 + ], + [ + "sacred", + -14.922082901000977 + ], + [ + "Rag", + -14.922085762023926 + ], + [ + "▁vaporizers", + -14.922110557556152 + ], + [ + "subsidized", + -14.922192573547363 + ], + [ + "▁furrowed", + -14.922208786010742 + ], + [ + "▁veering", + -14.92221450805664 + ], + [ + "▁billable", + -14.92223072052002 + ], + [ + "▁repositioned", + -14.922257423400879 + ], + [ + "▁Bilateral", + -14.922264099121094 + ], + [ + "▁inadmissible", + -14.922287940979004 + ], + [ + "sterol", + -14.922307014465332 + ], + [ + "Liber", + -14.922320365905762 + ], + [ + "▁carabiner", + -14.92232608795166 + ], + [ + "▁PSYCH", + -14.922342300415039 + ], + [ + "▁encase", + -14.922359466552734 + ], + [ + "elec", + -14.92236614227295 + ], + [ + "ikea", + -14.922381401062012 + ], + [ + "Straight", + -14.92238998413086 + ], + [ + "▁Baud", + -14.922406196594238 + ], + [ + "akai", + -14.92242431640625 + ], + [ + "▁без", + -14.92242431640625 + ], + [ + "▁PEO", + -14.922425270080566 + ], + [ + "▁howls", + -14.922490119934082 + ], + [ + "▁Kreis", + -14.922492980957031 + ], + [ + "▁Wendi", + -14.922504425048828 + ], + [ + "▁intimated", + -14.922515869140625 + ], + [ + "▁Rawlins", + -14.922523498535156 + ], + [ + "ULE", + -14.922530174255371 + ], + [ + "▁Segundo", + -14.922551155090332 + ], + [ + "▁Tekken", + -14.922563552856445 + ], + [ + "Floor", + -14.922589302062988 + ], + [ + "çe", + -14.922601699829102 + ], + [ + "▁squeegee", + -14.922636032104492 + ], + [ + "▁Cleaver", + -14.922652244567871 + ], + [ + "GEL", + -14.922656059265137 + ], + [ + "fica", + -14.922679901123047 + ], + [ + "IDC", + -14.922684669494629 + ], + [ + "▁magna", + -14.922722816467285 + ], + [ + "▁trekkers", + -14.922764778137207 + ], + [ + "▁Tennessean", + -14.922794342041016 + ], + [ + "Tommy", + -14.922808647155762 + ], + [ + "CIM", + -14.922809600830078 + ], + [ + "▁snipe", + -14.922820091247559 + ], + [ + "▁Annually", + -14.922852516174316 + ], + [ + "illum", + -14.92285442352295 + ], + [ + "▁expos", + -14.922866821289062 + ], + [ + "Chase", + -14.922893524169922 + ], + [ + "▁oxidize", + -14.92289924621582 + ], + [ + "Jitsu", + -14.922922134399414 + ], + [ + "Thompson", + -14.92297077178955 + ], + [ + "▁EGR", + -14.922977447509766 + ], + [ + "▁stearate", + -14.92298412322998 + ], + [ + "icke", + -14.922994613647461 + ], + [ + "allocated", + -14.923046112060547 + ], + [ + "▁Chien", + -14.92310905456543 + ], + [ + "ECU", + -14.923123359680176 + ], + [ + "conceptual", + -14.923137664794922 + ], + [ + "▁Yamuna", + -14.92320442199707 + ], + [ + "Bissau", + -14.923213005065918 + ], + [ + "▁saplings", + -14.923233032226562 + ], + [ + "▁Duquesne", + -14.923253059387207 + ], + [ + "▁AGS", + -14.92325496673584 + ], + [ + "▁hustler", + -14.923255920410156 + ], + [ + "▁SUD", + -14.923308372497559 + ], + [ + "▁Schoe", + -14.923333168029785 + ], + [ + "▁rearward", + -14.923358917236328 + ], + [ + "▁dissenters", + -14.923392295837402 + ], + [ + "ско", + -14.923399925231934 + ], + [ + "auro", + -14.923406600952148 + ], + [ + "▁Carrara", + -14.923418998718262 + ], + [ + "rison", + -14.92342758178711 + ], + [ + "▁fai", + -14.923460960388184 + ], + [ + "▁JAG", + -14.923504829406738 + ], + [ + "DPR", + -14.923505783081055 + ], + [ + "laf", + -14.923508644104004 + ], + [ + "▁Morgantown", + -14.923543930053711 + ], + [ + "▁Enchanting", + -14.923556327819824 + ], + [ + "▁Incidence", + -14.923571586608887 + ], + [ + "▁smuggler", + -14.923612594604492 + ], + [ + "▁terminator", + -14.923612594604492 + ], + [ + "▁overthrew", + -14.92362117767334 + ], + [ + "prehensi", + -14.923672676086426 + ], + [ + "houd", + -14.923675537109375 + ], + [ + "Certificate", + -14.923712730407715 + ], + [ + "▁Ingles", + -14.923768043518066 + ], + [ + "▁barium", + -14.923843383789062 + ], + [ + "▁untidy", + -14.923906326293945 + ], + [ + "ilani", + -14.923943519592285 + ], + [ + "▁counterparty", + -14.923951148986816 + ], + [ + "enemies", + -14.923966407775879 + ], + [ + "Bun", + -14.923985481262207 + ], + [ + "▁urbanism", + -14.923985481262207 + ], + [ + "▁Kravitz", + -14.924013137817383 + ], + [ + "phony", + -14.92402172088623 + ], + [ + "▁reccomend", + -14.924022674560547 + ], + [ + "▁jive", + -14.924051284790039 + ], + [ + "hema", + -14.924064636230469 + ], + [ + "▁Villains", + -14.924080848693848 + ], + [ + "▁Balan", + -14.924088478088379 + ], + [ + "▁766", + -14.924114227294922 + ], + [ + "▁malty", + -14.924125671386719 + ], + [ + "▁CHAIR", + -14.924132347106934 + ], + [ + "PIA", + -14.924178123474121 + ], + [ + "▁Contr", + -14.924195289611816 + ], + [ + "▁YY", + -14.924210548400879 + ], + [ + "▁roto", + -14.924214363098145 + ], + [ + "▁MIM", + -14.924245834350586 + ], + [ + "▁trata", + -14.924294471740723 + ], + [ + "▁hemodialysis", + -14.92431354522705 + ], + [ + "SAW", + -14.924407958984375 + ], + [ + "OBE", + -14.924426078796387 + ], + [ + "▁Consisting", + -14.92445182800293 + ], + [ + "▁mobilised", + -14.924456596374512 + ], + [ + "▁acclimate", + -14.924467086791992 + ], + [ + "▁CENTRE", + -14.92447566986084 + ], + [ + "recipes", + -14.924488067626953 + ], + [ + "▁Mawr", + -14.924498558044434 + ], + [ + "Manuel", + -14.924501419067383 + ], + [ + "▁Falun", + -14.924549102783203 + ], + [ + "▁trapeze", + -14.924558639526367 + ], + [ + "▁reactivation", + -14.924560546875 + ], + [ + "▁Morehead", + -14.924566268920898 + ], + [ + "▁Inappropriate", + -14.924567222595215 + ], + [ + "▁Slit", + -14.924579620361328 + ], + [ + "▁DRINK", + -14.924592018127441 + ], + [ + "▁Puritans", + -14.924688339233398 + ], + [ + "Radi", + -14.924691200256348 + ], + [ + "▁AAR", + -14.924725532531738 + ], + [ + "▁chocolatey", + -14.92473030090332 + ], + [ + "fai", + -14.924766540527344 + ], + [ + "stir", + -14.924775123596191 + ], + [ + "arrange", + -14.924796104431152 + ], + [ + "danger", + -14.924824714660645 + ], + [ + "makeup", + -14.92484188079834 + ], + [ + "ords", + -14.92485523223877 + ], + [ + "▁NQ", + -14.924872398376465 + ], + [ + "▁Puy", + -14.92489242553711 + ], + [ + "▁woollen", + -14.924930572509766 + ], + [ + "▁Malbec", + -14.924955368041992 + ], + [ + "Guess", + -14.924959182739258 + ], + [ + "▁hematoma", + -14.924992561340332 + ], + [ + "ashvili", + -14.924993515014648 + ], + [ + "extensive", + -14.924997329711914 + ], + [ + "▁glamping", + -14.925000190734863 + ], + [ + "▁Chon", + -14.925004005432129 + ], + [ + "▁SHER", + -14.925048828125 + ], + [ + "ubb", + -14.925063133239746 + ], + [ + "▁Heyward", + -14.925063133239746 + ], + [ + "Plug", + -14.925117492675781 + ], + [ + "▁lactating", + -14.925129890441895 + ], + [ + "selves", + -14.92513656616211 + ], + [ + "▁neutrinos", + -14.925189018249512 + ], + [ + "Globe", + -14.925189971923828 + ], + [ + "ensch", + -14.925211906433105 + ], + [ + "▁Ecstasy", + -14.925253868103027 + ], + [ + "▁reams", + -14.925291061401367 + ], + [ + "▁Esports", + -14.925321578979492 + ], + [ + "▁vomited", + -14.925328254699707 + ], + [ + "Flip", + -14.9253568649292 + ], + [ + "operational", + -14.925371170043945 + ], + [ + "▁Watchmen", + -14.925378799438477 + ], + [ + "▁Epping", + -14.925386428833008 + ], + [ + "▁oxidizing", + -14.925398826599121 + ], + [ + "▁Tortilla", + -14.925407409667969 + ], + [ + "▁BOTTOM", + -14.925439834594727 + ], + [ + "clue", + -14.925445556640625 + ], + [ + "െ", + -14.92547607421875 + ], + [ + "▁Casserole", + -14.925500869750977 + ], + [ + "▁Tadalafil", + -14.92558765411377 + ], + [ + "▁Constitu", + -14.925600051879883 + ], + [ + "▁Kathi", + -14.92561149597168 + ], + [ + "▁forbearance", + -14.925625801086426 + ], + [ + "▁conditionally", + -14.925715446472168 + ], + [ + "▁Sled", + -14.925719261169434 + ], + [ + "▁brasil", + -14.92573070526123 + ], + [ + "AKI", + -14.925759315490723 + ], + [ + "▁cg", + -14.925788879394531 + ], + [ + "▁chir", + -14.925804138183594 + ], + [ + "▁Eggplant", + -14.92580509185791 + ], + [ + "▁Entitled", + -14.925817489624023 + ], + [ + "▁Aspirin", + -14.925820350646973 + ], + [ + "って", + -14.9258451461792 + ], + [ + "▁Mozzarella", + -14.925885200500488 + ], + [ + "▁Sirisena", + -14.925898551940918 + ], + [ + "▁clenching", + -14.925929069519043 + ], + [ + "▁RAIL", + -14.925944328308105 + ], + [ + "▁abated", + -14.92596435546875 + ], + [ + "▁fretboard", + -14.92605209350586 + ], + [ + "args", + -14.926054954528809 + ], + [ + "▁Menopause", + -14.9260835647583 + ], + [ + "▁endocrinologist", + -14.926095008850098 + ], + [ + "▁Bann", + -14.926119804382324 + ], + [ + "▁Katya", + -14.926130294799805 + ], + [ + "uwen", + -14.926140785217285 + ], + [ + "▁lehenga", + -14.926145553588867 + ], + [ + "że", + -14.92615795135498 + ], + [ + "▁supine", + -14.926164627075195 + ], + [ + "▁shoestring", + -14.926177978515625 + ], + [ + "▁Agape", + -14.926201820373535 + ], + [ + "turf", + -14.926207542419434 + ], + [ + "▁plodding", + -14.926234245300293 + ], + [ + "▁printouts", + -14.92627239227295 + ], + [ + "▁Puccini", + -14.926290512084961 + ], + [ + "▁diametrically", + -14.926305770874023 + ], + [ + "▁Senegalese", + -14.926310539245605 + ], + [ + "cog", + -14.926321983337402 + ], + [ + "▁ба", + -14.926321983337402 + ], + [ + "▁pokie", + -14.926324844360352 + ], + [ + "▁comunica", + -14.926345825195312 + ], + [ + "laria", + -14.92635726928711 + ], + [ + "▁Donohue", + -14.926380157470703 + ], + [ + "▁disponible", + -14.926380157470703 + ], + [ + "peng", + -14.926424026489258 + ], + [ + "海", + -14.926445960998535 + ], + [ + "▁Zaw", + -14.9264497756958 + ], + [ + "▁collation", + -14.926453590393066 + ], + [ + "▁moistened", + -14.92647933959961 + ], + [ + "▁Loz", + -14.926545143127441 + ], + [ + "Hudson", + -14.926552772521973 + ], + [ + "▁Zaragoza", + -14.926566123962402 + ], + [ + "hme", + -14.926613807678223 + ], + [ + "ladi", + -14.926621437072754 + ], + [ + "▁Ojo", + -14.926642417907715 + ], + [ + "▁오", + -14.926642417907715 + ], + [ + "clothing", + -14.926661491394043 + ], + [ + "substituted", + -14.926675796508789 + ], + [ + "▁rio", + -14.926692962646484 + ], + [ + "▁mutable", + -14.926695823669434 + ], + [ + "▁Scavenger", + -14.926752090454102 + ], + [ + "trophin", + -14.926787376403809 + ], + [ + "▁Physiotherapist", + -14.926838874816895 + ], + [ + "itinib", + -14.926839828491211 + ], + [ + "▁Prologue", + -14.926867485046387 + ], + [ + "▁Stakeholder", + -14.926896095275879 + ], + [ + "▁SOLO", + -14.92691421508789 + ], + [ + "▁Credentials", + -14.926926612854004 + ], + [ + "Moscow", + -14.926942825317383 + ], + [ + "Newton", + -14.926963806152344 + ], + [ + "▁Shortcuts", + -14.926971435546875 + ], + [ + "▁TRIAL", + -14.926995277404785 + ], + [ + "fisher", + -14.92701244354248 + ], + [ + "▁haemorrhage", + -14.92701244354248 + ], + [ + "▁Dreamcast", + -14.92707633972168 + ], + [ + "▁whisker", + -14.927107810974121 + ], + [ + "▁occupier", + -14.927135467529297 + ], + [ + "▁haber", + -14.927155494689941 + ], + [ + "▁Spud", + -14.927188873291016 + ], + [ + "disappear", + -14.927196502685547 + ], + [ + "ACM", + -14.92725658416748 + ], + [ + "▁cala", + -14.927257537841797 + ], + [ + "auskas", + -14.927267074584961 + ], + [ + "▁Tense", + -14.927313804626465 + ], + [ + "zuka", + -14.927336692810059 + ], + [ + "▁peu", + -14.92737865447998 + ], + [ + "▁DIL", + -14.927400588989258 + ], + [ + "▁Sexually", + -14.927401542663574 + ], + [ + "▁regurgitation", + -14.927458763122559 + ], + [ + "▁Dalits", + -14.927480697631836 + ], + [ + "▁Mousse", + -14.927491188049316 + ], + [ + "vibe", + -14.927512168884277 + ], + [ + "pastor", + -14.927557945251465 + ], + [ + "ODI", + -14.927566528320312 + ], + [ + "▁hairless", + -14.927591323852539 + ], + [ + "атель", + -14.92759895324707 + ], + [ + "▁Threaten", + -14.927616119384766 + ], + [ + "▁gc", + -14.927635192871094 + ], + [ + "▁linearity", + -14.927708625793457 + ], + [ + "▁Dinh", + -14.927709579467773 + ], + [ + "▁Wolfson", + -14.92772102355957 + ], + [ + "▁sanguine", + -14.927740097045898 + ], + [ + "▁Aimed", + -14.927746772766113 + ], + [ + "▁Uncertain", + -14.9277925491333 + ], + [ + "▁WRITING", + -14.927793502807617 + ], + [ + "▁Bayes", + -14.927836418151855 + ], + [ + "▁SYNC", + -14.927861213684082 + ], + [ + "therefore", + -14.927922248840332 + ], + [ + "▁HoldingsChannel", + -14.927924156188965 + ], + [ + "▁interning", + -14.92794418334961 + ], + [ + "▁acquiesce", + -14.928060531616211 + ], + [ + "▁EBIT", + -14.928079605102539 + ], + [ + "▁taproom", + -14.92809772491455 + ], + [ + "▁comin", + -14.928110122680664 + ], + [ + "▁hij", + -14.928128242492676 + ], + [ + "Я", + -14.928129196166992 + ], + [ + "▁Heavily", + -14.928153991699219 + ], + [ + "▁autoclave", + -14.928181648254395 + ], + [ + "Cheer", + -14.92821216583252 + ], + [ + "consultant", + -14.92825984954834 + ], + [ + "▁Sona", + -14.92827320098877 + ], + [ + "▁Instances", + -14.928288459777832 + ], + [ + "▁Gravy", + -14.928289413452148 + ], + [ + "adhi", + -14.928305625915527 + ], + [ + "▁Philippa", + -14.928339004516602 + ], + [ + "▁religiosity", + -14.928439140319824 + ], + [ + "▁Ayer", + -14.928460121154785 + ], + [ + "▁NMC", + -14.928607940673828 + ], + [ + "▁unaided", + -14.92862606048584 + ], + [ + "Protein", + -14.928631782531738 + ], + [ + "LOOK", + -14.928669929504395 + ], + [ + "▁Clostridium", + -14.928674697875977 + ], + [ + "▁statistician", + -14.928683280944824 + ], + [ + "▁Rasheed", + -14.928685188293457 + ], + [ + "▁feverishly", + -14.928686141967773 + ], + [ + "▁relativ", + -14.92870044708252 + ], + [ + "▁858", + -14.92871379852295 + ], + [ + "▁Seemed", + -14.928714752197266 + ], + [ + "▁polymorphic", + -14.928755760192871 + ], + [ + "▁Mariposa", + -14.92876148223877 + ], + [ + "▁sashes", + -14.928775787353516 + ], + [ + "catalyst", + -14.928791999816895 + ], + [ + "▁remarketing", + -14.928832054138184 + ], + [ + "▁Expressing", + -14.928869247436523 + ], + [ + "▁squaring", + -14.928886413574219 + ], + [ + "3300", + -14.928893089294434 + ], + [ + "▁Sumi", + -14.9288969039917 + ], + [ + "▁SUPPLIERS", + -14.928906440734863 + ], + [ + "▁Fixer", + -14.928935050964355 + ], + [ + "Ultimately", + -14.928959846496582 + ], + [ + "Muscle", + -14.928975105285645 + ], + [ + "▁Duomo", + -14.928975105285645 + ], + [ + "▁illus", + -14.928993225097656 + ], + [ + "GRI", + -14.929021835327148 + ], + [ + "▁DMP", + -14.929039001464844 + ], + [ + "▁indoctrinated", + -14.929095268249512 + ], + [ + "▁sturgeon", + -14.929099082946777 + ], + [ + "준", + -14.929121971130371 + ], + [ + "▁TTS", + -14.929132461547852 + ], + [ + "▁Blazing", + -14.929141998291016 + ], + [ + "▁daredevil", + -14.929144859313965 + ], + [ + "▁lebih", + -14.929171562194824 + ], + [ + "▁arbitral", + -14.92922592163086 + ], + [ + "▁Stink", + -14.929241180419922 + ], + [ + "HUD", + -14.92927360534668 + ], + [ + "▁rockabilly", + -14.929283142089844 + ], + [ + "▁bonfires", + -14.929289817810059 + ], + [ + "▁SCL", + -14.929312705993652 + ], + [ + "▁amalgamated", + -14.929372787475586 + ], + [ + "▁Giselle", + -14.929403305053711 + ], + [ + "▁Treb", + -14.929450035095215 + ], + [ + "▁domestication", + -14.929485321044922 + ], + [ + "♦", + -14.929488182067871 + ], + [ + "▁hoppy", + -14.92949104309082 + ], + [ + "▁Gari", + -14.929518699645996 + ], + [ + "▁Ка", + -14.929518699645996 + ], + [ + "▁TPG", + -14.929536819458008 + ], + [ + "▁fragmentary", + -14.929551124572754 + ], + [ + "STC", + -14.929553031921387 + ], + [ + "▁welche", + -14.929580688476562 + ], + [ + "4200", + -14.929625511169434 + ], + [ + "equen", + -14.929630279541016 + ], + [ + "zep", + -14.929636001586914 + ], + [ + "▁Movable", + -14.92966079711914 + ], + [ + "Rocky", + -14.92967700958252 + ], + [ + "▁Jussie", + -14.929695129394531 + ], + [ + "squared", + -14.92972183227539 + ], + [ + "▁RID", + -14.929731369018555 + ], + [ + "▁rehydrate", + -14.929756164550781 + ], + [ + "▁Obo", + -14.929763793945312 + ], + [ + "Barry", + -14.929786682128906 + ], + [ + "▁puppetry", + -14.929859161376953 + ], + [ + "condaily", + -14.929872512817383 + ], + [ + "▁obfuscation", + -14.929880142211914 + ], + [ + "adjustment", + -14.929903984069824 + ], + [ + "nash", + -14.929912567138672 + ], + [ + "▁HRD", + -14.929926872253418 + ], + [ + "▁proffered", + -14.930033683776855 + ], + [ + "emerged", + -14.930048942565918 + ], + [ + "▁vä", + -14.930049896240234 + ], + [ + "Diana", + -14.930052757263184 + ], + [ + "▁holland", + -14.93012523651123 + ], + [ + "yson", + -14.930126190185547 + ], + [ + "▁azalea", + -14.930131912231445 + ], + [ + "▁Collaborating", + -14.930153846740723 + ], + [ + "▁LBC", + -14.930180549621582 + ], + [ + "steroidal", + -14.930197715759277 + ], + [ + "▁prioritising", + -14.930240631103516 + ], + [ + "жа", + -14.930265426635742 + ], + [ + "▁Prud", + -14.93027114868164 + ], + [ + "레", + -14.930413246154785 + ], + [ + "▁Auger", + -14.93042278289795 + ], + [ + "▁Biddle", + -14.930444717407227 + ], + [ + "▁reappears", + -14.930458068847656 + ], + [ + "▁SED", + -14.930466651916504 + ], + [ + "▁Badlands", + -14.930468559265137 + ], + [ + "▁ortholog", + -14.930480003356934 + ], + [ + "▁barite", + -14.930486679077148 + ], + [ + "▁Kenai", + -14.930575370788574 + ], + [ + "ISER", + -14.93058967590332 + ], + [ + "량", + -14.930676460266113 + ], + [ + "Murder", + -14.930694580078125 + ], + [ + "▁Primetime", + -14.930700302124023 + ], + [ + "implemented", + -14.930771827697754 + ], + [ + "▁SERPs", + -14.930771827697754 + ], + [ + "▁discordant", + -14.930771827697754 + ], + [ + "▁Chapo", + -14.93082332611084 + ], + [ + "▁wagered", + -14.930825233459473 + ], + [ + "▁EIGHT", + -14.930845260620117 + ], + [ + "▁Gastric", + -14.930849075317383 + ], + [ + "▁Womack", + -14.930859565734863 + ], + [ + "▁DECA", + -14.93088436126709 + ], + [ + "▁McHale", + -14.930893898010254 + ], + [ + "▁Taber", + -14.93089771270752 + ], + [ + "▁Crawler", + -14.930915832519531 + ], + [ + "▁Tumors", + -14.930915832519531 + ], + [ + "▁795", + -14.930931091308594 + ], + [ + "▁Emmaus", + -14.930936813354492 + ], + [ + "unfair", + -14.930937767028809 + ], + [ + "▁mistreat", + -14.93094253540039 + ], + [ + "▁cicada", + -14.930978775024414 + ], + [ + "▁CONT", + -14.931039810180664 + ], + [ + "▁occuring", + -14.931046485900879 + ], + [ + "dhara", + -14.93105697631836 + ], + [ + "invented", + -14.931059837341309 + ], + [ + "▁Mizoram", + -14.931075096130371 + ], + [ + "lir", + -14.931081771850586 + ], + [ + "▁Matar", + -14.93110466003418 + ], + [ + "▁Yuck", + -14.931153297424316 + ], + [ + "inflammation", + -14.93115520477295 + ], + [ + "▁Robben", + -14.931163787841797 + ], + [ + "cale", + -14.931175231933594 + ], + [ + "▁CRUSHER", + -14.931175231933594 + ], + [ + "▁Associa", + -14.931220054626465 + ], + [ + "▁STORIES", + -14.93122673034668 + ], + [ + "▁forebears", + -14.93126106262207 + ], + [ + "removable", + -14.931270599365234 + ], + [ + "▁PHY", + -14.931278228759766 + ], + [ + "▁Fragile", + -14.931289672851562 + ], + [ + "▁fraternities", + -14.93129825592041 + ], + [ + "▁coaxing", + -14.931312561035156 + ], + [ + "SUM", + -14.931314468383789 + ], + [ + "▁dietitians", + -14.931316375732422 + ], + [ + "▁Weatherford", + -14.931344985961914 + ], + [ + "▁FILL", + -14.93137264251709 + ], + [ + "▁Dinar", + -14.931443214416504 + ], + [ + "▁BSF", + -14.931450843811035 + ], + [ + "gement", + -14.931478500366211 + ], + [ + "▁LPA", + -14.931489944458008 + ], + [ + "▁harley", + -14.93151569366455 + ], + [ + "horizontal", + -14.931530952453613 + ], + [ + "▁Oxi", + -14.931553840637207 + ], + [ + "▁pollinator", + -14.93159294128418 + ], + [ + "quip", + -14.931602478027344 + ], + [ + "▁Wohn", + -14.931608200073242 + ], + [ + "▁Gauss", + -14.931614875793457 + ], + [ + "▁ourself", + -14.931645393371582 + ], + [ + "▁lazada", + -14.931675910949707 + ], + [ + "▁lino", + -14.931729316711426 + ], + [ + "lesi", + -14.931730270385742 + ], + [ + "▁Molloy", + -14.931774139404297 + ], + [ + "▁Lorentz", + -14.93178939819336 + ], + [ + "▁Kamil", + -14.931800842285156 + ], + [ + "▁Seize", + -14.931807518005371 + ], + [ + "▁Thro", + -14.931816101074219 + ], + [ + "▁publicizing", + -14.931817054748535 + ], + [ + "▁Potent", + -14.931819915771484 + ], + [ + "▁Beretta", + -14.931830406188965 + ], + [ + "raine", + -14.931877136230469 + ], + [ + "▁Gron", + -14.931890487670898 + ], + [ + "▁Libro", + -14.931896209716797 + ], + [ + "▁Kabba", + -14.931923866271973 + ], + [ + "▁Inquiries", + -14.931933403015137 + ], + [ + "HARD", + -14.931941986083984 + ], + [ + "ORC", + -14.931947708129883 + ], + [ + "▁maimed", + -14.931952476501465 + ], + [ + "SATA", + -14.931954383850098 + ], + [ + "▁Vay", + -14.931961059570312 + ], + [ + "▁Canfield", + -14.931968688964844 + ], + [ + "▁Mizu", + -14.932045936584473 + ], + [ + "Listener", + -14.932051658630371 + ], + [ + "jumper", + -14.932147026062012 + ], + [ + "infrastructure", + -14.932158470153809 + ], + [ + "▁oakley", + -14.9321870803833 + ], + [ + "▁ionizing", + -14.93221378326416 + ], + [ + "texture", + -14.9323091506958 + ], + [ + "▁sachet", + -14.932331085205078 + ], + [ + "▁Inorganic", + -14.932360649108887 + ], + [ + "▁TFC", + -14.932361602783203 + ], + [ + "▁shallot", + -14.93238353729248 + ], + [ + "▁sparkled", + -14.932391166687012 + ], + [ + "▁Alpharetta", + -14.932400703430176 + ], + [ + "ZH", + -14.93240737915039 + ], + [ + "▁Svalbard", + -14.932419776916504 + ], + [ + "▁Forsberg", + -14.932467460632324 + ], + [ + "photographer", + -14.932476997375488 + ], + [ + "▁Godrej", + -14.932490348815918 + ], + [ + "Holland", + -14.932510375976562 + ], + [ + "hiv", + -14.932518005371094 + ], + [ + "▁Sinhala", + -14.932519912719727 + ], + [ + "Liz", + -14.932523727416992 + ], + [ + "▁unlisted", + -14.932544708251953 + ], + [ + "▁Akufo", + -14.93254566192627 + ], + [ + "▁الح", + -14.932575225830078 + ], + [ + "ulaire", + -14.932658195495605 + ], + [ + "▁DHP", + -14.932658195495605 + ], + [ + "▁PARC", + -14.932671546936035 + ], + [ + "enyl", + -14.932711601257324 + ], + [ + "▁tinctures", + -14.932737350463867 + ], + [ + "▁CRISIL", + -14.932760238647461 + ], + [ + "evaluating", + -14.9328031539917 + ], + [ + "▁ballpoint", + -14.932843208312988 + ], + [ + "£5", + -14.932857513427734 + ], + [ + "▁honeybees", + -14.932883262634277 + ], + [ + "▁Cooperstown", + -14.932887077331543 + ], + [ + "▁CHAP", + -14.932900428771973 + ], + [ + "sohn", + -14.93292236328125 + ], + [ + "▁Auditions", + -14.932926177978516 + ], + [ + "▁optometry", + -14.932930946350098 + ], + [ + "▁692", + -14.932940483093262 + ], + [ + "▁Vibra", + -14.932964324951172 + ], + [ + "▁trawling", + -14.932968139648438 + ], + [ + "▁Wandsworth", + -14.932994842529297 + ], + [ + "▁Kilpatrick", + -14.933021545410156 + ], + [ + "▁Mirrored", + -14.933026313781738 + ], + [ + "▁Wingate", + -14.933029174804688 + ], + [ + "strongly", + -14.933039665222168 + ], + [ + "▁Badal", + -14.933051109313965 + ], + [ + "▁Kiefer", + -14.933055877685547 + ], + [ + "▁OBAMA", + -14.933064460754395 + ], + [ + "▁Pundit", + -14.933076858520508 + ], + [ + "▁Chanukah", + -14.933093070983887 + ], + [ + "▁workwear", + -14.933174133300781 + ], + [ + "▁Olathe", + -14.933178901672363 + ], + [ + "▁Furu", + -14.93317985534668 + ], + [ + "▁petitioning", + -14.933189392089844 + ], + [ + "auch", + -14.933259963989258 + ], + [ + "▁spiralling", + -14.933271408081055 + ], + [ + "▁immaturity", + -14.933286666870117 + ], + [ + "മ", + -14.933304786682129 + ], + [ + "▁Rian", + -14.933320999145508 + ], + [ + "▁remitted", + -14.933327674865723 + ], + [ + "▁Pratap", + -14.933333396911621 + ], + [ + "▁Anesthesiology", + -14.933392524719238 + ], + [ + "▁Ridgeway", + -14.933392524719238 + ], + [ + "▁Kesha", + -14.933401107788086 + ], + [ + "FLO", + -14.933403968811035 + ], + [ + "▁stupa", + -14.93346118927002 + ], + [ + "▁Catwoman", + -14.933462142944336 + ], + [ + "oush", + -14.933472633361816 + ], + [ + "液", + -14.933513641357422 + ], + [ + "▁Caesarea", + -14.933538436889648 + ], + [ + "▁Prefab", + -14.933541297912598 + ], + [ + "▁Hrs", + -14.93354320526123 + ], + [ + "▁Shipp", + -14.933578491210938 + ], + [ + "1109", + -14.933588027954102 + ], + [ + "▁Glamorous", + -14.933667182922363 + ], + [ + "atively", + -14.93372917175293 + ], + [ + "▁ECR", + -14.93375301361084 + ], + [ + "inya", + -14.933755874633789 + ], + [ + "▁Peckham", + -14.933758735656738 + ], + [ + "▁SBD", + -14.93381404876709 + ], + [ + "▁recuperating", + -14.933841705322266 + ], + [ + "▁transposition", + -14.933900833129883 + ], + [ + "▁jerry", + -14.933915138244629 + ], + [ + "▁MPD", + -14.933935165405273 + ], + [ + "▁quien", + -14.933979988098145 + ], + [ + "▁DMT", + -14.93398666381836 + ], + [ + "▁Boland", + -14.934033393859863 + ], + [ + "▁cloakroom", + -14.93404769897461 + ], + [ + "worse", + -14.934067726135254 + ], + [ + "▁Prezi", + -14.934073448181152 + ], + [ + "▁Liberator", + -14.934080123901367 + ], + [ + "qf", + -14.934085845947266 + ], + [ + "▁Ahmadi", + -14.934104919433594 + ], + [ + "▁6061", + -14.934117317199707 + ], + [ + "▁pedantic", + -14.934118270874023 + ], + [ + "▁Toastmasters", + -14.934146881103516 + ], + [ + "catalytic", + -14.93417739868164 + ], + [ + "▁overage", + -14.934186935424805 + ], + [ + "▁Henna", + -14.934188842773438 + ], + [ + "▁669", + -14.934232711791992 + ], + [ + "ectomies", + -14.934244155883789 + ], + [ + "NCE", + -14.93425178527832 + ], + [ + "▁Mordecai", + -14.934266090393066 + ], + [ + "▁Inflammatory", + -14.934269905090332 + ], + [ + "react", + -14.934344291687012 + ], + [ + "▁baited", + -14.934346199035645 + ], + [ + "neath", + -14.934355735778809 + ], + [ + "▁Capi", + -14.934362411499023 + ], + [ + "▁Juilliard", + -14.934368133544922 + ], + [ + "их", + -14.934380531311035 + ], + [ + "yā", + -14.934396743774414 + ], + [ + "▁Defoe", + -14.934398651123047 + ], + [ + "اف", + -14.93440055847168 + ], + [ + "ík", + -14.934481620788574 + ], + [ + "▁Calum", + -14.934490203857422 + ], + [ + "titute", + -14.934500694274902 + ], + [ + "Samuel", + -14.93450927734375 + ], + [ + "▁Kosovë", + -14.934515953063965 + ], + [ + "1888", + -14.93453598022461 + ], + [ + "000000000000", + -14.934537887573242 + ], + [ + "▁Kierkegaard", + -14.934540748596191 + ], + [ + "▁Gretel", + -14.934547424316406 + ], + [ + "▁unencrypted", + -14.934569358825684 + ], + [ + "▁HRA", + -14.934605598449707 + ], + [ + "SST", + -14.934638023376465 + ], + [ + "▁marquis", + -14.934675216674805 + ], + [ + "▁cutscenes", + -14.93468189239502 + ], + [ + "APT", + -14.9346923828125 + ], + [ + "▁Segura", + -14.934693336486816 + ], + [ + "▁DAA", + -14.934699058532715 + ], + [ + "1875", + -14.934738159179688 + ], + [ + "▁Fini", + -14.93475341796875 + ], + [ + "indie", + -14.934772491455078 + ], + [ + "▁Seacrest", + -14.93480110168457 + ], + [ + "▁ascorbic", + -14.934802055358887 + ], + [ + "▁QVC", + -14.934805870056152 + ], + [ + "iflora", + -14.934808731079102 + ], + [ + "▁unquestioned", + -14.934840202331543 + ], + [ + "▁reorganisation", + -14.934842109680176 + ], + [ + "▁reparation", + -14.934867858886719 + ], + [ + "elka", + -14.934885025024414 + ], + [ + "▁superconducting", + -14.934898376464844 + ], + [ + "▁Morningside", + -14.934903144836426 + ], + [ + "▁Vira", + -14.934907913208008 + ], + [ + "▁valiantly", + -14.934929847717285 + ], + [ + "▁Beaulieu", + -14.934931755065918 + ], + [ + "▁Natale", + -14.934982299804688 + ], + [ + "nord", + -14.934992790222168 + ], + [ + "▁Engr", + -14.935002326965332 + ], + [ + "elski", + -14.935013771057129 + ], + [ + "▁Cascadia", + -14.935029029846191 + ], + [ + "▁Cerrito", + -14.935087203979492 + ], + [ + "▁cortico", + -14.935123443603516 + ], + [ + "▁argan", + -14.935125350952148 + ], + [ + "▁Usb", + -14.935133934020996 + ], + [ + "▁пре", + -14.935168266296387 + ], + [ + "▁Carrefour", + -14.935190200805664 + ], + [ + "▁Bhar", + -14.935192108154297 + ], + [ + "▁metronome", + -14.935260772705078 + ], + [ + "Arte", + -14.935266494750977 + ], + [ + "▁Ecosystems", + -14.935285568237305 + ], + [ + "▁innately", + -14.935332298278809 + ], + [ + "Brick", + -14.935336112976074 + ], + [ + "▁counterclaim", + -14.935359001159668 + ], + [ + "▁Torpedo", + -14.935365676879883 + ], + [ + "▁swampy", + -14.935370445251465 + ], + [ + "wasn", + -14.93537425994873 + ], + [ + "▁Tempur", + -14.935403823852539 + ], + [ + "Huh", + -14.935420036315918 + ], + [ + "▁Chronograph", + -14.935442924499512 + ], + [ + "hito", + -14.93545913696289 + ], + [ + "CPD", + -14.935468673706055 + ], + [ + "Discount", + -14.935468673706055 + ], + [ + "▁Anthropologie", + -14.935479164123535 + ], + [ + "pré", + -14.935500144958496 + ], + [ + "cracking", + -14.935506820678711 + ], + [ + "omia", + -14.935522079467773 + ], + [ + "vado", + -14.935523986816406 + ], + [ + "▁businesspeople", + -14.935532569885254 + ], + [ + "Trading", + -14.935537338256836 + ], + [ + "▁Compendium", + -14.935540199279785 + ], + [ + "关", + -14.935561180114746 + ], + [ + "▁£23", + -14.93563461303711 + ], + [ + "▁Crème", + -14.935635566711426 + ], + [ + "tournament", + -14.935660362243652 + ], + [ + "risco", + -14.935665130615234 + ], + [ + "▁Peirce", + -14.935667037963867 + ], + [ + "▁Nikolas", + -14.935687065124512 + ], + [ + "▁Marigold", + -14.935718536376953 + ], + [ + "▁zwischen", + -14.935741424560547 + ], + [ + "▁speciation", + -14.935802459716797 + ], + [ + "▁versi", + -14.935812950134277 + ], + [ + "▁Veeam", + -14.93581485748291 + ], + [ + "▁ordinal", + -14.935816764831543 + ], + [ + "▁Jami", + -14.935831069946289 + ], + [ + "▁MILLER", + -14.935853958129883 + ], + [ + "▁WEATHER", + -14.935890197753906 + ], + [ + "▁powerlessness", + -14.935893058776855 + ], + [ + "▁Quilted", + -14.935896873474121 + ], + [ + "ュ", + -14.935901641845703 + ], + [ + "▁synchronizing", + -14.93590259552002 + ], + [ + "▁Endocrine", + -14.935929298400879 + ], + [ + "Donna", + -14.93593978881836 + ], + [ + "baseball", + -14.935945510864258 + ], + [ + "▁Celest", + -14.935959815979004 + ], + [ + "▁nueva", + -14.93596363067627 + ], + [ + "Popular", + -14.93600082397461 + ], + [ + "ladies", + -14.936036109924316 + ], + [ + "▁concubine", + -14.936053276062012 + ], + [ + "▁UNRWA", + -14.936078071594238 + ], + [ + "▁rumination", + -14.936084747314453 + ], + [ + "Carrie", + -14.936131477355957 + ], + [ + "▁INTERVIEW", + -14.936142921447754 + ], + [ + "▁Burris", + -14.936151504516602 + ], + [ + "▁Recurring", + -14.936153411865234 + ], + [ + "UID", + -14.936161041259766 + ], + [ + "lgar", + -14.936172485351562 + ], + [ + "itary", + -14.936226844787598 + ], + [ + "▁Dionne", + -14.936237335205078 + ], + [ + "▁handicapper", + -14.936321258544922 + ], + [ + "▁lookalike", + -14.936322212219238 + ], + [ + "▁Valeri", + -14.93632984161377 + ], + [ + "▁Dulce", + -14.936332702636719 + ], + [ + "Mech", + -14.936336517333984 + ], + [ + "oohoo", + -14.936348915100098 + ], + [ + "▁Okada", + -14.936356544494629 + ], + [ + "▁illegality", + -14.936376571655273 + ], + [ + "▁strutting", + -14.936385154724121 + ], + [ + "Festival", + -14.936397552490234 + ], + [ + "▁MUT", + -14.936424255371094 + ], + [ + "zug", + -14.936517715454102 + ], + [ + "▁Strei", + -14.936541557312012 + ], + [ + "▁rumblings", + -14.936543464660645 + ], + [ + "▁Agave", + -14.936566352844238 + ], + [ + "▁generalised", + -14.936593055725098 + ], + [ + "▁bemoan", + -14.936594009399414 + ], + [ + "▁interlinked", + -14.936623573303223 + ], + [ + "▁Permaculture", + -14.936634063720703 + ], + [ + "▁Saracens", + -14.93663501739502 + ], + [ + "JG", + -14.93667984008789 + ], + [ + "▁colonisation", + -14.93669319152832 + ], + [ + "▁debian", + -14.93670654296875 + ], + [ + "▁splen", + -14.936765670776367 + ], + [ + "ESI", + -14.936768531799316 + ], + [ + "▁rewatch", + -14.936776161193848 + ], + [ + "▁2°", + -14.936777114868164 + ], + [ + "▁gta", + -14.93677806854248 + ], + [ + "IZZ", + -14.936797142028809 + ], + [ + "▁Sitemap", + -14.936803817749023 + ], + [ + "▁flout", + -14.936812400817871 + ], + [ + "▁Magne", + -14.93686294555664 + ], + [ + "Porter", + -14.936868667602539 + ], + [ + "decyl", + -14.936885833740234 + ], + [ + "건", + -14.936891555786133 + ], + [ + "▁Alcoholism", + -14.93689250946045 + ], + [ + "▁Vaz", + -14.936895370483398 + ], + [ + "▁Descargar", + -14.936911582946777 + ], + [ + "▁Moncler", + -14.93691349029541 + ], + [ + "▁Abner", + -14.936917304992676 + ], + [ + "▁Mythic", + -14.936939239501953 + ], + [ + "▁Airmen", + -14.936956405639648 + ], + [ + "▁quadriceps", + -14.936991691589355 + ], + [ + "▁GAT", + -14.937002182006836 + ], + [ + "▁Transcendental", + -14.937029838562012 + ], + [ + "▁Cockpit", + -14.937049865722656 + ], + [ + "▁ALTER", + -14.937150955200195 + ], + [ + "zoni", + -14.937155723571777 + ], + [ + "▁VCD", + -14.937162399291992 + ], + [ + "▁equipo", + -14.93720817565918 + ], + [ + "▁songstress", + -14.937228202819824 + ], + [ + "▁COMES", + -14.937231063842773 + ], + [ + "cologist", + -14.937246322631836 + ], + [ + "dependence", + -14.937275886535645 + ], + [ + "▁XBox", + -14.937281608581543 + ], + [ + "▁polluters", + -14.937287330627441 + ], + [ + "▁Capella", + -14.937350273132324 + ], + [ + "▁Tyree", + -14.93736457824707 + ], + [ + "▁Dusseldorf", + -14.93736743927002 + ], + [ + "▁663", + -14.937466621398926 + ], + [ + "southern", + -14.937471389770508 + ], + [ + "配", + -14.937475204467773 + ], + [ + "▁practic", + -14.937509536743164 + ], + [ + "▁Scoot", + -14.937530517578125 + ], + [ + "▁bleu", + -14.937540054321289 + ], + [ + "recurring", + -14.9375638961792 + ], + [ + "ński", + -14.937589645385742 + ], + [ + "▁Halley", + -14.937596321105957 + ], + [ + "▁Sprayer", + -14.937596321105957 + ], + [ + "chau", + -14.937597274780273 + ], + [ + "▁libretto", + -14.937662124633789 + ], + [ + "▁691", + -14.937721252441406 + ], + [ + "▁653", + -14.937725067138672 + ], + [ + "▁BOO", + -14.93776798248291 + ], + [ + "Publication", + -14.937796592712402 + ], + [ + "▁CIL", + -14.937801361083984 + ], + [ + "▁Produkt", + -14.9378080368042 + ], + [ + "▁Constraints", + -14.937809944152832 + ], + [ + "▁gad", + -14.937829971313477 + ], + [ + "▁Gallego", + -14.937841415405273 + ], + [ + "UBA", + -14.93787670135498 + ], + [ + "▁agonising", + -14.937878608703613 + ], + [ + "ophone", + -14.937897682189941 + ], + [ + "▁1492", + -14.937929153442383 + ], + [ + "▁Lampard", + -14.937942504882812 + ], + [ + "▁Sangam", + -14.937983512878418 + ], + [ + "▁Yojana", + -14.937987327575684 + ], + [ + "washer", + -14.938015937805176 + ], + [ + "러", + -14.938018798828125 + ], + [ + "▁Fireball", + -14.93806266784668 + ], + [ + "▁654", + -14.938067436218262 + ], + [ + "▁Ingham", + -14.938076972961426 + ], + [ + "ática", + -14.938080787658691 + ], + [ + "Stud", + -14.938087463378906 + ], + [ + "еѕѕ", + -14.938154220581055 + ], + [ + "rrigan", + -14.938163757324219 + ], + [ + "▁Leverkusen", + -14.938169479370117 + ], + [ + "▁quilter", + -14.938201904296875 + ], + [ + "soup", + -14.938202857971191 + ], + [ + "▁Screenshots", + -14.93820858001709 + ], + [ + "▁Amis", + -14.93821907043457 + ], + [ + "▁McNabb", + -14.938230514526367 + ], + [ + "▁snarling", + -14.938257217407227 + ], + [ + "▁seamen", + -14.938261985778809 + ], + [ + "▁creaminess", + -14.938276290893555 + ], + [ + "▁BRIT", + -14.938283920288086 + ], + [ + "▁perma", + -14.938285827636719 + ], + [ + "imar", + -14.9382905960083 + ], + [ + "grit", + -14.938353538513184 + ], + [ + "▁fader", + -14.938379287719727 + ], + [ + "Addo", + -14.938387870788574 + ], + [ + "▁perioperative", + -14.938394546508789 + ], + [ + "▁Lewinsky", + -14.938414573669434 + ], + [ + "START", + -14.938422203063965 + ], + [ + "▁teachable", + -14.938422203063965 + ], + [ + "annie", + -14.93842601776123 + ], + [ + "开", + -14.938453674316406 + ], + [ + "▁Boyne", + -14.938502311706543 + ], + [ + "▁Litho", + -14.938522338867188 + ], + [ + "▁Rothman", + -14.938552856445312 + ], + [ + "▁GNC", + -14.938554763793945 + ], + [ + "▁STORM", + -14.938578605651855 + ], + [ + "▁Hangout", + -14.938581466674805 + ], + [ + "▁Jacky", + -14.938607215881348 + ], + [ + "▁Matlock", + -14.938621520996094 + ], + [ + "▁mortise", + -14.938639640808105 + ], + [ + "▁Montag", + -14.938645362854004 + ], + [ + "▁guaranty", + -14.938645362854004 + ], + [ + "▁1755", + -14.938650131225586 + ], + [ + "▁motherland", + -14.9386568069458 + ], + [ + "RSI", + -14.938671112060547 + ], + [ + "acrylic", + -14.938706398010254 + ], + [ + "ANTE", + -14.93871784210205 + ], + [ + "▁Unseen", + -14.93873119354248 + ], + [ + "OLOGI", + -14.938751220703125 + ], + [ + "▁brian", + -14.938819885253906 + ], + [ + "▁Acapulco", + -14.938834190368652 + ], + [ + "Chocolate", + -14.938843727111816 + ], + [ + "▁Introduces", + -14.938861846923828 + ], + [ + "▁Suter", + -14.938885688781738 + ], + [ + "▁Amaya", + -14.93893814086914 + ], + [ + "▁Sissy", + -14.938944816589355 + ], + [ + "Beijing", + -14.938956260681152 + ], + [ + "▁Piscine", + -14.938960075378418 + ], + [ + "oğlu", + -14.938963890075684 + ], + [ + "▁Mears", + -14.938982963562012 + ], + [ + "▁nape", + -14.938986778259277 + ], + [ + "▁Ero", + -14.939014434814453 + ], + [ + "▁pith", + -14.939017295837402 + ], + [ + "▁Corrected", + -14.93902587890625 + ], + [ + "▁pluralistic", + -14.939031600952148 + ], + [ + "▁Qld", + -14.939066886901855 + ], + [ + "▁erg", + -14.939069747924805 + ], + [ + "Russell", + -14.939085006713867 + ], + [ + "ικ", + -14.939087867736816 + ], + [ + "▁FEBRUARY", + -14.93913459777832 + ], + [ + "▁falsification", + -14.939172744750977 + ], + [ + "▁insulators", + -14.939193725585938 + ], + [ + "▁haggling", + -14.93921184539795 + ], + [ + "▁FOS", + -14.939230918884277 + ], + [ + "▁Ganz", + -14.939238548278809 + ], + [ + "▁NHK", + -14.939262390136719 + ], + [ + "▁herbivores", + -14.939273834228516 + ], + [ + "▁MDT", + -14.939274787902832 + ], + [ + "▁Tiwari", + -14.939276695251465 + ], + [ + "▁BRU", + -14.939282417297363 + ], + [ + "应", + -14.93930721282959 + ], + [ + "▁disorienting", + -14.939308166503906 + ], + [ + "▁Kroll", + -14.93937873840332 + ], + [ + "▁Requiring", + -14.939407348632812 + ], + [ + "Murphy", + -14.939414024353027 + ], + [ + "▁ACTIVITY", + -14.939414978027344 + ], + [ + "▁spiteful", + -14.939417839050293 + ], + [ + "▁immunosuppressive", + -14.939435958862305 + ], + [ + "▁Heinlein", + -14.93948745727539 + ], + [ + "▁Islay", + -14.939491271972656 + ], + [ + "▁Negotiate", + -14.9395112991333 + ], + [ + "源", + -14.939543724060059 + ], + [ + "▁Tomi", + -14.939610481262207 + ], + [ + "▁Carrillo", + -14.93966293334961 + ], + [ + "▁milkweed", + -14.939675331115723 + ], + [ + "▁Bruin", + -14.939689636230469 + ], + [ + "▁scumbag", + -14.93973159790039 + ], + [ + "topper", + -14.939739227294922 + ], + [ + "▁moisten", + -14.939777374267578 + ], + [ + "▁Marshfield", + -14.939791679382324 + ], + [ + "▁consultancies", + -14.939803123474121 + ], + [ + "▁Busby", + -14.939806938171387 + ], + [ + "settlement", + -14.939824104309082 + ], + [ + "▁chuffed", + -14.939825057983398 + ], + [ + "▁menagerie", + -14.939826011657715 + ], + [ + "gher", + -14.939855575561523 + ], + [ + "▁Hagerstown", + -14.939863204956055 + ], + [ + "▁restate", + -14.939881324768066 + ], + [ + "▁Reinhard", + -14.939895629882812 + ], + [ + "▁premade", + -14.93997859954834 + ], + [ + "▁Krabi", + -14.939982414245605 + ], + [ + "▁Polanski", + -14.939982414245605 + ], + [ + "▁Bannister", + -14.939990043640137 + ], + [ + "oidea", + -14.940004348754883 + ], + [ + "▁nosy", + -14.940007209777832 + ], + [ + "▁995", + -14.940032958984375 + ], + [ + "▁peacetime", + -14.94010066986084 + ], + [ + "▁lemony", + -14.940105438232422 + ], + [ + "▁swig", + -14.940155029296875 + ], + [ + "▁ravishing", + -14.940176010131836 + ], + [ + "▁peony", + -14.94021224975586 + ], + [ + "snack", + -14.940254211425781 + ], + [ + "ucu", + -14.940266609191895 + ], + [ + "▁spilt", + -14.940279006958008 + ], + [ + "Coal", + -14.940281867980957 + ], + [ + "▁CARA", + -14.940293312072754 + ], + [ + "▁Nichole", + -14.9403076171875 + ], + [ + "██", + -14.940326690673828 + ], + [ + "Hammer", + -14.940338134765625 + ], + [ + "▁igloo", + -14.940359115600586 + ], + [ + "▁josh", + -14.940361022949219 + ], + [ + "▁analytically", + -14.940389633178711 + ], + [ + "Cris", + -14.940402030944824 + ], + [ + "▁chamfer", + -14.940428733825684 + ], + [ + "▁Gorham", + -14.940438270568848 + ], + [ + "▁Rayner", + -14.940442085266113 + ], + [ + "threading", + -14.940461158752441 + ], + [ + "▁Seaton", + -14.940464973449707 + ], + [ + "▁883", + -14.940470695495605 + ], + [ + "▁REMOVE", + -14.940473556518555 + ], + [ + "▁arbitrate", + -14.940496444702148 + ], + [ + "此", + -14.94050121307373 + ], + [ + "Pine", + -14.940553665161133 + ], + [ + "▁Glau", + -14.940577507019043 + ], + [ + "Whitney", + -14.940649032592773 + ], + [ + "▁Mehra", + -14.940652847290039 + ], + [ + "▁METRO", + -14.940682411193848 + ], + [ + "▁dewatering", + -14.940693855285645 + ], + [ + "▁TOOLS", + -14.940715789794922 + ], + [ + "SLE", + -14.940757751464844 + ], + [ + "Soon", + -14.940762519836426 + ], + [ + "▁Zai", + -14.940773010253906 + ], + [ + "▁synovial", + -14.940779685974121 + ], + [ + "▁Simul", + -14.940800666809082 + ], + [ + "▁Vier", + -14.940807342529297 + ], + [ + "inex", + -14.94080924987793 + ], + [ + "▁Oblast", + -14.940827369689941 + ], + [ + "▁Phrases", + -14.940841674804688 + ], + [ + "▁lozenge", + -14.940855979919434 + ], + [ + "▁GNSS", + -14.940877914428711 + ], + [ + "sketch", + -14.940912246704102 + ], + [ + "Configuration", + -14.94099235534668 + ], + [ + "▁RICO", + -14.941000938415527 + ], + [ + "▁blanche", + -14.941014289855957 + ], + [ + "▁thorax", + -14.941040992736816 + ], + [ + "▁powerplant", + -14.941041946411133 + ], + [ + "▁incentivise", + -14.941043853759766 + ], + [ + "▁Chaudhary", + -14.941056251525879 + ], + [ + "▁Eminence", + -14.94111156463623 + ], + [ + "urah", + -14.941123962402344 + ], + [ + "cija", + -14.941166877746582 + ], + [ + "chil", + -14.941168785095215 + ], + [ + "▁Bhim", + -14.941176414489746 + ], + [ + "▁courgette", + -14.941195487976074 + ], + [ + "▁corolla", + -14.941198348999023 + ], + [ + "▁identi", + -14.941213607788086 + ], + [ + "koy", + -14.941224098205566 + ], + [ + "enberry", + -14.941269874572754 + ], + [ + "Desktop", + -14.941272735595703 + ], + [ + "▁cAMP", + -14.941304206848145 + ], + [ + "▁misrepresenting", + -14.941304206848145 + ], + [ + "▁beekeeper", + -14.941352844238281 + ], + [ + "Regulation", + -14.941400527954102 + ], + [ + "▁Began", + -14.941424369812012 + ], + [ + "£4", + -14.941425323486328 + ], + [ + "▁Spyware", + -14.94144058227539 + ], + [ + "brig", + -14.941446304321289 + ], + [ + "▁dusky", + -14.94146728515625 + ], + [ + "Triple", + -14.941496849060059 + ], + [ + "skull", + -14.941533088684082 + ], + [ + "▁fungicide", + -14.94154167175293 + ], + [ + "▁VANCOUVER", + -14.941547393798828 + ], + [ + "▁wallowing", + -14.9415864944458 + ], + [ + "▁ominously", + -14.941601753234863 + ], + [ + "▁soiree", + -14.941603660583496 + ], + [ + "▁та", + -14.941606521606445 + ], + [ + "당", + -14.941609382629395 + ], + [ + "▁Maidenhead", + -14.941628456115723 + ], + [ + "▁pvp", + -14.941633224487305 + ], + [ + "engined", + -14.94166374206543 + ], + [ + "▁dendrite", + -14.941673278808594 + ], + [ + "二", + -14.941747665405273 + ], + [ + "PRS", + -14.94174861907959 + ], + [ + "▁OSD", + -14.941751480102539 + ], + [ + "▁Hermosa", + -14.941764831542969 + ], + [ + "▁Contempor", + -14.941781997680664 + ], + [ + "த", + -14.941824913024902 + ], + [ + "▁Lombardo", + -14.941855430603027 + ], + [ + "▁lucked", + -14.941856384277344 + ], + [ + "▁hookers", + -14.941875457763672 + ], + [ + "▁ductless", + -14.941926002502441 + ], + [ + "디", + -14.941949844360352 + ], + [ + "▁parenthesis", + -14.941975593566895 + ], + [ + "Khal", + -14.941997528076172 + ], + [ + "▁anaphylaxis", + -14.942012786865234 + ], + [ + "▁DPR", + -14.942056655883789 + ], + [ + "▁maggots", + -14.942086219787598 + ], + [ + "▁756", + -14.942214965820312 + ], + [ + "Labour", + -14.942270278930664 + ], + [ + "▁mish", + -14.942378997802734 + ], + [ + "Stress", + -14.942386627197266 + ], + [ + "▁Galvin", + -14.94240951538086 + ], + [ + "▁Wallingford", + -14.942416191101074 + ], + [ + "▁Mui", + -14.942422866821289 + ], + [ + "▁spurned", + -14.942424774169922 + ], + [ + "umbu", + -14.942481994628906 + ], + [ + "▁Wasatch", + -14.942511558532715 + ], + [ + "▁pharmacokinetic", + -14.942534446716309 + ], + [ + "▁pairwise", + -14.942567825317383 + ], + [ + "PSI", + -14.942590713500977 + ], + [ + "OCC", + -14.942591667175293 + ], + [ + "▁STUDENTS", + -14.942627906799316 + ], + [ + "▁thoroughness", + -14.942633628845215 + ], + [ + "▁macaroon", + -14.942654609680176 + ], + [ + "▁arrayed", + -14.94266128540039 + ], + [ + "▁Identifiable", + -14.942692756652832 + ], + [ + "▁Patchwork", + -14.942737579345703 + ], + [ + "▁precipitous", + -14.942741394042969 + ], + [ + "Blend", + -14.94285774230957 + ], + [ + "▁Lorena", + -14.942862510681152 + ], + [ + "▁NDIS", + -14.942863464355469 + ], + [ + "▁ம", + -14.942890167236328 + ], + [ + "▁NVMe", + -14.942906379699707 + ], + [ + "▁GSD", + -14.942953109741211 + ], + [ + "leaved", + -14.942968368530273 + ], + [ + "aemic", + -14.942988395690918 + ], + [ + "▁Bhushan", + -14.943002700805664 + ], + [ + "▁Feuer", + -14.943017959594727 + ], + [ + "▁Rosenfeld", + -14.94301986694336 + ], + [ + "▁plausibility", + -14.94301986694336 + ], + [ + "▁flyby", + -14.943142890930176 + ], + [ + "nomist", + -14.943161964416504 + ], + [ + "▁Aspiration", + -14.943180084228516 + ], + [ + "▁vb", + -14.943222045898438 + ], + [ + "rican", + -14.943238258361816 + ], + [ + "▁Typo", + -14.943243026733398 + ], + [ + "▁snowboarders", + -14.94327449798584 + ], + [ + "▁Doughnut", + -14.943302154541016 + ], + [ + "▁papacy", + -14.943376541137695 + ], + [ + "SMEs", + -14.943378448486328 + ], + [ + "▁washrooms", + -14.9434175491333 + ], + [ + "▁Semifinal", + -14.94343376159668 + ], + [ + "anju", + -14.943437576293945 + ], + [ + "stored", + -14.94345474243164 + ], + [ + "▁charmingly", + -14.943473815917969 + ], + [ + "▁succesful", + -14.94348430633545 + ], + [ + "▁toughen", + -14.943490982055664 + ], + [ + "▁Mizuno", + -14.943533897399902 + ], + [ + "état", + -14.943547248840332 + ], + [ + "▁Lozano", + -14.943583488464355 + ], + [ + "▁gimmicky", + -14.943639755249023 + ], + [ + "Liberty", + -14.943641662597656 + ], + [ + "Episode", + -14.943685531616211 + ], + [ + "OLI", + -14.943700790405273 + ], + [ + "ਾ", + -14.943737983703613 + ], + [ + "▁Musketeers", + -14.943737983703613 + ], + [ + "▁Wilkie", + -14.943737983703613 + ], + [ + "▁unrepentant", + -14.943737983703613 + ], + [ + "▁rowers", + -14.943742752075195 + ], + [ + "▁Phae", + -14.943801879882812 + ], + [ + "▁KAY", + -14.943805694580078 + ], + [ + "▁Vardy", + -14.943812370300293 + ], + [ + "▁OPTION", + -14.94384765625 + ], + [ + "▁LAMB", + -14.943848609924316 + ], + [ + "NRC", + -14.94385051727295 + ], + [ + "▁mitosis", + -14.943859100341797 + ], + [ + "▁Undertaking", + -14.94387149810791 + ], + [ + "ʿ", + -14.943877220153809 + ], + [ + "▁Palate", + -14.943878173828125 + ], + [ + "glucan", + -14.943903923034668 + ], + [ + "▁Indemnity", + -14.943914413452148 + ], + [ + "lii", + -14.943915367126465 + ], + [ + "Glad", + -14.94396686553955 + ], + [ + "Thi", + -14.9439697265625 + ], + [ + "▁ostracized", + -14.943991661071777 + ], + [ + "▁pollster", + -14.944000244140625 + ], + [ + "▁Thiruvananthapuram", + -14.944015502929688 + ], + [ + "▁Sorority", + -14.944053649902344 + ], + [ + "wheelers", + -14.944055557250977 + ], + [ + "▁shipwrecks", + -14.944083213806152 + ], + [ + "▁Acqua", + -14.944093704223633 + ], + [ + "▁Unpublished", + -14.944108963012695 + ], + [ + "▁mahi", + -14.944108963012695 + ], + [ + "▁Cé", + -14.944114685058594 + ], + [ + "▁Espi", + -14.944148063659668 + ], + [ + "▁Bathing", + -14.94417667388916 + ], + [ + "exception", + -14.94417953491211 + ], + [ + "▁Maar", + -14.94421100616455 + ], + [ + "ENCY", + -14.944249153137207 + ], + [ + "enaar", + -14.944265365600586 + ], + [ + "▁caudal", + -14.944356918334961 + ], + [ + "buckle", + -14.944375038146973 + ], + [ + "▁Steril", + -14.944376945495605 + ], + [ + "▁Spel", + -14.94444465637207 + ], + [ + "▁interventionist", + -14.944449424743652 + ], + [ + "▁Outgoing", + -14.944570541381836 + ], + [ + "offset", + -14.944580078125 + ], + [ + "▁Minion", + -14.944602966308594 + ], + [ + "▁Zappos", + -14.944609642028809 + ], + [ + "▁DONT", + -14.944616317749023 + ], + [ + "▁presbyter", + -14.944622039794922 + ], + [ + "▁moen", + -14.944633483886719 + ], + [ + "▁tiffany", + -14.94468879699707 + ], + [ + "▁wobbling", + -14.94478988647461 + ], + [ + "▁Bonded", + -14.944830894470215 + ], + [ + "▁£21", + -14.944845199584961 + ], + [ + "▁Iyengar", + -14.94484806060791 + ], + [ + "▁semicolon", + -14.944860458374023 + ], + [ + "▁10−", + -14.944865226745605 + ], + [ + "coastal", + -14.94489860534668 + ], + [ + "FUN", + -14.944901466369629 + ], + [ + "rizo", + -14.944926261901855 + ], + [ + "▁Geologist", + -14.944971084594727 + ], + [ + "urum", + -14.944974899291992 + ], + [ + "indicator", + -14.944987297058105 + ], + [ + "▁interconnections", + -14.945022583007812 + ], + [ + "▁manila", + -14.945030212402344 + ], + [ + "▁inexorable", + -14.945036888122559 + ], + [ + "▁infamy", + -14.945038795471191 + ], + [ + "▁Brookdale", + -14.945075988769531 + ], + [ + "▁unraveled", + -14.945084571838379 + ], + [ + "▁Chica", + -14.945088386535645 + ], + [ + "▁Donne", + -14.94509506225586 + ], + [ + "Lemon", + -14.94511604309082 + ], + [ + "CCR", + -14.945164680480957 + ], + [ + "▁الله", + -14.945174217224121 + ], + [ + "▁mollusc", + -14.945176124572754 + ], + [ + "Pocket", + -14.945195198059082 + ], + [ + "▁Receivable", + -14.945226669311523 + ], + [ + "▁duchess", + -14.945281982421875 + ], + [ + "▁Kowal", + -14.945286750793457 + ], + [ + "▁Goldilocks", + -14.945327758789062 + ], + [ + "▁gonorrhea", + -14.945340156555176 + ], + [ + "▁CGC", + -14.945358276367188 + ], + [ + "▁Whipple", + -14.945361137390137 + ], + [ + "▁riverbed", + -14.945363998413086 + ], + [ + "Yep", + -14.94540023803711 + ], + [ + "▁uncensored", + -14.945403099060059 + ], + [ + "▁wayfair", + -14.945456504821777 + ], + [ + "▁nik", + -14.945462226867676 + ], + [ + "▁Pianist", + -14.945464134216309 + ], + [ + "▁congratulatory", + -14.945476531982422 + ], + [ + "ooey", + -14.945487022399902 + ], + [ + "▁housemate", + -14.945500373840332 + ], + [ + "australia", + -14.94554328918457 + ], + [ + "▁relearn", + -14.945545196533203 + ], + [ + "anze", + -14.94555377960205 + ], + [ + "▁Metaphysics", + -14.945576667785645 + ], + [ + "▁linguistically", + -14.94558048248291 + ], + [ + "uctor", + -14.945602416992188 + ], + [ + "▁Artur", + -14.945606231689453 + ], + [ + "▁726", + -14.945643424987793 + ], + [ + "▁Alger", + -14.94565200805664 + ], + [ + "▁Fuss", + -14.9456787109375 + ], + [ + "▁Chocolat", + -14.945685386657715 + ], + [ + "▁Fresco", + -14.945687294006348 + ], + [ + "▁Napkin", + -14.945695877075195 + ], + [ + "▁stammer", + -14.945706367492676 + ], + [ + "▁Lentil", + -14.945710182189941 + ], + [ + "▁quark", + -14.945756912231445 + ], + [ + "▁Sabe", + -14.94576358795166 + ], + [ + "▁petrochemicals", + -14.94580078125 + ], + [ + "▁anoint", + -14.945809364318848 + ], + [ + "▁sleeker", + -14.945822715759277 + ], + [ + "▁Bick", + -14.94584846496582 + ], + [ + "ntino", + -14.945855140686035 + ], + [ + "▁Lazer", + -14.945878982543945 + ], + [ + "▁armaments", + -14.945894241333008 + ], + [ + "▁Scalable", + -14.94591999053955 + ], + [ + "▁PAGES", + -14.945972442626953 + ], + [ + "▁Extravaganza", + -14.946000099182129 + ], + [ + "▁Pacino", + -14.946026802062988 + ], + [ + "▁lycra", + -14.946074485778809 + ], + [ + "▁cig", + -14.946081161499023 + ], + [ + "kse", + -14.946091651916504 + ], + [ + "▁Flicker", + -14.946146011352539 + ], + [ + "▁dotting", + -14.946157455444336 + ], + [ + "smoker", + -14.946183204650879 + ], + [ + "▁Molotov", + -14.946188926696777 + ], + [ + "Asset", + -14.946197509765625 + ], + [ + "▁prenuptial", + -14.946210861206055 + ], + [ + "▁Axon", + -14.94622802734375 + ], + [ + "▁rata", + -14.946308135986328 + ], + [ + "▁superyacht", + -14.94636058807373 + ], + [ + "▁civ", + -14.946398735046387 + ], + [ + "Higher", + -14.946449279785156 + ], + [ + "▁outcasts", + -14.9464693069458 + ], + [ + "▁י", + -14.9464693069458 + ], + [ + "▁Khrushchev", + -14.946476936340332 + ], + [ + "zmo", + -14.946520805358887 + ], + [ + "▁Fila", + -14.946535110473633 + ], + [ + "▁DEMO", + -14.946541786193848 + ], + [ + "▁McDougall", + -14.94656753540039 + ], + [ + "▁676", + -14.946595191955566 + ], + [ + "▁sedition", + -14.946676254272461 + ], + [ + "▁vicarious", + -14.946715354919434 + ], + [ + "▁Dwyane", + -14.946717262268066 + ], + [ + "▁Revolving", + -14.946731567382812 + ], + [ + "▁Assyrians", + -14.94675064086914 + ], + [ + "▁faeces", + -14.946757316589355 + ], + [ + "▁Wham", + -14.946769714355469 + ], + [ + "▁ע", + -14.946778297424316 + ], + [ + "acro", + -14.946829795837402 + ], + [ + "▁Plagiarism", + -14.946844100952148 + ], + [ + "▁IOTA", + -14.946917533874512 + ], + [ + "スト", + -14.946918487548828 + ], + [ + "▁Shook", + -14.946927070617676 + ], + [ + "passionate", + -14.946969032287598 + ], + [ + "ław", + -14.946969985961914 + ], + [ + "▁Lamin", + -14.946976661682129 + ], + [ + "VERY", + -14.946991920471191 + ], + [ + "▁wizardry", + -14.94699478149414 + ], + [ + "CFP", + -14.94703197479248 + ], + [ + "▁necktie", + -14.94703197479248 + ], + [ + "▁LEP", + -14.94704532623291 + ], + [ + "位置", + -14.947047233581543 + ], + [ + "▁mockups", + -14.947099685668945 + ], + [ + "1896", + -14.947110176086426 + ], + [ + "nally", + -14.94711685180664 + ], + [ + "▁Rij", + -14.947148323059082 + ], + [ + "▁husks", + -14.947157859802246 + ], + [ + "ZX", + -14.947222709655762 + ], + [ + "▁Missionaries", + -14.947244644165039 + ], + [ + "▁snide", + -14.947249412536621 + ], + [ + "▁EXIST", + -14.947258949279785 + ], + [ + "harmony", + -14.947311401367188 + ], + [ + "▁Kres", + -14.947319984436035 + ], + [ + "▁SEG", + -14.947343826293945 + ], + [ + "▁Hoog", + -14.947370529174805 + ], + [ + "▁stein", + -14.947389602661133 + ], + [ + "▁Plasmodium", + -14.947463989257812 + ], + [ + "▁Williamstown", + -14.94747543334961 + ], + [ + "▁Boch", + -14.947498321533203 + ], + [ + "Herald", + -14.94751262664795 + ], + [ + "▁gynecology", + -14.947526931762695 + ], + [ + "criticism", + -14.947553634643555 + ], + [ + "▁Burnout", + -14.947580337524414 + ], + [ + "▁Wausau", + -14.947615623474121 + ], + [ + "▁Joc", + -14.94765853881836 + ], + [ + "▁Ratner", + -14.947665214538574 + ], + [ + "aute", + -14.947675704956055 + ], + [ + "▁debriefing", + -14.947675704956055 + ], + [ + "▁Poughkeepsie", + -14.947678565979004 + ], + [ + "▁sintering", + -14.94769287109375 + ], + [ + "▁checkboxes", + -14.947697639465332 + ], + [ + "discuss", + -14.947713851928711 + ], + [ + "▁Terr", + -14.947737693786621 + ], + [ + "▁kickass", + -14.94774341583252 + ], + [ + "harmonic", + -14.947797775268555 + ], + [ + "▁conservatories", + -14.94780445098877 + ], + [ + "▁Motorway", + -14.947806358337402 + ], + [ + "▁Barren", + -14.94782829284668 + ], + [ + "▁reformat", + -14.947835922241211 + ], + [ + "▁Laminated", + -14.947845458984375 + ], + [ + "▁Cranbrook", + -14.947859764099121 + ], + [ + "▁cil", + -14.947860717773438 + ], + [ + "▁unrequited", + -14.947881698608398 + ], + [ + "lisi", + -14.947936058044434 + ], + [ + "▁Customizable", + -14.947944641113281 + ], + [ + "▁trendsetter", + -14.947973251342773 + ], + [ + "ariah", + -14.947988510131836 + ], + [ + "▁Excitement", + -14.947998046875 + ], + [ + "Lots", + -14.948014259338379 + ], + [ + "▁Mergers", + -14.948017120361328 + ], + [ + "configure", + -14.948050498962402 + ], + [ + "▁Banbury", + -14.948065757751465 + ], + [ + "▁weiter", + -14.94807243347168 + ], + [ + "▁ZONE", + -14.948091506958008 + ], + [ + "▁Accutane", + -14.948214530944824 + ], + [ + "sexuality", + -14.94822883605957 + ], + [ + "▁resound", + -14.948271751403809 + ], + [ + "über", + -14.948280334472656 + ], + [ + "▁erythema", + -14.948286056518555 + ], + [ + "▁USERS", + -14.948297500610352 + ], + [ + "▁perked", + -14.948297500610352 + ], + [ + "▁glial", + -14.948310852050781 + ], + [ + "▁YTD", + -14.948326110839844 + ], + [ + "め", + -14.94832706451416 + ], + [ + "▁Insure", + -14.948349952697754 + ], + [ + "▁nim", + -14.948356628417969 + ], + [ + "▁Swear", + -14.94836711883545 + ], + [ + "▁outstrip", + -14.948391914367676 + ], + [ + "▁jeopardise", + -14.948400497436523 + ], + [ + "▁FIM", + -14.948444366455078 + ], + [ + "hild", + -14.948532104492188 + ], + [ + "▁triangulation", + -14.948539733886719 + ], + [ + "▁KAN", + -14.9485445022583 + ], + [ + "▁wonton", + -14.948546409606934 + ], + [ + "elmann", + -14.948554039001465 + ], + [ + "HELP", + -14.94856071472168 + ], + [ + "▁Montezuma", + -14.948590278625488 + ], + [ + "▁Turkmen", + -14.948623657226562 + ], + [ + "▁catharsis", + -14.948678970336914 + ], + [ + "prepare", + -14.94873046875 + ], + [ + "▁ACCA", + -14.948742866516113 + ], + [ + "▁Murr", + -14.948771476745605 + ], + [ + "nihil", + -14.948785781860352 + ], + [ + "▁choi", + -14.94882583618164 + ], + [ + "ông", + -14.948899269104004 + ], + [ + "warmer", + -14.9489107131958 + ], + [ + "▁Lieber", + -14.94892692565918 + ], + [ + "clearing", + -14.948935508728027 + ], + [ + "▁Bolden", + -14.948958396911621 + ], + [ + "▁Staub", + -14.948958396911621 + ], + [ + "cranial", + -14.948966979980469 + ], + [ + "▁Holla", + -14.949002265930176 + ], + [ + "▁jeopardized", + -14.94902515411377 + ], + [ + "strada", + -14.949029922485352 + ], + [ + "▁newsgroup", + -14.949049949645996 + ], + [ + "▁Impreza", + -14.949122428894043 + ], + [ + "▁miscreant", + -14.949122428894043 + ], + [ + "▁DSG", + -14.949132919311523 + ], + [ + "▁Bearcats", + -14.949145317077637 + ], + [ + "Shy", + -14.94915771484375 + ], + [ + "▁Nf", + -14.949193954467773 + ], + [ + "▁Pavers", + -14.949291229248047 + ], + [ + "graduation", + -14.94929313659668 + ], + [ + "▁roughing", + -14.949309349060059 + ], + [ + "▁uz", + -14.949321746826172 + ], + [ + "▁intermodal", + -14.9493408203125 + ], + [ + "▁BCL", + -14.949342727661133 + ], + [ + "▁McV", + -14.94936752319336 + ], + [ + "▁Avignon", + -14.949419975280762 + ], + [ + "▁FLOW", + -14.949463844299316 + ], + [ + "▁Orrin", + -14.949485778808594 + ], + [ + "▁Polio", + -14.949485778808594 + ], + [ + "▁veneration", + -14.94953727722168 + ], + [ + "▁monetizing", + -14.949556350708008 + ], + [ + "▁Lefty", + -14.949597358703613 + ], + [ + "▁Tari", + -14.949600219726562 + ], + [ + "▁azimuth", + -14.949604034423828 + ], + [ + "▁Huddle", + -14.949639320373535 + ], + [ + "▁PaaS", + -14.949688911437988 + ], + [ + "▁DNP", + -14.949691772460938 + ], + [ + "▁Sidhu", + -14.949706077575684 + ], + [ + "▁Coffman", + -14.94970989227295 + ], + [ + "heritage", + -14.94973373413086 + ], + [ + "▁Casanova", + -14.949737548828125 + ], + [ + "roga", + -14.949810981750488 + ], + [ + "Roma", + -14.94981861114502 + ], + [ + "europa", + -14.949872970581055 + ], + [ + "▁aggro", + -14.949878692626953 + ], + [ + "▁pulsar", + -14.94989013671875 + ], + [ + "▁EXCLUSION", + -14.949895858764648 + ], + [ + "lide", + -14.949918746948242 + ], + [ + "▁Daffodil", + -14.949921607971191 + ], + [ + "包括", + -14.949993133544922 + ], + [ + "▁Keswick", + -14.950002670288086 + ], + [ + "▁Detecting", + -14.950037002563477 + ], + [ + "coordinated", + -14.950057029724121 + ], + [ + "phic", + -14.95009708404541 + ], + [ + "▁Minions", + -14.950109481811523 + ], + [ + "▁remaking", + -14.95012092590332 + ], + [ + "▁DRO", + -14.950132369995117 + ], + [ + "▁dua", + -14.9501371383667 + ], + [ + "▁eminence", + -14.950142860412598 + ], + [ + "distinguish", + -14.950185775756836 + ], + [ + "glare", + -14.950206756591797 + ], + [ + "▁charmer", + -14.950206756591797 + ], + [ + "▁bulldozers", + -14.950220108032227 + ], + [ + "▁hain", + -14.950225830078125 + ], + [ + "▁AIF", + -14.950263023376465 + ], + [ + "▁conquerors", + -14.950273513793945 + ], + [ + "▁Hani", + -14.95030689239502 + ], + [ + "▁Watchtower", + -14.950356483459473 + ], + [ + "▁PVR", + -14.950414657592773 + ], + [ + "dhana", + -14.950423240661621 + ], + [ + "grounded", + -14.950430870056152 + ], + [ + "lavi", + -14.950454711914062 + ], + [ + "▁NTR", + -14.950469017028809 + ], + [ + "▁Embraer", + -14.950479507446289 + ], + [ + "Pray", + -14.950482368469238 + ], + [ + "magn", + -14.950494766235352 + ], + [ + "▁Leyton", + -14.950509071350098 + ], + [ + "▁NTC", + -14.950512886047363 + ], + [ + "▁hydrocodone", + -14.950568199157715 + ], + [ + "RUP", + -14.950590133666992 + ], + [ + "▁Sime", + -14.950697898864746 + ], + [ + "Leadership", + -14.950702667236328 + ], + [ + "NUM", + -14.950708389282227 + ], + [ + "▁puma", + -14.950714111328125 + ], + [ + "pew", + -14.950715065002441 + ], + [ + "▁interactively", + -14.950761795043945 + ], + [ + "▁mie", + -14.950764656066895 + ], + [ + "▁Turku", + -14.950796127319336 + ], + [ + "Racing", + -14.950801849365234 + ], + [ + "▁Bosses", + -14.950831413269043 + ], + [ + "▁Hugg", + -14.950835227966309 + ], + [ + "▁Fasteners", + -14.95083999633789 + ], + [ + "▁mamma", + -14.950874328613281 + ], + [ + "LTC", + -14.950891494750977 + ], + [ + "Explo", + -14.950892448425293 + ], + [ + "TEA", + -14.950945854187012 + ], + [ + "fusing", + -14.95099925994873 + ], + [ + "▁heifer", + -14.951031684875488 + ], + [ + "▁overspending", + -14.951042175292969 + ], + [ + "▁brats", + -14.951071739196777 + ], + [ + "▁Dunning", + -14.951122283935547 + ], + [ + "hian", + -14.951151847839355 + ], + [ + "▁DIR", + -14.951151847839355 + ], + [ + "▁hemlock", + -14.951153755187988 + ], + [ + "▁pinpointed", + -14.951163291931152 + ], + [ + "▁Muskoka", + -14.951179504394531 + ], + [ + "▁uninjured", + -14.951186180114746 + ], + [ + "▁fae", + -14.951194763183594 + ], + [ + "▁Metzger", + -14.951244354248047 + ], + [ + "▁Salesman", + -14.95125961303711 + ], + [ + "▁entrench", + -14.951279640197754 + ], + [ + "▁codify", + -14.951285362243652 + ], + [ + "▁Foreigners", + -14.951333999633789 + ], + [ + "ferro", + -14.95134162902832 + ], + [ + "Silva", + -14.951342582702637 + ], + [ + "▁Dier", + -14.951355934143066 + ], + [ + "▁survivability", + -14.951355934143066 + ], + [ + "▁Kojima", + -14.95137882232666 + ], + [ + "▁Brantford", + -14.951390266418457 + ], + [ + "▁resistivity", + -14.951397895812988 + ], + [ + "▁singling", + -14.95140552520752 + ], + [ + "▁JAVA", + -14.95141887664795 + ], + [ + "▁helluva", + -14.951430320739746 + ], + [ + "▁Nominal", + -14.951492309570312 + ], + [ + "represent", + -14.951497077941895 + ], + [ + "▁Grün", + -14.951513290405273 + ], + [ + "▁Gottfried", + -14.95156478881836 + ], + [ + "▁Alisha", + -14.951592445373535 + ], + [ + "▁DEVICE", + -14.95161247253418 + ], + [ + "▁Fairies", + -14.951630592346191 + ], + [ + "ribble", + -14.951634407043457 + ], + [ + "▁gamepad", + -14.951645851135254 + ], + [ + "haar", + -14.951663970947266 + ], + [ + "▁SWITCH", + -14.951700210571289 + ], + [ + "▁fjords", + -14.951717376708984 + ], + [ + "区", + -14.951791763305664 + ], + [ + "▁ineptitude", + -14.951815605163574 + ], + [ + "▁Waal", + -14.95183277130127 + ], + [ + "▁Alito", + -14.951860427856445 + ], + [ + "▁Nabil", + -14.95191478729248 + ], + [ + "▁transference", + -14.951945304870605 + ], + [ + "▁kau", + -14.951972961425781 + ], + [ + "▁Legionnaire", + -14.951985359191895 + ], + [ + "gita", + -14.95198917388916 + ], + [ + "glot", + -14.95199203491211 + ], + [ + "IFE", + -14.951993942260742 + ], + [ + "Delivery", + -14.952021598815918 + ], + [ + "▁obscenity", + -14.952041625976562 + ], + [ + "▁Ramayana", + -14.952064514160156 + ], + [ + "▁Kirchner", + -14.952117919921875 + ], + [ + "UMB", + -14.952152252197266 + ], + [ + "▁Easiest", + -14.952156066894531 + ], + [ + "anita", + -14.952164649963379 + ], + [ + "▁Arendt", + -14.952217102050781 + ], + [ + "▁TONIGHT", + -14.952234268188477 + ], + [ + "▁Sorkin", + -14.952342987060547 + ], + [ + "Gru", + -14.952350616455078 + ], + [ + "▁Gómez", + -14.952397346496582 + ], + [ + "▁indefensible", + -14.952410697937012 + ], + [ + "▁vexed", + -14.952412605285645 + ], + [ + "▁muz", + -14.95241928100586 + ], + [ + "Blanc", + -14.952432632446289 + ], + [ + "▁facil", + -14.952434539794922 + ], + [ + "▁Eyewear", + -14.952444076538086 + ], + [ + "▁Petrochemical", + -14.952449798583984 + ], + [ + "▁baubles", + -14.952459335327148 + ], + [ + "straat", + -14.952463150024414 + ], + [ + "▁undressed", + -14.952484130859375 + ], + [ + "▁Tirana", + -14.952499389648438 + ], + [ + "▁Tremont", + -14.952535629272461 + ], + [ + "▁Jammer", + -14.952577590942383 + ], + [ + "▁armory", + -14.95258617401123 + ], + [ + "▁Juni", + -14.952610969543457 + ], + [ + "▁minaret", + -14.952617645263672 + ], + [ + "▁Restored", + -14.95266056060791 + ], + [ + "▁expander", + -14.952692031860352 + ], + [ + "▁trekked", + -14.952723503112793 + ], + [ + "▁osmotic", + -14.952729225158691 + ], + [ + "▁Hensley", + -14.95273208618164 + ], + [ + "ellus", + -14.952746391296387 + ], + [ + "▁Bummer", + -14.952762603759766 + ], + [ + "cciones", + -14.952765464782715 + ], + [ + "▁NEP", + -14.952805519104004 + ], + [ + "proliferative", + -14.952818870544434 + ], + [ + "▁Plenary", + -14.95283031463623 + ], + [ + "▁Bariatric", + -14.952889442443848 + ], + [ + "▁Frigidaire", + -14.952957153320312 + ], + [ + "▁CFU", + -14.952967643737793 + ], + [ + "1073", + -14.95297622680664 + ], + [ + "▁Torr", + -14.953075408935547 + ], + [ + "Routledge", + -14.953084945678711 + ], + [ + "▁bramble", + -14.953088760375977 + ], + [ + "▁Splitter", + -14.953102111816406 + ], + [ + "▁erythromycin", + -14.953123092651367 + ], + [ + "▁✅", + -14.953166007995605 + ], + [ + "▁Alcoa", + -14.953204154968262 + ], + [ + "apha", + -14.953219413757324 + ], + [ + "하게", + -14.953232765197754 + ], + [ + "▁Ferran", + -14.95324420928955 + ], + [ + "▁paralleled", + -14.953248023986816 + ], + [ + "ITU", + -14.953274726867676 + ], + [ + "ப", + -14.953275680541992 + ], + [ + "Academy", + -14.95335578918457 + ], + [ + "▁pagina", + -14.953356742858887 + ], + [ + "▁stoking", + -14.953384399414062 + ], + [ + "▁confi", + -14.953386306762695 + ], + [ + "▁STORAGE", + -14.953391075134277 + ], + [ + "kasa", + -14.95341968536377 + ], + [ + "▁Hawes", + -14.953441619873047 + ], + [ + "▁trampling", + -14.95344352722168 + ], + [ + "Avon", + -14.953478813171387 + ], + [ + "▁disinterest", + -14.953522682189941 + ], + [ + "▁Baskin", + -14.953524589538574 + ], + [ + "osarcoma", + -14.953536987304688 + ], + [ + "nails", + -14.953673362731934 + ], + [ + "▁matchday", + -14.953718185424805 + ], + [ + "▁Frampton", + -14.953837394714355 + ], + [ + "▁Appetite", + -14.953868865966797 + ], + [ + "▁ELO", + -14.953877449035645 + ], + [ + "▁TENS", + -14.953878402709961 + ], + [ + "▁Baloch", + -14.953977584838867 + ], + [ + "▁Treadmill", + -14.953988075256348 + ], + [ + "▁Flathead", + -14.954021453857422 + ], + [ + "▁Barangay", + -14.954054832458496 + ], + [ + "wij", + -14.954058647155762 + ], + [ + "clutter", + -14.954100608825684 + ], + [ + "▁Lusaka", + -14.954107284545898 + ], + [ + "▁Purina", + -14.954111099243164 + ], + [ + "▁Yiwu", + -14.95415210723877 + ], + [ + "icci", + -14.954179763793945 + ], + [ + "combination", + -14.954202651977539 + ], + [ + "PEX", + -14.954222679138184 + ], + [ + "▁CIVIL", + -14.9542236328125 + ], + [ + "Syrian", + -14.954240798950195 + ], + [ + "Brush", + -14.954259872436523 + ], + [ + "2700", + -14.954273223876953 + ], + [ + "▁Clinicians", + -14.9542818069458 + ], + [ + "▁Piercing", + -14.954313278198242 + ], + [ + "▁América", + -14.954319953918457 + ], + [ + "▁Newington", + -14.954326629638672 + ], + [ + "▁Carrasco", + -14.954353332519531 + ], + [ + "▁Sumitomo", + -14.954385757446289 + ], + [ + "рт", + -14.954398155212402 + ], + [ + "▁Conroe", + -14.9544038772583 + ], + [ + "▁SPAR", + -14.954421043395996 + ], + [ + "ucin", + -14.954427719116211 + ], + [ + "▁metatarsal", + -14.954434394836426 + ], + [ + "▁Sized", + -14.954442024230957 + ], + [ + "▁fp", + -14.95449447631836 + ], + [ + "▁Rhizo", + -14.954541206359863 + ], + [ + "▁Separating", + -14.954548835754395 + ], + [ + "дин", + -14.954558372497559 + ], + [ + "▁Sheba", + -14.954566955566406 + ], + [ + "▁EFS", + -14.954578399658203 + ], + [ + "Rig", + -14.95458984375 + ], + [ + "▁upregulation", + -14.954590797424316 + ], + [ + "≥", + -14.95460033416748 + ], + [ + "▁DNV", + -14.95460033416748 + ], + [ + "▁ferrule", + -14.954635620117188 + ], + [ + "▁Remediation", + -14.954686164855957 + ], + [ + "▁Belk", + -14.95469856262207 + ], + [ + "aggregate", + -14.954703330993652 + ], + [ + "legend", + -14.95472526550293 + ], + [ + "▁Ashish", + -14.954730033874512 + ], + [ + "Jamie", + -14.954730987548828 + ], + [ + "umbi", + -14.954741477966309 + ], + [ + "exo", + -14.954755783081055 + ], + [ + "aston", + -14.954791069030762 + ], + [ + "bü", + -14.954801559448242 + ], + [ + "اع", + -14.954803466796875 + ], + [ + "▁nev", + -14.954837799072266 + ], + [ + "dienst", + -14.954873085021973 + ], + [ + "Sort", + -14.9548921585083 + ], + [ + "▁684", + -14.954920768737793 + ], + [ + "Semi", + -14.954951286315918 + ], + [ + "▁wispy", + -14.954957962036133 + ], + [ + "▁oar", + -14.954960823059082 + ], + [ + "▁Metformin", + -14.954963684082031 + ], + [ + "▁punctuate", + -14.95496654510498 + ], + [ + "▁ABSTRACT", + -14.95496940612793 + ], + [ + "▁frankincense", + -14.95496940612793 + ], + [ + "▁newsprint", + -14.954978942871094 + ], + [ + "▁phenomenally", + -14.954989433288574 + ], + [ + "sought", + -14.954997062683105 + ], + [ + "▁Haaretz", + -14.955009460449219 + ], + [ + "cree", + -14.955018043518066 + ], + [ + "shout", + -14.95505428314209 + ], + [ + "▁Asics", + -14.955062866210938 + ], + [ + "▁fallopian", + -14.955080032348633 + ], + [ + "▁covalent", + -14.95510196685791 + ], + [ + "▁SketchUp", + -14.955118179321289 + ], + [ + "bub", + -14.955196380615234 + ], + [ + "odh", + -14.955239295959473 + ], + [ + "▁nongovernmental", + -14.955282211303711 + ], + [ + "▁preformed", + -14.955284118652344 + ], + [ + "▁nihilism", + -14.95528793334961 + ], + [ + "▁RHO", + -14.95529556274414 + ], + [ + "▁Trousers", + -14.955303192138672 + ], + [ + "▁brainstem", + -14.95535659790039 + ], + [ + "▁Capra", + -14.955365180969238 + ], + [ + "fice", + -14.955368995666504 + ], + [ + "Stefan", + -14.955376625061035 + ], + [ + "▁Raine", + -14.955390930175781 + ], + [ + "arkan", + -14.955464363098145 + ], + [ + "▁1765", + -14.955559730529785 + ], + [ + "knecht", + -14.955581665039062 + ], + [ + "Hole", + -14.955608367919922 + ], + [ + "lark", + -14.955610275268555 + ], + [ + "▁deactivation", + -14.955670356750488 + ], + [ + "▁Zuk", + -14.955690383911133 + ], + [ + "▁Shinjuku", + -14.955696105957031 + ], + [ + "1861", + -14.955721855163574 + ], + [ + "▁sanitizing", + -14.955721855163574 + ], + [ + "▁Inhale", + -14.955727577209473 + ], + [ + "▁unfazed", + -14.955785751342773 + ], + [ + "▁resu", + -14.955842971801758 + ], + [ + "▁Farnsworth", + -14.955849647521973 + ], + [ + "▁maladies", + -14.955889701843262 + ], + [ + "▁Cracking", + -14.95590877532959 + ], + [ + "▁centrifuged", + -14.955912590026855 + ], + [ + "prav", + -14.955920219421387 + ], + [ + "▁jackass", + -14.955951690673828 + ], + [ + "RICH", + -14.95598316192627 + ], + [ + "▁Outsource", + -14.9559965133667 + ], + [ + "▁Supermarkets", + -14.956013679504395 + ], + [ + "ococcal", + -14.956038475036621 + ], + [ + "gård", + -14.956058502197266 + ], + [ + "▁Montage", + -14.95607852935791 + ], + [ + "▁Ahmet", + -14.956087112426758 + ], + [ + "▁Angelou", + -14.956111907958984 + ], + [ + "avatar", + -14.956113815307617 + ], + [ + "Income", + -14.956125259399414 + ], + [ + "▁Lö", + -14.956130981445312 + ], + [ + "▁espanol", + -14.956137657165527 + ], + [ + "▁Seki", + -14.956143379211426 + ], + [ + "▁squinted", + -14.956177711486816 + ], + [ + "▁Paradis", + -14.95620059967041 + ], + [ + "▁integra", + -14.956255912780762 + ], + [ + "▁laminating", + -14.956263542175293 + ], + [ + "▁rhizo", + -14.95626449584961 + ], + [ + "expansion", + -14.956266403198242 + ], + [ + "▁Susana", + -14.956286430358887 + ], + [ + "▁innkeeper", + -14.956413269042969 + ], + [ + "▁Prins", + -14.956436157226562 + ], + [ + "nska", + -14.95646858215332 + ], + [ + "▁ACG", + -14.956575393676758 + ], + [ + "Throw", + -14.956619262695312 + ], + [ + "▁Pedagogical", + -14.956663131713867 + ], + [ + "▁trinket", + -14.956680297851562 + ], + [ + "▁SEOUL", + -14.956690788269043 + ], + [ + "▁Solana", + -14.956694602966309 + ], + [ + "curious", + -14.95671272277832 + ], + [ + "▁apologetics", + -14.956740379333496 + ], + [ + "▁Brute", + -14.956741333007812 + ], + [ + "RAW", + -14.956768035888672 + ], + [ + "▁FABULOUS", + -14.956781387329102 + ], + [ + "licensing", + -14.956799507141113 + ], + [ + "helpful", + -14.956809997558594 + ], + [ + "▁UCP", + -14.956820487976074 + ], + [ + "vain", + -14.956833839416504 + ], + [ + "▁AKP", + -14.956873893737793 + ], + [ + "nej", + -14.956930160522461 + ], + [ + "wishers", + -14.956934928894043 + ], + [ + "Barbie", + -14.956942558288574 + ], + [ + "▁ausge", + -14.95695972442627 + ], + [ + "▁Sanborn", + -14.956965446472168 + ], + [ + "Pope", + -14.956975936889648 + ], + [ + "tense", + -14.957002639770508 + ], + [ + "▁endeavored", + -14.957022666931152 + ], + [ + "▁Adrenaline", + -14.95703125 + ], + [ + "▁Graceland", + -14.957058906555176 + ], + [ + "▁deferring", + -14.957079887390137 + ], + [ + "ozzo", + -14.957084655761719 + ], + [ + "▁Sindhu", + -14.957154273986816 + ], + [ + "flap", + -14.957171440124512 + ], + [ + "heil", + -14.957205772399902 + ], + [ + "▁Crocs", + -14.957222938537598 + ], + [ + "▁Gulliver", + -14.95722484588623 + ], + [ + "▁foresaw", + -14.95723819732666 + ], + [ + "▁PFD", + -14.957255363464355 + ], + [ + "behavior", + -14.957258224487305 + ], + [ + "▁Marlies", + -14.957315444946289 + ], + [ + "▁Tarp", + -14.957341194152832 + ], + [ + "▁При", + -14.957377433776855 + ], + [ + "▁Orbiter", + -14.957382202148438 + ], + [ + "baz", + -14.957391738891602 + ], + [ + "▁WEC", + -14.957399368286133 + ], + [ + "Chapel", + -14.957418441772461 + ], + [ + "▁Shure", + -14.957440376281738 + ], + [ + "▁ELM", + -14.957453727722168 + ], + [ + "▁Bate", + -14.957491874694824 + ], + [ + "▁coul", + -14.957512855529785 + ], + [ + "▁hyacinth", + -14.957572937011719 + ], + [ + "▁Venerable", + -14.957575798034668 + ], + [ + "Patriot", + -14.957622528076172 + ], + [ + "▁Harkin", + -14.957636833190918 + ], + [ + "▁chlorinated", + -14.957677841186523 + ], + [ + "▁AAPL", + -14.957765579223633 + ], + [ + "▁Eighties", + -14.957789421081543 + ], + [ + "▁Bourg", + -14.957791328430176 + ], + [ + "▁MHA", + -14.957804679870605 + ], + [ + "▁Pumping", + -14.957817077636719 + ], + [ + "▁MIUI", + -14.957874298095703 + ], + [ + "▁Stab", + -14.957901000976562 + ], + [ + "▁Organising", + -14.957919120788574 + ], + [ + "▁channelled", + -14.957963943481445 + ], + [ + "▁Vajra", + -14.958015441894531 + ], + [ + "▁Internacional", + -14.95802116394043 + ], + [ + "▁stopwatch", + -14.958026885986328 + ], + [ + "Didn", + -14.958072662353516 + ], + [ + "cardio", + -14.958110809326172 + ], + [ + "1101", + -14.958127975463867 + ], + [ + "azol", + -14.95813274383545 + ], + [ + "▁Involving", + -14.958136558532715 + ], + [ + "▁scrupulous", + -14.958159446716309 + ], + [ + "▁Bove", + -14.95818042755127 + ], + [ + "▁Nevermind", + -14.958191871643066 + ], + [ + "ECTOR", + -14.958194732666016 + ], + [ + "▁671", + -14.958205223083496 + ], + [ + "EFT", + -14.958207130432129 + ], + [ + "▁devi", + -14.958235740661621 + ], + [ + "▁revoking", + -14.95823860168457 + ], + [ + "▁outcrops", + -14.958267211914062 + ], + [ + "▁Thang", + -14.958316802978516 + ], + [ + "▁Machina", + -14.95836353302002 + ], + [ + "undra", + -14.958396911621094 + ], + [ + "▁sequestered", + -14.958495140075684 + ], + [ + "▁fossilized", + -14.958512306213379 + ], + [ + "▁RSPB", + -14.95855712890625 + ], + [ + "Shall", + -14.95856761932373 + ], + [ + "folio", + -14.958581924438477 + ], + [ + "▁pav", + -14.958590507507324 + ], + [ + "zombie", + -14.958616256713867 + ], + [ + "▁Kareena", + -14.958629608154297 + ], + [ + "▁Managerial", + -14.958695411682129 + ], + [ + "variety", + -14.958702087402344 + ], + [ + "▁зна", + -14.958708763122559 + ], + [ + "▁Personalization", + -14.958712577819824 + ], + [ + "caine", + -14.958725929260254 + ], + [ + "constitu", + -14.95876407623291 + ], + [ + "guez", + -14.958769798278809 + ], + [ + "▁Obey", + -14.958797454833984 + ], + [ + "usion", + -14.958813667297363 + ], + [ + "Mayor", + -14.95883560180664 + ], + [ + "Gender", + -14.958836555480957 + ], + [ + "▁Baroda", + -14.95888900756836 + ], + [ + "▁Proprietor", + -14.958929061889648 + ], + [ + "False", + -14.958935737609863 + ], + [ + "▁biologics", + -14.958976745605469 + ], + [ + "nomics", + -14.95899772644043 + ], + [ + "▁incisor", + -14.958998680114746 + ], + [ + "nurse", + -14.959004402160645 + ], + [ + "▁Skechers", + -14.959006309509277 + ], + [ + "marr", + -14.959057807922363 + ], + [ + "▁ORM", + -14.959057807922363 + ], + [ + "▁longitudinally", + -14.959070205688477 + ], + [ + "Ε", + -14.959098815917969 + ], + [ + "amzn", + -14.959112167358398 + ], + [ + "relations", + -14.95913028717041 + ], + [ + "TSC", + -14.959138870239258 + ], + [ + "▁hyp", + -14.959142684936523 + ], + [ + "curr", + -14.959161758422852 + ], + [ + "swipe", + -14.959163665771484 + ], + [ + "▁Cavalli", + -14.959179878234863 + ], + [ + "▁plebiscite", + -14.959210395812988 + ], + [ + "▁Kear", + -14.959226608276367 + ], + [ + "直", + -14.959232330322266 + ], + [ + "▁Identities", + -14.959240913391113 + ], + [ + "▁nahi", + -14.959243774414062 + ], + [ + "।", + -14.959249496459961 + ], + [ + "▁Waldron", + -14.959256172180176 + ], + [ + "▁Munchkin", + -14.959325790405273 + ], + [ + "形成", + -14.959366798400879 + ], + [ + "ад", + -14.95937728881836 + ], + [ + "▁REPRESENTATIONS", + -14.95941162109375 + ], + [ + "▁RWD", + -14.959457397460938 + ], + [ + "prey", + -14.959487915039062 + ], + [ + "Shar", + -14.959521293640137 + ], + [ + "▁Yogyakarta", + -14.959568977355957 + ], + [ + "▁Strongly", + -14.959583282470703 + ], + [ + "▁Fiery", + -14.959596633911133 + ], + [ + "▁Histori", + -14.959609985351562 + ], + [ + "▁Maulana", + -14.959667205810547 + ], + [ + "▁maxillary", + -14.959688186645508 + ], + [ + "▁Whirl", + -14.95970344543457 + ], + [ + "▁SOCIETY", + -14.959710121154785 + ], + [ + "▁rescuer", + -14.959783554077148 + ], + [ + "▁pillage", + -14.959822654724121 + ], + [ + "▁detoxing", + -14.959857940673828 + ], + [ + "▁trabaja", + -14.959866523742676 + ], + [ + "▁Battlestar", + -14.959867477416992 + ], + [ + "▁Rheum", + -14.959907531738281 + ], + [ + "▁Chubby", + -14.959954261779785 + ], + [ + "ruz", + -14.959986686706543 + ], + [ + "▁Colfax", + -14.959992408752441 + ], + [ + "▁Makoto", + -14.960000991821289 + ], + [ + "▁THU", + -14.96003532409668 + ], + [ + "Carr", + -14.96004867553711 + ], + [ + "▁BMA", + -14.960114479064941 + ], + [ + "▁drejt", + -14.960131645202637 + ], + [ + "▁pelagic", + -14.960165977478027 + ], + [ + "zuna", + -14.960173606872559 + ], + [ + "▁Penetration", + -14.960184097290039 + ], + [ + "▁Penrose", + -14.960188865661621 + ], + [ + "meer", + -14.960211753845215 + ], + [ + "▁aquamarine", + -14.96021842956543 + ], + [ + "caption", + -14.960247039794922 + ], + [ + "▁Hocking", + -14.960271835327148 + ], + [ + "▁COMMON", + -14.96028995513916 + ], + [ + "Graham", + -14.960293769836426 + ], + [ + "▁Dipper", + -14.960322380065918 + ], + [ + "▁Berge", + -14.960331916809082 + ], + [ + "▁Bilder", + -14.960382461547852 + ], + [ + "▁apothecary", + -14.960389137268066 + ], + [ + "▁nanosecond", + -14.960391998291016 + ], + [ + "Receive", + -14.960450172424316 + ], + [ + "ué", + -14.960454940795898 + ], + [ + "▁Tracer", + -14.960454940795898 + ], + [ + "▁bookworm", + -14.960484504699707 + ], + [ + "▁IgA", + -14.960498809814453 + ], + [ + "▁Vermilion", + -14.960518836975098 + ], + [ + "▁Munt", + -14.96052074432373 + ], + [ + "▁CONF", + -14.960554122924805 + ], + [ + "▁radicalization", + -14.96055793762207 + ], + [ + "▁Goalie", + -14.960577011108398 + ], + [ + "▁profesional", + -14.960594177246094 + ], + [ + "▁Nutt", + -14.960599899291992 + ], + [ + "▁EMB", + -14.960610389709473 + ], + [ + "▁lacto", + -14.960624694824219 + ], + [ + "▁저", + -14.960681915283203 + ], + [ + "donna", + -14.960685729980469 + ], + [ + "▁DISPLAY", + -14.960739135742188 + ], + [ + "arrest", + -14.960775375366211 + ], + [ + "schl", + -14.960777282714844 + ], + [ + "injected", + -14.96078109741211 + ], + [ + "▁FINISH", + -14.96078109741211 + ], + [ + "Equal", + -14.960816383361816 + ], + [ + "▁Chowdhury", + -14.960838317871094 + ], + [ + "Housing", + -14.960840225219727 + ], + [ + "▁Styled", + -14.96085262298584 + ], + [ + "▁Raph", + -14.96090316772461 + ], + [ + "▁peacemaker", + -14.960906028747559 + ], + [ + "▁Hornby", + -14.9609375 + ], + [ + "Colo", + -14.960941314697266 + ], + [ + "Wu", + -14.960948944091797 + ], + [ + "▁Platelet", + -14.960976600646973 + ], + [ + "▁Pomeroy", + -14.960993766784668 + ], + [ + "▁OTHERS", + -14.961000442504883 + ], + [ + "▁dragonflies", + -14.961088180541992 + ], + [ + "Till", + -14.96112060546875 + ], + [ + "arik", + -14.961127281188965 + ], + [ + "▁Soweto", + -14.961132049560547 + ], + [ + "Similar", + -14.961135864257812 + ], + [ + "▁Feig", + -14.96114444732666 + ], + [ + "Luv", + -14.961161613464355 + ], + [ + "▁ERG", + -14.961173057556152 + ], + [ + "DDR", + -14.961288452148438 + ], + [ + "▁Servants", + -14.9613037109375 + ], + [ + "▁Rouen", + -14.961310386657715 + ], + [ + "され", + -14.961352348327637 + ], + [ + "ール", + -14.961394309997559 + ], + [ + "▁Guerrilla", + -14.961400032043457 + ], + [ + "▁Menschen", + -14.961403846740723 + ], + [ + "▁Implicit", + -14.961438179016113 + ], + [ + "▁Phospho", + -14.961461067199707 + ], + [ + "▁negating", + -14.961478233337402 + ], + [ + "ismus", + -14.961517333984375 + ], + [ + "HealthDay", + -14.961551666259766 + ], + [ + "▁PLS", + -14.961551666259766 + ], + [ + "statistics", + -14.96156120300293 + ], + [ + "Ì", + -14.96157455444336 + ], + [ + "▁Bulger", + -14.961577415466309 + ], + [ + "FAST", + -14.961590766906738 + ], + [ + "acquisition", + -14.961604118347168 + ], + [ + "▁UPF", + -14.961618423461914 + ], + [ + "▁CHARLOTTE", + -14.961645126342773 + ], + [ + "finiti", + -14.961705207824707 + ], + [ + "▁antacid", + -14.961708068847656 + ], + [ + "▁Godard", + -14.96171760559082 + ], + [ + "▁Pleasanton", + -14.961737632751465 + ], + [ + "▁ionized", + -14.96176528930664 + ], + [ + "▁Fetish", + -14.961773872375488 + ], + [ + "▁flashpoint", + -14.961809158325195 + ], + [ + "▁peddler", + -14.961853981018066 + ], + [ + "FRC", + -14.961875915527344 + ], + [ + "▁18650", + -14.961880683898926 + ], + [ + "▁CERTIFIED", + -14.96191692352295 + ], + [ + "▁أن", + -14.96197509765625 + ], + [ + "▁Exempt", + -14.962011337280273 + ], + [ + "▁Montal", + -14.96203327178955 + ], + [ + "▁tabby", + -14.962040901184082 + ], + [ + "FLEX", + -14.962061882019043 + ], + [ + "▁Rheumatoid", + -14.962069511413574 + ], + [ + "▁ecotourism", + -14.962071418762207 + ], + [ + "▁hominem", + -14.962095260620117 + ], + [ + "▁herders", + -14.962105751037598 + ], + [ + "▁Μ", + -14.962108612060547 + ], + [ + "▁forethought", + -14.962169647216797 + ], + [ + "▁nitpick", + -14.962174415588379 + ], + [ + "▁tcp", + -14.962177276611328 + ], + [ + "▁Tage", + -14.96219253540039 + ], + [ + "▁ChIP", + -14.962213516235352 + ], + [ + "immediate", + -14.962214469909668 + ], + [ + "▁STV", + -14.962276458740234 + ], + [ + "▁handoff", + -14.962308883666992 + ], + [ + "leverage", + -14.962310791015625 + ], + [ + "▁Condensed", + -14.962313652038574 + ], + [ + "▁Truex", + -14.962323188781738 + ], + [ + "▁collo", + -14.96236801147461 + ], + [ + "▁Compounding", + -14.962382316589355 + ], + [ + "▁Stooges", + -14.962416648864746 + ], + [ + "▁shaper", + -14.962425231933594 + ], + [ + "▁hyundai", + -14.96242904663086 + ], + [ + "▁Fez", + -14.962445259094238 + ], + [ + "▁Bastion", + -14.962449073791504 + ], + [ + "▁Ansar", + -14.962482452392578 + ], + [ + "▁yearling", + -14.962522506713867 + ], + [ + "Seat", + -14.962576866149902 + ], + [ + "▁Posada", + -14.962580680847168 + ], + [ + "▁dakota", + -14.962629318237305 + ], + [ + "▁Soren", + -14.96264362335205 + ], + [ + "▁Installment", + -14.962647438049316 + ], + [ + "▁mystified", + -14.962650299072266 + ], + [ + "urro", + -14.96265697479248 + ], + [ + "▁YouTubers", + -14.96265983581543 + ], + [ + "politician", + -14.962676048278809 + ], + [ + "▁Scaramucci", + -14.962686538696289 + ], + [ + "▁serotype", + -14.96269416809082 + ], + [ + "▁Malpractice", + -14.96273136138916 + ], + [ + "▁Grenache", + -14.96276569366455 + ], + [ + "canvas", + -14.962776184082031 + ], + [ + "▁emaciated", + -14.962814331054688 + ], + [ + "▁nipples", + -14.96286392211914 + ], + [ + "ข", + -14.962864875793457 + ], + [ + "▁earshot", + -14.962888717651367 + ], + [ + "▁Bhakti", + -14.962890625 + ], + [ + "Gordon", + -14.962943077087402 + ], + [ + "▁analgesics", + -14.962945938110352 + ], + [ + "threshold", + -14.962964057922363 + ], + [ + "▁partied", + -14.962968826293945 + ], + [ + "▁exposé", + -14.962971687316895 + ], + [ + "▁Irfan", + -14.962991714477539 + ], + [ + "Bil", + -14.962997436523438 + ], + [ + "▁Comprehension", + -14.963020324707031 + ], + [ + "ECS", + -14.963027000427246 + ], + [ + "▁sud", + -14.963048934936523 + ], + [ + "▁Causing", + -14.963090896606445 + ], + [ + "▁Serene", + -14.96310043334961 + ], + [ + "▁Paulina", + -14.963130950927734 + ], + [ + "▁Kalman", + -14.963134765625 + ], + [ + "▁pitchfork", + -14.96320629119873 + ], + [ + "SDR", + -14.963211059570312 + ], + [ + "▁Fortran", + -14.963211059570312 + ], + [ + "▁maria", + -14.963220596313477 + ], + [ + "▁ECF", + -14.963228225708008 + ], + [ + "▁beeline", + -14.96324634552002 + ], + [ + "▁MPAA", + -14.963266372680664 + ], + [ + "▁Amaz", + -14.96326732635498 + ], + [ + "Either", + -14.963269233703613 + ], + [ + "▁Sandalwood", + -14.963269233703613 + ], + [ + "▁EARN", + -14.963301658630371 + ], + [ + "▁Kutcher", + -14.963306427001953 + ], + [ + "▁educa", + -14.963359832763672 + ], + [ + "▁Stiller", + -14.963403701782227 + ], + [ + "cabin", + -14.963407516479492 + ], + [ + "▁Fandango", + -14.963431358337402 + ], + [ + "▁reinterpretation", + -14.963458061218262 + ], + [ + "▁2160", + -14.963462829589844 + ], + [ + "▁dosed", + -14.963504791259766 + ], + [ + "▁Andrzej", + -14.963528633117676 + ], + [ + "▁KitKat", + -14.96353530883789 + ], + [ + "▁habla", + -14.96353530883789 + ], + [ + "▁intercourse", + -14.963547706604004 + ], + [ + "▁Psychedelic", + -14.963563919067383 + ], + [ + "▁Ose", + -14.9635648727417 + ], + [ + "▁Pinewood", + -14.963576316833496 + ], + [ + "▁strangling", + -14.963589668273926 + ], + [ + "▁Buckland", + -14.96360969543457 + ], + [ + "ieh", + -14.963630676269531 + ], + [ + "▁Popovich", + -14.963643074035645 + ], + [ + "▁selflessly", + -14.963666915893555 + ], + [ + "▁nodule", + -14.963676452636719 + ], + [ + "ratus", + -14.963716506958008 + ], + [ + "▁crafter", + -14.963756561279297 + ], + [ + "▁debauchery", + -14.963756561279297 + ], + [ + "lyzed", + -14.963757514953613 + ], + [ + "▁unlearn", + -14.963777542114258 + ], + [ + "▁flogging", + -14.96377944946289 + ], + [ + "▁Ophi", + -14.9638032913208 + ], + [ + "▁Compose", + -14.963828086853027 + ], + [ + "▁changelog", + -14.963835716247559 + ], + [ + "▁Archaeologists", + -14.96384048461914 + ], + [ + "▁erythro", + -14.963841438293457 + ], + [ + "▁Childress", + -14.963905334472656 + ], + [ + "▁Skor", + -14.963977813720703 + ], + [ + "everybody", + -14.964034080505371 + ], + [ + "▁Caen", + -14.96406364440918 + ], + [ + "maze", + -14.964091300964355 + ], + [ + "▁sterilize", + -14.964119911193848 + ], + [ + "▁CTP", + -14.964204788208008 + ], + [ + "Oliver", + -14.96429443359375 + ], + [ + "▁bucked", + -14.964310646057129 + ], + [ + "▁Calculating", + -14.964334487915039 + ], + [ + "▁Biophys", + -14.964347839355469 + ], + [ + "▁Falklands", + -14.96436882019043 + ], + [ + "ři", + -14.964391708374023 + ], + [ + "HHHH", + -14.964404106140137 + ], + [ + "▁clairvoyant", + -14.964434623718262 + ], + [ + "▁unclassified", + -14.964518547058105 + ], + [ + "TPA", + -14.964537620544434 + ], + [ + "▁pooped", + -14.964556694030762 + ], + [ + "uhi", + -14.964558601379395 + ], + [ + "▁tithes", + -14.964614868164062 + ], + [ + "▁Stamped", + -14.964652061462402 + ], + [ + "Gua", + -14.964653015136719 + ], + [ + "emphasize", + -14.964668273925781 + ], + [ + "▁Noord", + -14.96469497680664 + ], + [ + "▁Trailhead", + -14.964729309082031 + ], + [ + "▁Akers", + -14.964735984802246 + ], + [ + "▁Pohl", + -14.96474552154541 + ], + [ + "▁Breezy", + -14.964753150939941 + ], + [ + "▁Maintained", + -14.964761734008789 + ], + [ + "▁Alda", + -14.964765548706055 + ], + [ + "▁cabriole", + -14.964813232421875 + ], + [ + "Rice", + -14.96485710144043 + ], + [ + "▁RANK", + -14.964875221252441 + ], + [ + "▁Salk", + -14.964896202087402 + ], + [ + "▁bedded", + -14.964897155761719 + ], + [ + "된다", + -14.964953422546387 + ], + [ + "▁esl", + -14.965014457702637 + ], + [ + "▁Eir", + -14.96504020690918 + ], + [ + "》", + -14.965080261230469 + ], + [ + "aggle", + -14.965085983276367 + ], + [ + "▁ceaseless", + -14.965095520019531 + ], + [ + "▁arterio", + -14.965124130249023 + ], + [ + "▁Breathable", + -14.965126037597656 + ], + [ + "▁Lice", + -14.965136528015137 + ], + [ + "▁peal", + -14.96513843536377 + ], + [ + "▁Saru", + -14.965191841125488 + ], + [ + "pter", + -14.965217590332031 + ], + [ + "▁Retractable", + -14.96522045135498 + ], + [ + "▁Durst", + -14.965341567993164 + ], + [ + "kitty", + -14.965349197387695 + ], + [ + "drin", + -14.965354919433594 + ], + [ + "▁undergarments", + -14.965388298034668 + ], + [ + "▁salivating", + -14.96540641784668 + ], + [ + "▁Crackers", + -14.96541690826416 + ], + [ + "▁Jenson", + -14.9654541015625 + ], + [ + "▁dihydro", + -14.965455055236816 + ], + [ + "▁TIR", + -14.965474128723145 + ], + [ + "▁rioters", + -14.965487480163574 + ], + [ + "Juice", + -14.965510368347168 + ], + [ + "▁papyrus", + -14.9655179977417 + ], + [ + "▁reclassified", + -14.965521812438965 + ], + [ + "▁ś", + -14.965526580810547 + ], + [ + "▁precis", + -14.96554946899414 + ], + [ + "chilling", + -14.96557903289795 + ], + [ + "▁Kbps", + -14.965579986572266 + ], + [ + "▁MOO", + -14.965583801269531 + ], + [ + "▁awesomely", + -14.965588569641113 + ], + [ + "abhi", + -14.965638160705566 + ], + [ + "▁sulphide", + -14.965643882751465 + ], + [ + "場合", + -14.965700149536133 + ], + [ + "▁Ketu", + -14.965702056884766 + ], + [ + "▁Sportswear", + -14.965760231018066 + ], + [ + "▁opto", + -14.965777397155762 + ], + [ + "▁Youssef", + -14.965778350830078 + ], + [ + "▁sabotaged", + -14.965800285339355 + ], + [ + "lifter", + -14.965819358825684 + ], + [ + "▁CCF", + -14.965835571289062 + ], + [ + "▁catheterization", + -14.965864181518555 + ], + [ + "Laughter", + -14.965869903564453 + ], + [ + "▁Schmi", + -14.96591567993164 + ], + [ + "▁sublicense", + -14.965988159179688 + ], + [ + "▁rappel", + -14.966008186340332 + ], + [ + "▁subjectively", + -14.966053009033203 + ], + [ + "destroy", + -14.966071128845215 + ], + [ + "▁Wier", + -14.966078758239746 + ], + [ + "▁warlock", + -14.96611213684082 + ], + [ + "▁Embry", + -14.966119766235352 + ], + [ + "IYA", + -14.966130256652832 + ], + [ + "▁magnetite", + -14.96614933013916 + ], + [ + "▁Cruci", + -14.9661865234375 + ], + [ + "▁loath", + -14.966192245483398 + ], + [ + "▁homeschoolers", + -14.966200828552246 + ], + [ + "dded", + -14.966206550598145 + ], + [ + "▁arpeggio", + -14.96621322631836 + ], + [ + "▁CRAFT", + -14.966217041015625 + ], + [ + "▁scone", + -14.96622371673584 + ], + [ + "▁Rosberg", + -14.966245651245117 + ], + [ + "▁dexamethasone", + -14.966263771057129 + ], + [ + "▁Graft", + -14.966333389282227 + ], + [ + "▁excitable", + -14.96638298034668 + ], + [ + "▁Lilies", + -14.966402053833008 + ], + [ + "▁pining", + -14.966404914855957 + ], + [ + "▁Erotic", + -14.966508865356445 + ], + [ + "▁titration", + -14.96657657623291 + ], + [ + "flammable", + -14.966605186462402 + ], + [ + "▁Transatlantic", + -14.966618537902832 + ], + [ + "▁HOO", + -14.96664047241211 + ], + [ + "▁Gastrointestinal", + -14.966703414916992 + ], + [ + "▁disturbingly", + -14.966793060302734 + ], + [ + "1097", + -14.966804504394531 + ], + [ + "▁Vries", + -14.966808319091797 + ], + [ + "FQ", + -14.966811180114746 + ], + [ + "▁4400", + -14.966863632202148 + ], + [ + "ент", + -14.96689224243164 + ], + [ + "▁Seashore", + -14.966957092285156 + ], + [ + "▁psychopathic", + -14.966957092285156 + ], + [ + "▁armless", + -14.966972351074219 + ], + [ + "▁feuding", + -14.966973304748535 + ], + [ + "▁Romaine", + -14.966985702514648 + ], + [ + "improving", + -14.967002868652344 + ], + [ + "▁radiofrequency", + -14.967020988464355 + ], + [ + "▁Dassault", + -14.967053413391113 + ], + [ + "ис", + -14.967083930969238 + ], + [ + "Premier", + -14.967137336730957 + ], + [ + "▁BVI", + -14.967144012451172 + ], + [ + "lagh", + -14.967168807983398 + ], + [ + "▁braver", + -14.967168807983398 + ], + [ + "▁Shakur", + -14.967170715332031 + ], + [ + "▁Surry", + -14.967183113098145 + ], + [ + "NPA", + -14.96719741821289 + ], + [ + "▁COUNCIL", + -14.967257499694824 + ], + [ + "▁Wholesalers", + -14.967265129089355 + ], + [ + "▁Formosa", + -14.96727466583252 + ], + [ + "gather", + -14.967308044433594 + ], + [ + "▁Electricians", + -14.967309951782227 + ], + [ + "Berkeley", + -14.967352867126465 + ], + [ + "Wireless", + -14.967368125915527 + ], + [ + "▁squandering", + -14.967406272888184 + ], + [ + "Bottom", + -14.967408180236816 + ], + [ + "▁bream", + -14.967438697814941 + ], + [ + "▁Cockburn", + -14.96744155883789 + ], + [ + "▁Lipscomb", + -14.96745491027832 + ], + [ + "▁Patek", + -14.9674711227417 + ], + [ + "▁Raab", + -14.967487335205078 + ], + [ + "▁tir", + -14.967487335205078 + ], + [ + "▁Gregorio", + -14.967508316040039 + ], + [ + "▁dualism", + -14.967522621154785 + ], + [ + "abili", + -14.967572212219238 + ], + [ + "ceu", + -14.96757984161377 + ], + [ + "Interface", + -14.967595100402832 + ], + [ + "▁COMPLETELY", + -14.967597007751465 + ], + [ + "▁Platonic", + -14.967611312866211 + ], + [ + "▁merrier", + -14.967612266540527 + ], + [ + "▁Gehrig", + -14.967613220214844 + ], + [ + "▁selfishly", + -14.967625617980957 + ], + [ + "▁syllabi", + -14.96764087677002 + ], + [ + "▁Niz", + -14.967669486999512 + ], + [ + "▁Mejia", + -14.967672348022461 + ], + [ + "▁677", + -14.967704772949219 + ], + [ + "▁figura", + -14.967707633972168 + ], + [ + "▁disaffected", + -14.967744827270508 + ], + [ + "OBO", + -14.9677734375 + ], + [ + "▁staterooms", + -14.967813491821289 + ], + [ + "▁Auro", + -14.967814445495605 + ], + [ + "▁Savory", + -14.967816352844238 + ], + [ + "▁Campsite", + -14.967827796936035 + ], + [ + "列", + -14.96786117553711 + ], + [ + "phus", + -14.967867851257324 + ], + [ + "▁incubate", + -14.967873573303223 + ], + [ + "switching", + -14.967905044555664 + ], + [ + "생", + -14.967947006225586 + ], + [ + "▁GUY", + -14.96798038482666 + ], + [ + "▁waterpark", + -14.968005180358887 + ], + [ + "▁perforations", + -14.968106269836426 + ], + [ + "reject", + -14.96812915802002 + ], + [ + "compromise", + -14.968141555786133 + ], + [ + "Partner", + -14.968212127685547 + ], + [ + "▁Rusk", + -14.968219757080078 + ], + [ + "ONES", + -14.968226432800293 + ], + [ + "▁Pratchett", + -14.968226432800293 + ], + [ + "ILLE", + -14.968247413635254 + ], + [ + "▁Namaste", + -14.968247413635254 + ], + [ + "▁deflector", + -14.968260765075684 + ], + [ + "PSP", + -14.968297004699707 + ], + [ + "▁refutation", + -14.968302726745605 + ], + [ + "▁Teenager", + -14.96831226348877 + ], + [ + "imana", + -14.968317985534668 + ], + [ + "▁McKen", + -14.968338966369629 + ], + [ + "pathic", + -14.968348503112793 + ], + [ + "▁Cheerios", + -14.968354225158691 + ], + [ + "▁unfocused", + -14.96838092803955 + ], + [ + "▁Kanter", + -14.9683837890625 + ], + [ + "excessive", + -14.968405723571777 + ], + [ + "▁있습니다", + -14.968432426452637 + ], + [ + "▁Abrasive", + -14.968435287475586 + ], + [ + "▁Galena", + -14.96845817565918 + ], + [ + "▁preconditions", + -14.968489646911621 + ], + [ + "▁doodling", + -14.968510627746582 + ], + [ + "▁Rounded", + -14.96851921081543 + ], + [ + "Oracle", + -14.968530654907227 + ], + [ + "resting", + -14.968530654907227 + ], + [ + "▁lub", + -14.968539237976074 + ], + [ + "▁squatters", + -14.968541145324707 + ], + [ + "▁stylistically", + -14.968564987182617 + ], + [ + "▁tusks", + -14.968574523925781 + ], + [ + "▁vanquish", + -14.968582153320312 + ], + [ + "▁antagonize", + -14.968587875366211 + ], + [ + "▁grantor", + -14.968602180480957 + ], + [ + "cortical", + -14.968620300292969 + ], + [ + "▁ISV", + -14.968620300292969 + ], + [ + "▁smorgasbord", + -14.968639373779297 + ], + [ + "▁mla", + -14.968647956848145 + ], + [ + "▁creditworthiness", + -14.968660354614258 + ], + [ + "Cruise", + -14.968710899353027 + ], + [ + "▁Muti", + -14.968743324279785 + ], + [ + "analytical", + -14.968748092651367 + ], + [ + "▁deutsch", + -14.968756675720215 + ], + [ + "▁przy", + -14.968785285949707 + ], + [ + "concentration", + -14.96880054473877 + ], + [ + "▁organelles", + -14.9688138961792 + ], + [ + "▁ralph", + -14.968814849853516 + ], + [ + "▁tunable", + -14.968841552734375 + ], + [ + "▁868", + -14.968850135803223 + ], + [ + "▁annulled", + -14.96886157989502 + ], + [ + "Charts", + -14.968891143798828 + ], + [ + "▁Longford", + -14.968901634216309 + ], + [ + "Х", + -14.968942642211914 + ], + [ + "▁Carried", + -14.96895980834961 + ], + [ + "patrick", + -14.968963623046875 + ], + [ + "Rescue", + -14.968977928161621 + ], + [ + "▁adjudged", + -14.969000816345215 + ], + [ + "isia", + -14.969016075134277 + ], + [ + "▁Chamonix", + -14.969016075134277 + ], + [ + "▁modernised", + -14.969099044799805 + ], + [ + "▁NXP", + -14.969161987304688 + ], + [ + "▁Karak", + -14.969171524047852 + ], + [ + "▁Dragoon", + -14.969182968139648 + ], + [ + "▁Umbra", + -14.969184875488281 + ], + [ + "▁renunciation", + -14.969199180603027 + ], + [ + "▁Mahendra", + -14.969200134277344 + ], + [ + "Lamb", + -14.969206809997559 + ], + [ + "▁1701", + -14.96921443939209 + ], + [ + "▁prepara", + -14.969222068786621 + ], + [ + "performer", + -14.969265937805176 + ], + [ + "OLLY", + -14.969276428222656 + ], + [ + "▁extrajudicial", + -14.969290733337402 + ], + [ + "▁Gerardo", + -14.969314575195312 + ], + [ + "▁ascendant", + -14.96932601928711 + ], + [ + "▁Pesto", + -14.96934700012207 + ], + [ + "▁clingy", + -14.969403266906738 + ], + [ + "▁729", + -14.969436645507812 + ], + [ + "Senate", + -14.969439506530762 + ], + [ + "▁Rhu", + -14.969463348388672 + ], + [ + "▁SQUARE", + -14.969490051269531 + ], + [ + "authority", + -14.96949577331543 + ], + [ + "мы", + -14.969536781311035 + ], + [ + "▁Launchpad", + -14.96955680847168 + ], + [ + "▁Primus", + -14.969558715820312 + ], + [ + "▁Charlottetown", + -14.969597816467285 + ], + [ + "▁underperform", + -14.969605445861816 + ], + [ + "▁KANSAS", + -14.969610214233398 + ], + [ + "▁PIX", + -14.969613075256348 + ], + [ + "▁ATTORNEY", + -14.969621658325195 + ], + [ + "▁Sakai", + -14.969633102416992 + ], + [ + "▁trendiest", + -14.96963882446289 + ], + [ + "Joshua", + -14.969654083251953 + ], + [ + "Betty", + -14.969695091247559 + ], + [ + "Vid", + -14.969696998596191 + ], + [ + "▁Infertility", + -14.969706535339355 + ], + [ + "▁campy", + -14.969727516174316 + ], + [ + "▁granuloma", + -14.969742774963379 + ], + [ + "▁NTU", + -14.96976375579834 + ], + [ + "▁Adrenal", + -14.969857215881348 + ], + [ + "iez", + -14.969869613647461 + ], + [ + "▁Shawl", + -14.96987247467041 + ], + [ + "▁conce", + -14.969908714294434 + ], + [ + "Agreement", + -14.969964027404785 + ], + [ + "αι", + -14.969965934753418 + ], + [ + "▁yucky", + -14.96996784210205 + ], + [ + "▁Gé", + -14.969968795776367 + ], + [ + "▁Guantánamo", + -14.969970703125 + ], + [ + "zien", + -14.970022201538086 + ], + [ + "市", + -14.970049858093262 + ], + [ + "▁Rodham", + -14.97006607055664 + ], + [ + "▁systemically", + -14.970126152038574 + ], + [ + "▁jasmin", + -14.970173835754395 + ], + [ + "▁Allred", + -14.97021198272705 + ], + [ + "▁Bookkeeping", + -14.970234870910645 + ], + [ + "▁Salve", + -14.970261573791504 + ], + [ + "▁Standardized", + -14.970261573791504 + ], + [ + "amani", + -14.97026538848877 + ], + [ + "▁Savanna", + -14.970272064208984 + ], + [ + "▁FOLLOWING", + -14.970274925231934 + ], + [ + "▁Chorley", + -14.9702787399292 + ], + [ + "Democracy", + -14.970329284667969 + ], + [ + "▁Halogen", + -14.970331192016602 + ], + [ + "▁recumbent", + -14.970333099365234 + ], + [ + "panda", + -14.970343589782715 + ], + [ + "зв", + -14.970344543457031 + ], + [ + "1897", + -14.970362663269043 + ], + [ + "▁overcooked", + -14.970458030700684 + ], + [ + "▁colloquially", + -14.970476150512695 + ], + [ + "▁zeolite", + -14.97049331665039 + ], + [ + "▁velour", + -14.970497131347656 + ], + [ + "▁Montego", + -14.970512390136719 + ], + [ + "▁Lowland", + -14.970559120178223 + ], + [ + "Broker", + -14.970560073852539 + ], + [ + "▁Petronas", + -14.97060775756836 + ], + [ + "▁Allyson", + -14.970629692077637 + ], + [ + "▁karst", + -14.970651626586914 + ], + [ + "ophore", + -14.97068977355957 + ], + [ + "Sensor", + -14.970706939697266 + ], + [ + "▁CARB", + -14.970735549926758 + ], + [ + "▁Exhibitor", + -14.970738410949707 + ], + [ + "▁Celebrated", + -14.970739364624023 + ], + [ + "▁mercantile", + -14.970747947692871 + ], + [ + "▁Dougie", + -14.970763206481934 + ], + [ + "▁moccasin", + -14.970773696899414 + ], + [ + "druck", + -14.970802307128906 + ], + [ + "arai", + -14.970816612243652 + ], + [ + "▁Hawkeyes", + -14.970833778381348 + ], + [ + "▁Cornet", + -14.970846176147461 + ], + [ + "▁Bedside", + -14.970952033996582 + ], + [ + "EER", + -14.970953941345215 + ], + [ + "▁Distraction", + -14.97097110748291 + ], + [ + "▁temperance", + -14.97099494934082 + ], + [ + "▁ACK", + -14.970996856689453 + ], + [ + "▁Philosophers", + -14.971001625061035 + ], + [ + "нд", + -14.971022605895996 + ], + [ + "netti", + -14.971034049987793 + ], + [ + "igent", + -14.971035957336426 + ], + [ + "▁antecedents", + -14.971050262451172 + ], + [ + "▁Embryo", + -14.9710693359375 + ], + [ + "▁Abia", + -14.971128463745117 + ], + [ + "▁privatize", + -14.971158981323242 + ], + [ + "▁outfitters", + -14.97116756439209 + ], + [ + "▁unmissable", + -14.97118854522705 + ], + [ + "▁bbc", + -14.971234321594238 + ], + [ + "ferred", + -14.971240043640137 + ], + [ + "ն", + -14.97127914428711 + ], + [ + "▁grayish", + -14.971285820007324 + ], + [ + "▁Privat", + -14.971301078796387 + ], + [ + "Antoni", + -14.97131061553955 + ], + [ + "Ginger", + -14.971317291259766 + ], + [ + "▁Schaff", + -14.971332550048828 + ], + [ + "▁Wherefore", + -14.971395492553711 + ], + [ + "▁beachy", + -14.971419334411621 + ], + [ + "Constant", + -14.97142505645752 + ], + [ + "▁ISDN", + -14.971454620361328 + ], + [ + "▁inflator", + -14.971466064453125 + ], + [ + "×7", + -14.971478462219238 + ], + [ + "kade", + -14.971561431884766 + ], + [ + "Trial", + -14.971577644348145 + ], + [ + "▁JCPOA", + -14.971578598022461 + ], + [ + "▁phonological", + -14.971719741821289 + ], + [ + "▁CLAIMS", + -14.971722602844238 + ], + [ + "▁Halford", + -14.971732139587402 + ], + [ + "Seed", + -14.971736907958984 + ], + [ + "▁Christiansen", + -14.971747398376465 + ], + [ + "▁Complicated", + -14.971758842468262 + ], + [ + "Knowing", + -14.971774101257324 + ], + [ + "▁uninhabitable", + -14.971784591674805 + ], + [ + "▁Sapien", + -14.971789360046387 + ], + [ + "▁Affirmative", + -14.971837997436523 + ], + [ + "▁OBP", + -14.971842765808105 + ], + [ + "語", + -14.971874237060547 + ], + [ + "theoretical", + -14.971893310546875 + ], + [ + "▁wordplay", + -14.971916198730469 + ], + [ + "▁Leeuw", + -14.971929550170898 + ], + [ + "▁mln", + -14.97193431854248 + ], + [ + "1881", + -14.97193717956543 + ], + [ + "▁TRAIL", + -14.971940040588379 + ], + [ + "▁murmuring", + -14.971960067749023 + ], + [ + "▁beleive", + -14.972020149230957 + ], + [ + "▁isoform", + -14.972024917602539 + ], + [ + "▁Kael", + -14.972039222717285 + ], + [ + "ribo", + -14.972070693969727 + ], + [ + "▁Scientologist", + -14.972095489501953 + ], + [ + "▁nectarine", + -14.972105979919434 + ], + [ + "▁radii", + -14.972116470336914 + ], + [ + "▁Uru", + -14.972131729125977 + ], + [ + "▁skirted", + -14.972131729125977 + ], + [ + "▁Murali", + -14.972149848937988 + ], + [ + "▁Experiential", + -14.972212791442871 + ], + [ + "▁attentiveness", + -14.972257614135742 + ], + [ + "packer", + -14.972330093383789 + ], + [ + "▁Kimura", + -14.972332954406738 + ], + [ + "▁Eris", + -14.972382545471191 + ], + [ + "laud", + -14.972390174865723 + ], + [ + "rren", + -14.972417831420898 + ], + [ + "▁EBOOKEE", + -14.97243595123291 + ], + [ + "▁Rashad", + -14.972466468811035 + ], + [ + "buses", + -14.972480773925781 + ], + [ + "판", + -14.97252368927002 + ], + [ + "▁ди", + -14.972556114196777 + ], + [ + "тур", + -14.97255802154541 + ], + [ + "mech", + -14.972587585449219 + ], + [ + "▁Intrinsic", + -14.972615242004395 + ], + [ + "ikum", + -14.972664833068848 + ], + [ + "▁ESSENTIAL", + -14.972692489624023 + ], + [ + "clap", + -14.972698211669922 + ], + [ + "▁Hijack", + -14.972750663757324 + ], + [ + "▁Gabriele", + -14.972760200500488 + ], + [ + "CUT", + -14.972782135009766 + ], + [ + "▁PyeongChang", + -14.972796440124512 + ], + [ + "▁Squee", + -14.972801208496094 + ], + [ + "▁Whispering", + -14.972806930541992 + ], + [ + "▁xenon", + -14.972821235656738 + ], + [ + "▁dependably", + -14.972832679748535 + ], + [ + "▁underwhelmed", + -14.972848892211914 + ], + [ + "▁globular", + -14.972860336303711 + ], + [ + "▁व", + -14.972877502441406 + ], + [ + "▁reticulum", + -14.972887992858887 + ], + [ + "▁Quotations", + -14.972914695739746 + ], + [ + "uture", + -14.972917556762695 + ], + [ + "▁Rideau", + -14.972930908203125 + ], + [ + "Container", + -14.972949028015137 + ], + [ + "▁crystallize", + -14.972955703735352 + ], + [ + "▁cabochon", + -14.973005294799805 + ], + [ + "Rebel", + -14.973014831542969 + ], + [ + "▁chloroform", + -14.973052978515625 + ], + [ + "azepam", + -14.97307014465332 + ], + [ + "▁Romelu", + -14.973094940185547 + ], + [ + "▁ceviche", + -14.973095893859863 + ], + [ + "cosmetic", + -14.973180770874023 + ], + [ + "▁hardtop", + -14.973194122314453 + ], + [ + "▁LOWER", + -14.973215103149414 + ], + [ + "▁lingua", + -14.973221778869629 + ], + [ + "alliance", + -14.973231315612793 + ], + [ + "Kinky", + -14.973275184631348 + ], + [ + "▁Xinhai", + -14.973292350769043 + ], + [ + "ACR", + -14.973318099975586 + ], + [ + "guay", + -14.973355293273926 + ], + [ + "▁Balmoral", + -14.973370552062988 + ], + [ + "▁tented", + -14.973424911499023 + ], + [ + "▁ASIA", + -14.973426818847656 + ], + [ + "▁selloff", + -14.973488807678223 + ], + [ + "▁Rhineland", + -14.973493576049805 + ], + [ + "▁Nita", + -14.973502159118652 + ], + [ + "▁Weekday", + -14.973515510559082 + ], + [ + "▁Horseman", + -14.973541259765625 + ], + [ + "▁Jef", + -14.97358512878418 + ], + [ + "▁frictionless", + -14.973597526550293 + ], + [ + "▁dachshund", + -14.973601341247559 + ], + [ + "▁bucolic", + -14.973613739013672 + ], + [ + "Hen", + -14.973630905151367 + ], + [ + "Gig", + -14.973639488220215 + ], + [ + "▁CCE", + -14.973642349243164 + ], + [ + "Terry", + -14.973653793334961 + ], + [ + "prem", + -14.973723411560059 + ], + [ + "Gallery", + -14.97376823425293 + ], + [ + "▁Brenn", + -14.97380256652832 + ], + [ + "▁Geordie", + -14.973810195922852 + ], + [ + "▁École", + -14.973822593688965 + ], + [ + "psie", + -14.973841667175293 + ], + [ + "▁Krup", + -14.973847389221191 + ], + [ + "▁faecal", + -14.97385025024414 + ], + [ + "▁Finely", + -14.97385311126709 + ], + [ + "▁bicyclist", + -14.973869323730469 + ], + [ + "▁Psyche", + -14.973878860473633 + ], + [ + "▁cranio", + -14.973905563354492 + ], + [ + "▁Carbo", + -14.97392749786377 + ], + [ + "▁CREW", + -14.973931312561035 + ], + [ + "▁phyllo", + -14.973945617675781 + ], + [ + "▁Opin", + -14.97396469116211 + ], + [ + "▁TESOL", + -14.973970413208008 + ], + [ + "▁SiO", + -14.973984718322754 + ], + [ + "зд", + -14.974013328552246 + ], + [ + "▁Skipping", + -14.974024772644043 + ], + [ + "▁Gimp", + -14.974040985107422 + ], + [ + "ZW", + -14.974081993103027 + ], + [ + "▁WEDDING", + -14.974081993103027 + ], + [ + "ši", + -14.97409725189209 + ], + [ + "▁Drax", + -14.974101066589355 + ], + [ + "crafting", + -14.974105834960938 + ], + [ + "▁Rasa", + -14.97412109375 + ], + [ + "wilder", + -14.974153518676758 + ], + [ + "Rebecca", + -14.974166870117188 + ], + [ + "▁preteen", + -14.97417163848877 + ], + [ + "▁compra", + -14.974199295043945 + ], + [ + "により", + -14.974212646484375 + ], + [ + "▁Felony", + -14.97424030303955 + ], + [ + "▁crooner", + -14.974250793457031 + ], + [ + "▁bounties", + -14.974264144897461 + ], + [ + "▁Farsi", + -14.974327087402344 + ], + [ + "▁Orwellian", + -14.974332809448242 + ], + [ + "▁cardiopulmonary", + -14.974371910095215 + ], + [ + "▁SRO", + -14.974394798278809 + ], + [ + "Audit", + -14.974431037902832 + ], + [ + "▁Rheumatology", + -14.97448444366455 + ], + [ + "▁awso", + -14.974492073059082 + ], + [ + "▁pluripotent", + -14.974503517150879 + ], + [ + "ISI", + -14.974512100219727 + ], + [ + "▁Consultative", + -14.974515914916992 + ], + [ + "▁Elvira", + -14.974520683288574 + ], + [ + "▁Indochina", + -14.974546432495117 + ], + [ + "zini", + -14.974570274353027 + ], + [ + "▁overture", + -14.974589347839355 + ], + [ + "▁prak", + -14.974629402160645 + ], + [ + "▁brownfield", + -14.97463321685791 + ], + [ + "▁rond", + -14.974740982055664 + ], + [ + "▁Privately", + -14.974742889404297 + ], + [ + "ESTER", + -14.974756240844727 + ], + [ + "▁Siddha", + -14.97475814819336 + ], + [ + "可能", + -14.974770545959473 + ], + [ + "▁invertebrate", + -14.974780082702637 + ], + [ + "▁Throwback", + -14.974820137023926 + ], + [ + "ologica", + -14.974822044372559 + ], + [ + "▁Rashi", + -14.974825859069824 + ], + [ + "▁Logged", + -14.974859237670898 + ], + [ + "▁tithing", + -14.974894523620605 + ], + [ + "basin", + -14.974905014038086 + ], + [ + "▁Dami", + -14.97491455078125 + ], + [ + "▁rumbled", + -14.974930763244629 + ], + [ + "Dawn", + -14.974973678588867 + ], + [ + "Producer", + -14.974989891052246 + ], + [ + "组", + -14.97502326965332 + ], + [ + "▁endodontic", + -14.975034713745117 + ], + [ + "▁ALEC", + -14.975059509277344 + ], + [ + "▁Bugg", + -14.975059509277344 + ], + [ + "▁Quota", + -14.975061416625977 + ], + [ + "▁consortia", + -14.975095748901367 + ], + [ + "protecting", + -14.975111961364746 + ], + [ + "Managing", + -14.975127220153809 + ], + [ + "▁FOSS", + -14.975174903869629 + ], + [ + "bible", + -14.975179672241211 + ], + [ + "▁PWC", + -14.975187301635742 + ], + [ + "▁Panini", + -14.975188255310059 + ], + [ + "▁Huerta", + -14.975249290466309 + ], + [ + "annock", + -14.97526741027832 + ], + [ + "PDA", + -14.975276947021484 + ], + [ + "▁2080", + -14.975285530090332 + ], + [ + "politically", + -14.975325584411621 + ], + [ + "▁ле", + -14.97533130645752 + ], + [ + "▁carnivore", + -14.975346565246582 + ], + [ + "▁Aileen", + -14.975360870361328 + ], + [ + "▁lumbering", + -14.97537612915039 + ], + [ + "▁irrigate", + -14.975386619567871 + ], + [ + "▁Edgerton", + -14.97539234161377 + ], + [ + "▁Commissar", + -14.975414276123047 + ], + [ + "▁kip", + -14.975418090820312 + ], + [ + "▁trudge", + -14.975431442260742 + ], + [ + "▁depreciated", + -14.975469589233398 + ], + [ + "▁Longitude", + -14.97554874420166 + ], + [ + "▁esper", + -14.975553512573242 + ], + [ + "▁portend", + -14.975570678710938 + ], + [ + "▁magpie", + -14.97560977935791 + ], + [ + "▁philadelphia", + -14.975642204284668 + ], + [ + "▁Crafter", + -14.975667953491211 + ], + [ + "▁ZnO", + -14.97567081451416 + ], + [ + "groomed", + -14.975679397583008 + ], + [ + "▁LYNN", + -14.975765228271484 + ], + [ + "▁overcharge", + -14.975789070129395 + ], + [ + "▁verbiage", + -14.975811958312988 + ], + [ + "tumble", + -14.975829124450684 + ], + [ + "engo", + -14.975885391235352 + ], + [ + "▁frill", + -14.975910186767578 + ], + [ + "▁ѕо", + -14.975934982299805 + ], + [ + "ई", + -14.97594165802002 + ], + [ + "rhythmic", + -14.975945472717285 + ], + [ + "▁NYX", + -14.9759521484375 + ], + [ + "▁simon", + -14.975970268249512 + ], + [ + "▁cornfield", + -14.976001739501953 + ], + [ + "Helper", + -14.9760160446167 + ], + [ + "matically", + -14.976020812988281 + ], + [ + "▁Coffs", + -14.976043701171875 + ], + [ + "▁andrew", + -14.976093292236328 + ], + [ + "▁headteacher", + -14.976094245910645 + ], + [ + "▁Huckleberry", + -14.976123809814453 + ], + [ + "▁بر", + -14.976202011108398 + ], + [ + "▁Weasley", + -14.976204872131348 + ], + [ + "▁Kory", + -14.976232528686523 + ], + [ + "▁somethin", + -14.97623348236084 + ], + [ + "RTS", + -14.976244926452637 + ], + [ + "kph", + -14.976244926452637 + ], + [ + "lllll", + -14.976249694824219 + ], + [ + "▁Seizure", + -14.9762544631958 + ], + [ + "herald", + -14.976259231567383 + ], + [ + "OOF", + -14.976276397705078 + ], + [ + "▁DaVinci", + -14.976280212402344 + ], + [ + "▁interconnecting", + -14.976280212402344 + ], + [ + "▁Grenadines", + -14.976293563842773 + ], + [ + "▁HANDS", + -14.976295471191406 + ], + [ + "▁MFI", + -14.976316452026367 + ], + [ + "▁disciplining", + -14.976319313049316 + ], + [ + "▁mooted", + -14.976323127746582 + ], + [ + "gane", + -14.976349830627441 + ], + [ + "▁SHOCK", + -14.97635555267334 + ], + [ + "▁whammy", + -14.976384162902832 + ], + [ + "▁Grom", + -14.976393699645996 + ], + [ + "▁Musically", + -14.976415634155273 + ], + [ + "▁Carlow", + -14.9764404296875 + ], + [ + "▁Defect", + -14.976447105407715 + ], + [ + "▁Jeanie", + -14.976482391357422 + ], + [ + "▁synchro", + -14.976505279541016 + ], + [ + "technically", + -14.976506233215332 + ], + [ + "▁WIT", + -14.976548194885254 + ], + [ + "▁Sej", + -14.976577758789062 + ], + [ + "crowned", + -14.976581573486328 + ], + [ + "RRR", + -14.97658634185791 + ], + [ + "vader", + -14.976602554321289 + ], + [ + "َّ", + -14.976609230041504 + ], + [ + "αρ", + -14.976654052734375 + ], + [ + "ᥙ", + -14.97665786743164 + ], + [ + "▁Pittsfield", + -14.976658821105957 + ], + [ + "▁graf", + -14.97669506072998 + ], + [ + "hashi", + -14.976706504821777 + ], + [ + "▁Aventura", + -14.97670841217041 + ], + [ + "▁BOOST", + -14.976723670959473 + ], + [ + "▁Andra", + -14.97673225402832 + ], + [ + "▁Sandpiper", + -14.976736068725586 + ], + [ + "lesia", + -14.976758003234863 + ], + [ + "ANDER", + -14.97677230834961 + ], + [ + "▁cutesy", + -14.976783752441406 + ], + [ + "Elite", + -14.976785659790039 + ], + [ + "▁oklahoma", + -14.976800918579102 + ], + [ + "▁pitfall", + -14.976813316345215 + ], + [ + "▁snitch", + -14.976813316345215 + ], + [ + "▁Narayana", + -14.976828575134277 + ], + [ + "▁Subtract", + -14.976853370666504 + ], + [ + "▁Informer", + -14.976863861083984 + ], + [ + "▁ECW", + -14.976912498474121 + ], + [ + "raba", + -14.976938247680664 + ], + [ + "▁julie", + -14.97697925567627 + ], + [ + "▁bloodlines", + -14.97700023651123 + ], + [ + "investors", + -14.977025032043457 + ], + [ + "▁Munson", + -14.977036476135254 + ], + [ + "Temple", + -14.97704792022705 + ], + [ + "NGE", + -14.977057456970215 + ], + [ + "ERM", + -14.977066040039062 + ], + [ + "▁Golovkin", + -14.977127075195312 + ], + [ + "▁SYDNEY", + -14.977166175842285 + ], + [ + "injured", + -14.977180480957031 + ], + [ + "▁Vise", + -14.977213859558105 + ], + [ + "▁accrediting", + -14.97726821899414 + ], + [ + "▁zeroes", + -14.97726821899414 + ], + [ + "▁HRS", + -14.977270126342773 + ], + [ + "▁Mahabharata", + -14.977270126342773 + ], + [ + "▁Isola", + -14.97732162475586 + ], + [ + "chian", + -14.977322578430176 + ], + [ + "▁painterly", + -14.977331161499023 + ], + [ + "ـ", + -14.977339744567871 + ], + [ + "▁parenchyma", + -14.977340698242188 + ], + [ + "▁maltreatment", + -14.977410316467285 + ], + [ + "▁Enlisted", + -14.977452278137207 + ], + [ + "Broken", + -14.977489471435547 + ], + [ + "submission", + -14.977495193481445 + ], + [ + "ontology", + -14.977498054504395 + ], + [ + "uario", + -14.977533340454102 + ], + [ + "▁Monarchy", + -14.97756576538086 + ], + [ + "▁GMS", + -14.977574348449707 + ], + [ + "▁están", + -14.977591514587402 + ], + [ + "▁assertiveness", + -14.977615356445312 + ], + [ + "yeh", + -14.977633476257324 + ], + [ + "sweetened", + -14.977652549743652 + ], + [ + "▁Eee", + -14.97769832611084 + ], + [ + "▁Izmir", + -14.977731704711914 + ], + [ + "Phillips", + -14.977755546569824 + ], + [ + "▁webmail", + -14.977798461914062 + ], + [ + "DAT", + -14.977842330932617 + ], + [ + "▁qué", + -14.977903366088867 + ], + [ + "▁Recherche", + -14.977910995483398 + ], + [ + "▁762", + -14.977959632873535 + ], + [ + "▁Jaclyn", + -14.977965354919434 + ], + [ + "▁chrysanthemum", + -14.977973937988281 + ], + [ + "▁apologist", + -14.978041648864746 + ], + [ + "▁SDM", + -14.97806167602539 + ], + [ + "▁mishandled", + -14.978070259094238 + ], + [ + "▁aphorism", + -14.978082656860352 + ], + [ + "▁squirming", + -14.978096961975098 + ], + [ + "▁Vitamix", + -14.97810173034668 + ], + [ + "▁domiciled", + -14.97811508178711 + ], + [ + "wrinkle", + -14.978170394897461 + ], + [ + "▁Tosca", + -14.978180885314941 + ], + [ + "▁Axial", + -14.978181838989258 + ], + [ + "▁broncho", + -14.978214263916016 + ], + [ + "ovsk", + -14.978215217590332 + ], + [ + "▁misperception", + -14.97824764251709 + ], + [ + "▁Salud", + -14.978288650512695 + ], + [ + "Folk", + -14.9783296585083 + ], + [ + "histoire", + -14.978331565856934 + ], + [ + "1889", + -14.97833251953125 + ], + [ + "▁hyster", + -14.978333473205566 + ], + [ + "▁ZL", + -14.978336334228516 + ], + [ + "▁Crave", + -14.97834300994873 + ], + [ + "liberalism", + -14.978370666503906 + ], + [ + "▁Directories", + -14.978375434875488 + ], + [ + "maan", + -14.978403091430664 + ], + [ + "confirm", + -14.978424072265625 + ], + [ + "▁Ope", + -14.978433609008789 + ], + [ + "BBS", + -14.978439331054688 + ], + [ + "Syria", + -14.978483200073242 + ], + [ + "▁Metallurgy", + -14.978496551513672 + ], + [ + "▁FIDE", + -14.978519439697266 + ], + [ + "forged", + -14.978572845458984 + ], + [ + "waisted", + -14.978590965270996 + ], + [ + "▁SVR", + -14.978607177734375 + ], + [ + "destroying", + -14.978672981262207 + ], + [ + "Thing", + -14.978694915771484 + ], + [ + "▁Huan", + -14.978703498840332 + ], + [ + "anek", + -14.978710174560547 + ], + [ + "▁Persuasion", + -14.978731155395508 + ], + [ + "▁Directional", + -14.97874927520752 + ], + [ + "第一", + -14.978767395019531 + ], + [ + "▁Kesh", + -14.978776931762695 + ], + [ + "▁Tupelo", + -14.97878360748291 + ], + [ + "▁Rickie", + -14.978866577148438 + ], + [ + "▁ह", + -14.97886848449707 + ], + [ + "▁BIR", + -14.978872299194336 + ], + [ + "зна", + -14.978883743286133 + ], + [ + "▁Steinway", + -14.97891616821289 + ], + [ + "▁bionic", + -14.978927612304688 + ], + [ + "▁Hellen", + -14.978935241699219 + ], + [ + "▁Employed", + -14.978954315185547 + ], + [ + "▁unidirectional", + -14.978965759277344 + ], + [ + "▁glucosamine", + -14.978992462158203 + ], + [ + "▁rollicking", + -14.978992462158203 + ], + [ + "▁965", + -14.97900390625 + ], + [ + "NCO", + -14.979015350341797 + ], + [ + "▁localisation", + -14.979028701782227 + ], + [ + "▁Shakira", + -14.979043006896973 + ], + [ + "wisdom", + -14.97905158996582 + ], + [ + "▁TDM", + -14.97905158996582 + ], + [ + "classroom", + -14.979059219360352 + ], + [ + "iotis", + -14.979063034057617 + ], + [ + "▁Cappadocia", + -14.979084014892578 + ], + [ + "▁vindicate", + -14.979127883911133 + ], + [ + "▁Beret", + -14.979155540466309 + ], + [ + "▁afterschool", + -14.979180335998535 + ], + [ + "dmimages", + -14.979242324829102 + ], + [ + "challenging", + -14.979244232177734 + ], + [ + "▁Captivating", + -14.97925090789795 + ], + [ + "▁Jailbreak", + -14.979284286499023 + ], + [ + "▁Argue", + -14.97928524017334 + ], + [ + "▁concurring", + -14.979310035705566 + ], + [ + "▁dehydrate", + -14.97935676574707 + ], + [ + "▁TRD", + -14.979364395141602 + ], + [ + "▁buddha", + -14.979364395141602 + ], + [ + "▁Bav", + -14.97937297821045 + ], + [ + "▁Comeback", + -14.979385375976562 + ], + [ + "▁parkway", + -14.979393005371094 + ], + [ + "ppert", + -14.979446411132812 + ], + [ + "furnished", + -14.979452133178711 + ], + [ + "▁Spaulding", + -14.979475975036621 + ], + [ + "▁soundstage", + -14.979482650756836 + ], + [ + "▁sutra", + -14.979493141174316 + ], + [ + "▁rower", + -14.979500770568848 + ], + [ + "▁rico", + -14.979554176330566 + ], + [ + "▁Bodybuilding", + -14.979584693908691 + ], + [ + "▁Yog", + -14.979602813720703 + ], + [ + "▁regency", + -14.979622840881348 + ], + [ + "hva", + -14.97962474822998 + ], + [ + "▁poinsettia", + -14.979632377624512 + ], + [ + "▁Zander", + -14.97969913482666 + ], + [ + "▁Emmi", + -14.979744911193848 + ], + [ + "aggy", + -14.979762077331543 + ], + [ + "▁Environmentally", + -14.979765892028809 + ], + [ + "ред", + -14.979772567749023 + ], + [ + "▁Euph", + -14.979802131652832 + ], + [ + "▁spaniel", + -14.979802131652832 + ], + [ + "▁stockists", + -14.979837417602539 + ], + [ + "▁Disadvantages", + -14.979881286621094 + ], + [ + "▁tumblers", + -14.979889869689941 + ], + [ + "▁constancy", + -14.979939460754395 + ], + [ + "▁Arnhem", + -14.97999382019043 + ], + [ + "▁assayed", + -14.980018615722656 + ], + [ + "▁finalising", + -14.980019569396973 + ], + [ + "▁ctrl", + -14.980023384094238 + ], + [ + "▁AEM", + -14.980061531066895 + ], + [ + "Cutie", + -14.980164527893066 + ], + [ + "▁Brag", + -14.980198860168457 + ], + [ + "▁682", + -14.980224609375 + ], + [ + "▁fizzle", + -14.98025131225586 + ], + [ + "▁cajole", + -14.980269432067871 + ], + [ + "1893", + -14.980278015136719 + ], + [ + "▁ampicillin", + -14.9802827835083 + ], + [ + "▁Lisboa", + -14.9802885055542 + ], + [ + "▁FUT", + -14.98029899597168 + ], + [ + "▁glosses", + -14.980359077453613 + ], + [ + "▁Javid", + -14.980385780334473 + ], + [ + "▁Ancestors", + -14.980420112609863 + ], + [ + "▁Pada", + -14.98042106628418 + ], + [ + "Minnesota", + -14.980480194091797 + ], + [ + "Pty", + -14.9805269241333 + ], + [ + "ijin", + -14.980527877807617 + ], + [ + "wohl", + -14.98052978515625 + ], + [ + "▁MBTA", + -14.980574607849121 + ], + [ + "Calendar", + -14.980585098266602 + ], + [ + "▁1773", + -14.980608940124512 + ], + [ + "racking", + -14.98064136505127 + ], + [ + "▁VGN", + -14.980690002441406 + ], + [ + "becoming", + -14.980724334716797 + ], + [ + "ologize", + -14.980731964111328 + ], + [ + "FORCE", + -14.98073959350586 + ], + [ + "▁Nollywood", + -14.980743408203125 + ], + [ + "Developer", + -14.980757713317871 + ], + [ + "▁MOMENT", + -14.980798721313477 + ], + [ + "▁Spree", + -14.980856895446777 + ], + [ + "▁reflectivity", + -14.980859756469727 + ], + [ + "▁MATE", + -14.980886459350586 + ], + [ + "▁outputting", + -14.98089599609375 + ], + [ + "▁skiff", + -14.98089599609375 + ], + [ + "▁saunter", + -14.980912208557129 + ], + [ + "▁NIP", + -14.980918884277344 + ], + [ + "▁SOX", + -14.980937957763672 + ], + [ + "kaka", + -14.980948448181152 + ], + [ + "▁Pathologist", + -14.980987548828125 + ], + [ + "jw", + -14.98099422454834 + ], + [ + "▁BOND", + -14.980998039245605 + ], + [ + "▁Decorator", + -14.981008529663086 + ], + [ + "▁Merciful", + -14.981008529663086 + ], + [ + "▁Zimbabweans", + -14.981010437011719 + ], + [ + "textured", + -14.981066703796387 + ], + [ + "▁passivity", + -14.981066703796387 + ], + [ + "▁RELATING", + -14.981112480163574 + ], + [ + "▁Waterways", + -14.981171607971191 + ], + [ + "▁slacking", + -14.981186866760254 + ], + [ + "▁Chopped", + -14.981207847595215 + ], + [ + "itaire", + -14.981216430664062 + ], + [ + "▁DeMarco", + -14.98125171661377 + ], + [ + "▁suf", + -14.981258392333984 + ], + [ + "▁saddens", + -14.981292724609375 + ], + [ + "▁imput", + -14.981307983398438 + ], + [ + "Bak", + -14.981404304504395 + ], + [ + "▁enjoined", + -14.981406211853027 + ], + [ + "Cox", + -14.981428146362305 + ], + [ + "éra", + -14.981447219848633 + ], + [ + "▁validly", + -14.981493949890137 + ], + [ + "doped", + -14.981498718261719 + ], + [ + "▁Winkle", + -14.98153018951416 + ], + [ + "▁Hoppe", + -14.981575965881348 + ], + [ + "obel", + -14.98160457611084 + ], + [ + "▁SIDS", + -14.981620788574219 + ], + [ + "investor", + -14.981630325317383 + ], + [ + "1440", + -14.981645584106445 + ], + [ + "exclude", + -14.981657981872559 + ], + [ + "▁tRNA", + -14.981658935546875 + ], + [ + "▁COE", + -14.981722831726074 + ], + [ + "Hebrew", + -14.981732368469238 + ], + [ + "igar", + -14.981766700744629 + ], + [ + "Grab", + -14.98178482055664 + ], + [ + "▁Pineda", + -14.98180103302002 + ], + [ + "▁oxidant", + -14.981842041015625 + ], + [ + "agreement", + -14.981907844543457 + ], + [ + "▁Gagnon", + -14.981925010681152 + ], + [ + "JHL", + -14.981943130493164 + ], + [ + "▁hawaii", + -14.981954574584961 + ], + [ + "▁Scriptural", + -14.981966972351074 + ], + [ + "▁Evolved", + -14.981988906860352 + ], + [ + "SEXY", + -14.982132911682129 + ], + [ + "hydride", + -14.98216438293457 + ], + [ + "merger", + -14.982172012329102 + ], + [ + "▁Prashant", + -14.982189178466797 + ], + [ + "▁boreal", + -14.98220443725586 + ], + [ + "▁squealed", + -14.982226371765137 + ], + [ + "Anonymous", + -14.982232093811035 + ], + [ + "▁LaGuardia", + -14.982244491577148 + ], + [ + "▁Flutter", + -14.982248306274414 + ], + [ + "▁misdirected", + -14.982248306274414 + ], + [ + "▁UCSB", + -14.982281684875488 + ], + [ + "▁tendonitis", + -14.982291221618652 + ], + [ + "▁porcine", + -14.982293128967285 + ], + [ + "▁Tagalog", + -14.982315063476562 + ], + [ + "▁alpacas", + -14.982339859008789 + ], + [ + "▁Kowalski", + -14.982378005981445 + ], + [ + "▁Cling", + -14.982391357421875 + ], + [ + "▁craftspeople", + -14.982405662536621 + ], + [ + "ECM", + -14.982417106628418 + ], + [ + "▁OPTIM", + -14.982419967651367 + ], + [ + "▁Sensible", + -14.982423782348633 + ], + [ + "さ", + -14.982431411743164 + ], + [ + "addie", + -14.982436180114746 + ], + [ + "▁chomping", + -14.982449531555176 + ], + [ + "erik", + -14.982461929321289 + ], + [ + "▁Magni", + -14.982462882995605 + ], + [ + "▁Saccharomyces", + -14.98247241973877 + ], + [ + "Lok", + -14.982501029968262 + ], + [ + "▁benthic", + -14.982504844665527 + ], + [ + "▁BOL", + -14.982524871826172 + ], + [ + "▁argos", + -14.982531547546387 + ], + [ + "▁modo", + -14.98254680633545 + ], + [ + "▁leathery", + -14.98259162902832 + ], + [ + "bhav", + -14.982601165771484 + ], + [ + "flowering", + -14.982626914978027 + ], + [ + "▁Windhoek", + -14.982665061950684 + ], + [ + "▁reportable", + -14.982696533203125 + ], + [ + "▁Seraph", + -14.982743263244629 + ], + [ + "▁Hepato", + -14.982770919799805 + ], + [ + "▁Interpersonal", + -14.982770919799805 + ], + [ + "▁Solange", + -14.982793807983398 + ], + [ + "speakers", + -14.98280143737793 + ], + [ + "▁brazilian", + -14.98281192779541 + ], + [ + "▁jacking", + -14.982863426208496 + ], + [ + "▁pode", + -14.982873916625977 + ], + [ + "lante", + -14.98289680480957 + ], + [ + "▁Burgos", + -14.982900619506836 + ], + [ + "▁Debi", + -14.982915878295898 + ], + [ + "▁persimmon", + -14.982956886291504 + ], + [ + "▁Jalisco", + -14.982973098754883 + ], + [ + "▁Arz", + -14.982986450195312 + ], + [ + "▁Rhodesia", + -14.983006477355957 + ], + [ + "widget", + -14.983025550842285 + ], + [ + "▁Addon", + -14.983050346374512 + ], + [ + "▁misfit", + -14.983094215393066 + ], + [ + "▁agitating", + -14.98310661315918 + ], + [ + "▁Partisan", + -14.98317813873291 + ], + [ + "▁Brompton", + -14.983185768127441 + ], + [ + "▁casted", + -14.983185768127441 + ], + [ + "flyer", + -14.983243942260742 + ], + [ + "shipment", + -14.98331069946289 + ], + [ + "▁slurred", + -14.98332691192627 + ], + [ + "donor", + -14.983329772949219 + ], + [ + "Keith", + -14.983342170715332 + ], + [ + "Louise", + -14.983375549316406 + ], + [ + "では", + -14.983424186706543 + ], + [ + "▁Bramble", + -14.983427047729492 + ], + [ + "boil", + -14.983431816101074 + ], + [ + "▁LTR", + -14.983471870422363 + ], + [ + "DIG", + -14.98348617553711 + ], + [ + "▁assessee", + -14.983495712280273 + ], + [ + "ooooooo", + -14.983514785766602 + ], + [ + "▁Jonesboro", + -14.9835844039917 + ], + [ + "goose", + -14.983623504638672 + ], + [ + "▁Emergencies", + -14.983626365661621 + ], + [ + "Crown", + -14.983654022216797 + ], + [ + "ilov", + -14.983656883239746 + ], + [ + "▁Hematology", + -14.983662605285645 + ], + [ + "ZEN", + -14.983673095703125 + ], + [ + "▁FASB", + -14.983702659606934 + ], + [ + "▁Nema", + -14.983707427978516 + ], + [ + "▁McClelland", + -14.98372745513916 + ], + [ + "BLO", + -14.983732223510742 + ], + [ + "Taste", + -14.983732223510742 + ], + [ + "▁bleep", + -14.983745574951172 + ], + [ + "KON", + -14.983752250671387 + ], + [ + "▁Interpret", + -14.983757019042969 + ], + [ + "▁sluice", + -14.983770370483398 + ], + [ + "▁Thesaurus", + -14.983772277832031 + ], + [ + "eryl", + -14.983794212341309 + ], + [ + "▁tren", + -14.983833312988281 + ], + [ + "▁Gizmodo", + -14.983841896057129 + ], + [ + "▁Elam", + -14.983860969543457 + ], + [ + "▁distillate", + -14.983915328979492 + ], + [ + "Rib", + -14.983955383300781 + ], + [ + "CME", + -14.983960151672363 + ], + [ + "▁Semb", + -14.983969688415527 + ], + [ + "▁subpoenaed", + -14.984001159667969 + ], + [ + "▁REQUIREMENTS", + -14.984009742736816 + ], + [ + "moda", + -14.984039306640625 + ], + [ + "▁nauseating", + -14.984175682067871 + ], + [ + "▁Levante", + -14.984177589416504 + ], + [ + "iné", + -14.984186172485352 + ], + [ + "▁seminaries", + -14.9841947555542 + ], + [ + "▁Frac", + -14.984197616577148 + ], + [ + "▁Mimosa", + -14.984235763549805 + ], + [ + "1840", + -14.984292984008789 + ], + [ + "▁McCracken", + -14.984323501586914 + ], + [ + "Chelsea", + -14.984346389770508 + ], + [ + "▁wallop", + -14.984376907348633 + ], + [ + "▁Rejuvenation", + -14.984387397766113 + ], + [ + "Diva", + -14.984402656555176 + ], + [ + "▁Quinlan", + -14.984416007995605 + ], + [ + "Strange", + -14.984427452087402 + ], + [ + "▁Chidambaram", + -14.984439849853516 + ], + [ + "▁Wirtschaft", + -14.984452247619629 + ], + [ + "lantern", + -14.98446273803711 + ], + [ + "▁Kapp", + -14.98446273803711 + ], + [ + "▁Essendon", + -14.98449993133545 + ], + [ + "owo", + -14.984501838684082 + ], + [ + "▁mended", + -14.984559059143066 + ], + [ + "▁Predictably", + -14.984567642211914 + ], + [ + "aurus", + -14.984594345092773 + ], + [ + "▁Revealing", + -14.984631538391113 + ], + [ + "▁Detailing", + -14.984650611877441 + ], + [ + "▁Psoriasis", + -14.984663009643555 + ], + [ + "▁Draymond", + -14.984664916992188 + ], + [ + "FIR", + -14.984668731689453 + ], + [ + "▁shoutout", + -14.984676361083984 + ], + [ + "FLOW", + -14.984682083129883 + ], + [ + "▁SIEM", + -14.984686851501465 + ], + [ + "▁Centerville", + -14.984732627868652 + ], + [ + "apartheid", + -14.984755516052246 + ], + [ + "▁Cosgrove", + -14.984759330749512 + ], + [ + "画", + -14.984762191772461 + ], + [ + "▁teleportation", + -14.98482608795166 + ], + [ + "▁Flourish", + -14.98485279083252 + ], + [ + "AIT", + -14.984858512878418 + ], + [ + "▁loveliness", + -14.984870910644531 + ], + [ + "Crusher", + -14.984907150268555 + ], + [ + "▁speedway", + -14.984953880310059 + ], + [ + "avian", + -14.985023498535156 + ], + [ + "networking", + -14.985032081604004 + ], + [ + "Wisconsin", + -14.9850435256958 + ], + [ + "Jeremy", + -14.985054969787598 + ], + [ + "▁stilettos", + -14.985093116760254 + ], + [ + "VISION", + -14.985107421875 + ], + [ + "▁iQ", + -14.985124588012695 + ], + [ + "▁peeler", + -14.985172271728516 + ], + [ + "▁swathe", + -14.985191345214844 + ], + [ + "▁lowdown", + -14.985217094421387 + ], + [ + "▁Upanishad", + -14.985240936279297 + ], + [ + "▁689", + -14.985270500183105 + ], + [ + "Bloomberg", + -14.985272407531738 + ], + [ + "▁Whis", + -14.985285758972168 + ], + [ + "haga", + -14.985299110412598 + ], + [ + "▁Principe", + -14.985300064086914 + ], + [ + "▁noblest", + -14.985331535339355 + ], + [ + "▁ruminant", + -14.985337257385254 + ], + [ + "▁maturities", + -14.985372543334961 + ], + [ + "tribal", + -14.985377311706543 + ], + [ + "▁Liddell", + -14.985389709472656 + ], + [ + "▁Grocer", + -14.985432624816895 + ], + [ + "glam", + -14.985453605651855 + ], + [ + "▁Billet", + -14.985477447509766 + ], + [ + "▁NVR", + -14.985482215881348 + ], + [ + "▁surmount", + -14.985482215881348 + ], + [ + "▁Econo", + -14.985489845275879 + ], + [ + "RENT", + -14.985506057739258 + ], + [ + "▁Shino", + -14.985512733459473 + ], + [ + "borate", + -14.98553466796875 + ], + [ + "Consider", + -14.985536575317383 + ], + [ + "▁Pulley", + -14.985555648803711 + ], + [ + "SBURG", + -14.985570907592773 + ], + [ + "▁Lacoste", + -14.985602378845215 + ], + [ + "▁Bleed", + -14.985631942749023 + ], + [ + "▁sardonic", + -14.985674858093262 + ], + [ + "▁AOA", + -14.985675811767578 + ], + [ + "▁bellwether", + -14.985687255859375 + ], + [ + "ARIA", + -14.985722541809082 + ], + [ + "▁Lexie", + -14.985727310180664 + ], + [ + "▁Lovelace", + -14.985777854919434 + ], + [ + "▁knoll", + -14.985798835754395 + ], + [ + "▁EXTREMELY", + -14.985812187194824 + ], + [ + "▁Rout", + -14.985830307006836 + ], + [ + "Stein", + -14.985836029052734 + ], + [ + "▁HeLa", + -14.985843658447266 + ], + [ + "▁AFFILIATES", + -14.985884666442871 + ], + [ + "▁Temperance", + -14.985943794250488 + ], + [ + "▁hyperpigmentation", + -14.98597240447998 + ], + [ + "eppe", + -14.98597526550293 + ], + [ + "▁Hassel", + -14.985980033874512 + ], + [ + "▁Pitching", + -14.985994338989258 + ], + [ + "Jose", + -14.985995292663574 + ], + [ + "▁Crutch", + -14.986028671264648 + ], + [ + "elden", + -14.98603343963623 + ], + [ + "▁Gopher", + -14.98609447479248 + ], + [ + "brite", + -14.986099243164062 + ], + [ + "wizard", + -14.986148834228516 + ], + [ + "▁nya", + -14.986181259155273 + ], + [ + "Arena", + -14.986191749572754 + ], + [ + "فر", + -14.986231803894043 + ], + [ + "▁Brosnan", + -14.986246109008789 + ], + [ + "flavor", + -14.986252784729004 + ], + [ + "tiy", + -14.986310958862305 + ], + [ + "▁Miao", + -14.986331939697266 + ], + [ + "▁fertilisers", + -14.986390113830566 + ], + [ + "▁Segu", + -14.9863920211792 + ], + [ + "yō", + -14.98641586303711 + ], + [ + "▁Zug", + -14.986444473266602 + ], + [ + "▁contempor", + -14.986448287963867 + ], + [ + "мат", + -14.986456871032715 + ], + [ + "▁FSH", + -14.986457824707031 + ], + [ + "▁Mellow", + -14.986466407775879 + ], + [ + "▁coarsely", + -14.986486434936523 + ], + [ + "▁Haymarket", + -14.98648738861084 + ], + [ + "▁cambridge", + -14.98649787902832 + ], + [ + "lott", + -14.986498832702637 + ], + [ + "▁Thibodeau", + -14.986515998840332 + ], + [ + "▁Arnett", + -14.98654842376709 + ], + [ + "▁narco", + -14.986549377441406 + ], + [ + "▁Nutrients", + -14.98656940460205 + ], + [ + "▁HES", + -14.986572265625 + ], + [ + "▁Selfish", + -14.986588478088379 + ], + [ + "everyday", + -14.986618995666504 + ], + [ + "▁sheepishly", + -14.98661994934082 + ], + [ + "▁amateurish", + -14.986640930175781 + ], + [ + "▁warlords", + -14.986641883850098 + ], + [ + "gentle", + -14.986644744873047 + ], + [ + "▁Elektra", + -14.986701011657715 + ], + [ + "▁efm", + -14.98670482635498 + ], + [ + "▁Hossain", + -14.986714363098145 + ], + [ + "inkel", + -14.986723899841309 + ], + [ + "ulen", + -14.986736297607422 + ], + [ + "celebrity", + -14.986766815185547 + ], + [ + "▁Mukh", + -14.986788749694824 + ], + [ + "Him", + -14.986831665039062 + ], + [ + "▁Kyrgios", + -14.986831665039062 + ], + [ + "▁TBC", + -14.986842155456543 + ], + [ + "PID", + -14.986848831176758 + ], + [ + "angry", + -14.986869812011719 + ], + [ + "varo", + -14.986917495727539 + ], + [ + "geschichte", + -14.986971855163574 + ], + [ + "▁industri", + -14.986977577209473 + ], + [ + "▁Plz", + -14.987016677856445 + ], + [ + "▁AngularJS", + -14.987048149108887 + ], + [ + "▁Molded", + -14.987060546875 + ], + [ + "AUT", + -14.987077713012695 + ], + [ + "▁ikke", + -14.98708438873291 + ], + [ + "▁Iodine", + -14.98710823059082 + ], + [ + "ɛ", + -14.987147331237793 + ], + [ + "▁Nonsense", + -14.987151145935059 + ], + [ + "▁GTC", + -14.987153053283691 + ], + [ + "▁moors", + -14.987156867980957 + ], + [ + "▁unsanitary", + -14.987188339233398 + ], + [ + "▁최", + -14.98719310760498 + ], + [ + "▁Telltale", + -14.987199783325195 + ], + [ + "▁Backbone", + -14.987223625183105 + ], + [ + "▁Sealy", + -14.987256050109863 + ], + [ + "kku", + -14.987286567687988 + ], + [ + "rambling", + -14.9873046875 + ], + [ + "▁Subtitles", + -14.987358093261719 + ], + [ + "GRAPH", + -14.987364768981934 + ], + [ + "▁Huda", + -14.987385749816895 + ], + [ + "▁Gowdy", + -14.987409591674805 + ], + [ + "▁backcourt", + -14.987424850463867 + ], + [ + "Whole", + -14.987432479858398 + ], + [ + "▁Gillingham", + -14.987454414367676 + ], + [ + "字", + -14.987502098083496 + ], + [ + "▁fess", + -14.987510681152344 + ], + [ + "▁specialism", + -14.98751163482666 + ], + [ + "laub", + -14.987521171569824 + ], + [ + "▁Cush", + -14.987530708312988 + ], + [ + "입니다", + -14.987543106079102 + ], + [ + "▁Whoop", + -14.98757553100586 + ], + [ + "▁Doula", + -14.987590789794922 + ], + [ + "▁CpG", + -14.987598419189453 + ], + [ + "▁dps", + -14.987631797790527 + ], + [ + "spectral", + -14.987683296203613 + ], + [ + "omorphism", + -14.987685203552246 + ], + [ + "▁solidifies", + -14.98769474029541 + ], + [ + "utha", + -14.987700462341309 + ], + [ + "▁Shafer", + -14.987702369689941 + ], + [ + "▁unpainted", + -14.98770523071289 + ], + [ + "▁Shackleton", + -14.9877290725708 + ], + [ + "earlier", + -14.98774242401123 + ], + [ + "▁jede", + -14.987789154052734 + ], + [ + "Memo", + -14.987817764282227 + ], + [ + "▁DECEMBER", + -14.987845420837402 + ], + [ + "▁же", + -14.987849235534668 + ], + [ + "▁Shriver", + -14.987930297851562 + ], + [ + "LIKE", + -14.987942695617676 + ], + [ + "▁manchester", + -14.987942695617676 + ], + [ + "▁Asean", + -14.987961769104004 + ], + [ + "filler", + -14.987981796264648 + ], + [ + "guilty", + -14.987988471984863 + ], + [ + "▁Osinbajo", + -14.988017082214355 + ], + [ + "्र", + -14.988049507141113 + ], + [ + "▁Moline", + -14.98806381225586 + ], + [ + "bino", + -14.988099098205566 + ], + [ + "▁Superfund", + -14.988102912902832 + ], + [ + "▁را", + -14.988116264343262 + ], + [ + "Dialog", + -14.988119125366211 + ], + [ + "Bid", + -14.988126754760742 + ], + [ + "obra", + -14.988129615783691 + ], + [ + "choline", + -14.988155364990234 + ], + [ + "▁landscaper", + -14.98816967010498 + ], + [ + "▁Chore", + -14.988213539123535 + ], + [ + "KJV", + -14.988216400146484 + ], + [ + "alyzer", + -14.988229751586914 + ], + [ + "▁Heber", + -14.988240242004395 + ], + [ + "▁hvac", + -14.988256454467773 + ], + [ + "▁Hoof", + -14.98826789855957 + ], + [ + "▁Atwater", + -14.988271713256836 + ], + [ + "ṇ", + -14.988275527954102 + ], + [ + "▁Alienware", + -14.988295555114746 + ], + [ + "▁circumspect", + -14.988313674926758 + ], + [ + "▁memorably", + -14.988333702087402 + ], + [ + "▁tarragon", + -14.988351821899414 + ], + [ + "ianus", + -14.988371849060059 + ], + [ + "▁première", + -14.988374710083008 + ], + [ + "▁Kittens", + -14.988375663757324 + ], + [ + "▁Zaf", + -14.988381385803223 + ], + [ + "▁synchronised", + -14.988410949707031 + ], + [ + "▁Fitter", + -14.988444328308105 + ], + [ + "▁deliberating", + -14.98849105834961 + ], + [ + "▁Beebe", + -14.988493919372559 + ], + [ + "▁CLOUD", + -14.988499641418457 + ], + [ + "▁Rapoport", + -14.988517761230469 + ], + [ + "25°", + -14.988526344299316 + ], + [ + "ixi", + -14.988556861877441 + ], + [ + "▁fattening", + -14.988569259643555 + ], + [ + "▁prospectively", + -14.988602638244629 + ], + [ + "▁girlie", + -14.988653182983398 + ], + [ + "▁flinging", + -14.988655090332031 + ], + [ + "Thermo", + -14.988659858703613 + ], + [ + "▁Jovan", + -14.988688468933105 + ], + [ + "departmental", + -14.988698959350586 + ], + [ + "Breakfast", + -14.98878002166748 + ], + [ + "▁foreshadow", + -14.988787651062012 + ], + [ + "▁monad", + -14.988801956176758 + ], + [ + "▁Bowe", + -14.988809585571289 + ], + [ + "▁Worley", + -14.988814353942871 + ], + [ + "ZAR", + -14.98882007598877 + ], + [ + "▁Worrying", + -14.988821029663086 + ], + [ + "▁Carman", + -14.988860130310059 + ], + [ + "▁Yeltsin", + -14.988873481750488 + ], + [ + "▁GAN", + -14.98892879486084 + ], + [ + "▁Ballpark", + -14.988931655883789 + ], + [ + "Greater", + -14.98900032043457 + ], + [ + "▁intersex", + -14.989009857177734 + ], + [ + "▁Communal", + -14.989012718200684 + ], + [ + "rahman", + -14.989020347595215 + ], + [ + "▁SPIE", + -14.989053726196289 + ], + [ + "hereafter", + -14.989055633544922 + ], + [ + "etching", + -14.989070892333984 + ], + [ + "▁splinters", + -14.989130020141602 + ], + [ + "▁biophysical", + -14.989140510559082 + ], + [ + "amah", + -14.98917007446289 + ], + [ + "▁TEE", + -14.989190101623535 + ], + [ + "▁Diffuser", + -14.989224433898926 + ], + [ + "▁frieze", + -14.98926067352295 + ], + [ + "▁CPF", + -14.989275932312012 + ], + [ + "▁unbounded", + -14.989300727844238 + ], + [ + "▁Sewage", + -14.989314079284668 + ], + [ + "▁mik", + -14.98932933807373 + ], + [ + "▁Chauhan", + -14.989339828491211 + ], + [ + "▁BOA", + -14.989362716674805 + ], + [ + "▁Saxophone", + -14.98936939239502 + ], + [ + "▁NSP", + -14.989375114440918 + ], + [ + "▁irreconcilable", + -14.989375114440918 + ], + [ + "▁RMIT", + -14.98937702178955 + ], + [ + "fool", + -14.9893798828125 + ], + [ + "▁puller", + -14.989421844482422 + ], + [ + "▁chimps", + -14.989426612854004 + ], + [ + "▁Ghulam", + -14.989428520202637 + ], + [ + "▁fanny", + -14.989448547363281 + ], + [ + "resin", + -14.989458084106445 + ], + [ + "род", + -14.989460945129395 + ], + [ + "▁parson", + -14.989480018615723 + ], + [ + "▁Kinshasa", + -14.989480972290039 + ], + [ + "▁hw", + -14.989526748657227 + ], + [ + "iyeh", + -14.989611625671387 + ], + [ + "▁conjunctivitis", + -14.989612579345703 + ], + [ + "▁Outbreak", + -14.989636421203613 + ], + [ + "▁lambasted", + -14.989638328552246 + ], + [ + "▁AIO", + -14.989649772644043 + ], + [ + "▁Dato", + -14.989652633666992 + ], + [ + "▁insemination", + -14.989666938781738 + ], + [ + "▁Metra", + -14.989670753479004 + ], + [ + "▁dulce", + -14.989673614501953 + ], + [ + "▁shir", + -14.989728927612305 + ], + [ + "▁zines", + -14.989791870117188 + ], + [ + "▁sca", + -14.989848136901855 + ], + [ + "▁undifferentiated", + -14.989873886108398 + ], + [ + "▁Lighthizer", + -14.989876747131348 + ], + [ + "▁Quicksilver", + -14.989879608154297 + ], + [ + "▁Taxonomy", + -14.989891052246094 + ], + [ + "whichever", + -14.989919662475586 + ], + [ + "kirch", + -14.989974975585938 + ], + [ + "▁repossessed", + -14.990053176879883 + ], + [ + "▁coffeehouse", + -14.990056037902832 + ], + [ + "Fax", + -14.99009895324707 + ], + [ + "▁Modernity", + -14.990129470825195 + ], + [ + "لی", + -14.99013614654541 + ], + [ + "▁Caliphate", + -14.990175247192383 + ], + [ + "▁chenille", + -14.99020767211914 + ], + [ + "▁tentacle", + -14.990213394165039 + ], + [ + "▁fenugreek", + -14.990220069885254 + ], + [ + "▁MAXIMUM", + -14.99024772644043 + ], + [ + "▁MEG", + -14.990262031555176 + ], + [ + "1885", + -14.990262985229492 + ], + [ + "kram", + -14.990290641784668 + ], + [ + "▁prosecutorial", + -14.990352630615234 + ], + [ + "RIF", + -14.990361213684082 + ], + [ + "enski", + -14.990370750427246 + ], + [ + "Haven", + -14.990374565124512 + ], + [ + "▁Harrelson", + -14.990446090698242 + ], + [ + "▁Ashlee", + -14.990453720092773 + ], + [ + "▁Kuiper", + -14.990470886230469 + ], + [ + "▁investiga", + -14.990532875061035 + ], + [ + "▁hypoxic", + -14.990543365478516 + ], + [ + "▁astound", + -14.990583419799805 + ], + [ + "Bert", + -14.990592002868652 + ], + [ + "▁premised", + -14.990609169006348 + ], + [ + "▁Nac", + -14.990629196166992 + ], + [ + "▁Scud", + -14.990636825561523 + ], + [ + "▁Callan", + -14.99063777923584 + ], + [ + "▁TSM", + -14.990640640258789 + ], + [ + "▁SDC", + -14.990641593933105 + ], + [ + "▁Uyghur", + -14.990655899047852 + ], + [ + "▁PHE", + -14.990680694580078 + ], + [ + "MEDIA", + -14.990681648254395 + ], + [ + "ış", + -14.99068546295166 + ], + [ + "▁Geospatial", + -14.990743637084961 + ], + [ + "▁tipple", + -14.99074649810791 + ], + [ + "▁Kyocera", + -14.990791320800781 + ], + [ + "▁sputum", + -14.990802764892578 + ], + [ + "Molly", + -14.990819931030273 + ], + [ + "▁Executor", + -14.99085521697998 + ], + [ + "▁heredity", + -14.990859031677246 + ], + [ + "▁Fiverr", + -14.990893363952637 + ], + [ + "karyo", + -14.9909086227417 + ], + [ + "Skills", + -14.990915298461914 + ], + [ + "▁PHS", + -14.990962982177734 + ], + [ + "には", + -14.990970611572266 + ], + [ + "▁Yuu", + -14.990971565246582 + ], + [ + "▁Brittney", + -14.99097728729248 + ], + [ + "caste", + -14.990984916687012 + ], + [ + "▁trig", + -14.991022109985352 + ], + [ + "genomics", + -14.99106216430664 + ], + [ + "▁sib", + -14.99106216430664 + ], + [ + "▁SSID", + -14.991083145141602 + ], + [ + "▁од", + -14.991083145141602 + ], + [ + "▁Manohar", + -14.991134643554688 + ], + [ + "▁squee", + -14.991137504577637 + ], + [ + "idze", + -14.991144180297852 + ], + [ + "▁parenteral", + -14.991168975830078 + ], + [ + "▁Mambo", + -14.991189002990723 + ], + [ + "▁Ceph", + -14.991194725036621 + ], + [ + "▁Nightstand", + -14.991203308105469 + ], + [ + "▁Choke", + -14.991230010986328 + ], + [ + "▁tabulated", + -14.99139404296875 + ], + [ + "▁intramural", + -14.991409301757812 + ], + [ + "▁Flank", + -14.991418838500977 + ], + [ + "▁Audacity", + -14.991422653198242 + ], + [ + "Maj", + -14.991454124450684 + ], + [ + "▁unaccountable", + -14.991475105285645 + ], + [ + "▁Mies", + -14.991491317749023 + ], + [ + "▁Obtained", + -14.991494178771973 + ], + [ + "▁eosinophil", + -14.991500854492188 + ], + [ + "▁harmonization", + -14.991501808166504 + ], + [ + "▁replaying", + -14.991538047790527 + ], + [ + "▁Hoon", + -14.991559028625488 + ], + [ + "луч", + -14.991568565368652 + ], + [ + "throne", + -14.991579055786133 + ], + [ + "▁Bluffton", + -14.99161434173584 + ], + [ + "▁Manchu", + -14.991619110107422 + ], + [ + "▁Gadsden", + -14.991661071777344 + ], + [ + "▁incognito", + -14.991678237915039 + ], + [ + "▁Orthop", + -14.991683959960938 + ], + [ + "Positive", + -14.99168872833252 + ], + [ + "▁Bridger", + -14.991714477539062 + ], + [ + "▁Ripe", + -14.99173641204834 + ], + [ + "gati", + -14.991753578186035 + ], + [ + "stigma", + -14.991771697998047 + ], + [ + "ingredient", + -14.991775512695312 + ], + [ + "▁Yaris", + -14.991776466369629 + ], + [ + "diction", + -14.991825103759766 + ], + [ + "irah", + -14.991832733154297 + ], + [ + "▁Cuddle", + -14.991840362548828 + ], + [ + "▁MTM", + -14.991866111755371 + ], + [ + "▁Sidebar", + -14.991868019104004 + ], + [ + "▁SBP", + -14.991877555847168 + ], + [ + "▁Ranjan", + -14.991903305053711 + ], + [ + "BEST", + -14.991930961608887 + ], + [ + "иль", + -14.991941452026367 + ], + [ + "▁DOESN", + -14.991981506347656 + ], + [ + "▁Artifacts", + -14.99202823638916 + ], + [ + "▁fut", + -14.992033958435059 + ], + [ + "▁Meagan", + -14.992100715637207 + ], + [ + "▁mortally", + -14.992106437683105 + ], + [ + "▁Thaddeus", + -14.992110252380371 + ], + [ + "Buster", + -14.99211597442627 + ], + [ + "▁conte", + -14.992193222045898 + ], + [ + "▁spiciness", + -14.992199897766113 + ], + [ + "▁Vonnegut", + -14.992229461669922 + ], + [ + "LDA", + -14.992236137390137 + ], + [ + "▁MUL", + -14.992283821105957 + ], + [ + "▁Talisman", + -14.992302894592285 + ], + [ + "▁washout", + -14.992369651794434 + ], + [ + "arney", + -14.992378234863281 + ], + [ + "Hate", + -14.992385864257812 + ], + [ + "▁Symp", + -14.992385864257812 + ], + [ + "Satan", + -14.992477416992188 + ], + [ + "cruz", + -14.992504119873047 + ], + [ + "▁GIT", + -14.992504119873047 + ], + [ + "▁Celery", + -14.992508888244629 + ], + [ + "▁sidewalls", + -14.992520332336426 + ], + [ + "Prize", + -14.992527961730957 + ], + [ + "Missouri", + -14.992562294006348 + ], + [ + "allied", + -14.992574691772461 + ], + [ + "CIE", + -14.99259090423584 + ], + [ + "advert", + -14.99264907836914 + ], + [ + "▁Forsythe", + -14.99267292022705 + ], + [ + "▁Edouard", + -14.99267578125 + ], + [ + "▁698", + -14.992691993713379 + ], + [ + "▁vexing", + -14.992746353149414 + ], + [ + "▁SHU", + -14.992751121520996 + ], + [ + "▁cyberpunk", + -14.992770195007324 + ], + [ + "Bedroom", + -14.992802619934082 + ], + [ + "fairy", + -14.992802619934082 + ], + [ + "▁verte", + -14.992818832397461 + ], + [ + "▁PTT", + -14.992866516113281 + ], + [ + "▁FORUM", + -14.992914199829102 + ], + [ + "▁Fabregas", + -14.99295711517334 + ], + [ + "▁TPO", + -14.99296760559082 + ], + [ + "▁Cuisinart", + -14.99297046661377 + ], + [ + "▁emote", + -14.9929780960083 + ], + [ + "▁adulation", + -14.992995262145996 + ], + [ + "ком", + -14.993132591247559 + ], + [ + "▁GOG", + -14.993147850036621 + ], + [ + "ノ", + -14.993163108825684 + ], + [ + "fossil", + -14.993170738220215 + ], + [ + "▁Columnist", + -14.993185997009277 + ], + [ + "だ", + -14.993207931518555 + ], + [ + "Degree", + -14.993213653564453 + ], + [ + "▁cele", + -14.993221282958984 + ], + [ + "▁Unfair", + -14.993256568908691 + ], + [ + "▁ditto", + -14.99327278137207 + ], + [ + "▁RCM", + -14.99328899383545 + ], + [ + "▁Milt", + -14.99332332611084 + ], + [ + "▁Emotionally", + -14.993334770202637 + ], + [ + "▁evangelistic", + -14.993337631225586 + ], + [ + "▁pallid", + -14.993345260620117 + ], + [ + "fifty", + -14.993356704711914 + ], + [ + "lauf", + -14.993413925170898 + ], + [ + "sailing", + -14.993414878845215 + ], + [ + "juk", + -14.993435859680176 + ], + [ + "▁Twilio", + -14.993449211120605 + ], + [ + "uzo", + -14.993475914001465 + ], + [ + "▁palatial", + -14.993489265441895 + ], + [ + "MIR", + -14.99352741241455 + ], + [ + "MARC", + -14.993596076965332 + ], + [ + "▁Censor", + -14.993622779846191 + ], + [ + "isano", + -14.993674278259277 + ], + [ + "▁Ronin", + -14.993685722351074 + ], + [ + "▁Croke", + -14.993719100952148 + ], + [ + "Ful", + -14.993729591369629 + ], + [ + "▁postgame", + -14.993734359741211 + ], + [ + "▁hunky", + -14.993736267089844 + ], + [ + "▁Goetz", + -14.99374008178711 + ], + [ + "squad", + -14.99376392364502 + ], + [ + "▁STB", + -14.993768692016602 + ], + [ + "▁INCLUDES", + -14.993775367736816 + ], + [ + "▁enteric", + -14.99377727508545 + ], + [ + "▁Kott", + -14.993789672851562 + ], + [ + "▁repelling", + -14.99380874633789 + ], + [ + "▁Taboo", + -14.993857383728027 + ], + [ + "▁RULE", + -14.993864059448242 + ], + [ + "ENTER", + -14.993877410888672 + ], + [ + "▁Lindberg", + -14.993877410888672 + ], + [ + "▁suffocation", + -14.993990898132324 + ], + [ + "chr", + -14.993993759155273 + ], + [ + "scary", + -14.994014739990234 + ], + [ + "反", + -14.994019508361816 + ], + [ + "▁underused", + -14.994022369384766 + ], + [ + "cracker", + -14.994039535522461 + ], + [ + "▁augur", + -14.994051933288574 + ], + [ + "▁Okeechobee", + -14.994056701660156 + ], + [ + "▁unexplainable", + -14.994096755981445 + ], + [ + "▁sandbags", + -14.99411392211914 + ], + [ + "▁Integr", + -14.99412727355957 + ], + [ + "▁Rapidly", + -14.994134902954102 + ], + [ + "▁Robison", + -14.994144439697266 + ], + [ + "▁Homebrew", + -14.994149208068848 + ], + [ + "▁Bung", + -14.994162559509277 + ], + [ + "▁Ibanez", + -14.994193077087402 + ], + [ + "Funk", + -14.994206428527832 + ], + [ + "▁borer", + -14.994240760803223 + ], + [ + "RRE", + -14.99425983428955 + ], + [ + "hnen", + -14.994271278381348 + ], + [ + "DMC", + -14.994279861450195 + ], + [ + "▁RESTful", + -14.994296073913574 + ], + [ + "▁EBay", + -14.994297981262207 + ], + [ + "▁Calculated", + -14.994298934936523 + ], + [ + "▁Hibs", + -14.994306564331055 + ], + [ + "timing", + -14.994354248046875 + ], + [ + "▁disinfecting", + -14.99437427520752 + ], + [ + "naka", + -14.994416236877441 + ], + [ + "гу", + -14.994423866271973 + ], + [ + "▁788", + -14.994427680969238 + ], + [ + "▁outfitting", + -14.99450397491455 + ], + [ + "▁Muha", + -14.994510650634766 + ], + [ + "▁Methane", + -14.994524955749512 + ], + [ + "▁Sickness", + -14.994527816772461 + ], + [ + "▁frilly", + -14.994532585144043 + ], + [ + "▁Kapo", + -14.99457836151123 + ], + [ + "각", + -14.994586944580078 + ], + [ + "▁Ecclesiastes", + -14.994606018066406 + ], + [ + "▁Drove", + -14.994702339172363 + ], + [ + "eanu", + -14.99475383758545 + ], + [ + "▁headstones", + -14.994756698608398 + ], + [ + "▁emanated", + -14.994779586791992 + ], + [ + "▁shab", + -14.994790077209473 + ], + [ + "▁Sliced", + -14.994806289672852 + ], + [ + "▁landlady", + -14.994826316833496 + ], + [ + "▁equitably", + -14.994839668273926 + ], + [ + "▁Maslow", + -14.994892120361328 + ], + [ + "▁FEDERAL", + -14.994905471801758 + ], + [ + "MIX", + -14.994915962219238 + ], + [ + "Assistant", + -14.994917869567871 + ], + [ + "▁Tourette", + -14.994939804077148 + ], + [ + "cilia", + -14.994954109191895 + ], + [ + "▁nf", + -14.99496078491211 + ], + [ + "▁compote", + -14.994967460632324 + ], + [ + "arism", + -14.994976043701172 + ], + [ + "▁orbiter", + -14.994976043701172 + ], + [ + "▁Proportion", + -14.995013236999512 + ], + [ + "cognition", + -14.995017051696777 + ], + [ + "▁OPINION", + -14.995078086853027 + ], + [ + "Scottish", + -14.995080947875977 + ], + [ + "Recommended", + -14.995094299316406 + ], + [ + "▁Decreased", + -14.995147705078125 + ], + [ + "▁Chesney", + -14.99515438079834 + ], + [ + "WORTH", + -14.995206832885742 + ], + [ + "▁awestruck", + -14.99521541595459 + ], + [ + "▁Artic", + -14.995230674743652 + ], + [ + "▁Lifeguard", + -14.995243072509766 + ], + [ + "▁playset", + -14.995255470275879 + ], + [ + "▁prosecco", + -14.995257377624512 + ], + [ + "▁ribosomal", + -14.995257377624512 + ], + [ + "pharmacology", + -14.995281219482422 + ], + [ + "▁insinuation", + -14.995290756225586 + ], + [ + "▁cual", + -14.995340347290039 + ], + [ + "▁Traits", + -14.995349884033203 + ], + [ + "▁Zyl", + -14.99538803100586 + ], + [ + "▁traumatised", + -14.995424270629883 + ], + [ + "▁Env", + -14.995441436767578 + ], + [ + "▁feign", + -14.995508193969727 + ], + [ + "1280", + -14.995526313781738 + ], + [ + "▁penniless", + -14.995555877685547 + ], + [ + "▁AirPlay", + -14.995590209960938 + ], + [ + "્", + -14.995595932006836 + ], + [ + "▁Hirsh", + -14.995613098144531 + ], + [ + "▁Bombing", + -14.99561882019043 + ], + [ + "arvin", + -14.995647430419922 + ], + [ + "guitarist", + -14.995650291442871 + ], + [ + "▁Vou", + -14.995657920837402 + ], + [ + "spoil", + -14.995759010314941 + ], + [ + "▁Nude", + -14.995765686035156 + ], + [ + "▁stepdaughter", + -14.995795249938965 + ], + [ + "energetic", + -14.99582290649414 + ], + [ + "▁Pelvic", + -14.995826721191406 + ], + [ + "▁Hyster", + -14.99583911895752 + ], + [ + "▁Ossetia", + -14.995845794677734 + ], + [ + "▁Haspel", + -14.995850563049316 + ], + [ + "▁polaris", + -14.995856285095215 + ], + [ + "▁Thiago", + -14.995870590209961 + ], + [ + "Medicare", + -14.995888710021973 + ], + [ + "▁Southerners", + -14.995924949645996 + ], + [ + "Poland", + -14.995932579040527 + ], + [ + "▁Herron", + -14.995950698852539 + ], + [ + "▁Maersk", + -14.996042251586914 + ], + [ + "▁nonspecific", + -14.996047973632812 + ], + [ + "▁khu", + -14.996058464050293 + ], + [ + "PIX", + -14.996123313903809 + ], + [ + "comprehensive", + -14.996140480041504 + ], + [ + "▁unworkable", + -14.996192932128906 + ], + [ + "▁lov", + -14.996223449707031 + ], + [ + "▁mobo", + -14.996238708496094 + ], + [ + "▁JMS", + -14.996256828308105 + ], + [ + "▁Hox", + -14.99626350402832 + ], + [ + "▁clunk", + -14.996269226074219 + ], + [ + "officer", + -14.996296882629395 + ], + [ + "▁Mota", + -14.996301651000977 + ], + [ + "ltr", + -14.996358871459961 + ], + [ + "▁housewarming", + -14.996362686157227 + ], + [ + "▁Serpentine", + -14.996391296386719 + ], + [ + "▁fated", + -14.996404647827148 + ], + [ + "1891", + -14.996417999267578 + ], + [ + "▁Agrawal", + -14.99642562866211 + ], + [ + "▁DivX", + -14.996487617492676 + ], + [ + "▁transmute", + -14.996504783630371 + ], + [ + "feminine", + -14.996516227722168 + ], + [ + "▁rediscovering", + -14.996530532836914 + ], + [ + "▁Ukip", + -14.99658489227295 + ], + [ + "adra", + -14.996667861938477 + ], + [ + "▁unforced", + -14.996684074401855 + ], + [ + "▁Glaucoma", + -14.99673843383789 + ], + [ + "▁Shabbos", + -14.99674129486084 + ], + [ + "▁SELLER", + -14.996748924255371 + ], + [ + "▁Keogh", + -14.996760368347168 + ], + [ + "▁unpaved", + -14.996790885925293 + ], + [ + "▁CANADIAN", + -14.996817588806152 + ], + [ + "▁totalitarianism", + -14.996818542480469 + ], + [ + "▁CCH", + -14.996828079223633 + ], + [ + "ებ", + -14.996830940246582 + ], + [ + "CONFIG", + -14.99687385559082 + ], + [ + "SCE", + -14.99687385559082 + ], + [ + "▁subsumed", + -14.996874809265137 + ], + [ + "▁Tangier", + -14.9968843460083 + ], + [ + "▁Intriguing", + -14.996912002563477 + ], + [ + "▁alfa", + -14.99692153930664 + ], + [ + "▁juxtapose", + -14.996932983398438 + ], + [ + "▁jawline", + -14.996942520141602 + ], + [ + "▁Psa", + -14.996981620788574 + ], + [ + "▁headwaters", + -14.997015953063965 + ], + [ + "Rabbit", + -14.997026443481445 + ], + [ + "▁Waterville", + -14.997041702270508 + ], + [ + "▁ProPublica", + -14.997047424316406 + ], + [ + "▁Mulla", + -14.997076034545898 + ], + [ + "▁referrer", + -14.997079849243164 + ], + [ + "▁diphtheria", + -14.99708366394043 + ], + [ + "▁Surabaya", + -14.997087478637695 + ], + [ + "▁Invincible", + -14.997110366821289 + ], + [ + "ccc", + -14.997124671936035 + ], + [ + "neighbor", + -14.99716567993164 + ], + [ + "▁quand", + -14.997211456298828 + ], + [ + "bacillus", + -14.997221946716309 + ], + [ + "ización", + -14.997249603271484 + ], + [ + "GSM", + -14.997272491455078 + ], + [ + "bix", + -14.997276306152344 + ], + [ + "▁DAVIS", + -14.997291564941406 + ], + [ + "▁Maur", + -14.997291564941406 + ], + [ + "▁Gatineau", + -14.997363090515137 + ], + [ + "▁Targaryen", + -14.997403144836426 + ], + [ + "modulator", + -14.997408866882324 + ], + [ + "hmmm", + -14.99742603302002 + ], + [ + "Juan", + -14.997441291809082 + ], + [ + "▁Lebens", + -14.997481346130371 + ], + [ + "toilet", + -14.99748420715332 + ], + [ + "▁Gaj", + -14.997488021850586 + ], + [ + "▁pyrotechnics", + -14.997529029846191 + ], + [ + "▁cali", + -14.997538566589355 + ], + [ + "▁Grenade", + -14.997550010681152 + ], + [ + "▁Polycom", + -14.997581481933594 + ], + [ + "▁Rickman", + -14.997611999511719 + ], + [ + "▁sistem", + -14.997627258300781 + ], + [ + "Trek", + -14.997638702392578 + ], + [ + "yue", + -14.99765682220459 + ], + [ + "▁TARGET", + -14.997657775878906 + ], + [ + "igator", + -14.997668266296387 + ], + [ + "▁GARAGE", + -14.997685432434082 + ], + [ + "Twist", + -14.997714042663574 + ], + [ + "▁Wacom", + -14.99771785736084 + ], + [ + "▁Cec", + -14.997751235961914 + ], + [ + "▁Fluff", + -14.997763633728027 + ], + [ + "lée", + -14.997769355773926 + ], + [ + "▁Vacant", + -14.997773170471191 + ], + [ + "▁Siv", + -14.997784614562988 + ], + [ + "▁हो", + -14.997800827026367 + ], + [ + "▁Einführung", + -14.997802734375 + ], + [ + "▁cupid", + -14.99781608581543 + ], + [ + "▁Aesop", + -14.997843742370605 + ], + [ + "▁TAYLOR", + -14.99792194366455 + ], + [ + "▁decaf", + -14.997955322265625 + ], + [ + "▁LibreOffice", + -14.997965812683105 + ], + [ + "Nathan", + -14.99797534942627 + ], + [ + "Effects", + -14.998038291931152 + ], + [ + "definite", + -14.998039245605469 + ], + [ + "▁Trillium", + -14.998042106628418 + ], + [ + "▁SMILE", + -14.998047828674316 + ], + [ + "gual", + -14.998058319091797 + ], + [ + "PHONE", + -14.998065948486328 + ], + [ + "▁nonchalant", + -14.998089790344238 + ], + [ + "▁Riverwalk", + -14.99809455871582 + ], + [ + "▁gating", + -14.99809741973877 + ], + [ + "ед", + -14.998111724853516 + ], + [ + "▁octo", + -14.998170852661133 + ], + [ + "▁Zine", + -14.998175621032715 + ], + [ + "▁musculature", + -14.998188018798828 + ], + [ + "▁sunblock", + -14.998208045959473 + ], + [ + "▁epitomizes", + -14.998208999633789 + ], + [ + "CIOUS", + -14.998221397399902 + ], + [ + "canon", + -14.99825668334961 + ], + [ + "▁Mylan", + -14.998307228088379 + ], + [ + "▁nl", + -14.998356819152832 + ], + [ + "▁umami", + -14.998373031616211 + ], + [ + "▁Rincon", + -14.998377799987793 + ], + [ + "▁PROF", + -14.998417854309082 + ], + [ + "▁BUYER", + -14.998419761657715 + ], + [ + "▁Terminology", + -14.998427391052246 + ], + [ + "▁Hellboy", + -14.998455047607422 + ], + [ + "osti", + -14.998465538024902 + ], + [ + "▁dais", + -14.998466491699219 + ], + [ + "ggiano", + -14.998513221740723 + ], + [ + "▁Pennine", + -14.998513221740723 + ], + [ + "▁Priceline", + -14.998515129089355 + ], + [ + "isable", + -14.998519897460938 + ], + [ + "REIT", + -14.998554229736328 + ], + [ + "▁digitisation", + -14.99855899810791 + ], + [ + "fiscal", + -14.998574256896973 + ], + [ + "▁الا", + -14.998612403869629 + ], + [ + "▁Leuc", + -14.998619079589844 + ], + [ + "▁Esperanto", + -14.998656272888184 + ], + [ + "▁abalone", + -14.998686790466309 + ], + [ + "CELL", + -14.998699188232422 + ], + [ + "blockers", + -14.9987154006958 + ], + [ + "▁Propel", + -14.998788833618164 + ], + [ + "▁underpants", + -14.99878978729248 + ], + [ + "▁Liposuction", + -14.998800277709961 + ], + [ + "sticker", + -14.998822212219238 + ], + [ + "▁Ciaran", + -14.99882984161377 + ], + [ + "▁nervosa", + -14.998830795288086 + ], + [ + "▁chr", + -14.998835563659668 + ], + [ + "derland", + -14.998922348022461 + ], + [ + "▁Enclosures", + -14.998937606811523 + ], + [ + "▁BCR", + -14.998946189880371 + ], + [ + "▁Empowered", + -14.998946189880371 + ], + [ + "ம", + -14.99896240234375 + ], + [ + "▁Valerian", + -14.998977661132812 + ], + [ + "▁Krishnan", + -14.999032020568848 + ], + [ + "▁Antifa", + -14.999051094055176 + ], + [ + "▁Hult", + -14.999054908752441 + ], + [ + "▁appendicitis", + -14.999067306518555 + ], + [ + "▁Sila", + -14.999072074890137 + ], + [ + "▁STRA", + -14.999098777770996 + ], + [ + "▁Havi", + -14.999101638793945 + ], + [ + "▁NOD", + -14.999113082885742 + ], + [ + "berth", + -14.999117851257324 + ], + [ + "▁upturn", + -14.999191284179688 + ], + [ + "agreed", + -14.999197959899902 + ], + [ + "▁intricacy", + -14.999199867248535 + ], + [ + "▁monounsaturated", + -14.99921703338623 + ], + [ + "▁GROSS", + -14.999222755432129 + ], + [ + "▁Juda", + -14.999231338500977 + ], + [ + "ethics", + -14.999239921569824 + ], + [ + "swimming", + -14.999266624450684 + ], + [ + "▁Stacking", + -14.999284744262695 + ], + [ + "▁aktiv", + -14.99930191040039 + ], + [ + "▁Tsuki", + -14.9993314743042 + ], + [ + "▁Multipurpose", + -14.999334335327148 + ], + [ + "▁flabbergasted", + -14.999363899230957 + ], + [ + "▁Gerst", + -14.99940013885498 + ], + [ + "▁siempre", + -14.999466896057129 + ], + [ + "▁febrile", + -14.999467849731445 + ], + [ + "naming", + -14.999475479125977 + ], + [ + "ге", + -14.999505996704102 + ], + [ + "volution", + -14.99952507019043 + ], + [ + "▁clin", + -14.999532699584961 + ], + [ + "▁animatronic", + -14.999551773071289 + ], + [ + "▁Davi", + -14.999585151672363 + ], + [ + "Width", + -14.999658584594727 + ], + [ + "▁isolator", + -14.99966049194336 + ], + [ + "kok", + -14.999676704406738 + ], + [ + "▁CCIE", + -14.999680519104004 + ], + [ + "▁세", + -14.999682426452637 + ], + [ + "▁LiDAR", + -14.999688148498535 + ], + [ + "suggestion", + -14.999704360961914 + ], + [ + "▁fireflies", + -14.999726295471191 + ], + [ + "▁UMD", + -14.999760627746582 + ], + [ + "▁Refract", + -14.999796867370605 + ], + [ + "èse", + -14.999828338623047 + ], + [ + "BSD", + -14.999846458435059 + ], + [ + "▁MSME", + -14.999853134155273 + ], + [ + "▁barbarism", + -14.99986743927002 + ], + [ + "▁Kyushu", + -14.999882698059082 + ], + [ + "▁Pendulum", + -14.999907493591309 + ], + [ + "adelph", + -14.999910354614258 + ], + [ + "▁immunohistochemistry", + -14.999919891357422 + ], + [ + "▁roofline", + -14.9999418258667 + ], + [ + "▁harmonizing", + -14.99998664855957 + ], + [ + "1894", + -15.000017166137695 + ], + [ + "▁IHOP", + -15.000018119812012 + ], + [ + "▁interplanetary", + -15.000028610229492 + ], + [ + "nä", + -15.0000581741333 + ], + [ + "▁landmass", + -15.000082969665527 + ], + [ + "▁≈", + -15.000090599060059 + ], + [ + "▁faintest", + -15.000103950500488 + ], + [ + "hage", + -15.000140190124512 + ], + [ + "▁Leash", + -15.000147819519043 + ], + [ + "ieved", + -15.000153541564941 + ], + [ + "▁dahlia", + -15.000181198120117 + ], + [ + "▁Starbuck", + -15.000192642211914 + ], + [ + "▁Malcom", + -15.000195503234863 + ], + [ + "▁UNSW", + -15.000197410583496 + ], + [ + "▁bisque", + -15.000203132629395 + ], + [ + "▁Demetrius", + -15.00021743774414 + ], + [ + "azio", + -15.000253677368164 + ], + [ + "▁Varma", + -15.000284194946289 + ], + [ + "▁만", + -15.000297546386719 + ], + [ + "disorder", + -15.000313758850098 + ], + [ + "▁FAL", + -15.000333786010742 + ], + [ + "ridiculous", + -15.00035285949707 + ], + [ + "1830", + -15.0003662109375 + ], + [ + "Esc", + -15.00039291381836 + ], + [ + "▁PBM", + -15.000404357910156 + ], + [ + "▁marg", + -15.000406265258789 + ], + [ + "▁HACCP", + -15.000409126281738 + ], + [ + "▁Integrator", + -15.000493049621582 + ], + [ + "▁espa", + -15.000500679016113 + ], + [ + "▁Gelato", + -15.000508308410645 + ], + [ + "▁bbb", + -15.000533103942871 + ], + [ + "▁Selig", + -15.000557899475098 + ], + [ + "▁dustbin", + -15.000577926635742 + ], + [ + "▁speedier", + -15.000582695007324 + ], + [ + "▁Duchamp", + -15.00062084197998 + ], + [ + "▁Midwife", + -15.00064754486084 + ], + [ + "▁colocation", + -15.000655174255371 + ], + [ + "▁Chieftain", + -15.00065803527832 + ], + [ + "▁Dyne", + -15.000683784484863 + ], + [ + "HIA", + -15.000699996948242 + ], + [ + "▁Sauk", + -15.000699996948242 + ], + [ + "▁disheveled", + -15.000720024108887 + ], + [ + "quake", + -15.000723838806152 + ], + [ + "▁Sef", + -15.00074577331543 + ], + [ + "Lawrence", + -15.000757217407227 + ], + [ + "satisfaction", + -15.00078296661377 + ], + [ + "▁mythos", + -15.0007905960083 + ], + [ + "carriage", + -15.000810623168945 + ], + [ + "▁pathfinder", + -15.000831604003906 + ], + [ + "▁Atty", + -15.000835418701172 + ], + [ + "▁bondholders", + -15.000893592834473 + ], + [ + "▁hindu", + -15.00092887878418 + ], + [ + "▁Arista", + -15.000950813293457 + ], + [ + "▁Perseus", + -15.000957489013672 + ], + [ + "▁Applegate", + -15.000964164733887 + ], + [ + "arto", + -15.000990867614746 + ], + [ + "▁Situ", + -15.00100040435791 + ], + [ + "▁divulged", + -15.00100326538086 + ], + [ + "▁parasit", + -15.001005172729492 + ], + [ + "▁Dredge", + -15.00102710723877 + ], + [ + "zola", + -15.001030921936035 + ], + [ + "endocrin", + -15.00103759765625 + ], + [ + "▁Atheism", + -15.0010986328125 + ], + [ + "연", + -15.001179695129395 + ], + [ + "▁Chords", + -15.00119686126709 + ], + [ + "▁curbed", + -15.00126838684082 + ], + [ + "▁Ketchum", + -15.0012845993042 + ], + [ + "▁shp", + -15.001297950744629 + ], + [ + "grund", + -15.001299858093262 + ], + [ + "▁BQ", + -15.001309394836426 + ], + [ + "▁HGV", + -15.001338005065918 + ], + [ + "▁Jadhav", + -15.001359939575195 + ], + [ + "▁Popov", + -15.001379013061523 + ], + [ + "▁Cheerleader", + -15.001386642456055 + ], + [ + "▁climes", + -15.001389503479004 + ], + [ + "▁adjudicate", + -15.00143814086914 + ], + [ + "crisp", + -15.001444816589355 + ], + [ + "▁clamshell", + -15.001535415649414 + ], + [ + "phene", + -15.00153923034668 + ], + [ + "▁Herts", + -15.00153923034668 + ], + [ + "▁Pondicherry", + -15.001574516296387 + ], + [ + "▁Preaching", + -15.001598358154297 + ], + [ + "▁Ayesha", + -15.00161075592041 + ], + [ + "LYN", + -15.00163459777832 + ], + [ + "Schu", + -15.001654624938965 + ], + [ + "Ark", + -15.001683235168457 + ], + [ + "▁peacefulness", + -15.001700401306152 + ], + [ + "лы", + -15.00171947479248 + ], + [ + "▁Motivate", + -15.00174617767334 + ], + [ + "▁masterclasses", + -15.001747131347656 + ], + [ + "тов", + -15.001757621765137 + ], + [ + "▁legalities", + -15.001812934875488 + ], + [ + "▁similiar", + -15.00183391571045 + ], + [ + "paris", + -15.00184440612793 + ], + [ + "▁stilted", + -15.001877784729004 + ], + [ + "▁Valeria", + -15.001891136169434 + ], + [ + "▁redouble", + -15.001898765563965 + ], + [ + "▁Malfoy", + -15.001913070678711 + ], + [ + "Gran", + -15.001955032348633 + ], + [ + "Reset", + -15.001957893371582 + ], + [ + "▁showstopper", + -15.001968383789062 + ], + [ + "SEB", + -15.00197982788086 + ], + [ + "▁Unidos", + -15.002080917358398 + ], + [ + "▁unseasonably", + -15.002082824707031 + ], + [ + "▁parathyroid", + -15.002090454101562 + ], + [ + "▁Harker", + -15.002096176147461 + ], + [ + "▁EcoBoost", + -15.002104759216309 + ], + [ + "▁frisk", + -15.002107620239258 + ], + [ + "refugee", + -15.00211238861084 + ], + [ + "長", + -15.002127647399902 + ], + [ + "▁Brushing", + -15.00214958190918 + ], + [ + "▁Minorities", + -15.002169609069824 + ], + [ + "rment", + -15.002178192138672 + ], + [ + "60°", + -15.002184867858887 + ], + [ + "▁dangled", + -15.002217292785645 + ], + [ + "▁Ajmer", + -15.00224781036377 + ], + [ + "▁Innovator", + -15.002294540405273 + ], + [ + "▁Barna", + -15.002312660217285 + ], + [ + "▁SCF", + -15.002327919006348 + ], + [ + "hulu", + -15.002342224121094 + ], + [ + "▁prosaic", + -15.002367973327637 + ], + [ + "▁Byzantium", + -15.002376556396484 + ], + [ + "▁computerised", + -15.002398490905762 + ], + [ + "▁Bioscience", + -15.002467155456543 + ], + [ + "▁Trach", + -15.00248908996582 + ], + [ + "▁yah", + -15.002506256103516 + ], + [ + "▁Alvi", + -15.002537727355957 + ], + [ + "▁PKR", + -15.002544403076172 + ], + [ + "토", + -15.00255012512207 + ], + [ + "ак", + -15.002554893493652 + ], + [ + "▁Haworth", + -15.002562522888184 + ], + [ + "knew", + -15.002572059631348 + ], + [ + "▁fashionistas", + -15.002605438232422 + ], + [ + "▁Spiced", + -15.00261116027832 + ], + [ + "sistence", + -15.002613067626953 + ], + [ + "▁YEAH", + -15.002620697021484 + ], + [ + "Laser", + -15.00267505645752 + ], + [ + "▁braving", + -15.002700805664062 + ], + [ + "▁factional", + -15.002701759338379 + ], + [ + "▁homie", + -15.002711296081543 + ], + [ + "▁SEIU", + -15.00273323059082 + ], + [ + "▁frolicking", + -15.002765655517578 + ], + [ + "▁chairlift", + -15.002768516540527 + ], + [ + "▁Sultanate", + -15.002838134765625 + ], + [ + "▁subdomains", + -15.002857208251953 + ], + [ + "▁Koop", + -15.00285816192627 + ], + [ + "nahme", + -15.002874374389648 + ], + [ + "eisler", + -15.0029296875 + ], + [ + "intro", + -15.002948760986328 + ], + [ + "▁Sitecore", + -15.002992630004883 + ], + [ + "purposed", + -15.003003120422363 + ], + [ + "▁ross", + -15.003033638000488 + ], + [ + "▁angioplasty", + -15.003045082092285 + ], + [ + "▁nvidia", + -15.003113746643066 + ], + [ + "berto", + -15.0031156539917 + ], + [ + "پ", + -15.00318431854248 + ], + [ + "PFS", + -15.003222465515137 + ], + [ + "▁Arise", + -15.00324535369873 + ], + [ + "▁Gianna", + -15.00326156616211 + ], + [ + "▁EXACT", + -15.003268241882324 + ], + [ + "boga", + -15.003274917602539 + ], + [ + "▁AIIMS", + -15.003274917602539 + ], + [ + "Virus", + -15.003323554992676 + ], + [ + "NUS", + -15.003340721130371 + ], + [ + "▁975", + -15.00334644317627 + ], + [ + "▁chewable", + -15.00334644317627 + ], + [ + "▁WASP", + -15.003364562988281 + ], + [ + "LCA", + -15.003374099731445 + ], + [ + "Revolution", + -15.003396987915039 + ], + [ + "▁belatedly", + -15.003403663635254 + ], + [ + "▁Tsh", + -15.003477096557617 + ], + [ + "EOS", + -15.003491401672363 + ], + [ + "▁reinvigorated", + -15.003499984741211 + ], + [ + "▁SUBMIT", + -15.003515243530273 + ], + [ + "▁hydrochlorothiazide", + -15.003525733947754 + ], + [ + "▁Deven", + -15.003554344177246 + ], + [ + "▁Perera", + -15.00356388092041 + ], + [ + "onion", + -15.003573417663574 + ], + [ + "▁Unwind", + -15.003575325012207 + ], + [ + "▁Freetown", + -15.003619194030762 + ], + [ + "▁Gracious", + -15.003649711608887 + ], + [ + "▁bathrobes", + -15.003661155700684 + ], + [ + "Cher", + -15.003718376159668 + ], + [ + "ducer", + -15.00374698638916 + ], + [ + "▁ORLANDO", + -15.003767967224121 + ], + [ + "▁Sisterhood", + -15.003774642944336 + ], + [ + "hele", + -15.003786087036133 + ], + [ + "hired", + -15.003804206848145 + ], + [ + "▁niggle", + -15.003824234008789 + ], + [ + "▁Anymore", + -15.003828048706055 + ], + [ + "▁Folic", + -15.003843307495117 + ], + [ + "▁Kinabalu", + -15.003861427307129 + ], + [ + "chasing", + -15.00386905670166 + ], + [ + "rustic", + -15.003896713256836 + ], + [ + "▁federated", + -15.003896713256836 + ], + [ + "▁Gizmo", + -15.003901481628418 + ], + [ + "▁nestling", + -15.003944396972656 + ], + [ + "▁fangirl", + -15.003976821899414 + ], + [ + "▁vermouth", + -15.003993034362793 + ], + [ + "▁Cait", + -15.004027366638184 + ], + [ + "▁quando", + -15.004046440124512 + ], + [ + "bottomed", + -15.004097938537598 + ], + [ + "▁936", + -15.00410270690918 + ], + [ + "▁Gallen", + -15.004121780395508 + ], + [ + "▁squished", + -15.00412654876709 + ], + [ + "▁Discusses", + -15.004152297973633 + ], + [ + "▁Ashtanga", + -15.004156112670898 + ], + [ + "Lucas", + -15.004162788391113 + ], + [ + "▁Merchandising", + -15.004169464111328 + ], + [ + "ู", + -15.004181861877441 + ], + [ + "▁Bidder", + -15.004196166992188 + ], + [ + "▁Bux", + -15.00419807434082 + ], + [ + "apati", + -15.004199981689453 + ], + [ + "welfare", + -15.004220008850098 + ], + [ + "WIP", + -15.004349708557129 + ], + [ + "CDS", + -15.004364013671875 + ], + [ + "▁paso", + -15.00437068939209 + ], + [ + "Bride", + -15.004400253295898 + ], + [ + "▁Walkthrough", + -15.004423141479492 + ], + [ + "Fried", + -15.004450798034668 + ], + [ + "volo", + -15.004454612731934 + ], + [ + "Dimension", + -15.00445556640625 + ], + [ + "▁senatorial", + -15.004461288452148 + ], + [ + "Trop", + -15.00447940826416 + ], + [ + "annah", + -15.004483222961426 + ], + [ + "▁McCauley", + -15.004498481750488 + ], + [ + "▁Megyn", + -15.004507064819336 + ], + [ + "araja", + -15.004535675048828 + ], + [ + "▁Kaif", + -15.004549026489258 + ], + [ + "Crush", + -15.004559516906738 + ], + [ + "▁Orcs", + -15.00457763671875 + ], + [ + "▁Salmond", + -15.004578590393066 + ], + [ + "▁Politi", + -15.004582405090332 + ], + [ + "Democrats", + -15.00460147857666 + ], + [ + "▁primrose", + -15.004606246948242 + ], + [ + "ог", + -15.004703521728516 + ], + [ + "▁Inference", + -15.00471305847168 + ], + [ + "▁र", + -15.00472354888916 + ], + [ + "▁Longo", + -15.004745483398438 + ], + [ + "▁Petals", + -15.004748344421387 + ], + [ + "▁espec", + -15.004790306091309 + ], + [ + "▁truism", + -15.004844665527344 + ], + [ + "▁Basa", + -15.004878997802734 + ], + [ + "▁cupola", + -15.00488567352295 + ], + [ + "▁Rosemont", + -15.004912376403809 + ], + [ + "forte", + -15.004922866821289 + ], + [ + "▁voiceless", + -15.00494384765625 + ], + [ + "ી", + -15.004945755004883 + ], + [ + "yw", + -15.004952430725098 + ], + [ + "▁Renfrew", + -15.004969596862793 + ], + [ + "▁Ihnen", + -15.004990577697754 + ], + [ + "▁firecrackers", + -15.004993438720703 + ], + [ + "▁Brockton", + -15.005001068115234 + ], + [ + "▁Lichfield", + -15.00501537322998 + ], + [ + "proxima", + -15.005023956298828 + ], + [ + "▁Assignors", + -15.005087852478027 + ], + [ + "jail", + -15.005088806152344 + ], + [ + "Alliance", + -15.005099296569824 + ], + [ + "ieger", + -15.005252838134766 + ], + [ + "▁Tamarind", + -15.005260467529297 + ], + [ + "▁metalwork", + -15.005260467529297 + ], + [ + "jai", + -15.00527286529541 + ], + [ + "▁CBM", + -15.00536823272705 + ], + [ + "▁packer", + -15.005380630493164 + ], + [ + "donate", + -15.00538444519043 + ], + [ + "▁Origen", + -15.005398750305176 + ], + [ + "routing", + -15.005409240722656 + ], + [ + "▁POLITICO", + -15.005414962768555 + ], + [ + "▁ransacked", + -15.0054292678833 + ], + [ + "▁outlived", + -15.005441665649414 + ], + [ + "▁Html", + -15.005484580993652 + ], + [ + "▁modularity", + -15.005507469177246 + ], + [ + "▁Schroder", + -15.005558013916016 + ], + [ + "▁است", + -15.005581855773926 + ], + [ + "Vanessa", + -15.005587577819824 + ], + [ + "▁Odinga", + -15.005653381347656 + ], + [ + "▁ousting", + -15.005685806274414 + ], + [ + "▁InterContinental", + -15.00568962097168 + ], + [ + "throp", + -15.005722999572754 + ], + [ + "▁subordination", + -15.005739212036133 + ], + [ + "ABI", + -15.00577163696289 + ], + [ + "▁DIRECTOR", + -15.005815505981445 + ], + [ + "▁HDB", + -15.005836486816406 + ], + [ + "ROD", + -15.005851745605469 + ], + [ + "lasse", + -15.005853652954102 + ], + [ + "erden", + -15.005854606628418 + ], + [ + "▁ramming", + -15.00585651397705 + ], + [ + "버", + -15.005898475646973 + ], + [ + "▁Tew", + -15.00590705871582 + ], + [ + "▁securitization", + -15.005938529968262 + ], + [ + "▁Albatros", + -15.005967140197754 + ], + [ + "▁Descend", + -15.005967140197754 + ], + [ + "▁wiggling", + -15.005973815917969 + ], + [ + "▁wildcat", + -15.005976676940918 + ], + [ + "curry", + -15.0059814453125 + ], + [ + "Often", + -15.006027221679688 + ], + [ + "leap", + -15.006058692932129 + ], + [ + "▁Chrom", + -15.006059646606445 + ], + [ + "▁ryan", + -15.006094932556152 + ], + [ + "lizumab", + -15.006096839904785 + ], + [ + "Init", + -15.006109237670898 + ], + [ + "▁twitched", + -15.006143569946289 + ], + [ + "▁Transistor", + -15.006145477294922 + ], + [ + "Alene", + -15.006147384643555 + ], + [ + "plicator", + -15.006183624267578 + ], + [ + "▁seaman", + -15.006211280822754 + ], + [ + "▁cortisone", + -15.006213188171387 + ], + [ + "▁ADULT", + -15.006218910217285 + ], + [ + "▁choy", + -15.0062255859375 + ], + [ + "brad", + -15.006269454956055 + ], + [ + "▁Washed", + -15.006311416625977 + ], + [ + "▁maryland", + -15.006331443786621 + ], + [ + "▁VAIO", + -15.006370544433594 + ], + [ + "▁Geranium", + -15.006372451782227 + ], + [ + "▁Ferret", + -15.006401062011719 + ], + [ + "▁Kante", + -15.006407737731934 + ], + [ + "▁Sarbanes", + -15.006451606750488 + ], + [ + "ZL", + -15.006461143493652 + ], + [ + "ISING", + -15.006475448608398 + ], + [ + "▁furosemide", + -15.006507873535156 + ], + [ + "ohl", + -15.00655460357666 + ], + [ + "▁NID", + -15.006561279296875 + ], + [ + "▁Marylebone", + -15.006582260131836 + ], + [ + "mysql", + -15.006628036499023 + ], + [ + "▁fallible", + -15.006672859191895 + ], + [ + "medial", + -15.00670337677002 + ], + [ + "fag", + -15.006710052490234 + ], + [ + "▁Naveen", + -15.006746292114258 + ], + [ + "pica", + -15.006754875183105 + ], + [ + "hahaha", + -15.006767272949219 + ], + [ + "▁McCrory", + -15.006811141967773 + ], + [ + "▁HONG", + -15.006821632385254 + ], + [ + "▁KER", + -15.006827354431152 + ], + [ + "Chap", + -15.006868362426758 + ], + [ + "berman", + -15.006919860839844 + ], + [ + "OSHA", + -15.00698471069336 + ], + [ + "cible", + -15.006997108459473 + ], + [ + "প", + -15.006998062133789 + ], + [ + "▁OCP", + -15.007012367248535 + ], + [ + "yuu", + -15.007015228271484 + ], + [ + "Nutrition", + -15.00704288482666 + ], + [ + "▁Symphonic", + -15.007080078125 + ], + [ + "HAS", + -15.007085800170898 + ], + [ + "▁nivel", + -15.007095336914062 + ], + [ + "▁Berri", + -15.007104873657227 + ], + [ + "▁fraying", + -15.007166862487793 + ], + [ + "▁Tanning", + -15.007173538208008 + ], + [ + "▁DEALER", + -15.007187843322754 + ], + [ + "▁Zhan", + -15.007213592529297 + ], + [ + "steroids", + -15.00723934173584 + ], + [ + "▁Lomb", + -15.007267951965332 + ], + [ + "▁evince", + -15.00732707977295 + ], + [ + "fixes", + -15.007394790649414 + ], + [ + "jik", + -15.007413864135742 + ], + [ + "▁bulbous", + -15.007460594177246 + ], + [ + "POC", + -15.007476806640625 + ], + [ + "ooney", + -15.007515907287598 + ], + [ + "ranch", + -15.007543563842773 + ], + [ + "▁decelerate", + -15.00757884979248 + ], + [ + "suitable", + -15.00759506225586 + ], + [ + "xar", + -15.00764274597168 + ], + [ + "▁PSR", + -15.007651329040527 + ], + [ + "pti", + -15.007658004760742 + ], + [ + "▁mantis", + -15.007676124572754 + ], + [ + "▁Ramana", + -15.00767707824707 + ], + [ + "▁Persephone", + -15.007716178894043 + ], + [ + "▁Shani", + -15.007716178894043 + ], + [ + "▁Mornington", + -15.007732391357422 + ], + [ + "▁Convocation", + -15.00778865814209 + ], + [ + "▁Professionalism", + -15.007819175720215 + ], + [ + "▁deflecting", + -15.007827758789062 + ], + [ + "▁Lemieux", + -15.007904052734375 + ], + [ + "▁profiler", + -15.007905006408691 + ], + [ + "▁Sulu", + -15.007944107055664 + ], + [ + "▁pushups", + -15.007974624633789 + ], + [ + "zyn", + -15.007997512817383 + ], + [ + "▁Stanislaus", + -15.008033752441406 + ], + [ + "▁walrus", + -15.008035659790039 + ], + [ + "▁McComb", + -15.00804615020752 + ], + [ + "IRI", + -15.00805950164795 + ], + [ + "▁sempre", + -15.008097648620605 + ], + [ + "▁misbehaving", + -15.008113861083984 + ], + [ + "▁Jute", + -15.008127212524414 + ], + [ + "▁Squamish", + -15.008142471313477 + ], + [ + "teeth", + -15.008211135864258 + ], + [ + "▁untruth", + -15.008259773254395 + ], + [ + "▁Monson", + -15.008285522460938 + ], + [ + "▁burrowing", + -15.008295059204102 + ], + [ + "▁servlet", + -15.008304595947266 + ], + [ + "▁ENTERPRISE", + -15.008329391479492 + ], + [ + "▁epitomise", + -15.008329391479492 + ], + [ + "▁nonchalantly", + -15.008332252502441 + ], + [ + "khand", + -15.008355140686035 + ], + [ + "bombing", + -15.008357048034668 + ], + [ + "절", + -15.008382797241211 + ], + [ + "▁Prati", + -15.008392333984375 + ], + [ + "▁Leclerc", + -15.00839614868164 + ], + [ + "▁Penzance", + -15.00839614868164 + ], + [ + "depression", + -15.008398056030273 + ], + [ + "▁Stifel", + -15.008411407470703 + ], + [ + "▁transect", + -15.008428573608398 + ], + [ + "▁peculiarity", + -15.008485794067383 + ], + [ + "iPod", + -15.008500099182129 + ], + [ + "IIS", + -15.008517265319824 + ], + [ + "▁APE", + -15.00856876373291 + ], + [ + "estrel", + -15.008604049682617 + ], + [ + "▁Albertans", + -15.008625984191895 + ], + [ + "INAL", + -15.008639335632324 + ], + [ + "▁Rakuten", + -15.00865364074707 + ], + [ + "▁caressed", + -15.008660316467285 + ], + [ + "▁illegible", + -15.008706092834473 + ], + [ + "▁Moot", + -15.008708953857422 + ], + [ + "Intelligence", + -15.008710861206055 + ], + [ + "Marin", + -15.008735656738281 + ], + [ + "ripping", + -15.008824348449707 + ], + [ + "▁Praia", + -15.008837699890137 + ], + [ + "▁communi", + -15.0088472366333 + ], + [ + "▁demotion", + -15.008859634399414 + ], + [ + "▁chy", + -15.008915901184082 + ], + [ + "▁Flowering", + -15.008986473083496 + ], + [ + "investigation", + -15.009037971496582 + ], + [ + "▁Denied", + -15.009040832519531 + ], + [ + "LQ", + -15.00908374786377 + ], + [ + "▁waisted", + -15.00912094116211 + ], + [ + "▁mandibular", + -15.009130477905273 + ], + [ + "▁842", + -15.009193420410156 + ], + [ + "▁hematite", + -15.009218215942383 + ], + [ + "ldquo", + -15.009241104125977 + ], + [ + "▁Monsignor", + -15.009241104125977 + ], + [ + "▁fluorine", + -15.009251594543457 + ], + [ + "▁milliliter", + -15.009251594543457 + ], + [ + "DENT", + -15.009272575378418 + ], + [ + "TRON", + -15.009288787841797 + ], + [ + "▁transpires", + -15.009390830993652 + ], + [ + "▁WORST", + -15.009416580200195 + ], + [ + "▁Dermatologist", + -15.009461402893066 + ], + [ + "techno", + -15.009465217590332 + ], + [ + "agul", + -15.009480476379395 + ], + [ + "▁Haridwar", + -15.009512901306152 + ], + [ + "▁Shoreham", + -15.009520530700684 + ], + [ + "▁stagnated", + -15.009520530700684 + ], + [ + "▁cyberattack", + -15.00953483581543 + ], + [ + "▁MINT", + -15.009580612182617 + ], + [ + "▁Visakhapatnam", + -15.009607315063477 + ], + [ + "▁Cerberus", + -15.009634017944336 + ], + [ + "▁Bartle", + -15.009641647338867 + ], + [ + "▁relishes", + -15.009648323059082 + ], + [ + "▁Hardest", + -15.009660720825195 + ], + [ + "▁Moti", + -15.009675979614258 + ], + [ + "Wang", + -15.009685516357422 + ], + [ + "▁commonsense", + -15.009688377380371 + ], + [ + "▁FamilySearch", + -15.009693145751953 + ], + [ + "▁dinar", + -15.00970458984375 + ], + [ + "▁Soundproofing", + -15.009718894958496 + ], + [ + "EIT", + -15.009724617004395 + ], + [ + "▁Listeria", + -15.00973129272461 + ], + [ + "▁Zona", + -15.009751319885254 + ], + [ + "▁ş", + -15.00976276397705 + ], + [ + "▁enshrine", + -15.009771347045898 + ], + [ + "▁Carling", + -15.009788513183594 + ], + [ + "▁Believer", + -15.009797096252441 + ], + [ + "▁PSY", + -15.00983715057373 + ], + [ + "▁ELLE", + -15.009888648986816 + ], + [ + "▁Verme", + -15.009900093078613 + ], + [ + "▁Adelphi", + -15.009902000427246 + ], + [ + "PPE", + -15.009949684143066 + ], + [ + "▁Saraswati", + -15.010010719299316 + ], + [ + "▁paganism", + -15.010046005249023 + ], + [ + "▁RECORDS", + -15.010052680969238 + ], + [ + "▁Kiara", + -15.010082244873047 + ], + [ + "▁Meru", + -15.010098457336426 + ], + [ + "fz", + -15.010153770446777 + ], + [ + "Poe", + -15.010187149047852 + ], + [ + "frequent", + -15.010187149047852 + ], + [ + "itza", + -15.010198593139648 + ], + [ + "▁kohl", + -15.010218620300293 + ], + [ + "summary", + -15.010231971740723 + ], + [ + "▁DOA", + -15.010287284851074 + ], + [ + "복", + -15.010293960571289 + ], + [ + "▁9999", + -15.010307312011719 + ], + [ + "▁comatose", + -15.010308265686035 + ], + [ + "fragment", + -15.010310173034668 + ], + [ + "▁haz", + -15.010334014892578 + ], + [ + "RIX", + -15.010355949401855 + ], + [ + "conspiracy", + -15.01039981842041 + ], + [ + "▁Bera", + -15.010421752929688 + ], + [ + "▁nonresident", + -15.010445594787598 + ], + [ + "▁insinuate", + -15.010459899902344 + ], + [ + "NSE", + -15.010466575622559 + ], + [ + "▁Francophone", + -15.010489463806152 + ], + [ + "▁Slippers", + -15.010498046875 + ], + [ + "▁Eubank", + -15.01055908203125 + ], + [ + "▁flurries", + -15.010563850402832 + ], + [ + "▁Bryon", + -15.010588645935059 + ], + [ + "Woo", + -15.010642051696777 + ], + [ + "▁lysates", + -15.01064395904541 + ], + [ + "Recruit", + -15.010653495788574 + ], + [ + "▁Oroville", + -15.010689735412598 + ], + [ + "▁Groton", + -15.010690689086914 + ], + [ + "▁bubbled", + -15.010696411132812 + ], + [ + "ippe", + -15.010700225830078 + ], + [ + "achen", + -15.010701179504395 + ], + [ + "▁tramway", + -15.010713577270508 + ], + [ + "▁SGI", + -15.010714530944824 + ], + [ + "▁chump", + -15.01071548461914 + ], + [ + "warp", + -15.010729789733887 + ], + [ + "addiction", + -15.010741233825684 + ], + [ + "▁Volcanoes", + -15.010760307312012 + ], + [ + "▁Newcomb", + -15.010767936706543 + ], + [ + "Supplemental", + -15.010769844055176 + ], + [ + "▁Parable", + -15.010769844055176 + ], + [ + "▁IHG", + -15.01080322265625 + ], + [ + "silicate", + -15.01082706451416 + ], + [ + "▁Hecht", + -15.01082706451416 + ], + [ + "▁arabia", + -15.01083755493164 + ], + [ + "▁muggy", + -15.010906219482422 + ], + [ + "이다", + -15.010913848876953 + ], + [ + "▁standardisation", + -15.010944366455078 + ], + [ + "queer", + -15.010965347290039 + ], + [ + "▁sino", + -15.010973930358887 + ], + [ + "trude", + -15.011011123657227 + ], + [ + "▁Chairwoman", + -15.011029243469238 + ], + [ + "▁KIN", + -15.011052131652832 + ], + [ + "ų", + -15.011102676391602 + ], + [ + "▁Moisturizing", + -15.011157989501953 + ], + [ + "scorer", + -15.011163711547852 + ], + [ + "▁Phosphorus", + -15.011175155639648 + ], + [ + "tradition", + -15.011191368103027 + ], + [ + "▁congresswoman", + -15.011208534240723 + ], + [ + "▁Stell", + -15.01124095916748 + ], + [ + "▁Brescia", + -15.011273384094238 + ], + [ + "▁sterility", + -15.011280059814453 + ], + [ + "▁Playful", + -15.01131534576416 + ], + [ + "hwan", + -15.011322975158691 + ], + [ + "▁furlongs", + -15.011340141296387 + ], + [ + "▁Jaque", + -15.01136302947998 + ], + [ + "되어", + -15.01138687133789 + ], + [ + "▁Moonves", + -15.011412620544434 + ], + [ + "▁messianic", + -15.011427879333496 + ], + [ + "▁cutaway", + -15.011434555053711 + ], + [ + "▁Garibaldi", + -15.011466979980469 + ], + [ + "▁Akamai", + -15.01149845123291 + ], + [ + "▁Formatting", + -15.011504173278809 + ], + [ + "▁Oxley", + -15.011520385742188 + ], + [ + "▁offloading", + -15.01152515411377 + ], + [ + "▁PDM", + -15.011529922485352 + ], + [ + "whip", + -15.011552810668945 + ], + [ + "realism", + -15.01156234741211 + ], + [ + "1029", + -15.011585235595703 + ], + [ + "▁Beitrag", + -15.011614799499512 + ], + [ + "▁CALGARY", + -15.011655807495117 + ], + [ + "▁Unbound", + -15.011663436889648 + ], + [ + "▁officiant", + -15.011690139770508 + ], + [ + "▁resend", + -15.01172161102295 + ], + [ + "▁Mausoleum", + -15.011763572692871 + ], + [ + "nasa", + -15.01180648803711 + ], + [ + "▁Þ", + -15.011808395385742 + ], + [ + "▁newlywed", + -15.011863708496094 + ], + [ + "▁resolver", + -15.011908531188965 + ], + [ + "EFF", + -15.011926651000977 + ], + [ + "akata", + -15.011950492858887 + ], + [ + "▁Naxos", + -15.011953353881836 + ], + [ + "▁Lumina", + -15.011961936950684 + ], + [ + "lker", + -15.011963844299316 + ], + [ + "▁gyrus", + -15.011974334716797 + ], + [ + "▁Shockwave", + -15.011993408203125 + ], + [ + "▁Seer", + -15.012005805969238 + ], + [ + "▁meditated", + -15.012005805969238 + ], + [ + "▁Standby", + -15.0120267868042 + ], + [ + "▁preppy", + -15.012032508850098 + ], + [ + "Lea", + -15.01206111907959 + ], + [ + "▁Capacitor", + -15.01206111907959 + ], + [ + "▁Palu", + -15.012113571166992 + ], + [ + "countries", + -15.012136459350586 + ], + [ + "▁BOMB", + -15.012142181396484 + ], + [ + "▁Everlasting", + -15.0121431350708 + ], + [ + "Quite", + -15.012158393859863 + ], + [ + "▁Helle", + -15.012167930603027 + ], + [ + "Prior", + -15.012168884277344 + ], + [ + "EGAN", + -15.012231826782227 + ], + [ + "▁Jaffna", + -15.012236595153809 + ], + [ + "▁Sunnah", + -15.01227855682373 + ], + [ + "vania", + -15.012290954589844 + ], + [ + "▁BNSF", + -15.012296676635742 + ], + [ + "physiological", + -15.012313842773438 + ], + [ + "▁GRAS", + -15.012360572814941 + ], + [ + "▁Sasquatch", + -15.012384414672852 + ], + [ + "▁csv", + -15.01243782043457 + ], + [ + "alma", + -15.012510299682617 + ], + [ + "▁Pawan", + -15.012514114379883 + ], + [ + "▁COMMERCIAL", + -15.01257038116455 + ], + [ + "▁RTR", + -15.012574195861816 + ], + [ + "alian", + -15.012624740600586 + ], + [ + "ombi", + -15.012627601623535 + ], + [ + "▁Courtenay", + -15.01266860961914 + ], + [ + "▁Kere", + -15.012681007385254 + ], + [ + "▁reignited", + -15.012701988220215 + ], + [ + "▁tethering", + -15.012800216674805 + ], + [ + "▁Allegations", + -15.012835502624512 + ], + [ + "risty", + -15.012837409973145 + ], + [ + "▁TREATMENT", + -15.012917518615723 + ], + [ + "▁quickened", + -15.01293659210205 + ], + [ + "genie", + -15.012961387634277 + ], + [ + "▁Rett", + -15.012965202331543 + ], + [ + "▁Benevolent", + -15.012992858886719 + ], + [ + "▁ROV", + -15.013002395629883 + ], + [ + "▁postmortem", + -15.01302433013916 + ], + [ + "▁Perro", + -15.013026237487793 + ], + [ + "न्", + -15.013057708740234 + ], + [ + "▁Renoir", + -15.013076782226562 + ], + [ + "▁Inquisitor", + -15.013089179992676 + ], + [ + "▁Tintin", + -15.013094902038574 + ], + [ + "▁blowback", + -15.01309871673584 + ], + [ + "▁PDX", + -15.013104438781738 + ], + [ + "tracted", + -15.013138771057129 + ], + [ + "▁Registr", + -15.013163566589355 + ], + [ + "interaction", + -15.013166427612305 + ], + [ + "▁Chimera", + -15.013172149658203 + ], + [ + "canonical", + -15.013298988342285 + ], + [ + "Miracle", + -15.013301849365234 + ], + [ + "▁cleveland", + -15.013344764709473 + ], + [ + "▁VDI", + -15.013348579406738 + ], + [ + "▁SEB", + -15.0133638381958 + ], + [ + "lero", + -15.013419151306152 + ], + [ + "bitcoin", + -15.013466835021973 + ], + [ + "▁Dray", + -15.0134916305542 + ], + [ + "▁MSL", + -15.013492584228516 + ], + [ + "▁unfailing", + -15.013503074645996 + ], + [ + "Stor", + -15.013511657714844 + ], + [ + "turk", + -15.013513565063477 + ], + [ + "hormone", + -15.013532638549805 + ], + [ + "Folder", + -15.013592720031738 + ], + [ + "▁feathery", + -15.01362419128418 + ], + [ + "▁RMT", + -15.013703346252441 + ], + [ + "▁Berke", + -15.013731002807617 + ], + [ + "▁Verso", + -15.01374626159668 + ], + [ + "▁Buchan", + -15.013772964477539 + ], + [ + "CPP", + -15.013777732849121 + ], + [ + "膜", + -15.01379680633545 + ], + [ + "▁Kobach", + -15.01380443572998 + ], + [ + "▁PANEL", + -15.01382064819336 + ], + [ + "Bench", + -15.013837814331055 + ], + [ + "Hire", + -15.01384162902832 + ], + [ + "▁toluene", + -15.01384449005127 + ], + [ + "Editing", + -15.013845443725586 + ], + [ + "▁Hazelnut", + -15.0138521194458 + ], + [ + "▁Mime", + -15.013859748840332 + ], + [ + "▁Haverhill", + -15.013893127441406 + ], + [ + "▁Jaish", + -15.013915061950684 + ], + [ + "▁Danzig", + -15.013916969299316 + ], + [ + "WILL", + -15.013982772827148 + ], + [ + "▁dicey", + -15.01398754119873 + ], + [ + "▁gutting", + -15.013991355895996 + ], + [ + "▁985", + -15.014086723327637 + ], + [ + "hehe", + -15.014089584350586 + ], + [ + "▁ATTACK", + -15.014145851135254 + ], + [ + "▁THIRTY", + -15.014155387878418 + ], + [ + "Fiber", + -15.014158248901367 + ], + [ + "▁snapchat", + -15.01416015625 + ], + [ + "▁Amerika", + -15.014168739318848 + ], + [ + "▁navi", + -15.014184951782227 + ], + [ + "▁malfeasance", + -15.014209747314453 + ], + [ + "Float", + -15.014232635498047 + ], + [ + "▁Redhead", + -15.014298439025879 + ], + [ + "▁Higuain", + -15.014304161071777 + ], + [ + "▁Congressmen", + -15.014330863952637 + ], + [ + "▁sarah", + -15.01433277130127 + ], + [ + "Zombie", + -15.014362335205078 + ], + [ + "▁Canelo", + -15.014369010925293 + ], + [ + "▁Trough", + -15.014391899108887 + ], + [ + "▁MAGA", + -15.014403343200684 + ], + [ + "▁credo", + -15.014413833618164 + ], + [ + "rantz", + -15.014415740966797 + ], + [ + "▁696", + -15.014444351196289 + ], + [ + "▁Scholl", + -15.014458656311035 + ], + [ + "arron", + -15.014494895935059 + ], + [ + "▁Arusha", + -15.014520645141602 + ], + [ + "▁mojito", + -15.014547348022461 + ], + [ + "▁apparitions", + -15.014558792114258 + ], + [ + "▁decoupling", + -15.014569282531738 + ], + [ + "▁EGG", + -15.014595031738281 + ], + [ + "▁evaporating", + -15.014601707458496 + ], + [ + "gesetz", + -15.014622688293457 + ], + [ + "▁recordkeeping", + -15.014641761779785 + ], + [ + "▁Kori", + -15.014654159545898 + ], + [ + "bacter", + -15.014656066894531 + ], + [ + "▁tolerability", + -15.014659881591797 + ], + [ + "▁abstaining", + -15.014734268188477 + ], + [ + "faster", + -15.014739990234375 + ], + [ + "atoire", + -15.014742851257324 + ], + [ + "1177", + -15.01475715637207 + ], + [ + "▁Fraunhofer", + -15.014803886413574 + ], + [ + "▁propos", + -15.0148344039917 + ], + [ + "▁Memorable", + -15.014904022216797 + ], + [ + "▁controversially", + -15.014914512634277 + ], + [ + "▁Killeen", + -15.014920234680176 + ], + [ + "dern", + -15.014960289001465 + ], + [ + "Decor", + -15.014962196350098 + ], + [ + "え", + -15.015003204345703 + ], + [ + "▁seawall", + -15.015005111694336 + ], + [ + "▁Kaitlin", + -15.015010833740234 + ], + [ + "▁Affirmation", + -15.015026092529297 + ], + [ + "SRP", + -15.015027046203613 + ], + [ + "assistant", + -15.015032768249512 + ], + [ + "▁Donato", + -15.015033721923828 + ], + [ + "▁Compile", + -15.015082359313965 + ], + [ + "▁exclaim", + -15.015082359313965 + ], + [ + "▁Perched", + -15.015115737915039 + ], + [ + "▁Kerrigan", + -15.015134811401367 + ], + [ + "▁Shattered", + -15.015151977539062 + ], + [ + "▁misting", + -15.01521110534668 + ], + [ + "▁Hoss", + -15.015228271484375 + ], + [ + "▁FEED", + -15.015243530273438 + ], + [ + "BID", + -15.01524543762207 + ], + [ + "▁MOB", + -15.015247344970703 + ], + [ + "▁50°", + -15.015297889709473 + ], + [ + "▁PvE", + -15.015301704406738 + ], + [ + "од", + -15.015328407287598 + ], + [ + "▁SOLUTION", + -15.01535701751709 + ], + [ + "▁conflate", + -15.015357971191406 + ], + [ + "Kirk", + -15.01537036895752 + ], + [ + "▁encumbrance", + -15.015373229980469 + ], + [ + "▁Arce", + -15.015405654907227 + ], + [ + "SOLVED", + -15.015416145324707 + ], + [ + "Drama", + -15.01544189453125 + ], + [ + "▁Mastro", + -15.015462875366211 + ], + [ + "▁Transferring", + -15.015507698059082 + ], + [ + "▁Scunthorpe", + -15.015535354614258 + ], + [ + "▁antitumor", + -15.015542030334473 + ], + [ + "Adrian", + -15.015594482421875 + ], + [ + "▁749", + -15.015596389770508 + ], + [ + "▁Darvish", + -15.015615463256836 + ], + [ + "▁ORGAN", + -15.015634536743164 + ], + [ + "▁Sportsbook", + -15.015645027160645 + ], + [ + "lymph", + -15.01567554473877 + ], + [ + "▁Pareto", + -15.01570987701416 + ], + [ + "ogene", + -15.015725135803223 + ], + [ + "▁regrow", + -15.015762329101562 + ], + [ + "▁Shaggy", + -15.015767097473145 + ], + [ + "diagnosed", + -15.015782356262207 + ], + [ + "HCP", + -15.015827178955078 + ], + [ + "▁Technik", + -15.015865325927734 + ], + [ + "▁Parkside", + -15.015875816345215 + ], + [ + "▁1772", + -15.015917778015137 + ], + [ + "▁Safa", + -15.015926361083984 + ], + [ + "▁practicalities", + -15.015935897827148 + ], + [ + "plural", + -15.015966415405273 + ], + [ + "▁Drei", + -15.015992164611816 + ], + [ + "somewhere", + -15.016006469726562 + ], + [ + "▁Conservator", + -15.016020774841309 + ], + [ + "▁iSCSI", + -15.016023635864258 + ], + [ + "implant", + -15.016058921813965 + ], + [ + "▁Gippsland", + -15.016063690185547 + ], + [ + "printable", + -15.016075134277344 + ], + [ + "▁administrate", + -15.016075134277344 + ], + [ + "▁Vio", + -15.0161714553833 + ], + [ + "traveled", + -15.016191482543945 + ], + [ + "▁Khaki", + -15.016192436218262 + ], + [ + "▁syrupy", + -15.016227722167969 + ], + [ + "▁urdu", + -15.016281127929688 + ], + [ + "▁Bachman", + -15.016290664672852 + ], + [ + "▁Cancelled", + -15.0162992477417 + ], + [ + "▁LSP", + -15.01632022857666 + ], + [ + "▁Griggs", + -15.01634693145752 + ], + [ + "▁lud", + -15.016356468200684 + ], + [ + "▁automata", + -15.01637077331543 + ], + [ + "▁Equ", + -15.016375541687012 + ], + [ + "▁sle", + -15.016582489013672 + ], + [ + "▁pogrom", + -15.016592979431152 + ], + [ + "▁Pillsbury", + -15.016594886779785 + ], + [ + "▁Closely", + -15.01661491394043 + ], + [ + "frei", + -15.016641616821289 + ], + [ + "▁Nikolay", + -15.016668319702148 + ], + [ + "glorious", + -15.016670227050781 + ], + [ + "▁hardcopy", + -15.016727447509766 + ], + [ + "▁Coursera", + -15.016731262207031 + ], + [ + "▁feigned", + -15.016733169555664 + ], + [ + "▁EXAMPLE", + -15.016770362854004 + ], + [ + "Echo", + -15.016796112060547 + ], + [ + "▁recalibrate", + -15.016876220703125 + ], + [ + "▁Vegetation", + -15.016890525817871 + ], + [ + "▁Maho", + -15.016901969909668 + ], + [ + "▁antihistamines", + -15.01691722869873 + ], + [ + "▁2900", + -15.016923904418945 + ], + [ + "▁Tosh", + -15.016929626464844 + ], + [ + "▁Stipe", + -15.0169677734375 + ], + [ + "▁Yakuza", + -15.016979217529297 + ], + [ + "Ancient", + -15.016995429992676 + ], + [ + "▁Perron", + -15.017011642456055 + ], + [ + "FMA", + -15.017037391662598 + ], + [ + "▁topamax", + -15.017065048217773 + ], + [ + "Mask", + -15.017128944396973 + ], + [ + "▁bord", + -15.017151832580566 + ], + [ + "entation", + -15.017175674438477 + ], + [ + "ocrat", + -15.017183303833008 + ], + [ + "▁Stitches", + -15.017236709594727 + ], + [ + "▁Encinitas", + -15.017243385314941 + ], + [ + "▁Sucker", + -15.017244338989258 + ], + [ + "▁squeaking", + -15.017261505126953 + ], + [ + "▁Zoloft", + -15.017308235168457 + ], + [ + "▁kno", + -15.01731014251709 + ], + [ + "▁litigating", + -15.017311096191406 + ], + [ + "▁Thrush", + -15.017312049865723 + ], + [ + "▁revulsion", + -15.017313957214355 + ], + [ + "▁Reacting", + -15.017315864562988 + ], + [ + "▁marca", + -15.017324447631836 + ], + [ + "receiving", + -15.017359733581543 + ], + [ + "▁ALK", + -15.017363548278809 + ], + [ + "▁bap", + -15.017379760742188 + ], + [ + "▁REFERENCE", + -15.017393112182617 + ], + [ + "▁uw", + -15.017510414123535 + ], + [ + "▁cultivators", + -15.01759147644043 + ], + [ + "▁alchemical", + -15.017602920532227 + ], + [ + "▁Ditt", + -15.017624855041504 + ], + [ + "▁Tyrant", + -15.017624855041504 + ], + [ + "▁Woolsey", + -15.017634391784668 + ], + [ + "▁Greenbrier", + -15.017637252807617 + ], + [ + "▁Vecchio", + -15.017653465270996 + ], + [ + "▁Heaney", + -15.017684936523438 + ], + [ + "▁downlink", + -15.017698287963867 + ], + [ + "▁cyanobacteria", + -15.0177001953125 + ], + [ + "▁∈", + -15.017724990844727 + ], + [ + "▁transgene", + -15.017794609069824 + ], + [ + "ouette", + -15.017837524414062 + ], + [ + "▁Palawan", + -15.017851829528809 + ], + [ + "esqui", + -15.017853736877441 + ], + [ + "▁Sauron", + -15.017906188964844 + ], + [ + "ać", + -15.017908096313477 + ], + [ + "▁TWA", + -15.01791000366211 + ], + [ + "▁Ena", + -15.017928123474121 + ], + [ + "▁Morgen", + -15.017951011657715 + ], + [ + "loqui", + -15.017959594726562 + ], + [ + "▁Choc", + -15.017969131469727 + ], + [ + "Putin", + -15.017980575561523 + ], + [ + "оль", + -15.018088340759277 + ], + [ + "▁SANS", + -15.018125534057617 + ], + [ + "▁Induced", + -15.018145561218262 + ], + [ + "▁Fennel", + -15.018150329589844 + ], + [ + "blur", + -15.01815128326416 + ], + [ + "eddie", + -15.018163681030273 + ], + [ + "ం", + -15.018179893493652 + ], + [ + "▁Entirely", + -15.0181884765625 + ], + [ + "▁stooped", + -15.018195152282715 + ], + [ + "▁creat", + -15.018218994140625 + ], + [ + "▁imputation", + -15.018228530883789 + ], + [ + "▁forecaster", + -15.018241882324219 + ], + [ + "▁Scull", + -15.018256187438965 + ], + [ + "theorie", + -15.018261909484863 + ], + [ + "▁Downie", + -15.018301010131836 + ], + [ + "ASU", + -15.01830768585205 + ], + [ + "luv", + -15.018315315246582 + ], + [ + "▁Dreamliner", + -15.01834774017334 + ], + [ + "cati", + -15.018352508544922 + ], + [ + "▁Shilling", + -15.018359184265137 + ], + [ + "▁externalities", + -15.018423080444336 + ], + [ + "▁Discoveries", + -15.018447875976562 + ], + [ + "▁Electrode", + -15.01845645904541 + ], + [ + "▁embar", + -15.018458366394043 + ], + [ + "▁Confucian", + -15.018508911132812 + ], + [ + "▁Lovejoy", + -15.018512725830078 + ], + [ + "▁Gatos", + -15.01851749420166 + ], + [ + "▁Smack", + -15.01853084564209 + ], + [ + "ħ", + -15.018533706665039 + ], + [ + "▁EXIT", + -15.018536567687988 + ], + [ + "▁848", + -15.018561363220215 + ], + [ + "defensive", + -15.018571853637695 + ], + [ + "▁smokeless", + -15.018575668334961 + ], + [ + "▁Grob", + -15.018583297729492 + ], + [ + "▁Almaty", + -15.018625259399414 + ], + [ + "▁Courtois", + -15.018636703491211 + ], + [ + "▁Spun", + -15.01866340637207 + ], + [ + "▁Haden", + -15.018699645996094 + ], + [ + "▁Entropy", + -15.018736839294434 + ], + [ + "▁aimless", + -15.01874828338623 + ], + [ + "▁DBMS", + -15.018782615661621 + ], + [ + "▁MESS", + -15.018790245056152 + ], + [ + "▁unapproved", + -15.018808364868164 + ], + [ + "MRS", + -15.01888370513916 + ], + [ + "▁crony", + -15.018906593322754 + ], + [ + "▁bassoon", + -15.018912315368652 + ], + [ + "▁Bhatia", + -15.01893138885498 + ], + [ + "Bye", + -15.018938064575195 + ], + [ + "▁Paley", + -15.018998146057129 + ], + [ + "pulling", + -15.019038200378418 + ], + [ + "▁Jere", + -15.019038200378418 + ], + [ + "▁Oban", + -15.019042015075684 + ], + [ + "▁ROP", + -15.019049644470215 + ], + [ + "▁Amie", + -15.019059181213379 + ], + [ + "▁Tarpon", + -15.019067764282227 + ], + [ + "▁accompanist", + -15.019076347351074 + ], + [ + "igence", + -15.019079208374023 + ], + [ + "▁congresses", + -15.01911449432373 + ], + [ + "▁McNulty", + -15.01913070678711 + ], + [ + "▁CRTC", + -15.01917552947998 + ], + [ + "▁Deux", + -15.019180297851562 + ], + [ + "Trap", + -15.019201278686523 + ], + [ + "peach", + -15.019219398498535 + ], + [ + "▁jugular", + -15.019255638122559 + ], + [ + "▁ALMOST", + -15.019268035888672 + ], + [ + "▁Comply", + -15.019304275512695 + ], + [ + "▁qPCR", + -15.019354820251465 + ], + [ + "▁Brite", + -15.019362449645996 + ], + [ + "▁Comte", + -15.01938533782959 + ], + [ + "▁Chiapas", + -15.019386291503906 + ], + [ + "TBI", + -15.019411087036133 + ], + [ + "preview", + -15.019420623779297 + ], + [ + "▁railcar", + -15.019426345825195 + ], + [ + "▁Crunchy", + -15.019428253173828 + ], + [ + "▁Allard", + -15.019445419311523 + ], + [ + "▁Jafar", + -15.019452095031738 + ], + [ + "▁Tux", + -15.019455909729004 + ], + [ + "YON", + -15.0194673538208 + ], + [ + "▁Boru", + -15.019474029541016 + ], + [ + "▁QWERTY", + -15.019512176513672 + ], + [ + "▁grep", + -15.01952838897705 + ], + [ + "▁Woah", + -15.01954460144043 + ], + [ + "▁statuette", + -15.019562721252441 + ], + [ + "▁Willian", + -15.019571304321289 + ], + [ + "▁academicians", + -15.019571304321289 + ], + [ + "▁Repayment", + -15.019575119018555 + ], + [ + "▁wildebeest", + -15.019579887390137 + ], + [ + "▁MEASURE", + -15.019580841064453 + ], + [ + "▁Myriad", + -15.019580841064453 + ], + [ + "Maz", + -15.019587516784668 + ], + [ + "▁MUR", + -15.01959228515625 + ], + [ + "▁Centrifugal", + -15.019593238830566 + ], + [ + "áin", + -15.019613265991211 + ], + [ + "▁Mung", + -15.01964282989502 + ], + [ + "▁TMI", + -15.019654273986816 + ], + [ + "valle", + -15.019664764404297 + ], + [ + "▁TOOL", + -15.019688606262207 + ], + [ + "검", + -15.019688606262207 + ], + [ + "implementation", + -15.019694328308105 + ], + [ + "▁inductance", + -15.0197172164917 + ], + [ + "▁Sustained", + -15.019728660583496 + ], + [ + "ekh", + -15.019758224487305 + ], + [ + "ficio", + -15.019775390625 + ], + [ + "▁Blacklist", + -15.01977825164795 + ], + [ + "lending", + -15.01981258392334 + ], + [ + "BOC", + -15.019820213317871 + ], + [ + "▁furnishes", + -15.0198335647583 + ], + [ + "▁Articulate", + -15.019902229309082 + ], + [ + "zhe", + -15.019916534423828 + ], + [ + "험", + -15.019919395446777 + ], + [ + "▁Gadot", + -15.019963264465332 + ], + [ + "▁upwardly", + -15.019981384277344 + ], + [ + "▁homicidal", + -15.019989013671875 + ], + [ + "▁Inslee", + -15.019989967346191 + ], + [ + "▁deliberative", + -15.020055770874023 + ], + [ + "▁chimp", + -15.02005672454834 + ], + [ + "▁Neilson", + -15.0200834274292 + ], + [ + "▁Romanticism", + -15.020092964172363 + ], + [ + "▁Schutz", + -15.020113945007324 + ], + [ + "ental", + -15.020129203796387 + ], + [ + "▁anticipatory", + -15.02017879486084 + ], + [ + "ophi", + -15.020208358764648 + ], + [ + "SYNC", + -15.020219802856445 + ], + [ + "▁deign", + -15.020237922668457 + ], + [ + "Indigenous", + -15.020269393920898 + ], + [ + "▁clark", + -15.020278930664062 + ], + [ + "▁Loneliness", + -15.02028751373291 + ], + [ + "▁overlords", + -15.02028751373291 + ], + [ + "▁currants", + -15.020340919494629 + ], + [ + "▁Datta", + -15.020341873168945 + ], + [ + "bonnet", + -15.020370483398438 + ], + [ + "▁Trimming", + -15.020411491394043 + ], + [ + "▁AFT", + -15.020424842834473 + ], + [ + "▁kitted", + -15.02043628692627 + ], + [ + "▁Dictator", + -15.020462989807129 + ], + [ + "▁defiled", + -15.020493507385254 + ], + [ + "▁Auerbach", + -15.02050495147705 + ], + [ + "▁rarities", + -15.02052116394043 + ], + [ + "▁impropriety", + -15.020532608032227 + ], + [ + "CDA", + -15.020573616027832 + ], + [ + "▁dormancy", + -15.020636558532715 + ], + [ + "rdquo", + -15.020651817321777 + ], + [ + "▁letterbox", + -15.020750045776367 + ], + [ + "▁837", + -15.02076244354248 + ], + [ + "IRT", + -15.02076530456543 + ], + [ + "phage", + -15.020784378051758 + ], + [ + "▁Suki", + -15.02078628540039 + ], + [ + "▁Suff", + -15.020792007446289 + ], + [ + "▁recalcitrant", + -15.020804405212402 + ], + [ + "▁Condé", + -15.020838737487793 + ], + [ + "raum", + -15.02085018157959 + ], + [ + "traveling", + -15.02086067199707 + ], + [ + "▁seaboard", + -15.02086353302002 + ], + [ + "ài", + -15.020879745483398 + ], + [ + "▁sympathetically", + -15.02091121673584 + ], + [ + "▁Wenatchee", + -15.020940780639648 + ], + [ + "▁Revell", + -15.02096939086914 + ], + [ + "▁urbanized", + -15.02096939086914 + ], + [ + "▁Steed", + -15.02097225189209 + ], + [ + "▁Amusing", + -15.021015167236328 + ], + [ + "स्", + -15.021040916442871 + ], + [ + "imide", + -15.021062850952148 + ], + [ + "rå", + -15.021113395690918 + ], + [ + "▁MIME", + -15.0211763381958 + ], + [ + "▁Vinyasa", + -15.0211763381958 + ], + [ + "▁Tulare", + -15.02118968963623 + ], + [ + "shaded", + -15.021199226379395 + ], + [ + "▁Anxious", + -15.021202087402344 + ], + [ + "▁DECK", + -15.021203994750977 + ], + [ + "▁latino", + -15.021204948425293 + ], + [ + "▁gird", + -15.02126693725586 + ], + [ + "▁tao", + -15.021293640136719 + ], + [ + "▁Northstar", + -15.021343231201172 + ], + [ + "▁playgroup", + -15.021428108215332 + ], + [ + "▁unplugging", + -15.021440505981445 + ], + [ + "▁VMWare", + -15.02145767211914 + ], + [ + "▁DLR", + -15.021459579467773 + ], + [ + "▁theatrics", + -15.021489143371582 + ], + [ + "poem", + -15.021492004394531 + ], + [ + "▁growler", + -15.021520614624023 + ], + [ + "▁Duan", + -15.021533966064453 + ], + [ + "▁unimpressive", + -15.021539688110352 + ], + [ + "cadherin", + -15.021626472473145 + ], + [ + "cheon", + -15.021669387817383 + ], + [ + "▁STAGE", + -15.021692276000977 + ], + [ + "▁emoticons", + -15.02171516418457 + ], + [ + "▁pooping", + -15.021815299987793 + ], + [ + "▁Attila", + -15.021819114685059 + ], + [ + "thera", + -15.021843910217285 + ], + [ + "▁Malak", + -15.02190113067627 + ], + [ + "▁Vanden", + -15.021902084350586 + ], + [ + "▁Drifter", + -15.021918296813965 + ], + [ + "▁pummel", + -15.02192211151123 + ], + [ + "▁UPMC", + -15.021923065185547 + ], + [ + "▁chimera", + -15.021946907043457 + ], + [ + "▁brackish", + -15.02194881439209 + ], + [ + "vius", + -15.021954536437988 + ], + [ + "nominal", + -15.021956443786621 + ], + [ + "▁misdirection", + -15.021965980529785 + ], + [ + "▁CTF", + -15.021978378295898 + ], + [ + "Leather", + -15.022004127502441 + ], + [ + "▁Métis", + -15.022029876708984 + ], + [ + "▁Tapered", + -15.022031784057617 + ], + [ + "▁Elbert", + -15.022046089172363 + ], + [ + "▁Mangu", + -15.022051811218262 + ], + [ + "Blow", + -15.022071838378906 + ], + [ + "▁TGA", + -15.022082328796387 + ], + [ + "SAD", + -15.022137641906738 + ], + [ + "Sexual", + -15.022140502929688 + ], + [ + "▁Skol", + -15.022146224975586 + ], + [ + "christmas", + -15.022164344787598 + ], + [ + "▁Pog", + -15.022197723388672 + ], + [ + "▁tacking", + -15.022199630737305 + ], + [ + "▁€25", + -15.022236824035645 + ], + [ + "▁Mattingly", + -15.02225112915039 + ], + [ + "▁POLL", + -15.022253036499023 + ], + [ + "▁unsaid", + -15.022279739379883 + ], + [ + "▁Zardari", + -15.022294044494629 + ], + [ + "▁STUDENT", + -15.022305488586426 + ], + [ + "▁effigy", + -15.022308349609375 + ], + [ + "▁Ethnicity", + -15.022326469421387 + ], + [ + "▁rippled", + -15.022344589233398 + ], + [ + "▁disputa", + -15.022397994995117 + ], + [ + "Broad", + -15.02241039276123 + ], + [ + "UFA", + -15.02244758605957 + ], + [ + "▁Headley", + -15.022481918334961 + ], + [ + "▁expending", + -15.022544860839844 + ], + [ + "▁Schaffer", + -15.02254581451416 + ], + [ + "▁columbus", + -15.02259349822998 + ], + [ + "▁Rojo", + -15.022597312927246 + ], + [ + "▁Sonoran", + -15.022604942321777 + ], + [ + "▁Schne", + -15.022644996643066 + ], + [ + "nary", + -15.022650718688965 + ], + [ + "OCT", + -15.022687911987305 + ], + [ + "octa", + -15.02269172668457 + ], + [ + "sheep", + -15.022706031799316 + ], + [ + "▁Dummy", + -15.02270793914795 + ], + [ + "▁742", + -15.022710800170898 + ], + [ + "▁MacFarlane", + -15.022712707519531 + ], + [ + "▁Govinda", + -15.022789001464844 + ], + [ + "▁outplayed", + -15.022797584533691 + ], + [ + "agio", + -15.022802352905273 + ], + [ + "▁hl", + -15.022839546203613 + ], + [ + "NPS", + -15.022846221923828 + ], + [ + "rigged", + -15.022846221923828 + ], + [ + "▁consum", + -15.022854804992676 + ], + [ + "▁Grew", + -15.022868156433105 + ], + [ + "▁NBS", + -15.022880554199219 + ], + [ + "▁CSN", + -15.02294921875 + ], + [ + "▁£65", + -15.022965431213379 + ], + [ + "gory", + -15.022972106933594 + ], + [ + "calculated", + -15.023033142089844 + ], + [ + "▁Heartbeat", + -15.0230712890625 + ], + [ + "Denver", + -15.023085594177246 + ], + [ + "Fuck", + -15.023085594177246 + ], + [ + "▁GBC", + -15.023101806640625 + ], + [ + "▁Lichtenstein", + -15.023154258728027 + ], + [ + "▁petticoat", + -15.023177146911621 + ], + [ + "▁greenfield", + -15.023270606994629 + ], + [ + "▁TEEN", + -15.023299217224121 + ], + [ + "▁Wahhabi", + -15.023306846618652 + ], + [ + "▁Scopus", + -15.02332878112793 + ], + [ + "▁Url", + -15.023385047912598 + ], + [ + "verein", + -15.023414611816406 + ], + [ + "▁Gypsies", + -15.023476600646973 + ], + [ + "▁plausibly", + -15.023489952087402 + ], + [ + "ecco", + -15.023533821105957 + ], + [ + "▁Knightley", + -15.023534774780273 + ], + [ + "▁PCV", + -15.023548126220703 + ], + [ + "▁Gonzo", + -15.023552894592285 + ], + [ + "ISR", + -15.023565292358398 + ], + [ + "Pitch", + -15.023609161376953 + ], + [ + "▁storeroom", + -15.023626327514648 + ], + [ + "▁diclofenac", + -15.023640632629395 + ], + [ + "▁Adeline", + -15.02369213104248 + ], + [ + "uana", + -15.02372932434082 + ], + [ + "▁sincerest", + -15.023747444152832 + ], + [ + "▁enchilada", + -15.023771286010742 + ], + [ + "▁BIKE", + -15.023868560791016 + ], + [ + "▁Whitechapel", + -15.02392864227295 + ], + [ + "▁Komik", + -15.02393913269043 + ], + [ + "ysh", + -15.024030685424805 + ], + [ + "LEE", + -15.024059295654297 + ], + [ + "▁birthdate", + -15.024102210998535 + ], + [ + "▁Expose", + -15.024169921875 + ], + [ + "Deutsch", + -15.024174690246582 + ], + [ + "▁Mirai", + -15.024182319641113 + ], + [ + "1074", + -15.02420425415039 + ], + [ + "▁purplish", + -15.0242280960083 + ], + [ + "▁gearboxes", + -15.024230003356934 + ], + [ + "▁Glencore", + -15.02424144744873 + ], + [ + "burned", + -15.02425479888916 + ], + [ + "▁superoxide", + -15.024283409118652 + ], + [ + "▁herded", + -15.024292945861816 + ], + [ + "GAME", + -15.024311065673828 + ], + [ + "▁typified", + -15.024330139160156 + ], + [ + "▁Sonnet", + -15.024383544921875 + ], + [ + "ubsidi", + -15.024396896362305 + ], + [ + "▁Blueberries", + -15.0244140625 + ], + [ + "建", + -15.024422645568848 + ], + [ + "▁Koto", + -15.02442741394043 + ], + [ + "▁Cadiz", + -15.024429321289062 + ], + [ + "▁cx", + -15.024449348449707 + ], + [ + "▁gTLD", + -15.0244779586792 + ], + [ + "bild", + -15.024479866027832 + ], + [ + "▁Cathar", + -15.024505615234375 + ], + [ + "▁Tamiya", + -15.024520874023438 + ], + [ + "rearing", + -15.024542808532715 + ], + [ + "▁expunged", + -15.024551391601562 + ], + [ + "▁Moynihan", + -15.024556159973145 + ], + [ + "▁DMG", + -15.024589538574219 + ], + [ + "mantle", + -15.024608612060547 + ], + [ + "cí", + -15.024617195129395 + ], + [ + "pregnant", + -15.024643898010254 + ], + [ + "▁Schaumburg", + -15.024664878845215 + ], + [ + "▁Picasa", + -15.024714469909668 + ], + [ + "fio", + -15.024717330932617 + ], + [ + "▁magnifier", + -15.024761199951172 + ], + [ + "▁depressant", + -15.024802207946777 + ], + [ + "▁microbe", + -15.024815559387207 + ], + [ + "▁Kaleidoscope", + -15.024828910827637 + ], + [ + "▁convolution", + -15.02484130859375 + ], + [ + "▁themself", + -15.024903297424316 + ], + [ + "▁reminiscences", + -15.024908065795898 + ], + [ + "millennial", + -15.024947166442871 + ], + [ + "▁aggre", + -15.024961471557617 + ], + [ + "skeptic", + -15.024985313415527 + ], + [ + "▁Apu", + -15.025002479553223 + ], + [ + "▁quasar", + -15.025009155273438 + ], + [ + "▁faq", + -15.02501392364502 + ], + [ + "ið", + -15.025035858154297 + ], + [ + "▁arborist", + -15.025045394897461 + ], + [ + "ते", + -15.025074005126953 + ], + [ + "▁Mizzou", + -15.025076866149902 + ], + [ + "▁stringed", + -15.0250825881958 + ], + [ + "▁Wetland", + -15.025113105773926 + ], + [ + "▁Hendrickson", + -15.025114059448242 + ], + [ + "▁stratospheric", + -15.025144577026367 + ], + [ + "▁CPEC", + -15.025161743164062 + ], + [ + "▁Afton", + -15.025193214416504 + ], + [ + "blame", + -15.0252046585083 + ], + [ + "▁WHEELS", + -15.025213241577148 + ], + [ + "▁isotretinoin", + -15.025254249572754 + ], + [ + "▁Madge", + -15.025272369384766 + ], + [ + "▁Humility", + -15.025291442871094 + ], + [ + "ERIA", + -15.02529239654541 + ], + [ + "放", + -15.025315284729004 + ], + [ + "▁OPA", + -15.025339126586914 + ], + [ + "▁sinless", + -15.025352478027344 + ], + [ + "▁sunbathe", + -15.02540111541748 + ], + [ + "80°", + -15.025405883789062 + ], + [ + "▁Rogen", + -15.02541732788086 + ], + [ + "▁Whoopi", + -15.025429725646973 + ], + [ + "zino", + -15.025443077087402 + ], + [ + "▁REX", + -15.0254545211792 + ], + [ + "nytimes", + -15.025456428527832 + ], + [ + "Goal", + -15.025484085083008 + ], + [ + "▁VOLUME", + -15.025500297546387 + ], + [ + "▁был", + -15.025506973266602 + ], + [ + "finishing", + -15.025542259216309 + ], + [ + "Wikipedia", + -15.025544166564941 + ], + [ + "emming", + -15.025562286376953 + ], + [ + "▁€15", + -15.02560043334961 + ], + [ + "▁Merv", + -15.025609016418457 + ], + [ + "trad", + -15.025627136230469 + ], + [ + "▁overeat", + -15.025633811950684 + ], + [ + "▁Amaro", + -15.025668144226074 + ], + [ + "▁tourmaline", + -15.025718688964844 + ], + [ + "moji", + -15.025732040405273 + ], + [ + "▁Newegg", + -15.025733947753906 + ], + [ + "▁eHealth", + -15.025752067565918 + ], + [ + "▁Camouflage", + -15.025786399841309 + ], + [ + "▁metallo", + -15.025810241699219 + ], + [ + "porter", + -15.02586555480957 + ], + [ + "patti", + -15.025891304016113 + ], + [ + "Fifty", + -15.025909423828125 + ], + [ + "Fruit", + -15.025914192199707 + ], + [ + "▁diffusing", + -15.0259428024292 + ], + [ + "▁Voorhees", + -15.025964736938477 + ], + [ + "NIV", + -15.025970458984375 + ], + [ + "▁Kirill", + -15.02599048614502 + ], + [ + "napped", + -15.025997161865234 + ], + [ + "▁diatom", + -15.026019096374512 + ], + [ + "▁murphy", + -15.026029586791992 + ], + [ + "▁watchable", + -15.026052474975586 + ], + [ + "▁Usha", + -15.026091575622559 + ], + [ + "▁Tink", + -15.026124000549316 + ], + [ + "▁Vesti", + -15.026131629943848 + ], + [ + "▁equalised", + -15.026169776916504 + ], + [ + "▁nuc", + -15.026209831237793 + ], + [ + "▁Mathematik", + -15.026224136352539 + ], + [ + "easier", + -15.026250839233398 + ], + [ + "▁EBV", + -15.02625846862793 + ], + [ + "▁surrealism", + -15.026280403137207 + ], + [ + "Ф", + -15.026318550109863 + ], + [ + "▁expounded", + -15.026334762573242 + ], + [ + "ffie", + -15.026369094848633 + ], + [ + "waist", + -15.026386260986328 + ], + [ + "▁fervour", + -15.026389122009277 + ], + [ + "شر", + -15.026392936706543 + ], + [ + "AVER", + -15.026412010192871 + ], + [ + "▁haulage", + -15.026423454284668 + ], + [ + "▁Gzip", + -15.026436805725098 + ], + [ + "wellness", + -15.026440620422363 + ], + [ + "▁Yeager", + -15.02645206451416 + ], + [ + "▁conjoined", + -15.026471138000488 + ], + [ + "sudden", + -15.026494026184082 + ], + [ + "▁Lavin", + -15.02650260925293 + ], + [ + "▁stil", + -15.026573181152344 + ], + [ + "▁Colomb", + -15.026575088500977 + ], + [ + "▁TRANSFER", + -15.026599884033203 + ], + [ + "Maximum", + -15.026612281799316 + ], + [ + "▁Tremblay", + -15.02664852142334 + ], + [ + "▁satu", + -15.026671409606934 + ], + [ + "hosh", + -15.02668285369873 + ], + [ + "▁Pega", + -15.026683807373047 + ], + [ + "▁Motocross", + -15.026705741882324 + ], + [ + "▁yamaha", + -15.026714324951172 + ], + [ + "novation", + -15.026740074157715 + ], + [ + "Fran", + -15.026769638061523 + ], + [ + "▁MDX", + -15.026775360107422 + ], + [ + "Vine", + -15.026782035827637 + ], + [ + "▁McElroy", + -15.026817321777344 + ], + [ + "▁IgM", + -15.026847839355469 + ], + [ + "Portfolio", + -15.026870727539062 + ], + [ + "uhu", + -15.026881217956543 + ], + [ + "▁Hoag", + -15.026898384094238 + ], + [ + "accia", + -15.026907920837402 + ], + [ + "හ", + -15.026991844177246 + ], + [ + "Milwaukee", + -15.027047157287598 + ], + [ + "▁Braking", + -15.027082443237305 + ], + [ + "neke", + -15.027087211608887 + ], + [ + "ATF", + -15.02709674835205 + ], + [ + "▁Glazing", + -15.027127265930176 + ], + [ + "▁Unsubscribe", + -15.027138710021973 + ], + [ + "ondra", + -15.027145385742188 + ], + [ + "ÿ", + -15.027149200439453 + ], + [ + "çi", + -15.027183532714844 + ], + [ + "1868", + -15.027214050292969 + ], + [ + "▁Rhyme", + -15.027233123779297 + ], + [ + "dhë", + -15.027267456054688 + ], + [ + "▁transposed", + -15.02726936340332 + ], + [ + "EQU", + -15.027275085449219 + ], + [ + "▁README", + -15.0272798538208 + ], + [ + "▁WADA", + -15.027302742004395 + ], + [ + "▁oocytes", + -15.027362823486328 + ], + [ + "audience", + -15.027379989624023 + ], + [ + "▁midstream", + -15.027438163757324 + ], + [ + "▁Insignia", + -15.027471542358398 + ], + [ + "▁EAA", + -15.027477264404297 + ], + [ + "▁Mathe", + -15.027481079101562 + ], + [ + "▁Boniface", + -15.027501106262207 + ], + [ + "▁msn", + -15.027512550354004 + ], + [ + "rushing", + -15.027549743652344 + ], + [ + "saturation", + -15.027571678161621 + ], + [ + "▁PDO", + -15.027621269226074 + ], + [ + "▁intruding", + -15.02762222290039 + ], + [ + "▁flatulence", + -15.02763557434082 + ], + [ + "▁TEK", + -15.027647018432617 + ], + [ + "rà", + -15.027653694152832 + ], + [ + "▁bosch", + -15.027663230895996 + ], + [ + "▁ataxia", + -15.027665138244629 + ], + [ + "▁Beauchamp", + -15.027671813964844 + ], + [ + "▁tripling", + -15.02773380279541 + ], + [ + "gassing", + -15.027753829956055 + ], + [ + "midnight", + -15.027765274047852 + ], + [ + "▁Huw", + -15.027804374694824 + ], + [ + "▁snowmobiling", + -15.027813911437988 + ], + [ + "izzo", + -15.027920722961426 + ], + [ + "▁Indications", + -15.027920722961426 + ], + [ + "▁Ketogenic", + -15.027923583984375 + ], + [ + "▁Makita", + -15.028002738952637 + ], + [ + "▁Trampoline", + -15.028006553649902 + ], + [ + "▁Sealant", + -15.028079986572266 + ], + [ + "ILLY", + -15.028087615966797 + ], + [ + "▁Harte", + -15.028101921081543 + ], + [ + "sickness", + -15.02810287475586 + ], + [ + "▁DISCOVER", + -15.028130531311035 + ], + [ + "▁legume", + -15.028148651123047 + ], + [ + "holi", + -15.028165817260742 + ], + [ + "developers", + -15.028179168701172 + ], + [ + "▁baja", + -15.028203010559082 + ], + [ + "▁Receptionist", + -15.028203964233398 + ], + [ + "dictionary", + -15.028268814086914 + ], + [ + "atsuki", + -15.028279304504395 + ], + [ + "ICON", + -15.028348922729492 + ], + [ + "▁MMI", + -15.028361320495605 + ], + [ + "demographic", + -15.028367042541504 + ], + [ + "▁encyclopedic", + -15.028389930725098 + ], + [ + "▁Zwei", + -15.028416633605957 + ], + [ + "▁Ramada", + -15.028435707092285 + ], + [ + "▁Enthusiasm", + -15.028444290161133 + ], + [ + "▁язык", + -15.028486251831055 + ], + [ + "▁Dwarves", + -15.028512954711914 + ], + [ + "▁AIX", + -15.028524398803711 + ], + [ + "▁keno", + -15.028545379638672 + ], + [ + "1886", + -15.028599739074707 + ], + [ + "▁Oedipus", + -15.028609275817871 + ], + [ + "Escape", + -15.028631210327148 + ], + [ + "▁LoL", + -15.028634071350098 + ], + [ + "▁jostling", + -15.028650283813477 + ], + [ + "▁Wirth", + -15.028654098510742 + ], + [ + "▁Weakness", + -15.028671264648438 + ], + [ + "▁headstock", + -15.028687477111816 + ], + [ + "▁Intex", + -15.028691291809082 + ], + [ + "▁HRV", + -15.028698921203613 + ], + [ + "▁excerpted", + -15.028715133666992 + ], + [ + "▁Touchscreen", + -15.028797149658203 + ], + [ + "▁1745", + -15.028801918029785 + ], + [ + "▁Webpage", + -15.028833389282227 + ], + [ + "nava", + -15.02884292602539 + ], + [ + "▁INSERT", + -15.028861999511719 + ], + [ + "▁Charlize", + -15.028897285461426 + ], + [ + "▁Pancreatic", + -15.028897285461426 + ], + [ + "▁MYR", + -15.028901100158691 + ], + [ + "▁10°", + -15.028948783874512 + ], + [ + "▁TCO", + -15.028960227966309 + ], + [ + "CST", + -15.028980255126953 + ], + [ + "▁Tiffin", + -15.028995513916016 + ], + [ + "▁sowed", + -15.029004096984863 + ], + [ + "▁prehistory", + -15.029029846191406 + ], + [ + "▁Walked", + -15.029033660888672 + ], + [ + "bero", + -15.029041290283203 + ], + [ + "inspection", + -15.029064178466797 + ], + [ + "▁Cannibal", + -15.029114723205566 + ], + [ + "▁betrothed", + -15.029144287109375 + ], + [ + "leach", + -15.029168128967285 + ], + [ + "▁showmanship", + -15.029210090637207 + ], + [ + "▁Hoku", + -15.029213905334473 + ], + [ + "▁Bakker", + -15.029217720031738 + ], + [ + "▁candelabra", + -15.029227256774902 + ], + [ + "▁unstuck", + -15.029240608215332 + ], + [ + "Sensual", + -15.029280662536621 + ], + [ + "wazi", + -15.029316902160645 + ], + [ + "▁Utes", + -15.029327392578125 + ], + [ + "▁frickin", + -15.029372215270996 + ], + [ + "▁Derick", + -15.029375076293945 + ], + [ + "UBE", + -15.029385566711426 + ], + [ + "▁Seaweed", + -15.029412269592285 + ], + [ + "▁Salafi", + -15.029423713684082 + ], + [ + "▁Singular", + -15.029423713684082 + ], + [ + "▁SEEN", + -15.029470443725586 + ], + [ + "ⲟ", + -15.029487609863281 + ], + [ + "▁OLE", + -15.029512405395508 + ], + [ + "▁ANNUAL", + -15.029560089111328 + ], + [ + "▁squire", + -15.029560089111328 + ], + [ + "▁Lanham", + -15.02962589263916 + ], + [ + "▁TCF", + -15.029640197753906 + ], + [ + "zung", + -15.029664039611816 + ], + [ + "chni", + -15.02969741821289 + ], + [ + "▁Kirkuk", + -15.029698371887207 + ], + [ + "▁interagency", + -15.029716491699219 + ], + [ + "▁BRITISH", + -15.029749870300293 + ], + [ + "▁Mittal", + -15.02976131439209 + ], + [ + "▁Kunming", + -15.029784202575684 + ], + [ + "提供", + -15.02981185913086 + ], + [ + "▁dioxin", + -15.029851913452148 + ], + [ + "▁forecourt", + -15.029864311218262 + ], + [ + "▁democratize", + -15.029875755310059 + ], + [ + "▁rabbinic", + -15.02988338470459 + ], + [ + "▁Pappas", + -15.029894828796387 + ], + [ + "▁hounded", + -15.02996826171875 + ], + [ + "▁decker", + -15.02999210357666 + ], + [ + "▁gritted", + -15.029997825622559 + ], + [ + "▁fug", + -15.030017852783203 + ], + [ + "▁Foreword", + -15.03004264831543 + ], + [ + "然", + -15.030043601989746 + ], + [ + "csi", + -15.030051231384277 + ], + [ + "▁volkswagen", + -15.030051231384277 + ], + [ + "▁Walz", + -15.030067443847656 + ], + [ + "▁Maeda", + -15.03007698059082 + ], + [ + "▁Ramblers", + -15.030121803283691 + ], + [ + "▁pé", + -15.03012466430664 + ], + [ + "國", + -15.030149459838867 + ], + [ + "تم", + -15.030166625976562 + ], + [ + "▁Khad", + -15.030186653137207 + ], + [ + "▁bursaries", + -15.030195236206055 + ], + [ + "▁snowshoes", + -15.030203819274902 + ], + [ + "▁Fractional", + -15.030242919921875 + ], + [ + "kira", + -15.030251502990723 + ], + [ + "Kol", + -15.030268669128418 + ], + [ + "▁enroute", + -15.030291557312012 + ], + [ + "▁SVC", + -15.030301094055176 + ], + [ + "▁Efron", + -15.030309677124023 + ], + [ + "▁Broadcasters", + -15.030318260192871 + ], + [ + "▁chambered", + -15.030350685119629 + ], + [ + "ల", + -15.030381202697754 + ], + [ + "▁tamales", + -15.030394554138184 + ], + [ + "CHESTER", + -15.030473709106445 + ], + [ + "▁Tricky", + -15.030516624450684 + ], + [ + "▁cradling", + -15.030563354492188 + ], + [ + "▁Borland", + -15.030570983886719 + ], + [ + "▁της", + -15.030601501464844 + ], + [ + "として", + -15.030603408813477 + ], + [ + "▁crudely", + -15.030609130859375 + ], + [ + "▁Hamiltonian", + -15.030652046203613 + ], + [ + "▁whoosh", + -15.030671119689941 + ], + [ + "▁LLM", + -15.030675888061523 + ], + [ + "▁Nui", + -15.030681610107422 + ], + [ + "▁Cyrillic", + -15.030698776245117 + ], + [ + "▁Lancelot", + -15.030721664428711 + ], + [ + "▁Nesbitt", + -15.03072452545166 + ], + [ + "▁LUMPUR", + -15.030903816223145 + ], + [ + "▁diggers", + -15.030911445617676 + ], + [ + "jum", + -15.030963897705078 + ], + [ + "▁Dilute", + -15.030974388122559 + ], + [ + "▁mediterranean", + -15.030985832214355 + ], + [ + "▁MTU", + -15.030986785888672 + ], + [ + "ESSE", + -15.031026840209961 + ], + [ + "▁Rhubarb", + -15.031027793884277 + ], + [ + "▁shouldered", + -15.0310697555542 + ], + [ + "▁bool", + -15.031084060668945 + ], + [ + "▁Kayaking", + -15.03110122680664 + ], + [ + "▁885", + -15.031146049499512 + ], + [ + "gasse", + -15.03116226196289 + ], + [ + "▁Zapata", + -15.03116512298584 + ], + [ + "▁inflorescence", + -15.03117847442627 + ], + [ + "▁rowed", + -15.031181335449219 + ], + [ + "household", + -15.031187057495117 + ], + [ + "▁Nephew", + -15.031195640563965 + ], + [ + "▁zak", + -15.031206130981445 + ], + [ + "▁Attracting", + -15.031214714050293 + ], + [ + "▁pock", + -15.031229019165039 + ], + [ + "▁DTI", + -15.031241416931152 + ], + [ + "▁Fireman", + -15.031285285949707 + ], + [ + "▁Nae", + -15.031285285949707 + ], + [ + "▁whittle", + -15.031285285949707 + ], + [ + "▁Woof", + -15.031288146972656 + ], + [ + "FORT", + -15.031309127807617 + ], + [ + "▁Sivan", + -15.031394958496094 + ], + [ + "▁chimeric", + -15.031397819519043 + ], + [ + "Campaign", + -15.031455039978027 + ], + [ + "▁Kaul", + -15.031476020812988 + ], + [ + "▁Luxemburg", + -15.031495094299316 + ], + [ + "▁zna", + -15.031497955322266 + ], + [ + "▁Nika", + -15.031503677368164 + ], + [ + "▁jogger", + -15.031527519226074 + ], + [ + "locution", + -15.031539916992188 + ], + [ + "▁Shilpa", + -15.03154182434082 + ], + [ + "▁Cleaned", + -15.031598091125488 + ], + [ + "▁Uribe", + -15.031625747680664 + ], + [ + "▁Deseret", + -15.031633377075195 + ], + [ + "▁RoHS", + -15.031657218933105 + ], + [ + "▁Pedigree", + -15.031673431396484 + ], + [ + "▁Mii", + -15.031683921813965 + ], + [ + "augur", + -15.031744956970215 + ], + [ + "▁Apology", + -15.031777381896973 + ], + [ + "▁blurt", + -15.031819343566895 + ], + [ + "▁DOOM", + -15.031851768493652 + ], + [ + "▁homestand", + -15.031900405883789 + ], + [ + "▁knotty", + -15.031903266906738 + ], + [ + "▁INDEX", + -15.0319185256958 + ], + [ + "Relax", + -15.031920433044434 + ], + [ + "▁funciona", + -15.031920433044434 + ], + [ + "▁crosswise", + -15.031949043273926 + ], + [ + "▁RMC", + -15.031991958618164 + ], + [ + "▁Srinivasan", + -15.032015800476074 + ], + [ + "GIC", + -15.032055854797363 + ], + [ + "▁Primavera", + -15.032119750976562 + ], + [ + "▁ESET", + -15.03216552734375 + ], + [ + "▁ruinous", + -15.032183647155762 + ], + [ + "▁Yancey", + -15.032190322875977 + ], + [ + "Cake", + -15.032206535339355 + ], + [ + "camping", + -15.032238960266113 + ], + [ + "▁Plessis", + -15.032240867614746 + ], + [ + "cultura", + -15.032325744628906 + ], + [ + "▁Koehler", + -15.032341957092285 + ], + [ + "▁ACTUAL", + -15.032356262207031 + ], + [ + "ecia", + -15.032423973083496 + ], + [ + "▁unscripted", + -15.032434463500977 + ], + [ + "▁pyrite", + -15.032442092895508 + ], + [ + "▁DuBois", + -15.032459259033203 + ], + [ + "▁punctually", + -15.032478332519531 + ], + [ + "▁Alcott", + -15.032482147216797 + ], + [ + "▁overburden", + -15.032485008239746 + ], + [ + "▁Agoda", + -15.032499313354492 + ], + [ + "Alabama", + -15.032571792602539 + ], + [ + "▁Fermentation", + -15.032574653625488 + ], + [ + "▁reverent", + -15.032574653625488 + ], + [ + "▁Lindholm", + -15.032576560974121 + ], + [ + "▁Metacritic", + -15.032578468322754 + ], + [ + "▁levees", + -15.032581329345703 + ], + [ + "▁cleaved", + -15.032620429992676 + ], + [ + "▁plenum", + -15.032638549804688 + ], + [ + "laughing", + -15.032724380493164 + ], + [ + "▁DVM", + -15.03274154663086 + ], + [ + "GRAPHIC", + -15.032776832580566 + ], + [ + "▁postmaster", + -15.032783508300781 + ], + [ + "▁Blaz", + -15.032790184020996 + ], + [ + "▁Liebe", + -15.032811164855957 + ], + [ + "王", + -15.032828330993652 + ], + [ + "▁photocopying", + -15.032829284667969 + ], + [ + "▁BOJ", + -15.032857894897461 + ], + [ + "SAE", + -15.032894134521484 + ], + [ + "loser", + -15.03292179107666 + ], + [ + "▁Taha", + -15.032938003540039 + ], + [ + "naise", + -15.032979011535645 + ], + [ + "▁duffle", + -15.033001899719238 + ], + [ + "interpretation", + -15.033012390136719 + ], + [ + "▁prankster", + -15.033037185668945 + ], + [ + "Approx", + -15.033076286315918 + ], + [ + "▁Raksha", + -15.03307819366455 + ], + [ + "▁Ought", + -15.033101081848145 + ], + [ + "▁Ophthalmol", + -15.033138275146484 + ], + [ + "▁VIEWS", + -15.033147811889648 + ], + [ + "▁lyc", + -15.033174514770508 + ], + [ + "▁shutoff", + -15.033191680908203 + ], + [ + "▁shrugging", + -15.033238410949707 + ], + [ + "▁Skal", + -15.033246994018555 + ], + [ + "▁fictionalized", + -15.033272743225098 + ], + [ + "icca", + -15.033283233642578 + ], + [ + "▁Rossini", + -15.033283233642578 + ], + [ + "istry", + -15.033418655395508 + ], + [ + "▁acrimonious", + -15.03342342376709 + ], + [ + "▁trended", + -15.033441543579102 + ], + [ + "SHOT", + -15.033449172973633 + ], + [ + "▁Krum", + -15.03346061706543 + ], + [ + "▁RSP", + -15.033472061157227 + ], + [ + "▁Corian", + -15.033475875854492 + ], + [ + "▁tripartite", + -15.033493041992188 + ], + [ + "registry", + -15.033500671386719 + ], + [ + "▁pid", + -15.033531188964844 + ], + [ + "hite", + -15.033622741699219 + ], + [ + "EMC", + -15.033670425415039 + ], + [ + "▁Olay", + -15.033723831176758 + ], + [ + "▁stigmatized", + -15.03372573852539 + ], + [ + "RACE", + -15.0337495803833 + ], + [ + "▁Maradona", + -15.033754348754883 + ], + [ + "▁ESF", + -15.033757209777832 + ], + [ + "▁vesicle", + -15.033782005310059 + ], + [ + "éo", + -15.033869743347168 + ], + [ + "▁Potro", + -15.033884048461914 + ], + [ + "▁Minogue", + -15.03388500213623 + ], + [ + "▁ANNA", + -15.033900260925293 + ], + [ + "‟", + -15.033920288085938 + ], + [ + "▁Buckhead", + -15.033927917480469 + ], + [ + "▁Kurtis", + -15.033970832824707 + ], + [ + "RTI", + -15.034059524536133 + ], + [ + "▁Newcomers", + -15.034069061279297 + ], + [ + "▁Cretan", + -15.034072875976562 + ], + [ + "constructive", + -15.034093856811523 + ], + [ + "▁Earring", + -15.03412914276123 + ], + [ + "Herb", + -15.034135818481445 + ], + [ + "Frozen", + -15.034170150756836 + ], + [ + "▁antsy", + -15.034272193908691 + ], + [ + "▁spiny", + -15.034276962280273 + ], + [ + "Apart", + -15.034305572509766 + ], + [ + "Rack", + -15.034313201904297 + ], + [ + "▁liquorice", + -15.03435230255127 + ], + [ + "buf", + -15.034369468688965 + ], + [ + "riana", + -15.03447437286377 + ], + [ + "▁Lululemon", + -15.03447437286377 + ], + [ + "Lime", + -15.034483909606934 + ], + [ + "publicized", + -15.034502983093262 + ], + [ + "ANNE", + -15.03453254699707 + ], + [ + "▁savoir", + -15.034546852111816 + ], + [ + "▁swedish", + -15.034554481506348 + ], + [ + "goro", + -15.034561157226562 + ], + [ + "Flame", + -15.034591674804688 + ], + [ + "▁Hideaway", + -15.034592628479004 + ], + [ + "ohio", + -15.034602165222168 + ], + [ + "ichiro", + -15.03467845916748 + ], + [ + "▁fatten", + -15.034687995910645 + ], + [ + "▁Unwanted", + -15.03470516204834 + ], + [ + "▁Reinvestment", + -15.034738540649414 + ], + [ + "▁DISCLAIMS", + -15.034768104553223 + ], + [ + "▁Efe", + -15.034777641296387 + ], + [ + "▁Stok", + -15.034777641296387 + ], + [ + "nnington", + -15.034789085388184 + ], + [ + "foto", + -15.034790992736816 + ], + [ + "▁Hachi", + -15.03480052947998 + ], + [ + "CAB", + -15.034808158874512 + ], + [ + "▁Petrobras", + -15.034899711608887 + ], + [ + "articular", + -15.03490161895752 + ], + [ + "▁Starsky", + -15.03493595123291 + ], + [ + "▁getter", + -15.034944534301758 + ], + [ + "ruling", + -15.03496265411377 + ], + [ + "▁Amrita", + -15.034971237182617 + ], + [ + "Interesting", + -15.034989356994629 + ], + [ + "Ô", + -15.03501033782959 + ], + [ + "▁1758", + -15.0350341796875 + ], + [ + "▁Stockbridge", + -15.035035133361816 + ], + [ + "▁mapper", + -15.035036087036133 + ], + [ + "▁Kilgore", + -15.035065650939941 + ], + [ + "▁metrology", + -15.035076141357422 + ], + [ + "▁WeWork", + -15.03508186340332 + ], + [ + "BSE", + -15.035099029541016 + ], + [ + "▁preying", + -15.035120010375977 + ], + [ + "▁Sheboygan", + -15.035120964050293 + ], + [ + "▁Resale", + -15.03513240814209 + ], + [ + "▁Wozniak", + -15.035135269165039 + ], + [ + "▁tarantula", + -15.035148620605469 + ], + [ + "▁Krish", + -15.035205841064453 + ], + [ + "بر", + -15.03523063659668 + ], + [ + "вой", + -15.035280227661133 + ], + [ + "Jew", + -15.03530216217041 + ], + [ + "▁spammer", + -15.03533935546875 + ], + [ + "▁Juul", + -15.035354614257812 + ], + [ + "▁rapprochement", + -15.035355567932129 + ], + [ + "▁Kalahari", + -15.035383224487305 + ], + [ + "▁없", + -15.035401344299316 + ], + [ + "Solo", + -15.03540325164795 + ], + [ + "▁MEM", + -15.035441398620605 + ], + [ + "▁repellant", + -15.0354585647583 + ], + [ + "akkar", + -15.0354642868042 + ], + [ + "cency", + -15.035548210144043 + ], + [ + "▁refereeing", + -15.0355863571167 + ], + [ + "▁albedo", + -15.035593032836914 + ], + [ + "Psycho", + -15.03559398651123 + ], + [ + "▁miffed", + -15.035604476928711 + ], + [ + "▁Kogi", + -15.035614013671875 + ], + [ + "▁Ritt", + -15.035624504089355 + ], + [ + "▁Compar", + -15.035724639892578 + ], + [ + "▁Pitman", + -15.03572940826416 + ], + [ + "Interest", + -15.035782814025879 + ], + [ + "▁rubella", + -15.035788536071777 + ], + [ + "▁PRIDE", + -15.035802841186523 + ], + [ + "VEC", + -15.035819053649902 + ], + [ + "▁creditable", + -15.0358304977417 + ], + [ + "Flowers", + -15.03583812713623 + ], + [ + "▁gossiping", + -15.035841941833496 + ], + [ + "▁snatches", + -15.035844802856445 + ], + [ + "compli", + -15.035858154296875 + ], + [ + "▁Bellini", + -15.035865783691406 + ], + [ + "▁Fateh", + -15.035867691040039 + ], + [ + "gastric", + -15.035874366760254 + ], + [ + "▁pancetta", + -15.035881042480469 + ], + [ + "Shopping", + -15.035886764526367 + ], + [ + "Terrorism", + -15.035897254943848 + ], + [ + "ankar", + -15.0359525680542 + ], + [ + "▁Arithmetic", + -15.035977363586426 + ], + [ + "▁Ducey", + -15.035989761352539 + ], + [ + "▁ripened", + -15.036105155944824 + ], + [ + "▁Overload", + -15.036107063293457 + ], + [ + "▁Minotaur", + -15.036115646362305 + ], + [ + "▁Baronet", + -15.036117553710938 + ], + [ + "rashi", + -15.036152839660645 + ], + [ + "▁maelstrom", + -15.036157608032227 + ], + [ + "▁Sledge", + -15.036164283752441 + ], + [ + "OMB", + -15.036185264587402 + ], + [ + "▁Ultraviolet", + -15.036185264587402 + ], + [ + "▁Darkest", + -15.036201477050781 + ], + [ + "▁789", + -15.036208152770996 + ], + [ + "▁counterculture", + -15.036214828491211 + ], + [ + "wol", + -15.036253929138184 + ], + [ + "▁Painful", + -15.03626537322998 + ], + [ + "▁무", + -15.036312103271484 + ], + [ + "ái", + -15.0363187789917 + ], + [ + "▁Zahn", + -15.036351203918457 + ], + [ + "▁bantamweight", + -15.036354064941406 + ], + [ + "▁Chittagong", + -15.036419868469238 + ], + [ + "cephalic", + -15.036431312561035 + ], + [ + "▁Hackensack", + -15.03647518157959 + ], + [ + "▁hemophilia", + -15.036477088928223 + ], + [ + "▁slinging", + -15.036478042602539 + ], + [ + "▁primi", + -15.036505699157715 + ], + [ + "▁Workday", + -15.036519050598145 + ], + [ + "▁luke", + -15.036529541015625 + ], + [ + "▁periodontitis", + -15.036530494689941 + ], + [ + "▁moorland", + -15.036540031433105 + ], + [ + "Feature", + -15.036552429199219 + ], + [ + "▁safekeeping", + -15.036624908447266 + ], + [ + "▁Genting", + -15.036633491516113 + ], + [ + "Seriously", + -15.03665828704834 + ], + [ + "▁Chewbacca", + -15.03666877746582 + ], + [ + "▁shrivel", + -15.036676406860352 + ], + [ + "fontaine", + -15.036678314208984 + ], + [ + "▁jeu", + -15.036701202392578 + ], + [ + "▁Brü", + -15.036702156066895 + ], + [ + "▁FPL", + -15.036735534667969 + ], + [ + "▁Tunbridge", + -15.0367431640625 + ], + [ + "unprecedented", + -15.036755561828613 + ], + [ + "▁Estrella", + -15.036800384521484 + ], + [ + "tainer", + -15.036803245544434 + ], + [ + "▁Nozzle", + -15.036849975585938 + ], + [ + "elyn", + -15.036920547485352 + ], + [ + "▁idiomatic", + -15.036934852600098 + ], + [ + "▁Gracia", + -15.036935806274414 + ], + [ + "▁Ι", + -15.036985397338867 + ], + [ + "▁Emerge", + -15.03699016571045 + ], + [ + "▁nanostructures", + -15.036996841430664 + ], + [ + "▁PTP", + -15.036999702453613 + ], + [ + "▁Shaba", + -15.037055969238281 + ], + [ + "▁Concussion", + -15.037063598632812 + ], + [ + "▁Concentrator", + -15.037084579467773 + ], + [ + "NAH", + -15.037089347839355 + ], + [ + "rosh", + -15.037286758422852 + ], + [ + "▁eGift", + -15.037299156188965 + ], + [ + "▁Rü", + -15.037324905395508 + ], + [ + "▁Boles", + -15.037335395812988 + ], + [ + "▁kinematic", + -15.037339210510254 + ], + [ + "▁postmarked", + -15.037361145019531 + ], + [ + "Integr", + -15.037384986877441 + ], + [ + "▁Announce", + -15.03744125366211 + ], + [ + "▁restorer", + -15.037467956542969 + ], + [ + "▁levity", + -15.037476539611816 + ], + [ + "▁Hackathon", + -15.03751277923584 + ], + [ + "▁lacerations", + -15.037520408630371 + ], + [ + "placing", + -15.037550926208496 + ], + [ + "▁foibles", + -15.037585258483887 + ], + [ + "▁daybreak", + -15.037586212158203 + ], + [ + "▁GIC", + -15.037675857543945 + ], + [ + "▁credibly", + -15.037697792053223 + ], + [ + "PEG", + -15.037734031677246 + ], + [ + "▁Bole", + -15.037752151489258 + ], + [ + "▁Aggression", + -15.037814140319824 + ], + [ + "▁Anza", + -15.037840843200684 + ], + [ + "▁Cobbler", + -15.03785514831543 + ], + [ + "unov", + -15.037864685058594 + ], + [ + "▁Ammunition", + -15.03788948059082 + ], + [ + "warehouse", + -15.037923812866211 + ], + [ + "▁Soph", + -15.037951469421387 + ], + [ + "▁PICTURES", + -15.037971496582031 + ], + [ + "▁nakedness", + -15.037983894348145 + ], + [ + "▁arthroscopic", + -15.037984848022461 + ], + [ + "▁Wilco", + -15.037996292114258 + ], + [ + "UGA", + -15.038015365600586 + ], + [ + "▁ම", + -15.03805160522461 + ], + [ + "▁Suction", + -15.038054466247559 + ], + [ + "hatter", + -15.03809928894043 + ], + [ + "stitching", + -15.038122177124023 + ], + [ + "▁nutraceutical", + -15.03812313079834 + ], + [ + "▁shite", + -15.038159370422363 + ], + [ + "▁Rosenbaum", + -15.038161277770996 + ], + [ + "▁oli", + -15.038182258605957 + ], + [ + "lectic", + -15.038187980651855 + ], + [ + "▁Umberto", + -15.038207054138184 + ], + [ + "▁terri", + -15.038237571716309 + ], + [ + "raptor", + -15.038246154785156 + ], + [ + "▁gulped", + -15.038290023803711 + ], + [ + "▁Usain", + -15.03829574584961 + ], + [ + "ennen", + -15.038296699523926 + ], + [ + "▁gloved", + -15.038312911987305 + ], + [ + "▁misadventures", + -15.038324356079102 + ], + [ + "▁EAGLE", + -15.038354873657227 + ], + [ + "▁Braddock", + -15.038384437561035 + ], + [ + "▁MGA", + -15.038396835327148 + ], + [ + "▁SAINT", + -15.038424491882324 + ], + [ + "▁Rajoy", + -15.038432121276855 + ], + [ + "▁Athlon", + -15.038450241088867 + ], + [ + "▁NINE", + -15.038450241088867 + ], + [ + "▁français", + -15.038464546203613 + ], + [ + "Nag", + -15.038468360900879 + ], + [ + "ilium", + -15.038472175598145 + ], + [ + "▁NTS", + -15.038480758666992 + ], + [ + "▁WILSON", + -15.0385160446167 + ], + [ + "▁dramatist", + -15.038529396057129 + ], + [ + "▁parkrun", + -15.038597106933594 + ], + [ + "▁Natalya", + -15.03861141204834 + ], + [ + "bulation", + -15.038616180419922 + ], + [ + "Dep", + -15.03862190246582 + ], + [ + "▁Brio", + -15.038628578186035 + ], + [ + "▁administratively", + -15.038629531860352 + ], + [ + "kuri", + -15.0386323928833 + ], + [ + "▁Mayhew", + -15.038655281066895 + ], + [ + "▁submitter", + -15.038679122924805 + ], + [ + "▁न", + -15.03870964050293 + ], + [ + "▁Pawtucket", + -15.038718223571777 + ], + [ + "▁lympho", + -15.038823127746582 + ], + [ + "Kyle", + -15.038835525512695 + ], + [ + "▁fungicides", + -15.038843154907227 + ], + [ + "▁Sriracha", + -15.038844108581543 + ], + [ + "▁postmodernism", + -15.038850784301758 + ], + [ + "▁reprocessing", + -15.038886070251465 + ], + [ + "▁Gulin", + -15.03888988494873 + ], + [ + "▁pastiche", + -15.03888988494873 + ], + [ + "▁NAE", + -15.038898468017578 + ], + [ + "▁mobi", + -15.038933753967285 + ], + [ + "▁Sylvain", + -15.038948059082031 + ], + [ + "▁Taskforce", + -15.039024353027344 + ], + [ + "▁Cordon", + -15.039046287536621 + ], + [ + "▁sanctum", + -15.039051055908203 + ], + [ + "▁clumsily", + -15.039134979248047 + ], + [ + "▁waypoints", + -15.039148330688477 + ], + [ + "▁goggle", + -15.039162635803223 + ], + [ + "diagram", + -15.039170265197754 + ], + [ + "▁wargame", + -15.039170265197754 + ], + [ + "▁smothering", + -15.039173126220703 + ], + [ + "▁Barista", + -15.039193153381348 + ], + [ + "▁Uniting", + -15.039199829101562 + ], + [ + "▁JUD", + -15.039201736450195 + ], + [ + "▁garnishment", + -15.039307594299316 + ], + [ + "Ù", + -15.039314270019531 + ], + [ + "Kane", + -15.039318084716797 + ], + [ + "▁Wyo", + -15.039334297180176 + ], + [ + "▁Thanx", + -15.039356231689453 + ], + [ + "recruit", + -15.0393648147583 + ], + [ + "toshi", + -15.039376258850098 + ], + [ + "▁Rehoboth", + -15.039383888244629 + ], + [ + "▁Deccan", + -15.039412498474121 + ], + [ + "▁Ziel", + -15.03946304321289 + ], + [ + "maw", + -15.039468765258789 + ], + [ + "▁immobilization", + -15.039481163024902 + ], + [ + "Instance", + -15.039488792419434 + ], + [ + "▁Finkelstein", + -15.03951358795166 + ], + [ + "wouldn", + -15.039520263671875 + ], + [ + "▁excitatory", + -15.03952693939209 + ], + [ + "▁Balsamic", + -15.039589881896973 + ], + [ + "conformist", + -15.039597511291504 + ], + [ + "populate", + -15.039613723754883 + ], + [ + "▁lockup", + -15.03963565826416 + ], + [ + "ugar", + -15.039654731750488 + ], + [ + "Olive", + -15.039700508117676 + ], + [ + "▁Altair", + -15.039735794067383 + ], + [ + "▁Scholes", + -15.039742469787598 + ], + [ + "▁776", + -15.039762496948242 + ], + [ + "▁Flipping", + -15.039789199829102 + ], + [ + "assume", + -15.039793968200684 + ], + [ + "▁confidante", + -15.039826393127441 + ], + [ + "▁Psychol", + -15.039837837219238 + ], + [ + "▁remarking", + -15.039840698242188 + ], + [ + "▁Aldershot", + -15.039854049682617 + ], + [ + "태", + -15.039911270141602 + ], + [ + "▁Martinsville", + -15.039926528930664 + ], + [ + "▁Satter", + -15.039960861206055 + ], + [ + "▁RCI", + -15.040031433105469 + ], + [ + "▁Greaves", + -15.040040016174316 + ], + [ + "▁GAF", + -15.040047645568848 + ], + [ + "▁basmati", + -15.040060043334961 + ], + [ + "TTT", + -15.040071487426758 + ], + [ + "▁Justify", + -15.040084838867188 + ], + [ + "▁curtailing", + -15.040103912353516 + ], + [ + "▁Elinor", + -15.040119171142578 + ], + [ + "▁Trondheim", + -15.04014778137207 + ], + [ + "icule", + -15.04015064239502 + ], + [ + "treme", + -15.040157318115234 + ], + [ + "LEO", + -15.04015827178955 + ], + [ + "segur", + -15.04016399383545 + ], + [ + "▁Bacchus", + -15.040207862854004 + ], + [ + "noir", + -15.040234565734863 + ], + [ + "▁것", + -15.04024887084961 + ], + [ + "Cuban", + -15.040249824523926 + ], + [ + "hlo", + -15.040251731872559 + ], + [ + "▁Whitetail", + -15.040273666381836 + ], + [ + "▁lectin", + -15.040300369262695 + ], + [ + "▁Schwi", + -15.040334701538086 + ], + [ + "▁MDG", + -15.040335655212402 + ], + [ + "▁rj", + -15.040346145629883 + ], + [ + "▁Centauri", + -15.040351867675781 + ], + [ + "▁fineness", + -15.040395736694336 + ], + [ + "▁BASS", + -15.040457725524902 + ], + [ + "▁nematode", + -15.040464401245117 + ], + [ + "▁RLS", + -15.040473937988281 + ], + [ + "▁spoilage", + -15.040477752685547 + ], + [ + "▁Thackeray", + -15.040521621704102 + ], + [ + "▁Taryn", + -15.04054069519043 + ], + [ + "freight", + -15.040583610534668 + ], + [ + "▁Perse", + -15.040590286254883 + ], + [ + "▁KUALA", + -15.040627479553223 + ], + [ + "ιν", + -15.040708541870117 + ], + [ + "▁alway", + -15.040708541870117 + ], + [ + "▁crawlspace", + -15.04071044921875 + ], + [ + "▁hospitalisation", + -15.040731430053711 + ], + [ + "▁ça", + -15.040756225585938 + ], + [ + "▁Espinoza", + -15.040785789489746 + ], + [ + "▁Sva", + -15.040792465209961 + ], + [ + "mortal", + -15.04084587097168 + ], + [ + "▁Bcl", + -15.040848731994629 + ], + [ + "▁Racket", + -15.040892601013184 + ], + [ + "▁revelers", + -15.040902137756348 + ], + [ + "▁Underwear", + -15.04092788696289 + ], + [ + "Crypto", + -15.040974617004395 + ], + [ + "▁Cognos", + -15.040987968444824 + ], + [ + "Copper", + -15.041047096252441 + ], + [ + "anthropo", + -15.041080474853516 + ], + [ + "▁farcical", + -15.04110336303711 + ], + [ + "▁faceplate", + -15.041160583496094 + ], + [ + "erea", + -15.041165351867676 + ], + [ + "▁Burlesque", + -15.04122257232666 + ], + [ + "▁caesar", + -15.041251182556152 + ], + [ + "▁통", + -15.041297912597656 + ], + [ + "▁GTK", + -15.041298866271973 + ], + [ + "▁shortwave", + -15.041305541992188 + ], + [ + "▁jiggle", + -15.041311264038086 + ], + [ + "▁Zirconia", + -15.041353225708008 + ], + [ + "exotic", + -15.041397094726562 + ], + [ + "▁pushchair", + -15.041414260864258 + ], + [ + "▁Fungi", + -15.041418075561523 + ], + [ + "oxia", + -15.04141902923584 + ], + [ + "▁Narco", + -15.041424751281738 + ], + [ + "▁Brookside", + -15.041447639465332 + ], + [ + "▁FMV", + -15.041447639465332 + ], + [ + "▁Tilda", + -15.041448593139648 + ], + [ + "moi", + -15.041523933410645 + ], + [ + "sensible", + -15.041536331176758 + ], + [ + "▁FQ", + -15.04154109954834 + ], + [ + "Amen", + -15.041557312011719 + ], + [ + "▁Evangelism", + -15.041561126708984 + ], + [ + "▁GCM", + -15.041577339172363 + ], + [ + "▁sleeplessness", + -15.04157829284668 + ], + [ + "TTE", + -15.041582107543945 + ], + [ + "GRO", + -15.041592597961426 + ], + [ + "▁LOGO", + -15.04159927368164 + ], + [ + "▁STREAM", + -15.04159927368164 + ], + [ + "▁Fedor", + -15.041600227355957 + ], + [ + "▁crossbody", + -15.041625022888184 + ], + [ + "▁Raba", + -15.041629791259766 + ], + [ + "▁SARAH", + -15.041632652282715 + ], + [ + "▁안", + -15.04163646697998 + ], + [ + "▁Nginx", + -15.041648864746094 + ], + [ + "▁Brazos", + -15.041662216186523 + ], + [ + "DIV", + -15.041694641113281 + ], + [ + "▁Disposition", + -15.041706085205078 + ], + [ + "▁Soares", + -15.041706085205078 + ], + [ + "ELT", + -15.041719436645508 + ], + [ + "▁smite", + -15.041735649108887 + ], + [ + "▁Peninsular", + -15.041739463806152 + ], + [ + "HOST", + -15.041740417480469 + ], + [ + "▁moz", + -15.041743278503418 + ], + [ + "▁stylised", + -15.041765213012695 + ], + [ + "▁Artichoke", + -15.041814804077148 + ], + [ + "AJA", + -15.041864395141602 + ], + [ + "▁aftershocks", + -15.041895866394043 + ], + [ + "▁degenerated", + -15.041899681091309 + ], + [ + "interference", + -15.041906356811523 + ], + [ + "▁Kombucha", + -15.041954040527344 + ], + [ + "▁Contestants", + -15.041974067687988 + ], + [ + "Austria", + -15.041996002197266 + ], + [ + "▁Sunroof", + -15.042011260986328 + ], + [ + "abber", + -15.042032241821289 + ], + [ + "▁Robeson", + -15.042076110839844 + ], + [ + "▁Farris", + -15.042104721069336 + ], + [ + "Solve", + -15.0421142578125 + ], + [ + "▁Misery", + -15.042158126831055 + ], + [ + "▁Aether", + -15.042159080505371 + ], + [ + "▁compositing", + -15.04216194152832 + ], + [ + "▁occipital", + -15.04216194152832 + ], + [ + "▁Exhibitors", + -15.042165756225586 + ], + [ + "omni", + -15.042184829711914 + ], + [ + "basketball", + -15.042187690734863 + ], + [ + "HAND", + -15.042222023010254 + ], + [ + "▁kinematics", + -15.042243003845215 + ], + [ + "▁Carlsen", + -15.042251586914062 + ], + [ + "▁Mita", + -15.042255401611328 + ], + [ + "▁Æ", + -15.042255401611328 + ], + [ + "Bour", + -15.042261123657227 + ], + [ + "MMO", + -15.042261123657227 + ], + [ + "1887", + -15.042316436767578 + ], + [ + "▁Poirot", + -15.042318344116211 + ], + [ + "▁VIB", + -15.042327880859375 + ], + [ + "▁Anaconda", + -15.042328834533691 + ], + [ + "Mormon", + -15.042335510253906 + ], + [ + "▁GUID", + -15.042337417602539 + ], + [ + "▁Barat", + -15.042346954345703 + ], + [ + "▁Centra", + -15.042369842529297 + ], + [ + "▁pleur", + -15.042379379272461 + ], + [ + "▁Gympie", + -15.042400360107422 + ], + [ + "Vest", + -15.04240894317627 + ], + [ + "▁McKin", + -15.0424165725708 + ], + [ + "▁lipase", + -15.042435646057129 + ], + [ + "honda", + -15.042460441589355 + ], + [ + "ilson", + -15.042460441589355 + ], + [ + "▁Clap", + -15.042509078979492 + ], + [ + "▁Roam", + -15.042510032653809 + ], + [ + "Rah", + -15.042510986328125 + ], + [ + "▁Valery", + -15.042527198791504 + ], + [ + "▁여", + -15.042532920837402 + ], + [ + "elj", + -15.042534828186035 + ], + [ + "▁digression", + -15.04254150390625 + ], + [ + "▁tik", + -15.042637825012207 + ], + [ + "▁incentivized", + -15.042673110961914 + ], + [ + "▁accom", + -15.042686462402344 + ], + [ + "▁Masque", + -15.04269790649414 + ], + [ + "▁Malle", + -15.042701721191406 + ], + [ + "ик", + -15.042702674865723 + ], + [ + "▁hyperglycemia", + -15.042738914489746 + ], + [ + "▁hurrah", + -15.042743682861328 + ], + [ + "▁Cady", + -15.042776107788086 + ], + [ + "monetary", + -15.042804718017578 + ], + [ + "▁UNLESS", + -15.042890548706055 + ], + [ + "▁ova", + -15.042923927307129 + ], + [ + "▁Goldstone", + -15.042940139770508 + ], + [ + "zmann", + -15.042957305908203 + ], + [ + "External", + -15.042975425720215 + ], + [ + "MSI", + -15.043025970458984 + ], + [ + "▁Esto", + -15.043028831481934 + ], + [ + "▁zoology", + -15.043054580688477 + ], + [ + "▁forefinger", + -15.043142318725586 + ], + [ + "▁Holton", + -15.043172836303711 + ], + [ + "▁748", + -15.043195724487305 + ], + [ + "▁Comprising", + -15.043225288391113 + ], + [ + "DCA", + -15.043244361877441 + ], + [ + "▁Complain", + -15.04325008392334 + ], + [ + "func", + -15.04328727722168 + ], + [ + "▁subclasses", + -15.043353080749512 + ], + [ + "▁HAVING", + -15.043387413024902 + ], + [ + "▁Hennessey", + -15.043400764465332 + ], + [ + "▁varnished", + -15.043407440185547 + ], + [ + "▁Pula", + -15.043423652648926 + ], + [ + "Talking", + -15.04345417022705 + ], + [ + "sistent", + -15.04348373413086 + ], + [ + "▁EVERYWHERE", + -15.043514251708984 + ], + [ + "▁Sayers", + -15.0435209274292 + ], + [ + "▁Coincidence", + -15.043543815612793 + ], + [ + "▁schoolyard", + -15.043548583984375 + ], + [ + "ophilic", + -15.043584823608398 + ], + [ + "▁adornments", + -15.043625831604004 + ], + [ + "▁trigonometry", + -15.0436372756958 + ], + [ + "▁Aliyev", + -15.043642044067383 + ], + [ + "ravaged", + -15.04367733001709 + ], + [ + "Align", + -15.04369068145752 + ], + [ + "phine", + -15.043692588806152 + ], + [ + "▁briquette", + -15.043708801269531 + ], + [ + "▁Ichiro", + -15.04372787475586 + ], + [ + "▁Ulla", + -15.043739318847656 + ], + [ + "▁Vivien", + -15.043756484985352 + ], + [ + "Brazilian", + -15.043806076049805 + ], + [ + "▁invitational", + -15.0438232421875 + ], + [ + "▁lidocaine", + -15.043829917907715 + ], + [ + "▁Grindelwald", + -15.043832778930664 + ], + [ + "▁thankless", + -15.043834686279297 + ], + [ + "▁individualised", + -15.043878555297852 + ], + [ + "▁pune", + -15.043919563293457 + ], + [ + "▁lordship", + -15.043929100036621 + ], + [ + "▁universit", + -15.043937683105469 + ], + [ + "▁Siblings", + -15.043985366821289 + ], + [ + "▁Hayashi", + -15.044000625610352 + ], + [ + "ghetti", + -15.04408073425293 + ], + [ + "Integrated", + -15.044124603271484 + ], + [ + "▁drunkard", + -15.044126510620117 + ], + [ + "▁Mahara", + -15.04413890838623 + ], + [ + "negotiate", + -15.044151306152344 + ], + [ + "▁Appetizer", + -15.044153213500977 + ], + [ + "▁disenchanted", + -15.044153213500977 + ], + [ + "ujin", + -15.044177055358887 + ], + [ + "▁peeping", + -15.04421329498291 + ], + [ + "▁SABC", + -15.044232368469238 + ], + [ + "▁motorcycling", + -15.044234275817871 + ], + [ + "▁groundhog", + -15.044241905212402 + ], + [ + "eeeee", + -15.04427433013916 + ], + [ + "thaw", + -15.044281005859375 + ], + [ + "▁Chag", + -15.044296264648438 + ], + [ + "meditation", + -15.044305801391602 + ], + [ + "το", + -15.044306755065918 + ], + [ + "▁Mahjong", + -15.044312477111816 + ], + [ + "▁languished", + -15.044317245483398 + ], + [ + "λη", + -15.044329643249512 + ], + [ + "▁Psychopath", + -15.044329643249512 + ], + [ + "1882", + -15.04433822631836 + ], + [ + "▁fertilizing", + -15.04436206817627 + ], + [ + "▁1690", + -15.044371604919434 + ], + [ + "▁infirmary", + -15.044377326965332 + ], + [ + "▁deadlocked", + -15.044393539428711 + ], + [ + "Graduate", + -15.044422149658203 + ], + [ + "▁Shifter", + -15.044435501098633 + ], + [ + "ovac", + -15.044485092163086 + ], + [ + "▁Mitchel", + -15.044486999511719 + ], + [ + "baking", + -15.044500350952148 + ], + [ + "▁Qlik", + -15.044547080993652 + ], + [ + "Rated", + -15.044560432434082 + ], + [ + "congratulation", + -15.044594764709473 + ], + [ + "Disable", + -15.04460334777832 + ], + [ + "▁Valenti", + -15.044604301452637 + ], + [ + "▁Ahern", + -15.044608116149902 + ], + [ + "▁pasteurized", + -15.044612884521484 + ], + [ + "▁mossy", + -15.044621467590332 + ], + [ + "▁anarchic", + -15.044661521911621 + ], + [ + "▁Chaldean", + -15.04468822479248 + ], + [ + "uillard", + -15.044702529907227 + ], + [ + "において", + -15.044713973999023 + ], + [ + "▁FTL", + -15.04471492767334 + ], + [ + "▁Sevier", + -15.044715881347656 + ], + [ + "nsley", + -15.044723510742188 + ], + [ + "ñez", + -15.044730186462402 + ], + [ + "▁Kauf", + -15.044754028320312 + ], + [ + "▁minstrel", + -15.044754981994629 + ], + [ + "▁Haemo", + -15.044768333435059 + ], + [ + "▁Luffy", + -15.04477310180664 + ], + [ + "▁GBM", + -15.04479694366455 + ], + [ + "weary", + -15.044798851013184 + ], + [ + "▁Delusion", + -15.04480266571045 + ], + [ + "▁cluttering", + -15.044822692871094 + ], + [ + "▁Subban", + -15.044841766357422 + ], + [ + "STATE", + -15.044856071472168 + ], + [ + "▁wierd", + -15.044866561889648 + ], + [ + "ря", + -15.044872283935547 + ], + [ + "▁Kadri", + -15.044876098632812 + ], + [ + "Mist", + -15.044880867004395 + ], + [ + "▁Skylight", + -15.044889450073242 + ], + [ + "▁pentagon", + -15.044889450073242 + ], + [ + "部分", + -15.044917106628418 + ], + [ + "▁Eyebrow", + -15.044989585876465 + ], + [ + "▁Bowdoin", + -15.044992446899414 + ], + [ + "▁zippy", + -15.044994354248047 + ], + [ + "▁DHEA", + -15.045008659362793 + ], + [ + "▁NSFW", + -15.04501724243164 + ], + [ + "▁Amla", + -15.045029640197754 + ], + [ + "▁Cail", + -15.04503059387207 + ], + [ + "▁fabricators", + -15.045062065124512 + ], + [ + "icted", + -15.045063972473145 + ], + [ + "▁Fuente", + -15.045065879821777 + ], + [ + "▁overlaying", + -15.045092582702637 + ], + [ + "▁EBC", + -15.045143127441406 + ], + [ + "▁bloodbath", + -15.045147895812988 + ], + [ + "▁ascertaining", + -15.045149803161621 + ], + [ + "simulation", + -15.045209884643555 + ], + [ + "▁Ronson", + -15.045248031616211 + ], + [ + "koski", + -15.045255661010742 + ], + [ + "▁Giovan", + -15.045269012451172 + ], + [ + "▁OGG", + -15.045271873474121 + ], + [ + "▁parameterization", + -15.045272827148438 + ], + [ + "▁Bynum", + -15.045291900634766 + ], + [ + "▁Ansible", + -15.045292854309082 + ], + [ + "▁Parris", + -15.045293807983398 + ], + [ + "▁Catastrophe", + -15.045297622680664 + ], + [ + "▁Curcumin", + -15.045324325561523 + ], + [ + "▁Jungian", + -15.045350074768066 + ], + [ + "myer", + -15.045361518859863 + ], + [ + "▁Lucent", + -15.045365333557129 + ], + [ + "Heritage", + -15.045380592346191 + ], + [ + "▁Colling", + -15.045392036437988 + ], + [ + "▁Plume", + -15.045432090759277 + ], + [ + "Shabab", + -15.045459747314453 + ], + [ + "▁Stabilizer", + -15.045459747314453 + ], + [ + "▁trey", + -15.045495986938477 + ], + [ + "▁Cleanout", + -15.045519828796387 + ], + [ + "▁decry", + -15.045519828796387 + ], + [ + "▁INSTANT", + -15.045520782470703 + ], + [ + "▁Womb", + -15.045544624328613 + ], + [ + "GPL", + -15.045559883117676 + ], + [ + "wirtschaft", + -15.04556655883789 + ], + [ + "▁flatness", + -15.04558277130127 + ], + [ + "▁subtler", + -15.045585632324219 + ], + [ + "zzz", + -15.045588493347168 + ], + [ + "▁Proficient", + -15.045676231384277 + ], + [ + "▁defectors", + -15.045713424682617 + ], + [ + "▁Blankenship", + -15.04571533203125 + ], + [ + "▁Competitor", + -15.045732498168945 + ], + [ + "▁Cyclists", + -15.04578971862793 + ], + [ + "RAID", + -15.045825004577637 + ], + [ + "▁Riverhead", + -15.045831680297852 + ], + [ + "▁AAT", + -15.0458345413208 + ], + [ + "▁YJ", + -15.04590892791748 + ], + [ + "SIZE", + -15.045921325683594 + ], + [ + "NRA", + -15.045929908752441 + ], + [ + "▁radiocarbon", + -15.045941352844238 + ], + [ + "▁Giff", + -15.045949935913086 + ], + [ + "▁hyperthyroidism", + -15.045967102050781 + ], + [ + "▁zonal", + -15.045998573303223 + ], + [ + "▁Kiko", + -15.046041488647461 + ], + [ + "▁Boehm", + -15.046051979064941 + ], + [ + "▁Prabha", + -15.046133995056152 + ], + [ + "▁neuropsychological", + -15.04615592956543 + ], + [ + "▁linseed", + -15.04619026184082 + ], + [ + "▁revitalise", + -15.046216011047363 + ], + [ + "▁evocation", + -15.046220779418945 + ], + [ + "▁जा", + -15.04623031616211 + ], + [ + "▁pov", + -15.046247482299805 + ], + [ + "alsa", + -15.046273231506348 + ], + [ + "▁Europcar", + -15.046316146850586 + ], + [ + "neer", + -15.046367645263672 + ], + [ + "▁CHANNEL", + -15.046412467956543 + ], + [ + "▁Janna", + -15.04646110534668 + ], + [ + "▁dado", + -15.046479225158691 + ], + [ + "▁endothelium", + -15.046497344970703 + ], + [ + "▁Mogul", + -15.046501159667969 + ], + [ + "▁Portobello", + -15.046527862548828 + ], + [ + "▁Boosting", + -15.046544075012207 + ], + [ + "▁Goldfish", + -15.046544075012207 + ], + [ + "Blo", + -15.046557426452637 + ], + [ + "▁HMG", + -15.04659366607666 + ], + [ + "▁SolidWorks", + -15.046611785888672 + ], + [ + "▁JOBS", + -15.046658515930176 + ], + [ + "fortune", + -15.04666519165039 + ], + [ + "▁PeopleSoft", + -15.046677589416504 + ], + [ + "▁chomp", + -15.046707153320312 + ], + [ + "▁radicalized", + -15.046711921691895 + ], + [ + "▁Wyeth", + -15.04675579071045 + ], + [ + "▁obv", + -15.046785354614258 + ], + [ + "▁Magpie", + -15.046831130981445 + ], + [ + "▁patella", + -15.046847343444824 + ], + [ + "1883", + -15.04684829711914 + ], + [ + "▁Negan", + -15.04684829711914 + ], + [ + "▁LMC", + -15.046857833862305 + ], + [ + "▁Hallway", + -15.046932220458984 + ], + [ + "▁Energies", + -15.046942710876465 + ], + [ + "▁strangulation", + -15.046944618225098 + ], + [ + "▁Shiver", + -15.046987533569336 + ], + [ + "▁silken", + -15.04703140258789 + ], + [ + "▁CORNER", + -15.047050476074219 + ], + [ + "▁Edom", + -15.047067642211914 + ], + [ + "▁Ojai", + -15.047079086303711 + ], + [ + "▁quarks", + -15.047086715698242 + ], + [ + "▁chattel", + -15.047098159790039 + ], + [ + "▁LEAGUE", + -15.047101974487305 + ], + [ + "▁agglomeration", + -15.047154426574707 + ], + [ + "▁Jukebox", + -15.047159194946289 + ], + [ + "▁Slant", + -15.04719352722168 + ], + [ + "watches", + -15.047212600708008 + ], + [ + "▁BidaskClub", + -15.047224044799805 + ], + [ + "blonde", + -15.047246932983398 + ], + [ + "▁Farhan", + -15.047246932983398 + ], + [ + "▁krill", + -15.047246932983398 + ], + [ + "▁clichéd", + -15.047270774841309 + ], + [ + "▁Yiannopoulos", + -15.047280311584473 + ], + [ + "▁regimental", + -15.047293663024902 + ], + [ + "波", + -15.0472993850708 + ], + [ + "▁Gibbon", + -15.04731559753418 + ], + [ + "▁Possum", + -15.047334671020508 + ], + [ + "▁Rousseff", + -15.047335624694824 + ], + [ + "▁frighteningly", + -15.047431945800781 + ], + [ + "▁neutralise", + -15.047443389892578 + ], + [ + "▁Ontarians", + -15.047450065612793 + ], + [ + "▁Bicentennial", + -15.047479629516602 + ], + [ + "▁Contextual", + -15.047507286071777 + ], + [ + "▁FSS", + -15.047538757324219 + ], + [ + "▁Factories", + -15.047540664672852 + ], + [ + "▁Dalek", + -15.047551155090332 + ], + [ + "▁CIRC", + -15.047558784484863 + ], + [ + "▁Jordy", + -15.047574996948242 + ], + [ + "▁reincarnated", + -15.047587394714355 + ], + [ + "bono", + -15.047592163085938 + ], + [ + "▁Kapur", + -15.047600746154785 + ], + [ + "▁mismatches", + -15.047607421875 + ], + [ + "▁Cheong", + -15.047609329223633 + ], + [ + "▁Linkage", + -15.04766845703125 + ], + [ + "▁pipework", + -15.04766845703125 + ], + [ + "▁Marianna", + -15.04768180847168 + ], + [ + "▁Whistleblower", + -15.047699928283691 + ], + [ + "▁Vij", + -15.047783851623535 + ], + [ + "▁phosph", + -15.04779052734375 + ], + [ + "▁Saiyan", + -15.047833442687988 + ], + [ + "▁caesarean", + -15.047859191894531 + ], + [ + "▁Yuba", + -15.047868728637695 + ], + [ + "▁Storyline", + -15.047890663146973 + ], + [ + "▁poppers", + -15.047945022583008 + ], + [ + "ografi", + -15.047965049743652 + ], + [ + "▁Oromo", + -15.047986030578613 + ], + [ + "▁Rosedale", + -15.047995567321777 + ], + [ + "▁Sympathy", + -15.048025131225586 + ], + [ + "▁recheck", + -15.048030853271484 + ], + [ + "achar", + -15.04806137084961 + ], + [ + "▁Frustration", + -15.048107147216797 + ], + [ + "▁Chiffon", + -15.04811954498291 + ], + [ + "▁Chinn", + -15.04812240600586 + ], + [ + "seventh", + -15.048142433166504 + ], + [ + "▁washbasin", + -15.048142433166504 + ], + [ + "▁vlogger", + -15.048148155212402 + ], + [ + "▁Entered", + -15.048151969909668 + ], + [ + "▁Teleport", + -15.0481538772583 + ], + [ + "attach", + -15.048223495483398 + ], + [ + "▁HOF", + -15.048255920410156 + ], + [ + "▁tae", + -15.04826831817627 + ], + [ + "utant", + -15.048301696777344 + ], + [ + "▁Orme", + -15.048307418823242 + ], + [ + "Tron", + -15.04831600189209 + ], + [ + "▁dialling", + -15.048321723937988 + ], + [ + "▁vocabularies", + -15.048398971557617 + ], + [ + "Quinn", + -15.048420906066895 + ], + [ + "▁Avanti", + -15.048421859741211 + ], + [ + "▁Ziggler", + -15.048433303833008 + ], + [ + "Colonel", + -15.048455238342285 + ], + [ + "▁beaucoup", + -15.048456192016602 + ], + [ + "▁AVP", + -15.048501968383789 + ], + [ + "▁trialled", + -15.048532485961914 + ], + [ + "collapse", + -15.04855728149414 + ], + [ + "cise", + -15.04859447479248 + ], + [ + "ussin", + -15.048619270324707 + ], + [ + "acao", + -15.048620223999023 + ], + [ + "▁multiplexer", + -15.048644065856934 + ], + [ + "ăr", + -15.048649787902832 + ], + [ + "▁gentry", + -15.048650741577148 + ], + [ + "▁Stoughton", + -15.048662185668945 + ], + [ + "▁Terrestrial", + -15.048686027526855 + ], + [ + "лей", + -15.048698425292969 + ], + [ + "Yan", + -15.048722267150879 + ], + [ + "وت", + -15.0487642288208 + ], + [ + "stainless", + -15.04878044128418 + ], + [ + "▁SEMI", + -15.048781394958496 + ], + [ + "illette", + -15.048799514770508 + ], + [ + "▁Getresponse", + -15.04880428314209 + ], + [ + "handlung", + -15.048805236816406 + ], + [ + "zyk", + -15.048821449279785 + ], + [ + "▁Sepp", + -15.048842430114746 + ], + [ + "▁carryover", + -15.048921585083008 + ], + [ + "ADP", + -15.048927307128906 + ], + [ + "▁Solent", + -15.048929214477539 + ], + [ + "2180", + -15.04893684387207 + ], + [ + "Anon", + -15.048964500427246 + ], + [ + "▁Alexia", + -15.049023628234863 + ], + [ + "expletive", + -15.04903793334961 + ], + [ + "▁cham", + -15.049043655395508 + ], + [ + "▁carotene", + -15.049100875854492 + ], + [ + "▁Semp", + -15.049140930175781 + ], + [ + "āna", + -15.04916763305664 + ], + [ + "▁FSI", + -15.049189567565918 + ], + [ + "▁Oviedo", + -15.049198150634766 + ], + [ + "▁pizzazz", + -15.049214363098145 + ], + [ + "▁stably", + -15.049230575561523 + ], + [ + "AAPL", + -15.049300193786621 + ], + [ + "▁797", + -15.049304962158203 + ], + [ + "社", + -15.049309730529785 + ], + [ + "▁Paton", + -15.04931640625 + ], + [ + "▁Swart", + -15.049378395080566 + ], + [ + "▁Suha", + -15.049388885498047 + ], + [ + "▁Tackling", + -15.049391746520996 + ], + [ + "▁handicapping", + -15.049398422241211 + ], + [ + "▁blackcurrant", + -15.049505233764648 + ], + [ + "▁thereabouts", + -15.049510955810547 + ], + [ + "wasting", + -15.049543380737305 + ], + [ + "▁throb", + -15.04956340789795 + ], + [ + "▁conqueror", + -15.049565315246582 + ], + [ + "medullary", + -15.049572944641113 + ], + [ + "▁Ñ", + -15.049592971801758 + ], + [ + "▁watchlist", + -15.049631118774414 + ], + [ + "Handle", + -15.049633026123047 + ], + [ + "▁Hooker", + -15.04964828491211 + ], + [ + "▁grunting", + -15.04965591430664 + ], + [ + "▁BOI", + -15.049661636352539 + ], + [ + "▁audibly", + -15.049665451049805 + ], + [ + "▁Quaternary", + -15.049687385559082 + ], + [ + "▁connexion", + -15.049701690673828 + ], + [ + "▁conciliation", + -15.04973030090332 + ], + [ + "▁Spore", + -15.04979419708252 + ], + [ + "GOLD", + -15.049826622009277 + ], + [ + "laminate", + -15.049844741821289 + ], + [ + "為", + -15.049845695495605 + ], + [ + "institution", + -15.04987621307373 + ], + [ + "▁Oakdale", + -15.049957275390625 + ], + [ + "▁retold", + -15.049962997436523 + ], + [ + "▁partir", + -15.049969673156738 + ], + [ + "zyme", + -15.04999828338623 + ], + [ + "▁analyser", + -15.050033569335938 + ], + [ + "▁Enquire", + -15.05003833770752 + ], + [ + "hör", + -15.050042152404785 + ], + [ + "▁Seager", + -15.050073623657227 + ], + [ + "valence", + -15.050089836120605 + ], + [ + "▁OOC", + -15.050097465515137 + ], + [ + "▁WDW", + -15.0501070022583 + ], + [ + "▁Drugstore", + -15.05012035369873 + ], + [ + "▁CAKE", + -15.050127983093262 + ], + [ + "▁Schick", + -15.050142288208008 + ], + [ + "▁hyderabad", + -15.050149917602539 + ], + [ + "acey", + -15.05016040802002 + ], + [ + "▁Whisperer", + -15.050249099731445 + ], + [ + "summit", + -15.050278663635254 + ], + [ + "▁prostheses", + -15.050293922424316 + ], + [ + "▁Nihon", + -15.050332069396973 + ], + [ + "thology", + -15.050344467163086 + ], + [ + "▁Becerra", + -15.050390243530273 + ], + [ + "NDC", + -15.050415992736816 + ], + [ + "picker", + -15.05041790008545 + ], + [ + "▁Magick", + -15.05045223236084 + ], + [ + "cipro", + -15.05046272277832 + ], + [ + "▁FAX", + -15.050506591796875 + ], + [ + "▁bathhouse", + -15.050538063049316 + ], + [ + "▁Svet", + -15.050580978393555 + ], + [ + "FCO", + -15.050614356994629 + ], + [ + "▁MTT", + -15.050626754760742 + ], + [ + "Proverbs", + -15.050636291503906 + ], + [ + "▁DeMarcus", + -15.050643920898438 + ], + [ + "retti", + -15.050687789916992 + ], + [ + "▁Assembled", + -15.05069351196289 + ], + [ + "▁Distributing", + -15.050707817077637 + ], + [ + "▁chiming", + -15.050715446472168 + ], + [ + "▁reciprocated", + -15.050715446472168 + ], + [ + "hoek", + -15.050801277160645 + ], + [ + "▁Jara", + -15.050802230834961 + ], + [ + "▁Yank", + -15.05081844329834 + ], + [ + "▁Abkhazia", + -15.050823211669922 + ], + [ + "▁nought", + -15.050840377807617 + ], + [ + "▁serv", + -15.05085563659668 + ], + [ + "▁intercooler", + -15.050875663757324 + ], + [ + "eternal", + -15.050880432128906 + ], + [ + "▁Hemlock", + -15.050905227661133 + ], + [ + "WTF", + -15.050948143005371 + ], + [ + "▁Crumble", + -15.050993919372559 + ], + [ + "Thy", + -15.050994873046875 + ], + [ + "▁Maratha", + -15.051019668579102 + ], + [ + "▁interrogating", + -15.051019668579102 + ], + [ + "计", + -15.051037788391113 + ], + [ + "▁Archivist", + -15.051164627075195 + ], + [ + "▁Tragic", + -15.051175117492676 + ], + [ + "▁Uniquely", + -15.051183700561523 + ], + [ + "HES", + -15.051224708557129 + ], + [ + "▁Conduit", + -15.051262855529785 + ], + [ + "▁Etch", + -15.051263809204102 + ], + [ + "rticul", + -15.05126953125 + ], + [ + "▁Juma", + -15.051318168640137 + ], + [ + "vata", + -15.051349639892578 + ], + [ + "▁winking", + -15.051423072814941 + ], + [ + "▁Hernando", + -15.051435470581055 + ], + [ + "▁Tampere", + -15.05143928527832 + ], + [ + "itori", + -15.051454544067383 + ], + [ + "▁materia", + -15.051480293273926 + ], + [ + "▁distillers", + -15.051488876342773 + ], + [ + "▁Cynic", + -15.05148983001709 + ], + [ + "ideally", + -15.051506996154785 + ], + [ + "▁AMEX", + -15.051541328430176 + ], + [ + "colli", + -15.051593780517578 + ], + [ + "▁Bili", + -15.051613807678223 + ], + [ + "▁councilors", + -15.051618576049805 + ], + [ + "▁RIG", + -15.051631927490234 + ], + [ + "▁163866497093122", + -15.051637649536133 + ], + [ + "▁tempor", + -15.051717758178711 + ], + [ + "▁Strep", + -15.051718711853027 + ], + [ + "▁Docklands", + -15.051730155944824 + ], + [ + "jacking", + -15.05174446105957 + ], + [ + "ெ", + -15.051749229431152 + ], + [ + "▁Melanoma", + -15.051807403564453 + ], + [ + "penetr", + -15.051812171936035 + ], + [ + "▁Tsang", + -15.05186653137207 + ], + [ + "hula", + -15.051928520202637 + ], + [ + "▁salacious", + -15.051956176757812 + ], + [ + "▁SEPA", + -15.051972389221191 + ], + [ + "thala", + -15.05201244354248 + ], + [ + "Partners", + -15.052021980285645 + ], + [ + "Throughout", + -15.052042961120605 + ], + [ + "▁avenger", + -15.0520601272583 + ], + [ + "gluten", + -15.052071571350098 + ], + [ + "▁Caltrans", + -15.052145004272461 + ], + [ + "anovic", + -15.052151679992676 + ], + [ + "rnstein", + -15.05215835571289 + ], + [ + "▁smooch", + -15.052189826965332 + ], + [ + "бы", + -15.052190780639648 + ], + [ + "▁gusta", + -15.052191734313965 + ], + [ + "physio", + -15.052223205566406 + ], + [ + "▁microgrid", + -15.052237510681152 + ], + [ + "▁convective", + -15.052242279052734 + ], + [ + "▁생", + -15.05224895477295 + ], + [ + "▁Xenia", + -15.052260398864746 + ], + [ + "▁Helton", + -15.052262306213379 + ], + [ + "▁maximally", + -15.052262306213379 + ], + [ + "▁Huggins", + -15.052276611328125 + ], + [ + "▁Industri", + -15.052356719970703 + ], + [ + "▁Multiplex", + -15.052390098571777 + ], + [ + "▁Censorship", + -15.052392959594727 + ], + [ + "▁Doberman", + -15.052475929260254 + ], + [ + "UNO", + -15.05247688293457 + ], + [ + "▁epicentre", + -15.052494049072266 + ], + [ + "SDF", + -15.052508354187012 + ], + [ + "▁Borde", + -15.05251407623291 + ], + [ + "▁locum", + -15.052518844604492 + ], + [ + "▁Karu", + -15.052547454833984 + ], + [ + "▁gloat", + -15.052550315856934 + ], + [ + "▁Gadd", + -15.052558898925781 + ], + [ + "▁Rhiannon", + -15.052558898925781 + ], + [ + "▁rebelling", + -15.052572250366211 + ], + [ + "▁Hayne", + -15.052577018737793 + ], + [ + "▁disproportion", + -15.052581787109375 + ], + [ + "▁Linkin", + -15.052583694458008 + ], + [ + "▁Veen", + -15.052593231201172 + ], + [ + "calibration", + -15.052597045898438 + ], + [ + "▁Kumbh", + -15.052642822265625 + ], + [ + "▁Wilfrid", + -15.052653312683105 + ], + [ + "▁XXIII", + -15.052687644958496 + ], + [ + "▁Palomar", + -15.05270004272461 + ], + [ + "क्", + -15.052712440490723 + ], + [ + "▁ethereum", + -15.052727699279785 + ], + [ + "Shawn", + -15.052729606628418 + ], + [ + "▁DPC", + -15.052750587463379 + ], + [ + "keto", + -15.052756309509277 + ], + [ + "▁Imaginary", + -15.052772521972656 + ], + [ + "▁EDP", + -15.052800178527832 + ], + [ + "▁gouache", + -15.052803993225098 + ], + [ + "ksh", + -15.05280590057373 + ], + [ + "▁conservationist", + -15.052812576293945 + ], + [ + "▁Rachelle", + -15.052816390991211 + ], + [ + "bool", + -15.052882194519043 + ], + [ + "▁reappearance", + -15.052888870239258 + ], + [ + "▁Roofer", + -15.052921295166016 + ], + [ + "▁rhythmically", + -15.05293083190918 + ], + [ + "▁Berhad", + -15.052934646606445 + ], + [ + "▁Bargaining", + -15.052948951721191 + ], + [ + "▁Profiling", + -15.052970886230469 + ], + [ + "▁Saman", + -15.053000450134277 + ], + [ + "▁domineering", + -15.053014755249023 + ], + [ + "▁Deportivo", + -15.05302906036377 + ], + [ + "▁FOOTBALL", + -15.053043365478516 + ], + [ + "▁Baumann", + -15.053074836730957 + ], + [ + "limitation", + -15.053085327148438 + ], + [ + "▁Postman", + -15.053089141845703 + ], + [ + "▁overdosed", + -15.053114891052246 + ], + [ + "▁Gann", + -15.053150177001953 + ], + [ + "▁Paramedic", + -15.0531587600708 + ], + [ + "▁anonymized", + -15.053169250488281 + ], + [ + "EGO", + -15.053187370300293 + ], + [ + "oblastoma", + -15.053187370300293 + ], + [ + "▁Tangled", + -15.053193092346191 + ], + [ + "▁calgary", + -15.053197860717773 + ], + [ + "▁itchiness", + -15.053226470947266 + ], + [ + "ninja", + -15.053235054016113 + ], + [ + "▁UART", + -15.053236961364746 + ], + [ + "▁REB", + -15.053284645080566 + ], + [ + "PEP", + -15.053306579589844 + ], + [ + "flix", + -15.053319931030273 + ], + [ + "▁obviate", + -15.053325653076172 + ], + [ + "▁hydrangeas", + -15.053332328796387 + ], + [ + "▁deodorize", + -15.05333423614502 + ], + [ + "▁ASSUME", + -15.053339004516602 + ], + [ + "▁antichrist", + -15.05334758758545 + ], + [ + "▁Substrate", + -15.053349494934082 + ], + [ + "ическая", + -15.05346393585205 + ], + [ + "▁Cafeteria", + -15.053468704223633 + ], + [ + "▁Cephal", + -15.053475379943848 + ], + [ + "▁Curio", + -15.053489685058594 + ], + [ + "▁HEAL", + -15.053492546081543 + ], + [ + "ilien", + -15.053507804870605 + ], + [ + "aiah", + -15.053508758544922 + ], + [ + "個", + -15.053535461425781 + ], + [ + "indicated", + -15.053549766540527 + ], + [ + "방", + -15.053559303283691 + ], + [ + "Respect", + -15.053585052490234 + ], + [ + "ASIC", + -15.05359935760498 + ], + [ + "▁unhook", + -15.053603172302246 + ], + [ + "▁Kartik", + -15.053637504577637 + ], + [ + "ANGLE", + -15.053671836853027 + ], + [ + "▁stickiness", + -15.053671836853027 + ], + [ + "▁reattach", + -15.053707122802734 + ], + [ + "Rising", + -15.05372142791748 + ], + [ + "▁Brasilia", + -15.053722381591797 + ], + [ + "▁Woodcock", + -15.053754806518555 + ], + [ + "▁photocopier", + -15.0537748336792 + ], + [ + "▁Darshan", + -15.053796768188477 + ], + [ + "▁DRUG", + -15.053800582885742 + ], + [ + "juna", + -15.053801536560059 + ], + [ + "▁Dyslexia", + -15.053831100463867 + ], + [ + "▁hustled", + -15.05386734008789 + ], + [ + "▁Collette", + -15.053882598876953 + ], + [ + "īn", + -15.053894996643066 + ], + [ + "Applied", + -15.053923606872559 + ], + [ + "Twilight", + -15.053924560546875 + ], + [ + "udder", + -15.053960800170898 + ], + [ + "▁strategizing", + -15.053983688354492 + ], + [ + "▁MAM", + -15.054004669189453 + ], + [ + "▁GUARANTEED", + -15.054020881652832 + ], + [ + "▁Chilling", + -15.054040908813477 + ], + [ + "▁baddies", + -15.054054260253906 + ], + [ + "FAM", + -15.054069519042969 + ], + [ + "▁MailOnline", + -15.05409049987793 + ], + [ + "▁repairman", + -15.05411148071289 + ], + [ + "jsp", + -15.054118156433105 + ], + [ + "▁soundbar", + -15.054128646850586 + ], + [ + "LEG", + -15.05413818359375 + ], + [ + "▁Ruhr", + -15.054150581359863 + ], + [ + "▁Wilf", + -15.054158210754395 + ], + [ + "halb", + -15.054166793823242 + ], + [ + "▁INCREASE", + -15.054210662841797 + ], + [ + "▁barangay", + -15.054266929626465 + ], + [ + "▁DIMM", + -15.054268836975098 + ], + [ + "urek", + -15.054276466369629 + ], + [ + "▁upcycled", + -15.054298400878906 + ], + [ + "spider", + -15.054301261901855 + ], + [ + "▁1818014", + -15.05431079864502 + ], + [ + "▁이용", + -15.054369926452637 + ], + [ + "▁femini", + -15.054380416870117 + ], + [ + "▁scurried", + -15.054393768310547 + ], + [ + "▁parsnips", + -15.05440902709961 + ], + [ + "▁vocab", + -15.054447174072266 + ], + [ + "▁debited", + -15.054449081420898 + ], + [ + "▁Trane", + -15.054536819458008 + ], + [ + "▁scabbard", + -15.05457878112793 + ], + [ + "▁Augment", + -15.054636001586914 + ], + [ + "▁hashed", + -15.054651260375977 + ], + [ + "▁unzipped", + -15.054656028747559 + ], + [ + "▁Rugg", + -15.054668426513672 + ], + [ + "poetry", + -15.054686546325684 + ], + [ + "▁impolite", + -15.054702758789062 + ], + [ + "▁thx", + -15.054736137390137 + ], + [ + "▁Wipro", + -15.054754257202148 + ], + [ + "반", + -15.054755210876465 + ], + [ + "leau", + -15.054786682128906 + ], + [ + "significance", + -15.054797172546387 + ], + [ + "▁Threaded", + -15.054845809936523 + ], + [ + "▁Rackspace", + -15.054850578308105 + ], + [ + "▁AGENT", + -15.054851531982422 + ], + [ + "▁Shocked", + -15.05485725402832 + ], + [ + "▁Ancestral", + -15.054872512817383 + ], + [ + "▁meatless", + -15.054883003234863 + ], + [ + "▁Sonder", + -15.054957389831543 + ], + [ + "contextual", + -15.054977416992188 + ], + [ + "▁CBF", + -15.054986953735352 + ], + [ + "oub", + -15.05500316619873 + ], + [ + "niki", + -15.055038452148438 + ], + [ + "raft", + -15.05504035949707 + ], + [ + "▁Lox", + -15.055057525634766 + ], + [ + "milie", + -15.055109024047852 + ], + [ + "▁HOSPITAL", + -15.0551118850708 + ], + [ + "▁alderman", + -15.055124282836914 + ], + [ + "correlation", + -15.055131912231445 + ], + [ + "FAN", + -15.05513858795166 + ], + [ + "▁dumbass", + -15.055166244506836 + ], + [ + "▁Commemorative", + -15.055168151855469 + ], + [ + "Atlas", + -15.055171012878418 + ], + [ + "▁McLellan", + -15.055198669433594 + ], + [ + "▁passphrase", + -15.055231094360352 + ], + [ + "▁hesitantly", + -15.055248260498047 + ], + [ + "▁enquiring", + -15.055259704589844 + ], + [ + "▁oxygenated", + -15.05526065826416 + ], + [ + "▁Multiplier", + -15.055280685424805 + ], + [ + "bration", + -15.05532169342041 + ], + [ + "▁apportionment", + -15.055322647094727 + ], + [ + "▁HCS", + -15.055365562438965 + ], + [ + "vou", + -15.055389404296875 + ], + [ + "▁shoring", + -15.055408477783203 + ], + [ + "▁Alessi", + -15.055411338806152 + ], + [ + "▁Effie", + -15.055425643920898 + ], + [ + "▁LANGUAGE", + -15.055436134338379 + ], + [ + "▁Scribner", + -15.055441856384277 + ], + [ + "▁Valero", + -15.05545425415039 + ], + [ + "lessons", + -15.055463790893555 + ], + [ + "▁Lomax", + -15.055492401123047 + ], + [ + "▁Chewy", + -15.055495262145996 + ], + [ + "▁ч", + -15.055500030517578 + ], + [ + "▁Toku", + -15.055501937866211 + ], + [ + "▁Caliente", + -15.055512428283691 + ], + [ + "▁Janeway", + -15.055546760559082 + ], + [ + "▁seashells", + -15.055546760559082 + ], + [ + "▁Familiarity", + -15.055591583251953 + ], + [ + "▁Hendersonville", + -15.055591583251953 + ], + [ + "▁intentionality", + -15.05561637878418 + ], + [ + "▁Topology", + -15.055648803710938 + ], + [ + "▁Telco", + -15.05566692352295 + ], + [ + "▁Jessa", + -15.055685043334961 + ], + [ + "ики", + -15.055706977844238 + ], + [ + "▁PPF", + -15.055721282958984 + ], + [ + "▁hypnotized", + -15.055739402770996 + ], + [ + "▁spellbound", + -15.055750846862793 + ], + [ + "▁CONCLUSIONS", + -15.055758476257324 + ], + [ + "▁Photovoltaic", + -15.055774688720703 + ], + [ + "▁Amador", + -15.05578899383545 + ], + [ + "ghz", + -15.055798530578613 + ], + [ + "▁Eugenia", + -15.055838584899902 + ], + [ + "▁REQUIRE", + -15.055850982666016 + ], + [ + "▁counterintelligence", + -15.055877685546875 + ], + [ + "▁Quantification", + -15.055937767028809 + ], + [ + "容", + -15.055957794189453 + ], + [ + "▁LOA", + -15.055964469909668 + ], + [ + "phane", + -15.055965423583984 + ], + [ + "▁Hamble", + -15.055970191955566 + ], + [ + "adien", + -15.055971145629883 + ], + [ + "▁furtive", + -15.05599594116211 + ], + [ + "▁legitim", + -15.056004524230957 + ], + [ + "▁Kuhl", + -15.056056022644043 + ], + [ + "▁MOTION", + -15.056058883666992 + ], + [ + "▁oleh", + -15.056127548217773 + ], + [ + "▁conserva", + -15.05615520477295 + ], + [ + "▁Savile", + -15.056180000305176 + ], + [ + "▁Bodhisattva", + -15.056211471557617 + ], + [ + "▁743", + -15.056220054626465 + ], + [ + "▁Teck", + -15.056230545043945 + ], + [ + "▁tonality", + -15.056244850158691 + ], + [ + "Fay", + -15.05633544921875 + ], + [ + "Amour", + -15.056340217590332 + ], + [ + "waz", + -15.056347846984863 + ], + [ + "rapa", + -15.056385040283203 + ], + [ + "▁Earp", + -15.056389808654785 + ], + [ + "▁Sabbat", + -15.056408882141113 + ], + [ + "▁Sadness", + -15.05643367767334 + ], + [ + "▁scuttled", + -15.056455612182617 + ], + [ + "▁Stormtrooper", + -15.056487083435059 + ], + [ + "▁bk", + -15.05651569366455 + ], + [ + "iveness", + -15.056529998779297 + ], + [ + "▁Hatteras", + -15.056532859802246 + ], + [ + "▁fluoridation", + -15.056649208068848 + ], + [ + "enrollment", + -15.056659698486328 + ], + [ + "▁riboflavin", + -15.056663513183594 + ], + [ + "▁PWA", + -15.056670188903809 + ], + [ + "ней", + -15.0567045211792 + ], + [ + "partnership", + -15.056719779968262 + ], + [ + "▁£39", + -15.056756019592285 + ], + [ + "SIX", + -15.056805610656738 + ], + [ + "▁Eyeshadow", + -15.056841850280762 + ], + [ + "▁Voigt", + -15.056856155395508 + ], + [ + "▁hud", + -15.056857109069824 + ], + [ + "▁extramarital", + -15.056867599487305 + ], + [ + "▁Brightness", + -15.056876182556152 + ], + [ + "▁symbolises", + -15.056877136230469 + ], + [ + "▁Korg", + -15.056904792785645 + ], + [ + "▁figment", + -15.056923866271973 + ], + [ + "▁nama", + -15.05693244934082 + ], + [ + "▁lemma", + -15.05693531036377 + ], + [ + "▁Rajkot", + -15.056938171386719 + ], + [ + "▁Infotech", + -15.056950569152832 + ], + [ + "rière", + -15.056981086730957 + ], + [ + "▁Mandeville", + -15.056987762451172 + ], + [ + "▁mache", + -15.056988716125488 + ], + [ + "▁Kamu", + -15.057013511657715 + ], + [ + "▁raga", + -15.057022094726562 + ], + [ + "▁sniping", + -15.057065963745117 + ], + [ + "MCO", + -15.0570707321167 + ], + [ + "▁Phenoxyethanol", + -15.05712890625 + ], + [ + "▁switchbacks", + -15.057167053222656 + ], + [ + "▁Lundqvist", + -15.05717658996582 + ], + [ + "▁Woburn", + -15.057188987731934 + ], + [ + "▁Hallie", + -15.057195663452148 + ], + [ + "▁ulceration", + -15.057201385498047 + ], + [ + "▁DPO", + -15.057204246520996 + ], + [ + "▁Slimming", + -15.057215690612793 + ], + [ + "▁WEEKS", + -15.057252883911133 + ], + [ + "▁TOMORROW", + -15.057255744934082 + ], + [ + "▁Illawarra", + -15.057284355163574 + ], + [ + "▁Arranging", + -15.057299613952637 + ], + [ + "▁Backblaze", + -15.057331085205078 + ], + [ + "▁stoplight", + -15.057340621948242 + ], + [ + "▁lulled", + -15.057353973388672 + ], + [ + "Ease", + -15.057371139526367 + ], + [ + "▁archeology", + -15.057425498962402 + ], + [ + "Vue", + -15.057441711425781 + ], + [ + "Activ", + -15.05744743347168 + ], + [ + "▁Motu", + -15.057466506958008 + ], + [ + "▁Spann", + -15.057552337646484 + ], + [ + "▁Bhawan", + -15.057581901550293 + ], + [ + "▁locusts", + -15.057599067687988 + ], + [ + "▁Edina", + -15.05763053894043 + ], + [ + "▁plaintive", + -15.057659149169922 + ], + [ + "起", + -15.057665824890137 + ], + [ + "Warm", + -15.057711601257324 + ], + [ + "▁Grouse", + -15.057723999023438 + ], + [ + "▁joist", + -15.057731628417969 + ], + [ + "▁EastEnders", + -15.05773639678955 + ], + [ + "▁xanth", + -15.05776596069336 + ], + [ + "▁mohair", + -15.057771682739258 + ], + [ + "▁Zev", + -15.05777359008789 + ], + [ + "▁industrialisation", + -15.057807922363281 + ], + [ + "▁Baillie", + -15.057815551757812 + ], + [ + "▁Herbalife", + -15.05782413482666 + ], + [ + "Turner", + -15.057831764221191 + ], + [ + "BMC", + -15.057838439941406 + ], + [ + "▁bach", + -15.057886123657227 + ], + [ + "▁Lumix", + -15.057927131652832 + ], + [ + "▁LAP", + -15.057934761047363 + ], + [ + "▁Belonging", + -15.057950973510742 + ], + [ + "righteousness", + -15.05795669555664 + ], + [ + "त्", + -15.057981491088867 + ], + [ + "▁Elbe", + -15.05802059173584 + ], + [ + "▁Kleenex", + -15.05802059173584 + ], + [ + "▁Nagano", + -15.058034896850586 + ], + [ + "▁Nido", + -15.058046340942383 + ], + [ + "elah", + -15.058088302612305 + ], + [ + "Creator", + -15.058109283447266 + ], + [ + "▁Hé", + -15.058141708374023 + ], + [ + "▁Unsecured", + -15.058148384094238 + ], + [ + "▁Lurie", + -15.058171272277832 + ], + [ + "▁Fogel", + -15.058189392089844 + ], + [ + "HMS", + -15.058192253112793 + ], + [ + "▁rasa", + -15.058202743530273 + ], + [ + "▁fingered", + -15.058215141296387 + ], + [ + "▁Bantu", + -15.058235168457031 + ], + [ + "trapped", + -15.058284759521484 + ], + [ + "▁archi", + -15.058297157287598 + ], + [ + "ರ", + -15.058300971984863 + ], + [ + "▁grump", + -15.058311462402344 + ], + [ + "▁Sangeet", + -15.058320999145508 + ], + [ + "▁Kerberos", + -15.058335304260254 + ], + [ + "▁quod", + -15.058356285095215 + ], + [ + "▁longue", + -15.058403968811035 + ], + [ + "▁Ameritrade", + -15.058417320251465 + ], + [ + "▁Marcella", + -15.058440208435059 + ], + [ + "tomorrow", + -15.058466911315918 + ], + [ + "▁molest", + -15.058475494384766 + ], + [ + "▁Comodo", + -15.058477401733398 + ], + [ + "sadly", + -15.058480262756348 + ], + [ + "winding", + -15.05848217010498 + ], + [ + "▁Proceeding", + -15.05848503112793 + ], + [ + "▁Jalal", + -15.05852222442627 + ], + [ + "allergic", + -15.058540344238281 + ], + [ + "absorb", + -15.058584213256836 + ], + [ + "▁FAKE", + -15.058616638183594 + ], + [ + "▁Makkah", + -15.05862045288086 + ], + [ + "▁GALLERY", + -15.058627128601074 + ], + [ + "0000000", + -15.058638572692871 + ], + [ + "liu", + -15.058713912963867 + ], + [ + "disrupt", + -15.058754920959473 + ], + [ + "measurement", + -15.058772087097168 + ], + [ + "▁Nicolaus", + -15.058807373046875 + ], + [ + "▁terabytes", + -15.058837890625 + ], + [ + "▁impressionist", + -15.058883666992188 + ], + [ + "▁Caplan", + -15.058894157409668 + ], + [ + "▁AVS", + -15.058897018432617 + ], + [ + "▁declara", + -15.058897972106934 + ], + [ + "localization", + -15.058982849121094 + ], + [ + "▁Technica", + -15.059001922607422 + ], + [ + "▁Krypton", + -15.0590181350708 + ], + [ + "Criminal", + -15.059020042419434 + ], + [ + "▁helpAdChoicesPublishersSocial", + -15.059039115905762 + ], + [ + "urium", + -15.059053421020508 + ], + [ + "Comic", + -15.05912971496582 + ], + [ + "▁extern", + -15.05913257598877 + ], + [ + "▁osprey", + -15.059137344360352 + ], + [ + "Depth", + -15.059163093566895 + ], + [ + "▁SPEAKER", + -15.05919075012207 + ], + [ + "fib", + -15.059212684631348 + ], + [ + "OJO", + -15.059223175048828 + ], + [ + "Oklahoma", + -15.059231758117676 + ], + [ + "▁GIVEN", + -15.059239387512207 + ], + [ + "▁vibra", + -15.059247016906738 + ], + [ + "reporter", + -15.059255599975586 + ], + [ + "▁escarpment", + -15.059263229370117 + ], + [ + "Gateway", + -15.059279441833496 + ], + [ + "▁BCD", + -15.059286117553711 + ], + [ + "▁Marawi", + -15.059309005737305 + ], + [ + "▁unplayable", + -15.059333801269531 + ], + [ + "▁alkalinity", + -15.05933666229248 + ], + [ + "RDF", + -15.059356689453125 + ], + [ + "UCC", + -15.059366226196289 + ], + [ + "awah", + -15.05940055847168 + ], + [ + "▁Muammar", + -15.059404373168945 + ], + [ + "▁HZ", + -15.059412002563477 + ], + [ + "▁gib", + -15.059432029724121 + ], + [ + "▁Limassol", + -15.059489250183105 + ], + [ + "▁HUG", + -15.059502601623535 + ], + [ + "▁blanch", + -15.059520721435547 + ], + [ + "▁jackal", + -15.059527397155762 + ], + [ + "现", + -15.059591293334961 + ], + [ + "deferred", + -15.059600830078125 + ], + [ + "▁redshift", + -15.059602737426758 + ], + [ + "▁Hollen", + -15.059637069702148 + ], + [ + "Rapid", + -15.059646606445312 + ], + [ + "▁1818005", + -15.05966567993164 + ], + [ + "▁Sanya", + -15.05967903137207 + ], + [ + "HPC", + -15.05968189239502 + ], + [ + "▁bandleader", + -15.059682846069336 + ], + [ + "MOV", + -15.059706687927246 + ], + [ + "▁segmental", + -15.05975341796875 + ], + [ + "humid", + -15.059759140014648 + ], + [ + "▁Dumbo", + -15.059816360473633 + ], + [ + "OTHER", + -15.059823036193848 + ], + [ + "piti", + -15.059839248657227 + ], + [ + "▁shah", + -15.059850692749023 + ], + [ + "▁CAREER", + -15.059856414794922 + ], + [ + "▁Aldrin", + -15.059861183166504 + ], + [ + "▁conned", + -15.059870719909668 + ], + [ + "rista", + -15.0598726272583 + ], + [ + "▁CRD", + -15.059883117675781 + ], + [ + "▁granule", + -15.059906005859375 + ], + [ + "▁arthro", + -15.059982299804688 + ], + [ + "▁axillary", + -15.060002326965332 + ], + [ + "▁elastomeric", + -15.06000804901123 + ], + [ + "exx", + -15.060032844543457 + ], + [ + "▁Enum", + -15.060053825378418 + ], + [ + "▁Aspergillus", + -15.06005573272705 + ], + [ + "▁egypt", + -15.060060501098633 + ], + [ + "offline", + -15.060067176818848 + ], + [ + "▁mitsubishi", + -15.060070037841797 + ], + [ + "▁nonwoven", + -15.06007194519043 + ], + [ + "▁unimpeded", + -15.060112953186035 + ], + [ + "▁biblically", + -15.060114860534668 + ], + [ + "▁TRAC", + -15.060139656066895 + ], + [ + "▁clench", + -15.060153007507324 + ], + [ + "▁☆", + -15.060155868530273 + ], + [ + "▁Naim", + -15.060175895690918 + ], + [ + "Vincent", + -15.06020736694336 + ], + [ + "▁Sini", + -15.060229301452637 + ], + [ + "▁MCAT", + -15.060256004333496 + ], + [ + "uaries", + -15.060282707214355 + ], + [ + "▁hepatocytes", + -15.060298919677734 + ], + [ + "▁continua", + -15.060303688049316 + ], + [ + "▁holdover", + -15.060311317443848 + ], + [ + "▁NIOSH", + -15.060314178466797 + ], + [ + "▁Beehive", + -15.060334205627441 + ], + [ + "▁coda", + -15.060341835021973 + ], + [ + "▁MPR", + -15.060355186462402 + ], + [ + "▁Entertain", + -15.060404777526855 + ], + [ + "Cali", + -15.060582160949707 + ], + [ + "▁ecto", + -15.060585021972656 + ], + [ + "▁kil", + -15.060593605041504 + ], + [ + "chaired", + -15.060673713684082 + ], + [ + "▁Nuys", + -15.060681343078613 + ], + [ + "Obamacare", + -15.060741424560547 + ], + [ + "▁shrieked", + -15.060752868652344 + ], + [ + "▁Alissa", + -15.06076431274414 + ], + [ + "▁pinwheel", + -15.060770034790039 + ], + [ + "▁disentangle", + -15.060778617858887 + ], + [ + "▁amitriptyline", + -15.060863494873047 + ], + [ + "▁Arthro", + -15.060882568359375 + ], + [ + "ISTER", + -15.060896873474121 + ], + [ + "nicki", + -15.060905456542969 + ], + [ + "▁crowdsourced", + -15.060998916625977 + ], + [ + "▁KEL", + -15.061022758483887 + ], + [ + "▁Novomatic", + -15.061040878295898 + ], + [ + "▁AWOL", + -15.06106948852539 + ], + [ + "▁refactor", + -15.061153411865234 + ], + [ + "▁monet", + -15.061182975769043 + ], + [ + "▁brooklyn", + -15.06125545501709 + ], + [ + "▁unmanaged", + -15.061272621154785 + ], + [ + "▁jihadis", + -15.06130313873291 + ], + [ + "▁Plasti", + -15.061309814453125 + ], + [ + "▁Oscillator", + -15.061345100402832 + ], + [ + "▁Citron", + -15.06143569946289 + ], + [ + "strophe", + -15.061441421508789 + ], + [ + "▁imprinting", + -15.061441421508789 + ], + [ + "▁Jemima", + -15.061455726623535 + ], + [ + "▁Athabasca", + -15.061458587646484 + ], + [ + "▁Assure", + -15.0614595413208 + ], + [ + "▁labia", + -15.061467170715332 + ], + [ + "▁transdermal", + -15.061495780944824 + ], + [ + "▁854", + -15.061516761779785 + ], + [ + "▁STEVEN", + -15.061516761779785 + ], + [ + "FRE", + -15.061563491821289 + ], + [ + "▁Havasu", + -15.061626434326172 + ], + [ + "▁NORMAL", + -15.061652183532715 + ], + [ + "▁Backstreet", + -15.06168270111084 + ], + [ + "▁disburse", + -15.06169605255127 + ], + [ + "▁Disappointed", + -15.061711311340332 + ], + [ + "▁Passaic", + -15.061726570129395 + ], + [ + "salam", + -15.06173038482666 + ], + [ + "▁antipathy", + -15.061752319335938 + ], + [ + "▁Niantic", + -15.061766624450684 + ], + [ + "▁scrip", + -15.06177806854248 + ], + [ + "▁juggler", + -15.061781883239746 + ], + [ + "▁Meteorologist", + -15.061800003051758 + ], + [ + "▁SCU", + -15.061808586120605 + ], + [ + "▁ELT", + -15.061893463134766 + ], + [ + "▁Behar", + -15.061898231506348 + ], + [ + "▁irresistibly", + -15.061941146850586 + ], + [ + "▁Uxbridge", + -15.061970710754395 + ], + [ + "▁LNP", + -15.061989784240723 + ], + [ + "▁Continuously", + -15.061990737915039 + ], + [ + "▁upturned", + -15.061996459960938 + ], + [ + "▁Murderer", + -15.06205940246582 + ], + [ + "dá", + -15.062076568603516 + ], + [ + "ROV", + -15.062087059020996 + ], + [ + "OOOOO", + -15.062116622924805 + ], + [ + "ERIC", + -15.062185287475586 + ], + [ + "compiled", + -15.062190055847168 + ], + [ + "grandparents", + -15.0621919631958 + ], + [ + "▁clack", + -15.062214851379395 + ], + [ + "実", + -15.062219619750977 + ], + [ + "▁CIG", + -15.062233924865723 + ], + [ + "▁empanada", + -15.062239646911621 + ], + [ + "▁gouging", + -15.062284469604492 + ], + [ + "▁Sero", + -15.062374114990234 + ], + [ + "▁streetlights", + -15.062385559082031 + ], + [ + "▁FDC", + -15.06240463256836 + ], + [ + "▁Keratin", + -15.062407493591309 + ], + [ + "▁bday", + -15.06241226196289 + ], + [ + "▁Vicious", + -15.062440872192383 + ], + [ + "▁petulant", + -15.062459945678711 + ], + [ + "Bronze", + -15.062491416931152 + ], + [ + "naissance", + -15.06249713897705 + ], + [ + "▁Clearinghouse", + -15.062505722045898 + ], + [ + "▁deferment", + -15.06252384185791 + ], + [ + "▁typographic", + -15.062602043151855 + ], + [ + "▁staycation", + -15.062737464904785 + ], + [ + "▁elope", + -15.062747955322266 + ], + [ + "▁Springtime", + -15.062749862670898 + ], + [ + "ansk", + -15.062835693359375 + ], + [ + "LCC", + -15.062845230102539 + ], + [ + "▁Об", + -15.062865257263184 + ], + [ + "ilty", + -15.062867164611816 + ], + [ + "▁Muzaffar", + -15.062877655029297 + ], + [ + "lesson", + -15.062917709350586 + ], + [ + "ugan", + -15.062925338745117 + ], + [ + "▁awardees", + -15.06292724609375 + ], + [ + "Ability", + -15.062943458557129 + ], + [ + "▁contortion", + -15.06296157836914 + ], + [ + "loth", + -15.06299877166748 + ], + [ + "oller", + -15.0630464553833 + ], + [ + "▁largemouth", + -15.06307315826416 + ], + [ + "▁whither", + -15.063136100769043 + ], + [ + "▁Indexing", + -15.06318473815918 + ], + [ + "▁sexting", + -15.06318473815918 + ], + [ + "▁Kimmy", + -15.063200950622559 + ], + [ + "blessed", + -15.063202857971191 + ], + [ + "▁wol", + -15.063210487365723 + ], + [ + "▁Calibre", + -15.063224792480469 + ], + [ + "chiev", + -15.063226699829102 + ], + [ + "▁Supporter", + -15.063234329223633 + ], + [ + "eeeeee", + -15.063258171081543 + ], + [ + "▁Chatting", + -15.06326961517334 + ], + [ + "▁RESPONSE", + -15.063289642333984 + ], + [ + "drew", + -15.063302993774414 + ], + [ + "▁Episcopalian", + -15.063310623168945 + ], + [ + "Reed", + -15.063355445861816 + ], + [ + "▁RUNNING", + -15.063364028930664 + ], + [ + "ется", + -15.063380241394043 + ], + [ + "donald", + -15.063429832458496 + ], + [ + "undy", + -15.063438415527344 + ], + [ + "▁Estrogen", + -15.063462257385254 + ], + [ + "▁fluor", + -15.063512802124023 + ], + [ + "▁Nikhil", + -15.06351375579834 + ], + [ + "kler", + -15.063520431518555 + ], + [ + "▁Loudon", + -15.06352710723877 + ], + [ + "▁Hanif", + -15.06353759765625 + ], + [ + "ète", + -15.063599586486816 + ], + [ + "▁Pythagorean", + -15.063616752624512 + ], + [ + "▁1818042", + -15.06363296508789 + ], + [ + "▁Herbst", + -15.063647270202637 + ], + [ + "▁Bluehost", + -15.063666343688965 + ], + [ + "winder", + -15.06369400024414 + ], + [ + "▁osteoblast", + -15.063709259033203 + ], + [ + "جم", + -15.063729286193848 + ], + [ + "▁Felice", + -15.063806533813477 + ], + [ + "MINE", + -15.063825607299805 + ], + [ + "elaar", + -15.06382942199707 + ], + [ + "▁landmines", + -15.063867568969727 + ], + [ + "▁MTP", + -15.063872337341309 + ], + [ + "etsch", + -15.063899040222168 + ], + [ + "▁Schoolhouse", + -15.063962936401367 + ], + [ + "sneak", + -15.063963890075684 + ], + [ + "▁silkscreen", + -15.063972473144531 + ], + [ + "▁Ratan", + -15.064001083374023 + ], + [ + "▁Verity", + -15.064001083374023 + ], + [ + "▁remoteness", + -15.06401538848877 + ], + [ + "▁brooches", + -15.064018249511719 + ], + [ + "▁lx", + -15.064030647277832 + ], + [ + "▁flam", + -15.064032554626465 + ], + [ + "▁LEGEND", + -15.06403636932373 + ], + [ + "hiking", + -15.064056396484375 + ], + [ + "▁tacitly", + -15.064056396484375 + ], + [ + "▁ˈ", + -15.06406307220459 + ], + [ + "▁bunched", + -15.064079284667969 + ], + [ + "ISCO", + -15.064085006713867 + ], + [ + "▁PAF", + -15.064095497131348 + ], + [ + "palooza", + -15.064104080200195 + ], + [ + "Forget", + -15.06411075592041 + ], + [ + "EXAM", + -15.064139366149902 + ], + [ + "▁Ayodhya", + -15.064157485961914 + ], + [ + "enhagen", + -15.064167022705078 + ], + [ + "▁Participatory", + -15.064201354980469 + ], + [ + "▁Mince", + -15.064223289489746 + ], + [ + "▁Erect", + -15.064226150512695 + ], + [ + "▁elastane", + -15.064242362976074 + ], + [ + "lakshmi", + -15.064270973205566 + ], + [ + "▁Magma", + -15.064274787902832 + ], + [ + "omycete", + -15.064291954040527 + ], + [ + "κα", + -15.06430435180664 + ], + [ + "RFP", + -15.064324378967285 + ], + [ + "innocent", + -15.064332008361816 + ], + [ + "▁wx", + -15.064385414123535 + ], + [ + "▁loopy", + -15.064399719238281 + ], + [ + "silane", + -15.064414024353027 + ], + [ + "▁SUE", + -15.064436912536621 + ], + [ + "▁shanghai", + -15.064440727233887 + ], + [ + "▁Baguio", + -15.064441680908203 + ], + [ + "▁Fassbender", + -15.064455032348633 + ], + [ + "▁Insufficient", + -15.06446361541748 + ], + [ + "▁Boron", + -15.064478874206543 + ], + [ + "▁Supernova", + -15.064485549926758 + ], + [ + "Mak", + -15.064505577087402 + ], + [ + "▁Kenna", + -15.064508438110352 + ], + [ + "▁cilia", + -15.064525604248047 + ], + [ + "▁Bomba", + -15.064529418945312 + ], + [ + "率", + -15.064620971679688 + ], + [ + "▁pinpointing", + -15.06462574005127 + ], + [ + "issant", + -15.064682960510254 + ], + [ + "▁terpenes", + -15.064702033996582 + ], + [ + "立", + -15.064745903015137 + ], + [ + "alvo", + -15.06488037109375 + ], + [ + "▁actualize", + -15.06489372253418 + ], + [ + "▁eShop", + -15.06492805480957 + ], + [ + "▁dweller", + -15.064932823181152 + ], + [ + "▁gallstones", + -15.064945220947266 + ], + [ + "▁TWIN", + -15.06496524810791 + ], + [ + "▁reaffirming", + -15.064992904663086 + ], + [ + "▁submittal", + -15.065045356750488 + ], + [ + "▁PricewaterhouseCoopers", + -15.065095901489258 + ], + [ + "umma", + -15.065107345581055 + ], + [ + "eswara", + -15.0651273727417 + ], + [ + "Ă", + -15.06513786315918 + ], + [ + "petal", + -15.065154075622559 + ], + [ + "GRAM", + -15.065179824829102 + ], + [ + "▁Coursework", + -15.065193176269531 + ], + [ + "Julian", + -15.065207481384277 + ], + [ + "▁1818028", + -15.065254211425781 + ], + [ + "▁Duque", + -15.065272331237793 + ], + [ + "▁Bosa", + -15.06531047821045 + ], + [ + "▁Physik", + -15.065311431884766 + ], + [ + "▁levi", + -15.06533145904541 + ], + [ + "Pee", + -15.065356254577637 + ], + [ + "▁964", + -15.065360069274902 + ], + [ + "▁mazda", + -15.065409660339355 + ], + [ + "▁Zippy", + -15.065411567687988 + ], + [ + "TALK", + -15.065451622009277 + ], + [ + "▁Axelrod", + -15.065499305725098 + ], + [ + "▁staccato", + -15.065508842468262 + ], + [ + "▁Cornwell", + -15.06551456451416 + ], + [ + "▁Cristobal", + -15.065546035766602 + ], + [ + "▁needlework", + -15.065553665161133 + ], + [ + "▁Snippet", + -15.065567970275879 + ], + [ + "Nope", + -15.065608024597168 + ], + [ + "▁1768", + -15.065662384033203 + ], + [ + "realization", + -15.065667152404785 + ], + [ + "▁Hardee", + -15.065667152404785 + ], + [ + "▁Mosby", + -15.065699577331543 + ], + [ + "foliate", + -15.06574535369873 + ], + [ + "▁Haunt", + -15.065790176391602 + ], + [ + "▁inebriated", + -15.06579303741455 + ], + [ + "ræ", + -15.065799713134766 + ], + [ + "▁Williamsport", + -15.065832138061523 + ], + [ + "addition", + -15.065838813781738 + ], + [ + "▁Bhan", + -15.065874099731445 + ], + [ + "▁skidded", + -15.065961837768555 + ], + [ + "▁judiciously", + -15.065996170043945 + ], + [ + "stylish", + -15.065998077392578 + ], + [ + "▁ploughing", + -15.066044807434082 + ], + [ + "eclampsia", + -15.066057205200195 + ], + [ + "▁buprenorphine", + -15.066078186035156 + ], + [ + "▁Paleolithic", + -15.066109657287598 + ], + [ + "▁radiograph", + -15.06612777709961 + ], + [ + "▁TWC", + -15.066137313842773 + ], + [ + "▁loitering", + -15.066182136535645 + ], + [ + "administrative", + -15.066190719604492 + ], + [ + "chunk", + -15.066190719604492 + ], + [ + "▁Carpentry", + -15.066198348999023 + ], + [ + "ijah", + -15.066229820251465 + ], + [ + "exhaust", + -15.066231727600098 + ], + [ + "▁CCO", + -15.066286087036133 + ], + [ + "▁Birding", + -15.066296577453613 + ], + [ + "▁Dari", + -15.06631088256836 + ], + [ + "▁Bonaire", + -15.066311836242676 + ], + [ + "ugged", + -15.066326141357422 + ], + [ + "ocr", + -15.066343307495117 + ], + [ + "▁appreciably", + -15.066349029541016 + ], + [ + "▁Fiorina", + -15.066366195678711 + ], + [ + "▁Puglia", + -15.066370010375977 + ], + [ + "▁reuptake", + -15.066391944885254 + ], + [ + "▁CLOTH", + -15.066420555114746 + ], + [ + "Brave", + -15.066450119018555 + ], + [ + "▁Zeh", + -15.066451072692871 + ], + [ + "▁acoustically", + -15.066452026367188 + ], + [ + "▁Corrective", + -15.066465377807617 + ], + [ + "zke", + -15.066506385803223 + ], + [ + "brey", + -15.066556930541992 + ], + [ + "▁Raines", + -15.066603660583496 + ], + [ + "beater", + -15.066615104675293 + ], + [ + "Evan", + -15.06661605834961 + ], + [ + "බ", + -15.066634178161621 + ], + [ + "×12", + -15.066675186157227 + ], + [ + "▁Terrapin", + -15.066707611083984 + ], + [ + "▁Clea", + -15.0667142868042 + ], + [ + "▁Thak", + -15.06673526763916 + ], + [ + "▁windswept", + -15.066746711730957 + ], + [ + "Weekly", + -15.06679630279541 + ], + [ + "leston", + -15.06679630279541 + ], + [ + "▁ADVENTURE", + -15.066847801208496 + ], + [ + "▁Nurmagomedov", + -15.066847801208496 + ], + [ + "▁homebuyer", + -15.066875457763672 + ], + [ + "oord", + -15.066877365112305 + ], + [ + "▁Aleksander", + -15.066879272460938 + ], + [ + "statistical", + -15.066910743713379 + ], + [ + "▁JUL", + -15.06693172454834 + ], + [ + "▁Katana", + -15.06693172454834 + ], + [ + "▁▶", + -15.067021369934082 + ], + [ + "▁Abedin", + -15.067036628723145 + ], + [ + "flavoured", + -15.067047119140625 + ], + [ + "▁snaking", + -15.067073822021484 + ], + [ + "▁Lbs", + -15.067083358764648 + ], + [ + "≤", + -15.067091941833496 + ], + [ + "▁irises", + -15.06711483001709 + ], + [ + "Opening", + -15.067150115966797 + ], + [ + "zong", + -15.067164421081543 + ], + [ + "▁secretory", + -15.067181587219238 + ], + [ + "▁exhalation", + -15.067190170288086 + ], + [ + "vola", + -15.067194938659668 + ], + [ + "▁Calvinism", + -15.067230224609375 + ], + [ + "▁Mitsui", + -15.067234992980957 + ], + [ + "▁Moron", + -15.067246437072754 + ], + [ + "drawer", + -15.067305564880371 + ], + [ + "inase", + -15.067362785339355 + ], + [ + "▁revving", + -15.067377090454102 + ], + [ + "▁Provincetown", + -15.06738567352295 + ], + [ + "▁Hurl", + -15.067395210266113 + ], + [ + "▁Lewisville", + -15.06739616394043 + ], + [ + "ripped", + -15.067429542541504 + ], + [ + "▁Basset", + -15.067444801330566 + ], + [ + "▁Kumari", + -15.0674467086792 + ], + [ + "▁liberalisation", + -15.06748104095459 + ], + [ + "siloxane", + -15.067486763000488 + ], + [ + "▁Grieve", + -15.067498207092285 + ], + [ + "▁Infected", + -15.06751823425293 + ], + [ + "ßen", + -15.067526817321777 + ], + [ + "▁insincere", + -15.067550659179688 + ], + [ + "▁banquette", + -15.067575454711914 + ], + [ + "▁Scol", + -15.067601203918457 + ], + [ + "BEE", + -15.067623138427734 + ], + [ + "▁antiqued", + -15.067625999450684 + ], + [ + "▁antimony", + -15.067643165588379 + ], + [ + "▁Gaurav", + -15.067651748657227 + ], + [ + "数据", + -15.067658424377441 + ], + [ + "fastest", + -15.067696571350098 + ], + [ + "▁Caspar", + -15.067710876464844 + ], + [ + "▁DRG", + -15.067719459533691 + ], + [ + "▁0845", + -15.067749977111816 + ], + [ + "▁fé", + -15.067770957946777 + ], + [ + "▁Thermometer", + -15.06777286529541 + ], + [ + "▁cmdlet", + -15.067832946777344 + ], + [ + "▁Pinkie", + -15.067842483520508 + ], + [ + "▁Strathclyde", + -15.06786060333252 + ], + [ + "Delhi", + -15.067880630493164 + ], + [ + "hardened", + -15.067899703979492 + ], + [ + "▁Kelp", + -15.067900657653809 + ], + [ + "▁Talladega", + -15.067917823791504 + ], + [ + "▁Srivastava", + -15.067946434020996 + ], + [ + "▁NAMI", + -15.067977905273438 + ], + [ + "▁acheter", + -15.06800651550293 + ], + [ + "▁crummy", + -15.068031311035156 + ], + [ + "artistic", + -15.068034172058105 + ], + [ + "▁Ravindra", + -15.068041801452637 + ], + [ + "▁readymade", + -15.068047523498535 + ], + [ + "▁Flyknit", + -15.068060874938965 + ], + [ + "▁Sibelius", + -15.068060874938965 + ], + [ + "▁Slippery", + -15.068062782287598 + ], + [ + "1750", + -15.068099021911621 + ], + [ + "▁Interoperability", + -15.068117141723633 + ], + [ + "▁suprised", + -15.06816291809082 + ], + [ + "▁bandaged", + -15.068197250366211 + ], + [ + "▁Siesta", + -15.06820297241211 + ], + [ + "▁authenticating", + -15.068206787109375 + ], + [ + "▁Parthenon", + -15.068217277526855 + ], + [ + "▁obsidian", + -15.068275451660156 + ], + [ + "▁FIXED", + -15.068286895751953 + ], + [ + "ranged", + -15.068306922912598 + ], + [ + "▁Mateen", + -15.068338394165039 + ], + [ + "▁Breda", + -15.068352699279785 + ], + [ + "mero", + -15.068370819091797 + ], + [ + "▁Hoang", + -15.068380355834961 + ], + [ + "▁Eyelash", + -15.068414688110352 + ], + [ + "▁DICE", + -15.068439483642578 + ], + [ + "▁greenest", + -15.068466186523438 + ], + [ + "▁GetHuman", + -15.068516731262207 + ], + [ + "omyces", + -15.068528175354004 + ], + [ + "▁reawaken", + -15.068528175354004 + ], + [ + "▁DAI", + -15.068533897399902 + ], + [ + "MINI", + -15.068577766418457 + ], + [ + "▁GSX", + -15.06865406036377 + ], + [ + "happiness", + -15.0686674118042 + ], + [ + "▁necess", + -15.068670272827148 + ], + [ + "HAI", + -15.068687438964844 + ], + [ + "converter", + -15.068690299987793 + ], + [ + "▁bourse", + -15.068696975708008 + ], + [ + "ნ", + -15.068784713745117 + ], + [ + "▁Gatti", + -15.06879711151123 + ], + [ + "▁sired", + -15.068843841552734 + ], + [ + "▁zon", + -15.06885814666748 + ], + [ + "▁handstand", + -15.06895637512207 + ], + [ + "▁Comparable", + -15.068967819213867 + ], + [ + "▁papier", + -15.068984031677246 + ], + [ + "▁Shk", + -15.06899642944336 + ], + [ + "▁Superheroes", + -15.069099426269531 + ], + [ + "▁dredged", + -15.06914234161377 + ], + [ + "Buffalo", + -15.069148063659668 + ], + [ + "Browser", + -15.069175720214844 + ], + [ + "▁AFRICA", + -15.069242477416992 + ], + [ + "▁Trivandrum", + -15.069245338439941 + ], + [ + "▁Smythe", + -15.069258689880371 + ], + [ + "▁Pema", + -15.0693359375 + ], + [ + "swift", + -15.069343566894531 + ], + [ + "percentage", + -15.069355964660645 + ], + [ + "▁Retard", + -15.06935977935791 + ], + [ + "▁breastmilk", + -15.069405555725098 + ], + [ + "▁fanzine", + -15.06946849822998 + ], + [ + "▁Kishore", + -15.069473266601562 + ], + [ + "▁Dewan", + -15.069478034973145 + ], + [ + "▁Flemington", + -15.069540977478027 + ], + [ + "▁Sanjeev", + -15.069550514221191 + ], + [ + "▁lymphedema", + -15.069578170776367 + ], + [ + "▁Spiele", + -15.069594383239746 + ], + [ + "▁Ashworth", + -15.069602012634277 + ], + [ + "CRS", + -15.069618225097656 + ], + [ + "▁Roscommon", + -15.069622039794922 + ], + [ + "Bir", + -15.069622993469238 + ], + [ + "▁Winslet", + -15.069701194763184 + ], + [ + "ANZ", + -15.069717407226562 + ], + [ + "NSS", + -15.069727897644043 + ], + [ + "EDE", + -15.069757461547852 + ], + [ + "ATTER", + -15.069771766662598 + ], + [ + "▁Gero", + -15.069772720336914 + ], + [ + "▁PREP", + -15.069774627685547 + ], + [ + "communicate", + -15.069818496704102 + ], + [ + "▁reorganizing", + -15.069823265075684 + ], + [ + "▁chided", + -15.06985855102539 + ], + [ + "jewelry", + -15.069863319396973 + ], + [ + "▁Vex", + -15.069883346557617 + ], + [ + "▁festering", + -15.069889068603516 + ], + [ + "thoracic", + -15.069894790649414 + ], + [ + "▁regen", + -15.069894790649414 + ], + [ + "рат", + -15.069939613342285 + ], + [ + "▁ком", + -15.069939613342285 + ], + [ + "▁César", + -15.069960594177246 + ], + [ + "▁Foremost", + -15.069984436035156 + ], + [ + "▁CONCLUSION", + -15.07001781463623 + ], + [ + "▁HDAC", + -15.070030212402344 + ], + [ + "niece", + -15.070038795471191 + ], + [ + "▁Epo", + -15.070038795471191 + ], + [ + "AUC", + -15.070055961608887 + ], + [ + "▁Azur", + -15.07005786895752 + ], + [ + "▁ouch", + -15.07007884979248 + ], + [ + "unacceptable", + -15.07015323638916 + ], + [ + "▁Eichel", + -15.07015323638916 + ], + [ + "▁quantization", + -15.070266723632812 + ], + [ + "▁traversal", + -15.070302963256836 + ], + [ + "connecting", + -15.070304870605469 + ], + [ + "xxxxxx", + -15.0703125 + ], + [ + "▁Linwood", + -15.070422172546387 + ], + [ + "NIK", + -15.070425033569336 + ], + [ + "▁fetches", + -15.070454597473145 + ], + [ + "Penguin", + -15.070469856262207 + ], + [ + "論", + -15.070474624633789 + ], + [ + "underground", + -15.070505142211914 + ], + [ + "▁Dacia", + -15.070511817932129 + ], + [ + "▁Pym", + -15.07051944732666 + ], + [ + "▁kama", + -15.07055950164795 + ], + [ + "nomia", + -15.070569038391113 + ], + [ + "▁Bahraini", + -15.070571899414062 + ], + [ + "▁NUC", + -15.070572853088379 + ], + [ + "Widget", + -15.070609092712402 + ], + [ + "▁defrauding", + -15.070646286010742 + ], + [ + "▁Sentosa", + -15.070648193359375 + ], + [ + "▁Allegri", + -15.070682525634766 + ], + [ + "ケ", + -15.070693969726562 + ], + [ + "▁Rinne", + -15.070711135864258 + ], + [ + "▁Dumbarton", + -15.070718765258789 + ], + [ + "▁seafarers", + -15.070732116699219 + ], + [ + "▁grooving", + -15.070775985717773 + ], + [ + "▁wooing", + -15.07081127166748 + ], + [ + "▁LITE", + -15.07086181640625 + ], + [ + "magnitude", + -15.0708646774292 + ], + [ + "▁Thirteenth", + -15.070890426635742 + ], + [ + "▁Kreuz", + -15.070916175842285 + ], + [ + "▁coziness", + -15.07093334197998 + ], + [ + "▁Wozniacki", + -15.070947647094727 + ], + [ + "▁Ú", + -15.070947647094727 + ], + [ + "▁Elasticsearch", + -15.070952415466309 + ], + [ + "▁SHAPE", + -15.070965766906738 + ], + [ + "schmidt", + -15.070984840393066 + ], + [ + "▁CRN", + -15.071011543273926 + ], + [ + "aël", + -15.071017265319824 + ], + [ + "Goodbye", + -15.071038246154785 + ], + [ + "▁Fulfill", + -15.071060180664062 + ], + [ + "▁Aragorn", + -15.071105003356934 + ], + [ + "Hank", + -15.07111644744873 + ], + [ + "▁Porcupine", + -15.071133613586426 + ], + [ + "▁laidback", + -15.071136474609375 + ], + [ + "▁Murph", + -15.071142196655273 + ], + [ + "▁Umpire", + -15.071149826049805 + ], + [ + "▁riotous", + -15.071196556091309 + ], + [ + "▁Kress", + -15.071264266967773 + ], + [ + "BMS", + -15.071271896362305 + ], + [ + "▁HSI", + -15.071316719055176 + ], + [ + "ает", + -15.071329116821289 + ], + [ + "ligi", + -15.071353912353516 + ], + [ + "▁Schuylkill", + -15.071406364440918 + ], + [ + "▁conspiratorial", + -15.071406364440918 + ], + [ + "▁Rafting", + -15.071434020996094 + ], + [ + "▁Scania", + -15.071436882019043 + ], + [ + "▁hotdogs", + -15.071443557739258 + ], + [ + "▁Bukhari", + -15.071453094482422 + ], + [ + "ringen", + -15.071456909179688 + ], + [ + "▁Renovated", + -15.071477890014648 + ], + [ + "▁FORMER", + -15.071488380432129 + ], + [ + "▁pedometer", + -15.071541786193848 + ], + [ + "planting", + -15.071553230285645 + ], + [ + "▁PLAYER", + -15.071555137634277 + ], + [ + "▁anxiousness", + -15.071593284606934 + ], + [ + "▁DVT", + -15.07160472869873 + ], + [ + "▁touchpoints", + -15.071612358093262 + ], + [ + "▁Thigh", + -15.071697235107422 + ], + [ + "▁PEX", + -15.071721076965332 + ], + [ + "alski", + -15.07172966003418 + ], + [ + "▁indentured", + -15.07176685333252 + ], + [ + "▁Prudence", + -15.071770668029785 + ], + [ + "▁simul", + -15.071805000305176 + ], + [ + "▁Abolition", + -15.0718355178833 + ], + [ + "▁Shostakovich", + -15.0718355178833 + ], + [ + "▁firehouse", + -15.071849822998047 + ], + [ + "▁Ellicott", + -15.071852684020996 + ], + [ + "▁Invoke", + -15.07186508178711 + ], + [ + "▁Despair", + -15.071867942810059 + ], + [ + "secured", + -15.071878433227539 + ], + [ + "Greece", + -15.071907043457031 + ], + [ + "▁motiv", + -15.071938514709473 + ], + [ + "▁PBC", + -15.071955680847168 + ], + [ + "▁laymen", + -15.071972846984863 + ], + [ + "rago", + -15.072013854980469 + ], + [ + "▁AGL", + -15.072017669677734 + ], + [ + "去", + -15.072031021118164 + ], + [ + "reiter", + -15.072039604187012 + ], + [ + "dear", + -15.07205867767334 + ], + [ + "▁BSB", + -15.07209587097168 + ], + [ + "▁wonderment", + -15.072104454040527 + ], + [ + "▁Licensor", + -15.072111129760742 + ], + [ + "▁basting", + -15.072121620178223 + ], + [ + "rimi", + -15.07215404510498 + ], + [ + "▁backflow", + -15.072158813476562 + ], + [ + "▁Hipster", + -15.07219123840332 + ], + [ + "▁Catawba", + -15.07219409942627 + ], + [ + "Weaver", + -15.072212219238281 + ], + [ + "Bonus", + -15.07221508026123 + ], + [ + "▁Prze", + -15.072230339050293 + ], + [ + "▁información", + -15.072239875793457 + ], + [ + "▁leeches", + -15.072242736816406 + ], + [ + "▁Italiano", + -15.072246551513672 + ], + [ + "▁provocateur", + -15.072279930114746 + ], + [ + "NELL", + -15.072290420532227 + ], + [ + "invention", + -15.072297096252441 + ], + [ + "▁بال", + -15.072300910949707 + ], + [ + "▁RADIUS", + -15.072310447692871 + ], + [ + "patriot", + -15.0723237991333 + ], + [ + "▁Texting", + -15.07233715057373 + ], + [ + "▁STEPHEN", + -15.072341918945312 + ], + [ + "▁pud", + -15.07235050201416 + ], + [ + "▁shampooing", + -15.072356224060059 + ], + [ + "▁hyclate", + -15.072380065917969 + ], + [ + "RISH", + -15.072400093078613 + ], + [ + "▁Connacht", + -15.072400093078613 + ], + [ + "лог", + -15.072403907775879 + ], + [ + "▁CAUTION", + -15.072409629821777 + ], + [ + "▁ADMIN", + -15.07241153717041 + ], + [ + "▁uncommonly", + -15.07246208190918 + ], + [ + "▁Cinematography", + -15.072466850280762 + ], + [ + "▁Propose", + -15.072502136230469 + ], + [ + "▁Mancha", + -15.072504997253418 + ], + [ + "ально", + -15.072553634643555 + ], + [ + "feeder", + -15.072554588317871 + ], + [ + "▁vagueness", + -15.072588920593262 + ], + [ + "▁Aggarwal", + -15.072595596313477 + ], + [ + "▁savagery", + -15.072603225708008 + ], + [ + "▁commited", + -15.072610855102539 + ], + [ + "▁Teb", + -15.072626113891602 + ], + [ + "▁Chose", + -15.07266616821289 + ], + [ + "▁Allardyce", + -15.072696685791016 + ], + [ + "▁Acetyl", + -15.072724342346191 + ], + [ + "зы", + -15.07272720336914 + ], + [ + "Sisi", + -15.072731018066406 + ], + [ + "▁Accern", + -15.072751998901367 + ], + [ + "endel", + -15.07276439666748 + ], + [ + "▁LQ", + -15.07277774810791 + ], + [ + "▁TWICE", + -15.07278060913086 + ], + [ + "▁polycystic", + -15.072845458984375 + ], + [ + "▁Erosion", + -15.072848320007324 + ], + [ + "▁Fedex", + -15.072909355163574 + ], + [ + "Grass", + -15.072916984558105 + ], + [ + "▁Soooo", + -15.072930335998535 + ], + [ + "▁NDE", + -15.072938919067383 + ], + [ + "▁Felder", + -15.072958946228027 + ], + [ + "▁thereupon", + -15.07296085357666 + ], + [ + "graff", + -15.072964668273926 + ], + [ + "homework", + -15.07299518585205 + ], + [ + "FISH", + -15.073010444641113 + ], + [ + "▁Aalto", + -15.073034286499023 + ], + [ + "▁Wok", + -15.073042869567871 + ], + [ + "▁674", + -15.073081016540527 + ], + [ + "Average", + -15.073088645935059 + ], + [ + "▁airlock", + -15.073101043701172 + ], + [ + "fka", + -15.073102951049805 + ], + [ + "▁Sequ", + -15.073108673095703 + ], + [ + "▁Halter", + -15.073168754577637 + ], + [ + "rover", + -15.073176383972168 + ], + [ + "▁Publi", + -15.073187828063965 + ], + [ + "▁bravo", + -15.073246955871582 + ], + [ + "▁ceaselessly", + -15.073262214660645 + ], + [ + "▁sneered", + -15.073302268981934 + ], + [ + "stiff", + -15.073315620422363 + ], + [ + "Swift", + -15.073332786560059 + ], + [ + "▁Freestanding", + -15.0733642578125 + ], + [ + "cimento", + -15.073386192321777 + ], + [ + "Netherlands", + -15.07341480255127 + ], + [ + "tagging", + -15.073463439941406 + ], + [ + "▁Englishmen", + -15.073464393615723 + ], + [ + "▁extol", + -15.073477745056152 + ], + [ + "Æ", + -15.073487281799316 + ], + [ + "▁Pease", + -15.073516845703125 + ], + [ + "▁lasso", + -15.073555946350098 + ], + [ + "▁essen", + -15.073607444763184 + ], + [ + "digger", + -15.073650360107422 + ], + [ + "▁Pinkerton", + -15.073677062988281 + ], + [ + "▁Platz", + -15.073728561401367 + ], + [ + "horny", + -15.073738098144531 + ], + [ + "communicable", + -15.073760032653809 + ], + [ + "WIRE", + -15.073777198791504 + ], + [ + "iyu", + -15.07378101348877 + ], + [ + "▁CRIME", + -15.073795318603516 + ], + [ + "▁COFFEE", + -15.073837280273438 + ], + [ + "Bai", + -15.073904037475586 + ], + [ + "▁Sasaki", + -15.073936462402344 + ], + [ + "▁Iceberg", + -15.07393741607666 + ], + [ + "▁Allegra", + -15.073939323425293 + ], + [ + "▁Fick", + -15.073943138122559 + ], + [ + "▁Chlamydia", + -15.073944091796875 + ], + [ + "▁FRAN", + -15.07397174835205 + ], + [ + "▁ná", + -15.073983192443848 + ], + [ + "▁outdoorsy", + -15.073994636535645 + ], + [ + "▁schizo", + -15.074028015136719 + ], + [ + "▁essere", + -15.074029922485352 + ], + [ + "▁Vec", + -15.074153900146484 + ], + [ + "▁vec", + -15.074225425720215 + ], + [ + "▁Aaa", + -15.074226379394531 + ], + [ + "ospheric", + -15.074251174926758 + ], + [ + "▁porpoise", + -15.074260711669922 + ], + [ + "▁hoteliers", + -15.074272155761719 + ], + [ + "▁Winged", + -15.0742769241333 + ], + [ + "카", + -15.074289321899414 + ], + [ + "▁Cipher", + -15.074325561523438 + ], + [ + "▁Mesut", + -15.074358940124512 + ], + [ + "▁redaction", + -15.074360847473145 + ], + [ + "cysteine", + -15.074371337890625 + ], + [ + "▁CLT", + -15.0744047164917 + ], + [ + "RCP", + -15.074411392211914 + ], + [ + "▁unbearably", + -15.074418067932129 + ], + [ + "▁Essa", + -15.07447624206543 + ], + [ + "▁Canter", + -15.07449722290039 + ], + [ + "▁Gramm", + -15.074501037597656 + ], + [ + "▁OMA", + -15.07451057434082 + ], + [ + "▁Fumi", + -15.07451343536377 + ], + [ + "▁hö", + -15.0745210647583 + ], + [ + "xanthin", + -15.074535369873047 + ], + [ + "IPL", + -15.074549674987793 + ], + [ + "▁KLA", + -15.074567794799805 + ], + [ + "금", + -15.074604988098145 + ], + [ + "▁Raipur", + -15.074610710144043 + ], + [ + "Warren", + -15.074649810791016 + ], + [ + "▁Klondike", + -15.074676513671875 + ], + [ + "▁prorated", + -15.074679374694824 + ], + [ + "Gym", + -15.074694633483887 + ], + [ + "Winner", + -15.074702262878418 + ], + [ + "LegalTermsPrivacyCopyrightSocial", + -15.074706077575684 + ], + [ + "longest", + -15.074777603149414 + ], + [ + "▁Altamont", + -15.074796676635742 + ], + [ + "▁Maung", + -15.074822425842285 + ], + [ + "▁Switched", + -15.074845314025879 + ], + [ + "▁Josi", + -15.074868202209473 + ], + [ + "▁helpAdChoicesPublishers", + -15.07489013671875 + ], + [ + "logique", + -15.074925422668457 + ], + [ + "Kun", + -15.074949264526367 + ], + [ + "Pep", + -15.074980735778809 + ], + [ + "▁steadiness", + -15.074984550476074 + ], + [ + "ரு", + -15.07501220703125 + ], + [ + "▁cohabitation", + -15.075052261352539 + ], + [ + "CNT", + -15.075061798095703 + ], + [ + "▁AWARE", + -15.075165748596191 + ], + [ + "▁Wanderer", + -15.075170516967773 + ], + [ + "sanctuary", + -15.075238227844238 + ], + [ + "▁Opium", + -15.075239181518555 + ], + [ + "▁Purana", + -15.075286865234375 + ], + [ + "▁Gondola", + -15.07529354095459 + ], + [ + "Robinson", + -15.075305938720703 + ], + [ + "▁Zoro", + -15.075331687927246 + ], + [ + "▁Vain", + -15.075335502624512 + ], + [ + "abdominal", + -15.07534122467041 + ], + [ + "▁Ndi", + -15.075350761413574 + ], + [ + "ierten", + -15.07536506652832 + ], + [ + "▁Batti", + -15.075409889221191 + ], + [ + "▁Lashes", + -15.075410842895508 + ], + [ + "attitude", + -15.075469017028809 + ], + [ + "▁Fáil", + -15.075488090515137 + ], + [ + "▁EMD", + -15.075489044189453 + ], + [ + "ković", + -15.075490951538086 + ], + [ + "▁Cryptography", + -15.075515747070312 + ], + [ + "poda", + -15.075528144836426 + ], + [ + "▁Wicca", + -15.075531959533691 + ], + [ + "▁Ringling", + -15.075544357299805 + ], + [ + "▁CQC", + -15.075556755065918 + ], + [ + "▁Dulwich", + -15.075573921203613 + ], + [ + "cillo", + -15.075592994689941 + ], + [ + "ILI", + -15.075597763061523 + ], + [ + "▁Interviewing", + -15.075599670410156 + ], + [ + "visi", + -15.075641632080078 + ], + [ + "▁waterborne", + -15.075677871704102 + ], + [ + "▁BUSH", + -15.075693130493164 + ], + [ + "▁Tempered", + -15.075724601745605 + ], + [ + "▁Greig", + -15.075743675231934 + ], + [ + "otu", + -15.075769424438477 + ], + [ + "▁breadboard", + -15.075778007507324 + ], + [ + "▁codenamed", + -15.075799942016602 + ], + [ + "yser", + -15.075813293457031 + ], + [ + "▁mongo", + -15.075821876525879 + ], + [ + "▁Nourishing", + -15.075830459594727 + ], + [ + "Columbian", + -15.075834274291992 + ], + [ + "▁HEK", + -15.075838088989258 + ], + [ + "▁MCSE", + -15.07584285736084 + ], + [ + "его", + -15.075852394104004 + ], + [ + "▁1493782030835866", + -15.07585620880127 + ], + [ + "▁998", + -15.075867652893066 + ], + [ + "▁STATUS", + -15.07589340209961 + ], + [ + "▁Cortina", + -15.075897216796875 + ], + [ + "zzle", + -15.075911521911621 + ], + [ + "▁roger", + -15.075929641723633 + ], + [ + "▁Wrestlemania", + -15.075932502746582 + ], + [ + "▁aerobatic", + -15.075942039489746 + ], + [ + "yanna", + -15.075947761535645 + ], + [ + "▁Atul", + -15.07595157623291 + ], + [ + "boli", + -15.075956344604492 + ], + [ + "▁GND", + -15.075974464416504 + ], + [ + "Colombia", + -15.075990676879883 + ], + [ + "▁polysaccharides", + -15.075998306274414 + ], + [ + "▁SACRAMENTO", + -15.076028823852539 + ], + [ + "bito", + -15.076061248779297 + ], + [ + "▁pixelated", + -15.076077461242676 + ], + [ + "IGE", + -15.076086044311523 + ], + [ + "▁arthroplasty", + -15.076114654541016 + ], + [ + "ristian", + -15.076126098632812 + ], + [ + "▁craggy", + -15.076127052307129 + ], + [ + "8080", + -15.076130867004395 + ], + [ + "▁abutting", + -15.076140403747559 + ], + [ + "▁Badass", + -15.076155662536621 + ], + [ + "▁Jimbo", + -15.076164245605469 + ], + [ + "▁Lowndes", + -15.076175689697266 + ], + [ + "▁unmoved", + -15.07620906829834 + ], + [ + "▁overflowed", + -15.076260566711426 + ], + [ + "imah", + -15.076278686523438 + ], + [ + "▁luciferase", + -15.076287269592285 + ], + [ + "▁Pradeep", + -15.076301574707031 + ], + [ + "▁Inoue", + -15.076367378234863 + ], + [ + "اح", + -15.076375961303711 + ], + [ + "▁HWY", + -15.076421737670898 + ], + [ + "assar", + -15.076445579528809 + ], + [ + "▁Verte", + -15.076465606689453 + ], + [ + "▁eukaryotes", + -15.076489448547363 + ], + [ + "▁overpaying", + -15.076502799987793 + ], + [ + "▁1771", + -15.076536178588867 + ], + [ + "invited", + -15.076543807983398 + ], + [ + "▁Charan", + -15.076556205749512 + ], + [ + "acqua", + -15.076598167419434 + ], + [ + "nunciation", + -15.076621055603027 + ], + [ + "▁Darrin", + -15.076627731323242 + ], + [ + "EFA", + -15.076689720153809 + ], + [ + "▁Rafflecopter", + -15.076691627502441 + ], + [ + "▁covariates", + -15.07672119140625 + ], + [ + "OECD", + -15.0767240524292 + ], + [ + "▁pulverized", + -15.076737403869629 + ], + [ + "continental", + -15.076738357543945 + ], + [ + "▁Digimon", + -15.076878547668457 + ], + [ + "pode", + -15.076899528503418 + ], + [ + "▁Cucamonga", + -15.076921463012695 + ], + [ + "▁Picket", + -15.076934814453125 + ], + [ + "▁ghana", + -15.076946258544922 + ], + [ + "▁Depo", + -15.076970100402832 + ], + [ + "misc", + -15.076995849609375 + ], + [ + "▁Doxycycline", + -15.077035903930664 + ], + [ + "▁Phenomena", + -15.07706356048584 + ], + [ + "▁Fleischer", + -15.077066421508789 + ], + [ + "ecta", + -15.07711410522461 + ], + [ + "▁Biosystems", + -15.077133178710938 + ], + [ + "▁defo", + -15.077141761779785 + ], + [ + "▁savagely", + -15.077153205871582 + ], + [ + "▁Schlu", + -15.077165603637695 + ], + [ + "▁Kerk", + -15.07717514038086 + ], + [ + "▁SLAM", + -15.077188491821289 + ], + [ + "▁Neighbour", + -15.077192306518555 + ], + [ + "▁Willey", + -15.077215194702148 + ], + [ + "▁GDR", + -15.077242851257324 + ], + [ + "▁mauled", + -15.077256202697754 + ], + [ + "▁Brenna", + -15.07726764678955 + ], + [ + "▁Zapp", + -15.077271461486816 + ], + [ + "appearance", + -15.07734203338623 + ], + [ + "hunk", + -15.07734203338623 + ], + [ + "▁Strachan", + -15.077349662780762 + ], + [ + "▁shal", + -15.077350616455078 + ], + [ + "oplast", + -15.077352523803711 + ], + [ + "Graphics", + -15.077363967895508 + ], + [ + "▁Wawa", + -15.077391624450684 + ], + [ + "▁dentin", + -15.077399253845215 + ], + [ + "▁vegetarianism", + -15.077437400817871 + ], + [ + "Measure", + -15.077445030212402 + ], + [ + "▁impala", + -15.077471733093262 + ], + [ + "▁Exynos", + -15.07751178741455 + ], + [ + "▁Millenium", + -15.077527046203613 + ], + [ + "wrapper", + -15.07752799987793 + ], + [ + "▁Klobuchar", + -15.077554702758789 + ], + [ + "IFC", + -15.077568054199219 + ], + [ + "▁Hipp", + -15.07769775390625 + ], + [ + "▁bartending", + -15.077703475952148 + ], + [ + "exis", + -15.07772159576416 + ], + [ + "▁Bellinger", + -15.077766418457031 + ], + [ + "▁Incense", + -15.077799797058105 + ], + [ + "▁Gander", + -15.077825546264648 + ], + [ + "urative", + -15.077835083007812 + ], + [ + "▁bonne", + -15.077857971191406 + ], + [ + "Nelson", + -15.07790470123291 + ], + [ + "▁Tino", + -15.077919960021973 + ], + [ + "eckel", + -15.077921867370605 + ], + [ + "▁Attica", + -15.077926635742188 + ], + [ + "▁Mixtape", + -15.077932357788086 + ], + [ + "▁Türk", + -15.077948570251465 + ], + [ + "▁hiv", + -15.078004837036133 + ], + [ + "▁Lackey", + -15.078044891357422 + ], + [ + "▁Tsarnaev", + -15.07808780670166 + ], + [ + "▁honcho", + -15.078104019165039 + ], + [ + "▁frac", + -15.078165054321289 + ], + [ + "bila", + -15.078169822692871 + ], + [ + "mechanics", + -15.0781888961792 + ], + [ + "▁dutiful", + -15.078197479248047 + ], + [ + "▁Javanese", + -15.078217506408691 + ], + [ + "ragen", + -15.07822322845459 + ], + [ + "▁LCM", + -15.078262329101562 + ], + [ + "▁Maddon", + -15.078295707702637 + ], + [ + "zky", + -15.078302383422852 + ], + [ + "▁heartstrings", + -15.078319549560547 + ], + [ + "▁Sö", + -15.07838249206543 + ], + [ + "▁Tamer", + -15.078396797180176 + ], + [ + "▁Knuckles", + -15.07847785949707 + ], + [ + "▁Numeric", + -15.0784912109375 + ], + [ + "▁outcropping", + -15.078551292419434 + ], + [ + "▁collegial", + -15.078605651855469 + ], + [ + "▁gizmos", + -15.078607559204102 + ], + [ + "▁McEwan", + -15.078636169433594 + ], + [ + "▁SMR", + -15.078638076782227 + ], + [ + "ֵ", + -15.078664779663086 + ], + [ + "accutane", + -15.078670501708984 + ], + [ + "proto", + -15.078722953796387 + ], + [ + "▁Gyan", + -15.078727722167969 + ], + [ + "▁Threatened", + -15.07874584197998 + ], + [ + "▁germline", + -15.07874584197998 + ], + [ + "navy", + -15.078756332397461 + ], + [ + "▁Highgate", + -15.07876968383789 + ], + [ + "▁Dredd", + -15.07879638671875 + ], + [ + "▁INFORM", + -15.078827857971191 + ], + [ + "▁gainers", + -15.07888412475586 + ], + [ + "Strip", + -15.079028129577637 + ], + [ + "⭐", + -15.07903003692627 + ], + [ + "▁AVM", + -15.079069137573242 + ], + [ + "▁Pinochet", + -15.079118728637695 + ], + [ + "▁Splendor", + -15.079171180725098 + ], + [ + "▁volum", + -15.079171180725098 + ], + [ + "▁TANK", + -15.079185485839844 + ], + [ + "reservation", + -15.07919692993164 + ], + [ + "▁effusive", + -15.07919979095459 + ], + [ + "uttle", + -15.079201698303223 + ], + [ + "▁Blatt", + -15.079290390014648 + ], + [ + "▁Widescreen", + -15.079299926757812 + ], + [ + "filament", + -15.079300880432129 + ], + [ + "▁ELS", + -15.079309463500977 + ], + [ + "Repeat", + -15.079349517822266 + ], + [ + "▁Swet", + -15.079365730285645 + ], + [ + "▁Euston", + -15.079418182373047 + ], + [ + "▁PSM", + -15.079423904418945 + ], + [ + "▁HBC", + -15.079442024230957 + ], + [ + "▁Saucer", + -15.07947826385498 + ], + [ + "Minor", + -15.079501152038574 + ], + [ + "Contemporary", + -15.079508781433105 + ], + [ + "▁Havoc", + -15.079511642456055 + ], + [ + "RAVE", + -15.079573631286621 + ], + [ + "▁defile", + -15.079602241516113 + ], + [ + "▁DOH", + -15.079610824584961 + ], + [ + "▁politique", + -15.079646110534668 + ], + [ + "▁unreservedly", + -15.079662322998047 + ], + [ + "enkov", + -15.079663276672363 + ], + [ + "▁Calloway", + -15.079702377319336 + ], + [ + "▁Grievance", + -15.079718589782715 + ], + [ + "▁Tummy", + -15.07972526550293 + ], + [ + "peaceful", + -15.079788208007812 + ], + [ + "brought", + -15.07984733581543 + ], + [ + "aphy", + -15.079856872558594 + ], + [ + "▁pagination", + -15.079890251159668 + ], + [ + "▁Prinz", + -15.079916000366211 + ], + [ + "▁Gluck", + -15.07992172241211 + ], + [ + "▁Geithner", + -15.079935073852539 + ], + [ + "▁Joiner", + -15.079946517944336 + ], + [ + "▁Tema", + -15.079947471618652 + ], + [ + "▁militarization", + -15.079957008361816 + ], + [ + "▁PREVIOUS", + -15.079964637756348 + ], + [ + "▁Driftwood", + -15.07997989654541 + ], + [ + "▁sycophant", + -15.080021858215332 + ], + [ + "▁BUILT", + -15.080076217651367 + ], + [ + "▁contralateral", + -15.080145835876465 + ], + [ + "TOO", + -15.08016586303711 + ], + [ + "▁Tejas", + -15.080177307128906 + ], + [ + "▁Hurrah", + -15.080184936523438 + ], + [ + "▁cours", + -15.080187797546387 + ], + [ + "▁Marlo", + -15.080188751220703 + ], + [ + "▁vite", + -15.0802001953125 + ], + [ + "ček", + -15.080223083496094 + ], + [ + "BED", + -15.080259323120117 + ], + [ + "▁hedonistic", + -15.080262184143066 + ], + [ + "Ê", + -15.080269813537598 + ], + [ + "▁DEFINITELY", + -15.080310821533203 + ], + [ + "▁Harun", + -15.080320358276367 + ], + [ + "ihara", + -15.08032512664795 + ], + [ + "▁Dstv", + -15.080343246459961 + ], + [ + "1103", + -15.080353736877441 + ], + [ + "agga", + -15.080389022827148 + ], + [ + "pathological", + -15.080389022827148 + ], + [ + "▁Oldman", + -15.08041000366211 + ], + [ + "adapt", + -15.080423355102539 + ], + [ + "ို", + -15.080470085144043 + ], + [ + "▁bundt", + -15.080513954162598 + ], + [ + "▁thaliana", + -15.08051586151123 + ], + [ + "▁Norge", + -15.080520629882812 + ], + [ + "▁Desjardins", + -15.08054256439209 + ], + [ + "▁Identifies", + -15.08054256439209 + ], + [ + "▁AirBnB", + -15.080551147460938 + ], + [ + "▁reiki", + -15.080554962158203 + ], + [ + "Physics", + -15.080565452575684 + ], + [ + "distinct", + -15.080585479736328 + ], + [ + "▁Tahitian", + -15.080599784851074 + ], + [ + "▁Geffen", + -15.080602645874023 + ], + [ + "▁thimble", + -15.08067512512207 + ], + [ + "Parameter", + -15.080682754516602 + ], + [ + "▁Cleric", + -15.080683708190918 + ], + [ + "▁Nicodemus", + -15.080700874328613 + ], + [ + "▁fornication", + -15.08072566986084 + ], + [ + "Hybrid", + -15.080740928649902 + ], + [ + "BRO", + -15.080741882324219 + ], + [ + "▁영", + -15.080748558044434 + ], + [ + "▁Argon", + -15.08074951171875 + ], + [ + "يل", + -15.08078670501709 + ], + [ + "purchasing", + -15.080790519714355 + ], + [ + "▁nightgown", + -15.080792427062988 + ], + [ + "▁goldmine", + -15.080798149108887 + ], + [ + "▁stooge", + -15.080804824829102 + ], + [ + "Reserve", + -15.08083438873291 + ], + [ + "▁Visser", + -15.080888748168945 + ], + [ + "▁Jacinda", + -15.080909729003906 + ], + [ + "▁reroute", + -15.0809326171875 + ], + [ + "▁exoplanets", + -15.080967903137207 + ], + [ + "▁Zha", + -15.080968856811523 + ], + [ + "▁939", + -15.080977439880371 + ], + [ + "▁Belgi", + -15.080985069274902 + ], + [ + "▁imperil", + -15.081010818481445 + ], + [ + "▁Wallach", + -15.08102035522461 + ], + [ + "片", + -15.081052780151367 + ], + [ + "anime", + -15.081056594848633 + ], + [ + "▁HEN", + -15.08106803894043 + ], + [ + "▁anisotropic", + -15.08107852935791 + ], + [ + "ulder", + -15.081151962280273 + ], + [ + "▁revaluation", + -15.081153869628906 + ], + [ + "▁SMF", + -15.081171989440918 + ], + [ + "▁telephonic", + -15.081175804138184 + ], + [ + "▁shrew", + -15.081212043762207 + ], + [ + "▁Sabra", + -15.081214904785156 + ], + [ + "▁synerg", + -15.081217765808105 + ], + [ + "▁homocysteine", + -15.08122444152832 + ], + [ + "▁MINNEAPOLIS", + -15.081352233886719 + ], + [ + "▁gastroenterologist", + -15.081352233886719 + ], + [ + "ша", + -15.081355094909668 + ], + [ + "▁sí", + -15.0813570022583 + ], + [ + "▁reprising", + -15.081367492675781 + ], + [ + "compensation", + -15.081399917602539 + ], + [ + "pula", + -15.081402778625488 + ], + [ + "▁disguising", + -15.08141040802002 + ], + [ + "▁Carnation", + -15.081413269042969 + ], + [ + "▁Niners", + -15.08142375946045 + ], + [ + "ROT", + -15.081451416015625 + ], + [ + "GOD", + -15.081452369689941 + ], + [ + "▁Betrayal", + -15.081453323364258 + ], + [ + "delicious", + -15.081477165222168 + ], + [ + "culi", + -15.081483840942383 + ], + [ + "▁WalMart", + -15.081486701965332 + ], + [ + "▁sundeck", + -15.081494331359863 + ], + [ + "Pho", + -15.081497192382812 + ], + [ + "▁NAG", + -15.081497192382812 + ], + [ + "▁Concentrated", + -15.081500053405762 + ], + [ + "rood", + -15.081501007080078 + ], + [ + "▁iowa", + -15.081521987915039 + ], + [ + "▁Gersh", + -15.081568717956543 + ], + [ + "vw", + -15.08156967163086 + ], + [ + "awang", + -15.081592559814453 + ], + [ + "IDES", + -15.081620216369629 + ], + [ + "▁suffixes", + -15.081642150878906 + ], + [ + "▁detent", + -15.081658363342285 + ], + [ + "mention", + -15.081665992736816 + ], + [ + "Kart", + -15.081674575805664 + ], + [ + "▁acyclovir", + -15.08167552947998 + ], + [ + "▁vehement", + -15.081684112548828 + ], + [ + "▁Characteristic", + -15.081685066223145 + ], + [ + "hock", + -15.081693649291992 + ], + [ + "risti", + -15.08170223236084 + ], + [ + "▁Allergic", + -15.08170223236084 + ], + [ + "▁Sanibel", + -15.081718444824219 + ], + [ + "▁Goulding", + -15.081730842590332 + ], + [ + "▁Interconnect", + -15.081757545471191 + ], + [ + "▁mutagenesis", + -15.0818452835083 + ], + [ + "よ", + -15.081868171691895 + ], + [ + "▁Alek", + -15.081899642944336 + ], + [ + "▁Scro", + -15.081907272338867 + ], + [ + "▁MPO", + -15.081929206848145 + ], + [ + "▁trudging", + -15.08193588256836 + ], + [ + "▁swooning", + -15.081936836242676 + ], + [ + "▁бы", + -15.081938743591309 + ], + [ + "▁DELIVER", + -15.0819730758667 + ], + [ + "▁Gremlin", + -15.081999778747559 + ], + [ + "▁Gustafson", + -15.082009315490723 + ], + [ + "▁SPONSOR", + -15.082032203674316 + ], + [ + "▁FACTORY", + -15.082038879394531 + ], + [ + "▁Translating", + -15.082069396972656 + ], + [ + "▁Bernhardt", + -15.082071304321289 + ], + [ + "▁FIAT", + -15.082079887390137 + ], + [ + "berlin", + -15.08211898803711 + ], + [ + "▁Phat", + -15.082120895385742 + ], + [ + "▁Muna", + -15.082149505615234 + ], + [ + "▁HEIGHT", + -15.082191467285156 + ], + [ + "resourced", + -15.082200050354004 + ], + [ + "▁Vandenberg", + -15.082208633422852 + ], + [ + "σι", + -15.082221984863281 + ], + [ + "barrier", + -15.082236289978027 + ], + [ + "▁Masked", + -15.082247734069824 + ], + [ + "▁proliferated", + -15.082255363464355 + ], + [ + "▁Styx", + -15.082277297973633 + ], + [ + "scored", + -15.082294464111328 + ], + [ + "boni", + -15.082331657409668 + ], + [ + "▁Cech", + -15.082358360290527 + ], + [ + "▁후", + -15.08237075805664 + ], + [ + "▁876", + -15.082415580749512 + ], + [ + "▁timeslot", + -15.082435607910156 + ], + [ + "▁playdate", + -15.08245849609375 + ], + [ + "▁Rajeev", + -15.082476615905762 + ], + [ + "▁Sudha", + -15.082483291625977 + ], + [ + "акт", + -15.082502365112305 + ], + [ + "▁costuming", + -15.082544326782227 + ], + [ + "▁Eminent", + -15.082547187805176 + ], + [ + "▁Straub", + -15.082612037658691 + ], + [ + "▁Dumpling", + -15.082613945007324 + ], + [ + "▁recyclers", + -15.08267879486084 + ], + [ + "▁Brownback", + -15.082694053649902 + ], + [ + "▁Pichai", + -15.082694053649902 + ], + [ + "▁primera", + -15.082717895507812 + ], + [ + "▁tromp", + -15.082730293273926 + ], + [ + "fau", + -15.082734107971191 + ], + [ + "Swedish", + -15.082776069641113 + ], + [ + "Centered", + -15.082778930664062 + ], + [ + "▁Argh", + -15.082871437072754 + ], + [ + "▁Bennie", + -15.082901000976562 + ], + [ + "▁BSL", + -15.08291244506836 + ], + [ + "MFA", + -15.082947731018066 + ], + [ + "▁musky", + -15.082962989807129 + ], + [ + "brass", + -15.08297348022461 + ], + [ + "angiogenic", + -15.082977294921875 + ], + [ + "▁Sherrod", + -15.082978248596191 + ], + [ + "tinyurl", + -15.082986831665039 + ], + [ + "PFA", + -15.082987785339355 + ], + [ + "▁fractious", + -15.083060264587402 + ], + [ + "▁Bowyer", + -15.08308219909668 + ], + [ + "▁Rabbinic", + -15.083094596862793 + ], + [ + "▁RSD", + -15.083128929138184 + ], + [ + "patra", + -15.083166122436523 + ], + [ + "Mae", + -15.083168983459473 + ], + [ + "▁Schna", + -15.083169937133789 + ], + [ + "▁Libert", + -15.083171844482422 + ], + [ + "▁Garrick", + -15.08317756652832 + ], + [ + "supposed", + -15.08319091796875 + ], + [ + "▁snorting", + -15.083213806152344 + ], + [ + "▁Gourd", + -15.083253860473633 + ], + [ + "▁Principality", + -15.083253860473633 + ], + [ + "▁Werth", + -15.083288192749023 + ], + [ + "▁Reardon", + -15.083295822143555 + ], + [ + "▁GPC", + -15.08330249786377 + ], + [ + "▁Esprit", + -15.083353042602539 + ], + [ + "▁Payless", + -15.083353042602539 + ], + [ + "▁EBSCO", + -15.08336067199707 + ], + [ + "▁Rockwood", + -15.083362579345703 + ], + [ + "bret", + -15.083434104919434 + ], + [ + "tetrahydro", + -15.083446502685547 + ], + [ + "▁Samaj", + -15.083447456359863 + ], + [ + "▁Tilbury", + -15.083492279052734 + ], + [ + "ITTING", + -15.083518028259277 + ], + [ + "▁ѕе", + -15.083605766296387 + ], + [ + "▁thwarting", + -15.083608627319336 + ], + [ + "▁rejoining", + -15.083619117736816 + ], + [ + "Dimensional", + -15.08363151550293 + ], + [ + "▁pulsation", + -15.083636283874512 + ], + [ + "▁discolor", + -15.083724021911621 + ], + [ + "itant", + -15.083768844604492 + ], + [ + "buff", + -15.083773612976074 + ], + [ + "▁Eckhart", + -15.083779335021973 + ], + [ + "piste", + -15.083799362182617 + ], + [ + "▁flipper", + -15.083805084228516 + ], + [ + "▁την", + -15.08381462097168 + ], + [ + "kunde", + -15.083840370178223 + ], + [ + "▁Hsieh", + -15.083845138549805 + ], + [ + "▁Malian", + -15.08385944366455 + ], + [ + "▁estado", + -15.083871841430664 + ], + [ + "Url", + -15.083880424499512 + ], + [ + "▁discontinuity", + -15.083887100219727 + ], + [ + "▁downgrading", + -15.083924293518066 + ], + [ + "▁applica", + -15.083940505981445 + ], + [ + "▁mio", + -15.083986282348633 + ], + [ + "depressants", + -15.083992004394531 + ], + [ + "▁trashcan", + -15.084012985229492 + ], + [ + "▁Obstet", + -15.08401870727539 + ], + [ + "▁Señor", + -15.084089279174805 + ], + [ + "▁livejasmin", + -15.084104537963867 + ], + [ + "▁unnaturally", + -15.084138870239258 + ], + [ + "controversial", + -15.0841646194458 + ], + [ + "▁Jeanine", + -15.084203720092773 + ], + [ + "공", + -15.08422565460205 + ], + [ + "▁greeter", + -15.084242820739746 + ], + [ + "tomato", + -15.084253311157227 + ], + [ + "Ralph", + -15.084306716918945 + ], + [ + "▁EYES", + -15.08432388305664 + ], + [ + "▁assailed", + -15.084357261657715 + ], + [ + "Marshall", + -15.084362030029297 + ], + [ + "▁€30", + -15.084418296813965 + ], + [ + "▁PPTP", + -15.084419250488281 + ], + [ + "▁NCBI", + -15.084441184997559 + ], + [ + "▁Shige", + -15.084464073181152 + ], + [ + "▁pooh", + -15.084498405456543 + ], + [ + "▁Sabathia", + -15.084528923034668 + ], + [ + "iliation", + -15.08456039428711 + ], + [ + "▁Pettis", + -15.084562301635742 + ], + [ + "▁fluidly", + -15.084576606750488 + ], + [ + "▁Tiberius", + -15.084600448608398 + ], + [ + "constrained", + -15.084609031677246 + ], + [ + "Shotgun", + -15.084620475769043 + ], + [ + "▁SETI", + -15.084626197814941 + ], + [ + "naughty", + -15.084632873535156 + ], + [ + "▁antisense", + -15.08470344543457 + ], + [ + "▁strategi", + -15.084712028503418 + ], + [ + "▁Cristal", + -15.084731101989746 + ], + [ + "▁Tropez", + -15.084756851196289 + ], + [ + "Kenya", + -15.08481502532959 + ], + [ + "중", + -15.084877967834473 + ], + [ + "сть", + -15.084919929504395 + ], + [ + "▁Priestess", + -15.08492374420166 + ], + [ + "▁Artikel", + -15.084927558898926 + ], + [ + "▁Jeni", + -15.084959983825684 + ], + [ + "▁Brier", + -15.08498477935791 + ], + [ + "▁accosted", + -15.085003852844238 + ], + [ + "▁Retrofit", + -15.085041046142578 + ], + [ + "▁Underperform", + -15.085043907165527 + ], + [ + "catalogue", + -15.08504581451416 + ], + [ + "▁Suzi", + -15.08506965637207 + ], + [ + "▁538532836498889", + -15.085091590881348 + ], + [ + "▁Schni", + -15.085119247436523 + ], + [ + "▁eval", + -15.085121154785156 + ], + [ + "attorney", + -15.085139274597168 + ], + [ + "▁Estee", + -15.085139274597168 + ], + [ + "▁GTP", + -15.085198402404785 + ], + [ + "▁Panelists", + -15.085236549377441 + ], + [ + "▁Mosi", + -15.085249900817871 + ], + [ + "Flyer", + -15.085256576538086 + ], + [ + "▁Urn", + -15.0852632522583 + ], + [ + "▁yap", + -15.085270881652832 + ], + [ + "Spice", + -15.085285186767578 + ], + [ + "▁CONGRATULATIONS", + -15.085323333740234 + ], + [ + "▁Incheon", + -15.085399627685547 + ], + [ + "▁Goel", + -15.085406303405762 + ], + [ + "▁Radioactive", + -15.08542537689209 + ], + [ + "▁entra", + -15.085431098937988 + ], + [ + "▁FALLS", + -15.085460662841797 + ], + [ + "▁KMS", + -15.085487365722656 + ], + [ + "▁SYM", + -15.085526466369629 + ], + [ + "▁startlingly", + -15.085540771484375 + ], + [ + "▁Zedong", + -15.085541725158691 + ], + [ + "▁lengthier", + -15.085559844970703 + ], + [ + "▁Ziv", + -15.085578918457031 + ], + [ + "illustrated", + -15.085620880126953 + ], + [ + "addicted", + -15.08564281463623 + ], + [ + "▁Magdalen", + -15.085667610168457 + ], + [ + "Troy", + -15.085692405700684 + ], + [ + "▁filmography", + -15.085716247558594 + ], + [ + "▁irrelevance", + -15.085775375366211 + ], + [ + "▁Flix", + -15.08581829071045 + ], + [ + "▁regul", + -15.085819244384766 + ], + [ + "க்க", + -15.085822105407715 + ], + [ + "▁SFX", + -15.085826873779297 + ], + [ + "▁Necessity", + -15.085846900939941 + ], + [ + "▁Envi", + -15.085855484008789 + ], + [ + "Advantage", + -15.085857391357422 + ], + [ + "▁Memorabilia", + -15.085861206054688 + ], + [ + "▁SENS", + -15.08586311340332 + ], + [ + "▁Medien", + -15.085871696472168 + ], + [ + "▁Ziploc", + -15.085908889770508 + ], + [ + "qiao", + -15.085927963256836 + ], + [ + "Hindi", + -15.085928916931152 + ], + [ + "▁Utterly", + -15.085929870605469 + ], + [ + "感", + -15.085943222045898 + ], + [ + "▁Colourful", + -15.085966110229492 + ], + [ + "▁EPF", + -15.085969924926758 + ], + [ + "▁benchtop", + -15.085969924926758 + ], + [ + "▁Rosebud", + -15.08602523803711 + ], + [ + "▁Convoy", + -15.086031913757324 + ], + [ + "▁Creditors", + -15.0860595703125 + ], + [ + "▁Rasta", + -15.086063385009766 + ], + [ + "▁shunning", + -15.086134910583496 + ], + [ + "▁Loughlin", + -15.086156845092773 + ], + [ + "▁né", + -15.086190223693848 + ], + [ + "▁Compress", + -15.086207389831543 + ], + [ + "▁Mamata", + -15.086227416992188 + ], + [ + "ouvert", + -15.086228370666504 + ], + [ + "▁Giorgi", + -15.086236000061035 + ], + [ + "▁DARE", + -15.0862455368042 + ], + [ + "▁nipping", + -15.086263656616211 + ], + [ + "CHEM", + -15.086286544799805 + ], + [ + "▁Blevins", + -15.086311340332031 + ], + [ + "▁CLL", + -15.086318969726562 + ], + [ + "▁headfirst", + -15.08633804321289 + ], + [ + "▁Columba", + -15.086353302001953 + ], + [ + "▁BIL", + -15.08636474609375 + ], + [ + "Header", + -15.086365699768066 + ], + [ + "▁beckon", + -15.086373329162598 + ], + [ + "▁demigod", + -15.086467742919922 + ], + [ + "engaging", + -15.086499214172363 + ], + [ + "аі", + -15.086499214172363 + ], + [ + "▁disincentive", + -15.086505889892578 + ], + [ + "icka", + -15.086560249328613 + ], + [ + "▁orthotic", + -15.086620330810547 + ], + [ + "▁Barrack", + -15.08663272857666 + ], + [ + "▁Sadr", + -15.086633682250977 + ], + [ + "▁Fallujah", + -15.086636543273926 + ], + [ + "▁Renée", + -15.086661338806152 + ], + [ + "garlic", + -15.086738586425781 + ], + [ + "▁Sistine", + -15.086759567260742 + ], + [ + "▁ROMAN", + -15.086785316467285 + ], + [ + "▁LPL", + -15.086856842041016 + ], + [ + "▁rheumatism", + -15.086864471435547 + ], + [ + "▁Energie", + -15.086865425109863 + ], + [ + "▁nä", + -15.08687973022461 + ], + [ + "▁Calo", + -15.086896896362305 + ], + [ + "Apparently", + -15.086899757385254 + ], + [ + "Vancouver", + -15.086909294128418 + ], + [ + "▁£55", + -15.086929321289062 + ], + [ + "▁Cosy", + -15.086992263793945 + ], + [ + "▁Cladding", + -15.087085723876953 + ], + [ + "▁rica", + -15.087120056152344 + ], + [ + "comparison", + -15.08713436126709 + ], + [ + "▁Meera", + -15.087148666381836 + ], + [ + "▁Stanislav", + -15.087150573730469 + ], + [ + "organize", + -15.087174415588379 + ], + [ + "▁Batchelor", + -15.087199211120605 + ], + [ + "▁shrunken", + -15.087202072143555 + ], + [ + "CITY", + -15.087204933166504 + ], + [ + "▁acquit", + -15.087214469909668 + ], + [ + "▁gagging", + -15.0872163772583 + ], + [ + "▁proced", + -15.0872163772583 + ], + [ + "▁Caff", + -15.087242126464844 + ], + [ + "▁Interceptor", + -15.087242126464844 + ], + [ + "▁gassed", + -15.087248802185059 + ], + [ + "france", + -15.087302207946777 + ], + [ + "Meanwhile", + -15.087325096130371 + ], + [ + "sprung", + -15.087328910827637 + ], + [ + "▁contorted", + -15.087336540222168 + ], + [ + "ufu", + -15.087350845336914 + ], + [ + "▁WGN", + -15.087374687194824 + ], + [ + "▁Marcell", + -15.087385177612305 + ], + [ + "ICD", + -15.087434768676758 + ], + [ + "▁Samuelson", + -15.087454795837402 + ], + [ + "▁KBB", + -15.087470054626465 + ], + [ + "▁Karolina", + -15.08751392364502 + ], + [ + "▁Ajayi", + -15.087515830993652 + ], + [ + "ebbe", + -15.087520599365234 + ], + [ + "▁reorient", + -15.087528228759766 + ], + [ + "▁Floridian", + -15.087529182434082 + ], + [ + "▁SHOOT", + -15.087538719177246 + ], + [ + "Impl", + -15.087547302246094 + ], + [ + "▁Eldon", + -15.08755111694336 + ], + [ + "mä", + -15.087554931640625 + ], + [ + "Baptiste", + -15.087571144104004 + ], + [ + "methylation", + -15.087615966796875 + ], + [ + "consult", + -15.087644577026367 + ], + [ + "▁1759", + -15.087677955627441 + ], + [ + "▁Jammeh", + -15.087695121765137 + ], + [ + "▁Evangeline", + -15.087719917297363 + ], + [ + "▁diazepam", + -15.087723731994629 + ], + [ + "▁limbic", + -15.087730407714844 + ], + [ + "ек", + -15.087732315063477 + ], + [ + "Witch", + -15.087743759155273 + ], + [ + "Corporation", + -15.087750434875488 + ], + [ + "▁TRAILER", + -15.087772369384766 + ], + [ + "Exhibit", + -15.087798118591309 + ], + [ + "▁TPH", + -15.087800025939941 + ], + [ + "▁microorganism", + -15.087824821472168 + ], + [ + "▁Vé", + -15.087831497192383 + ], + [ + "▁Nuance", + -15.08784294128418 + ], + [ + "▁Phineas", + -15.08784294128418 + ], + [ + "▁pretensions", + -15.087859153747559 + ], + [ + "▁semifinalist", + -15.087930679321289 + ], + [ + "spanning", + -15.087935447692871 + ], + [ + "▁dale", + -15.08797836303711 + ], + [ + "▁Akita", + -15.087982177734375 + ], + [ + "▁Hasina", + -15.0880126953125 + ], + [ + "▁interpretative", + -15.08802318572998 + ], + [ + "現", + -15.088075637817383 + ], + [ + "▁SCN", + -15.088083267211914 + ], + [ + "▁Brilliance", + -15.08808708190918 + ], + [ + "▁arrondissement", + -15.088101387023926 + ], + [ + "▁listserv", + -15.088104248046875 + ], + [ + "▁Camber", + -15.088139533996582 + ], + [ + "enchant", + -15.08817195892334 + ], + [ + "▁Beastie", + -15.088277816772461 + ], + [ + "【", + -15.088289260864258 + ], + [ + "▁angrier", + -15.088305473327637 + ], + [ + "turm", + -15.088318824768066 + ], + [ + "▁Katowice", + -15.088322639465332 + ], + [ + "▁Havilland", + -15.088348388671875 + ], + [ + "▁GTD", + -15.088359832763672 + ], + [ + "▁bonafide", + -15.088377952575684 + ], + [ + "▁brazenly", + -15.088385581970215 + ], + [ + "▁CONV", + -15.088391304016113 + ], + [ + "▁PITTSBURGH", + -15.088436126708984 + ], + [ + "▁mascarpone", + -15.088436126708984 + ], + [ + "imper", + -15.088458061218262 + ], + [ + "Pair", + -15.088459968566895 + ], + [ + "▁Cheesy", + -15.088489532470703 + ], + [ + "▁enameled", + -15.088517189025879 + ], + [ + "▁perennially", + -15.088520050048828 + ], + [ + "▁talons", + -15.088534355163574 + ], + [ + "Companies", + -15.08854866027832 + ], + [ + "▁EXPLO", + -15.088569641113281 + ], + [ + "▁Tubman", + -15.088570594787598 + ], + [ + "▁Photographed", + -15.088577270507812 + ], + [ + "▁Clen", + -15.088630676269531 + ], + [ + "▁Kour", + -15.08864974975586 + ], + [ + "▁Notion", + -15.088656425476074 + ], + [ + "▁SFI", + -15.088661193847656 + ], + [ + "CAG", + -15.088664054870605 + ], + [ + "▁Breeder", + -15.088700294494629 + ], + [ + "▁Newsome", + -15.088700294494629 + ], + [ + "および", + -15.088724136352539 + ], + [ + "▁writhe", + -15.088730812072754 + ], + [ + "▁Cycl", + -15.088783264160156 + ], + [ + "▁игр", + -15.088790893554688 + ], + [ + "tribution", + -15.088838577270508 + ], + [ + "▁Columb", + -15.088869094848633 + ], + [ + "▁Tyrrell", + -15.088869094848633 + ], + [ + "▁AMF", + -15.088872909545898 + ], + [ + "▁prise", + -15.088894844055176 + ], + [ + "ndro", + -15.08890151977539 + ], + [ + "ritu", + -15.088911056518555 + ], + [ + "記", + -15.088933944702148 + ], + [ + "ggler", + -15.08906364440918 + ], + [ + "Powered", + -15.089089393615723 + ], + [ + "▁pinto", + -15.089096069335938 + ], + [ + "▁Dik", + -15.089102745056152 + ], + [ + "▁abscesses", + -15.089102745056152 + ], + [ + "▁pik", + -15.089107513427734 + ], + [ + "▁viele", + -15.089109420776367 + ], + [ + "▁COUNTER", + -15.089140892028809 + ], + [ + "ESCO", + -15.08918285369873 + ], + [ + "streamed", + -15.089212417602539 + ], + [ + "▁cela", + -15.089255332946777 + ], + [ + "▁McCla", + -15.089295387268066 + ], + [ + "Detect", + -15.089309692382812 + ], + [ + "Loader", + -15.08931827545166 + ], + [ + "uban", + -15.089367866516113 + ], + [ + "▁UMBC", + -15.089377403259277 + ], + [ + "▁Schwei", + -15.089437484741211 + ], + [ + "aide", + -15.089449882507324 + ], + [ + "год", + -15.08946418762207 + ], + [ + "mounting", + -15.089470863342285 + ], + [ + "▁Difficulties", + -15.089495658874512 + ], + [ + "▁rouble", + -15.089500427246094 + ], + [ + "Creation", + -15.089522361755371 + ], + [ + "▁Osmosis", + -15.089530944824219 + ], + [ + "mpeg", + -15.089557647705078 + ], + [ + "Bust", + -15.08957290649414 + ], + [ + "YOUR", + -15.089573860168457 + ], + [ + "cimiento", + -15.089582443237305 + ], + [ + "kingdom", + -15.089641571044922 + ], + [ + "UAS", + -15.089646339416504 + ], + [ + "▁Raga", + -15.089654922485352 + ], + [ + "▁Treaties", + -15.089675903320312 + ], + [ + "▁CANCER", + -15.089688301086426 + ], + [ + "يد", + -15.089723587036133 + ], + [ + "▁Fultz", + -15.089733123779297 + ], + [ + "vitro", + -15.089749336242676 + ], + [ + "▁pelicans", + -15.089765548706055 + ], + [ + "▁dozing", + -15.089771270751953 + ], + [ + "Azur", + -15.08978271484375 + ], + [ + "▁subverted", + -15.089789390563965 + ], + [ + "▁Zoë", + -15.089792251586914 + ], + [ + "INR", + -15.089803695678711 + ], + [ + "▁Mochi", + -15.089808464050293 + ], + [ + "▁Eaves", + -15.089818954467773 + ], + [ + "proposal", + -15.089824676513672 + ], + [ + "▁Jahn", + -15.089845657348633 + ], + [ + "decoration", + -15.089898109436035 + ], + [ + "▁Verily", + -15.08991527557373 + ], + [ + "kua", + -15.089997291564941 + ], + [ + "▁festivity", + -15.090001106262207 + ], + [ + "▁Campfire", + -15.090008735656738 + ], + [ + "racetam", + -15.0900297164917 + ], + [ + "▁Viel", + -15.090030670166016 + ], + [ + "mundi", + -15.090035438537598 + ], + [ + "▁Turkic", + -15.090054512023926 + ], + [ + "▁Panetta", + -15.090062141418457 + ], + [ + "▁Hootsuite", + -15.090089797973633 + ], + [ + "▁exhaustively", + -15.090109825134277 + ], + [ + "▁debuff", + -15.090179443359375 + ], + [ + "▁Washable", + -15.090189933776855 + ], + [ + "UTR", + -15.090195655822754 + ], + [ + "▁grimly", + -15.09019947052002 + ], + [ + "vica", + -15.090216636657715 + ], + [ + "▁maintainable", + -15.090278625488281 + ], + [ + "▁Frommer", + -15.090290069580078 + ], + [ + "▁Tuan", + -15.090380668640137 + ], + [ + "▁interlaced", + -15.090381622314453 + ], + [ + "▁EXCHANGE", + -15.090392112731934 + ], + [ + "▁albuterol", + -15.090492248535156 + ], + [ + "uš", + -15.090513229370117 + ], + [ + "ciu", + -15.090540885925293 + ], + [ + "capella", + -15.090571403503418 + ], + [ + "▁twit", + -15.09061336517334 + ], + [ + "▁Pruning", + -15.0906400680542 + ], + [ + "▁Seco", + -15.0906400680542 + ], + [ + "CTE", + -15.09065055847168 + ], + [ + "▁Rhône", + -15.090673446655273 + ], + [ + "kovo", + -15.090688705444336 + ], + [ + "PMA", + -15.090729713439941 + ], + [ + "intrusive", + -15.090744972229004 + ], + [ + "▁ramparts", + -15.090787887573242 + ], + [ + "ycz", + -15.090829849243164 + ], + [ + "Bake", + -15.090839385986328 + ], + [ + "Pap", + -15.090852737426758 + ], + [ + "▁Erde", + -15.090853691101074 + ], + [ + "INN", + -15.09091567993164 + ], + [ + "Tha", + -15.090921401977539 + ], + [ + "▁kommen", + -15.090934753417969 + ], + [ + "▁Keychain", + -15.0909423828125 + ], + [ + "▁PNB", + -15.090957641601562 + ], + [ + "Ranger", + -15.090972900390625 + ], + [ + "▁deviating", + -15.09099292755127 + ], + [ + "▁tablescape", + -15.090997695922852 + ], + [ + "▁hampton", + -15.0910005569458 + ], + [ + "▁bibliographies", + -15.091032981872559 + ], + [ + "Brandon", + -15.09105110168457 + ], + [ + "vā", + -15.091083526611328 + ], + [ + "naki", + -15.091160774230957 + ], + [ + "▁calico", + -15.091172218322754 + ], + [ + "▁Tuned", + -15.091178894042969 + ], + [ + "▁Munger", + -15.091198921203613 + ], + [ + "BTS", + -15.091211318969727 + ], + [ + "▁Fishes", + -15.091275215148926 + ], + [ + "▁airlift", + -15.091286659240723 + ], + [ + "▁warez", + -15.09133243560791 + ], + [ + "▁Nila", + -15.091339111328125 + ], + [ + "▁flopping", + -15.091410636901855 + ], + [ + "▁proliferative", + -15.091410636901855 + ], + [ + "▁PVD", + -15.091423988342285 + ], + [ + "ों", + -15.091434478759766 + ], + [ + "▁Hardaway", + -15.091460227966309 + ], + [ + "▁Miyamoto", + -15.091462135314941 + ], + [ + "▁scoresheet", + -15.09146499633789 + ], + [ + "▁geochemical", + -15.091470718383789 + ], + [ + "chini", + -15.091471672058105 + ], + [ + "▁axonal", + -15.091471672058105 + ], + [ + "▁immunoassay", + -15.091472625732422 + ], + [ + "▁FEA", + -15.091496467590332 + ], + [ + "▁veri", + -15.091511726379395 + ], + [ + "▁thunderbolt", + -15.091559410095215 + ], + [ + "▁Proteus", + -15.091586112976074 + ], + [ + "▁knighted", + -15.091596603393555 + ], + [ + "skog", + -15.091675758361816 + ], + [ + "▁unaddressed", + -15.091718673706055 + ], + [ + "信息", + -15.091753005981445 + ], + [ + "DFW", + -15.091761589050293 + ], + [ + "▁unmotivated", + -15.09177017211914 + ], + [ + "▁topologies", + -15.091780662536621 + ], + [ + "▁dishonour", + -15.091817855834961 + ], + [ + "▁OMS", + -15.091841697692871 + ], + [ + "▁Weasel", + -15.091851234436035 + ], + [ + "▁Blan", + -15.091872215270996 + ], + [ + "▁ducting", + -15.091903686523438 + ], + [ + "TRU", + -15.091917991638184 + ], + [ + "▁Ruch", + -15.0919189453125 + ], + [ + "membership", + -15.091940879821777 + ], + [ + "▁ν", + -15.091952323913574 + ], + [ + "Chemistry", + -15.091975212097168 + ], + [ + "ariya", + -15.091984748840332 + ], + [ + "▁Krem", + -15.091988563537598 + ], + [ + "▁gambled", + -15.092037200927734 + ], + [ + "▁interbank", + -15.092071533203125 + ], + [ + "▁Welder", + -15.092092514038086 + ], + [ + "▁dimples", + -15.092100143432617 + ], + [ + "▁Starkey", + -15.092121124267578 + ], + [ + "Toggle", + -15.092132568359375 + ], + [ + "▁WONDER", + -15.092159271240234 + ], + [ + "▁Wishlist", + -15.092167854309082 + ], + [ + "▁IFTTT", + -15.092180252075195 + ], + [ + "▁NAO", + -15.092182159423828 + ], + [ + "▁finches", + -15.092198371887207 + ], + [ + "▁Colson", + -15.092209815979004 + ], + [ + "▁Cocoon", + -15.092229843139648 + ], + [ + "▁Lorca", + -15.092243194580078 + ], + [ + "▁Fawkes", + -15.092265129089355 + ], + [ + "▁694", + -15.092280387878418 + ], + [ + "▁cartography", + -15.092284202575684 + ], + [ + "▁serenade", + -15.092301368713379 + ], + [ + "▁Emergent", + -15.092307090759277 + ], + [ + "▁NPO", + -15.09231948852539 + ], + [ + "▁Stigma", + -15.092375755310059 + ], + [ + "oyer", + -15.092387199401855 + ], + [ + "▁Rocca", + -15.092398643493652 + ], + [ + "▁신", + -15.092403411865234 + ], + [ + "▁aliquot", + -15.092412948608398 + ], + [ + "metabolic", + -15.092427253723145 + ], + [ + "▁RAG", + -15.092442512512207 + ], + [ + "▁Swagger", + -15.092482566833496 + ], + [ + "▁Jaylen", + -15.092510223388672 + ], + [ + "KILL", + -15.092569351196289 + ], + [ + "Conservative", + -15.092574119567871 + ], + [ + "▁Sooo", + -15.092578887939453 + ], + [ + "Pea", + -15.092604637145996 + ], + [ + "Scot", + -15.092623710632324 + ], + [ + "ayer", + -15.092637062072754 + ], + [ + "▁recertification", + -15.092643737792969 + ], + [ + "▁stepwise", + -15.092644691467285 + ], + [ + "▁SSG", + -15.092647552490234 + ], + [ + "Counsel", + -15.092662811279297 + ], + [ + "▁marzipan", + -15.092669486999512 + ], + [ + "crate", + -15.092686653137207 + ], + [ + "▁Chaga", + -15.092763900756836 + ], + [ + "▁Macleod", + -15.092802047729492 + ], + [ + "▁Immersive", + -15.092816352844238 + ], + [ + "diva", + -15.09285831451416 + ], + [ + "▁molester", + -15.092879295349121 + ], + [ + "▁HARM", + -15.092900276184082 + ], + [ + "▁Pistachio", + -15.092918395996094 + ], + [ + "▁Omani", + -15.092924118041992 + ], + [ + "▁Spartacus", + -15.092928886413574 + ], + [ + "▁madison", + -15.092933654785156 + ], + [ + "نت", + -15.092970848083496 + ], + [ + "▁GameCube", + -15.09300422668457 + ], + [ + "▁Reims", + -15.093009948730469 + ], + [ + "losa", + -15.093012809753418 + ], + [ + "▁4096", + -15.093021392822266 + ], + [ + "▁graveside", + -15.093043327331543 + ], + [ + "▁WET", + -15.093047142028809 + ], + [ + "▁quesadillas", + -15.093047142028809 + ], + [ + "NAD", + -15.093062400817871 + ], + [ + "▁Unplugged", + -15.093084335327148 + ], + [ + "标", + -15.093132019042969 + ], + [ + "ividad", + -15.093149185180664 + ], + [ + "▁outmoded", + -15.093155860900879 + ], + [ + "▁Beloit", + -15.093172073364258 + ], + [ + "▁Ogg", + -15.093172073364258 + ], + [ + "NISH", + -15.093192100524902 + ], + [ + "▁skinning", + -15.093202590942383 + ], + [ + "▁methionine", + -15.093233108520508 + ], + [ + "gleich", + -15.093243598937988 + ], + [ + "▁Elissa", + -15.093244552612305 + ], + [ + "▁Saharan", + -15.09325122833252 + ], + [ + "▁Kage", + -15.093254089355469 + ], + [ + "▁Kalan", + -15.093260765075684 + ], + [ + "▁pouf", + -15.09326457977295 + ], + [ + "▁Brugge", + -15.093276977539062 + ], + [ + "▁Rangel", + -15.093287467956543 + ], + [ + "Xpress", + -15.093300819396973 + ], + [ + "alde", + -15.093324661254883 + ], + [ + "setzung", + -15.09334659576416 + ], + [ + "▁Nighthawk", + -15.09335708618164 + ], + [ + "coherence", + -15.0933837890625 + ], + [ + "▁Avoidance", + -15.093402862548828 + ], + [ + "ifik", + -15.09341049194336 + ], + [ + "▁bitty", + -15.093426704406738 + ], + [ + "▁GCHQ", + -15.093456268310547 + ], + [ + "▁Varda", + -15.093476295471191 + ], + [ + "receiver", + -15.093499183654785 + ], + [ + "▁Muertos", + -15.093503952026367 + ], + [ + "Eau", + -15.093620300292969 + ], + [ + "▁dissension", + -15.093652725219727 + ], + [ + "▁Renters", + -15.093655586242676 + ], + [ + "▁FFS", + -15.093669891357422 + ], + [ + "Valentine", + -15.093694686889648 + ], + [ + "▁Circum", + -15.093757629394531 + ], + [ + "▁capex", + -15.093799591064453 + ], + [ + "▁Hohen", + -15.093833923339844 + ], + [ + "▁regressed", + -15.093842506408691 + ], + [ + "Dea", + -15.093852996826172 + ], + [ + "▁Demir", + -15.093862533569336 + ], + [ + "▁Lucha", + -15.093879699707031 + ], + [ + "▁Cantwell", + -15.093951225280762 + ], + [ + "▁Nylander", + -15.093960762023926 + ], + [ + "Strat", + -15.093990325927734 + ], + [ + "▁HONOR", + -15.09399127960205 + ], + [ + "▁Knitted", + -15.094000816345215 + ], + [ + "▁Richman", + -15.094061851501465 + ], + [ + "▁prepay", + -15.094087600708008 + ], + [ + "Agostino", + -15.094095230102539 + ], + [ + "▁Navalny", + -15.094134330749512 + ], + [ + "▁Orphanage", + -15.094158172607422 + ], + [ + "▁Wafer", + -15.094165802001953 + ], + [ + "▁Peebles", + -15.094183921813965 + ], + [ + "affa", + -15.094191551208496 + ], + [ + "▁SAIL", + -15.094202041625977 + ], + [ + "Deliver", + -15.094209671020508 + ], + [ + "1884", + -15.094226837158203 + ], + [ + "▁Soriano", + -15.094259262084961 + ], + [ + "▁creased", + -15.094259262084961 + ], + [ + "▁Rangi", + -15.094278335571289 + ], + [ + "▁sniffle", + -15.09429931640625 + ], + [ + "CWA", + -15.094319343566895 + ], + [ + "▁antisemitic", + -15.094371795654297 + ], + [ + "▁Defra", + -15.094391822814941 + ], + [ + "incredible", + -15.094423294067383 + ], + [ + "▁creasing", + -15.094460487365723 + ], + [ + "rahim", + -15.094503402709961 + ], + [ + "▁Hemel", + -15.094503402709961 + ], + [ + "▁Geograph", + -15.094528198242188 + ], + [ + "క", + -15.094558715820312 + ], + [ + "▁Vitale", + -15.094558715820312 + ], + [ + "NPP", + -15.094597816467285 + ], + [ + "▁ORCID", + -15.094626426696777 + ], + [ + "▁Hittite", + -15.094643592834473 + ], + [ + "▁Flatiron", + -15.094660758972168 + ], + [ + "▁tempeh", + -15.094676971435547 + ], + [ + "ология", + -15.094695091247559 + ], + [ + "Opt", + -15.094703674316406 + ], + [ + "▁TREAT", + -15.094707489013672 + ], + [ + "▁Hellcat", + -15.094709396362305 + ], + [ + "▁DISEASE", + -15.094721794128418 + ], + [ + "ANTA", + -15.094743728637695 + ], + [ + "▁relapsing", + -15.094779968261719 + ], + [ + "tinen", + -15.094792366027832 + ], + [ + "▁Abdu", + -15.094794273376465 + ], + [ + "▁WannaCry", + -15.094795227050781 + ], + [ + "▁Trex", + -15.094817161560059 + ], + [ + "▁Alphonse", + -15.094866752624512 + ], + [ + "lsi", + -15.094867706298828 + ], + [ + "▁Munk", + -15.094879150390625 + ], + [ + "devel", + -15.09489917755127 + ], + [ + "看", + -15.094901084899902 + ], + [ + "▁Furlong", + -15.094934463500977 + ], + [ + "Czech", + -15.09496021270752 + ], + [ + "▁Duca", + -15.09500503540039 + ], + [ + "▁manera", + -15.095038414001465 + ], + [ + "▁cancelation", + -15.095040321350098 + ], + [ + "uncul", + -15.09505844116211 + ], + [ + "▁Hogarth", + -15.095091819763184 + ], + [ + "▁Toussaint", + -15.095101356506348 + ], + [ + "▁SPP", + -15.095108985900879 + ], + [ + "enthusiastic", + -15.095110893249512 + ], + [ + "pax", + -15.095149040222168 + ], + [ + "▁Husk", + -15.095152854919434 + ], + [ + "Explorer", + -15.095178604125977 + ], + [ + "▁macula", + -15.095178604125977 + ], + [ + "▁Goodison", + -15.095182418823242 + ], + [ + "▁Endowed", + -15.095190048217773 + ], + [ + "▁kevin", + -15.095196723937988 + ], + [ + "モ", + -15.095208168029785 + ], + [ + "▁impound", + -15.095223426818848 + ], + [ + "▁Abdulaziz", + -15.095233917236328 + ], + [ + "▁lleva", + -15.095237731933594 + ], + [ + "▁moronic", + -15.09524154663086 + ], + [ + "▁Datsun", + -15.095293045043945 + ], + [ + "να", + -15.095294952392578 + ], + [ + "Engineer", + -15.095311164855957 + ], + [ + "▁Mase", + -15.095314025878906 + ], + [ + "Haus", + -15.095325469970703 + ], + [ + "Cure", + -15.095338821411133 + ], + [ + "▁BioWare", + -15.095341682434082 + ], + [ + "▁undoubted", + -15.095353126525879 + ], + [ + "▁morgan", + -15.09537124633789 + ], + [ + "▁Priesthood", + -15.095422744750977 + ], + [ + "▁QSO", + -15.095431327819824 + ], + [ + "clearance", + -15.095437049865723 + ], + [ + "▁moyen", + -15.095480918884277 + ], + [ + "رة", + -15.09550666809082 + ], + [ + "▁cationic", + -15.095538139343262 + ], + [ + "▁Roush", + -15.095580101013184 + ], + [ + "▁Syne", + -15.09559154510498 + ], + [ + "▁oppo", + -15.095601081848145 + ], + [ + "▁Gazelle", + -15.095614433288574 + ], + [ + "Eddie", + -15.095627784729004 + ], + [ + "▁SFF", + -15.095635414123535 + ], + [ + "▁Capistrano", + -15.095643997192383 + ], + [ + "Maxim", + -15.095658302307129 + ], + [ + "robert", + -15.095707893371582 + ], + [ + "▁nadir", + -15.09571361541748 + ], + [ + "▁cheesecloth", + -15.095830917358398 + ], + [ + "▁Genghis", + -15.09583568572998 + ], + [ + "▁misshapen", + -15.095864295959473 + ], + [ + "▁Lupita", + -15.095921516418457 + ], + [ + "▁Hebrides", + -15.095926284790039 + ], + [ + "sanct", + -15.095932960510254 + ], + [ + "▁relinquishing", + -15.095935821533203 + ], + [ + "symmetry", + -15.095970153808594 + ], + [ + "▁Mauer", + -15.095977783203125 + ], + [ + "▁Hydrating", + -15.095983505249023 + ], + [ + "▁DOLLARS", + -15.095985412597656 + ], + [ + "▁RuPaul", + -15.09600830078125 + ], + [ + "▁Oooo", + -15.096015930175781 + ], + [ + "▁Vak", + -15.09602165222168 + ], + [ + "▁kurta", + -15.096024513244629 + ], + [ + "▁Dengue", + -15.096026420593262 + ], + [ + "▁Hyperloop", + -15.096075057983398 + ], + [ + "▁DEMAND", + -15.096092224121094 + ], + [ + "▁saintly", + -15.096095085144043 + ], + [ + "▁Hussey", + -15.096100807189941 + ], + [ + "▁और", + -15.096158027648926 + ], + [ + "ری", + -15.096196174621582 + ], + [ + "▁Lolo", + -15.096216201782227 + ], + [ + "responsibility", + -15.096220970153809 + ], + [ + "▁Lenoir", + -15.096222877502441 + ], + [ + "wetting", + -15.096243858337402 + ], + [ + "▁jeux", + -15.0962553024292 + ], + [ + "▁Shortest", + -15.096263885498047 + ], + [ + "Foxy", + -15.096273422241211 + ], + [ + "FOS", + -15.096294403076172 + ], + [ + "fairly", + -15.096302032470703 + ], + [ + "northern", + -15.09634017944336 + ], + [ + "▁пол", + -15.0963773727417 + ], + [ + "▁ENCODE", + -15.096416473388672 + ], + [ + "▁THOR", + -15.096461296081543 + ], + [ + "▁FEET", + -15.096470832824707 + ], + [ + "▁Hyg", + -15.096479415893555 + ], + [ + "った", + -15.096482276916504 + ], + [ + "atrix", + -15.096518516540527 + ], + [ + "▁Mulroney", + -15.096539497375488 + ], + [ + "わ", + -15.096556663513184 + ], + [ + "▁reconsidering", + -15.096589088439941 + ], + [ + "▁evaluative", + -15.096667289733887 + ], + [ + "FFE", + -15.096684455871582 + ], + [ + "▁Enormous", + -15.096745491027832 + ], + [ + "transplant", + -15.096748352050781 + ], + [ + "▁saj", + -15.09675121307373 + ], + [ + "▁Grecian", + -15.096802711486816 + ], + [ + "homogen", + -15.096822738647461 + ], + [ + "▁shackle", + -15.096829414367676 + ], + [ + "NOVA", + -15.096833229064941 + ], + [ + "▁Busse", + -15.096835136413574 + ], + [ + "Surely", + -15.096872329711914 + ], + [ + "▁Discipleship", + -15.09687614440918 + ], + [ + "▁Dartford", + -15.09689712524414 + ], + [ + "▁Nausea", + -15.096902847290039 + ], + [ + "▁cami", + -15.096931457519531 + ], + [ + "▁Fala", + -15.096951484680176 + ], + [ + "Shade", + -15.096981048583984 + ], + [ + "decrease", + -15.096986770629883 + ], + [ + "ksen", + -15.097046852111816 + ], + [ + "cevic", + -15.097108840942383 + ], + [ + "abwe", + -15.097111701965332 + ], + [ + "▁entrusting", + -15.097123146057129 + ], + [ + "▁Cloning", + -15.097184181213379 + ], + [ + "periodic", + -15.097187995910645 + ], + [ + "GLO", + -15.097198486328125 + ], + [ + "▁Brouwer", + -15.097222328186035 + ], + [ + "Nurse", + -15.097249984741211 + ], + [ + "provincial", + -15.097257614135742 + ], + [ + "▁dysentery", + -15.097274780273438 + ], + [ + "▁Betta", + -15.097286224365234 + ], + [ + "영", + -15.097296714782715 + ], + [ + "▁Informationen", + -15.097362518310547 + ], + [ + "cyclical", + -15.097406387329102 + ], + [ + "▁Bartley", + -15.09741497039795 + ], + [ + "▁Herodotus", + -15.09743595123291 + ], + [ + "▁painlessly", + -15.097455024719238 + ], + [ + "jib", + -15.097455978393555 + ], + [ + "▁Turnaround", + -15.097484588623047 + ], + [ + "▁conformist", + -15.097493171691895 + ], + [ + "▁idler", + -15.097529411315918 + ], + [ + "programme", + -15.097554206848145 + ], + [ + "▁vasectomy", + -15.09756088256836 + ], + [ + "ന", + -15.097611427307129 + ], + [ + "▁nationalized", + -15.097627639770508 + ], + [ + "▁primeval", + -15.097634315490723 + ], + [ + "▁Roadhouse", + -15.097635269165039 + ], + [ + "▁च", + -15.097638130187988 + ], + [ + "osyl", + -15.097667694091797 + ], + [ + "▁Eczema", + -15.097671508789062 + ], + [ + "hund", + -15.097691535949707 + ], + [ + "▁surfed", + -15.097721099853516 + ], + [ + "▁Hosni", + -15.097743034362793 + ], + [ + "amid", + -15.097753524780273 + ], + [ + "▁GOOGLE", + -15.097760200500488 + ], + [ + "▁NEST", + -15.097809791564941 + ], + [ + "▁midair", + -15.097821235656738 + ], + [ + "▁더", + -15.097822189331055 + ], + [ + "▁hungover", + -15.09783935546875 + ], + [ + "▁garbled", + -15.097880363464355 + ], + [ + "▁Serendipity", + -15.097891807556152 + ], + [ + "▁Kitsap", + -15.097977638244629 + ], + [ + "▁aircon", + -15.098021507263184 + ], + [ + "▁MAO", + -15.09804630279541 + ], + [ + "▁Brien", + -15.098047256469727 + ], + [ + "▁RESERVE", + -15.098176956176758 + ], + [ + "▁Koha", + -15.098194122314453 + ], + [ + "▁resourcing", + -15.098200798034668 + ], + [ + "▁الس", + -15.098201751708984 + ], + [ + "▁Mme", + -15.098210334777832 + ], + [ + "▁présent", + -15.098211288452148 + ], + [ + "abul", + -15.098255157470703 + ], + [ + "schooled", + -15.098258018493652 + ], + [ + "▁Basti", + -15.098272323608398 + ], + [ + "▁puis", + -15.098282814025879 + ], + [ + "▁OpenCL", + -15.098295211791992 + ], + [ + "▁UCB", + -15.098320007324219 + ], + [ + "emeyer", + -15.098405838012695 + ], + [ + "▁£800", + -15.098405838012695 + ], + [ + "Francis", + -15.098451614379883 + ], + [ + "▁Ethic", + -15.098451614379883 + ], + [ + "addressed", + -15.098465919494629 + ], + [ + "Arcy", + -15.098469734191895 + ], + [ + "greed", + -15.098493576049805 + ], + [ + "▁31⁄2", + -15.098516464233398 + ], + [ + "▁Lowcountry", + -15.098528861999512 + ], + [ + "▁Garo", + -15.098533630371094 + ], + [ + "1858", + -15.098540306091309 + ], + [ + "すること", + -15.098544120788574 + ], + [ + "▁theorizing", + -15.098567008972168 + ], + [ + "▁Kislyak", + -15.0985689163208 + ], + [ + "▁Arbitrator", + -15.098587036132812 + ], + [ + "▁decrypted", + -15.098631858825684 + ], + [ + "▁fei", + -15.09865951538086 + ], + [ + "▁Adebayo", + -15.09866714477539 + ], + [ + "bandwidth", + -15.098716735839844 + ], + [ + "▁unguarded", + -15.098745346069336 + ], + [ + "▁Telus", + -15.098764419555664 + ], + [ + "Important", + -15.098773002624512 + ], + [ + "▁Valdes", + -15.098786354064941 + ], + [ + "▁Drunken", + -15.098799705505371 + ], + [ + "▁confit", + -15.0988187789917 + ], + [ + "▁Dogwood", + -15.098845481872559 + ], + [ + "▁infernal", + -15.098873138427734 + ], + [ + "▁RESERVED", + -15.098925590515137 + ], + [ + "▁shoehorn", + -15.09893798828125 + ], + [ + "ogne", + -15.09896469116211 + ], + [ + "abilit", + -15.099016189575195 + ], + [ + "▁783", + -15.099058151245117 + ], + [ + "▁Swimwear", + -15.09906005859375 + ], + [ + "▁Concourse", + -15.099091529846191 + ], + [ + "▁Brecon", + -15.099105834960938 + ], + [ + "▁Dunno", + -15.099116325378418 + ], + [ + "▁HBS", + -15.099124908447266 + ], + [ + "imber", + -15.099132537841797 + ], + [ + "▁Devotional", + -15.099165916442871 + ], + [ + "▁PCE", + -15.099172592163086 + ], + [ + "ibber", + -15.099174499511719 + ], + [ + "▁Pushkin", + -15.099194526672363 + ], + [ + "▁pedophilia", + -15.099202156066895 + ], + [ + "kowitz", + -15.099221229553223 + ], + [ + "▁Yara", + -15.099249839782715 + ], + [ + "unite", + -15.099262237548828 + ], + [ + "ска", + -15.099268913269043 + ], + [ + "▁promulgate", + -15.099274635314941 + ], + [ + "Superman", + -15.099303245544434 + ], + [ + "▁Nyc", + -15.099326133728027 + ], + [ + "RAGE", + -15.099329948425293 + ], + [ + "▁Negev", + -15.099363327026367 + ], + [ + "▁Tze", + -15.09937858581543 + ], + [ + "buka", + -15.099392890930176 + ], + [ + "glyco", + -15.099505424499512 + ], + [ + "▁Crandall", + -15.09951114654541 + ], + [ + "frontal", + -15.09953498840332 + ], + [ + "fisted", + -15.099564552307129 + ], + [ + "▁PDU", + -15.099594116210938 + ], + [ + "▁bpm", + -15.099629402160645 + ], + [ + "▁sharpie", + -15.099629402160645 + ], + [ + "▁molto", + -15.099632263183594 + ], + [ + "▁Starfish", + -15.099666595458984 + ], + [ + "▁multiplexing", + -15.099681854248047 + ], + [ + "▁bueno", + -15.099687576293945 + ], + [ + "1857", + -15.099689483642578 + ], + [ + "atinib", + -15.099790573120117 + ], + [ + "shocking", + -15.099800109863281 + ], + [ + "▁depuis", + -15.099849700927734 + ], + [ + "▁ELEMENT", + -15.09985065460205 + ], + [ + "▁Ypres", + -15.099851608276367 + ], + [ + "▁layperson", + -15.099858283996582 + ], + [ + "▁Patanjali", + -15.099864959716797 + ], + [ + "▁Septuagint", + -15.099908828735352 + ], + [ + "▁Celgene", + -15.099935531616211 + ], + [ + "英", + -15.099979400634766 + ], + [ + "▁MADISON", + -15.09998607635498 + ], + [ + "▁техн", + -15.099987983703613 + ], + [ + "▁Attacking", + -15.100006103515625 + ], + [ + "Ruth", + -15.100040435791016 + ], + [ + "sporin", + -15.100043296813965 + ], + [ + "▁zipline", + -15.100043296813965 + ], + [ + "Restaurant", + -15.100052833557129 + ], + [ + "▁عن", + -15.100061416625977 + ], + [ + "unusual", + -15.10007095336914 + ], + [ + "▁Aurelius", + -15.100071907043457 + ], + [ + "▁PORTLAND", + -15.100080490112305 + ], + [ + "Lopez", + -15.10009765625 + ], + [ + "chalk", + -15.10013198852539 + ], + [ + "▁Mito", + -15.100141525268555 + ], + [ + "▁MAGAZINE", + -15.100159645080566 + ], + [ + "physis", + -15.100211143493652 + ], + [ + "вед", + -15.100213050842285 + ], + [ + "▁Warburg", + -15.100217819213867 + ], + [ + "▁1754", + -15.100226402282715 + ], + [ + "▁Marrakesh", + -15.100247383117676 + ], + [ + "üm", + -15.100264549255371 + ], + [ + "▁Arrington", + -15.100276947021484 + ], + [ + "▁slathered", + -15.100334167480469 + ], + [ + "ăn", + -15.100335121154785 + ], + [ + "▁Luma", + -15.10033893585205 + ], + [ + "WITH", + -15.100348472595215 + ], + [ + "▁Anterior", + -15.100421905517578 + ], + [ + "▁Sendai", + -15.100425720214844 + ], + [ + "minority", + -15.10042953491211 + ], + [ + "▁Lundy", + -15.100447654724121 + ], + [ + "▁libertarianism", + -15.100447654724121 + ], + [ + "▁Granby", + -15.10045051574707 + ], + [ + "bap", + -15.100513458251953 + ], + [ + "▁mujer", + -15.100557327270508 + ], + [ + "து", + -15.1005859375 + ], + [ + "▁Affective", + -15.10058879852295 + ], + [ + "ôme", + -15.100625038146973 + ], + [ + "▁chardonnay", + -15.100675582885742 + ], + [ + "▁Merrell", + -15.100760459899902 + ], + [ + "▁TRON", + -15.100817680358887 + ], + [ + "advocate", + -15.100830078125 + ], + [ + "▁כ", + -15.100837707519531 + ], + [ + "▁STICK", + -15.100861549377441 + ], + [ + "axi", + -15.100871086120605 + ], + [ + "▁Brenton", + -15.100874900817871 + ], + [ + "uju", + -15.100911140441895 + ], + [ + "▁flasher", + -15.100939750671387 + ], + [ + "▁Stamina", + -15.100942611694336 + ], + [ + "▁memoranda", + -15.100980758666992 + ], + [ + "書", + -15.101000785827637 + ], + [ + "▁ratcheting", + -15.101046562194824 + ], + [ + "▁Harmful", + -15.101067543029785 + ], + [ + "hori", + -15.101090431213379 + ], + [ + "▁midsummer", + -15.101123809814453 + ], + [ + "haji", + -15.101133346557617 + ], + [ + "▁WHM", + -15.10116958618164 + ], + [ + "Observ", + -15.101170539855957 + ], + [ + "Nerd", + -15.101179122924805 + ], + [ + "▁headscarf", + -15.101235389709473 + ], + [ + "▁Romulus", + -15.101250648498535 + ], + [ + "▁acheive", + -15.10126781463623 + ], + [ + "▁leva", + -15.101346969604492 + ], + [ + "Yard", + -15.10135555267334 + ], + [ + "▁multicolor", + -15.101371765136719 + ], + [ + "▁Schlumberger", + -15.101412773132324 + ], + [ + "▁appeasement", + -15.101438522338867 + ], + [ + "ṛ", + -15.101442337036133 + ], + [ + "▁wildness", + -15.101483345031738 + ], + [ + "▁conflagration", + -15.10150146484375 + ], + [ + "▁Warehousing", + -15.10153579711914 + ], + [ + "diner", + -15.10154914855957 + ], + [ + "내", + -15.101572036743164 + ], + [ + "Electrical", + -15.10158634185791 + ], + [ + "▁Skagit", + -15.101597785949707 + ], + [ + "▁Haight", + -15.101612091064453 + ], + [ + "▁ZenFone", + -15.101619720458984 + ], + [ + "▁marveling", + -15.101632118225098 + ], + [ + "▁Stéphane", + -15.101649284362793 + ], + [ + "kora", + -15.101705551147461 + ], + [ + "▁IMAGES", + -15.10171890258789 + ], + [ + "▁incineration", + -15.101737976074219 + ], + [ + "▁Snowmobile", + -15.101758003234863 + ], + [ + "▁Fiorentina", + -15.101767539978027 + ], + [ + "▁1603", + -15.101776123046875 + ], + [ + "▁abaout", + -15.101798057556152 + ], + [ + "IKO", + -15.101816177368164 + ], + [ + "▁AIB", + -15.101819038391113 + ], + [ + "antigen", + -15.101820945739746 + ], + [ + "오", + -15.101837158203125 + ], + [ + "▁refraining", + -15.101849555969238 + ], + [ + "dicator", + -15.101899147033691 + ], + [ + "osophy", + -15.101905822753906 + ], + [ + "▁Deniz", + -15.101919174194336 + ], + [ + "wanna", + -15.101972579956055 + ], + [ + "▁Torment", + -15.101973533630371 + ], + [ + "▁PULL", + -15.102021217346191 + ], + [ + "1879", + -15.10205078125 + ], + [ + "ysk", + -15.102058410644531 + ], + [ + "submarine", + -15.102069854736328 + ], + [ + "▁whirled", + -15.102082252502441 + ], + [ + "▁Tandy", + -15.102148056030273 + ], + [ + "▁parasympathetic", + -15.102157592773438 + ], + [ + "THY", + -15.102168083190918 + ], + [ + "▁opossum", + -15.10221004486084 + ], + [ + "▁flinched", + -15.102240562438965 + ], + [ + "▁foll", + -15.102251052856445 + ], + [ + "▁Vata", + -15.10225772857666 + ], + [ + "▁Allegedly", + -15.102267265319824 + ], + [ + "▁Sorenson", + -15.102267265319824 + ], + [ + "atron", + -15.102291107177734 + ], + [ + "▁TTP", + -15.102303504943848 + ], + [ + "▁McLennan", + -15.102328300476074 + ], + [ + "▁TELEVISION", + -15.102343559265137 + ], + [ + "▁Tehreek", + -15.102389335632324 + ], + [ + "▁Refrain", + -15.10240364074707 + ], + [ + "compound", + -15.10243034362793 + ], + [ + "▁FHD", + -15.102462768554688 + ], + [ + "▁Whitlock", + -15.102471351623535 + ], + [ + "▁Eka", + -15.102554321289062 + ], + [ + "SPL", + -15.102571487426758 + ], + [ + "uyu", + -15.102580070495605 + ], + [ + "Levi", + -15.102601051330566 + ], + [ + "▁Reggio", + -15.102622985839844 + ], + [ + "▁Skater", + -15.102643013000488 + ], + [ + "▁Rafferty", + -15.102655410766602 + ], + [ + "▁Weebly", + -15.102659225463867 + ], + [ + "QUEST", + -15.10268497467041 + ], + [ + "▁Merz", + -15.102705955505371 + ], + [ + "▁WSL", + -15.102705955505371 + ], + [ + "orex", + -15.102723121643066 + ], + [ + "▁desertion", + -15.102752685546875 + ], + [ + "▁slut", + -15.102766990661621 + ], + [ + "▁포함", + -15.102801322937012 + ], + [ + "jiro", + -15.102806091308594 + ], + [ + "▁judgemental", + -15.102823257446289 + ], + [ + "▁Toaster", + -15.1028470993042 + ], + [ + "▁Burglar", + -15.102852821350098 + ], + [ + "▁Sameer", + -15.10289478302002 + ], + [ + "▁Manicure", + -15.102904319763184 + ], + [ + "▁Mohegan", + -15.102910041809082 + ], + [ + "lager", + -15.102910995483398 + ], + [ + "▁Morpheus", + -15.102923393249512 + ], + [ + "1867", + -15.10293960571289 + ], + [ + "▁rampaging", + -15.103008270263672 + ], + [ + "▁Camara", + -15.103034019470215 + ], + [ + "▁Babo", + -15.10305404663086 + ], + [ + "▁wakefulness", + -15.103063583374023 + ], + [ + "▁Jazzy", + -15.103129386901855 + ], + [ + "TIE", + -15.103132247924805 + ], + [ + "▁perused", + -15.10313606262207 + ], + [ + "▁Kaleb", + -15.103137016296387 + ], + [ + "▁Gordy", + -15.103147506713867 + ], + [ + "▁ASG", + -15.103150367736816 + ], + [ + "ntia", + -15.103229522705078 + ], + [ + "othermic", + -15.103317260742188 + ], + [ + "▁SARA", + -15.103320121765137 + ], + [ + "Reduce", + -15.103333473205566 + ], + [ + "▁indisputably", + -15.103333473205566 + ], + [ + "▁ideologues", + -15.103357315063477 + ], + [ + "attr", + -15.103374481201172 + ], + [ + "▁Concours", + -15.103385925292969 + ], + [ + "▁Uran", + -15.1034517288208 + ], + [ + "CBI", + -15.103501319885254 + ], + [ + "▁Embo", + -15.103519439697266 + ], + [ + "▁Kilmarnock", + -15.103614807128906 + ], + [ + "▁Riedel", + -15.103636741638184 + ], + [ + "▁Patriarchate", + -15.103666305541992 + ], + [ + "Carry", + -15.103670120239258 + ], + [ + "Mystery", + -15.103675842285156 + ], + [ + "Olivia", + -15.1037015914917 + ], + [ + "ών", + -15.103717803955078 + ], + [ + "▁Freda", + -15.103730201721191 + ], + [ + "情", + -15.103731155395508 + ], + [ + "▁resuscitate", + -15.103796005249023 + ], + [ + "CEN", + -15.103830337524414 + ], + [ + "▁Digby", + -15.103840827941895 + ], + [ + "▁despotic", + -15.103865623474121 + ], + [ + "▁Preakness", + -15.103880882263184 + ], + [ + "▁Corman", + -15.103961944580078 + ], + [ + "▁yeshiva", + -15.103981971740723 + ], + [ + "▁HYDRO", + -15.104016304016113 + ], + [ + "▁understaffed", + -15.104018211364746 + ], + [ + "▁Dutchess", + -15.104026794433594 + ], + [ + "Silk", + -15.104028701782227 + ], + [ + "▁Suman", + -15.104057312011719 + ], + [ + "▁Shanta", + -15.104063987731934 + ], + [ + "gdal", + -15.104066848754883 + ], + [ + "lightweight", + -15.104124069213867 + ], + [ + "▁Blatter", + -15.104130744934082 + ], + [ + "Against", + -15.104192733764648 + ], + [ + "▁tuff", + -15.104201316833496 + ], + [ + "⇓", + -15.104206085205078 + ], + [ + "▁Hoyle", + -15.104230880737305 + ], + [ + "deaf", + -15.104239463806152 + ], + [ + "▁wringing", + -15.104249954223633 + ], + [ + "▁galvanize", + -15.104312896728516 + ], + [ + "▁HOD", + -15.104318618774414 + ], + [ + "▁tribalism", + -15.104321479797363 + ], + [ + "▁MATTHEW", + -15.104324340820312 + ], + [ + "▁Ladybug", + -15.1043701171875 + ], + [ + "Logan", + -15.104388236999512 + ], + [ + "Sai", + -15.10440731048584 + ], + [ + "▁zw", + -15.104452133178711 + ], + [ + "iolo", + -15.104460716247559 + ], + [ + "▁Bushwick", + -15.104475021362305 + ], + [ + "າ", + -15.104537010192871 + ], + [ + "▁samp", + -15.104555130004883 + ], + [ + "▁Isfahan", + -15.104561805725098 + ], + [ + "Cord", + -15.104586601257324 + ], + [ + "▁Realtek", + -15.104620933532715 + ], + [ + "▁camphor", + -15.104650497436523 + ], + [ + "planar", + -15.104670524597168 + ], + [ + "▁wakeup", + -15.104698181152344 + ], + [ + "▁furor", + -15.104714393615723 + ], + [ + "transmission", + -15.104721069335938 + ], + [ + "▁pontiff", + -15.104743003845215 + ], + [ + "▁bau", + -15.104743957519531 + ], + [ + "▁supervillain", + -15.104796409606934 + ], + [ + "▁Sustaining", + -15.104846954345703 + ], + [ + "▁Khali", + -15.104878425598145 + ], + [ + "▁TEACHER", + -15.10489273071289 + ], + [ + "▁pharmacologic", + -15.1049222946167 + ], + [ + "▁McVeigh", + -15.104947090148926 + ], + [ + "GUE", + -15.104950904846191 + ], + [ + "▁extroverted", + -15.104962348937988 + ], + [ + "▁Append", + -15.104973793029785 + ], + [ + "ancestry", + -15.10503101348877 + ], + [ + "着", + -15.10503101348877 + ], + [ + "▁PCH", + -15.105056762695312 + ], + [ + "reef", + -15.105071067810059 + ], + [ + "▁Gries", + -15.105107307434082 + ], + [ + "UPA", + -15.105114936828613 + ], + [ + "Auth", + -15.105120658874512 + ], + [ + "▁Gooch", + -15.105151176452637 + ], + [ + "▁Gorgon", + -15.105178833007812 + ], + [ + "▁backtracking", + -15.10518741607666 + ], + [ + "▁Kaden", + -15.105292320251465 + ], + [ + "▁Feli", + -15.105293273925781 + ], + [ + "ayya", + -15.10529613494873 + ], + [ + "▁steamship", + -15.105305671691895 + ], + [ + "banned", + -15.105315208435059 + ], + [ + "▁tormenting", + -15.105401039123535 + ], + [ + "bagger", + -15.105414390563965 + ], + [ + "Opportun", + -15.105438232421875 + ], + [ + "▁Ruthie", + -15.105447769165039 + ], + [ + "Arnold", + -15.105448722839355 + ], + [ + "▁hearse", + -15.105457305908203 + ], + [ + "textual", + -15.105473518371582 + ], + [ + "▁blubber", + -15.105485916137695 + ], + [ + "▁Osteoarthritis", + -15.105494499206543 + ], + [ + "▁OSB", + -15.105504989624023 + ], + [ + "▁NLR", + -15.105512619018555 + ], + [ + "▁paraben", + -15.105513572692871 + ], + [ + "▁begrudge", + -15.105539321899414 + ], + [ + "▁CIB", + -15.105544090270996 + ], + [ + "▁CSKA", + -15.105597496032715 + ], + [ + "▁MOP", + -15.105633735656738 + ], + [ + "▁SVT", + -15.105655670166016 + ], + [ + "▁Contingent", + -15.105673789978027 + ], + [ + "▁dreadlocks", + -15.10567855834961 + ], + [ + "▁microclimate", + -15.105680465698242 + ], + [ + "GENE", + -15.105718612670898 + ], + [ + "GAD", + -15.105738639831543 + ], + [ + "▁Relate", + -15.105738639831543 + ], + [ + "▁ferrite", + -15.105742454528809 + ], + [ + "▁Shaka", + -15.105745315551758 + ], + [ + "▁Strider", + -15.105746269226074 + ], + [ + "Than", + -15.105759620666504 + ], + [ + "▁Schlesinger", + -15.105795860290527 + ], + [ + "odder", + -15.105802536010742 + ], + [ + "▁Miser", + -15.10581111907959 + ], + [ + "▁Zhe", + -15.105813026428223 + ], + [ + "▁CRY", + -15.105862617492676 + ], + [ + "▁Ehlers", + -15.105866432189941 + ], + [ + "▁Puigdemont", + -15.105895042419434 + ], + [ + "beak", + -15.105905532836914 + ], + [ + "ति", + -15.10590934753418 + ], + [ + "cardial", + -15.105928421020508 + ], + [ + "▁Lyrical", + -15.10593032836914 + ], + [ + "▁caseworker", + -15.105937004089355 + ], + [ + "GUN", + -15.105941772460938 + ], + [ + "▁Deductible", + -15.105968475341797 + ], + [ + "agonist", + -15.106001853942871 + ], + [ + "chukwu", + -15.106006622314453 + ], + [ + "▁Ginkgo", + -15.10600757598877 + ], + [ + "▁receivership", + -15.10606575012207 + ], + [ + "▁varia", + -15.10607624053955 + ], + [ + "ирование", + -15.106087684631348 + ], + [ + "▁genteel", + -15.106101989746094 + ], + [ + "▁wainscoting", + -15.106122016906738 + ], + [ + "fano", + -15.106128692626953 + ], + [ + "▁Harriman", + -15.106139183044434 + ], + [ + "▁Strategically", + -15.106156349182129 + ], + [ + "▁Argentinean", + -15.106165885925293 + ], + [ + "▁GLE", + -15.106260299682617 + ], + [ + "▁GFS", + -15.106282234191895 + ], + [ + "▁INTERIOR", + -15.106282234191895 + ], + [ + "▁Papp", + -15.106307029724121 + ], + [ + "Finger", + -15.106322288513184 + ], + [ + "▁blaspheme", + -15.106325149536133 + ], + [ + "correctly", + -15.106330871582031 + ], + [ + "▁footboard", + -15.106353759765625 + ], + [ + "▁Curley", + -15.106372833251953 + ], + [ + "▁eschewed", + -15.106388092041016 + ], + [ + "▁furloughed", + -15.106424331665039 + ], + [ + "▁Dwarka", + -15.106430053710938 + ], + [ + "▁Genetically", + -15.106440544128418 + ], + [ + "▁Sasuke", + -15.106464385986328 + ], + [ + "Environment", + -15.106518745422363 + ], + [ + "▁Cather", + -15.10653018951416 + ], + [ + "▁Tantric", + -15.106562614440918 + ], + [ + "▁EAD", + -15.106565475463867 + ], + [ + "visiting", + -15.106614112854004 + ], + [ + "haku", + -15.106648445129395 + ], + [ + "veteran", + -15.106648445129395 + ], + [ + "OPEN", + -15.10665512084961 + ], + [ + "carbohydrate", + -15.106695175170898 + ], + [ + "▁Castlevania", + -15.106710433959961 + ], + [ + "▁Farnborough", + -15.106725692749023 + ], + [ + "CPE", + -15.106736183166504 + ], + [ + "▁Anhui", + -15.106745719909668 + ], + [ + "▁Tyga", + -15.106760025024414 + ], + [ + "ervo", + -15.106762886047363 + ], + [ + "▁gmc", + -15.106801986694336 + ], + [ + "ELEC", + -15.10687255859375 + ], + [ + "▁Gallic", + -15.106877326965332 + ], + [ + "▁1670", + -15.106897354125977 + ], + [ + "▁NordVPN", + -15.106900215148926 + ], + [ + "▁multiracial", + -15.106962203979492 + ], + [ + "▁PLANET", + -15.106966972351074 + ], + [ + "▁Profound", + -15.106975555419922 + ], + [ + "▁interjected", + -15.107016563415527 + ], + [ + "▁preeclampsia", + -15.107030868530273 + ], + [ + "▁Pliny", + -15.107038497924805 + ], + [ + "ferry", + -15.10705280303955 + ], + [ + "vick", + -15.107072830200195 + ], + [ + "▁Hino", + -15.10708236694336 + ], + [ + "▁Homosexual", + -15.107112884521484 + ], + [ + "inska", + -15.10716724395752 + ], + [ + "▁KOA", + -15.107170104980469 + ], + [ + "▁Alyson", + -15.107193946838379 + ], + [ + "wok", + -15.107194900512695 + ], + [ + "▁Meeker", + -15.107206344604492 + ], + [ + "Kil", + -15.107224464416504 + ], + [ + "Glam", + -15.107244491577148 + ], + [ + "▁ச", + -15.107251167297363 + ], + [ + "izio", + -15.10725212097168 + ], + [ + "RBA", + -15.10726261138916 + ], + [ + "▁Stine", + -15.107272148132324 + ], + [ + "▁Brickell", + -15.10727596282959 + ], + [ + "▁Underwriters", + -15.107388496398926 + ], + [ + "▁Burleigh", + -15.107470512390137 + ], + [ + "▁immobilize", + -15.107488632202148 + ], + [ + "▁Ocho", + -15.10751724243164 + ], + [ + "▁uploader", + -15.107532501220703 + ], + [ + "▁Resolute", + -15.107542037963867 + ], + [ + "▁Cowl", + -15.107542991638184 + ], + [ + "▁Swank", + -15.107544898986816 + ], + [ + "▁wedlock", + -15.10754680633545 + ], + [ + "▁Identical", + -15.107551574707031 + ], + [ + "▁polyphonic", + -15.10755729675293 + ], + [ + "zara", + -15.10761547088623 + ], + [ + "▁endeavoured", + -15.10765266418457 + ], + [ + "TCO", + -15.107688903808594 + ], + [ + "دي", + -15.107725143432617 + ], + [ + "▁overdoing", + -15.107730865478516 + ], + [ + "denominated", + -15.107816696166992 + ], + [ + "▁DeSoto", + -15.10782527923584 + ], + [ + "▁TMP", + -15.107829093933105 + ], + [ + "▁flanker", + -15.107831954956055 + ], + [ + "▁bubblegum", + -15.10784912109375 + ], + [ + "▁evan", + -15.107853889465332 + ], + [ + "▁netizens", + -15.107858657836914 + ], + [ + "▁squabbling", + -15.107897758483887 + ], + [ + "Macro", + -15.107905387878418 + ], + [ + "▁combina", + -15.107917785644531 + ], + [ + "▁Airsoft", + -15.107925415039062 + ], + [ + "duff", + -15.10793399810791 + ], + [ + "Mess", + -15.107950210571289 + ], + [ + "▁empathise", + -15.107955932617188 + ], + [ + "▁HomeAway", + -15.107973098754883 + ], + [ + "versary", + -15.107991218566895 + ], + [ + "▁surveil", + -15.108055114746094 + ], + [ + "▁indigen", + -15.108072280883789 + ], + [ + "▁mignon", + -15.108169555664062 + ], + [ + "supportive", + -15.108226776123047 + ], + [ + "▁breeches", + -15.10825252532959 + ], + [ + "▁blanked", + -15.108268737792969 + ], + [ + "▁Ivanhoe", + -15.108304023742676 + ], + [ + "▁TMT", + -15.108335494995117 + ], + [ + "▁jeg", + -15.10837173461914 + ], + [ + "▁Hornsby", + -15.108384132385254 + ], + [ + "▁Stamper", + -15.108386993408203 + ], + [ + "▁Hôtel", + -15.10843276977539 + ], + [ + "▁Grigor", + -15.108451843261719 + ], + [ + "▁Aberystwyth", + -15.108522415161133 + ], + [ + "▁Dachshund", + -15.108522415161133 + ], + [ + "▁DRAGON", + -15.108525276184082 + ], + [ + "emphasized", + -15.108582496643066 + ], + [ + "BPA", + -15.1085844039917 + ], + [ + "▁afferent", + -15.108675956726074 + ], + [ + "CVE", + -15.108682632446289 + ], + [ + "▁AKT", + -15.108687400817871 + ], + [ + "▁dramaturg", + -15.108715057373047 + ], + [ + "▁había", + -15.108756065368652 + ], + [ + "perceived", + -15.108787536621094 + ], + [ + "▁DEVELOP", + -15.10878849029541 + ], + [ + "curved", + -15.108790397644043 + ], + [ + "Celtic", + -15.108827590942383 + ], + [ + "▁Brexiteers", + -15.108829498291016 + ], + [ + "Utility", + -15.108843803405762 + ], + [ + "dropped", + -15.10888671875 + ], + [ + "▁SEBI", + -15.108893394470215 + ], + [ + "▁VoLTE", + -15.10890007019043 + ], + [ + "▁Ramones", + -15.108919143676758 + ], + [ + "▁Pye", + -15.10893726348877 + ], + [ + "▁accross", + -15.108939170837402 + ], + [ + "▁бо", + -15.108945846557617 + ], + [ + "utar", + -15.108948707580566 + ], + [ + "▁blimp", + -15.108983993530273 + ], + [ + "kesh", + -15.108989715576172 + ], + [ + "▁LeRoy", + -15.10901165008545 + ], + [ + "▁iBook", + -15.109021186828613 + ], + [ + "▁Frédéric", + -15.109042167663574 + ], + [ + "▁CRPF", + -15.109109878540039 + ], + [ + "▁Childers", + -15.109122276306152 + ], + [ + "▁cringing", + -15.109150886535645 + ], + [ + "▁HILLS", + -15.109166145324707 + ], + [ + "▁추", + -15.109176635742188 + ], + [ + "▁že", + -15.109189987182617 + ], + [ + "▁lycopene", + -15.109206199645996 + ], + [ + "CDP", + -15.109217643737793 + ], + [ + "▁Pomeranian", + -15.109278678894043 + ], + [ + "▁cartwheel", + -15.109309196472168 + ], + [ + "WALL", + -15.109320640563965 + ], + [ + "▁Nisar", + -15.109322547912598 + ], + [ + "▁Plover", + -15.109338760375977 + ], + [ + "▁disulfide", + -15.109338760375977 + ], + [ + "promo", + -15.109345436096191 + ], + [ + "▁için", + -15.109347343444824 + ], + [ + "▁Memento", + -15.10942554473877 + ], + [ + "▁Shastri", + -15.109435081481934 + ], + [ + "▁कि", + -15.109472274780273 + ], + [ + "overweight", + -15.109519958496094 + ], + [ + "▁spiraled", + -15.109543800354004 + ], + [ + "▁Andalucia", + -15.109549522399902 + ], + [ + "SOFT", + -15.109580039978027 + ], + [ + "具", + -15.109585762023926 + ], + [ + "▁katana", + -15.109602928161621 + ], + [ + "▁Cuz", + -15.109615325927734 + ], + [ + "▁Ourselves", + -15.109639167785645 + ], + [ + "▁Prohibited", + -15.109673500061035 + ], + [ + "▁specie", + -15.109673500061035 + ], + [ + "何", + -15.109694480895996 + ], + [ + "▁Winifred", + -15.109697341918945 + ], + [ + "▁Shillong", + -15.109712600708008 + ], + [ + "▁Atacama", + -15.109789848327637 + ], + [ + "imum", + -15.109793663024902 + ], + [ + "▁Shrew", + -15.109816551208496 + ], + [ + "▁misconstrued", + -15.109819412231445 + ], + [ + "▁Iniesta", + -15.109883308410645 + ], + [ + "phar", + -15.109893798828125 + ], + [ + "▁wiry", + -15.10991382598877 + ], + [ + "Ninja", + -15.10996150970459 + ], + [ + "▁imperious", + -15.10997486114502 + ], + [ + "▁instrumentalists", + -15.110041618347168 + ], + [ + "▁VMI", + -15.110044479370117 + ], + [ + "▁Coolest", + -15.110047340393066 + ], + [ + "▁Piyush", + -15.110054016113281 + ], + [ + "▁revolutionised", + -15.110092163085938 + ], + [ + "▁surmounted", + -15.110136032104492 + ], + [ + "▁Schä", + -15.110152244567871 + ], + [ + "▁kho", + -15.110172271728516 + ], + [ + "epithelial", + -15.110174179077148 + ], + [ + "▁nephropathy", + -15.110175132751465 + ], + [ + "referencing", + -15.110228538513184 + ], + [ + "▁693", + -15.110276222229004 + ], + [ + "▁Gagne", + -15.110291481018066 + ], + [ + "frequently", + -15.110340118408203 + ], + [ + "▁mcc", + -15.11034107208252 + ], + [ + "filtr", + -15.110357284545898 + ], + [ + "▁Manifestation", + -15.110384941101074 + ], + [ + "Beacon", + -15.110398292541504 + ], + [ + "▁BROOK", + -15.110403060913086 + ], + [ + "▁Tegan", + -15.110452651977539 + ], + [ + "SMART", + -15.110468864440918 + ], + [ + "▁braai", + -15.110508918762207 + ], + [ + "▁cosmonaut", + -15.110516548156738 + ], + [ + "▁dullness", + -15.110595703125 + ], + [ + "▁Waldman", + -15.110618591308594 + ], + [ + "TPP", + -15.110663414001465 + ], + [ + "▁KELLY", + -15.110664367675781 + ], + [ + "▁Bighorn", + -15.110675811767578 + ], + [ + "praise", + -15.110722541809082 + ], + [ + "hmi", + -15.110736846923828 + ], + [ + "Investment", + -15.110738754272461 + ], + [ + "▁sensitize", + -15.11079216003418 + ], + [ + "unting", + -15.110837936401367 + ], + [ + "▁DONALD", + -15.110864639282227 + ], + [ + "kelly", + -15.110918998718262 + ], + [ + "▁WHIT", + -15.110922813415527 + ], + [ + "radius", + -15.110966682434082 + ], + [ + "▁Yanni", + -15.110969543457031 + ], + [ + "▁Wacker", + -15.110994338989258 + ], + [ + "Owen", + -15.111048698425293 + ], + [ + "▁Vanda", + -15.111067771911621 + ], + [ + "▁Brynn", + -15.111091613769531 + ], + [ + "Aunt", + -15.111098289489746 + ], + [ + "solut", + -15.111119270324707 + ], + [ + "▁Schü", + -15.1111421585083 + ], + [ + "▁indivisible", + -15.111172676086426 + ], + [ + "르", + -15.111230850219727 + ], + [ + "▁Economical", + -15.111337661743164 + ], + [ + "▁Hanes", + -15.111373901367188 + ], + [ + "▁Ohh", + -15.111374855041504 + ], + [ + "▁unmitigated", + -15.111394882202148 + ], + [ + "▁wheelhouse", + -15.111483573913574 + ], + [ + "▁Safran", + -15.111489295959473 + ], + [ + "▁Hashanah", + -15.111499786376953 + ], + [ + "Kingdom", + -15.1115083694458 + ], + [ + "trump", + -15.111512184143066 + ], + [ + "▁CABLE", + -15.111550331115723 + ], + [ + "uuuu", + -15.111600875854492 + ], + [ + "kkad", + -15.111616134643555 + ], + [ + "▁Andrus", + -15.11163330078125 + ], + [ + "retroviral", + -15.111639022827148 + ], + [ + "enium", + -15.111644744873047 + ], + [ + "▁PROTECTION", + -15.11165714263916 + ], + [ + "href", + -15.111680030822754 + ], + [ + "▁Narita", + -15.1116943359375 + ], + [ + "▁BYO", + -15.11173152923584 + ], + [ + "icott", + -15.111756324768066 + ], + [ + "▁Rotunda", + -15.111760139465332 + ], + [ + "▁inattentive", + -15.111767768859863 + ], + [ + "wog", + -15.111800193786621 + ], + [ + "▁phytochemicals", + -15.11180305480957 + ], + [ + "Chrys", + -15.111812591552734 + ], + [ + "focusing", + -15.111824035644531 + ], + [ + "▁Reykjavík", + -15.111827850341797 + ], + [ + "▁iPhoto", + -15.111836433410645 + ], + [ + "▁fussed", + -15.111947059631348 + ], + [ + "czek", + -15.111993789672852 + ], + [ + "▁Bioethics", + -15.11201000213623 + ], + [ + "こ", + -15.112038612365723 + ], + [ + "embang", + -15.112068176269531 + ], + [ + "先", + -15.112092018127441 + ], + [ + "acqui", + -15.11209774017334 + ], + [ + "russia", + -15.11210823059082 + ], + [ + "▁privi", + -15.112141609191895 + ], + [ + "▁preceptor", + -15.112150192260742 + ], + [ + "Religion", + -15.112156867980957 + ], + [ + "▁tsar", + -15.112245559692383 + ], + [ + "▁Socceroos", + -15.1122465133667 + ], + [ + "▁Nutra", + -15.112286567687988 + ], + [ + "Typ", + -15.112316131591797 + ], + [ + "1864", + -15.112358093261719 + ], + [ + "▁inscrutable", + -15.112394332885742 + ], + [ + "ighton", + -15.11243724822998 + ], + [ + "▁Airdrie", + -15.112470626831055 + ], + [ + "▁Engler", + -15.112550735473633 + ], + [ + "▁Ordina", + -15.112617492675781 + ], + [ + "▁McCord", + -15.112628936767578 + ], + [ + "▁reclined", + -15.112655639648438 + ], + [ + "▁dermatological", + -15.112698554992676 + ], + [ + "▁Guaranty", + -15.11270809173584 + ], + [ + "▁neuroendocrine", + -15.112737655639648 + ], + [ + "1848", + -15.112810134887695 + ], + [ + "▁Republik", + -15.112823486328125 + ], + [ + "igle", + -15.11286449432373 + ], + [ + "▁Migos", + -15.112911224365234 + ], + [ + "▁scala", + -15.112956047058105 + ], + [ + "▁программ", + -15.11296272277832 + ], + [ + "▁songbirds", + -15.11296558380127 + ], + [ + "fana", + -15.112971305847168 + ], + [ + "▁Heisenberg", + -15.112977027893066 + ], + [ + "▁comparably", + -15.112998008728027 + ], + [ + "▁Gentoo", + -15.113003730773926 + ], + [ + "▁Cere", + -15.113086700439453 + ], + [ + "▁Libor", + -15.113104820251465 + ], + [ + "▁kindled", + -15.113137245178223 + ], + [ + "▁SAML", + -15.11319351196289 + ], + [ + "▁Lagarde", + -15.113201141357422 + ], + [ + "▁imbedded", + -15.113207817077637 + ], + [ + "hsa", + -15.1132173538208 + ], + [ + "▁palaeo", + -15.11325454711914 + ], + [ + "▁Locus", + -15.113255500793457 + ], + [ + "chtung", + -15.113271713256836 + ], + [ + "▁Foldable", + -15.11330795288086 + ], + [ + "▁refried", + -15.113351821899414 + ], + [ + "ские", + -15.113363265991211 + ], + [ + "smoked", + -15.113369941711426 + ], + [ + "▁Rupa", + -15.113397598266602 + ], + [ + "rgan", + -15.11342716217041 + ], + [ + "▁LOVING", + -15.113446235656738 + ], + [ + "▁Opting", + -15.11346435546875 + ], + [ + "▁Headphone", + -15.113497734069824 + ], + [ + "▁BILLION", + -15.113499641418457 + ], + [ + "▁draperies", + -15.11350154876709 + ], + [ + "▁Latinx", + -15.113511085510254 + ], + [ + "EYE", + -15.113526344299316 + ], + [ + "али", + -15.113536834716797 + ], + [ + "Tie", + -15.113539695739746 + ], + [ + "BORO", + -15.113638877868652 + ], + [ + "▁Splitting", + -15.113658905029297 + ], + [ + "▁Diehl", + -15.113663673400879 + ], + [ + "▁kB", + -15.113701820373535 + ], + [ + "akko", + -15.113716125488281 + ], + [ + "▁Absalom", + -15.113722801208496 + ], + [ + "Photograph", + -15.113723754882812 + ], + [ + "▁த", + -15.113739013671875 + ], + [ + "▁NEPA", + -15.113739967346191 + ], + [ + "▁shoemaker", + -15.113740921020508 + ], + [ + "▁luminescence", + -15.113744735717773 + ], + [ + "Junk", + -15.113747596740723 + ], + [ + "▁grungy", + -15.113767623901367 + ], + [ + "probability", + -15.113792419433594 + ], + [ + "Teach", + -15.113809585571289 + ], + [ + "▁Mesoamerican", + -15.113811492919922 + ], + [ + "▁capsaicin", + -15.113812446594238 + ], + [ + "▁Bork", + -15.113822937011719 + ], + [ + "▁blather", + -15.1138277053833 + ], + [ + "▁consummated", + -15.113842964172363 + ], + [ + "▁eReader", + -15.113842964172363 + ], + [ + "ynge", + -15.113845825195312 + ], + [ + "PMID", + -15.113869667053223 + ], + [ + "paired", + -15.113883018493652 + ], + [ + "Gap", + -15.113930702209473 + ], + [ + "▁wisconsin", + -15.113932609558105 + ], + [ + "▁Parallax", + -15.114008903503418 + ], + [ + "▁DIC", + -15.114026069641113 + ], + [ + "▁반", + -15.114026069641113 + ], + [ + "▁Tustin", + -15.114035606384277 + ], + [ + "▁xDrive", + -15.114039421081543 + ], + [ + "▁SAO", + -15.11417007446289 + ], + [ + "▁Panag", + -15.114246368408203 + ], + [ + "▁lethality", + -15.11428451538086 + ], + [ + "▁androgynous", + -15.114306449890137 + ], + [ + "▁Plath", + -15.114320755004883 + ], + [ + "▁russ", + -15.114320755004883 + ], + [ + "▁Wuxi", + -15.1143217086792 + ], + [ + "▁Nimble", + -15.114322662353516 + ], + [ + "▁GCS", + -15.114324569702148 + ], + [ + "NFC", + -15.114331245422363 + ], + [ + "кол", + -15.114405632019043 + ], + [ + "ská", + -15.11441421508789 + ], + [ + "▁Wittenberg", + -15.114423751831055 + ], + [ + "ijer", + -15.11444091796875 + ], + [ + "▁OBTAINED", + -15.114455223083496 + ], + [ + "SHOW", + -15.114468574523926 + ], + [ + "▁sequined", + -15.114492416381836 + ], + [ + "▁JCPenney", + -15.114500045776367 + ], + [ + "▁ALONE", + -15.114530563354492 + ], + [ + "▁WGS", + -15.114581108093262 + ], + [ + "▁Osho", + -15.114587783813477 + ], + [ + "▁igneous", + -15.11462116241455 + ], + [ + "Definitely", + -15.11463737487793 + ], + [ + "xxy", + -15.114656448364258 + ], + [ + "▁suc", + -15.114692687988281 + ], + [ + "▁Uzi", + -15.114727973937988 + ], + [ + "▁Esse", + -15.114761352539062 + ], + [ + "▁Taranaki", + -15.114811897277832 + ], + [ + "▁Sturridge", + -15.114828109741211 + ], + [ + "▁Aborigines", + -15.11484432220459 + ], + [ + "▁kein", + -15.114850997924805 + ], + [ + "forschung", + -15.114861488342285 + ], + [ + "▁laminar", + -15.11487865447998 + ], + [ + "▁overburdened", + -15.114884376525879 + ], + [ + "▁Blick", + -15.114910125732422 + ], + [ + "▁Browder", + -15.114913940429688 + ], + [ + "▁fatwa", + -15.11491870880127 + ], + [ + "▁ult", + -15.11492919921875 + ], + [ + "▁waddle", + -15.114935874938965 + ], + [ + "▁Harn", + -15.114956855773926 + ], + [ + "Yourself", + -15.1150484085083 + ], + [ + "▁centurion", + -15.115069389343262 + ], + [ + "ethane", + -15.115100860595703 + ], + [ + "▁sippy", + -15.115111351013184 + ], + [ + "ます", + -15.115141868591309 + ], + [ + "▁Birdman", + -15.11516284942627 + ], + [ + "▁OPPORTUNITY", + -15.115188598632812 + ], + [ + "▁पर", + -15.115195274353027 + ], + [ + "▁Langkawi", + -15.115203857421875 + ], + [ + "▁observatories", + -15.115203857421875 + ], + [ + "▁chucking", + -15.115208625793457 + ], + [ + "adopted", + -15.115235328674316 + ], + [ + "▁DUAL", + -15.115256309509277 + ], + [ + "▁cataloguing", + -15.115312576293945 + ], + [ + "пл", + -15.115321159362793 + ], + [ + "▁Eamon", + -15.115333557128906 + ], + [ + "northwest", + -15.115339279174805 + ], + [ + "▁Appoint", + -15.115345001220703 + ], + [ + "▁Swab", + -15.115346908569336 + ], + [ + "▁DCU", + -15.115347862243652 + ], + [ + "planted", + -15.115348815917969 + ], + [ + "Angle", + -15.115400314331055 + ], + [ + "▁CORR", + -15.115524291992188 + ], + [ + "▁Conceived", + -15.115549087524414 + ], + [ + "▁smidge", + -15.115601539611816 + ], + [ + "precise", + -15.115606307983398 + ], + [ + "▁subcategory", + -15.115628242492676 + ], + [ + "神", + -15.115635871887207 + ], + [ + "▁MEF", + -15.115667343139648 + ], + [ + "▁unsalted", + -15.115667343139648 + ], + [ + "▁PHYSICAL", + -15.115683555603027 + ], + [ + "▁Severino", + -15.115697860717773 + ], + [ + "▁raider", + -15.115727424621582 + ], + [ + "Detail", + -15.115768432617188 + ], + [ + "▁Borealis", + -15.115772247314453 + ], + [ + "▁Goggles", + -15.115782737731934 + ], + [ + "▁Dazzling", + -15.115801811218262 + ], + [ + "▁Clavi", + -15.115817070007324 + ], + [ + "▁tare", + -15.115839958190918 + ], + [ + "Imperial", + -15.11587905883789 + ], + [ + "▁Fahey", + -15.11589527130127 + ], + [ + "cdn", + -15.115915298461914 + ], + [ + "▁Rodolfo", + -15.116003036499023 + ], + [ + "Hail", + -15.116006851196289 + ], + [ + "▁expungement", + -15.116013526916504 + ], + [ + "Polar", + -15.116042137145996 + ], + [ + "▁Laney", + -15.116049766540527 + ], + [ + "Aye", + -15.116072654724121 + ], + [ + "▁Bretton", + -15.116092681884766 + ], + [ + "Leste", + -15.116125106811523 + ], + [ + "▁dispossessed", + -15.116141319274902 + ], + [ + "▁για", + -15.116217613220215 + ], + [ + "▁CAROL", + -15.116239547729492 + ], + [ + "▁prayerfully", + -15.116308212280273 + ], + [ + "▁Actuator", + -15.116344451904297 + ], + [ + "cuz", + -15.116409301757812 + ], + [ + "HHH", + -15.116463661193848 + ], + [ + "▁unlockable", + -15.116464614868164 + ], + [ + "▁Graduating", + -15.116521835327148 + ], + [ + "▁nanocomposite", + -15.11657428741455 + ], + [ + "oooooooooo", + -15.11658763885498 + ], + [ + "GCA", + -15.116657257080078 + ], + [ + "▁bullock", + -15.116713523864746 + ], + [ + "▁vasculature", + -15.116730690002441 + ], + [ + "▁ما", + -15.11677360534668 + ], + [ + "▁Uplift", + -15.116792678833008 + ], + [ + "▁Hokies", + -15.116843223571777 + ], + [ + "▁EUROPE", + -15.11684799194336 + ], + [ + "▁Externally", + -15.116848945617676 + ], + [ + "▁Tsun", + -15.116860389709473 + ], + [ + "valuation", + -15.116862297058105 + ], + [ + "▁posible", + -15.116865158081055 + ], + [ + "▁Kudlow", + -15.116877555847168 + ], + [ + "▁Zelen", + -15.116893768310547 + ], + [ + "schlag", + -15.116914749145508 + ], + [ + "▁Quirky", + -15.116929054260254 + ], + [ + "▁Andalusian", + -15.116936683654785 + ], + [ + "Missing", + -15.116983413696289 + ], + [ + "jí", + -15.116991996765137 + ], + [ + "Barcelona", + -15.117033004760742 + ], + [ + "▁Hakeem", + -15.117049217224121 + ], + [ + "▁bedridden", + -15.117086410522461 + ], + [ + "▁candidature", + -15.117100715637207 + ], + [ + "▁PHC", + -15.117111206054688 + ], + [ + "▁glorification", + -15.11713695526123 + ], + [ + "▁Bentham", + -15.117145538330078 + ], + [ + "▁rotatable", + -15.117175102233887 + ], + [ + "▁£32", + -15.117222785949707 + ], + [ + "▁penitentiary", + -15.117241859436035 + ], + [ + "▁sunlit", + -15.117242813110352 + ], + [ + "▁Dependence", + -15.11724853515625 + ], + [ + "▁Outward", + -15.117284774780273 + ], + [ + "재", + -15.117332458496094 + ], + [ + "▁Obsessive", + -15.11736011505127 + ], + [ + "zation", + -15.117362022399902 + ], + [ + "isca", + -15.117369651794434 + ], + [ + "▁Colley", + -15.117371559143066 + ], + [ + "▁Binocular", + -15.1173734664917 + ], + [ + "▁fluoresce", + -15.117382049560547 + ], + [ + "▁CAO", + -15.117403984069824 + ], + [ + "▁durian", + -15.117425918579102 + ], + [ + "busch", + -15.117441177368164 + ], + [ + "liang", + -15.117520332336426 + ], + [ + "从", + -15.117560386657715 + ], + [ + "▁Rosneft", + -15.117585182189941 + ], + [ + "SDK", + -15.117654800415039 + ], + [ + "▁Schoenberg", + -15.117657661437988 + ], + [ + "maiden", + -15.117658615112305 + ], + [ + "ENNY", + -15.117674827575684 + ], + [ + "▁Anurag", + -15.11767578125 + ], + [ + "literary", + -15.117713928222656 + ], + [ + "lā", + -15.117719650268555 + ], + [ + "▁Fehr", + -15.11772346496582 + ], + [ + "philosophy", + -15.117725372314453 + ], + [ + "▁Sanga", + -15.117732048034668 + ], + [ + "▁unix", + -15.117744445800781 + ], + [ + "▁solarium", + -15.1177978515625 + ], + [ + "▁Realtime", + -15.117818832397461 + ], + [ + "▁Piraeus", + -15.11784553527832 + ], + [ + "1878", + -15.117892265319824 + ], + [ + "▁Procedural", + -15.117900848388672 + ], + [ + "▁ENTERTAINMENT", + -15.11793041229248 + ], + [ + "Anal", + -15.117932319641113 + ], + [ + "Trouble", + -15.117934226989746 + ], + [ + "▁Sommelier", + -15.117936134338379 + ], + [ + "▁Gannett", + -15.11794376373291 + ], + [ + "assert", + -15.117962837219238 + ], + [ + "▁shul", + -15.11796760559082 + ], + [ + "▁Γ", + -15.117968559265137 + ], + [ + "▁Adreno", + -15.117974281311035 + ], + [ + "geographic", + -15.118027687072754 + ], + [ + "▁Ambro", + -15.118030548095703 + ], + [ + "▁Todos", + -15.118038177490234 + ], + [ + "▁selbst", + -15.1180419921875 + ], + [ + "▁Darrow", + -15.11806869506836 + ], + [ + "▁satisf", + -15.118094444274902 + ], + [ + "▁Vasily", + -15.118130683898926 + ], + [ + "nursing", + -15.118132591247559 + ], + [ + "▁Batgirl", + -15.118138313293457 + ], + [ + "plasmic", + -15.118159294128418 + ], + [ + "▁द", + -15.118173599243164 + ], + [ + "collector", + -15.118185997009277 + ], + [ + "▁Vivekananda", + -15.118186950683594 + ], + [ + "ysis", + -15.118197441101074 + ], + [ + "▁CREAM", + -15.11820125579834 + ], + [ + "▁Virginians", + -15.118292808532715 + ], + [ + "▁mariners", + -15.118313789367676 + ], + [ + "▁Canteen", + -15.118316650390625 + ], + [ + "▁UNP", + -15.118334770202637 + ], + [ + "▁underpass", + -15.118335723876953 + ], + [ + "▁Jinnah", + -15.118352890014648 + ], + [ + "ilar", + -15.118359565734863 + ], + [ + "▁rol", + -15.118364334106445 + ], + [ + "▁Warnock", + -15.118407249450684 + ], + [ + "▁Gambian", + -15.118412971496582 + ], + [ + "▁Kemal", + -15.118427276611328 + ], + [ + "▁McIl", + -15.118428230285645 + ], + [ + "▁Boleyn", + -15.118475914001465 + ], + [ + "😍", + -15.118487358093262 + ], + [ + "jka", + -15.118489265441895 + ], + [ + "leitung", + -15.118501663208008 + ], + [ + "▁Farrakhan", + -15.118531227111816 + ], + [ + "▁ndi", + -15.11854076385498 + ], + [ + "▁DTH", + -15.118545532226562 + ], + [ + "▁Meatballs", + -15.11856460571289 + ], + [ + "businesses", + -15.118666648864746 + ], + [ + "▁gingival", + -15.118715286254883 + ], + [ + "хо", + -15.118745803833008 + ], + [ + "▁idk", + -15.118767738342285 + ], + [ + "▁Albury", + -15.118768692016602 + ], + [ + "▁gebruik", + -15.11877155303955 + ], + [ + "▁Diagonal", + -15.11883544921875 + ], + [ + "▁Mpumalanga", + -15.11884593963623 + ], + [ + "▁Covina", + -15.118881225585938 + ], + [ + "▁winches", + -15.118898391723633 + ], + [ + "Inner", + -15.118910789489746 + ], + [ + "▁crevasse", + -15.118921279907227 + ], + [ + "▁Itinerary", + -15.118936538696289 + ], + [ + "▁cofactor", + -15.118939399719238 + ], + [ + "▁Bodo", + -15.118950843811035 + ], + [ + "ස", + -15.118983268737793 + ], + [ + "▁Acevedo", + -15.118996620178223 + ], + [ + "▁Cheeky", + -15.11904525756836 + ], + [ + "▁Depict", + -15.119112014770508 + ], + [ + "▁Fluorescence", + -15.119149208068848 + ], + [ + "bona", + -15.119154930114746 + ], + [ + "unen", + -15.11917495727539 + ], + [ + "▁screencast", + -15.119193077087402 + ], + [ + "▁ZAR", + -15.119253158569336 + ], + [ + "▁Porzingis", + -15.119266510009766 + ], + [ + "Planning", + -15.119304656982422 + ], + [ + "▁Vial", + -15.119322776794434 + ], + [ + "▁barbecued", + -15.119338989257812 + ], + [ + "Wesley", + -15.11936092376709 + ], + [ + "purity", + -15.119364738464355 + ], + [ + "▁Hakka", + -15.11937427520752 + ], + [ + "▁hauntingly", + -15.119382858276367 + ], + [ + "Written", + -15.119385719299316 + ], + [ + "▁Supremacy", + -15.119386672973633 + ], + [ + "▁Pennant", + -15.119439125061035 + ], + [ + "oligosaccharide", + -15.11948013305664 + ], + [ + "▁Swinney", + -15.119508743286133 + ], + [ + "▁Axios", + -15.119521141052246 + ], + [ + "▁plaudits", + -15.119612693786621 + ], + [ + "▁Cheadle", + -15.119613647460938 + ], + [ + "rattle", + -15.11961841583252 + ], + [ + "▁fonction", + -15.11964225769043 + ], + [ + "▁Ulti", + -15.119667053222656 + ], + [ + "▁westerners", + -15.11967658996582 + ], + [ + "fabrication", + -15.119705200195312 + ], + [ + "▁scrounge", + -15.119709014892578 + ], + [ + "▁irresponsibility", + -15.119735717773438 + ], + [ + "SOA", + -15.119747161865234 + ], + [ + "Minimum", + -15.119770050048828 + ], + [ + "▁Chipmunk", + -15.119792938232422 + ], + [ + "▁rectory", + -15.119799613952637 + ], + [ + "▁CISO", + -15.119808197021484 + ], + [ + "khu", + -15.119850158691406 + ], + [ + "▁defund", + -15.119871139526367 + ], + [ + "▁Multidisciplinary", + -15.119876861572266 + ], + [ + "▁Swenson", + -15.119901657104492 + ], + [ + "▁Tuba", + -15.119912147521973 + ], + [ + "glory", + -15.120001792907715 + ], + [ + "▁francophone", + -15.120017051696777 + ], + [ + "▁Scherzer", + -15.120022773742676 + ], + [ + "▁PAG", + -15.120061874389648 + ], + [ + "▁unseemly", + -15.120063781738281 + ], + [ + "▁WAF", + -15.120098114013672 + ], + [ + "Jasmin", + -15.12015438079834 + ], + [ + "▁Roop", + -15.12019157409668 + ], + [ + "tsuki", + -15.120234489440918 + ], + [ + "iren", + -15.120302200317383 + ], + [ + "▁Reclaim", + -15.120323181152344 + ], + [ + "ABE", + -15.120340347290039 + ], + [ + "cubic", + -15.120353698730469 + ], + [ + "▁survivorship", + -15.120353698730469 + ], + [ + "▁modifiable", + -15.120354652404785 + ], + [ + "▁Bovada", + -15.120368003845215 + ], + [ + "▁WRAP", + -15.120370864868164 + ], + [ + "▁Bhaskar", + -15.120491027832031 + ], + [ + "▁incipient", + -15.120491027832031 + ], + [ + "▁myosin", + -15.12054443359375 + ], + [ + "些", + -15.120562553405762 + ], + [ + "roading", + -15.120565414428711 + ], + [ + "pendant", + -15.120593070983887 + ], + [ + "▁delimited", + -15.120619773864746 + ], + [ + "▁Huskers", + -15.120635032653809 + ], + [ + "▁성", + -15.120641708374023 + ], + [ + "torch", + -15.120654106140137 + ], + [ + "▁Blown", + -15.120665550231934 + ], + [ + "▁Kathie", + -15.12070369720459 + ], + [ + "▁Whaley", + -15.120711326599121 + ], + [ + "▁Tocopherol", + -15.120739936828613 + ], + [ + "▁Univers", + -15.120750427246094 + ], + [ + "RAG", + -15.120757102966309 + ], + [ + "ත්", + -15.1207857131958 + ], + [ + "▁extenuating", + -15.1207857131958 + ], + [ + "▁Jabba", + -15.120805740356445 + ], + [ + "▁celtic", + -15.120820999145508 + ], + [ + "disciplined", + -15.120911598205566 + ], + [ + "▁repudiate", + -15.12093448638916 + ], + [ + "▁Kren", + -15.120953559875488 + ], + [ + "blick", + -15.120983123779297 + ], + [ + "▁Stormwater", + -15.12098503112793 + ], + [ + "▁Refusing", + -15.121025085449219 + ], + [ + "HRP", + -15.121134757995605 + ], + [ + "▁Vajpayee", + -15.121161460876465 + ], + [ + "▁Militar", + -15.121166229248047 + ], + [ + "▁LIBRARY", + -15.121172904968262 + ], + [ + "▁Analogue", + -15.121193885803223 + ], + [ + "▁burnish", + -15.12121295928955 + ], + [ + "▁Cloudera", + -15.121222496032715 + ], + [ + "یک", + -15.121231079101562 + ], + [ + "再", + -15.121264457702637 + ], + [ + "oxidation", + -15.121265411376953 + ], + [ + "uş", + -15.121310234069824 + ], + [ + "▁fishnet", + -15.121334075927734 + ], + [ + "▁DVC", + -15.121342658996582 + ], + [ + "▁suzuki", + -15.121346473693848 + ], + [ + "▁இ", + -15.121352195739746 + ], + [ + "Campbell", + -15.121355056762695 + ], + [ + "▁sorties", + -15.121397972106934 + ], + [ + "Budget", + -15.121420860290527 + ], + [ + "共", + -15.121438980102539 + ], + [ + "▁Davin", + -15.121441841125488 + ], + [ + "▁Suspicious", + -15.12146282196045 + ], + [ + "1863", + -15.121480941772461 + ], + [ + "▁circuses", + -15.121490478515625 + ], + [ + "▁Proxima", + -15.121513366699219 + ], + [ + "▁hypothetically", + -15.121527671813965 + ], + [ + "▁Elector", + -15.121567726135254 + ], + [ + "▁potties", + -15.121572494506836 + ], + [ + "▁happenstance", + -15.121601104736328 + ], + [ + "▁smi", + -15.12160587310791 + ], + [ + "fleur", + -15.121626853942871 + ], + [ + "▁BFG", + -15.1216459274292 + ], + [ + "▁preemption", + -15.121651649475098 + ], + [ + "▁wiretapping", + -15.121658325195312 + ], + [ + "▁Pancho", + -15.121723175048828 + ], + [ + "▁LTP", + -15.121769905090332 + ], + [ + "▁dublin", + -15.121782302856445 + ], + [ + "▁jotting", + -15.121809005737305 + ], + [ + "▁FLU", + -15.121830940246582 + ], + [ + "▁DCR", + -15.12190055847168 + ], + [ + "▁Gauri", + -15.12194538116455 + ], + [ + "▁Nong", + -15.121952056884766 + ], + [ + "ribbon", + -15.12197494506836 + ], + [ + "▁Bearer", + -15.12199592590332 + ], + [ + "▁CWD", + -15.1220064163208 + ], + [ + "Capture", + -15.122032165527344 + ], + [ + "cushion", + -15.122092247009277 + ], + [ + "▁millwork", + -15.122114181518555 + ], + [ + "▁Poehler", + -15.122148513793945 + ], + [ + "非", + -15.12217903137207 + ], + [ + "▁mj", + -15.12218189239502 + ], + [ + "ור", + -15.122186660766602 + ], + [ + "mayor", + -15.12219524383545 + ], + [ + "wavelength", + -15.1222505569458 + ], + [ + "▁Tapp", + -15.122262954711914 + ], + [ + "▁Repub", + -15.122318267822266 + ], + [ + "▁DCT", + -15.122328758239746 + ], + [ + "oozie", + -15.12233829498291 + ], + [ + "pumping", + -15.122339248657227 + ], + [ + "ную", + -15.122340202331543 + ], + [ + "▁Gelatin", + -15.122353553771973 + ], + [ + "▁satiate", + -15.122382164001465 + ], + [ + "▁pii", + -15.122469902038574 + ], + [ + "▁Waxman", + -15.122509002685547 + ], + [ + "▁brokering", + -15.12251091003418 + ], + [ + "▁jester", + -15.122514724731445 + ], + [ + "▁CATS", + -15.122600555419922 + ], + [ + "▁misjudged", + -15.122608184814453 + ], + [ + "WAL", + -15.122613906860352 + ], + [ + "▁goldsmith", + -15.122648239135742 + ], + [ + "▁Paschal", + -15.122662544250488 + ], + [ + "▁Beatriz", + -15.122686386108398 + ], + [ + "▁CoolSculpting", + -15.122713088989258 + ], + [ + "▁seducing", + -15.122719764709473 + ], + [ + "mason", + -15.122727394104004 + ], + [ + "▁parkour", + -15.122751235961914 + ], + [ + "▁misoprostol", + -15.122774124145508 + ], + [ + "▁Ried", + -15.122794151306152 + ], + [ + "Raybould", + -15.12285327911377 + ], + [ + "▁Roslyn", + -15.12285327911377 + ], + [ + "▁Bodyguard", + -15.122862815856934 + ], + [ + "Cinema", + -15.122885704040527 + ], + [ + "▁Severity", + -15.12291431427002 + ], + [ + "▁Astounding", + -15.122939109802246 + ], + [ + "▁Eldar", + -15.123053550720215 + ], + [ + "▁maximization", + -15.123059272766113 + ], + [ + "▁Linklater", + -15.12306022644043 + ], + [ + "ť", + -15.12307357788086 + ], + [ + "▁dismounted", + -15.123086929321289 + ], + [ + "vonne", + -15.123088836669922 + ], + [ + "▁Zaire", + -15.12310791015625 + ], + [ + "▁NUT", + -15.123136520385742 + ], + [ + "▁capitalised", + -15.123143196105957 + ], + [ + "oncology", + -15.123196601867676 + ], + [ + "▁Grod", + -15.123207092285156 + ], + [ + "▁lustful", + -15.123207092285156 + ], + [ + "▁Continuation", + -15.12321662902832 + ], + [ + "▁Dieu", + -15.123224258422852 + ], + [ + "▁Yaya", + -15.123229026794434 + ], + [ + "▁Meltzer", + -15.123250961303711 + ], + [ + "colombia", + -15.123268127441406 + ], + [ + "▁Whel", + -15.123270988464355 + ], + [ + "▁thymus", + -15.123275756835938 + ], + [ + "▁PGE", + -15.123320579528809 + ], + [ + "▁Globo", + -15.123331069946289 + ], + [ + "Sharon", + -15.123347282409668 + ], + [ + "▁heartened", + -15.123455047607422 + ], + [ + "ugal", + -15.123490333557129 + ], + [ + "▁Konta", + -15.123505592346191 + ], + [ + "▁Brocade", + -15.12350845336914 + ], + [ + "▁Trapper", + -15.123567581176758 + ], + [ + "Exclusive", + -15.123568534851074 + ], + [ + "▁biosecurity", + -15.123591423034668 + ], + [ + "▁Hubbell", + -15.123598098754883 + ], + [ + "UDA", + -15.123608589172363 + ], + [ + "付", + -15.123640060424805 + ], + [ + "▁Seminyak", + -15.123680114746094 + ], + [ + "▁Defiant", + -15.123697280883789 + ], + [ + "▁Purely", + -15.123697280883789 + ], + [ + "▁proscar", + -15.123711585998535 + ], + [ + "▁bilayer", + -15.123740196228027 + ], + [ + "▁carboxyl", + -15.12376594543457 + ], + [ + "▁Angolan", + -15.123770713806152 + ], + [ + "計", + -15.12377643585205 + ], + [ + "▁CPSC", + -15.12385368347168 + ], + [ + "▁Benelux", + -15.123881340026855 + ], + [ + "▁LabVIEW", + -15.123881340026855 + ], + [ + "PUT", + -15.123931884765625 + ], + [ + "▁1756", + -15.123933792114258 + ], + [ + "▁Warped", + -15.123945236206055 + ], + [ + "tieri", + -15.123957633972168 + ], + [ + "▁fractionation", + -15.123958587646484 + ], + [ + "▁Octane", + -15.123970985412598 + ], + [ + "▁MarketWatch", + -15.123978614807129 + ], + [ + "collision", + -15.12398910522461 + ], + [ + "▁ontologies", + -15.123995780944824 + ], + [ + "▁gleeful", + -15.124013900756836 + ], + [ + "▁brewpub", + -15.124019622802734 + ], + [ + "▁Nowak", + -15.124040603637695 + ], + [ + "▁Convicted", + -15.124048233032227 + ], + [ + "CUR", + -15.124053001403809 + ], + [ + "laki", + -15.12409496307373 + ], + [ + "▁fearlessness", + -15.12415885925293 + ], + [ + "Treasurer", + -15.124177932739258 + ], + [ + "▁Ornamental", + -15.124178886413574 + ], + [ + "▁798", + -15.12418270111084 + ], + [ + "Gau", + -15.124197006225586 + ], + [ + "▁revelry", + -15.1242036819458 + ], + [ + "▁celluloid", + -15.124282836914062 + ], + [ + "peptidase", + -15.124305725097656 + ], + [ + "▁chipmaker", + -15.124305725097656 + ], + [ + "▁SDCC", + -15.124308586120605 + ], + [ + "▁Oulu", + -15.124314308166504 + ], + [ + "phia", + -15.12433910369873 + ], + [ + "▁Vitro", + -15.124351501464844 + ], + [ + "▁FTT", + -15.124363899230957 + ], + [ + "▁Dottie", + -15.124396324157715 + ], + [ + "victory", + -15.124399185180664 + ], + [ + "▁Sohn", + -15.124482154846191 + ], + [ + "▁Timmins", + -15.124497413635254 + ], + [ + "opposite", + -15.124523162841797 + ], + [ + "▁GaN", + -15.124557495117188 + ], + [ + "▁감", + -15.124629974365234 + ], + [ + "~", + -15.12463092803955 + ], + [ + "▁Gnu", + -15.124656677246094 + ], + [ + "▁grup", + -15.124720573425293 + ], + [ + "▁Reli", + -15.124750137329102 + ], + [ + "▁Relish", + -15.124809265136719 + ], + [ + "Virgin", + -15.124813079833984 + ], + [ + "▁ident", + -15.124820709228516 + ], + [ + "▁Catharine", + -15.12482738494873 + ], + [ + "▁Cayuga", + -15.124828338623047 + ], + [ + "▁Abacus", + -15.124835014343262 + ], + [ + "Rolling", + -15.124911308288574 + ], + [ + "Sweety", + -15.12492561340332 + ], + [ + "▁diplomatically", + -15.124940872192383 + ], + [ + "AAT", + -15.124945640563965 + ], + [ + "▁Falconer", + -15.124996185302734 + ], + [ + "ITES", + -15.125003814697266 + ], + [ + "▁chronicler", + -15.125045776367188 + ], + [ + "▁Villagers", + -15.125064849853516 + ], + [ + "Kennedy", + -15.125091552734375 + ], + [ + "▁picnicking", + -15.125109672546387 + ], + [ + "▁Lavigne", + -15.125116348266602 + ], + [ + "ople", + -15.125170707702637 + ], + [ + "shko", + -15.125192642211914 + ], + [ + "bunny", + -15.125194549560547 + ], + [ + "▁Akram", + -15.125197410583496 + ], + [ + "▁Heide", + -15.125225067138672 + ], + [ + "▁Klum", + -15.125229835510254 + ], + [ + "Venus", + -15.125234603881836 + ], + [ + "▁STEVE", + -15.12524700164795 + ], + [ + "obscur", + -15.125285148620605 + ], + [ + "▁tatters", + -15.12531852722168 + ], + [ + "▁Jinx", + -15.125389099121094 + ], + [ + "inferior", + -15.125391960144043 + ], + [ + "▁checkerboard", + -15.12545394897461 + ], + [ + "▁Javi", + -15.125503540039062 + ], + [ + "▁Manitowoc", + -15.1255521774292 + ], + [ + "▁scro", + -15.125567436218262 + ], + [ + "▁SQU", + -15.125575065612793 + ], + [ + "JET", + -15.12558364868164 + ], + [ + "▁Tripathi", + -15.12562370300293 + ], + [ + "▁STAN", + -15.125628471374512 + ], + [ + "GOP", + -15.125636100769043 + ], + [ + "▁Henk", + -15.12569808959961 + ], + [ + "MUN", + -15.12570858001709 + ], + [ + "▁Gyeong", + -15.125767707824707 + ], + [ + "▁Feeney", + -15.125795364379883 + ], + [ + "▁certiorari", + -15.125839233398438 + ], + [ + "▁shtet", + -15.125884056091309 + ], + [ + "izada", + -15.12593936920166 + ], + [ + "▁Currencies", + -15.125965118408203 + ], + [ + "IVERS", + -15.125970840454102 + ], + [ + "infinite", + -15.12598991394043 + ], + [ + "meaningful", + -15.126079559326172 + ], + [ + "▁pumice", + -15.126081466674805 + ], + [ + "iidae", + -15.126083374023438 + ], + [ + "▁Kef", + -15.12608528137207 + ], + [ + "▁Homosexuality", + -15.1260986328125 + ], + [ + "▁healthiness", + -15.126111030578613 + ], + [ + "Merge", + -15.126132011413574 + ], + [ + "▁Defensively", + -15.126155853271484 + ], + [ + "▁bloodiest", + -15.12619686126709 + ], + [ + "월", + -15.126201629638672 + ], + [ + "UPE", + -15.126206398010254 + ], + [ + "▁Shocker", + -15.126222610473633 + ], + [ + "▁989", + -15.12624454498291 + ], + [ + "▁Kook", + -15.12626838684082 + ], + [ + "biography", + -15.126315116882324 + ], + [ + "▁Optimism", + -15.126338005065918 + ], + [ + "▁Nimrod", + -15.126350402832031 + ], + [ + "▁Restylane", + -15.126368522644043 + ], + [ + "▁barrio", + -15.126383781433105 + ], + [ + "▁untied", + -15.12640380859375 + ], + [ + "▁Bossier", + -15.126408576965332 + ], + [ + "inflected", + -15.126416206359863 + ], + [ + "einstein", + -15.126421928405762 + ], + [ + "▁decimate", + -15.126429557800293 + ], + [ + "SNAP", + -15.126483917236328 + ], + [ + "▁Paphos", + -15.126496315002441 + ], + [ + "URGE", + -15.126509666442871 + ], + [ + "▁Annuity", + -15.1265230178833 + ], + [ + "▁INSPIRE", + -15.12653923034668 + ], + [ + "▁industrialised", + -15.126544952392578 + ], + [ + "▁Auld", + -15.126556396484375 + ], + [ + "▁Tassel", + -15.126567840576172 + ], + [ + "WEN", + -15.126571655273438 + ], + [ + "▁somersault", + -15.126626014709473 + ], + [ + "ocal", + -15.12668228149414 + ], + [ + "▁proteome", + -15.126691818237305 + ], + [ + "▁Heroine", + -15.12669849395752 + ], + [ + "▁patenting", + -15.126702308654785 + ], + [ + "occasion", + -15.126710891723633 + ], + [ + "▁LISA", + -15.12675952911377 + ], + [ + "▁Haverford", + -15.126766204833984 + ], + [ + "▁Chauffeur", + -15.126776695251465 + ], + [ + "▁culpa", + -15.12678050994873 + ], + [ + "▁EURUSD", + -15.126787185668945 + ], + [ + "▁naivety", + -15.126791954040527 + ], + [ + "depot", + -15.12680721282959 + ], + [ + "▁Kraków", + -15.126870155334473 + ], + [ + "▁HCT", + -15.126912117004395 + ], + [ + "DPI", + -15.126914024353027 + ], + [ + "kwu", + -15.126914024353027 + ], + [ + "▁intersectional", + -15.126921653747559 + ], + [ + "▁Trommel", + -15.126924514770508 + ], + [ + "▁Huguenot", + -15.126928329467773 + ], + [ + "▁Shelburne", + -15.126943588256836 + ], + [ + "▁Haka", + -15.126945495605469 + ], + [ + "▁Cameroonian", + -15.126967430114746 + ], + [ + "jero", + -15.126974105834961 + ], + [ + "▁Rubinstein", + -15.127015113830566 + ], + [ + "▁exterminated", + -15.127073287963867 + ], + [ + "▁Husain", + -15.127089500427246 + ], + [ + "▁demonized", + -15.127096176147461 + ], + [ + "▁você", + -15.127098083496094 + ], + [ + "▁Kamer", + -15.127102851867676 + ], + [ + "实", + -15.12717342376709 + ], + [ + "▁Speedo", + -15.12719440460205 + ], + [ + "▁waterlogged", + -15.127208709716797 + ], + [ + "lush", + -15.127263069152832 + ], + [ + "POT", + -15.12727165222168 + ], + [ + "▁Tabasco", + -15.127274513244629 + ], + [ + "▁wile", + -15.127275466918945 + ], + [ + "▁Interventional", + -15.12734603881836 + ], + [ + "▁Activator", + -15.127362251281738 + ], + [ + "▁Superfood", + -15.1273832321167 + ], + [ + "▁Dividing", + -15.127389907836914 + ], + [ + "▁Ciao", + -15.127401351928711 + ], + [ + "▁flaunted", + -15.127410888671875 + ], + [ + "▁Muy", + -15.127427101135254 + ], + [ + "▁ConvertKit", + -15.12743091583252 + ], + [ + "▁Nyong", + -15.127460479736328 + ], + [ + "▁Centri", + -15.12746524810791 + ], + [ + "▁KOH", + -15.127469062805176 + ], + [ + "SMB", + -15.12748908996582 + ], + [ + "▁botox", + -15.12749195098877 + ], + [ + "▁Bhattacharya", + -15.127504348754883 + ], + [ + "▁Cecile", + -15.127538681030273 + ], + [ + "electricity", + -15.127592086791992 + ], + [ + "▁Chappelle", + -15.127595901489258 + ], + [ + "▁Tajik", + -15.127606391906738 + ], + [ + "▁Kotlin", + -15.127632141113281 + ], + [ + "▁TRAFFIC", + -15.127670288085938 + ], + [ + "▁begets", + -15.127695083618164 + ], + [ + "▁ECONOMIC", + -15.127731323242188 + ], + [ + "▁SUGAR", + -15.1277437210083 + ], + [ + "▁Zong", + -15.127764701843262 + ], + [ + "▁pedophiles", + -15.127765655517578 + ], + [ + "▁Muggle", + -15.127808570861816 + ], + [ + "▁Dialysis", + -15.127835273742676 + ], + [ + "▁declaratory", + -15.127838134765625 + ], + [ + "Turbo", + -15.127842903137207 + ], + [ + "▁direkt", + -15.12788200378418 + ], + [ + "▁Kansai", + -15.127900123596191 + ], + [ + "▁Hickenlooper", + -15.12794303894043 + ], + [ + "▁Entomology", + -15.127943992614746 + ], + [ + "▁RST", + -15.127944946289062 + ], + [ + "▁배", + -15.127944946289062 + ], + [ + "▁Beulah", + -15.12796401977539 + ], + [ + "▁undercooked", + -15.127971649169922 + ], + [ + "▁zirconium", + -15.127983093261719 + ], + [ + "▁BOGO", + -15.128000259399414 + ], + [ + "▁vnto", + -15.128010749816895 + ], + [ + "fictional", + -15.128060340881348 + ], + [ + "▁triumphal", + -15.128060340881348 + ], + [ + "▁Sileka", + -15.128092765808105 + ], + [ + "▁Caputo", + -15.128119468688965 + ], + [ + "▁Murthy", + -15.128120422363281 + ], + [ + "▁Conveyancing", + -15.128157615661621 + ], + [ + "FFF", + -15.128225326538086 + ], + [ + "chara", + -15.128233909606934 + ], + [ + "▁lua", + -15.128236770629883 + ], + [ + "▁scrutinised", + -15.128260612487793 + ], + [ + "▁Arba", + -15.128271102905273 + ], + [ + "▁Intercom", + -15.128300666809082 + ], + [ + "▁Burlingame", + -15.128353118896484 + ], + [ + "dialysis", + -15.128355026245117 + ], + [ + "dronate", + -15.128364562988281 + ], + [ + "iversary", + -15.128453254699707 + ], + [ + "▁CYC", + -15.12851333618164 + ], + [ + "▁цен", + -15.128546714782715 + ], + [ + "geld", + -15.128552436828613 + ], + [ + "▁hummed", + -15.128593444824219 + ], + [ + "▁RICHMOND", + -15.128595352172852 + ], + [ + "▁Kiz", + -15.128637313842773 + ], + [ + "▁dogfight", + -15.12877368927002 + ], + [ + "RIST", + -15.128778457641602 + ], + [ + "▁PREVENT", + -15.128805160522461 + ], + [ + "▁INCREDIBLE", + -15.12880802154541 + ], + [ + "▁subterfuge", + -15.128837585449219 + ], + [ + "Penny", + -15.12887954711914 + ], + [ + "protesters", + -15.12890911102295 + ], + [ + "▁Outrage", + -15.128922462463379 + ], + [ + "▁Encompass", + -15.128936767578125 + ], + [ + "Explore", + -15.128944396972656 + ], + [ + "▁waterslide", + -15.12895679473877 + ], + [ + "▁Separated", + -15.128972053527832 + ], + [ + "Cotton", + -15.128983497619629 + ], + [ + "▁monogamy", + -15.128997802734375 + ], + [ + "▁proscribed", + -15.129046440124512 + ], + [ + "▁decrying", + -15.129047393798828 + ], + [ + "▁sublingual", + -15.129064559936523 + ], + [ + "▁gynecological", + -15.129068374633789 + ], + [ + "angular", + -15.129096031188965 + ], + [ + "▁Arcana", + -15.129134178161621 + ], + [ + "personality", + -15.129185676574707 + ], + [ + "▁equanimity", + -15.129293441772461 + ], + [ + "Gha", + -15.129319190979004 + ], + [ + "▁windproof", + -15.129326820373535 + ], + [ + "▁DAG", + -15.129338264465332 + ], + [ + "▁slotting", + -15.129365921020508 + ], + [ + "ilities", + -15.129401206970215 + ], + [ + "▁prolongation", + -15.129417419433594 + ], + [ + "albumin", + -15.129430770874023 + ], + [ + "▁Audra", + -15.129449844360352 + ], + [ + "▁framers", + -15.129460334777832 + ], + [ + "▁catechism", + -15.129475593566895 + ], + [ + "allergenic", + -15.129483222961426 + ], + [ + "▁Zorn", + -15.129497528076172 + ], + [ + "▁plac", + -15.12951374053955 + ], + [ + "▁lurched", + -15.1295166015625 + ], + [ + "▁Megatron", + -15.129541397094727 + ], + [ + "▁Bruna", + -15.129559516906738 + ], + [ + "▁splutter", + -15.129581451416016 + ], + [ + "▁Paradoxically", + -15.12960433959961 + ], + [ + "▁uppercut", + -15.129613876342773 + ], + [ + "وق", + -15.129621505737305 + ], + [ + "dijk", + -15.129631042480469 + ], + [ + "▁Anthropological", + -15.12967586517334 + ], + [ + "▁dulled", + -15.129693984985352 + ], + [ + "▁pummeled", + -15.129716873168945 + ], + [ + "▁Caritas", + -15.12973403930664 + ], + [ + "▁Jinan", + -15.129773139953613 + ], + [ + "Canon", + -15.12977409362793 + ], + [ + "▁Hollander", + -15.129815101623535 + ], + [ + "Famous", + -15.12983226776123 + ], + [ + "▁Nacht", + -15.12985610961914 + ], + [ + "▁NDS", + -15.129873275756836 + ], + [ + "▁NDT", + -15.129894256591797 + ], + [ + "▁Lindo", + -15.12990665435791 + ], + [ + "▁Aedes", + -15.129916191101074 + ], + [ + "Garcia", + -15.129929542541504 + ], + [ + "▁SENSE", + -15.129935264587402 + ], + [ + "▁microdermabrasion", + -15.129976272583008 + ], + [ + "knuckle", + -15.129980087280273 + ], + [ + "millimeter", + -15.12998104095459 + ], + [ + "▁Как", + -15.130026817321777 + ], + [ + "▁spotlighting", + -15.130032539367676 + ], + [ + "aniya", + -15.130069732666016 + ], + [ + "guet", + -15.130070686340332 + ], + [ + "▁Jacobi", + -15.130075454711914 + ], + [ + "▁raspy", + -15.130111694335938 + ], + [ + "قا", + -15.130145072937012 + ], + [ + "▁Bansal", + -15.130179405212402 + ], + [ + "▁Negroes", + -15.130179405212402 + ], + [ + "▁dialer", + -15.130187034606934 + ], + [ + "▁Hammerstein", + -15.130196571350098 + ], + [ + "▁Paducah", + -15.130204200744629 + ], + [ + "▁derecho", + -15.130221366882324 + ], + [ + "▁herniation", + -15.1302490234375 + ], + [ + "▁SPARC", + -15.130252838134766 + ], + [ + "regarding", + -15.130266189575195 + ], + [ + "▁starlight", + -15.130269050598145 + ], + [ + "lovin", + -15.130298614501953 + ], + [ + "Ebony", + -15.1303129196167 + ], + [ + "▁Arthurian", + -15.130322456359863 + ], + [ + "با", + -15.130348205566406 + ], + [ + "▁Thirsty", + -15.130352020263672 + ], + [ + "▁farrier", + -15.130379676818848 + ], + [ + "▁bugle", + -15.130409240722656 + ], + [ + "▁Sutcliffe", + -15.130419731140137 + ], + [ + "iswa", + -15.130420684814453 + ], + [ + "▁schön", + -15.1304292678833 + ], + [ + "Mhz", + -15.130433082580566 + ], + [ + "▁Cyclic", + -15.130436897277832 + ], + [ + "gende", + -15.130468368530273 + ], + [ + "▁Greenleaf", + -15.130477905273438 + ], + [ + "▁Honoring", + -15.130483627319336 + ], + [ + "▁SCENE", + -15.130500793457031 + ], + [ + "▁Oldenburg", + -15.130502700805664 + ], + [ + "▁Ш", + -15.130536079406738 + ], + [ + "▁Razorbacks", + -15.130558967590332 + ], + [ + "eş", + -15.130589485168457 + ], + [ + "▁haywire", + -15.130608558654785 + ], + [ + "ozyme", + -15.130622863769531 + ], + [ + "marble", + -15.130633354187012 + ], + [ + "▁animus", + -15.130661964416504 + ], + [ + "▁Alfresco", + -15.130681037902832 + ], + [ + "▁tig", + -15.130683898925781 + ], + [ + "▁sterilise", + -15.130691528320312 + ], + [ + "▁Arabica", + -15.13076400756836 + ], + [ + "▁Shashi", + -15.13085651397705 + ], + [ + "▁Φ", + -15.13087272644043 + ], + [ + "▁Gland", + -15.13089370727539 + ], + [ + "▁Eke", + -15.130900382995605 + ], + [ + "▁Yemi", + -15.130915641784668 + ], + [ + "hydra", + -15.130951881408691 + ], + [ + "▁PTR", + -15.130979537963867 + ], + [ + "▁Brzezinski", + -15.131009101867676 + ], + [ + "▁ANDERSON", + -15.131014823913574 + ], + [ + "▁début", + -15.13101863861084 + ], + [ + "▁wildland", + -15.13103199005127 + ], + [ + "▁VILLAGE", + -15.131097793579102 + ], + [ + "▁Ohhh", + -15.131110191345215 + ], + [ + "▁Tranquility", + -15.131125450134277 + ], + [ + "▁Ин", + -15.131126403808594 + ], + [ + "▁Manolo", + -15.131186485290527 + ], + [ + "▁ibis", + -15.13118839263916 + ], + [ + "▁uncoated", + -15.13118839263916 + ], + [ + "▁PARTNERS", + -15.131193161010742 + ], + [ + "▁attunement", + -15.1312255859375 + ], + [ + "▁Arsenic", + -15.131242752075195 + ], + [ + "気", + -15.131255149841309 + ], + [ + "▁또는", + -15.131267547607422 + ], + [ + "▁Paulette", + -15.13127326965332 + ], + [ + "▁percolate", + -15.131316184997559 + ], + [ + "▁Unbeknownst", + -15.13137435913086 + ], + [ + "▁flack", + -15.131379127502441 + ], + [ + "▁lima", + -15.131390571594238 + ], + [ + "laundry", + -15.131397247314453 + ], + [ + "Transaction", + -15.131409645080566 + ], + [ + "โ", + -15.13143253326416 + ], + [ + "investing", + -15.13146686553955 + ], + [ + "▁tympan", + -15.131474494934082 + ], + [ + "anha", + -15.131497383117676 + ], + [ + "akhi", + -15.13150691986084 + ], + [ + "▁Abington", + -15.13158893585205 + ], + [ + "▁Bestselling", + -15.131595611572266 + ], + [ + "▁Deskjet", + -15.131653785705566 + ], + [ + "▁expeditious", + -15.131657600402832 + ], + [ + "▁benjamin", + -15.131667137145996 + ], + [ + "holo", + -15.13167667388916 + ], + [ + "▁phablet", + -15.131695747375488 + ], + [ + "Cohen", + -15.131714820861816 + ], + [ + "▁drifter", + -15.131733894348145 + ], + [ + "▁Inspectorate", + -15.131742477416992 + ], + [ + "Appendix", + -15.131746292114258 + ], + [ + "▁Tease", + -15.131762504577637 + ], + [ + "▁Leitch", + -15.131778717041016 + ], + [ + "labour", + -15.131803512573242 + ], + [ + "▁goatee", + -15.131869316101074 + ], + [ + "▁Showalter", + -15.131889343261719 + ], + [ + "1876", + -15.13193130493164 + ], + [ + "▁Grabbing", + -15.131938934326172 + ], + [ + "▁MONO", + -15.131938934326172 + ], + [ + "Dale", + -15.131950378417969 + ], + [ + "Drawing", + -15.131970405578613 + ], + [ + "▁Mattias", + -15.13197135925293 + ], + [ + "Fighting", + -15.132004737854004 + ], + [ + "▁PLL", + -15.132024765014648 + ], + [ + "hostile", + -15.132030487060547 + ], + [ + "ruption", + -15.132031440734863 + ], + [ + "▁RIF", + -15.132052421569824 + ], + [ + "▁Yaa", + -15.132054328918457 + ], + [ + "▁Semen", + -15.13205623626709 + ], + [ + "▁Coho", + -15.132060050964355 + ], + [ + "▁conscientiously", + -15.13216495513916 + ], + [ + "▁FPC", + -15.132165908813477 + ], + [ + "▁Tij", + -15.132168769836426 + ], + [ + "▁Yasser", + -15.132170677185059 + ], + [ + "pleasure", + -15.132186889648438 + ], + [ + "Drag", + -15.132187843322754 + ], + [ + "رد", + -15.132216453552246 + ], + [ + "▁Initialize", + -15.132223129272461 + ], + [ + "Signature", + -15.132229804992676 + ], + [ + "talked", + -15.132256507873535 + ], + [ + "▁tarpaulin", + -15.132256507873535 + ], + [ + "▁люб", + -15.132258415222168 + ], + [ + "▁Holster", + -15.132259368896484 + ], + [ + "▁Turret", + -15.13227367401123 + ], + [ + "▁BOYS", + -15.132287979125977 + ], + [ + "TERN", + -15.13230037689209 + ], + [ + "▁Hustler", + -15.13232135772705 + ], + [ + "▁muesli", + -15.132349014282227 + ], + [ + "▁Considerable", + -15.132354736328125 + ], + [ + "▁glomerular", + -15.132393836975098 + ], + [ + "▁accoutrements", + -15.132421493530273 + ], + [ + "▁hdmi", + -15.132437705993652 + ], + [ + "▁ornamented", + -15.132492065429688 + ], + [ + "▁metamorphose", + -15.132515907287598 + ], + [ + "▁Chine", + -15.132524490356445 + ], + [ + "▁FOMO", + -15.132556915283203 + ], + [ + "▁bupropion", + -15.132577896118164 + ], + [ + "▁Mullah", + -15.132597923278809 + ], + [ + "▁plexiglass", + -15.132670402526855 + ], + [ + "hū", + -15.132689476013184 + ], + [ + "▁Recalling", + -15.132701873779297 + ], + [ + "corrosive", + -15.132706642150879 + ], + [ + "zoic", + -15.132712364196777 + ], + [ + "ETC", + -15.132718086242676 + ], + [ + "Rainbow", + -15.132770538330078 + ], + [ + "▁Sinead", + -15.132776260375977 + ], + [ + "▁Goddesses", + -15.13280200958252 + ], + [ + "▁Stormont", + -15.132804870605469 + ], + [ + "▁bedbugs", + -15.132820129394531 + ], + [ + "▁Adriano", + -15.132824897766113 + ], + [ + "▁sinusoidal", + -15.13283920288086 + ], + [ + "▁Ulf", + -15.132872581481934 + ], + [ + "gestellt", + -15.132878303527832 + ], + [ + "▁Blanch", + -15.13290023803711 + ], + [ + "▁scalding", + -15.132930755615234 + ], + [ + "▁Tickle", + -15.132932662963867 + ], + [ + "CCD", + -15.132943153381348 + ], + [ + "kung", + -15.132952690124512 + ], + [ + "▁MENU", + -15.132953643798828 + ], + [ + "referring", + -15.132984161376953 + ], + [ + "desirable", + -15.132993698120117 + ], + [ + "▁Reinhold", + -15.133030891418457 + ], + [ + "▁ductile", + -15.133060455322266 + ], + [ + "▁tantalum", + -15.133064270019531 + ], + [ + "arrah", + -15.133119583129883 + ], + [ + "▁Lament", + -15.133198738098145 + ], + [ + "عا", + -15.133249282836914 + ], + [ + "▁Suv", + -15.133269309997559 + ], + [ + "▁Caldera", + -15.133271217346191 + ], + [ + "failing", + -15.133275985717773 + ], + [ + "posi", + -15.13329029083252 + ], + [ + "mighty", + -15.133296966552734 + ], + [ + "▁Ж", + -15.133299827575684 + ], + [ + "▁Peake", + -15.133346557617188 + ], + [ + "starved", + -15.133387565612793 + ], + [ + "▁Dyck", + -15.133394241333008 + ], + [ + "MIP", + -15.133395195007324 + ], + [ + "▁Mitochondrial", + -15.133395195007324 + ], + [ + "▁Salvia", + -15.133456230163574 + ], + [ + "▁Puffin", + -15.133465766906738 + ], + [ + "▁CCNP", + -15.133478164672852 + ], + [ + "▁slob", + -15.133487701416016 + ], + [ + "▁Unwin", + -15.133498191833496 + ], + [ + "empowerment", + -15.13350772857666 + ], + [ + "eminence", + -15.133511543273926 + ], + [ + "uvan", + -15.133590698242188 + ], + [ + "▁Tohoku", + -15.133625984191895 + ], + [ + "접", + -15.133627891540527 + ], + [ + "▁KON", + -15.133662223815918 + ], + [ + "▁Armoured", + -15.133674621582031 + ], + [ + "ERING", + -15.133676528930664 + ], + [ + "▁falsifying", + -15.133710861206055 + ], + [ + "▁ADDED", + -15.133721351623535 + ], + [ + "▁LIA", + -15.133722305297852 + ], + [ + "udah", + -15.133724212646484 + ], + [ + "▁WSP", + -15.133734703063965 + ], + [ + "isocyanate", + -15.13376522064209 + ], + [ + "ambula", + -15.13379955291748 + ], + [ + "▁сер", + -15.133806228637695 + ], + [ + "▁Detergent", + -15.133811950683594 + ], + [ + "cephalus", + -15.133817672729492 + ], + [ + "▁Nightlife", + -15.133828163146973 + ], + [ + "Medicine", + -15.133838653564453 + ], + [ + "▁STAMP", + -15.133859634399414 + ], + [ + "▁governorate", + -15.133891105651855 + ], + [ + "▁PCG", + -15.133912086486816 + ], + [ + "▁€9", + -15.133917808532715 + ], + [ + "▁downplaying", + -15.133922576904297 + ], + [ + "▁Andretti", + -15.133923530578613 + ], + [ + "▁Bluebell", + -15.133953094482422 + ], + [ + "▁Enrich", + -15.133954048156738 + ], + [ + "▁louisiana", + -15.133971214294434 + ], + [ + "eisen", + -15.134000778198242 + ], + [ + "wasser", + -15.134005546569824 + ], + [ + "ragh", + -15.134008407592773 + ], + [ + "▁invalidity", + -15.134023666381836 + ], + [ + "▁rebounder", + -15.134031295776367 + ], + [ + "▁unifies", + -15.134081840515137 + ], + [ + "▁Subhash", + -15.13408374786377 + ], + [ + "▁Larra", + -15.134147644042969 + ], + [ + "▁Toulon", + -15.134160995483398 + ], + [ + "Ariz", + -15.134187698364258 + ], + [ + "embed", + -15.134188652038574 + ], + [ + "enclosed", + -15.134199142456055 + ], + [ + "shifter", + -15.1342134475708 + ], + [ + "▁ALICE", + -15.13422679901123 + ], + [ + "▁archangel", + -15.134235382080078 + ], + [ + "▁Yana", + -15.13426685333252 + ], + [ + "▁Beauregard", + -15.134270668029785 + ], + [ + "▁Jamaat", + -15.134286880493164 + ], + [ + "▁Radiat", + -15.13432788848877 + ], + [ + "drafted", + -15.134329795837402 + ], + [ + "▁OFFICERS", + -15.1343412399292 + ], + [ + "ポ", + -15.134343147277832 + ], + [ + "Prepare", + -15.134368896484375 + ], + [ + "▁SERVE", + -15.13439655303955 + ], + [ + "ianni", + -15.134411811828613 + ], + [ + "▁Thun", + -15.134422302246094 + ], + [ + "▁ISRO", + -15.134490966796875 + ], + [ + "ක්", + -15.134500503540039 + ], + [ + "▁Accordion", + -15.134550094604492 + ], + [ + "▁Limp", + -15.134567260742188 + ], + [ + "▁Pulver", + -15.134571075439453 + ], + [ + "▁oxalate", + -15.134588241577148 + ], + [ + "▁Boykin", + -15.134622573852539 + ], + [ + "▁Compulsory", + -15.134649276733398 + ], + [ + "▁fabricator", + -15.134659767150879 + ], + [ + "▁Leprechaun", + -15.134664535522461 + ], + [ + "▁Ogle", + -15.134685516357422 + ], + [ + "▁Issac", + -15.134708404541016 + ], + [ + "▁Costner", + -15.134767532348633 + ], + [ + "▁incalculable", + -15.134771347045898 + ], + [ + "pnoea", + -15.13480281829834 + ], + [ + "▁RESP", + -15.134810447692871 + ], + [ + "▁Sunder", + -15.134851455688477 + ], + [ + "ී", + -15.134923934936523 + ], + [ + "▁SBR", + -15.134925842285156 + ], + [ + "▁fou", + -15.134928703308105 + ], + [ + "latter", + -15.13493824005127 + ], + [ + "▁gratuities", + -15.134942054748535 + ], + [ + "▁DUBAI", + -15.13495922088623 + ], + [ + "▁thrall", + -15.134971618652344 + ], + [ + "▁elektro", + -15.134991645812988 + ], + [ + "kona", + -15.135018348693848 + ], + [ + "OIS", + -15.13503646850586 + ], + [ + "▁gesso", + -15.135052680969238 + ], + [ + "▁Peskov", + -15.135100364685059 + ], + [ + "▁humanize", + -15.135108947753906 + ], + [ + "▁agarose", + -15.13512134552002 + ], + [ + "▁COMMAND", + -15.13513469696045 + ], + [ + "▁methylene", + -15.135153770446777 + ], + [ + "▁Bhutanese", + -15.13515567779541 + ], + [ + "arginine", + -15.135162353515625 + ], + [ + "▁Braunfels", + -15.135168075561523 + ], + [ + "▁Hoist", + -15.135220527648926 + ], + [ + "▁Če", + -15.135235786437988 + ], + [ + "NMR", + -15.135245323181152 + ], + [ + "▁excruciatingly", + -15.135248184204102 + ], + [ + "▁Sheamus", + -15.135254859924316 + ], + [ + "▁Jessi", + -15.13531494140625 + ], + [ + "closer", + -15.135327339172363 + ], + [ + "istra", + -15.135327339172363 + ], + [ + "▁Sternberg", + -15.135339736938477 + ], + [ + "▁oppressor", + -15.135345458984375 + ], + [ + "▁ramshackle", + -15.135351181030273 + ], + [ + "▁Unlawful", + -15.135370254516602 + ], + [ + "bano", + -15.135380744934082 + ], + [ + "▁Dich", + -15.135458946228027 + ], + [ + "rje", + -15.135461807250977 + ], + [ + "▁dovish", + -15.135567665100098 + ], + [ + "▁DMK", + -15.135584831237793 + ], + [ + "uara", + -15.135614395141602 + ], + [ + "▁Pakhtunkhwa", + -15.13562297821045 + ], + [ + "▁Sistema", + -15.135641098022461 + ], + [ + "▁ASSIGNMENT", + -15.135656356811523 + ], + [ + "▁Hydrate", + -15.135702133178711 + ], + [ + "▁contusion", + -15.135704040527344 + ], + [ + "▁lampoon", + -15.135716438293457 + ], + [ + "▁remorseful", + -15.135754585266113 + ], + [ + "zap", + -15.135770797729492 + ], + [ + "▁thrombocytopenia", + -15.135794639587402 + ], + [ + "▁Pythagoras", + -15.135809898376465 + ], + [ + "▁Standalone", + -15.135831832885742 + ], + [ + "LIO", + -15.135872840881348 + ], + [ + "▁desegregation", + -15.135881423950195 + ], + [ + "bonded", + -15.135891914367676 + ], + [ + "▁Dvd", + -15.135984420776367 + ], + [ + "▁Cassia", + -15.135997772216797 + ], + [ + "Prison", + -15.136005401611328 + ], + [ + "▁rivaled", + -15.136030197143555 + ], + [ + "BAY", + -15.136083602905273 + ], + [ + "registr", + -15.136090278625488 + ], + [ + "▁Alderson", + -15.136093139648438 + ], + [ + "▁GSL", + -15.136098861694336 + ], + [ + "▁amorous", + -15.136211395263672 + ], + [ + "▁psychopathology", + -15.136324882507324 + ], + [ + "Tue", + -15.136371612548828 + ], + [ + "▁dissipating", + -15.136374473571777 + ], + [ + "▁Deme", + -15.136388778686523 + ], + [ + "▁Schil", + -15.136414527893066 + ], + [ + "▁Sarco", + -15.13643741607666 + ], + [ + "▁wellspring", + -15.136445999145508 + ], + [ + "▁Haar", + -15.136460304260254 + ], + [ + "enite", + -15.136472702026367 + ], + [ + "▁filo", + -15.13648796081543 + ], + [ + "▁Fü", + -15.136497497558594 + ], + [ + "▁Climax", + -15.136544227600098 + ], + [ + "▁attractor", + -15.136549949645996 + ], + [ + "Lance", + -15.136555671691895 + ], + [ + "▁Grasse", + -15.136561393737793 + ], + [ + "▁superposition", + -15.136646270751953 + ], + [ + "haupt", + -15.13666820526123 + ], + [ + "▁subluxation", + -15.136680603027344 + ], + [ + "▁unblemished", + -15.136680603027344 + ], + [ + "▁BAU", + -15.13668441772461 + ], + [ + "▁Spherical", + -15.136726379394531 + ], + [ + "▁Youngsters", + -15.136734962463379 + ], + [ + "▁Blackmon", + -15.136737823486328 + ], + [ + "▁gummies", + -15.136775016784668 + ], + [ + "▁Lonesome", + -15.1367769241333 + ], + [ + "▁RFE", + -15.136813163757324 + ], + [ + "▁cena", + -15.136831283569336 + ], + [ + "▁LUCK", + -15.136841773986816 + ], + [ + "Resolution", + -15.136845588684082 + ], + [ + "▁machen", + -15.136857032775879 + ], + [ + "uwan", + -15.136938095092773 + ], + [ + "▁Solari", + -15.136974334716797 + ], + [ + "Bern", + -15.137015342712402 + ], + [ + "▁Maryville", + -15.137069702148438 + ], + [ + "▁Gush", + -15.137089729309082 + ], + [ + "▁Wali", + -15.137105941772461 + ], + [ + "Speech", + -15.137109756469727 + ], + [ + "▁Multivariate", + -15.137112617492676 + ], + [ + "▁kinesiology", + -15.137154579162598 + ], + [ + "telephone", + -15.137219429016113 + ], + [ + "▁douchebag", + -15.137275695800781 + ], + [ + "▁publicise", + -15.137276649475098 + ], + [ + "▁1764", + -15.137283325195312 + ], + [ + "Daisy", + -15.137303352355957 + ], + [ + "▁preachy", + -15.137313842773438 + ], + [ + "Moment", + -15.137341499328613 + ], + [ + "▁preinstalled", + -15.137374877929688 + ], + [ + "▁reforestation", + -15.137384414672852 + ], + [ + "▁Disguise", + -15.137385368347168 + ], + [ + "▁Overweight", + -15.1373872756958 + ], + [ + "▁neophyte", + -15.137411117553711 + ], + [ + "▁Albo", + -15.13742446899414 + ], + [ + "▁jason", + -15.137438774108887 + ], + [ + "▁Etobicoke", + -15.137460708618164 + ], + [ + "▁Leni", + -15.13753604888916 + ], + [ + "▁Miserables", + -15.137541770935059 + ], + [ + "MAY", + -15.137589454650879 + ], + [ + "aça", + -15.137598037719727 + ], + [ + "ENTE", + -15.137626647949219 + ], + [ + "▁Streetcar", + -15.137650489807129 + ], + [ + "▁tuo", + -15.137718200683594 + ], + [ + "▁distinctiveness", + -15.137737274169922 + ], + [ + "▁marten", + -15.137738227844238 + ], + [ + "▁wai", + -15.137741088867188 + ], + [ + "lín", + -15.137770652770996 + ], + [ + "▁Stance", + -15.13778018951416 + ], + [ + "Personally", + -15.137800216674805 + ], + [ + "▁palmetto", + -15.13782787322998 + ], + [ + "▁Albeit", + -15.137829780578613 + ], + [ + "▁hispanic", + -15.137839317321777 + ], + [ + "▁unsophisticated", + -15.137840270996094 + ], + [ + "▁Nuit", + -15.13786792755127 + ], + [ + "▁Ignat", + -15.137874603271484 + ], + [ + "Turk", + -15.137893676757812 + ], + [ + "spreading", + -15.137894630432129 + ], + [ + "▁será", + -15.137900352478027 + ], + [ + "Speaker", + -15.137914657592773 + ], + [ + "▁Basi", + -15.137921333312988 + ], + [ + "▁townsfolk", + -15.13792610168457 + ], + [ + "HCl", + -15.137932777404785 + ], + [ + "Expression", + -15.138009071350098 + ], + [ + "▁ALIVE", + -15.138015747070312 + ], + [ + "▁Munda", + -15.138055801391602 + ], + [ + "SYSTEM", + -15.138078689575195 + ], + [ + "▁Gini", + -15.138107299804688 + ], + [ + "▁impl", + -15.138139724731445 + ], + [ + "▁Tenancy", + -15.138174057006836 + ], + [ + "▁Kenan", + -15.13818645477295 + ], + [ + "▁PROMISE", + -15.138272285461426 + ], + [ + "▁Bamberg", + -15.138299942016602 + ], + [ + "▁derma", + -15.138304710388184 + ], + [ + "▁SOB", + -15.13835334777832 + ], + [ + "▁Ursa", + -15.138360023498535 + ], + [ + "▁Koen", + -15.138364791870117 + ], + [ + "▁COCO", + -15.13836669921875 + ], + [ + "gaze", + -15.13839340209961 + ], + [ + "▁metalworking", + -15.138406753540039 + ], + [ + "▁Contingency", + -15.13842487335205 + ], + [ + "Gurion", + -15.13843059539795 + ], + [ + "▁Bayonne", + -15.13843822479248 + ], + [ + "conditional", + -15.138461112976074 + ], + [ + "▁Durkin", + -15.138476371765137 + ], + [ + "▁decrement", + -15.1384916305542 + ], + [ + "CFR", + -15.138505935668945 + ], + [ + "été", + -15.13856029510498 + ], + [ + "▁Wrestler", + -15.138589859008789 + ], + [ + "▁Jackal", + -15.138606071472168 + ], + [ + "▁Creeper", + -15.138617515563965 + ], + [ + "▁Novus", + -15.138618469238281 + ], + [ + "▁Tarek", + -15.138646125793457 + ], + [ + "▁Edwardsville", + -15.138650894165039 + ], + [ + "ENER", + -15.138683319091797 + ], + [ + "▁impingement", + -15.13869571685791 + ], + [ + "dyke", + -15.138707160949707 + ], + [ + "▁unfastened", + -15.138731002807617 + ], + [ + "▁Jacquard", + -15.13874626159668 + ], + [ + "▁Saleem", + -15.138799667358398 + ], + [ + "▁Zorro", + -15.138805389404297 + ], + [ + "▁overshoot", + -15.138843536376953 + ], + [ + "▁prac", + -15.138877868652344 + ], + [ + "▁Remastered", + -15.138885498046875 + ], + [ + "hiru", + -15.13894271850586 + ], + [ + "▁ABP", + -15.1389799118042 + ], + [ + "coz", + -15.138986587524414 + ], + [ + "▁shire", + -15.13904094696045 + ], + [ + "▁BRIAN", + -15.139066696166992 + ], + [ + "▁Oberon", + -15.139103889465332 + ], + [ + "▁bain", + -15.139142036437988 + ], + [ + "▁ginormous", + -15.139144897460938 + ], + [ + "▁Valdosta", + -15.13916015625 + ], + [ + "▁returnees", + -15.139179229736328 + ], + [ + "▁murk", + -15.139198303222656 + ], + [ + "ガ", + -15.139230728149414 + ], + [ + "▁DTE", + -15.139233589172363 + ], + [ + "▁Filename", + -15.13923454284668 + ], + [ + "▁diminution", + -15.139298439025879 + ], + [ + "▁unchangeable", + -15.139328956604004 + ], + [ + "▁exercisable", + -15.139344215393066 + ], + [ + "▁distin", + -15.139389038085938 + ], + [ + "Sgt", + -15.13941478729248 + ], + [ + "▁Tenure", + -15.139423370361328 + ], + [ + "▁Studien", + -15.139426231384277 + ], + [ + "▁ostensible", + -15.139437675476074 + ], + [ + "▁PATIENT", + -15.139453887939453 + ], + [ + "yasu", + -15.139461517333984 + ], + [ + "bá", + -15.139477729797363 + ], + [ + "▁AFAIK", + -15.139484405517578 + ], + [ + "▁Bohol", + -15.139542579650879 + ], + [ + "▁Texarkana", + -15.139666557312012 + ], + [ + "▁ripeness", + -15.13969612121582 + ], + [ + "▁DIT", + -15.139703750610352 + ], + [ + "▁VINTAGE", + -15.1397123336792 + ], + [ + "arching", + -15.139734268188477 + ], + [ + "▁Derivative", + -15.139734268188477 + ], + [ + "▁Minne", + -15.139749526977539 + ], + [ + "Engage", + -15.139776229858398 + ], + [ + "▁Roode", + -15.139784812927246 + ], + [ + "MTS", + -15.139793395996094 + ], + [ + "▁bettor", + -15.139809608459473 + ], + [ + "Agency", + -15.139813423156738 + ], + [ + "▁Gew", + -15.139838218688965 + ], + [ + "▁Parvati", + -15.139848709106445 + ], + [ + "▁unsaved", + -15.139852523803711 + ], + [ + "▁SOPA", + -15.139906883239746 + ], + [ + "▁Antibodies", + -15.139911651611328 + ], + [ + "▁irrepressible", + -15.139942169189453 + ], + [ + "▁wrinkling", + -15.139942169189453 + ], + [ + "Dome", + -15.139960289001465 + ], + [ + "▁Exede", + -15.139960289001465 + ], + [ + "▁784", + -15.140007019042969 + ], + [ + "Testing", + -15.140035629272461 + ], + [ + "▁Bajo", + -15.140117645263672 + ], + [ + "▁earthenware", + -15.14012336730957 + ], + [ + "▁signee", + -15.140125274658203 + ], + [ + "▁Lira", + -15.140142440795898 + ], + [ + "▁dumber", + -15.140145301818848 + ], + [ + "▁abetted", + -15.14016056060791 + ], + [ + "▁unassailable", + -15.140218734741211 + ], + [ + "strate", + -15.140288352966309 + ], + [ + "Horizon", + -15.140289306640625 + ], + [ + "▁anisotropy", + -15.140325546264648 + ], + [ + "▁kool", + -15.14033317565918 + ], + [ + "▁Sensual", + -15.140375137329102 + ], + [ + "▁GRAY", + -15.140398025512695 + ], + [ + "▁dynastic", + -15.140424728393555 + ], + [ + "▁efflux", + -15.14042854309082 + ], + [ + "MRA", + -15.140443801879883 + ], + [ + "pension", + -15.140443801879883 + ], + [ + "▁OFFERS", + -15.140491485595703 + ], + [ + "▁Lecithin", + -15.140494346618652 + ], + [ + "▁Rambler", + -15.140514373779297 + ], + [ + "▁cav", + -15.140539169311523 + ], + [ + "▁SPH", + -15.140555381774902 + ], + [ + "▁Mullan", + -15.14060115814209 + ], + [ + "▁Acronis", + -15.14061164855957 + ], + [ + "▁stubby", + -15.140623092651367 + ], + [ + "▁thumped", + -15.140642166137695 + ], + [ + "▁Curvy", + -15.140647888183594 + ], + [ + "▁nastiness", + -15.140647888183594 + ], + [ + "▁ooo", + -15.140668869018555 + ], + [ + "▁Alternator", + -15.140697479248047 + ], + [ + "▁Whittington", + -15.140734672546387 + ], + [ + "▁MUMBAI", + -15.140740394592285 + ], + [ + "▁Benzema", + -15.140742301940918 + ], + [ + "▁Kwara", + -15.140811920166016 + ], + [ + "▁LINQ", + -15.140847206115723 + ], + [ + "UMBER", + -15.140859603881836 + ], + [ + "▁SHUT", + -15.140886306762695 + ], + [ + "▁Townshend", + -15.140893936157227 + ], + [ + "▁shod", + -15.140949249267578 + ], + [ + "▁undercutting", + -15.14096736907959 + ], + [ + "▁Prag", + -15.141007423400879 + ], + [ + "あ", + -15.141023635864258 + ], + [ + "▁disinfected", + -15.141029357910156 + ], + [ + "akia", + -15.141043663024902 + ], + [ + "▁hawking", + -15.141071319580078 + ], + [ + "▁libelous", + -15.141077041625977 + ], + [ + "▁Fairytale", + -15.141079902648926 + ], + [ + "▁composted", + -15.141087532043457 + ], + [ + "▁toboggan", + -15.141108512878418 + ], + [ + "▁Encoder", + -15.141109466552734 + ], + [ + "▁physiologist", + -15.141115188598633 + ], + [ + "▁Roasting", + -15.141129493713379 + ], + [ + "▁Björn", + -15.14113998413086 + ], + [ + "▁Lingard", + -15.141152381896973 + ], + [ + "▁encapsulating", + -15.141155242919922 + ], + [ + "▁jaunty", + -15.1411771774292 + ], + [ + "▁Nomi", + -15.141188621520996 + ], + [ + "▁intertwining", + -15.141216278076172 + ], + [ + "▁Zendesk", + -15.14122200012207 + ], + [ + "ENTON", + -15.141223907470703 + ], + [ + "▁seit", + -15.141231536865234 + ], + [ + "中国", + -15.141237258911133 + ], + [ + "▁Syfy", + -15.141243934631348 + ], + [ + "1871", + -15.141276359558105 + ], + [ + "▁parliamentarian", + -15.141283988952637 + ], + [ + "▁Facilitation", + -15.141308784484863 + ], + [ + "▁NEGLIGENCE", + -15.141324043273926 + ], + [ + "▁Augmentation", + -15.141356468200684 + ], + [ + "ukkah", + -15.141377449035645 + ], + [ + "Württemberg", + -15.141385078430176 + ], + [ + "CRT", + -15.141402244567871 + ], + [ + "▁antihypertensive", + -15.141443252563477 + ], + [ + "▁backwoods", + -15.141498565673828 + ], + [ + "▁Nwa", + -15.14150333404541 + ], + [ + "▁nucleation", + -15.141538619995117 + ], + [ + "▁marketability", + -15.14156436920166 + ], + [ + "▁splashback", + -15.141600608825684 + ], + [ + "▁779", + -15.141610145568848 + ], + [ + "Grave", + -15.141626358032227 + ], + [ + "ấ", + -15.141629219055176 + ], + [ + "ất", + -15.141632080078125 + ], + [ + "▁amigos", + -15.141633987426758 + ], + [ + "▁Ovation", + -15.141677856445312 + ], + [ + "▁iran", + -15.141679763793945 + ], + [ + "▁Sathya", + -15.141692161560059 + ], + [ + "▁Duster", + -15.141701698303223 + ], + [ + "▁USTA", + -15.141749382019043 + ], + [ + "▁Intellect", + -15.14177417755127 + ], + [ + "condo", + -15.141775131225586 + ], + [ + "nook", + -15.141804695129395 + ], + [ + "ucky", + -15.141861915588379 + ], + [ + "▁Illus", + -15.141887664794922 + ], + [ + "▁968", + -15.141927719116211 + ], + [ + "▁RPE", + -15.141950607299805 + ], + [ + "▁Linnaeus", + -15.141956329345703 + ], + [ + "▁dissonant", + -15.141976356506348 + ], + [ + "▁ADAPT", + -15.14204216003418 + ], + [ + "melon", + -15.142057418823242 + ], + [ + "roast", + -15.142062187194824 + ], + [ + "unable", + -15.142091751098633 + ], + [ + "▁Custard", + -15.142138481140137 + ], + [ + "proprietary", + -15.142165184020996 + ], + [ + "Raise", + -15.142197608947754 + ], + [ + "▁Pankaj", + -15.142221450805664 + ], + [ + "▁bluffing", + -15.142236709594727 + ], + [ + "▁Flew", + -15.142263412475586 + ], + [ + "▁Codec", + -15.142277717590332 + ], + [ + "Tennessee", + -15.142305374145508 + ], + [ + "▁Harb", + -15.142309188842773 + ], + [ + "bayan", + -15.14234447479248 + ], + [ + "▁Natchez", + -15.142345428466797 + ], + [ + "▁Storr", + -15.142369270324707 + ], + [ + "▁Caliph", + -15.142410278320312 + ], + [ + "▁Schwinn", + -15.14250373840332 + ], + [ + "무", + -15.142518043518066 + ], + [ + "striped", + -15.142539024353027 + ], + [ + "▁Cowgirl", + -15.14256477355957 + ], + [ + "achievement", + -15.142572402954102 + ], + [ + "▁Shimo", + -15.142577171325684 + ], + [ + "▁Nuno", + -15.142582893371582 + ], + [ + "▁ADVANCED", + -15.142593383789062 + ], + [ + "▁bemoaned", + -15.142593383789062 + ], + [ + "▁Rauch", + -15.142638206481934 + ], + [ + "▁Arde", + -15.142644882202148 + ], + [ + "▁prae", + -15.142644882202148 + ], + [ + "▁Dáil", + -15.142647743225098 + ], + [ + "▁purifies", + -15.142707824707031 + ], + [ + "AFS", + -15.142717361450195 + ], + [ + "▁reconnection", + -15.142721176147461 + ], + [ + "▁stroma", + -15.142728805541992 + ], + [ + "▁steadied", + -15.142765045166016 + ], + [ + "▁ز", + -15.14278793334961 + ], + [ + "raku", + -15.14279556274414 + ], + [ + "▁Penitentiary", + -15.142799377441406 + ], + [ + "▁Jesús", + -15.142814636230469 + ], + [ + "▁Unplug", + -15.142897605895996 + ], + [ + "使", + -15.142900466918945 + ], + [ + "WING", + -15.142914772033691 + ], + [ + "▁croon", + -15.1429443359375 + ], + [ + "▁kava", + -15.142949104309082 + ], + [ + "Malware", + -15.142951011657715 + ], + [ + "▁kneecap", + -15.142965316772461 + ], + [ + "▁greyish", + -15.142970085144043 + ], + [ + "Inspired", + -15.142979621887207 + ], + [ + "bayashi", + -15.14299201965332 + ], + [ + "▁PUNITIVE", + -15.142999649047852 + ], + [ + "▁insufferable", + -15.142999649047852 + ], + [ + "▁distributive", + -15.14301872253418 + ], + [ + "isie", + -15.143059730529785 + ], + [ + "Ivy", + -15.143123626708984 + ], + [ + "▁SPLC", + -15.143166542053223 + ], + [ + "▁😂", + -15.143170356750488 + ], + [ + "▁hoaxes", + -15.143173217773438 + ], + [ + "▁Reversal", + -15.143187522888184 + ], + [ + "pagan", + -15.143240928649902 + ], + [ + "▁Plesk", + -15.143241882324219 + ], + [ + "▁BDNF", + -15.143250465393066 + ], + [ + "▁cutscene", + -15.14333438873291 + ], + [ + "▁Headteacher", + -15.143367767333984 + ], + [ + "▁Rarity", + -15.143378257751465 + ], + [ + "▁Minden", + -15.143379211425781 + ], + [ + "▁Kalk", + -15.143391609191895 + ], + [ + "silence", + -15.143400192260742 + ], + [ + "wealthy", + -15.143410682678223 + ], + [ + "junkie", + -15.143417358398438 + ], + [ + "▁gracias", + -15.143442153930664 + ], + [ + "auga", + -15.143448829650879 + ], + [ + "▁Reichstag", + -15.143473625183105 + ], + [ + "▁encyclical", + -15.14348030090332 + ], + [ + "▁Bonjour", + -15.1434907913208 + ], + [ + "▁foreshadowed", + -15.143500328063965 + ], + [ + "▁Amnesia", + -15.143513679504395 + ], + [ + "▁exuded", + -15.143526077270508 + ], + [ + "cidal", + -15.143543243408203 + ], + [ + "▁fili", + -15.143548965454102 + ], + [ + "sulfate", + -15.14356517791748 + ], + [ + "FECT", + -15.143584251403809 + ], + [ + "▁crispness", + -15.143696784973145 + ], + [ + "▁CHAIN", + -15.14372444152832 + ], + [ + "▁OxyContin", + -15.143820762634277 + ], + [ + "▁Lacazette", + -15.143830299377441 + ], + [ + "▁Lefebvre", + -15.143830299377441 + ], + [ + "TEAM", + -15.14388656616211 + ], + [ + "▁Afridi", + -15.143899917602539 + ], + [ + "▁rationalized", + -15.143905639648438 + ], + [ + "▁Wrongful", + -15.143914222717285 + ], + [ + "▁bao", + -15.143921852111816 + ], + [ + "▁spaciousness", + -15.14395523071289 + ], + [ + "▁Grillo", + -15.143960952758789 + ], + [ + "▁NHC", + -15.143993377685547 + ], + [ + "▁emboss", + -15.144085884094238 + ], + [ + "▁Kaze", + -15.14409065246582 + ], + [ + "2070", + -15.144091606140137 + ], + [ + "literal", + -15.144108772277832 + ], + [ + "▁tactful", + -15.14412784576416 + ], + [ + "ritch", + -15.144155502319336 + ], + [ + "▁gef", + -15.144155502319336 + ], + [ + "bren", + -15.14416217803955 + ], + [ + "уж", + -15.144166946411133 + ], + [ + "▁Winder", + -15.144174575805664 + ], + [ + "▁anguished", + -15.14421272277832 + ], + [ + "▁Bissell", + -15.14421558380127 + ], + [ + "iviti", + -15.144233703613281 + ], + [ + "▁UHS", + -15.14423656463623 + ], + [ + "▁Differentiation", + -15.144274711608887 + ], + [ + "▁Granola", + -15.144290924072266 + ], + [ + "creep", + -15.144293785095215 + ], + [ + "▁FIB", + -15.144314765930176 + ], + [ + "Maha", + -15.144315719604492 + ], + [ + "▁Preventative", + -15.144367218017578 + ], + [ + "ruba", + -15.14439582824707 + ], + [ + "ở", + -15.144400596618652 + ], + [ + "▁Kue", + -15.144402503967285 + ], + [ + "arlington", + -15.14441204071045 + ], + [ + "▁Collab", + -15.144434928894043 + ], + [ + "▁endeavoring", + -15.144451141357422 + ], + [ + "▁regrouped", + -15.144501686096191 + ], + [ + "▁353146195169779", + -15.144508361816406 + ], + [ + "▁Clog", + -15.144524574279785 + ], + [ + "▁Balaji", + -15.144538879394531 + ], + [ + "▁Holler", + -15.144566535949707 + ], + [ + "▁reeks", + -15.144566535949707 + ], + [ + "SHED", + -15.144590377807617 + ], + [ + "▁ORLEANS", + -15.144600868225098 + ], + [ + "▁nacional", + -15.144601821899414 + ], + [ + "▁abseil", + -15.14461612701416 + ], + [ + "ergic", + -15.144617080688477 + ], + [ + "▁cytoskeleton", + -15.144617080688477 + ], + [ + "Smooth", + -15.14462947845459 + ], + [ + "▁Supplying", + -15.144646644592285 + ], + [ + "▁Shuster", + -15.144648551940918 + ], + [ + "onitrile", + -15.144662857055664 + ], + [ + "▁coherently", + -15.144664764404297 + ], + [ + "▁Repeating", + -15.144675254821777 + ], + [ + "▁HEAVEN", + -15.144710540771484 + ], + [ + "▁fretted", + -15.144713401794434 + ], + [ + "Spiritual", + -15.144736289978027 + ], + [ + "▁omnivore", + -15.144742012023926 + ], + [ + "▁Encouraged", + -15.144765853881836 + ], + [ + "▁Mtn", + -15.144766807556152 + ], + [ + "▁harlot", + -15.144787788391113 + ], + [ + "格", + -15.144789695739746 + ], + [ + "▁esthetician", + -15.14479923248291 + ], + [ + "Setting", + -15.144800186157227 + ], + [ + "UNDER", + -15.144818305969238 + ], + [ + "yran", + -15.144818305969238 + ], + [ + "▁Citra", + -15.144834518432617 + ], + [ + "▁Cabello", + -15.144848823547363 + ], + [ + "▁hydrologic", + -15.144862174987793 + ], + [ + "GEO", + -15.144879341125488 + ], + [ + "▁downbeat", + -15.144882202148438 + ], + [ + "ABB", + -15.144898414611816 + ], + [ + "▁Schor", + -15.144927978515625 + ], + [ + "▁watercress", + -15.144970893859863 + ], + [ + "tester", + -15.144994735717773 + ], + [ + "▁hCG", + -15.145039558410645 + ], + [ + "▁plaintext", + -15.145051002502441 + ], + [ + "yasa", + -15.145057678222656 + ], + [ + "▁Hawa", + -15.14506721496582 + ], + [ + "khet", + -15.145098686218262 + ], + [ + "▁starrer", + -15.14510726928711 + ], + [ + "▁contrivance", + -15.145109176635742 + ], + [ + "▁bengal", + -15.145151138305664 + ], + [ + "▁PROOF", + -15.145169258117676 + ], + [ + "▁militarized", + -15.145195007324219 + ], + [ + "▁Swamy", + -15.145212173461914 + ], + [ + "▁794", + -15.14521312713623 + ], + [ + "▁riffing", + -15.145222663879395 + ], + [ + "▁Acco", + -15.145249366760254 + ], + [ + "▁Ehud", + -15.145256996154785 + ], + [ + "▁PERFORM", + -15.145261764526367 + ], + [ + "▁1767", + -15.145276069641113 + ], + [ + "▁Mangrove", + -15.14529037475586 + ], + [ + "luckily", + -15.14530086517334 + ], + [ + "▁Reagent", + -15.145302772521973 + ], + [ + "▁Nutter", + -15.145336151123047 + ], + [ + "ESO", + -15.145356178283691 + ], + [ + "▁baud", + -15.145384788513184 + ], + [ + "▁DKK", + -15.145416259765625 + ], + [ + "ravel", + -15.14543342590332 + ], + [ + "degradable", + -15.145464897155762 + ], + [ + "▁Anjali", + -15.145474433898926 + ], + [ + "▁Scheid", + -15.145485877990723 + ], + [ + "▁Glimmer", + -15.145503997802734 + ], + [ + "▁FODMAP", + -15.145525932312012 + ], + [ + "▁FRENCH", + -15.145575523376465 + ], + [ + "▁chastise", + -15.145577430725098 + ], + [ + "▁TUNE", + -15.14559555053711 + ], + [ + "proton", + -15.145620346069336 + ], + [ + "▁revolted", + -15.145631790161133 + ], + [ + "▁Smad", + -15.145648956298828 + ], + [ + "▁Cordillera", + -15.14568042755127 + ], + [ + "▁CISSP", + -15.145705223083496 + ], + [ + "▁tailpipe", + -15.145722389221191 + ], + [ + "布", + -15.145766258239746 + ], + [ + "▁Björk", + -15.145772933959961 + ], + [ + "▁premonition", + -15.145803451538086 + ], + [ + "▁Lexapro", + -15.145833969116211 + ], + [ + "▁prideful", + -15.14586067199707 + ], + [ + "CGI", + -15.145862579345703 + ], + [ + "▁rapturous", + -15.145865440368652 + ], + [ + "▁Frisch", + -15.145915985107422 + ], + [ + "▁Munroe", + -15.145936012268066 + ], + [ + "ρί", + -15.145950317382812 + ], + [ + "▁fulcrum", + -15.146004676818848 + ], + [ + "backward", + -15.146027565002441 + ], + [ + "▁Waterside", + -15.146110534667969 + ], + [ + "▁cataclysm", + -15.146141052246094 + ], + [ + "▁botulinum", + -15.146142959594727 + ], + [ + "Persian", + -15.146159172058105 + ], + [ + "▁Conserve", + -15.146164894104004 + ], + [ + "▁midcentury", + -15.146181106567383 + ], + [ + "▁Permanently", + -15.1461820602417 + ], + [ + "ANGEL", + -15.146236419677734 + ], + [ + "▁위해", + -15.146236419677734 + ], + [ + "▁Franchisee", + -15.146239280700684 + ], + [ + "▁PLD", + -15.146357536315918 + ], + [ + "▁Volusia", + -15.146360397338867 + ], + [ + "▁electrocardiogram", + -15.146360397338867 + ], + [ + "▁Neurosurg", + -15.146391868591309 + ], + [ + "kinda", + -15.146421432495117 + ], + [ + "donation", + -15.146450996398926 + ], + [ + "▁Lipa", + -15.146486282348633 + ], + [ + "▁Gwyn", + -15.146492958068848 + ], + [ + "▁GLBT", + -15.146520614624023 + ], + [ + "startup", + -15.146522521972656 + ], + [ + "ją", + -15.146581649780273 + ], + [ + "▁Swo", + -15.146587371826172 + ], + [ + "▁Joffrey", + -15.146594047546387 + ], + [ + "▁Mercurial", + -15.146597862243652 + ], + [ + "▁ந", + -15.146604537963867 + ], + [ + "▁Favour", + -15.146612167358398 + ], + [ + "▁synergistically", + -15.14664363861084 + ], + [ + "emetic", + -15.146678924560547 + ], + [ + "▁Bahar", + -15.146693229675293 + ], + [ + "▁mercado", + -15.146707534790039 + ], + [ + "▁Suburb", + -15.146732330322266 + ], + [ + "▁gravitation", + -15.146756172180176 + ], + [ + "▁Clustering", + -15.146807670593262 + ], + [ + "▁SHRM", + -15.14684772491455 + ], + [ + "▁Ре", + -15.1468505859375 + ], + [ + "30°", + -15.146854400634766 + ], + [ + "▁Tomorrowland", + -15.146873474121094 + ], + [ + "▁Coli", + -15.146875381469727 + ], + [ + "▁Alpert", + -15.14687728881836 + ], + [ + "agricultural", + -15.146883964538574 + ], + [ + "▁Correctly", + -15.146886825561523 + ], + [ + "MTC", + -15.146889686584473 + ], + [ + "Assembly", + -15.146890640258789 + ], + [ + "ioso", + -15.146900177001953 + ], + [ + "gambling", + -15.146905899047852 + ], + [ + "▁Carhartt", + -15.146915435791016 + ], + [ + "▁Mentorship", + -15.146933555603027 + ], + [ + "▁1762", + -15.146973609924316 + ], + [ + "▁Warmbier", + -15.147003173828125 + ], + [ + "▁conformal", + -15.147007942199707 + ], + [ + "▁Garba", + -15.147025108337402 + ], + [ + "▁Fielder", + -15.147064208984375 + ], + [ + "▁Chaka", + -15.14708423614502 + ], + [ + "▁Yousef", + -15.147100448608398 + ], + [ + "▁CNR", + -15.147183418273926 + ], + [ + "Curve", + -15.147188186645508 + ], + [ + "▁Pharisee", + -15.147201538085938 + ], + [ + "▁ainsi", + -15.147208213806152 + ], + [ + "▁Pharoah", + -15.147221565246582 + ], + [ + "▁Golfers", + -15.147232055664062 + ], + [ + "▁Advil", + -15.147270202636719 + ], + [ + "▁Muri", + -15.147270202636719 + ], + [ + "▁stargazing", + -15.14727783203125 + ], + [ + "▁Wehrmacht", + -15.147285461425781 + ], + [ + "Availability", + -15.147329330444336 + ], + [ + "▁divested", + -15.147344589233398 + ], + [ + "invested", + -15.147359848022461 + ], + [ + "▁kamp", + -15.14737319946289 + ], + [ + "▁Triomphe", + -15.147377967834473 + ], + [ + "▁boldest", + -15.147412300109863 + ], + [ + "求", + -15.147416114807129 + ], + [ + "▁Egret", + -15.147443771362305 + ], + [ + "▁yew", + -15.14745807647705 + ], + [ + "alize", + -15.147520065307617 + ], + [ + "▁Roark", + -15.147558212280273 + ], + [ + "▁Lemmon", + -15.147665023803711 + ], + [ + "▁trident", + -15.147686958312988 + ], + [ + "▁Kyla", + -15.147717475891113 + ], + [ + "▁Oscillation", + -15.147748947143555 + ], + [ + "▁salesforce", + -15.147791862487793 + ], + [ + "gadi", + -15.147830963134766 + ], + [ + "▁earlobe", + -15.147919654846191 + ], + [ + "▁Romanov", + -15.14799690246582 + ], + [ + "1872", + -15.148019790649414 + ], + [ + "elio", + -15.14803695678711 + ], + [ + "▁Helmand", + -15.148050308227539 + ], + [ + "▁reserva", + -15.148090362548828 + ], + [ + "▁Athol", + -15.14810848236084 + ], + [ + "assign", + -15.148126602172852 + ], + [ + "formance", + -15.148128509521484 + ], + [ + "▁unsympathetic", + -15.148157119750977 + ], + [ + "▁McCarrick", + -15.148173332214355 + ], + [ + "▁sniffer", + -15.148175239562988 + ], + [ + "▁SFR", + -15.148231506347656 + ], + [ + "▁Disciple", + -15.148236274719238 + ], + [ + "▁reexamine", + -15.14824104309082 + ], + [ + "ahir", + -15.148261070251465 + ], + [ + "tzsch", + -15.148285865783691 + ], + [ + "▁Asante", + -15.14830207824707 + ], + [ + "Generally", + -15.1483154296875 + ], + [ + "▁nicked", + -15.14833927154541 + ], + [ + "▁NRE", + -15.148355484008789 + ], + [ + "▁Saur", + -15.148360252380371 + ], + [ + "▁balloting", + -15.14847183227539 + ], + [ + "▁Calci", + -15.148472785949707 + ], + [ + "▁logistically", + -15.148527145385742 + ], + [ + "▁Straighten", + -15.148536682128906 + ], + [ + "▁phytonutrients", + -15.148552894592285 + ], + [ + "▁transferee", + -15.148560523986816 + ], + [ + "subjective", + -15.148561477661133 + ], + [ + "▁파", + -15.148595809936523 + ], + [ + "▁EVM", + -15.14866828918457 + ], + [ + "▁Valtteri", + -15.148676872253418 + ], + [ + "▁GRID", + -15.148677825927734 + ], + [ + "consent", + -15.14867877960205 + ], + [ + "▁slicker", + -15.14870548248291 + ], + [ + "trillion", + -15.148713111877441 + ], + [ + "▁Fortinet", + -15.148724555969238 + ], + [ + "MVP", + -15.148725509643555 + ], + [ + "▁striatum", + -15.148756980895996 + ], + [ + "▁silv", + -15.14877986907959 + ], + [ + "▁Mongo", + -15.148780822753906 + ], + [ + "▁Korra", + -15.148808479309082 + ], + [ + "▁neutering", + -15.148822784423828 + ], + [ + "▁nontoxic", + -15.148831367492676 + ], + [ + "▁Mowbray", + -15.148847579956055 + ], + [ + "▁robocall", + -15.148937225341797 + ], + [ + "pigmentation", + -15.148977279663086 + ], + [ + "▁jarred", + -15.148991584777832 + ], + [ + "▁Elizabethtown", + -15.148998260498047 + ], + [ + "custodial", + -15.149015426635742 + ], + [ + "▁Llano", + -15.149020195007324 + ], + [ + "synchronous", + -15.149042129516602 + ], + [ + "될", + -15.149064064025879 + ], + [ + "▁flamethrower", + -15.149079322814941 + ], + [ + "▁Coombs", + -15.149086952209473 + ], + [ + "▁conveyancer", + -15.149096488952637 + ], + [ + "☆", + -15.149154663085938 + ], + [ + "▁Zeman", + -15.149169921875 + ], + [ + "hoi", + -15.149178504943848 + ], + [ + "currence", + -15.14919662475586 + ], + [ + "▁För", + -15.149234771728516 + ], + [ + "▁deepwater", + -15.149236679077148 + ], + [ + "quantum", + -15.14926815032959 + ], + [ + "▁Feist", + -15.149276733398438 + ], + [ + "▁MART", + -15.149293899536133 + ], + [ + "Blaze", + -15.149300575256348 + ], + [ + "▁menorah", + -15.149324417114258 + ], + [ + "▁Zinedine", + -15.14937686920166 + ], + [ + "uong", + -15.14940071105957 + ], + [ + "▁mori", + -15.149413108825684 + ], + [ + "addon", + -15.149444580078125 + ], + [ + "▁keystroke", + -15.149468421936035 + ], + [ + "▁Kantar", + -15.149477005004883 + ], + [ + "cension", + -15.149478912353516 + ], + [ + "▁creeped", + -15.149484634399414 + ], + [ + "▁Nicklas", + -15.149487495422363 + ], + [ + "▁Bankrate", + -15.149491310119629 + ], + [ + "▁begrudgingly", + -15.149497985839844 + ], + [ + "Shame", + -15.149528503417969 + ], + [ + "▁NAU", + -15.149563789367676 + ], + [ + "Benefit", + -15.149579048156738 + ], + [ + "PSO", + -15.149611473083496 + ], + [ + "▁endeared", + -15.14967155456543 + ], + [ + "▁Nutmeg", + -15.149672508239746 + ], + [ + "ık", + -15.149678230285645 + ], + [ + "▁spartan", + -15.149740219116211 + ], + [ + "▁Justification", + -15.149749755859375 + ], + [ + "▁sheared", + -15.149786949157715 + ], + [ + "orthodox", + -15.149811744689941 + ], + [ + "SAVE", + -15.149829864501953 + ], + [ + "▁Bamford", + -15.149857521057129 + ], + [ + "▁RNLI", + -15.149922370910645 + ], + [ + "▁submenu", + -15.149927139282227 + ], + [ + "Khan", + -15.149945259094238 + ], + [ + "▁cynically", + -15.149996757507324 + ], + [ + "▁inundation", + -15.150002479553223 + ], + [ + "▁rhetorically", + -15.150042533874512 + ], + [ + "▁allspice", + -15.150068283081055 + ], + [ + "▁siesta", + -15.150106430053711 + ], + [ + "vivo", + -15.150110244750977 + ], + [ + "▁Kiribati", + -15.150117874145508 + ], + [ + "▁Nubian", + -15.150192260742188 + ], + [ + "RIAN", + -15.150198936462402 + ], + [ + "▁Zoll", + -15.15022087097168 + ], + [ + "▁Renata", + -15.150257110595703 + ], + [ + "assistance", + -15.15029525756836 + ], + [ + "▁calibrating", + -15.150301933288574 + ], + [ + "meron", + -15.150304794311523 + ], + [ + "▁Woodbine", + -15.150350570678711 + ], + [ + "▁riverboat", + -15.150351524353027 + ], + [ + "▁Corwin", + -15.150352478027344 + ], + [ + "▁chor", + -15.150379180908203 + ], + [ + "▁pontificate", + -15.15038013458252 + ], + [ + "▁Enumeration", + -15.150413513183594 + ], + [ + "▁Steem", + -15.150415420532227 + ], + [ + "▁apportion", + -15.150468826293945 + ], + [ + "Perry", + -15.15051555633545 + ], + [ + "▁Senatorial", + -15.150534629821777 + ], + [ + "▁colorist", + -15.150545120239258 + ], + [ + "▁Melatonin", + -15.150567054748535 + ], + [ + "▁mailman", + -15.150567054748535 + ], + [ + "▁disquiet", + -15.15059757232666 + ], + [ + "▁Statham", + -15.150598526000977 + ], + [ + "رب", + -15.150602340698242 + ], + [ + "▁Ullman", + -15.15060806274414 + ], + [ + "▁Brownlee", + -15.15064525604248 + ], + [ + "▁kleine", + -15.150687217712402 + ], + [ + "▁pranayama", + -15.150739669799805 + ], + [ + "▁muk", + -15.150763511657715 + ], + [ + "▁Recombinant", + -15.150768280029297 + ], + [ + "▁Recurrent", + -15.150785446166992 + ], + [ + "间", + -15.15080451965332 + ], + [ + "▁Basecamp", + -15.15081787109375 + ], + [ + "▁VNC", + -15.150873184204102 + ], + [ + "模", + -15.150879859924316 + ], + [ + "▁Mahadev", + -15.15090560913086 + ], + [ + "▁LATER", + -15.150954246520996 + ], + [ + "▁defen", + -15.15099048614502 + ], + [ + "FRONT", + -15.150997161865234 + ], + [ + "INATE", + -15.151078224182129 + ], + [ + "▁Clipping", + -15.151089668273926 + ], + [ + "▁Carnage", + -15.151124954223633 + ], + [ + "▁crowbar", + -15.15117359161377 + ], + [ + "Avoid", + -15.1511812210083 + ], + [ + "▁neutralization", + -15.151196479797363 + ], + [ + "YEAR", + -15.151211738586426 + ], + [ + "technological", + -15.151228904724121 + ], + [ + "▁kopen", + -15.151232719421387 + ], + [ + "▁Buttermilk", + -15.151286125183105 + ], + [ + "▁contort", + -15.151288986206055 + ], + [ + "arsi", + -15.1513090133667 + ], + [ + "▁Reddick", + -15.15135383605957 + ], + [ + "SFP", + -15.1513671875 + ], + [ + "BUILD", + -15.151374816894531 + ], + [ + "struktur", + -15.151379585266113 + ], + [ + "▁Detour", + -15.151407241821289 + ], + [ + "▁Postcode", + -15.151445388793945 + ], + [ + "▁cognizance", + -15.151466369628906 + ], + [ + "Liverpool", + -15.151511192321777 + ], + [ + "▁undeserving", + -15.151535034179688 + ], + [ + "▁LEWIS", + -15.151537895202637 + ], + [ + "▁Upset", + -15.151549339294434 + ], + [ + "▁Nephrology", + -15.15157699584961 + ], + [ + "gyi", + -15.151615142822266 + ], + [ + "▁DEB", + -15.151616096496582 + ], + [ + "arion", + -15.15162467956543 + ], + [ + "▁digitised", + -15.151636123657227 + ], + [ + "▁biomaterials", + -15.15164852142334 + ], + [ + "▁WOT", + -15.151698112487793 + ], + [ + "▁popper", + -15.151763916015625 + ], + [ + "▁Tarte", + -15.151782035827637 + ], + [ + "Volunteer", + -15.151803970336914 + ], + [ + "▁equ", + -15.151815414428711 + ], + [ + "▁appropriating", + -15.151935577392578 + ], + [ + "受", + -15.151952743530273 + ], + [ + "▁repulsion", + -15.151955604553223 + ], + [ + "SNL", + -15.15199089050293 + ], + [ + "▁humidor", + -15.151996612548828 + ], + [ + "isé", + -15.152013778686523 + ], + [ + "▁Carbone", + -15.152047157287598 + ], + [ + "▁trommel", + -15.152058601379395 + ], + [ + "▁Frauen", + -15.152074813842773 + ], + [ + "▁Graco", + -15.152101516723633 + ], + [ + "▁Zuckerman", + -15.152141571044922 + ], + [ + "速", + -15.152154922485352 + ], + [ + "blot", + -15.152169227600098 + ], + [ + "Bubble", + -15.15219783782959 + ], + [ + "▁iDevice", + -15.152205467224121 + ], + [ + "▁LBD", + -15.15221118927002 + ], + [ + "▁rotunda", + -15.15223217010498 + ], + [ + "▁DIRECTION", + -15.152254104614258 + ], + [ + "▁BAA", + -15.152290344238281 + ], + [ + "▁dogwood", + -15.152310371398926 + ], + [ + "acki", + -15.152338027954102 + ], + [ + "▁beautician", + -15.15236759185791 + ], + [ + "WAVE", + -15.152372360229492 + ], + [ + "▁ACB", + -15.152408599853516 + ], + [ + "Mira", + -15.152448654174805 + ], + [ + "▁Repetition", + -15.152493476867676 + ], + [ + "squeeze", + -15.152515411376953 + ], + [ + "▁Blanton", + -15.15251636505127 + ], + [ + "▁Dema", + -15.15255069732666 + ], + [ + "▁fiendish", + -15.152565956115723 + ], + [ + "▁FLSA", + -15.152573585510254 + ], + [ + "▁Citroën", + -15.152599334716797 + ], + [ + "▁ECI", + -15.15262508392334 + ], + [ + "▁disproved", + -15.152645111083984 + ], + [ + "▁CCN", + -15.152652740478516 + ], + [ + "▁Frontera", + -15.152673721313477 + ], + [ + "▁CHU", + -15.152688980102539 + ], + [ + "▁polysaccharide", + -15.152690887451172 + ], + [ + "▁Nitrate", + -15.152697563171387 + ], + [ + "▁Prehistoric", + -15.152708053588867 + ], + [ + "▁Aveda", + -15.1527099609375 + ], + [ + "▁Salamander", + -15.152717590332031 + ], + [ + "▁Koepka", + -15.152739524841309 + ], + [ + "▁Jervis", + -15.15274715423584 + ], + [ + "▁anhydrous", + -15.152755737304688 + ], + [ + "▁rapidity", + -15.152780532836914 + ], + [ + "▁Limbo", + -15.152782440185547 + ], + [ + "▁Bibli", + -15.152807235717773 + ], + [ + "▁Troupe", + -15.152831077575684 + ], + [ + "▁seroquel", + -15.152836799621582 + ], + [ + "▁echt", + -15.152865409851074 + ], + [ + "escalate", + -15.152871131896973 + ], + [ + "▁Puree", + -15.152892112731934 + ], + [ + "▁adoptable", + -15.152922630310059 + ], + [ + "▁ringleader", + -15.152945518493652 + ], + [ + "▁carboxy", + -15.152985572814941 + ], + [ + "▁Specified", + -15.153006553649902 + ], + [ + "▁foreshore", + -15.153010368347168 + ], + [ + "▁lisa", + -15.153051376342773 + ], + [ + "▁ColdFusion", + -15.153129577636719 + ], + [ + "▁Thon", + -15.153148651123047 + ], + [ + "▁Kyler", + -15.153214454650879 + ], + [ + "▁Chama", + -15.153277397155762 + ], + [ + "▁frittata", + -15.15328311920166 + ], + [ + "▁trem", + -15.15333366394043 + ], + [ + "▁Schiavo", + -15.153377532958984 + ], + [ + "▁Simeone", + -15.153382301330566 + ], + [ + "▁prolactin", + -15.15340805053711 + ], + [ + "▁hamilton", + -15.153451919555664 + ], + [ + "▁ghoulish", + -15.153465270996094 + ], + [ + "▁incubating", + -15.153470039367676 + ], + [ + "▁frei", + -15.153481483459473 + ], + [ + "▁Custodian", + -15.153486251831055 + ], + [ + "▁Shaquille", + -15.153501510620117 + ], + [ + "▁Leaflet", + -15.153511047363281 + ], + [ + "Album", + -15.153515815734863 + ], + [ + "으", + -15.153603553771973 + ], + [ + "▁armadillo", + -15.153645515441895 + ], + [ + "▁JLL", + -15.153712272644043 + ], + [ + "▁Schulman", + -15.153745651245117 + ], + [ + "STL", + -15.153800964355469 + ], + [ + "▁Terminus", + -15.153840065002441 + ], + [ + "participation", + -15.153841018676758 + ], + [ + "▁Accrington", + -15.153876304626465 + ], + [ + "▁Rushdie", + -15.153887748718262 + ], + [ + "▁narcolepsy", + -15.153889656066895 + ], + [ + "8221", + -15.153891563415527 + ], + [ + "atil", + -15.153908729553223 + ], + [ + "lng", + -15.153923988342285 + ], + [ + "▁glimmering", + -15.153942108154297 + ], + [ + "▁Hummus", + -15.153943061828613 + ], + [ + "IBC", + -15.153950691223145 + ], + [ + "▁Gruen", + -15.153971672058105 + ], + [ + "▁Hounslow", + -15.153983116149902 + ], + [ + "plenty", + -15.154036521911621 + ], + [ + "▁wherefore", + -15.154074668884277 + ], + [ + "▁UNH", + -15.154075622558594 + ], + [ + "▁Vesuvius", + -15.15407657623291 + ], + [ + "BCA", + -15.154097557067871 + ], + [ + "▁nana", + -15.15414047241211 + ], + [ + "▁Eason", + -15.154183387756348 + ], + [ + "▁Chamisa", + -15.154190063476562 + ], + [ + "Gab", + -15.154233932495117 + ], + [ + "▁tremolo", + -15.154268264770508 + ], + [ + "8266", + -15.154328346252441 + ], + [ + "▁Duf", + -15.154340744018555 + ], + [ + "▁Takeshi", + -15.154340744018555 + ], + [ + "▁galvanizing", + -15.154387474060059 + ], + [ + "furan", + -15.154437065124512 + ], + [ + "tutor", + -15.154438018798828 + ], + [ + "▁Scribble", + -15.154455184936523 + ], + [ + "دة", + -15.154460906982422 + ], + [ + "brunn", + -15.154522895812988 + ], + [ + "▁ativan", + -15.154541015625 + ], + [ + "▁fibula", + -15.154603004455566 + ], + [ + "Ú", + -15.1546049118042 + ], + [ + "▁PNAS", + -15.154608726501465 + ], + [ + "plagued", + -15.15461540222168 + ], + [ + "▁Kaliningrad", + -15.154667854309082 + ], + [ + "▁wala", + -15.154674530029297 + ], + [ + "▁Homan", + -15.154767036437988 + ], + [ + "▁Timur", + -15.154807090759277 + ], + [ + "▁tantric", + -15.154868125915527 + ], + [ + "▁buena", + -15.154882431030273 + ], + [ + "▁caveman", + -15.154884338378906 + ], + [ + "▁yanking", + -15.154903411865234 + ], + [ + "بل", + -15.154918670654297 + ], + [ + "▁unattached", + -15.154953956604004 + ], + [ + "▁duper", + -15.154989242553711 + ], + [ + "impression", + -15.154990196228027 + ], + [ + "packaging", + -15.154996871948242 + ], + [ + "▁cGMP", + -15.155047416687012 + ], + [ + "▁Moffitt", + -15.155056953430176 + ], + [ + "▁Whee", + -15.155156135559082 + ], + [ + "syllabic", + -15.155172348022461 + ], + [ + "▁FHL", + -15.155172348022461 + ], + [ + "▁Turan", + -15.155174255371094 + ], + [ + "Riv", + -15.155186653137207 + ], + [ + "▁ECD", + -15.155211448669434 + ], + [ + "▁generically", + -15.1552152633667 + ], + [ + "Whoa", + -15.15530776977539 + ], + [ + "▁understudy", + -15.155325889587402 + ], + [ + "ndri", + -15.155332565307617 + ], + [ + "▁Narra", + -15.1553373336792 + ], + [ + "▁linuxstb", + -15.1553373336792 + ], + [ + "▁ARMY", + -15.155362129211426 + ], + [ + "▁Treble", + -15.155415534973145 + ], + [ + "▁tardy", + -15.155427932739258 + ], + [ + "deutsche", + -15.155452728271484 + ], + [ + "▁Plump", + -15.1555757522583 + ], + [ + "NLP", + -15.155583381652832 + ], + [ + "▁putrid", + -15.155611991882324 + ], + [ + "Promotion", + -15.155646324157715 + ], + [ + "▁menjadi", + -15.155652046203613 + ], + [ + "▁Mamba", + -15.155653953552246 + ], + [ + "▁malo", + -15.15566349029541 + ], + [ + "otypes", + -15.155678749084473 + ], + [ + "Liv", + -15.15571403503418 + ], + [ + "Highly", + -15.155730247497559 + ], + [ + "▁Yoast", + -15.15574836730957 + ], + [ + "▁Honored", + -15.15576171875 + ], + [ + "▁Morehouse", + -15.15576171875 + ], + [ + "▁Caye", + -15.155768394470215 + ], + [ + "divide", + -15.155824661254883 + ], + [ + "BDS", + -15.155842781066895 + ], + [ + "▁Yohan", + -15.15584945678711 + ], + [ + "▁metamorphic", + -15.155863761901855 + ], + [ + "▁Agence", + -15.155864715576172 + ], + [ + "▁DIGI", + -15.155884742736816 + ], + [ + "▁XXXX", + -15.15588665008545 + ], + [ + "▁photojournalism", + -15.155924797058105 + ], + [ + "▁taxidermy", + -15.155929565429688 + ], + [ + "▁Onondaga", + -15.155976295471191 + ], + [ + "ogeny", + -15.15600872039795 + ], + [ + "▁Caprice", + -15.156010627746582 + ], + [ + "키", + -15.156038284301758 + ], + [ + "▁bursa", + -15.156055450439453 + ], + [ + "▁Zipp", + -15.15606689453125 + ], + [ + "▁Cagliari", + -15.1560697555542 + ], + [ + "▁dopaminergic", + -15.156087875366211 + ], + [ + "▁petri", + -15.156128883361816 + ], + [ + "▁Madelyn", + -15.156134605407715 + ], + [ + "▁agape", + -15.156167984008789 + ], + [ + "medio", + -15.156187057495117 + ], + [ + "▁terrify", + -15.156187057495117 + ], + [ + "▁Nikko", + -15.156222343444824 + ], + [ + "▁seminarians", + -15.156238555908203 + ], + [ + "▁chub", + -15.156293869018555 + ], + [ + "▁Patiala", + -15.15633487701416 + ], + [ + "▁sila", + -15.156341552734375 + ], + [ + "▁PSB", + -15.15634536743164 + ], + [ + "▁Magyar", + -15.156366348266602 + ], + [ + "François", + -15.15645980834961 + ], + [ + "▁Dixit", + -15.156537055969238 + ], + [ + "surfer", + -15.15654468536377 + ], + [ + "permission", + -15.156553268432617 + ], + [ + "▁Minnesotans", + -15.15655517578125 + ], + [ + "UCA", + -15.156578063964844 + ], + [ + "Meat", + -15.156587600708008 + ], + [ + "▁Taoism", + -15.15662670135498 + ], + [ + "splen", + -15.156641006469727 + ], + [ + "▁SCUBA", + -15.156645774841309 + ], + [ + "▁Elysium", + -15.156646728515625 + ], + [ + "▁duhet", + -15.156683921813965 + ], + [ + "▁Encyclopaedia", + -15.156708717346191 + ], + [ + "▁Suva", + -15.15674877166748 + ], + [ + "dharma", + -15.156882286071777 + ], + [ + "▁Gaithersburg", + -15.156898498535156 + ], + [ + "▁PLP", + -15.1569242477417 + ], + [ + "Isaac", + -15.15694808959961 + ], + [ + "▁Ł", + -15.156952857971191 + ], + [ + "▁breakwater", + -15.156970977783203 + ], + [ + "▁ponderous", + -15.156991004943848 + ], + [ + "▁savant", + -15.156994819641113 + ], + [ + "▁Consular", + -15.157004356384277 + ], + [ + "▁Peculiar", + -15.157036781311035 + ], + [ + "▁Opposing", + -15.157048225402832 + ], + [ + "▁gusting", + -15.157072067260742 + ], + [ + "omonas", + -15.157092094421387 + ], + [ + "braid", + -15.157093048095703 + ], + [ + "▁WARM", + -15.157123565673828 + ], + [ + "▁Garuda", + -15.157139778137207 + ], + [ + "▁Concealer", + -15.157148361206055 + ], + [ + "▁circumscribed", + -15.157193183898926 + ], + [ + "▁allograft", + -15.157208442687988 + ], + [ + "▁Vadim", + -15.157219886779785 + ], + [ + "▁unnerved", + -15.157270431518555 + ], + [ + "HTC", + -15.157285690307617 + ], + [ + "▁Anywho", + -15.157288551330566 + ], + [ + "▁overthrowing", + -15.157297134399414 + ], + [ + "▁Ulu", + -15.157304763793945 + ], + [ + "▁heartthrob", + -15.157308578491211 + ], + [ + "▁Nadella", + -15.157318115234375 + ], + [ + "RGB", + -15.157320976257324 + ], + [ + "Expect", + -15.1573486328125 + ], + [ + "▁Headband", + -15.157366752624512 + ], + [ + "▁WGC", + -15.157369613647461 + ], + [ + "▁YSL", + -15.157373428344727 + ], + [ + "urga", + -15.157390594482422 + ], + [ + "▁leucine", + -15.157390594482422 + ], + [ + "14001", + -15.15740966796875 + ], + [ + "▁poring", + -15.15740966796875 + ], + [ + "▁Homeschooling", + -15.1574125289917 + ], + [ + "▁Satish", + -15.157423973083496 + ], + [ + "▁stabilising", + -15.157449722290039 + ], + [ + "▁Lisle", + -15.157474517822266 + ], + [ + "▁Etude", + -15.15756893157959 + ], + [ + "▁NSAID", + -15.157572746276855 + ], + [ + "TET", + -15.15757942199707 + ], + [ + "▁Steppe", + -15.157621383666992 + ], + [ + "▁Maliki", + -15.157629013061523 + ], + [ + "▁lode", + -15.157644271850586 + ], + [ + "▁augmentin", + -15.157669067382812 + ], + [ + "▁McCown", + -15.157672882080078 + ], + [ + "▁Woolley", + -15.157673835754395 + ], + [ + "يم", + -15.15768051147461 + ], + [ + "pali", + -15.15768814086914 + ], + [ + "▁illiquid", + -15.157691955566406 + ], + [ + "▁faze", + -15.157721519470215 + ], + [ + "▁Compostela", + -15.157748222351074 + ], + [ + "granite", + -15.157785415649414 + ], + [ + "▁Salinger", + -15.157796859741211 + ], + [ + "TIG", + -15.157804489135742 + ], + [ + "▁MTD", + -15.157899856567383 + ], + [ + "▁LEARNING", + -15.15792465209961 + ], + [ + "▁Deadwood", + -15.15800952911377 + ], + [ + "Jewel", + -15.158037185668945 + ], + [ + "▁Morrell", + -15.158077239990234 + ], + [ + "▁27001", + -15.158088684082031 + ], + [ + "▁Scherer", + -15.158114433288574 + ], + [ + "▁numerator", + -15.158123970031738 + ], + [ + "▁watercourse", + -15.15816879272461 + ], + [ + "▁rerouted", + -15.158171653747559 + ], + [ + "真", + -15.158185005187988 + ], + [ + "▁taskforce", + -15.158212661743164 + ], + [ + "▁southpaw", + -15.158233642578125 + ], + [ + "▁laboured", + -15.158249855041504 + ], + [ + "▁butchering", + -15.158300399780273 + ], + [ + "▁scuffed", + -15.158309936523438 + ], + [ + "▁LOSE", + -15.158315658569336 + ], + [ + "▁EMM", + -15.158316612243652 + ], + [ + "▁perovskite", + -15.158331871032715 + ], + [ + "▁infarct", + -15.158346176147461 + ], + [ + "▁dysphoria", + -15.158379554748535 + ], + [ + "▁Postmodern", + -15.1583833694458 + ], + [ + "ści", + -15.158416748046875 + ], + [ + "▁Hader", + -15.158464431762695 + ], + [ + "Margaret", + -15.158472061157227 + ], + [ + "LEV", + -15.158485412597656 + ], + [ + "▁Kubi", + -15.158507347106934 + ], + [ + "▁1366", + -15.158541679382324 + ], + [ + "▁heightening", + -15.158556938171387 + ], + [ + "▁Rooted", + -15.158561706542969 + ], + [ + "JAM", + -15.1585693359375 + ], + [ + "▁Cherub", + -15.15859603881836 + ], + [ + "Chill", + -15.158625602722168 + ], + [ + "▁1766", + -15.158625602722168 + ], + [ + "▁foreskin", + -15.158646583557129 + ], + [ + "▁Calligraphy", + -15.158661842346191 + ], + [ + "想", + -15.158689498901367 + ], + [ + "▁Pictorial", + -15.158698081970215 + ], + [ + "▁disobeyed", + -15.158712387084961 + ], + [ + "▁memorise", + -15.158734321594238 + ], + [ + "quish", + -15.158841133117676 + ], + [ + "▁Lindley", + -15.158858299255371 + ], + [ + "▁substituent", + -15.158879280090332 + ], + [ + "▁PostScript", + -15.158880233764648 + ], + [ + "▁Devoted", + -15.158882141113281 + ], + [ + "bloc", + -15.15888500213623 + ], + [ + "▁Twit", + -15.158942222595215 + ], + [ + "mageddon", + -15.15894603729248 + ], + [ + "gré", + -15.15896987915039 + ], + [ + "▁Funnily", + -15.158988952636719 + ], + [ + "▁Axl", + -15.158994674682617 + ], + [ + "▁Nawab", + -15.159025192260742 + ], + [ + "▁Kiir", + -15.159074783325195 + ], + [ + "▁BEHIND", + -15.159113883972168 + ], + [ + "▁Emphasize", + -15.159113883972168 + ], + [ + "iphone", + -15.159133911132812 + ], + [ + "造", + -15.159173965454102 + ], + [ + "▁Kassa", + -15.159192085266113 + ], + [ + "▁vaporize", + -15.159201622009277 + ], + [ + "▁Bumgarner", + -15.159270286560059 + ], + [ + "▁Fitchburg", + -15.159293174743652 + ], + [ + "▁myrrh", + -15.159317970275879 + ], + [ + "Confirm", + -15.159347534179688 + ], + [ + "▁Gallop", + -15.159353256225586 + ], + [ + "gano", + -15.159360885620117 + ], + [ + "▁Phishing", + -15.159370422363281 + ], + [ + "▁THA", + -15.15937328338623 + ], + [ + "근", + -15.159379005432129 + ], + [ + "processes", + -15.159385681152344 + ], + [ + "schä", + -15.159407615661621 + ], + [ + "▁Kurosawa", + -15.159427642822266 + ], + [ + "Challa", + -15.159432411193848 + ], + [ + "Associate", + -15.1594820022583 + ], + [ + "▁Bougainville", + -15.159488677978516 + ], + [ + "▁ल", + -15.159509658813477 + ], + [ + "Frost", + -15.159510612487793 + ], + [ + "introduce", + -15.15953540802002 + ], + [ + "▁millenia", + -15.159565925598145 + ], + [ + "▁Clinically", + -15.159575462341309 + ], + [ + "FEL", + -15.159601211547852 + ], + [ + "▁Shav", + -15.159614562988281 + ], + [ + "▁Functioning", + -15.159646034240723 + ], + [ + "flick", + -15.159687042236328 + ], + [ + "▁negligently", + -15.159687042236328 + ], + [ + "conformity", + -15.159710884094238 + ], + [ + "IOM", + -15.159757614135742 + ], + [ + "▁Banu", + -15.159825325012207 + ], + [ + "▁Lauda", + -15.159833908081055 + ], + [ + "制御", + -15.159852981567383 + ], + [ + "kazu", + -15.159856796264648 + ], + [ + "▁Pinter", + -15.15990924835205 + ], + [ + "▁Salish", + -15.159914016723633 + ], + [ + "hydraulic", + -15.15992546081543 + ], + [ + "tubulin", + -15.159930229187012 + ], + [ + "roger", + -15.159934043884277 + ], + [ + "▁mí", + -15.159960746765137 + ], + [ + "▁Knightsbridge", + -15.159969329833984 + ], + [ + "▁turbidity", + -15.159978866577148 + ], + [ + "▁Malan", + -15.159980773925781 + ], + [ + "blended", + -15.160046577453613 + ], + [ + "▁hale", + -15.160080909729004 + ], + [ + "▁Whitefield", + -15.160083770751953 + ], + [ + "▁CCB", + -15.160085678100586 + ], + [ + "bashing", + -15.1600923538208 + ], + [ + "ında", + -15.160101890563965 + ], + [ + "▁Goud", + -15.160111427307129 + ], + [ + "▁conservancy", + -15.160115242004395 + ], + [ + "▁Vuelta", + -15.160133361816406 + ], + [ + "▁pyrolysis", + -15.16022777557373 + ], + [ + "▁Ichigo", + -15.160239219665527 + ], + [ + "▁tactician", + -15.160269737243652 + ], + [ + "▁Benchmarking", + -15.16027545928955 + ], + [ + "▁vilify", + -15.160280227661133 + ], + [ + "▁Horsemen", + -15.16028881072998 + ], + [ + "▁Rizk", + -15.160341262817383 + ], + [ + "▁fraudster", + -15.160348892211914 + ], + [ + "▁Pullover", + -15.160350799560547 + ], + [ + "hili", + -15.160353660583496 + ], + [ + "목", + -15.160365104675293 + ], + [ + "▁Steelhead", + -15.160370826721191 + ], + [ + "Heather", + -15.160396575927734 + ], + [ + "▁Deschutes", + -15.160411834716797 + ], + [ + "hatred", + -15.160453796386719 + ], + [ + "Melbourne", + -15.160470008850098 + ], + [ + "SLAM", + -15.160518646240234 + ], + [ + "ujan", + -15.160533905029297 + ], + [ + "nervate", + -15.16054630279541 + ], + [ + "Verified", + -15.160567283630371 + ], + [ + "▁ALBUM", + -15.160587310791016 + ], + [ + "▁compli", + -15.160614013671875 + ], + [ + "▁striding", + -15.16064167022705 + ], + [ + "▁overfishing", + -15.160643577575684 + ], + [ + "▁geht", + -15.1607027053833 + ], + [ + "▁fiftieth", + -15.160725593566895 + ], + [ + "jó", + -15.160734176635742 + ], + [ + "▁Civi", + -15.160746574401855 + ], + [ + "Quart", + -15.160749435424805 + ], + [ + "▁estrangement", + -15.160757064819336 + ], + [ + "capturing", + -15.160765647888184 + ], + [ + "▁Seeley", + -15.16079044342041 + ], + [ + "SEND", + -15.16082763671875 + ], + [ + "genital", + -15.160880088806152 + ], + [ + "Replace", + -15.160933494567871 + ], + [ + "łu", + -15.161005973815918 + ], + [ + "▁Chipper", + -15.16101360321045 + ], + [ + "1874", + -15.161015510559082 + ], + [ + "▁Tambor", + -15.161022186279297 + ], + [ + "Tape", + -15.161052703857422 + ], + [ + "▁Waa", + -15.161066055297852 + ], + [ + "asya", + -15.161083221435547 + ], + [ + "▁WSC", + -15.161101341247559 + ], + [ + "▁mongering", + -15.161104202270508 + ], + [ + "▁Causal", + -15.161128044128418 + ], + [ + "▁PERS", + -15.16114330291748 + ], + [ + "▁Dammit", + -15.161192893981934 + ], + [ + "āk", + -15.161195755004883 + ], + [ + "▁Bethune", + -15.161202430725098 + ], + [ + "possessed", + -15.161210060119629 + ], + [ + "▁neuroblastoma", + -15.161242485046387 + ], + [ + "▁KCC", + -15.16125774383545 + ], + [ + "▁Escu", + -15.16128158569336 + ], + [ + "▁MOE", + -15.161293983459473 + ], + [ + "ление", + -15.161298751831055 + ], + [ + "▁FIFTY", + -15.161299705505371 + ], + [ + "▁singletrack", + -15.161300659179688 + ], + [ + "thrombotic", + -15.161304473876953 + ], + [ + "aaah", + -15.161332130432129 + ], + [ + "▁LOCATED", + -15.16134262084961 + ], + [ + "▁Aleksandar", + -15.161352157592773 + ], + [ + "▁instantiate", + -15.161356925964355 + ], + [ + "▁loca", + -15.161394119262695 + ], + [ + "▁SLU", + -15.16141128540039 + ], + [ + "〜", + -15.161430358886719 + ], + [ + "▁earnestness", + -15.16147518157959 + ], + [ + "▁CRYSTAL", + -15.161477088928223 + ], + [ + "▁McGar", + -15.161479949951172 + ], + [ + "っ", + -15.16148567199707 + ], + [ + "▁grimaced", + -15.161491394042969 + ], + [ + "▁prefixed", + -15.16151237487793 + ], + [ + "TAT", + -15.161530494689941 + ], + [ + "▁Hubei", + -15.161559104919434 + ], + [ + "▁Marymount", + -15.161559104919434 + ], + [ + "▁SWR", + -15.161568641662598 + ], + [ + "WORLD", + -15.161582946777344 + ], + [ + "▁Soaking", + -15.161605834960938 + ], + [ + "▁Elven", + -15.161614418029785 + ], + [ + "juli", + -15.161615371704102 + ], + [ + "Gree", + -15.161661148071289 + ], + [ + "▁McCarron", + -15.161688804626465 + ], + [ + "▁punting", + -15.161697387695312 + ], + [ + "▁outtakes", + -15.161700248718262 + ], + [ + "▁McNe", + -15.161711692810059 + ], + [ + "fasci", + -15.16171646118164 + ], + [ + "▁horseman", + -15.161730766296387 + ], + [ + "thankfully", + -15.161767959594727 + ], + [ + "▁Spil", + -15.16176986694336 + ], + [ + "▁Aaliyah", + -15.1618070602417 + ], + [ + "▁EGF", + -15.161812782287598 + ], + [ + "▁conclave", + -15.161853790283203 + ], + [ + "▁Eberhard", + -15.161888122558594 + ], + [ + "NOX", + -15.161901473999023 + ], + [ + "▁lia", + -15.161938667297363 + ], + [ + "banana", + -15.161974906921387 + ], + [ + "▁Barossa", + -15.16201400756836 + ], + [ + "Catherine", + -15.162028312683105 + ], + [ + "▁Tegra", + -15.162054061889648 + ], + [ + "REV", + -15.162056922912598 + ], + [ + "▁impairing", + -15.162109375 + ], + [ + "rran", + -15.162115097045898 + ], + [ + "▁GDI", + -15.162195205688477 + ], + [ + "energize", + -15.162216186523438 + ], + [ + "publik", + -15.16222858428955 + ], + [ + "Darling", + -15.16223430633545 + ], + [ + "▁Longfellow", + -15.162257194519043 + ], + [ + "▁○", + -15.162263870239258 + ], + [ + "▁Maio", + -15.162266731262207 + ], + [ + "ရ", + -15.162322044372559 + ], + [ + "▁Prioritize", + -15.162338256835938 + ], + [ + "▁Gulp", + -15.162348747253418 + ], + [ + "▁lire", + -15.162400245666504 + ], + [ + "▁Royston", + -15.16240119934082 + ], + [ + "Ш", + -15.162421226501465 + ], + [ + "▁Beckwith", + -15.162466049194336 + ], + [ + "▁Steamed", + -15.162467956542969 + ], + [ + "imperial", + -15.162516593933105 + ], + [ + "▁Kaolin", + -15.162553787231445 + ], + [ + "▁Inquisitr", + -15.162559509277344 + ], + [ + "staying", + -15.162565231323242 + ], + [ + "▁empress", + -15.16257381439209 + ], + [ + "▁Noire", + -15.162595748901367 + ], + [ + "eš", + -15.162642478942871 + ], + [ + "yaka", + -15.16264820098877 + ], + [ + "▁Tigris", + -15.162659645080566 + ], + [ + "deficit", + -15.162691116333008 + ], + [ + "▁Sophos", + -15.162707328796387 + ], + [ + "▁Disappointing", + -15.16271686553955 + ], + [ + "▁Hoke", + -15.162728309631348 + ], + [ + "▁yonder", + -15.162728309631348 + ], + [ + "▁irrationality", + -15.16277027130127 + ], + [ + "▁Biogen", + -15.162771224975586 + ], + [ + "reddy", + -15.162779808044434 + ], + [ + "virtually", + -15.162793159484863 + ], + [ + "▁HEREBY", + -15.16279411315918 + ], + [ + "▁CWS", + -15.162824630737305 + ], + [ + "Tamil", + -15.162826538085938 + ], + [ + "▁speckle", + -15.162880897521973 + ], + [ + "집", + -15.162888526916504 + ], + [ + "▁Sika", + -15.162911415100098 + ], + [ + "▁Mintz", + -15.16291618347168 + ], + [ + "▁Universidade", + -15.162932395935059 + ], + [ + "▁infidels", + -15.162951469421387 + ], + [ + "▁impulsively", + -15.162958145141602 + ], + [ + "▁Shulman", + -15.162961959838867 + ], + [ + "▁typist", + -15.162961959838867 + ], + [ + "▁Nando", + -15.162965774536133 + ], + [ + "▁deuce", + -15.162965774536133 + ], + [ + "nnigan", + -15.16296672821045 + ], + [ + "▁acquiescence", + -15.16298770904541 + ], + [ + "▁Dimethicone", + -15.163007736206055 + ], + [ + "▁swastika", + -15.16301441192627 + ], + [ + "▁Hellman", + -15.163021087646484 + ], + [ + "BOO", + -15.16304874420166 + ], + [ + "▁airspeed", + -15.163082122802734 + ], + [ + "▁Kirkman", + -15.163089752197266 + ], + [ + "▁clumping", + -15.163135528564453 + ], + [ + "▁scamming", + -15.1631441116333 + ], + [ + "▁mimicry", + -15.163147926330566 + ], + [ + "▁Avraham", + -15.163187026977539 + ], + [ + "▁Securi", + -15.163206100463867 + ], + [ + "▁Ferrero", + -15.163207054138184 + ], + [ + "▁Luth", + -15.163209915161133 + ], + [ + "packet", + -15.163211822509766 + ], + [ + "▁Hartwell", + -15.163215637207031 + ], + [ + "▁Lugano", + -15.163228034973145 + ], + [ + "terminus", + -15.16326904296875 + ], + [ + "▁Cosme", + -15.16329574584961 + ], + [ + "Dennis", + -15.16330623626709 + ], + [ + "▁mucking", + -15.163326263427734 + ], + [ + "▁SAH", + -15.163358688354492 + ], + [ + "▁Affordability", + -15.16337776184082 + ], + [ + "Marriage", + -15.163439750671387 + ], + [ + "hedge", + -15.163483619689941 + ], + [ + "▁Aurangabad", + -15.163485527038574 + ], + [ + "separation", + -15.163511276245117 + ], + [ + "COUNT", + -15.163533210754395 + ], + [ + "▁Greenblatt", + -15.163576126098633 + ], + [ + "▁Supervised", + -15.16358757019043 + ], + [ + "▁PLASTIC", + -15.163606643676758 + ], + [ + "▁Basal", + -15.163612365722656 + ], + [ + "▁Schwer", + -15.163628578186035 + ], + [ + "▁sinuous", + -15.163662910461426 + ], + [ + "comcast", + -15.16367244720459 + ], + [ + "▁RECEIVED", + -15.163681030273438 + ], + [ + "▁breathalyzer", + -15.163702011108398 + ], + [ + "▁Chaw", + -15.163703918457031 + ], + [ + "▁niceties", + -15.16370677947998 + ], + [ + "▁soapbox", + -15.163708686828613 + ], + [ + "▁Kinsella", + -15.163738250732422 + ], + [ + "▁neurontin", + -15.163745880126953 + ], + [ + "carers", + -15.163758277893066 + ], + [ + "▁Yannick", + -15.163804054260254 + ], + [ + "▁Midori", + -15.163860321044922 + ], + [ + "▁erudition", + -15.163862228393555 + ], + [ + "tipping", + -15.163900375366211 + ], + [ + "chetta", + -15.163948059082031 + ], + [ + "▁catacombs", + -15.16396427154541 + ], + [ + "▁Kalla", + -15.16399097442627 + ], + [ + "▁heterocyclic", + -15.163992881774902 + ], + [ + "▁наш", + -15.164006233215332 + ], + [ + "▁whizzing", + -15.16407585144043 + ], + [ + "RSV", + -15.164081573486328 + ], + [ + "▁cili", + -15.164108276367188 + ], + [ + "▁amoeba", + -15.164111137390137 + ], + [ + "marijuana", + -15.164131164550781 + ], + [ + "▁Marvell", + -15.16414737701416 + ], + [ + "▁McGinnis", + -15.164161682128906 + ], + [ + "▁Dalla", + -15.164165496826172 + ], + [ + "ziale", + -15.164217948913574 + ], + [ + "▁Equitable", + -15.164236068725586 + ], + [ + "▁sunburst", + -15.164244651794434 + ], + [ + "▁detal", + -15.164255142211914 + ], + [ + "▁undermount", + -15.164261817932129 + ], + [ + "▁Sourcebook", + -15.16433048248291 + ], + [ + "▁Gdansk", + -15.164344787597656 + ], + [ + "ớ", + -15.1643648147583 + ], + [ + "notification", + -15.164384841918945 + ], + [ + "ICATION", + -15.164398193359375 + ], + [ + "▁subframe", + -15.164423942565918 + ], + [ + "▁Precautions", + -15.164545059204102 + ], + [ + "became", + -15.16458511352539 + ], + [ + "▁resurrecting", + -15.164587020874023 + ], + [ + "▁rapped", + -15.164617538452148 + ], + [ + "▁tourniquet", + -15.164617538452148 + ], + [ + "▁Frito", + -15.164624214172363 + ], + [ + "▁decriminalize", + -15.16466236114502 + ], + [ + "▁curmudgeon", + -15.164664268493652 + ], + [ + "modeling", + -15.164680480957031 + ], + [ + "ammie", + -15.164689064025879 + ], + [ + "▁Serta", + -15.164692878723145 + ], + [ + "BUR", + -15.164706230163574 + ], + [ + "rī", + -15.164732933044434 + ], + [ + "▁fencer", + -15.164745330810547 + ], + [ + "▁popularize", + -15.16476821899414 + ], + [ + "▁Jager", + -15.164777755737305 + ], + [ + "1862", + -15.164794921875 + ], + [ + "▁feedlot", + -15.16482925415039 + ], + [ + "▁meditator", + -15.164933204650879 + ], + [ + "▁neoconservative", + -15.164999961853027 + ], + [ + "Glory", + -15.165000915527344 + ], + [ + "ILITY", + -15.165000915527344 + ], + [ + "▁citalopram", + -15.165037155151367 + ], + [ + "▁headstrong", + -15.1650390625 + ], + [ + "▁Cabela", + -15.16506290435791 + ], + [ + "▁polarised", + -15.165074348449707 + ], + [ + "▁objet", + -15.165092468261719 + ], + [ + "Leak", + -15.165099143981934 + ], + [ + "ể", + -15.16513442993164 + ], + [ + "▁factsheet", + -15.165141105651855 + ], + [ + "Stamp", + -15.165143966674805 + ], + [ + "▁Soule", + -15.165225982666016 + ], + [ + "▁EFFECTIVE", + -15.16524887084961 + ], + [ + "▁Bedtime", + -15.165266036987305 + ], + [ + "▁disassociate", + -15.165284156799316 + ], + [ + "▁drumbeat", + -15.165290832519531 + ], + [ + "▁recused", + -15.165322303771973 + ], + [ + "▁spir", + -15.165338516235352 + ], + [ + "▁delimiter", + -15.165342330932617 + ], + [ + "▁Ovi", + -15.165363311767578 + ], + [ + "TIVE", + -15.165376663208008 + ], + [ + "▁Maddison", + -15.165403366088867 + ], + [ + "▁dietetic", + -15.165409088134766 + ], + [ + "▁McEvoy", + -15.16541862487793 + ], + [ + "▁Blakely", + -15.165421485900879 + ], + [ + "▁Nordisk", + -15.16543960571289 + ], + [ + "▁Deleting", + -15.165445327758789 + ], + [ + "▁reprised", + -15.1654691696167 + ], + [ + "▁Jacobite", + -15.16547679901123 + ], + [ + "▁Dailey", + -15.165484428405762 + ], + [ + "▁Demeter", + -15.165562629699707 + ], + [ + "▁Paulsen", + -15.165566444396973 + ], + [ + "▁Nakamoto", + -15.165599822998047 + ], + [ + "deral", + -15.165611267089844 + ], + [ + "▁Hanlon", + -15.165618896484375 + ], + [ + "▁Chipping", + -15.16563892364502 + ], + [ + "سی", + -15.165660858154297 + ], + [ + "▁Sethi", + -15.165692329406738 + ], + [ + "ková", + -15.165770530700684 + ], + [ + "▁Bognor", + -15.165772438049316 + ], + [ + "▁Iguana", + -15.165788650512695 + ], + [ + "▁Dupree", + -15.165876388549805 + ], + [ + "▁Coppell", + -15.165889739990234 + ], + [ + "▁Delighted", + -15.165925979614258 + ], + [ + "▁dirtiest", + -15.165986061096191 + ], + [ + "▁요", + -15.165998458862305 + ], + [ + "▁Phong", + -15.166011810302734 + ], + [ + "RYL", + -15.166031837463379 + ], + [ + "▁Requested", + -15.166050910949707 + ], + [ + "▁dba", + -15.166067123413086 + ], + [ + "▁nw", + -15.166154861450195 + ], + [ + "▁unshakable", + -15.166158676147461 + ], + [ + "田", + -15.166159629821777 + ], + [ + "touched", + -15.166194915771484 + ], + [ + "▁housewares", + -15.166281700134277 + ], + [ + "▁Né", + -15.166327476501465 + ], + [ + "Mumbai", + -15.166343688964844 + ], + [ + "Hundred", + -15.166364669799805 + ], + [ + "▁Freshmen", + -15.16636848449707 + ], + [ + "▁Offences", + -15.16637134552002 + ], + [ + "▁Sili", + -15.166374206542969 + ], + [ + "iiiiii", + -15.166411399841309 + ], + [ + "▁yuck", + -15.166426658630371 + ], + [ + "imperialist", + -15.166430473327637 + ], + [ + "influence", + -15.166451454162598 + ], + [ + "▁trophic", + -15.166470527648926 + ], + [ + "▁Tablespoon", + -15.166482925415039 + ], + [ + "▁slinky", + -15.166522026062012 + ], + [ + "▁До", + -15.166539192199707 + ], + [ + "▁MCSA", + -15.166589736938477 + ], + [ + "▁defaced", + -15.166600227355957 + ], + [ + "▁987", + -15.166610717773438 + ], + [ + "zina", + -15.166621208190918 + ], + [ + "▁watchmaking", + -15.166711807250977 + ], + [ + "▁driveshaft", + -15.166747093200684 + ], + [ + "дов", + -15.166759490966797 + ], + [ + "▁Platon", + -15.166759490966797 + ], + [ + "▁ziplock", + -15.166768074035645 + ], + [ + "▁Tey", + -15.16679573059082 + ], + [ + "▁generalisation", + -15.166825294494629 + ], + [ + "▁PSF", + -15.166847229003906 + ], + [ + "▁COLOUR", + -15.166864395141602 + ], + [ + "charity", + -15.166884422302246 + ], + [ + "▁Aggregation", + -15.166898727416992 + ], + [ + "Uber", + -15.166934967041016 + ], + [ + "aître", + -15.167049407958984 + ], + [ + "▁vivre", + -15.167078018188477 + ], + [ + "▁RAAF", + -15.16712474822998 + ], + [ + "▁Hialeah", + -15.167182922363281 + ], + [ + "▁Hild", + -15.167248725891113 + ], + [ + "▁Randwick", + -15.167258262634277 + ], + [ + "▁Hattiesburg", + -15.167268753051758 + ], + [ + "▁Arlen", + -15.167271614074707 + ], + [ + "▁Glowing", + -15.16728401184082 + ], + [ + "DPA", + -15.1672945022583 + ], + [ + "▁effi", + -15.16732120513916 + ], + [ + "▁Impressed", + -15.167329788208008 + ], + [ + "▁pleasantries", + -15.167337417602539 + ], + [ + "▁Diz", + -15.167445182800293 + ], + [ + "▁Udall", + -15.167448997497559 + ], + [ + "▁OLBERMANN", + -15.167450904846191 + ], + [ + "jul", + -15.167474746704102 + ], + [ + "▁Luongo", + -15.167526245117188 + ], + [ + "▁cloying", + -15.167556762695312 + ], + [ + "여", + -15.167563438415527 + ], + [ + "▁orleans", + -15.167587280273438 + ], + [ + "▁dreadfully", + -15.167618751525879 + ], + [ + "▁Skillet", + -15.167698860168457 + ], + [ + "▁LIVES", + -15.167702674865723 + ], + [ + "1866", + -15.16771125793457 + ], + [ + "▁Tonkin", + -15.167771339416504 + ], + [ + "▁Ferenc", + -15.16777515411377 + ], + [ + "▁profuse", + -15.167786598205566 + ], + [ + "▁xii", + -15.167789459228516 + ], + [ + "ACTION", + -15.16780948638916 + ], + [ + "▁motorboat", + -15.167819023132324 + ], + [ + "▁lychee", + -15.16787338256836 + ], + [ + "▁BRUSSELS", + -15.167876243591309 + ], + [ + "intentional", + -15.167877197265625 + ], + [ + "▁hardiness", + -15.16791820526123 + ], + [ + "CVS", + -15.167932510375977 + ], + [ + "▁Rane", + -15.167932510375977 + ], + [ + "Http", + -15.167939186096191 + ], + [ + "▁Extrem", + -15.167961120605469 + ], + [ + "▁GSI", + -15.167962074279785 + ], + [ + "▁leaker", + -15.167980194091797 + ], + [ + "▁Kenobi", + -15.167984008789062 + ], + [ + "▁Zakaria", + -15.167989730834961 + ], + [ + "▁Interpretive", + -15.167994499206543 + ], + [ + "Shah", + -15.168027877807617 + ], + [ + "▁revved", + -15.168036460876465 + ], + [ + "▁EEPROM", + -15.16806697845459 + ], + [ + "▁remarry", + -15.168068885803223 + ], + [ + "▁msgid", + -15.168107986450195 + ], + [ + "▁Salome", + -15.168122291564941 + ], + [ + "Norway", + -15.168135643005371 + ], + [ + "ան", + -15.168159484863281 + ], + [ + "corr", + -15.168164253234863 + ], + [ + "ACTIVE", + -15.168172836303711 + ], + [ + "cavity", + -15.168185234069824 + ], + [ + "▁hardscape", + -15.168211936950684 + ], + [ + "▁comptroller", + -15.16822338104248 + ], + [ + "▁BBVA", + -15.168230056762695 + ], + [ + "puppet", + -15.168303489685059 + ], + [ + "Categories", + -15.16834831237793 + ], + [ + "▁Butternut", + -15.168370246887207 + ], + [ + "▁aquaponic", + -15.168413162231445 + ], + [ + "▁frugality", + -15.168416023254395 + ], + [ + "yshev", + -15.16841983795166 + ], + [ + "billing", + -15.16842269897461 + ], + [ + "▁chihuahua", + -15.168444633483887 + ], + [ + "▁Kuzma", + -15.168508529663086 + ], + [ + "▁Wolters", + -15.16855239868164 + ], + [ + "▁Diligence", + -15.168557167053223 + ], + [ + "Paid", + -15.168563842773438 + ], + [ + "▁Enforce", + -15.16858959197998 + ], + [ + "▁NIF", + -15.168590545654297 + ], + [ + "soprano", + -15.168609619140625 + ], + [ + "fenced", + -15.168673515319824 + ], + [ + "▁INGREDIENTS", + -15.168681144714355 + ], + [ + "▁rapist", + -15.168684959411621 + ], + [ + "qualifying", + -15.168695449829102 + ], + [ + "▁shorthanded", + -15.168732643127441 + ], + [ + "메", + -15.168744087219238 + ], + [ + "ristan", + -15.168764114379883 + ], + [ + "▁NIN", + -15.168767929077148 + ], + [ + "▁SOHO", + -15.168782234191895 + ], + [ + "lection", + -15.16882610321045 + ], + [ + "▁Sorbonne", + -15.168827056884766 + ], + [ + "▁sportier", + -15.16883659362793 + ], + [ + "▁Phenomenal", + -15.168844223022461 + ], + [ + "ENSION", + -15.168850898742676 + ], + [ + "1803", + -15.168851852416992 + ], + [ + "▁Knowledgeable", + -15.168866157531738 + ], + [ + "▁Quack", + -15.168880462646484 + ], + [ + "▁Alleged", + -15.16890811920166 + ], + [ + "▁Bogle", + -15.168926239013672 + ], + [ + "CONS", + -15.1689453125 + ], + [ + "followers", + -15.168966293334961 + ], + [ + "▁Phylogenetic", + -15.168980598449707 + ], + [ + "値", + -15.169000625610352 + ], + [ + "▁Córdoba", + -15.169013023376465 + ], + [ + "RIAL", + -15.169020652770996 + ], + [ + "画像", + -15.169032096862793 + ], + [ + "▁Lita", + -15.169062614440918 + ], + [ + "▁NAPA", + -15.169075965881348 + ], + [ + "▁intelligentsia", + -15.169097900390625 + ], + [ + "annya", + -15.169108390808105 + ], + [ + "▁utc", + -15.169110298156738 + ], + [ + "▁Unravel", + -15.169154167175293 + ], + [ + "▁vagabond", + -15.16918659210205 + ], + [ + "▁kingship", + -15.169197082519531 + ], + [ + "▁instigating", + -15.169233322143555 + ], + [ + "jz", + -15.16931438446045 + ], + [ + "▁Chloro", + -15.169315338134766 + ], + [ + "▁porthole", + -15.169322967529297 + ], + [ + "▁edamame", + -15.169328689575195 + ], + [ + "▁Tries", + -15.169351577758789 + ], + [ + "▁adsense", + -15.169363021850586 + ], + [ + "▁Munnar", + -15.1693754196167 + ], + [ + "▁Shackle", + -15.169502258300781 + ], + [ + "ボ", + -15.169585227966309 + ], + [ + "▁WMC", + -15.16964340209961 + ], + [ + "▁Jewellers", + -15.169647216796875 + ], + [ + "▁Snare", + -15.169671058654785 + ], + [ + "▁Margherita", + -15.169692039489746 + ], + [ + "zaar", + -15.169709205627441 + ], + [ + "▁Studebaker", + -15.169723510742188 + ], + [ + "▁apprenticed", + -15.1697359085083 + ], + [ + "▁pueden", + -15.169742584228516 + ], + [ + "▁OCI", + -15.169754028320312 + ], + [ + "Darwin", + -15.169759750366211 + ], + [ + "▁Bentonville", + -15.169822692871094 + ], + [ + "ká", + -15.169844627380371 + ], + [ + "în", + -15.16991901397705 + ], + [ + "▁fluconazole", + -15.169942855834961 + ], + [ + "▁ecc", + -15.169951438903809 + ], + [ + "▁Jello", + -15.169953346252441 + ], + [ + "▁masturbate", + -15.169992446899414 + ], + [ + "▁banknote", + -15.170012474060059 + ], + [ + "scrolling", + -15.170036315917969 + ], + [ + "EASE", + -15.170072555541992 + ], + [ + "▁Linebacker", + -15.170074462890625 + ], + [ + "별", + -15.17011833190918 + ], + [ + "▁WHA", + -15.170119285583496 + ], + [ + "ние", + -15.170145034790039 + ], + [ + "▁bombarding", + -15.170151710510254 + ], + [ + "vang", + -15.170193672180176 + ], + [ + "Abba", + -15.170204162597656 + ], + [ + "▁BSOD", + -15.170236587524414 + ], + [ + "▁MERS", + -15.170297622680664 + ], + [ + "kriti", + -15.170306205749512 + ], + [ + "▁Sleeveless", + -15.170313835144043 + ], + [ + "▁Taff", + -15.170320510864258 + ], + [ + "▁perpetrate", + -15.1703519821167 + ], + [ + "▁categorise", + -15.170369148254395 + ], + [ + "▁Archimedes", + -15.170387268066406 + ], + [ + "ouvre", + -15.170547485351562 + ], + [ + "▁dimensionality", + -15.170554161071777 + ], + [ + "Jade", + -15.170559883117676 + ], + [ + "▁Decca", + -15.170576095581055 + ], + [ + "▁hominid", + -15.1705961227417 + ], + [ + "▁MILWAUKEE", + -15.170608520507812 + ], + [ + "▁Contrasting", + -15.170620918273926 + ], + [ + "▁squeaked", + -15.170620918273926 + ], + [ + "asthenia", + -15.170628547668457 + ], + [ + "▁Limousin", + -15.17067813873291 + ], + [ + "▁blackbird", + -15.170754432678223 + ], + [ + "▁PKI", + -15.170775413513184 + ], + [ + "▁segui", + -15.170849800109863 + ], + [ + "ете", + -15.170860290527344 + ], + [ + "▁Clarkston", + -15.170862197875977 + ], + [ + "▁Tilley", + -15.17086410522461 + ], + [ + "Fairy", + -15.170893669128418 + ], + [ + "oracle", + -15.170931816101074 + ], + [ + "▁recirculation", + -15.170943260192871 + ], + [ + "anthro", + -15.170971870422363 + ], + [ + "▁Yaakov", + -15.170977592468262 + ], + [ + "▁Mikkel", + -15.17099666595459 + ], + [ + "Derm", + -15.170997619628906 + ], + [ + "1873", + -15.171064376831055 + ], + [ + "▁Newquay", + -15.171163558959961 + ], + [ + "bargain", + -15.171175003051758 + ], + [ + "▁Phosphor", + -15.171191215515137 + ], + [ + "▁Rader", + -15.171216011047363 + ], + [ + "▁Abdullahi", + -15.171259880065918 + ], + [ + "leng", + -15.171265602111816 + ], + [ + "▁reclassification", + -15.171269416809082 + ], + [ + "▁Mellor", + -15.171274185180664 + ], + [ + "▁TWITTER", + -15.17127513885498 + ], + [ + "skinny", + -15.171281814575195 + ], + [ + "bringer", + -15.171314239501953 + ], + [ + "▁Jabber", + -15.17133903503418 + ], + [ + "▁stoning", + -15.171363830566406 + ], + [ + "▁HOH", + -15.17137336730957 + ], + [ + "Trick", + -15.171445846557617 + ], + [ + "▁videoconferencing", + -15.17145824432373 + ], + [ + "▁Dyno", + -15.171489715576172 + ], + [ + "▁Collo", + -15.171492576599121 + ], + [ + "▁Spraying", + -15.171493530273438 + ], + [ + "▁xenograft", + -15.17149543762207 + ], + [ + "▁belittling", + -15.171510696411133 + ], + [ + "demi", + -15.171523094177246 + ], + [ + "Recovery", + -15.171525955200195 + ], + [ + "bago", + -15.171530723571777 + ], + [ + "Loo", + -15.171536445617676 + ], + [ + "▁Follett", + -15.171536445617676 + ], + [ + "▁Hollins", + -15.171550750732422 + ], + [ + "▁Mahe", + -15.171603202819824 + ], + [ + "▁ø", + -15.17162799835205 + ], + [ + "▁Politik", + -15.171640396118164 + ], + [ + "▁Snead", + -15.171649932861328 + ], + [ + "▁elven", + -15.171671867370605 + ], + [ + "Sasha", + -15.171687126159668 + ], + [ + "▁falsetto", + -15.171699523925781 + ], + [ + "▁Zod", + -15.171721458435059 + ], + [ + "ibile", + -15.171730995178223 + ], + [ + "▁ESE", + -15.171758651733398 + ], + [ + "bacterium", + -15.171781539916992 + ], + [ + "▁TeX", + -15.171829223632812 + ], + [ + "▁looters", + -15.171835899353027 + ], + [ + "▁Santee", + -15.171858787536621 + ], + [ + "▁15°", + -15.171930313110352 + ], + [ + "▁Optometrist", + -15.171954154968262 + ], + [ + "bij", + -15.171956062316895 + ], + [ + "▁balsa", + -15.171976089477539 + ], + [ + "▁Cultivation", + -15.172005653381348 + ], + [ + "▁PEL", + -15.172104835510254 + ], + [ + "Gross", + -15.172121047973633 + ], + [ + "OOOO", + -15.172142028808594 + ], + [ + "▁Camberwell", + -15.172154426574707 + ], + [ + "▁senile", + -15.172222137451172 + ], + [ + "▁lurker", + -15.172226905822754 + ], + [ + "favourite", + -15.172235488891602 + ], + [ + "MPEG", + -15.172286033630371 + ], + [ + "▁Delmar", + -15.172300338745117 + ], + [ + "confessed", + -15.172308921813965 + ], + [ + "plank", + -15.172342300415039 + ], + [ + "▁backhaul", + -15.172357559204102 + ], + [ + "▁SCG", + -15.172358512878418 + ], + [ + "FDI", + -15.172372817993164 + ], + [ + "▁Prosser", + -15.172393798828125 + ], + [ + "nazi", + -15.17241096496582 + ], + [ + "▁tranquilizer", + -15.172411918640137 + ], + [ + "▁exceptionalism", + -15.172433853149414 + ], + [ + "▁mixologist", + -15.172440528869629 + ], + [ + "▁Brainerd", + -15.172441482543945 + ], + [ + "▁oddest", + -15.172442436218262 + ], + [ + "λε", + -15.17245101928711 + ], + [ + "vaux", + -15.172468185424805 + ], + [ + "▁Bunbury", + -15.172496795654297 + ], + [ + "▁Commendation", + -15.172555923461914 + ], + [ + "▁speedster", + -15.172560691833496 + ], + [ + "▁unmasked", + -15.172572135925293 + ], + [ + "▁epidemiologic", + -15.172588348388672 + ], + [ + "▁innovated", + -15.172590255737305 + ], + [ + "▁Gabbard", + -15.172599792480469 + ], + [ + "ceptor", + -15.17262077331543 + ], + [ + "▁RESOURCES", + -15.172650337219238 + ], + [ + "▁Canaries", + -15.1726713180542 + ], + [ + "▁Sarai", + -15.1726713180542 + ], + [ + "▁tidied", + -15.172672271728516 + ], + [ + "▁integrally", + -15.172706604003906 + ], + [ + "▁prepackaged", + -15.172710418701172 + ], + [ + "▁Incognito", + -15.17271614074707 + ], + [ + "▁subjection", + -15.172780990600586 + ], + [ + "▁episcopal", + -15.172809600830078 + ], + [ + "quantitative", + -15.172833442687988 + ], + [ + "▁castration", + -15.172834396362305 + ], + [ + "▁Hinkley", + -15.17284870147705 + ], + [ + "▁SICK", + -15.1728515625 + ], + [ + "▁Hierarchical", + -15.172857284545898 + ], + [ + "▁BluRay", + -15.172873497009277 + ], + [ + "▁Nowitzki", + -15.172904968261719 + ], + [ + "▁GSS", + -15.172918319702148 + ], + [ + "▁Murrieta", + -15.172952651977539 + ], + [ + "Marsh", + -15.172961235046387 + ], + [ + "ntine", + -15.172975540161133 + ], + [ + "▁biocompatible", + -15.17298412322998 + ], + [ + "▁Tavi", + -15.172985076904297 + ], + [ + "BERRY", + -15.172988891601562 + ], + [ + "NEXT", + -15.173008918762207 + ], + [ + "▁Azusa", + -15.173047065734863 + ], + [ + "ceratops", + -15.173094749450684 + ], + [ + "▁riddance", + -15.173168182373047 + ], + [ + "▁Shortcut", + -15.173173904418945 + ], + [ + "ême", + -15.173195838928223 + ], + [ + "verde", + -15.17320728302002 + ], + [ + "▁Constructive", + -15.173211097717285 + ], + [ + "▁internist", + -15.17324161529541 + ], + [ + "▁Gwendolyn", + -15.173269271850586 + ], + [ + "▁LAUNCH", + -15.17328929901123 + ], + [ + "▁LAV", + -15.17328929901123 + ], + [ + "▁Annotation", + -15.173296928405762 + ], + [ + "▁Bask", + -15.173396110534668 + ], + [ + "▁permeating", + -15.1733980178833 + ], + [ + "▁Kock", + -15.173454284667969 + ], + [ + "rido", + -15.173460006713867 + ], + [ + "Drew", + -15.173466682434082 + ], + [ + "▁Prosthetic", + -15.173542976379395 + ], + [ + "▁cesspool", + -15.173558235168457 + ], + [ + "▁Coombe", + -15.17356014251709 + ], + [ + "▁hemispheric", + -15.173563003540039 + ], + [ + "pencil", + -15.173578262329102 + ], + [ + "▁Hooked", + -15.173588752746582 + ], + [ + "cı", + -15.17361831665039 + ], + [ + "▁Candlelight", + -15.17361831665039 + ], + [ + "▁Cuenca", + -15.173622131347656 + ], + [ + "▁ELITE", + -15.173625946044922 + ], + [ + "▁exhorted", + -15.173651695251465 + ], + [ + "▁Grohl", + -15.173674583435059 + ], + [ + "▁Kotaku", + -15.173702239990234 + ], + [ + "▁FAD", + -15.173762321472168 + ], + [ + "promised", + -15.173796653747559 + ], + [ + "▁Nagle", + -15.173849105834961 + ], + [ + "▁splat", + -15.17386245727539 + ], + [ + "▁quintile", + -15.173883438110352 + ], + [ + "白", + -15.173905372619629 + ], + [ + "▁MicroSD", + -15.173924446105957 + ], + [ + "▁Esri", + -15.173929214477539 + ], + [ + "▁Existential", + -15.173952102661133 + ], + [ + "▁Mischief", + -15.17396354675293 + ], + [ + "▁Siu", + -15.173992156982422 + ], + [ + "▁Twigg", + -15.174015045166016 + ], + [ + "etsy", + -15.174049377441406 + ], + [ + "▁expectantly", + -15.174055099487305 + ], + [ + "▁श", + -15.174104690551758 + ], + [ + "▁Snowdonia", + -15.174173355102539 + ], + [ + "▁bitchy", + -15.174175262451172 + ], + [ + "▁Kailua", + -15.174203872680664 + ], + [ + "socio", + -15.174210548400879 + ], + [ + "▁proteasome", + -15.174237251281738 + ], + [ + "converting", + -15.17426586151123 + ], + [ + "▁tachy", + -15.174276351928711 + ], + [ + "ך", + -15.17431640625 + ], + [ + "▁advantageously", + -15.174332618713379 + ], + [ + "Nest", + -15.174334526062012 + ], + [ + "▁WHATSOEVER", + -15.174347877502441 + ], + [ + "▁Gae", + -15.174382209777832 + ], + [ + "▁Savo", + -15.174386978149414 + ], + [ + "▁CORN", + -15.174464225769043 + ], + [ + "▁ferociously", + -15.17446517944336 + ], + [ + "▁Biggie", + -15.174471855163574 + ], + [ + "▁HubPages", + -15.174479484558105 + ], + [ + "▁blanched", + -15.174525260925293 + ], + [ + "▁refuelling", + -15.174568176269531 + ], + [ + "CFT", + -15.174605369567871 + ], + [ + "ını", + -15.17463493347168 + ], + [ + "▁Annunciation", + -15.174636840820312 + ], + [ + "▁atherosclerotic", + -15.174665451049805 + ], + [ + "MISSION", + -15.174670219421387 + ], + [ + "▁Backstrom", + -15.174691200256348 + ], + [ + "▁Xiu", + -15.174735069274902 + ], + [ + "▁bund", + -15.174763679504395 + ], + [ + "▁plumbed", + -15.174790382385254 + ], + [ + "▁colluding", + -15.174795150756836 + ], + [ + "▁EIT", + -15.174798011779785 + ], + [ + "▁Dianna", + -15.174798965454102 + ], + [ + "▁Shelbyville", + -15.174834251403809 + ], + [ + "onnier", + -15.174842834472656 + ], + [ + "▁necrotic", + -15.174858093261719 + ], + [ + "▁Stimulate", + -15.174885749816895 + ], + [ + "▁Tioga", + -15.174917221069336 + ], + [ + "▁Seater", + -15.175000190734863 + ], + [ + "▁Gamal", + -15.175064086914062 + ], + [ + "collecting", + -15.175077438354492 + ], + [ + "▁Solace", + -15.175078392028809 + ], + [ + "▁McCutchen", + -15.175110816955566 + ], + [ + "ULU", + -15.175134658813477 + ], + [ + "▁Macaroni", + -15.1751708984375 + ], + [ + "▁Rescuers", + -15.175171852111816 + ], + [ + "▁Egerton", + -15.175249099731445 + ], + [ + "▁Khabib", + -15.175273895263672 + ], + [ + "▁Moulding", + -15.175281524658203 + ], + [ + "rny", + -15.175300598144531 + ], + [ + "▁Firenze", + -15.175309181213379 + ], + [ + "▁KAS", + -15.175311088562012 + ], + [ + "▁BOU", + -15.175314903259277 + ], + [ + "Direction", + -15.17531681060791 + ], + [ + "▁Sporty", + -15.17534065246582 + ], + [ + "▁Sasse", + -15.175345420837402 + ], + [ + "enforce", + -15.175360679626465 + ], + [ + "▁intraperitoneal", + -15.175370216369629 + ], + [ + "▁hallucinogenic", + -15.175373077392578 + ], + [ + "steve", + -15.175427436828613 + ], + [ + "▁utili", + -15.175435066223145 + ], + [ + "▁VFD", + -15.175444602966309 + ], + [ + "▁sagittal", + -15.175444602966309 + ], + [ + "▁Cré", + -15.175461769104004 + ], + [ + "▁postpaid", + -15.175477981567383 + ], + [ + "▁Vidyalaya", + -15.175493240356445 + ], + [ + "▁harried", + -15.175541877746582 + ], + [ + "▁Podge", + -15.17554759979248 + ], + [ + "Combine", + -15.17557144165039 + ], + [ + "▁predestined", + -15.17557144165039 + ], + [ + "▁Cabriolet", + -15.17560863494873 + ], + [ + "▁endear", + -15.17562198638916 + ], + [ + "Cleveland", + -15.175622940063477 + ], + [ + "▁Bratton", + -15.175633430480957 + ], + [ + "▁Societe", + -15.175638198852539 + ], + [ + "▁minifigure", + -15.175682067871094 + ], + [ + "▁gules", + -15.175700187683105 + ], + [ + "▁removalists", + -15.175704956054688 + ], + [ + "▁TBM", + -15.175708770751953 + ], + [ + "▁suprise", + -15.175713539123535 + ], + [ + "choke", + -15.175715446472168 + ], + [ + "▁Chivas", + -15.175727844238281 + ], + [ + "WWW", + -15.175734519958496 + ], + [ + "▁Fosse", + -15.17582893371582 + ], + [ + "▁steven", + -15.175888061523438 + ], + [ + "ergie", + -15.175893783569336 + ], + [ + "roj", + -15.175915718078613 + ], + [ + "▁Vergara", + -15.175960540771484 + ], + [ + "▁APPEAR", + -15.17601203918457 + ], + [ + "▁Saison", + -15.176016807556152 + ], + [ + "BSP", + -15.176023483276367 + ], + [ + "▁Flagg", + -15.176056861877441 + ], + [ + "▁Neph", + -15.176072120666504 + ], + [ + "▁Exposing", + -15.176074981689453 + ], + [ + "▁Venkat", + -15.176080703735352 + ], + [ + "conviction", + -15.176138877868652 + ], + [ + "▁Molson", + -15.176230430603027 + ], + [ + "TOC", + -15.176286697387695 + ], + [ + "▁Scaffolding", + -15.176288604736328 + ], + [ + "galactic", + -15.176307678222656 + ], + [ + "eschi", + -15.176342964172363 + ], + [ + "yala", + -15.176346778869629 + ], + [ + "ovani", + -15.17636489868164 + ], + [ + "▁Wawrinka", + -15.176382064819336 + ], + [ + "▁stewart", + -15.176408767700195 + ], + [ + "▁shakeup", + -15.176424980163574 + ], + [ + "▁LII", + -15.176432609558105 + ], + [ + "rezza", + -15.176454544067383 + ], + [ + "▁Kelleher", + -15.176462173461914 + ], + [ + "▁refuting", + -15.176467895507812 + ], + [ + "Period", + -15.17648696899414 + ], + [ + "▁Colonia", + -15.176517486572266 + ], + [ + "▁Süd", + -15.17654037475586 + ], + [ + "▁DELAY", + -15.17654800415039 + ], + [ + "▁ECL", + -15.176566123962402 + ], + [ + "▁MEDLINE", + -15.176612854003906 + ], + [ + "▁Gewinn", + -15.176660537719727 + ], + [ + "▁Douro", + -15.176666259765625 + ], + [ + "▁Karoo", + -15.176681518554688 + ], + [ + "▁MCB", + -15.176687240600586 + ], + [ + "ndash", + -15.176692962646484 + ], + [ + "pollution", + -15.176728248596191 + ], + [ + "▁Lublin", + -15.17673397064209 + ], + [ + "▁24×7", + -15.176769256591797 + ], + [ + "▁Foolish", + -15.176772117614746 + ], + [ + "▁chinos", + -15.176782608032227 + ], + [ + "▁Reflector", + -15.176806449890137 + ], + [ + "▁overcharged", + -15.17682933807373 + ], + [ + "BRC", + -15.176834106445312 + ], + [ + "Petro", + -15.176867485046387 + ], + [ + "▁Decepticon", + -15.176876068115234 + ], + [ + "▁Hyrule", + -15.176892280578613 + ], + [ + "DRIVE", + -15.176922798156738 + ], + [ + "▁Quantico", + -15.176931381225586 + ], + [ + "▁sociocultural", + -15.1769380569458 + ], + [ + "▁EBT", + -15.176963806152344 + ], + [ + "phospho", + -15.177007675170898 + ], + [ + "▁Terps", + -15.17701244354248 + ], + [ + "WIC", + -15.177128791809082 + ], + [ + "▁unionist", + -15.177163124084473 + ], + [ + "▁mistrial", + -15.177177429199219 + ], + [ + "▁Anadolu", + -15.177209854125977 + ], + [ + "ນ", + -15.177214622497559 + ], + [ + "▁Erle", + -15.177216529846191 + ], + [ + "▁Rawat", + -15.177216529846191 + ], + [ + "idou", + -15.177252769470215 + ], + [ + "▁lectern", + -15.177257537841797 + ], + [ + "▁henry", + -15.177261352539062 + ], + [ + "▁celebrex", + -15.177263259887695 + ], + [ + "CTU", + -15.177284240722656 + ], + [ + "▁TONY", + -15.177289009094238 + ], + [ + "▁Sozial", + -15.177302360534668 + ], + [ + "fries", + -15.177312850952148 + ], + [ + "▁Sylvania", + -15.17733383178711 + ], + [ + "▁lavished", + -15.177366256713867 + ], + [ + "▁Pinker", + -15.177370071411133 + ], + [ + "ина", + -15.17737102508545 + ], + [ + "▁proinflammatory", + -15.177412986755371 + ], + [ + "lume", + -15.177421569824219 + ], + [ + "▁TAU", + -15.177422523498535 + ], + [ + "▁linoleic", + -15.177449226379395 + ], + [ + "CCM", + -15.17746639251709 + ], + [ + "Odd", + -15.177506446838379 + ], + [ + "assembling", + -15.177579879760742 + ], + [ + "prong", + -15.177584648132324 + ], + [ + "▁Acclaimed", + -15.177611351013184 + ], + [ + "ası", + -15.17762279510498 + ], + [ + "▁bala", + -15.17762565612793 + ], + [ + "▁Liguria", + -15.177637100219727 + ], + [ + "▁Roby", + -15.177664756774902 + ], + [ + "▁Requesting", + -15.177668571472168 + ], + [ + "管", + -15.177674293518066 + ], + [ + "▁Greenlight", + -15.177688598632812 + ], + [ + "▁splayed", + -15.177724838256836 + ], + [ + "▁malted", + -15.177752494812012 + ], + [ + "Appliance", + -15.177759170532227 + ], + [ + "▁Horford", + -15.177767753601074 + ], + [ + "▁Dunford", + -15.177800178527832 + ], + [ + "HCI", + -15.17782211303711 + ], + [ + "Yahoo", + -15.177849769592285 + ], + [ + "▁Moat", + -15.177854537963867 + ], + [ + "▁RDC", + -15.177865028381348 + ], + [ + "▁WSO", + -15.177878379821777 + ], + [ + "оѕ", + -15.177915573120117 + ], + [ + "▁Gundy", + -15.177988052368164 + ], + [ + "▁Breslin", + -15.177995681762695 + ], + [ + "▁Containment", + -15.178054809570312 + ], + [ + "▁Ranieri", + -15.178085327148438 + ], + [ + "▁pestering", + -15.178094863891602 + ], + [ + "▁Rutter", + -15.178101539611816 + ], + [ + "▁rapeseed", + -15.178136825561523 + ], + [ + "▁Doral", + -15.178147315979004 + ], + [ + "▁proficiently", + -15.178236961364746 + ], + [ + "▁Recognising", + -15.178277015686035 + ], + [ + "▁Chanda", + -15.178296089172363 + ], + [ + "neglect", + -15.178308486938477 + ], + [ + "▁nanotube", + -15.178351402282715 + ], + [ + "lagi", + -15.178388595581055 + ], + [ + "translational", + -15.178437232971191 + ], + [ + "▁collet", + -15.178450584411621 + ], + [ + "ப்ப", + -15.178452491760254 + ], + [ + "▁NOOK", + -15.178510665893555 + ], + [ + "WHERE", + -15.178518295288086 + ], + [ + "▁Chawla", + -15.178523063659668 + ], + [ + "oxygenase", + -15.178544044494629 + ], + [ + "meteor", + -15.178544998168945 + ], + [ + "▁Visalia", + -15.178627014160156 + ], + [ + "▁Perugia", + -15.178632736206055 + ], + [ + "▁Purified", + -15.178651809692383 + ], + [ + "Democrat", + -15.178694725036621 + ], + [ + "▁Matched", + -15.178702354431152 + ], + [ + "▁deregulated", + -15.178723335266113 + ], + [ + "Kong", + -15.178744316101074 + ], + [ + "kale", + -15.17875862121582 + ], + [ + "EBA", + -15.178776741027832 + ], + [ + "▁Sculptor", + -15.178788185119629 + ], + [ + "homosexual", + -15.178793907165527 + ], + [ + "▁reheated", + -15.178874969482422 + ], + [ + "▁Phonics", + -15.178876876831055 + ], + [ + "▁Grinnell", + -15.178877830505371 + ], + [ + "▁blithely", + -15.178898811340332 + ], + [ + "chowski", + -15.178934097290039 + ], + [ + "▁Lapid", + -15.178959846496582 + ], + [ + "▁emporium", + -15.178980827331543 + ], + [ + "▁Cavill", + -15.179006576538086 + ], + [ + "▁Wonderfully", + -15.179056167602539 + ], + [ + "▁Jaisalmer", + -15.17907428741455 + ], + [ + "▁condor", + -15.179089546203613 + ], + [ + "▁entomologist", + -15.17909049987793 + ], + [ + "▁Adapting", + -15.17910099029541 + ], + [ + "▁Suzan", + -15.17911148071289 + ], + [ + "▁repackaged", + -15.179123878479004 + ], + [ + "EEG", + -15.179131507873535 + ], + [ + "▁ylang", + -15.179142951965332 + ], + [ + "MSN", + -15.179147720336914 + ], + [ + "▁Pasquale", + -15.179163932800293 + ], + [ + "▁Clemons", + -15.179170608520508 + ], + [ + "tripper", + -15.179176330566406 + ], + [ + "▁TWI", + -15.179183959960938 + ], + [ + "का", + -15.17919635772705 + ], + [ + "dopa", + -15.179247856140137 + ], + [ + "▁Bosque", + -15.179255485534668 + ], + [ + "▁ghosting", + -15.179296493530273 + ], + [ + "▁LME", + -15.179314613342285 + ], + [ + "Hannah", + -15.179359436035156 + ], + [ + "▁circuitous", + -15.179366111755371 + ], + [ + "▁EFA", + -15.179391860961914 + ], + [ + "▁CHAMP", + -15.179423332214355 + ], + [ + "ത", + -15.179424285888672 + ], + [ + "OPT", + -15.17943286895752 + ], + [ + "creativecommons", + -15.17944049835205 + ], + [ + "▁Legoland", + -15.179484367370605 + ], + [ + "▁Crossfire", + -15.179515838623047 + ], + [ + "nope", + -15.179519653320312 + ], + [ + "▁homogenized", + -15.179520606994629 + ], + [ + "▁bioenergy", + -15.17957592010498 + ], + [ + "gnoli", + -15.17961597442627 + ], + [ + "▁Loyd", + -15.179651260375977 + ], + [ + "عد", + -15.179656982421875 + ], + [ + "SMO", + -15.179672241210938 + ], + [ + "루", + -15.179680824279785 + ], + [ + "▁Harrisonburg", + -15.17979621887207 + ], + [ + "ativo", + -15.179802894592285 + ], + [ + "▁Brogan", + -15.1798095703125 + ], + [ + "uating", + -15.179818153381348 + ], + [ + "▁Accumulation", + -15.179872512817383 + ], + [ + "▁Oxen", + -15.17988109588623 + ], + [ + "▁radionuclide", + -15.179888725280762 + ], + [ + "ynne", + -15.179890632629395 + ], + [ + "▁shelve", + -15.179927825927734 + ], + [ + "限", + -15.179946899414062 + ], + [ + "▁Geophysics", + -15.17995548248291 + ], + [ + "▁Enchantment", + -15.180004119873047 + ], + [ + "▁OTG", + -15.180088996887207 + ], + [ + "▁DeLong", + -15.180132865905762 + ], + [ + "Tile", + -15.180140495300293 + ], + [ + "▁Abbi", + -15.180148124694824 + ], + [ + "▁LOO", + -15.180148124694824 + ], + [ + "▁garam", + -15.180167198181152 + ], + [ + "▁Bure", + -15.180171012878418 + ], + [ + "▁TODO", + -15.180171966552734 + ], + [ + "fling", + -15.180197715759277 + ], + [ + "▁Rowena", + -15.180201530456543 + ], + [ + "▁Resulting", + -15.1802339553833 + ], + [ + "Phenotype", + -15.180246353149414 + ], + [ + "▁lameness", + -15.180317878723145 + ], + [ + "▁ZDNet", + -15.180351257324219 + ], + [ + "ciano", + -15.180363655090332 + ], + [ + "▁centipede", + -15.180366516113281 + ], + [ + "▁superfast", + -15.180424690246582 + ], + [ + "응", + -15.18044662475586 + ], + [ + "▁Apostol", + -15.180447578430176 + ], + [ + "SOME", + -15.180477142333984 + ], + [ + "▁adenovirus", + -15.180486679077148 + ], + [ + "▁MOF", + -15.180493354797363 + ], + [ + "▁BALTIMORE", + -15.180495262145996 + ], + [ + "▁roadworks", + -15.180500984191895 + ], + [ + "κο", + -15.180519104003906 + ], + [ + "▁prelims", + -15.180535316467285 + ], + [ + "▁gesch", + -15.180573463439941 + ], + [ + "▁HOS", + -15.180578231811523 + ], + [ + "toast", + -15.180644035339355 + ], + [ + "过", + -15.180644989013672 + ], + [ + "▁schnell", + -15.180647850036621 + ], + [ + "▁Havelock", + -15.180662155151367 + ], + [ + "▁Surety", + -15.18067455291748 + ], + [ + "ха", + -15.180684089660645 + ], + [ + "чет", + -15.180688858032227 + ], + [ + "BIM", + -15.180697441101074 + ], + [ + "Selling", + -15.18076229095459 + ], + [ + "bpd", + -15.180778503417969 + ], + [ + "▁unhurried", + -15.180782318115234 + ], + [ + "▁Messing", + -15.1807861328125 + ], + [ + "bonding", + -15.180814743041992 + ], + [ + "▁Depreciation", + -15.180814743041992 + ], + [ + "Nord", + -15.180818557739258 + ], + [ + "▁Twill", + -15.180825233459473 + ], + [ + "JSC", + -15.18087387084961 + ], + [ + "▁Kempe", + -15.180887222290039 + ], + [ + "▁cetacean", + -15.180893898010254 + ], + [ + "▁Reconnect", + -15.180947303771973 + ], + [ + "▁plundering", + -15.180947303771973 + ], + [ + "▁Flannel", + -15.180976867675781 + ], + [ + "▁Cowichan", + -15.18100643157959 + ], + [ + "▁Catalytic", + -15.181009292602539 + ], + [ + "planetary", + -15.181048393249512 + ], + [ + "fencing", + -15.181053161621094 + ], + [ + "ική", + -15.181059837341309 + ], + [ + "▁Hereditary", + -15.181070327758789 + ], + [ + "vacuum", + -15.181072235107422 + ], + [ + "liberty", + -15.181082725524902 + ], + [ + "assay", + -15.181098937988281 + ], + [ + "▁colloid", + -15.181136131286621 + ], + [ + "▁drei", + -15.181138038635254 + ], + [ + "Supreme", + -15.181157112121582 + ], + [ + "MRO", + -15.181160926818848 + ], + [ + "▁Accountable", + -15.181215286254883 + ], + [ + "▁Subjective", + -15.181225776672363 + ], + [ + "▁institu", + -15.181267738342285 + ], + [ + "▁psalmist", + -15.181286811828613 + ], + [ + "▁æ", + -15.181291580200195 + ], + [ + "renal", + -15.1813383102417 + ], + [ + "ун", + -15.18134880065918 + ], + [ + "incorporated", + -15.18135929107666 + ], + [ + "▁TOPS", + -15.181387901306152 + ], + [ + "▁vier", + -15.181419372558594 + ], + [ + "코", + -15.181453704833984 + ], + [ + "▁Nitric", + -15.181480407714844 + ], + [ + "globin", + -15.181522369384766 + ], + [ + "khon", + -15.181536674499512 + ], + [ + "▁Sü", + -15.181591987609863 + ], + [ + "▁Shiffrin", + -15.181597709655762 + ], + [ + "▁subatomic", + -15.181619644165039 + ], + [ + "▁NICK", + -15.181632041931152 + ], + [ + "▁CVA", + -15.181642532348633 + ], + [ + "itou", + -15.181645393371582 + ], + [ + "▁gremlin", + -15.181743621826172 + ], + [ + "▁beanbag", + -15.181747436523438 + ], + [ + "▁winsome", + -15.181774139404297 + ], + [ + "▁CONTEST", + -15.181788444519043 + ], + [ + "▁boathouse", + -15.181791305541992 + ], + [ + "▁rectifying", + -15.181867599487305 + ], + [ + "▁Elyse", + -15.181878089904785 + ], + [ + "▁bioreactor", + -15.181885719299316 + ], + [ + "FMC", + -15.181920051574707 + ], + [ + "▁Midwives", + -15.181933403015137 + ], + [ + "▁Sinhalese", + -15.181950569152832 + ], + [ + "▁Handley", + -15.181985855102539 + ], + [ + "thiazol", + -15.182004928588867 + ], + [ + "▁Puddle", + -15.182035446166992 + ], + [ + "▁sebaceous", + -15.182061195373535 + ], + [ + "▁trois", + -15.182086944580078 + ], + [ + "▁CHAMPION", + -15.182119369506836 + ], + [ + "▁Vada", + -15.18213176727295 + ], + [ + "及び", + -15.182132720947266 + ], + [ + "▁Invesco", + -15.182133674621582 + ], + [ + "▁brining", + -15.182134628295898 + ], + [ + "ARG", + -15.182146072387695 + ], + [ + "▁Importing", + -15.182178497314453 + ], + [ + "▁breakeven", + -15.18217945098877 + ], + [ + "▁Bodywork", + -15.18231201171875 + ], + [ + "▁Mayberry", + -15.182316780090332 + ], + [ + "▁scald", + -15.182317733764648 + ], + [ + "▁abortive", + -15.182327270507812 + ], + [ + "▁Hollingsworth", + -15.182369232177734 + ], + [ + "tattoo", + -15.182372093200684 + ], + [ + "▁disobeying", + -15.182382583618164 + ], + [ + "▁luxuriant", + -15.182414054870605 + ], + [ + "▁Remuneration", + -15.182477951049805 + ], + [ + "mommy", + -15.182483673095703 + ], + [ + "Commander", + -15.18250846862793 + ], + [ + "▁Fieldhouse", + -15.182524681091309 + ], + [ + "▁Arda", + -15.182547569274902 + ], + [ + "▁bushland", + -15.182570457458496 + ], + [ + "humor", + -15.182613372802734 + ], + [ + "auke", + -15.182621955871582 + ], + [ + "향", + -15.182623863220215 + ], + [ + "gogo", + -15.182625770568848 + ], + [ + "NIST", + -15.182658195495605 + ], + [ + "▁fritter", + -15.182670593261719 + ], + [ + "▁CONFIRM", + -15.182686805725098 + ], + [ + "▁Fuqua", + -15.182701110839844 + ], + [ + "▁Airway", + -15.182703018188477 + ], + [ + "▁therapeutically", + -15.182708740234375 + ], + [ + "Thousand", + -15.182714462280273 + ], + [ + "Quiet", + -15.182718276977539 + ], + [ + "▁Nawa", + -15.182740211486816 + ], + [ + "▁CSB", + -15.182759284973145 + ], + [ + "▁Sophist", + -15.182794570922852 + ], + [ + "▁germane", + -15.182872772216797 + ], + [ + "▁stranding", + -15.182900428771973 + ], + [ + "▁Amelie", + -15.182941436767578 + ], + [ + "▁Fairmount", + -15.182968139648438 + ], + [ + "▁TCI", + -15.182978630065918 + ], + [ + "▁வ", + -15.183005332946777 + ], + [ + "▁Inadequate", + -15.183006286621094 + ], + [ + "nourished", + -15.183030128479004 + ], + [ + "▁aircrew", + -15.183072090148926 + ], + [ + "▁firebrand", + -15.183075904846191 + ], + [ + "Wholesale", + -15.183091163635254 + ], + [ + "▁Carmelite", + -15.183113098144531 + ], + [ + "▁Unfortunate", + -15.183119773864746 + ], + [ + "▁electrocuted", + -15.183150291442871 + ], + [ + "composition", + -15.183204650878906 + ], + [ + "经", + -15.183204650878906 + ], + [ + "ESTA", + -15.183207511901855 + ], + [ + "女", + -15.183221817016602 + ], + [ + "▁Counterfeit", + -15.183246612548828 + ], + [ + "▁Bolin", + -15.1832914352417 + ], + [ + "▁BlueStacks", + -15.183342933654785 + ], + [ + "Epic", + -15.183359146118164 + ], + [ + "▁Alanna", + -15.183365821838379 + ], + [ + "▁chickenpox", + -15.183404922485352 + ], + [ + "▁Specialising", + -15.183412551879883 + ], + [ + "▁Narasimha", + -15.183454513549805 + ], + [ + "▁seafaring", + -15.183455467224121 + ], + [ + "▁discretely", + -15.183465957641602 + ], + [ + "enary", + -15.183497428894043 + ], + [ + "Clare", + -15.183501243591309 + ], + [ + "ும்", + -15.183610916137695 + ], + [ + "▁cohesiveness", + -15.18363094329834 + ], + [ + "▁Pristine", + -15.183658599853516 + ], + [ + "poration", + -15.183663368225098 + ], + [ + "labeling", + -15.18372631072998 + ], + [ + "Joel", + -15.18377685546875 + ], + [ + "▁Eustace", + -15.183838844299316 + ], + [ + "▁telecommuting", + -15.18384075164795 + ], + [ + "▁merlin", + -15.1838960647583 + ], + [ + "▁Dermal", + -15.183904647827148 + ], + [ + "▁repudiated", + -15.183920860290527 + ], + [ + "▁CARDS", + -15.18392276763916 + ], + [ + "▁Jalapeno", + -15.183951377868652 + ], + [ + "▁Kulkarni", + -15.183951377868652 + ], + [ + "physically", + -15.183952331542969 + ], + [ + "▁Dionysus", + -15.183967590332031 + ], + [ + "▁phonograph", + -15.183977127075195 + ], + [ + "▁sarcophagus", + -15.18409538269043 + ], + [ + "▁Balder", + -15.184196472167969 + ], + [ + "▁acest", + -15.184198379516602 + ], + [ + "▁Angell", + -15.18420696258545 + ], + [ + "▁repudiation", + -15.184223175048828 + ], + [ + "SBC", + -15.184253692626953 + ], + [ + "▁moins", + -15.184253692626953 + ], + [ + "▁mineralized", + -15.184255599975586 + ], + [ + "▁syslog", + -15.184287071228027 + ], + [ + "▁Narragansett", + -15.184288024902344 + ], + [ + "▁mortem", + -15.18428897857666 + ], + [ + "▁droning", + -15.184335708618164 + ], + [ + "▁Smuggler", + -15.184351921081543 + ], + [ + "HACK", + -15.184381484985352 + ], + [ + "acyl", + -15.184405326843262 + ], + [ + "suspension", + -15.184431076049805 + ], + [ + "ंग", + -15.184463500976562 + ], + [ + "▁crazies", + -15.184514045715332 + ], + [ + "▁hieroglyphic", + -15.18454360961914 + ], + [ + "▁Scented", + -15.184544563293457 + ], + [ + "▁antiwar", + -15.184545516967773 + ], + [ + "▁Docu", + -15.184550285339355 + ], + [ + "▁Cunard", + -15.184577941894531 + ], + [ + "وع", + -15.18460464477539 + ], + [ + "▁Dictionaries", + -15.184624671936035 + ], + [ + "▁Frantz", + -15.184627532958984 + ], + [ + "▁trolled", + -15.184632301330566 + ], + [ + "▁uglier", + -15.184647560119629 + ], + [ + "▁scantily", + -15.184735298156738 + ], + [ + "▁Charismatic", + -15.184765815734863 + ], + [ + "▁Putlocker", + -15.18477725982666 + ], + [ + "▁handprint", + -15.18479061126709 + ], + [ + "Spam", + -15.184791564941406 + ], + [ + "▁Gloom", + -15.184812545776367 + ], + [ + "▁Vanishing", + -15.18482494354248 + ], + [ + "Catalog", + -15.184863090515137 + ], + [ + "▁Taiji", + -15.184880256652832 + ], + [ + "▁gooseneck", + -15.184884071350098 + ], + [ + "acquainted", + -15.18492317199707 + ], + [ + "▁gaffer", + -15.184941291809082 + ], + [ + "▁averting", + -15.184982299804688 + ], + [ + "Hab", + -15.184988021850586 + ], + [ + "▁SOLIDWORKS", + -15.184993743896484 + ], + [ + "asek", + -15.185017585754395 + ], + [ + "▁Semper", + -15.185029983520508 + ], + [ + "rqu", + -15.185038566589355 + ], + [ + "IDER", + -15.185039520263672 + ], + [ + "▁pretension", + -15.185050010681152 + ], + [ + "▁Obsessed", + -15.185073852539062 + ], + [ + "observation", + -15.185102462768555 + ], + [ + "▁Janesville", + -15.185144424438477 + ], + [ + "▁Hilt", + -15.185154914855957 + ], + [ + "▁SSDI", + -15.185192108154297 + ], + [ + "▁volunt", + -15.18520450592041 + ], + [ + "▁photoshopped", + -15.185247421264648 + ], + [ + "▁Stoddard", + -15.185266494750977 + ], + [ + "optera", + -15.185276985168457 + ], + [ + "▁impermeable", + -15.185295104980469 + ], + [ + "▁cytosolic", + -15.185367584228516 + ], + [ + "elho", + -15.185401916503906 + ], + [ + "▁wpc", + -15.185425758361816 + ], + [ + "▁Bunyan", + -15.185449600219727 + ], + [ + "▁Zazzle", + -15.185464859008789 + ], + [ + "▁quattro", + -15.185493469238281 + ], + [ + "▁Juicer", + -15.185494422912598 + ], + [ + "▁derisive", + -15.185538291931152 + ], + [ + "▁TPR", + -15.185567855834961 + ], + [ + "ự", + -15.185571670532227 + ], + [ + "DIRTY", + -15.185572624206543 + ], + [ + "Sofia", + -15.185577392578125 + ], + [ + "▁scowled", + -15.185586929321289 + ], + [ + "▁Adityanath", + -15.185606002807617 + ], + [ + "▁dropbox", + -15.185650825500488 + ], + [ + "▁Scanlon", + -15.185725212097168 + ], + [ + "▁MONSTER", + -15.185737609863281 + ], + [ + "▁MOORE", + -15.185782432556152 + ], + [ + "oooooooo", + -15.185789108276367 + ], + [ + "▁của", + -15.185844421386719 + ], + [ + "▁Enlist", + -15.185845375061035 + ], + [ + "▁geomagnetic", + -15.185917854309082 + ], + [ + "▁handcuff", + -15.185917854309082 + ], + [ + "▁tambourine", + -15.185940742492676 + ], + [ + "▁Croton", + -15.185949325561523 + ], + [ + "1877", + -15.185994148254395 + ], + [ + "imir", + -15.186025619506836 + ], + [ + "pyrrol", + -15.18606948852539 + ], + [ + "▁Laporte", + -15.18607234954834 + ], + [ + "ogna", + -15.186089515686035 + ], + [ + "▁Sanding", + -15.186101913452148 + ], + [ + "▁predate", + -15.186113357543945 + ], + [ + "brac", + -15.186151504516602 + ], + [ + "SCAN", + -15.186169624328613 + ], + [ + "▁Nucleus", + -15.186197280883789 + ], + [ + "▁Gev", + -15.186217308044434 + ], + [ + "▁Tyron", + -15.186241149902344 + ], + [ + "▁sclera", + -15.186247825622559 + ], + [ + "▁HUF", + -15.186250686645508 + ], + [ + "▁Cavanaugh", + -15.186328887939453 + ], + [ + "▁MUA", + -15.186354637145996 + ], + [ + "▁KOR", + -15.186356544494629 + ], + [ + "Doom", + -15.186360359191895 + ], + [ + "fj", + -15.18637466430664 + ], + [ + "▁mondo", + -15.186395645141602 + ], + [ + "creature", + -15.186399459838867 + ], + [ + "▁DTD", + -15.186406135559082 + ], + [ + "▁Cultivating", + -15.186455726623535 + ], + [ + "▁Kennett", + -15.186464309692383 + ], + [ + "특", + -15.186531066894531 + ], + [ + "្", + -15.186544418334961 + ], + [ + "enkamp", + -15.186590194702148 + ], + [ + "▁Fungal", + -15.186636924743652 + ], + [ + "khani", + -15.186649322509766 + ], + [ + "▁Mmmmm", + -15.186649322509766 + ], + [ + "▁Shameless", + -15.186660766601562 + ], + [ + "▁activites", + -15.186660766601562 + ], + [ + "Bishop", + -15.186663627624512 + ], + [ + "ова", + -15.186712265014648 + ], + [ + "▁400°", + -15.186712265014648 + ], + [ + "▁Sisson", + -15.186725616455078 + ], + [ + "▁Podium", + -15.186729431152344 + ], + [ + "▁cackle", + -15.186771392822266 + ], + [ + "▁Reconstructive", + -15.186789512634277 + ], + [ + "▁FOG", + -15.186797142028809 + ], + [ + "Ode", + -15.186829566955566 + ], + [ + "▁Bitte", + -15.186877250671387 + ], + [ + "▁preprint", + -15.186899185180664 + ], + [ + "▁Basso", + -15.186944007873535 + ], + [ + "但", + -15.186980247497559 + ], + [ + "Burning", + -15.186988830566406 + ], + [ + "▁porsche", + -15.187033653259277 + ], + [ + "SHIRE", + -15.187045097351074 + ], + [ + "▁microsatellite", + -15.187051773071289 + ], + [ + "▁Degas", + -15.18706226348877 + ], + [ + "▁Sarge", + -15.187065124511719 + ], + [ + "▁PIG", + -15.187077522277832 + ], + [ + "▁procreation", + -15.187082290649414 + ], + [ + "▁masterplan", + -15.187085151672363 + ], + [ + "AFL", + -15.187128067016602 + ], + [ + "▁GDDR", + -15.187131881713867 + ], + [ + "Survivor", + -15.187141418457031 + ], + [ + "adilla", + -15.187151908874512 + ], + [ + "yarder", + -15.187170028686523 + ], + [ + "▁intrauterine", + -15.187177658081055 + ], + [ + "▁Deze", + -15.187191009521484 + ], + [ + "▁Neur", + -15.187273025512695 + ], + [ + "▁Imperialism", + -15.187288284301758 + ], + [ + "▁RHI", + -15.187294960021973 + ], + [ + "▁crematorium", + -15.18730640411377 + ], + [ + "afir", + -15.1873140335083 + ], + [ + "▁MARIA", + -15.187328338623047 + ], + [ + "inositol", + -15.187329292297363 + ], + [ + "▁Downes", + -15.187355995178223 + ], + [ + "Dominic", + -15.187376022338867 + ], + [ + "Angela", + -15.18738079071045 + ], + [ + "▁magnanimous", + -15.187387466430664 + ], + [ + "▁guzzle", + -15.187389373779297 + ], + [ + "▁Mystique", + -15.18739128112793 + ], + [ + "▁Atlético", + -15.187402725219727 + ], + [ + "▁Hydr", + -15.187417984008789 + ], + [ + "▁Organisational", + -15.187435150146484 + ], + [ + "▁9600", + -15.187440872192383 + ], + [ + "▁Encouragement", + -15.187447547912598 + ], + [ + "▁UTS", + -15.18747615814209 + ], + [ + "▁pricy", + -15.187485694885254 + ], + [ + "▁chemotherapeutic", + -15.187505722045898 + ], + [ + "▁cour", + -15.187518119812012 + ], + [ + "▁funneling", + -15.18752670288086 + ], + [ + "uč", + -15.187540054321289 + ], + [ + "▁Nairn", + -15.187592506408691 + ], + [ + "▁Rehabil", + -15.187592506408691 + ], + [ + "▁underpowered", + -15.187596321105957 + ], + [ + "▁overabundance", + -15.187623977661133 + ], + [ + "cionado", + -15.187662124633789 + ], + [ + "▁PREMIER", + -15.187692642211914 + ], + [ + "▁WEP", + -15.187698364257812 + ], + [ + "▁relegate", + -15.18771743774414 + ], + [ + "▁condescension", + -15.187725067138672 + ], + [ + "bendazole", + -15.187773704528809 + ], + [ + "andMe", + -15.187774658203125 + ], + [ + "▁Misuse", + -15.187786102294922 + ], + [ + "ứ", + -15.187837600708008 + ], + [ + "▁TRT", + -15.187849998474121 + ], + [ + "▁PHARMA", + -15.187850952148438 + ], + [ + "Corner", + -15.18795108795166 + ], + [ + "▁burl", + -15.187971115112305 + ], + [ + "▁exaltation", + -15.188005447387695 + ], + [ + "▁demoralizing", + -15.1880464553833 + ], + [ + "▁Grig", + -15.188060760498047 + ], + [ + "curtain", + -15.188117980957031 + ], + [ + "▁Vladivostok", + -15.188143730163574 + ], + [ + "кон", + -15.1881685256958 + ], + [ + "▁Cannabidiol", + -15.188191413879395 + ], + [ + "▁dysregulation", + -15.18820858001709 + ], + [ + "▁방", + -15.188230514526367 + ], + [ + "▁Macromedia", + -15.188295364379883 + ], + [ + "ANDO", + -15.188315391540527 + ], + [ + "Leonard", + -15.188316345214844 + ], + [ + "▁Talc", + -15.188384056091309 + ], + [ + "tariff", + -15.188395500183105 + ], + [ + "▁Piri", + -15.188455581665039 + ], + [ + "analyst", + -15.188469886779785 + ], + [ + "▁papillomavirus", + -15.188497543334961 + ], + [ + "▁Gmina", + -15.188532829284668 + ], + [ + "▁sterol", + -15.188612937927246 + ], + [ + "▁Annenberg", + -15.188616752624512 + ], + [ + "▁CORRESPONDENT", + -15.188706398010254 + ], + [ + "▁Hodeida", + -15.188724517822266 + ], + [ + "▁Rimini", + -15.188752174377441 + ], + [ + "▁Inherent", + -15.188758850097656 + ], + [ + "▁Rolfe", + -15.18877124786377 + ], + [ + "lumen", + -15.188783645629883 + ], + [ + "▁Abdur", + -15.188789367675781 + ], + [ + "cursion", + -15.188796043395996 + ], + [ + "▁Anthropocene", + -15.188804626464844 + ], + [ + "yaku", + -15.188820838928223 + ], + [ + "positioning", + -15.188836097717285 + ], + [ + "रे", + -15.18883991241455 + ], + [ + "1869", + -15.188846588134766 + ], + [ + "▁Ancelotti", + -15.188851356506348 + ], + [ + "zeni", + -15.18887996673584 + ], + [ + "▁Piracy", + -15.18892765045166 + ], + [ + "ittle", + -15.188952445983887 + ], + [ + "▁telnet", + -15.188953399658203 + ], + [ + "Plot", + -15.18896198272705 + ], + [ + "▁Broussard", + -15.18896484375 + ], + [ + "▁Ammonia", + -15.188983917236328 + ], + [ + "Listing", + -15.189000129699707 + ], + [ + "▁ghostwriting", + -15.189010620117188 + ], + [ + "dunk", + -15.189014434814453 + ], + [ + "MHS", + -15.189020156860352 + ], + [ + "▁£49", + -15.189037322998047 + ], + [ + "ilion", + -15.189055442810059 + ], + [ + "▁secund", + -15.189067840576172 + ], + [ + "လ", + -15.18907642364502 + ], + [ + "▁wih", + -15.189098358154297 + ], + [ + "▁verdad", + -15.189148902893066 + ], + [ + "ipple", + -15.18917179107666 + ], + [ + "Bradley", + -15.189181327819824 + ], + [ + "▁Akhilesh", + -15.189248085021973 + ], + [ + "ubel", + -15.189268112182617 + ], + [ + "▁Britta", + -15.189271926879883 + ], + [ + "ந்த", + -15.18928337097168 + ], + [ + "▁genuineness", + -15.189300537109375 + ], + [ + "▁immunohistochemical", + -15.189318656921387 + ], + [ + "▁rewiring", + -15.189322471618652 + ], + [ + "▁WSB", + -15.189348220825195 + ], + [ + "▁Settling", + -15.189350128173828 + ], + [ + "▁Synchronize", + -15.189352989196777 + ], + [ + "▁yadda", + -15.189391136169434 + ], + [ + "▁Heroku", + -15.1893949508667 + ], + [ + "▁LAU", + -15.189425468444824 + ], + [ + "▁euph", + -15.189427375793457 + ], + [ + "shish", + -15.18945026397705 + ], + [ + "▁multilayered", + -15.189455032348633 + ], + [ + "▁convener", + -15.18945598602295 + ], + [ + "▁Dreamcloud", + -15.189476013183594 + ], + [ + "▁Willson", + -15.189477920532227 + ], + [ + "ähr", + -15.18949031829834 + ], + [ + "PNG", + -15.189507484436035 + ], + [ + "▁Hefner", + -15.189533233642578 + ], + [ + "ερ", + -15.189538955688477 + ], + [ + "▁Amour", + -15.189543724060059 + ], + [ + "▁Escher", + -15.189545631408691 + ], + [ + "MPC", + -15.189558982849121 + ], + [ + "▁dunking", + -15.189567565917969 + ], + [ + "▁emancipated", + -15.189574241638184 + ], + [ + "ventilated", + -15.1895751953125 + ], + [ + "еж", + -15.189576148986816 + ], + [ + "▁Forerunner", + -15.189586639404297 + ], + [ + "▁Rolando", + -15.189591407775879 + ], + [ + "▁neater", + -15.189593315124512 + ], + [ + "▁Musculoskeletal", + -15.18960952758789 + ], + [ + "cipher", + -15.189631462097168 + ], + [ + "▁sulph", + -15.189655303955078 + ], + [ + "▁Smokies", + -15.18966007232666 + ], + [ + "▁McClintock", + -15.189738273620605 + ], + [ + "hoof", + -15.189789772033691 + ], + [ + "psychotic", + -15.1898193359375 + ], + [ + "Jerusalem", + -15.189863204956055 + ], + [ + "▁vestige", + -15.189878463745117 + ], + [ + "▁borderless", + -15.18989372253418 + ], + [ + "BLUE", + -15.189896583557129 + ], + [ + "▁Crossrail", + -15.189931869506836 + ], + [ + "▁kappa", + -15.189940452575684 + ], + [ + "周", + -15.189947128295898 + ], + [ + "▁Hepsia", + -15.189950942993164 + ], + [ + "第二", + -15.189970016479492 + ], + [ + "▁elitism", + -15.189980506896973 + ], + [ + "▁Incremental", + -15.189981460571289 + ], + [ + "▁Solemn", + -15.189987182617188 + ], + [ + "▁Bohn", + -15.189993858337402 + ], + [ + "▁biryani", + -15.189997673034668 + ], + [ + "shwar", + -15.1900053024292 + ], + [ + "▁UDF", + -15.190011978149414 + ], + [ + "▁Pecos", + -15.190040588378906 + ], + [ + "▁HBA", + -15.190047264099121 + ], + [ + "▁glaringly", + -15.190059661865234 + ], + [ + "▁inputted", + -15.1900634765625 + ], + [ + "VERT", + -15.190088272094727 + ], + [ + "encoding", + -15.190095901489258 + ], + [ + "▁알", + -15.19013500213623 + ], + [ + "▁addressee", + -15.19014835357666 + ], + [ + "▁Snowdon", + -15.190200805664062 + ], + [ + "▁inaccurately", + -15.190213203430176 + ], + [ + "Silence", + -15.190221786499023 + ], + [ + "▁pelican", + -15.190221786499023 + ], + [ + "▁Slang", + -15.190225601196289 + ], + [ + "▁Flavia", + -15.190232276916504 + ], + [ + "Protection", + -15.190240859985352 + ], + [ + "guzzling", + -15.190258026123047 + ], + [ + "▁Logically", + -15.19027328491211 + ], + [ + "▁Quel", + -15.190284729003906 + ], + [ + "▁dyad", + -15.190303802490234 + ], + [ + "▁enduro", + -15.190320014953613 + ], + [ + "▁leon", + -15.190351486206055 + ], + [ + "havn", + -15.190361976623535 + ], + [ + "▁Pisco", + -15.190366744995117 + ], + [ + "FIS", + -15.190473556518555 + ], + [ + "spotted", + -15.190485000610352 + ], + [ + "▁sweatshop", + -15.19049072265625 + ], + [ + "▁Metabol", + -15.190557479858398 + ], + [ + "obli", + -15.190568923950195 + ], + [ + "▁Gainsborough", + -15.190571784973145 + ], + [ + "▁candlelit", + -15.190653800964355 + ], + [ + "có", + -15.190655708312988 + ], + [ + "▁Agios", + -15.190682411193848 + ], + [ + "ayana", + -15.190725326538086 + ], + [ + "fani", + -15.1907377243042 + ], + [ + "▁HEATED", + -15.190749168395996 + ], + [ + "▁Corbusier", + -15.190753936767578 + ], + [ + "▁Cabral", + -15.190802574157715 + ], + [ + "▁Rosin", + -15.190844535827637 + ], + [ + "newspaper", + -15.190860748291016 + ], + [ + "▁marsupial", + -15.190898895263672 + ], + [ + "gazing", + -15.190900802612305 + ], + [ + "XII", + -15.190911293029785 + ], + [ + "designing", + -15.190935134887695 + ], + [ + "▁Brolin", + -15.190937042236328 + ], + [ + "▁castigate", + -15.190960884094238 + ], + [ + "▁Minoan", + -15.190984725952148 + ], + [ + "Tiffany", + -15.19098949432373 + ], + [ + "▁Bouch", + -15.190999031066895 + ], + [ + "▁Spritz", + -15.191008567810059 + ], + [ + "opoulou", + -15.19101619720459 + ], + [ + "▁embellishing", + -15.191041946411133 + ], + [ + "Este", + -15.191054344177246 + ], + [ + "▁transcontinental", + -15.191091537475586 + ], + [ + "solicit", + -15.191095352172852 + ], + [ + "▁bellowed", + -15.191121101379395 + ], + [ + "▁Garcetti", + -15.191125869750977 + ], + [ + "▁Vicodin", + -15.191142082214355 + ], + [ + "▁jealously", + -15.19115924835205 + ], + [ + "▁Triassic", + -15.191190719604492 + ], + [ + "▁Shwe", + -15.191215515136719 + ], + [ + "scholarship", + -15.191329956054688 + ], + [ + "▁heralding", + -15.191329956054688 + ], + [ + "Aryan", + -15.191335678100586 + ], + [ + "▁tensioner", + -15.191341400146484 + ], + [ + "urdy", + -15.191394805908203 + ], + [ + "▁Scored", + -15.191404342651367 + ], + [ + "PLEASE", + -15.191449165344238 + ], + [ + "▁OAKLAND", + -15.191469192504883 + ], + [ + "IATION", + -15.191493034362793 + ], + [ + "▁Lissa", + -15.191499710083008 + ], + [ + "▁Summoned", + -15.191546440124512 + ], + [ + "▁rootkit", + -15.19157600402832 + ], + [ + "▁Comprised", + -15.191625595092773 + ], + [ + "▁Severin", + -15.191650390625 + ], + [ + "▁Nicolai", + -15.19166374206543 + ], + [ + "▁Chillicothe", + -15.191706657409668 + ], + [ + "그", + -15.191784858703613 + ], + [ + "moved", + -15.191818237304688 + ], + [ + "schneider", + -15.191853523254395 + ], + [ + "▁Organo", + -15.191862106323242 + ], + [ + "▁Kinase", + -15.191869735717773 + ], + [ + "parate", + -15.19191837310791 + ], + [ + "▁extradite", + -15.191963195800781 + ], + [ + "▁Lauryn", + -15.191986083984375 + ], + [ + "aidh", + -15.192021369934082 + ], + [ + "▁Bundestag", + -15.192024230957031 + ], + [ + "▁Ambrosi", + -15.192025184631348 + ], + [ + "▁smallmouth", + -15.192034721374512 + ], + [ + "▁Curia", + -15.192099571228027 + ], + [ + "departure", + -15.192138671875 + ], + [ + "류", + -15.192143440246582 + ], + [ + "▁Frieda", + -15.192159652709961 + ], + [ + "▁Dagenham", + -15.192161560058594 + ], + [ + "FDC", + -15.192209243774414 + ], + [ + "▁gizmo", + -15.19227123260498 + ], + [ + "PML", + -15.192272186279297 + ], + [ + "▁Liaoning", + -15.19228744506836 + ], + [ + "▁Sloth", + -15.192347526550293 + ], + [ + "▁Tommie", + -15.192358016967773 + ], + [ + "▁thermoelectric", + -15.192378044128418 + ], + [ + "sequencing", + -15.19237995147705 + ], + [ + "▁Ángel", + -15.192387580871582 + ], + [ + "ISED", + -15.192400932312012 + ], + [ + "▁Mesopotamian", + -15.192414283752441 + ], + [ + "Abdu", + -15.192423820495605 + ], + [ + "▁AVENUE", + -15.192434310913086 + ], + [ + "Ukrainian", + -15.192447662353516 + ], + [ + "▁malformation", + -15.19245719909668 + ], + [ + "phel", + -15.192475318908691 + ], + [ + "▁Tyndall", + -15.192481994628906 + ], + [ + "▁officinalis", + -15.192482948303223 + ], + [ + "Quarter", + -15.192488670349121 + ], + [ + "▁brogue", + -15.192511558532715 + ], + [ + "▁Unesco", + -15.192513465881348 + ], + [ + "▁ANCHOR", + -15.192522048950195 + ], + [ + "abine", + -15.192524909973145 + ], + [ + "▁Raglan", + -15.192524909973145 + ], + [ + "ǎ", + -15.19257926940918 + ], + [ + "▁Levo", + -15.192584037780762 + ], + [ + "▁Juju", + -15.192630767822266 + ], + [ + "▁Goldschmidt", + -15.192657470703125 + ], + [ + "▁cerebrovascular", + -15.192676544189453 + ], + [ + "▁Altrincham", + -15.192692756652832 + ], + [ + "▁Revenant", + -15.192708969116211 + ], + [ + "▁Taupo", + -15.192740440368652 + ], + [ + "▁LTA", + -15.192795753479004 + ], + [ + "Ц", + -15.192815780639648 + ], + [ + "▁XLS", + -15.192841529846191 + ], + [ + "▁Rommel", + -15.192850112915039 + ], + [ + "▁Puerta", + -15.192869186401367 + ], + [ + "hamstring", + -15.19288158416748 + ], + [ + "▁gasification", + -15.192889213562012 + ], + [ + "elevation", + -15.192943572998047 + ], + [ + "▁drizzling", + -15.192951202392578 + ], + [ + "▁sonically", + -15.192987442016602 + ], + [ + "▁stickler", + -15.192995071411133 + ], + [ + "▁Fogarty", + -15.19306755065918 + ], + [ + "▁scree", + -15.19310474395752 + ], + [ + "▁Postgres", + -15.193109512329102 + ], + [ + "▁XSLT", + -15.193111419677734 + ], + [ + "▁unearthing", + -15.193181037902832 + ], + [ + "▁daub", + -15.193201065063477 + ], + [ + "▁vibrantly", + -15.193221092224121 + ], + [ + "▁Nicolás", + -15.193229675292969 + ], + [ + "Attorney", + -15.19324016571045 + ], + [ + "▁Confetti", + -15.193242073059082 + ], + [ + "COE", + -15.193276405334473 + ], + [ + "▁Diazepam", + -15.193292617797852 + ], + [ + "▁Exemplary", + -15.19331169128418 + ], + [ + "▁Celina", + -15.193347930908203 + ], + [ + "▁BOTOX", + -15.193357467651367 + ], + [ + "rigue", + -15.193370819091797 + ], + [ + "úl", + -15.193460464477539 + ], + [ + "▁Wofford", + -15.193476676940918 + ], + [ + "monial", + -15.19348430633545 + ], + [ + "▁Audiology", + -15.19349193572998 + ], + [ + "▁Kunden", + -15.193506240844727 + ], + [ + "▁Bodie", + -15.193536758422852 + ], + [ + "▁Naam", + -15.193552017211914 + ], + [ + "▁Tensor", + -15.193649291992188 + ], + [ + "▁Auster", + -15.193689346313477 + ], + [ + "▁ineffable", + -15.193716049194336 + ], + [ + "flexion", + -15.193730354309082 + ], + [ + "引", + -15.193757057189941 + ], + [ + "sustainability", + -15.19375991821289 + ], + [ + "▁Niu", + -15.193770408630371 + ], + [ + "▁Utopian", + -15.193784713745117 + ], + [ + "▁anachronism", + -15.193808555603027 + ], + [ + "▁Faisalabad", + -15.193814277648926 + ], + [ + "▁Thalia", + -15.193838119506836 + ], + [ + "IOR", + -15.193878173828125 + ], + [ + "▁saudi", + -15.193887710571289 + ], + [ + "▁reflexively", + -15.193906784057617 + ], + [ + "▁sparklers", + -15.193912506103516 + ], + [ + "▁LIMITATIONS", + -15.193921089172363 + ], + [ + "ક", + -15.193970680236816 + ], + [ + "▁Jetpack", + -15.193982124328613 + ], + [ + "▁Shredded", + -15.19400691986084 + ], + [ + "▁Bodily", + -15.1940336227417 + ], + [ + "▁pneumococcal", + -15.194051742553711 + ], + [ + "temporarily", + -15.194100379943848 + ], + [ + "▁racecar", + -15.194135665893555 + ], + [ + "admittedly", + -15.194173812866211 + ], + [ + "pyrimidin", + -15.19418716430664 + ], + [ + "▁Perot", + -15.19418716430664 + ], + [ + "▁Agustin", + -15.19420337677002 + ], + [ + "orphan", + -15.194221496582031 + ], + [ + "▁broiled", + -15.194222450256348 + ], + [ + "▁hypnotist", + -15.194232940673828 + ], + [ + "▁CWC", + -15.19426441192627 + ], + [ + "SPEED", + -15.194268226623535 + ], + [ + "flexibility", + -15.194278717041016 + ], + [ + "▁Tsinghua", + -15.194311141967773 + ], + [ + "▁Sarma", + -15.194328308105469 + ], + [ + "▁Psychoanalysis", + -15.194336891174316 + ], + [ + "▁Seaford", + -15.194366455078125 + ], + [ + "▁DraftKings", + -15.194371223449707 + ], + [ + "PEI", + -15.194384574890137 + ], + [ + "TDC", + -15.194408416748047 + ], + [ + "thomas", + -15.194415092468262 + ], + [ + "▁parishioner", + -15.194435119628906 + ], + [ + "▁rediscovery", + -15.194456100463867 + ], + [ + "▁Kuna", + -15.194472312927246 + ], + [ + "Christine", + -15.194507598876953 + ], + [ + "SSU", + -15.19451904296875 + ], + [ + "▁praiseworthy", + -15.19452953338623 + ], + [ + "▁Celeron", + -15.194541931152344 + ], + [ + "▁gallantry", + -15.194546699523926 + ], + [ + "▁Beggar", + -15.194585800170898 + ], + [ + "▁друг", + -15.194585800170898 + ], + [ + "▁Firehouse", + -15.194598197937012 + ], + [ + "▁avodart", + -15.194619178771973 + ], + [ + "▁feint", + -15.194631576538086 + ], + [ + "simplify", + -15.194633483886719 + ], + [ + "Sunshine", + -15.19465446472168 + ], + [ + "θε", + -15.194676399230957 + ], + [ + "λα", + -15.194689750671387 + ], + [ + "▁reveling", + -15.194706916809082 + ], + [ + "ocyst", + -15.194727897644043 + ], + [ + "TLD", + -15.194747924804688 + ], + [ + "▁Tangle", + -15.194761276245117 + ], + [ + "▁rast", + -15.194792747497559 + ], + [ + "▁stella", + -15.194809913635254 + ], + [ + "▁cavitation", + -15.194878578186035 + ], + [ + "▁Fireside", + -15.194879531860352 + ], + [ + "▁kooky", + -15.1948881149292 + ], + [ + "▁itemize", + -15.194914817810059 + ], + [ + "▁pineal", + -15.19493293762207 + ], + [ + "▁Piaget", + -15.194951057434082 + ], + [ + "▁Boateng", + -15.19495677947998 + ], + [ + "▁Saltwater", + -15.194960594177246 + ], + [ + "▁photoelectric", + -15.195011138916016 + ], + [ + "▁Variance", + -15.195013999938965 + ], + [ + "▁Malick", + -15.195023536682129 + ], + [ + "koop", + -15.195024490356445 + ], + [ + "nomination", + -15.19503116607666 + ], + [ + "PIT", + -15.195050239562988 + ], + [ + "florida", + -15.195053100585938 + ], + [ + "▁unravelling", + -15.195056915283203 + ], + [ + "▁imploring", + -15.195072174072266 + ], + [ + "▁PSTN", + -15.195079803466797 + ], + [ + "▁TEHRAN", + -15.195088386535645 + ], + [ + "▁excommunicated", + -15.195201873779297 + ], + [ + "▁oppositional", + -15.195222854614258 + ], + [ + "▁Bochy", + -15.195255279541016 + ], + [ + "▁sloop", + -15.195303916931152 + ], + [ + "▁canapés", + -15.195363998413086 + ], + [ + "FAB", + -15.195365905761719 + ], + [ + "Alive", + -15.195367813110352 + ], + [ + "▁RHEL", + -15.195367813110352 + ], + [ + "▁FLIR", + -15.195377349853516 + ], + [ + "▁kaya", + -15.195402145385742 + ], + [ + "Daughter", + -15.195432662963867 + ], + [ + "▁abductor", + -15.195432662963867 + ], + [ + "▁Ferg", + -15.195534706115723 + ], + [ + "▁zealot", + -15.195550918579102 + ], + [ + "beli", + -15.195561408996582 + ], + [ + "▁Buffon", + -15.195603370666504 + ], + [ + "▁estoppel", + -15.19564151763916 + ], + [ + "guidance", + -15.195687294006348 + ], + [ + "▁slutty", + -15.195687294006348 + ], + [ + "▁inconvenienced", + -15.195706367492676 + ], + [ + "▁LABOR", + -15.195728302001953 + ], + [ + "▁SRK", + -15.195751190185547 + ], + [ + "▁Stockman", + -15.195757865905762 + ], + [ + "exciting", + -15.195792198181152 + ], + [ + "▁Physic", + -15.195805549621582 + ], + [ + "Raid", + -15.195806503295898 + ], + [ + "Lawyer", + -15.195809364318848 + ], + [ + "▁Adoration", + -15.195838928222656 + ], + [ + "unsubscribe", + -15.195843696594238 + ], + [ + "▁SEER", + -15.1959228515625 + ], + [ + "▁greenway", + -15.195958137512207 + ], + [ + "▁munchies", + -15.196049690246582 + ], + [ + "온", + -15.196126937866211 + ], + [ + "VQ", + -15.196146965026855 + ], + [ + "▁lingual", + -15.196165084838867 + ], + [ + "appen", + -15.196186065673828 + ], + [ + "▁Sizzling", + -15.19619083404541 + ], + [ + "▁Stanhope", + -15.196208953857422 + ], + [ + "▁GHC", + -15.196288108825684 + ], + [ + "Shore", + -15.196333885192871 + ], + [ + "▁imitators", + -15.196386337280273 + ], + [ + "liberation", + -15.196419715881348 + ], + [ + "tomies", + -15.196512222290039 + ], + [ + "▁Sofitel", + -15.196516036987305 + ], + [ + "▁Kosova", + -15.196619987487793 + ], + [ + "▁Zeal", + -15.196642875671387 + ], + [ + "▁Warmth", + -15.196660041809082 + ], + [ + "cobalamin", + -15.196755409240723 + ], + [ + "ồ", + -15.196791648864746 + ], + [ + "▁Viaduct", + -15.196842193603516 + ], + [ + "▁Torrington", + -15.196864128112793 + ], + [ + "▁frictional", + -15.196864128112793 + ], + [ + "▁Aswan", + -15.196866035461426 + ], + [ + "▁SIGNED", + -15.196870803833008 + ], + [ + "▁plied", + -15.196884155273438 + ], + [ + "▁Arabella", + -15.19691276550293 + ], + [ + "уб", + -15.196943283081055 + ], + [ + "▁carjacking", + -15.19697380065918 + ], + [ + "▁Marital", + -15.196978569030762 + ], + [ + "amoxicillin", + -15.19698715209961 + ], + [ + "▁Amplify", + -15.19699764251709 + ], + [ + "▁birmingham", + -15.19701862335205 + ], + [ + "▁RYAN", + -15.197044372558594 + ], + [ + "granted", + -15.19704818725586 + ], + [ + "▁Tiled", + -15.197060585021973 + ], + [ + "▁Mastiff", + -15.197087287902832 + ], + [ + "▁APPLICATIONS", + -15.197090148925781 + ], + [ + "▁Zaid", + -15.197093963623047 + ], + [ + "▁Kimono", + -15.197111129760742 + ], + [ + "perfection", + -15.197123527526855 + ], + [ + "▁Searchlight", + -15.197141647338867 + ], + [ + "▁Veal", + -15.19716739654541 + ], + [ + "овые", + -15.197175979614258 + ], + [ + "▁NSU", + -15.197226524353027 + ], + [ + "▁banyak", + -15.197257995605469 + ], + [ + "▁Waitangi", + -15.197272300720215 + ], + [ + "▁abovementioned", + -15.197285652160645 + ], + [ + "▁criminalization", + -15.197298049926758 + ], + [ + "▁Intrusion", + -15.197320938110352 + ], + [ + "▁VCC", + -15.197358131408691 + ], + [ + "▁ERM", + -15.197372436523438 + ], + [ + "▁BIGGEST", + -15.19742488861084 + ], + [ + "OPP", + -15.197443008422852 + ], + [ + "▁Roebuck", + -15.19746208190918 + ], + [ + "▁Pagano", + -15.197464942932129 + ], + [ + "▁bouldering", + -15.197470664978027 + ], + [ + "▁NTA", + -15.197503089904785 + ], + [ + "FPA", + -15.197504043579102 + ], + [ + "▁Giggs", + -15.197532653808594 + ], + [ + "gesellschaft", + -15.197552680969238 + ], + [ + "mule", + -15.197561264038086 + ], + [ + "▁airgun", + -15.197591781616211 + ], + [ + "▁VICTORIA", + -15.197598457336426 + ], + [ + "▁Domenic", + -15.197601318359375 + ], + [ + "▁trypsin", + -15.197620391845703 + ], + [ + "goodness", + -15.197662353515625 + ], + [ + "scooter", + -15.197675704956055 + ], + [ + "greasy", + -15.197693824768066 + ], + [ + "▁Snooker", + -15.197807312011719 + ], + [ + "▁interfacial", + -15.197851181030273 + ], + [ + "▁woodsy", + -15.197854995727539 + ], + [ + "▁Northgate", + -15.197871208190918 + ], + [ + "▁Vlog", + -15.197881698608398 + ], + [ + "▁Beanstalk", + -15.19792366027832 + ], + [ + "▁crusted", + -15.197933197021484 + ], + [ + "▁directorship", + -15.197953224182129 + ], + [ + "😂", + -15.197981834411621 + ], + [ + "▁SRL", + -15.197994232177734 + ], + [ + "determine", + -15.19800853729248 + ], + [ + "boutique", + -15.198026657104492 + ], + [ + "▁Sherbrooke", + -15.198031425476074 + ], + [ + "sumptive", + -15.198038101196289 + ], + [ + "▁metastasize", + -15.198049545288086 + ], + [ + "USTER", + -15.198064804077148 + ], + [ + "▁Lusk", + -15.198092460632324 + ], + [ + "▁Forecasters", + -15.198114395141602 + ], + [ + "▁SCALE", + -15.198124885559082 + ], + [ + "ération", + -15.198135375976562 + ], + [ + "ibili", + -15.198144912719727 + ], + [ + "Plain", + -15.198182106018066 + ], + [ + "▁marginalize", + -15.19819164276123 + ], + [ + "▁Ryman", + -15.198209762573242 + ], + [ + "▁highbrow", + -15.198271751403809 + ], + [ + "▁Yona", + -15.198274612426758 + ], + [ + "▁Rix", + -15.198308944702148 + ], + [ + "▁pelted", + -15.198323249816895 + ], + [ + "seeding", + -15.19837474822998 + ], + [ + "▁Shawna", + -15.19838809967041 + ], + [ + "▁Olsson", + -15.198392868041992 + ], + [ + "▁Dispose", + -15.198420524597168 + ], + [ + "▁JPM", + -15.198433876037598 + ], + [ + "▁AERO", + -15.198437690734863 + ], + [ + "▁Drudge", + -15.198453903198242 + ], + [ + "▁PDVSA", + -15.198465347290039 + ], + [ + "▁instantiated", + -15.198468208312988 + ], + [ + "▁Branford", + -15.19847297668457 + ], + [ + "▁napped", + -15.198497772216797 + ], + [ + "Agile", + -15.198502540588379 + ], + [ + "▁cleaver", + -15.19852352142334 + ], + [ + "번", + -15.198530197143555 + ], + [ + "DST", + -15.198533058166504 + ], + [ + "▁shaven", + -15.198545455932617 + ], + [ + "BMP", + -15.1985502243042 + ], + [ + "▁Hellfire", + -15.198552131652832 + ], + [ + "accessibility", + -15.198637008666992 + ], + [ + "▁Frankincense", + -15.19869327545166 + ], + [ + "bajo", + -15.198701858520508 + ], + [ + "▁Aslam", + -15.198724746704102 + ], + [ + "▁Ballerina", + -15.19876480102539 + ], + [ + "▁infuriate", + -15.198772430419922 + ], + [ + "▁Glori", + -15.198782920837402 + ], + [ + "▁Kapu", + -15.198786735534668 + ], + [ + "▁RSU", + -15.198789596557617 + ], + [ + "▁subsp", + -15.198797225952148 + ], + [ + "duplicate", + -15.198820114135742 + ], + [ + "Election", + -15.198837280273438 + ], + [ + "▁pyruvate", + -15.198853492736816 + ], + [ + "atik", + -15.198860168457031 + ], + [ + "▁bifocal", + -15.198868751525879 + ], + [ + "▁InSight", + -15.198883056640625 + ], + [ + "▁CXCR", + -15.198904991149902 + ], + [ + "▁Jeon", + -15.198923110961914 + ], + [ + "▁wheeze", + -15.198938369750977 + ], + [ + "▁ubi", + -15.19897174835205 + ], + [ + "▁lymphocytic", + -15.198973655700684 + ], + [ + "▁Galore", + -15.19897747039795 + ], + [ + "▁WRT", + -15.198986053466797 + ], + [ + "▁MURDER", + -15.199021339416504 + ], + [ + "▁scallion", + -15.199042320251465 + ], + [ + "▁Stamkos", + -15.19911003112793 + ], + [ + "▁Loreto", + -15.199180603027344 + ], + [ + "▁Craw", + -15.199197769165039 + ], + [ + "AWAY", + -15.199204444885254 + ], + [ + "▁abdication", + -15.19920539855957 + ], + [ + "▁Transmit", + -15.199214935302734 + ], + [ + "▁NRT", + -15.199236869812012 + ], + [ + "Unity", + -15.199297904968262 + ], + [ + "▁McLachlan", + -15.199311256408691 + ], + [ + "▁medico", + -15.199336051940918 + ], + [ + "▁SURF", + -15.199339866638184 + ], + [ + "▁Faf", + -15.199376106262207 + ], + [ + "Arginine", + -15.199407577514648 + ], + [ + "▁POINTS", + -15.199435234069824 + ], + [ + "▁fawning", + -15.199460983276367 + ], + [ + "▁NBCUniversal", + -15.199496269226074 + ], + [ + "▁Anatoly", + -15.199524879455566 + ], + [ + "▁kayakers", + -15.199528694152832 + ], + [ + "▁ejector", + -15.199557304382324 + ], + [ + "▁soaker", + -15.199560165405273 + ], + [ + "Bahn", + -15.19960880279541 + ], + [ + "Reality", + -15.199620246887207 + ], + [ + "Rental", + -15.199702262878418 + ], + [ + "▁Periodicals", + -15.199745178222656 + ], + [ + "▁sarin", + -15.1997709274292 + ], + [ + "▁XSM", + -15.199777603149414 + ], + [ + "▁facilit", + -15.199804306030273 + ], + [ + "ducted", + -15.199812889099121 + ], + [ + "kowsky", + -15.19984245300293 + ], + [ + "▁Benioff", + -15.199849128723145 + ], + [ + "▁Alegre", + -15.19986343383789 + ], + [ + "▁Padgett", + -15.19986629486084 + ], + [ + "▁AoE", + -15.199868202209473 + ], + [ + "▁BPL", + -15.199882507324219 + ], + [ + "Recently", + -15.199907302856445 + ], + [ + "onymous", + -15.200017929077148 + ], + [ + "▁Tavistock", + -15.200098991394043 + ], + [ + "▁Muji", + -15.200105667114258 + ], + [ + "▁URBAN", + -15.200111389160156 + ], + [ + "وس", + -15.200115203857422 + ], + [ + "▁Industrie", + -15.20012092590332 + ], + [ + "▁Humanism", + -15.200133323669434 + ], + [ + "▁rationalist", + -15.200182914733887 + ], + [ + "▁microcomputer", + -15.200227737426758 + ], + [ + "▁DeAngelo", + -15.200235366821289 + ], + [ + "▁FABRIC", + -15.200242042541504 + ], + [ + "▁economize", + -15.200264930725098 + ], + [ + "▁Babar", + -15.200282096862793 + ], + [ + "sampled", + -15.200380325317383 + ], + [ + "ტ", + -15.20040225982666 + ], + [ + "▁Gouda", + -15.20041561126709 + ], + [ + "ayev", + -15.20046329498291 + ], + [ + "ligan", + -15.200467109680176 + ], + [ + "▁Saipan", + -15.200485229492188 + ], + [ + "▁phthalate", + -15.200522422790527 + ], + [ + "▁Mithra", + -15.200535774230957 + ], + [ + "▁psychoanalyst", + -15.200535774230957 + ], + [ + "▁Desirable", + -15.200552940368652 + ], + [ + "▁LABEL", + -15.200559616088867 + ], + [ + "▁Shiga", + -15.200563430786133 + ], + [ + "▁Monolith", + -15.20056438446045 + ], + [ + "▁Yau", + -15.200569152832031 + ], + [ + "▁guttural", + -15.20059871673584 + ], + [ + "▁biplane", + -15.200606346130371 + ], + [ + "▁PBMC", + -15.200624465942383 + ], + [ + "▁Spongebob", + -15.20064926147461 + ], + [ + "gallo", + -15.200679779052734 + ], + [ + "credited", + -15.200738906860352 + ], + [ + "▁Romper", + -15.200776100158691 + ], + [ + "▁Samhain", + -15.20078182220459 + ], + [ + "Benjamin", + -15.200814247131348 + ], + [ + "myelitis", + -15.200822830200195 + ], + [ + "▁Stockwell", + -15.200825691223145 + ], + [ + "▁Odeon", + -15.200841903686523 + ], + [ + "▁GOAT", + -15.200846672058105 + ], + [ + "▁Sidekick", + -15.200928688049316 + ], + [ + "▁Bahasa", + -15.200940132141113 + ], + [ + "accounting", + -15.20102596282959 + ], + [ + "CTION", + -15.201050758361816 + ], + [ + "▁MTG", + -15.201065063476562 + ], + [ + "▁roux", + -15.201068878173828 + ], + [ + "▁Teodor", + -15.201075553894043 + ], + [ + "spiral", + -15.201180458068848 + ], + [ + "▁Kamin", + -15.201196670532227 + ], + [ + "▁gurgling", + -15.20121955871582 + ], + [ + "▁Pá", + -15.201275825500488 + ], + [ + "▁cambio", + -15.201278686523438 + ], + [ + "▁endocrinology", + -15.201282501220703 + ], + [ + "Rear", + -15.201306343078613 + ], + [ + "▁jimmy", + -15.201308250427246 + ], + [ + "▁rome", + -15.201310157775879 + ], + [ + "OOM", + -15.201337814331055 + ], + [ + "zow", + -15.201345443725586 + ], + [ + "▁meshed", + -15.201360702514648 + ], + [ + "billy", + -15.201364517211914 + ], + [ + "Banking", + -15.201370239257812 + ], + [ + "1859", + -15.201422691345215 + ], + [ + "À", + -15.20142936706543 + ], + [ + "▁HEALTHY", + -15.201434135437012 + ], + [ + "ţa", + -15.201476097106934 + ], + [ + "forty", + -15.201507568359375 + ], + [ + "▁stealthily", + -15.201532363891602 + ], + [ + "▁scrupulously", + -15.201541900634766 + ], + [ + "▁Marten", + -15.201567649841309 + ], + [ + "▁DWG", + -15.201571464538574 + ], + [ + "▁salvaging", + -15.201581001281738 + ], + [ + "Mechanical", + -15.201623916625977 + ], + [ + "▁Wiesel", + -15.201666831970215 + ], + [ + "▁senza", + -15.20168685913086 + ], + [ + "▁ASCAP", + -15.201790809631348 + ], + [ + "▁shekels", + -15.201801300048828 + ], + [ + "▁Nida", + -15.201804161071777 + ], + [ + "▁Abrahamic", + -15.201807975769043 + ], + [ + "CEPT", + -15.201830863952637 + ], + [ + "▁Ombre", + -15.20184326171875 + ], + [ + "▁scurry", + -15.201852798461914 + ], + [ + "jko", + -15.20185375213623 + ], + [ + "▁TWRP", + -15.201896667480469 + ], + [ + "▁Tutsi", + -15.201897621154785 + ], + [ + "▁booing", + -15.201919555664062 + ], + [ + "▁subdirectory", + -15.201925277709961 + ], + [ + "аг", + -15.201944351196289 + ], + [ + "▁Chromatography", + -15.202000617980957 + ], + [ + "▁Nala", + -15.202021598815918 + ], + [ + "▁Ewa", + -15.202034950256348 + ], + [ + "glycemic", + -15.202082633972168 + ], + [ + "▁charlie", + -15.202089309692383 + ], + [ + "▁Confer", + -15.202115058898926 + ], + [ + "▁Snorkel", + -15.202136039733887 + ], + [ + "▁Rinehart", + -15.20219612121582 + ], + [ + "▁Unconditional", + -15.202230453491211 + ], + [ + "▁VOR", + -15.202241897583008 + ], + [ + "▁100°", + -15.202315330505371 + ], + [ + "▁Esthetic", + -15.202378273010254 + ], + [ + "omizer", + -15.202402114868164 + ], + [ + "CHP", + -15.202410697937012 + ], + [ + "ovian", + -15.202420234680176 + ], + [ + "▁Vermi", + -15.202428817749023 + ], + [ + "▁Cripple", + -15.202441215515137 + ], + [ + "▁Ripp", + -15.202476501464844 + ], + [ + "▁NASH", + -15.202484130859375 + ], + [ + "▁Negra", + -15.202500343322754 + ], + [ + "▁politi", + -15.202522277832031 + ], + [ + "▁TOPIC", + -15.202528953552246 + ], + [ + "▁Ylang", + -15.202568054199219 + ], + [ + "▁Dynami", + -15.2025785446167 + ], + [ + "▁ἀ", + -15.202584266662598 + ], + [ + "Generic", + -15.20262622833252 + ], + [ + "▁Pashtun", + -15.202628135681152 + ], + [ + "quilla", + -15.202631950378418 + ], + [ + "ève", + -15.202651977539062 + ], + [ + "▁SUPPLY", + -15.202702522277832 + ], + [ + "▁Barter", + -15.202706336975098 + ], + [ + "▁Lippincott", + -15.202718734741211 + ], + [ + "▁Piranha", + -15.202720642089844 + ], + [ + "▁අ", + -15.202727317810059 + ], + [ + "▁PUL", + -15.202733993530273 + ], + [ + "▁Prednisone", + -15.20273494720459 + ], + [ + "Nashville", + -15.202747344970703 + ], + [ + "▁refractor", + -15.202750205993652 + ], + [ + "▁MCQ", + -15.202784538269043 + ], + [ + "▁Cluj", + -15.20279312133789 + ], + [ + "▁stammered", + -15.202807426452637 + ], + [ + "▁lusting", + -15.202816009521484 + ], + [ + "▁BORN", + -15.202849388122559 + ], + [ + "▁Ipsos", + -15.202851295471191 + ], + [ + "crumb", + -15.202858924865723 + ], + [ + "▁Touchstone", + -15.202879905700684 + ], + [ + "midi", + -15.202942848205566 + ], + [ + "▁KOL", + -15.20295238494873 + ], + [ + "habitat", + -15.20296859741211 + ], + [ + "▁grandfathered", + -15.202985763549805 + ], + [ + "▁Coldwater", + -15.203027725219727 + ], + [ + "▁Assistive", + -15.203168869018555 + ], + [ + "Theatre", + -15.2031831741333 + ], + [ + "西", + -15.203238487243652 + ], + [ + "▁Assortment", + -15.203258514404297 + ], + [ + "▁ANTONIO", + -15.203274726867676 + ], + [ + "▁Frem", + -15.203324317932129 + ], + [ + "AAF", + -15.203361511230469 + ], + [ + "▁Remake", + -15.203394889831543 + ], + [ + "SPAR", + -15.203411102294922 + ], + [ + "▁Apogee", + -15.203433990478516 + ], + [ + "▁MDL", + -15.203435897827148 + ], + [ + "FID", + -15.20344066619873 + ], + [ + "▁Catheter", + -15.20347785949707 + ], + [ + "▁Libri", + -15.203503608703613 + ], + [ + "enheit", + -15.203520774841309 + ], + [ + "▁codice", + -15.203535079956055 + ], + [ + "▁employable", + -15.203557014465332 + ], + [ + "ifex", + -15.203577995300293 + ], + [ + "▁Calendula", + -15.203600883483887 + ], + [ + "▁Uriah", + -15.203628540039062 + ], + [ + "▁Phenom", + -15.203641891479492 + ], + [ + "▁Tomasz", + -15.20368480682373 + ], + [ + "▁Poitier", + -15.203695297241211 + ], + [ + "aloon", + -15.203700065612793 + ], + [ + "▁polytechnic", + -15.20370101928711 + ], + [ + "▁Bergdahl", + -15.203712463378906 + ], + [ + "▁pageantry", + -15.203727722167969 + ], + [ + "▁gigabyte", + -15.203737258911133 + ], + [ + "▁MacPherson", + -15.20374870300293 + ], + [ + "Env", + -15.20376205444336 + ], + [ + "▁unpalatable", + -15.203764915466309 + ], + [ + "▁Goswami", + -15.203798294067383 + ], + [ + "▁BIND", + -15.203812599182129 + ], + [ + "▁scrim", + -15.203903198242188 + ], + [ + "▁shortsighted", + -15.203927993774414 + ], + [ + "▁electrocution", + -15.20393180847168 + ], + [ + "▁iStock", + -15.203959465026855 + ], + [ + "▁Timmons", + -15.203967094421387 + ], + [ + "sparing", + -15.204000473022461 + ], + [ + "GENT", + -15.20401668548584 + ], + [ + "▁comorbid", + -15.204019546508789 + ], + [ + "▁MSDN", + -15.204050064086914 + ], + [ + "▁Doria", + -15.204061508178711 + ], + [ + "mision", + -15.20411491394043 + ], + [ + "▁Emerg", + -15.204155921936035 + ], + [ + "khla", + -15.20418643951416 + ], + [ + "▁Chaotic", + -15.204202651977539 + ], + [ + "▁Putty", + -15.204206466674805 + ], + [ + "▁Wilshere", + -15.204207420349121 + ], + [ + "▁ACER", + -15.204290390014648 + ], + [ + "▁invitees", + -15.204298973083496 + ], + [ + "clever", + -15.204355239868164 + ], + [ + "양", + -15.204371452331543 + ], + [ + "terrestrial", + -15.204387664794922 + ], + [ + "uddling", + -15.204392433166504 + ], + [ + "▁OIS", + -15.20440673828125 + ], + [ + "▁Enhancer", + -15.204500198364258 + ], + [ + "▁constipated", + -15.204517364501953 + ], + [ + "▁Marque", + -15.204524040222168 + ], + [ + "▁TBH", + -15.204545021057129 + ], + [ + "petit", + -15.204559326171875 + ], + [ + "▁Croce", + -15.204564094543457 + ], + [ + "▁camellia", + -15.204596519470215 + ], + [ + "▁tapeworm", + -15.20462703704834 + ], + [ + "▁Midge", + -15.204633712768555 + ], + [ + "▁Fournette", + -15.204639434814453 + ], + [ + "iyyah", + -15.204648971557617 + ], + [ + "▁godless", + -15.2046537399292 + ], + [ + "▁mythologies", + -15.204680442810059 + ], + [ + "FACT", + -15.204695701599121 + ], + [ + "Audible", + -15.204721450805664 + ], + [ + "▁Sanity", + -15.204724311828613 + ], + [ + "▁professes", + -15.204728126525879 + ], + [ + "▁Frontal", + -15.204730033874512 + ], + [ + "▁netminder", + -15.204758644104004 + ], + [ + "▁jasper", + -15.204774856567383 + ], + [ + "▁tedium", + -15.204936981201172 + ], + [ + "▁detroit", + -15.204941749572754 + ], + [ + "یر", + -15.204961776733398 + ], + [ + "▁MICR", + -15.204970359802246 + ], + [ + "▁Chimp", + -15.204973220825195 + ], + [ + "ODO", + -15.204978942871094 + ], + [ + "▁INSTAGRAM", + -15.205057144165039 + ], + [ + "uyi", + -15.205087661743164 + ], + [ + "certify", + -15.205108642578125 + ], + [ + "▁counterparties", + -15.205108642578125 + ], + [ + "▁nightcap", + -15.205133438110352 + ], + [ + "Portuguese", + -15.205254554748535 + ], + [ + "matology", + -15.205265045166016 + ], + [ + "ulata", + -15.205282211303711 + ], + [ + "▁WESTERN", + -15.205289840698242 + ], + [ + "▁overcook", + -15.205310821533203 + ], + [ + "▁Daiichi", + -15.205344200134277 + ], + [ + "kuni", + -15.205353736877441 + ], + [ + "tribu", + -15.205367088317871 + ], + [ + "wurst", + -15.20536994934082 + ], + [ + "henry", + -15.205376625061035 + ], + [ + "enheimer", + -15.205387115478516 + ], + [ + "▁Ilford", + -15.205391883850098 + ], + [ + "▁Christening", + -15.205401420593262 + ], + [ + "▁Apnea", + -15.205409049987793 + ], + [ + "agine", + -15.205476760864258 + ], + [ + "▁Gunnison", + -15.205490112304688 + ], + [ + "▁ligase", + -15.20556640625 + ], + [ + "apoptotic", + -15.205582618713379 + ], + [ + "▁HFS", + -15.205589294433594 + ], + [ + "▁wistfully", + -15.205589294433594 + ], + [ + "▁Klip", + -15.205618858337402 + ], + [ + "▁Snee", + -15.205645561218262 + ], + [ + "Viking", + -15.205659866333008 + ], + [ + "▁lolly", + -15.205659866333008 + ], + [ + "suspicious", + -15.205695152282715 + ], + [ + "▁Ooo", + -15.205706596374512 + ], + [ + "▁Addicted", + -15.205709457397461 + ], + [ + "▁cloudless", + -15.205740928649902 + ], + [ + "▁Fathom", + -15.205744743347168 + ], + [ + "▁ultrasonography", + -15.205744743347168 + ], + [ + "▁Galaxies", + -15.205753326416016 + ], + [ + "▁Jenks", + -15.205764770507812 + ], + [ + "過", + -15.205777168273926 + ], + [ + "▁Aqueduct", + -15.205794334411621 + ], + [ + "spherical", + -15.205799102783203 + ], + [ + "▁Kalb", + -15.20580768585205 + ], + [ + "▁Resolver", + -15.205816268920898 + ], + [ + "GON", + -15.205822944641113 + ], + [ + "▁Herself", + -15.205899238586426 + ], + [ + "Henri", + -15.205914497375488 + ], + [ + "▁आप", + -15.205927848815918 + ], + [ + "▁austral", + -15.205947875976562 + ], + [ + "▁Differentiate", + -15.205960273742676 + ], + [ + "▁Nitish", + -15.206013679504395 + ], + [ + "▁Brighter", + -15.206038475036621 + ], + [ + "CMV", + -15.206040382385254 + ], + [ + "▁GREY", + -15.206072807312012 + ], + [ + "phoric", + -15.206076622009277 + ], + [ + "torp", + -15.206089973449707 + ], + [ + "ukai", + -15.206090927124023 + ], + [ + "▁hypersonic", + -15.206092834472656 + ], + [ + "▁specious", + -15.206161499023438 + ], + [ + "vulsion", + -15.20619010925293 + ], + [ + "▁howitzer", + -15.206210136413574 + ], + [ + "Laurent", + -15.20621395111084 + ], + [ + "▁Avro", + -15.206220626831055 + ], + [ + "AGUE", + -15.206223487854004 + ], + [ + "▁Cygnus", + -15.206236839294434 + ], + [ + "▁Wexler", + -15.20626449584961 + ], + [ + "▁CUSTOMERS", + -15.206265449523926 + ], + [ + "▁Avira", + -15.206268310546875 + ], + [ + "▁Strongest", + -15.206274032592773 + ], + [ + "▁Catapult", + -15.20628547668457 + ], + [ + "▁unappreciated", + -15.206313133239746 + ], + [ + "▁Margret", + -15.206315040588379 + ], + [ + "▁haemoglobin", + -15.206319808959961 + ], + [ + "cluding", + -15.206324577331543 + ], + [ + "IMG", + -15.206340789794922 + ], + [ + "▁Bhagat", + -15.206356048583984 + ], + [ + "▁gnu", + -15.206371307373047 + ], + [ + "AUTO", + -15.20638370513916 + ], + [ + "▁Maryann", + -15.206384658813477 + ], + [ + "▁Meerut", + -15.206485748291016 + ], + [ + "▁Santosh", + -15.206496238708496 + ], + [ + "▁Richfield", + -15.20651912689209 + ], + [ + "Shipping", + -15.206546783447266 + ], + [ + "TURN", + -15.206564903259277 + ], + [ + "▁unsecure", + -15.20659065246582 + ], + [ + "▁Energizer", + -15.206592559814453 + ], + [ + "▁Shultz", + -15.206610679626465 + ], + [ + "▁jeune", + -15.206644058227539 + ], + [ + "▁disembarked", + -15.206670761108398 + ], + [ + "IFI", + -15.206679344177246 + ], + [ + "▁cbd", + -15.206693649291992 + ], + [ + "▁Foggy", + -15.206706047058105 + ], + [ + "▁wireline", + -15.206719398498535 + ], + [ + "▁kickback", + -15.206750869750977 + ], + [ + "▁Echinacea", + -15.206777572631836 + ], + [ + "▁Manasseh", + -15.206809997558594 + ], + [ + "Romeo", + -15.20681381225586 + ], + [ + "▁Gaynor", + -15.206819534301758 + ], + [ + "restored", + -15.206865310668945 + ], + [ + "▁SUSE", + -15.206870079040527 + ], + [ + "▁Smil", + -15.206913948059082 + ], + [ + "▁Unusually", + -15.206926345825195 + ], + [ + "▁misstatement", + -15.206933975219727 + ], + [ + "▁Herrick", + -15.206971168518066 + ], + [ + "▁Unforgettable", + -15.206991195678711 + ], + [ + "▁Smallville", + -15.20700740814209 + ], + [ + "▁lidar", + -15.207097053527832 + ], + [ + "haye", + -15.20710563659668 + ], + [ + "▁microsite", + -15.207135200500488 + ], + [ + "▁unimaginative", + -15.207138061523438 + ], + [ + "▁Punish", + -15.207159996032715 + ], + [ + "▁Pelletier", + -15.207164764404297 + ], + [ + "utsu", + -15.207169532775879 + ], + [ + "▁DVLA", + -15.207178115844727 + ], + [ + "▁Weald", + -15.207188606262207 + ], + [ + "kowska", + -15.207196235656738 + ], + [ + "atine", + -15.207242012023926 + ], + [ + "▁Toothpaste", + -15.207294464111328 + ], + [ + "▁subtilis", + -15.207304954528809 + ], + [ + "▁POLITICAL", + -15.207367897033691 + ], + [ + "▁SUITE", + -15.207389831542969 + ], + [ + "defeat", + -15.207392692565918 + ], + [ + "▁cleanroom", + -15.207436561584473 + ], + [ + "▁KAI", + -15.207442283630371 + ], + [ + "ophilia", + -15.207459449768066 + ], + [ + "▁Volatile", + -15.207483291625977 + ], + [ + "▁Cobham", + -15.20749568939209 + ], + [ + "phoresis", + -15.207500457763672 + ], + [ + "▁NPM", + -15.207552909851074 + ], + [ + "▁antigenic", + -15.207686424255371 + ], + [ + "▁moribund", + -15.207696914672852 + ], + [ + "▁befriending", + -15.207709312438965 + ], + [ + "▁Visor", + -15.207742691040039 + ], + [ + "▁Fiend", + -15.207765579223633 + ], + [ + "▁Choy", + -15.207784652709961 + ], + [ + "▁faut", + -15.207801818847656 + ], + [ + "▁stinkin", + -15.207812309265137 + ], + [ + "ouni", + -15.2078218460083 + ], + [ + "▁Progent", + -15.207834243774414 + ], + [ + "Extended", + -15.207844734191895 + ], + [ + "▁Prue", + -15.207857131958008 + ], + [ + "▁SMH", + -15.207857131958008 + ], + [ + "▁Ishikawa", + -15.20788288116455 + ], + [ + "▁meritocracy", + -15.207979202270508 + ], + [ + "▁sollte", + -15.208030700683594 + ], + [ + "▁baseband", + -15.20804500579834 + ], + [ + "Wales", + -15.208054542541504 + ], + [ + "▁trickiest", + -15.208088874816895 + ], + [ + "▁cualquier", + -15.208107948303223 + ], + [ + "▁ACCURATE", + -15.208123207092285 + ], + [ + "▁PUNCH", + -15.208192825317383 + ], + [ + "▁carboxylic", + -15.208260536193848 + ], + [ + "▁Spool", + -15.208280563354492 + ], + [ + "▁STUNNING", + -15.208303451538086 + ], + [ + "▁drainer", + -15.208308219909668 + ], + [ + "Proc", + -15.208319664001465 + ], + [ + "▁Elvin", + -15.208319664001465 + ], + [ + "▁Kellen", + -15.208320617675781 + ], + [ + "arrangement", + -15.20833683013916 + ], + [ + "▁Ō", + -15.208369255065918 + ], + [ + "▁coarser", + -15.208392143249512 + ], + [ + "▁factorization", + -15.20841121673584 + ], + [ + "ته", + -15.208446502685547 + ], + [ + "▁laryngeal", + -15.208500862121582 + ], + [ + "▁stopgap", + -15.2085599899292 + ], + [ + "▁McLoughlin", + -15.208573341369629 + ], + [ + "evolved", + -15.208590507507324 + ], + [ + "▁SIE", + -15.208599090576172 + ], + [ + "▁Xilinx", + -15.208616256713867 + ], + [ + "▁praline", + -15.208693504333496 + ], + [ + "daniel", + -15.208703994750977 + ], + [ + "▁Во", + -15.208708763122559 + ], + [ + "cose", + -15.20872688293457 + ], + [ + "▁Gret", + -15.208733558654785 + ], + [ + "▁Plein", + -15.208765029907227 + ], + [ + "▁Primeknit", + -15.20878791809082 + ], + [ + "▁auxin", + -15.20878791809082 + ], + [ + "PEA", + -15.208806991577148 + ], + [ + "▁commiserate", + -15.208813667297363 + ], + [ + "▁skidding", + -15.208840370178223 + ], + [ + "▁orginal", + -15.2088623046875 + ], + [ + "beloved", + -15.208918571472168 + ], + [ + "▁Thebes", + -15.208919525146484 + ], + [ + "▁codename", + -15.208929061889648 + ], + [ + "agnostic", + -15.208961486816406 + ], + [ + "▁patronising", + -15.208984375 + ], + [ + "▁Dü", + -15.209002494812012 + ], + [ + "▁Infringement", + -15.209010124206543 + ], + [ + "▁fio", + -15.209013938903809 + ], + [ + "▁Seema", + -15.209024429321289 + ], + [ + "▁dexterous", + -15.209059715270996 + ], + [ + "▁subpart", + -15.20910358428955 + ], + [ + "▁Bemidji", + -15.20910930633545 + ], + [ + "▁Sentra", + -15.209163665771484 + ], + [ + "▁Imagin", + -15.209166526794434 + ], + [ + "▁McWilliams", + -15.209219932556152 + ], + [ + "▁doozy", + -15.209283828735352 + ], + [ + "▁mismanaged", + -15.209283828735352 + ], + [ + "▁bactrim", + -15.2092924118042 + ], + [ + "▁Eckert", + -15.209352493286133 + ], + [ + "▁Schweizer", + -15.20935344696045 + ], + [ + "▁Baikal", + -15.209358215332031 + ], + [ + "▁Puyallup", + -15.209371566772461 + ], + [ + "adhya", + -15.209392547607422 + ], + [ + "▁0161", + -15.209393501281738 + ], + [ + "▁sheetrock", + -15.209394454956055 + ], + [ + "ụ", + -15.209421157836914 + ], + [ + "Promise", + -15.209434509277344 + ], + [ + "デ", + -15.209440231323242 + ], + [ + "pede", + -15.209443092346191 + ], + [ + "▁위", + -15.20945930480957 + ], + [ + "beni", + -15.209479331970215 + ], + [ + "CURRENCY", + -15.209502220153809 + ], + [ + "▁Mgmt", + -15.20950698852539 + ], + [ + "▁inductee", + -15.209582328796387 + ], + [ + "▁Dunstan", + -15.209626197814941 + ], + [ + "▁soonest", + -15.209654808044434 + ], + [ + "▁cormorant", + -15.209667205810547 + ], + [ + "▁Fiennes", + -15.20968246459961 + ], + [ + "▁chequered", + -15.20971965789795 + ], + [ + "▁Anak", + -15.209761619567871 + ], + [ + "▁Esoteric", + -15.209766387939453 + ], + [ + "▁clubbed", + -15.209786415100098 + ], + [ + "Jesse", + -15.20980167388916 + ], + [ + "▁chrysler", + -15.209823608398438 + ], + [ + "Clone", + -15.209840774536133 + ], + [ + "▁bulkier", + -15.209859848022461 + ], + [ + "goda", + -15.209930419921875 + ], + [ + "▁studious", + -15.209956169128418 + ], + [ + "▁quizzical", + -15.20998764038086 + ], + [ + "設", + -15.209991455078125 + ], + [ + "▁Katarina", + -15.210006713867188 + ], + [ + "occupy", + -15.210038185119629 + ], + [ + "FLY", + -15.210067749023438 + ], + [ + "▁resettle", + -15.210089683532715 + ], + [ + "▁Creo", + -15.210112571716309 + ], + [ + "ライ", + -15.210127830505371 + ], + [ + "▁gypsies", + -15.210144996643066 + ], + [ + "▁Carport", + -15.210193634033203 + ], + [ + "wifi", + -15.210211753845215 + ], + [ + "▁Birgit", + -15.210211753845215 + ], + [ + "Butter", + -15.210230827331543 + ], + [ + "ある", + -15.210240364074707 + ], + [ + "▁Busty", + -15.210265159606934 + ], + [ + "▁Doggie", + -15.210281372070312 + ], + [ + "āra", + -15.210288047790527 + ], + [ + "▁Folger", + -15.210288047790527 + ], + [ + "▁speakeasy", + -15.21030044555664 + ], + [ + "▁пособие", + -15.210342407226562 + ], + [ + "PCL", + -15.210368156433105 + ], + [ + "▁Racquet", + -15.210387229919434 + ], + [ + "▁acquis", + -15.210443496704102 + ], + [ + "▁scupper", + -15.210476875305176 + ], + [ + "▁Unison", + -15.210497856140137 + ], + [ + "▁satiated", + -15.210514068603516 + ], + [ + "▁Ryb", + -15.21053695678711 + ], + [ + "▁CULTURE", + -15.210541725158691 + ], + [ + "▁RDX", + -15.210552215576172 + ], + [ + "alkylene", + -15.210563659667969 + ], + [ + "Chamber", + -15.210572242736816 + ], + [ + "▁Intimacy", + -15.210589408874512 + ], + [ + "▁sputtered", + -15.210591316223145 + ], + [ + "▁Ça", + -15.21059799194336 + ], + [ + "▁Blacksburg", + -15.210600852966309 + ], + [ + "£6", + -15.210602760314941 + ], + [ + "▁Rajinikanth", + -15.21060562133789 + ], + [ + "▁miniaturized", + -15.210638999938965 + ], + [ + "clam", + -15.210649490356445 + ], + [ + "enhance", + -15.210698127746582 + ], + [ + "MDC", + -15.210700035095215 + ], + [ + "▁ODA", + -15.210705757141113 + ], + [ + "▁Savona", + -15.210723876953125 + ], + [ + "▁MAYBE", + -15.210729598999023 + ], + [ + "▁Downstream", + -15.21073055267334 + ], + [ + "finch", + -15.210775375366211 + ], + [ + "▁Bearded", + -15.210789680480957 + ], + [ + "▁CUL", + -15.210789680480957 + ], + [ + "▁PROMO", + -15.210790634155273 + ], + [ + "▁Overdose", + -15.210827827453613 + ], + [ + "Background", + -15.210830688476562 + ], + [ + "▁Soundproof", + -15.210859298706055 + ], + [ + "ไ", + -15.210916519165039 + ], + [ + "UKA", + -15.210921287536621 + ], + [ + "▁improviser", + -15.210932731628418 + ], + [ + "▁Birkin", + -15.210963249206543 + ], + [ + "▁Champa", + -15.210981369018555 + ], + [ + "Identity", + -15.210991859436035 + ], + [ + "▁lenght", + -15.211071014404297 + ], + [ + "▁Lapis", + -15.211075782775879 + ], + [ + "▁bewitching", + -15.211101531982422 + ], + [ + "▁Licensure", + -15.211182594299316 + ], + [ + "▁Holtby", + -15.211189270019531 + ], + [ + "▁Risky", + -15.21119213104248 + ], + [ + "▁nebulizer", + -15.211200714111328 + ], + [ + "▁Gehry", + -15.211227416992188 + ], + [ + "▁Zucc", + -15.21133041381836 + ], + [ + "▁Ratcliffe", + -15.211345672607422 + ], + [ + "ilated", + -15.211376190185547 + ], + [ + "Ridge", + -15.211431503295898 + ], + [ + "▁neuralgia", + -15.211441040039062 + ], + [ + "▁Anyhoo", + -15.211516380310059 + ], + [ + "▁Miocene", + -15.21161937713623 + ], + [ + "▁Standish", + -15.211629867553711 + ], + [ + "▁catalyse", + -15.211629867553711 + ], + [ + "▁acrid", + -15.211645126342773 + ], + [ + "Veon", + -15.21164608001709 + ], + [ + "▁rideshare", + -15.211647033691406 + ], + [ + "repellent", + -15.211681365966797 + ], + [ + "▁Seitz", + -15.211688041687012 + ], + [ + "▁Westcott", + -15.211709022521973 + ], + [ + "▁Knuckle", + -15.211735725402832 + ], + [ + "▁Mahayana", + -15.211777687072754 + ], + [ + "▁Lemongrass", + -15.21180248260498 + ], + [ + "UNCH", + -15.211858749389648 + ], + [ + "▁SOLAR", + -15.211897850036621 + ], + [ + "Eyed", + -15.211919784545898 + ], + [ + "heck", + -15.211955070495605 + ], + [ + "▁Chiltern", + -15.211959838867188 + ], + [ + "napper", + -15.211980819702148 + ], + [ + "▁Liqui", + -15.211997032165527 + ], + [ + "▁Mordor", + -15.212019920349121 + ], + [ + "▁Chrissie", + -15.21203327178955 + ], + [ + "▁Underhill", + -15.212096214294434 + ], + [ + "ํา", + -15.212146759033203 + ], + [ + "▁Grandad", + -15.212151527404785 + ], + [ + "▁UGH", + -15.212157249450684 + ], + [ + "▁vapers", + -15.212162971496582 + ], + [ + "▁Joost", + -15.212163925170898 + ], + [ + "▁diploid", + -15.212182998657227 + ], + [ + "▁yankee", + -15.212212562561035 + ], + [ + "ût", + -15.21224308013916 + ], + [ + "Mol", + -15.212300300598145 + ], + [ + "▁Breakaway", + -15.212367057800293 + ], + [ + "▁pollinate", + -15.212408065795898 + ], + [ + "▁cooped", + -15.21243667602539 + ], + [ + "▁WRITTEN", + -15.212450981140137 + ], + [ + "▁Grec", + -15.212462425231934 + ], + [ + "Homo", + -15.2124662399292 + ], + [ + "▁britain", + -15.212498664855957 + ], + [ + "▁unconstrained", + -15.212501525878906 + ], + [ + "▁Faria", + -15.212509155273438 + ], + [ + "chong", + -15.21252155303955 + ], + [ + "ピ", + -15.212542533874512 + ], + [ + "vě", + -15.212552070617676 + ], + [ + "▁Blurb", + -15.212556838989258 + ], + [ + "▁Acknowledgment", + -15.2125825881958 + ], + [ + "▁Bustle", + -15.212593078613281 + ], + [ + "▁Anatomical", + -15.212594985961914 + ], + [ + "▁Calabasas", + -15.212615966796875 + ], + [ + "FEST", + -15.21263313293457 + ], + [ + "▁Florin", + -15.21264362335205 + ], + [ + "▁vociferous", + -15.212644577026367 + ], + [ + "aeger", + -15.212647438049316 + ], + [ + "▁TAA", + -15.212681770324707 + ], + [ + "▁Barros", + -15.212686538696289 + ], + [ + "▁DSB", + -15.212687492370605 + ], + [ + "▁distantly", + -15.212692260742188 + ], + [ + "▁Giulio", + -15.212706565856934 + ], + [ + "ší", + -15.212712287902832 + ], + [ + "▁Stitching", + -15.212722778320312 + ], + [ + "▁WAYNE", + -15.212761878967285 + ], + [ + "▁Uluru", + -15.212778091430664 + ], + [ + "▁teleported", + -15.212789535522461 + ], + [ + "▁meandered", + -15.21281909942627 + ], + [ + "halter", + -15.212823867797852 + ], + [ + "▁Fenty", + -15.212823867797852 + ], + [ + "▁MSO", + -15.212854385375977 + ], + [ + "▁Iowans", + -15.212874412536621 + ], + [ + "▁anticonvulsant", + -15.212883949279785 + ], + [ + "▁Transformational", + -15.212898254394531 + ], + [ + "▁Minnetonka", + -15.212912559509277 + ], + [ + "▁Kickboxing", + -15.212933540344238 + ], + [ + "▁Pushkar", + -15.212940216064453 + ], + [ + "▁KBS", + -15.212943077087402 + ], + [ + "▁numismatic", + -15.212979316711426 + ], + [ + "▁unvaccinated", + -15.212992668151855 + ], + [ + "▁Isner", + -15.213018417358398 + ], + [ + "▁sanitise", + -15.213045120239258 + ], + [ + "▁Romanized", + -15.21312141418457 + ], + [ + "▁Alok", + -15.213135719299316 + ], + [ + "▁Charing", + -15.213142395019531 + ], + [ + "Legacy", + -15.21316909790039 + ], + [ + "permeable", + -15.21317195892334 + ], + [ + "promoted", + -15.213178634643555 + ], + [ + "▁vena", + -15.21318531036377 + ], + [ + "▁marvelously", + -15.213229179382324 + ], + [ + "▁ESOP", + -15.213249206542969 + ], + [ + "Isle", + -15.213273048400879 + ], + [ + "▁Uche", + -15.213273048400879 + ], + [ + "▁Alme", + -15.213274955749512 + ], + [ + "▁Pampa", + -15.213289260864258 + ], + [ + "▁contribu", + -15.213289260864258 + ], + [ + "daemon", + -15.21329116821289 + ], + [ + "▁SKA", + -15.213313102722168 + ], + [ + "▁Syngenta", + -15.213325500488281 + ], + [ + "▁Rosales", + -15.21336555480957 + ], + [ + "▁rav", + -15.213375091552734 + ], + [ + "ள", + -15.213456153869629 + ], + [ + "▁McEn", + -15.213460922241211 + ], + [ + "italia", + -15.213470458984375 + ], + [ + "▁microbiologist", + -15.213497161865234 + ], + [ + "ENDED", + -15.213505744934082 + ], + [ + "▁resealable", + -15.213523864746094 + ], + [ + "Oxley", + -15.21353530883789 + ], + [ + "▁Sverige", + -15.213540077209473 + ], + [ + "CPT", + -15.21358585357666 + ], + [ + "rogative", + -15.21358871459961 + ], + [ + "URO", + -15.213592529296875 + ], + [ + "▁liveliness", + -15.213637351989746 + ], + [ + "▁yawned", + -15.213665008544922 + ], + [ + "▁Arguing", + -15.213665962219238 + ], + [ + "accompanied", + -15.213685035705566 + ], + [ + "▁Mervyn", + -15.2136869430542 + ], + [ + "▁Reserva", + -15.213687896728516 + ], + [ + "ostasis", + -15.213711738586426 + ], + [ + "▁dextrose", + -15.213754653930664 + ], + [ + "▁Teammate", + -15.213757514953613 + ], + [ + "thermo", + -15.213788986206055 + ], + [ + "scriptive", + -15.213839530944824 + ], + [ + "▁mugging", + -15.213861465454102 + ], + [ + "▁Oppose", + -15.21387004852295 + ], + [ + "▁Tiguan", + -15.213884353637695 + ], + [ + "▁monoculture", + -15.213894844055176 + ], + [ + "Nevada", + -15.21390151977539 + ], + [ + "▁foolhardy", + -15.213936805725098 + ], + [ + "▁sitio", + -15.213981628417969 + ], + [ + "tuition", + -15.213982582092285 + ], + [ + "excess", + -15.214021682739258 + ], + [ + "▁GLAD", + -15.214029312133789 + ], + [ + "▁interwebs", + -15.214073181152344 + ], + [ + "▁Ranjit", + -15.214143753051758 + ], + [ + "▁Snuggle", + -15.214162826538086 + ], + [ + "▁HMV", + -15.2141752243042 + ], + [ + "▁finalization", + -15.214194297790527 + ], + [ + "▁extolling", + -15.21419620513916 + ], + [ + "▁REALTY", + -15.214197158813477 + ], + [ + "▁substructure", + -15.214231491088867 + ], + [ + "Taxi", + -15.21426773071289 + ], + [ + "▁trod", + -15.21429443359375 + ], + [ + "▁Bootie", + -15.214311599731445 + ], + [ + "▁minerality", + -15.214312553405762 + ], + [ + "▁Mesothelioma", + -15.21436595916748 + ], + [ + "▁BREW", + -15.21440315246582 + ], + [ + "▁BRAF", + -15.214412689208984 + ], + [ + "▁Trini", + -15.214428901672363 + ], + [ + "▁적", + -15.214428901672363 + ], + [ + "Portable", + -15.214441299438477 + ], + [ + "ippo", + -15.214478492736816 + ], + [ + "▁ENGLAND", + -15.21449089050293 + ], + [ + "▁Easley", + -15.214548110961914 + ], + [ + "▁reinstating", + -15.214585304260254 + ], + [ + "Egyptian", + -15.21461296081543 + ], + [ + "favored", + -15.214617729187012 + ], + [ + "業", + -15.214655876159668 + ], + [ + "▁DoubleTree", + -15.214728355407715 + ], + [ + "▁NNPC", + -15.214753150939941 + ], + [ + "▁repped", + -15.214757919311523 + ], + [ + "▁Cauldron", + -15.214813232421875 + ], + [ + "▁CASINO", + -15.214825630187988 + ], + [ + "ligen", + -15.214852333068848 + ], + [ + "basa", + -15.214921951293945 + ], + [ + "▁armhole", + -15.214932441711426 + ], + [ + "▁Echoing", + -15.214940071105957 + ], + [ + "▁Ascendant", + -15.214972496032715 + ], + [ + "▁hypothalamic", + -15.21497917175293 + ], + [ + "▁Warranties", + -15.214981079101562 + ], + [ + "အ", + -15.21499252319336 + ], + [ + "▁Diagnose", + -15.215112686157227 + ], + [ + "▁Stating", + -15.215112686157227 + ], + [ + "▁serverless", + -15.2151460647583 + ], + [ + "▁exonerate", + -15.215156555175781 + ], + [ + "商", + -15.21517562866211 + ], + [ + "▁Popsicle", + -15.215176582336426 + ], + [ + "▁Blackrock", + -15.215200424194336 + ], + [ + "essence", + -15.215217590332031 + ], + [ + "▁transitive", + -15.215253829956055 + ], + [ + "Brief", + -15.21526050567627 + ], + [ + "▁Mallya", + -15.215316772460938 + ], + [ + "▁seagull", + -15.215328216552734 + ], + [ + "▁falsify", + -15.215332984924316 + ], + [ + "▁Toasted", + -15.215347290039062 + ], + [ + "▁Perceived", + -15.215392112731934 + ], + [ + "symmetrical", + -15.21540355682373 + ], + [ + "attractive", + -15.215432167053223 + ], + [ + "▁Jerez", + -15.21546459197998 + ], + [ + "▁spacewalk", + -15.215482711791992 + ], + [ + "Chic", + -15.215548515319824 + ], + [ + "▁typesetting", + -15.21556568145752 + ], + [ + "whit", + -15.215592384338379 + ], + [ + "▁eclipsing", + -15.215605735778809 + ], + [ + "▁são", + -15.215622901916504 + ], + [ + "▁Wagyu", + -15.215633392333984 + ], + [ + "▁Gef", + -15.215644836425781 + ], + [ + "▁Arvada", + -15.215662956237793 + ], + [ + "▁BALANCE", + -15.215662956237793 + ], + [ + "▁Schulze", + -15.215765953063965 + ], + [ + "모", + -15.21577262878418 + ], + [ + "extending", + -15.215806007385254 + ], + [ + "Tender", + -15.2158203125 + ], + [ + "▁womenswear", + -15.215836524963379 + ], + [ + "▁Isaacson", + -15.215886116027832 + ], + [ + "▁Emirate", + -15.21591854095459 + ], + [ + "▁Bonifacio", + -15.215920448303223 + ], + [ + "Graphic", + -15.215923309326172 + ], + [ + "▁Outbound", + -15.215925216674805 + ], + [ + "documentary", + -15.215926170349121 + ], + [ + "▁hoodia", + -15.215936660766602 + ], + [ + "▁Shania", + -15.215984344482422 + ], + [ + "▁Mosh", + -15.215988159179688 + ], + [ + "▁subspace", + -15.215999603271484 + ], + [ + "▁verbalize", + -15.216008186340332 + ], + [ + "▁geocaching", + -15.216019630432129 + ], + [ + "▁Niven", + -15.216021537780762 + ], + [ + "leek", + -15.216045379638672 + ], + [ + "▁governess", + -15.216060638427734 + ], + [ + "▁clarion", + -15.216082572937012 + ], + [ + "lasix", + -15.21608829498291 + ], + [ + "▁Deliverance", + -15.216116905212402 + ], + [ + "▁Ludo", + -15.216192245483398 + ], + [ + "▁spokespeople", + -15.216242790222168 + ], + [ + "▁Zhuang", + -15.21626091003418 + ], + [ + "adaptive", + -15.216303825378418 + ], + [ + "▁valu", + -15.216310501098633 + ], + [ + "ulle", + -15.21631145477295 + ], + [ + "▁immunofluorescence", + -15.21631908416748 + ], + [ + "日本", + -15.21633529663086 + ], + [ + "icaw", + -15.216375350952148 + ], + [ + "▁Brou", + -15.216422080993652 + ], + [ + "oggy", + -15.216423988342285 + ], + [ + "활", + -15.21643352508545 + ], + [ + "▁laxity", + -15.21644115447998 + ], + [ + "▁oncogene", + -15.216472625732422 + ], + [ + "▁Tachi", + -15.216477394104004 + ], + [ + "▁Molten", + -15.2164945602417 + ], + [ + "▁asynchronously", + -15.216504096984863 + ], + [ + "▁Vaping", + -15.216530799865723 + ], + [ + "▁ruf", + -15.216614723205566 + ], + [ + "UGG", + -15.21662425994873 + ], + [ + "кой", + -15.216662406921387 + ], + [ + "▁redrawn", + -15.216663360595703 + ], + [ + "▁smirking", + -15.216663360595703 + ], + [ + "BPM", + -15.216675758361816 + ], + [ + "▁standardizing", + -15.216676712036133 + ], + [ + "▁jeweled", + -15.216678619384766 + ], + [ + "▁Marple", + -15.216679573059082 + ], + [ + "▁ASSIST", + -15.216682434082031 + ], + [ + "▁cowering", + -15.216686248779297 + ], + [ + "decorating", + -15.216763496398926 + ], + [ + "▁Pawl", + -15.216766357421875 + ], + [ + "▁foosball", + -15.216797828674316 + ], + [ + "▁trodden", + -15.21679973602295 + ], + [ + "Shared", + -15.216806411743164 + ], + [ + "Novel", + -15.216838836669922 + ], + [ + "RMC", + -15.216863632202148 + ], + [ + "▁chartreuse", + -15.216873168945312 + ], + [ + "▁EMBA", + -15.216896057128906 + ], + [ + "▁NCEI", + -15.21692180633545 + ], + [ + "▁Dilip", + -15.216950416564941 + ], + [ + "▁Mensa", + -15.216954231262207 + ], + [ + "blaze", + -15.216972351074219 + ], + [ + "▁etwas", + -15.216973304748535 + ], + [ + "▁mugshot", + -15.217019081115723 + ], + [ + "▁Aditi", + -15.217032432556152 + ], + [ + "▁prudently", + -15.217044830322266 + ], + [ + "▁Skeletal", + -15.217046737670898 + ], + [ + "▁Leff", + -15.217050552368164 + ], + [ + "▁Seme", + -15.217060089111328 + ], + [ + "▁Transfiguration", + -15.217079162597656 + ], + [ + "▁Dorje", + -15.217082977294922 + ], + [ + "▁Montfort", + -15.217103958129883 + ], + [ + "▁SEEK", + -15.217148780822754 + ], + [ + "ouda", + -15.217175483703613 + ], + [ + "▁colostrum", + -15.217179298400879 + ], + [ + "▁Olmert", + -15.21719741821289 + ], + [ + "▁BLOOM", + -15.217236518859863 + ], + [ + "▁Invented", + -15.217251777648926 + ], + [ + "cloak", + -15.217265129089355 + ], + [ + "▁TARP", + -15.217275619506836 + ], + [ + "▁swoosh", + -15.21728229522705 + ], + [ + "▁flagella", + -15.217302322387695 + ], + [ + "▁Cardenas", + -15.217453002929688 + ], + [ + "▁Swingers", + -15.217453956604004 + ], + [ + "▁CHART", + -15.217460632324219 + ], + [ + "▁Housewife", + -15.217462539672852 + ], + [ + "▁90210", + -15.217508316040039 + ], + [ + "▁iHeartRadio", + -15.217510223388672 + ], + [ + "▁Toxicity", + -15.217536926269531 + ], + [ + "▁cropland", + -15.217551231384277 + ], + [ + "vaccination", + -15.217615127563477 + ], + [ + "▁PROBLEMS", + -15.217620849609375 + ], + [ + "▁TRANSACTION", + -15.217626571655273 + ], + [ + "▁Fulmer", + -15.217656135559082 + ], + [ + "particular", + -15.21773624420166 + ], + [ + "UMC", + -15.21776008605957 + ], + [ + "Hurricane", + -15.217782020568848 + ], + [ + "▁labyrinthine", + -15.217788696289062 + ], + [ + "THR", + -15.217791557312012 + ], + [ + "▁Dhi", + -15.217803001403809 + ], + [ + "▁wright", + -15.21782112121582 + ], + [ + "▁Saanich", + -15.217824935913086 + ], + [ + "lasi", + -15.21783447265625 + ], + [ + "▁Neoprene", + -15.217872619628906 + ], + [ + "▁Tamron", + -15.21789836883545 + ], + [ + "▁morrow", + -15.217902183532715 + ], + [ + "▁Garfunkel", + -15.217925071716309 + ], + [ + "▁Octave", + -15.217930793762207 + ], + [ + "▁Wore", + -15.217930793762207 + ], + [ + "RID", + -15.217958450317383 + ], + [ + "diol", + -15.218006134033203 + ], + [ + "HSE", + -15.218073844909668 + ], + [ + "▁lumberjack", + -15.21811580657959 + ], + [ + "▁Friesen", + -15.21812915802002 + ], + [ + "▁Egress", + -15.218152046203613 + ], + [ + "caba", + -15.218279838562012 + ], + [ + "▁AVOID", + -15.21828842163086 + ], + [ + "▁carpooling", + -15.218311309814453 + ], + [ + "▁Kenzo", + -15.218316078186035 + ], + [ + "▁soundproofing", + -15.218321800231934 + ], + [ + "▁Stacie", + -15.218335151672363 + ], + [ + "puzzle", + -15.218354225158691 + ], + [ + "▁Roaming", + -15.21835994720459 + ], + [ + "HDR", + -15.218391418457031 + ], + [ + "galvan", + -15.218408584594727 + ], + [ + "▁Brevi", + -15.218440055847168 + ], + [ + "▁sicher", + -15.218476295471191 + ], + [ + "▁LONGER", + -15.218478202819824 + ], + [ + "embol", + -15.218480110168457 + ], + [ + "▁soundboard", + -15.218481063842773 + ], + [ + "teilung", + -15.218530654907227 + ], + [ + "▁Bandra", + -15.218545913696289 + ], + [ + "Leninist", + -15.218592643737793 + ], + [ + "▁unbelieving", + -15.218609809875488 + ], + [ + "twentieth", + -15.218626976013184 + ], + [ + "▁Auden", + -15.21866512298584 + ], + [ + "lonia", + -15.218666076660156 + ], + [ + "▁expediting", + -15.218677520751953 + ], + [ + "▁neuen", + -15.21868896484375 + ], + [ + "▁Geophys", + -15.218692779541016 + ], + [ + "▁BME", + -15.218705177307129 + ], + [ + "▁Duxbury", + -15.218753814697266 + ], + [ + "▁Joakim", + -15.218770980834961 + ], + [ + "▁KINGDOM", + -15.21877384185791 + ], + [ + "Crash", + -15.218774795532227 + ], + [ + "دم", + -15.218778610229492 + ], + [ + "▁warrantless", + -15.218796730041504 + ], + [ + "▁ZFS", + -15.218802452087402 + ], + [ + "▁SIMON", + -15.218833923339844 + ], + [ + "▁UPGRADE", + -15.218857765197754 + ], + [ + "▁Celestia", + -15.218881607055664 + ], + [ + "chok", + -15.218923568725586 + ], + [ + "jury", + -15.218950271606445 + ], + [ + "holistic", + -15.218978881835938 + ], + [ + "법", + -15.219002723693848 + ], + [ + "▁Turley", + -15.21901798248291 + ], + [ + "▁Amira", + -15.21904468536377 + ], + [ + "▁Rappler", + -15.219062805175781 + ], + [ + "▁Giam", + -15.219194412231445 + ], + [ + "▁Hertford", + -15.21921157836914 + ], + [ + "▁Moldovan", + -15.21923542022705 + ], + [ + "▁Hartland", + -15.219245910644531 + ], + [ + "▁stephen", + -15.219300270080566 + ], + [ + "▁Stadio", + -15.219327926635742 + ], + [ + "▁Synapse", + -15.219351768493652 + ], + [ + "▁duplicity", + -15.219359397888184 + ], + [ + "▁ROLE", + -15.219367980957031 + ], + [ + "▁Bessemer", + -15.219388961791992 + ], + [ + "▁Valenzuela", + -15.219401359558105 + ], + [ + "Boobs", + -15.219405174255371 + ], + [ + "Ministry", + -15.219426155090332 + ], + [ + "▁chauvinist", + -15.219450950622559 + ], + [ + "▁OKLAHOMA", + -15.219468116760254 + ], + [ + "▁TICKET", + -15.219470024108887 + ], + [ + "▁Oswalt", + -15.219472885131836 + ], + [ + "▁Burnet", + -15.219512939453125 + ], + [ + "▁この", + -15.219547271728516 + ], + [ + "ến", + -15.219548225402832 + ], + [ + "▁untrusted", + -15.219550132751465 + ], + [ + "▁Zeid", + -15.21955680847168 + ], + [ + "OLOGICAL", + -15.219563484191895 + ], + [ + "▁Priceless", + -15.219568252563477 + ], + [ + "▁Sproul", + -15.219603538513184 + ], + [ + "ptera", + -15.219636917114258 + ], + [ + "Croatia", + -15.21963882446289 + ], + [ + "▁HSN", + -15.219666481018066 + ], + [ + "▁Cooktop", + -15.2196683883667 + ], + [ + "▁Relat", + -15.219673156738281 + ], + [ + "▁1753", + -15.219681739807129 + ], + [ + "Airport", + -15.219687461853027 + ], + [ + "▁pricked", + -15.21969223022461 + ], + [ + "▁Hydrangea", + -15.219700813293457 + ], + [ + "▁buttock", + -15.21970272064209 + ], + [ + "▁FCT", + -15.219710350036621 + ], + [ + "▁Crossref", + -15.219714164733887 + ], + [ + "▁blinders", + -15.219738006591797 + ], + [ + "▁gymnastic", + -15.219746589660645 + ], + [ + "▁MEANS", + -15.219758033752441 + ], + [ + "▁Bled", + -15.219779968261719 + ], + [ + "▁Flatten", + -15.219791412353516 + ], + [ + "▁FORTY", + -15.219829559326172 + ], + [ + "▁epitaph", + -15.219833374023438 + ], + [ + "vip", + -15.219841003417969 + ], + [ + "通过", + -15.219842910766602 + ], + [ + "IRB", + -15.2198486328125 + ], + [ + "Theory", + -15.2199068069458 + ], + [ + "่า", + -15.219940185546875 + ], + [ + "▁Relentless", + -15.220067024230957 + ], + [ + "▁largesse", + -15.220069885253906 + ], + [ + "Ю", + -15.220147132873535 + ], + [ + "▁Polycarbonate", + -15.220159530639648 + ], + [ + "▁این", + -15.220168113708496 + ], + [ + "▁kër", + -15.220170974731445 + ], + [ + "▁Conservatoire", + -15.220182418823242 + ], + [ + "▁diverter", + -15.220223426818848 + ], + [ + "igbo", + -15.220266342163086 + ], + [ + "▁lynched", + -15.22031021118164 + ], + [ + "▁impaled", + -15.220341682434082 + ], + [ + "IZING", + -15.220405578613281 + ], + [ + "▁iliac", + -15.220467567443848 + ], + [ + "▁NPI", + -15.220483779907227 + ], + [ + "entreprise", + -15.220486640930176 + ], + [ + "▁MINING", + -15.22049331665039 + ], + [ + "▁SDRAM", + -15.220494270324707 + ], + [ + "Jess", + -15.220503807067871 + ], + [ + "▁Tashi", + -15.220504760742188 + ], + [ + "▁fusc", + -15.220529556274414 + ], + [ + "▁Shaanxi", + -15.220564842224121 + ], + [ + "▁wailed", + -15.220585823059082 + ], + [ + "▁Enlightened", + -15.220587730407715 + ], + [ + "▁schematically", + -15.220638275146484 + ], + [ + "▁Jeremi", + -15.220645904541016 + ], + [ + "▁wimpy", + -15.220704078674316 + ], + [ + "alloc", + -15.220718383789062 + ], + [ + "▁Felici", + -15.220758438110352 + ], + [ + "▁Barnstable", + -15.220839500427246 + ], + [ + "▁Flack", + -15.22087574005127 + ], + [ + "▁firepit", + -15.220878601074219 + ], + [ + "▁عليه", + -15.220947265625 + ], + [ + "▁gleich", + -15.220949172973633 + ], + [ + "▁PAYE", + -15.221013069152832 + ], + [ + "▁nevada", + -15.221053123474121 + ], + [ + "▁WARN", + -15.221061706542969 + ], + [ + "luff", + -15.221085548400879 + ], + [ + "▁Unser", + -15.221099853515625 + ], + [ + "▁Adaptor", + -15.221111297607422 + ], + [ + "▁Sweeping", + -15.221111297607422 + ], + [ + "▁Chickpea", + -15.221115112304688 + ], + [ + "▁bicker", + -15.221150398254395 + ], + [ + "』", + -15.221216201782227 + ], + [ + "Hint", + -15.221233367919922 + ], + [ + "legitim", + -15.221301078796387 + ], + [ + "▁Kacey", + -15.221365928649902 + ], + [ + "▁Spearman", + -15.221366882324219 + ], + [ + "▁Varela", + -15.221370697021484 + ], + [ + "pivot", + -15.221380233764648 + ], + [ + "▁Damen", + -15.221444129943848 + ], + [ + "▁astonish", + -15.22144889831543 + ], + [ + "aerobic", + -15.221477508544922 + ], + [ + "▁firmament", + -15.221477508544922 + ], + [ + "Sputnik", + -15.221487045288086 + ], + [ + "nadi", + -15.2214937210083 + ], + [ + "Pharm", + -15.221505165100098 + ], + [ + "▁reassign", + -15.221555709838867 + ], + [ + "▁Rubenstein", + -15.221595764160156 + ], + [ + "▁Slush", + -15.221652030944824 + ], + [ + "▁DDD", + -15.221653938293457 + ], + [ + "▁LENGTH", + -15.221662521362305 + ], + [ + "americana", + -15.22169017791748 + ], + [ + "examining", + -15.221697807312012 + ], + [ + "▁Deschamps", + -15.221729278564453 + ], + [ + "стоя", + -15.221748352050781 + ], + [ + "contribute", + -15.221761703491211 + ], + [ + "attie", + -15.221778869628906 + ], + [ + "▁Cette", + -15.221796035766602 + ], + [ + "▁salva", + -15.221813201904297 + ], + [ + "Vox", + -15.221824645996094 + ], + [ + "▁Pendle", + -15.221855163574219 + ], + [ + "▁MILK", + -15.221863746643066 + ], + [ + "▁хо", + -15.221908569335938 + ], + [ + "▁CHIEF", + -15.221932411193848 + ], + [ + "▁Waw", + -15.221939086914062 + ], + [ + "endorff", + -15.221989631652832 + ], + [ + "▁ridiculousness", + -15.221989631652832 + ], + [ + "▁snowboarder", + -15.22199821472168 + ], + [ + "▁Malthus", + -15.222014427185059 + ], + [ + "Blogger", + -15.222039222717285 + ], + [ + "grape", + -15.222062110900879 + ], + [ + "▁Vientiane", + -15.222062110900879 + ], + [ + "édé", + -15.222078323364258 + ], + [ + "▁Levon", + -15.22211742401123 + ], + [ + "▁shyly", + -15.222138404846191 + ], + [ + "▁panicky", + -15.222164154052734 + ], + [ + "▁ORGANIC", + -15.222185134887695 + ], + [ + "▁TransUnion", + -15.222247123718262 + ], + [ + "▁disappointingly", + -15.222256660461426 + ], + [ + "▁MVA", + -15.222280502319336 + ], + [ + "▁humus", + -15.222304344177246 + ], + [ + "▁Kylian", + -15.222310066223145 + ], + [ + "▁Caer", + -15.222323417663574 + ], + [ + "▁Aurobindo", + -15.222329139709473 + ], + [ + "DATE", + -15.222350120544434 + ], + [ + "▁mucin", + -15.2223539352417 + ], + [ + "▁Moresby", + -15.222356796264648 + ], + [ + "▁Artery", + -15.222368240356445 + ], + [ + "▁frig", + -15.222393035888672 + ], + [ + "crib", + -15.222396850585938 + ], + [ + "▁Mimic", + -15.222420692443848 + ], + [ + "Lexi", + -15.222442626953125 + ], + [ + "iske", + -15.222458839416504 + ], + [ + "ongoing", + -15.222489356994629 + ], + [ + "▁DFT", + -15.222533226013184 + ], + [ + "▁Raila", + -15.22257137298584 + ], + [ + "▁SFU", + -15.222577095031738 + ], + [ + "▁reword", + -15.222600936889648 + ], + [ + "▁confirmatory", + -15.222715377807617 + ], + [ + "Restore", + -15.222750663757324 + ], + [ + "▁STARTED", + -15.222761154174805 + ], + [ + "▁Shareware", + -15.222798347473145 + ], + [ + "▁Palmieri", + -15.222803115844727 + ], + [ + "▁crimping", + -15.222825050354004 + ], + [ + "Mach", + -15.222827911376953 + ], + [ + "▁Walleye", + -15.222841262817383 + ], + [ + "▁Xavi", + -15.222862243652344 + ], + [ + "▁Debugging", + -15.22288990020752 + ], + [ + "▁Saldana", + -15.222919464111328 + ], + [ + "manned", + -15.22292709350586 + ], + [ + "▁stretchable", + -15.2229642868042 + ], + [ + "▁HAVEN", + -15.222981452941895 + ], + [ + "hassle", + -15.222987174987793 + ], + [ + "▁taurine", + -15.222999572753906 + ], + [ + "gadget", + -15.223003387451172 + ], + [ + "▁humbucker", + -15.223061561584473 + ], + [ + "▁Clarice", + -15.22307014465332 + ], + [ + "▁scrotum", + -15.223134994506836 + ], + [ + "pleaser", + -15.223166465759277 + ], + [ + "▁Simulated", + -15.223169326782227 + ], + [ + "▁Schiphol", + -15.22319507598877 + ], + [ + "personalized", + -15.223199844360352 + ], + [ + "steiner", + -15.223219871520996 + ], + [ + "Callaghan", + -15.223237037658691 + ], + [ + "latency", + -15.223291397094727 + ], + [ + "jne", + -15.223294258117676 + ], + [ + "polite", + -15.223307609558105 + ], + [ + "▁spirulina", + -15.223312377929688 + ], + [ + "▁infinitive", + -15.223322868347168 + ], + [ + "▁printmaker", + -15.223323822021484 + ], + [ + "▁Fifi", + -15.223325729370117 + ], + [ + "▁Syme", + -15.223336219787598 + ], + [ + "▁harpoon", + -15.223340034484863 + ], + [ + "▁knighthood", + -15.223341941833496 + ], + [ + "agiri", + -15.223353385925293 + ], + [ + "▁Ruffin", + -15.223388671875 + ], + [ + "▁Dewar", + -15.22339916229248 + ], + [ + "▁Visayas", + -15.22348690032959 + ], + [ + "▁Glennon", + -15.223531723022461 + ], + [ + "方向", + -15.22353458404541 + ], + [ + "▁Espanol", + -15.223576545715332 + ], + [ + "▁Deviation", + -15.223587036132812 + ], + [ + "▁harris", + -15.223590850830078 + ], + [ + "▁Validity", + -15.223596572875977 + ], + [ + "▁Jalandhar", + -15.223624229431152 + ], + [ + "▁HOMES", + -15.223625183105469 + ], + [ + "▁exhaling", + -15.223645210266113 + ], + [ + "▁Introvert", + -15.223673820495605 + ], + [ + "▁Bric", + -15.223677635192871 + ], + [ + "▁NSR", + -15.223687171936035 + ], + [ + "Scroll", + -15.223689079284668 + ], + [ + "bien", + -15.22370433807373 + ], + [ + "▁ingeniously", + -15.223727226257324 + ], + [ + "Abraham", + -15.223770141601562 + ], + [ + "Moreover", + -15.223804473876953 + ], + [ + "selfie", + -15.223834991455078 + ], + [ + "▁warily", + -15.223856925964355 + ], + [ + "Supp", + -15.223857879638672 + ], + [ + "▁Gilgamesh", + -15.223862648010254 + ], + [ + "▁Blige", + -15.223868370056152 + ], + [ + "▁Ganguly", + -15.223878860473633 + ], + [ + "VERSION", + -15.223888397216797 + ], + [ + "professor", + -15.223934173583984 + ], + [ + "marginal", + -15.2239408493042 + ], + [ + "⠀", + -15.223979949951172 + ], + [ + "▁Burleson", + -15.22399616241455 + ], + [ + "▁Daugherty", + -15.22401237487793 + ], + [ + "ologous", + -15.224016189575195 + ], + [ + "emotion", + -15.224050521850586 + ], + [ + "▁accentuating", + -15.224056243896484 + ], + [ + "▁EDD", + -15.2240629196167 + ], + [ + "▁Firearm", + -15.2240629196167 + ], + [ + "▁gpu", + -15.224091529846191 + ], + [ + "CORD", + -15.224092483520508 + ], + [ + "وب", + -15.22409439086914 + ], + [ + "▁Harle", + -15.22412395477295 + ], + [ + "genomic", + -15.224130630493164 + ], + [ + "▁Strathmore", + -15.22414493560791 + ], + [ + "▁Affi", + -15.224189758300781 + ], + [ + "▁Taupe", + -15.224196434020996 + ], + [ + "系统", + -15.224217414855957 + ], + [ + "▁Salami", + -15.224268913269043 + ], + [ + "▁па", + -15.224315643310547 + ], + [ + "▁Nuffield", + -15.224328994750977 + ], + [ + "▁Tortuga", + -15.224366188049316 + ], + [ + "▁Allegiant", + -15.224379539489746 + ], + [ + "▁SAMPLE", + -15.224438667297363 + ], + [ + "robust", + -15.224449157714844 + ], + [ + "▁Biomed", + -15.224459648132324 + ], + [ + "guessing", + -15.224480628967285 + ], + [ + "▁Anglophone", + -15.224501609802246 + ], + [ + "steroid", + -15.224549293518066 + ], + [ + "▁Irre", + -15.22456169128418 + ], + [ + "▁Bitch", + -15.224574089050293 + ], + [ + "▁obfuscate", + -15.22458267211914 + ], + [ + "affey", + -15.224638938903809 + ], + [ + "revised", + -15.224654197692871 + ], + [ + "ATL", + -15.22465991973877 + ], + [ + "▁Aristide", + -15.2246675491333 + ], + [ + "▁torsional", + -15.22474193572998 + ], + [ + "boundary", + -15.224774360656738 + ], + [ + "▁Fabrizio", + -15.224801063537598 + ], + [ + "▁Gillies", + -15.224803924560547 + ], + [ + "▁Tabata", + -15.224809646606445 + ], + [ + "中的", + -15.224817276000977 + ], + [ + "▁loathsome", + -15.224818229675293 + ], + [ + "нг", + -15.224820137023926 + ], + [ + "▁sigur", + -15.224841117858887 + ], + [ + "hela", + -15.224844932556152 + ], + [ + "▁Marri", + -15.224913597106934 + ], + [ + "▁unimaginably", + -15.224930763244629 + ], + [ + "Binary", + -15.224943161010742 + ], + [ + "▁verk", + -15.22495174407959 + ], + [ + "▁urethral", + -15.224953651428223 + ], + [ + "▁neurobiology", + -15.224963188171387 + ], + [ + "▁overreaction", + -15.22497844696045 + ], + [ + "▁outgrew", + -15.224983215332031 + ], + [ + "dosage", + -15.224989891052246 + ], + [ + "▁MPN", + -15.224998474121094 + ], + [ + "▁Mook", + -15.225027084350586 + ], + [ + "времен", + -15.22504711151123 + ], + [ + "▁ANZAC", + -15.225088119506836 + ], + [ + "▁encontrar", + -15.225093841552734 + ], + [ + "▁potpourri", + -15.22509765625 + ], + [ + "▁ligature", + -15.225101470947266 + ], + [ + "agri", + -15.22512149810791 + ], + [ + "dote", + -15.22512149810791 + ], + [ + "▁LOTR", + -15.225166320800781 + ], + [ + "▁divisiveness", + -15.225170135498047 + ], + [ + "▁Baek", + -15.225172996520996 + ], + [ + "▁honeybee", + -15.225229263305664 + ], + [ + "aksa", + -15.225259780883789 + ], + [ + "▁Greystone", + -15.22528076171875 + ], + [ + "▁Cumulus", + -15.225286483764648 + ], + [ + "▁Popup", + -15.225290298461914 + ], + [ + "NEO", + -15.225308418273926 + ], + [ + "▁Ambulatory", + -15.225350379943848 + ], + [ + "▁Annandale", + -15.22535228729248 + ], + [ + "flank", + -15.225397109985352 + ], + [ + "Qué", + -15.225415229797363 + ], + [ + "▁Suda", + -15.225464820861816 + ], + [ + "▁cyl", + -15.22546672821045 + ], + [ + "▁Tigger", + -15.225467681884766 + ], + [ + "Knock", + -15.225485801696777 + ], + [ + "▁unserer", + -15.225499153137207 + ], + [ + "▁Klitschko", + -15.225515365600586 + ], + [ + "▁Jolene", + -15.225547790527344 + ], + [ + "Dictionary", + -15.225594520568848 + ], + [ + "▁coffeemaker", + -15.225605010986328 + ], + [ + "olani", + -15.225607872009277 + ], + [ + "▁Vaginal", + -15.225667953491211 + ], + [ + "▁certainties", + -15.225706100463867 + ], + [ + "▁الن", + -15.22572135925293 + ], + [ + "dubbed", + -15.225722312927246 + ], + [ + "▁ceo", + -15.225736618041992 + ], + [ + "nelson", + -15.225754737854004 + ], + [ + "▁Holborn", + -15.225761413574219 + ], + [ + "▁quoi", + -15.2257661819458 + ], + [ + "unci", + -15.2257719039917 + ], + [ + "▁1761", + -15.225784301757812 + ], + [ + "Jax", + -15.225802421569824 + ], + [ + "▁Hippocrates", + -15.22583293914795 + ], + [ + "arello", + -15.225868225097656 + ], + [ + "▁Propylene", + -15.225874900817871 + ], + [ + "GSA", + -15.225886344909668 + ], + [ + "▁Nagorno", + -15.225900650024414 + ], + [ + "▁Ibom", + -15.225921630859375 + ], + [ + "▁circumventing", + -15.22594165802002 + ], + [ + "▁Haugh", + -15.225970268249512 + ], + [ + "▁BOWL", + -15.225985527038574 + ], + [ + "▁util", + -15.226014137268066 + ], + [ + "▁Lockett", + -15.226024627685547 + ], + [ + "▁sana", + -15.226030349731445 + ], + [ + "▁gridiron", + -15.226045608520508 + ], + [ + "▁1692", + -15.226061820983887 + ], + [ + "▁Romulan", + -15.226099014282227 + ], + [ + "▁aliphatic", + -15.226150512695312 + ], + [ + "Cupid", + -15.22619915008545 + ], + [ + "▁ROSS", + -15.226204872131348 + ], + [ + "▁Lyne", + -15.226216316223145 + ], + [ + "▁Fueled", + -15.226221084594727 + ], + [ + "oglio", + -15.226273536682129 + ], + [ + "▁ක", + -15.226301193237305 + ], + [ + "▁glucagon", + -15.226317405700684 + ], + [ + "▁Syriza", + -15.226405143737793 + ], + [ + "▁hah", + -15.226421356201172 + ], + [ + "▁Chiswick", + -15.22643756866455 + ], + [ + "▁Suboxone", + -15.226468086242676 + ], + [ + "▁Renfro", + -15.226494789123535 + ], + [ + "▁lok", + -15.226552963256836 + ], + [ + "▁undercoat", + -15.226553916931152 + ], + [ + "stoke", + -15.22655963897705 + ], + [ + "▁Kva", + -15.226574897766113 + ], + [ + "▁heeft", + -15.226613998413086 + ], + [ + "icorn", + -15.226632118225098 + ], + [ + "ophobic", + -15.226646423339844 + ], + [ + "▁flaked", + -15.226683616638184 + ], + [ + "▁navies", + -15.226694107055664 + ], + [ + "▁kaleidoscopic", + -15.226701736450195 + ], + [ + "▁RCD", + -15.226726531982422 + ], + [ + "▁Rangoon", + -15.226744651794434 + ], + [ + "▁Kotak", + -15.226753234863281 + ], + [ + "outlook", + -15.226771354675293 + ], + [ + "▁Chewing", + -15.226778030395508 + ], + [ + "▁raceway", + -15.226815223693848 + ], + [ + "▁SLOT", + -15.226849555969238 + ], + [ + "▁evangelization", + -15.226853370666504 + ], + [ + "▁univariate", + -15.22685718536377 + ], + [ + "prefix", + -15.226861953735352 + ], + [ + "▁purine", + -15.2268705368042 + ], + [ + "watcher", + -15.226909637451172 + ], + [ + "literacy", + -15.226945877075195 + ], + [ + "hofen", + -15.227036476135254 + ], + [ + "▁Norcross", + -15.227036476135254 + ], + [ + "▁Bettina", + -15.227043151855469 + ], + [ + "▁Reckoning", + -15.227049827575684 + ], + [ + "utilized", + -15.22706127166748 + ], + [ + "▁Scone", + -15.227070808410645 + ], + [ + "▁Pesach", + -15.227088928222656 + ], + [ + "▁Tabu", + -15.227131843566895 + ], + [ + "cardiac", + -15.227137565612793 + ], + [ + "cela", + -15.227142333984375 + ], + [ + "▁scapula", + -15.227181434631348 + ], + [ + "Viva", + -15.22719669342041 + ], + [ + "▁Walkman", + -15.227234840393066 + ], + [ + "Stella", + -15.227273941040039 + ], + [ + "▁premarket", + -15.22729206085205 + ], + [ + "▁INTEGRA", + -15.227306365966797 + ], + [ + "TRAN", + -15.227324485778809 + ], + [ + "▁paclitaxel", + -15.227337837219238 + ], + [ + "HAT", + -15.227343559265137 + ], + [ + "᧐", + -15.227355003356934 + ], + [ + "perfusion", + -15.22736644744873 + ], + [ + "▁GHOST", + -15.227459907531738 + ], + [ + "▁Rowell", + -15.227477073669434 + ], + [ + "▁Positioned", + -15.227479934692383 + ], + [ + "▁magnetization", + -15.22748851776123 + ], + [ + "▁preyed", + -15.227500915527344 + ], + [ + "▁breathlessly", + -15.22753620147705 + ], + [ + "▁Aisle", + -15.2275390625 + ], + [ + "roofed", + -15.227561950683594 + ], + [ + "kru", + -15.227598190307617 + ], + [ + "板", + -15.227620124816895 + ], + [ + "▁Picton", + -15.22762680053711 + ], + [ + "▁TSO", + -15.227646827697754 + ], + [ + "▁Emin", + -15.227656364440918 + ], + [ + "▁Raúl", + -15.227662086486816 + ], + [ + "▁Backcountry", + -15.227702140808105 + ], + [ + "laga", + -15.227750778198242 + ], + [ + "Standing", + -15.227757453918457 + ], + [ + "Solution", + -15.22777271270752 + ], + [ + "▁miseries", + -15.227787971496582 + ], + [ + "▁Kasparov", + -15.227815628051758 + ], + [ + "Manufacturing", + -15.227899551391602 + ], + [ + "Rogue", + -15.227913856506348 + ], + [ + "UTA", + -15.22802448272705 + ], + [ + "▁Burglary", + -15.22803020477295 + ], + [ + "▁Tenet", + -15.228055000305176 + ], + [ + "▁duplexes", + -15.228058815002441 + ], + [ + "▁Stripper", + -15.228107452392578 + ], + [ + "taylor", + -15.228114128112793 + ], + [ + "properly", + -15.22812557220459 + ], + [ + "▁tartness", + -15.228206634521484 + ], + [ + "Begin", + -15.228212356567383 + ], + [ + "▁starburst", + -15.228236198425293 + ], + [ + "SOD", + -15.228240013122559 + ], + [ + "ORF", + -15.228257179260254 + ], + [ + "Lunch", + -15.228288650512695 + ], + [ + "▁Chromosome", + -15.228299140930176 + ], + [ + "▁Josep", + -15.228311538696289 + ], + [ + "▁Courant", + -15.228341102600098 + ], + [ + "fluorescence", + -15.228351593017578 + ], + [ + "▁Comma", + -15.228374481201172 + ], + [ + "▁Grounded", + -15.228473663330078 + ], + [ + "Dyna", + -15.228475570678711 + ], + [ + "▁Katrin", + -15.228487968444824 + ], + [ + "▁Utilising", + -15.228499412536621 + ], + [ + "▁Hatred", + -15.228500366210938 + ], + [ + "▁Tinsley", + -15.22851276397705 + ], + [ + "▁undiluted", + -15.228517532348633 + ], + [ + "electrode", + -15.228531837463379 + ], + [ + "▁floaty", + -15.22853946685791 + ], + [ + "▁Matias", + -15.228540420532227 + ], + [ + "▁Montmartre", + -15.228544235229492 + ], + [ + "에서는", + -15.228597640991211 + ], + [ + "Fail", + -15.228622436523438 + ], + [ + "▁NIB", + -15.228652954101562 + ], + [ + "▁BAKER", + -15.2287015914917 + ], + [ + "Soccer", + -15.228704452514648 + ], + [ + "уз", + -15.228713989257812 + ], + [ + "▁Trung", + -15.228716850280762 + ], + [ + "Roo", + -15.228721618652344 + ], + [ + "▁forgeries", + -15.228789329528809 + ], + [ + "hält", + -15.228790283203125 + ], + [ + "NATE", + -15.22886848449707 + ], + [ + "▁Hammon", + -15.228906631469727 + ], + [ + "▁Matrimonial", + -15.228912353515625 + ], + [ + "▁PCGS", + -15.228926658630371 + ], + [ + "▁Shyamalan", + -15.22895622253418 + ], + [ + "▁NDTV", + -15.22899341583252 + ], + [ + "▁RCB", + -15.22900104522705 + ], + [ + "ложен", + -15.229020118713379 + ], + [ + "▁Visco", + -15.229039192199707 + ], + [ + "аз", + -15.229042053222656 + ], + [ + "▁hypersensitive", + -15.22905445098877 + ], + [ + "▁Shlomo", + -15.229057312011719 + ], + [ + "Sketch", + -15.229081153869629 + ], + [ + "▁◆", + -15.229089736938477 + ], + [ + "▁Shipwreck", + -15.22909164428711 + ], + [ + "▁emotionless", + -15.229097366333008 + ], + [ + "▁£700", + -15.22909927368164 + ], + [ + "▁PFI", + -15.229117393493652 + ], + [ + "TSP", + -15.229125022888184 + ], + [ + "▁Mohali", + -15.22920036315918 + ], + [ + "cef", + -15.229212760925293 + ], + [ + "▁Dandenong", + -15.22929859161377 + ], + [ + "▁Kaia", + -15.229312896728516 + ], + [ + "▁Hardik", + -15.229315757751465 + ], + [ + "Graf", + -15.229330062866211 + ], + [ + "▁Bentonite", + -15.229353904724121 + ], + [ + "▁FORGET", + -15.229357719421387 + ], + [ + "▁colourless", + -15.229421615600586 + ], + [ + "barely", + -15.229426383972168 + ], + [ + "▁dmv", + -15.22945785522461 + ], + [ + "▁Piedra", + -15.229484558105469 + ], + [ + "▁Mayoral", + -15.229557037353516 + ], + [ + "▁HKD", + -15.229578971862793 + ], + [ + "مي", + -15.22964096069336 + ], + [ + "▁Officejet", + -15.229674339294434 + ], + [ + "▁Exceptionally", + -15.229717254638672 + ], + [ + "▁Mander", + -15.229748725891113 + ], + [ + "▁Ritalin", + -15.22976016998291 + ], + [ + "Ž", + -15.229761123657227 + ], + [ + "limo", + -15.229787826538086 + ], + [ + "▁Welbeck", + -15.229829788208008 + ], + [ + "stationary", + -15.2298583984375 + ], + [ + "▁misreading", + -15.22986125946045 + ], + [ + "▁Osorio", + -15.229872703552246 + ], + [ + "jiri", + -15.22988510131836 + ], + [ + "TRADE", + -15.229890823364258 + ], + [ + "▁functionaries", + -15.229890823364258 + ], + [ + "incredibly", + -15.229912757873535 + ], + [ + "NICE", + -15.2299222946167 + ], + [ + "▁Scenery", + -15.229931831359863 + ], + [ + "settling", + -15.229951858520508 + ], + [ + "▁Tef", + -15.229966163635254 + ], + [ + "▁Selv", + -15.22998046875 + ], + [ + "▁lá", + -15.23005485534668 + ], + [ + "▁Netherland", + -15.230097770690918 + ], + [ + "lanka", + -15.230103492736816 + ], + [ + "▁fermenter", + -15.230110168457031 + ], + [ + "▁我", + -15.23012638092041 + ], + [ + "Addict", + -15.230131149291992 + ], + [ + "▁splotch", + -15.230149269104004 + ], + [ + "▁nipple", + -15.230207443237305 + ], + [ + "▁Sauber", + -15.230228424072266 + ], + [ + "▁songbook", + -15.230257034301758 + ], + [ + "▁treetops", + -15.230257034301758 + ], + [ + "Establish", + -15.230263710021973 + ], + [ + "facilitate", + -15.23027515411377 + ], + [ + "值", + -15.23027515411377 + ], + [ + "▁dozed", + -15.230297088623047 + ], + [ + "Exec", + -15.230311393737793 + ], + [ + "matte", + -15.23037052154541 + ], + [ + "▁NAMM", + -15.230379104614258 + ], + [ + "▁Damme", + -15.230381965637207 + ], + [ + "▁mereka", + -15.23041820526123 + ], + [ + "مد", + -15.230439186096191 + ], + [ + "▁perfunctory", + -15.230456352233887 + ], + [ + "▁commandant", + -15.23047161102295 + ], + [ + "▁levitate", + -15.230473518371582 + ], + [ + "▁CSG", + -15.230474472045898 + ], + [ + "istri", + -15.230497360229492 + ], + [ + "▁gunmetal", + -15.23054027557373 + ], + [ + "▁channelling", + -15.230545043945312 + ], + [ + "▁flitting", + -15.23056697845459 + ], + [ + "▁neurotoxin", + -15.230584144592285 + ], + [ + "Cowboy", + -15.230656623840332 + ], + [ + "▁proyecto", + -15.230659484863281 + ], + [ + "▁decibel", + -15.230660438537598 + ], + [ + "側", + -15.230661392211914 + ], + [ + "▁Bijou", + -15.230671882629395 + ], + [ + "▁BLOW", + -15.230692863464355 + ], + [ + "▁geoscience", + -15.230709075927734 + ], + [ + "▁Histone", + -15.230722427368164 + ], + [ + "▁Arrieta", + -15.230738639831543 + ], + [ + "itself", + -15.230761528015137 + ], + [ + "▁mediaeval", + -15.230766296386719 + ], + [ + "▁Leggett", + -15.230774879455566 + ], + [ + "▁EML", + -15.230813980102539 + ], + [ + "mercury", + -15.230817794799805 + ], + [ + "▁Hine", + -15.2308349609375 + ], + [ + "Tenn", + -15.230849266052246 + ], + [ + "▁finan", + -15.230853080749512 + ], + [ + "▁Ruffalo", + -15.230868339538574 + ], + [ + "नी", + -15.230880737304688 + ], + [ + "▁tailback", + -15.230883598327637 + ], + [ + "▁ironclad", + -15.230977058410645 + ], + [ + "corpora", + -15.230986595153809 + ], + [ + "▁MacIntyre", + -15.231010437011719 + ], + [ + "▁Brine", + -15.23104476928711 + ], + [ + "▁Patric", + -15.231088638305664 + ], + [ + "pach", + -15.23112678527832 + ], + [ + "▁Montecito", + -15.23114013671875 + ], + [ + "▁Satchel", + -15.231160163879395 + ], + [ + "▁WebRTC", + -15.231165885925293 + ], + [ + "▁Amulet", + -15.231188774108887 + ], + [ + "▁Continually", + -15.231201171875 + ], + [ + "▁Expiration", + -15.231203079223633 + ], + [ + "▁Yaman", + -15.231338500976562 + ], + [ + "systematic", + -15.231340408325195 + ], + [ + "▁Unbreakable", + -15.231440544128418 + ], + [ + "Harvey", + -15.231457710266113 + ], + [ + "▁Deviant", + -15.23151683807373 + ], + [ + "▁Millsap", + -15.231517791748047 + ], + [ + "▁silico", + -15.231537818908691 + ], + [ + "▁Tomography", + -15.231573104858398 + ], + [ + "▁Compulsive", + -15.231588363647461 + ], + [ + "▁myofascial", + -15.23161506652832 + ], + [ + "▁CREATIVE", + -15.231618881225586 + ], + [ + "▁Moxie", + -15.23162841796875 + ], + [ + "praxia", + -15.231653213500977 + ], + [ + "▁Journ", + -15.231657028198242 + ], + [ + "awy", + -15.231690406799316 + ], + [ + "psc", + -15.23173999786377 + ], + [ + "stair", + -15.231778144836426 + ], + [ + "Ellis", + -15.23184585571289 + ], + [ + "▁SWIM", + -15.231853485107422 + ], + [ + "▁supercharge", + -15.231868743896484 + ], + [ + "remos", + -15.231878280639648 + ], + [ + "exile", + -15.231902122497559 + ], + [ + "▁biochar", + -15.231904029846191 + ], + [ + "aliasing", + -15.231925964355469 + ], + [ + "anoate", + -15.231945037841797 + ], + [ + "▁jowl", + -15.231973648071289 + ], + [ + "▁Coda", + -15.23199462890625 + ], + [ + "▁DEG", + -15.232002258300781 + ], + [ + "vella", + -15.232007026672363 + ], + [ + "▁Postmaster", + -15.232023239135742 + ], + [ + "▁Finkel", + -15.232038497924805 + ], + [ + "▁Redfern", + -15.232048988342285 + ], + [ + "▁Rewrite", + -15.232100486755371 + ], + [ + "▁Siddharth", + -15.232107162475586 + ], + [ + "▁Curaçao", + -15.232136726379395 + ], + [ + "epsilon", + -15.232183456420898 + ], + [ + "fé", + -15.232218742370605 + ], + [ + "▁Cagayan", + -15.232220649719238 + ], + [ + "▁klonopin", + -15.232220649719238 + ], + [ + "fren", + -15.23224925994873 + ], + [ + "indigenous", + -15.23225212097168 + ], + [ + "▁STX", + -15.232255935668945 + ], + [ + "▁Bahru", + -15.232260704040527 + ], + [ + "▁Creekside", + -15.232266426086426 + ], + [ + "교", + -15.232280731201172 + ], + [ + "▁PerimeterX", + -15.23228645324707 + ], + [ + "▁Renzi", + -15.232294082641602 + ], + [ + "Walt", + -15.232304573059082 + ], + [ + "▁nosebleed", + -15.23231029510498 + ], + [ + "uuu", + -15.232348442077637 + ], + [ + "▁Mysterio", + -15.232349395751953 + ], + [ + "▁Astaire", + -15.232352256774902 + ], + [ + "▁Sridevi", + -15.232388496398926 + ], + [ + "▁Angelus", + -15.232440948486328 + ], + [ + "▁Messier", + -15.232446670532227 + ], + [ + "▁Swisher", + -15.23248291015625 + ], + [ + "▁befuddled", + -15.232491493225098 + ], + [ + "▁ETP", + -15.232518196105957 + ], + [ + "▁StubHub", + -15.2325439453125 + ], + [ + "▁mugged", + -15.232585906982422 + ], + [ + "▁Dunwoody", + -15.232590675354004 + ], + [ + "ু", + -15.2326078414917 + ], + [ + "▁montreal", + -15.23261833190918 + ], + [ + "▁Sandringham", + -15.232625007629395 + ], + [ + "▁manoeuvring", + -15.232625007629395 + ], + [ + "▁tangling", + -15.232632637023926 + ], + [ + "ź", + -15.232675552368164 + ], + [ + "Punch", + -15.23267936706543 + ], + [ + "▁Kilmer", + -15.23269271850586 + ], + [ + "▁McEwen", + -15.232708930969238 + ], + [ + "точ", + -15.232732772827148 + ], + [ + "scanning", + -15.232767105102539 + ], + [ + "▁Hla", + -15.232770919799805 + ], + [ + "▁Marni", + -15.232823371887207 + ], + [ + "Lecture", + -15.232829093933105 + ], + [ + "▁Moir", + -15.232877731323242 + ], + [ + "geist", + -15.232894897460938 + ], + [ + "ULATE", + -15.232903480529785 + ], + [ + "▁política", + -15.232911109924316 + ], + [ + "▁triptych", + -15.232979774475098 + ], + [ + "▁Hazelwood", + -15.232990264892578 + ], + [ + "▁olefin", + -15.233036994934082 + ], + [ + "▁environ", + -15.23305892944336 + ], + [ + "▁Argumentative", + -15.233064651489258 + ], + [ + "Mineral", + -15.233088493347168 + ], + [ + "▁tac", + -15.233104705810547 + ], + [ + "▁Redknapp", + -15.233112335205078 + ], + [ + "▁quiescent", + -15.233121871948242 + ], + [ + "▁autoimmunity", + -15.233213424682617 + ], + [ + "▁Dirac", + -15.233220100402832 + ], + [ + "▁Tying", + -15.233223915100098 + ], + [ + "▁yeh", + -15.233238220214844 + ], + [ + "▁Tsum", + -15.233257293701172 + ], + [ + "▁że", + -15.233272552490234 + ], + [ + "▁Adafruit", + -15.233301162719727 + ], + [ + "incidence", + -15.233312606811523 + ], + [ + "▁pseudoscience", + -15.233345985412598 + ], + [ + "▁TIGER", + -15.23334789276123 + ], + [ + "cocci", + -15.233358383178711 + ], + [ + "▁sputter", + -15.23338794708252 + ], + [ + "▁Camarillo", + -15.233415603637695 + ], + [ + "▁І", + -15.233464241027832 + ], + [ + "▁acceso", + -15.233489036560059 + ], + [ + "TBA", + -15.23351001739502 + ], + [ + "▁vig", + -15.233539581298828 + ], + [ + "▁Kanto", + -15.23354434967041 + ], + [ + "▁Cranberries", + -15.233555793762207 + ], + [ + "paraben", + -15.233564376831055 + ], + [ + "staffed", + -15.2335844039917 + ], + [ + "▁BoE", + -15.233593940734863 + ], + [ + "▁Monkees", + -15.233613967895508 + ], + [ + "▁resorption", + -15.23361587524414 + ], + [ + "ambitious", + -15.23366641998291 + ], + [ + "▁Prefect", + -15.233682632446289 + ], + [ + "『", + -15.233705520629883 + ], + [ + "▁militaristic", + -15.233724594116211 + ], + [ + "nikova", + -15.233731269836426 + ], + [ + "▁Malu", + -15.233760833740234 + ], + [ + "▁Ribbed", + -15.233803749084473 + ], + [ + "▁PROPERTIES", + -15.233819961547852 + ], + [ + "▁Français", + -15.233840942382812 + ], + [ + "elephant", + -15.233842849731445 + ], + [ + "▁Farquhar", + -15.233854293823242 + ], + [ + "Accel", + -15.233878135681152 + ], + [ + "Jefferson", + -15.233906745910645 + ], + [ + "▁HMP", + -15.233912467956543 + ], + [ + "▁Grazia", + -15.233920097351074 + ], + [ + "ਰ", + -15.233954429626465 + ], + [ + "ใ", + -15.23397445678711 + ], + [ + "vibration", + -15.233996391296387 + ], + [ + "Marxist", + -15.234034538269043 + ], + [ + "▁rancor", + -15.23405933380127 + ], + [ + "▁Batting", + -15.234123229980469 + ], + [ + "▁unanimity", + -15.234140396118164 + ], + [ + "▁reputedly", + -15.23418140411377 + ], + [ + "▁disrespecting", + -15.234193801879883 + ], + [ + "▁legibility", + -15.234219551086426 + ], + [ + "▁Perforated", + -15.234224319458008 + ], + [ + "▁silversmith", + -15.234240531921387 + ], + [ + "▁stagnating", + -15.234241485595703 + ], + [ + "atov", + -15.234310150146484 + ], + [ + "▁Tanna", + -15.234317779541016 + ], + [ + "▁brun", + -15.234358787536621 + ], + [ + "▁Khun", + -15.234396934509277 + ], + [ + "▁Azeroth", + -15.234453201293945 + ], + [ + "▁swordfish", + -15.234453201293945 + ], + [ + "▁grippy", + -15.234489440917969 + ], + [ + "▁Bulletproof", + -15.234593391418457 + ], + [ + "▁Satanist", + -15.234623908996582 + ], + [ + "▁semiautomatic", + -15.234625816345215 + ], + [ + "▁Correcting", + -15.234640121459961 + ], + [ + "▁Julianna", + -15.234650611877441 + ], + [ + "▁PROFILE", + -15.234676361083984 + ], + [ + "▁biscotti", + -15.234696388244629 + ], + [ + "brock", + -15.234698295593262 + ], + [ + "▁tribesmen", + -15.234704971313477 + ], + [ + "URU", + -15.234719276428223 + ], + [ + "▁Golgi", + -15.234724044799805 + ], + [ + "▁Rabies", + -15.234729766845703 + ], + [ + "▁sandbar", + -15.2347412109375 + ], + [ + "▁dla", + -15.234752655029297 + ], + [ + "▁subjugated", + -15.234842300415039 + ], + [ + "▁JURISDICTION", + -15.234865188598633 + ], + [ + "▁GALL", + -15.234919548034668 + ], + [ + "▁Cordell", + -15.234932899475098 + ], + [ + "▁ECOWAS", + -15.234942436218262 + ], + [ + "▁LHS", + -15.234957695007324 + ], + [ + "▁Reloaded", + -15.235003471374512 + ], + [ + "ಾ", + -15.235032081604004 + ], + [ + "▁Waj", + -15.23508358001709 + ], + [ + "1846", + -15.235088348388672 + ], + [ + "jewski", + -15.235090255737305 + ], + [ + "▁Laparoscopic", + -15.23511791229248 + ], + [ + "gericht", + -15.235130310058594 + ], + [ + "blond", + -15.235133171081543 + ], + [ + "shiny", + -15.235138893127441 + ], + [ + "▁Ponies", + -15.235156059265137 + ], + [ + "▁Gegen", + -15.235199928283691 + ], + [ + "▁Eakin", + -15.235203742980957 + ], + [ + "▁factorial", + -15.235238075256348 + ], + [ + "generative", + -15.235247611999512 + ], + [ + "低", + -15.235258102416992 + ], + [ + "▁Sigur", + -15.235393524169922 + ], + [ + "ommen", + -15.235396385192871 + ], + [ + "▁Probiotic", + -15.235397338867188 + ], + [ + "▁Galician", + -15.235424041748047 + ], + [ + "▁TEU", + -15.235462188720703 + ], + [ + "▁Lenore", + -15.235475540161133 + ], + [ + "▁PUB", + -15.235580444335938 + ], + [ + "▁Prosecuting", + -15.235590934753418 + ], + [ + "▁Powys", + -15.235599517822266 + ], + [ + "▁digitalisation", + -15.235612869262695 + ], + [ + "▁dunked", + -15.235629081726074 + ], + [ + "▁SFTP", + -15.235672950744629 + ], + [ + "▁amaranth", + -15.235690116882324 + ], + [ + "▁cabbie", + -15.235697746276855 + ], + [ + "▁commissary", + -15.235703468322754 + ], + [ + "kush", + -15.235776901245117 + ], + [ + "Durham", + -15.235822677612305 + ], + [ + "narayan", + -15.235856056213379 + ], + [ + "▁NRM", + -15.235907554626465 + ], + [ + "▁ProQuest", + -15.235944747924805 + ], + [ + "▁sensitized", + -15.236005783081055 + ], + [ + "▁Wann", + -15.236045837402344 + ], + [ + "ハ", + -15.23606014251709 + ], + [ + "▁Wich", + -15.236063957214355 + ], + [ + "▁suplex", + -15.236066818237305 + ], + [ + "Fortune", + -15.236095428466797 + ], + [ + "▁Stumble", + -15.236125946044922 + ], + [ + "▁WIPO", + -15.23614501953125 + ], + [ + "▁lobbed", + -15.236184120178223 + ], + [ + "stolen", + -15.23620891571045 + ], + [ + "▁EMBO", + -15.236226081848145 + ], + [ + "▁McCaw", + -15.236227035522461 + ], + [ + "CHAN", + -15.236268043518066 + ], + [ + "antino", + -15.23628044128418 + ], + [ + "▁Trespass", + -15.236288070678711 + ], + [ + "▁stupidest", + -15.236353874206543 + ], + [ + "▁Gotti", + -15.236356735229492 + ], + [ + "Bluetooth", + -15.236438751220703 + ], + [ + "▁repatriate", + -15.23643970489502 + ], + [ + "Meredith", + -15.236478805541992 + ], + [ + "fq", + -15.236528396606445 + ], + [ + "▁snoozing", + -15.236553192138672 + ], + [ + "enabling", + -15.23656940460205 + ], + [ + "▁Hatchet", + -15.236571311950684 + ], + [ + "▁groundswell", + -15.236572265625 + ], + [ + "▁Altria", + -15.236592292785645 + ], + [ + "▁Hydrochloride", + -15.236611366271973 + ], + [ + "▁hodgepodge", + -15.236620903015137 + ], + [ + "substance", + -15.236661911010742 + ], + [ + "▁Harish", + -15.23666763305664 + ], + [ + "▁Blister", + -15.23667049407959 + ], + [ + "IRP", + -15.236712455749512 + ], + [ + "▁Siddhartha", + -15.236719131469727 + ], + [ + "▁minnesota", + -15.236721992492676 + ], + [ + "▁pressurised", + -15.236739158630371 + ], + [ + "▁NRF", + -15.236745834350586 + ], + [ + "▁Wooten", + -15.236756324768066 + ], + [ + "▁CONSULT", + -15.236838340759277 + ], + [ + "▁Laplace", + -15.236872673034668 + ], + [ + "intent", + -15.236906051635742 + ], + [ + "▁때", + -15.236939430236816 + ], + [ + "▁mochi", + -15.236964225769043 + ], + [ + "▁chink", + -15.237004280090332 + ], + [ + "▁DLT", + -15.237028121948242 + ], + [ + "ophila", + -15.237032890319824 + ], + [ + "▁Himmler", + -15.237045288085938 + ], + [ + "▁pigeonhole", + -15.237055778503418 + ], + [ + "▁Injector", + -15.237061500549316 + ], + [ + "▁edification", + -15.237062454223633 + ], + [ + "Argentina", + -15.237068176269531 + ], + [ + "uque", + -15.237090110778809 + ], + [ + "▁Depeche", + -15.23709774017334 + ], + [ + "▁LANE", + -15.2371187210083 + ], + [ + "istik", + -15.237129211425781 + ], + [ + "legally", + -15.237135887145996 + ], + [ + "WEA", + -15.237141609191895 + ], + [ + "▁Málaga", + -15.237162590026855 + ], + [ + "▁melhor", + -15.23719310760498 + ], + [ + "▁Animator", + -15.237197875976562 + ], + [ + "▁royally", + -15.23721981048584 + ], + [ + "▁Chell", + -15.237239837646484 + ], + [ + "Develop", + -15.23724365234375 + ], + [ + "▁phalanx", + -15.237262725830078 + ], + [ + "▁Jagr", + -15.237293243408203 + ], + [ + "▁stunting", + -15.237300872802734 + ], + [ + "▁Parity", + -15.237306594848633 + ], + [ + "▁Ehren", + -15.237309455871582 + ], + [ + "▁Karuna", + -15.237348556518555 + ], + [ + "▁Aeroplan", + -15.237353324890137 + ], + [ + "reception", + -15.237360954284668 + ], + [ + "▁Walid", + -15.23738956451416 + ], + [ + "▁Nnamdi", + -15.237398147583008 + ], + [ + "▁Tinnitus", + -15.237415313720703 + ], + [ + "▁Asymmetric", + -15.237470626831055 + ], + [ + "▁Sandhill", + -15.237476348876953 + ], + [ + "▁curr", + -15.237500190734863 + ], + [ + "patterned", + -15.237521171569824 + ], + [ + "▁reveled", + -15.237528800964355 + ], + [ + "klo", + -15.237548828125 + ], + [ + "issement", + -15.237556457519531 + ], + [ + "1855", + -15.237557411193848 + ], + [ + "▁polygonal", + -15.237567901611328 + ], + [ + "▁Taleb", + -15.237601280212402 + ], + [ + "▁presuppose", + -15.237634658813477 + ], + [ + "ubri", + -15.237659454345703 + ], + [ + "▁Rethink", + -15.2377347946167 + ], + [ + "▁Townhomes", + -15.237743377685547 + ], + [ + "fach", + -15.237752914428711 + ], + [ + "▁NUR", + -15.237753868103027 + ], + [ + "▁Metis", + -15.237777709960938 + ], + [ + "▁KTV", + -15.237788200378418 + ], + [ + "Evidence", + -15.237799644470215 + ], + [ + "▁Retinol", + -15.23781967163086 + ], + [ + "▁Ketchikan", + -15.237822532653809 + ], + [ + "GIA", + -15.237829208374023 + ], + [ + "▁Ponderosa", + -15.23786449432373 + ], + [ + "▁Okinawan", + -15.237872123718262 + ], + [ + "гла", + -15.237874031066895 + ], + [ + "▁Venturi", + -15.23791217803955 + ], + [ + "▁Serotonin", + -15.2379732131958 + ], + [ + "▁kä", + -15.23797607421875 + ], + [ + "▁deliverability", + -15.237992286682129 + ], + [ + "▁Bergamot", + -15.237998008728027 + ], + [ + "▁Gwynedd", + -15.238040924072266 + ], + [ + "▁Ceri", + -15.238058090209961 + ], + [ + "▁Dopamine", + -15.23810863494873 + ], + [ + "▁Strowman", + -15.238125801086426 + ], + [ + "▁wiz", + -15.238131523132324 + ], + [ + "▁OPD", + -15.238138198852539 + ], + [ + "▁UNLIMITED", + -15.2381591796875 + ], + [ + "▁Minami", + -15.238166809082031 + ], + [ + "▁EBA", + -15.238168716430664 + ], + [ + "▁meiosis", + -15.238262176513672 + ], + [ + "▁Occurrence", + -15.238280296325684 + ], + [ + "▁Engadget", + -15.238292694091797 + ], + [ + "▁Reince", + -15.238303184509277 + ], + [ + "▁Eberle", + -15.238306045532227 + ], + [ + "▁Relive", + -15.238326072692871 + ], + [ + "Antonio", + -15.238349914550781 + ], + [ + "▁tantra", + -15.238349914550781 + ], + [ + "▁Serenade", + -15.238363265991211 + ], + [ + "▁luna", + -15.238372802734375 + ], + [ + "censorship", + -15.238377571105957 + ], + [ + "▁Mite", + -15.238394737243652 + ], + [ + "달", + -15.23843002319336 + ], + [ + "▁Switzer", + -15.238436698913574 + ], + [ + "DLC", + -15.238483428955078 + ], + [ + "▁Morphology", + -15.238485336303711 + ], + [ + "piston", + -15.23852252960205 + ], + [ + "▁Yarrow", + -15.238542556762695 + ], + [ + "▁Helicobacter", + -15.23854923248291 + ], + [ + "▁bandied", + -15.23855972290039 + ], + [ + "▁Kyl", + -15.238582611083984 + ], + [ + "▁Tonto", + -15.238604545593262 + ], + [ + "▁Hiddleston", + -15.238616943359375 + ], + [ + "▁Enrolment", + -15.238633155822754 + ], + [ + "phyr", + -15.238646507263184 + ], + [ + "▁Lefk", + -15.238665580749512 + ], + [ + "▁Terracotta", + -15.238670349121094 + ], + [ + "भ", + -15.238720893859863 + ], + [ + "▁Loosen", + -15.238725662231445 + ], + [ + "▁jailer", + -15.238726615905762 + ], + [ + "▁Yunus", + -15.238729476928711 + ], + [ + "Celebrity", + -15.238730430603027 + ], + [ + "▁pestilence", + -15.23873519897461 + ], + [ + "▁Kaizen", + -15.238739013671875 + ], + [ + "▁Wyandotte", + -15.238752365112305 + ], + [ + "dzic", + -15.238763809204102 + ], + [ + "▁Despicable", + -15.238785743713379 + ], + [ + "▁pragmatist", + -15.238785743713379 + ], + [ + "sequential", + -15.238790512084961 + ], + [ + "▁Jeffers", + -15.238797187805176 + ], + [ + "▁adeno", + -15.23880386352539 + ], + [ + "▁Finsbury", + -15.238846778869629 + ], + [ + "kkan", + -15.23885440826416 + ], + [ + "▁Onye", + -15.23886489868164 + ], + [ + "fec", + -15.238898277282715 + ], + [ + "信", + -15.238901138305664 + ], + [ + "skii", + -15.23894214630127 + ], + [ + "▁Skittles", + -15.238957405090332 + ], + [ + "1856", + -15.238984107971191 + ], + [ + "▁Carabao", + -15.239031791687012 + ], + [ + "▁Cottrell", + -15.239035606384277 + ], + [ + "▁Cassell", + -15.239053726196289 + ], + [ + "▁Filament", + -15.239066123962402 + ], + [ + "werke", + -15.2390775680542 + ], + [ + "▁DOF", + -15.239082336425781 + ], + [ + "Clinic", + -15.239089965820312 + ], + [ + "▁Blais", + -15.239090919494629 + ], + [ + "▁WND", + -15.239097595214844 + ], + [ + "▁ISRAEL", + -15.239124298095703 + ], + [ + "▁Improvisation", + -15.239134788513184 + ], + [ + "decimal", + -15.239140510559082 + ], + [ + "про", + -15.239143371582031 + ], + [ + "▁adwords", + -15.239144325256348 + ], + [ + "▁irrationally", + -15.239145278930664 + ], + [ + "▁MEDICINE", + -15.239174842834473 + ], + [ + "▁Disagree", + -15.239194869995117 + ], + [ + "▁BPC", + -15.2391996383667 + ], + [ + "▁prelate", + -15.239219665527344 + ], + [ + "▁Dimple", + -15.239255905151367 + ], + [ + "TCT", + -15.239272117614746 + ], + [ + "▁CFB", + -15.239274978637695 + ], + [ + "活", + -15.239327430725098 + ], + [ + "▁Capaldi", + -15.239336013793945 + ], + [ + "LOCAL", + -15.239357948303223 + ], + [ + "Watson", + -15.239359855651855 + ], + [ + "për", + -15.239363670349121 + ], + [ + "▁TurboTax", + -15.239378929138184 + ], + [ + "▁Grindr", + -15.239380836486816 + ], + [ + "acne", + -15.239399909973145 + ], + [ + "▁necesar", + -15.239413261413574 + ], + [ + "ния", + -15.239416122436523 + ], + [ + "▁gobs", + -15.23941707611084 + ], + [ + "BBA", + -15.239432334899902 + ], + [ + "▁colum", + -15.239439964294434 + ], + [ + "▁repurchased", + -15.239450454711914 + ], + [ + "▁Corry", + -15.239471435546875 + ], + [ + "PDC", + -15.239517211914062 + ], + [ + "▁endoplasmic", + -15.239532470703125 + ], + [ + "IOP", + -15.239568710327148 + ], + [ + "▁munchkin", + -15.239572525024414 + ], + [ + "▁Kṛṣṇa", + -15.239582061767578 + ], + [ + "crab", + -15.23958969116211 + ], + [ + "ivka", + -15.239645957946777 + ], + [ + "▁swashbuckling", + -15.239649772644043 + ], + [ + "▁Refinance", + -15.239665031433105 + ], + [ + "▁Quil", + -15.2396879196167 + ], + [ + "▁Roti", + -15.239697456359863 + ], + [ + "▁Gordo", + -15.239713668823242 + ], + [ + "cruel", + -15.239755630493164 + ], + [ + "▁Frizz", + -15.23975944519043 + ], + [ + "▁intercity", + -15.239765167236328 + ], + [ + "Armor", + -15.239815711975098 + ], + [ + "▁Postpartum", + -15.23984432220459 + ], + [ + "▁Weaknesses", + -15.239848136901855 + ], + [ + "wrestling", + -15.239850997924805 + ], + [ + "▁Steyer", + -15.239855766296387 + ], + [ + "Increase", + -15.239884376525879 + ], + [ + "▁Caddo", + -15.239909172058105 + ], + [ + "▁Chevelle", + -15.239933013916016 + ], + [ + "▁irreducible", + -15.239956855773926 + ], + [ + "▁Vaca", + -15.239988327026367 + ], + [ + "▁celibate", + -15.239988327026367 + ], + [ + "▁svelte", + -15.239996910095215 + ], + [ + "▁Linne", + -15.240067481994629 + ], + [ + "▁Schenk", + -15.240074157714844 + ], + [ + "▁conniving", + -15.24007511138916 + ], + [ + "Lease", + -15.240082740783691 + ], + [ + "▁switchable", + -15.240087509155273 + ], + [ + "▁Albus", + -15.240106582641602 + ], + [ + "▁Shinn", + -15.240118980407715 + ], + [ + "▁QSL", + -15.240121841430664 + ], + [ + "transformed", + -15.240145683288574 + ], + [ + "▁serially", + -15.240145683288574 + ], + [ + "▁Chakraborty", + -15.240158081054688 + ], + [ + "▁Lyceum", + -15.240195274353027 + ], + [ + "▁jaggery", + -15.240209579467773 + ], + [ + "predator", + -15.24021053314209 + ], + [ + "zane", + -15.240306854248047 + ], + [ + "WCC", + -15.24033260345459 + ], + [ + "▁persuasively", + -15.240345001220703 + ], + [ + "▁choo", + -15.240388870239258 + ], + [ + "▁Mingus", + -15.240432739257812 + ], + [ + "▁Shreya", + -15.240435600280762 + ], + [ + "▁uncalled", + -15.24044132232666 + ], + [ + "megawatt", + -15.240488052368164 + ], + [ + "▁200°", + -15.240496635437012 + ], + [ + "fay", + -15.240511894226074 + ], + [ + "▁voyager", + -15.24052906036377 + ], + [ + "▁scriptwriter", + -15.240554809570312 + ], + [ + "▁Denning", + -15.240564346313477 + ], + [ + "▁RESTAURANT", + -15.240565299987793 + ], + [ + "▁moonlit", + -15.240575790405273 + ], + [ + "curing", + -15.240598678588867 + ], + [ + "▁unashamedly", + -15.240663528442383 + ], + [ + "▁Trif", + -15.240686416625977 + ], + [ + "intestinal", + -15.240730285644531 + ], + [ + "▁TREND", + -15.240732192993164 + ], + [ + "▁jogo", + -15.240745544433594 + ], + [ + "▁Naija", + -15.240751266479492 + ], + [ + "MINATION", + -15.240766525268555 + ], + [ + "organizer", + -15.24080753326416 + ], + [ + "▁diseño", + -15.240889549255371 + ], + [ + "▁determinate", + -15.240917205810547 + ], + [ + "▁Absurd", + -15.240922927856445 + ], + [ + "▁Piro", + -15.240947723388672 + ], + [ + "▁stirrer", + -15.240952491760254 + ], + [ + "osie", + -15.24096393585205 + ], + [ + "▁Groß", + -15.240967750549316 + ], + [ + "▁distiller", + -15.240972518920898 + ], + [ + "▁impetuous", + -15.240989685058594 + ], + [ + "Distance", + -15.2410249710083 + ], + [ + "▁Viol", + -15.241028785705566 + ], + [ + "▁dissociate", + -15.24111270904541 + ], + [ + "▁Carpe", + -15.241122245788574 + ], + [ + "▁Discreet", + -15.241125106811523 + ], + [ + "LUT", + -15.2411470413208 + ], + [ + "MART", + -15.241148948669434 + ], + [ + "▁PHEV", + -15.241154670715332 + ], + [ + "BPS", + -15.241194725036621 + ], + [ + "▁Elio", + -15.241218566894531 + ], + [ + "▁Guise", + -15.241219520568848 + ], + [ + "CPL", + -15.241235733032227 + ], + [ + "luka", + -15.241250991821289 + ], + [ + "▁Druze", + -15.241262435913086 + ], + [ + "▁Marquise", + -15.241328239440918 + ], + [ + "▁laura", + -15.24133586883545 + ], + [ + "carpa", + -15.241397857666016 + ], + [ + "▁Squish", + -15.241400718688965 + ], + [ + "verify", + -15.241455078125 + ], + [ + "shkin", + -15.241463661193848 + ], + [ + "▁DEE", + -15.241480827331543 + ], + [ + "▁interpolated", + -15.241487503051758 + ], + [ + "жен", + -15.241507530212402 + ], + [ + "▁EXAM", + -15.241519927978516 + ], + [ + "ESL", + -15.241524696350098 + ], + [ + "▁Paperwork", + -15.24152660369873 + ], + [ + "hollow", + -15.241533279418945 + ], + [ + "SALE", + -15.241558074951172 + ], + [ + "▁spastic", + -15.241579055786133 + ], + [ + "▁Regul", + -15.241586685180664 + ], + [ + "Pennsylvania", + -15.241632461547852 + ], + [ + "mentally", + -15.241642951965332 + ], + [ + "من", + -15.241666793823242 + ], + [ + "▁swerving", + -15.241684913635254 + ], + [ + "держ", + -15.241689682006836 + ], + [ + "▁saf", + -15.241703987121582 + ], + [ + "▁Geeta", + -15.24170970916748 + ], + [ + "▁Clackamas", + -15.241719245910645 + ], + [ + "▁unscented", + -15.241730690002441 + ], + [ + "▁ORGANIZATION", + -15.241737365722656 + ], + [ + "▁VFR", + -15.241755485534668 + ], + [ + "▁banishment", + -15.241765022277832 + ], + [ + "▁Cereb", + -15.241767883300781 + ], + [ + "▁destabilization", + -15.241769790649414 + ], + [ + "▁Raimi", + -15.241829872131348 + ], + [ + "▁boastful", + -15.241837501525879 + ], + [ + "▁Lampert", + -15.241844177246094 + ], + [ + "BREAK", + -15.241852760314941 + ], + [ + "muscular", + -15.241857528686523 + ], + [ + "▁morbidly", + -15.24187183380127 + ], + [ + "▁PFAS", + -15.241884231567383 + ], + [ + "heater", + -15.2418851852417 + ], + [ + "▁Hosmer", + -15.241909980773926 + ], + [ + "▁Shosh", + -15.241910934448242 + ], + [ + "▁Autotrader", + -15.241912841796875 + ], + [ + "▁Pharmacies", + -15.241917610168457 + ], + [ + "▁confusingly", + -15.241926193237305 + ], + [ + "▁lysate", + -15.241928100585938 + ], + [ + "▁Tammi", + -15.241935729980469 + ], + [ + "Require", + -15.241943359375 + ], + [ + "Princeton", + -15.241947174072266 + ], + [ + "▁Milosevic", + -15.241950988769531 + ], + [ + "Failure", + -15.241984367370605 + ], + [ + "▁Ц", + -15.242010116577148 + ], + [ + "▁choroid", + -15.242018699645996 + ], + [ + "▁Oder", + -15.242060661315918 + ], + [ + "▁spinster", + -15.242070198059082 + ], + [ + "▁Tepe", + -15.242073059082031 + ], + [ + "ctomy", + -15.242133140563965 + ], + [ + "▁cay", + -15.242145538330078 + ], + [ + "利", + -15.242146492004395 + ], + [ + "energi", + -15.242152214050293 + ], + [ + "oughton", + -15.242161750793457 + ], + [ + "▁marshy", + -15.242167472839355 + ], + [ + "▁axially", + -15.242172241210938 + ], + [ + "▁Niamh", + -15.242178916931152 + ], + [ + "▁reminisced", + -15.24219799041748 + ], + [ + "▁Lehi", + -15.242225646972656 + ], + [ + "pelli", + -15.242240905761719 + ], + [ + "▁RPO", + -15.242253303527832 + ], + [ + "▁testator", + -15.242288589477539 + ], + [ + "▁Köln", + -15.242290496826172 + ], + [ + "▁Palmdale", + -15.242400169372559 + ], + [ + "▁Awami", + -15.242412567138672 + ], + [ + "▁ROGER", + -15.24245834350586 + ], + [ + "▁retouch", + -15.242488861083984 + ], + [ + "▁INABILITY", + -15.242536544799805 + ], + [ + "▁1688", + -15.242545127868652 + ], + [ + "CBP", + -15.242573738098145 + ], + [ + "▁Woodburn", + -15.24259090423584 + ], + [ + "▁Naru", + -15.242616653442383 + ], + [ + "Favorite", + -15.242633819580078 + ], + [ + "▁stamens", + -15.242676734924316 + ], + [ + "▁implicating", + -15.242679595947266 + ], + [ + "▁BIP", + -15.242698669433594 + ], + [ + "▁Voo", + -15.242714881896973 + ], + [ + "▁Kraut", + -15.242715835571289 + ], + [ + "▁gud", + -15.242734909057617 + ], + [ + "▁schl", + -15.242746353149414 + ], + [ + "Gravity", + -15.242788314819336 + ], + [ + "▁Orthopé", + -15.242814064025879 + ], + [ + "▁Nurseries", + -15.242823600769043 + ], + [ + "Twink", + -15.242874145507812 + ], + [ + "▁flatmate", + -15.242910385131836 + ], + [ + "▁Intrigued", + -15.242926597595215 + ], + [ + "▁HOB", + -15.24295425415039 + ], + [ + "▁Wrapper", + -15.242969512939453 + ], + [ + "▁marauding", + -15.242977142333984 + ], + [ + "▁Benetton", + -15.243011474609375 + ], + [ + "stalker", + -15.243019104003906 + ], + [ + "▁Lombardy", + -15.24306869506836 + ], + [ + "▁altimeter", + -15.243073463439941 + ], + [ + "▁Colorectal", + -15.243095397949219 + ], + [ + "▁centaur", + -15.2431001663208 + ], + [ + "Authentic", + -15.2431058883667 + ], + [ + "acula", + -15.243112564086914 + ], + [ + "▁consoling", + -15.243146896362305 + ], + [ + "▁unfurled", + -15.243154525756836 + ], + [ + "▁PROFIT", + -15.243172645568848 + ], + [ + "RCT", + -15.243178367614746 + ], + [ + "▁viticulture", + -15.243236541748047 + ], + [ + "▁humerus", + -15.243237495422363 + ], + [ + "displaystyle", + -15.243257522583008 + ], + [ + "▁LASER", + -15.243265151977539 + ], + [ + "eager", + -15.243266105651855 + ], + [ + "▁crocus", + -15.243274688720703 + ], + [ + "▁Malawian", + -15.243284225463867 + ], + [ + "▁Welshman", + -15.243303298950195 + ], + [ + "▁Fuchsia", + -15.243304252624512 + ], + [ + "▁Arial", + -15.243343353271484 + ], + [ + "▁fren", + -15.243365287780762 + ], + [ + "preserving", + -15.243413925170898 + ], + [ + "▁Kassel", + -15.243419647216797 + ], + [ + "▁Jerky", + -15.24343204498291 + ], + [ + "▁DELICIOUS", + -15.243453025817871 + ], + [ + "▁комп", + -15.2434663772583 + ], + [ + "▁POF", + -15.243505477905273 + ], + [ + "▁Denon", + -15.243515968322754 + ], + [ + "▁ensnared", + -15.24355411529541 + ], + [ + "▁мы", + -15.243562698364258 + ], + [ + "▁Kinross", + -15.243638038635254 + ], + [ + "▁adorably", + -15.243659973144531 + ], + [ + "ratum", + -15.243663787841797 + ], + [ + "▁perfumer", + -15.243663787841797 + ], + [ + "▁procedurally", + -15.243672370910645 + ], + [ + "xico", + -15.243722915649414 + ], + [ + "ASTM", + -15.243730545043945 + ], + [ + "▁TOYOTA", + -15.243741989135742 + ], + [ + "▁crewmembers", + -15.243775367736816 + ], + [ + "▁projekt", + -15.243825912475586 + ], + [ + "▁cantata", + -15.243829727172852 + ], + [ + "▁Philippi", + -15.243839263916016 + ], + [ + "▁prezzo", + -15.243840217590332 + ], + [ + "revealed", + -15.243846893310547 + ], + [ + "▁Keeley", + -15.243877410888672 + ], + [ + "▁MTF", + -15.243892669677734 + ], + [ + "CDMA", + -15.243922233581543 + ], + [ + "▁Vasc", + -15.243947982788086 + ], + [ + "▁ESX", + -15.243988037109375 + ], + [ + "▁Raum", + -15.24402904510498 + ], + [ + "fearing", + -15.244100570678711 + ], + [ + "Ella", + -15.244102478027344 + ], + [ + "▁affirmatively", + -15.244105339050293 + ], + [ + "▁Guangxi", + -15.244109153747559 + ], + [ + "▁parakeet", + -15.24411678314209 + ], + [ + "▁strenuously", + -15.244142532348633 + ], + [ + "▁Krone", + -15.244149208068848 + ], + [ + "▁bowtie", + -15.244161605834961 + ], + [ + "PIE", + -15.244174003601074 + ], + [ + "▁CGA", + -15.244185447692871 + ], + [ + "▁Universitat", + -15.244186401367188 + ], + [ + "▁Lazada", + -15.244187355041504 + ], + [ + "▁uncountable", + -15.24420166015625 + ], + [ + "▁Paradiso", + -15.244202613830566 + ], + [ + "▁REPLACE", + -15.244205474853516 + ], + [ + "▁GOODS", + -15.244216918945312 + ], + [ + "outsider", + -15.244220733642578 + ], + [ + "▁Demonstrating", + -15.24423599243164 + ], + [ + "capitalism", + -15.244290351867676 + ], + [ + "▁construe", + -15.244296073913574 + ], + [ + "설", + -15.244303703308105 + ], + [ + "▁Override", + -15.244304656982422 + ], + [ + "▁minima", + -15.244393348693848 + ], + [ + "▁Gustafsson", + -15.24440860748291 + ], + [ + "▁absorbency", + -15.24441146850586 + ], + [ + "partly", + -15.244422912597656 + ], + [ + "▁lovelies", + -15.2444429397583 + ], + [ + "▁jacob", + -15.244450569152832 + ], + [ + "Anchor", + -15.244463920593262 + ], + [ + "▁Okafor", + -15.244521141052246 + ], + [ + "▁reauthorization", + -15.24454402923584 + ], + [ + "▁Estimator", + -15.244559288024902 + ], + [ + "▁Comox", + -15.244576454162598 + ], + [ + "▁Dunfermline", + -15.244576454162598 + ], + [ + "▁Countrywide", + -15.244589805603027 + ], + [ + "▁Glebe", + -15.244607925415039 + ], + [ + "▁Motorized", + -15.244608879089355 + ], + [ + "feasible", + -15.244638442993164 + ], + [ + "waka", + -15.244686126708984 + ], + [ + "▁Halpern", + -15.244695663452148 + ], + [ + "illusion", + -15.244719505310059 + ], + [ + "▁Righteousness", + -15.244720458984375 + ], + [ + "▁Perla", + -15.244758605957031 + ], + [ + "▁hotfix", + -15.244776725769043 + ], + [ + "Grim", + -15.244815826416016 + ], + [ + "▁subfield", + -15.244816780090332 + ], + [ + "Disclaimer", + -15.244830131530762 + ], + [ + "▁Sukhumvit", + -15.24484920501709 + ], + [ + "moist", + -15.244925498962402 + ], + [ + "▁Stalingrad", + -15.244928359985352 + ], + [ + "▁Dogma", + -15.244950294494629 + ], + [ + "Sophia", + -15.24495792388916 + ], + [ + "▁Keiko", + -15.244964599609375 + ], + [ + "▁Wacky", + -15.244973182678223 + ], + [ + "argent", + -15.244987487792969 + ], + [ + "▁Newbery", + -15.245003700256348 + ], + [ + "DOG", + -15.2450590133667 + ], + [ + "▁Vermillion", + -15.245110511779785 + ], + [ + "▁Breivik", + -15.245124816894531 + ], + [ + "▁ODE", + -15.245136260986328 + ], + [ + "▁Krab", + -15.245210647583008 + ], + [ + "▁Brassica", + -15.245232582092285 + ], + [ + "▁cj", + -15.245238304138184 + ], + [ + "▁Pulau", + -15.245319366455078 + ], + [ + "▁tubeless", + -15.245327949523926 + ], + [ + "▁AHEAD", + -15.245333671569824 + ], + [ + "wiec", + -15.24533748626709 + ], + [ + "ethylamine", + -15.245360374450684 + ], + [ + "▁KMT", + -15.245389938354492 + ], + [ + "▁Trae", + -15.245409965515137 + ], + [ + "▁liquefaction", + -15.245428085327148 + ], + [ + "▁Vien", + -15.24543571472168 + ], + [ + "▁Commandment", + -15.245478630065918 + ], + [ + "▁UCAS", + -15.245485305786133 + ], + [ + "▁bemoaning", + -15.245501518249512 + ], + [ + "▁shamefully", + -15.245573043823242 + ], + [ + "▁Ruan", + -15.245587348937988 + ], + [ + "▁neoplastic", + -15.245607376098633 + ], + [ + "▁Peony", + -15.245626449584961 + ], + [ + "Suicide", + -15.245641708374023 + ], + [ + "▁Shahbaz", + -15.245645523071289 + ], + [ + "▁Hooters", + -15.245656967163086 + ], + [ + "ITUDE", + -15.24566650390625 + ], + [ + "▁MEMO", + -15.245667457580566 + ], + [ + "UFO", + -15.245689392089844 + ], + [ + "▁squatted", + -15.245694160461426 + ], + [ + "▁Kenworth", + -15.245696067810059 + ], + [ + "▁Beane", + -15.245704650878906 + ], + [ + "▁pittance", + -15.245718955993652 + ], + [ + "ESM", + -15.245736122131348 + ], + [ + "▁moh", + -15.245739936828613 + ], + [ + "▁minibuses", + -15.245758056640625 + ], + [ + "Pitt", + -15.245760917663574 + ], + [ + "phasic", + -15.245769500732422 + ], + [ + "▁Française", + -15.245816230773926 + ], + [ + "▁sinfulness", + -15.24583625793457 + ], + [ + "▁Kempton", + -15.24583911895752 + ], + [ + "▁unthinking", + -15.245855331420898 + ], + [ + "relating", + -15.245874404907227 + ], + [ + "▁Bloodline", + -15.245884895324707 + ], + [ + "▁Fira", + -15.245894432067871 + ], + [ + "ivvy", + -15.245918273925781 + ], + [ + "▁overspend", + -15.245952606201172 + ], + [ + "▁Perak", + -15.245955467224121 + ], + [ + "▁Kabuki", + -15.24598503112793 + ], + [ + "▁Maxillofacial", + -15.246007919311523 + ], + [ + "▁distribu", + -15.24602222442627 + ], + [ + "udgy", + -15.246051788330078 + ], + [ + "Shabaab", + -15.246057510375977 + ], + [ + "▁sceneries", + -15.246094703674316 + ], + [ + "OMI", + -15.246164321899414 + ], + [ + "alanine", + -15.246167182922363 + ], + [ + "▁osc", + -15.246212005615234 + ], + [ + "modest", + -15.246219635009766 + ], + [ + "▁Utley", + -15.246235847473145 + ], + [ + "PSE", + -15.246259689331055 + ], + [ + "▁backache", + -15.246268272399902 + ], + [ + "HPV", + -15.2462739944458 + ], + [ + "▁Tabby", + -15.246281623840332 + ], + [ + "▁NPV", + -15.24629020690918 + ], + [ + "harp", + -15.246306419372559 + ], + [ + "▁APY", + -15.246313095092773 + ], + [ + "▁Cypher", + -15.246326446533203 + ], + [ + "▁collating", + -15.246397018432617 + ], + [ + "▁elopement", + -15.24639892578125 + ], + [ + "▁Determinants", + -15.246399879455566 + ], + [ + "Alcohol", + -15.246411323547363 + ], + [ + "▁Pappa", + -15.246429443359375 + ], + [ + "▁Esti", + -15.24648666381836 + ], + [ + "▁Natick", + -15.246513366699219 + ], + [ + "▁Mosquitoes", + -15.246517181396484 + ], + [ + "▁overlord", + -15.2465238571167 + ], + [ + "▁Moeller", + -15.24661922454834 + ], + [ + "▁sapien", + -15.24664306640625 + ], + [ + "▁retread", + -15.246681213378906 + ], + [ + "▁CRASH", + -15.246688842773438 + ], + [ + "Permission", + -15.246705055236816 + ], + [ + "▁ServiceNow", + -15.246783256530762 + ], + [ + "▁Melaka", + -15.246801376342773 + ], + [ + "▁Anabolic", + -15.24682903289795 + ], + [ + "▁Distilled", + -15.24686050415039 + ], + [ + "LPA", + -15.246927261352539 + ], + [ + "▁MGS", + -15.246938705444336 + ], + [ + "bishop", + -15.246962547302246 + ], + [ + "▁dirtier", + -15.24698257446289 + ], + [ + "▁glittered", + -15.246986389160156 + ], + [ + "ŋ", + -15.247082710266113 + ], + [ + "atsi", + -15.24711799621582 + ], + [ + "believing", + -15.247121810913086 + ], + [ + "▁STEPS", + -15.247133255004883 + ], + [ + "Shutterstock", + -15.247149467468262 + ], + [ + "▁Somatic", + -15.247171401977539 + ], + [ + "granddaughter", + -15.247178077697754 + ], + [ + "novic", + -15.247178077697754 + ], + [ + "▁Precipitation", + -15.24725341796875 + ], + [ + "▁recursively", + -15.247259140014648 + ], + [ + "▁Spru", + -15.24727725982666 + ], + [ + "▁glabrous", + -15.24728775024414 + ], + [ + "▁Speeches", + -15.24733829498291 + ], + [ + "Rab", + -15.24737548828125 + ], + [ + "▁cran", + -15.24738597869873 + ], + [ + "compressed", + -15.247398376464844 + ], + [ + "▁lilly", + -15.24740219116211 + ], + [ + "▁Rashtriya", + -15.247424125671387 + ], + [ + "▁Kleiner", + -15.247455596923828 + ], + [ + "▁Berkowitz", + -15.24748706817627 + ], + [ + "Variable", + -15.247511863708496 + ], + [ + "▁Sayyid", + -15.247573852539062 + ], + [ + "wicked", + -15.247610092163086 + ], + [ + "PACE", + -15.247614860534668 + ], + [ + "▁Sched", + -15.247618675231934 + ], + [ + "▁Pez", + -15.2476224899292 + ], + [ + "talkie", + -15.24763298034668 + ], + [ + "▁метод", + -15.247711181640625 + ], + [ + "▁roosting", + -15.247712135314941 + ], + [ + "proposed", + -15.247772216796875 + ], + [ + "▁Galant", + -15.24777603149414 + ], + [ + "▁philosophic", + -15.247797966003418 + ], + [ + "▁1757", + -15.24779987335205 + ], + [ + "canned", + -15.247838973999023 + ], + [ + "▁Chauncey", + -15.247851371765137 + ], + [ + "▁valedictorian", + -15.247851371765137 + ], + [ + "пр", + -15.247852325439453 + ], + [ + "▁Orthodontic", + -15.247856140136719 + ], + [ + "▁Bergamo", + -15.247883796691895 + ], + [ + "▁biochemist", + -15.247892379760742 + ], + [ + "果", + -15.247915267944336 + ], + [ + "▁Realities", + -15.247923851013184 + ], + [ + "ferri", + -15.247937202453613 + ], + [ + "▁semantically", + -15.24796199798584 + ], + [ + "言", + -15.247963905334473 + ], + [ + "torture", + -15.247976303100586 + ], + [ + "▁Allergen", + -15.247986793518066 + ], + [ + "▁Francais", + -15.248014450073242 + ], + [ + "▁Premise", + -15.248041152954102 + ], + [ + "히", + -15.24807357788086 + ], + [ + "▁lovebirds", + -15.248086929321289 + ], + [ + "▁wracked", + -15.248090744018555 + ], + [ + "▁Bischoff", + -15.248125076293945 + ], + [ + "▁pygmy", + -15.248125076293945 + ], + [ + "▁sycamore", + -15.248159408569336 + ], + [ + "▁Kirkby", + -15.248190879821777 + ], + [ + "▁Fillon", + -15.248210906982422 + ], + [ + "SHS", + -15.248247146606445 + ], + [ + "▁poser", + -15.248248100280762 + ], + [ + "▁Kuku", + -15.248249053955078 + ], + [ + "▁Slocum", + -15.248337745666504 + ], + [ + "▁Mustapha", + -15.248394966125488 + ], + [ + "▁Krom", + -15.248401641845703 + ], + [ + "Genetic", + -15.248409271240234 + ], + [ + "cargo", + -15.248512268066406 + ], + [ + "▁Downhill", + -15.24854564666748 + ], + [ + "▁Pandemic", + -15.248552322387695 + ], + [ + "▁Hongkong", + -15.248570442199707 + ], + [ + "▁JERSEY", + -15.248573303222656 + ], + [ + "indiscernible", + -15.248614311218262 + ], + [ + "▁Dossier", + -15.248631477355957 + ], + [ + "miel", + -15.248669624328613 + ], + [ + "▁larg", + -15.248673439025879 + ], + [ + "Maryland", + -15.248684883117676 + ], + [ + "▁imho", + -15.248689651489258 + ], + [ + "gregor", + -15.248699188232422 + ], + [ + "▁brutish", + -15.24870777130127 + ], + [ + "ений", + -15.24874210357666 + ], + [ + "▁Calipari", + -15.248745918273926 + ], + [ + "▁heroically", + -15.248746871948242 + ], + [ + "ată", + -15.248828887939453 + ], + [ + "▁Azeri", + -15.248870849609375 + ], + [ + "▁Hermès", + -15.24887752532959 + ], + [ + "втор", + -15.248927116394043 + ], + [ + "▁Anatolian", + -15.248970985412598 + ], + [ + "sensitizing", + -15.248984336853027 + ], + [ + "▁Miura", + -15.249006271362305 + ], + [ + "Noah", + -15.249021530151367 + ], + [ + "▁MCR", + -15.24906063079834 + ], + [ + "▁Grigio", + -15.249091148376465 + ], + [ + "▁Katerina", + -15.249094009399414 + ], + [ + "▁Ayush", + -15.249112129211426 + ], + [ + "▁Fylde", + -15.249135971069336 + ], + [ + "SPY", + -15.249165534973145 + ], + [ + "▁Restraint", + -15.2492036819458 + ], + [ + "▁Guth", + -15.249218940734863 + ], + [ + "perfectly", + -15.249241828918457 + ], + [ + "▁PrestaShop", + -15.249253273010254 + ], + [ + "VENT", + -15.249299049377441 + ], + [ + "▁Patterned", + -15.249373435974121 + ], + [ + "้า", + -15.249412536621094 + ], + [ + "otka", + -15.249445915222168 + ], + [ + "▁Backlinks", + -15.249455451965332 + ], + [ + "▁Becket", + -15.249473571777344 + ], + [ + "MERS", + -15.249488830566406 + ], + [ + "▁Gusto", + -15.249493598937988 + ], + [ + "▁udder", + -15.24953556060791 + ], + [ + "▁OMNI", + -15.24954891204834 + ], + [ + "▁PGI", + -15.249576568603516 + ], + [ + "ત", + -15.249612808227539 + ], + [ + "▁Prolog", + -15.249645233154297 + ], + [ + "fluff", + -15.249658584594727 + ], + [ + "corrosion", + -15.249664306640625 + ], + [ + "THING", + -15.249676704406738 + ], + [ + "Instrument", + -15.249679565429688 + ], + [ + "▁glycolic", + -15.249679565429688 + ], + [ + "▁Gentil", + -15.249686241149902 + ], + [ + "idiot", + -15.249687194824219 + ], + [ + "FFA", + -15.24974250793457 + ], + [ + "▁Iloilo", + -15.249752044677734 + ], + [ + "▁ditty", + -15.24975872039795 + ], + [ + "Healing", + -15.249772071838379 + ], + [ + "asinghe", + -15.249772071838379 + ], + [ + "musik", + -15.249777793884277 + ], + [ + "▁Physique", + -15.24979305267334 + ], + [ + "▁Kwi", + -15.249794006347656 + ], + [ + "▁Coastguard", + -15.249831199645996 + ], + [ + "▁GSH", + -15.249846458435059 + ], + [ + "▁Expedited", + -15.249848365783691 + ], + [ + "▁defecation", + -15.249852180480957 + ], + [ + "▁procrastinator", + -15.249852180480957 + ], + [ + "▁Doku", + -15.249858856201172 + ], + [ + "ца", + -15.249865531921387 + ], + [ + "▁obliquely", + -15.249895095825195 + ], + [ + "termination", + -15.249940872192383 + ], + [ + "▁imploded", + -15.249959945678711 + ], + [ + "▁Sandton", + -15.249970436096191 + ], + [ + "▁barnyard", + -15.25 + ], + [ + "▁Custo", + -15.250048637390137 + ], + [ + "▁Liege", + -15.250082015991211 + ], + [ + "▁Ninh", + -15.250082969665527 + ], + [ + "▁Declining", + -15.250083923339844 + ], + [ + "▁ternary", + -15.250117301940918 + ], + [ + "▁Benadryl", + -15.250160217285156 + ], + [ + "▁tiramisu", + -15.250162124633789 + ], + [ + "▁Cookery", + -15.250173568725586 + ], + [ + "▁terrazzo", + -15.2501859664917 + ], + [ + "Tara", + -15.250198364257812 + ], + [ + "▁Oldfield", + -15.250255584716797 + ], + [ + "▁peasantry", + -15.25030517578125 + ], + [ + "Jazeera", + -15.250349998474121 + ], + [ + "▁Electrolyte", + -15.250375747680664 + ], + [ + "편", + -15.250383377075195 + ], + [ + "▁scrawny", + -15.250434875488281 + ], + [ + "▁nsa", + -15.250436782836914 + ], + [ + "▁Kavi", + -15.250458717346191 + ], + [ + "▁Dench", + -15.250497817993164 + ], + [ + "strewn", + -15.250504493713379 + ], + [ + "▁Gelb", + -15.250542640686035 + ], + [ + "▁freakish", + -15.250650405883789 + ], + [ + "▁pretax", + -15.250717163085938 + ], + [ + "▁PARP", + -15.250727653503418 + ], + [ + "▁deployable", + -15.250730514526367 + ], + [ + "MOUTH", + -15.250731468200684 + ], + [ + "▁tummies", + -15.250732421875 + ], + [ + "thrift", + -15.250760078430176 + ], + [ + "spicy", + -15.25076961517334 + ], + [ + "▁Nimbus", + -15.250788688659668 + ], + [ + "Petersburg", + -15.250815391540527 + ], + [ + "enius", + -15.250858306884766 + ], + [ + "ני", + -15.250869750976562 + ], + [ + "▁Stata", + -15.25090217590332 + ], + [ + "Chin", + -15.250913619995117 + ], + [ + "▁pursuance", + -15.250914573669434 + ], + [ + "▁Goulburn", + -15.250931739807129 + ], + [ + "▁thruster", + -15.250935554504395 + ], + [ + "▁halving", + -15.250943183898926 + ], + [ + "▁Navara", + -15.251016616821289 + ], + [ + "▁Kinne", + -15.251070976257324 + ], + [ + "▁subsidise", + -15.251100540161133 + ], + [ + "adjusting", + -15.251115798950195 + ], + [ + "▁rebuff", + -15.251131057739258 + ], + [ + "▁manhattan", + -15.251171112060547 + ], + [ + "rhynch", + -15.251175880432129 + ], + [ + "avalli", + -15.251180648803711 + ], + [ + "▁Kristof", + -15.251197814941406 + ], + [ + "1083", + -15.251224517822266 + ], + [ + "▁Anika", + -15.25123405456543 + ], + [ + "▁Trait", + -15.251266479492188 + ], + [ + "▁Clorox", + -15.25126838684082 + ], + [ + "▁vaporized", + -15.251297950744629 + ], + [ + "▁reining", + -15.25131893157959 + ], + [ + "▁Prithvi", + -15.2513427734375 + ], + [ + "▁labrador", + -15.251399993896484 + ], + [ + "Including", + -15.251405715942383 + ], + [ + "▁Flamm", + -15.251420974731445 + ], + [ + "▁Vigne", + -15.251436233520508 + ], + [ + "▁SADC", + -15.25143814086914 + ], + [ + "▁Ribble", + -15.251440048217773 + ], + [ + "▁disown", + -15.25145435333252 + ], + [ + "▁높", + -15.251484870910645 + ], + [ + "Xpert", + -15.251487731933594 + ], + [ + "chov", + -15.251504898071289 + ], + [ + "Neutral", + -15.251533508300781 + ], + [ + "▁limber", + -15.251557350158691 + ], + [ + "consecutive", + -15.251566886901855 + ], + [ + "▁stockpiled", + -15.251644134521484 + ], + [ + "▁Intangible", + -15.251678466796875 + ], + [ + "▁NaNo", + -15.251679420471191 + ], + [ + "▁bronchi", + -15.25172233581543 + ], + [ + "Musical", + -15.251741409301758 + ], + [ + "▁Departing", + -15.251747131347656 + ], + [ + "mercial", + -15.251749992370605 + ], + [ + "MHA", + -15.251794815063477 + ], + [ + "▁Helge", + -15.251827239990234 + ], + [ + "solvent", + -15.251829147338867 + ], + [ + "▁INJURY", + -15.251840591430664 + ], + [ + "▁Lanz", + -15.251852035522461 + ], + [ + "▁Trellis", + -15.251873970031738 + ], + [ + "▁wordsmith", + -15.251893997192383 + ], + [ + "▁Mobilization", + -15.251920700073242 + ], + [ + "▁Maiduguri", + -15.25192642211914 + ], + [ + "▁disrepute", + -15.25192642211914 + ], + [ + "▁poignancy", + -15.25192642211914 + ], + [ + "▁결과", + -15.25192642211914 + ], + [ + "▁MACH", + -15.251974105834961 + ], + [ + "baw", + -15.252033233642578 + ], + [ + "▁ECJ", + -15.252034187316895 + ], + [ + "▁Wanaka", + -15.252034187316895 + ], + [ + "▁1689", + -15.25203800201416 + ], + [ + "▁accessorized", + -15.252058029174805 + ], + [ + "▁Surah", + -15.252063751220703 + ], + [ + "▁Bourn", + -15.252080917358398 + ], + [ + "▁Paoli", + -15.252098083496094 + ], + [ + "▁Shkreli", + -15.252115249633789 + ], + [ + "▁reconditioning", + -15.252120971679688 + ], + [ + "MADE", + -15.252137184143066 + ], + [ + "▁morris", + -15.252158164978027 + ], + [ + "Param", + -15.252161026000977 + ], + [ + "▁marathoner", + -15.252203941345215 + ], + [ + "▁Semin", + -15.25222110748291 + ], + [ + "▁Morte", + -15.252223014831543 + ], + [ + "▁Multiplication", + -15.252233505249023 + ], + [ + "▁Nayak", + -15.252246856689453 + ], + [ + "▁Moffett", + -15.252254486083984 + ], + [ + "▁Provenance", + -15.252274513244629 + ], + [ + "▁Grassland", + -15.252289772033691 + ], + [ + "▁Unconscious", + -15.25231647491455 + ], + [ + "▁disowned", + -15.252342224121094 + ], + [ + "1136", + -15.25234317779541 + ], + [ + "▁almanac", + -15.252361297607422 + ], + [ + "▁Fluoro", + -15.252396583557129 + ], + [ + "▁Pyrex", + -15.252405166625977 + ], + [ + "▁recompile", + -15.25240707397461 + ], + [ + "gaki", + -15.252413749694824 + ], + [ + "idler", + -15.252443313598633 + ], + [ + "▁prudential", + -15.25244426727295 + ], + [ + "boned", + -15.25245189666748 + ], + [ + "▁Ludovic", + -15.252458572387695 + ], + [ + "▁rheumatologist", + -15.25249195098877 + ], + [ + "▁thunk", + -15.25251293182373 + ], + [ + "convenience", + -15.252533912658691 + ], + [ + "▁firebox", + -15.252579689025879 + ], + [ + "zzard", + -15.2526273727417 + ], + [ + "▁LST", + -15.252665519714355 + ], + [ + "rotate", + -15.25271224975586 + ], + [ + "▁necesita", + -15.25273323059082 + ], + [ + "▁condoned", + -15.25277328491211 + ], + [ + "▁luxuriate", + -15.252784729003906 + ], + [ + "じ", + -15.252799034118652 + ], + [ + "Manufacturer", + -15.2528076171875 + ], + [ + "▁litecoin", + -15.25289535522461 + ], + [ + "Jai", + -15.25292682647705 + ], + [ + "▁Bexar", + -15.252935409545898 + ], + [ + "▁Dremel", + -15.252950668334961 + ], + [ + "▁CUC", + -15.25296401977539 + ], + [ + "▁Crusoe", + -15.252991676330566 + ], + [ + "▁선", + -15.253028869628906 + ], + [ + "▁Clasp", + -15.253037452697754 + ], + [ + "▁superfamily", + -15.253037452697754 + ], + [ + "ት", + -15.253093719482422 + ], + [ + "▁CGL", + -15.25309944152832 + ], + [ + "▁Tharp", + -15.253111839294434 + ], + [ + "▁OpenID", + -15.25312328338623 + ], + [ + "▁Meizu", + -15.253157615661621 + ], + [ + "▁Rothstein", + -15.25316333770752 + ], + [ + "▁Embossed", + -15.25319766998291 + ], + [ + "Portugal", + -15.253198623657227 + ], + [ + "▁Gillen", + -15.253203392028809 + ], + [ + "▁stacker", + -15.253226280212402 + ], + [ + "▁mommies", + -15.253231048583984 + ], + [ + "任", + -15.253244400024414 + ], + [ + "Symbol", + -15.253262519836426 + ], + [ + "▁Dependable", + -15.253273963928223 + ], + [ + "▁Vyas", + -15.253290176391602 + ], + [ + "▁Vedra", + -15.253307342529297 + ], + [ + "▁UNEP", + -15.25332260131836 + ], + [ + "▁Defective", + -15.253326416015625 + ], + [ + "▁Wendel", + -15.253329277038574 + ], + [ + "▁TensorFlow", + -15.253352165222168 + ], + [ + "▁farmstead", + -15.253353118896484 + ], + [ + "PLEX", + -15.2533540725708 + ], + [ + "▁Lassen", + -15.253366470336914 + ], + [ + "▁Orlov", + -15.25337028503418 + ], + [ + "▁stabil", + -15.253408432006836 + ], + [ + "▁wracking", + -15.253447532653809 + ], + [ + "▁Juvederm", + -15.253473281860352 + ], + [ + "▁Arby", + -15.253485679626465 + ], + [ + "▁contracture", + -15.25349235534668 + ], + [ + "▁thiamine", + -15.253511428833008 + ], + [ + "▁Lancia", + -15.253540992736816 + ], + [ + "▁Busta", + -15.25361156463623 + ], + [ + "∞", + -15.253612518310547 + ], + [ + "▁OpenStreetMap", + -15.253625869750977 + ], + [ + "Socket", + -15.253639221191406 + ], + [ + "▁shiitake", + -15.253643035888672 + ], + [ + "sectoral", + -15.253666877746582 + ], + [ + "RAK", + -15.253726959228516 + ], + [ + "▁Slee", + -15.253729820251465 + ], + [ + "▁indole", + -15.253732681274414 + ], + [ + "▁Marne", + -15.253748893737793 + ], + [ + "▁morpho", + -15.253775596618652 + ], + [ + "▁disfigurement", + -15.253780364990234 + ], + [ + "▁ASICS", + -15.253790855407715 + ], + [ + "▁jettisoned", + -15.253824234008789 + ], + [ + "offered", + -15.25384521484375 + ], + [ + "1849", + -15.253864288330078 + ], + [ + "▁Bracknell", + -15.253905296325684 + ], + [ + "▁approximating", + -15.253918647766113 + ], + [ + "▁bristled", + -15.253958702087402 + ], + [ + "▁liberator", + -15.253981590270996 + ], + [ + "▁må", + -15.25399112701416 + ], + [ + "▁Branca", + -15.253997802734375 + ], + [ + "struc", + -15.254010200500488 + ], + [ + "OGUE", + -15.254087448120117 + ], + [ + "easable", + -15.254093170166016 + ], + [ + "▁originaw", + -15.254148483276367 + ], + [ + "▁marl", + -15.254150390625 + ], + [ + "▁Attleboro", + -15.254173278808594 + ], + [ + "▁mesquite", + -15.254249572753906 + ], + [ + "▁drench", + -15.254286766052246 + ], + [ + "▁Esmeralda", + -15.25429630279541 + ], + [ + "▁Chukwu", + -15.25436019897461 + ], + [ + "▁kirk", + -15.254374504089355 + ], + [ + "▁vernal", + -15.254375457763672 + ], + [ + "▁Elma", + -15.254401206970215 + ], + [ + "▁Beeswax", + -15.25440502166748 + ], + [ + "▁SlideShare", + -15.25440788269043 + ], + [ + "▁Originating", + -15.254422187805176 + ], + [ + "▁hehehe", + -15.254464149475098 + ], + [ + "considerable", + -15.254474639892578 + ], + [ + "▁brownstone", + -15.254477500915527 + ], + [ + "Romance", + -15.25450325012207 + ], + [ + "▁peice", + -15.254515647888184 + ], + [ + "▁Mylar", + -15.25451946258545 + ], + [ + "▁Owensboro", + -15.254534721374512 + ], + [ + "▁weeded", + -15.254555702209473 + ], + [ + "partially", + -15.254579544067383 + ], + [ + "▁Pollo", + -15.254582405090332 + ], + [ + "▁isopropyl", + -15.254583358764648 + ], + [ + "▁inverting", + -15.254626274108887 + ], + [ + "▁Mahinda", + -15.254688262939453 + ], + [ + "▁multicellular", + -15.254688262939453 + ], + [ + "▁slavish", + -15.254728317260742 + ], + [ + "άν", + -15.254737854003906 + ], + [ + "▁cluck", + -15.254738807678223 + ], + [ + "▁tater", + -15.254745483398438 + ], + [ + "▁Capote", + -15.254761695861816 + ], + [ + "열", + -15.254777908325195 + ], + [ + "▁vapid", + -15.254796028137207 + ], + [ + "产", + -15.254798889160156 + ], + [ + "▁सा", + -15.254815101623535 + ], + [ + "▁ALLOWED", + -15.254816055297852 + ], + [ + "▁Stupa", + -15.254862785339355 + ], + [ + "▁trialling", + -15.254862785339355 + ], + [ + "▁swordsman", + -15.254892349243164 + ], + [ + "▁EJB", + -15.254914283752441 + ], + [ + "catheter", + -15.255005836486816 + ], + [ + "emmer", + -15.255027770996094 + ], + [ + "▁Bucknell", + -15.255075454711914 + ], + [ + "▁asphyxia", + -15.255080223083496 + ], + [ + "▁Rahu", + -15.255098342895508 + ], + [ + "▁reverberated", + -15.255102157592773 + ], + [ + "▁Nubia", + -15.255104064941406 + ], + [ + "stache", + -15.255138397216797 + ], + [ + "▁Radley", + -15.255187034606934 + ], + [ + "વ", + -15.25522518157959 + ], + [ + "helped", + -15.255252838134766 + ], + [ + "Franklin", + -15.255277633666992 + ], + [ + "Colin", + -15.255290985107422 + ], + [ + "▁Castleton", + -15.25532054901123 + ], + [ + "▁Muro", + -15.25537109375 + ], + [ + "▁Adorn", + -15.25540828704834 + ], + [ + "Yama", + -15.255448341369629 + ], + [ + "Desert", + -15.255457878112793 + ], + [ + "▁Scum", + -15.25546932220459 + ], + [ + "▁stri", + -15.25549030303955 + ], + [ + "▁FBC", + -15.255515098571777 + ], + [ + "▁fossa", + -15.255547523498535 + ], + [ + "▁Griffon", + -15.255576133728027 + ], + [ + "▁Caravaggio", + -15.255620956420898 + ], + [ + "▁HANDLE", + -15.255657196044922 + ], + [ + "▁Wojciech", + -15.255672454833984 + ], + [ + "Sentinel", + -15.255685806274414 + ], + [ + "▁carcinogenesis", + -15.255692481994629 + ], + [ + "▁livingroom", + -15.255701065063477 + ], + [ + "▁Surrealist", + -15.255718231201172 + ], + [ + "▁JSF", + -15.255727767944336 + ], + [ + "▁Genus", + -15.25576114654541 + ], + [ + "alder", + -15.255762100219727 + ], + [ + "▁Toru", + -15.25577449798584 + ], + [ + "▁Remini", + -15.255776405334473 + ], + [ + "Sadly", + -15.255780220031738 + ], + [ + "▁subaru", + -15.255786895751953 + ], + [ + "Athlete", + -15.255796432495117 + ], + [ + "▁Spyro", + -15.255800247192383 + ], + [ + "▁agronomic", + -15.2558012008667 + ], + [ + "▁Invicta", + -15.255810737609863 + ], + [ + "▁Winemaker", + -15.25583267211914 + ], + [ + "▁fruitcake", + -15.25586223602295 + ], + [ + "Maid", + -15.25586986541748 + ], + [ + "▁Spirulina", + -15.255879402160645 + ], + [ + "▁cambia", + -15.255901336669922 + ], + [ + "▁Insist", + -15.25590991973877 + ], + [ + "南", + -15.255941390991211 + ], + [ + "ني", + -15.255969047546387 + ], + [ + "navigation", + -15.255995750427246 + ], + [ + "Rahman", + -15.256072044372559 + ], + [ + "Chick", + -15.256158828735352 + ], + [ + "igian", + -15.256183624267578 + ], + [ + "▁bocce", + -15.256184577941895 + ], + [ + "▁Otero", + -15.256220817565918 + ], + [ + "▁USCG", + -15.256220817565918 + ], + [ + "AKT", + -15.25622272491455 + ], + [ + "▁stalactite", + -15.256224632263184 + ], + [ + "▁Edmondson", + -15.256244659423828 + ], + [ + "▁Blagojevich", + -15.256258964538574 + ], + [ + "stvo", + -15.25627326965332 + ], + [ + "klu", + -15.256282806396484 + ], + [ + "BAG", + -15.256328582763672 + ], + [ + "▁Consignment", + -15.256361961364746 + ], + [ + "▁lofted", + -15.256366729736328 + ], + [ + "Punk", + -15.256385803222656 + ], + [ + "▁subverting", + -15.256402015686035 + ], + [ + "Vivi", + -15.256402969360352 + ], + [ + "▁Wyk", + -15.2564058303833 + ], + [ + "evey", + -15.256418228149414 + ], + [ + "▁miscue", + -15.256460189819336 + ], + [ + "▁moly", + -15.256461143493652 + ], + [ + "▁Triglyceride", + -15.256476402282715 + ], + [ + "▁tendinitis", + -15.25651741027832 + ], + [ + "▁NARS", + -15.256548881530762 + ], + [ + "CHIN", + -15.256555557250977 + ], + [ + "тя", + -15.256563186645508 + ], + [ + "cartoon", + -15.256576538085938 + ], + [ + "▁prowling", + -15.256648063659668 + ], + [ + "▁proteolytic", + -15.2566556930542 + ], + [ + "▁DHC", + -15.256670951843262 + ], + [ + "▁tabulation", + -15.256674766540527 + ], + [ + "▁bola", + -15.25667667388916 + ], + [ + "Moonlight", + -15.256721496582031 + ], + [ + "▁Dispatcher", + -15.25672721862793 + ], + [ + "▁disloyal", + -15.256802558898926 + ], + [ + "thalamic", + -15.256808280944824 + ], + [ + "sewn", + -15.25682544708252 + ], + [ + "▁guerre", + -15.25684928894043 + ], + [ + "▁LRA", + -15.256854057312012 + ], + [ + "▁Novelist", + -15.256890296936035 + ], + [ + "▁Arro", + -15.256893157958984 + ], + [ + "Towards", + -15.256916046142578 + ], + [ + "▁multidrug", + -15.25692367553711 + ], + [ + "▁Latour", + -15.256945610046387 + ], + [ + "▁Holger", + -15.256951332092285 + ], + [ + "duino", + -15.256982803344727 + ], + [ + "▁GDF", + -15.25703239440918 + ], + [ + "priya", + -15.257043838500977 + ], + [ + "▁Tiberi", + -15.257075309753418 + ], + [ + "prendre", + -15.2571439743042 + ], + [ + "gesch", + -15.257145881652832 + ], + [ + "▁Rhian", + -15.257164001464844 + ], + [ + "▁chelsea", + -15.257177352905273 + ], + [ + "▁CHOP", + -15.25717830657959 + ], + [ + "▁Gilberto", + -15.257211685180664 + ], + [ + "▁Imagining", + -15.257216453552246 + ], + [ + "Blackwell", + -15.257217407226562 + ], + [ + "SOUNDBITE", + -15.25722599029541 + ], + [ + "MOM", + -15.257227897644043 + ], + [ + "HUB", + -15.257241249084473 + ], + [ + "▁FanDuel", + -15.257258415222168 + ], + [ + "▁Bayard", + -15.257295608520508 + ], + [ + "▁Pattie", + -15.25731086730957 + ], + [ + "accord", + -15.257331848144531 + ], + [ + "▁hua", + -15.257338523864746 + ], + [ + "▁KDP", + -15.257375717163086 + ], + [ + "wole", + -15.257390022277832 + ], + [ + "▁Spotting", + -15.25743293762207 + ], + [ + "Cindy", + -15.257434844970703 + ], + [ + "▁backlighting", + -15.257439613342285 + ], + [ + "roofing", + -15.257441520690918 + ], + [ + "▁Cavani", + -15.25754451751709 + ], + [ + "planner", + -15.257562637329102 + ], + [ + "TRIC", + -15.257589340209961 + ], + [ + "▁Cronulla", + -15.25759220123291 + ], + [ + "credible", + -15.2576322555542 + ], + [ + "ು", + -15.257654190063477 + ], + [ + "▁orienteering", + -15.257675170898438 + ], + [ + "▁Eggers", + -15.257732391357422 + ], + [ + "▁croft", + -15.257739067077637 + ], + [ + "▁overreacting", + -15.257741928100586 + ], + [ + "▁KRIS", + -15.257759094238281 + ], + [ + "deployment", + -15.25776195526123 + ], + [ + "иц", + -15.25777816772461 + ], + [ + "confirmation", + -15.2578125 + ], + [ + "▁Picci", + -15.257857322692871 + ], + [ + "ći", + -15.25786018371582 + ], + [ + "▁Babson", + -15.257868766784668 + ], + [ + "ация", + -15.257881164550781 + ], + [ + "▁Hoax", + -15.25800609588623 + ], + [ + "▁fairground", + -15.258009910583496 + ], + [ + "▁Barbera", + -15.258054733276367 + ], + [ + "▁Khloé", + -15.25806999206543 + ], + [ + "▁wichtig", + -15.25808048248291 + ], + [ + "▁marshland", + -15.258082389831543 + ], + [ + "▁vulgarity", + -15.258097648620605 + ], + [ + "▁masthead", + -15.2581205368042 + ], + [ + "▁Nigella", + -15.258124351501465 + ], + [ + "▁PACS", + -15.258160591125488 + ], + [ + "cottage", + -15.25820541381836 + ], + [ + "▁Alaba", + -15.258233070373535 + ], + [ + "ethnicity", + -15.258238792419434 + ], + [ + "▁DiMaggio", + -15.2582426071167 + ], + [ + "poca", + -15.258281707763672 + ], + [ + "▁shinier", + -15.258293151855469 + ], + [ + "▁enmeshed", + -15.25831127166748 + ], + [ + "▁WORKSHOP", + -15.258318901062012 + ], + [ + "▁survivalist", + -15.258320808410645 + ], + [ + "▁Pelo", + -15.25833511352539 + ], + [ + "▁Leitrim", + -15.25836181640625 + ], + [ + "Carroll", + -15.25837230682373 + ], + [ + "▁Chipset", + -15.258415222167969 + ], + [ + "▁leatherette", + -15.258429527282715 + ], + [ + "Parser", + -15.258443832397461 + ], + [ + "▁crimped", + -15.258504867553711 + ], + [ + "▁AliExpress", + -15.258520126342773 + ], + [ + "carboxylic", + -15.258540153503418 + ], + [ + "Katy", + -15.258553504943848 + ], + [ + "▁SHIN", + -15.258586883544922 + ], + [ + "▁Bauxite", + -15.258587837219238 + ], + [ + "Empty", + -15.25861644744873 + ], + [ + "▁Vasant", + -15.25861644744873 + ], + [ + "▁ember", + -15.258637428283691 + ], + [ + "▁Superannuation", + -15.258639335632324 + ], + [ + "▁commercializing", + -15.258719444274902 + ], + [ + "▁absolution", + -15.2587308883667 + ], + [ + "▁Wedgwood", + -15.258743286132812 + ], + [ + "▁Sausalito", + -15.258760452270508 + ], + [ + "▁stilt", + -15.258776664733887 + ], + [ + "uelo", + -15.258780479431152 + ], + [ + "▁Tangent", + -15.258797645568848 + ], + [ + "▁masque", + -15.258801460266113 + ], + [ + "▁Rationale", + -15.258832931518555 + ], + [ + "▁Kuching", + -15.258891105651855 + ], + [ + "embracing", + -15.258917808532715 + ], + [ + "▁neuroprotective", + -15.258933067321777 + ], + [ + "Tear", + -15.25893783569336 + ], + [ + "ских", + -15.25899600982666 + ], + [ + "▁McKeown", + -15.25900936126709 + ], + [ + "george", + -15.25902271270752 + ], + [ + "jha", + -15.259044647216797 + ], + [ + "▁Maneuver", + -15.259075164794922 + ], + [ + "▁Grosso", + -15.259084701538086 + ], + [ + "▁Jerri", + -15.259126663208008 + ], + [ + "vivi", + -15.25916576385498 + ], + [ + "▁neurogenesis", + -15.259178161621094 + ], + [ + "anniversary", + -15.25917911529541 + ], + [ + "▁Buttercup", + -15.259195327758789 + ], + [ + "RANGE", + -15.259243965148926 + ], + [ + "▁EMERGENCY", + -15.259243965148926 + ], + [ + "▁MORGAN", + -15.259247779846191 + ], + [ + "▁Antares", + -15.259265899658203 + ], + [ + "▁Sephardic", + -15.25927734375 + ], + [ + "▁Languedoc", + -15.259295463562012 + ], + [ + "Chang", + -15.25930404663086 + ], + [ + "volute", + -15.259313583374023 + ], + [ + "▁Licorice", + -15.259330749511719 + ], + [ + "epileptic", + -15.259353637695312 + ], + [ + "lookup", + -15.259391784667969 + ], + [ + "▁threshing", + -15.259394645690918 + ], + [ + "▁Plexiglas", + -15.2593994140625 + ], + [ + "▁AMAZON", + -15.259444236755371 + ], + [ + "▁printhead", + -15.259458541870117 + ], + [ + "▁Teesside", + -15.259478569030762 + ], + [ + "▁CORD", + -15.259499549865723 + ], + [ + "▁Disturb", + -15.259517669677734 + ], + [ + "▁doxorubicin", + -15.25957202911377 + ], + [ + "▁POSIX", + -15.259574890136719 + ], + [ + "▁oolong", + -15.259574890136719 + ], + [ + "▁Alluring", + -15.2595796585083 + ], + [ + "polyester", + -15.259580612182617 + ], + [ + "▁Justinian", + -15.25960636138916 + ], + [ + "业", + -15.25960636138916 + ], + [ + "Ρ", + -15.259607315063477 + ], + [ + "▁cherokee", + -15.259613990783691 + ], + [ + "▁Mathura", + -15.259615898132324 + ], + [ + "DCC", + -15.259644508361816 + ], + [ + "▁Esso", + -15.259663581848145 + ], + [ + "▁Bacardi", + -15.259673118591309 + ], + [ + "▁paperweight", + -15.259688377380371 + ], + [ + "▁apportioned", + -15.259770393371582 + ], + [ + "▁Flowing", + -15.259772300720215 + ], + [ + "GRP", + -15.259774208068848 + ], + [ + "Nicola", + -15.259812355041504 + ], + [ + "▁Rayleigh", + -15.259856224060059 + ], + [ + "pasta", + -15.25989055633545 + ], + [ + "■", + -15.259899139404297 + ], + [ + "Thon", + -15.259902000427246 + ], + [ + "▁Stronghold", + -15.259928703308105 + ], + [ + "crying", + -15.259952545166016 + ], + [ + "▁palazzo", + -15.259970664978027 + ], + [ + "▁repentant", + -15.260059356689453 + ], + [ + "generous", + -15.260066032409668 + ], + [ + "▁Velma", + -15.260075569152832 + ], + [ + "▁FOV", + -15.260102272033691 + ], + [ + "cetin", + -15.260110855102539 + ], + [ + "▁Storybook", + -15.260119438171387 + ], + [ + "heap", + -15.260135650634766 + ], + [ + "▁Eleni", + -15.260138511657715 + ], + [ + "▁scrutinise", + -15.260162353515625 + ], + [ + "▁Genentech", + -15.260211944580078 + ], + [ + "▁GNP", + -15.260220527648926 + ], + [ + "▁bioengineering", + -15.260222434997559 + ], + [ + "▁Marner", + -15.260236740112305 + ], + [ + "▁Qty", + -15.260239601135254 + ], + [ + "▁cheep", + -15.260249137878418 + ], + [ + "▁NWT", + -15.260257720947266 + ], + [ + "Adresse", + -15.26026439666748 + ], + [ + "▁Carillion", + -15.26033878326416 + ], + [ + "▁Dollhouse", + -15.260359764099121 + ], + [ + "▁Deptford", + -15.260366439819336 + ], + [ + "▁jabber", + -15.260375022888184 + ], + [ + "▁tamari", + -15.260379791259766 + ], + [ + "▁Mahrez", + -15.260427474975586 + ], + [ + "▁Nesting", + -15.260461807250977 + ], + [ + "▁Informatica", + -15.260464668273926 + ], + [ + "▁Sql", + -15.260499000549316 + ], + [ + "▁Vastu", + -15.260522842407227 + ], + [ + "▁hypnotherapist", + -15.26052474975586 + ], + [ + "▁Behn", + -15.260557174682617 + ], + [ + "▁Caja", + -15.26057243347168 + ], + [ + "atically", + -15.260578155517578 + ], + [ + "▁fogging", + -15.260583877563477 + ], + [ + "▁Perthshire", + -15.260613441467285 + ], + [ + "Exactly", + -15.260614395141602 + ], + [ + "▁hobble", + -15.260618209838867 + ], + [ + "▁trendline", + -15.260624885559082 + ], + [ + "HOE", + -15.26063060760498 + ], + [ + "▁rootstock", + -15.260721206665039 + ], + [ + "Feeling", + -15.260744094848633 + ], + [ + "▁passé", + -15.260746002197266 + ], + [ + "Milf", + -15.260863304138184 + ], + [ + "▁ruminate", + -15.260875701904297 + ], + [ + "iformis", + -15.260878562927246 + ], + [ + "▁undeterred", + -15.26093864440918 + ], + [ + "ndorf", + -15.260971069335938 + ], + [ + "puesta", + -15.260986328125 + ], + [ + "▁Bueno", + -15.260988235473633 + ], + [ + "çu", + -15.26102066040039 + ], + [ + "▁Danielson", + -15.261025428771973 + ], + [ + "Behavior", + -15.261078834533691 + ], + [ + "▁McCloud", + -15.261082649230957 + ], + [ + "booster", + -15.26111125946045 + ], + [ + "▁Lennie", + -15.26111125946045 + ], + [ + "▁bartering", + -15.26111125946045 + ], + [ + "Extract", + -15.2611665725708 + ], + [ + "▁unaudited", + -15.261181831359863 + ], + [ + "▁Billiton", + -15.261198997497559 + ], + [ + "▁melanogaster", + -15.261198997497559 + ], + [ + "ujah", + -15.261202812194824 + ], + [ + "equip", + -15.261207580566406 + ], + [ + "▁bioethics", + -15.261218070983887 + ], + [ + "▁knell", + -15.26123046875 + ], + [ + "▁astoundingly", + -15.261269569396973 + ], + [ + "EEM", + -15.261287689208984 + ], + [ + "▁Deploying", + -15.261310577392578 + ], + [ + "ROY", + -15.261387825012207 + ], + [ + "▁fidgeting", + -15.261445045471191 + ], + [ + "ijl", + -15.261463165283203 + ], + [ + "▁NANO", + -15.261513710021973 + ], + [ + "▁BEER", + -15.261560440063477 + ], + [ + "survivor", + -15.261617660522461 + ], + [ + "▁Canuck", + -15.261629104614258 + ], + [ + "faring", + -15.261642456054688 + ], + [ + "▁Skaggs", + -15.2616548538208 + ], + [ + "▁Buehler", + -15.261658668518066 + ], + [ + "leisure", + -15.261686325073242 + ], + [ + "▁Cubi", + -15.261686325073242 + ], + [ + "ónica", + -15.261690139770508 + ], + [ + "▁binging", + -15.261850357055664 + ], + [ + "Disclosure", + -15.261899948120117 + ], + [ + "characterized", + -15.261934280395508 + ], + [ + "▁Kashyap", + -15.261944770812988 + ], + [ + "▁OHV", + -15.261990547180176 + ], + [ + "elek", + -15.262040138244629 + ], + [ + "▁Synchronization", + -15.262040138244629 + ], + [ + "▁coalesced", + -15.26206111907959 + ], + [ + "midine", + -15.26209831237793 + ], + [ + "RIDGE", + -15.262166976928711 + ], + [ + "vallo", + -15.26218032836914 + ], + [ + "▁Grissom", + -15.262182235717773 + ], + [ + "▁BSU", + -15.262211799621582 + ], + [ + "▁funerary", + -15.262223243713379 + ], + [ + "▁columnar", + -15.262229919433594 + ], + [ + "▁uti", + -15.262243270874023 + ], + [ + "▁Parkview", + -15.262250900268555 + ], + [ + "▁geodesic", + -15.26226806640625 + ], + [ + "▁McCor", + -15.262272834777832 + ], + [ + "▁snuffed", + -15.262287139892578 + ], + [ + "▁Seaway", + -15.262334823608398 + ], + [ + "HUN", + -15.262353897094727 + ], + [ + "Stewart", + -15.262362480163574 + ], + [ + "▁Rothko", + -15.26240348815918 + ], + [ + "▁eliminator", + -15.262417793273926 + ], + [ + "▁Mazi", + -15.262489318847656 + ], + [ + "Samantha", + -15.262510299682617 + ], + [ + "▁Dostoevsky", + -15.262516021728516 + ], + [ + "▁Keepsake", + -15.26257610321045 + ], + [ + "▁Clarification", + -15.262621879577637 + ], + [ + "▁Macadamia", + -15.2626371383667 + ], + [ + "▁transliteration", + -15.2626371383667 + ], + [ + "Mixed", + -15.26268196105957 + ], + [ + "kilter", + -15.262694358825684 + ], + [ + "bbler", + -15.262700080871582 + ], + [ + "▁Prabang", + -15.262711524963379 + ], + [ + "▁Geddes", + -15.262777328491211 + ], + [ + "▁matlab", + -15.26278018951416 + ], + [ + "▁JUAN", + -15.262831687927246 + ], + [ + "▁Shortage", + -15.262861251831055 + ], + [ + "▁Edson", + -15.262882232666016 + ], + [ + "▁BMT", + -15.262920379638672 + ], + [ + "▁medulla", + -15.26297664642334 + ], + [ + "Victory", + -15.262983322143555 + ], + [ + "▁MUSE", + -15.263069152832031 + ], + [ + "▁TRANSFORM", + -15.263092041015625 + ], + [ + "cione", + -15.26311206817627 + ], + [ + "▁Funktion", + -15.263157844543457 + ], + [ + "▁Hammett", + -15.263167381286621 + ], + [ + "▁HomeKit", + -15.263198852539062 + ], + [ + "▁neurodegeneration", + -15.263209342956543 + ], + [ + "▁Howarth", + -15.263216018676758 + ], + [ + "HEM", + -15.263276100158691 + ], + [ + "▁compulsively", + -15.263291358947754 + ], + [ + "priv", + -15.263315200805664 + ], + [ + "▁TPE", + -15.263325691223145 + ], + [ + "▁Devonport", + -15.263371467590332 + ], + [ + "▁Masca", + -15.263398170471191 + ], + [ + "▁Gisele", + -15.263415336608887 + ], + [ + "Architecture", + -15.26341724395752 + ], + [ + "▁irreversibly", + -15.263452529907227 + ], + [ + "▁subcellular", + -15.263452529907227 + ], + [ + "▁Islamism", + -15.263473510742188 + ], + [ + "▁XXVI", + -15.263567924499512 + ], + [ + "▁Kratos", + -15.263568878173828 + ], + [ + "▁equalled", + -15.263578414916992 + ], + [ + "▁Mkhitaryan", + -15.263590812683105 + ], + [ + "AppData", + -15.2636137008667 + ], + [ + "▁Savin", + -15.2636137008667 + ], + [ + "plied", + -15.263662338256836 + ], + [ + "kiel", + -15.263696670532227 + ], + [ + "▁lioness", + -15.263700485229492 + ], + [ + "▁restive", + -15.263752937316895 + ], + [ + "▁Archon", + -15.263777732849121 + ], + [ + "▁cumulatively", + -15.263858795166016 + ], + [ + "▁antiquarian", + -15.263869285583496 + ], + [ + "▁nebul", + -15.263886451721191 + ], + [ + "ária", + -15.263894081115723 + ], + [ + "▁saturn", + -15.263900756835938 + ], + [ + "▁turkish", + -15.263904571533203 + ], + [ + "▁implanting", + -15.263909339904785 + ], + [ + "▁bild", + -15.263910293579102 + ], + [ + "▁CEB", + -15.263989448547363 + ], + [ + "▁TMG", + -15.26401424407959 + ], + [ + "▁Weissman", + -15.264020919799805 + ], + [ + "famil", + -15.264076232910156 + ], + [ + "▁nau", + -15.264174461364746 + ], + [ + "sulfonate", + -15.264178276062012 + ], + [ + "▁Shubh", + -15.264196395874023 + ], + [ + "▁VVT", + -15.264222145080566 + ], + [ + "▁trailblazing", + -15.264233589172363 + ], + [ + "দ", + -15.264250755310059 + ], + [ + "formally", + -15.26426887512207 + ], + [ + "▁aphasia", + -15.264287948608398 + ], + [ + "Cluster", + -15.264288902282715 + ], + [ + "▁conti", + -15.264322280883789 + ], + [ + "▁umpteen", + -15.264334678649902 + ], + [ + "▁anglais", + -15.264335632324219 + ], + [ + "▁Sagrada", + -15.264359474182129 + ], + [ + "▁Blaney", + -15.26436710357666 + ], + [ + "Massachusetts", + -15.264394760131836 + ], + [ + "▁EUROPEAN", + -15.264435768127441 + ], + [ + "CHECK", + -15.264479637145996 + ], + [ + "▁Prophetic", + -15.26449203491211 + ], + [ + "▁unlabeled", + -15.26453971862793 + ], + [ + "▁Bluewater", + -15.264589309692383 + ], + [ + "▁pasar", + -15.264625549316406 + ], + [ + "▁einge", + -15.264654159545898 + ], + [ + "ROOT", + -15.26466178894043 + ], + [ + "▁Poser", + -15.26469612121582 + ], + [ + "▁entrancing", + -15.26471996307373 + ], + [ + "innovative", + -15.264724731445312 + ], + [ + "▁Hundley", + -15.264791488647461 + ], + [ + "бу", + -15.264813423156738 + ], + [ + "Universe", + -15.264815330505371 + ], + [ + "preciate", + -15.26486873626709 + ], + [ + "▁bromine", + -15.264874458312988 + ], + [ + "▁hematology", + -15.26490592956543 + ], + [ + "▁shimmy", + -15.264971733093262 + ], + [ + "Include", + -15.265060424804688 + ], + [ + "▁Barbeque", + -15.265090942382812 + ], + [ + "▁Grandson", + -15.265100479125977 + ], + [ + "▁Slurry", + -15.265108108520508 + ], + [ + "▁Individualized", + -15.265275001525879 + ], + [ + "▁conjunctiva", + -15.265287399291992 + ], + [ + "▁Congrat", + -15.265295028686523 + ], + [ + "▁Pekka", + -15.265317916870117 + ], + [ + "▁Disruptive", + -15.265344619750977 + ], + [ + "▁obtrusive", + -15.265348434448242 + ], + [ + "elektr", + -15.265351295471191 + ], + [ + "hiva", + -15.265365600585938 + ], + [ + "断", + -15.265366554260254 + ], + [ + "▁TFL", + -15.265385627746582 + ], + [ + "▁LVMH", + -15.265400886535645 + ], + [ + "▁Detachable", + -15.265501976013184 + ], + [ + "▁Bergh", + -15.265515327453613 + ], + [ + "▁Alnwick", + -15.26553726196289 + ], + [ + "▁Abdulla", + -15.265563011169434 + ], + [ + "MLB", + -15.265567779541016 + ], + [ + "▁massif", + -15.265599250793457 + ], + [ + "▁untie", + -15.265604019165039 + ], + [ + "▁Webcast", + -15.265615463256836 + ], + [ + "▁brevi", + -15.26563549041748 + ], + [ + "enci", + -15.265664100646973 + ], + [ + "scripted", + -15.265671730041504 + ], + [ + "▁SHEET", + -15.265677452087402 + ], + [ + "▁mobbed", + -15.26571273803711 + ], + [ + "▁OSPF", + -15.265716552734375 + ], + [ + "▁embezzle", + -15.265737533569336 + ], + [ + "Erik", + -15.265780448913574 + ], + [ + "▁ख", + -15.26580810546875 + ], + [ + "enforced", + -15.265844345092773 + ], + [ + "▁Folded", + -15.265851974487305 + ], + [ + "Emerick", + -15.26586627960205 + ], + [ + "▁DAWN", + -15.26588249206543 + ], + [ + "▁Broadbent", + -15.265890121459961 + ], + [ + "▁Hahahaha", + -15.265929222106934 + ], + [ + "isolated", + -15.26593017578125 + ], + [ + "▁slobber", + -15.265938758850098 + ], + [ + "▁craw", + -15.265953063964844 + ], + [ + "▁Universitas", + -15.265974998474121 + ], + [ + "▁BEAST", + -15.265984535217285 + ], + [ + "▁Pinned", + -15.266095161437988 + ], + [ + "thetic", + -15.266098976135254 + ], + [ + "▁cultivator", + -15.266136169433594 + ], + [ + "alternate", + -15.266170501708984 + ], + [ + "▁allogeneic", + -15.26619815826416 + ], + [ + "▁gaunt", + -15.266225814819336 + ], + [ + "▁bifold", + -15.266251564025879 + ], + [ + "banner", + -15.266265869140625 + ], + [ + "▁windowShare", + -15.266273498535156 + ], + [ + "▁Lieu", + -15.266283988952637 + ], + [ + "▁potentiate", + -15.266305923461914 + ], + [ + "▁Fattah", + -15.26633358001709 + ], + [ + "▁smudging", + -15.266340255737305 + ], + [ + "▁deeming", + -15.266373634338379 + ], + [ + "▁stabiliser", + -15.266401290893555 + ], + [ + "▁sociopolitical", + -15.266414642333984 + ], + [ + "▁hardliners", + -15.266444206237793 + ], + [ + "▁Noël", + -15.26648235321045 + ], + [ + "▁antihistamine", + -15.266488075256348 + ], + [ + "▁stewardess", + -15.266510009765625 + ], + [ + "▁geant", + -15.266515731811523 + ], + [ + "▁Cosmology", + -15.266524314880371 + ], + [ + "▁Wildcard", + -15.266599655151367 + ], + [ + "▁Patong", + -15.266648292541504 + ], + [ + "foster", + -15.26664924621582 + ], + [ + "▁Qualities", + -15.266654014587402 + ], + [ + "▁suckling", + -15.266680717468262 + ], + [ + "▁talcum", + -15.26675796508789 + ], + [ + "▁turnpike", + -15.266775131225586 + ], + [ + "▁UnitedHealth", + -15.266785621643066 + ], + [ + "ITTER", + -15.266792297363281 + ], + [ + "▁avidly", + -15.266806602478027 + ], + [ + "▁beastly", + -15.266824722290039 + ], + [ + "▁tannic", + -15.266829490661621 + ], + [ + "▁ulnar", + -15.266865730285645 + ], + [ + "▁melded", + -15.266868591308594 + ], + [ + "UGE", + -15.266897201538086 + ], + [ + "▁Trico", + -15.2669095993042 + ], + [ + "▁Naismith", + -15.266927719116211 + ], + [ + "▁binaural", + -15.266929626464844 + ], + [ + "▁Vario", + -15.26695442199707 + ], + [ + "▁Reprod", + -15.26695728302002 + ], + [ + "▁appraising", + -15.266987800598145 + ], + [ + "▁tabla", + -15.266988754272461 + ], + [ + "▁Janette", + -15.26699447631836 + ], + [ + "ärk", + -15.267046928405762 + ], + [ + "▁outclassed", + -15.26705551147461 + ], + [ + "plac", + -15.267114639282227 + ], + [ + "▁aphid", + -15.267139434814453 + ], + [ + "marca", + -15.267142295837402 + ], + [ + "▁Brito", + -15.267146110534668 + ], + [ + "▁autocrat", + -15.267168998718262 + ], + [ + "fortunate", + -15.26718807220459 + ], + [ + "▁Whitmer", + -15.267190933227539 + ], + [ + "atlas", + -15.267200469970703 + ], + [ + "▁Sartori", + -15.26720905303955 + ], + [ + "▁flathead", + -15.267216682434082 + ], + [ + "▁Bolle", + -15.267220497131348 + ], + [ + "▁zimbabwe", + -15.267260551452637 + ], + [ + "Decision", + -15.267280578613281 + ], + [ + "▁nashville", + -15.267294883728027 + ], + [ + "Enabled", + -15.267305374145508 + ], + [ + "▁retinoid", + -15.267372131347656 + ], + [ + "▁TUI", + -15.267385482788086 + ], + [ + "▁∞", + -15.267415046691895 + ], + [ + "▁Jeg", + -15.267443656921387 + ], + [ + "▁theatrically", + -15.267451286315918 + ], + [ + "▁Lank", + -15.267459869384766 + ], + [ + "▁pennsylvania", + -15.267486572265625 + ], + [ + "huizen", + -15.267498970031738 + ], + [ + "▁clincher", + -15.26754379272461 + ], + [ + "▁Chola", + -15.267609596252441 + ], + [ + "▁deutschen", + -15.267620086669922 + ], + [ + "▁PTZ", + -15.2676420211792 + ], + [ + "▁enlivened", + -15.267651557922363 + ], + [ + "▁Mountaineer", + -15.26769733428955 + ], + [ + "ления", + -15.2677001953125 + ], + [ + "ARIO", + -15.267722129821777 + ], + [ + "Bullet", + -15.267740249633789 + ], + [ + "Weekend", + -15.267740249633789 + ], + [ + "▁EBOOK", + -15.267745971679688 + ], + [ + "▁Catlin", + -15.267775535583496 + ], + [ + "▁activewear", + -15.267816543579102 + ], + [ + "Whilst", + -15.267841339111328 + ], + [ + "mayo", + -15.267871856689453 + ], + [ + "Kentucky", + -15.267877578735352 + ], + [ + "Fetish", + -15.267892837524414 + ], + [ + "Basket", + -15.267909049987793 + ], + [ + "▁Autoimmune", + -15.267932891845703 + ], + [ + "▁Infusionsoft", + -15.267934799194336 + ], + [ + "Loving", + -15.267938613891602 + ], + [ + "▁HARRIS", + -15.267948150634766 + ], + [ + "rapper", + -15.268004417419434 + ], + [ + "Ë", + -15.268061637878418 + ], + [ + "▁FOREST", + -15.26806640625 + ], + [ + "▁Guyanese", + -15.268081665039062 + ], + [ + "▁Kerman", + -15.268082618713379 + ], + [ + "rkel", + -15.268115043640137 + ], + [ + "▁edward", + -15.26812744140625 + ], + [ + "Randy", + -15.268136024475098 + ], + [ + "▁vitiligo", + -15.268218994140625 + ], + [ + "▁Sharkey", + -15.268227577209473 + ], + [ + "prene", + -15.268255233764648 + ], + [ + "плат", + -15.268269538879395 + ], + [ + "CHEN", + -15.268301963806152 + ], + [ + "▁Vivint", + -15.268314361572266 + ], + [ + "ắ", + -15.26832389831543 + ], + [ + "▁Clydesdale", + -15.268389701843262 + ], + [ + "▁brachial", + -15.268412590026855 + ], + [ + "▁MediaWiki", + -15.268418312072754 + ], + [ + "▁bashful", + -15.26841926574707 + ], + [ + "Thru", + -15.268465042114258 + ], + [ + "friction", + -15.268489837646484 + ], + [ + "▁TECHNICAL", + -15.268497467041016 + ], + [ + "▁Merging", + -15.268514633178711 + ], + [ + "prescribed", + -15.268539428710938 + ], + [ + "drip", + -15.26855754852295 + ], + [ + "▁monopolistic", + -15.268566131591797 + ], + [ + "LEAD", + -15.26858139038086 + ], + [ + "IAH", + -15.268603324890137 + ], + [ + "2222", + -15.268604278564453 + ], + [ + "▁Tourmaline", + -15.268619537353516 + ], + [ + "▁Zenit", + -15.268630981445312 + ], + [ + "▁Oberoi", + -15.268633842468262 + ], + [ + "nephew", + -15.268640518188477 + ], + [ + "NIR", + -15.26865291595459 + ], + [ + "▁Symfony", + -15.268654823303223 + ], + [ + "▁Kingsport", + -15.268659591674805 + ], + [ + "shifted", + -15.268684387207031 + ], + [ + "▁Halstead", + -15.268692970275879 + ], + [ + "▁Presbytery", + -15.268697738647461 + ], + [ + "▁où", + -15.268743515014648 + ], + [ + "enning", + -15.268747329711914 + ], + [ + "▁Kargil", + -15.268784523010254 + ], + [ + "▁annealed", + -15.268882751464844 + ], + [ + "▁sheepish", + -15.268925666809082 + ], + [ + "▁ppb", + -15.268951416015625 + ], + [ + "▁Keselowski", + -15.26896858215332 + ], + [ + "▁unbeliever", + -15.268969535827637 + ], + [ + "▁Stax", + -15.269021987915039 + ], + [ + "▁taro", + -15.269027709960938 + ], + [ + "▁gratin", + -15.26903247833252 + ], + [ + "Jackie", + -15.269034385681152 + ], + [ + "supposedly", + -15.269079208374023 + ], + [ + "част", + -15.269079208374023 + ], + [ + "▁eschewing", + -15.269133567810059 + ], + [ + "▁lisp", + -15.269143104553223 + ], + [ + "▁Smallwood", + -15.26916790008545 + ], + [ + "▁Quizzes", + -15.269189834594727 + ], + [ + "▁huffing", + -15.26924991607666 + ], + [ + "▁Venmo", + -15.269299507141113 + ], + [ + "▁slushy", + -15.269416809082031 + ], + [ + "▁opportunism", + -15.269426345825195 + ], + [ + "▁unrighteousness", + -15.269440650939941 + ], + [ + "▁doppelganger", + -15.269457817077637 + ], + [ + "canal", + -15.26947021484375 + ], + [ + "Carolina", + -15.269475936889648 + ], + [ + "完", + -15.269475936889648 + ], + [ + "▁Lagrange", + -15.269486427307129 + ], + [ + "▁Traitor", + -15.269493103027344 + ], + [ + "▁Riddick", + -15.269516944885254 + ], + [ + "▁Beresford", + -15.26954460144043 + ], + [ + "▁treasuries", + -15.269579887390137 + ], + [ + "▁vacuous", + -15.26960563659668 + ], + [ + "▁Jelena", + -15.269649505615234 + ], + [ + "▁Keppel", + -15.269731521606445 + ], + [ + "▁SERIOUS", + -15.26974105834961 + ], + [ + "▁Abdallah", + -15.269810676574707 + ], + [ + "▁GOR", + -15.269844055175781 + ], + [ + "▁apocryphal", + -15.269947052001953 + ], + [ + "▁Entitlement", + -15.269965171813965 + ], + [ + "haber", + -15.27000617980957 + ], + [ + "или", + -15.270025253295898 + ], + [ + "▁FFL", + -15.270029067993164 + ], + [ + "▁Xenophon", + -15.270033836364746 + ], + [ + "▁dehumanize", + -15.270051002502441 + ], + [ + "sqft", + -15.27005386352539 + ], + [ + "▁RENTAL", + -15.270063400268555 + ], + [ + "▁oilseed", + -15.27011775970459 + ], + [ + "staging", + -15.270123481750488 + ], + [ + "▁Jaffray", + -15.27013874053955 + ], + [ + "jaro", + -15.27016830444336 + ], + [ + "▁logout", + -15.270238876342773 + ], + [ + "▁Jadeja", + -15.27023983001709 + ], + [ + "Bucket", + -15.27026081085205 + ], + [ + "▁Visconti", + -15.270262718200684 + ], + [ + "▁Ismael", + -15.27029037475586 + ], + [ + "gluco", + -15.270301818847656 + ], + [ + "▁Qiao", + -15.270317077636719 + ], + [ + "1851", + -15.270349502563477 + ], + [ + "▁goofing", + -15.270362854003906 + ], + [ + "Cave", + -15.270368576049805 + ], + [ + "fler", + -15.270403861999512 + ], + [ + "BOROUGH", + -15.270419120788574 + ], + [ + "▁Abadi", + -15.270435333251953 + ], + [ + "▁Kamehameha", + -15.270453453063965 + ], + [ + "▁Harbinger", + -15.270472526550293 + ], + [ + "cotta", + -15.270493507385254 + ], + [ + "▁Tetsu", + -15.270535469055176 + ], + [ + "▁polarisation", + -15.270593643188477 + ], + [ + "▁turnbuckle", + -15.270611763000488 + ], + [ + "ewald", + -15.270641326904297 + ], + [ + "▁Empath", + -15.270655632019043 + ], + [ + "▁Archaeo", + -15.270702362060547 + ], + [ + "fermented", + -15.270724296569824 + ], + [ + "▁freemium", + -15.270726203918457 + ], + [ + "▁flavoursome", + -15.270733833312988 + ], + [ + "▁Oxidation", + -15.270736694335938 + ], + [ + "▁há", + -15.270771026611328 + ], + [ + "▁Horvath", + -15.27078628540039 + ], + [ + "▁ConocoPhillips", + -15.27080249786377 + ], + [ + "▁diffract", + -15.270837783813477 + ], + [ + "▁Celi", + -15.270841598510742 + ], + [ + "▁mohawk", + -15.270885467529297 + ], + [ + "▁LFO", + -15.270896911621094 + ], + [ + "▁birdwatching", + -15.270916938781738 + ], + [ + "▁admissibility", + -15.270977973937988 + ], + [ + "▁obscenities", + -15.270977973937988 + ], + [ + "remembered", + -15.271004676818848 + ], + [ + "▁Jahren", + -15.271026611328125 + ], + [ + "▁Tongan", + -15.271082878112793 + ], + [ + "chinese", + -15.271100997924805 + ], + [ + "▁MapReduce", + -15.271114349365234 + ], + [ + "▁Montagu", + -15.27113151550293 + ], + [ + "kicking", + -15.271138191223145 + ], + [ + "▁Vague", + -15.271146774291992 + ], + [ + "▁Coelho", + -15.27116584777832 + ], + [ + "▁prospering", + -15.271208763122559 + ], + [ + "▁SETTING", + -15.27122688293457 + ], + [ + "▁Medea", + -15.271233558654785 + ], + [ + "Fortunately", + -15.271246910095215 + ], + [ + "ோ", + -15.271257400512695 + ], + [ + "▁CapEx", + -15.271260261535645 + ], + [ + "▁Gaudreau", + -15.271309852600098 + ], + [ + "▁CAFE", + -15.271312713623047 + ], + [ + "▁PASSED", + -15.271323204040527 + ], + [ + "ирован", + -15.271327018737793 + ], + [ + "Blank", + -15.27133846282959 + ], + [ + "AIRE", + -15.271339416503906 + ], + [ + "Anywhere", + -15.27135181427002 + ], + [ + "halle", + -15.271368026733398 + ], + [ + "▁REMAIN", + -15.271380424499512 + ], + [ + "▁Keeler", + -15.27139663696289 + ], + [ + "ichel", + -15.271438598632812 + ], + [ + "▁Hsp", + -15.271498680114746 + ], + [ + "ilius", + -15.271539688110352 + ], + [ + "▁reticence", + -15.271573066711426 + ], + [ + "frig", + -15.271618843078613 + ], + [ + "▁Spir", + -15.27164363861084 + ], + [ + "FULL", + -15.271649360656738 + ], + [ + "▁Hausa", + -15.271669387817383 + ], + [ + "▁Ibuprofen", + -15.271695137023926 + ], + [ + "ège", + -15.271719932556152 + ], + [ + "▁MILE", + -15.271728515625 + ], + [ + "▁overcharging", + -15.271738052368164 + ], + [ + "▁Transactional", + -15.271758079528809 + ], + [ + "▁havin", + -15.27176570892334 + ], + [ + "▁paedophile", + -15.271781921386719 + ], + [ + "▁LESSON", + -15.271790504455566 + ], + [ + "▁underlayment", + -15.271824836730957 + ], + [ + "▁unfurnished", + -15.271827697753906 + ], + [ + "▁exportation", + -15.271828651428223 + ], + [ + "▁extensor", + -15.271848678588867 + ], + [ + "shchenko", + -15.271882057189941 + ], + [ + "Nikki", + -15.271919250488281 + ], + [ + "▁BIBLE", + -15.271961212158203 + ], + [ + "▁Urbanism", + -15.271963119506836 + ], + [ + "clamation", + -15.271978378295898 + ], + [ + "▁Nade", + -15.27198600769043 + ], + [ + "ovskaya", + -15.272013664245605 + ], + [ + "▁liftoff", + -15.272096633911133 + ], + [ + "ARRA", + -15.272162437438965 + ], + [ + "mandatory", + -15.272199630737305 + ], + [ + "▁supergroup", + -15.272235870361328 + ], + [ + "▁Scruggs", + -15.272237777709961 + ], + [ + "▁sublet", + -15.272250175476074 + ], + [ + "▁gynecomastia", + -15.272272109985352 + ], + [ + "▁phago", + -15.272302627563477 + ], + [ + "▁Sorrell", + -15.272303581237793 + ], + [ + "▁GAY", + -15.272344589233398 + ], + [ + "zuela", + -15.272350311279297 + ], + [ + "▁STF", + -15.272354125976562 + ], + [ + "▁Novella", + -15.272367477416992 + ], + [ + "▁EXEC", + -15.272428512573242 + ], + [ + "▁teepee", + -15.272457122802734 + ], + [ + "▁Endicott", + -15.272470474243164 + ], + [ + "▁Ethos", + -15.272550582885742 + ], + [ + "▁CNM", + -15.272599220275879 + ], + [ + "▁Vagabond", + -15.272604942321777 + ], + [ + "▁Huntress", + -15.272608757019043 + ], + [ + "▁erst", + -15.272679328918457 + ], + [ + "barger", + -15.27268123626709 + ], + [ + "FOUR", + -15.272690773010254 + ], + [ + "aaaaaa", + -15.27271842956543 + ], + [ + "▁Bulli", + -15.272734642028809 + ], + [ + "▁Trainor", + -15.272737503051758 + ], + [ + "perma", + -15.272782325744629 + ], + [ + "▁solemnity", + -15.272785186767578 + ], + [ + "▁Rattlesnake", + -15.272798538208008 + ], + [ + "▁substantia", + -15.272810935974121 + ], + [ + "▁chang", + -15.272817611694336 + ], + [ + "coping", + -15.272831916809082 + ], + [ + "▁AWARDS", + -15.272847175598145 + ], + [ + "Xbox", + -15.272852897644043 + ], + [ + "AMCO", + -15.272878646850586 + ], + [ + "▁Sefer", + -15.272913932800293 + ], + [ + "robotic", + -15.272974014282227 + ], + [ + "▁Lambeau", + -15.273016929626465 + ], + [ + "ディ", + -15.27306842803955 + ], + [ + "▁Entourage", + -15.273130416870117 + ], + [ + "▁Pfaff", + -15.273143768310547 + ], + [ + "▁whirring", + -15.273148536682129 + ], + [ + "▁Schmo", + -15.273198127746582 + ], + [ + "▁Herzl", + -15.273216247558594 + ], + [ + "▁sneering", + -15.273221015930176 + ], + [ + "▁naka", + -15.273222923278809 + ], + [ + "yenne", + -15.273235321044922 + ], + [ + "▁headwear", + -15.273266792297363 + ], + [ + "▁UPPER", + -15.273293495178223 + ], + [ + "▁Summerville", + -15.273331642150879 + ], + [ + "▁Grieg", + -15.273366928100586 + ], + [ + "▁splashy", + -15.273388862609863 + ], + [ + "gorie", + -15.273393630981445 + ], + [ + "▁kush", + -15.273492813110352 + ], + [ + "▁neurodevelopmental", + -15.273502349853516 + ], + [ + "stretching", + -15.273519515991211 + ], + [ + "▁MCE", + -15.273524284362793 + ], + [ + "▁Oladipo", + -15.273551940917969 + ], + [ + "▁gravesite", + -15.273557662963867 + ], + [ + "guing", + -15.2735595703125 + ], + [ + "▁reinsurer", + -15.273576736450195 + ], + [ + "▁Gomer", + -15.273598670959473 + ], + [ + "nexus", + -15.273608207702637 + ], + [ + "▁quicksand", + -15.273608207702637 + ], + [ + "▁compassionately", + -15.273622512817383 + ], + [ + "▁Chickasaw", + -15.273639678955078 + ], + [ + "▁windsurf", + -15.273656845092773 + ], + [ + "▁Kagame", + -15.273721694946289 + ], + [ + "addict", + -15.273743629455566 + ], + [ + "BORN", + -15.273768424987793 + ], + [ + "brewed", + -15.273802757263184 + ], + [ + "ECB", + -15.273807525634766 + ], + [ + "▁shitty", + -15.273818969726562 + ], + [ + "▁Mountaineering", + -15.273824691772461 + ], + [ + "güe", + -15.27387523651123 + ], + [ + "▁Pawar", + -15.273968696594238 + ], + [ + "브", + -15.273971557617188 + ], + [ + "▁Centralized", + -15.27398681640625 + ], + [ + "AAN", + -15.274063110351562 + ], + [ + "▁Washingtonian", + -15.274106979370117 + ], + [ + "▁Chabot", + -15.274107933044434 + ], + [ + "phosph", + -15.27411937713623 + ], + [ + "Xchange", + -15.274131774902344 + ], + [ + "Sustainable", + -15.274136543273926 + ], + [ + "▁Figurine", + -15.274164199829102 + ], + [ + "▁Alterna", + -15.274173736572266 + ], + [ + "▁Kunal", + -15.274175643920898 + ], + [ + "раж", + -15.274252891540527 + ], + [ + "mobilize", + -15.274255752563477 + ], + [ + "▁Wack", + -15.27426815032959 + ], + [ + "▁AGENCY", + -15.274298667907715 + ], + [ + "▁interven", + -15.274351119995117 + ], + [ + "ANDRA", + -15.274383544921875 + ], + [ + "▁HMM", + -15.274412155151367 + ], + [ + "▁LCR", + -15.274444580078125 + ], + [ + "▁Roundhouse", + -15.274457931518555 + ], + [ + "presenting", + -15.274497032165527 + ], + [ + "▁Glyph", + -15.274497032165527 + ], + [ + "▁Maharishi", + -15.274534225463867 + ], + [ + "TGA", + -15.274574279785156 + ], + [ + "▁majestically", + -15.274601936340332 + ], + [ + "▁reconstitution", + -15.274602890014648 + ], + [ + "▁HMA", + -15.27460765838623 + ], + [ + "ciclovir", + -15.274656295776367 + ], + [ + "▁Targa", + -15.274691581726074 + ], + [ + "▁egocentric", + -15.27469253540039 + ], + [ + "▁Henkel", + -15.274721145629883 + ], + [ + "▁Easing", + -15.274730682373047 + ], + [ + "▁GCE", + -15.274738311767578 + ], + [ + "▁Valladolid", + -15.274744033813477 + ], + [ + "▁Chole", + -15.274744987487793 + ], + [ + "▁smudged", + -15.274750709533691 + ], + [ + "▁PFF", + -15.274778366088867 + ], + [ + "▁horsemanship", + -15.2747802734375 + ], + [ + "▁Endoscopic", + -15.274818420410156 + ], + [ + "▁rationalism", + -15.274860382080078 + ], + [ + "▁nosedive", + -15.274869918823242 + ], + [ + "▁thalamus", + -15.274869918823242 + ], + [ + "ienda", + -15.274884223937988 + ], + [ + "▁McMullen", + -15.274955749511719 + ], + [ + "▁Nineties", + -15.274959564208984 + ], + [ + "▁Collaborator", + -15.274980545043945 + ], + [ + "▁Urol", + -15.274984359741211 + ], + [ + "▁Kalimantan", + -15.27499008178711 + ], + [ + "ofacial", + -15.274991035461426 + ], + [ + "▁sinensis", + -15.27499771118164 + ], + [ + "▁Argonne", + -15.275012969970703 + ], + [ + "▁Fritt", + -15.275017738342285 + ], + [ + "rief", + -15.275026321411133 + ], + [ + "exploration", + -15.275045394897461 + ], + [ + "▁Bolster", + -15.275057792663574 + ], + [ + "PCM", + -15.275075912475586 + ], + [ + "▁wretch", + -15.275094032287598 + ], + [ + "▁septal", + -15.275102615356445 + ], + [ + "▁Measles", + -15.275130271911621 + ], + [ + "▁xylitol", + -15.275130271911621 + ], + [ + "▁Moonshine", + -15.275223731994629 + ], + [ + "▁AUCTION", + -15.275242805480957 + ], + [ + "▁Masculine", + -15.275323867797852 + ], + [ + "▁Balor", + -15.275384902954102 + ], + [ + "▁midriff", + -15.275388717651367 + ], + [ + "▁Hannan", + -15.275442123413086 + ], + [ + "▁unwillingly", + -15.275472640991211 + ], + [ + "▁Realme", + -15.275477409362793 + ], + [ + "▁Gazi", + -15.275486946105957 + ], + [ + "▁Pinehurst", + -15.275517463684082 + ], + [ + "▁apologising", + -15.275534629821777 + ], + [ + "▁Renaud", + -15.275552749633789 + ], + [ + "▁destabilise", + -15.275571823120117 + ], + [ + "strata", + -15.275593757629395 + ], + [ + "▁foliar", + -15.275616645812988 + ], + [ + "▁Resolving", + -15.275618553161621 + ], + [ + "aspect", + -15.275652885437012 + ], + [ + "▁Burnie", + -15.275781631469727 + ], + [ + "coconut", + -15.275790214538574 + ], + [ + "▁Qualify", + -15.275795936584473 + ], + [ + "▁Hereafter", + -15.275806427001953 + ], + [ + "aude", + -15.2758150100708 + ], + [ + "▁BRIC", + -15.275834083557129 + ], + [ + "▁PDL", + -15.275845527648926 + ], + [ + "▁Prokofiev", + -15.275850296020508 + ], + [ + "▁separable", + -15.275856018066406 + ], + [ + "siphon", + -15.275904655456543 + ], + [ + "▁Reine", + -15.275959014892578 + ], + [ + "▁axiomatic", + -15.275962829589844 + ], + [ + "▁COBOL", + -15.275964736938477 + ], + [ + "▁vancomycin", + -15.27599048614502 + ], + [ + "▁speakerphone", + -15.2760009765625 + ], + [ + "▁AIMS", + -15.276016235351562 + ], + [ + "cerca", + -15.276029586791992 + ], + [ + "▁Prohibit", + -15.276046752929688 + ], + [ + "▁wicketkeeper", + -15.276046752929688 + ], + [ + "▁familiarized", + -15.276063919067383 + ], + [ + "▁Alcorn", + -15.276092529296875 + ], + [ + "alaska", + -15.276152610778809 + ], + [ + "▁Captivate", + -15.276153564453125 + ], + [ + "eske", + -15.276187896728516 + ], + [ + "BAM", + -15.276205062866211 + ], + [ + "IPCC", + -15.27621841430664 + ], + [ + "ginger", + -15.276273727416992 + ], + [ + "▁Ruta", + -15.276290893554688 + ], + [ + "▁Guardia", + -15.276291847229004 + ], + [ + "▁Lundgren", + -15.276323318481445 + ], + [ + "acryl", + -15.276373863220215 + ], + [ + "▁Sorento", + -15.276437759399414 + ], + [ + "▁desecration", + -15.27646541595459 + ], + [ + "▁Brawn", + -15.276466369628906 + ], + [ + "▁Lindgren", + -15.276466369628906 + ], + [ + "▁Í", + -15.27647876739502 + ], + [ + "▁madrid", + -15.276488304138184 + ], + [ + "Nap", + -15.276490211486816 + ], + [ + "▁sudah", + -15.276504516601562 + ], + [ + "interval", + -15.276556015014648 + ], + [ + "▁Outta", + -15.276616096496582 + ], + [ + "consensus", + -15.27666187286377 + ], + [ + "▁CRACK", + -15.276683807373047 + ], + [ + "▁Kiernan", + -15.276690483093262 + ], + [ + "▁Thriving", + -15.276705741882324 + ], + [ + "▁Zari", + -15.27672004699707 + ], + [ + "▁BMR", + -15.27673053741455 + ], + [ + "▁Bechtel", + -15.276754379272461 + ], + [ + "▁COSTS", + -15.276754379272461 + ], + [ + "▁último", + -15.276800155639648 + ], + [ + "▁Kristie", + -15.27680778503418 + ], + [ + "▁tocopherol", + -15.276814460754395 + ], + [ + "▁Quietly", + -15.27683162689209 + ], + [ + "▁crosstalk", + -15.276893615722656 + ], + [ + "▁Suitcase", + -15.276897430419922 + ], + [ + "▁Windward", + -15.276899337768555 + ], + [ + "▁교", + -15.276911735534668 + ], + [ + "▁sigil", + -15.277022361755371 + ], + [ + "SUV", + -15.277060508728027 + ], + [ + "nagel", + -15.277067184448242 + ], + [ + "▁mastitis", + -15.277092933654785 + ], + [ + "Tina", + -15.277118682861328 + ], + [ + "▁70°", + -15.277152061462402 + ], + [ + "IWA", + -15.2771577835083 + ], + [ + "Mare", + -15.277158737182617 + ], + [ + "▁Ainsley", + -15.277176856994629 + ], + [ + "razi", + -15.277188301086426 + ], + [ + "▁paxil", + -15.277190208435059 + ], + [ + "▁Gaius", + -15.277194023132324 + ], + [ + "▁Gaunt", + -15.277270317077637 + ], + [ + "▁Perseverance", + -15.277275085449219 + ], + [ + "▁Maggiore", + -15.27729320526123 + ], + [ + "taped", + -15.277356147766113 + ], + [ + "▁WAM", + -15.277379989624023 + ], + [ + "▁Panamera", + -15.277382850646973 + ], + [ + "▁Deodorant", + -15.27741527557373 + ], + [ + "▁hitching", + -15.277416229248047 + ], + [ + "▁gurney", + -15.277473449707031 + ], + [ + "▁Dynamical", + -15.277498245239258 + ], + [ + "▁Ghraib", + -15.277539253234863 + ], + [ + "▁alliteration", + -15.27754020690918 + ], + [ + "▁lintel", + -15.277563095092773 + ], + [ + "damaging", + -15.277565002441406 + ], + [ + "▁DDC", + -15.277565956115723 + ], + [ + "▁Waxing", + -15.27763557434082 + ], + [ + "▁WBS", + -15.2776517868042 + ], + [ + "▁Molinari", + -15.277652740478516 + ], + [ + "▁Fentanyl", + -15.27766227722168 + ], + [ + "▁fantasizing", + -15.277669906616211 + ], + [ + "▁Bicker", + -15.27767276763916 + ], + [ + "▁Feige", + -15.277676582336426 + ], + [ + "▁PROUD", + -15.277676582336426 + ], + [ + "vial", + -15.277730941772461 + ], + [ + "IRES", + -15.277731895446777 + ], + [ + "▁Grebe", + -15.277738571166992 + ], + [ + "▁decompile", + -15.277769088745117 + ], + [ + "▁Elko", + -15.277802467346191 + ], + [ + "▁SHOPPING", + -15.277824401855469 + ], + [ + "▁risque", + -15.277835845947266 + ], + [ + "▁SCV", + -15.27784252166748 + ], + [ + "ijen", + -15.277929306030273 + ], + [ + "aspartate", + -15.277939796447754 + ], + [ + "TeX", + -15.277941703796387 + ], + [ + "▁Karyn", + -15.277998924255371 + ], + [ + "Sole", + -15.278010368347168 + ], + [ + "▁granddad", + -15.2780122756958 + ], + [ + "▁mycotoxin", + -15.278014183044434 + ], + [ + "▁NADA", + -15.278035163879395 + ], + [ + "▁Hiccup", + -15.278120040893555 + ], + [ + "▁Staining", + -15.27812385559082 + ], + [ + "▁Kuroda", + -15.278130531311035 + ], + [ + "▁Asturias", + -15.27813720703125 + ], + [ + "▁Lawrie", + -15.27815055847168 + ], + [ + "▁multifarious", + -15.278155326843262 + ], + [ + "▁Holme", + -15.278162956237793 + ], + [ + "▁Purvis", + -15.278170585632324 + ], + [ + "▁recycler", + -15.278214454650879 + ], + [ + "▁Harland", + -15.278220176696777 + ], + [ + "▁ANYWHERE", + -15.278237342834473 + ], + [ + "▁Dravid", + -15.27828598022461 + ], + [ + "ITATION", + -15.278294563293457 + ], + [ + "▁Birkenhead", + -15.278313636779785 + ], + [ + "▁JERUSALEM", + -15.278313636779785 + ], + [ + "▁Energi", + -15.278362274169922 + ], + [ + "▁TAMPA", + -15.278365135192871 + ], + [ + "▁Shimizu", + -15.278403282165527 + ], + [ + "▁hollering", + -15.278409004211426 + ], + [ + "▁Toothbrush", + -15.278409957885742 + ], + [ + "PROM", + -15.278450012207031 + ], + [ + "▁McColl", + -15.278450965881348 + ], + [ + "▁Jaan", + -15.278454780578613 + ], + [ + "▁Exalted", + -15.278507232666016 + ], + [ + "▁DECOR", + -15.278541564941406 + ], + [ + "▁από", + -15.278542518615723 + ], + [ + "▁sacchar", + -15.278571128845215 + ], + [ + "▁Prospecting", + -15.2786283493042 + ], + [ + "▁jobseekers", + -15.278664588928223 + ], + [ + "▁Mesoamerica", + -15.278676986694336 + ], + [ + "▁CND", + -15.278682708740234 + ], + [ + "Shaw", + -15.278684616088867 + ], + [ + "▁PhenQ", + -15.278687477111816 + ], + [ + "▁Copier", + -15.278707504272461 + ], + [ + "▁Greensburg", + -15.278707504272461 + ], + [ + "iculate", + -15.278765678405762 + ], + [ + "égi", + -15.27877140045166 + ], + [ + "▁Cookware", + -15.27877140045166 + ], + [ + "▁MoviePass", + -15.278778076171875 + ], + [ + "IZER", + -15.278785705566406 + ], + [ + "waki", + -15.27880573272705 + ], + [ + "▁Zahid", + -15.278836250305176 + ], + [ + "▁FDM", + -15.278850555419922 + ], + [ + "municipal", + -15.27885627746582 + ], + [ + "ɡ", + -15.278858184814453 + ], + [ + "▁grund", + -15.278862953186035 + ], + [ + "▁panko", + -15.278868675231934 + ], + [ + "▁Endoscopy", + -15.278879165649414 + ], + [ + "▁broached", + -15.278882026672363 + ], + [ + "вать", + -15.278902053833008 + ], + [ + "▁tienen", + -15.278923034667969 + ], + [ + "ulani", + -15.278968811035156 + ], + [ + "▁Bosphorus", + -15.278983116149902 + ], + [ + "▁Ege", + -15.279006958007812 + ], + [ + "NHA", + -15.27901554107666 + ], + [ + "▁Trombone", + -15.27903938293457 + ], + [ + "▁paddies", + -15.279045104980469 + ], + [ + "▁Booze", + -15.279047012329102 + ], + [ + "▁DIET", + -15.279058456420898 + ], + [ + "▁Eugenio", + -15.279078483581543 + ], + [ + "cosis", + -15.279080390930176 + ], + [ + "▁Anthropologist", + -15.279080390930176 + ], + [ + "▁grizzled", + -15.279107093811035 + ], + [ + "Halloran", + -15.279138565063477 + ], + [ + "▁inguinal", + -15.279145240783691 + ], + [ + "▁cellulosic", + -15.279282569885254 + ], + [ + "▁pcb", + -15.279305458068848 + ], + [ + "▁Amendola", + -15.279362678527832 + ], + [ + "▁creaky", + -15.279414176940918 + ], + [ + "▁EIR", + -15.279460906982422 + ], + [ + "▁sympath", + -15.279485702514648 + ], + [ + "▁LaVe", + -15.279502868652344 + ], + [ + "▁Iguodala", + -15.279529571533203 + ], + [ + "▁anesthetized", + -15.279547691345215 + ], + [ + "▁huffed", + -15.279547691345215 + ], + [ + "PSU", + -15.279646873474121 + ], + [ + "addr", + -15.279653549194336 + ], + [ + "▁Simo", + -15.279653549194336 + ], + [ + "▁gimme", + -15.27967643737793 + ], + [ + "allocation", + -15.279685020446777 + ], + [ + "▁PGC", + -15.279699325561523 + ], + [ + "HEY", + -15.279709815979004 + ], + [ + "▁Kye", + -15.279773712158203 + ], + [ + "▁Unchained", + -15.279776573181152 + ], + [ + "▁Pompidou", + -15.279777526855469 + ], + [ + "▁Soluble", + -15.279824256896973 + ], + [ + "▁SIV", + -15.279878616333008 + ], + [ + "forgiveness", + -15.279966354370117 + ], + [ + "▁Konkan", + -15.280010223388672 + ], + [ + "▁Explode", + -15.280054092407227 + ], + [ + "▁Wiesbaden", + -15.280058860778809 + ], + [ + "▁Junker", + -15.280061721801758 + ], + [ + "crawler", + -15.280064582824707 + ], + [ + "▁Teradata", + -15.280069351196289 + ], + [ + "▁gör", + -15.280138969421387 + ], + [ + "▁Matterhorn", + -15.280197143554688 + ], + [ + "▁Turnkey", + -15.280224800109863 + ], + [ + "▁Foyle", + -15.280271530151367 + ], + [ + "SWEET", + -15.280280113220215 + ], + [ + "リー", + -15.280288696289062 + ], + [ + "▁fakt", + -15.280290603637695 + ], + [ + "▁reinterpreted", + -15.280291557312012 + ], + [ + "▁Minna", + -15.28029727935791 + ], + [ + "▁gastropod", + -15.280320167541504 + ], + [ + "▁Nussbaum", + -15.280341148376465 + ], + [ + "▁misplace", + -15.280357360839844 + ], + [ + "▁wayfinding", + -15.280396461486816 + ], + [ + "▁elucidation", + -15.280411720275879 + ], + [ + "▁Buj", + -15.280425071716309 + ], + [ + "▁shoelaces", + -15.280430793762207 + ], + [ + "▁leuco", + -15.280433654785156 + ], + [ + "▁वि", + -15.280442237854004 + ], + [ + "CrossRef", + -15.280462265014648 + ], + [ + "Actor", + -15.280464172363281 + ], + [ + "▁dehumanizing", + -15.280465126037598 + ], + [ + "wap", + -15.280488967895508 + ], + [ + "▁uncapped", + -15.280502319335938 + ], + [ + "TAKE", + -15.280525207519531 + ], + [ + "entertain", + -15.28052806854248 + ], + [ + "▁Skee", + -15.280591011047363 + ], + [ + "▁Hilux", + -15.280632019042969 + ], + [ + "▁Iwata", + -15.280647277832031 + ], + [ + "kubo", + -15.280660629272461 + ], + [ + "▁ÃÂ", + -15.280685424804688 + ], + [ + "▁cytology", + -15.280691146850586 + ], + [ + "▁teabag", + -15.280732154846191 + ], + [ + "▁gnarled", + -15.280765533447266 + ], + [ + "▁amperage", + -15.280854225158691 + ], + [ + "▁lamentation", + -15.28089714050293 + ], + [ + "▁rw", + -15.280914306640625 + ], + [ + "pupil", + -15.280926704406738 + ], + [ + "▁YOUTH", + -15.280937194824219 + ], + [ + "▁FireWire", + -15.280961036682129 + ], + [ + "▁VIRGINIA", + -15.28102970123291 + ], + [ + "▁Zadar", + -15.281039237976074 + ], + [ + "▁Pavl", + -15.28106689453125 + ], + [ + "▁scanty", + -15.281079292297363 + ], + [ + "▁enamoured", + -15.281083106994629 + ], + [ + "▁Novotel", + -15.281091690063477 + ], + [ + "▁unquestioning", + -15.281225204467773 + ], + [ + "udian", + -15.281265258789062 + ], + [ + "▁unadorned", + -15.281277656555176 + ], + [ + "▁Pornhub", + -15.281282424926758 + ], + [ + "▁Abramson", + -15.281291961669922 + ], + [ + "nbc", + -15.281327247619629 + ], + [ + "▁unknowing", + -15.281344413757324 + ], + [ + "ती", + -15.281349182128906 + ], + [ + "▁Drowning", + -15.28139591217041 + ], + [ + "şa", + -15.281416893005371 + ], + [ + "▁tomatillo", + -15.281420707702637 + ], + [ + "▁Durch", + -15.28143310546875 + ], + [ + "▁Getzlaf", + -15.281471252441406 + ], + [ + "▁amortized", + -15.281472206115723 + ], + [ + "▁Brooker", + -15.281474113464355 + ], + [ + "▁Hadron", + -15.281487464904785 + ], + [ + "ें", + -15.281508445739746 + ], + [ + "Chad", + -15.281556129455566 + ], + [ + "Crowd", + -15.281586647033691 + ], + [ + "blica", + -15.281628608703613 + ], + [ + "arrival", + -15.281659126281738 + ], + [ + "persistent", + -15.281668663024902 + ], + [ + "chancellor", + -15.28167724609375 + ], + [ + "▁Outboard", + -15.281678199768066 + ], + [ + "Strategic", + -15.28176498413086 + ], + [ + "▁congruence", + -15.281771659851074 + ], + [ + "Predict", + -15.28177547454834 + ], + [ + "▁slouchy", + -15.281778335571289 + ], + [ + "тель", + -15.281804084777832 + ], + [ + "▁harmonised", + -15.281807899475098 + ], + [ + "▁Courageous", + -15.281834602355957 + ], + [ + "▁Enforcer", + -15.281843185424805 + ], + [ + "kip", + -15.281853675842285 + ], + [ + "favour", + -15.281871795654297 + ], + [ + "▁Lullaby", + -15.281878471374512 + ], + [ + "yric", + -15.28188419342041 + ], + [ + "▁mitten", + -15.281907081604004 + ], + [ + "Entity", + -15.281944274902344 + ], + [ + "▁Ahhhh", + -15.28194808959961 + ], + [ + "▁Tiber", + -15.281981468200684 + ], + [ + "▁Naha", + -15.281983375549316 + ], + [ + "▁Münster", + -15.282054901123047 + ], + [ + "▁française", + -15.282061576843262 + ], + [ + "▁bullseye", + -15.282078742980957 + ], + [ + "▁Gehr", + -15.282079696655273 + ], + [ + "younger", + -15.282110214233398 + ], + [ + "▁PLAIN", + -15.28211498260498 + ], + [ + "▁Cabling", + -15.282119750976562 + ], + [ + "▁Desired", + -15.282148361206055 + ], + [ + "▁Guz", + -15.282196044921875 + ], + [ + "▁ח", + -15.282203674316406 + ], + [ + "▁Bloemfontein", + -15.282231330871582 + ], + [ + "▁MCH", + -15.282267570495605 + ], + [ + "▁RESULTING", + -15.282273292541504 + ], + [ + "▁Clipboard", + -15.282306671142578 + ], + [ + "▁Galax", + -15.282332420349121 + ], + [ + "▁Keren", + -15.28233528137207 + ], + [ + "▁Ararat", + -15.282431602478027 + ], + [ + "▁Ramón", + -15.282459259033203 + ], + [ + "▁Stavanger", + -15.282464981079102 + ], + [ + "Calvin", + -15.282468795776367 + ], + [ + "構成", + -15.282499313354492 + ], + [ + "▁Duchene", + -15.282527923583984 + ], + [ + "▁Thirst", + -15.282535552978516 + ], + [ + "▁liminal", + -15.282552719116211 + ], + [ + "▁الق", + -15.282563209533691 + ], + [ + "▁MAINTENANCE", + -15.282567977905273 + ], + [ + "▁dorky", + -15.282572746276855 + ], + [ + "▁Moonstone", + -15.282578468322754 + ], + [ + "▁Brug", + -15.282580375671387 + ], + [ + "▁quinine", + -15.282617568969727 + ], + [ + "▁Larne", + -15.282634735107422 + ], + [ + "systemic", + -15.282764434814453 + ], + [ + "▁Gilad", + -15.282770156860352 + ], + [ + "▁€500", + -15.282771110534668 + ], + [ + "▁morose", + -15.282794952392578 + ], + [ + "▁empiric", + -15.282819747924805 + ], + [ + "▁Isra", + -15.2828369140625 + ], + [ + "▁Sushma", + -15.282845497131348 + ], + [ + "▁Emmer", + -15.282849311828613 + ], + [ + "▁interloper", + -15.282852172851562 + ], + [ + "▁deporting", + -15.282857894897461 + ], + [ + "ukki", + -15.282896041870117 + ], + [ + "▁Sadio", + -15.282917022705078 + ], + [ + "▁bronco", + -15.282923698425293 + ], + [ + "▁Pattison", + -15.28294849395752 + ], + [ + "▁raglan", + -15.282992362976074 + ], + [ + "▁Dotson", + -15.283004760742188 + ], + [ + "▁exfoliant", + -15.283027648925781 + ], + [ + "▁conceited", + -15.28304672241211 + ], + [ + "Greatest", + -15.283048629760742 + ], + [ + "▁Concluding", + -15.28309440612793 + ], + [ + "▁Brembo", + -15.283100128173828 + ], + [ + "▁Congestion", + -15.283169746398926 + ], + [ + "Superb", + -15.28317642211914 + ], + [ + "▁bodega", + -15.283193588256836 + ], + [ + "▁hosiery", + -15.28324031829834 + ], + [ + "singular", + -15.283304214477539 + ], + [ + "▁Produ", + -15.2833890914917 + ], + [ + "▁Sankara", + -15.283390045166016 + ], + [ + "▁Kerch", + -15.283446311950684 + ], + [ + "▁Revital", + -15.28345012664795 + ], + [ + "ggar", + -15.283489227294922 + ], + [ + "unker", + -15.28349494934082 + ], + [ + "▁cranium", + -15.283500671386719 + ], + [ + "▁Lashkar", + -15.283520698547363 + ], + [ + "▁cascaded", + -15.283574104309082 + ], + [ + "▁Priestley", + -15.283597946166992 + ], + [ + "▁STRIP", + -15.283656120300293 + ], + [ + "▁Advised", + -15.283662796020508 + ], + [ + "▁gimp", + -15.283697128295898 + ], + [ + "▁subduction", + -15.283722877502441 + ], + [ + "▁Farina", + -15.283745765686035 + ], + [ + "▁£99", + -15.283773422241211 + ], + [ + "▁sunning", + -15.283774375915527 + ], + [ + "▁Gadhafi", + -15.283788681030273 + ], + [ + "▁Attain", + -15.283820152282715 + ], + [ + "▁Macpherson", + -15.283824920654297 + ], + [ + "▁TEX", + -15.283833503723145 + ], + [ + "rossi", + -15.283870697021484 + ], + [ + "▁DreamCloud", + -15.283889770507812 + ], + [ + "上海", + -15.283916473388672 + ], + [ + "CPO", + -15.283926963806152 + ], + [ + "▁DIRECTORS", + -15.28399658203125 + ], + [ + "▁penises", + -15.284000396728516 + ], + [ + "доб", + -15.284001350402832 + ], + [ + "▁Exponential", + -15.284013748168945 + ], + [ + "▁Hibernian", + -15.284088134765625 + ], + [ + "▁equalized", + -15.28414535522461 + ], + [ + "▁Fiduciary", + -15.284161567687988 + ], + [ + "▁Sturges", + -15.284164428710938 + ], + [ + "提", + -15.284172058105469 + ], + [ + "▁Cecily", + -15.284231185913086 + ], + [ + "▁Kennard", + -15.284233093261719 + ], + [ + "▁monger", + -15.284245491027832 + ], + [ + "▁Stratus", + -15.284247398376465 + ], + [ + "▁HOM", + -15.284256935119629 + ], + [ + "▁BYOB", + -15.284257888793945 + ], + [ + "▁Punto", + -15.284294128417969 + ], + [ + "aaaaaaaaa", + -15.284308433532715 + ], + [ + "ieff", + -15.284331321716309 + ], + [ + "▁ferried", + -15.284381866455078 + ], + [ + "▁minut", + -15.28438949584961 + ], + [ + "▁RAISE", + -15.284421920776367 + ], + [ + "Franco", + -15.28445816040039 + ], + [ + "▁REGARDING", + -15.28451156616211 + ], + [ + "modernist", + -15.284518241882324 + ], + [ + "▁Msgr", + -15.284574508666992 + ], + [ + "▁colonialist", + -15.284584999084473 + ], + [ + "▁mouthguard", + -15.284611701965332 + ], + [ + "▁Underwriting", + -15.284634590148926 + ], + [ + "lotti", + -15.284647941589355 + ], + [ + "▁hydrolyzed", + -15.284664154052734 + ], + [ + "RRC", + -15.284675598144531 + ], + [ + "▁crankcase", + -15.284706115722656 + ], + [ + "nucleate", + -15.28476333618164 + ], + [ + "▁abattoir", + -15.28476333618164 + ], + [ + "▁muli", + -15.284857749938965 + ], + [ + "▁Pellegrino", + -15.284870147705078 + ], + [ + "▁sheathed", + -15.284897804260254 + ], + [ + "வி", + -15.284923553466797 + ], + [ + "▁balsam", + -15.284942626953125 + ], + [ + "▁Diffuse", + -15.284997940063477 + ], + [ + "▁Livia", + -15.285006523132324 + ], + [ + "refined", + -15.285014152526855 + ], + [ + "Cult", + -15.285056114196777 + ], + [ + "će", + -15.285128593444824 + ], + [ + "▁ruble", + -15.285158157348633 + ], + [ + "▁tenancies", + -15.285189628601074 + ], + [ + "▁EIC", + -15.285201072692871 + ], + [ + "▁OTO", + -15.28520679473877 + ], + [ + "NOAA", + -15.28524398803711 + ], + [ + "▁endovascular", + -15.285248756408691 + ], + [ + "▁CUB", + -15.285303115844727 + ], + [ + "▁Kubo", + -15.285303115844727 + ], + [ + "Adapt", + -15.285325050354004 + ], + [ + "SDL", + -15.285325050354004 + ], + [ + "▁Cespedes", + -15.285330772399902 + ], + [ + "aunce", + -15.285343170166016 + ], + [ + "▁PLANS", + -15.285356521606445 + ], + [ + "Wife", + -15.285359382629395 + ], + [ + "poietic", + -15.285393714904785 + ], + [ + "CDN", + -15.28539752960205 + ], + [ + "▁få", + -15.285404205322266 + ], + [ + "▁IPSec", + -15.285408973693848 + ], + [ + "TEMP", + -15.285504341125488 + ], + [ + "▁TAK", + -15.285508155822754 + ], + [ + "▁Tsvangirai", + -15.285508155822754 + ], + [ + "▁Anze", + -15.285567283630371 + ], + [ + "▁semen", + -15.285588264465332 + ], + [ + "▁Boilermakers", + -15.285604476928711 + ], + [ + "▁montana", + -15.28560733795166 + ], + [ + "▁Weisz", + -15.285614967346191 + ], + [ + "▁Thorp", + -15.285664558410645 + ], + [ + "▁Laverne", + -15.285685539245605 + ], + [ + "Mitchell", + -15.285747528076172 + ], + [ + "▁Rosette", + -15.28576374053955 + ], + [ + "▁Babbitt", + -15.285767555236816 + ], + [ + "▁Giggle", + -15.285783767700195 + ], + [ + "▁Ritu", + -15.285829544067383 + ], + [ + "▁Intracoastal", + -15.285848617553711 + ], + [ + "▁Billerica", + -15.285865783691406 + ], + [ + "gnostic", + -15.285947799682617 + ], + [ + "couch", + -15.2859525680542 + ], + [ + "▁Revista", + -15.285979270935059 + ], + [ + "▁contrib", + -15.28600788116455 + ], + [ + "▁anthracite", + -15.286041259765625 + ], + [ + "▁Reliant", + -15.2860746383667 + ], + [ + "GUARD", + -15.286077499389648 + ], + [ + "▁corsage", + -15.286089897155762 + ], + [ + "▁Himmel", + -15.286099433898926 + ], + [ + "▁Henrico", + -15.286112785339355 + ], + [ + "Burg", + -15.286128997802734 + ], + [ + "▁oozed", + -15.28612995147705 + ], + [ + "▁Insurer", + -15.286134719848633 + ], + [ + "▁FMR", + -15.286145210266113 + ], + [ + "deprecation", + -15.286187171936035 + ], + [ + "testosterone", + -15.286191940307617 + ], + [ + "▁Carbine", + -15.28620433807373 + ], + [ + "▁Lumberjack", + -15.286205291748047 + ], + [ + "Closed", + -15.286232948303223 + ], + [ + "▁Tiana", + -15.286245346069336 + ], + [ + "▁Luger", + -15.28627872467041 + ], + [ + "▁Harwich", + -15.286301612854004 + ], + [ + "▁faci", + -15.286310195922852 + ], + [ + "iformes", + -15.286376953125 + ], + [ + "uyen", + -15.286382675170898 + ], + [ + "▁Mizuho", + -15.286415100097656 + ], + [ + "fäl", + -15.2864408493042 + ], + [ + "▁McSally", + -15.286450386047363 + ], + [ + "▁ESCAPE", + -15.286459922790527 + ], + [ + "▁CURE", + -15.286494255065918 + ], + [ + "▁Virol", + -15.286502838134766 + ], + [ + "▁REPRESENTATIVE", + -15.286503791809082 + ], + [ + "▁sacrosanct", + -15.286520004272461 + ], + [ + "▁Slattery", + -15.286521911621094 + ], + [ + "▁Ironwood", + -15.286565780639648 + ], + [ + "WAT", + -15.286603927612305 + ], + [ + "blom", + -15.286638259887695 + ], + [ + "▁acrylate", + -15.286653518676758 + ], + [ + "▁petted", + -15.286768913269043 + ], + [ + "▁Medalist", + -15.286809921264648 + ], + [ + "farming", + -15.286829948425293 + ], + [ + "GOOD", + -15.28686237335205 + ], + [ + "ivorous", + -15.286887168884277 + ], + [ + "▁nila", + -15.286890983581543 + ], + [ + "▁ensign", + -15.286897659301758 + ], + [ + "reserved", + -15.286908149719238 + ], + [ + "▁Gilder", + -15.286955833435059 + ], + [ + "communities", + -15.286959648132324 + ], + [ + "▁cliched", + -15.286969184875488 + ], + [ + "▁isolationist", + -15.286999702453613 + ], + [ + "▁NLT", + -15.287020683288574 + ], + [ + "Earlier", + -15.287027359008789 + ], + [ + "▁Bugle", + -15.287032127380371 + ], + [ + "▁FUCK", + -15.287033081054688 + ], + [ + "Pressure", + -15.287094116210938 + ], + [ + "▁Bridle", + -15.287094116210938 + ], + [ + "▁Tambu", + -15.28715991973877 + ], + [ + "▁weaponized", + -15.287163734436035 + ], + [ + "▁DOW", + -15.287176132202148 + ], + [ + "▁Gramsci", + -15.287206649780273 + ], + [ + "▁Typography", + -15.287237167358398 + ], + [ + "चा", + -15.287266731262207 + ], + [ + "▁ASCO", + -15.2872896194458 + ], + [ + "▁Nigam", + -15.287290573120117 + ], + [ + "▁Procession", + -15.287338256835938 + ], + [ + "▁needlepoint", + -15.287368774414062 + ], + [ + "▁RTW", + -15.287428855895996 + ], + [ + "ramani", + -15.287432670593262 + ], + [ + "▁Factoring", + -15.28743839263916 + ], + [ + "▁Chirico", + -15.287495613098145 + ], + [ + "▁Ravine", + -15.287514686584473 + ], + [ + "hobby", + -15.287545204162598 + ], + [ + "▁SAIC", + -15.287546157836914 + ], + [ + "▁Pvc", + -15.287576675415039 + ], + [ + "SPEC", + -15.287618637084961 + ], + [ + "▁kPa", + -15.28767204284668 + ], + [ + "awski", + -15.28768253326416 + ], + [ + "▁NGA", + -15.287701606750488 + ], + [ + "▁christianity", + -15.287724494934082 + ], + [ + "Caroline", + -15.2877836227417 + ], + [ + "▁excrete", + -15.28780460357666 + ], + [ + "▁Chek", + -15.287860870361328 + ], + [ + "▁Higashi", + -15.287890434265137 + ], + [ + "Judy", + -15.287897109985352 + ], + [ + "▁Infantino", + -15.287900924682617 + ], + [ + "▁Isotope", + -15.287907600402832 + ], + [ + "URRY", + -15.287922859191895 + ], + [ + "▁hubbub", + -15.287935256958008 + ], + [ + "▁Whiplash", + -15.287968635559082 + ], + [ + "▁Giv", + -15.28800106048584 + ], + [ + "quiz", + -15.288020133972168 + ], + [ + "rissa", + -15.28802490234375 + ], + [ + "▁sundial", + -15.28805923461914 + ], + [ + "▁Leyte", + -15.288067817687988 + ], + [ + "▁Homa", + -15.28808307647705 + ], + [ + "HTP", + -15.288122177124023 + ], + [ + "Complex", + -15.288128852844238 + ], + [ + "EBP", + -15.288140296936035 + ], + [ + "▁Mazza", + -15.288147926330566 + ], + [ + "▁McInnes", + -15.288155555725098 + ], + [ + "▁Tibbetts", + -15.288155555725098 + ], + [ + "▁tä", + -15.288162231445312 + ], + [ + "▁Mouton", + -15.288235664367676 + ], + [ + "▁Madrigal", + -15.288286209106445 + ], + [ + "▁rile", + -15.288354873657227 + ], + [ + "▁kitschy", + -15.288386344909668 + ], + [ + "▁JOHANNESBURG", + -15.28840446472168 + ], + [ + "▁cabernet", + -15.28840446472168 + ], + [ + "▁Weezer", + -15.288413047790527 + ], + [ + "▁Thacker", + -15.288419723510742 + ], + [ + "▁Seaboard", + -15.28847599029541 + ], + [ + "ILIA", + -15.288488388061523 + ], + [ + "له", + -15.288514137268066 + ], + [ + "▁blunted", + -15.288535118103027 + ], + [ + "▁ARCA", + -15.288537979125977 + ], + [ + "passport", + -15.288689613342285 + ], + [ + "COLOR", + -15.288694381713867 + ], + [ + "▁PAIR", + -15.288788795471191 + ], + [ + "▁MOBI", + -15.28882884979248 + ], + [ + "▁Cyp", + -15.288919448852539 + ], + [ + "▁Corten", + -15.288921356201172 + ], + [ + "▁PROGRESS", + -15.288921356201172 + ], + [ + "▁ribcage", + -15.288981437683105 + ], + [ + "▁goverment", + -15.288991928100586 + ], + [ + "청", + -15.288991928100586 + ], + [ + "▁reframing", + -15.288997650146484 + ], + [ + "Below", + -15.2889986038208 + ], + [ + "▁Kuchar", + -15.289013862609863 + ], + [ + "▁Freeform", + -15.289018630981445 + ], + [ + "▁PRODUCE", + -15.289027214050293 + ], + [ + "FAIR", + -15.289045333862305 + ], + [ + "▁Antigen", + -15.289073944091797 + ], + [ + "▁Ballymena", + -15.289085388183594 + ], + [ + "▁Zohar", + -15.289088249206543 + ], + [ + "▁comple", + -15.289111137390137 + ], + [ + "colle", + -15.289113998413086 + ], + [ + "▁spiffy", + -15.289134979248047 + ], + [ + "▁Destroyed", + -15.289137840270996 + ], + [ + "▁Beispiel", + -15.289192199707031 + ], + [ + "▁Colliery", + -15.289193153381348 + ], + [ + "▁dissociative", + -15.289223670959473 + ], + [ + "▁Raonic", + -15.289230346679688 + ], + [ + "serialize", + -15.28923225402832 + ], + [ + "▁Purr", + -15.289247512817383 + ], + [ + "piratory", + -15.28929328918457 + ], + [ + "tuximab", + -15.289363861083984 + ], + [ + "rendered", + -15.289396286010742 + ], + [ + "▁Tracie", + -15.289422988891602 + ], + [ + "▁CARRIE", + -15.289434432983398 + ], + [ + "▁Bountiful", + -15.28945541381836 + ], + [ + "▁Anju", + -15.289470672607422 + ], + [ + "▁Nuri", + -15.289474487304688 + ], + [ + "believer", + -15.289487838745117 + ], + [ + "▁Matrimony", + -15.289514541625977 + ], + [ + "▁bestowing", + -15.289531707763672 + ], + [ + "▁niggling", + -15.289546012878418 + ], + [ + "▁Abstraction", + -15.289549827575684 + ], + [ + "▁Glacial", + -15.289573669433594 + ], + [ + "▁edmonton", + -15.289650917053223 + ], + [ + "▁재", + -15.289667129516602 + ], + [ + "▁Mendenhall", + -15.289669036865234 + ], + [ + "▁Tisdale", + -15.289689064025879 + ], + [ + "▁hibernating", + -15.289704322814941 + ], + [ + "citabine", + -15.28972339630127 + ], + [ + "hepatic", + -15.289752960205078 + ], + [ + "reasonably", + -15.289752960205078 + ], + [ + "fumi", + -15.289789199829102 + ], + [ + "▁Roden", + -15.289793014526367 + ], + [ + "▁Pawnee", + -15.289844512939453 + ], + [ + "▁Geer", + -15.28989315032959 + ], + [ + "rrea", + -15.289896011352539 + ], + [ + "▁Grimaldi", + -15.28997802734375 + ], + [ + "▁Confucianism", + -15.290021896362305 + ], + [ + "▁Copacabana", + -15.290042877197266 + ], + [ + "riki", + -15.290060043334961 + ], + [ + "▁Gruyter", + -15.290114402770996 + ], + [ + "▁Rajkumar", + -15.290122032165527 + ], + [ + "▁FTW", + -15.290169715881348 + ], + [ + "▁Cesc", + -15.290262222290039 + ], + [ + "biologist", + -15.290267944335938 + ], + [ + "▁Eamonn", + -15.290386199951172 + ], + [ + "▁freewheeling", + -15.290403366088867 + ], + [ + "▁Slipcover", + -15.290414810180664 + ], + [ + "▁CREEK", + -15.290454864501953 + ], + [ + "▁aviary", + -15.2904634475708 + ], + [ + "▁blooper", + -15.29047679901123 + ], + [ + "▁vou", + -15.290482521057129 + ], + [ + "▁Jebel", + -15.290485382080078 + ], + [ + "viso", + -15.290520668029785 + ], + [ + "▁Hasegawa", + -15.290541648864746 + ], + [ + "▁От", + -15.290552139282227 + ], + [ + "▁Pilsner", + -15.290579795837402 + ], + [ + "▁meekly", + -15.290610313415527 + ], + [ + "▁nutritive", + -15.290637969970703 + ], + [ + "▁comorbidity", + -15.290645599365234 + ], + [ + "FSB", + -15.290689468383789 + ], + [ + "▁Sawmill", + -15.290718078613281 + ], + [ + "Classical", + -15.290749549865723 + ], + [ + "▁precipitating", + -15.290756225585938 + ], + [ + "▁£36", + -15.29080581665039 + ], + [ + "nucleo", + -15.29085922241211 + ], + [ + "▁Те", + -15.290862083435059 + ], + [ + "▁Headland", + -15.29090404510498 + ], + [ + "့", + -15.290919303894043 + ], + [ + "onius", + -15.290928840637207 + ], + [ + "akkal", + -15.290964126586914 + ], + [ + "▁internalization", + -15.290987014770508 + ], + [ + "▁WITNESS", + -15.291060447692871 + ], + [ + "ही", + -15.291146278381348 + ], + [ + "▁Zainab", + -15.291200637817383 + ], + [ + "▁cottonwood", + -15.291204452514648 + ], + [ + "▁NLS", + -15.291268348693848 + ], + [ + "▁Amoxicillin", + -15.291291236877441 + ], + [ + "▁broking", + -15.291297912597656 + ], + [ + "▁banister", + -15.291357040405273 + ], + [ + "zadi", + -15.291364669799805 + ], + [ + "harassment", + -15.291377067565918 + ], + [ + "Activate", + -15.291418075561523 + ], + [ + "▁dramatize", + -15.291449546813965 + ], + [ + "▁littoral", + -15.291505813598633 + ], + [ + "shankar", + -15.291521072387695 + ], + [ + "issie", + -15.29155445098877 + ], + [ + "▁DFL", + -15.291555404663086 + ], + [ + "ASIAN", + -15.291594505310059 + ], + [ + "▁Chaffetz", + -15.291594505310059 + ], + [ + "▁monetarily", + -15.291596412658691 + ], + [ + "▁ATTEND", + -15.291621208190918 + ], + [ + "£7", + -15.291630744934082 + ], + [ + "▁BATHROOM", + -15.291648864746094 + ], + [ + "▁TMR", + -15.291666030883789 + ], + [ + "laro", + -15.29167652130127 + ], + [ + "mpton", + -15.291696548461914 + ], + [ + "▁Franchising", + -15.291727066040039 + ], + [ + "▁Scarab", + -15.291729927062988 + ], + [ + "▁NASD", + -15.291736602783203 + ], + [ + "▁vege", + -15.291769981384277 + ], + [ + "▁soapstone", + -15.291779518127441 + ], + [ + "▁Tinted", + -15.29178524017334 + ], + [ + "intentionally", + -15.29181957244873 + ], + [ + "Snake", + -15.291831016540527 + ], + [ + "▁Kaila", + -15.291861534118652 + ], + [ + "▁obediently", + -15.291866302490234 + ], + [ + "iction", + -15.291892051696777 + ], + [ + "Veteran", + -15.291894912719727 + ], + [ + "▁Wenzhou", + -15.29198169708252 + ], + [ + "▁Synology", + -15.292017936706543 + ], + [ + "▁ALMA", + -15.292051315307617 + ], + [ + "ehle", + -15.292054176330566 + ], + [ + "▁EFFORT", + -15.292062759399414 + ], + [ + "▁nbsp", + -15.29206371307373 + ], + [ + "Torrent", + -15.292109489440918 + ], + [ + "▁Anecdotal", + -15.292165756225586 + ], + [ + "▁klein", + -15.292236328125 + ], + [ + "▁Kokomo", + -15.292291641235352 + ], + [ + "paradise", + -15.292309761047363 + ], + [ + "AVC", + -15.292325019836426 + ], + [ + "▁Hormonal", + -15.29234504699707 + ], + [ + "▁Artistry", + -15.292445182800293 + ], + [ + "▁Logano", + -15.292482376098633 + ], + [ + "▁CAMPAIGN", + -15.292487144470215 + ], + [ + "▁promiscuity", + -15.292487144470215 + ], + [ + "doctrina", + -15.292492866516113 + ], + [ + "展", + -15.292545318603516 + ], + [ + "▁trifling", + -15.29255199432373 + ], + [ + "▁Ethyl", + -15.292558670043945 + ], + [ + "▁Dotcom", + -15.292616844177246 + ], + [ + "▁Habe", + -15.292621612548828 + ], + [ + "▁bobsled", + -15.292627334594727 + ], + [ + "Downtown", + -15.292634010314941 + ], + [ + "▁TCE", + -15.292646408081055 + ], + [ + "▁canonized", + -15.29265022277832 + ], + [ + "▁vitriolic", + -15.292684555053711 + ], + [ + "Smash", + -15.292719841003418 + ], + [ + "▁Brabant", + -15.292723655700684 + ], + [ + "morr", + -15.292778968811035 + ], + [ + "▁Riddell", + -15.292780876159668 + ], + [ + "▁hoarded", + -15.292802810668945 + ], + [ + "ALIA", + -15.292837142944336 + ], + [ + "taxes", + -15.292840957641602 + ], + [ + "▁Tagging", + -15.292841911315918 + ], + [ + "▁Saxe", + -15.29284954071045 + ], + [ + "plicit", + -15.292856216430664 + ], + [ + "▁Marinated", + -15.292863845825195 + ], + [ + "▁CLINTON", + -15.29288101196289 + ], + [ + "▁espousing", + -15.292916297912598 + ], + [ + "faux", + -15.29294204711914 + ], + [ + "です", + -15.292949676513672 + ], + [ + "▁TECHNOLOGIES", + -15.292952537536621 + ], + [ + "▁erythematosus", + -15.292952537536621 + ], + [ + "테", + -15.292952537536621 + ], + [ + "▁Anglian", + -15.292980194091797 + ], + [ + "▁Gryffindor", + -15.29300594329834 + ], + [ + "Christina", + -15.29301929473877 + ], + [ + "▁wang", + -15.29304313659668 + ], + [ + "▁bdrm", + -15.293087005615234 + ], + [ + "Bundle", + -15.293130874633789 + ], + [ + "▁FCF", + -15.293146133422852 + ], + [ + "▁©2018", + -15.2931489944458 + ], + [ + "▁Motiv", + -15.293166160583496 + ], + [ + "grub", + -15.293174743652344 + ], + [ + "Religious", + -15.293182373046875 + ], + [ + "▁لا", + -15.293193817138672 + ], + [ + "▁стран", + -15.293205261230469 + ], + [ + "▁Mobley", + -15.29321575164795 + ], + [ + "▁unleaded", + -15.293255805969238 + ], + [ + "▁glaci", + -15.293283462524414 + ], + [ + "▁acclimatize", + -15.293292045593262 + ], + [ + "▁circumvented", + -15.293292045593262 + ], + [ + "▁humorously", + -15.293293952941895 + ], + [ + "▁WGA", + -15.293375968933105 + ], + [ + "سي", + -15.293381690979004 + ], + [ + "▁sebagai", + -15.293449401855469 + ], + [ + "Proceedings", + -15.293468475341797 + ], + [ + "▁Rummy", + -15.293488502502441 + ], + [ + "▁Synchronous", + -15.2935152053833 + ], + [ + "▁Radiological", + -15.293527603149414 + ], + [ + "▁prepper", + -15.293539047241211 + ], + [ + "paedia", + -15.293578147888184 + ], + [ + "▁oocyte", + -15.293596267700195 + ], + [ + "fahren", + -15.293633460998535 + ], + [ + "▁Lalu", + -15.293646812438965 + ], + [ + "Λ", + -15.293665885925293 + ], + [ + "personnel", + -15.293679237365723 + ], + [ + "▁Pervasive", + -15.293684959411621 + ], + [ + "embra", + -15.293724060058594 + ], + [ + "AUX", + -15.29372787475586 + ], + [ + "izumab", + -15.293804168701172 + ], + [ + "exterior", + -15.29381275177002 + ], + [ + "embri", + -15.293828964233398 + ], + [ + "illness", + -15.293872833251953 + ], + [ + "▁Resnick", + -15.293890953063965 + ], + [ + "WWE", + -15.293951988220215 + ], + [ + "▁Poway", + -15.293968200683594 + ], + [ + "ksu", + -15.293987274169922 + ], + [ + "nephrine", + -15.29399585723877 + ], + [ + "touching", + -15.294005393981934 + ], + [ + "▁pried", + -15.294013977050781 + ], + [ + "▁Matri", + -15.294021606445312 + ], + [ + "▁Gorka", + -15.294032096862793 + ], + [ + "▁tikka", + -15.294079780578613 + ], + [ + "▁TPD", + -15.294084548950195 + ], + [ + "Queue", + -15.294087409973145 + ], + [ + "▁Bothell", + -15.294089317321777 + ], + [ + "▁msd", + -15.294098854064941 + ], + [ + "▁alabaster", + -15.294132232666016 + ], + [ + "▁Regulate", + -15.294154167175293 + ], + [ + "▁Coetzee", + -15.29418659210205 + ], + [ + "Carnitine", + -15.294219970703125 + ], + [ + "▁फ", + -15.294233322143555 + ], + [ + "Employment", + -15.2942476272583 + ], + [ + "▁blackmailed", + -15.294292449951172 + ], + [ + "▁Cyberspace", + -15.294327735900879 + ], + [ + "showroom", + -15.294329643249512 + ], + [ + "ட்ட", + -15.294329643249512 + ], + [ + "▁Perle", + -15.294331550598145 + ], + [ + "▁Chequers", + -15.29433822631836 + ], + [ + "▁solvable", + -15.294347763061523 + ], + [ + "近", + -15.294425010681152 + ], + [ + "▁taxicab", + -15.294465065002441 + ], + [ + "▁commutation", + -15.294495582580566 + ], + [ + "Canvas", + -15.294515609741211 + ], + [ + "▁normalised", + -15.294532775878906 + ], + [ + "▁já", + -15.294540405273438 + ], + [ + "▁YARD", + -15.294541358947754 + ], + [ + "▁Payload", + -15.294565200805664 + ], + [ + "▁Harkness", + -15.294612884521484 + ], + [ + "▁insinuating", + -15.294633865356445 + ], + [ + "▁Folkestone", + -15.294651985168457 + ], + [ + "▁Encoding", + -15.294662475585938 + ], + [ + "▁gluttony", + -15.294711112976074 + ], + [ + "EACH", + -15.294772148132324 + ], + [ + "tobacco", + -15.294805526733398 + ], + [ + "製", + -15.29488754272461 + ], + [ + "▁مح", + -15.294894218444824 + ], + [ + "▁Philosophie", + -15.294898986816406 + ], + [ + "▁Selene", + -15.295029640197754 + ], + [ + "▁Prie", + -15.295042037963867 + ], + [ + "▁Maimonides", + -15.295099258422852 + ], + [ + "▁CUE", + -15.295133590698242 + ], + [ + "niti", + -15.29515552520752 + ], + [ + "▁Koku", + -15.295170783996582 + ], + [ + "OCR", + -15.295187950134277 + ], + [ + "▁lagi", + -15.295196533203125 + ], + [ + "▁SRF", + -15.295204162597656 + ], + [ + "▁HANG", + -15.29524040222168 + ], + [ + "▁Wareham", + -15.295252799987793 + ], + [ + "▁Environmentalists", + -15.29527473449707 + ], + [ + "▁flyweight", + -15.295283317565918 + ], + [ + "▁recht", + -15.295283317565918 + ], + [ + "▁Branagh", + -15.2952880859375 + ], + [ + "apuram", + -15.295309066772461 + ], + [ + "ター", + -15.29531478881836 + ], + [ + "Bringing", + -15.29534912109375 + ], + [ + "▁obliga", + -15.295374870300293 + ], + [ + "▁turboprop", + -15.295378684997559 + ], + [ + "▁trine", + -15.295414924621582 + ], + [ + "1845", + -15.295422554016113 + ], + [ + "Moral", + -15.2954683303833 + ], + [ + "worldcat", + -15.2954740524292 + ], + [ + "▁Vog", + -15.295488357543945 + ], + [ + "ических", + -15.29556655883789 + ], + [ + "DOLL", + -15.295580863952637 + ], + [ + "▁exempting", + -15.295580863952637 + ], + [ + "▁squalid", + -15.29558277130127 + ], + [ + "▁masterminded", + -15.295612335205078 + ], + [ + "▁Nimoy", + -15.295613288879395 + ], + [ + "▁sangat", + -15.29561996459961 + ], + [ + "Medi", + -15.29565715789795 + ], + [ + "▁Beaton", + -15.295658111572266 + ], + [ + "▁kindergartner", + -15.295692443847656 + ], + [ + "▁Domini", + -15.295703887939453 + ], + [ + "▁Taming", + -15.295711517333984 + ], + [ + "8220", + -15.295731544494629 + ], + [ + "▁Convection", + -15.295854568481445 + ], + [ + "▁Dreamland", + -15.295857429504395 + ], + [ + "▁Karri", + -15.295915603637695 + ], + [ + "▁Limelight", + -15.295915603637695 + ], + [ + "客", + -15.295920372009277 + ], + [ + "▁Ambitious", + -15.295945167541504 + ], + [ + "▁nmol", + -15.295952796936035 + ], + [ + "▁Modbus", + -15.295954704284668 + ], + [ + "▁MORRIS", + -15.29600715637207 + ], + [ + "▁Shaper", + -15.296009063720703 + ], + [ + "▁Youngblood", + -15.296013832092285 + ], + [ + "▁ghoul", + -15.296013832092285 + ], + [ + "▁flori", + -15.296039581298828 + ], + [ + "▁flabby", + -15.296088218688965 + ], + [ + "▁Frum", + -15.296103477478027 + ], + [ + "judging", + -15.296112060546875 + ], + [ + "▁Coefficient", + -15.296133041381836 + ], + [ + "▁JMP", + -15.296175956726074 + ], + [ + "▁Franca", + -15.296180725097656 + ], + [ + "▁Jnr", + -15.296181678771973 + ], + [ + "▁JDM", + -15.296201705932617 + ], + [ + "▁Lanta", + -15.296208381652832 + ], + [ + "RAH", + -15.296255111694336 + ], + [ + "▁Ibsen", + -15.296258926391602 + ], + [ + "▁MariaDB", + -15.296259880065918 + ], + [ + "▁glycolysis", + -15.296285629272461 + ], + [ + "▁Krai", + -15.296286582946777 + ], + [ + "▁pinout", + -15.296303749084473 + ], + [ + "▁Lisburn", + -15.296319007873535 + ], + [ + "▁shush", + -15.29633903503418 + ], + [ + "▁Betis", + -15.296355247497559 + ], + [ + "▁Cosa", + -15.296368598937988 + ], + [ + "▁GLUT", + -15.296427726745605 + ], + [ + "▁caribbean", + -15.296443939208984 + ], + [ + "∼", + -15.2964448928833 + ], + [ + "bulu", + -15.296457290649414 + ], + [ + "▁NCERT", + -15.29653263092041 + ], + [ + "▁Plattsburgh", + -15.296533584594727 + ], + [ + "▁Gryphon", + -15.296557426452637 + ], + [ + "▁Merch", + -15.296602249145508 + ], + [ + "definable", + -15.296606063842773 + ], + [ + "▁Urquhart", + -15.296623229980469 + ], + [ + "Stroke", + -15.296642303466797 + ], + [ + "▁DIRECTLY", + -15.296673774719238 + ], + [ + "cooker", + -15.296675682067871 + ], + [ + "ţii", + -15.29670238494873 + ], + [ + "▁monetized", + -15.29670524597168 + ], + [ + "▁Doucet", + -15.296771049499512 + ], + [ + "▁Bregman", + -15.296782493591309 + ], + [ + "▁hugger", + -15.296810150146484 + ], + [ + "▁Gwynn", + -15.296818733215332 + ], + [ + "▁Cubase", + -15.296825408935547 + ], + [ + "▁Grammarly", + -15.296843528747559 + ], + [ + "▁Alternating", + -15.296855926513672 + ], + [ + "▁undisciplined", + -15.296890258789062 + ], + [ + "▁ό", + -15.296892166137695 + ], + [ + "▁cannonball", + -15.296907424926758 + ], + [ + "▁optimistically", + -15.296955108642578 + ], + [ + "Foster", + -15.29698371887207 + ], + [ + "Mississippi", + -15.296998977661133 + ], + [ + "▁UUID", + -15.297005653381348 + ], + [ + "▁Transferred", + -15.297026634216309 + ], + [ + "RELL", + -15.29703426361084 + ], + [ + "Battery", + -15.297074317932129 + ], + [ + "Lara", + -15.29716968536377 + ], + [ + "▁tradable", + -15.297176361083984 + ], + [ + "▁lasagne", + -15.2971773147583 + ], + [ + "agenda", + -15.297181129455566 + ], + [ + "▁Mojito", + -15.297207832336426 + ], + [ + "▁Sufism", + -15.297245979309082 + ], + [ + "▁Hannon", + -15.297259330749512 + ], + [ + "IFIC", + -15.297298431396484 + ], + [ + "▁methylated", + -15.297323226928711 + ], + [ + "validated", + -15.297384262084961 + ], + [ + "▁Greenhill", + -15.29741382598877 + ], + [ + "▁Kuba", + -15.297422409057617 + ], + [ + "▁Loring", + -15.297444343566895 + ], + [ + "CTR", + -15.297487258911133 + ], + [ + "▁contrite", + -15.297544479370117 + ], + [ + "▁EBM", + -15.29757308959961 + ], + [ + "informatics", + -15.29758071899414 + ], + [ + "▁Sexiest", + -15.29761028289795 + ], + [ + "▁Survived", + -15.297645568847656 + ], + [ + "▁Profiler", + -15.297700881958008 + ], + [ + "質", + -15.297707557678223 + ], + [ + "▁Sunburst", + -15.297718048095703 + ], + [ + "▁Pliskova", + -15.297736167907715 + ], + [ + "▁Riad", + -15.29773998260498 + ], + [ + "Quantum", + -15.29782485961914 + ], + [ + "▁flexes", + -15.297839164733887 + ], + [ + "▁deflationary", + -15.29784107208252 + ], + [ + "licensable", + -15.29784870147705 + ], + [ + "▁Breu", + -15.29787826538086 + ], + [ + "▁Jahangir", + -15.297890663146973 + ], + [ + "ANNY", + -15.298043251037598 + ], + [ + "rache", + -15.298046112060547 + ], + [ + "opard", + -15.298068046569824 + ], + [ + "▁BENEFITS", + -15.298164367675781 + ], + [ + "coagulant", + -15.298184394836426 + ], + [ + "Chloe", + -15.298202514648438 + ], + [ + "Weber", + -15.298203468322754 + ], + [ + "▁evidential", + -15.298215866088867 + ], + [ + "▁Fellaini", + -15.298221588134766 + ], + [ + "▁stairlift", + -15.298250198364258 + ], + [ + "▁Selah", + -15.298290252685547 + ], + [ + "àng", + -15.298307418823242 + ], + [ + "▁Nishikori", + -15.298346519470215 + ], + [ + "▁esco", + -15.298357963562012 + ], + [ + "▁indicia", + -15.298392295837402 + ], + [ + "▁kamu", + -15.298396110534668 + ], + [ + "▁dedica", + -15.29844856262207 + ], + [ + "▁marionette", + -15.298456192016602 + ], + [ + "▁Kanak", + -15.298501968383789 + ], + [ + "▁WEF", + -15.298506736755371 + ], + [ + "▁Limitless", + -15.298538208007812 + ], + [ + "▁seashell", + -15.298566818237305 + ], + [ + "Aurora", + -15.29859447479248 + ], + [ + "▁dither", + -15.298599243164062 + ], + [ + "▁IMPROVE", + -15.298601150512695 + ], + [ + "▁Slytherin", + -15.298652648925781 + ], + [ + "▁Roxie", + -15.298700332641602 + ], + [ + "▁Rossetti", + -15.298721313476562 + ], + [ + "▁RWA", + -15.298723220825195 + ], + [ + "▁bandmate", + -15.298725128173828 + ], + [ + "яв", + -15.298742294311523 + ], + [ + "▁lurked", + -15.298751831054688 + ], + [ + "▁shuttling", + -15.298768997192383 + ], + [ + "AAAAA", + -15.298776626586914 + ], + [ + "anoid", + -15.298813819885254 + ], + [ + "Ч", + -15.298831939697266 + ], + [ + "▁tearfully", + -15.29887580871582 + ], + [ + "▁CMG", + -15.298903465270996 + ], + [ + "▁ejaculate", + -15.299012184143066 + ], + [ + "▁capacit", + -15.299036026000977 + ], + [ + "▁Rasul", + -15.299068450927734 + ], + [ + "▁Exploratory", + -15.299084663391113 + ], + [ + "▁obscura", + -15.299089431762695 + ], + [ + "▁Berra", + -15.299100875854492 + ], + [ + "▁Mier", + -15.299115180969238 + ], + [ + "ника", + -15.299131393432617 + ], + [ + "▁UCR", + -15.299162864685059 + ], + [ + "udha", + -15.299212455749512 + ], + [ + "Cuba", + -15.299236297607422 + ], + [ + "▁Outsider", + -15.299246788024902 + ], + [ + "quiri", + -15.29928970336914 + ], + [ + "▁Imperative", + -15.299322128295898 + ], + [ + "▁hitchhiking", + -15.299338340759277 + ], + [ + "▁buick", + -15.299367904663086 + ], + [ + "▁lamella", + -15.2993803024292 + ], + [ + "▁Synthe", + -15.299391746520996 + ], + [ + "송", + -15.299406051635742 + ], + [ + "▁LION", + -15.299423217773438 + ], + [ + "▁feasted", + -15.29948902130127 + ], + [ + "▁Ikeda", + -15.299500465393066 + ], + [ + "▁Enrolled", + -15.29952621459961 + ], + [ + "hesh", + -15.299540519714355 + ], + [ + "▁HLS", + -15.299604415893555 + ], + [ + "▁Zacharias", + -15.299617767333984 + ], + [ + "▁daunted", + -15.299659729003906 + ], + [ + "▁XLT", + -15.299663543701172 + ], + [ + "▁Inertia", + -15.299680709838867 + ], + [ + "ích", + -15.29968547821045 + ], + [ + "▁Anwendung", + -15.29969596862793 + ], + [ + "äck", + -15.299721717834473 + ], + [ + "▁SAYING", + -15.299745559692383 + ], + [ + "▁soundbite", + -15.299771308898926 + ], + [ + "▁Osweiler", + -15.299788475036621 + ], + [ + "▁EpiPen", + -15.299820899963379 + ], + [ + "enlightened", + -15.29983139038086 + ], + [ + "▁Espionage", + -15.299857139587402 + ], + [ + "▁Ewen", + -15.299860954284668 + ], + [ + "MCP", + -15.2998628616333 + ], + [ + "▁dupatta", + -15.299875259399414 + ], + [ + "Induced", + -15.299895286560059 + ], + [ + "▁LDA", + -15.29992389678955 + ], + [ + "▁osteoclast", + -15.299948692321777 + ], + [ + "▁bln", + -15.299955368041992 + ], + [ + "▁Textual", + -15.299968719482422 + ], + [ + "▁nonrefundable", + -15.299992561340332 + ], + [ + "riddled", + -15.299999237060547 + ], + [ + "▁unoriginal", + -15.30002498626709 + ], + [ + "Wanna", + -15.30007266998291 + ], + [ + "▁Bunnies", + -15.300105094909668 + ], + [ + "▁RANCH", + -15.300119400024414 + ], + [ + "▁chicory", + -15.30012321472168 + ], + [ + "▁Supervise", + -15.300139427185059 + ], + [ + "ನ", + -15.3002347946167 + ], + [ + "▁Jagannath", + -15.300237655639648 + ], + [ + "▁Haier", + -15.300369262695312 + ], + [ + "UAV", + -15.300421714782715 + ], + [ + "▁Sandhu", + -15.300431251525879 + ], + [ + "▁antebellum", + -15.300434112548828 + ], + [ + "▁Charon", + -15.300541877746582 + ], + [ + "▁LOOKS", + -15.300566673278809 + ], + [ + "▁Minar", + -15.300589561462402 + ], + [ + "▁Mapper", + -15.300607681274414 + ], + [ + "JPG", + -15.30066204071045 + ], + [ + "▁RFQ", + -15.300714492797852 + ], + [ + "▁wideband", + -15.300772666931152 + ], + [ + "▁Mertens", + -15.30078411102295 + ], + [ + "စ", + -15.300792694091797 + ], + [ + "▁replant", + -15.300816535949707 + ], + [ + "▁fashionably", + -15.300833702087402 + ], + [ + "▁outlasted", + -15.300840377807617 + ], + [ + "▁Francona", + -15.300849914550781 + ], + [ + "▁gestalt", + -15.300891876220703 + ], + [ + "▁costliest", + -15.30090045928955 + ], + [ + "Glow", + -15.300908088684082 + ], + [ + "▁Dordrecht", + -15.30093765258789 + ], + [ + "▁Novosibirsk", + -15.30093765258789 + ], + [ + "pulled", + -15.300939559936523 + ], + [ + "pyramid", + -15.300989151000977 + ], + [ + "▁Angling", + -15.300999641418457 + ], + [ + "▁clavicle", + -15.301010131835938 + ], + [ + "Shannon", + -15.301032066345215 + ], + [ + "▁mezcal", + -15.301047325134277 + ], + [ + "▁Chaparral", + -15.301064491271973 + ], + [ + "▁Overseer", + -15.301064491271973 + ], + [ + "faz", + -15.3010835647583 + ], + [ + "▁Ooooh", + -15.301124572753906 + ], + [ + "▁Landsat", + -15.301163673400879 + ], + [ + "▁masher", + -15.301201820373535 + ], + [ + "▁Contamination", + -15.301210403442383 + ], + [ + "Molecular", + -15.301226615905762 + ], + [ + "▁fixate", + -15.30129337310791 + ], + [ + "▁blotted", + -15.301331520080566 + ], + [ + "▁Allotment", + -15.301335334777832 + ], + [ + "▁Stubb", + -15.301421165466309 + ], + [ + "hahahaha", + -15.301480293273926 + ], + [ + "▁Pelli", + -15.301480293273926 + ], + [ + "▁RECOMMENDED", + -15.301480293273926 + ], + [ + "▁lading", + -15.301506996154785 + ], + [ + "▁dramatis", + -15.301519393920898 + ], + [ + "▁excercise", + -15.301569938659668 + ], + [ + "▁Ristorante", + -15.301623344421387 + ], + [ + "▁stiffening", + -15.301667213439941 + ], + [ + "▁gunsmith", + -15.301676750183105 + ], + [ + "▁Cultura", + -15.301685333251953 + ], + [ + "▁prana", + -15.301692008972168 + ], + [ + "Elegant", + -15.301695823669434 + ], + [ + "Dublin", + -15.301725387573242 + ], + [ + "▁Naturopath", + -15.301729202270508 + ], + [ + "investigator", + -15.301748275756836 + ], + [ + "▁McClatchy", + -15.301767349243164 + ], + [ + "▁hgtv", + -15.301785469055176 + ], + [ + "▁summative", + -15.301877975463867 + ], + [ + "Timer", + -15.301880836486816 + ], + [ + "▁shuddering", + -15.301935195922852 + ], + [ + "ні", + -15.301957130432129 + ], + [ + "▁Saville", + -15.301962852478027 + ], + [ + "▁interferometer", + -15.302001953125 + ], + [ + "▁Brower", + -15.30204963684082 + ], + [ + "▁windstorm", + -15.302068710327148 + ], + [ + "adero", + -15.302090644836426 + ], + [ + "▁DIST", + -15.302091598510742 + ], + [ + "polarized", + -15.302108764648438 + ], + [ + "westerly", + -15.302167892456055 + ], + [ + "▁Matchmaker", + -15.30217456817627 + ], + [ + "▁Szabo", + -15.302184104919434 + ], + [ + "▁Spier", + -15.302226066589355 + ], + [ + "إ", + -15.302252769470215 + ], + [ + "staat", + -15.30230712890625 + ], + [ + "▁Troubleshoot", + -15.302401542663574 + ], + [ + "▁peddled", + -15.302404403686523 + ], + [ + "▁McShane", + -15.302434921264648 + ], + [ + "kanda", + -15.302454948425293 + ], + [ + "▁DECISIONS", + -15.302459716796875 + ], + [ + "▁Ateneo", + -15.302472114562988 + ], + [ + "▁tailspin", + -15.302590370178223 + ], + [ + "▁Seligman", + -15.302602767944336 + ], + [ + "▁sriracha", + -15.30261516571045 + ], + [ + "▁spheroid", + -15.302635192871094 + ], + [ + "▁OpenCart", + -15.302663803100586 + ], + [ + "▁haplogroup", + -15.302669525146484 + ], + [ + "checkout", + -15.302675247192383 + ], + [ + "Prayer", + -15.302684783935547 + ], + [ + "▁MOBA", + -15.302684783935547 + ], + [ + "empire", + -15.302719116210938 + ], + [ + "▁InformationSKU", + -15.302722930908203 + ], + [ + "▁taffeta", + -15.302722930908203 + ], + [ + "▁Trai", + -15.30274772644043 + ], + [ + "▁demonizing", + -15.302750587463379 + ], + [ + "Antique", + -15.302833557128906 + ], + [ + "▁hermetic", + -15.302850723266602 + ], + [ + "▁SPICE", + -15.302894592285156 + ], + [ + "▁plod", + -15.302900314331055 + ], + [ + "▁Tuvalu", + -15.302948951721191 + ], + [ + "▁Widodo", + -15.302983283996582 + ], + [ + "▁adsorbed", + -15.302988052368164 + ], + [ + "▁Ankit", + -15.303011894226074 + ], + [ + "▁Tornadoes", + -15.303022384643555 + ], + [ + "သ", + -15.303030014038086 + ], + [ + "▁mechano", + -15.303047180175781 + ], + [ + "▁después", + -15.303048133850098 + ], + [ + "▁Willingham", + -15.303064346313477 + ], + [ + "▁Salama", + -15.303092002868652 + ], + [ + "▁Waynesboro", + -15.303117752075195 + ], + [ + "▁Kishi", + -15.30315113067627 + ], + [ + "▁formulary", + -15.303169250488281 + ], + [ + "▁IRONMAN", + -15.303202629089355 + ], + [ + "▁exclaiming", + -15.303239822387695 + ], + [ + "▁Leche", + -15.303253173828125 + ], + [ + "▁favela", + -15.303258895874023 + ], + [ + "▁PARTNER", + -15.30329704284668 + ], + [ + "▁tienda", + -15.3033447265625 + ], + [ + "headquartered", + -15.303356170654297 + ], + [ + "mixer", + -15.30337142944336 + ], + [ + "▁flaccid", + -15.303410530090332 + ], + [ + "▁pertained", + -15.303422927856445 + ], + [ + "▁Appropriately", + -15.303460121154785 + ], + [ + "recipient", + -15.30346393585205 + ], + [ + "hyan", + -15.303471565246582 + ], + [ + "▁Ragged", + -15.303483009338379 + ], + [ + "▁Sharad", + -15.303485870361328 + ], + [ + "考", + -15.303572654724121 + ], + [ + "▁Disturbance", + -15.303592681884766 + ], + [ + "▁voc", + -15.30367660522461 + ], + [ + "лект", + -15.303683280944824 + ], + [ + "▁heartedly", + -15.30368423461914 + ], + [ + "▁usury", + -15.303756713867188 + ], + [ + "▁Tarik", + -15.303771018981934 + ], + [ + "niemi", + -15.303776741027832 + ], + [ + "▁checkmark", + -15.303828239440918 + ], + [ + "uehl", + -15.303869247436523 + ], + [ + "▁lemming", + -15.303905487060547 + ], + [ + "Architect", + -15.30394172668457 + ], + [ + "▁Ceci", + -15.303951263427734 + ], + [ + "▁jubilation", + -15.303969383239746 + ], + [ + "piness", + -15.303970336914062 + ], + [ + "▁Inconel", + -15.303973197937012 + ], + [ + "Regardless", + -15.303987503051758 + ], + [ + "▁Jemma", + -15.304078102111816 + ], + [ + "▁skitter", + -15.304084777832031 + ], + [ + "affinity", + -15.304101943969727 + ], + [ + "succinate", + -15.304108619689941 + ], + [ + "▁Negotiator", + -15.304132461547852 + ], + [ + "▁polisher", + -15.3041410446167 + ], + [ + "▁Melchizedek", + -15.304186820983887 + ], + [ + "されている", + -15.30418872833252 + ], + [ + "組", + -15.304191589355469 + ], + [ + "humanitarian", + -15.304250717163086 + ], + [ + "▁Handicraft", + -15.304277420043945 + ], + [ + "▁Chalice", + -15.304278373718262 + ], + [ + "▁Dö", + -15.304278373718262 + ], + [ + "▁saltiness", + -15.30430793762207 + ], + [ + "▁Fermanagh", + -15.304330825805664 + ], + [ + "▁VITA", + -15.30433464050293 + ], + [ + "Steal", + -15.304344177246094 + ], + [ + "▁Waz", + -15.304367065429688 + ], + [ + "prasad", + -15.304381370544434 + ], + [ + "▁Replied", + -15.304384231567383 + ], + [ + "accidentally", + -15.304386138916016 + ], + [ + "lumber", + -15.304389953613281 + ], + [ + "▁renegotiated", + -15.304397583007812 + ], + [ + "▁wren", + -15.304420471191406 + ], + [ + "▁Kado", + -15.304442405700684 + ], + [ + "▁weitere", + -15.304506301879883 + ], + [ + "▁Belfort", + -15.304508209228516 + ], + [ + "PTP", + -15.304524421691895 + ], + [ + "цен", + -15.30456829071045 + ], + [ + "▁Ilhan", + -15.304620742797852 + ], + [ + "▁Jelli", + -15.304631233215332 + ], + [ + "▁thresh", + -15.304662704467773 + ], + [ + "▁hoch", + -15.304671287536621 + ], + [ + "▁refacing", + -15.304705619812012 + ], + [ + "▁LIV", + -15.30473804473877 + ], + [ + "▁roiling", + -15.30473804473877 + ], + [ + "▁JNK", + -15.304752349853516 + ], + [ + "▁Shuang", + -15.304798126220703 + ], + [ + "▁congregated", + -15.304829597473145 + ], + [ + "invasion", + -15.304837226867676 + ], + [ + "▁Tanger", + -15.304841041564941 + ], + [ + "▁Noticing", + -15.304852485656738 + ], + [ + "▁uncool", + -15.304887771606445 + ], + [ + "▁khi", + -15.30489730834961 + ], + [ + "▁Najaf", + -15.30491828918457 + ], + [ + "thickness", + -15.304937362670898 + ], + [ + "werp", + -15.304954528808594 + ], + [ + "ា", + -15.304975509643555 + ], + [ + "▁Bellaire", + -15.304983139038086 + ], + [ + "loma", + -15.305057525634766 + ], + [ + "▁Pamplona", + -15.305072784423828 + ], + [ + "fou", + -15.305074691772461 + ], + [ + "▁plonk", + -15.30512809753418 + ], + [ + "WEL", + -15.305140495300293 + ], + [ + "▁Extent", + -15.305156707763672 + ], + [ + "▁Giang", + -15.305185317993164 + ], + [ + "▁outlawing", + -15.30519962310791 + ], + [ + "HRS", + -15.305249214172363 + ], + [ + "Mentor", + -15.30528450012207 + ], + [ + "▁irc", + -15.30528736114502 + ], + [ + "▁Venkata", + -15.305294036865234 + ], + [ + "ensible", + -15.305299758911133 + ], + [ + "▁Marcie", + -15.305326461791992 + ], + [ + "▁digester", + -15.305356979370117 + ], + [ + "▁MONITOR", + -15.3053617477417 + ], + [ + "▁Handwriting", + -15.305440902709961 + ], + [ + "Flirt", + -15.305448532104492 + ], + [ + "▁tracheal", + -15.305489540100098 + ], + [ + "wock", + -15.305545806884766 + ], + [ + "▁methacrylate", + -15.305545806884766 + ], + [ + "▁marathi", + -15.305628776550293 + ], + [ + "▁asinine", + -15.305636405944824 + ], + [ + "зу", + -15.30564022064209 + ], + [ + "quence", + -15.305655479431152 + ], + [ + "demonstrate", + -15.305667877197266 + ], + [ + "▁AURORA", + -15.30568790435791 + ], + [ + "Summit", + -15.305709838867188 + ], + [ + "PLACE", + -15.30575180053711 + ], + [ + "▁persecutor", + -15.305760383605957 + ], + [ + "▁wisteria", + -15.305760383605957 + ], + [ + "organizational", + -15.305821418762207 + ], + [ + "▁birdsong", + -15.305827140808105 + ], + [ + "▁borax", + -15.30588436126709 + ], + [ + "▁RESOLVED", + -15.305891990661621 + ], + [ + "RUNNER", + -15.305919647216797 + ], + [ + "Simpson", + -15.305971145629883 + ], + [ + "voo", + -15.306015014648438 + ], + [ + "estimating", + -15.306041717529297 + ], + [ + "▁PEAK", + -15.306058883666992 + ], + [ + "▁Millbrook", + -15.306116104125977 + ], + [ + "▁매", + -15.306130409240723 + ], + [ + "▁Montaigne", + -15.306151390075684 + ], + [ + "Powell", + -15.306173324584961 + ], + [ + "▁quercetin", + -15.306177139282227 + ], + [ + "람", + -15.306194305419922 + ], + [ + "TEXT", + -15.306249618530273 + ], + [ + "Thin", + -15.30628490447998 + ], + [ + "▁Applique", + -15.306303024291992 + ], + [ + "▁Anabaptist", + -15.306325912475586 + ], + [ + "▁vce", + -15.306373596191406 + ], + [ + "▁capitalistic", + -15.306392669677734 + ], + [ + "▁Lingua", + -15.306415557861328 + ], + [ + "▁Heartfelt", + -15.306441307067871 + ], + [ + "▁WMU", + -15.306442260742188 + ], + [ + "▁goalscoring", + -15.306443214416504 + ], + [ + "concentrate", + -15.306458473205566 + ], + [ + "▁NAL", + -15.306465148925781 + ], + [ + "▁perpetuation", + -15.306467056274414 + ], + [ + "▁Mansell", + -15.306535720825195 + ], + [ + "TOF", + -15.306538581848145 + ], + [ + "▁Ostrich", + -15.306549072265625 + ], + [ + "▁Cayce", + -15.306557655334473 + ], + [ + "▁Stripping", + -15.306573867797852 + ], + [ + "▁rgb", + -15.306580543518066 + ], + [ + "▁Karlie", + -15.306585311889648 + ], + [ + "▁Nampa", + -15.306593894958496 + ], + [ + "▁LSM", + -15.306694984436035 + ], + [ + "▁stato", + -15.306700706481934 + ], + [ + "▁Muffler", + -15.30673599243164 + ], + [ + "GAG", + -15.306754112243652 + ], + [ + "▁Brem", + -15.306783676147461 + ], + [ + "leasing", + -15.306790351867676 + ], + [ + "▁Rudyard", + -15.306796073913574 + ], + [ + "slider", + -15.306807518005371 + ], + [ + "▁Funniest", + -15.306811332702637 + ], + [ + "▁laggard", + -15.306824684143066 + ], + [ + "homogeneous", + -15.306831359863281 + ], + [ + "▁Bancshares", + -15.306831359863281 + ], + [ + "muffin", + -15.306836128234863 + ], + [ + "▁MICE", + -15.306845664978027 + ], + [ + "▁FFP", + -15.306861877441406 + ], + [ + "▁Sakamoto", + -15.306870460510254 + ], + [ + "▁McCloskey", + -15.306938171386719 + ], + [ + "▁Leaked", + -15.306955337524414 + ], + [ + "Talent", + -15.30696964263916 + ], + [ + "▁Solr", + -15.307003021240234 + ], + [ + "▁FNB", + -15.307018280029297 + ], + [ + "装", + -15.30702018737793 + ], + [ + "▁epitomized", + -15.307021141052246 + ], + [ + "▁Tippett", + -15.307058334350586 + ], + [ + "▁testicle", + -15.307058334350586 + ], + [ + "▁Banja", + -15.307064056396484 + ], + [ + "▁shindig", + -15.30706787109375 + ], + [ + "▁immobility", + -15.307069778442383 + ], + [ + "▁Drom", + -15.307167053222656 + ], + [ + "▁CrazyBulk", + -15.30717658996582 + ], + [ + "▁ravaging", + -15.307178497314453 + ], + [ + "▁Erbil", + -15.307198524475098 + ], + [ + "▁Burwell", + -15.307209014892578 + ], + [ + "LUC", + -15.307343482971191 + ], + [ + "▁Tenderloin", + -15.307373046875 + ], + [ + "auté", + -15.307392120361328 + ], + [ + "▁Jugend", + -15.30742359161377 + ], + [ + "▁revellers", + -15.307424545288086 + ], + [ + "rafenib", + -15.307464599609375 + ], + [ + "▁dystonia", + -15.30746841430664 + ], + [ + "HID", + -15.30747127532959 + ], + [ + "Victorian", + -15.30748176574707 + ], + [ + "SELECT", + -15.307502746582031 + ], + [ + "▁Docking", + -15.307511329650879 + ], + [ + "whisper", + -15.307551383972168 + ], + [ + "▁Tonal", + -15.307555198669434 + ], + [ + "▁Spenser", + -15.307612419128418 + ], + [ + "▁Vibram", + -15.307636260986328 + ], + [ + "▁VILLA", + -15.307694435119629 + ], + [ + "▁Shutterfly", + -15.307745933532715 + ], + [ + "▁missouri", + -15.307753562927246 + ], + [ + "▁Nabokov", + -15.307807922363281 + ], + [ + "▁Moretti", + -15.307825088500977 + ], + [ + "▁Songbook", + -15.307892799377441 + ], + [ + "▁Campania", + -15.307912826538086 + ], + [ + "Truly", + -15.307938575744629 + ], + [ + "▁Payson", + -15.307940483093262 + ], + [ + "▁hokey", + -15.307960510253906 + ], + [ + "▁Camcorder", + -15.307971954345703 + ], + [ + "Visitor", + -15.307979583740234 + ], + [ + "▁threadbare", + -15.308009147644043 + ], + [ + "▁Teutonic", + -15.308029174804688 + ], + [ + "▁geophysics", + -15.3080415725708 + ], + [ + "▁marinating", + -15.308052062988281 + ], + [ + "▁Qaddafi", + -15.308061599731445 + ], + [ + "▁Copland", + -15.30807113647461 + ], + [ + "▁Venter", + -15.308079719543457 + ], + [ + "▁Cutlery", + -15.308186531066895 + ], + [ + "플", + -15.308207511901855 + ], + [ + "▁Ecol", + -15.308242797851562 + ], + [ + "▁teardown", + -15.308292388916016 + ], + [ + "▁Poirier", + -15.308300971984863 + ], + [ + "▁MOQ", + -15.308310508728027 + ], + [ + "▁Welker", + -15.308319091796875 + ], + [ + "vvies", + -15.308348655700684 + ], + [ + "▁FRUIT", + -15.308384895324707 + ], + [ + "ForU", + -15.308463096618652 + ], + [ + "policies", + -15.308465957641602 + ], + [ + "▁trigonometric", + -15.308479309082031 + ], + [ + "▁joseph", + -15.308489799499512 + ], + [ + "▁Secrecy", + -15.308497428894043 + ], + [ + "▁Jessup", + -15.308510780334473 + ], + [ + "▁calluses", + -15.308515548706055 + ], + [ + "▁mosses", + -15.3085298538208 + ], + [ + "▁Jehan", + -15.308538436889648 + ], + [ + "anticipate", + -15.308570861816406 + ], + [ + "▁Wroclaw", + -15.308570861816406 + ], + [ + "▁Exmouth", + -15.30858039855957 + ], + [ + "▁Addictive", + -15.308610916137695 + ], + [ + "▁Reacher", + -15.308621406555176 + ], + [ + "▁KBC", + -15.308670997619629 + ], + [ + "▁Genital", + -15.308677673339844 + ], + [ + "▁symlink", + -15.308683395385742 + ], + [ + "▁conceptualizing", + -15.308713912963867 + ], + [ + "BIOS", + -15.308743476867676 + ], + [ + "▁raring", + -15.308752059936523 + ], + [ + "▁Vizio", + -15.30876350402832 + ], + [ + "▁jammies", + -15.308764457702637 + ], + [ + "▁eCollection", + -15.308786392211914 + ], + [ + "▁hunkered", + -15.30886459350586 + ], + [ + "தி", + -15.308869361877441 + ], + [ + "▁leh", + -15.308877944946289 + ], + [ + "▁ruddy", + -15.308880805969238 + ], + [ + "▁optoelectronic", + -15.3089017868042 + ], + [ + "▁regimented", + -15.308906555175781 + ], + [ + "▁WSI", + -15.30893325805664 + ], + [ + "stetter", + -15.308968544006348 + ], + [ + "▁homesickness", + -15.308980941772461 + ], + [ + "▁laze", + -15.309043884277344 + ], + [ + "issance", + -15.309053421020508 + ], + [ + "Galaxy", + -15.309063911437988 + ], + [ + "▁subcompact", + -15.309088706970215 + ], + [ + "▁Washtenaw", + -15.309115409851074 + ], + [ + "▁Melina", + -15.309141159057617 + ], + [ + "ESR", + -15.3091459274292 + ], + [ + "▁∥", + -15.309167861938477 + ], + [ + "∙", + -15.30916976928711 + ], + [ + "▁lupin", + -15.309185981750488 + ], + [ + "rotating", + -15.309192657470703 + ], + [ + "▁Trulia", + -15.309244155883789 + ], + [ + "▁Winkel", + -15.309281349182129 + ], + [ + "Forgot", + -15.309284210205078 + ], + [ + "kehr", + -15.309357643127441 + ], + [ + "residency", + -15.309361457824707 + ], + [ + "▁Liabilities", + -15.309361457824707 + ], + [ + "▁CNP", + -15.309374809265137 + ], + [ + "тика", + -15.309395790100098 + ], + [ + "▁adduct", + -15.309420585632324 + ], + [ + "▁ringworm", + -15.309433937072754 + ], + [ + "▁EDL", + -15.309520721435547 + ], + [ + "▁Motorbike", + -15.309521675109863 + ], + [ + "▁peacebuilding", + -15.309554100036621 + ], + [ + "▁Charmed", + -15.309556007385254 + ], + [ + "▁Arndt", + -15.309568405151367 + ], + [ + "▁urticaria", + -15.30964183807373 + ], + [ + "▁Gillan", + -15.309667587280273 + ], + [ + "flagged", + -15.309706687927246 + ], + [ + "NINE", + -15.309710502624512 + ], + [ + "▁PNW", + -15.309711456298828 + ], + [ + "▁Mathematician", + -15.309715270996094 + ], + [ + "ferra", + -15.309735298156738 + ], + [ + "рь", + -15.309739112854004 + ], + [ + "▁Maximo", + -15.309762001037598 + ], + [ + "▁Wiese", + -15.309802055358887 + ], + [ + "▁Anupam", + -15.309804916381836 + ], + [ + "▁Adblock", + -15.309812545776367 + ], + [ + "iceps", + -15.309829711914062 + ], + [ + "▁Pluck", + -15.309839248657227 + ], + [ + "▁Hinkle", + -15.309855461120605 + ], + [ + "▁mistresses", + -15.309856414794922 + ], + [ + "▁cardiomyocyte", + -15.309860229492188 + ], + [ + "ัน", + -15.309935569763184 + ], + [ + "▁emplacement", + -15.310007095336914 + ], + [ + "consensual", + -15.310020446777344 + ], + [ + "▁Brussel", + -15.310049057006836 + ], + [ + "导", + -15.31006145477295 + ], + [ + "▁imminently", + -15.310065269470215 + ], + [ + "Mister", + -15.310100555419922 + ], + [ + "▁FINA", + -15.310110092163086 + ], + [ + "JEE", + -15.310136795043945 + ], + [ + "▁discolouration", + -15.310223579406738 + ], + [ + "▁Tsui", + -15.310236930847168 + ], + [ + "Generate", + -15.31026554107666 + ], + [ + "▁Quidditch", + -15.31027889251709 + ], + [ + "▁Teaches", + -15.310321807861328 + ], + [ + "▁Shevchenko", + -15.310352325439453 + ], + [ + "browse", + -15.310364723205566 + ], + [ + "▁Moderation", + -15.310373306274414 + ], + [ + "▁betwixt", + -15.310405731201172 + ], + [ + "▁Falwell", + -15.310412406921387 + ], + [ + "▁mlb", + -15.31042194366455 + ], + [ + "initiative", + -15.310422897338867 + ], + [ + "tremendous", + -15.31047248840332 + ], + [ + "thrust", + -15.310504913330078 + ], + [ + "▁Geisha", + -15.310551643371582 + ], + [ + "toddler", + -15.310553550720215 + ], + [ + "insta", + -15.310561180114746 + ], + [ + "▁Garvin", + -15.310629844665527 + ], + [ + "▁factoid", + -15.310667991638184 + ], + [ + "▁Serafin", + -15.310690879821777 + ], + [ + "▁suppressive", + -15.310704231262207 + ], + [ + "并", + -15.31077766418457 + ], + [ + "▁Livelihood", + -15.31078815460205 + ], + [ + "▁haem", + -15.310789108276367 + ], + [ + "▁Minter", + -15.31079387664795 + ], + [ + "NRS", + -15.310853004455566 + ], + [ + "▁decoupled", + -15.310860633850098 + ], + [ + "Alarm", + -15.310861587524414 + ], + [ + "▁Reflux", + -15.310863494873047 + ], + [ + "▁Solitary", + -15.310888290405273 + ], + [ + "otrope", + -15.310933113098145 + ], + [ + "comparable", + -15.310952186584473 + ], + [ + "Bernie", + -15.310957908630371 + ], + [ + "▁Replenish", + -15.310988426208496 + ], + [ + "▁80°", + -15.310992240905762 + ], + [ + "Dip", + -15.311027526855469 + ], + [ + "spirator", + -15.31103229522705 + ], + [ + "▁Krzysztof", + -15.311060905456543 + ], + [ + "▁Lynnwood", + -15.31106948852539 + ], + [ + "▁Barstool", + -15.311091423034668 + ], + [ + "▁EMPLOYEE", + -15.311137199401855 + ], + [ + "felder", + -15.311150550842285 + ], + [ + "▁richmond", + -15.311151504516602 + ], + [ + "▁ASPCA", + -15.311158180236816 + ], + [ + "NAF", + -15.311177253723145 + ], + [ + "▁undertaker", + -15.31119155883789 + ], + [ + "▁Jetson", + -15.31122875213623 + ], + [ + "▁baler", + -15.311251640319824 + ], + [ + "▁peplum", + -15.311309814453125 + ], + [ + "▁RECIPE", + -15.311335563659668 + ], + [ + "وي", + -15.311339378356934 + ], + [ + "▁keyframe", + -15.311355590820312 + ], + [ + "▁jetë", + -15.311367988586426 + ], + [ + "▁makin", + -15.311370849609375 + ], + [ + "energized", + -15.311393737792969 + ], + [ + "▁Alasdair", + -15.311407089233398 + ], + [ + "▁Embossing", + -15.311426162719727 + ], + [ + "oerner", + -15.31143856048584 + ], + [ + "▁CRUISE", + -15.311463356018066 + ], + [ + "▁Pinning", + -15.311480522155762 + ], + [ + "说", + -15.311483383178711 + ], + [ + "▁Dearest", + -15.311540603637695 + ], + [ + "▁paroxysm", + -15.311589241027832 + ], + [ + "ром", + -15.311593055725098 + ], + [ + "еі", + -15.311640739440918 + ], + [ + "CFD", + -15.311715126037598 + ], + [ + "▁communiqué", + -15.31171703338623 + ], + [ + "▁SIB", + -15.311820983886719 + ], + [ + "▁waterboarding", + -15.311823844909668 + ], + [ + "bureau", + -15.311834335327148 + ], + [ + "▁redefinition", + -15.311870574951172 + ], + [ + "FCU", + -15.311932563781738 + ], + [ + "▁elector", + -15.311932563781738 + ], + [ + "▁Perturbations", + -15.311934471130371 + ], + [ + "▁armada", + -15.311965942382812 + ], + [ + "▁constructivist", + -15.311982154846191 + ], + [ + "wehr", + -15.311999320983887 + ], + [ + "▁monarchies", + -15.312012672424316 + ], + [ + "▁Hulme", + -15.312028884887695 + ], + [ + "▁Brash", + -15.31203556060791 + ], + [ + "▁disqualifying", + -15.312042236328125 + ], + [ + "1084", + -15.312047958374023 + ], + [ + "Thomson", + -15.312084197998047 + ], + [ + "▁Fortunate", + -15.312085151672363 + ], + [ + "▁Baumgartner", + -15.312100410461426 + ], + [ + "▁InBev", + -15.312108039855957 + ], + [ + "▁kidnapper", + -15.312126159667969 + ], + [ + "▁Shiatsu", + -15.312158584594727 + ], + [ + "▁Walkway", + -15.312161445617676 + ], + [ + "▁Quitting", + -15.312166213989258 + ], + [ + "aylor", + -15.3121976852417 + ], + [ + "▁Delfin", + -15.312211036682129 + ], + [ + "▁Formally", + -15.312211036682129 + ], + [ + "já", + -15.312224388122559 + ], + [ + "▁Yumi", + -15.312224388122559 + ], + [ + "▁neodymium", + -15.312226295471191 + ], + [ + "▁havn", + -15.312236785888672 + ], + [ + "▁avenged", + -15.31225872039795 + ], + [ + "nineteenth", + -15.312272071838379 + ], + [ + "Ottawa", + -15.312302589416504 + ], + [ + "asseur", + -15.31232738494873 + ], + [ + "▁Sheath", + -15.312390327453613 + ], + [ + "▁Manik", + -15.312408447265625 + ], + [ + "▁harmonise", + -15.312435150146484 + ], + [ + "▁mystifying", + -15.31246566772461 + ], + [ + "▁HDFS", + -15.312487602233887 + ], + [ + "Brilliant", + -15.312521934509277 + ], + [ + "Nina", + -15.312524795532227 + ], + [ + "▁Selectmen", + -15.312535285949707 + ], + [ + "▁tormentor", + -15.312623977661133 + ], + [ + "▁gobbling", + -15.312657356262207 + ], + [ + "▁Gethsemane", + -15.312664031982422 + ], + [ + "▁Casella", + -15.312667846679688 + ], + [ + "CMD", + -15.312670707702637 + ], + [ + "▁Wasabi", + -15.312704086303711 + ], + [ + "▁barometric", + -15.312721252441406 + ], + [ + "▁Interagency", + -15.312726974487305 + ], + [ + "bronze", + -15.312746047973633 + ], + [ + "▁Fiske", + -15.312768936157227 + ], + [ + "journalism", + -15.312799453735352 + ], + [ + "▁Artemi", + -15.312807083129883 + ], + [ + "▁Daybreak", + -15.312833786010742 + ], + [ + "▁damit", + -15.312870979309082 + ], + [ + "▁Centrelink", + -15.312976837158203 + ], + [ + "▁Nurturing", + -15.312978744506836 + ], + [ + "▁Bremerton", + -15.313000679016113 + ], + [ + "▁Abarth", + -15.31301212310791 + ], + [ + "▁Gringo", + -15.313047409057617 + ], + [ + "▁bbl", + -15.313090324401855 + ], + [ + "▁Kebab", + -15.313101768493652 + ], + [ + "▁Infowars", + -15.313109397888184 + ], + [ + "▁Vijayan", + -15.313114166259766 + ], + [ + "distributor", + -15.313126564025879 + ], + [ + "▁Rind", + -15.313194274902344 + ], + [ + "▁vetëm", + -15.313202857971191 + ], + [ + "▁Nijmegen", + -15.313210487365723 + ], + [ + "Retro", + -15.313223838806152 + ], + [ + "▁Haqqani", + -15.313247680664062 + ], + [ + "▁cosponsor", + -15.313321113586426 + ], + [ + "▁Caretaker", + -15.313322067260742 + ], + [ + "Doesn", + -15.313374519348145 + ], + [ + "▁sacredness", + -15.313434600830078 + ], + [ + "▁BGC", + -15.313436508178711 + ], + [ + "▁VLSI", + -15.31343936920166 + ], + [ + "Television", + -15.313456535339355 + ], + [ + "▁allergist", + -15.31348705291748 + ], + [ + "▁powerlifting", + -15.313497543334961 + ], + [ + "quisit", + -15.313508987426758 + ], + [ + "▁DEPOSIT", + -15.31353759765625 + ], + [ + "▁crossroad", + -15.313542366027832 + ], + [ + "▁deoxy", + -15.313545227050781 + ], + [ + "▁Sideshow", + -15.313555717468262 + ], + [ + "▁TRADEMARK", + -15.313562393188477 + ], + [ + "▁Zahl", + -15.313605308532715 + ], + [ + "▁Eagan", + -15.313630104064941 + ], + [ + "lunar", + -15.313638687133789 + ], + [ + "▁Matson", + -15.313657760620117 + ], + [ + "▁Habermas", + -15.31367015838623 + ], + [ + "Debug", + -15.313729286193848 + ], + [ + "ITIVE", + -15.313756942749023 + ], + [ + "WORKS", + -15.3137788772583 + ], + [ + "ප", + -15.3137788772583 + ], + [ + "Bookmark", + -15.313902854919434 + ], + [ + "▁Tyndale", + -15.313904762268066 + ], + [ + "▁Yolo", + -15.31396198272705 + ], + [ + "carcinoma", + -15.313982009887695 + ], + [ + "▁Hillier", + -15.313985824584961 + ], + [ + "▁tiebreak", + -15.314008712768555 + ], + [ + "▁jacksonville", + -15.314013481140137 + ], + [ + "▁Kremer", + -15.314014434814453 + ], + [ + "▁myocardium", + -15.314050674438477 + ], + [ + "▁SWAN", + -15.314126968383789 + ], + [ + "▁Cipro", + -15.3141508102417 + ], + [ + "▁Tanglewood", + -15.314166069030762 + ], + [ + "▁etheric", + -15.314229011535645 + ], + [ + "▁quarried", + -15.314234733581543 + ], + [ + "Cliff", + -15.31424331665039 + ], + [ + "▁Condit", + -15.31425666809082 + ], + [ + "ROSE", + -15.314263343811035 + ], + [ + "▁decoction", + -15.314271926879883 + ], + [ + "ckner", + -15.314289093017578 + ], + [ + "▁PEARL", + -15.314310073852539 + ], + [ + "GTC", + -15.314319610595703 + ], + [ + "▁ALONG", + -15.314330101013184 + ], + [ + "▁Tyrannosaurus", + -15.314343452453613 + ], + [ + "▁Suo", + -15.314449310302734 + ], + [ + "▁McClu", + -15.314452171325684 + ], + [ + "▁bobbed", + -15.314454078674316 + ], + [ + "▁evangel", + -15.314468383789062 + ], + [ + "▁DOGS", + -15.314496994018555 + ], + [ + "▁Makefile", + -15.314590454101562 + ], + [ + "▁Pedra", + -15.314613342285156 + ], + [ + "▁GIG", + -15.31463623046875 + ], + [ + "▁Murchison", + -15.314653396606445 + ], + [ + "▁dappled", + -15.31467056274414 + ], + [ + "▁STRUCTURE", + -15.314671516418457 + ], + [ + "▁Baar", + -15.314674377441406 + ], + [ + "▁JEFF", + -15.31468677520752 + ], + [ + "▁tennessee", + -15.314691543579102 + ], + [ + "province", + -15.314708709716797 + ], + [ + "▁Glenview", + -15.31471061706543 + ], + [ + "Ş", + -15.314711570739746 + ], + [ + "▁wryly", + -15.314764022827148 + ], + [ + "▁defecate", + -15.314764976501465 + ], + [ + "▁annulus", + -15.314825057983398 + ], + [ + "▁PHILIP", + -15.31483268737793 + ], + [ + "▁DPT", + -15.314842224121094 + ], + [ + "GIL", + -15.314850807189941 + ], + [ + "Υ", + -15.314851760864258 + ], + [ + "▁macaw", + -15.314929008483887 + ], + [ + "▁caliph", + -15.314931869506836 + ], + [ + "▁FILTER", + -15.314936637878418 + ], + [ + "regularly", + -15.314958572387695 + ], + [ + "▁MEMORY", + -15.314967155456543 + ], + [ + "ключ", + -15.314979553222656 + ], + [ + "numerable", + -15.315014839172363 + ], + [ + "▁maxillofacial", + -15.315018653869629 + ], + [ + "▁TPI", + -15.315052032470703 + ], + [ + "▁Dailymotion", + -15.315088272094727 + ], + [ + "ÑÑ", + -15.315101623535156 + ], + [ + "▁Suraj", + -15.315164566040039 + ], + [ + "Gamb", + -15.315180778503418 + ], + [ + "▁cura", + -15.315190315246582 + ], + [ + "▁carbonyl", + -15.315221786499023 + ], + [ + "▁ACKNOWLEDGE", + -15.315237998962402 + ], + [ + "uckle", + -15.315255165100098 + ], + [ + "▁Tentative", + -15.315260887145996 + ], + [ + "KEL", + -15.31528091430664 + ], + [ + "TiO", + -15.315296173095703 + ], + [ + "▁proteomic", + -15.31529712677002 + ], + [ + "▁toujours", + -15.31531047821045 + ], + [ + "▁secessionist", + -15.315311431884766 + ], + [ + "Donovan", + -15.315361976623535 + ], + [ + "▁oversimplification", + -15.315383911132812 + ], + [ + "▁Biographies", + -15.315439224243164 + ], + [ + "▁SHINE", + -15.315439224243164 + ], + [ + "▁morass", + -15.315442085266113 + ], + [ + "administrator", + -15.315461158752441 + ], + [ + "▁JAMB", + -15.315462112426758 + ], + [ + "▁sardine", + -15.315482139587402 + ], + [ + "▁Poulter", + -15.315557479858398 + ], + [ + "▁Shipper", + -15.315604209899902 + ], + [ + "▁toxicities", + -15.315633773803711 + ], + [ + "▁interweave", + -15.315640449523926 + ], + [ + "▁Symmetric", + -15.31564998626709 + ], + [ + "▁Facelift", + -15.315653800964355 + ], + [ + "cillin", + -15.315657615661621 + ], + [ + "▁Ferragamo", + -15.315657615661621 + ], + [ + "▁Bonhoeffer", + -15.315675735473633 + ], + [ + "Dinner", + -15.315709114074707 + ], + [ + "▁cherishes", + -15.315719604492188 + ], + [ + "▁Massie", + -15.315729141235352 + ], + [ + "▁bailey", + -15.3157320022583 + ], + [ + "▁dashcam", + -15.315786361694336 + ], + [ + "▁Govind", + -15.31580638885498 + ], + [ + "▁JPA", + -15.315837860107422 + ], + [ + "Natalie", + -15.315838813781738 + ], + [ + "caul", + -15.315879821777344 + ], + [ + "▁Pillai", + -15.315882682800293 + ], + [ + "站", + -15.315950393676758 + ], + [ + "▁imperfectly", + -15.315958023071289 + ], + [ + "很", + -15.315977096557617 + ], + [ + "▁Fontan", + -15.315982818603516 + ], + [ + "consume", + -15.315991401672363 + ], + [ + "▁outrigger", + -15.316011428833008 + ], + [ + "scrip", + -15.316012382507324 + ], + [ + "▁Intruder", + -15.316024780273438 + ], + [ + "▁salud", + -15.316025733947754 + ], + [ + "رك", + -15.31602668762207 + ], + [ + "▁jennifer", + -15.316058158874512 + ], + [ + "▁richtig", + -15.316058158874512 + ], + [ + "exploitation", + -15.316069602966309 + ], + [ + "പ", + -15.316096305847168 + ], + [ + "▁vagus", + -15.316102981567383 + ], + [ + "▁Negligence", + -15.316115379333496 + ], + [ + "perspective", + -15.316128730773926 + ], + [ + "▁cloaking", + -15.31613540649414 + ], + [ + "Pepper", + -15.316140174865723 + ], + [ + "DRM", + -15.316192626953125 + ], + [ + "surround", + -15.316201210021973 + ], + [ + "▁Zippo", + -15.316203117370605 + ], + [ + "▁Megapixel", + -15.316213607788086 + ], + [ + "candle", + -15.316222190856934 + ], + [ + "▁Machinist", + -15.316338539123535 + ], + [ + "Intro", + -15.316426277160645 + ], + [ + "Scholar", + -15.316436767578125 + ], + [ + "▁JSA", + -15.316447257995605 + ], + [ + "puncture", + -15.316458702087402 + ], + [ + "exhibit", + -15.316463470458984 + ], + [ + "▁Evander", + -15.316522598266602 + ], + [ + "▁compressible", + -15.31653118133545 + ], + [ + "▁Vieux", + -15.316533088684082 + ], + [ + "▁Dominate", + -15.316568374633789 + ], + [ + "▁Khalsa", + -15.316593170166016 + ], + [ + "realist", + -15.316607475280762 + ], + [ + "1844", + -15.316611289978027 + ], + [ + "pathetic", + -15.316727638244629 + ], + [ + "impressive", + -15.31674861907959 + ], + [ + "▁Postboxes", + -15.316749572753906 + ], + [ + "Yves", + -15.316797256469727 + ], + [ + "▁TAKING", + -15.316821098327637 + ], + [ + "▁NFV", + -15.316826820373535 + ], + [ + "▁Malicious", + -15.316871643066406 + ], + [ + "Christianity", + -15.316875457763672 + ], + [ + "▁Inverted", + -15.316903114318848 + ], + [ + "venous", + -15.316925048828125 + ], + [ + "▁gravelly", + -15.316938400268555 + ], + [ + "MISS", + -15.317073822021484 + ], + [ + "▁wilfully", + -15.317079544067383 + ], + [ + "Dubai", + -15.317084312438965 + ], + [ + "▁Althea", + -15.31711196899414 + ], + [ + "▁emanation", + -15.317131042480469 + ], + [ + "▁compactness", + -15.317168235778809 + ], + [ + "▁Couric", + -15.317174911499023 + ], + [ + "▁Quir", + -15.317193984985352 + ], + [ + "▁Permitted", + -15.31719970703125 + ], + [ + "▁eviscerate", + -15.31721305847168 + ], + [ + "▁Chania", + -15.317264556884766 + ], + [ + "▁Poorly", + -15.317265510559082 + ], + [ + "▁rehabbing", + -15.317270278930664 + ], + [ + "docx", + -15.317272186279297 + ], + [ + "▁livelier", + -15.317328453063965 + ], + [ + "▁PSNI", + -15.31733512878418 + ], + [ + "▁DSW", + -15.31734561920166 + ], + [ + "eshwara", + -15.317363739013672 + ], + [ + "▁Mercure", + -15.317380905151367 + ], + [ + "▁pessoa", + -15.31740665435791 + ], + [ + "▁slanderous", + -15.317412376403809 + ], + [ + "▁Graceful", + -15.317415237426758 + ], + [ + "▁Statoil", + -15.317416191101074 + ], + [ + "▁Maccabi", + -15.317434310913086 + ], + [ + "▁paperclip", + -15.317434310913086 + ], + [ + "safer", + -15.317448616027832 + ], + [ + "▁Cosmetology", + -15.317525863647461 + ], + [ + "▁Fortitude", + -15.317537307739258 + ], + [ + "▁HAWK", + -15.317557334899902 + ], + [ + "rried", + -15.317570686340332 + ], + [ + "▁signification", + -15.317578315734863 + ], + [ + "▁scepter", + -15.317636489868164 + ], + [ + "▁wiggled", + -15.317638397216797 + ], + [ + "▁Yakubu", + -15.317642211914062 + ], + [ + "1837", + -15.31768798828125 + ], + [ + "▁Tribu", + -15.317688941955566 + ], + [ + "▁FLOWER", + -15.317712783813477 + ], + [ + "▁Dapper", + -15.31771469116211 + ], + [ + "▁raff", + -15.31773567199707 + ], + [ + "▁chelate", + -15.31775951385498 + ], + [ + "abandoned", + -15.317766189575195 + ], + [ + "▁colonizing", + -15.317788124084473 + ], + [ + "▁switchgear", + -15.317814826965332 + ], + [ + "▁barbarous", + -15.31782054901123 + ], + [ + "fak", + -15.317864418029785 + ], + [ + "кре", + -15.317883491516113 + ], + [ + "▁Unfold", + -15.31788444519043 + ], + [ + "70°", + -15.31790542602539 + ], + [ + "▁bruce", + -15.317907333374023 + ], + [ + "▁peppy", + -15.317907333374023 + ], + [ + "bosch", + -15.317936897277832 + ], + [ + "tomb", + -15.317938804626465 + ], + [ + "▁PAWS", + -15.317939758300781 + ], + [ + "▁Feta", + -15.31794261932373 + ], + [ + "▁bruschetta", + -15.317946434020996 + ], + [ + "▁foetal", + -15.31796932220459 + ], + [ + "▁luckier", + -15.317987442016602 + ], + [ + "▁Cantu", + -15.318011283874512 + ], + [ + "▁handbrake", + -15.318084716796875 + ], + [ + "▁PRAYER", + -15.31810188293457 + ], + [ + "▁brawler", + -15.318102836608887 + ], + [ + "crowded", + -15.318119049072266 + ], + [ + "▁amlodipine", + -15.318129539489746 + ], + [ + "▁HARP", + -15.318157196044922 + ], + [ + "▁Karsten", + -15.31818962097168 + ], + [ + "▁pathetically", + -15.318211555480957 + ], + [ + "▁anticoagulation", + -15.318218231201172 + ], + [ + "1852", + -15.31822681427002 + ], + [ + "▁Technische", + -15.318254470825195 + ], + [ + "Peach", + -15.318259239196777 + ], + [ + "▁incinerated", + -15.318259239196777 + ], + [ + "Denmark", + -15.318324089050293 + ], + [ + "reached", + -15.318349838256836 + ], + [ + "▁Featherstone", + -15.318397521972656 + ], + [ + "argh", + -15.318399429321289 + ], + [ + "▁Garter", + -15.318413734436035 + ], + [ + "MMP", + -15.318418502807617 + ], + [ + "Treatment", + -15.318456649780273 + ], + [ + "▁carseat", + -15.318456649780273 + ], + [ + "complaint", + -15.318502426147461 + ], + [ + "fracture", + -15.318507194519043 + ], + [ + "▁Germaine", + -15.318565368652344 + ], + [ + "▁Aharon", + -15.318575859069824 + ], + [ + "介", + -15.318626403808594 + ], + [ + "▁FACTOR", + -15.31862735748291 + ], + [ + "▁Caulk", + -15.318648338317871 + ], + [ + "▁Chiller", + -15.318669319152832 + ], + [ + "Transition", + -15.318721771240234 + ], + [ + "accumulate", + -15.318741798400879 + ], + [ + "UTF", + -15.318785667419434 + ], + [ + "ruar", + -15.3187894821167 + ], + [ + "▁referential", + -15.318838119506836 + ], + [ + "▁crucify", + -15.318863868713379 + ], + [ + "▁Ipoh", + -15.318865776062012 + ], + [ + "▁Meditate", + -15.318886756896973 + ], + [ + "▁Regimental", + -15.318890571594238 + ], + [ + "▁Ulrik", + -15.318920135498047 + ], + [ + "▁Trigg", + -15.318929672241211 + ], + [ + "▁umpteenth", + -15.318939208984375 + ], + [ + "▁Kenzie", + -15.318952560424805 + ], + [ + "▁trigeminal", + -15.318954467773438 + ], + [ + "▁Reversing", + -15.31899356842041 + ], + [ + "▁Tackled", + -15.31899642944336 + ], + [ + "▁helipad", + -15.319046020507812 + ], + [ + "▁NVQ", + -15.31906795501709 + ], + [ + "▁windward", + -15.319073677062988 + ], + [ + "▁Barometer", + -15.319084167480469 + ], + [ + "▁WCA", + -15.319136619567871 + ], + [ + "▁intercessor", + -15.319138526916504 + ], + [ + "▁PWR", + -15.319164276123047 + ], + [ + "▁chocolatier", + -15.319199562072754 + ], + [ + "▁linda", + -15.31920051574707 + ], + [ + "kaar", + -15.319219589233398 + ], + [ + "▁synchronisation", + -15.319230079650879 + ], + [ + "UTO", + -15.319242477416992 + ], + [ + "▁Bingley", + -15.319273948669434 + ], + [ + "▁Bullitt", + -15.319299697875977 + ], + [ + "▁JRPG", + -15.319313049316406 + ], + [ + "▁Zoosk", + -15.319355010986328 + ], + [ + "▁Hoda", + -15.319375038146973 + ], + [ + "propanol", + -15.319413185119629 + ], + [ + "OYA", + -15.31942081451416 + ], + [ + "▁farmacia", + -15.31946086883545 + ], + [ + "Originally", + -15.319502830505371 + ], + [ + "ロー", + -15.3195161819458 + ], + [ + "▁longingly", + -15.319524765014648 + ], + [ + "▁deconstructing", + -15.319583892822266 + ], + [ + "▁coinsurance", + -15.319602012634277 + ], + [ + "redacted", + -15.319615364074707 + ], + [ + "▁Nuttall", + -15.319629669189453 + ], + [ + "▁geometrically", + -15.319632530212402 + ], + [ + "▁MIRROR", + -15.319634437561035 + ], + [ + "▁coenzyme", + -15.319695472717285 + ], + [ + "▁Bootleg", + -15.31970500946045 + ], + [ + "duke", + -15.319732666015625 + ], + [ + "▁snafu", + -15.319762229919434 + ], + [ + "▁Contin", + -15.319787979125977 + ], + [ + "▁Childish", + -15.319830894470215 + ], + [ + "PSD", + -15.319831848144531 + ], + [ + "▁condoning", + -15.319863319396973 + ], + [ + "▁Jellyfish", + -15.319877624511719 + ], + [ + "▁semolina", + -15.319893836975098 + ], + [ + "▁Lashley", + -15.319911003112793 + ], + [ + "▁Bikaner", + -15.319928169250488 + ], + [ + "▁Oui", + -15.319952964782715 + ], + [ + "ук", + -15.320022583007812 + ], + [ + "每", + -15.320037841796875 + ], + [ + "▁Sweetener", + -15.320054054260254 + ], + [ + "▁Mondial", + -15.320089340209961 + ], + [ + "▁Kangana", + -15.3201322555542 + ], + [ + "▁Sackville", + -15.320134162902832 + ], + [ + "▁Cappuccino", + -15.320147514343262 + ], + [ + "▁Okta", + -15.32021713256836 + ], + [ + "▁penne", + -15.320219993591309 + ], + [ + "MODE", + -15.320266723632812 + ], + [ + "▁Gauguin", + -15.320302963256836 + ], + [ + "▁prismatic", + -15.320343971252441 + ], + [ + "▁Lavinia", + -15.320355415344238 + ], + [ + "▁backbencher", + -15.320361137390137 + ], + [ + "▁Snark", + -15.3203763961792 + ], + [ + "▁alguna", + -15.320388793945312 + ], + [ + "primitive", + -15.32039737701416 + ], + [ + "▁Mandolin", + -15.320399284362793 + ], + [ + "▁microspheres", + -15.32040786743164 + ], + [ + "▁Lehner", + -15.320457458496094 + ], + [ + "▁Canister", + -15.320463180541992 + ], + [ + "▁Sumit", + -15.320526123046875 + ], + [ + "▁Vendetta", + -15.320528984069824 + ], + [ + "▁ANNE", + -15.320540428161621 + ], + [ + "dolf", + -15.32054328918457 + ], + [ + "▁adulterated", + -15.32056713104248 + ], + [ + "▁Latrobe", + -15.320575714111328 + ], + [ + "caution", + -15.320585250854492 + ], + [ + "PII", + -15.320609092712402 + ], + [ + "pubmed", + -15.320718765258789 + ], + [ + "▁scooted", + -15.320752143859863 + ], + [ + "▁Thapa", + -15.320778846740723 + ], + [ + "1854", + -15.320791244506836 + ], + [ + "▁Hourglass", + -15.32079792022705 + ], + [ + "▁reverend", + -15.320804595947266 + ], + [ + "▁Mercuri", + -15.320808410644531 + ], + [ + "▁COMMUN", + -15.320847511291504 + ], + [ + "ασ", + -15.320853233337402 + ], + [ + "▁Incarnate", + -15.320865631103516 + ], + [ + "▁Crema", + -15.320868492126465 + ], + [ + "東", + -15.320902824401855 + ], + [ + "▁kola", + -15.320938110351562 + ], + [ + "▁Pekin", + -15.320988655090332 + ], + [ + "▁GORE", + -15.321098327636719 + ], + [ + "▁guid", + -15.321155548095703 + ], + [ + "conception", + -15.321159362792969 + ], + [ + "awarded", + -15.321200370788574 + ], + [ + "deception", + -15.321257591247559 + ], + [ + "▁Liège", + -15.321304321289062 + ], + [ + "▁Uncanny", + -15.321324348449707 + ], + [ + "▁Interlocking", + -15.321325302124023 + ], + [ + "RANK", + -15.32132625579834 + ], + [ + "▁schlep", + -15.32133960723877 + ], + [ + "▁Kachin", + -15.321398735046387 + ], + [ + "▁histrionic", + -15.321418762207031 + ], + [ + "▁CASS", + -15.321420669555664 + ], + [ + "manuel", + -15.321487426757812 + ], + [ + "▁Puss", + -15.321493148803711 + ], + [ + "▁RECENT", + -15.32150936126709 + ], + [ + "▁Seduction", + -15.32150936126709 + ], + [ + "FIVE", + -15.321517944335938 + ], + [ + "Lyric", + -15.321549415588379 + ], + [ + "▁garnishes", + -15.321568489074707 + ], + [ + "trooper", + -15.321588516235352 + ], + [ + "▁Ashlyn", + -15.321590423583984 + ], + [ + "▁Wolfenstein", + -15.321616172790527 + ], + [ + "▁exoplanet", + -15.321638107299805 + ], + [ + "▁slimline", + -15.321663856506348 + ], + [ + "▁giu", + -15.32166862487793 + ], + [ + "▁Pila", + -15.321681022644043 + ], + [ + "wrapping", + -15.321710586547852 + ], + [ + "▁TPT", + -15.321721076965332 + ], + [ + "▁Dreyer", + -15.321762084960938 + ], + [ + "Oro", + -15.321783065795898 + ], + [ + "▁Stedman", + -15.321795463562012 + ], + [ + "▁detangle", + -15.321881294250488 + ], + [ + "▁Administering", + -15.321889877319336 + ], + [ + "▁Gohan", + -15.321905136108398 + ], + [ + "▁WFM", + -15.321938514709473 + ], + [ + "▁Eglinton", + -15.32194995880127 + ], + [ + "▁Mooresville", + -15.32194995880127 + ], + [ + "▁Machar", + -15.3219575881958 + ], + [ + "Fool", + -15.321959495544434 + ], + [ + "governor", + -15.321991920471191 + ], + [ + "▁Washoe", + -15.322081565856934 + ], + [ + "▁Macho", + -15.322088241577148 + ], + [ + "▁abdicate", + -15.32209300994873 + ], + [ + "correcting", + -15.322093963623047 + ], + [ + "▁Gehl", + -15.322168350219727 + ], + [ + "▁Kickstart", + -15.322226524353027 + ], + [ + "▁impressionistic", + -15.322229385375977 + ], + [ + "▁Computerized", + -15.32224178314209 + ], + [ + "contro", + -15.322272300720215 + ], + [ + "▁Slugger", + -15.322293281555176 + ], + [ + "▁dilatation", + -15.322299003601074 + ], + [ + "yltransferase", + -15.322368621826172 + ], + [ + "▁Gomorrah", + -15.322409629821777 + ], + [ + "siege", + -15.322436332702637 + ], + [ + "▁Undefined", + -15.3224458694458 + ], + [ + "▁Sneaky", + -15.322463035583496 + ], + [ + "▁Balaam", + -15.322493553161621 + ], + [ + "▁Altuve", + -15.322559356689453 + ], + [ + "▁☎", + -15.322564125061035 + ], + [ + "▁perchance", + -15.322598457336426 + ], + [ + "ਿ", + -15.322611808776855 + ], + [ + "CHIP", + -15.322625160217285 + ], + [ + "▁exorcise", + -15.322649002075195 + ], + [ + "▁Shqipëri", + -15.322704315185547 + ], + [ + "▁Ayton", + -15.322711944580078 + ], + [ + "▁Dalrymple", + -15.32274055480957 + ], + [ + "wissen", + -15.322775840759277 + ], + [ + "iqa", + -15.322785377502441 + ], + [ + "▁ISSUES", + -15.322792053222656 + ], + [ + "▁‡", + -15.322805404663086 + ], + [ + "▁dink", + -15.322905540466309 + ], + [ + "pardon", + -15.322954177856445 + ], + [ + "▁Castaway", + -15.322978019714355 + ], + [ + "convict", + -15.323030471801758 + ], + [ + "▁COLLINS", + -15.323091506958008 + ], + [ + "▁Puke", + -15.323145866394043 + ], + [ + "▁hooray", + -15.323164939880371 + ], + [ + "▁saggy", + -15.3231840133667 + ], + [ + "▁MESA", + -15.32320499420166 + ], + [ + "▁scrawl", + -15.323211669921875 + ], + [ + "▁Beckley", + -15.323254585266113 + ], + [ + "▁daddies", + -15.323270797729492 + ], + [ + "▁Marvellous", + -15.323288917541504 + ], + [ + "▁vegetal", + -15.323309898376465 + ], + [ + "▁Telenor", + -15.323328971862793 + ], + [ + "▁nintendo", + -15.32336711883545 + ], + [ + "▁karting", + -15.323370933532715 + ], + [ + "DET", + -15.323372840881348 + ], + [ + "▁Poznan", + -15.323404312133789 + ], + [ + "▁LTO", + -15.3234281539917 + ], + [ + "▁chitosan", + -15.323441505432129 + ], + [ + "▁Kaji", + -15.323518753051758 + ], + [ + "funeralhome", + -15.323561668395996 + ], + [ + "北", + -15.323567390441895 + ], + [ + "▁demoralized", + -15.323602676391602 + ], + [ + "▁Archetype", + -15.323628425598145 + ], + [ + "Alma", + -15.323638916015625 + ], + [ + "능", + -15.323641777038574 + ], + [ + "▁countywide", + -15.323729515075684 + ], + [ + "Trigger", + -15.323771476745605 + ], + [ + "▁foreplay", + -15.323789596557617 + ], + [ + "▁jockeying", + -15.323813438415527 + ], + [ + "▁assimilating", + -15.323827743530273 + ], + [ + "▁YOGA", + -15.32384967803955 + ], + [ + "▁Concentrating", + -15.323864936828613 + ], + [ + "▁Liliana", + -15.323908805847168 + ], + [ + "▁Pneumonia", + -15.32392406463623 + ], + [ + "NYSEARCA", + -15.323939323425293 + ], + [ + "▁spoofed", + -15.323981285095215 + ], + [ + "▁thermistor", + -15.324030876159668 + ], + [ + "▁dmg", + -15.324070930480957 + ], + [ + "▁legalistic", + -15.324193000793457 + ], + [ + "▁resuspended", + -15.324197769165039 + ], + [ + "▁symmetrically", + -15.324206352233887 + ], + [ + "ritual", + -15.324236869812012 + ], + [ + "▁Pixma", + -15.324252128601074 + ], + [ + "▁OpenShift", + -15.324291229248047 + ], + [ + "Killing", + -15.324292182922363 + ], + [ + "▁Speight", + -15.32436752319336 + ], + [ + "▁Astley", + -15.324377059936523 + ], + [ + "▁escu", + -15.324381828308105 + ], + [ + "▁Wike", + -15.324389457702637 + ], + [ + "▁minnow", + -15.324506759643555 + ], + [ + "▁£750", + -15.324507713317871 + ], + [ + "Busty", + -15.324525833129883 + ], + [ + "▁Gerais", + -15.32454776763916 + ], + [ + "▁Mediterr", + -15.324562072753906 + ], + [ + "▁Testimonial", + -15.324568748474121 + ], + [ + "ística", + -15.324593544006348 + ], + [ + "XYZ", + -15.3246488571167 + ], + [ + "▁hotdog", + -15.324668884277344 + ], + [ + "kü", + -15.324719429016113 + ], + [ + "▁SWP", + -15.324745178222656 + ], + [ + "▁DIFFERENCE", + -15.32480525970459 + ], + [ + "▁scurvy", + -15.32480525970459 + ], + [ + "▁Slovene", + -15.32481575012207 + ], + [ + "▁château", + -15.324824333190918 + ], + [ + "▁Sportsnet", + -15.324840545654297 + ], + [ + "▁Seko", + -15.32484245300293 + ], + [ + "▁drummed", + -15.324874877929688 + ], + [ + "cioni", + -15.324878692626953 + ], + [ + "▁mononuclear", + -15.324923515319824 + ], + [ + "▁follies", + -15.32492733001709 + ], + [ + "▁Velazquez", + -15.324971199035645 + ], + [ + "▁Valance", + -15.32498836517334 + ], + [ + "▁Farther", + -15.325019836425781 + ], + [ + "latina", + -15.325024604797363 + ], + [ + "▁ceding", + -15.325031280517578 + ], + [ + "Mila", + -15.325037002563477 + ], + [ + "▁tsu", + -15.325052261352539 + ], + [ + "▁Søren", + -15.325060844421387 + ], + [ + "▁Longines", + -15.325069427490234 + ], + [ + "▁banshee", + -15.325116157531738 + ], + [ + "▁EOC", + -15.325122833251953 + ], + [ + "▁Prevail", + -15.325127601623535 + ], + [ + "okie", + -15.325139045715332 + ], + [ + "▁Premature", + -15.325176239013672 + ], + [ + "▁Agric", + -15.32519817352295 + ], + [ + "contribution", + -15.325214385986328 + ], + [ + "▁Tseng", + -15.325221061706543 + ], + [ + "▁Helpdesk", + -15.325234413146973 + ], + [ + "▁Subramanian", + -15.325248718261719 + ], + [ + "sandwich", + -15.325328826904297 + ], + [ + "gib", + -15.325343132019043 + ], + [ + "▁Barrera", + -15.325356483459473 + ], + [ + "▁Bittrex", + -15.325392723083496 + ], + [ + "▁laparoscopy", + -15.325451850891113 + ], + [ + "▁GPT", + -15.325541496276855 + ], + [ + "anthropic", + -15.325551986694336 + ], + [ + "▁vende", + -15.325570106506348 + ], + [ + "▁tartare", + -15.325596809387207 + ], + [ + "lenko", + -15.325602531433105 + ], + [ + "Ledger", + -15.325613975524902 + ], + [ + "除", + -15.325642585754395 + ], + [ + "▁Schleswig", + -15.325654029846191 + ], + [ + "CEPTION", + -15.32565689086914 + ], + [ + "▁RICE", + -15.325668334960938 + ], + [ + "lesbian", + -15.325708389282227 + ], + [ + "adoption", + -15.325727462768555 + ], + [ + "aksh", + -15.325735092163086 + ], + [ + "▁Gaur", + -15.32574462890625 + ], + [ + "▁MAPS", + -15.325825691223145 + ], + [ + "▁Emiliano", + -15.325838088989258 + ], + [ + "▁sisal", + -15.325878143310547 + ], + [ + "uvr", + -15.325882911682129 + ], + [ + "▁Roel", + -15.325884819030762 + ], + [ + "choo", + -15.325886726379395 + ], + [ + "▁skewered", + -15.325886726379395 + ], + [ + "ờ", + -15.325986862182617 + ], + [ + "▁Guerre", + -15.325989723205566 + ], + [ + "COPD", + -15.326006889343262 + ], + [ + "▁BRAC", + -15.326029777526855 + ], + [ + "▁convicting", + -15.32606029510498 + ], + [ + "KIA", + -15.326081275939941 + ], + [ + "▁cytogenetic", + -15.326114654541016 + ], + [ + "▁Apothecary", + -15.326116561889648 + ], + [ + "Peru", + -15.326148986816406 + ], + [ + "Leica", + -15.326162338256836 + ], + [ + "▁grandmaster", + -15.326163291931152 + ], + [ + "southwest", + -15.32618236541748 + ], + [ + "tumblr", + -15.326213836669922 + ], + [ + "ruta", + -15.326227188110352 + ], + [ + "▁homeopath", + -15.326240539550781 + ], + [ + "ţie", + -15.326269149780273 + ], + [ + "▁Sonu", + -15.326334953308105 + ], + [ + "▁intervertebral", + -15.326349258422852 + ], + [ + "▁parabola", + -15.326371192932129 + ], + [ + "▁Chuang", + -15.326385498046875 + ], + [ + "▁Baan", + -15.326397895812988 + ], + [ + "▁Ā", + -15.326397895812988 + ], + [ + "▁Jealousy", + -15.326410293579102 + ], + [ + "▁Cobble", + -15.326428413391113 + ], + [ + "wildlife", + -15.326462745666504 + ], + [ + "▁Ghazi", + -15.326481819152832 + ], + [ + "ली", + -15.326484680175781 + ], + [ + "▁exploitable", + -15.326486587524414 + ], + [ + "▁Keyser", + -15.326494216918945 + ], + [ + "boiler", + -15.326498985290527 + ], + [ + "Additionally", + -15.326504707336426 + ], + [ + "▁Bednar", + -15.326515197753906 + ], + [ + "▁Burned", + -15.326531410217285 + ], + [ + "에는", + -15.326532363891602 + ], + [ + "▁cip", + -15.326568603515625 + ], + [ + "▁silverado", + -15.326634407043457 + ], + [ + "▁Naba", + -15.326641082763672 + ], + [ + "▁Recess", + -15.326675415039062 + ], + [ + "▁Duchenne", + -15.326691627502441 + ], + [ + "▁Happiest", + -15.32670783996582 + ], + [ + "ível", + -15.3267183303833 + ], + [ + "ONO", + -15.326723098754883 + ], + [ + "▁promulgation", + -15.32674503326416 + ], + [ + "▁TAKEN", + -15.32681941986084 + ], + [ + "▁dentro", + -15.32683277130127 + ], + [ + "▁deciphered", + -15.326913833618164 + ], + [ + "▁Sandford", + -15.326915740966797 + ], + [ + "▁Mosher", + -15.326952934265137 + ], + [ + "▁Swinburne", + -15.327022552490234 + ], + [ + "Pharmacy", + -15.327027320861816 + ], + [ + "▁LARP", + -15.327044486999512 + ], + [ + "▁trova", + -15.327067375183105 + ], + [ + "▁Shenyang", + -15.327082633972168 + ], + [ + "▁Verti", + -15.327082633972168 + ], + [ + "▁Atchison", + -15.327115058898926 + ], + [ + "▁Radhika", + -15.327122688293457 + ], + [ + "▁racialized", + -15.327159881591797 + ], + [ + "▁Tinubu", + -15.327217102050781 + ], + [ + "▁Lingus", + -15.327230453491211 + ], + [ + "▁clomiphene", + -15.327262878417969 + ], + [ + "▁Louder", + -15.327305793762207 + ], + [ + "Framework", + -15.327404975891113 + ], + [ + "▁Complexes", + -15.327465057373047 + ], + [ + "▁McCree", + -15.327485084533691 + ], + [ + "▁marco", + -15.327507972717285 + ], + [ + "▁Embarcadero", + -15.327540397644043 + ], + [ + "▁sauntered", + -15.327553749084473 + ], + [ + "▁misdiagnosis", + -15.327558517456055 + ], + [ + "▁yikes", + -15.32763957977295 + ], + [ + "appearing", + -15.327689170837402 + ], + [ + "▁galvanic", + -15.327714920043945 + ], + [ + "▁Interacting", + -15.327715873718262 + ], + [ + "▁Hardness", + -15.32777214050293 + ], + [ + "▁birdlife", + -15.327783584594727 + ], + [ + "Instruction", + -15.327827453613281 + ], + [ + "▁Compelling", + -15.327879905700684 + ], + [ + "▁Gani", + -15.327889442443848 + ], + [ + "▁maneuverable", + -15.327890396118164 + ], + [ + "▁Crimp", + -15.327925682067871 + ], + [ + "▁GCH", + -15.327961921691895 + ], + [ + "▁Handout", + -15.327974319458008 + ], + [ + "▁numbed", + -15.328054428100586 + ], + [ + "▁Themselves", + -15.328139305114746 + ], + [ + "▁FBO", + -15.328219413757324 + ], + [ + "▁RUG", + -15.328225135803223 + ], + [ + "▁LEM", + -15.328241348266602 + ], + [ + "▁WSM", + -15.328262329101562 + ], + [ + "Bengal", + -15.328263282775879 + ], + [ + "▁Wizarding", + -15.328265190124512 + ], + [ + "▁puking", + -15.328267097473145 + ], + [ + "idle", + -15.328282356262207 + ], + [ + "ван", + -15.328289985656738 + ], + [ + "▁Crucifixion", + -15.328292846679688 + ], + [ + "ratna", + -15.328307151794434 + ], + [ + "▁keylogger", + -15.328312873840332 + ], + [ + "Drill", + -15.328314781188965 + ], + [ + "▁infinitum", + -15.328317642211914 + ], + [ + "▁Kvitova", + -15.328354835510254 + ], + [ + "▁Weidman", + -15.32835865020752 + ], + [ + "▁Pickard", + -15.328442573547363 + ], + [ + "▁EAN", + -15.32845401763916 + ], + [ + "▁Cisneros", + -15.328484535217285 + ], + [ + "▁sprue", + -15.328507423400879 + ], + [ + "▁Ruddy", + -15.328521728515625 + ], + [ + "▁Watercolour", + -15.328536987304688 + ], + [ + "▁Wanderlust", + -15.32857608795166 + ], + [ + "▁Abernathy", + -15.328595161437988 + ], + [ + "▁Skokie", + -15.328604698181152 + ], + [ + "▁Leaderboard", + -15.32861328125 + ], + [ + "▁Stormer", + -15.328621864318848 + ], + [ + "▁Exhale", + -15.328641891479492 + ], + [ + "Across", + -15.328664779663086 + ], + [ + "gnath", + -15.328676223754883 + ], + [ + "▁Hazen", + -15.328794479370117 + ], + [ + "▁Versi", + -15.328819274902344 + ], + [ + "environnement", + -15.328827857971191 + ], + [ + "▁unlit", + -15.328832626342773 + ], + [ + "ADV", + -15.328845024108887 + ], + [ + "▁Aleutian", + -15.32889175415039 + ], + [ + "Halo", + -15.328901290893555 + ], + [ + "▁wilting", + -15.328911781311035 + ], + [ + "▁mobilising", + -15.32894515991211 + ], + [ + "Picayune", + -15.328950881958008 + ], + [ + "▁BTEC", + -15.328953742980957 + ], + [ + "进", + -15.328954696655273 + ], + [ + "▁sorceress", + -15.328984260559082 + ], + [ + "▁Pediatrician", + -15.329018592834473 + ], + [ + "▁drubbing", + -15.329069137573242 + ], + [ + "behaviour", + -15.32907485961914 + ], + [ + "함", + -15.32911491394043 + ], + [ + "▁photoresist", + -15.329139709472656 + ], + [ + "▁Rocher", + -15.329147338867188 + ], + [ + "▁Elkhorn", + -15.32915210723877 + ], + [ + "Mud", + -15.32917594909668 + ], + [ + "▁Bausch", + -15.329206466674805 + ], + [ + "▁predated", + -15.329212188720703 + ], + [ + "ANOVA", + -15.329218864440918 + ], + [ + "▁Astrophysical", + -15.32922077178955 + ], + [ + "▁nonsurgical", + -15.329222679138184 + ], + [ + "▁Displaced", + -15.329278945922852 + ], + [ + "Depend", + -15.329282760620117 + ], + [ + "▁Cordero", + -15.329337120056152 + ], + [ + "▁refitted", + -15.329353332519531 + ], + [ + "▁shepherding", + -15.329503059387207 + ], + [ + "▁Placebo", + -15.329546928405762 + ], + [ + "ার", + -15.329559326171875 + ], + [ + "▁venetian", + -15.329581260681152 + ], + [ + "▁cronyism", + -15.329609870910645 + ], + [ + "Lana", + -15.329638481140137 + ], + [ + "Registered", + -15.329719543457031 + ], + [ + "▁patrick", + -15.329773902893066 + ], + [ + "jski", + -15.32979965209961 + ], + [ + "▁springform", + -15.329817771911621 + ], + [ + "▁instabilities", + -15.329826354980469 + ], + [ + "translate", + -15.329827308654785 + ], + [ + "▁whimpering", + -15.329866409301758 + ], + [ + "▁thermostatic", + -15.329873085021973 + ], + [ + "▁EPISODE", + -15.329874038696289 + ], + [ + "▁persecuting", + -15.329911231994629 + ], + [ + "▁firefly", + -15.329954147338867 + ], + [ + "basi", + -15.32996654510498 + ], + [ + "▁Dillinger", + -15.329988479614258 + ], + [ + "▁MINIMUM", + -15.330022811889648 + ], + [ + "▁altcoin", + -15.33004093170166 + ], + [ + "Eating", + -15.330048561096191 + ], + [ + "▁juridical", + -15.330060005187988 + ], + [ + "fatigue", + -15.330066680908203 + ], + [ + "▁Sedin", + -15.330094337463379 + ], + [ + "▁NECESSARY", + -15.330097198486328 + ], + [ + "Rough", + -15.330124855041504 + ], + [ + "▁PREPARE", + -15.330129623413086 + ], + [ + "▁gastroenteritis", + -15.330245018005371 + ], + [ + "advocacy", + -15.330255508422852 + ], + [ + "HUA", + -15.330267906188965 + ], + [ + "▁Wolcott", + -15.330277442932129 + ], + [ + "▁traduc", + -15.33034610748291 + ], + [ + "▁Pinckney", + -15.33035659790039 + ], + [ + "Romania", + -15.330400466918945 + ], + [ + "itano", + -15.330443382263184 + ], + [ + "▁Freightliner", + -15.330477714538574 + ], + [ + "▁detaching", + -15.330506324768066 + ], + [ + "▁RIBA", + -15.330544471740723 + ], + [ + "▁gerbil", + -15.330598831176758 + ], + [ + "AZZ", + -15.330617904663086 + ], + [ + "Paste", + -15.330649375915527 + ], + [ + "▁Teeter", + -15.330658912658691 + ], + [ + "roscopic", + -15.330705642700195 + ], + [ + "▁decongestant", + -15.330709457397461 + ], + [ + "puppy", + -15.330711364746094 + ], + [ + "▁Hargrove", + -15.33071517944336 + ], + [ + "▁Yeung", + -15.330729484558105 + ], + [ + "▁stratigraphic", + -15.330730438232422 + ], + [ + "▁tradespeople", + -15.330733299255371 + ], + [ + "▁Pimlico", + -15.330764770507812 + ], + [ + "▁gelatinous", + -15.330819129943848 + ], + [ + "▁ETN", + -15.330824851989746 + ], + [ + "Enhanced", + -15.330836296081543 + ], + [ + "otsu", + -15.330866813659668 + ], + [ + "▁Hrithik", + -15.330876350402832 + ], + [ + "▁dalla", + -15.330936431884766 + ], + [ + "▁Summarize", + -15.330972671508789 + ], + [ + "▁recapitulate", + -15.330987930297852 + ], + [ + "▁Francia", + -15.330989837646484 + ], + [ + "▁anorexic", + -15.330989837646484 + ], + [ + "▁Paraben", + -15.3309965133667 + ], + [ + "supervisor", + -15.331005096435547 + ], + [ + "▁scat", + -15.331009864807129 + ], + [ + "Τ", + -15.331038475036621 + ], + [ + "▁unheated", + -15.331074714660645 + ], + [ + "numer", + -15.331109046936035 + ], + [ + "▁Superdome", + -15.331127166748047 + ], + [ + "▁Variability", + -15.331130027770996 + ], + [ + "▁SPV", + -15.331154823303223 + ], + [ + "▁CSIS", + -15.331183433532715 + ], + [ + "▁OKAY", + -15.331184387207031 + ], + [ + "▁Verdun", + -15.331249237060547 + ], + [ + "▁Mensch", + -15.331255912780762 + ], + [ + "▁Lasagna", + -15.331268310546875 + ], + [ + "prophet", + -15.33133602142334 + ], + [ + "▁Shambhala", + -15.331340789794922 + ], + [ + "▁Pogue", + -15.331352233886719 + ], + [ + "▁Maputo", + -15.331388473510742 + ], + [ + "ONIA", + -15.331417083740234 + ], + [ + "paved", + -15.331438064575195 + ], + [ + "▁SEZ", + -15.331480026245117 + ], + [ + "▁testbed", + -15.331521034240723 + ], + [ + "Thanksgiving", + -15.331559181213379 + ], + [ + "▁Qasim", + -15.33156967163086 + ], + [ + "▁Eurosceptic", + -15.3316011428833 + ], + [ + "Wheat", + -15.331608772277832 + ], + [ + "▁Tibi", + -15.331624031066895 + ], + [ + "▁cultists", + -15.331717491149902 + ], + [ + "▁furore", + -15.331730842590332 + ], + [ + "▁geisha", + -15.331782341003418 + ], + [ + "VIL", + -15.331783294677734 + ], + [ + "▁precipitously", + -15.331789016723633 + ], + [ + "▁histopathological", + -15.331790924072266 + ], + [ + "▁Charli", + -15.331796646118164 + ], + [ + "▁Bruni", + -15.331819534301758 + ], + [ + "▁Lasik", + -15.331833839416504 + ], + [ + "▁redesignated", + -15.331873893737793 + ], + [ + "▁Barolo", + -15.331930160522461 + ], + [ + "LIG", + -15.33194351196289 + ], + [ + "▁Zermatt", + -15.331958770751953 + ], + [ + "▁Gollum", + -15.331963539123535 + ], + [ + "▁Cardholder", + -15.331987380981445 + ], + [ + "▁polyphenol", + -15.33202838897705 + ], + [ + "Interior", + -15.332060813903809 + ], + [ + "▁heraldic", + -15.332119941711426 + ], + [ + "▁bursitis", + -15.33213996887207 + ], + [ + "▁Repealed", + -15.33221435546875 + ], + [ + "▁Rayburn", + -15.332242965698242 + ], + [ + "▁Easyship", + -15.332259178161621 + ], + [ + "ड़", + -15.332269668579102 + ], + [ + "masculine", + -15.33229923248291 + ], + [ + "▁tinfoil", + -15.332320213317871 + ], + [ + "▁gaol", + -15.33234691619873 + ], + [ + "▁Norden", + -15.332351684570312 + ], + [ + "WEEK", + -15.332366943359375 + ], + [ + "▁Edelweiss", + -15.332381248474121 + ], + [ + "cleared", + -15.332402229309082 + ], + [ + "▁Gira", + -15.33244514465332 + ], + [ + "øl", + -15.332489013671875 + ], + [ + "▁Samajwadi", + -15.332512855529785 + ], + [ + "▁Kwak", + -15.332514762878418 + ], + [ + "▁truncate", + -15.332531929016113 + ], + [ + "ullu", + -15.332586288452148 + ], + [ + "▁buccal", + -15.332623481750488 + ], + [ + "▁McGahn", + -15.332653045654297 + ], + [ + "▁MADRID", + -15.332682609558105 + ], + [ + "▁roughest", + -15.332691192626953 + ], + [ + "▁Czer", + -15.332693099975586 + ], + [ + "▁WMI", + -15.332704544067383 + ], + [ + "▁Neutrogena", + -15.332735061645508 + ], + [ + "Mathematics", + -15.332745552062988 + ], + [ + "▁gunboat", + -15.332768440246582 + ], + [ + "▁unerring", + -15.332775115966797 + ], + [ + "▁lusty", + -15.33283519744873 + ], + [ + "▁buries", + -15.332842826843262 + ], + [ + "▁duodenal", + -15.332847595214844 + ], + [ + "Zoe", + -15.332886695861816 + ], + [ + "▁unavoidably", + -15.332939147949219 + ], + [ + "▁hanno", + -15.332952499389648 + ], + [ + "cchini", + -15.332953453063965 + ], + [ + "▁slogging", + -15.332953453063965 + ], + [ + "▁unlined", + -15.332974433898926 + ], + [ + "Affiliate", + -15.332987785339355 + ], + [ + "▁Knick", + -15.332990646362305 + ], + [ + "▁Morden", + -15.332998275756836 + ], + [ + "Trax", + -15.333026885986328 + ], + [ + "celebration", + -15.333030700683594 + ], + [ + "▁Ryland", + -15.33303165435791 + ], + [ + "▁Kamar", + -15.333043098449707 + ], + [ + "▁LDR", + -15.33311653137207 + ], + [ + "▁Soderbergh", + -15.333149909973145 + ], + [ + "headline", + -15.333184242248535 + ], + [ + "TTERS", + -15.33322811126709 + ], + [ + "▁benzodiazepine", + -15.33323860168457 + ], + [ + "▁SHANGHAI", + -15.333255767822266 + ], + [ + "▁Badu", + -15.333259582519531 + ], + [ + "Footnote", + -15.333276748657227 + ], + [ + "▁DGA", + -15.333283424377441 + ], + [ + "▁Prieto", + -15.333296775817871 + ], + [ + "FRIEND", + -15.333309173583984 + ], + [ + "▁sapling", + -15.333319664001465 + ], + [ + "kinesis", + -15.333320617675781 + ], + [ + "▁crystallography", + -15.333330154418945 + ], + [ + "▁Suárez", + -15.333348274230957 + ], + [ + "▁bobblehead", + -15.333352088928223 + ], + [ + "DDD", + -15.33336353302002 + ], + [ + "Dylan", + -15.333389282226562 + ], + [ + "▁gynecologic", + -15.333418846130371 + ], + [ + "Farrell", + -15.333491325378418 + ], + [ + "ILLER", + -15.333536148071289 + ], + [ + "▁Correia", + -15.3335542678833 + ], + [ + "▁constricting", + -15.333564758300781 + ], + [ + "▁Sikorsky", + -15.333572387695312 + ], + [ + "avey", + -15.333573341369629 + ], + [ + "alumni", + -15.333605766296387 + ], + [ + "Abby", + -15.333625793457031 + ], + [ + "▁Choreography", + -15.333630561828613 + ], + [ + "Harrison", + -15.33364200592041 + ], + [ + "▁Clou", + -15.333745956420898 + ], + [ + "ievable", + -15.333748817443848 + ], + [ + "Omega", + -15.333757400512695 + ], + [ + "▁impulsivity", + -15.333758354187012 + ], + [ + "▁Automata", + -15.333770751953125 + ], + [ + "oslav", + -15.333772659301758 + ], + [ + "移", + -15.33379077911377 + ], + [ + "控制", + -15.333818435668945 + ], + [ + "hexane", + -15.333841323852539 + ], + [ + "infectious", + -15.333852767944336 + ], + [ + "▁Ebates", + -15.33389663696289 + ], + [ + "▁Shala", + -15.333955764770508 + ], + [ + "▁Praha", + -15.333961486816406 + ], + [ + "▁histologic", + -15.334047317504883 + ], + [ + "▁Elsinore", + -15.33405590057373 + ], + [ + "▁thundered", + -15.33407974243164 + ], + [ + "▁Langham", + -15.334114074707031 + ], + [ + "▁Kingsway", + -15.334124565124512 + ], + [ + "▁seperately", + -15.334126472473145 + ], + [ + "▁Cotta", + -15.334131240844727 + ], + [ + "▁OPENING", + -15.334147453308105 + ], + [ + "Idaho", + -15.33415412902832 + ], + [ + "▁OWNERS", + -15.334161758422852 + ], + [ + "▁occluded", + -15.334174156188965 + ], + [ + "THANK", + -15.334208488464355 + ], + [ + "Holding", + -15.334217071533203 + ], + [ + "▁Calming", + -15.334219932556152 + ], + [ + "▁Duolingo", + -15.334317207336426 + ], + [ + "▁quitter", + -15.334346771240234 + ], + [ + "▁TATA", + -15.334348678588867 + ], + [ + "▁Satanism", + -15.334375381469727 + ], + [ + "▁Murillo", + -15.33438491821289 + ], + [ + "▁Wahab", + -15.334386825561523 + ], + [ + "▁chook", + -15.334505081176758 + ], + [ + "▁CBB", + -15.334517478942871 + ], + [ + "▁statuary", + -15.334532737731934 + ], + [ + "▁chanel", + -15.334590911865234 + ], + [ + "▁Hermon", + -15.334592819213867 + ], + [ + "ample", + -15.334598541259766 + ], + [ + "▁Groe", + -15.334610939025879 + ], + [ + "▁pommel", + -15.334640502929688 + ], + [ + "utsch", + -15.334648132324219 + ], + [ + "▁bluegill", + -15.334668159484863 + ], + [ + "▁IMPORT", + -15.334676742553711 + ], + [ + "िक", + -15.334684371948242 + ], + [ + "▁freckle", + -15.33470344543457 + ], + [ + "quickly", + -15.334729194641113 + ], + [ + "▁shuffleboard", + -15.334753036499023 + ], + [ + "▁duodenum", + -15.33480167388916 + ], + [ + "▁victimhood", + -15.334803581237793 + ], + [ + "▁Gramma", + -15.334835052490234 + ], + [ + "▁Ruslan", + -15.335010528564453 + ], + [ + "▁Boxster", + -15.335022926330566 + ], + [ + "Sierra", + -15.335046768188477 + ], + [ + "▁sunshade", + -15.335058212280273 + ], + [ + "▁Krill", + -15.335097312927246 + ], + [ + "▁Kwang", + -15.335113525390625 + ], + [ + "DNR", + -15.3351469039917 + ], + [ + "gorgeous", + -15.33515739440918 + ], + [ + "▁enim", + -15.335247993469238 + ], + [ + "▁shipwrecked", + -15.335249900817871 + ], + [ + "▁Kizer", + -15.335251808166504 + ], + [ + "▁hydraulically", + -15.335287094116211 + ], + [ + "▁Publ", + -15.33533000946045 + ], + [ + "▁Lustig", + -15.335356712341309 + ], + [ + "▁Pilkington", + -15.335360527038574 + ], + [ + "▁Selwyn", + -15.335503578186035 + ], + [ + "▁nudity", + -15.33554744720459 + ], + [ + "▁Cima", + -15.33560562133789 + ], + [ + "▁sicknesses", + -15.33561897277832 + ], + [ + "▁Pilipinas", + -15.33562183380127 + ], + [ + "▁Merriman", + -15.335641860961914 + ], + [ + "▁Foresight", + -15.33564567565918 + ], + [ + "▁nordic", + -15.335663795471191 + ], + [ + "Functional", + -15.335668563842773 + ], + [ + "▁barcelona", + -15.335733413696289 + ], + [ + "▁EEE", + -15.33575439453125 + ], + [ + "科", + -15.335759162902832 + ], + [ + "▁Strati", + -15.335805892944336 + ], + [ + "oudi", + -15.335824966430664 + ], + [ + "▁Bolognese", + -15.335845947265625 + ], + [ + "▁discrediting", + -15.335857391357422 + ], + [ + "▁Deceased", + -15.335883140563965 + ], + [ + "▁Speciality", + -15.335886001586914 + ], + [ + "▁papillary", + -15.33588695526123 + ], + [ + "▁unenviable", + -15.335901260375977 + ], + [ + "▁Shanxi", + -15.335911750793457 + ], + [ + "▁HAHA", + -15.335915565490723 + ], + [ + "transmitted", + -15.335925102233887 + ], + [ + "climatic", + -15.335991859436035 + ], + [ + "▁IPsec", + -15.335999488830566 + ], + [ + "Bailey", + -15.336013793945312 + ], + [ + "compatibility", + -15.336030960083008 + ], + [ + "▁Barstow", + -15.336043357849121 + ], + [ + "▁brainstormed", + -15.336071968078613 + ], + [ + "▁frack", + -15.33607292175293 + ], + [ + "▁CITES", + -15.33608341217041 + ], + [ + "▁Cellphone", + -15.336092948913574 + ], + [ + "▁Kutch", + -15.336094856262207 + ], + [ + "▁snotty", + -15.336145401000977 + ], + [ + "amateur", + -15.336167335510254 + ], + [ + "▁LastPass", + -15.336170196533203 + ], + [ + "Mogg", + -15.336193084716797 + ], + [ + "▁Upwork", + -15.336194038391113 + ], + [ + "kultur", + -15.336228370666504 + ], + [ + "▁Veni", + -15.336235046386719 + ], + [ + "jör", + -15.336258888244629 + ], + [ + "▁heeding", + -15.336281776428223 + ], + [ + "▁derailing", + -15.336312294006348 + ], + [ + "▁Schnell", + -15.336328506469727 + ], + [ + "▁boobies", + -15.33633804321289 + ], + [ + "▁exigency", + -15.336349487304688 + ], + [ + "Grill", + -15.33636474609375 + ], + [ + "▁Brophy", + -15.33642864227295 + ], + [ + "▁uncredited", + -15.336433410644531 + ], + [ + "▁Flavored", + -15.336477279663086 + ], + [ + "▁brandished", + -15.336504936218262 + ], + [ + "▁humdrum", + -15.336592674255371 + ], + [ + "▁Feller", + -15.3366060256958 + ], + [ + "continuing", + -15.336607933044434 + ], + [ + "▁Squeak", + -15.33661937713623 + ], + [ + "▁elizabeth", + -15.336647987365723 + ], + [ + "predictable", + -15.336649894714355 + ], + [ + "▁Sascha", + -15.336650848388672 + ], + [ + "▁Periodontal", + -15.33666706085205 + ], + [ + "▁LFS", + -15.336685180664062 + ], + [ + "▁Highbury", + -15.33669662475586 + ], + [ + "Admiral", + -15.336753845214844 + ], + [ + "▁Athos", + -15.336774826049805 + ], + [ + "▁från", + -15.336786270141602 + ], + [ + "▁Abramovich", + -15.336791038513184 + ], + [ + "▁AIADMK", + -15.336816787719727 + ], + [ + "▁Hamdan", + -15.336830139160156 + ], + [ + "▁Lejeune", + -15.336872100830078 + ], + [ + "▁Auston", + -15.33688735961914 + ], + [ + "▁Ан", + -15.336893081665039 + ], + [ + "AGING", + -15.33696460723877 + ], + [ + "Mickey", + -15.337015151977539 + ], + [ + "▁Hindenburg", + -15.337050437927246 + ], + [ + "▁Jumpsuit", + -15.33707332611084 + ], + [ + "▁LIGHTS", + -15.337085723876953 + ], + [ + "vidya", + -15.337093353271484 + ], + [ + "idhi", + -15.337103843688965 + ], + [ + "▁bifida", + -15.33713436126709 + ], + [ + "ulitis", + -15.337164878845215 + ], + [ + "▁THREAD", + -15.337180137634277 + ], + [ + "▁salutary", + -15.337189674377441 + ], + [ + "▁Fifties", + -15.33724594116211 + ], + [ + "▁wishbone", + -15.337251663208008 + ], + [ + "▁completly", + -15.337316513061523 + ], + [ + "luke", + -15.337329864501953 + ], + [ + "▁CBL", + -15.337347984313965 + ], + [ + "overflow", + -15.33735466003418 + ], + [ + "▁Dewsbury", + -15.337369918823242 + ], + [ + "CLOSE", + -15.337384223937988 + ], + [ + "▁underemployed", + -15.337403297424316 + ], + [ + "CRU", + -15.337422370910645 + ], + [ + "▁WINNING", + -15.337442398071289 + ], + [ + "▁elapse", + -15.337458610534668 + ], + [ + "▁camaro", + -15.337486267089844 + ], + [ + "▁androgenic", + -15.33748722076416 + ], + [ + "▁seiner", + -15.337538719177246 + ], + [ + "ѕо", + -15.337563514709473 + ], + [ + "▁Savour", + -15.337655067443848 + ], + [ + "▁Augustinian", + -15.337689399719238 + ], + [ + "▁belittled", + -15.337709426879883 + ], + [ + "Crossing", + -15.337729454040527 + ], + [ + "▁Banish", + -15.337733268737793 + ], + [ + "▁wrenched", + -15.337733268737793 + ], + [ + "Cub", + -15.337735176086426 + ], + [ + "▁Cogn", + -15.337760925292969 + ], + [ + "▁Lanai", + -15.337766647338867 + ], + [ + "▁PLATFORM", + -15.337769508361816 + ], + [ + "transportation", + -15.337786674499512 + ], + [ + "▁Begun", + -15.3378267288208 + ], + [ + "ylus", + -15.337837219238281 + ], + [ + "▁immunosuppression", + -15.33786392211914 + ], + [ + "▁Cmdr", + -15.337870597839355 + ], + [ + "▁TOLD", + -15.337906837463379 + ], + [ + "▁siphoned", + -15.33793830871582 + ], + [ + "▁ambidextrous", + -15.337974548339844 + ], + [ + "▁Repeatedly", + -15.338065147399902 + ], + [ + "▁Diversification", + -15.338102340698242 + ], + [ + "gehen", + -15.338106155395508 + ], + [ + "akova", + -15.338144302368164 + ], + [ + "▁KMC", + -15.338151931762695 + ], + [ + "▁Comoros", + -15.338164329528809 + ], + [ + "▁frothing", + -15.33816909790039 + ], + [ + "ignac", + -15.33817195892334 + ], + [ + "ffentlich", + -15.3381929397583 + ], + [ + "▁Velez", + -15.338225364685059 + ], + [ + "▁Waterpark", + -15.338233947753906 + ], + [ + "mountable", + -15.338253021240234 + ], + [ + "▁OkCupid", + -15.338343620300293 + ], + [ + "▁Spink", + -15.338393211364746 + ], + [ + "▁FiOS", + -15.338403701782227 + ], + [ + "▁Potash", + -15.338407516479492 + ], + [ + "Chile", + -15.338421821594238 + ], + [ + "INCH", + -15.33849811553955 + ], + [ + "Leading", + -15.3385009765625 + ], + [ + "▁deeded", + -15.338521003723145 + ], + [ + "juri", + -15.338533401489258 + ], + [ + "latan", + -15.338533401489258 + ], + [ + "▁Concurrently", + -15.338603973388672 + ], + [ + "▁Bourge", + -15.338605880737305 + ], + [ + "▁pastrami", + -15.338630676269531 + ], + [ + "ευ", + -15.338631629943848 + ], + [ + "ODY", + -15.338638305664062 + ], + [ + "▁Mendelsohn", + -15.338648796081543 + ], + [ + "vanilla", + -15.338655471801758 + ], + [ + "▁deselect", + -15.338668823242188 + ], + [ + "▁Cadmium", + -15.338708877563477 + ], + [ + "▁Radu", + -15.338757514953613 + ], + [ + "▁Accomplished", + -15.338759422302246 + ], + [ + "▁Pearse", + -15.33878231048584 + ], + [ + "▁OLB", + -15.33883285522461 + ], + [ + "▁Momoa", + -15.338844299316406 + ], + [ + "Philippe", + -15.338846206665039 + ], + [ + "▁Fela", + -15.338891983032227 + ], + [ + "▁Ambrosia", + -15.338911056518555 + ], + [ + "exceed", + -15.338912963867188 + ], + [ + "民", + -15.338912963867188 + ], + [ + "▁Stimulus", + -15.338913917541504 + ], + [ + "▁paratha", + -15.338913917541504 + ], + [ + "▁Barnhart", + -15.338915824890137 + ], + [ + "▁outfitter", + -15.338920593261719 + ], + [ + "▁Adhering", + -15.338947296142578 + ], + [ + "yesterday", + -15.338956832885742 + ], + [ + "▁Schule", + -15.338963508605957 + ], + [ + "▁Colossal", + -15.33902645111084 + ], + [ + "worldwide", + -15.339055061340332 + ], + [ + "QUEEN", + -15.339101791381836 + ], + [ + "▁conga", + -15.339144706726074 + ], + [ + "sensitise", + -15.339219093322754 + ], + [ + "▁airbrushed", + -15.339242935180664 + ], + [ + "Stanford", + -15.339247703552246 + ], + [ + "▁skydive", + -15.339265823364258 + ], + [ + "□", + -15.339282035827637 + ], + [ + "▁Carib", + -15.339302062988281 + ], + [ + "▁RETAIL", + -15.339349746704102 + ], + [ + "GHG", + -15.33935260772705 + ], + [ + "▁계", + -15.339357376098633 + ], + [ + "▁Comerica", + -15.339371681213379 + ], + [ + "▁Alver", + -15.33939266204834 + ], + [ + "▁Hund", + -15.339393615722656 + ], + [ + "▁Cogni", + -15.339396476745605 + ], + [ + "Soldier", + -15.339404106140137 + ], + [ + "によって", + -15.33948802947998 + ], + [ + "surely", + -15.339521408081055 + ], + [ + "▁sintered", + -15.339569091796875 + ], + [ + "čić", + -15.339598655700684 + ], + [ + "▁coastguard", + -15.339699745178223 + ], + [ + "▁Delores", + -15.339704513549805 + ], + [ + "▁TSL", + -15.339705467224121 + ], + [ + "▁baz", + -15.339741706848145 + ], + [ + "skeleton", + -15.33974552154541 + ], + [ + "έρ", + -15.33975887298584 + ], + [ + "▁Whipped", + -15.339761734008789 + ], + [ + "appu", + -15.339823722839355 + ], + [ + "Toxic", + -15.33983039855957 + ], + [ + "▁choco", + -15.339859008789062 + ], + [ + "▁Muzi", + -15.33991813659668 + ], + [ + "OCD", + -15.339999198913574 + ], + [ + "▁bifurcated", + -15.340015411376953 + ], + [ + "▁necromancer", + -15.34005355834961 + ], + [ + "▁ironies", + -15.340075492858887 + ], + [ + "▁Soledad", + -15.340081214904785 + ], + [ + "▁incised", + -15.340094566345215 + ], + [ + "▁spokesmen", + -15.340116500854492 + ], + [ + "▁depute", + -15.34021282196045 + ], + [ + "▁santo", + -15.340216636657715 + ], + [ + "YCE", + -15.340229034423828 + ], + [ + "▁Transformed", + -15.34024715423584 + ], + [ + "▁Janney", + -15.34025764465332 + ], + [ + "▁bootie", + -15.340261459350586 + ], + [ + "▁HiFi", + -15.340290069580078 + ], + [ + "FEMA", + -15.340310096740723 + ], + [ + "▁nihilistic", + -15.34033203125 + ], + [ + "며", + -15.340376853942871 + ], + [ + "▁CHEMICAL", + -15.340429306030273 + ], + [ + "ografia", + -15.340453147888184 + ], + [ + "▁Claud", + -15.34046459197998 + ], + [ + "Upgrade", + -15.340500831604004 + ], + [ + "▁Jaycee", + -15.340558052062988 + ], + [ + "▁Nanyang", + -15.340570449829102 + ], + [ + "▁الج", + -15.340614318847656 + ], + [ + "▁Einar", + -15.340660095214844 + ], + [ + "▁Mantri", + -15.34072208404541 + ], + [ + "▁KNOWN", + -15.340739250183105 + ], + [ + "▁Vagrant", + -15.340757369995117 + ], + [ + "▁irradiance", + -15.340764999389648 + ], + [ + "hool", + -15.34077262878418 + ], + [ + "▁Beaten", + -15.340786933898926 + ], + [ + "▁Subordinate", + -15.340792655944824 + ], + [ + "▁Yami", + -15.34081745147705 + ], + [ + "▁provi", + -15.34081745147705 + ], + [ + "▁impermanence", + -15.340821266174316 + ], + [ + "Notify", + -15.340840339660645 + ], + [ + "▁excitability", + -15.340861320495605 + ], + [ + "semite", + -15.340880393981934 + ], + [ + "RTO", + -15.340902328491211 + ], + [ + "mbps", + -15.340909004211426 + ], + [ + "▁Labeled", + -15.340909004211426 + ], + [ + "▁winnable", + -15.340977668762207 + ], + [ + "▁LINDA", + -15.341017723083496 + ], + [ + "thorough", + -15.341028213500977 + ], + [ + "incarnate", + -15.341029167175293 + ], + [ + "▁dibs", + -15.341036796569824 + ], + [ + "kilo", + -15.341054916381836 + ], + [ + "▁Anticipation", + -15.341064453125 + ], + [ + "▁Ferraro", + -15.341081619262695 + ], + [ + "▁Shader", + -15.341143608093262 + ], + [ + "surprisingly", + -15.341151237487793 + ], + [ + "▁Milliken", + -15.341175079345703 + ], + [ + "▁ROY", + -15.341178894042969 + ], + [ + "▁highchair", + -15.341184616088867 + ], + [ + "▁Vonage", + -15.341188430786133 + ], + [ + "▁Homegrown", + -15.341195106506348 + ], + [ + "▁manageability", + -15.341205596923828 + ], + [ + "▁CPAC", + -15.341216087341309 + ], + [ + "▁deflating", + -15.341283798217773 + ], + [ + "▁Whidbey", + -15.341327667236328 + ], + [ + "Thick", + -15.341340065002441 + ], + [ + "▁Junta", + -15.34135913848877 + ], + [ + "▁NGL", + -15.341416358947754 + ], + [ + "▁Muguruza", + -15.341440200805664 + ], + [ + "Phen", + -15.341475486755371 + ], + [ + "▁Kody", + -15.34149169921875 + ], + [ + "▁idleness", + -15.341514587402344 + ], + [ + "▁Sprache", + -15.341526985168457 + ], + [ + "▁Mastodon", + -15.341557502746582 + ], + [ + "СЃ", + -15.341601371765137 + ], + [ + "▁cartographer", + -15.341609954833984 + ], + [ + "dsworth", + -15.341638565063477 + ], + [ + "LTP", + -15.341646194458008 + ], + [ + "▁Zithromax", + -15.341646194458008 + ], + [ + "دی", + -15.34165096282959 + ], + [ + "SEQ", + -15.341690063476562 + ], + [ + "Domestic", + -15.341702461242676 + ], + [ + "▁Tabla", + -15.341706275939941 + ], + [ + "▁arboretum", + -15.341721534729004 + ], + [ + "▁Gwalior", + -15.341927528381348 + ], + [ + "격", + -15.341927528381348 + ], + [ + "▁assiduously", + -15.34194278717041 + ], + [ + "▁Deine", + -15.341971397399902 + ], + [ + "▁Arenal", + -15.341987609863281 + ], + [ + "▁estaba", + -15.341998100280762 + ], + [ + "▁svg", + -15.342015266418457 + ], + [ + "▁gnashing", + -15.342021942138672 + ], + [ + "ninth", + -15.342036247253418 + ], + [ + "注", + -15.342036247253418 + ], + [ + "▁hogging", + -15.342059135437012 + ], + [ + "▁hysteresis", + -15.342061042785645 + ], + [ + "measuring", + -15.342111587524414 + ], + [ + "▁MBT", + -15.342146873474121 + ], + [ + "▁malfunctioned", + -15.342190742492676 + ], + [ + "▁Escort", + -15.342191696166992 + ], + [ + "▁BGA", + -15.342249870300293 + ], + [ + "▁Handbuch", + -15.342299461364746 + ], + [ + "▁DTP", + -15.342320442199707 + ], + [ + "▁Parody", + -15.342364311218262 + ], + [ + "▁Bakar", + -15.342390060424805 + ], + [ + "▁psychodynamic", + -15.342427253723145 + ], + [ + "▁galling", + -15.34243392944336 + ], + [ + "▁Overhaul", + -15.342443466186523 + ], + [ + "▁preemie", + -15.342451095581055 + ], + [ + "tribute", + -15.342485427856445 + ], + [ + "▁Saturated", + -15.342491149902344 + ], + [ + "▁TMNT", + -15.342498779296875 + ], + [ + "▁Favreau", + -15.342520713806152 + ], + [ + "▁Grimshaw", + -15.342592239379883 + ], + [ + "▁cantilevered", + -15.342625617980957 + ], + [ + "▁BELT", + -15.342650413513184 + ], + [ + "▁Indenture", + -15.342660903930664 + ], + [ + "ocyanin", + -15.342670440673828 + ], + [ + "▁KNOWLEDGE", + -15.342679023742676 + ], + [ + "▁Elysee", + -15.34268856048584 + ], + [ + "▁Varying", + -15.3427095413208 + ], + [ + "芒", + -15.342716217041016 + ], + [ + "▁Maghreb", + -15.342754364013672 + ], + [ + "glycemia", + -15.34277057647705 + ], + [ + "▁Cribb", + -15.342793464660645 + ], + [ + "▁beguile", + -15.342815399169922 + ], + [ + "▁hashish", + -15.342851638793945 + ], + [ + "consideration", + -15.342873573303223 + ], + [ + "Amsterdam", + -15.34288215637207 + ], + [ + "▁Foliage", + -15.342885971069336 + ], + [ + "▁Affluence", + -15.342925071716309 + ], + [ + "kaw", + -15.342957496643066 + ], + [ + "▁scrunched", + -15.342961311340332 + ], + [ + "▁gullies", + -15.342978477478027 + ], + [ + "Wool", + -15.343048095703125 + ], + [ + "ો", + -15.343072891235352 + ], + [ + "Workshop", + -15.34315013885498 + ], + [ + "Francois", + -15.343154907226562 + ], + [ + "▁perilously", + -15.343182563781738 + ], + [ + "▁Deletion", + -15.343194007873535 + ], + [ + "▁Convinced", + -15.343247413635254 + ], + [ + "bhadra", + -15.343411445617676 + ], + [ + "Casey", + -15.343425750732422 + ], + [ + "▁bogie", + -15.343428611755371 + ], + [ + "▁parë", + -15.343463897705078 + ], + [ + "▁Tidewater", + -15.343517303466797 + ], + [ + "ático", + -15.34352970123291 + ], + [ + "▁Sokoto", + -15.343632698059082 + ], + [ + "èvre", + -15.34363842010498 + ], + [ + "▁Etheridge", + -15.343645095825195 + ], + [ + "cuba", + -15.343652725219727 + ], + [ + "▁scalper", + -15.343658447265625 + ], + [ + "▁Heitkamp", + -15.343674659729004 + ], + [ + "▁hydrocephalus", + -15.343680381774902 + ], + [ + "specialized", + -15.343684196472168 + ], + [ + "▁GFI", + -15.343694686889648 + ], + [ + "koku", + -15.343728065490723 + ], + [ + "▁laughably", + -15.343734741210938 + ], + [ + "kirchen", + -15.343761444091797 + ], + [ + "▁disharmony", + -15.343803405761719 + ], + [ + "SiO", + -15.343809127807617 + ], + [ + "▁punted", + -15.343811988830566 + ], + [ + "▁ringgit", + -15.343838691711426 + ], + [ + "▁Craze", + -15.343871116638184 + ], + [ + "始", + -15.343910217285156 + ], + [ + "▁Wizz", + -15.343924522399902 + ], + [ + "TOOL", + -15.343961715698242 + ], + [ + "▁Niemi", + -15.344009399414062 + ], + [ + "▁Persson", + -15.344040870666504 + ], + [ + "Evening", + -15.344051361083984 + ], + [ + "▁Sidon", + -15.344058990478516 + ], + [ + "njali", + -15.34406852722168 + ], + [ + "LAX", + -15.344087600708008 + ], + [ + "▁Birthplace", + -15.344107627868652 + ], + [ + "▁Supercharger", + -15.344148635864258 + ], + [ + "peritoneal", + -15.3441743850708 + ], + [ + "▁microcephaly", + -15.344182968139648 + ], + [ + "▁MARINE", + -15.344188690185547 + ], + [ + "▁Jörg", + -15.344189643859863 + ], + [ + "Sleeve", + -15.344297409057617 + ], + [ + "▁Childbirth", + -15.344297409057617 + ], + [ + "modifying", + -15.344303131103516 + ], + [ + "▁간", + -15.344327926635742 + ], + [ + "1853", + -15.34434700012207 + ], + [ + "▁Miyagi", + -15.34438419342041 + ], + [ + "▁Samford", + -15.344465255737305 + ], + [ + "▁doggedly", + -15.344500541687012 + ], + [ + "▁WDR", + -15.344504356384277 + ], + [ + "Hitler", + -15.344507217407227 + ], + [ + "accused", + -15.344559669494629 + ], + [ + "▁LISTING", + -15.344564437866211 + ], + [ + "▁geezer", + -15.344579696655273 + ], + [ + "▁Alpen", + -15.344589233398438 + ], + [ + "▁backgammon", + -15.344596862792969 + ], + [ + "▁Thaksin", + -15.3446044921875 + ], + [ + "▁sharpshooter", + -15.34462833404541 + ], + [ + "▁casu", + -15.344659805297852 + ], + [ + "▁jotted", + -15.344666481018066 + ], + [ + "scanner", + -15.34469223022461 + ], + [ + "vertebrate", + -15.344707489013672 + ], + [ + "▁prostatectomy", + -15.344754219055176 + ], + [ + "▁Unexpectedly", + -15.344771385192871 + ], + [ + "▁Plutarch", + -15.3447847366333 + ], + [ + "Jurassic", + -15.344799995422363 + ], + [ + "▁Accomplishment", + -15.344827651977539 + ], + [ + "▁otitis", + -15.344829559326172 + ], + [ + "▁Oregano", + -15.344831466674805 + ], + [ + "Spread", + -15.34483814239502 + ], + [ + "munition", + -15.344855308532715 + ], + [ + "Meara", + -15.34487247467041 + ], + [ + "obacterium", + -15.344894409179688 + ], + [ + "Thirty", + -15.344895362854004 + ], + [ + "▁romanticized", + -15.34489631652832 + ], + [ + "substantially", + -15.344903945922852 + ], + [ + "▁PowerPC", + -15.344929695129395 + ], + [ + "▁0207", + -15.34499740600586 + ], + [ + "▁Neuer", + -15.345008850097656 + ], + [ + "▁Shockingly", + -15.345026016235352 + ], + [ + "ivité", + -15.345035552978516 + ], + [ + "ANTON", + -15.34504508972168 + ], + [ + "▁Handgun", + -15.345047950744629 + ], + [ + "invite", + -15.34506607055664 + ], + [ + "Guer", + -15.345078468322754 + ], + [ + "▁libero", + -15.345094680786133 + ], + [ + "▁Govan", + -15.345135688781738 + ], + [ + "▁Kalpa", + -15.345145225524902 + ], + [ + "▁BUTTER", + -15.345179557800293 + ], + [ + "▁financi", + -15.345185279846191 + ], + [ + "▁NetBeans", + -15.345200538635254 + ], + [ + "▁shortcake", + -15.345224380493164 + ], + [ + "급", + -15.345255851745605 + ], + [ + "Lynch", + -15.345267295837402 + ], + [ + "Montreal", + -15.345280647277832 + ], + [ + "▁cabo", + -15.345356941223145 + ], + [ + "▁McAuley", + -15.345369338989258 + ], + [ + "Nash", + -15.345381736755371 + ], + [ + "▁dello", + -15.34549331665039 + ], + [ + "▁Travertine", + -15.345500946044922 + ], + [ + "▁Migrate", + -15.345507621765137 + ], + [ + "▁Kaohsiung", + -15.34555721282959 + ], + [ + "▁Stratocaster", + -15.345559120178223 + ], + [ + "▁Gorakhpur", + -15.345613479614258 + ], + [ + "expanded", + -15.345623016357422 + ], + [ + "▁REDUCED", + -15.345664978027344 + ], + [ + "▁Petry", + -15.34566879272461 + ], + [ + "▁Lepto", + -15.34568977355957 + ], + [ + "▁Nivea", + -15.345715522766113 + ], + [ + "▁FactSet", + -15.345738410949707 + ], + [ + "▁Studied", + -15.345749855041504 + ], + [ + "▁disliking", + -15.34576416015625 + ], + [ + "▁Scab", + -15.345782279968262 + ], + [ + "Lola", + -15.34580135345459 + ], + [ + "▁Swarthmore", + -15.345802307128906 + ], + [ + "▁Khadr", + -15.34581470489502 + ], + [ + "Scientist", + -15.345829010009766 + ], + [ + "imé", + -15.345831871032715 + ], + [ + "▁clammy", + -15.345846176147461 + ], + [ + "▁complementarity", + -15.34585952758789 + ], + [ + "NCL", + -15.345892906188965 + ], + [ + "6638", + -15.345907211303711 + ], + [ + "▁Thoma", + -15.345925331115723 + ], + [ + "▁GLOW", + -15.345966339111328 + ], + [ + "▁Expandable", + -15.345976829528809 + ], + [ + "CFO", + -15.345990180969238 + ], + [ + "▁cómo", + -15.346036911010742 + ], + [ + "▁Slumber", + -15.346060752868652 + ], + [ + "▁Sangiovese", + -15.34606647491455 + ], + [ + "▁collectivist", + -15.3460693359375 + ], + [ + "▁HRW", + -15.346074104309082 + ], + [ + "enyi", + -15.346097946166992 + ], + [ + "znik", + -15.34610652923584 + ], + [ + "▁Amaranth", + -15.346171379089355 + ], + [ + "▁Ranji", + -15.346184730529785 + ], + [ + "▁cheerfulness", + -15.346220016479492 + ], + [ + "▁GUARD", + -15.346243858337402 + ], + [ + "iTunes", + -15.346271514892578 + ], + [ + "▁iniquities", + -15.346273422241211 + ], + [ + "ический", + -15.346304893493652 + ], + [ + "▁stymie", + -15.346353530883789 + ], + [ + "▁Hawkesbury", + -15.346365928649902 + ], + [ + "▁Valeant", + -15.346405982971191 + ], + [ + "▁Slingshot", + -15.346440315246582 + ], + [ + "▁Vigor", + -15.346449851989746 + ], + [ + "▁choreographic", + -15.346463203430176 + ], + [ + "▁Mookie", + -15.346495628356934 + ], + [ + "kila", + -15.346536636352539 + ], + [ + "▁strenght", + -15.346556663513184 + ], + [ + "cruci", + -15.34656047821045 + ], + [ + "▁saluting", + -15.346562385559082 + ], + [ + "▁Sahu", + -15.346665382385254 + ], + [ + "▁Laszlo", + -15.34666633605957 + ], + [ + "▁ipsum", + -15.346678733825684 + ], + [ + "▁Kantor", + -15.346702575683594 + ], + [ + "▁Luminar", + -15.346738815307617 + ], + [ + "▁gallium", + -15.346773147583008 + ], + [ + "▁vacating", + -15.34681224822998 + ], + [ + "▁Adela", + -15.346821784973145 + ], + [ + "▁Plantar", + -15.346893310546875 + ], + [ + "▁grouchy", + -15.346896171569824 + ], + [ + "expire", + -15.346912384033203 + ], + [ + "▁Melia", + -15.346927642822266 + ], + [ + "▁uncoordinated", + -15.347004890441895 + ], + [ + "▁RPF", + -15.347020149230957 + ], + [ + "Reliability", + -15.347037315368652 + ], + [ + "▁benzyl", + -15.347039222717285 + ], + [ + "Opinion", + -15.347049713134766 + ], + [ + "ρά", + -15.347053527832031 + ], + [ + "▁Sindhi", + -15.34705924987793 + ], + [ + "▁Ghee", + -15.347074508666992 + ], + [ + "▁taekwondo", + -15.347084045410156 + ], + [ + "▁Schel", + -15.347151756286621 + ], + [ + "▁Stackable", + -15.34715461730957 + ], + [ + "▁Sabu", + -15.34715747833252 + ], + [ + "▁canvassed", + -15.34717845916748 + ], + [ + "PAK", + -15.34718132019043 + ], + [ + "▁Airshow", + -15.347185134887695 + ], + [ + "▁Hydrocarbon", + -15.347188949584961 + ], + [ + "▁octet", + -15.347212791442871 + ], + [ + "▁BOUND", + -15.347229957580566 + ], + [ + "relieving", + -15.347273826599121 + ], + [ + "ются", + -15.347289085388184 + ], + [ + "▁REFER", + -15.347297668457031 + ], + [ + "twenties", + -15.34735107421875 + ], + [ + "▁Hutu", + -15.347354888916016 + ], + [ + "▁Macedon", + -15.347399711608887 + ], + [ + "▁grouting", + -15.347411155700684 + ], + [ + "▁wrung", + -15.347455024719238 + ], + [ + "▁excommunication", + -15.347457885742188 + ], + [ + "▁Madina", + -15.347461700439453 + ], + [ + "▁assistantship", + -15.347461700439453 + ], + [ + "annually", + -15.347469329833984 + ], + [ + "▁Munir", + -15.347475051879883 + ], + [ + "▁bilaterally", + -15.347477912902832 + ], + [ + "▁saison", + -15.347522735595703 + ], + [ + "▁erste", + -15.347550392150879 + ], + [ + "▁YANG", + -15.347600936889648 + ], + [ + "▁ASQ", + -15.347624778747559 + ], + [ + "もの", + -15.347667694091797 + ], + [ + "▁Bullseye", + -15.347675323486328 + ], + [ + "aría", + -15.347683906555176 + ], + [ + "bsc", + -15.347683906555176 + ], + [ + "▁tuscan", + -15.347782135009766 + ], + [ + "▁Erikson", + -15.347786903381348 + ], + [ + "▁Phenomenon", + -15.34780216217041 + ], + [ + "▁definable", + -15.347841262817383 + ], + [ + "▁TRACE", + -15.347879409790039 + ], + [ + "▁Trine", + -15.347885131835938 + ], + [ + "▁geocache", + -15.34788990020752 + ], + [ + "Mediterranean", + -15.347890853881836 + ], + [ + "▁Obstructive", + -15.347914695739746 + ], + [ + "illiard", + -15.34793472290039 + ], + [ + "▁Ginza", + -15.34793472290039 + ], + [ + "nigh", + -15.34793758392334 + ], + [ + "▁Ballantyne", + -15.347952842712402 + ], + [ + "▁Pabst", + -15.347966194152832 + ], + [ + "▁brimstone", + -15.347980499267578 + ], + [ + "▁Sinking", + -15.348038673400879 + ], + [ + "▁slatted", + -15.348061561584473 + ], + [ + "cadia", + -15.348079681396484 + ], + [ + "▁transcoding", + -15.348135948181152 + ], + [ + "ajra", + -15.348198890686035 + ], + [ + "Springer", + -15.348217964172363 + ], + [ + "▁Haemato", + -15.34821891784668 + ], + [ + "threatened", + -15.348223686218262 + ], + [ + "jri", + -15.348278999328613 + ], + [ + "▁Lati", + -15.348309516906738 + ], + [ + "▁Carlsberg", + -15.348344802856445 + ], + [ + "▁trag", + -15.348389625549316 + ], + [ + "▁RDBMS", + -15.348409652709961 + ], + [ + "▁Autry", + -15.348438262939453 + ], + [ + "▁Farhad", + -15.3484468460083 + ], + [ + "▁Lucan", + -15.348454475402832 + ], + [ + "نی", + -15.348455429077148 + ], + [ + "▁Hernan", + -15.348465919494629 + ], + [ + "▁dribbled", + -15.348470687866211 + ], + [ + "pinterest", + -15.34848690032959 + ], + [ + "utopia", + -15.348505020141602 + ], + [ + "▁Tablecloth", + -15.348517417907715 + ], + [ + "▁Wristband", + -15.348531723022461 + ], + [ + "РС", + -15.34853458404541 + ], + [ + "zick", + -15.348535537719727 + ], + [ + "▁Batra", + -15.34858226776123 + ], + [ + "Already", + -15.348608016967773 + ], + [ + "▁Stroudsburg", + -15.348608016967773 + ], + [ + "▁Katharina", + -15.34861946105957 + ], + [ + "winski", + -15.348625183105469 + ], + [ + "▁Shail", + -15.34863567352295 + ], + [ + "▁APPS", + -15.348663330078125 + ], + [ + "▁DAVE", + -15.348700523376465 + ], + [ + "▁Idiom", + -15.34870719909668 + ], + [ + "गा", + -15.348711013793945 + ], + [ + "▁Mondrian", + -15.348736763000488 + ], + [ + "▁Cheetos", + -15.34874153137207 + ], + [ + "▁Futura", + -15.348755836486816 + ], + [ + "▁FUE", + -15.348763465881348 + ], + [ + "ographie", + -15.348807334899902 + ], + [ + "▁Beneficiary", + -15.348821640014648 + ], + [ + "نه", + -15.348823547363281 + ], + [ + "▁alanine", + -15.348835945129395 + ], + [ + "ppp", + -15.348858833312988 + ], + [ + "▁Yoke", + -15.348883628845215 + ], + [ + "sprout", + -15.34888744354248 + ], + [ + "Rita", + -15.348942756652832 + ], + [ + "▁Kearny", + -15.348954200744629 + ], + [ + "▁Parishad", + -15.348962783813477 + ], + [ + "▁XPath", + -15.349004745483398 + ], + [ + "▁Symbio", + -15.349029541015625 + ], + [ + "▁squalor", + -15.349048614501953 + ], + [ + "▁Jeroen", + -15.349088668823242 + ], + [ + "▁Bezel", + -15.34909439086914 + ], + [ + "ironically", + -15.349115371704102 + ], + [ + "▁lenovo", + -15.34916877746582 + ], + [ + "agnol", + -15.349190711975098 + ], + [ + "propane", + -15.349203109741211 + ], + [ + "▁PROCEED", + -15.34925651550293 + ], + [ + "▁Yoshino", + -15.349257469177246 + ], + [ + "▁Middleware", + -15.349267959594727 + ], + [ + "ologique", + -15.349298477172852 + ], + [ + "concussion", + -15.34934139251709 + ], + [ + "▁immanent", + -15.349372863769531 + ], + [ + "▁BREATH", + -15.349390983581543 + ], + [ + "▁Auditory", + -15.349395751953125 + ], + [ + "▁Marfa", + -15.349398612976074 + ], + [ + "▁Misconduct", + -15.349398612976074 + ], + [ + "▁RRC", + -15.349404335021973 + ], + [ + "▁Ahsan", + -15.349409103393555 + ], + [ + "▁Parva", + -15.349467277526855 + ], + [ + "▁Fraternal", + -15.349503517150879 + ], + [ + "▁Confusing", + -15.349508285522461 + ], + [ + "conceal", + -15.349564552307129 + ], + [ + "iraj", + -15.349584579467773 + ], + [ + "▁subbing", + -15.34959602355957 + ], + [ + "▁Halcyon", + -15.349597930908203 + ], + [ + "▁nauseated", + -15.349624633789062 + ], + [ + "▁disuse", + -15.349629402160645 + ], + [ + "elimination", + -15.349647521972656 + ], + [ + "ිය", + -15.349647521972656 + ], + [ + "кро", + -15.349676132202148 + ], + [ + "▁Siebel", + -15.349698066711426 + ], + [ + "▁Lolly", + -15.34970474243164 + ], + [ + "▁claustrophobia", + -15.349710464477539 + ], + [ + "jammer", + -15.349712371826172 + ], + [ + "▁Moko", + -15.349773406982422 + ], + [ + "這", + -15.34978199005127 + ], + [ + "▁snobbery", + -15.349787712097168 + ], + [ + "▁tamer", + -15.349794387817383 + ], + [ + "WRT", + -15.34986686706543 + ], + [ + "▁synchrotron", + -15.34986686706543 + ], + [ + "▁Kharkiv", + -15.349900245666504 + ], + [ + "▁madden", + -15.349922180175781 + ], + [ + "▁Lemma", + -15.349934577941895 + ], + [ + "Optical", + -15.349964141845703 + ], + [ + "▁counterinsurgency", + -15.349968910217285 + ], + [ + "▁Hadfield", + -15.350042343139648 + ], + [ + "Miranda", + -15.350077629089355 + ], + [ + "▁NASB", + -15.350111961364746 + ], + [ + "▁topiary", + -15.350111961364746 + ], + [ + "dipped", + -15.350123405456543 + ], + [ + "▁Advani", + -15.35012435913086 + ], + [ + "ripple", + -15.350127220153809 + ], + [ + "anowski", + -15.350189208984375 + ], + [ + "▁Rubbermaid", + -15.350191116333008 + ], + [ + "▁Algorithmic", + -15.350208282470703 + ], + [ + "▁endocarditis", + -15.350240707397461 + ], + [ + "▁circumnavigate", + -15.350241661071777 + ], + [ + "▁Uninsured", + -15.350248336791992 + ], + [ + "Advice", + -15.350249290466309 + ], + [ + "▁Ocular", + -15.350249290466309 + ], + [ + "▁Kinsta", + -15.350252151489258 + ], + [ + "▁Lucic", + -15.35027027130127 + ], + [ + "▁spasticity", + -15.35033130645752 + ], + [ + "▁Kien", + -15.350334167480469 + ], + [ + "▁Uploading", + -15.350361824035645 + ], + [ + "▁Wintour", + -15.350383758544922 + ], + [ + "▁paraphrased", + -15.350385665893555 + ], + [ + "▁contextually", + -15.350395202636719 + ], + [ + "▁PIO", + -15.350421905517578 + ], + [ + "Pastor", + -15.350435256958008 + ], + [ + "▁CALI", + -15.350540161132812 + ], + [ + "측", + -15.35056209564209 + ], + [ + "Photography", + -15.350591659545898 + ], + [ + "▁acces", + -15.350618362426758 + ], + [ + "GREEN", + -15.350628852844238 + ], + [ + "▁Emmerdale", + -15.350685119628906 + ], + [ + "▁Spaceship", + -15.350706100463867 + ], + [ + "▁Kawai", + -15.350726127624512 + ], + [ + "▁adversities", + -15.35082721710205 + ], + [ + "cautious", + -15.350829124450684 + ], + [ + "▁Speculative", + -15.350831031799316 + ], + [ + "▁patisserie", + -15.350846290588379 + ], + [ + "▁Aldous", + -15.350865364074707 + ], + [ + "▁sweden", + -15.35089111328125 + ], + [ + "▁Dieser", + -15.35096549987793 + ], + [ + "▁colloquium", + -15.351016998291016 + ], + [ + "▁Gretna", + -15.351044654846191 + ], + [ + "▁Skyway", + -15.351046562194824 + ], + [ + "▁Fron", + -15.351052284240723 + ], + [ + "▁sociopathic", + -15.351059913635254 + ], + [ + "switched", + -15.351099967956543 + ], + [ + "▁nVidia", + -15.351168632507324 + ], + [ + "▁slosh", + -15.351168632507324 + ], + [ + "▁Adagio", + -15.351192474365234 + ], + [ + "▁Caswell", + -15.351197242736816 + ], + [ + "▁wurden", + -15.35120677947998 + ], + [ + "▁aileron", + -15.351214408874512 + ], + [ + "Trem", + -15.351385116577148 + ], + [ + "▁monofilament", + -15.351385116577148 + ], + [ + "Startup", + -15.351387977600098 + ], + [ + "▁unhurt", + -15.351391792297363 + ], + [ + "▁Plen", + -15.351401329040527 + ], + [ + "Mapping", + -15.351459503173828 + ], + [ + "▁Farmville", + -15.351511001586914 + ], + [ + "▁tarpon", + -15.351545333862305 + ], + [ + "▁Freitas", + -15.351552963256836 + ], + [ + "▁filial", + -15.351567268371582 + ], + [ + "effe", + -15.35157585144043 + ], + [ + "implicit", + -15.351578712463379 + ], + [ + "ными", + -15.351579666137695 + ], + [ + "▁Scop", + -15.351580619812012 + ], + [ + "census", + -15.351638793945312 + ], + [ + "▁Planar", + -15.351640701293945 + ], + [ + "Normally", + -15.351653099060059 + ], + [ + "▁microvascular", + -15.351702690124512 + ], + [ + "▁Mintel", + -15.351719856262207 + ], + [ + "▁Cornel", + -15.351751327514648 + ], + [ + "▁GSR", + -15.351755142211914 + ], + [ + "▁vaulting", + -15.351761817932129 + ], + [ + "▁prance", + -15.351764678955078 + ], + [ + "▁Pronunciation", + -15.351787567138672 + ], + [ + "▁junket", + -15.351799964904785 + ], + [ + "nowiki", + -15.351816177368164 + ], + [ + "▁Pathak", + -15.351818084716797 + ], + [ + "▁midwestern", + -15.351829528808594 + ], + [ + "▁Borgo", + -15.35183048248291 + ], + [ + "▁Limoges", + -15.351845741271973 + ], + [ + "opper", + -15.35185432434082 + ], + [ + "RUB", + -15.351865768432617 + ], + [ + "sectarian", + -15.351895332336426 + ], + [ + "▁CSIR", + -15.351911544799805 + ], + [ + "▁philo", + -15.351920127868652 + ], + [ + "▁bookends", + -15.351951599121094 + ], + [ + "ADL", + -15.351953506469727 + ], + [ + "10°", + -15.352060317993164 + ], + [ + "▁tarry", + -15.352066993713379 + ], + [ + "▁Iditarod", + -15.352078437805176 + ], + [ + "▁Drouin", + -15.352141380310059 + ], + [ + "▁quan", + -15.352148056030273 + ], + [ + "▁Jameis", + -15.352171897888184 + ], + [ + "▁bonk", + -15.352176666259766 + ], + [ + "Apollo", + -15.352194786071777 + ], + [ + "▁nucleoside", + -15.35219955444336 + ], + [ + "▁WASTE", + -15.352240562438965 + ], + [ + "▁indefatigable", + -15.35226821899414 + ], + [ + "▁Intravenous", + -15.352270126342773 + ], + [ + "oggia", + -15.352294921875 + ], + [ + "▁rebroadcast", + -15.352316856384277 + ], + [ + "变", + -15.352319717407227 + ], + [ + "▁Sumer", + -15.352330207824707 + ], + [ + "▁Claes", + -15.35234260559082 + ], + [ + "▁Afghani", + -15.352351188659668 + ], + [ + "▁giclee", + -15.352362632751465 + ], + [ + "Harvest", + -15.352370262145996 + ], + [ + "Dixon", + -15.352374076843262 + ], + [ + "▁materiel", + -15.352399826049805 + ], + [ + "supra", + -15.352420806884766 + ], + [ + "struggle", + -15.352436065673828 + ], + [ + "▁Benidorm", + -15.352514266967773 + ], + [ + "▁kenmore", + -15.352523803710938 + ], + [ + "eidel", + -15.352531433105469 + ], + [ + "ūr", + -15.352566719055176 + ], + [ + "NIP", + -15.35258960723877 + ], + [ + "legg", + -15.352599143981934 + ], + [ + "▁NBL", + -15.352680206298828 + ], + [ + "▁fortifying", + -15.352743148803711 + ], + [ + "▁Racetrack", + -15.352766990661621 + ], + [ + "▁thorium", + -15.35280704498291 + ], + [ + "▁rummy", + -15.352814674377441 + ], + [ + "▁Morti", + -15.352815628051758 + ], + [ + "▁Showground", + -15.352869987487793 + ], + [ + "explosive", + -15.352872848510742 + ], + [ + "▁truncation", + -15.352874755859375 + ], + [ + "▁Nickname", + -15.352879524230957 + ], + [ + "errick", + -15.352914810180664 + ], + [ + "▁Polanco", + -15.352914810180664 + ], + [ + "含", + -15.352922439575195 + ], + [ + "▁Schuler", + -15.352932929992676 + ], + [ + "gravi", + -15.352957725524902 + ], + [ + "▁Florent", + -15.353041648864746 + ], + [ + "arrington", + -15.353071212768555 + ], + [ + "▁Riaz", + -15.353116989135742 + ], + [ + "▁cornet", + -15.353118896484375 + ], + [ + "INING", + -15.353124618530273 + ], + [ + "▁Grampian", + -15.353167533874512 + ], + [ + "acanth", + -15.353170394897461 + ], + [ + "▁gurgle", + -15.353184700012207 + ], + [ + "▁Particulate", + -15.353196144104004 + ], + [ + "▁Deshaun", + -15.353201866149902 + ], + [ + "Equity", + -15.353239059448242 + ], + [ + "▁absolved", + -15.35326862335205 + ], + [ + "trusion", + -15.353273391723633 + ], + [ + "▁langue", + -15.353309631347656 + ], + [ + "▁RESPOND", + -15.353350639343262 + ], + [ + "▁stee", + -15.353353500366211 + ], + [ + "Landscape", + -15.353381156921387 + ], + [ + "▁serta", + -15.353386878967285 + ], + [ + "▁문", + -15.353401184082031 + ], + [ + "▁Bogus", + -15.353614807128906 + ], + [ + "ェ", + -15.353616714477539 + ], + [ + "▁Dehydration", + -15.3536376953125 + ], + [ + "▁Hendon", + -15.353644371032715 + ], + [ + "▁denouement", + -15.353691101074219 + ], + [ + "▁Busted", + -15.353696823120117 + ], + [ + "▁Dangote", + -15.353702545166016 + ], + [ + "Monica", + -15.35372543334961 + ], + [ + "▁EWG", + -15.353728294372559 + ], + [ + "▁bristol", + -15.353729248046875 + ], + [ + "▁Vaporizer", + -15.353741645812988 + ], + [ + "ünde", + -15.353799819946289 + ], + [ + "▁Hayle", + -15.353923797607422 + ], + [ + "▁Jabra", + -15.353957176208496 + ], + [ + "faithful", + -15.353984832763672 + ], + [ + "▁Bayshore", + -15.354072570800781 + ], + [ + "amphetamine", + -15.354105949401855 + ], + [ + "jective", + -15.354135513305664 + ], + [ + "concerned", + -15.354140281677246 + ], + [ + "この", + -15.3541898727417 + ], + [ + "ں", + -15.354374885559082 + ], + [ + "▁deriva", + -15.354388236999512 + ], + [ + "▁exuding", + -15.35439395904541 + ], + [ + "JSON", + -15.354395866394043 + ], + [ + "▁Enquiries", + -15.354451179504395 + ], + [ + "▁sulfa", + -15.354466438293457 + ], + [ + "ո", + -15.354545593261719 + ], + [ + "▁Montreux", + -15.354584693908691 + ], + [ + "▁curtailment", + -15.354599952697754 + ], + [ + "Laptop", + -15.354609489440918 + ], + [ + "▁dregs", + -15.354626655578613 + ], + [ + "▁HOOK", + -15.35463809967041 + ], + [ + "▁implacable", + -15.354698181152344 + ], + [ + "WiFi", + -15.354715347290039 + ], + [ + "Quercus", + -15.354717254638672 + ], + [ + "▁Equalizer", + -15.354721069335938 + ], + [ + "▁Sunbury", + -15.354728698730469 + ], + [ + "进行", + -15.354744911193848 + ], + [ + "Pittsburgh", + -15.354774475097656 + ], + [ + "▁Realization", + -15.354790687561035 + ], + [ + "▁Daewoo", + -15.35484790802002 + ], + [ + "▁Velasco", + -15.354891777038574 + ], + [ + "▁Nena", + -15.354955673217773 + ], + [ + "▁BOLT", + -15.35495662689209 + ], + [ + "▁Dissolution", + -15.354958534240723 + ], + [ + "▁steno", + -15.35498046875 + ], + [ + "кс", + -15.355019569396973 + ], + [ + "▁Legionella", + -15.355059623718262 + ], + [ + "Nuclear", + -15.355113983154297 + ], + [ + "▁ACME", + -15.355135917663574 + ], + [ + "▁Petunia", + -15.355173110961914 + ], + [ + "▁Stoltenberg", + -15.355175971984863 + ], + [ + "▁MYTH", + -15.355178833007812 + ], + [ + "craig", + -15.355202674865723 + ], + [ + "▁Phenomenology", + -15.355250358581543 + ], + [ + "▁Administer", + -15.3552885055542 + ], + [ + "▁Pronounce", + -15.355299949645996 + ], + [ + "▁Batik", + -15.355325698852539 + ], + [ + "Overview", + -15.355332374572754 + ], + [ + "utte", + -15.355360984802246 + ], + [ + "از", + -15.355401039123535 + ], + [ + "ದ", + -15.355401039123535 + ], + [ + "▁Preferredprint", + -15.355408668518066 + ], + [ + "▁toolchain", + -15.355472564697266 + ], + [ + "▁Chisel", + -15.355518341064453 + ], + [ + "▁electrophysiological", + -15.35554313659668 + ], + [ + "Chance", + -15.355548858642578 + ], + [ + "▁castaway", + -15.355573654174805 + ], + [ + "▁dyspnea", + -15.355592727661133 + ], + [ + "▁Trustworthy", + -15.355609893798828 + ], + [ + "▁Staci", + -15.355642318725586 + ], + [ + "▁memorialized", + -15.355644226074219 + ], + [ + "▁Dedham", + -15.355660438537598 + ], + [ + "▁Adolfo", + -15.355696678161621 + ], + [ + "EMT", + -15.35575008392334 + ], + [ + "▁multifocal", + -15.355759620666504 + ], + [ + "▁Psst", + -15.3557710647583 + ], + [ + "▁Bioengineering", + -15.355781555175781 + ], + [ + "loren", + -15.355785369873047 + ], + [ + "▁MONTREAL", + -15.35582160949707 + ], + [ + "▁NATIONS", + -15.35582160949707 + ], + [ + "▁Daisies", + -15.355881690979004 + ], + [ + "▁Renzo", + -15.355921745300293 + ], + [ + "▁fearfully", + -15.355951309204102 + ], + [ + "▁também", + -15.35595417022705 + ], + [ + "▁Sunway", + -15.355977058410645 + ], + [ + "▁FEV", + -15.35598373413086 + ], + [ + "ости", + -15.355987548828125 + ], + [ + "Mercury", + -15.355995178222656 + ], + [ + "Statistics", + -15.356011390686035 + ], + [ + "▁Arcata", + -15.356037139892578 + ], + [ + "wate", + -15.356073379516602 + ], + [ + "▁ARCHIVE", + -15.35607624053955 + ], + [ + "▁Scrib", + -15.35608959197998 + ], + [ + "▁Bruton", + -15.356106758117676 + ], + [ + "▁Signet", + -15.356138229370117 + ], + [ + "կ", + -15.356163024902344 + ], + [ + "▁poutine", + -15.356163024902344 + ], + [ + "▁CONDUCT", + -15.356175422668457 + ], + [ + "▁ADAMS", + -15.356179237365723 + ], + [ + "▁shtick", + -15.356200218200684 + ], + [ + "يع", + -15.356221199035645 + ], + [ + "▁Tokugawa", + -15.356221199035645 + ], + [ + "ที่", + -15.35623836517334 + ], + [ + "▁Kiehl", + -15.356264114379883 + ], + [ + "▁Pronto", + -15.356283187866211 + ], + [ + "▁Diagnosed", + -15.356291770935059 + ], + [ + "▁paediatrician", + -15.35629653930664 + ], + [ + "▁orienting", + -15.356297492980957 + ], + [ + "▁matriculation", + -15.356300354003906 + ], + [ + "▁TRYING", + -15.356310844421387 + ], + [ + "hiding", + -15.356331825256348 + ], + [ + "▁Caliper", + -15.356363296508789 + ], + [ + "▁deejay", + -15.356389045715332 + ], + [ + "Shakespeare", + -15.356392860412598 + ], + [ + "▁CONCEPT", + -15.356402397155762 + ], + [ + "▁ovulate", + -15.356405258178711 + ], + [ + "▁kmart", + -15.356416702270508 + ], + [ + "▁EWS", + -15.356478691101074 + ], + [ + "▁ENSO", + -15.356485366821289 + ], + [ + "مل", + -15.356566429138184 + ], + [ + "▁SANA", + -15.35657024383545 + ], + [ + "Branch", + -15.356578826904297 + ], + [ + "▁instantiation", + -15.356600761413574 + ], + [ + "▁Wootton", + -15.35661506652832 + ], + [ + "Ghana", + -15.356630325317383 + ], + [ + "▁cyclocross", + -15.356636047363281 + ], + [ + "tanium", + -15.356657981872559 + ], + [ + "▁Fide", + -15.356696128845215 + ], + [ + "▁woof", + -15.356698036193848 + ], + [ + "▁Tati", + -15.356711387634277 + ], + [ + "▁Telemundo", + -15.356724739074707 + ], + [ + "▁Nyquist", + -15.3567476272583 + ], + [ + "▁Nickerson", + -15.356785774230957 + ], + [ + "▁gjithë", + -15.356792449951172 + ], + [ + "▁lich", + -15.35681438446045 + ], + [ + "▁propofol", + -15.356850624084473 + ], + [ + "▁SPRINGFIELD", + -15.356851577758789 + ], + [ + "▁definetly", + -15.356867790222168 + ], + [ + "▁fruct", + -15.356900215148926 + ], + [ + "▁Roxas", + -15.356914520263672 + ], + [ + "▁Fujita", + -15.356937408447266 + ], + [ + "▁Insult", + -15.356965065002441 + ], + [ + "▁gaff", + -15.35698127746582 + ], + [ + "▁NAICS", + -15.356987953186035 + ], + [ + "▁Posterior", + -15.356999397277832 + ], + [ + "▁Synaptic", + -15.357001304626465 + ], + [ + "Fundamental", + -15.35702133178711 + ], + [ + "rechnung", + -15.357051849365234 + ], + [ + "Plum", + -15.357063293457031 + ], + [ + "▁Shekhar", + -15.357072830200195 + ], + [ + "lactam", + -15.357114791870117 + ], + [ + "▁Hyacinth", + -15.35711669921875 + ], + [ + "Approved", + -15.357137680053711 + ], + [ + "▁Seong", + -15.357172012329102 + ], + [ + "▁crackpot", + -15.357181549072266 + ], + [ + "▁Tawny", + -15.357190132141113 + ], + [ + "assessed", + -15.357202529907227 + ], + [ + "▁PHR", + -15.357218742370605 + ], + [ + "▁Mezzanine", + -15.35724925994873 + ], + [ + "▁magnifies", + -15.357268333435059 + ], + [ + "▁ridesharing", + -15.357269287109375 + ], + [ + "Riley", + -15.35732364654541 + ], + [ + "▁Bleak", + -15.357354164123535 + ], + [ + "▁Hoffenheim", + -15.357369422912598 + ], + [ + "▁refocused", + -15.357419967651367 + ], + [ + "▁archaea", + -15.357510566711426 + ], + [ + "▁Scrutiny", + -15.357516288757324 + ], + [ + "▁mooch", + -15.357553482055664 + ], + [ + "▁enticement", + -15.357564926147461 + ], + [ + "▁CASTLE", + -15.357572555541992 + ], + [ + "Qiagen", + -15.357579231262207 + ], + [ + "▁Attn", + -15.357592582702637 + ], + [ + "▁Husserl", + -15.357636451721191 + ], + [ + "▁psychedelia", + -15.35763931274414 + ], + [ + "▁REVEAL", + -15.357653617858887 + ], + [ + "▁SpyFu", + -15.357674598693848 + ], + [ + "▁HALO", + -15.35770320892334 + ], + [ + "VIR", + -15.35775089263916 + ], + [ + "▁impoundment", + -15.35776424407959 + ], + [ + "천", + -15.357782363891602 + ], + [ + "▁NEWSLETTER", + -15.357783317565918 + ], + [ + "았", + -15.357820510864258 + ], + [ + "▁chun", + -15.357858657836914 + ], + [ + "▁Aliso", + -15.357872009277344 + ], + [ + "▁Vinh", + -15.357889175415039 + ], + [ + "бл", + -15.357906341552734 + ], + [ + "▁Lothar", + -15.357925415039062 + ], + [ + "▁Gatto", + -15.357985496520996 + ], + [ + "▁Mulcair", + -15.357996940612793 + ], + [ + "▁ruleset", + -15.358009338378906 + ], + [ + "▁Kesler", + -15.358031272888184 + ], + [ + "▁Lasso", + -15.3580904006958 + ], + [ + "▁Cardiovasc", + -15.358161926269531 + ], + [ + "▁hesitancy", + -15.35816478729248 + ], + [ + "▁watchword", + -15.358174324035645 + ], + [ + "▁час", + -15.358184814453125 + ], + [ + "▁griffin", + -15.358207702636719 + ], + [ + "▁pinging", + -15.358209609985352 + ], + [ + "▁frisky", + -15.358247756958008 + ], + [ + "▁fumed", + -15.35827922821045 + ], + [ + "▁Symonds", + -15.358379364013672 + ], + [ + "▁Licking", + -15.358382225036621 + ], + [ + "▁crackled", + -15.358388900756836 + ], + [ + "▁segundo", + -15.35839557647705 + ], + [ + "HAB", + -15.358418464660645 + ], + [ + "▁الب", + -15.358434677124023 + ], + [ + "▁Hurling", + -15.358440399169922 + ], + [ + "πα", + -15.358442306518555 + ], + [ + "BMW", + -15.358448028564453 + ], + [ + "▁hollered", + -15.358473777770996 + ], + [ + "▁Revert", + -15.358490943908691 + ], + [ + "▁DUO", + -15.35857105255127 + ], + [ + "Brunette", + -15.358587265014648 + ], + [ + "punt", + -15.358587265014648 + ], + [ + "または", + -15.358613014221191 + ], + [ + "WHY", + -15.358623504638672 + ], + [ + "▁fusible", + -15.358633041381836 + ], + [ + "sequitur", + -15.358640670776367 + ], + [ + "য়", + -15.358672142028809 + ], + [ + "▁Vijayawada", + -15.358814239501953 + ], + [ + "▁Korb", + -15.358827590942383 + ], + [ + "▁Pistorius", + -15.358832359313965 + ], + [ + "▁Jetstar", + -15.358845710754395 + ], + [ + "▁Mossy", + -15.358854293823242 + ], + [ + "▁protestations", + -15.358859062194824 + ], + [ + "obble", + -15.358877182006836 + ], + [ + "▁Persie", + -15.358880043029785 + ], + [ + "▁roadtrip", + -15.358880996704102 + ], + [ + "▁GUM", + -15.35889720916748 + ], + [ + "▁SLM", + -15.358928680419922 + ], + [ + "▁REVIEWS", + -15.358932495117188 + ], + [ + "potty", + -15.358953475952148 + ], + [ + "▁pushover", + -15.358963966369629 + ], + [ + "▁LaGrange", + -15.359004974365234 + ], + [ + "▁Gillett", + -15.35901165008545 + ], + [ + "▁reconfirm", + -15.359029769897461 + ], + [ + "motorized", + -15.359053611755371 + ], + [ + "▁digestibility", + -15.359122276306152 + ], + [ + "▁GFX", + -15.35914134979248 + ], + [ + "▁Seldom", + -15.359149932861328 + ], + [ + "▁SIAM", + -15.359196662902832 + ], + [ + "▁Humour", + -15.359238624572754 + ], + [ + "▁comunidad", + -15.359258651733398 + ], + [ + "▁SIRT", + -15.35927963256836 + ], + [ + "restriction", + -15.359302520751953 + ], + [ + "▁NYTimes", + -15.35935115814209 + ], + [ + "maneuver", + -15.359410285949707 + ], + [ + "▁variably", + -15.359431266784668 + ], + [ + "aaaaaaa", + -15.359451293945312 + ], + [ + "requested", + -15.359451293945312 + ], + [ + "▁effeminate", + -15.35946273803711 + ], + [ + "▁Forsaken", + -15.359500885009766 + ], + [ + "▁Mahajan", + -15.3595552444458 + ], + [ + "▁Landrieu", + -15.359559059143066 + ], + [ + "RBC", + -15.359561920166016 + ], + [ + "▁oleic", + -15.359574317932129 + ], + [ + "▁προ", + -15.359578132629395 + ], + [ + "▁الر", + -15.359640121459961 + ], + [ + "▁Lanny", + -15.359642028808594 + ], + [ + "▁Baudelaire", + -15.359654426574707 + ], + [ + "▁Competencies", + -15.35969352722168 + ], + [ + "▁Castilla", + -15.359698295593262 + ], + [ + "▁reefer", + -15.359709739685059 + ], + [ + "foy", + -15.35971736907959 + ], + [ + "▁Segovia", + -15.35973834991455 + ], + [ + "▁pouting", + -15.35973834991455 + ], + [ + "▁slicked", + -15.359755516052246 + ], + [ + "▁Brownell", + -15.359763145446777 + ], + [ + "▁coexisting", + -15.359776496887207 + ], + [ + "DOJ", + -15.359847068786621 + ], + [ + "▁wattle", + -15.359865188598633 + ], + [ + "▁stderr", + -15.359892845153809 + ], + [ + "▁Scholz", + -15.359894752502441 + ], + [ + "▁Cortisol", + -15.359929084777832 + ], + [ + "▁magnetized", + -15.359957695007324 + ], + [ + "통", + -15.359980583190918 + ], + [ + "ishvili", + -15.359991073608398 + ], + [ + "▁Ophthalmic", + -15.360016822814941 + ], + [ + "▁Seventeenth", + -15.360029220581055 + ], + [ + "▁Condoleezza", + -15.360054969787598 + ], + [ + "Improving", + -15.36008071899414 + ], + [ + "▁imaginatively", + -15.360084533691406 + ], + [ + "▁Kalashnikov", + -15.360151290893555 + ], + [ + "CML", + -15.360175132751465 + ], + [ + "nilly", + -15.360185623168945 + ], + [ + "▁objectification", + -15.360193252563477 + ], + [ + "▁conjoin", + -15.360199928283691 + ], + [ + "somnia", + -15.360240936279297 + ], + [ + "▁Laci", + -15.360262870788574 + ], + [ + "▁dissociated", + -15.36028003692627 + ], + [ + "▁Wholesaler", + -15.36034107208252 + ], + [ + "▁icecream", + -15.360413551330566 + ], + [ + "▁STUPID", + -15.360422134399414 + ], + [ + "▁Disgrace", + -15.360512733459473 + ], + [ + "▁PARENTS", + -15.360551834106445 + ], + [ + "▁undid", + -15.360554695129395 + ], + [ + "salad", + -15.360574722290039 + ], + [ + "▁Kurzweil", + -15.360590934753418 + ], + [ + "▁norovirus", + -15.36062240600586 + ], + [ + "▁facetious", + -15.360623359680176 + ], + [ + "▁NTD", + -15.360639572143555 + ], + [ + "▁Happier", + -15.360655784606934 + ], + [ + "idder", + -15.360706329345703 + ], + [ + "▁Burman", + -15.360738754272461 + ], + [ + "▁Duch", + -15.360757827758789 + ], + [ + "Developing", + -15.360783576965332 + ], + [ + "▁equiped", + -15.360818862915039 + ], + [ + "通信", + -15.360838890075684 + ], + [ + "ORES", + -15.360841751098633 + ], + [ + "ера", + -15.360849380493164 + ], + [ + "⋅", + -15.360919952392578 + ], + [ + "▁pinches", + -15.360955238342285 + ], + [ + "▁rhesus", + -15.360956192016602 + ], + [ + "Kathy", + -15.361013412475586 + ], + [ + "▁Alaina", + -15.36102294921875 + ], + [ + "▁NuGet", + -15.361027717590332 + ], + [ + "▁Yaroslav", + -15.361050605773926 + ], + [ + "▁vestments", + -15.361052513122559 + ], + [ + "▁cila", + -15.36109733581543 + ], + [ + "MSG", + -15.36110782623291 + ], + [ + "▁Gormley", + -15.361127853393555 + ], + [ + "▁dicho", + -15.36113452911377 + ], + [ + "▁stinker", + -15.361141204833984 + ], + [ + "▁Daybed", + -15.361153602600098 + ], + [ + "▁untethered", + -15.361165046691895 + ], + [ + "▁unicode", + -15.361166954040527 + ], + [ + "Furniture", + -15.361167907714844 + ], + [ + "▁Verein", + -15.361178398132324 + ], + [ + "▁António", + -15.361184120178223 + ], + [ + "Few", + -15.36119556427002 + ], + [ + "▁neglectful", + -15.36125373840332 + ], + [ + "▁focaccia", + -15.361279487609863 + ], + [ + "▁NetGalley", + -15.361298561096191 + ], + [ + "▁LOI", + -15.361307144165039 + ], + [ + "▁uncritical", + -15.361310958862305 + ], + [ + "▁Schan", + -15.361312866210938 + ], + [ + "花", + -15.361319541931152 + ], + [ + "▁Myrna", + -15.36136531829834 + ], + [ + "▁Ruble", + -15.361371040344238 + ], + [ + "▁interdict", + -15.361391067504883 + ], + [ + "▁Entra", + -15.361424446105957 + ], + [ + "▁honky", + -15.361427307128906 + ], + [ + "▁LXX", + -15.361433982849121 + ], + [ + "▁Titi", + -15.361433982849121 + ], + [ + "1847", + -15.36147689819336 + ], + [ + "▁adderall", + -15.361485481262207 + ], + [ + "somehow", + -15.361513137817383 + ], + [ + "▁bricklayer", + -15.361515998840332 + ], + [ + "▁naproxen", + -15.361528396606445 + ], + [ + "▁homonymous", + -15.36156940460205 + ], + [ + "blum", + -15.361573219299316 + ], + [ + "▁Dipped", + -15.361588478088379 + ], + [ + "▁Goldblum", + -15.361588478088379 + ], + [ + "▁Hinter", + -15.361593246459961 + ], + [ + "▁Quand", + -15.361594200134277 + ], + [ + "projection", + -15.361625671386719 + ], + [ + "localized", + -15.36163330078125 + ], + [ + "▁backtracked", + -15.3616361618042 + ], + [ + "▁Branham", + -15.361647605895996 + ], + [ + "▁Cannonball", + -15.361648559570312 + ], + [ + "▁aegypti", + -15.361656188964844 + ], + [ + "Supplier", + -15.361682891845703 + ], + [ + "▁Tako", + -15.361708641052246 + ], + [ + "Blair", + -15.361709594726562 + ], + [ + "levo", + -15.361732482910156 + ], + [ + "▁Trope", + -15.361746788024902 + ], + [ + "▁Duong", + -15.361773490905762 + ], + [ + "suppl", + -15.361786842346191 + ], + [ + "permit", + -15.361795425415039 + ], + [ + "specification", + -15.361847877502441 + ], + [ + "Reporter", + -15.361870765686035 + ], + [ + "▁laneway", + -15.361899375915527 + ], + [ + "▁Narrated", + -15.361900329589844 + ], + [ + "▁profil", + -15.361907005310059 + ], + [ + "▁😛", + -15.361918449401855 + ], + [ + "lobo", + -15.361923217773438 + ], + [ + "▁dismemberment", + -15.361949920654297 + ], + [ + "▁jardin", + -15.361957550048828 + ], + [ + "▁Rylan", + -15.361958503723145 + ], + [ + "▁Ecclesia", + -15.361964225769043 + ], + [ + "▁Sebastián", + -15.361971855163574 + ], + [ + "▁gastroenterology", + -15.362007141113281 + ], + [ + "▁perturb", + -15.36207389831543 + ], + [ + "▁Mansoor", + -15.362091064453125 + ], + [ + "▁Guilin", + -15.362109184265137 + ], + [ + "▁toiletry", + -15.362184524536133 + ], + [ + "▁duff", + -15.362199783325195 + ], + [ + "▁Cwm", + -15.362276077270508 + ], + [ + "▁Alluvial", + -15.362343788146973 + ], + [ + "▁endorser", + -15.362346649169922 + ], + [ + "▁Ringwood", + -15.362374305725098 + ], + [ + "▁Minimally", + -15.362390518188477 + ], + [ + "▁Gaucho", + -15.36241340637207 + ], + [ + "▁Monumental", + -15.362443923950195 + ], + [ + "▁Ellesmere", + -15.362485885620117 + ], + [ + "▁dissapointed", + -15.362488746643066 + ], + [ + "▁Batty", + -15.36251163482666 + ], + [ + "Witness", + -15.362532615661621 + ], + [ + "Raymond", + -15.362556457519531 + ], + [ + "▁Hydroponic", + -15.362563133239746 + ], + [ + "▁kibbutz", + -15.362582206726074 + ], + [ + "▁Presque", + -15.36258316040039 + ], + [ + "▁Seif", + -15.362601280212402 + ], + [ + "▁Unidentified", + -15.362607955932617 + ], + [ + "▁drow", + -15.362634658813477 + ], + [ + "▁Saxena", + -15.362682342529297 + ], + [ + "adjacent", + -15.362685203552246 + ], + [ + "▁Fundamentalist", + -15.362706184387207 + ], + [ + "整", + -15.362771034240723 + ], + [ + "ιο", + -15.36277961730957 + ], + [ + "▁monotheistic", + -15.362793922424316 + ], + [ + "Natasha", + -15.36279582977295 + ], + [ + "respondent", + -15.362798690795898 + ], + [ + "Owl", + -15.362812042236328 + ], + [ + "▁Unveiled", + -15.362850189208984 + ], + [ + "▁despotism", + -15.362862586975098 + ], + [ + "▁LID", + -15.362916946411133 + ], + [ + "brink", + -15.362957000732422 + ], + [ + "▁Talos", + -15.362992286682129 + ], + [ + "▁sectarianism", + -15.36299991607666 + ], + [ + "▁Xanthan", + -15.363029479980469 + ], + [ + "▁Kidding", + -15.363032341003418 + ], + [ + "▁apotheke", + -15.363049507141113 + ], + [ + "મ", + -15.363080024719238 + ], + [ + "Alexis", + -15.363081932067871 + ], + [ + "▁THP", + -15.363085746765137 + ], + [ + "▁TASS", + -15.363100051879883 + ], + [ + "▁Defeated", + -15.363112449645996 + ], + [ + "▁Carcinoma", + -15.363119125366211 + ], + [ + "▁festooned", + -15.363160133361816 + ], + [ + "▁Kabu", + -15.363243103027344 + ], + [ + "RIB", + -15.363289833068848 + ], + [ + "▁Tikka", + -15.363359451293945 + ], + [ + "▁grosses", + -15.363368034362793 + ], + [ + "▁Jogger", + -15.363388061523438 + ], + [ + "▁Glyceryl", + -15.363407135009766 + ], + [ + "▁finch", + -15.363408088684082 + ], + [ + "▁Sambo", + -15.363412857055664 + ], + [ + "▁dramatized", + -15.36341667175293 + ], + [ + "▁ط", + -15.363428115844727 + ], + [ + "▁xyz", + -15.3634614944458 + ], + [ + "slinging", + -15.363516807556152 + ], + [ + "MODEL", + -15.363529205322266 + ], + [ + "來", + -15.363533973693848 + ], + [ + "ulah", + -15.363563537597656 + ], + [ + "▁Tuber", + -15.363619804382324 + ], + [ + "▁smugly", + -15.363646507263184 + ], + [ + "▁DeLorean", + -15.363655090332031 + ], + [ + "▁Olymp", + -15.363655090332031 + ], + [ + "十", + -15.363687515258789 + ], + [ + "▁Gatlin", + -15.363717079162598 + ], + [ + "bracket", + -15.36371898651123 + ], + [ + "▁Danner", + -15.36373233795166 + ], + [ + "▁incredulity", + -15.36373233795166 + ], + [ + "pathway", + -15.363733291625977 + ], + [ + "▁exfoliator", + -15.363770484924316 + ], + [ + "▁Grendel", + -15.36380672454834 + ], + [ + "Anton", + -15.363810539245605 + ], + [ + "▁impel", + -15.363850593566895 + ], + [ + "▁Gotcha", + -15.363855361938477 + ], + [ + "▁DEET", + -15.363871574401855 + ], + [ + "▁Coulomb", + -15.363916397094727 + ], + [ + "▁JCP", + -15.363924026489258 + ], + [ + "▁Yavapai", + -15.363943099975586 + ], + [ + "Recipe", + -15.363951683044434 + ], + [ + "carboxylate", + -15.363970756530762 + ], + [ + "▁Excite", + -15.363974571228027 + ], + [ + "▁Dilma", + -15.364007949829102 + ], + [ + "NEM", + -15.364011764526367 + ], + [ + "▁legalisation", + -15.364011764526367 + ], + [ + "▁الش", + -15.364039421081543 + ], + [ + "▁Cheerful", + -15.364048957824707 + ], + [ + "▁biomolecules", + -15.364055633544922 + ], + [ + "▁SORRY", + -15.364080429077148 + ], + [ + "MEP", + -15.364095687866211 + ], + [ + "▁Revelstoke", + -15.364116668701172 + ], + [ + "▁Cunha", + -15.364129066467285 + ], + [ + "▁fugue", + -15.364130020141602 + ], + [ + "GMC", + -15.36413288116455 + ], + [ + "Lucent", + -15.364177703857422 + ], + [ + "▁overwrought", + -15.364232063293457 + ], + [ + "▁Reputable", + -15.364250183105469 + ], + [ + "▁EXTRACT", + -15.364277839660645 + ], + [ + "Luck", + -15.364297866821289 + ], + [ + "▁existance", + -15.364306449890137 + ], + [ + "leven", + -15.364322662353516 + ], + [ + "▁perfumery", + -15.36433219909668 + ], + [ + "▁große", + -15.364365577697754 + ], + [ + "BAND", + -15.3643798828125 + ], + [ + "1836", + -15.364387512207031 + ], + [ + "▁Summoner", + -15.364428520202637 + ], + [ + "▁advisement", + -15.364428520202637 + ], + [ + "cease", + -15.364450454711914 + ], + [ + "avati", + -15.364498138427734 + ], + [ + "▁unwary", + -15.364500999450684 + ], + [ + "▁που", + -15.364505767822266 + ], + [ + "▁4828", + -15.364509582519531 + ], + [ + "▁MLG", + -15.364521980285645 + ], + [ + "forgot", + -15.364529609680176 + ], + [ + "▁sbm", + -15.364530563354492 + ], + [ + "Dixie", + -15.36453628540039 + ], + [ + "suspended", + -15.364572525024414 + ], + [ + "▁Perelman", + -15.36458969116211 + ], + [ + "▁Marshawn", + -15.364615440368652 + ], + [ + "nighter", + -15.364623069763184 + ], + [ + "▁Anthrax", + -15.36463451385498 + ], + [ + "conservation", + -15.364635467529297 + ], + [ + "▁radicalisation", + -15.364690780639648 + ], + [ + "▁Hatchery", + -15.364696502685547 + ], + [ + "▁Salih", + -15.364718437194824 + ], + [ + "▁Zwick", + -15.364721298217773 + ], + [ + "▁mummified", + -15.364749908447266 + ], + [ + "▁UTEP", + -15.364773750305176 + ], + [ + "▁MFG", + -15.364824295043945 + ], + [ + "▁specular", + -15.364829063415527 + ], + [ + "▁airshow", + -15.364848136901855 + ], + [ + "▁Tiago", + -15.36486530303955 + ], + [ + "▁Ishii", + -15.364871978759766 + ], + [ + "▁irreparably", + -15.364884376525879 + ], + [ + "sophisticated", + -15.364890098571777 + ], + [ + "uranga", + -15.364935874938965 + ], + [ + "▁staggeringly", + -15.36497974395752 + ], + [ + "▁Urea", + -15.365015983581543 + ], + [ + "▁Ridgway", + -15.365018844604492 + ], + [ + "▁Diallo", + -15.365074157714844 + ], + [ + "іе", + -15.365108489990234 + ], + [ + "▁Milanese", + -15.365130424499512 + ], + [ + "▁institutionalization", + -15.365204811096191 + ], + [ + "▁tuft", + -15.36522102355957 + ], + [ + "▁Kaunas", + -15.365248680114746 + ], + [ + "▁Wieder", + -15.365263938903809 + ], + [ + "Evaluation", + -15.365301132202148 + ], + [ + "▁Taglia", + -15.36530590057373 + ], + [ + "▁saboteur", + -15.365306854248047 + ], + [ + "▁oedema", + -15.365315437316895 + ], + [ + "▁Yawn", + -15.365326881408691 + ], + [ + "Tough", + -15.365352630615234 + ], + [ + "▁Firestorm", + -15.365354537963867 + ], + [ + "▁McKesson", + -15.365355491638184 + ], + [ + "▁idli", + -15.365360260009766 + ], + [ + "▁Mendon", + -15.365384101867676 + ], + [ + "▁proclivity", + -15.365403175354004 + ], + [ + "▁LSB", + -15.365407943725586 + ], + [ + "HRM", + -15.365482330322266 + ], + [ + "harmful", + -15.365485191345215 + ], + [ + "zzer", + -15.365485191345215 + ], + [ + "▁troposphere", + -15.365500450134277 + ], + [ + "TTEN", + -15.365553855895996 + ], + [ + "Cameron", + -15.36557388305664 + ], + [ + "Treasure", + -15.365622520446777 + ], + [ + "남", + -15.365631103515625 + ], + [ + "influencer", + -15.365640640258789 + ], + [ + "▁portmanteau", + -15.365652084350586 + ], + [ + "▁granulation", + -15.365670204162598 + ], + [ + "▁Bemis", + -15.365676879882812 + ], + [ + "▁blistered", + -15.36571979522705 + ], + [ + "▁Meadowlands", + -15.36572265625 + ], + [ + "▁Wagen", + -15.365736961364746 + ], + [ + "▁것으로", + -15.365750312805176 + ], + [ + "▁Hagia", + -15.365753173828125 + ], + [ + "▁imbecile", + -15.365806579589844 + ], + [ + "▁Beep", + -15.365823745727539 + ], + [ + "▁ionosphere", + -15.365825653076172 + ], + [ + "▁Affecting", + -15.365876197814941 + ], + [ + "▁Leppard", + -15.365884780883789 + ], + [ + "Wealth", + -15.365891456604004 + ], + [ + "Fourth", + -15.36594295501709 + ], + [ + "▁effectuate", + -15.365983009338379 + ], + [ + "▁Creston", + -15.36599349975586 + ], + [ + "▁absurdities", + -15.366000175476074 + ], + [ + "▁Choline", + -15.36601448059082 + ], + [ + "▁LCP", + -15.366016387939453 + ], + [ + "▁FLOWERS", + -15.366035461425781 + ], + [ + "▁Boathouse", + -15.36603832244873 + ], + [ + "VIE", + -15.366042137145996 + ], + [ + "▁Crutchfield", + -15.36609172821045 + ], + [ + "▁Bodrum", + -15.366109848022461 + ], + [ + "파", + -15.36611557006836 + ], + [ + "imbi", + -15.366124153137207 + ], + [ + "▁PTH", + -15.366133689880371 + ], + [ + "▁GIVING", + -15.366148948669434 + ], + [ + "▁Noisy", + -15.3661527633667 + ], + [ + "▁linchpin", + -15.366171836853027 + ], + [ + "depressant", + -15.36620044708252 + ], + [ + "ლი", + -15.366203308105469 + ], + [ + "▁traumatizing", + -15.366212844848633 + ], + [ + "▁Tyranny", + -15.366244316101074 + ], + [ + "▁Ravana", + -15.366301536560059 + ], + [ + "▁POSITIVE", + -15.366310119628906 + ], + [ + "▁ת", + -15.366334915161133 + ], + [ + "▁junto", + -15.366341590881348 + ], + [ + "appeared", + -15.366350173950195 + ], + [ + "არ", + -15.36635971069336 + ], + [ + "▁Hippodrome", + -15.366368293762207 + ], + [ + "▁Emporia", + -15.366397857666016 + ], + [ + "▁Pardew", + -15.36642837524414 + ], + [ + "▁Daniella", + -15.366450309753418 + ], + [ + "切", + -15.366483688354492 + ], + [ + "▁Sprocket", + -15.366528511047363 + ], + [ + "▁Ferment", + -15.366556167602539 + ], + [ + "▁sandblasting", + -15.366556167602539 + ], + [ + "EFE", + -15.366560935974121 + ], + [ + "▁scotland", + -15.36659049987793 + ], + [ + "▁plasticizer", + -15.366641998291016 + ], + [ + "▁Delevingne", + -15.366671562194824 + ], + [ + "▁Amiens", + -15.366703033447266 + ], + [ + "▁Bruckner", + -15.366717338562012 + ], + [ + "▁Stamm", + -15.366740226745605 + ], + [ + "▁Maleficent", + -15.366767883300781 + ], + [ + "▁Tamale", + -15.366783142089844 + ], + [ + "graceful", + -15.366796493530273 + ], + [ + "▁Monochrome", + -15.366808891296387 + ], + [ + "Carb", + -15.366900444030762 + ], + [ + "▁Lotta", + -15.366901397705078 + ], + [ + "ozza", + -15.36690902709961 + ], + [ + "▁utile", + -15.366914749145508 + ], + [ + "▁Retinal", + -15.366945266723633 + ], + [ + "affle", + -15.366994857788086 + ], + [ + "▁guage", + -15.367003440856934 + ], + [ + "▁Maldivian", + -15.367018699645996 + ], + [ + "Earn", + -15.367024421691895 + ], + [ + "▁Vigilance", + -15.36702823638916 + ], + [ + "opioid", + -15.367039680480957 + ], + [ + "cytic", + -15.36709213256836 + ], + [ + "▁kentucky", + -15.36715316772461 + ], + [ + "turkey", + -15.367171287536621 + ], + [ + "▁Interracial", + -15.367173194885254 + ], + [ + "▁discernable", + -15.367188453674316 + ], + [ + "▁SEW", + -15.36722183227539 + ], + [ + "▁Cannondale", + -15.367284774780273 + ], + [ + "swinging", + -15.367294311523438 + ], + [ + "▁unbecoming", + -15.367337226867676 + ], + [ + "lief", + -15.36734390258789 + ], + [ + "▁garanti", + -15.367385864257812 + ], + [ + "shenko", + -15.367475509643555 + ], + [ + "parasite", + -15.367476463317871 + ], + [ + "▁Sludge", + -15.367486000061035 + ], + [ + "▁Thibaut", + -15.367576599121094 + ], + [ + "▁DPF", + -15.367578506469727 + ], + [ + "▁Zlat", + -15.367583274841309 + ], + [ + "▁TRULY", + -15.36760139465332 + ], + [ + "▁absentia", + -15.367629051208496 + ], + [ + "entirely", + -15.367643356323242 + ], + [ + "▁Sarandon", + -15.367685317993164 + ], + [ + "yyyyy", + -15.367707252502441 + ], + [ + "▁hypertrophic", + -15.367718696594238 + ], + [ + "▁exce", + -15.367727279663086 + ], + [ + "▁superintend", + -15.3677339553833 + ], + [ + "▁Charolais", + -15.36775016784668 + ], + [ + "▁FLIGHT", + -15.367761611938477 + ], + [ + "▁Hopeful", + -15.367772102355957 + ], + [ + "gosh", + -15.367791175842285 + ], + [ + "▁macaron", + -15.367827415466309 + ], + [ + "▁Ardi", + -15.367839813232422 + ], + [ + "РА", + -15.367840766906738 + ], + [ + "ENCH", + -15.367843627929688 + ], + [ + "▁Rosanna", + -15.367852210998535 + ], + [ + "▁Weisman", + -15.367878913879395 + ], + [ + "▁Centrum", + -15.36788272857666 + ], + [ + "▁retransmission", + -15.367905616760254 + ], + [ + "▁Ebrahim", + -15.367907524108887 + ], + [ + "▁FPA", + -15.368014335632324 + ], + [ + "▁zapped", + -15.368026733398438 + ], + [ + "▁postscript", + -15.368032455444336 + ], + [ + "▁droopy", + -15.368063926696777 + ], + [ + "▁Downside", + -15.368093490600586 + ], + [ + "Jill", + -15.36812686920166 + ], + [ + "▁cuckold", + -15.368135452270508 + ], + [ + "▁Bombshell", + -15.368145942687988 + ], + [ + "▁DSR", + -15.368179321289062 + ], + [ + "▁mumbo", + -15.368186950683594 + ], + [ + "▁laceration", + -15.36820125579834 + ], + [ + "▁clergymen", + -15.368207931518555 + ], + [ + "▁REALITY", + -15.368219375610352 + ], + [ + "▁AllMusic", + -15.36823558807373 + ], + [ + "irov", + -15.368268966674805 + ], + [ + "▁Melendez", + -15.368270874023438 + ], + [ + "joule", + -15.368294715881348 + ], + [ + "▁Loup", + -15.368318557739258 + ], + [ + "▁Thurmond", + -15.368363380432129 + ], + [ + "▁Connemara", + -15.368453979492188 + ], + [ + "▁Eatery", + -15.368557929992676 + ], + [ + "MOU", + -15.368578910827637 + ], + [ + "▁Rowdy", + -15.3685884475708 + ], + [ + "ván", + -15.3685941696167 + ], + [ + "compartment", + -15.368597984313965 + ], + [ + "▁Yardley", + -15.368614196777344 + ], + [ + "▁SNF", + -15.36861801147461 + ], + [ + "overdue", + -15.368636131286621 + ], + [ + "▁collider", + -15.368651390075684 + ], + [ + "admitted", + -15.368659019470215 + ], + [ + "сі", + -15.36866283416748 + ], + [ + "дол", + -15.36870288848877 + ], + [ + "▁Confirming", + -15.368715286254883 + ], + [ + "▁Moga", + -15.368719100952148 + ], + [ + "▁actuary", + -15.368734359741211 + ], + [ + "▁Eurostat", + -15.368743896484375 + ], + [ + "Haq", + -15.36877727508545 + ], + [ + "▁Annihilation", + -15.368809700012207 + ], + [ + "▁produkt", + -15.368816375732422 + ], + [ + "▁sigmoid", + -15.368852615356445 + ], + [ + "lobby", + -15.36886215209961 + ], + [ + "Loud", + -15.368878364562988 + ], + [ + "▁presage", + -15.368885040283203 + ], + [ + "▁DEAN", + -15.36889934539795 + ], + [ + "▁errata", + -15.368939399719238 + ], + [ + "▁OMR", + -15.368976593017578 + ], + [ + "▁photosensitive", + -15.369070053100586 + ], + [ + "▁imperiled", + -15.369073867797852 + ], + [ + "▁europa", + -15.369081497192383 + ], + [ + "圧", + -15.369105339050293 + ], + [ + "▁lmao", + -15.36913013458252 + ], + [ + "▁alaska", + -15.369155883789062 + ], + [ + "▁Mongoose", + -15.369159698486328 + ], + [ + "▁Klaas", + -15.369179725646973 + ], + [ + "▁SCCA", + -15.3692045211792 + ], + [ + "▁retracting", + -15.36921215057373 + ], + [ + "▁Ghazal", + -15.369236946105957 + ], + [ + "▁infirmity", + -15.36927604675293 + ], + [ + "тел", + -15.36929702758789 + ], + [ + "▁Morpho", + -15.36929702758789 + ], + [ + "▁Crashes", + -15.36931037902832 + ], + [ + "▁Liquidation", + -15.369353294372559 + ], + [ + "Duo", + -15.369384765625 + ], + [ + "Honda", + -15.369388580322266 + ], + [ + "▁Movember", + -15.369399070739746 + ], + [ + "▁Roja", + -15.369409561157227 + ], + [ + "▁Cronkite", + -15.369423866271973 + ], + [ + "▁Epigenetic", + -15.369439125061035 + ], + [ + "用于", + -15.369441032409668 + ], + [ + "ophyllum", + -15.36946964263916 + ], + [ + "▁INSTRUCTIONS", + -15.36952018737793 + ], + [ + "NSP", + -15.369525909423828 + ], + [ + "▁Pyne", + -15.369525909423828 + ], + [ + "▁Waterstones", + -15.369526863098145 + ], + [ + "koshi", + -15.369555473327637 + ], + [ + "Hydra", + -15.369561195373535 + ], + [ + "wur", + -15.369614601135254 + ], + [ + "▁Hurston", + -15.369647026062012 + ], + [ + "▁CHM", + -15.369680404663086 + ], + [ + "▁Oost", + -15.369686126708984 + ], + [ + "▁impermissible", + -15.369697570800781 + ], + [ + "▁acerbic", + -15.36971664428711 + ], + [ + "▁Schenn", + -15.369759559631348 + ], + [ + "测", + -15.36976432800293 + ], + [ + "▁Saxo", + -15.369770050048828 + ], + [ + "BUY", + -15.369771003723145 + ], + [ + "Furthermore", + -15.369829177856445 + ], + [ + "▁Dzong", + -15.36984634399414 + ], + [ + "preference", + -15.369864463806152 + ], + [ + "▁Gisborne", + -15.369897842407227 + ], + [ + "selfish", + -15.369916915893555 + ], + [ + "త", + -15.36994743347168 + ], + [ + "▁Halladay", + -15.369974136352539 + ], + [ + "▁Chamberlin", + -15.369983673095703 + ], + [ + "▁calamitous", + -15.370025634765625 + ], + [ + "neoplastic", + -15.370048522949219 + ], + [ + "▁dinero", + -15.370057106018066 + ], + [ + "▁Activating", + -15.370067596435547 + ], + [ + "▁cinched", + -15.37009334564209 + ], + [ + "▁pompom", + -15.370108604431152 + ], + [ + "▁lapis", + -15.370121955871582 + ], + [ + "▁Stripped", + -15.3701753616333 + ], + [ + "层", + -15.37020492553711 + ], + [ + "▁oncogenic", + -15.370209693908691 + ], + [ + "▁Jala", + -15.370224952697754 + ], + [ + "▁earbud", + -15.370240211486816 + ], + [ + "complement", + -15.37024974822998 + ], + [ + "▁Katia", + -15.37027359008789 + ], + [ + "▁systematize", + -15.370278358459473 + ], + [ + "▁clic", + -15.370291709899902 + ], + [ + "▁Bagwell", + -15.370304107666016 + ], + [ + "▁Concepcion", + -15.370315551757812 + ], + [ + "▁uprooting", + -15.370318412780762 + ], + [ + "▁Distracted", + -15.37032699584961 + ], + [ + "drea", + -15.370335578918457 + ], + [ + "▁Caul", + -15.370339393615723 + ], + [ + "▁consistant", + -15.370387077331543 + ], + [ + "▁corroborating", + -15.37041187286377 + ], + [ + "▁Snowmass", + -15.370438575744629 + ], + [ + "▁clickbait", + -15.370452880859375 + ], + [ + "▁Ameer", + -15.370522499084473 + ], + [ + "ὸ", + -15.370604515075684 + ], + [ + "▁WIRED", + -15.370644569396973 + ], + [ + "▁Braithwaite", + -15.370681762695312 + ], + [ + "▁Grime", + -15.37076473236084 + ], + [ + "▁droll", + -15.370781898498535 + ], + [ + "▁Adjutant", + -15.370818138122559 + ], + [ + "▁Arbitr", + -15.370821952819824 + ], + [ + "▁dicing", + -15.370830535888672 + ], + [ + "▁Alfalfa", + -15.370856285095215 + ], + [ + "▁Afzal", + -15.370882987976074 + ], + [ + "▁censuses", + -15.370891571044922 + ], + [ + "▁Saliva", + -15.37093734741211 + ], + [ + "Panda", + -15.370939254760742 + ], + [ + "▁Gruppe", + -15.370939254760742 + ], + [ + "▁pussies", + -15.370941162109375 + ], + [ + "▁sphinx", + -15.370972633361816 + ], + [ + "▁Frieden", + -15.37098503112793 + ], + [ + "Nearly", + -15.371024131774902 + ], + [ + "Baghdadi", + -15.371078491210938 + ], + [ + "▁cadillac", + -15.371126174926758 + ], + [ + "▁bologna", + -15.371186256408691 + ], + [ + "▁COMFORT", + -15.371187210083008 + ], + [ + "METER", + -15.371216773986816 + ], + [ + "▁understudies", + -15.371289253234863 + ], + [ + "▁Maktoum", + -15.37143611907959 + ], + [ + "لة", + -15.371506690979004 + ], + [ + "▁OWS", + -15.371561050415039 + ], + [ + "▁ECHL", + -15.371563911437988 + ], + [ + "▁nitrile", + -15.371566772460938 + ], + [ + "▁BenQ", + -15.371609687805176 + ], + [ + "▁LIF", + -15.37161636352539 + ], + [ + "GIT", + -15.371627807617188 + ], + [ + "▁Coven", + -15.371700286865234 + ], + [ + "▁hemorrhaging", + -15.371745109558105 + ], + [ + "▁HostGator", + -15.371764183044434 + ], + [ + "▁Diarrhea", + -15.371784210205078 + ], + [ + "▁Burdett", + -15.371801376342773 + ], + [ + "cheating", + -15.371817588806152 + ], + [ + "ciency", + -15.371818542480469 + ], + [ + "▁Osc", + -15.371851921081543 + ], + [ + "▁LLVM", + -15.371871948242188 + ], + [ + "snapshot", + -15.371889114379883 + ], + [ + "▁원", + -15.371894836425781 + ], + [ + "▁Mirabel", + -15.371925354003906 + ], + [ + "▁Antti", + -15.371938705444336 + ], + [ + "imgur", + -15.371965408325195 + ], + [ + "▁locomotor", + -15.371965408325195 + ], + [ + "▁humorist", + -15.371968269348145 + ], + [ + "lination", + -15.371973037719727 + ], + [ + "▁sysadmin", + -15.372025489807129 + ], + [ + "mesi", + -15.372030258178711 + ], + [ + "▁Gayatri", + -15.37204647064209 + ], + [ + "▁Ragan", + -15.372049331665039 + ], + [ + "Edinburgh", + -15.37205982208252 + ], + [ + "archiv", + -15.372082710266113 + ], + [ + "▁Kingpin", + -15.372108459472656 + ], + [ + "▁Léon", + -15.372114181518555 + ], + [ + "▁Folli", + -15.372146606445312 + ], + [ + "▁Grif", + -15.372152328491211 + ], + [ + "▁jquery", + -15.372161865234375 + ], + [ + "▁heresies", + -15.372187614440918 + ], + [ + "▁Schaub", + -15.372222900390625 + ], + [ + "▁Tirupati", + -15.372227668762207 + ], + [ + "▁Seán", + -15.372239112854004 + ], + [ + "▁botanic", + -15.37224292755127 + ], + [ + "Trying", + -15.37226676940918 + ], + [ + "▁encumbered", + -15.372267723083496 + ], + [ + "▁recept", + -15.372269630432129 + ], + [ + "ANSI", + -15.372286796569824 + ], + [ + "ersch", + -15.372288703918457 + ], + [ + "brach", + -15.37229061126709 + ], + [ + "▁Humpback", + -15.372298240661621 + ], + [ + "▁ASCE", + -15.372306823730469 + ], + [ + "▁ESPECIALLY", + -15.372325897216797 + ], + [ + "▁reverberating", + -15.372349739074707 + ], + [ + "▁Mathur", + -15.372358322143555 + ], + [ + "▁Lindor", + -15.37236213684082 + ], + [ + "▁Zech", + -15.372368812561035 + ], + [ + "▁Yachting", + -15.37237548828125 + ], + [ + "informal", + -15.37240219116211 + ], + [ + "▁sterilizing", + -15.372403144836426 + ], + [ + "Mahony", + -15.372413635253906 + ], + [ + "AMZN", + -15.372415542602539 + ], + [ + "guang", + -15.372432708740234 + ], + [ + "yogi", + -15.372437477111816 + ], + [ + "▁Lorelei", + -15.372467994689941 + ], + [ + "Packers", + -15.372476577758789 + ], + [ + "▁molli", + -15.372485160827637 + ], + [ + "▁pitbull", + -15.37251091003418 + ], + [ + "Sql", + -15.372511863708496 + ], + [ + "▁Enel", + -15.372522354125977 + ], + [ + "▁Bega", + -15.372526168823242 + ], + [ + "▁tumorigenesis", + -15.372538566589355 + ], + [ + "▁거", + -15.37254524230957 + ], + [ + "▁diecast", + -15.372586250305176 + ], + [ + "▁compte", + -15.372641563415527 + ], + [ + "▁Bihari", + -15.372652053833008 + ], + [ + "▁Alvar", + -15.372673988342285 + ], + [ + "▁Tanjung", + -15.372709274291992 + ], + [ + "abou", + -15.372711181640625 + ], + [ + "▁Grammer", + -15.372732162475586 + ], + [ + "ksy", + -15.372761726379395 + ], + [ + "▁Dabo", + -15.372801780700684 + ], + [ + "内容", + -15.372803688049316 + ], + [ + "wallpaper", + -15.372812271118164 + ], + [ + "▁Swelling", + -15.372842788696289 + ], + [ + "▁Aadhar", + -15.372934341430664 + ], + [ + "▁LFC", + -15.372957229614258 + ], + [ + "▁cyp", + -15.372970581054688 + ], + [ + "▁benadryl", + -15.373061180114746 + ], + [ + "DAV", + -15.373074531555176 + ], + [ + "▁Alipay", + -15.373162269592285 + ], + [ + "▁Battista", + -15.37318229675293 + ], + [ + "EBITDA", + -15.373222351074219 + ], + [ + "transcript", + -15.373282432556152 + ], + [ + "▁CALLED", + -15.37335205078125 + ], + [ + "▁Casimir", + -15.373359680175781 + ], + [ + "▁Fichte", + -15.37348747253418 + ], + [ + "▁biosynthetic", + -15.373509407043457 + ], + [ + "▁PRESSURE", + -15.37356948852539 + ], + [ + "▁Zhongshan", + -15.37358570098877 + ], + [ + "▁Mikaela", + -15.373600006103516 + ], + [ + "▁torpedoed", + -15.373627662658691 + ], + [ + "▁sexiness", + -15.373649597167969 + ], + [ + "CDR", + -15.373693466186523 + ], + [ + "▁entrapped", + -15.373750686645508 + ], + [ + "▁Barbary", + -15.373770713806152 + ], + [ + "unji", + -15.373786926269531 + ], + [ + "▁Oceanfront", + -15.373790740966797 + ], + [ + "ikoff", + -15.373801231384277 + ], + [ + "▁PRAY", + -15.373806953430176 + ], + [ + "▁Spieler", + -15.373814582824707 + ], + [ + "▁Catarina", + -15.373872756958008 + ], + [ + "▁Weeping", + -15.373895645141602 + ], + [ + "▁Fucking", + -15.37393856048584 + ], + [ + "▁основ", + -15.37395191192627 + ], + [ + "▁signifi", + -15.373987197875977 + ], + [ + "▁emissary", + -15.373991012573242 + ], + [ + "▁Balak", + -15.374025344848633 + ], + [ + "mitra", + -15.37403678894043 + ], + [ + "▁Praveen", + -15.374070167541504 + ], + [ + "▁Jiri", + -15.374076843261719 + ], + [ + "▁Conlon", + -15.374153137207031 + ], + [ + "ँ", + -15.374165534973145 + ], + [ + "▁Kucinich", + -15.374184608459473 + ], + [ + "▁Altai", + -15.374236106872559 + ], + [ + "▁entrainment", + -15.374262809753418 + ], + [ + "▁Remark", + -15.37426471710205 + ], + [ + "נו", + -15.374310493469238 + ], + [ + "▁MSFT", + -15.37437629699707 + ], + [ + "▁Copperfield", + -15.374399185180664 + ], + [ + "overwhelming", + -15.374414443969727 + ], + [ + "▁ELK", + -15.374420166015625 + ], + [ + "▁Wasting", + -15.37442398071289 + ], + [ + "▁redfish", + -15.374433517456055 + ], + [ + "▁Muskogee", + -15.374456405639648 + ], + [ + "▁NSL", + -15.374466896057129 + ], + [ + "▁Bettman", + -15.374483108520508 + ], + [ + "▁Unibet", + -15.374526977539062 + ], + [ + "▁emphases", + -15.37453556060791 + ], + [ + "▁Lafferty", + -15.374573707580566 + ], + [ + "▁HUNTER", + -15.374608039855957 + ], + [ + "WATCH", + -15.37464427947998 + ], + [ + "XXL", + -15.374649047851562 + ], + [ + "Practical", + -15.374677658081055 + ], + [ + "▁dendro", + -15.374699592590332 + ], + [ + "▁Unported", + -15.37471866607666 + ], + [ + "▁extensibility", + -15.374730110168457 + ], + [ + "Notification", + -15.374813079833984 + ], + [ + "▁unworn", + -15.374818801879883 + ], + [ + "▁Alstom", + -15.374929428100586 + ], + [ + "▁biracial", + -15.374954223632812 + ], + [ + "▁DWR", + -15.374992370605469 + ], + [ + "agile", + -15.375000953674316 + ], + [ + "▁Sedo", + -15.375031471252441 + ], + [ + "▁reordering", + -15.375032424926758 + ], + [ + "▁Berkman", + -15.375040054321289 + ], + [ + "Finland", + -15.37507152557373 + ], + [ + "▁superhighway", + -15.37507152557373 + ], + [ + "▁Sybase", + -15.375088691711426 + ], + [ + "▁quickening", + -15.37509822845459 + ], + [ + "▁chromite", + -15.375116348266602 + ], + [ + "▁goalkeeping", + -15.375129699707031 + ], + [ + "案", + -15.375134468078613 + ], + [ + "DUCTION", + -15.375154495239258 + ], + [ + "▁Gallia", + -15.375164031982422 + ], + [ + "색", + -15.375174522399902 + ], + [ + "▁sunburned", + -15.375190734863281 + ], + [ + "▁Weigel", + -15.375218391418457 + ], + [ + "TCM", + -15.375228881835938 + ], + [ + "▁disches", + -15.375232696533203 + ], + [ + "një", + -15.375235557556152 + ], + [ + "Capacity", + -15.375239372253418 + ], + [ + "▁GERMAN", + -15.375261306762695 + ], + [ + "▁Transitioning", + -15.375309944152832 + ], + [ + "▁intermingled", + -15.375311851501465 + ], + [ + "▁unpleasantness", + -15.375330924987793 + ], + [ + "▁Rothwell", + -15.375332832336426 + ], + [ + "änn", + -15.375337600708008 + ], + [ + "▁Rappahannock", + -15.375349044799805 + ], + [ + "▁profiteering", + -15.375375747680664 + ], + [ + "▁trumpeted", + -15.375433921813965 + ], + [ + "▁GYM", + -15.375450134277344 + ], + [ + "ASCO", + -15.375456809997559 + ], + [ + "▁triangulate", + -15.375563621520996 + ], + [ + "▁expressiveness", + -15.375579833984375 + ], + [ + "▁constitu", + -15.375633239746094 + ], + [ + "▁Delph", + -15.375635147094727 + ], + [ + "emergent", + -15.37564468383789 + ], + [ + "▁Selim", + -15.37564468383789 + ], + [ + "▁cef", + -15.375685691833496 + ], + [ + "ект", + -15.375687599182129 + ], + [ + "▁Reuter", + -15.375703811645508 + ], + [ + "▁Noteworthy", + -15.375727653503418 + ], + [ + "▁Suspected", + -15.375754356384277 + ], + [ + "▁nsw", + -15.375764846801758 + ], + [ + "▁quaternary", + -15.375776290893555 + ], + [ + "▁Casco", + -15.375797271728516 + ], + [ + "▁messier", + -15.37580394744873 + ], + [ + "▁Mamie", + -15.37584114074707 + ], + [ + "▁BARB", + -15.375848770141602 + ], + [ + "▁soufflé", + -15.375853538513184 + ], + [ + "▁Coogan", + -15.37589168548584 + ], + [ + "▁Refusal", + -15.375899314880371 + ], + [ + "▁kingfisher", + -15.37591552734375 + ], + [ + "▁lambast", + -15.375929832458496 + ], + [ + "▁tallow", + -15.375938415527344 + ], + [ + "▁ASTRO", + -15.37598705291748 + ], + [ + "▁crumple", + -15.376077651977539 + ], + [ + "olta", + -15.37608528137207 + ], + [ + "▁Nester", + -15.37610149383545 + ], + [ + "wizzle", + -15.376102447509766 + ], + [ + "▁Participated", + -15.376111030578613 + ], + [ + "▁Negara", + -15.376150131225586 + ], + [ + "Cheek", + -15.37619686126709 + ], + [ + "▁Hibbert", + -15.376204490661621 + ], + [ + "▁Greinke", + -15.376205444335938 + ], + [ + "▁CATCH", + -15.376219749450684 + ], + [ + "▁Majlis", + -15.376235008239746 + ], + [ + "ANZA", + -15.37625789642334 + ], + [ + "▁Etymology", + -15.376261711120605 + ], + [ + "▁joyously", + -15.376270294189453 + ], + [ + "▁bioscience", + -15.376272201538086 + ], + [ + "▁Caribe", + -15.376280784606934 + ], + [ + "▁TOWNSHIP", + -15.376282691955566 + ], + [ + "▁SPAN", + -15.376287460327148 + ], + [ + "▁Wavy", + -15.376379013061523 + ], + [ + "▁morphogenesis", + -15.376385688781738 + ], + [ + "▁cep", + -15.376386642456055 + ], + [ + "▁Repent", + -15.376402854919434 + ], + [ + "▁его", + -15.376453399658203 + ], + [ + "▁Conceal", + -15.376472473144531 + ], + [ + "▁Все", + -15.376489639282227 + ], + [ + "cassette", + -15.376500129699707 + ], + [ + "▁Eccentric", + -15.376509666442871 + ], + [ + "▁Elec", + -15.376523971557617 + ], + [ + "▁FDNY", + -15.37657642364502 + ], + [ + "▁scabies", + -15.37657642364502 + ], + [ + "▁LYN", + -15.376605987548828 + ], + [ + "▁contrition", + -15.376635551452637 + ], + [ + "▁Anemia", + -15.37667179107666 + ], + [ + "ース", + -15.376726150512695 + ], + [ + "structuring", + -15.376806259155273 + ], + [ + "▁Cromer", + -15.37680721282959 + ], + [ + "southeast", + -15.376811981201172 + ], + [ + "compose", + -15.376821517944336 + ], + [ + "술", + -15.376882553100586 + ], + [ + "▁Quench", + -15.376898765563965 + ], + [ + "▁grovel", + -15.376899719238281 + ], + [ + "▁patentable", + -15.377086639404297 + ], + [ + "▁Choreographer", + -15.377094268798828 + ], + [ + "ceutical", + -15.377115249633789 + ], + [ + "▁Lacroix", + -15.377117156982422 + ], + [ + "▁FICTION", + -15.377131462097168 + ], + [ + "▁Mohave", + -15.377161979675293 + ], + [ + "▁creole", + -15.377164840698242 + ], + [ + "▁McGhee", + -15.37720775604248 + ], + [ + "▁Siraj", + -15.377225875854492 + ], + [ + "操作", + -15.377279281616211 + ], + [ + "▁Kumasi", + -15.377293586730957 + ], + [ + "berkeley", + -15.377305030822754 + ], + [ + "▁Imphal", + -15.37734317779541 + ], + [ + "▁skatepark", + -15.377386093139648 + ], + [ + "▁treasonous", + -15.377413749694824 + ], + [ + "▁Pitino", + -15.377426147460938 + ], + [ + "▁Lockport", + -15.37743854522705 + ], + [ + "▁cultura", + -15.377469062805176 + ], + [ + "ец", + -15.37748908996582 + ], + [ + "▁machineries", + -15.377574920654297 + ], + [ + "▁În", + -15.377634048461914 + ], + [ + "diffusion", + -15.377646446228027 + ], + [ + "universit", + -15.377678871154785 + ], + [ + "blanket", + -15.37768840789795 + ], + [ + "▁LINCOLN", + -15.377738952636719 + ], + [ + "▁kickstand", + -15.377765655517578 + ], + [ + "▁deutsche", + -15.37778377532959 + ], + [ + "▁Chrysanthemum", + -15.37779712677002 + ], + [ + "▁Wtd", + -15.377815246582031 + ], + [ + "▁Hologram", + -15.377846717834473 + ], + [ + "▁Sherrill", + -15.377854347229004 + ], + [ + "▁bootstrapping", + -15.377930641174316 + ], + [ + "▁exasperating", + -15.377933502197266 + ], + [ + "▁breastplate", + -15.377985954284668 + ], + [ + "▁Mounties", + -15.377989768981934 + ], + [ + "▁endotoxin", + -15.378000259399414 + ], + [ + "Davies", + -15.37800121307373 + ], + [ + "ophthalmo", + -15.378005027770996 + ], + [ + "▁privation", + -15.37802505493164 + ], + [ + "лек", + -15.378067016601562 + ], + [ + "▁PRETTY", + -15.378131866455078 + ], + [ + "oogle", + -15.378190040588379 + ], + [ + "▁DXF", + -15.378207206726074 + ], + [ + "Lloyd", + -15.378223419189453 + ], + [ + "▁microfibre", + -15.378246307373047 + ], + [ + "zheng", + -15.378252983093262 + ], + [ + "▁Paglia", + -15.378332138061523 + ], + [ + "▁slimmed", + -15.378350257873535 + ], + [ + "▁Salgado", + -15.378355026245117 + ], + [ + "ψ", + -15.378369331359863 + ], + [ + "retinal", + -15.37837028503418 + ], + [ + "으며", + -15.37838077545166 + ], + [ + "▁Toxicol", + -15.378412246704102 + ], + [ + "▁amoxil", + -15.378436088562012 + ], + [ + "▁Intifada", + -15.378439903259277 + ], + [ + "▁Ο", + -15.378458023071289 + ], + [ + "▁DETAIL", + -15.37849235534668 + ], + [ + "▁Alph", + -15.37855339050293 + ], + [ + "▁ottawa", + -15.378583908081055 + ], + [ + "▁Virology", + -15.378644943237305 + ], + [ + "▁Bulgari", + -15.37869644165039 + ], + [ + "▁ACADEMY", + -15.37871265411377 + ], + [ + "▁Luhansk", + -15.378751754760742 + ], + [ + "ENDO", + -15.378774642944336 + ], + [ + "libertarian", + -15.378778457641602 + ], + [ + "스트", + -15.37895393371582 + ], + [ + "▁Wolk", + -15.378958702087402 + ], + [ + "▁polymorph", + -15.378958702087402 + ], + [ + "FIRST", + -15.379011154174805 + ], + [ + "▁wingback", + -15.379063606262207 + ], + [ + "draining", + -15.37906551361084 + ], + [ + "▁Hitchhiker", + -15.379082679748535 + ], + [ + "MBR", + -15.379117012023926 + ], + [ + "▁blanco", + -15.379121780395508 + ], + [ + "▁Eliminator", + -15.379218101501465 + ], + [ + "▁Buen", + -15.379239082336426 + ], + [ + "▁،", + -15.379290580749512 + ], + [ + "ベ", + -15.379324913024902 + ], + [ + "uwar", + -15.379327774047852 + ], + [ + "▁Janitorial", + -15.379335403442383 + ], + [ + "▁freshening", + -15.379343032836914 + ], + [ + "Hale", + -15.379371643066406 + ], + [ + "▁chitin", + -15.379380226135254 + ], + [ + "▁Poisoning", + -15.37938404083252 + ], + [ + "▁roc", + -15.379420280456543 + ], + [ + "▁Blackmagic", + -15.3794527053833 + ], + [ + "Hearing", + -15.379467010498047 + ], + [ + "▁Mehl", + -15.379514694213867 + ], + [ + "▁stuttered", + -15.37955093383789 + ], + [ + "▁nixed", + -15.379551887512207 + ], + [ + "Putting", + -15.37955379486084 + ], + [ + "Knit", + -15.3795804977417 + ], + [ + "▁Vivendi", + -15.379655838012695 + ], + [ + "▁Gargoyle", + -15.379667282104492 + ], + [ + "ablity", + -15.379676818847656 + ], + [ + "▁ANTHONY", + -15.37968635559082 + ], + [ + "▁hyperbaric", + -15.37968635559082 + ], + [ + "▁Literatur", + -15.379691123962402 + ], + [ + "ipate", + -15.379697799682617 + ], + [ + "▁Palpatine", + -15.379725456237793 + ], + [ + "▁infliction", + -15.379850387573242 + ], + [ + "kicker", + -15.379905700683594 + ], + [ + "MASS", + -15.379936218261719 + ], + [ + "Construct", + -15.3799467086792 + ], + [ + "Wouldn", + -15.379976272583008 + ], + [ + "▁Saitama", + -15.379995346069336 + ], + [ + "▁Damask", + -15.380044937133789 + ], + [ + "▁alphabetic", + -15.380070686340332 + ], + [ + "▁Lactic", + -15.380112648010254 + ], + [ + "▁Gurung", + -15.380159378051758 + ], + [ + "Tale", + -15.38017749786377 + ], + [ + "лит", + -15.380203247070312 + ], + [ + "▁Conjuring", + -15.380212783813477 + ], + [ + "▁ellipsoid", + -15.380212783813477 + ], + [ + "▁habanero", + -15.380212783813477 + ], + [ + "VEGF", + -15.380226135253906 + ], + [ + "▁hijo", + -15.380284309387207 + ], + [ + "▁tarnishing", + -15.380295753479004 + ], + [ + "▁Pepin", + -15.380317687988281 + ], + [ + "یا", + -15.380324363708496 + ], + [ + "▁Accomplish", + -15.380346298217773 + ], + [ + "▁sportive", + -15.380355834960938 + ], + [ + "▁kjo", + -15.380396842956543 + ], + [ + "▁Birkenstock", + -15.380447387695312 + ], + [ + "▁Yellowknife", + -15.380474090576172 + ], + [ + "Evelyn", + -15.380499839782715 + ], + [ + "torno", + -15.380539894104004 + ], + [ + "▁escapade", + -15.380645751953125 + ], + [ + "crum", + -15.380667686462402 + ], + [ + "▁depose", + -15.380671501159668 + ], + [ + "HipHop", + -15.380681037902832 + ], + [ + "turvy", + -15.380691528320312 + ], + [ + "▁tusk", + -15.380702018737793 + ], + [ + "Gothic", + -15.380707740783691 + ], + [ + "▁colchicine", + -15.380720138549805 + ], + [ + "costume", + -15.380722045898438 + ], + [ + "▁Reaffirmed", + -15.38074016571045 + ], + [ + "▁Nablus", + -15.380827903747559 + ], + [ + "▁sarong", + -15.380831718444824 + ], + [ + "▁infanticide", + -15.38085651397705 + ], + [ + "▁paleontology", + -15.380868911743164 + ], + [ + "Equipment", + -15.380898475646973 + ], + [ + "▁Fracking", + -15.380901336669922 + ], + [ + "▁Whitten", + -15.380902290344238 + ], + [ + "Zach", + -15.38090705871582 + ], + [ + "▁Fandom", + -15.380925178527832 + ], + [ + "▁Cordray", + -15.380948066711426 + ], + [ + "▁Beachfront", + -15.380993843078613 + ], + [ + "▁Intestinal", + -15.380993843078613 + ], + [ + "▁Eusebius", + -15.381032943725586 + ], + [ + "▁SGX", + -15.381067276000977 + ], + [ + "▁Marmalade", + -15.381091117858887 + ], + [ + "▁Vanderpump", + -15.381139755249023 + ], + [ + "нк", + -15.381199836730957 + ], + [ + "▁CREATION", + -15.381240844726562 + ], + [ + "▁verschiedene", + -15.381247520446777 + ], + [ + "▁adulterous", + -15.381251335144043 + ], + [ + "▁Cilantro", + -15.381258010864258 + ], + [ + "uthu", + -15.381279945373535 + ], + [ + "▁pooja", + -15.381311416625977 + ], + [ + "northeast", + -15.38136100769043 + ], + [ + "▁τα", + -15.381425857543945 + ], + [ + "▁Ouija", + -15.381426811218262 + ], + [ + "▁Kimble", + -15.381438255310059 + ], + [ + "Parliament", + -15.381443977355957 + ], + [ + "▁DMF", + -15.381521224975586 + ], + [ + "▁Lightspeed", + -15.381569862365723 + ], + [ + "▁Mutiny", + -15.381587982177734 + ], + [ + "▁colonnade", + -15.381610870361328 + ], + [ + "TEF", + -15.381617546081543 + ], + [ + "▁hallucinating", + -15.38161849975586 + ], + [ + "▁taurus", + -15.381643295288086 + ], + [ + "▁unibody", + -15.38165283203125 + ], + [ + "▁lamppost", + -15.381699562072754 + ], + [ + "▁Titusville", + -15.381709098815918 + ], + [ + "exert", + -15.381720542907715 + ], + [ + "▁DPW", + -15.381821632385254 + ], + [ + "▁TRAP", + -15.381824493408203 + ], + [ + "▁Mobius", + -15.381851196289062 + ], + [ + "▁Vitaly", + -15.381872177124023 + ], + [ + "▁interdiction", + -15.38188648223877 + ], + [ + "於", + -15.381930351257324 + ], + [ + "LUG", + -15.381945610046387 + ], + [ + "▁intercollegiate", + -15.3819580078125 + ], + [ + "▁Hinsdale", + -15.382003784179688 + ], + [ + "governed", + -15.382019996643066 + ], + [ + "▁roi", + -15.382026672363281 + ], + [ + "▁balaclava", + -15.382067680358887 + ], + [ + "▁Strada", + -15.382068634033203 + ], + [ + "RICS", + -15.382102966308594 + ], + [ + "isode", + -15.382119178771973 + ], + [ + "▁dabbing", + -15.382149696350098 + ], + [ + "▁Fellini", + -15.38217830657959 + ], + [ + "Pizza", + -15.382219314575195 + ], + [ + "graphie", + -15.382241249084473 + ], + [ + "oxyl", + -15.3822660446167 + ], + [ + "至", + -15.382292747497559 + ], + [ + "▁Vanquish", + -15.38231372833252 + ], + [ + "▁MYOB", + -15.382319450378418 + ], + [ + "▁pleb", + -15.382392883300781 + ], + [ + "▁Microfinance", + -15.382413864135742 + ], + [ + "Worx", + -15.382423400878906 + ], + [ + "▁anthemic", + -15.382501602172852 + ], + [ + "▁Darrel", + -15.382511138916016 + ], + [ + "Beware", + -15.38251781463623 + ], + [ + "▁SUSAN", + -15.382535934448242 + ], + [ + "▁DISCLAIM", + -15.38258171081543 + ], + [ + "▁hymnal", + -15.382582664489746 + ], + [ + "▁monotonic", + -15.382591247558594 + ], + [ + "▁Ratzinger", + -15.382624626159668 + ], + [ + "▁taxiway", + -15.382635116577148 + ], + [ + "amongst", + -15.382661819458008 + ], + [ + "▁Abidjan", + -15.382760047912598 + ], + [ + "▁Miroslav", + -15.382795333862305 + ], + [ + "ень", + -15.382882118225098 + ], + [ + "iddly", + -15.382885932922363 + ], + [ + "▁Rejected", + -15.382905960083008 + ], + [ + "Deluxe", + -15.38294792175293 + ], + [ + "anderson", + -15.382957458496094 + ], + [ + "▁overdosing", + -15.382966041564941 + ], + [ + "▁Ketchup", + -15.383028030395508 + ], + [ + "▁Arnott", + -15.383044242858887 + ], + [ + "▁Otolaryngology", + -15.383045196533203 + ], + [ + "▁miglior", + -15.383055686950684 + ], + [ + "áš", + -15.383074760437012 + ], + [ + "liqua", + -15.38309383392334 + ], + [ + "▁Nascar", + -15.383111000061035 + ], + [ + "EPP", + -15.383167266845703 + ], + [ + "▁Banger", + -15.383174896240234 + ], + [ + "▁Franzen", + -15.383218765258789 + ], + [ + "▁Jamey", + -15.38326358795166 + ], + [ + "▁Leduc", + -15.38326358795166 + ], + [ + "▁Bruck", + -15.383272171020508 + ], + [ + "preparation", + -15.383330345153809 + ], + [ + "STRONG", + -15.383360862731934 + ], + [ + "▁TTIP", + -15.383365631103516 + ], + [ + "▁GFR", + -15.383380889892578 + ], + [ + "Avatar", + -15.383455276489258 + ], + [ + "▁unpolished", + -15.383487701416016 + ], + [ + "Terminal", + -15.383527755737305 + ], + [ + "eč", + -15.383561134338379 + ], + [ + "▁Slovakian", + -15.383591651916504 + ], + [ + "▁equivocal", + -15.383594512939453 + ], + [ + "ிய", + -15.383610725402832 + ], + [ + "▁Nocturne", + -15.383613586425781 + ], + [ + "▁Clinch", + -15.383623123168945 + ], + [ + "▁Malmo", + -15.383637428283691 + ], + [ + "exclusion", + -15.38366413116455 + ], + [ + "▁JASON", + -15.383674621582031 + ], + [ + "▁0844", + -15.38368034362793 + ], + [ + "에게", + -15.383681297302246 + ], + [ + "▁Dislike", + -15.383708953857422 + ], + [ + "▁deviance", + -15.3837308883667 + ], + [ + "▁restatement", + -15.383736610412598 + ], + [ + "▁Manigault", + -15.383749008178711 + ], + [ + "▁wafted", + -15.383761405944824 + ], + [ + "▁emir", + -15.383796691894531 + ], + [ + "▁Assert", + -15.383877754211426 + ], + [ + "▁ventilate", + -15.383890151977539 + ], + [ + "▁baptist", + -15.383896827697754 + ], + [ + "▁telah", + -15.383950233459473 + ], + [ + "▁Zeeland", + -15.383968353271484 + ], + [ + "▁germinated", + -15.383980751037598 + ], + [ + "▁FCPA", + -15.383984565734863 + ], + [ + "▁Vehicular", + -15.384003639221191 + ], + [ + "▁dildo", + -15.384018898010254 + ], + [ + "▁Handicapped", + -15.38402271270752 + ], + [ + "Emotional", + -15.384025573730469 + ], + [ + "▁Prema", + -15.384042739868164 + ], + [ + "▁Eyeglasses", + -15.384065628051758 + ], + [ + "▁Uniqlo", + -15.38410472869873 + ], + [ + "▁promethazine", + -15.384121894836426 + ], + [ + "▁glutton", + -15.38413143157959 + ], + [ + "▁remarriage", + -15.384164810180664 + ], + [ + "▁disassembling", + -15.38419246673584 + ], + [ + "hoor", + -15.384217262268066 + ], + [ + "▁CRIMINAL", + -15.384239196777344 + ], + [ + "iverse", + -15.38425064086914 + ], + [ + "군", + -15.384258270263672 + ], + [ + "COVER", + -15.384275436401367 + ], + [ + "Unlock", + -15.384297370910645 + ], + [ + "▁gunship", + -15.384303092956543 + ], + [ + "▁homologue", + -15.38432788848877 + ], + [ + "empted", + -15.384331703186035 + ], + [ + "▁MRF", + -15.384332656860352 + ], + [ + "Lov", + -15.384363174438477 + ], + [ + "▁nibbled", + -15.384417533874512 + ], + [ + "Orient", + -15.384419441223145 + ], + [ + "khali", + -15.384435653686523 + ], + [ + "▁semua", + -15.384440422058105 + ], + [ + "▁SHP", + -15.384443283081055 + ], + [ + "Noise", + -15.384449005126953 + ], + [ + "scenario", + -15.384514808654785 + ], + [ + "unlikely", + -15.384517669677734 + ], + [ + "▁Lloris", + -15.384578704833984 + ], + [ + "▁HELD", + -15.384652137756348 + ], + [ + "loyal", + -15.384657859802246 + ], + [ + "▁transversal", + -15.384692192077637 + ], + [ + "▁unframed", + -15.384711265563965 + ], + [ + "WICK", + -15.384716033935547 + ], + [ + "▁PowerShot", + -15.384736061096191 + ], + [ + "▁MEDIUM", + -15.384737968444824 + ], + [ + "▁Rainwater", + -15.384737968444824 + ], + [ + "▁Virtuoso", + -15.384774208068848 + ], + [ + "▁TTY", + -15.384782791137695 + ], + [ + "▁Heinemann", + -15.38488483428955 + ], + [ + "▁Chrysostom", + -15.384885787963867 + ], + [ + "▁masculin", + -15.384902954101562 + ], + [ + "▁Alamitos", + -15.384909629821777 + ], + [ + "tactical", + -15.384912490844727 + ], + [ + "▁Coriander", + -15.384947776794434 + ], + [ + "ελ", + -15.3849515914917 + ], + [ + "▁pogo", + -15.38495922088623 + ], + [ + "Comedy", + -15.384965896606445 + ], + [ + "▁benediction", + -15.385021209716797 + ], + [ + "▁petiole", + -15.385048866271973 + ], + [ + "▁Desolation", + -15.385063171386719 + ], + [ + "▁dysphagia", + -15.385101318359375 + ], + [ + "▁Lithgow", + -15.385218620300293 + ], + [ + "▁jetliner", + -15.385262489318848 + ], + [ + "▁INDUSTRIES", + -15.385355949401855 + ], + [ + "▁FUD", + -15.38543701171875 + ], + [ + "▁Mooring", + -15.385448455810547 + ], + [ + "▁massachusetts", + -15.385454177856445 + ], + [ + "▁Geun", + -15.385456085205078 + ], + [ + "▁Gronk", + -15.385509490966797 + ], + [ + "▁adulterer", + -15.38552188873291 + ], + [ + "▁Stockdale", + -15.385523796081543 + ], + [ + "▁Hindutva", + -15.385534286499023 + ], + [ + "▁reprinting", + -15.385555267333984 + ], + [ + "restoration", + -15.3855562210083 + ], + [ + "▁NOBODY", + -15.385558128356934 + ], + [ + "andrew", + -15.3856201171875 + ], + [ + "▁shipboard", + -15.38564682006836 + ], + [ + "▁pandemonium", + -15.385649681091309 + ], + [ + "▁Schefter", + -15.385653495788574 + ], + [ + "kunda", + -15.385716438293457 + ], + [ + "▁Anticipating", + -15.38572883605957 + ], + [ + "merchant", + -15.385749816894531 + ], + [ + "▁segregating", + -15.385787010192871 + ], + [ + "▁Bronwyn", + -15.385788917541504 + ], + [ + "▁Nexium", + -15.385799407958984 + ], + [ + "▁ELC", + -15.385811805725098 + ], + [ + "▁spectrophotometer", + -15.385826110839844 + ], + [ + "▁LMAO", + -15.385844230651855 + ], + [ + "▁CXCL", + -15.385851860046387 + ], + [ + "▁quartzite", + -15.385905265808105 + ], + [ + "Defender", + -15.386058807373047 + ], + [ + "▁Ooty", + -15.386067390441895 + ], + [ + "▁preemptively", + -15.386099815368652 + ], + [ + "티", + -15.386120796203613 + ], + [ + "▁privatised", + -15.386122703552246 + ], + [ + "▁tipper", + -15.386124610900879 + ], + [ + "jihad", + -15.386130332946777 + ], + [ + "torque", + -15.386164665222168 + ], + [ + "▁portent", + -15.386175155639648 + ], + [ + "▁Piezo", + -15.386185646057129 + ], + [ + "▁blvd", + -15.386198997497559 + ], + [ + "▁Metallurgical", + -15.386297225952148 + ], + [ + "▁tommy", + -15.386344909667969 + ], + [ + "educate", + -15.386385917663574 + ], + [ + "▁Nucleo", + -15.386439323425293 + ], + [ + "مه", + -15.386500358581543 + ], + [ + "compiler", + -15.386503219604492 + ], + [ + "CONNECT", + -15.386534690856934 + ], + [ + "▁Guerin", + -15.386557579040527 + ], + [ + "colonialism", + -15.386571884155273 + ], + [ + "▁Emeli", + -15.386601448059082 + ], + [ + "ɔ", + -15.386650085449219 + ], + [ + "▁στο", + -15.386650085449219 + ], + [ + "▁SHADOW", + -15.38665771484375 + ], + [ + "▁Constraint", + -15.386703491210938 + ], + [ + "🏻", + -15.386706352233887 + ], + [ + "▁brunches", + -15.386772155761719 + ], + [ + "Elliot", + -15.386798858642578 + ], + [ + "▁satirist", + -15.386886596679688 + ], + [ + "OOO", + -15.386902809143066 + ], + [ + "addled", + -15.386903762817383 + ], + [ + "▁Insertion", + -15.386926651000977 + ], + [ + "locator", + -15.386946678161621 + ], + [ + "▁Nicknamed", + -15.386985778808594 + ], + [ + "voucher", + -15.38698673248291 + ], + [ + "vov", + -15.38704776763916 + ], + [ + "▁Chibi", + -15.387056350708008 + ], + [ + "▁Prospero", + -15.387059211730957 + ], + [ + "lehre", + -15.387084007263184 + ], + [ + "▁airfoil", + -15.387163162231445 + ], + [ + "fiq", + -15.387164115905762 + ], + [ + "▁Shoshone", + -15.387200355529785 + ], + [ + "▁rifling", + -15.387203216552734 + ], + [ + "▁completa", + -15.387224197387695 + ], + [ + "▁Barthol", + -15.387273788452148 + ], + [ + "▁Bletchley", + -15.38727855682373 + ], + [ + "▁Kommentar", + -15.387301445007324 + ], + [ + "▁Cuddy", + -15.387334823608398 + ], + [ + "象", + -15.387340545654297 + ], + [ + "▁Genova", + -15.38735580444336 + ], + [ + "▁Milosh", + -15.387432098388672 + ], + [ + "▁CCleaner", + -15.387455940246582 + ], + [ + "▁experiencia", + -15.38746166229248 + ], + [ + "collateral", + -15.387540817260742 + ], + [ + "▁hysterics", + -15.387598991394043 + ], + [ + "▁Tlaib", + -15.387632369995117 + ], + [ + "▁Mignon", + -15.387693405151367 + ], + [ + "▁Skylark", + -15.387735366821289 + ], + [ + "输", + -15.3877534866333 + ], + [ + "▁Crowther", + -15.387799263000488 + ], + [ + "▁detested", + -15.387808799743652 + ], + [ + "▁Futsal", + -15.387809753417969 + ], + [ + "▁NEH", + -15.387893676757812 + ], + [ + "▁zooplankton", + -15.38791275024414 + ], + [ + "▁Cloverdale", + -15.387917518615723 + ], + [ + "▁WebGL", + -15.387998580932617 + ], + [ + "▁Padang", + -15.388012886047363 + ], + [ + "alala", + -15.38803482055664 + ], + [ + "▁Dlamini", + -15.388044357299805 + ], + [ + "JIT", + -15.38804817199707 + ], + [ + "▁toleration", + -15.38808822631836 + ], + [ + "Poster", + -15.388110160827637 + ], + [ + "▁woodblock", + -15.388145446777344 + ], + [ + "▁Dockyard", + -15.388171195983887 + ], + [ + "▁karen", + -15.388300895690918 + ], + [ + "Proud", + -15.388304710388184 + ], + [ + "▁Tillis", + -15.388319969177246 + ], + [ + "▁DEQ", + -15.388347625732422 + ], + [ + "▁Seidel", + -15.388368606567383 + ], + [ + "▁Finchley", + -15.388383865356445 + ], + [ + "Isabel", + -15.388402938842773 + ], + [ + "▁Bolling", + -15.388422966003418 + ], + [ + "▁Redneck", + -15.388435363769531 + ], + [ + "▁Courtroom", + -15.388476371765137 + ], + [ + "ări", + -15.388492584228516 + ], + [ + "▁Rusev", + -15.38850212097168 + ], + [ + "wka", + -15.388572692871094 + ], + [ + "honour", + -15.38858413696289 + ], + [ + "▁Norco", + -15.388588905334473 + ], + [ + "▁Revitalization", + -15.388617515563965 + ], + [ + "▁produc", + -15.388650894165039 + ], + [ + "▁kultur", + -15.388671875 + ], + [ + "▁univers", + -15.388707160949707 + ], + [ + "shedding", + -15.388736724853516 + ], + [ + "Designed", + -15.388745307922363 + ], + [ + "▁Ubiquitous", + -15.388752937316895 + ], + [ + "LIF", + -15.388778686523438 + ], + [ + "Somewhere", + -15.388786315917969 + ], + [ + "▁Telephony", + -15.388799667358398 + ], + [ + "▁dispelling", + -15.38880443572998 + ], + [ + "▁ingots", + -15.388811111450195 + ], + [ + "▁seductively", + -15.388867378234863 + ], + [ + "lorn", + -15.388890266418457 + ], + [ + "eligibility", + -15.388921737670898 + ], + [ + "▁suffragette", + -15.388927459716797 + ], + [ + "▁celsius", + -15.388930320739746 + ], + [ + "▁Quantities", + -15.388957023620605 + ], + [ + "▁Collinsville", + -15.389015197753906 + ], + [ + "▁prancing", + -15.389039993286133 + ], + [ + "▁rationalizing", + -15.389059066772461 + ], + [ + "들이", + -15.389084815979004 + ], + [ + "▁OBJ", + -15.389107704162598 + ], + [ + "▁Westphalia", + -15.389120101928711 + ], + [ + "▁decouple", + -15.389140129089355 + ], + [ + "Sanders", + -15.389171600341797 + ], + [ + "▁RUM", + -15.389171600341797 + ], + [ + "▁siloed", + -15.38918399810791 + ], + [ + "▁raja", + -15.389228820800781 + ], + [ + "▁eccentricities", + -15.389229774475098 + ], + [ + "▁Practise", + -15.389301300048828 + ], + [ + "▁Claro", + -15.389315605163574 + ], + [ + "▁Lavish", + -15.38934326171875 + ], + [ + "▁McQui", + -15.389413833618164 + ], + [ + "▁Politburo", + -15.389422416687012 + ], + [ + "ivory", + -15.389435768127441 + ], + [ + "▁legislating", + -15.38944149017334 + ], + [ + "▁Heffernan", + -15.389481544494629 + ], + [ + "▁Morelos", + -15.389487266540527 + ], + [ + "▁Melba", + -15.389508247375488 + ], + [ + "▁Battling", + -15.389518737792969 + ], + [ + "▁Opaque", + -15.389540672302246 + ], + [ + "Hmmm", + -15.389552116394043 + ], + [ + "ച", + -15.38959789276123 + ], + [ + "▁Lakefront", + -15.389617919921875 + ], + [ + "eshwari", + -15.389636039733887 + ], + [ + "▁Marzipan", + -15.389718055725098 + ], + [ + "▁Nolte", + -15.389730453491211 + ], + [ + "▁Saal", + -15.389739036560059 + ], + [ + "▁Atlantean", + -15.38975715637207 + ], + [ + "modification", + -15.38976001739502 + ], + [ + "▁Scarce", + -15.38977336883545 + ], + [ + "▁Sulaiman", + -15.389781951904297 + ], + [ + "▁plasterboard", + -15.389788627624512 + ], + [ + "▁narc", + -15.389819145202637 + ], + [ + "▁TGV", + -15.389822959899902 + ], + [ + "▁REMOTE", + -15.389878273010254 + ], + [ + "▁poignantly", + -15.389890670776367 + ], + [ + "▁monocytogenes", + -15.389914512634277 + ], + [ + "GOOG", + -15.390033721923828 + ], + [ + "▁marbling", + -15.390048027038574 + ], + [ + "Nintendo", + -15.390079498291016 + ], + [ + "Tight", + -15.390130996704102 + ], + [ + "▁SKIP", + -15.3901948928833 + ], + [ + "▁Moravia", + -15.390214920043945 + ], + [ + "catechin", + -15.390230178833008 + ], + [ + "▁DUTY", + -15.3902587890625 + ], + [ + "ollar", + -15.39026927947998 + ], + [ + "▁Céline", + -15.390270233154297 + ], + [ + "▁Disturbing", + -15.390294075012207 + ], + [ + "▁Ibrox", + -15.390332221984863 + ], + [ + "▁anchovy", + -15.390348434448242 + ], + [ + "BIR", + -15.390356063842773 + ], + [ + "▁uninfected", + -15.390405654907227 + ], + [ + "▁Actuarial", + -15.390406608581543 + ], + [ + "▁committment", + -15.390420913696289 + ], + [ + "▁subspecialty", + -15.390427589416504 + ], + [ + "▁Kraj", + -15.390445709228516 + ], + [ + "Piano", + -15.390449523925781 + ], + [ + "▁SSW", + -15.390470504760742 + ], + [ + "▁TAD", + -15.390496253967285 + ], + [ + "▁Disappointment", + -15.390504837036133 + ], + [ + "▁Keli", + -15.390525817871094 + ], + [ + "▁achingly", + -15.390530586242676 + ], + [ + "eksi", + -15.390571594238281 + ], + [ + "Martha", + -15.39058780670166 + ], + [ + "▁clunker", + -15.39059829711914 + ], + [ + "▁voltmeter", + -15.390630722045898 + ], + [ + "▁Thrash", + -15.390668869018555 + ], + [ + "▁hamstrung", + -15.390668869018555 + ], + [ + "▁Nathanael", + -15.390686988830566 + ], + [ + "▁Wilberforce", + -15.390710830688477 + ], + [ + "Vibe", + -15.390743255615234 + ], + [ + "▁Но", + -15.390746116638184 + ], + [ + "▁Portofino", + -15.390761375427246 + ], + [ + "▁Lahaina", + -15.390762329101562 + ], + [ + "▁Belden", + -15.390763282775879 + ], + [ + "▁télé", + -15.390767097473145 + ], + [ + "▁uttermost", + -15.390771865844727 + ], + [ + "▁Katja", + -15.390774726867676 + ], + [ + "decode", + -15.390819549560547 + ], + [ + "▁sleuthing", + -15.39084243774414 + ], + [ + "▁latina", + -15.39091682434082 + ], + [ + "▁Prototyping", + -15.390941619873047 + ], + [ + "▁TERRA", + -15.390941619873047 + ], + [ + "Gulf", + -15.391011238098145 + ], + [ + "▁klepto", + -15.391033172607422 + ], + [ + "▁bendable", + -15.391047477722168 + ], + [ + "▁biogenesis", + -15.391070365905762 + ], + [ + "dispute", + -15.391081809997559 + ], + [ + "▁reprogrammed", + -15.391092300415039 + ], + [ + "▁aftershave", + -15.391105651855469 + ], + [ + "▁reestablished", + -15.391112327575684 + ], + [ + "▁kik", + -15.39113712310791 + ], + [ + "▁Ooma", + -15.39114761352539 + ], + [ + "▁RPL", + -15.391218185424805 + ], + [ + "▁NIK", + -15.391227722167969 + ], + [ + "Jude", + -15.391234397888184 + ], + [ + "▁BARN", + -15.39124870300293 + ], + [ + "▁subjugate", + -15.391281127929688 + ], + [ + "▁Massif", + -15.39133071899414 + ], + [ + "▁XAML", + -15.39134407043457 + ], + [ + "anelli", + -15.39136791229248 + ], + [ + "▁Scaffold", + -15.391369819641113 + ], + [ + "▁Muldoon", + -15.391372680664062 + ], + [ + "▁Dunkel", + -15.391393661499023 + ], + [ + "▁equidistant", + -15.39139461517334 + ], + [ + "▁Respite", + -15.391404151916504 + ], + [ + "▁Yammer", + -15.391417503356934 + ], + [ + "▁geez", + -15.391436576843262 + ], + [ + "▁marie", + -15.39144229888916 + ], + [ + "calculus", + -15.391461372375488 + ], + [ + "▁copped", + -15.391487121582031 + ], + [ + "▁Göttingen", + -15.39149284362793 + ], + [ + "후", + -15.391504287719727 + ], + [ + "voj", + -15.391526222229004 + ], + [ + "մ", + -15.391570091247559 + ], + [ + "▁terrifies", + -15.391570091247559 + ], + [ + "ément", + -15.391575813293457 + ], + [ + "▁Dingo", + -15.391575813293457 + ], + [ + "▁collocation", + -15.391576766967773 + ], + [ + "▁Curzon", + -15.391581535339355 + ], + [ + "▁CORT", + -15.391630172729492 + ], + [ + "DWI", + -15.391633987426758 + ], + [ + "▁fracas", + -15.3916654586792 + ], + [ + "strung", + -15.39169692993164 + ], + [ + "▁adsorbent", + -15.39172649383545 + ], + [ + "▁Sanhedrin", + -15.391728401184082 + ], + [ + "▁alkaloid", + -15.391732215881348 + ], + [ + "▁Pascoe", + -15.39173412322998 + ], + [ + "▁dairies", + -15.391786575317383 + ], + [ + "▁ovate", + -15.391825675964355 + ], + [ + "▁Cheez", + -15.391862869262695 + ], + [ + "▁Computed", + -15.391901969909668 + ], + [ + "▁quotidian", + -15.391932487487793 + ], + [ + "▁encanta", + -15.391945838928223 + ], + [ + "▁rumen", + -15.391989707946777 + ], + [ + "Pause", + -15.39199161529541 + ], + [ + "proceed", + -15.39199447631836 + ], + [ + "▁fram", + -15.392004013061523 + ], + [ + "▁virtuosic", + -15.392004013061523 + ], + [ + "Dangerous", + -15.392017364501953 + ], + [ + "▁Sonne", + -15.392051696777344 + ], + [ + "▁tugboat", + -15.392069816589355 + ], + [ + "▁NSG", + -15.392085075378418 + ], + [ + "▁guffaw", + -15.39212417602539 + ], + [ + "▁Mockup", + -15.392154693603516 + ], + [ + "▁ANSYS", + -15.392169952392578 + ], + [ + "Billion", + -15.392176628112793 + ], + [ + "▁Novosti", + -15.392205238342285 + ], + [ + "▁Doggy", + -15.392208099365234 + ], + [ + "▁minicamp", + -15.392251014709473 + ], + [ + "▁Trobe", + -15.392281532287598 + ], + [ + "▁ITSM", + -15.392295837402344 + ], + [ + "▁Henshaw", + -15.392326354980469 + ], + [ + "stranger", + -15.392349243164062 + ], + [ + "▁Anomaly", + -15.392400741577148 + ], + [ + "▁bipedal", + -15.392414093017578 + ], + [ + "▁Ruckus", + -15.39243221282959 + ], + [ + "▁chauffeured", + -15.392433166503906 + ], + [ + "▁Kettlebell", + -15.392480850219727 + ], + [ + "MPO", + -15.392486572265625 + ], + [ + "▁Coimbra", + -15.39251708984375 + ], + [ + "▁Pervez", + -15.392526626586914 + ], + [ + "▁grandad", + -15.392526626586914 + ], + [ + "ым", + -15.392560005187988 + ], + [ + "▁gendarme", + -15.392577171325684 + ], + [ + "▁lascivious", + -15.392577171325684 + ], + [ + "▁Pono", + -15.392586708068848 + ], + [ + "▁Sangria", + -15.392622947692871 + ], + [ + "▁subclinical", + -15.39262866973877 + ], + [ + "▁€200", + -15.3926420211792 + ], + [ + "Roof", + -15.392655372619629 + ], + [ + "▁configura", + -15.392678260803223 + ], + [ + "▁fisheye", + -15.392683029174805 + ], + [ + "oč", + -15.392694473266602 + ], + [ + "HART", + -15.39271354675293 + ], + [ + "▁Mythos", + -15.392729759216309 + ], + [ + "▁Dialect", + -15.392730712890625 + ], + [ + "▁Ruy", + -15.392755508422852 + ], + [ + "▁garda", + -15.392781257629395 + ], + [ + "luminal", + -15.392783164978027 + ], + [ + "▁radium", + -15.392786979675293 + ], + [ + "▁EVGA", + -15.392876625061035 + ], + [ + "▁MMF", + -15.392925262451172 + ], + [ + "▁watchtower", + -15.392942428588867 + ], + [ + "▁incontrovertible", + -15.392951965332031 + ], + [ + "▁PetSmart", + -15.392972946166992 + ], + [ + "playlist", + -15.39299201965332 + ], + [ + "▁Sterile", + -15.3930025100708 + ], + [ + "▁Armadillo", + -15.393054008483887 + ], + [ + "▁reposting", + -15.393054962158203 + ], + [ + "▁Quelle", + -15.393083572387695 + ], + [ + "depleted", + -15.393086433410645 + ], + [ + "captured", + -15.393102645874023 + ], + [ + "▁Takara", + -15.39311408996582 + ], + [ + "▁PWS", + -15.393122673034668 + ], + [ + "▁Bexhill", + -15.393129348754883 + ], + [ + "▁Leadpages", + -15.393142700195312 + ], + [ + "▁Tulli", + -15.39315128326416 + ], + [ + "OPC", + -15.393167495727539 + ], + [ + "eeeeeeeee", + -15.393180847167969 + ], + [ + "▁HELEN", + -15.393200874328613 + ], + [ + "▁RuneScape", + -15.393210411071777 + ], + [ + "▁Kuldeep", + -15.393219947814941 + ], + [ + "▁gigging", + -15.39324951171875 + ], + [ + "▁Etching", + -15.393251419067383 + ], + [ + "ETTA", + -15.393295288085938 + ], + [ + "obey", + -15.393319129943848 + ], + [ + "▁Renard", + -15.393363952636719 + ], + [ + "calculation", + -15.393376350402832 + ], + [ + "▁CREE", + -15.393415451049805 + ], + [ + "▁Llandudno", + -15.393425941467285 + ], + [ + "▁AXIS", + -15.393441200256348 + ], + [ + "▁Titanfall", + -15.39344596862793 + ], + [ + "▁PATTERN", + -15.393487930297852 + ], + [ + "لك", + -15.393514633178711 + ], + [ + "▁Dejan", + -15.393549919128418 + ], + [ + "▁Vocation", + -15.39358139038086 + ], + [ + "Xinhua", + -15.393598556518555 + ], + [ + "▁Hemorrhoid", + -15.393604278564453 + ], + [ + "▁Aldean", + -15.39361572265625 + ], + [ + "Bulgaria", + -15.393636703491211 + ], + [ + "▁Mansur", + -15.393636703491211 + ], + [ + "cleaned", + -15.393688201904297 + ], + [ + "▁veröffentlicht", + -15.393702507019043 + ], + [ + "▁Boiled", + -15.393707275390625 + ], + [ + "▁Aerodynamic", + -15.393753051757812 + ], + [ + "▁Kopitar", + -15.393765449523926 + ], + [ + "▁Oxidative", + -15.393821716308594 + ], + [ + "▁Mashed", + -15.393830299377441 + ], + [ + "Stitch", + -15.39383602142334 + ], + [ + "▁supercritical", + -15.39383602142334 + ], + [ + "Nexus", + -15.393916130065918 + ], + [ + "▁Nikkor", + -15.393925666809082 + ], + [ + "connector", + -15.393961906433105 + ], + [ + "▁Almo", + -15.394011497497559 + ], + [ + "mě", + -15.394018173217773 + ], + [ + "▁portuguese", + -15.39401912689209 + ], + [ + "▁Strobe", + -15.394022941589355 + ], + [ + "▁Statista", + -15.394042015075684 + ], + [ + "コン", + -15.394110679626465 + ], + [ + "Meyer", + -15.394133567810059 + ], + [ + "Jabbar", + -15.394164085388184 + ], + [ + "▁squirmed", + -15.39417552947998 + ], + [ + "celia", + -15.39417839050293 + ], + [ + "▁Hallett", + -15.394227027893066 + ], + [ + "ÐoÐ", + -15.394230842590332 + ], + [ + "▁Ekaterina", + -15.39423656463623 + ], + [ + "층", + -15.39423656463623 + ], + [ + "▁Rippon", + -15.394245147705078 + ], + [ + "▁Fungus", + -15.394257545471191 + ], + [ + "woke", + -15.394281387329102 + ], + [ + "catastrophic", + -15.394329071044922 + ], + [ + "▁wavefront", + -15.394363403320312 + ], + [ + "Static", + -15.39437484741211 + ], + [ + "zü", + -15.394394874572754 + ], + [ + "Lavalin", + -15.39439582824707 + ], + [ + "▁gilding", + -15.394431114196777 + ], + [ + "▁tousled", + -15.39448070526123 + ], + [ + "▁Hurwitz", + -15.394498825073242 + ], + [ + "▁Thien", + -15.394519805908203 + ], + [ + "▁Strome", + -15.394524574279785 + ], + [ + "▁wuss", + -15.394525527954102 + ], + [ + "▁Morbi", + -15.394532203674316 + ], + [ + "▁Specialised", + -15.394543647766113 + ], + [ + "▁curvaceous", + -15.394553184509277 + ], + [ + "▁transmittance", + -15.394564628601074 + ], + [ + "▁adsorb", + -15.394596099853516 + ], + [ + "▁shorn", + -15.394600868225098 + ], + [ + "▁talaga", + -15.394610404968262 + ], + [ + "▁loony", + -15.394636154174805 + ], + [ + "diphenyl", + -15.394720077514648 + ], + [ + "▁Megalo", + -15.394733428955078 + ], + [ + "ELLING", + -15.39473819732666 + ], + [ + "▁nigra", + -15.394813537597656 + ], + [ + "▁Marika", + -15.3948392868042 + ], + [ + "ecosystem", + -15.394867897033691 + ], + [ + "Camel", + -15.394877433776855 + ], + [ + "guda", + -15.39490795135498 + ], + [ + "ель", + -15.394918441772461 + ], + [ + "▁Grrr", + -15.394949913024902 + ], + [ + "VHS", + -15.394950866699219 + ], + [ + "▁powerboat", + -15.394989013671875 + ], + [ + "▁Clickbank", + -15.395009994506836 + ], + [ + "▁Dispatched", + -15.395049095153809 + ], + [ + "investigate", + -15.395074844360352 + ], + [ + "▁racquetball", + -15.395096778869629 + ], + [ + "▁Vladislav", + -15.395129203796387 + ], + [ + "▁Bloglovin", + -15.395132064819336 + ], + [ + "▁tung", + -15.395162582397461 + ], + [ + "▁strontium", + -15.395186424255371 + ], + [ + "▁Panna", + -15.3951997756958 + ], + [ + "▁Atalanta", + -15.39522647857666 + ], + [ + "▁broomstick", + -15.395242691040039 + ], + [ + "▁embittered", + -15.395285606384277 + ], + [ + "▁Offaly", + -15.395312309265137 + ], + [ + "▁celexa", + -15.395328521728516 + ], + [ + "▁Marsala", + -15.395346641540527 + ], + [ + "▁Conclave", + -15.395364761352539 + ], + [ + "▁Tamba", + -15.395401954650879 + ], + [ + "▁Koeman", + -15.395406723022461 + ], + [ + "▁valour", + -15.395442008972168 + ], + [ + "▁Sohail", + -15.395444869995117 + ], + [ + "▁easyJet", + -15.395475387573242 + ], + [ + "1843", + -15.39549446105957 + ], + [ + "▁Esteem", + -15.395528793334961 + ], + [ + "▁coniferous", + -15.395528793334961 + ], + [ + "석", + -15.395562171936035 + ], + [ + "▁corgi", + -15.39559555053711 + ], + [ + "▁Legge", + -15.39560317993164 + ], + [ + "▁Hodder", + -15.395609855651855 + ], + [ + "Fallon", + -15.395620346069336 + ], + [ + "▁Gianforte", + -15.395663261413574 + ], + [ + "▁hanya", + -15.395709037780762 + ], + [ + "▁Beaujolais", + -15.39574146270752 + ], + [ + "▁était", + -15.395800590515137 + ], + [ + "▁Remedial", + -15.395840644836426 + ], + [ + "▁Gennady", + -15.395859718322754 + ], + [ + "▁Extinguish", + -15.395879745483398 + ], + [ + "▁Thetford", + -15.395879745483398 + ], + [ + "Mash", + -15.39588451385498 + ], + [ + "▁drillers", + -15.395953178405762 + ], + [ + "▁Charly", + -15.395955085754395 + ], + [ + "Trinity", + -15.39597225189209 + ], + [ + "Pole", + -15.396013259887695 + ], + [ + "▁zoologist", + -15.396035194396973 + ], + [ + "diagnose", + -15.396063804626465 + ], + [ + "▁Hydroxide", + -15.396080017089844 + ], + [ + "▁Archaic", + -15.396098136901855 + ], + [ + "▁Traf", + -15.396103858947754 + ], + [ + "▁Gumbo", + -15.396111488342285 + ], + [ + "दा", + -15.396164894104004 + ], + [ + "▁Dershowitz", + -15.396177291870117 + ], + [ + "▁Việt", + -15.396276473999023 + ], + [ + "▁Superstition", + -15.396295547485352 + ], + [ + "cricket", + -15.396313667297363 + ], + [ + "▁MILLS", + -15.396318435668945 + ], + [ + "▁aerodrome", + -15.39646053314209 + ], + [ + "▁TTT", + -15.396496772766113 + ], + [ + "▁HYPER", + -15.396502494812012 + ], + [ + "ethanolamine", + -15.396504402160645 + ], + [ + "▁clotted", + -15.396522521972656 + ], + [ + "▁Ekman", + -15.39661979675293 + ], + [ + "▁emacs", + -15.396635055541992 + ], + [ + "▁martha", + -15.39665412902832 + ], + [ + "▁RARA", + -15.396687507629395 + ], + [ + "▁ETSU", + -15.396718978881836 + ], + [ + "absorbent", + -15.396724700927734 + ], + [ + "▁Devour", + -15.39672565460205 + ], + [ + "▁micrograph", + -15.396732330322266 + ], + [ + "▁Coleraine", + -15.39676570892334 + ], + [ + "▁titling", + -15.396777153015137 + ], + [ + "▁TOSHIBA", + -15.396791458129883 + ], + [ + "HCV", + -15.396801948547363 + ], + [ + "▁spearmint", + -15.396842956542969 + ], + [ + "▁Golub", + -15.396867752075195 + ], + [ + "▁BDA", + -15.396876335144043 + ], + [ + "▁unremitting", + -15.396890640258789 + ], + [ + "▁estudio", + -15.396900177001953 + ], + [ + "▁DUB", + -15.396913528442383 + ], + [ + "smartphone", + -15.396920204162598 + ], + [ + "eccion", + -15.396957397460938 + ], + [ + "▁chromatographic", + -15.396976470947266 + ], + [ + "▁ridiculing", + -15.396989822387695 + ], + [ + "▁Hyperlink", + -15.396998405456543 + ], + [ + "weiss", + -15.397089004516602 + ], + [ + "▁எ", + -15.397149085998535 + ], + [ + "▁Cutoff", + -15.397157669067383 + ], + [ + "▁Hondo", + -15.397177696228027 + ], + [ + "▁immensity", + -15.397208213806152 + ], + [ + "▁sprucing", + -15.397248268127441 + ], + [ + "▁Gopi", + -15.39726448059082 + ], + [ + "▁Joko", + -15.397265434265137 + ], + [ + "▁Blindness", + -15.397305488586426 + ], + [ + "▁callsign", + -15.397337913513184 + ], + [ + "congress", + -15.397346496582031 + ], + [ + "▁Anadarko", + -15.397347450256348 + ], + [ + "▁Destroying", + -15.397356033325195 + ], + [ + "ję", + -15.397357940673828 + ], + [ + "▁lakeshore", + -15.397377967834473 + ], + [ + "▁Immortality", + -15.397416114807129 + ], + [ + "▁caboose", + -15.397453308105469 + ], + [ + "▁Griffey", + -15.397520065307617 + ], + [ + "▁CPB", + -15.397578239440918 + ], + [ + "Dowd", + -15.397614479064941 + ], + [ + "▁Bakewell", + -15.397616386413574 + ], + [ + "ု", + -15.397624015808105 + ], + [ + "Convention", + -15.397682189941406 + ], + [ + "▁GUILTY", + -15.397710800170898 + ], + [ + "▁Leadville", + -15.397712707519531 + ], + [ + "▁ECHR", + -15.397747039794922 + ], + [ + "▁maz", + -15.397747993469238 + ], + [ + "▁Humvee", + -15.397749900817871 + ], + [ + "▁mopped", + -15.397760391235352 + ], + [ + "indication", + -15.397768020629883 + ], + [ + "▁Penobscot", + -15.39780330657959 + ], + [ + "harsh", + -15.39782428741455 + ], + [ + "▁fantasized", + -15.39788818359375 + ], + [ + "▁Trask", + -15.397893905639648 + ], + [ + "▁principalities", + -15.397927284240723 + ], + [ + "▁cassis", + -15.397931098937988 + ], + [ + "▁Kiley", + -15.397989273071289 + ], + [ + "▁Repentance", + -15.397993087768555 + ], + [ + "▁calendula", + -15.398021697998047 + ], + [ + "▁Philpott", + -15.398031234741211 + ], + [ + "▁Quanta", + -15.398032188415527 + ], + [ + "▁buzzard", + -15.398058891296387 + ], + [ + "Thames", + -15.398066520690918 + ], + [ + "▁Aleman", + -15.398070335388184 + ], + [ + "▁FRB", + -15.398118019104004 + ], + [ + "▁PETRO", + -15.398122787475586 + ], + [ + "café", + -15.398131370544434 + ], + [ + "▁Knap", + -15.398144721984863 + ], + [ + "▁gunslinger", + -15.398147583007812 + ], + [ + "▁Histoire", + -15.398175239562988 + ], + [ + "▁drugging", + -15.398209571838379 + ], + [ + "▁Provisioning", + -15.398213386535645 + ], + [ + "▁intravascular", + -15.398269653320312 + ], + [ + "έν", + -15.39831256866455 + ], + [ + "YARD", + -15.398320198059082 + ], + [ + "▁dissuaded", + -15.39834213256836 + ], + [ + "Dining", + -15.398361206054688 + ], + [ + "▁Cengage", + -15.39838695526123 + ], + [ + "▁Rood", + -15.398390769958496 + ], + [ + "▁Constipation", + -15.398399353027344 + ], + [ + "ול", + -15.39843463897705 + ], + [ + "▁Bastrop", + -15.39849853515625 + ], + [ + "▁Exhausted", + -15.398502349853516 + ], + [ + "▁Komi", + -15.398558616638184 + ], + [ + "▁interrelation", + -15.398558616638184 + ], + [ + "▁uncorrected", + -15.39859390258789 + ], + [ + "Bernard", + -15.398598670959473 + ], + [ + "▁FORMAT", + -15.398615837097168 + ], + [ + "▁ruthlessness", + -15.398616790771484 + ], + [ + "▁정보", + -15.398619651794434 + ], + [ + "▁juju", + -15.39866828918457 + ], + [ + "▁Budge", + -15.398676872253418 + ], + [ + "▁CRAN", + -15.398688316345215 + ], + [ + "ían", + -15.398719787597656 + ], + [ + "granting", + -15.398720741271973 + ], + [ + "numerous", + -15.39872932434082 + ], + [ + "alice", + -15.398734092712402 + ], + [ + "пт", + -15.398748397827148 + ], + [ + "▁reassessed", + -15.398782730102539 + ], + [ + "eisinger", + -15.398794174194336 + ], + [ + "وی", + -15.398834228515625 + ], + [ + "▁STAINLESS", + -15.398836135864258 + ], + [ + "▁inopportune", + -15.398856163024902 + ], + [ + "▁Obstetricians", + -15.3988618850708 + ], + [ + "▁또한", + -15.39891529083252 + ], + [ + "▁PLANNING", + -15.39893913269043 + ], + [ + "▁Jamia", + -15.398940086364746 + ], + [ + "▁COLA", + -15.398944854736328 + ], + [ + "▁Jordon", + -15.398946762084961 + ], + [ + "rija", + -15.398958206176758 + ], + [ + "▁SGP", + -15.398962020874023 + ], + [ + "▁Calvo", + -15.398965835571289 + ], + [ + "applying", + -15.399003982543945 + ], + [ + "▁formalised", + -15.399006843566895 + ], + [ + "▁pediment", + -15.399042129516602 + ], + [ + "cosmic", + -15.399085998535156 + ], + [ + "▁Kevan", + -15.399093627929688 + ], + [ + "結", + -15.39910888671875 + ], + [ + "▁DDL", + -15.3991117477417 + ], + [ + "▁WIFE", + -15.3991117477417 + ], + [ + "▁Gilgit", + -15.399133682250977 + ], + [ + "Weird", + -15.39913558959961 + ], + [ + "▁CIRCLE", + -15.399139404296875 + ], + [ + "▁restocked", + -15.399147033691406 + ], + [ + "▁psilocybin", + -15.399153709411621 + ], + [ + "▁scifi", + -15.39915943145752 + ], + [ + "▁Tabar", + -15.399168014526367 + ], + [ + "▁Overwhelming", + -15.399188041687012 + ], + [ + "rhapsod", + -15.399203300476074 + ], + [ + "Duc", + -15.399240493774414 + ], + [ + "▁Pitcairn", + -15.399256706237793 + ], + [ + "▁homesteading", + -15.399313926696777 + ], + [ + "ALCO", + -15.399316787719727 + ], + [ + "ман", + -15.399325370788574 + ], + [ + "▁shakedown", + -15.399353981018066 + ], + [ + "▁Fenner", + -15.39937973022461 + ], + [ + "▁Nakuru", + -15.39940357208252 + ], + [ + "▁Hayman", + -15.399445533752441 + ], + [ + "▁Snowshoe", + -15.399478912353516 + ], + [ + "▁Hobie", + -15.399496078491211 + ], + [ + "▁energise", + -15.39950942993164 + ], + [ + "▁Grandchildren", + -15.399518966674805 + ], + [ + "▁Lifeboat", + -15.399534225463867 + ], + [ + "xlsx", + -15.399564743041992 + ], + [ + "▁Peerless", + -15.39957332611084 + ], + [ + "▁ASHRAE", + -15.399611473083496 + ], + [ + "▁Kivu", + -15.399633407592773 + ], + [ + "▁brahma", + -15.399659156799316 + ], + [ + "▁STRENGTH", + -15.399691581726074 + ], + [ + "enhancement", + -15.39969253540039 + ], + [ + "▁Lagrangian", + -15.399730682373047 + ], + [ + "▁Vedder", + -15.399742126464844 + ], + [ + "▁Murrell", + -15.399754524230957 + ], + [ + "▁TAIL", + -15.39977741241455 + ], + [ + "Otto", + -15.399807929992676 + ], + [ + "▁brazing", + -15.399808883666992 + ], + [ + "▁flavonoid", + -15.399879455566406 + ], + [ + "▁TFSA", + -15.399911880493164 + ], + [ + "ovka", + -15.399996757507324 + ], + [ + "fingered", + -15.400059700012207 + ], + [ + "▁recouped", + -15.4000825881958 + ], + [ + "angler", + -15.400089263916016 + ], + [ + "▁WINDOW", + -15.40011978149414 + ], + [ + "▁refurb", + -15.400161743164062 + ], + [ + "ള", + -15.400167465209961 + ], + [ + "transitive", + -15.40017318725586 + ], + [ + "▁Bulge", + -15.40020751953125 + ], + [ + "1776", + -15.400215148925781 + ], + [ + "dodge", + -15.400233268737793 + ], + [ + "▁Facilitating", + -15.400247573852539 + ], + [ + "里", + -15.400280952453613 + ], + [ + "▁Splatoon", + -15.400327682495117 + ], + [ + "elser", + -15.400336265563965 + ], + [ + "▁wooed", + -15.400416374206543 + ], + [ + "▁courtesan", + -15.400453567504883 + ], + [ + "▁Machiavellian", + -15.400455474853516 + ], + [ + "Richmond", + -15.400472640991211 + ], + [ + "▁Basildon", + -15.400473594665527 + ], + [ + "justified", + -15.400492668151855 + ], + [ + "▁Cavanagh", + -15.400492668151855 + ], + [ + "これ", + -15.400494575500488 + ], + [ + "▁McAdoo", + -15.400514602661133 + ], + [ + "dawg", + -15.400529861450195 + ], + [ + "▁negativ", + -15.400556564331055 + ], + [ + "▁DIVISION", + -15.40061092376709 + ], + [ + "▁HSPA", + -15.400615692138672 + ], + [ + "▁Striving", + -15.400623321533203 + ], + [ + "▁quesadilla", + -15.400629997253418 + ], + [ + "▁Entryway", + -15.400680541992188 + ], + [ + "▁Kiba", + -15.400691986083984 + ], + [ + "▁SWAP", + -15.400739669799805 + ], + [ + "▁Zale", + -15.400740623474121 + ], + [ + "▁SMOKE", + -15.400754928588867 + ], + [ + "▁Nicobar", + -15.40075969696045 + ], + [ + "▁Aliexpress", + -15.400795936584473 + ], + [ + "Preview", + -15.400809288024902 + ], + [ + "Reynolds", + -15.40084171295166 + ], + [ + "goddess", + -15.400869369506836 + ], + [ + "▁Plating", + -15.400893211364746 + ], + [ + "▁providential", + -15.400899887084961 + ], + [ + "▁Devendra", + -15.400922775268555 + ], + [ + "▁Alejandra", + -15.400984764099121 + ], + [ + "▁STRAIGHT", + -15.400985717773438 + ], + [ + "▁Ellery", + -15.400997161865234 + ], + [ + "اج", + -15.40102481842041 + ], + [ + "ೆ", + -15.401083946228027 + ], + [ + "▁AMPK", + -15.401097297668457 + ], + [ + "▁militiamen", + -15.401103973388672 + ], + [ + "▁Helvetica", + -15.401124000549316 + ], + [ + "▁PLAYERS", + -15.401124000549316 + ], + [ + "爱", + -15.40112590789795 + ], + [ + "▁jetpack", + -15.401135444641113 + ], + [ + "▁Peltier", + -15.401159286499023 + ], + [ + "Briggs", + -15.40119743347168 + ], + [ + "▁Bolan", + -15.40120792388916 + ], + [ + "XEL", + -15.401224136352539 + ], + [ + "▁हैं", + -15.40124225616455 + ], + [ + "▁hairbrush", + -15.40124797821045 + ], + [ + "▁Tiwa", + -15.401289939880371 + ], + [ + "▁Everson", + -15.401293754577637 + ], + [ + "▁Maitreya", + -15.4013032913208 + ], + [ + "▁Girardeau", + -15.40136432647705 + ], + [ + "▁simula", + -15.401445388793945 + ], + [ + "▁Saladin", + -15.401496887207031 + ], + [ + "▁Gunderson", + -15.40150260925293 + ], + [ + "triangle", + -15.401507377624512 + ], + [ + "▁Governorate", + -15.401517868041992 + ], + [ + "▁ardently", + -15.401519775390625 + ], + [ + "▁Sunroom", + -15.401531219482422 + ], + [ + "▁Cylon", + -15.401533126831055 + ], + [ + "▁alginate", + -15.401582717895508 + ], + [ + "▁creamier", + -15.40161418914795 + ], + [ + "▁digoxin", + -15.401618003845215 + ], + [ + "▁Adherence", + -15.401629447937012 + ], + [ + "▁Alkali", + -15.401633262634277 + ], + [ + "▁antimatter", + -15.401641845703125 + ], + [ + "▁Magnitsky", + -15.401663780212402 + ], + [ + "▁slyly", + -15.401687622070312 + ], + [ + "Karabakh", + -15.401698112487793 + ], + [ + "▁Cardamom", + -15.401702880859375 + ], + [ + "▁revitalised", + -15.401704788208008 + ], + [ + "▁unwrapping", + -15.401714324951172 + ], + [ + "▁greece", + -15.401728630065918 + ], + [ + "neighborhood", + -15.40174388885498 + ], + [ + "cpu", + -15.401747703552246 + ], + [ + "ട", + -15.401765823364258 + ], + [ + "▁Backpage", + -15.401787757873535 + ], + [ + "▁hybridized", + -15.401788711547852 + ], + [ + "zali", + -15.401830673217773 + ], + [ + "▁Decentralized", + -15.401841163635254 + ], + [ + "ogno", + -15.40184211730957 + ], + [ + "▁Venkatesh", + -15.401851654052734 + ], + [ + "STREAM", + -15.401872634887695 + ], + [ + "BIZ", + -15.401885986328125 + ], + [ + "alaba", + -15.401922225952148 + ], + [ + "Verb", + -15.401924133300781 + ], + [ + "ழ", + -15.401960372924805 + ], + [ + "▁Revisiting", + -15.401992797851562 + ], + [ + "▁Porphyr", + -15.40202808380127 + ], + [ + "▁kapa", + -15.402040481567383 + ], + [ + "ång", + -15.402076721191406 + ], + [ + "▁Nostradamus", + -15.402080535888672 + ], + [ + "▁Daihatsu", + -15.402100563049316 + ], + [ + "▁compro", + -15.402111053466797 + ], + [ + "▁sensationalism", + -15.402153968811035 + ], + [ + "▁Pantera", + -15.4021635055542 + ], + [ + "▁Necromancer", + -15.402240753173828 + ], + [ + "▁Amboy", + -15.402266502380371 + ], + [ + "▁Barbosa", + -15.402266502380371 + ], + [ + "▁TAPE", + -15.402274131774902 + ], + [ + "▁smokescreen", + -15.402275085449219 + ], + [ + "▁EVF", + -15.40230941772461 + ], + [ + "itzel", + -15.402315139770508 + ], + [ + "▁imprudent", + -15.402316093444824 + ], + [ + "▁Follies", + -15.40233039855957 + ], + [ + "▁Schlo", + -15.402350425720215 + ], + [ + "disability", + -15.402522087097168 + ], + [ + "Praise", + -15.40253734588623 + ], + [ + "▁Okavango", + -15.402539253234863 + ], + [ + "▁OPCW", + -15.402544021606445 + ], + [ + "▁Daren", + -15.402544975280762 + ], + [ + "▁unequaled", + -15.402596473693848 + ], + [ + "dentist", + -15.402603149414062 + ], + [ + "rarely", + -15.402610778808594 + ], + [ + "▁Knudsen", + -15.402618408203125 + ], + [ + "패", + -15.40263843536377 + ], + [ + "impose", + -15.40269660949707 + ], + [ + "▁Ascending", + -15.402727127075195 + ], + [ + "Moses", + -15.402734756469727 + ], + [ + "▁Probable", + -15.402738571166992 + ], + [ + "▁Korp", + -15.402746200561523 + ], + [ + "▁Confess", + -15.40284538269043 + ], + [ + "▁Skyscraper", + -15.402877807617188 + ], + [ + "▁Athlone", + -15.40287971496582 + ], + [ + "▁Discretionary", + -15.40292739868164 + ], + [ + "stanford", + -15.402928352355957 + ], + [ + "▁Haigh", + -15.402935981750488 + ], + [ + "Platinum", + -15.402937889099121 + ], + [ + "▁TUB", + -15.402956008911133 + ], + [ + "▁accursed", + -15.402957916259766 + ], + [ + "Swap", + -15.403006553649902 + ], + [ + "▁conjointly", + -15.40303897857666 + ], + [ + "▁Scattering", + -15.403153419494629 + ], + [ + "▁symmetries", + -15.403157234191895 + ], + [ + "▁attenuator", + -15.4031982421875 + ], + [ + "drilling", + -15.403263092041016 + ], + [ + "▁Bharati", + -15.40328598022461 + ], + [ + "Required", + -15.403294563293457 + ], + [ + "▁Changsha", + -15.403310775756836 + ], + [ + "▁espera", + -15.403396606445312 + ], + [ + "Superior", + -15.403409957885742 + ], + [ + "▁dentition", + -15.403463363647461 + ], + [ + "▁WINNERS", + -15.403477668762207 + ], + [ + "▁incremented", + -15.403482437133789 + ], + [ + "Happiness", + -15.40351390838623 + ], + [ + "▁KZN", + -15.403542518615723 + ], + [ + "▁Cryst", + -15.403544425964355 + ], + [ + "▁Nauvoo", + -15.403558731079102 + ], + [ + "banger", + -15.403570175170898 + ], + [ + "▁subdivide", + -15.403587341308594 + ], + [ + "▁Batmobile", + -15.40358829498291 + ], + [ + "▁mishmash", + -15.40359878540039 + ], + [ + "Refresh", + -15.403608322143555 + ], + [ + "laboratory", + -15.403608322143555 + ], + [ + "▁davidson", + -15.403609275817871 + ], + [ + "▁Hermetic", + -15.403620719909668 + ], + [ + "▁secara", + -15.403623580932617 + ], + [ + "recyclable", + -15.403634071350098 + ], + [ + "Zhang", + -15.40368938446045 + ], + [ + "▁Stairway", + -15.403693199157715 + ], + [ + "Romantic", + -15.40371322631836 + ], + [ + "guarantee", + -15.403715133666992 + ], + [ + "Jeremiah", + -15.403773307800293 + ], + [ + "▁Juggernaut", + -15.403776168823242 + ], + [ + "▁Jaxon", + -15.403813362121582 + ], + [ + "Phantom", + -15.403814315795898 + ], + [ + "▁QANTAS", + -15.403876304626465 + ], + [ + "▁Kwok", + -15.403898239135742 + ], + [ + "▁Gurkha", + -15.403931617736816 + ], + [ + "Clarke", + -15.40393352508545 + ], + [ + "▁substantively", + -15.403944969177246 + ], + [ + "▁Nasrallah", + -15.40397834777832 + ], + [ + "STOCK", + -15.403983116149902 + ], + [ + "▁bipartisanship", + -15.403985023498535 + ], + [ + "whenever", + -15.404025077819824 + ], + [ + "▁medicate", + -15.404068946838379 + ], + [ + "▁Titleist", + -15.404108047485352 + ], + [ + "▁natur", + -15.404129028320312 + ], + [ + "▁Eliezer", + -15.404132843017578 + ], + [ + "▁Rote", + -15.404132843017578 + ], + [ + "▁twirled", + -15.40414047241211 + ], + [ + "▁VOB", + -15.40415096282959 + ], + [ + "inventing", + -15.404189109802246 + ], + [ + "▁desertification", + -15.40421199798584 + ], + [ + "▁seperti", + -15.40423583984375 + ], + [ + "Capric", + -15.404265403747559 + ], + [ + "▁Pilbara", + -15.404267311096191 + ], + [ + "ların", + -15.404326438903809 + ], + [ + "Glutamine", + -15.404337882995605 + ], + [ + "▁FSR", + -15.404457092285156 + ], + [ + "▁rial", + -15.404483795166016 + ], + [ + "ант", + -15.404496192932129 + ], + [ + "▁Autosport", + -15.404511451721191 + ], + [ + "▁webhook", + -15.404546737670898 + ], + [ + "▁phosphoric", + -15.404550552368164 + ], + [ + "转", + -15.404558181762695 + ], + [ + "ENNE", + -15.404571533203125 + ], + [ + "▁rarefied", + -15.404592514038086 + ], + [ + "▁intersectionality", + -15.404605865478516 + ], + [ + "▁Marburg", + -15.40462589263916 + ], + [ + "▁INSTALLATION", + -15.404693603515625 + ], + [ + "▁daar", + -15.404695510864258 + ], + [ + "▁Rahn", + -15.404719352722168 + ], + [ + "▁sunnier", + -15.404755592346191 + ], + [ + "▁Deripaska", + -15.404815673828125 + ], + [ + "▁ferromagnetic", + -15.404838562011719 + ], + [ + "▁custo", + -15.4048433303833 + ], + [ + "▁Caruana", + -15.404845237731934 + ], + [ + "▁Decoder", + -15.404845237731934 + ], + [ + "▁변", + -15.40489673614502 + ], + [ + "▁ZANU", + -15.404900550842285 + ], + [ + "▁الإ", + -15.404935836791992 + ], + [ + "fluoride", + -15.404956817626953 + ], + [ + "▁Anubis", + -15.405016899108887 + ], + [ + "▁BLK", + -15.405034065246582 + ], + [ + "▁TNR", + -15.405054092407227 + ], + [ + "▁LAWRENCE", + -15.405055046081543 + ], + [ + "▁Dawood", + -15.405065536499023 + ], + [ + "▁Paxil", + -15.405088424682617 + ], + [ + "▁rapamycin", + -15.405106544494629 + ], + [ + "▁Powertrain", + -15.405255317687988 + ], + [ + "▁crampons", + -15.405323028564453 + ], + [ + "▁HARRY", + -15.405353546142578 + ], + [ + "Lamp", + -15.405355453491211 + ], + [ + "▁poetically", + -15.405364990234375 + ], + [ + "▁Opie", + -15.405380249023438 + ], + [ + "intercept", + -15.405385971069336 + ], + [ + "▁Turbulence", + -15.405415534973145 + ], + [ + "▁FOA", + -15.405436515808105 + ], + [ + "▁Surrogate", + -15.405494689941406 + ], + [ + "▁ielts", + -15.405513763427734 + ], + [ + "▁LAHORE", + -15.405594825744629 + ], + [ + "▁Merkur", + -15.405668258666992 + ], + [ + "▁Screensaver", + -15.405722618103027 + ], + [ + "ocene", + -15.405773162841797 + ], + [ + "▁Ketch", + -15.405780792236328 + ], + [ + "▁DLF", + -15.405797004699707 + ], + [ + "▁protectorate", + -15.405829429626465 + ], + [ + "telegraph", + -15.405835151672363 + ], + [ + "▁Armament", + -15.405853271484375 + ], + [ + "▁sauvignon", + -15.405855178833008 + ], + [ + "Birthday", + -15.405875205993652 + ], + [ + "Mock", + -15.405900001525879 + ], + [ + "▁distrustful", + -15.40591049194336 + ], + [ + "▁Krasnodar", + -15.405921936035156 + ], + [ + "▁transcriptase", + -15.405938148498535 + ], + [ + "▁Zedd", + -15.405960083007812 + ], + [ + "▁gangsta", + -15.405963897705078 + ], + [ + "surveillance", + -15.405972480773926 + ], + [ + "Candidate", + -15.405973434448242 + ], + [ + "Tesla", + -15.405990600585938 + ], + [ + "▁psoriatic", + -15.406015396118164 + ], + [ + "▁Conseil", + -15.406021118164062 + ], + [ + "▁Memcache", + -15.406061172485352 + ], + [ + "THREE", + -15.406170845031738 + ], + [ + "▁Ayub", + -15.406179428100586 + ], + [ + "▁Guardianship", + -15.406224250793457 + ], + [ + "▁Altus", + -15.40622615814209 + ], + [ + "сте", + -15.406271934509277 + ], + [ + "▁Spacing", + -15.406327247619629 + ], + [ + "▁wales", + -15.406353950500488 + ], + [ + "▁Gerontology", + -15.406362533569336 + ], + [ + "▁Gurugram", + -15.406396865844727 + ], + [ + "▁Lyco", + -15.406407356262207 + ], + [ + "▁Scofield", + -15.40643310546875 + ], + [ + "▁aikido", + -15.406457901000977 + ], + [ + "ulose", + -15.406463623046875 + ], + [ + "▁Approximation", + -15.406479835510254 + ], + [ + "▁TSG", + -15.406496047973633 + ], + [ + "▁RAK", + -15.406512260437012 + ], + [ + "▁coving", + -15.406518936157227 + ], + [ + "slowly", + -15.406549453735352 + ], + [ + "▁prediabetes", + -15.40658187866211 + ], + [ + "▁Sagi", + -15.406582832336426 + ], + [ + "Galatians", + -15.406614303588867 + ], + [ + "▁Norsk", + -15.406620025634766 + ], + [ + "▁hostesses", + -15.406633377075195 + ], + [ + "▁Ambar", + -15.4066801071167 + ], + [ + "▁Ramsgate", + -15.406685829162598 + ], + [ + "▁Translucent", + -15.406685829162598 + ], + [ + "▁monohydrate", + -15.406698226928711 + ], + [ + "uña", + -15.406729698181152 + ], + [ + "▁dross", + -15.406730651855469 + ], + [ + "Memorial", + -15.40675163269043 + ], + [ + "▁reintegrate", + -15.406761169433594 + ], + [ + "▁SELECTION", + -15.40676498413086 + ], + [ + "educator", + -15.406767845153809 + ], + [ + "δι", + -15.406767845153809 + ], + [ + "UCLA", + -15.40677547454834 + ], + [ + "▁Boehringer", + -15.406776428222656 + ], + [ + "▁Scrapbooking", + -15.406806945800781 + ], + [ + "oteca", + -15.406808853149414 + ], + [ + "▁luminal", + -15.406829833984375 + ], + [ + "ktionen", + -15.40683650970459 + ], + [ + "▁CITIZEN", + -15.40683650970459 + ], + [ + "▁Homestay", + -15.40687370300293 + ], + [ + "▁mariachi", + -15.40688705444336 + ], + [ + "Tay", + -15.40689754486084 + ], + [ + "rainbow", + -15.406901359558105 + ], + [ + "▁Fascia", + -15.406909942626953 + ], + [ + "cycline", + -15.406911849975586 + ], + [ + "filename", + -15.406923294067383 + ], + [ + "▁citi", + -15.406935691833496 + ], + [ + "▁coterie", + -15.406957626342773 + ], + [ + "▁Agribusiness", + -15.406959533691406 + ], + [ + "▁Castelli", + -15.407038688659668 + ], + [ + "▁Gramercy", + -15.407097816467285 + ], + [ + "زی", + -15.4071044921875 + ], + [ + "▁Kurd", + -15.407185554504395 + ], + [ + "promotional", + -15.407215118408203 + ], + [ + "▁acetylation", + -15.40722942352295 + ], + [ + "▁Millicent", + -15.407230377197266 + ], + [ + "▁Nasional", + -15.40727424621582 + ], + [ + "▁gobierno", + -15.40727710723877 + ], + [ + "scheduling", + -15.407279968261719 + ], + [ + "▁nebulae", + -15.407280921936035 + ], + [ + "▁fetishes", + -15.407304763793945 + ], + [ + "piercing", + -15.407322883605957 + ], + [ + "▁Airbrush", + -15.407368659973145 + ], + [ + "▁Ethereal", + -15.407374382019043 + ], + [ + "▁hurries", + -15.407378196716309 + ], + [ + "▁McKean", + -15.407430648803711 + ], + [ + "▁Sebe", + -15.407459259033203 + ], + [ + "▁unrighteous", + -15.407546043395996 + ], + [ + "▁ONGC", + -15.407550811767578 + ], + [ + "▁Mariachi", + -15.407556533813477 + ], + [ + "vamp", + -15.407567977905273 + ], + [ + "Booth", + -15.407629013061523 + ], + [ + "▁Hairspray", + -15.407649993896484 + ], + [ + "▁OPERATIONS", + -15.407649993896484 + ], + [ + "▁burqa", + -15.40765380859375 + ], + [ + "broek", + -15.40767765045166 + ], + [ + "”", + -15.407702445983887 + ], + [ + "Unlimited", + -15.407703399658203 + ], + [ + "▁nunca", + -15.407711029052734 + ], + [ + "▁Miraculous", + -15.407715797424316 + ], + [ + "▁luthier", + -15.407758712768555 + ], + [ + "▁Broadcaster", + -15.407788276672363 + ], + [ + "ソ", + -15.407849311828613 + ], + [ + "Nepal", + -15.407857894897461 + ], + [ + "▁Plainview", + -15.407912254333496 + ], + [ + "▁indecency", + -15.407959938049316 + ], + [ + "▁Citysearch", + -15.408024787902832 + ], + [ + "▁pasado", + -15.408024787902832 + ], + [ + "▁Cullinan", + -15.408027648925781 + ], + [ + "prehend", + -15.408035278320312 + ], + [ + "▁salwar", + -15.408051490783691 + ], + [ + "▁Tycho", + -15.40805435180664 + ], + [ + "▁Η", + -15.408075332641602 + ], + [ + "▁GUESS", + -15.408113479614258 + ], + [ + "stressing", + -15.408141136169434 + ], + [ + "▁suffused", + -15.408148765563965 + ], + [ + "▁Snuff", + -15.408177375793457 + ], + [ + "▁austria", + -15.40817928314209 + ], + [ + "ADF", + -15.408234596252441 + ], + [ + "▁caramelised", + -15.408245086669922 + ], + [ + "▁Degradation", + -15.408249855041504 + ], + [ + "▁Tramway", + -15.408308982849121 + ], + [ + "▁Hankins", + -15.408346176147461 + ], + [ + "involving", + -15.408355712890625 + ], + [ + "Arctic", + -15.408384323120117 + ], + [ + "▁camelback", + -15.40839672088623 + ], + [ + "▁Breuer", + -15.40839958190918 + ], + [ + "▁sororities", + -15.408419609069824 + ], + [ + "nghi", + -15.408432960510254 + ], + [ + "▁Brodsky", + -15.408437728881836 + ], + [ + "▁Mousa", + -15.408446311950684 + ], + [ + "▁POTENTIAL", + -15.40846061706543 + ], + [ + "▁Grenadier", + -15.408479690551758 + ], + [ + "▁clerkship", + -15.408588409423828 + ], + [ + "Deploy", + -15.408620834350586 + ], + [ + "▁noisily", + -15.408625602722168 + ], + [ + "▁excusing", + -15.408687591552734 + ], + [ + "cursor", + -15.408773422241211 + ], + [ + "▁Wizkid", + -15.408780097961426 + ], + [ + "supplies", + -15.408833503723145 + ], + [ + "▁rationalise", + -15.408835411071777 + ], + [ + "▁lymphoblastic", + -15.408841133117676 + ], + [ + "▁impartially", + -15.408851623535156 + ], + [ + "▁Saddleback", + -15.408858299255371 + ], + [ + "▁actuate", + -15.408933639526367 + ], + [ + "▁Tucci", + -15.408935546875 + ], + [ + "▁Holli", + -15.408940315246582 + ], + [ + "▁Pascual", + -15.408941268920898 + ], + [ + "validate", + -15.40897274017334 + ], + [ + "▁cá", + -15.408978462219238 + ], + [ + "▁bawling", + -15.408981323242188 + ], + [ + "▁kinesthetic", + -15.409006118774414 + ], + [ + "▁culturing", + -15.409073829650879 + ], + [ + "▁pervade", + -15.409083366394043 + ], + [ + "Wendy", + -15.409092903137207 + ], + [ + "別", + -15.409158706665039 + ], + [ + "▁Beachbody", + -15.409202575683594 + ], + [ + "▁Orozco", + -15.409222602844238 + ], + [ + "へ", + -15.4092435836792 + ], + [ + "▁nó", + -15.409261703491211 + ], + [ + "Provence", + -15.409292221069336 + ], + [ + "QOL", + -15.409339904785156 + ], + [ + "▁Quine", + -15.409355163574219 + ], + [ + "▁데이터", + -15.40936279296875 + ], + [ + "▁Resettlement", + -15.409370422363281 + ], + [ + "▁conflated", + -15.409377098083496 + ], + [ + "▁harasser", + -15.40938949584961 + ], + [ + "▁Prodigal", + -15.409404754638672 + ], + [ + "▁causally", + -15.409404754638672 + ], + [ + "▁Taobao", + -15.409469604492188 + ], + [ + "▁Eyeliner", + -15.409472465515137 + ], + [ + "▁Shonda", + -15.409477233886719 + ], + [ + "baiting", + -15.409482955932617 + ], + [ + "▁googly", + -15.409489631652832 + ], + [ + "▁IRGC", + -15.409517288208008 + ], + [ + "corresponding", + -15.409523010253906 + ], + [ + "▁feudalism", + -15.40953254699707 + ], + [ + "▁Yuko", + -15.409558296203613 + ], + [ + "▁Qiang", + -15.40958023071289 + ], + [ + "▁Marsalis", + -15.409586906433105 + ], + [ + "Telegram", + -15.409602165222168 + ], + [ + "▁Futurama", + -15.409658432006836 + ], + [ + "hova", + -15.409711837768555 + ], + [ + "Charming", + -15.409719467163086 + ], + [ + "▁Revise", + -15.409880638122559 + ], + [ + "▁Spotless", + -15.40992259979248 + ], + [ + "▁bulldozed", + -15.409956932067871 + ], + [ + "▁گ", + -15.409984588623047 + ], + [ + "▁DOORS", + -15.410024642944336 + ], + [ + "▁comercial", + -15.410027503967285 + ], + [ + "gifted", + -15.41003131866455 + ], + [ + "▁prearranged", + -15.410069465637207 + ], + [ + "▁Saini", + -15.410130500793457 + ], + [ + "▁Texaco", + -15.41016674041748 + ], + [ + "gastro", + -15.41019344329834 + ], + [ + "▁8221", + -15.410196304321289 + ], + [ + "▁proceso", + -15.4102144241333 + ], + [ + "▁Ativan", + -15.41021728515625 + ], + [ + "▁afflicting", + -15.41022777557373 + ], + [ + "▁Payback", + -15.41025447845459 + ], + [ + "ignano", + -15.410256385803223 + ], + [ + "▁Kluber", + -15.410261154174805 + ], + [ + "▁MILITARY", + -15.410266876220703 + ], + [ + "obesity", + -15.4102783203125 + ], + [ + "▁Treason", + -15.4102783203125 + ], + [ + "Desc", + -15.410285949707031 + ], + [ + "▁nisi", + -15.410303115844727 + ], + [ + "▁CRUSH", + -15.410313606262207 + ], + [ + "▁stenciled", + -15.410317420959473 + ], + [ + "▁Kō", + -15.41032600402832 + ], + [ + "▁maladaptive", + -15.410331726074219 + ], + [ + "▁Amplification", + -15.410347938537598 + ], + [ + "stacked", + -15.410350799560547 + ], + [ + "▁Walrus", + -15.410367012023926 + ], + [ + "▁unforeseeable", + -15.410387992858887 + ], + [ + "▁vielen", + -15.410390853881836 + ], + [ + "▁Lä", + -15.410407066345215 + ], + [ + "Secondary", + -15.410432815551758 + ], + [ + "▁GRUB", + -15.410439491271973 + ], + [ + "▁dehydrating", + -15.410490989685059 + ], + [ + "Castro", + -15.41050910949707 + ], + [ + "▁Manbij", + -15.410530090332031 + ], + [ + "▁Laois", + -15.410538673400879 + ], + [ + "▁Nihil", + -15.410550117492676 + ], + [ + "▁Ohana", + -15.41061019897461 + ], + [ + "▁cholinergic", + -15.410630226135254 + ], + [ + "▁Glucosamine", + -15.410689353942871 + ], + [ + "horizon", + -15.410696029663086 + ], + [ + "▁Wayfarer", + -15.410770416259766 + ], + [ + "▁rawhide", + -15.410774230957031 + ], + [ + "▁Illya", + -15.410784721374512 + ], + [ + "▁Yerba", + -15.410795211791992 + ], + [ + "▁McCray", + -15.410816192626953 + ], + [ + "karna", + -15.410826683044434 + ], + [ + "▁Alois", + -15.410832405090332 + ], + [ + "ckmann", + -15.410893440246582 + ], + [ + "▁Sacra", + -15.410935401916504 + ], + [ + "▁yuppie", + -15.410938262939453 + ], + [ + "▁liverpool", + -15.410942077636719 + ], + [ + "▁eventualities", + -15.410956382751465 + ], + [ + "▁naltrexone", + -15.410970687866211 + ], + [ + "Helping", + -15.410975456237793 + ], + [ + "affar", + -15.411051750183105 + ], + [ + "▁COMMITTEE", + -15.411051750183105 + ], + [ + "▁Issuing", + -15.411054611206055 + ], + [ + "▁BERN", + -15.411073684692383 + ], + [ + "THAN", + -15.41108512878418 + ], + [ + "▁Residue", + -15.411111831665039 + ], + [ + "▁exemple", + -15.411113739013672 + ], + [ + "trators", + -15.4111967086792 + ], + [ + "▁TEI", + -15.411225318908691 + ], + [ + "Boulder", + -15.41125774383545 + ], + [ + "▁página", + -15.411273002624512 + ], + [ + "▁centroid", + -15.411301612854004 + ], + [ + "▁salience", + -15.41131591796875 + ], + [ + "▁Spectrometry", + -15.411334991455078 + ], + [ + "poetic", + -15.41133975982666 + ], + [ + "▁craig", + -15.411341667175293 + ], + [ + "▁Multicolor", + -15.411349296569824 + ], + [ + "տ", + -15.411432266235352 + ], + [ + "▁Quoc", + -15.41146183013916 + ], + [ + "▁commandeered", + -15.411469459533691 + ], + [ + "vanti", + -15.41148567199707 + ], + [ + "▁Mischa", + -15.41148853302002 + ], + [ + "▁Volum", + -15.411505699157715 + ], + [ + "▁Lollapalooza", + -15.411514282226562 + ], + [ + "claiming", + -15.411576271057129 + ], + [ + "▁Tcl", + -15.411587715148926 + ], + [ + "▁Jessy", + -15.411615371704102 + ], + [ + "ниц", + -15.411633491516113 + ], + [ + "riole", + -15.411674499511719 + ], + [ + "columbia", + -15.411776542663574 + ], + [ + "▁scornful", + -15.411829948425293 + ], + [ + "guero", + -15.411848068237305 + ], + [ + "▁Sydenham", + -15.41187858581543 + ], + [ + "▁angsty", + -15.411906242370605 + ], + [ + "duplex", + -15.411913871765137 + ], + [ + "▁McLuhan", + -15.411937713623047 + ], + [ + "▁Hubspot", + -15.411946296691895 + ], + [ + "▁Latta", + -15.411956787109375 + ], + [ + "▁muon", + -15.41196060180664 + ], + [ + "▁ENGAGE", + -15.411972045898438 + ], + [ + "▁birthmark", + -15.411972999572754 + ], + [ + "▁cocci", + -15.41199016571045 + ], + [ + "▁LOOP", + -15.412001609802246 + ], + [ + "chaffey", + -15.412006378173828 + ], + [ + "▁autoantibodies", + -15.412017822265625 + ], + [ + "♪", + -15.412017822265625 + ], + [ + "▁FBR", + -15.41202449798584 + ], + [ + "▁Aligning", + -15.412063598632812 + ], + [ + "▁Brontë", + -15.412074089050293 + ], + [ + "▁Nakajima", + -15.41208267211914 + ], + [ + "horrible", + -15.412100791931152 + ], + [ + "▁Tilton", + -15.412101745605469 + ], + [ + "squirt", + -15.412121772766113 + ], + [ + "▁tutto", + -15.412140846252441 + ], + [ + "▁Fluency", + -15.412147521972656 + ], + [ + "bilder", + -15.412149429321289 + ], + [ + "▁UCSC", + -15.412153244018555 + ], + [ + "▁incestuous", + -15.412158966064453 + ], + [ + "HBO", + -15.4121732711792 + ], + [ + "▁reinsert", + -15.412210464477539 + ], + [ + "▁Chronology", + -15.412211418151855 + ], + [ + "▁sprightly", + -15.412219047546387 + ], + [ + "▁Brey", + -15.4122314453125 + ], + [ + "▁ABAP", + -15.41226863861084 + ], + [ + "Droid", + -15.412310600280762 + ], + [ + "▁Maximizing", + -15.412332534790039 + ], + [ + "▁OHSAS", + -15.412358283996582 + ], + [ + "▁intelligibility", + -15.412400245666504 + ], + [ + "▁gaz", + -15.412407875061035 + ], + [ + "▁polarizer", + -15.412424087524414 + ], + [ + "fracking", + -15.41247844696045 + ], + [ + "▁Yitzhak", + -15.412500381469727 + ], + [ + "처", + -15.412520408630371 + ], + [ + "选", + -15.412521362304688 + ], + [ + "scrub", + -15.412535667419434 + ], + [ + "▁McEnroe", + -15.412562370300293 + ], + [ + "▁distally", + -15.412562370300293 + ], + [ + "vantage", + -15.41258716583252 + ], + [ + "▁Barratt", + -15.41262435913086 + ], + [ + "▁saddlebag", + -15.412653923034668 + ], + [ + "♀", + -15.41268539428711 + ], + [ + "▁Pesh", + -15.412728309631348 + ], + [ + "▁COLE", + -15.4127836227417 + ], + [ + "Discussion", + -15.412786483764648 + ], + [ + "cense", + -15.412834167480469 + ], + [ + "▁Chutney", + -15.412843704223633 + ], + [ + "accelerated", + -15.412867546081543 + ], + [ + "▁smote", + -15.412919044494629 + ], + [ + "▁conclu", + -15.412927627563477 + ], + [ + "▁caresses", + -15.412938117980957 + ], + [ + "percussion", + -15.412962913513184 + ], + [ + "Foam", + -15.412969589233398 + ], + [ + "Luis", + -15.412983894348145 + ], + [ + "Damage", + -15.412994384765625 + ], + [ + "▁folkloric", + -15.413005828857422 + ], + [ + "Wrong", + -15.413037300109863 + ], + [ + "Diesel", + -15.413042068481445 + ], + [ + "▁VALVE", + -15.413063049316406 + ], + [ + "▁Reluctant", + -15.413064002990723 + ], + [ + "▁spineless", + -15.413065910339355 + ], + [ + "▁gloating", + -15.41312313079834 + ], + [ + "▁dyna", + -15.413127899169922 + ], + [ + "gruppe", + -15.4132080078125 + ], + [ + "▁Maksim", + -15.413267135620117 + ], + [ + "abrasive", + -15.413277626037598 + ], + [ + "▁Kelce", + -15.413302421569824 + ], + [ + "▁liturgies", + -15.413307189941406 + ], + [ + "▁illuminator", + -15.41332721710205 + ], + [ + "▁Estero", + -15.413328170776367 + ], + [ + "▁UNINTERRUPTED", + -15.41336727142334 + ], + [ + "▁방법", + -15.41336727142334 + ], + [ + "ян", + -15.413443565368652 + ], + [ + "▁PROGRAMS", + -15.413511276245117 + ], + [ + "▁ESRI", + -15.413512229919434 + ], + [ + "▁£125", + -15.413524627685547 + ], + [ + "motiv", + -15.413553237915039 + ], + [ + "▁Leaky", + -15.413578033447266 + ], + [ + "aṃ", + -15.413603782653809 + ], + [ + "▁HEVC", + -15.413637161254883 + ], + [ + "▁Aloysius", + -15.413649559020996 + ], + [ + "resversions", + -15.413683891296387 + ], + [ + "▁Buchholz", + -15.413695335388184 + ], + [ + "Naked", + -15.413711547851562 + ], + [ + "▁Lackawanna", + -15.41373062133789 + ], + [ + "austin", + -15.413734436035156 + ], + [ + "▁Mija", + -15.413843154907227 + ], + [ + "▁Fitzwilliam", + -15.413854598999023 + ], + [ + "▁DEALS", + -15.413864135742188 + ], + [ + "INGHAM", + -15.41389274597168 + ], + [ + "▁Spacecraft", + -15.413904190063477 + ], + [ + "▁Amalia", + -15.413921356201172 + ], + [ + "▁Kimbrel", + -15.413939476013184 + ], + [ + "WWII", + -15.413980484008789 + ], + [ + "▁detonator", + -15.413996696472168 + ], + [ + "Painting", + -15.414031982421875 + ], + [ + "▁Vulkan", + -15.414060592651367 + ], + [ + "▁MULTIPLE", + -15.414097785949707 + ], + [ + "▁Matsui", + -15.414109230041504 + ], + [ + "▁Tootsie", + -15.414113998413086 + ], + [ + "▁unfailingly", + -15.41413402557373 + ], + [ + "▁Reinsurance", + -15.414161682128906 + ], + [ + "改", + -15.414217948913574 + ], + [ + "SERVER", + -15.41427230834961 + ], + [ + "▁Schooner", + -15.414276123046875 + ], + [ + "▁भ", + -15.414294242858887 + ], + [ + "▁disenchantment", + -15.414315223693848 + ], + [ + "ość", + -15.414372444152832 + ], + [ + "▁jigging", + -15.414372444152832 + ], + [ + "▁Potluck", + -15.41441822052002 + ], + [ + "▁Nauert", + -15.414436340332031 + ], + [ + "▁incriminate", + -15.41446304321289 + ], + [ + "▁MILAN", + -15.414480209350586 + ], + [ + "▁multiplexed", + -15.414481163024902 + ], + [ + "▁Societal", + -15.414482116699219 + ], + [ + "▁crowed", + -15.41452407836914 + ], + [ + "▁Eichmann", + -15.414568901062012 + ], + [ + "▁Imelda", + -15.41457748413086 + ], + [ + "▁STRAT", + -15.414602279663086 + ], + [ + "▁Pryce", + -15.414657592773438 + ], + [ + "▁freq", + -15.414658546447754 + ], + [ + "ần", + -15.41466236114502 + ], + [ + "▁Lowestoft", + -15.41472053527832 + ], + [ + "▁kodi", + -15.414721488952637 + ], + [ + "GbE", + -15.414761543273926 + ], + [ + "▁Scrambler", + -15.414831161499023 + ], + [ + "Inclusive", + -15.414857864379883 + ], + [ + "还", + -15.41486930847168 + ], + [ + "▁KUR", + -15.414883613586426 + ], + [ + "▁Talmudic", + -15.41491413116455 + ], + [ + "modulated", + -15.414918899536133 + ], + [ + "doux", + -15.41491985321045 + ], + [ + "▁️", + -15.414950370788574 + ], + [ + "▁Burney", + -15.414982795715332 + ], + [ + "▁Keisha", + -15.415003776550293 + ], + [ + "▁Guava", + -15.415007591247559 + ], + [ + "▁digicam", + -15.415017127990723 + ], + [ + "▁dipper", + -15.415119171142578 + ], + [ + "▁Temporarily", + -15.415122985839844 + ], + [ + "▁GRAPHICS", + -15.41512393951416 + ], + [ + "▁Cytokine", + -15.41513729095459 + ], + [ + "▁Brech", + -15.415143013000488 + ], + [ + "▁mycobacteria", + -15.4151611328125 + ], + [ + "▁Metaphysical", + -15.415200233459473 + ], + [ + "▁ablution", + -15.415284156799316 + ], + [ + "▁Nyam", + -15.415388107299805 + ], + [ + "▁unsettle", + -15.415458679199219 + ], + [ + "HIGH", + -15.415487289428711 + ], + [ + "▁transferrable", + -15.41553020477295 + ], + [ + "Adapter", + -15.415573120117188 + ], + [ + "Diff", + -15.415631294250488 + ], + [ + "accidental", + -15.415696144104004 + ], + [ + "7777", + -15.415716171264648 + ], + [ + "▁Commentaries", + -15.415756225585938 + ], + [ + "▁Hachette", + -15.415794372558594 + ], + [ + "Oakland", + -15.415820121765137 + ], + [ + "TAIL", + -15.415879249572754 + ], + [ + "▁Beekeeper", + -15.41588306427002 + ], + [ + "▁CRAP", + -15.415888786315918 + ], + [ + "stabilized", + -15.415928840637207 + ], + [ + "pbuh", + -15.41594409942627 + ], + [ + "whale", + -15.4159517288208 + ], + [ + "▁Squeaky", + -15.4159517288208 + ], + [ + "▁Skj", + -15.415960311889648 + ], + [ + "▁gratify", + -15.415963172912598 + ], + [ + "gupta", + -15.415973663330078 + ], + [ + "antwort", + -15.415996551513672 + ], + [ + "rheum", + -15.415998458862305 + ], + [ + "▁unbuttoned", + -15.416011810302734 + ], + [ + "▁Polarized", + -15.416015625 + ], + [ + "CTL", + -15.416044235229492 + ], + [ + "▁receptivity", + -15.416095733642578 + ], + [ + "▁decir", + -15.41610336303711 + ], + [ + "Hardware", + -15.416138648986816 + ], + [ + "▁će", + -15.416143417358398 + ], + [ + "▁cystitis", + -15.416145324707031 + ], + [ + "▁Doppel", + -15.416167259216309 + ], + [ + "▁Gameboy", + -15.416171073913574 + ], + [ + "dialogue", + -15.416184425354004 + ], + [ + "▁Combinator", + -15.416200637817383 + ], + [ + "▁Sébastien", + -15.416213989257812 + ], + [ + "▁musique", + -15.416227340698242 + ], + [ + "OTCQB", + -15.416236877441406 + ], + [ + "▁Ocarina", + -15.4163179397583 + ], + [ + "▁Finca", + -15.416375160217285 + ], + [ + "explorer", + -15.41641616821289 + ], + [ + "ahalli", + -15.416426658630371 + ], + [ + "Cheese", + -15.41643238067627 + ], + [ + "balloon", + -15.416457176208496 + ], + [ + "▁Westerville", + -15.416467666625977 + ], + [ + "▁Saylor", + -15.416500091552734 + ], + [ + "▁Tinkerbell", + -15.416505813598633 + ], + [ + "ţ", + -15.416540145874023 + ], + [ + "▁Cronenberg", + -15.416587829589844 + ], + [ + "▁Corsican", + -15.41659164428711 + ], + [ + "▁Teardrop", + -15.416608810424805 + ], + [ + "insane", + -15.416617393493652 + ], + [ + "▁Waukegan", + -15.416618347167969 + ], + [ + "▁Kentish", + -15.416625022888184 + ], + [ + "▁pollinated", + -15.416638374328613 + ], + [ + "▁kurti", + -15.41666030883789 + ], + [ + "▁Wickremesinghe", + -15.416699409484863 + ], + [ + "▁arrogantly", + -15.416741371154785 + ], + [ + "▁wolverine", + -15.416760444641113 + ], + [ + "▁transcode", + -15.41676139831543 + ], + [ + "▁Screenwriter", + -15.416781425476074 + ], + [ + "▁ʿ", + -15.41678237915039 + ], + [ + "▁Cemeteries", + -15.416800498962402 + ], + [ + "forgive", + -15.416807174682617 + ], + [ + "replacing", + -15.416823387145996 + ], + [ + "▁Balotelli", + -15.416861534118652 + ], + [ + "▁Federica", + -15.416877746582031 + ], + [ + "▁Nogales", + -15.416911125183105 + ], + [ + "▁roiled", + -15.416919708251953 + ], + [ + "▁Bovine", + -15.416974067687988 + ], + [ + "▁HURT", + -15.416991233825684 + ], + [ + "▁milion", + -15.416999816894531 + ], + [ + "▁promontory", + -15.41700267791748 + ], + [ + "▁Benzyl", + -15.417023658752441 + ], + [ + "WEAR", + -15.417069435119629 + ], + [ + "crank", + -15.417078971862793 + ], + [ + "▁Haswell", + -15.417089462280273 + ], + [ + "▁Futurity", + -15.417119979858398 + ], + [ + "▁chamois", + -15.417135238647461 + ], + [ + "▁recommit", + -15.417196273803711 + ], + [ + "▁clef", + -15.417197227478027 + ], + [ + "▁staph", + -15.417197227478027 + ], + [ + "█", + -15.417213439941406 + ], + [ + "Cosmo", + -15.417242050170898 + ], + [ + "▁Gionee", + -15.417242050170898 + ], + [ + "▁lazing", + -15.417253494262695 + ], + [ + "▁Patricio", + -15.417283058166504 + ], + [ + "▁EXCEED", + -15.41728687286377 + ], + [ + "painful", + -15.417290687561035 + ], + [ + "downtown", + -15.417295455932617 + ], + [ + "▁juris", + -15.41730785369873 + ], + [ + "▁wraith", + -15.417326927185059 + ], + [ + "▁Hostgator", + -15.4173583984375 + ], + [ + "▁sulla", + -15.417497634887695 + ], + [ + "▁crabby", + -15.417500495910645 + ], + [ + "▁Outrageous", + -15.417586326599121 + ], + [ + "Leaving", + -15.417608261108398 + ], + [ + "▁Hiawatha", + -15.417610168457031 + ], + [ + "hierarchy", + -15.417616844177246 + ], + [ + "▁Lorelai", + -15.417622566223145 + ], + [ + "▁madcap", + -15.417661666870117 + ], + [ + "▁necessari", + -15.417696952819824 + ], + [ + "▁stagecoach", + -15.417699813842773 + ], + [ + "Monroe", + -15.41770076751709 + ], + [ + "▁jake", + -15.417719841003418 + ], + [ + "▁vortices", + -15.417731285095215 + ], + [ + "▁Fertile", + -15.417745590209961 + ], + [ + "▁CIMA", + -15.417810440063477 + ], + [ + "▁Adolescence", + -15.417814254760742 + ], + [ + "▁newsreader", + -15.417941093444824 + ], + [ + "▁burgh", + -15.417970657348633 + ], + [ + "▁Managua", + -15.418015480041504 + ], + [ + "LAH", + -15.41801929473877 + ], + [ + "Mack", + -15.418023109436035 + ], + [ + "▁Sketchbook", + -15.418039321899414 + ], + [ + "▁buddhist", + -15.418055534362793 + ], + [ + "▁Dalia", + -15.418130874633789 + ], + [ + "▁Exmoor", + -15.41813850402832 + ], + [ + "Afghanistan", + -15.418170928955078 + ], + [ + "▁decoupage", + -15.41819953918457 + ], + [ + "▁honeydew", + -15.41822338104248 + ], + [ + "entrance", + -15.418228149414062 + ], + [ + "himself", + -15.41823673248291 + ], + [ + "▁NKJV", + -15.418292045593262 + ], + [ + "▁Nimmo", + -15.418370246887207 + ], + [ + "▁Harnessing", + -15.41838264465332 + ], + [ + "▁Eastleigh", + -15.418395042419434 + ], + [ + "▁continous", + -15.41840648651123 + ], + [ + "▁kneeled", + -15.418408393859863 + ], + [ + "cystis", + -15.418429374694824 + ], + [ + "INSON", + -15.4185209274292 + ], + [ + "▁consecrate", + -15.418522834777832 + ], + [ + "▁Nutty", + -15.418532371520996 + ], + [ + "Philly", + -15.418569564819336 + ], + [ + "▁beryllium", + -15.41860294342041 + ], + [ + "Reform", + -15.41861343383789 + ], + [ + "▁thievery", + -15.41861629486084 + ], + [ + "▁whacking", + -15.418664932250977 + ], + [ + "ITAL", + -15.418713569641113 + ], + [ + "ROUGH", + -15.418737411499023 + ], + [ + "ден", + -15.418789863586426 + ], + [ + "▁Spartak", + -15.418792724609375 + ], + [ + "textile", + -15.418800354003906 + ], + [ + "κε", + -15.41881275177002 + ], + [ + "▁Minutemen", + -15.4188232421875 + ], + [ + "▁drenching", + -15.418871879577637 + ], + [ + "▁Elina", + -15.418872833251953 + ], + [ + "▁Manipal", + -15.41889476776123 + ], + [ + "▁NMFS", + -15.41893196105957 + ], + [ + "convex", + -15.418959617614746 + ], + [ + "▁WAKE", + -15.418960571289062 + ], + [ + "▁DDP", + -15.418984413146973 + ], + [ + "Patricia", + -15.418988227844238 + ], + [ + "▁bongo", + -15.4190092086792 + ], + [ + "REZ", + -15.419038772583008 + ], + [ + "▁Barbell", + -15.41904354095459 + ], + [ + "▁Arterial", + -15.419052124023438 + ], + [ + "▁Puckett", + -15.419053077697754 + ], + [ + "▁Zagor", + -15.419095993041992 + ], + [ + "▁Amalek", + -15.41910171508789 + ], + [ + "▁Canandaigua", + -15.419109344482422 + ], + [ + "▁Bayelsa", + -15.41915512084961 + ], + [ + "▁GAZ", + -15.419160842895508 + ], + [ + "beginner", + -15.419172286987305 + ], + [ + "▁coeliac", + -15.419175148010254 + ], + [ + "▁Alumina", + -15.419182777404785 + ], + [ + "▁toxicological", + -15.419197082519531 + ], + [ + "▁calfskin", + -15.419222831726074 + ], + [ + "▁Ledbetter", + -15.419240951538086 + ], + [ + "▁Freemason", + -15.419242858886719 + ], + [ + "negotiation", + -15.419254302978516 + ], + [ + "手段", + -15.419258117675781 + ], + [ + "▁stragglers", + -15.419312477111816 + ], + [ + "▁Haddock", + -15.419342041015625 + ], + [ + "▁honorarium", + -15.419352531433105 + ], + [ + "▁Lanark", + -15.419366836547852 + ], + [ + "striking", + -15.419374465942383 + ], + [ + "▁mallard", + -15.419415473937988 + ], + [ + "▁Zerg", + -15.419448852539062 + ], + [ + "▁Ambush", + -15.419453620910645 + ], + [ + "▁Rajasthani", + -15.41946029663086 + ], + [ + "▁reoccur", + -15.41946029663086 + ], + [ + "чит", + -15.419528007507324 + ], + [ + "Violence", + -15.419578552246094 + ], + [ + "agher", + -15.419634819030762 + ], + [ + "▁dithering", + -15.41965103149414 + ], + [ + "▁refocusing", + -15.419716835021973 + ], + [ + "▁vinyasa", + -15.419719696044922 + ], + [ + "▁corbel", + -15.419734954833984 + ], + [ + "▁통해", + -15.419759750366211 + ], + [ + "1841", + -15.419781684875488 + ], + [ + "▁radiometric", + -15.419816970825195 + ], + [ + "Optic", + -15.419838905334473 + ], + [ + "▁Zaki", + -15.419903755187988 + ], + [ + "▁Hikaru", + -15.419920921325684 + ], + [ + "▁Gorton", + -15.419926643371582 + ], + [ + "▁Stroh", + -15.41994571685791 + ], + [ + "▁Jiffy", + -15.419958114624023 + ], + [ + "ferment", + -15.419970512390137 + ], + [ + "GOOGL", + -15.420025825500488 + ], + [ + "▁Respons", + -15.42003059387207 + ], + [ + "▁Thio", + -15.42004108428955 + ], + [ + "Afghan", + -15.420100212097168 + ], + [ + "Delight", + -15.420113563537598 + ], + [ + "▁Boulton", + -15.420148849487305 + ], + [ + "▁Discography", + -15.42015266418457 + ], + [ + "▁Barents", + -15.420180320739746 + ], + [ + "▁Hazle", + -15.4202241897583 + ], + [ + "▁Sitewide", + -15.420230865478516 + ], + [ + "jnë", + -15.420234680175781 + ], + [ + "delusion", + -15.420235633850098 + ], + [ + "▁mirë", + -15.420279502868652 + ], + [ + "▁reallocation", + -15.420303344726562 + ], + [ + "▁CARBON", + -15.420315742492676 + ], + [ + "▁Hammar", + -15.420315742492676 + ], + [ + "▁barracuda", + -15.420347213745117 + ], + [ + "▁arsonist", + -15.420348167419434 + ], + [ + "▁COMMUNICATIONS", + -15.420367240905762 + ], + [ + "AMPTON", + -15.420373916625977 + ], + [ + "▁peroxidation", + -15.420412063598633 + ], + [ + "▁Tulle", + -15.420419692993164 + ], + [ + "▁Neurobiology", + -15.420429229736328 + ], + [ + "▁SHOES", + -15.420527458190918 + ], + [ + "▁Positano", + -15.420552253723145 + ], + [ + "▁zusammen", + -15.420570373535156 + ], + [ + "clusiv", + -15.420592308044434 + ], + [ + "▁Vulgar", + -15.420613288879395 + ], + [ + "▁Equestria", + -15.420633316040039 + ], + [ + "▁PSAT", + -15.420633316040039 + ], + [ + "▁vasculitis", + -15.420633316040039 + ], + [ + "▁parece", + -15.420639038085938 + ], + [ + "▁captor", + -15.42064380645752 + ], + [ + "станов", + -15.420656204223633 + ], + [ + "Β", + -15.420672416687012 + ], + [ + "▁reheating", + -15.420700073242188 + ], + [ + "▁INTERRUPTION", + -15.4207124710083 + ], + [ + "▁Probabilistic", + -15.420814514160156 + ], + [ + "領域", + -15.4208402633667 + ], + [ + "▁litte", + -15.420852661132812 + ], + [ + "▁Pixi", + -15.420903205871582 + ], + [ + "▁TUV", + -15.420906066894531 + ], + [ + "▁participative", + -15.420937538146973 + ], + [ + "winkel", + -15.420967102050781 + ], + [ + "GTT", + -15.42096996307373 + ], + [ + "▁Tepper", + -15.420991897583008 + ], + [ + "▁brusque", + -15.421001434326172 + ], + [ + "anayake", + -15.42101001739502 + ], + [ + "▁unpaired", + -15.42101764678955 + ], + [ + "abilty", + -15.42103099822998 + ], + [ + "▁hotshot", + -15.42110538482666 + ], + [ + "▁можно", + -15.421159744262695 + ], + [ + "▁Igloo", + -15.42120361328125 + ], + [ + "▁Crouse", + -15.42121410369873 + ], + [ + "션", + -15.421220779418945 + ], + [ + "▁Seig", + -15.421260833740234 + ], + [ + "▁renouncing", + -15.421278953552246 + ], + [ + "documentation", + -15.421283721923828 + ], + [ + "tionary", + -15.421317100524902 + ], + [ + "▁Workgroup", + -15.421319961547852 + ], + [ + "piri", + -15.421321868896484 + ], + [ + "▁Brattleboro", + -15.421363830566406 + ], + [ + "▁Ashfield", + -15.421374320983887 + ], + [ + "▁Tradi", + -15.421422958374023 + ], + [ + "▁autopsies", + -15.4214448928833 + ], + [ + "▁invective", + -15.421445846557617 + ], + [ + "▁sacramento", + -15.421452522277832 + ], + [ + "▁Edda", + -15.421490669250488 + ], + [ + "▁97814", + -15.42150592803955 + ], + [ + "▁pincer", + -15.421512603759766 + ], + [ + "▁nego", + -15.421518325805664 + ], + [ + "▁Cognizant", + -15.421525955200195 + ], + [ + "▁Winterfell", + -15.421531677246094 + ], + [ + "▁Metroplex", + -15.42160701751709 + ], + [ + "▁autocomplete", + -15.421628952026367 + ], + [ + "▁Fernie", + -15.421659469604492 + ], + [ + "▁sherbet", + -15.421669006347656 + ], + [ + "MDR", + -15.421671867370605 + ], + [ + "guidelines", + -15.421749114990234 + ], + [ + "▁ellos", + -15.4217529296875 + ], + [ + "▁Ultrabook", + -15.421806335449219 + ], + [ + "▁NetScaler", + -15.421810150146484 + ], + [ + "▁Fazio", + -15.421852111816406 + ], + [ + "▁transmutation", + -15.421913146972656 + ], + [ + "▁Waylon", + -15.42194652557373 + ], + [ + "▁dabei", + -15.421951293945312 + ], + [ + "▁eschatological", + -15.42203426361084 + ], + [ + "▁Oconee", + -15.422035217285156 + ], + [ + "▁exhumed", + -15.422054290771484 + ], + [ + "CDL", + -15.422077178955078 + ], + [ + "▁Radish", + -15.422083854675293 + ], + [ + "▁Appetit", + -15.422122955322266 + ], + [ + "▁Daiwa", + -15.422168731689453 + ], + [ + "▁Frontenac", + -15.422196388244629 + ], + [ + "▁Southlake", + -15.422203063964844 + ], + [ + "Specification", + -15.422249794006348 + ], + [ + "grazing", + -15.422303199768066 + ], + [ + "▁PENALTY", + -15.422318458557129 + ], + [ + "▁Insofar", + -15.422319412231445 + ], + [ + "▁Extrusion", + -15.42234992980957 + ], + [ + "▁Cryptic", + -15.42236614227295 + ], + [ + "▁panama", + -15.422372817993164 + ], + [ + "▁Lecter", + -15.422382354736328 + ], + [ + "▁hyping", + -15.422385215759277 + ], + [ + "▁reappointed", + -15.422422409057617 + ], + [ + "▁idolize", + -15.422425270080566 + ], + [ + "purposing", + -15.42243480682373 + ], + [ + "▁chambray", + -15.422440528869629 + ], + [ + "▁reintroducing", + -15.422459602355957 + ], + [ + "▁mosey", + -15.422473907470703 + ], + [ + "ucchi", + -15.422511100769043 + ], + [ + "▁Lipper", + -15.422517776489258 + ], + [ + "▁PROCEDURE", + -15.42252254486084 + ], + [ + "▁ROBOT", + -15.422523498535156 + ], + [ + "ammal", + -15.422525405883789 + ], + [ + "▁очень", + -15.422562599182129 + ], + [ + "▁Kirtland", + -15.422564506530762 + ], + [ + "▁skulk", + -15.42258071899414 + ], + [ + "▁downspout", + -15.422621726989746 + ], + [ + "▁recrimination", + -15.42264461517334 + ], + [ + "▁CLEANING", + -15.422650337219238 + ], + [ + "▁sagebrush", + -15.422727584838867 + ], + [ + "▁Northbrook", + -15.422760009765625 + ], + [ + "▁levitation", + -15.422773361206055 + ], + [ + "▁😊", + -15.422823905944824 + ], + [ + "▁Airfare", + -15.422837257385254 + ], + [ + "▁contractile", + -15.422858238220215 + ], + [ + "▁cryotherapy", + -15.422865867614746 + ], + [ + "▁OHIO", + -15.422883987426758 + ], + [ + "fiance", + -15.422904968261719 + ], + [ + "ές", + -15.4229097366333 + ], + [ + "▁crazily", + -15.42294979095459 + ], + [ + "Dwyer", + -15.422981262207031 + ], + [ + "▁Hernia", + -15.42298412322998 + ], + [ + "cento", + -15.423007011413574 + ], + [ + "▁uninstaller", + -15.423009872436523 + ], + [ + "ţă", + -15.423172950744629 + ], + [ + "credential", + -15.423199653625488 + ], + [ + "▁Volcan", + -15.42320442199707 + ], + [ + "▁Naughton", + -15.423295974731445 + ], + [ + "▁Kaushal", + -15.42330265045166 + ], + [ + "▁Hargrave", + -15.423347473144531 + ], + [ + "▁غ", + -15.423354148864746 + ], + [ + "▁할", + -15.423369407653809 + ], + [ + "MAIN", + -15.423392295837402 + ], + [ + "▁SISTER", + -15.423392295837402 + ], + [ + "▁confectionary", + -15.423396110534668 + ], + [ + "▁funicular", + -15.423399925231934 + ], + [ + "▁Achille", + -15.423463821411133 + ], + [ + "▁vixen", + -15.42347526550293 + ], + [ + "▁Ladle", + -15.423514366149902 + ], + [ + "OUNCE", + -15.423526763916016 + ], + [ + "imidazol", + -15.423571586608887 + ], + [ + "▁Straightforward", + -15.423625946044922 + ], + [ + "▁RESIST", + -15.423701286315918 + ], + [ + "Delay", + -15.423715591430664 + ], + [ + "▁пар", + -15.423768043518066 + ], + [ + "Serbia", + -15.423776626586914 + ], + [ + "TTP", + -15.423789978027344 + ], + [ + "Honour", + -15.423798561096191 + ], + [ + "▁digitizer", + -15.423800468444824 + ], + [ + "▁Moller", + -15.423819541931152 + ], + [ + "astronomy", + -15.423833847045898 + ], + [ + "▁Kupp", + -15.423879623413086 + ], + [ + "Locker", + -15.423933982849121 + ], + [ + "▁tritium", + -15.423937797546387 + ], + [ + "▁Commemoration", + -15.42394733428955 + ], + [ + "▁Dachau", + -15.423949241638184 + ], + [ + "▁Hockney", + -15.42397403717041 + ], + [ + "▁Benazir", + -15.423988342285156 + ], + [ + "OLED", + -15.423998832702637 + ], + [ + "▁einige", + -15.42402172088623 + ], + [ + "▁Metairie", + -15.424029350280762 + ], + [ + "▁Barbershop", + -15.424052238464355 + ], + [ + "▁Dystrophy", + -15.424052238464355 + ], + [ + "▁Patnaik", + -15.424068450927734 + ], + [ + "▁Pollan", + -15.424112319946289 + ], + [ + "▁Psychoanalytic", + -15.424129486083984 + ], + [ + "▁Bradstreet", + -15.424162864685059 + ], + [ + "▁née", + -15.424188613891602 + ], + [ + "екс", + -15.424216270446777 + ], + [ + "▁Gelder", + -15.42422866821289 + ], + [ + "▁Thunderstorm", + -15.424256324768066 + ], + [ + "Э", + -15.424296379089355 + ], + [ + "gotta", + -15.424358367919922 + ], + [ + "▁unequalled", + -15.424368858337402 + ], + [ + "▁regretful", + -15.424389839172363 + ], + [ + "▁Biomaterials", + -15.42443561553955 + ], + [ + "▁vaccinating", + -15.424436569213867 + ], + [ + "▁piranha", + -15.424437522888184 + ], + [ + "▁Cielo", + -15.424498558044434 + ], + [ + "▁Vect", + -15.424554824829102 + ], + [ + "▁Manchuria", + -15.424559593200684 + ], + [ + "▁Shiel", + -15.424598693847656 + ], + [ + "▁Mayawati", + -15.424612998962402 + ], + [ + "▁noticable", + -15.424653053283691 + ], + [ + "▁backflip", + -15.424732208251953 + ], + [ + "▁Modifier", + -15.424741744995117 + ], + [ + "▁Asynchronous", + -15.424921035766602 + ], + [ + "段", + -15.424925804138184 + ], + [ + "▁Syndication", + -15.424931526184082 + ], + [ + "▁Tocqueville", + -15.424966812133789 + ], + [ + "▁SIF", + -15.425045013427734 + ], + [ + "қ", + -15.425068855285645 + ], + [ + "▁Hasidic", + -15.425073623657227 + ], + [ + "▁Celta", + -15.425086975097656 + ], + [ + "elbow", + -15.425092697143555 + ], + [ + "▁lokal", + -15.425101280212402 + ], + [ + "▁PUD", + -15.425117492675781 + ], + [ + "fassung", + -15.42513370513916 + ], + [ + "▁hwy", + -15.425134658813477 + ], + [ + "확", + -15.425149917602539 + ], + [ + "▁multivariable", + -15.425210952758789 + ], + [ + "▁FOC", + -15.4252290725708 + ], + [ + "▁Palli", + -15.425247192382812 + ], + [ + "Siberian", + -15.425256729125977 + ], + [ + "mozilla", + -15.425307273864746 + ], + [ + "▁SPU", + -15.42536449432373 + ], + [ + "▁telomerase", + -15.425374984741211 + ], + [ + "leucine", + -15.425375938415527 + ], + [ + "▁unnoticeable", + -15.425436019897461 + ], + [ + "convey", + -15.425437927246094 + ], + [ + "▁LEX", + -15.425472259521484 + ], + [ + "▁Kjell", + -15.425485610961914 + ], + [ + "▁Waffen", + -15.42548942565918 + ], + [ + "▁concatenation", + -15.425518035888672 + ], + [ + "▁SPIDER", + -15.425545692443848 + ], + [ + "Manhattan", + -15.42556381225586 + ], + [ + "▁Oceanographic", + -15.4256010055542 + ], + [ + "▁remodelled", + -15.42563533782959 + ], + [ + "▁towpath", + -15.425654411315918 + ], + [ + "▁Metering", + -15.42565631866455 + ], + [ + "▁Lilley", + -15.425671577453613 + ], + [ + "▁disgorge", + -15.42567253112793 + ], + [ + "▁loro", + -15.425695419311523 + ], + [ + "▁lucha", + -15.4257173538208 + ], + [ + "▁ragtag", + -15.425732612609863 + ], + [ + "▁Houma", + -15.425758361816406 + ], + [ + "▁Wazir", + -15.425787925720215 + ], + [ + "debian", + -15.425895690917969 + ], + [ + "▁Arquette", + -15.425962448120117 + ], + [ + "▁行", + -15.42599868774414 + ], + [ + "1789", + -15.426008224487305 + ], + [ + "مة", + -15.426010131835938 + ], + [ + "arthritis", + -15.426018714904785 + ], + [ + "calibrated", + -15.426031112670898 + ], + [ + "▁panellists", + -15.426042556762695 + ], + [ + "▁Sportage", + -15.426043510437012 + ], + [ + "ittel", + -15.42606258392334 + ], + [ + "cooperative", + -15.426071166992188 + ], + [ + "▁Mensah", + -15.426115036010742 + ], + [ + "MMMM", + -15.426122665405273 + ], + [ + "▁sequelae", + -15.426122665405273 + ], + [ + "▁trilateral", + -15.426146507263184 + ], + [ + "▁gleamed", + -15.426204681396484 + ], + [ + "▁Dubbo", + -15.42620849609375 + ], + [ + "▁Appeared", + -15.426220893859863 + ], + [ + "▁abbreviate", + -15.426222801208496 + ], + [ + "▁Versatility", + -15.42623233795166 + ], + [ + "▁Tumour", + -15.426237106323242 + ], + [ + "▁BSR", + -15.426247596740723 + ], + [ + "▁ATCC", + -15.426270484924316 + ], + [ + "▁Obstetric", + -15.426288604736328 + ], + [ + "▁jung", + -15.426295280456543 + ], + [ + "▁JAZZ", + -15.426308631896973 + ], + [ + "▁shRNA", + -15.42632007598877 + ], + [ + "pathogenic", + -15.426328659057617 + ], + [ + "✨", + -15.4263916015625 + ], + [ + "Anybody", + -15.426403999328613 + ], + [ + "▁Snodgrass", + -15.426416397094727 + ], + [ + "▁Keiser", + -15.426465034484863 + ], + [ + "IGF", + -15.426481246948242 + ], + [ + "biking", + -15.4265718460083 + ], + [ + "▁EEO", + -15.4265718460083 + ], + [ + "▁MOVING", + -15.426587104797363 + ], + [ + "▁premarital", + -15.426593780517578 + ], + [ + "FRAME", + -15.426617622375488 + ], + [ + "restraint", + -15.42666244506836 + ], + [ + "▁Razi", + -15.42667293548584 + ], + [ + "DIMM", + -15.426682472229004 + ], + [ + "CMR", + -15.4266939163208 + ], + [ + "▁Offspring", + -15.426740646362305 + ], + [ + "▁jackfruit", + -15.426740646362305 + ], + [ + "abadi", + -15.426749229431152 + ], + [ + "нет", + -15.426753044128418 + ], + [ + "▁Sixteenth", + -15.426765441894531 + ], + [ + "▁Nocturnal", + -15.426783561706543 + ], + [ + "▁Danske", + -15.426794052124023 + ], + [ + "▁riverine", + -15.426809310913086 + ], + [ + "▁Identi", + -15.426815032958984 + ], + [ + "▁Catriona", + -15.426824569702148 + ], + [ + "▁italiano", + -15.426835060119629 + ], + [ + "▁Jhansi", + -15.426836967468262 + ], + [ + "▁zealously", + -15.42686653137207 + ], + [ + "▁SAX", + -15.426928520202637 + ], + [ + "ERTY", + -15.426965713500977 + ], + [ + "▁Haarlem", + -15.426971435546875 + ], + [ + "▁Encino", + -15.426974296569824 + ], + [ + "▁mellowed", + -15.427017211914062 + ], + [ + "ASEAN", + -15.427021980285645 + ], + [ + "▁Guenther", + -15.42702865600586 + ], + [ + "▁Jaune", + -15.427053451538086 + ], + [ + "▁enchancment", + -15.427069664001465 + ], + [ + "▁decriminalization", + -15.42711067199707 + ], + [ + "▁nitr", + -15.42713451385498 + ], + [ + "▁Marmot", + -15.427153587341309 + ], + [ + "▁OOH", + -15.427261352539062 + ], + [ + "▁Weinberger", + -15.427277565002441 + ], + [ + "memorial", + -15.427299499511719 + ], + [ + "▁Joburg", + -15.427308082580566 + ], + [ + "▁Mutter", + -15.427328109741211 + ], + [ + "▁Depressed", + -15.427331924438477 + ], + [ + "▁Brinkman", + -15.427360534667969 + ], + [ + "▁retrenchment", + -15.427396774291992 + ], + [ + "▁JACOB", + -15.427436828613281 + ], + [ + "▁Lawlor", + -15.427518844604492 + ], + [ + "pteryg", + -15.427520751953125 + ], + [ + "yoku", + -15.42752742767334 + ], + [ + "oeuvre", + -15.427535057067871 + ], + [ + "rasia", + -15.427692413330078 + ], + [ + "육", + -15.427703857421875 + ], + [ + "▁REPRESENT", + -15.427720069885254 + ], + [ + "▁ihrer", + -15.427729606628418 + ], + [ + "▁lancer", + -15.427742004394531 + ], + [ + "▁oscillatory", + -15.427759170532227 + ], + [ + "whoever", + -15.427799224853516 + ], + [ + "Baseball", + -15.427827835083008 + ], + [ + "▁falsity", + -15.427827835083008 + ], + [ + "finite", + -15.427841186523438 + ], + [ + "▁FFO", + -15.42785358428955 + ], + [ + "▁chondroitin", + -15.427888870239258 + ], + [ + "▁HIMSS", + -15.4279146194458 + ], + [ + "▁Waitress", + -15.427948951721191 + ], + [ + "рен", + -15.427956581115723 + ], + [ + "▁Sweeper", + -15.428007125854492 + ], + [ + "지만", + -15.428058624267578 + ], + [ + "▁sportswriter", + -15.428104400634766 + ], + [ + "▁Rinaldi", + -15.428140640258789 + ], + [ + "▁Microfilm", + -15.428179740905762 + ], + [ + "▁Rohde", + -15.42818832397461 + ], + [ + "▁☀", + -15.428204536437988 + ], + [ + "▁VALID", + -15.428244590759277 + ], + [ + "resulting", + -15.42824649810791 + ], + [ + "▁Animate", + -15.428272247314453 + ], + [ + "ဲ", + -15.428275108337402 + ], + [ + "▁embalming", + -15.428276062011719 + ], + [ + "測", + -15.428287506103516 + ], + [ + "▁Cannabinoid", + -15.42829704284668 + ], + [ + "▁corroboration", + -15.428338050842285 + ], + [ + "houl", + -15.428351402282715 + ], + [ + "schler", + -15.428399085998535 + ], + [ + "inherit", + -15.428413391113281 + ], + [ + "▁Galesburg", + -15.428417205810547 + ], + [ + "▁vibrated", + -15.428422927856445 + ], + [ + "▁VENT", + -15.428525924682617 + ], + [ + "▁divan", + -15.428531646728516 + ], + [ + "▁Methodologies", + -15.428539276123047 + ], + [ + "pioneer", + -15.428542137145996 + ], + [ + "Bristol", + -15.428589820861816 + ], + [ + "▁geen", + -15.428644180297852 + ], + [ + "▁unacknowledged", + -15.428645133972168 + ], + [ + "Precious", + -15.428659439086914 + ], + [ + "▁Grigori", + -15.42872428894043 + ], + [ + "▁Goldfinch", + -15.428728103637695 + ], + [ + "discretion", + -15.428750038146973 + ], + [ + "ιστ", + -15.428764343261719 + ], + [ + "▁Understood", + -15.428776741027832 + ], + [ + "▁bimonthly", + -15.428892135620117 + ], + [ + "bacon", + -15.4288969039917 + ], + [ + "holland", + -15.428939819335938 + ], + [ + "allegedly", + -15.428948402404785 + ], + [ + "▁Uncut", + -15.428962707519531 + ], + [ + "▁snipped", + -15.428967475891113 + ], + [ + "▁KNIGHT", + -15.428997993469238 + ], + [ + "▁Papuan", + -15.428997993469238 + ], + [ + "▁liquidating", + -15.429073333740234 + ], + [ + "baca", + -15.429080963134766 + ], + [ + "extinct", + -15.429100036621094 + ], + [ + "▁Koster", + -15.429101943969727 + ], + [ + "▁Skipton", + -15.429104804992676 + ], + [ + "democrat", + -15.429131507873535 + ], + [ + "▁Lugar", + -15.429139137268066 + ], + [ + "▁Agrarian", + -15.429154396057129 + ], + [ + "▁Credo", + -15.429158210754395 + ], + [ + "▁NIGERIA", + -15.429198265075684 + ], + [ + "fluence", + -15.42920970916748 + ], + [ + "▁가능", + -15.429280281066895 + ], + [ + "▁Gérard", + -15.429342269897461 + ], + [ + "▁Egon", + -15.42939281463623 + ], + [ + "▁unearthly", + -15.429413795471191 + ], + [ + "▁messiness", + -15.429464340209961 + ], + [ + "mutant", + -15.429476737976074 + ], + [ + "Adopt", + -15.429478645324707 + ], + [ + "▁Smear", + -15.42950439453125 + ], + [ + "▁Tingle", + -15.429512977600098 + ], + [ + "▁anaphylactic", + -15.429546356201172 + ], + [ + "▁APPROVED", + -15.429566383361816 + ], + [ + "▁INSTITUTE", + -15.429566383361816 + ], + [ + "▁zipcode", + -15.429648399353027 + ], + [ + "▁russet", + -15.429654121398926 + ], + [ + "▁cooing", + -15.429655075073242 + ], + [ + "▁Disgusting", + -15.429698944091797 + ], + [ + "bleeding", + -15.429703712463379 + ], + [ + "priori", + -15.429764747619629 + ], + [ + "▁paise", + -15.429823875427246 + ], + [ + "▁nondisclosure", + -15.429825782775879 + ], + [ + "▁supremo", + -15.429838180541992 + ], + [ + "▁pittsburgh", + -15.429915428161621 + ], + [ + "▁Davina", + -15.429916381835938 + ], + [ + "▁Jiménez", + -15.429996490478516 + ], + [ + "▁CLINIC", + -15.430001258850098 + ], + [ + "▁Trajan", + -15.430015563964844 + ], + [ + "▁Rosacea", + -15.430017471313477 + ], + [ + "▁Sinema", + -15.430032730102539 + ], + [ + "caregiver", + -15.430047988891602 + ], + [ + "sperger", + -15.430048942565918 + ], + [ + "▁Arielle", + -15.430137634277344 + ], + [ + "akki", + -15.43013858795166 + ], + [ + "Amico", + -15.430179595947266 + ], + [ + "▁Diller", + -15.430197715759277 + ], + [ + "utiful", + -15.43022346496582 + ], + [ + "▁ACTIV", + -15.430248260498047 + ], + [ + "▁Rumour", + -15.43025016784668 + ], + [ + "Promo", + -15.43026065826416 + ], + [ + "▁despondency", + -15.430283546447754 + ], + [ + "▁Lorrie", + -15.430292129516602 + ], + [ + "▁Wageningen", + -15.43030834197998 + ], + [ + "raju", + -15.43033218383789 + ], + [ + "▁Mingo", + -15.430337905883789 + ], + [ + "▁Brubaker", + -15.430376052856445 + ], + [ + "▁Hutchings", + -15.430427551269531 + ], + [ + "navigate", + -15.430450439453125 + ], + [ + "▁adjunctive", + -15.430508613586426 + ], + [ + "▁Apatow", + -15.43055248260498 + ], + [ + "▁Boulogne", + -15.430571556091309 + ], + [ + "▁onlooker", + -15.430624008178711 + ], + [ + "▁quae", + -15.430625915527344 + ], + [ + "prakash", + -15.430678367614746 + ], + [ + "unexpected", + -15.430683135986328 + ], + [ + "omycosis", + -15.430684089660645 + ], + [ + "▁dipstick", + -15.430684089660645 + ], + [ + "tightening", + -15.430693626403809 + ], + [ + "▁thé", + -15.430694580078125 + ], + [ + "Toyota", + -15.4307279586792 + ], + [ + "Grinding", + -15.430728912353516 + ], + [ + "WALK", + -15.43073558807373 + ], + [ + "okka", + -15.430742263793945 + ], + [ + "▁Cowes", + -15.430758476257324 + ], + [ + "▁Intermountain", + -15.430761337280273 + ], + [ + "▁Timberline", + -15.430794715881348 + ], + [ + "▁Juergen", + -15.43079662322998 + ], + [ + "फ", + -15.430803298950195 + ], + [ + "NCES", + -15.43081283569336 + ], + [ + "▁Nyx", + -15.430877685546875 + ], + [ + "▁Dionysius", + -15.430919647216797 + ], + [ + "▁Rendell", + -15.430944442749023 + ], + [ + "fuge", + -15.430946350097656 + ], + [ + "ENTO", + -15.430950164794922 + ], + [ + "▁firecracker", + -15.430952072143555 + ], + [ + "▁Basie", + -15.430959701538086 + ], + [ + "▁Veto", + -15.430959701538086 + ], + [ + "▁Consequence", + -15.431035041809082 + ], + [ + "▁Magnitude", + -15.431048393249512 + ], + [ + "jeff", + -15.431070327758789 + ], + [ + "▁GWR", + -15.4310941696167 + ], + [ + "▁gumption", + -15.43122673034668 + ], + [ + "▁acme", + -15.431228637695312 + ], + [ + "▁Cueto", + -15.431243896484375 + ], + [ + "▁LCL", + -15.431246757507324 + ], + [ + "▁Marmara", + -15.431278228759766 + ], + [ + "▁DeWine", + -15.431293487548828 + ], + [ + "▁Crackle", + -15.431297302246094 + ], + [ + "ootie", + -15.43133544921875 + ], + [ + "▁bioavailable", + -15.431337356567383 + ], + [ + "▁regrouping", + -15.431346893310547 + ], + [ + "▁Strahan", + -15.431355476379395 + ], + [ + "blaster", + -15.431396484375 + ], + [ + "glucuron", + -15.431439399719238 + ], + [ + "Jungle", + -15.431445121765137 + ], + [ + "▁COPE", + -15.431468963623047 + ], + [ + "无", + -15.431474685668945 + ], + [ + "▁Fyodor", + -15.431497573852539 + ], + [ + "▁Caveat", + -15.431532859802246 + ], + [ + "▁Kisumu", + -15.431539535522461 + ], + [ + "▁ваш", + -15.431558609008789 + ], + [ + "▁Conferencing", + -15.431577682495117 + ], + [ + "AUG", + -15.431595802307129 + ], + [ + "▁Artesia", + -15.431618690490723 + ], + [ + "▁Varian", + -15.43165397644043 + ], + [ + "▁Seacoast", + -15.431694030761719 + ], + [ + "▁Servlet", + -15.431763648986816 + ], + [ + "▁Aquarian", + -15.431785583496094 + ], + [ + "▁大", + -15.431819915771484 + ], + [ + "▁NATA", + -15.431876182556152 + ], + [ + "▁leroy", + -15.431900978088379 + ], + [ + "subscriber", + -15.431905746459961 + ], + [ + "Bashir", + -15.43194580078125 + ], + [ + "▁Constantino", + -15.43197250366211 + ], + [ + "▁micromanage", + -15.431991577148438 + ], + [ + "▁Cabrio", + -15.431995391845703 + ], + [ + "▁REPL", + -15.431998252868652 + ], + [ + "▁Hinged", + -15.432005882263184 + ], + [ + "URING", + -15.43200969696045 + ], + [ + "▁happ", + -15.432026863098145 + ], + [ + "▁Alcon", + -15.432049751281738 + ], + [ + "▁livability", + -15.43208122253418 + ], + [ + "ট", + -15.432089805603027 + ], + [ + "Donate", + -15.432110786437988 + ], + [ + "▁Belvoir", + -15.43211555480957 + ], + [ + "▁Kanata", + -15.432137489318848 + ], + [ + "▁Brooch", + -15.43216323852539 + ], + [ + "▁OUTDOOR", + -15.43221378326416 + ], + [ + "▁unaccustomed", + -15.432233810424805 + ], + [ + "▁bivalve", + -15.432258605957031 + ], + [ + "▁deride", + -15.432262420654297 + ], + [ + "▁Drogba", + -15.43229866027832 + ], + [ + "Everyday", + -15.432306289672852 + ], + [ + "▁shriveled", + -15.43232536315918 + ], + [ + "▁Screwdriver", + -15.432340621948242 + ], + [ + "▁panoply", + -15.432356834411621 + ], + [ + "▁Regensburg", + -15.432388305664062 + ], + [ + "▁magnetometer", + -15.432411193847656 + ], + [ + "▁TRANSCRIPT", + -15.432480812072754 + ], + [ + "▁ratcheted", + -15.432490348815918 + ], + [ + "Independence", + -15.43249797821045 + ], + [ + "▁Haiyan", + -15.43252182006836 + ], + [ + "▁dinged", + -15.432549476623535 + ], + [ + "▁Për", + -15.43256664276123 + ], + [ + "▁escapist", + -15.432624816894531 + ], + [ + "▁Wandel", + -15.432633399963379 + ], + [ + "▁gravitating", + -15.432666778564453 + ], + [ + "▁Karolinska", + -15.432727813720703 + ], + [ + "absence", + -15.432781219482422 + ], + [ + "▁Seedling", + -15.432819366455078 + ], + [ + "▁Rubbed", + -15.432833671569824 + ], + [ + "▁Jewett", + -15.432840347290039 + ], + [ + "▁TSMC", + -15.432851791381836 + ], + [ + "▁whistleblowing", + -15.432916641235352 + ], + [ + "glamorous", + -15.432960510253906 + ], + [ + "▁futuro", + -15.433004379272461 + ], + [ + "▁tabling", + -15.433012008666992 + ], + [ + "▁groundnut", + -15.433022499084473 + ], + [ + "فت", + -15.433140754699707 + ], + [ + "▁ummm", + -15.433161735534668 + ], + [ + "Exercise", + -15.43316650390625 + ], + [ + "▁snapback", + -15.43316650390625 + ], + [ + "▁Barcelo", + -15.433183670043945 + ], + [ + "▁Estadio", + -15.43325424194336 + ], + [ + "▁Jurong", + -15.433259010314941 + ], + [ + "▁PRIMARY", + -15.43326187133789 + ], + [ + "insurgency", + -15.43327522277832 + ], + [ + "▁engrained", + -15.433293342590332 + ], + [ + "▁Abbeville", + -15.43329906463623 + ], + [ + "OGRAPHY", + -15.433320999145508 + ], + [ + "▁Bojan", + -15.433324813842773 + ], + [ + "▁Chemie", + -15.43336009979248 + ], + [ + "▁bristling", + -15.433384895324707 + ], + [ + "▁alumnae", + -15.433391571044922 + ], + [ + "▁micronutrient", + -15.433427810668945 + ], + [ + "▁thespian", + -15.433428764343262 + ], + [ + "▁saccharine", + -15.43344783782959 + ], + [ + "▁Veolia", + -15.433528900146484 + ], + [ + "▁GEICO", + -15.433548927307129 + ], + [ + "▁Timetable", + -15.433598518371582 + ], + [ + "philosophical", + -15.43363094329834 + ], + [ + "▁bhai", + -15.433639526367188 + ], + [ + "▁Pleasing", + -15.433640480041504 + ], + [ + "Merri", + -15.433643341064453 + ], + [ + "▁Truong", + -15.4336576461792 + ], + [ + "Assassin", + -15.433680534362793 + ], + [ + "▁Ciencia", + -15.433725357055664 + ], + [ + "▁leuc", + -15.433735847473145 + ], + [ + "▁sioux", + -15.433794975280762 + ], + [ + "▁haggard", + -15.43380355834961 + ], + [ + "▁schist", + -15.433808326721191 + ], + [ + "▁LIGO", + -15.433823585510254 + ], + [ + "▁Travelocity", + -15.433862686157227 + ], + [ + "▁Witter", + -15.433876037597656 + ], + [ + "▁DFC", + -15.4338960647583 + ], + [ + "▁Mandan", + -15.4339017868042 + ], + [ + "▁Kwai", + -15.433934211730957 + ], + [ + "▁Flatbush", + -15.433977127075195 + ], + [ + "encrusted", + -15.433990478515625 + ], + [ + "инг", + -15.434070587158203 + ], + [ + "▁Chryso", + -15.434085845947266 + ], + [ + "▁brigadier", + -15.434104919433594 + ], + [ + "ρε", + -15.434172630310059 + ], + [ + "▁Probst", + -15.434206008911133 + ], + [ + "▁Schutt", + -15.434208869934082 + ], + [ + "solubil", + -15.434234619140625 + ], + [ + "▁Domina", + -15.434244155883789 + ], + [ + "wringing", + -15.434250831604004 + ], + [ + "▁WiMAX", + -15.434270858764648 + ], + [ + "▁polythene", + -15.434310913085938 + ], + [ + "aḥ", + -15.434318542480469 + ], + [ + "▁Swoop", + -15.434334754943848 + ], + [ + "Ronald", + -15.434391975402832 + ], + [ + "▁RCN", + -15.434396743774414 + ], + [ + "▁Legolas", + -15.434402465820312 + ], + [ + "▁terminologies", + -15.43441390991211 + ], + [ + "punish", + -15.43443489074707 + ], + [ + "▁LRC", + -15.434450149536133 + ], + [ + "▁SOOOO", + -15.434508323669434 + ], + [ + "▁Westboro", + -15.434518814086914 + ], + [ + "▁Geotechnical", + -15.434577941894531 + ], + [ + "▁Telemedicine", + -15.43458366394043 + ], + [ + "▁Crowded", + -15.434610366821289 + ], + [ + "patreon", + -15.434614181518555 + ], + [ + "▁Varney", + -15.434662818908691 + ], + [ + "▁centigrade", + -15.434743881225586 + ], + [ + "FRP", + -15.434759140014648 + ], + [ + "▁Brenden", + -15.434762954711914 + ], + [ + "▁waka", + -15.434779167175293 + ], + [ + "она", + -15.434823989868164 + ], + [ + "▁Victorious", + -15.434855461120605 + ], + [ + "▁Exelon", + -15.434882164001465 + ], + [ + "opaque", + -15.434976577758789 + ], + [ + "▁बा", + -15.435020446777344 + ], + [ + "▁Microscopic", + -15.435028076171875 + ], + [ + "▁Winamp", + -15.435032844543457 + ], + [ + "▁Midian", + -15.435090065002441 + ], + [ + "レー", + -15.435132026672363 + ], + [ + "×9", + -15.435153007507324 + ], + [ + "TITLE", + -15.435184478759766 + ], + [ + "▁Jurisprudence", + -15.435196876525879 + ], + [ + "Cardinal", + -15.435209274291992 + ], + [ + "currencies", + -15.43523120880127 + ], + [ + "▁rescission", + -15.4352388381958 + ], + [ + "▁PLUG", + -15.435239791870117 + ], + [ + "coaches", + -15.435240745544434 + ], + [ + "∂", + -15.435258865356445 + ], + [ + "▁Shipman", + -15.435295104980469 + ], + [ + "▁eMarketer", + -15.43529987335205 + ], + [ + "▁subchapter", + -15.435318946838379 + ], + [ + "▁Crestwood", + -15.435320854187012 + ], + [ + "▁Domesday", + -15.435330390930176 + ], + [ + "▁clu", + -15.435351371765137 + ], + [ + "▁GFCI", + -15.435365676879883 + ], + [ + "iyor", + -15.435410499572754 + ], + [ + "▁hallucinogen", + -15.435453414916992 + ], + [ + "explicit", + -15.435494422912598 + ], + [ + "▁Tubbs", + -15.435505867004395 + ], + [ + "▁crossfit", + -15.435540199279785 + ], + [ + "ZONE", + -15.435564994812012 + ], + [ + "Hopkins", + -15.435585021972656 + ], + [ + "▁Doylestown", + -15.435591697692871 + ], + [ + "extremist", + -15.435637474060059 + ], + [ + "▁Fabien", + -15.435646057128906 + ], + [ + "▁Shika", + -15.435669898986816 + ], + [ + "▁Suffrage", + -15.435669898986816 + ], + [ + "▁extolled", + -15.435680389404297 + ], + [ + "▁Settled", + -15.435708045959473 + ], + [ + "▁diluent", + -15.435752868652344 + ], + [ + "▁Facade", + -15.435762405395508 + ], + [ + "CORP", + -15.435770034790039 + ], + [ + "▁Preseason", + -15.435790061950684 + ], + [ + "▁Bohl", + -15.435791015625 + ], + [ + "▁dispossession", + -15.435816764831543 + ], + [ + "peek", + -15.4358549118042 + ], + [ + "▁Vinton", + -15.43586254119873 + ], + [ + "▁Haldi", + -15.435874938964844 + ], + [ + "▁MELBOURNE", + -15.435876846313477 + ], + [ + "▁preempted", + -15.435892105102539 + ], + [ + "▁Electrochemical", + -15.435914039611816 + ], + [ + "▁Daud", + -15.435922622680664 + ], + [ + "▁Copolymer", + -15.436006546020508 + ], + [ + "▁Campylobacter", + -15.43602180480957 + ], + [ + "▁Hillsong", + -15.436030387878418 + ], + [ + "▁Deaconess", + -15.436083793640137 + ], + [ + "glyceride", + -15.436086654663086 + ], + [ + "ーム", + -15.436091423034668 + ], + [ + "sayers", + -15.43609619140625 + ], + [ + "▁cosmetically", + -15.436107635498047 + ], + [ + "▁disenfranchisement", + -15.43612003326416 + ], + [ + "marque", + -15.436128616333008 + ], + [ + "▁chessboard", + -15.436161994934082 + ], + [ + "▁JOURNEY", + -15.436186790466309 + ], + [ + "▁Quayle", + -15.436211585998535 + ], + [ + "▁Hyannis", + -15.436227798461914 + ], + [ + "▁Mustache", + -15.436235427856445 + ], + [ + "▁ulti", + -15.43624210357666 + ], + [ + "▁Benzinga", + -15.436270713806152 + ], + [ + "▁hazmat", + -15.436333656311035 + ], + [ + "▁Sofie", + -15.436351776123047 + ], + [ + "vaginal", + -15.436383247375488 + ], + [ + "▁Dragic", + -15.436385154724121 + ], + [ + "▁adelaide", + -15.436409950256348 + ], + [ + "▁thiol", + -15.436413764953613 + ], + [ + "▁Skyfall", + -15.436453819274902 + ], + [ + "▁Ecco", + -15.436456680297852 + ], + [ + "▁Kunda", + -15.436470031738281 + ], + [ + "▁oppressing", + -15.436470985412598 + ], + [ + "▁voce", + -15.436507225036621 + ], + [ + "EMR", + -15.43652057647705 + ], + [ + "▁Veera", + -15.436578750610352 + ], + [ + "cerebral", + -15.43659496307373 + ], + [ + "▁Perish", + -15.43661117553711 + ], + [ + "▁LOSSES", + -15.436631202697754 + ], + [ + "▁Filthy", + -15.436712265014648 + ], + [ + "▁pervaded", + -15.43676471710205 + ], + [ + "▁peptic", + -15.436765670776367 + ], + [ + "▁Haringey", + -15.436846733093262 + ], + [ + "▁litigious", + -15.436888694763184 + ], + [ + "▁deadbeat", + -15.436903953552246 + ], + [ + "▁Sridhar", + -15.436920166015625 + ], + [ + "例如", + -15.436932563781738 + ], + [ + "▁Sungai", + -15.43693733215332 + ], + [ + "▁photocopied", + -15.436944007873535 + ], + [ + "philosoph", + -15.436963081359863 + ], + [ + "▁sulfite", + -15.436973571777344 + ], + [ + "▁Godmother", + -15.43697452545166 + ], + [ + "▁TASTE", + -15.436989784240723 + ], + [ + "▁limerick", + -15.437005996704102 + ], + [ + "▁Trinitarian", + -15.437092781066895 + ], + [ + "▁glorifies", + -15.437094688415527 + ], + [ + "▁galloped", + -15.437116622924805 + ], + [ + "integrity", + -15.43714714050293 + ], + [ + "Descriptor", + -15.437170028686523 + ], + [ + "▁노", + -15.43718433380127 + ], + [ + "▁Mesmerizing", + -15.437211990356445 + ], + [ + "▁REGULAR", + -15.437220573425293 + ], + [ + "▁мир", + -15.437233924865723 + ], + [ + "▁Glancing", + -15.437287330627441 + ], + [ + "▁Zink", + -15.437331199645996 + ], + [ + "▁воз", + -15.437344551086426 + ], + [ + "Brite", + -15.437347412109375 + ], + [ + "▁Blei", + -15.437384605407715 + ], + [ + "▁abrogated", + -15.43740177154541 + ], + [ + "Translation", + -15.437403678894043 + ], + [ + "▁Westerly", + -15.437430381774902 + ], + [ + "▁echocardiogram", + -15.437468528747559 + ], + [ + "▁GTPase", + -15.437508583068848 + ], + [ + "▁Charlevoix", + -15.437527656555176 + ], + [ + "▁ductal", + -15.437637329101562 + ], + [ + "▁diethyl", + -15.437661170959473 + ], + [ + "▁Pleiades", + -15.437713623046875 + ], + [ + "▁Leonie", + -15.437715530395508 + ], + [ + "▁iRobot", + -15.437719345092773 + ], + [ + "▁Minimalism", + -15.437777519226074 + ], + [ + "▁unabridged", + -15.437817573547363 + ], + [ + "bitch", + -15.437836647033691 + ], + [ + "▁cichlid", + -15.437837600708008 + ], + [ + "▁Leonhard", + -15.437853813171387 + ], + [ + "▁Mathilde", + -15.437859535217285 + ], + [ + "▁Softener", + -15.437891960144043 + ], + [ + "▁habituated", + -15.437893867492676 + ], + [ + "referral", + -15.437911987304688 + ], + [ + "▁Biophysics", + -15.437919616699219 + ], + [ + "▁BINGO", + -15.43792724609375 + ], + [ + "zade", + -15.437929153442383 + ], + [ + "▁Viscose", + -15.437931060791016 + ], + [ + "▁Langton", + -15.437938690185547 + ], + [ + "boston", + -15.437941551208496 + ], + [ + "Anime", + -15.437967300415039 + ], + [ + "▁Tourney", + -15.437993049621582 + ], + [ + "▁AMZN", + -15.438030242919922 + ], + [ + "▁glycosyl", + -15.438088417053223 + ], + [ + "▁Dempster", + -15.43814754486084 + ], + [ + "▁Scarves", + -15.438170433044434 + ], + [ + "られ", + -15.438220977783203 + ], + [ + "▁PACIFIC", + -15.438236236572266 + ], + [ + "▁PATRIOT", + -15.438251495361328 + ], + [ + "▁Paredes", + -15.438265800476074 + ], + [ + "▁hmmmm", + -15.438270568847656 + ], + [ + "Sinai", + -15.438289642333984 + ], + [ + "▁Refinishing", + -15.4382905960083 + ], + [ + "▁cavort", + -15.438353538513184 + ], + [ + "▁Smitty", + -15.438404083251953 + ], + [ + "▁Rigging", + -15.43844223022461 + ], + [ + "descript", + -15.438490867614746 + ], + [ + "tomize", + -15.438526153564453 + ], + [ + "inventor", + -15.438570022583008 + ], + [ + "habba", + -15.438639640808105 + ], + [ + "Sacred", + -15.43871021270752 + ], + [ + "हि", + -15.438714981079102 + ], + [ + "▁SVU", + -15.438719749450684 + ], + [ + "▁ARRL", + -15.438776969909668 + ], + [ + "▁TUBE", + -15.438847541809082 + ], + [ + "▁INSANE", + -15.438889503479004 + ], + [ + "▁Scharf", + -15.43889045715332 + ], + [ + "▁hebben", + -15.438907623291016 + ], + [ + "▁HELOC", + -15.43895435333252 + ], + [ + "▁Amphibian", + -15.438956260681152 + ], + [ + "▁shoveled", + -15.439032554626465 + ], + [ + "ית", + -15.439059257507324 + ], + [ + "▁COLORS", + -15.439064025878906 + ], + [ + "▁ELP", + -15.439085960388184 + ], + [ + "▁spatio", + -15.439102172851562 + ], + [ + "▁Obj", + -15.439108848571777 + ], + [ + "样", + -15.439146995544434 + ], + [ + "▁Mistral", + -15.43916130065918 + ], + [ + "▁neoplasia", + -15.439196586608887 + ], + [ + "▁Hasselblad", + -15.439308166503906 + ], + [ + "▁Worries", + -15.43935775756836 + ], + [ + "▁vox", + -15.439408302307129 + ], + [ + "▁Sloppy", + -15.439499855041504 + ], + [ + "cholinesterase", + -15.43951416015625 + ], + [ + "▁concertina", + -15.439532279968262 + ], + [ + "▁oversimplified", + -15.439552307128906 + ], + [ + "▁Pincus", + -15.439584732055664 + ], + [ + "employ", + -15.439586639404297 + ], + [ + "▁Epicurean", + -15.439616203308105 + ], + [ + "▁DRIVING", + -15.4396390914917 + ], + [ + "▁oceanography", + -15.439647674560547 + ], + [ + "▁Bucher", + -15.439652442932129 + ], + [ + "▁GERMANY", + -15.43966007232666 + ], + [ + "Considering", + -15.439702033996582 + ], + [ + "▁Boneless", + -15.43970775604248 + ], + [ + "theoretic", + -15.439708709716797 + ], + [ + "HaHa", + -15.439738273620605 + ], + [ + "borrowed", + -15.439746856689453 + ], + [ + "▁Pavan", + -15.4397554397583 + ], + [ + "stomp", + -15.439789772033691 + ], + [ + "gava", + -15.439817428588867 + ], + [ + "▁conglomeration", + -15.439906120300293 + ], + [ + "лин", + -15.439908981323242 + ], + [ + "▁ersten", + -15.439916610717773 + ], + [ + "nofollow", + -15.439949035644531 + ], + [ + "literature", + -15.439984321594238 + ], + [ + "▁Bruxelles", + -15.440010070800781 + ], + [ + "▁yeezy", + -15.440033912658691 + ], + [ + "▁FDD", + -15.440056800842285 + ], + [ + "▁Bebop", + -15.440083503723145 + ], + [ + "▁PASSION", + -15.440122604370117 + ], + [ + "▁Erection", + -15.44017505645752 + ], + [ + "▁hedonism", + -15.44018268585205 + ], + [ + "▁wielder", + -15.440266609191895 + ], + [ + "▁FSP", + -15.440300941467285 + ], + [ + "Florence", + -15.440308570861816 + ], + [ + "▁Gaskin", + -15.440311431884766 + ], + [ + "▁Laff", + -15.440317153930664 + ], + [ + "▁Fokker", + -15.440340995788574 + ], + [ + "▁Bottega", + -15.440356254577637 + ], + [ + "▁Adware", + -15.440384864807129 + ], + [ + "▁BLVD", + -15.440458297729492 + ], + [ + "phishing", + -15.44046401977539 + ], + [ + "▁Nainital", + -15.440464973449707 + ], + [ + "関", + -15.440476417541504 + ], + [ + "▁FXCM", + -15.440558433532715 + ], + [ + "▁tropic", + -15.440576553344727 + ], + [ + "▁aldermen", + -15.440581321716309 + ], + [ + "Maggie", + -15.440604209899902 + ], + [ + "▁Behemoth", + -15.4406099319458 + ], + [ + "▁Profitability", + -15.440610885620117 + ], + [ + "▁Whack", + -15.440628051757812 + ], + [ + "ridine", + -15.44063663482666 + ], + [ + "▁Humpty", + -15.440662384033203 + ], + [ + "▁heatmap", + -15.440701484680176 + ], + [ + "▁Betz", + -15.440713882446289 + ], + [ + "favor", + -15.440744400024414 + ], + [ + "▁EXTREME", + -15.440767288208008 + ], + [ + "▁Emulsion", + -15.440775871276855 + ], + [ + "▁empiricism", + -15.440777778625488 + ], + [ + "kloof", + -15.440807342529297 + ], + [ + "▁Gosnell", + -15.440826416015625 + ], + [ + "retailer", + -15.440857887268066 + ], + [ + "▁Castleford", + -15.440861701965332 + ], + [ + "▁McCutcheon", + -15.440879821777344 + ], + [ + "▁irresponsibly", + -15.440879821777344 + ], + [ + "▁enthuse", + -15.440924644470215 + ], + [ + "▁би", + -15.440958976745605 + ], + [ + "少", + -15.440975189208984 + ], + [ + "▁nerv", + -15.44097900390625 + ], + [ + "Infinity", + -15.441010475158691 + ], + [ + "Liu", + -15.44101619720459 + ], + [ + "▁occidental", + -15.441024780273438 + ], + [ + "▁Smog", + -15.441052436828613 + ], + [ + "▁Clarins", + -15.441061973571777 + ], + [ + "▁Bayswater", + -15.441062927246094 + ], + [ + "▁Twenties", + -15.441107749938965 + ], + [ + "violin", + -15.441129684448242 + ], + [ + "usseau", + -15.441140174865723 + ], + [ + "▁Evro", + -15.441143035888672 + ], + [ + "▁ERW", + -15.4412260055542 + ], + [ + "▁gank", + -15.441238403320312 + ], + [ + "▁hurler", + -15.441250801086426 + ], + [ + "语", + -15.44126033782959 + ], + [ + "▁Rhodium", + -15.441276550292969 + ], + [ + "actualization", + -15.441295623779297 + ], + [ + "ALLE", + -15.4413480758667 + ], + [ + "▁Enchant", + -15.441350936889648 + ], + [ + "▁partiality", + -15.441461563110352 + ], + [ + "▁wap", + -15.44153118133545 + ], + [ + "▁amplicon", + -15.441548347473145 + ], + [ + "czny", + -15.44157886505127 + ], + [ + "▁Zoran", + -15.441585540771484 + ], + [ + "▁Hereinafter", + -15.4415864944458 + ], + [ + "Prevention", + -15.441620826721191 + ], + [ + "▁Lauf", + -15.441624641418457 + ], + [ + "▁Yippee", + -15.441632270812988 + ], + [ + "▁PATCH", + -15.441673278808594 + ], + [ + "recruitment", + -15.441676139831543 + ], + [ + "▁€40", + -15.441679954528809 + ], + [ + "Formula", + -15.441717147827148 + ], + [ + "▁sleaze", + -15.441731452941895 + ], + [ + "▁Saxton", + -15.441734313964844 + ], + [ + "▁år", + -15.441758155822754 + ], + [ + "▁Realising", + -15.441760063171387 + ], + [ + "▁Raki", + -15.441800117492676 + ], + [ + "▁Snowbird", + -15.441810607910156 + ], + [ + "▁Ekta", + -15.441818237304688 + ], + [ + "▁neutropenia", + -15.441895484924316 + ], + [ + "▁Dogecoin", + -15.441916465759277 + ], + [ + "▁Gosselin", + -15.441933631896973 + ], + [ + "▁histopathology", + -15.441938400268555 + ], + [ + "▁мин", + -15.441949844360352 + ], + [ + "▁gestural", + -15.441986083984375 + ], + [ + "▁sunbeam", + -15.44200325012207 + ], + [ + "Hugh", + -15.442024230957031 + ], + [ + "▁VIRUSES", + -15.442109107971191 + ], + [ + "eleven", + -15.442119598388672 + ], + [ + "▁Zircon", + -15.44218921661377 + ], + [ + "▁APARTMENT", + -15.442291259765625 + ], + [ + "▁Thune", + -15.442340850830078 + ], + [ + "▁ipsilateral", + -15.442352294921875 + ], + [ + "▁Fionn", + -15.442355155944824 + ], + [ + "▁Epiphone", + -15.442378997802734 + ], + [ + "▁osmo", + -15.442416191101074 + ], + [ + "honoured", + -15.442464828491211 + ], + [ + "▁Moraine", + -15.442468643188477 + ], + [ + "▁explicate", + -15.442505836486816 + ], + [ + "▁Narcan", + -15.442538261413574 + ], + [ + "▁Khon", + -15.442548751831055 + ], + [ + "threonine", + -15.442601203918457 + ], + [ + "▁OBJECT", + -15.44262409210205 + ], + [ + "▁Sanction", + -15.442647933959961 + ], + [ + "friendship", + -15.442662239074707 + ], + [ + "▁Jihadist", + -15.442720413208008 + ], + [ + "shutter", + -15.4427490234375 + ], + [ + "Columbus", + -15.442757606506348 + ], + [ + "▁Santorum", + -15.442773818969727 + ], + [ + "▁hovercraft", + -15.442852020263672 + ], + [ + "▁camino", + -15.442864418029785 + ], + [ + "▁Rexroth", + -15.44287109375 + ], + [ + "▁joomla", + -15.44287109375 + ], + [ + "▁supernovae", + -15.44287395477295 + ], + [ + "▁thieving", + -15.44288444519043 + ], + [ + "▁reassuringly", + -15.44293212890625 + ], + [ + "Chronicle", + -15.442933082580566 + ], + [ + "存", + -15.443034172058105 + ], + [ + "▁Nadir", + -15.443036079406738 + ], + [ + "▁Whitehaven", + -15.4430570602417 + ], + [ + "bruck", + -15.44306468963623 + ], + [ + "▁stooping", + -15.443069458007812 + ], + [ + "▁Gülen", + -15.443077087402344 + ], + [ + "Squared", + -15.443078994750977 + ], + [ + "▁TRAI", + -15.443119049072266 + ], + [ + "▁swatted", + -15.44312858581543 + ], + [ + "▁syncope", + -15.443146705627441 + ], + [ + "▁FOREIGN", + -15.443203926086426 + ], + [ + "funnel", + -15.443207740783691 + ], + [ + "▁Entrant", + -15.443207740783691 + ], + [ + "Faculty", + -15.443235397338867 + ], + [ + "▁Crone", + -15.443263053894043 + ], + [ + "▁commie", + -15.44327163696289 + ], + [ + "▁collude", + -15.44327449798584 + ], + [ + "▁Grenier", + -15.443317413330078 + ], + [ + "ως", + -15.44334602355957 + ], + [ + "▁Poppe", + -15.443353652954102 + ], + [ + "mimetic", + -15.443357467651367 + ], + [ + "▁Rorschach", + -15.44336986541748 + ], + [ + "▁smurf", + -15.44338607788086 + ], + [ + "▁Vaud", + -15.443408966064453 + ], + [ + "▁Larnaca", + -15.443411827087402 + ], + [ + "RELATED", + -15.443450927734375 + ], + [ + "▁Posing", + -15.443451881408691 + ], + [ + "5555", + -15.443458557128906 + ], + [ + "▁Heathen", + -15.443464279174805 + ], + [ + "▁GRB", + -15.443469047546387 + ], + [ + "▁Apparent", + -15.443535804748535 + ], + [ + "▁Ammar", + -15.4435453414917 + ], + [ + "GIF", + -15.443597793579102 + ], + [ + "▁ridgeline", + -15.443633079528809 + ], + [ + "▁SOOO", + -15.44365119934082 + ], + [ + "▁jailbroken", + -15.443656921386719 + ], + [ + "▁Lonergan", + -15.443685531616211 + ], + [ + "Conversation", + -15.443692207336426 + ], + [ + "▁compasses", + -15.443702697753906 + ], + [ + "▁synoptic", + -15.443724632263184 + ], + [ + "▁seder", + -15.443730354309082 + ], + [ + "▁shunted", + -15.443798065185547 + ], + [ + "▁Sailfish", + -15.443855285644531 + ], + [ + "▁heritability", + -15.443875312805176 + ], + [ + "▁fraiche", + -15.44389820098877 + ], + [ + "trifluoro", + -15.443902969360352 + ], + [ + "TRONIC", + -15.44390869140625 + ], + [ + "▁Plantronics", + -15.443912506103516 + ], + [ + "▁Bereavement", + -15.443951606750488 + ], + [ + "▁measurably", + -15.443951606750488 + ], + [ + "▁Modafinil", + -15.44397258758545 + ], + [ + "▁mechanization", + -15.44397258758545 + ], + [ + "aloud", + -15.443987846374512 + ], + [ + "▁divulging", + -15.44399356842041 + ], + [ + "星", + -15.444043159484863 + ], + [ + "▁luau", + -15.444053649902344 + ], + [ + "▁Ulcer", + -15.444085121154785 + ], + [ + "IOL", + -15.444089889526367 + ], + [ + "▁siphoning", + -15.444096565246582 + ], + [ + "modify", + -15.444101333618164 + ], + [ + "▁Finanz", + -15.444140434265137 + ], + [ + "▁Deena", + -15.4441556930542 + ], + [ + "▁FreakScore", + -15.444189071655273 + ], + [ + "▁Mantua", + -15.444252014160156 + ], + [ + "▁coloriage", + -15.444276809692383 + ], + [ + "▁favicon", + -15.44430160522461 + ], + [ + "▁Confronting", + -15.444305419921875 + ], + [ + "▁Cayo", + -15.444337844848633 + ], + [ + "▁Colter", + -15.444360733032227 + ], + [ + "enhaus", + -15.44438648223877 + ], + [ + "▁NaOH", + -15.44441032409668 + ], + [ + "▁Synchro", + -15.444413185119629 + ], + [ + "▁Barça", + -15.444418907165527 + ], + [ + "▁Kimchi", + -15.44444751739502 + ], + [ + "▁quiere", + -15.444451332092285 + ], + [ + "compile", + -15.444456100463867 + ], + [ + "▁dulcimer", + -15.444463729858398 + ], + [ + "▁gpg", + -15.444483757019043 + ], + [ + "Pleasure", + -15.444520950317383 + ], + [ + "clark", + -15.44453239440918 + ], + [ + "uzhou", + -15.444533348083496 + ], + [ + "weaving", + -15.444533348083496 + ], + [ + "vermectin", + -15.444597244262695 + ], + [ + "▁Tamra", + -15.444602966308594 + ], + [ + "▁Modifying", + -15.44460678100586 + ], + [ + "GROUND", + -15.44462776184082 + ], + [ + "▁Whiz", + -15.444695472717285 + ], + [ + "▁Из", + -15.444721221923828 + ], + [ + "▁Schuh", + -15.444754600524902 + ], + [ + "▁scop", + -15.444775581359863 + ], + [ + "machus", + -15.444782257080078 + ], + [ + "▁Malignant", + -15.444783210754395 + ], + [ + "butadiene", + -15.444803237915039 + ], + [ + "▁latencies", + -15.444836616516113 + ], + [ + "▁Horizonte", + -15.444849014282227 + ], + [ + "▁KEVIN", + -15.444864273071289 + ], + [ + "▁chainring", + -15.444880485534668 + ], + [ + "▁Seaver", + -15.444925308227539 + ], + [ + "▁bajo", + -15.444926261901855 + ], + [ + "▁crosslinking", + -15.444950103759766 + ], + [ + "▁tesco", + -15.445003509521484 + ], + [ + "▁grandstanding", + -15.445025444030762 + ], + [ + "▁Postscript", + -15.44505500793457 + ], + [ + "порт", + -15.445066452026367 + ], + [ + "▁Grote", + -15.445107460021973 + ], + [ + "▁Krupp", + -15.445204734802246 + ], + [ + "▁unexploded", + -15.445219993591309 + ], + [ + "▁dressmaker", + -15.445239067077637 + ], + [ + "rumble", + -15.445261001586914 + ], + [ + "▁diamante", + -15.445310592651367 + ], + [ + "▁Morrisville", + -15.44532299041748 + ], + [ + "endorsed", + -15.445337295532227 + ], + [ + "▁Sugarloaf", + -15.445344924926758 + ], + [ + "▁hacienda", + -15.445345878601074 + ], + [ + "▁Jamaal", + -15.44534969329834 + ], + [ + "ağ", + -15.445379257202148 + ], + [ + "▁Tanah", + -15.445428848266602 + ], + [ + "FPO", + -15.445470809936523 + ], + [ + "▁saturating", + -15.445474624633789 + ], + [ + "▁MARVEL", + -15.44549560546875 + ], + [ + "▁Rathbone", + -15.445565223693848 + ], + [ + "▁Muzz", + -15.44556999206543 + ], + [ + "▁Heresy", + -15.445613861083984 + ], + [ + "▁Scav", + -15.4456148147583 + ], + [ + "▁Guerlain", + -15.445619583129883 + ], + [ + "▁Quintero", + -15.445647239685059 + ], + [ + "чер", + -15.445704460144043 + ], + [ + "▁effexor", + -15.445719718933105 + ], + [ + "▁existentialist", + -15.44573974609375 + ], + [ + "▁Ripped", + -15.445758819580078 + ], + [ + "scandal", + -15.445810317993164 + ], + [ + "▁moraine", + -15.445876121520996 + ], + [ + "▁Geneseo", + -15.445932388305664 + ], + [ + "▁Issaquah", + -15.445969581604004 + ], + [ + "連", + -15.445969581604004 + ], + [ + "▁Limburg", + -15.44597339630127 + ], + [ + "▁Unconventional", + -15.445979118347168 + ], + [ + "synuclein", + -15.445990562438965 + ], + [ + "▁Derri", + -15.446023941040039 + ], + [ + "▁Montebello", + -15.446043968200684 + ], + [ + "▁Habana", + -15.446049690246582 + ], + [ + "▁Interfax", + -15.446065902709961 + ], + [ + "▁Datasheet", + -15.446086883544922 + ], + [ + "shrunk", + -15.446094512939453 + ], + [ + "CAMP", + -15.446122169494629 + ], + [ + "▁Schaller", + -15.446150779724121 + ], + [ + "▁quirkiness", + -15.44615650177002 + ], + [ + "▁Drawstring", + -15.446205139160156 + ], + [ + "▁Cataclysm", + -15.446219444274902 + ], + [ + "▁freind", + -15.446270942687988 + ], + [ + "▁benzoyl", + -15.446279525756836 + ], + [ + "▁Musca", + -15.446283340454102 + ], + [ + "▁PUFA", + -15.446314811706543 + ], + [ + "▁Shraddha", + -15.446324348449707 + ], + [ + "▁wriggling", + -15.446324348449707 + ], + [ + "▁piñata", + -15.446345329284668 + ], + [ + "▁Increment", + -15.446365356445312 + ], + [ + "▁Meigs", + -15.446428298950195 + ], + [ + "helix", + -15.446440696716309 + ], + [ + "▁MasterChef", + -15.446476936340332 + ], + [ + "▁Youtuber", + -15.446529388427734 + ], + [ + "havan", + -15.446560859680176 + ], + [ + "▁counterfactual", + -15.446582794189453 + ], + [ + "▁harpist", + -15.446595191955566 + ], + [ + "▁peppercorn", + -15.44660758972168 + ], + [ + "▁REPORTER", + -15.446637153625488 + ], + [ + "мет", + -15.446690559387207 + ], + [ + "▁McQuaid", + -15.446699142456055 + ], + [ + "▁Dendro", + -15.446755409240723 + ], + [ + "▁singlehandedly", + -15.44676399230957 + ], + [ + "▁caracter", + -15.446789741516113 + ], + [ + "▁fumigation", + -15.446824073791504 + ], + [ + "Antoine", + -15.446831703186035 + ], + [ + "▁Vaulted", + -15.4468355178833 + ], + [ + "▁Rococo", + -15.446842193603516 + ], + [ + "▁deGrom", + -15.446846008300781 + ], + [ + "INNER", + -15.446846961975098 + ], + [ + "ugging", + -15.446859359741211 + ], + [ + "▁ferritin", + -15.446887016296387 + ], + [ + "▁Cesaro", + -15.446887969970703 + ], + [ + "▁Stoneware", + -15.446907997131348 + ], + [ + "mondi", + -15.44692325592041 + ], + [ + "▁SRH", + -15.446931838989258 + ], + [ + "▁marksmanship", + -15.44694995880127 + ], + [ + "▁Narcissus", + -15.446990966796875 + ], + [ + "Exotic", + -15.447011947631836 + ], + [ + "▁redistributing", + -15.447021484375 + ], + [ + "evoked", + -15.447029113769531 + ], + [ + "▁Calam", + -15.447054862976074 + ], + [ + "NSAID", + -15.447071075439453 + ], + [ + "jumbo", + -15.447134017944336 + ], + [ + "▁CAREFULLY", + -15.44718074798584 + ], + [ + "▁Spezia", + -15.447203636169434 + ], + [ + "▁honeymooners", + -15.44720458984375 + ], + [ + "▁Kehoe", + -15.447211265563965 + ], + [ + "▁macromolecules", + -15.447216033935547 + ], + [ + "▁DELTA", + -15.447254180908203 + ], + [ + "▁Bhagwan", + -15.447327613830566 + ], + [ + "كن", + -15.447339057922363 + ], + [ + "▁Irrational", + -15.447349548339844 + ], + [ + "▁GIR", + -15.447351455688477 + ], + [ + "▁Kotz", + -15.447382926940918 + ], + [ + "walmart", + -15.4473876953125 + ], + [ + "JUN", + -15.447400093078613 + ], + [ + "▁Pleated", + -15.447404861450195 + ], + [ + "huff", + -15.447425842285156 + ], + [ + "▁XRD", + -15.447469711303711 + ], + [ + "▁JWT", + -15.447511672973633 + ], + [ + "вар", + -15.447513580322266 + ], + [ + "ssssss", + -15.447517395019531 + ], + [ + "▁verizon", + -15.44752025604248 + ], + [ + "▁fescue", + -15.44753360748291 + ], + [ + "▁Pail", + -15.44754695892334 + ], + [ + "▁AREAS", + -15.447628021240234 + ], + [ + "▁periodicity", + -15.44765853881836 + ], + [ + "ARTH", + -15.447664260864258 + ], + [ + "▁Fallow", + -15.447694778442383 + ], + [ + "▁AMBER", + -15.447731971740723 + ], + [ + "andrea", + -15.447747230529785 + ], + [ + "ukur", + -15.447783470153809 + ], + [ + "▁Crematorium", + -15.447783470153809 + ], + [ + "Gloria", + -15.4478120803833 + ], + [ + "heroic", + -15.4478178024292 + ], + [ + "▁RELATIONSHIP", + -15.44782543182373 + ], + [ + "▁Tauri", + -15.44782829284668 + ], + [ + "▁Aquamarine", + -15.447834014892578 + ], + [ + "guen", + -15.447845458984375 + ], + [ + "▁Rhododendron", + -15.447929382324219 + ], + [ + "▁Oriole", + -15.447933197021484 + ], + [ + "▁Offside", + -15.447969436645508 + ], + [ + "eggio", + -15.447972297668457 + ], + [ + "▁smokin", + -15.447977066040039 + ], + [ + "▁GraphQL", + -15.44802188873291 + ], + [ + "Drake", + -15.448033332824707 + ], + [ + "▁newsreel", + -15.448077201843262 + ], + [ + "▁BikeBandit", + -15.448116302490234 + ], + [ + "▁undaunted", + -15.448118209838867 + ], + [ + "▁Mihal", + -15.44813060760498 + ], + [ + "▁kern", + -15.448140144348145 + ], + [ + "▁Candies", + -15.448145866394043 + ], + [ + "opposition", + -15.448172569274902 + ], + [ + "ventolin", + -15.448193550109863 + ], + [ + "Buddhist", + -15.448195457458496 + ], + [ + "▁Earphone", + -15.448198318481445 + ], + [ + "▁Respectful", + -15.44821548461914 + ], + [ + "▁iteratively", + -15.44821834564209 + ], + [ + "▁онлайн", + -15.448222160339355 + ], + [ + "▁Expectation", + -15.448294639587402 + ], + [ + "▁neuropsychiatric", + -15.448309898376465 + ], + [ + "quinol", + -15.448318481445312 + ], + [ + "envelope", + -15.448383331298828 + ], + [ + "▁countervailing", + -15.448389053344727 + ], + [ + "vien", + -15.448430061340332 + ], + [ + "▁Seaview", + -15.448442459106445 + ], + [ + "▁COSMIC", + -15.448457717895508 + ], + [ + "▁secondarily", + -15.448515892028809 + ], + [ + "▁Khazar", + -15.448542594909668 + ], + [ + "▁immigrating", + -15.448555946350098 + ], + [ + "tetrahydrocannabinol", + -15.448576927185059 + ], + [ + "▁Swale", + -15.448600769042969 + ], + [ + "▁Hedwig", + -15.44860553741455 + ], + [ + "ISIL", + -15.448620796203613 + ], + [ + "▁Cael", + -15.44863224029541 + ], + [ + "HALL", + -15.44863510131836 + ], + [ + "▁baptizing", + -15.448639869689941 + ], + [ + "▁rehashed", + -15.448640823364258 + ], + [ + "▁Fortnight", + -15.448654174804688 + ], + [ + "▁pursing", + -15.44865608215332 + ], + [ + "▁Gutiérrez", + -15.448660850524902 + ], + [ + "▁Spout", + -15.448700904846191 + ], + [ + "▁Redmayne", + -15.448702812194824 + ], + [ + "対", + -15.448750495910645 + ], + [ + "▁codification", + -15.44876480102539 + ], + [ + "▁FEST", + -15.448776245117188 + ], + [ + "▁Consol", + -15.448814392089844 + ], + [ + "▁Lithograph", + -15.448856353759766 + ], + [ + "▁Dienst", + -15.4489107131958 + ], + [ + "▁Horvat", + -15.448921203613281 + ], + [ + "类", + -15.448921203613281 + ], + [ + "psychiatry", + -15.44892406463623 + ], + [ + "▁Flak", + -15.448988914489746 + ], + [ + "وان", + -15.449054718017578 + ], + [ + "▁Leonidas", + -15.449058532714844 + ], + [ + "▁Transformative", + -15.449088096618652 + ], + [ + "▁KSU", + -15.449136734008789 + ], + [ + "azzar", + -15.449190139770508 + ], + [ + "▁vetiver", + -15.449214935302734 + ], + [ + "▁jewelery", + -15.449223518371582 + ], + [ + "▁Chiro", + -15.44923210144043 + ], + [ + "▁Chrysalis", + -15.449254989624023 + ], + [ + "Healthcare", + -15.44926643371582 + ], + [ + "▁Tomás", + -15.449273109436035 + ], + [ + "▁Orbán", + -15.44930648803711 + ], + [ + "Rhythm", + -15.449346542358398 + ], + [ + "riatic", + -15.449348449707031 + ], + [ + "▁Wagoner", + -15.44937801361084 + ], + [ + "sunset", + -15.449389457702637 + ], + [ + "▁Espanyol", + -15.449392318725586 + ], + [ + "▁Biomechanics", + -15.44943618774414 + ], + [ + "▁Bogg", + -15.449437141418457 + ], + [ + "crease", + -15.449520111083984 + ], + [ + "▁Marchionne", + -15.449540138244629 + ], + [ + "▁Kiffin", + -15.449639320373535 + ], + [ + "automatically", + -15.449640274047852 + ], + [ + "▁Michaud", + -15.449673652648926 + ], + [ + "▁Microarray", + -15.449688911437988 + ], + [ + "▁safflower", + -15.44970989227295 + ], + [ + "▁largo", + -15.449756622314453 + ], + [ + "cdot", + -15.449761390686035 + ], + [ + "▁Accelerating", + -15.449812889099121 + ], + [ + "▁LOU", + -15.449838638305664 + ], + [ + "▁Kittle", + -15.44985294342041 + ], + [ + "▁NERC", + -15.449877738952637 + ], + [ + "▁Romford", + -15.449892044067383 + ], + [ + "种", + -15.449909210205078 + ], + [ + "▁Stenson", + -15.449911117553711 + ], + [ + "छ", + -15.44991397857666 + ], + [ + "▁appending", + -15.449934005737305 + ], + [ + "▁chesterfield", + -15.449936866760254 + ], + [ + "▁Disclose", + -15.44996452331543 + ], + [ + "ligand", + -15.450091361999512 + ], + [ + "carelli", + -15.450104713439941 + ], + [ + "▁bellowing", + -15.450133323669434 + ], + [ + "▁Swish", + -15.450139045715332 + ], + [ + "pretend", + -15.450143814086914 + ], + [ + "три", + -15.450169563293457 + ], + [ + "▁posttraumatic", + -15.450173377990723 + ], + [ + "tuzumab", + -15.450191497802734 + ], + [ + "▁Rasch", + -15.450201988220215 + ], + [ + "▁Tkachuk", + -15.450207710266113 + ], + [ + "▁EXHIBIT", + -15.45029067993164 + ], + [ + "modular", + -15.450292587280273 + ], + [ + "▁Initiated", + -15.45030403137207 + ], + [ + "▁Lindner", + -15.45030403137207 + ], + [ + "▁Expressive", + -15.450325012207031 + ], + [ + "brutal", + -15.45034408569336 + ], + [ + "კ", + -15.450353622436523 + ], + [ + "▁Avram", + -15.450358390808105 + ], + [ + "cendi", + -15.450417518615723 + ], + [ + "▁abdicated", + -15.450475692749023 + ], + [ + "▁Knysna", + -15.450521469116211 + ], + [ + "▁Renfrewshire", + -15.45052719116211 + ], + [ + "▁Meriden", + -15.450581550598145 + ], + [ + "▁TGT", + -15.45059585571289 + ], + [ + "▁tempestuous", + -15.450607299804688 + ], + [ + "UZZ", + -15.45065975189209 + ], + [ + "▁Kloss", + -15.450706481933594 + ], + [ + "▁bleary", + -15.450718879699707 + ], + [ + "▁interweaving", + -15.450749397277832 + ], + [ + "▁microchipped", + -15.450790405273438 + ], + [ + "▁rapporteur", + -15.450875282287598 + ], + [ + "▁Datacenter", + -15.450926780700684 + ], + [ + "▁divot", + -15.450933456420898 + ], + [ + "▁WOL", + -15.450936317443848 + ], + [ + "▁behove", + -15.45095157623291 + ], + [ + "▁Liturgical", + -15.450961112976074 + ], + [ + "اق", + -15.450963973999023 + ], + [ + "▁rotund", + -15.450979232788086 + ], + [ + "▁sunglass", + -15.450979232788086 + ], + [ + "▁filtrate", + -15.451040267944336 + ], + [ + "▁hammerhead", + -15.45104694366455 + ], + [ + "▁Yazd", + -15.451051712036133 + ], + [ + "▁STRIKE", + -15.451077461242676 + ], + [ + "▁Wycliffe", + -15.451103210449219 + ], + [ + "▁Kolbe", + -15.451153755187988 + ], + [ + "▁BONE", + -15.45116138458252 + ], + [ + "▁Chronological", + -15.451183319091797 + ], + [ + "▁Zanesville", + -15.451211929321289 + ], + [ + "▁과", + -15.451214790344238 + ], + [ + "▁LFA", + -15.451223373413086 + ], + [ + "▁daffodil", + -15.451241493225098 + ], + [ + "▁destitution", + -15.451249122619629 + ], + [ + "▁pickleball", + -15.451251983642578 + ], + [ + "Saturn", + -15.451254844665527 + ], + [ + "▁Tamir", + -15.451323509216309 + ], + [ + "Madam", + -15.451340675354004 + ], + [ + "BTW", + -15.451366424560547 + ], + [ + "▁Telnet", + -15.451406478881836 + ], + [ + "▁traf", + -15.451430320739746 + ], + [ + "TIF", + -15.451488494873047 + ], + [ + "▁Reciprocal", + -15.451525688171387 + ], + [ + "▁Credibility", + -15.451531410217285 + ], + [ + "▁Haque", + -15.451559066772461 + ], + [ + "▁Multifunction", + -15.451560020446777 + ], + [ + "▁capacious", + -15.451574325561523 + ], + [ + "▁Ivanovic", + -15.451587677001953 + ], + [ + "▁Liana", + -15.451616287231445 + ], + [ + "accomplish", + -15.451618194580078 + ], + [ + "▁twitchy", + -15.45164966583252 + ], + [ + "▁FOL", + -15.451676368713379 + ], + [ + "▁trespasses", + -15.451698303222656 + ], + [ + "▁monocular", + -15.45171070098877 + ], + [ + "Myanmar", + -15.451732635498047 + ], + [ + "Forgive", + -15.451753616333008 + ], + [ + "照", + -15.451778411865234 + ], + [ + "▁debilitated", + -15.451790809631348 + ], + [ + "iparous", + -15.45185375213623 + ], + [ + "▁DoubleClick", + -15.45191764831543 + ], + [ + "▁serenaded", + -15.45192813873291 + ], + [ + "▁Couturier", + -15.451966285705566 + ], + [ + "стра", + -15.451971054077148 + ], + [ + "▁Ratliff", + -15.452007293701172 + ], + [ + "超", + -15.452061653137207 + ], + [ + "▁troubadour", + -15.452071189880371 + ], + [ + "Vertical", + -15.452091217041016 + ], + [ + "▁physicochemical", + -15.452113151550293 + ], + [ + "▁Dirham", + -15.452131271362305 + ], + [ + "▁Naturalization", + -15.452177047729492 + ], + [ + "▁brussel", + -15.452177047729492 + ], + [ + "▁Wiebe", + -15.452180862426758 + ], + [ + "▁Rhoades", + -15.452244758605957 + ], + [ + "Otherwise", + -15.452274322509766 + ], + [ + "▁renminbi", + -15.452280044555664 + ], + [ + "▁HOU", + -15.452351570129395 + ], + [ + "▁patrician", + -15.45236587524414 + ], + [ + "▁Sibling", + -15.452370643615723 + ], + [ + "▁leggy", + -15.452428817749023 + ], + [ + "▁Menzel", + -15.452441215515137 + ], + [ + "▁emulsify", + -15.452447891235352 + ], + [ + "▁장", + -15.452461242675781 + ], + [ + "Progressive", + -15.452463150024414 + ], + [ + "EBC", + -15.452500343322754 + ], + [ + "▁Omarosa", + -15.452507019042969 + ], + [ + "РІ", + -15.452542304992676 + ], + [ + "▁회", + -15.4525728225708 + ], + [ + "جا", + -15.452580451965332 + ], + [ + "▁edgier", + -15.45258903503418 + ], + [ + "▁meekness", + -15.452672004699707 + ], + [ + "▁Faculties", + -15.452678680419922 + ], + [ + "▁Panik", + -15.45273208618164 + ], + [ + "▁ASSEMBLY", + -15.452762603759766 + ], + [ + "▁embolization", + -15.452762603759766 + ], + [ + "sterreich", + -15.452847480773926 + ], + [ + "Rhode", + -15.452876091003418 + ], + [ + "▁Putra", + -15.452876091003418 + ], + [ + "▁moroccan", + -15.452888488769531 + ], + [ + "▁Skegness", + -15.452930450439453 + ], + [ + "painter", + -15.45294189453125 + ], + [ + "pipeline", + -15.452948570251465 + ], + [ + "▁estuarine", + -15.452950477600098 + ], + [ + "physicist", + -15.452973365783691 + ], + [ + "▁Söder", + -15.452983856201172 + ], + [ + "▁yucca", + -15.45305061340332 + ], + [ + "▁강", + -15.453083038330078 + ], + [ + "▁Bristle", + -15.453104019165039 + ], + [ + "Milli", + -15.453119277954102 + ], + [ + "▁Scythian", + -15.453119277954102 + ], + [ + "सा", + -15.453137397766113 + ], + [ + "Priority", + -15.45313835144043 + ], + [ + "▁Moriah", + -15.453146934509277 + ], + [ + "▁Neer", + -15.453158378601074 + ], + [ + "▁Shriners", + -15.453158378601074 + ], + [ + "▁PHYS", + -15.453217506408691 + ], + [ + "▁RSF", + -15.453217506408691 + ], + [ + "Birmingham", + -15.453237533569336 + ], + [ + "▁Demonic", + -15.453245162963867 + ], + [ + "atite", + -15.453272819519043 + ], + [ + "▁meningococcal", + -15.453287124633789 + ], + [ + "TTL", + -15.453300476074219 + ], + [ + "▁RKO", + -15.453354835510254 + ], + [ + "▁Tsonga", + -15.453357696533203 + ], + [ + "▁Anjou", + -15.453363418579102 + ], + [ + "▁Phenyl", + -15.453381538391113 + ], + [ + "▁Kemba", + -15.453407287597656 + ], + [ + "▁Admitting", + -15.453454971313477 + ], + [ + "▁gén", + -15.453460693359375 + ], + [ + "ocera", + -15.453463554382324 + ], + [ + "▁Brak", + -15.453486442565918 + ], + [ + "▁Fayose", + -15.453487396240234 + ], + [ + "▁Sedation", + -15.453512191772461 + ], + [ + "▁Schlie", + -15.453537940979004 + ], + [ + "▁Swamiji", + -15.453570365905762 + ], + [ + "▁Calderdale", + -15.453584671020508 + ], + [ + "▁Menagerie", + -15.453601837158203 + ], + [ + "▁Scammers", + -15.45360279083252 + ], + [ + "disney", + -15.453630447387695 + ], + [ + "Loren", + -15.453657150268555 + ], + [ + "▁Mickle", + -15.453683853149414 + ], + [ + "▁Franconia", + -15.453699111938477 + ], + [ + "IBILITY", + -15.453702926635742 + ], + [ + "wedge", + -15.453705787658691 + ], + [ + "▁stalagmite", + -15.45376968383789 + ], + [ + "▁idolized", + -15.453824996948242 + ], + [ + "آ", + -15.453847885131836 + ], + [ + "▁Heraklion", + -15.453853607177734 + ], + [ + "▁panasonic", + -15.453853607177734 + ], + [ + "ophora", + -15.453863143920898 + ], + [ + "ップ", + -15.45387077331543 + ], + [ + "cousin", + -15.453898429870605 + ], + [ + "▁Tsuru", + -15.453963279724121 + ], + [ + "▁Changelly", + -15.453977584838867 + ], + [ + "▁Panerai", + -15.4539794921875 + ], + [ + "Bloody", + -15.453989028930664 + ], + [ + "▁Procrastination", + -15.454000473022461 + ], + [ + "▁Nemanja", + -15.45400333404541 + ], + [ + "▁recog", + -15.454041481018066 + ], + [ + "▁acquiesced", + -15.454056739807129 + ], + [ + "LAKE", + -15.454079627990723 + ], + [ + "Deut", + -15.454090118408203 + ], + [ + "▁shipbuilder", + -15.45414924621582 + ], + [ + "LGBTQ", + -15.45415210723877 + ], + [ + "▁ClickBank", + -15.454160690307617 + ], + [ + "schluss", + -15.454203605651855 + ], + [ + "▁Cheval", + -15.454218864440918 + ], + [ + "▁uneasily", + -15.454232215881348 + ], + [ + "▁Spira", + -15.454240798950195 + ], + [ + "▁Lopetegui", + -15.454253196716309 + ], + [ + "▁Murry", + -15.454285621643066 + ], + [ + "▁Disarmament", + -15.454316139221191 + ], + [ + "▁Hartnell", + -15.45433521270752 + ], + [ + "▁Ми", + -15.45434284210205 + ], + [ + "▁Kidderminster", + -15.45435905456543 + ], + [ + "▁Rasputin", + -15.454380989074707 + ], + [ + "▁OOO", + -15.454398155212402 + ], + [ + "ERATION", + -15.454469680786133 + ], + [ + "▁waaaay", + -15.45447063446045 + ], + [ + "Entrepreneur", + -15.45451831817627 + ], + [ + "▁stepdad", + -15.454544067382812 + ], + [ + "Feedback", + -15.454564094543457 + ], + [ + "▁abilify", + -15.45458984375 + ], + [ + "▁Hurray", + -15.454607009887695 + ], + [ + "▁Gosport", + -15.454686164855957 + ], + [ + "GROUP", + -15.454710960388184 + ], + [ + "▁Savant", + -15.454797744750977 + ], + [ + "▁Bethenny", + -15.454798698425293 + ], + [ + "▁Rubbing", + -15.454798698425293 + ], + [ + "▁Intricate", + -15.454808235168457 + ], + [ + "▁ATPase", + -15.454818725585938 + ], + [ + "medieval", + -15.454862594604492 + ], + [ + "▁Prater", + -15.454862594604492 + ], + [ + "▁Neuman", + -15.454864501953125 + ], + [ + "▁trapezoidal", + -15.454899787902832 + ], + [ + "lesha", + -15.454913139343262 + ], + [ + "▁RZR", + -15.454913139343262 + ], + [ + "▁Ï", + -15.454943656921387 + ], + [ + "▁Jago", + -15.454949378967285 + ], + [ + "▁Futurist", + -15.454991340637207 + ], + [ + "Gloss", + -15.455028533935547 + ], + [ + "Рё", + -15.455034255981445 + ], + [ + "▁replanting", + -15.455035209655762 + ], + [ + "▁vicissitudes", + -15.45505142211914 + ], + [ + "▁Theodora", + -15.45505428314209 + ], + [ + "NIB", + -15.455074310302734 + ], + [ + "Stripe", + -15.455076217651367 + ], + [ + "▁Macfarlane", + -15.455135345458984 + ], + [ + "SOURCE", + -15.455164909362793 + ], + [ + "▁Yelich", + -15.45517349243164 + ], + [ + "▁Bipartisan", + -15.45517635345459 + ], + [ + "▁hillbilly", + -15.45519733428955 + ], + [ + "▁Riek", + -15.455241203308105 + ], + [ + "▁pooches", + -15.455254554748535 + ], + [ + "▁Pettigrew", + -15.45526123046875 + ], + [ + "فا", + -15.455288887023926 + ], + [ + "Becoming", + -15.455302238464355 + ], + [ + "rilli", + -15.455307960510254 + ], + [ + "▁OFDM", + -15.455309867858887 + ], + [ + "▁johnny", + -15.455328941345215 + ], + [ + "▁blastocyst", + -15.455339431762695 + ], + [ + "▁Dexterity", + -15.455342292785645 + ], + [ + "ONLY", + -15.45534610748291 + ], + [ + "thorax", + -15.455384254455566 + ], + [ + "dotted", + -15.455390930175781 + ], + [ + "▁DeLuca", + -15.455406188964844 + ], + [ + "▁Ngorongoro", + -15.455451011657715 + ], + [ + "보다", + -15.455463409423828 + ], + [ + "olide", + -15.455488204956055 + ], + [ + "▁emigrating", + -15.455492973327637 + ], + [ + "▁provable", + -15.455535888671875 + ], + [ + "medizin", + -15.455587387084961 + ], + [ + "▁sonogram", + -15.455597877502441 + ], + [ + "ός", + -15.455643653869629 + ], + [ + "4444", + -15.455646514892578 + ], + [ + "▁Reznor", + -15.455653190612793 + ], + [ + "ικό", + -15.455659866333008 + ], + [ + "▁INSIDER", + -15.455665588378906 + ], + [ + "▁Delphine", + -15.455669403076172 + ], + [ + "▁WALKER", + -15.455766677856445 + ], + [ + "▁Decode", + -15.45579719543457 + ], + [ + "▁Dominance", + -15.455811500549316 + ], + [ + "▁Emmons", + -15.455812454223633 + ], + [ + "▁Nuneaton", + -15.455829620361328 + ], + [ + "▼", + -15.455862998962402 + ], + [ + "▁SEPARATE", + -15.455894470214844 + ], + [ + "MOC", + -15.45589828491211 + ], + [ + "▁Concur", + -15.455901145935059 + ], + [ + "▁disambiguation", + -15.455904006958008 + ], + [ + "▁SURPRISE", + -15.455913543701172 + ], + [ + "▁EMBED", + -15.455924987792969 + ], + [ + "▁Kwanzaa", + -15.455934524536133 + ], + [ + "▁SIGNAL", + -15.455936431884766 + ], + [ + "raught", + -15.45599365234375 + ], + [ + "popescu", + -15.456021308898926 + ], + [ + "Competition", + -15.456023216247559 + ], + [ + "logix", + -15.456040382385254 + ], + [ + "▁openSUSE", + -15.456040382385254 + ], + [ + "▁subsoil", + -15.456110954284668 + ], + [ + "Montana", + -15.456111907958984 + ], + [ + "ている", + -15.4561128616333 + ], + [ + "Philippians", + -15.4561185836792 + ], + [ + "ého", + -15.456121444702148 + ], + [ + "▁hydride", + -15.45612621307373 + ], + [ + "▁Summerfield", + -15.456136703491211 + ], + [ + "▁blackmailing", + -15.456159591674805 + ], + [ + "Crisis", + -15.45619010925293 + ], + [ + "▁Nielson", + -15.456194877624512 + ], + [ + "▁Embedding", + -15.4562349319458 + ], + [ + "▁Charmaine", + -15.456255912780762 + ], + [ + "▁TANF", + -15.456259727478027 + ], + [ + "▁gangrene", + -15.456305503845215 + ], + [ + "▁Commerzbank", + -15.456313133239746 + ], + [ + "▁henchman", + -15.45638656616211 + ], + [ + "▁Harney", + -15.456411361694336 + ], + [ + "▁Decathlon", + -15.456439018249512 + ], + [ + "▁swaddling", + -15.456460952758789 + ], + [ + "reddit", + -15.456487655639648 + ], + [ + "▁Policymakers", + -15.456522941589355 + ], + [ + "▁Sumatran", + -15.456533432006836 + ], + [ + "▁fedex", + -15.456542015075684 + ], + [ + "wulf", + -15.45654582977295 + ], + [ + "imposing", + -15.456591606140137 + ], + [ + "▁UNIVERSAL", + -15.456607818603516 + ], + [ + "與", + -15.456612586975098 + ], + [ + "Yea", + -15.456624031066895 + ], + [ + "67531", + -15.456633567810059 + ], + [ + "▁briar", + -15.456645965576172 + ], + [ + "▁Tyrann", + -15.456660270690918 + ], + [ + "▁нас", + -15.456661224365234 + ], + [ + "강", + -15.456684112548828 + ], + [ + "▁karena", + -15.456696510314941 + ], + [ + "anyway", + -15.456768989562988 + ], + [ + "▁delaware", + -15.45678997039795 + ], + [ + "▁oooh", + -15.456804275512695 + ], + [ + "▁Aligarh", + -15.456805229187012 + ], + [ + "Trainer", + -15.456826210021973 + ], + [ + "▁Fennell", + -15.456839561462402 + ], + [ + "▁TOWER", + -15.456843376159668 + ], + [ + "▁identifi", + -15.456857681274414 + ], + [ + "▁Escalante", + -15.456875801086426 + ], + [ + "▁McNamee", + -15.456923484802246 + ], + [ + "Afrique", + -15.456926345825195 + ], + [ + "那", + -15.456930160522461 + ], + [ + "LORE", + -15.456938743591309 + ], + [ + "lógico", + -15.45695972442627 + ], + [ + "하지", + -15.456969261169434 + ], + [ + "▁Carfax", + -15.457003593444824 + ], + [ + "气", + -15.457030296325684 + ], + [ + "▁zoological", + -15.457033157348633 + ], + [ + "JAR", + -15.457037925720215 + ], + [ + "▁Ohioans", + -15.457077026367188 + ], + [ + "▁KOREA", + -15.45716667175293 + ], + [ + "▁stapling", + -15.457179069519043 + ], + [ + "▁ultrafast", + -15.457195281982422 + ], + [ + "▁Psalmist", + -15.457261085510254 + ], + [ + "▁Keeling", + -15.457317352294922 + ], + [ + "Concrete", + -15.457319259643555 + ], + [ + "▁gourmand", + -15.457345008850098 + ], + [ + "▁turpentine", + -15.45740795135498 + ], + [ + "▁Swoosh", + -15.45743465423584 + ], + [ + "▁Sammie", + -15.45744800567627 + ], + [ + "▁polyol", + -15.457457542419434 + ], + [ + "▁Kiera", + -15.45749568939209 + ], + [ + "accuracy", + -15.457509994506836 + ], + [ + "▁Margery", + -15.457512855529785 + ], + [ + "▁synchrony", + -15.45753288269043 + ], + [ + "▁Elastane", + -15.457534790039062 + ], + [ + "▁Sebelius", + -15.457537651062012 + ], + [ + "▁bawdy", + -15.457576751708984 + ], + [ + "▁elucidating", + -15.457576751708984 + ], + [ + "Printer", + -15.457579612731934 + ], + [ + "▁Fermented", + -15.457579612731934 + ], + [ + "▁replanted", + -15.457600593566895 + ], + [ + "νο", + -15.457606315612793 + ], + [ + "▁Azaria", + -15.457613945007324 + ], + [ + "BNB", + -15.457635879516602 + ], + [ + "▁preamplifier", + -15.457643508911133 + ], + [ + "strategi", + -15.457646369934082 + ], + [ + "freund", + -15.457648277282715 + ], + [ + "Bohemian", + -15.457676887512207 + ], + [ + "▁achilles", + -15.457717895507812 + ], + [ + "Katrina", + -15.457731246948242 + ], + [ + "▁Crestview", + -15.457793235778809 + ], + [ + "homemade", + -15.457825660705566 + ], + [ + "▁Extremism", + -15.457831382751465 + ], + [ + "▁Helmer", + -15.457900047302246 + ], + [ + "Debit", + -15.457923889160156 + ], + [ + "▁Diocletian", + -15.457956314086914 + ], + [ + "8255", + -15.45798397064209 + ], + [ + "▁Timmerman", + -15.458020210266113 + ], + [ + "▁Helmholtz", + -15.458086013793945 + ], + [ + "entries", + -15.45816421508789 + ], + [ + "▁Sprach", + -15.458168983459473 + ], + [ + "▁Bergmann", + -15.458218574523926 + ], + [ + "Yale", + -15.458259582519531 + ], + [ + "▁Tabriz", + -15.458334922790527 + ], + [ + "▁tardiness", + -15.458335876464844 + ], + [ + "▁catecholamine", + -15.458356857299805 + ], + [ + "helmet", + -15.458361625671387 + ], + [ + "▁NSPCC", + -15.458375930786133 + ], + [ + "▁Kieron", + -15.458395004272461 + ], + [ + "reversible", + -15.458406448364258 + ], + [ + "▁Volcker", + -15.45840835571289 + ], + [ + "кий", + -15.458434104919434 + ], + [ + "▁antabuse", + -15.458477020263672 + ], + [ + "▁pratique", + -15.45854377746582 + ], + [ + "▁choosy", + -15.458571434020996 + ], + [ + "hugger", + -15.458585739135742 + ], + [ + "▁sRGB", + -15.458617210388184 + ], + [ + "Bonnie", + -15.458639144897461 + ], + [ + "▁Stalking", + -15.458720207214355 + ], + [ + "▁Chagall", + -15.45876693725586 + ], + [ + "▁forewing", + -15.458812713623047 + ], + [ + "johnson", + -15.458830833435059 + ], + [ + "▁Skateboarding", + -15.458852767944336 + ], + [ + "▁recognizance", + -15.458863258361816 + ], + [ + "▁Dike", + -15.45897102355957 + ], + [ + "▁Noriega", + -15.45897388458252 + ], + [ + "▁Churn", + -15.458980560302734 + ], + [ + "▁vermicelli", + -15.458991050720215 + ], + [ + "▁burro", + -15.459009170532227 + ], + [ + "▁OTU", + -15.459068298339844 + ], + [ + "▁Billabong", + -15.459074020385742 + ], + [ + "▁Erfolg", + -15.459083557128906 + ], + [ + "▁Lasix", + -15.459086418151855 + ], + [ + "▁Laurentian", + -15.4591064453125 + ], + [ + "ovina", + -15.459128379821777 + ], + [ + "▁Sharepoint", + -15.459155082702637 + ], + [ + "turbine", + -15.459197044372559 + ], + [ + "Venezuela", + -15.459217071533203 + ], + [ + "▁Brinker", + -15.459271430969238 + ], + [ + "▁EOD", + -15.459311485290527 + ], + [ + "coccus", + -15.459339141845703 + ], + [ + "▁tunnelling", + -15.459386825561523 + ], + [ + "▁molly", + -15.459396362304688 + ], + [ + "▁Regarded", + -15.45942211151123 + ], + [ + "▁neurosis", + -15.459495544433594 + ], + [ + "▁Montblanc", + -15.459547996520996 + ], + [ + "▁preprocessing", + -15.459562301635742 + ], + [ + "▁Rawson", + -15.459639549255371 + ], + [ + "▁Sefton", + -15.459647178649902 + ], + [ + "▁Tutti", + -15.45973014831543 + ], + [ + "▁OMC", + -15.459758758544922 + ], + [ + "▁Laurin", + -15.459770202636719 + ], + [ + "ospora", + -15.459783554077148 + ], + [ + "▁NADPH", + -15.459803581237793 + ], + [ + "▁MTX", + -15.459818840026855 + ], + [ + "▁Halb", + -15.459819793701172 + ], + [ + "▁Druck", + -15.459823608398438 + ], + [ + "estan", + -15.459837913513184 + ], + [ + "Bran", + -15.459867477416992 + ], + [ + "▁Stephon", + -15.459940910339355 + ], + [ + "▁immunocompromised", + -15.4599609375 + ], + [ + "▁rotavirus", + -15.46001148223877 + ], + [ + "▁Chilly", + -15.4600191116333 + ], + [ + "▁Undersecretary", + -15.460101127624512 + ], + [ + "▁Zonal", + -15.460107803344727 + ], + [ + "Madrid", + -15.460132598876953 + ], + [ + "▁INPUT", + -15.460160255432129 + ], + [ + "▁GALAXY", + -15.460171699523926 + ], + [ + "▁steadfastness", + -15.460195541381836 + ], + [ + "▁skewing", + -15.460208892822266 + ], + [ + "▁calidad", + -15.460226058959961 + ], + [ + "▁Relapse", + -15.460247039794922 + ], + [ + "Hockey", + -15.460265159606934 + ], + [ + "▁Radnor", + -15.46029281616211 + ], + [ + "▁Inkscape", + -15.460310935974121 + ], + [ + "90°", + -15.460322380065918 + ], + [ + "▁Gilpin", + -15.460351943969727 + ], + [ + "▁Stanfield", + -15.46035385131836 + ], + [ + "▁Mungo", + -15.460363388061523 + ], + [ + "▁monocyte", + -15.460395812988281 + ], + [ + "ZON", + -15.46041202545166 + ], + [ + "▁Smokehouse", + -15.46041202545166 + ], + [ + "▁straddled", + -15.460413932800293 + ], + [ + "▁Raynor", + -15.460421562194824 + ], + [ + "cendent", + -15.460456848144531 + ], + [ + "ции", + -15.460460662841797 + ], + [ + "▁Reminiscent", + -15.46051025390625 + ], + [ + "▁Serif", + -15.460623741149902 + ], + [ + "▁Horry", + -15.460641860961914 + ], + [ + "▁Cursor", + -15.460647583007812 + ], + [ + "execution", + -15.460678100585938 + ], + [ + "▁shearling", + -15.46068000793457 + ], + [ + "▁larder", + -15.460716247558594 + ], + [ + "▁Waziristan", + -15.46076488494873 + ], + [ + "▁WSDL", + -15.460822105407715 + ], + [ + "告", + -15.460881233215332 + ], + [ + "▁Lewy", + -15.460914611816406 + ], + [ + "uccini", + -15.460927963256836 + ], + [ + "▁Liebherr", + -15.460976600646973 + ], + [ + "▁RNase", + -15.461045265197754 + ], + [ + "▁История", + -15.4610595703125 + ], + [ + "REME", + -15.461074829101562 + ], + [ + "psychic", + -15.461094856262207 + ], + [ + "▁monotheism", + -15.4611177444458 + ], + [ + "▁trounced", + -15.4611234664917 + ], + [ + "▁Nizhny", + -15.46114444732666 + ], + [ + "▁matzo", + -15.461161613464355 + ], + [ + "▁Puducherry", + -15.461165428161621 + ], + [ + "▁thrombus", + -15.461165428161621 + ], + [ + "▁undergird", + -15.461176872253418 + ], + [ + "▁Jamshedpur", + -15.461207389831543 + ], + [ + "▁Bruner", + -15.46130084991455 + ], + [ + "▁moult", + -15.461313247680664 + ], + [ + "▁Pavillion", + -15.461319923400879 + ], + [ + "▁Mauser", + -15.461329460144043 + ], + [ + "▁oscar", + -15.46133804321289 + ], + [ + "Relationship", + -15.461392402648926 + ], + [ + "ehrer", + -15.461393356323242 + ], + [ + "Selena", + -15.461405754089355 + ], + [ + "▁xanthan", + -15.461408615112305 + ], + [ + "▁ultrafine", + -15.461463928222656 + ], + [ + "بد", + -15.461483001708984 + ], + [ + "akta", + -15.46154499053955 + ], + [ + "identifiable", + -15.461555480957031 + ], + [ + "Resistant", + -15.461563110351562 + ], + [ + "▁Unhappy", + -15.46158504486084 + ], + [ + "▁ghrelin", + -15.461673736572266 + ], + [ + "▁제공", + -15.461674690246582 + ], + [ + "BOD", + -15.461676597595215 + ], + [ + "ул", + -15.46168041229248 + ], + [ + "▁expectancies", + -15.46168327331543 + ], + [ + "▁Beardsley", + -15.461788177490234 + ], + [ + "▁objectors", + -15.461799621582031 + ], + [ + "▁Conwy", + -15.461807250976562 + ], + [ + "▁overclocked", + -15.461823463439941 + ], + [ + "▁Solenoid", + -15.461827278137207 + ], + [ + "▁Rusch", + -15.46186637878418 + ], + [ + "▁Pussycat", + -15.46189022064209 + ], + [ + "hewn", + -15.461925506591797 + ], + [ + "يت", + -15.461941719055176 + ], + [ + "Artificial", + -15.461965560913086 + ], + [ + "▁DeVito", + -15.462006568908691 + ], + [ + "drake", + -15.462027549743652 + ], + [ + "▁disreputable", + -15.46203899383545 + ], + [ + "▁discontinuance", + -15.462054252624512 + ], + [ + "ACION", + -15.4621000289917 + ], + [ + "integer", + -15.462104797363281 + ], + [ + "Norwegian", + -15.462111473083496 + ], + [ + "▁BofA", + -15.462167739868164 + ], + [ + "▁Kozhikode", + -15.462202072143555 + ], + [ + "▁Hydrology", + -15.462206840515137 + ], + [ + "▁Raitt", + -15.46220874786377 + ], + [ + "▁Tammany", + -15.46221923828125 + ], + [ + "▁smidgen", + -15.462225914001465 + ], + [ + "▁Guizhou", + -15.462237358093262 + ], + [ + "▁Commence", + -15.462308883666992 + ], + [ + "▁hijinks", + -15.462308883666992 + ], + [ + "▁CAPTAIN", + -15.46231460571289 + ], + [ + "▁dicta", + -15.46239185333252 + ], + [ + "▁Blaming", + -15.462395668029785 + ], + [ + "▁dramatization", + -15.462407112121582 + ], + [ + "▁Nadeem", + -15.462428092956543 + ], + [ + "▁UNFCCC", + -15.46243667602539 + ], + [ + "▁scrollbar", + -15.462451934814453 + ], + [ + "었다", + -15.46252155303955 + ], + [ + "▁Gwadar", + -15.462533950805664 + ], + [ + "bulletin", + -15.462544441223145 + ], + [ + "▁Portillo", + -15.462554931640625 + ], + [ + "▁psychosomatic", + -15.462562561035156 + ], + [ + "tttt", + -15.462613105773926 + ], + [ + "disciplinarity", + -15.462625503540039 + ], + [ + "▁Ruud", + -15.462717056274414 + ], + [ + "IDING", + -15.462738037109375 + ], + [ + "Playful", + -15.462790489196777 + ], + [ + "▁FMCSA", + -15.462809562683105 + ], + [ + "▁Padova", + -15.462845802307129 + ], + [ + "▁Tiling", + -15.46286678314209 + ], + [ + "raud", + -15.462904930114746 + ], + [ + "▁plexi", + -15.462925910949707 + ], + [ + "▁RELAX", + -15.462931632995605 + ], + [ + "▁Krush", + -15.46303653717041 + ], + [ + "houston", + -15.463055610656738 + ], + [ + "easterly", + -15.463090896606445 + ], + [ + "▁APPROACH", + -15.463091850280762 + ], + [ + "▁FATCA", + -15.463194847106934 + ], + [ + "▁Chattahoochee", + -15.463218688964844 + ], + [ + "Glenn", + -15.463224411010742 + ], + [ + "gorod", + -15.463224411010742 + ], + [ + "▁famille", + -15.463250160217285 + ], + [ + "▁Appropriation", + -15.463299751281738 + ], + [ + "▁gastroesophageal", + -15.463327407836914 + ], + [ + "▁hermetically", + -15.463330268859863 + ], + [ + "▁ruggedness", + -15.463336944580078 + ], + [ + "▁Bartow", + -15.463337898254395 + ], + [ + "▁laconic", + -15.463376998901367 + ], + [ + "▁Hostage", + -15.463382720947266 + ], + [ + "▁traineeship", + -15.463398933410645 + ], + [ + "ये", + -15.463417053222656 + ], + [ + "▁GameSpot", + -15.46347713470459 + ], + [ + "Roc", + -15.463565826416016 + ], + [ + "▁alberta", + -15.463570594787598 + ], + [ + "▁elderflower", + -15.463584899902344 + ], + [ + "▁yoyo", + -15.46358585357666 + ], + [ + "inhibitor", + -15.463606834411621 + ], + [ + "▁Sibu", + -15.463650703430176 + ], + [ + "▁Chaitanya", + -15.463664054870605 + ], + [ + "▁substring", + -15.463701248168945 + ], + [ + "▁Carruthers", + -15.463748931884766 + ], + [ + "ikko", + -15.463766098022461 + ], + [ + "▁다른", + -15.463769912719727 + ], + [ + "▁illiberal", + -15.46380615234375 + ], + [ + "▁Alberni", + -15.463814735412598 + ], + [ + "▁Hogue", + -15.46382999420166 + ], + [ + "▁writable", + -15.46382999420166 + ], + [ + "▁Rosemarie", + -15.4638671875 + ], + [ + "▁UMTS", + -15.4638671875 + ], + [ + "▁calcareous", + -15.463875770568848 + ], + [ + "▁DIRT", + -15.463900566101074 + ], + [ + "exhibition", + -15.463921546936035 + ], + [ + "▁unripe", + -15.463927268981934 + ], + [ + "initially", + -15.463942527770996 + ], + [ + "▁TODD", + -15.464003562927246 + ], + [ + "Logix", + -15.464016914367676 + ], + [ + "quero", + -15.464025497436523 + ], + [ + "▁desensitization", + -15.464025497436523 + ], + [ + "▁Alisson", + -15.464051246643066 + ], + [ + "▁Kidder", + -15.464193344116211 + ], + [ + "Destroy", + -15.46419620513916 + ], + [ + "▁Weitzman", + -15.464223861694336 + ], + [ + "▁Kloster", + -15.464247703552246 + ], + [ + "▁deceiver", + -15.464272499084473 + ], + [ + "Drone", + -15.464333534240723 + ], + [ + "▁Ardennes", + -15.464384078979492 + ], + [ + "▁Hideki", + -15.464427947998047 + ], + [ + "silica", + -15.464456558227539 + ], + [ + "DUCT", + -15.464508056640625 + ], + [ + "▁Ambode", + -15.464522361755371 + ], + [ + "▁Catastrophic", + -15.464554786682129 + ], + [ + "▁Fillet", + -15.464566230773926 + ], + [ + "▁preliminaries", + -15.464576721191406 + ], + [ + "ప", + -15.464595794677734 + ], + [ + "▁flog", + -15.464607238769531 + ], + [ + "▁ginkgo", + -15.464609146118164 + ], + [ + "habilita", + -15.464620590209961 + ], + [ + "itzky", + -15.464725494384766 + ], + [ + "▁allergenic", + -15.464754104614258 + ], + [ + "▁rehashing", + -15.464787483215332 + ], + [ + "▁NatWest", + -15.464790344238281 + ], + [ + "facility", + -15.464816093444824 + ], + [ + "▁greedily", + -15.464900016784668 + ], + [ + "VoIP", + -15.464906692504883 + ], + [ + "akowski", + -15.46492862701416 + ], + [ + "微", + -15.46493148803711 + ], + [ + "▁ejecting", + -15.464941024780273 + ], + [ + "Maliki", + -15.46495532989502 + ], + [ + "▁Bolshoi", + -15.465001106262207 + ], + [ + "▁Balch", + -15.46501350402832 + ], + [ + "jesus", + -15.465018272399902 + ], + [ + "▁McKeon", + -15.465024948120117 + ], + [ + "▁HIRE", + -15.46505069732666 + ], + [ + "▁Admitted", + -15.46505355834961 + ], + [ + "見", + -15.465059280395508 + ], + [ + "推", + -15.465062141418457 + ], + [ + "▁Unnecessary", + -15.465065956115723 + ], + [ + "adidas", + -15.465177536010742 + ], + [ + "▁Telkom", + -15.465180397033691 + ], + [ + "▁Olof", + -15.465214729309082 + ], + [ + "▁Bahl", + -15.465216636657715 + ], + [ + "它", + -15.465240478515625 + ], + [ + "▁stad", + -15.465250968933105 + ], + [ + "▁Yousafzai", + -15.465255737304688 + ], + [ + "keel", + -15.4652738571167 + ], + [ + "▁Cucu", + -15.465274810791016 + ], + [ + "▁Carcassonne", + -15.465277671813965 + ], + [ + "▁Ramey", + -15.465282440185547 + ], + [ + "▁MSDS", + -15.465287208557129 + ], + [ + "CHAT", + -15.465301513671875 + ], + [ + "▁Carissa", + -15.46532154083252 + ], + [ + "▁OMISSIONS", + -15.465340614318848 + ], + [ + "▁divi", + -15.46534538269043 + ], + [ + "▁Koontz", + -15.46536922454834 + ], + [ + "▁Tofino", + -15.465373039245605 + ], + [ + "▁homogenization", + -15.465425491333008 + ], + [ + "▁sacrilege", + -15.465425491333008 + ], + [ + "AUGHT", + -15.465426445007324 + ], + [ + "UNESCO", + -15.465436935424805 + ], + [ + "Apache", + -15.465459823608398 + ], + [ + "▁Yamashita", + -15.465471267700195 + ], + [ + "▁Oncologist", + -15.465571403503418 + ], + [ + "▁perishing", + -15.46557331085205 + ], + [ + "▁Menorca", + -15.465579986572266 + ], + [ + "▁Sodexo", + -15.465596199035645 + ], + [ + "Indy", + -15.465605735778809 + ], + [ + "▁Dennett", + -15.465608596801758 + ], + [ + "▁floatation", + -15.465664863586426 + ], + [ + "Elder", + -15.465712547302246 + ], + [ + "muslim", + -15.465713500976562 + ], + [ + "▁Humidifier", + -15.465714454650879 + ], + [ + "▁Phobia", + -15.465726852416992 + ], + [ + "PHOTO", + -15.465744018554688 + ], + [ + "bira", + -15.465780258178711 + ], + [ + "▁Riyad", + -15.465802192687988 + ], + [ + "▁homespun", + -15.465807914733887 + ], + [ + "▁Batangas", + -15.465808868408203 + ], + [ + "▁Cimarron", + -15.465808868408203 + ], + [ + "▁Nebo", + -15.465841293334961 + ], + [ + "☺", + -15.465850830078125 + ], + [ + "▁hayride", + -15.465869903564453 + ], + [ + "▁Leblanc", + -15.465892791748047 + ], + [ + "▁Bioware", + -15.465925216674805 + ], + [ + "▁Obscure", + -15.465926170349121 + ], + [ + "▁PISA", + -15.46593189239502 + ], + [ + "ακ", + -15.46595573425293 + ], + [ + "▁quantifies", + -15.466031074523926 + ], + [ + "▁Bourque", + -15.466071128845215 + ], + [ + "▁Hingham", + -15.466073036193848 + ], + [ + "▁Allocate", + -15.466073989868164 + ], + [ + "▁Shug", + -15.466087341308594 + ], + [ + "vocalist", + -15.466177940368652 + ], + [ + "▁Dripping", + -15.466181755065918 + ], + [ + "▁Ellwood", + -15.46619987487793 + ], + [ + "olfo", + -15.466207504272461 + ], + [ + "CAGR", + -15.466215133666992 + ], + [ + "▁misidentified", + -15.466259956359863 + ], + [ + "▁nepal", + -15.466318130493164 + ], + [ + "▁Eocene", + -15.46632194519043 + ], + [ + "▁Plaines", + -15.46633529663086 + ], + [ + "ambre", + -15.466341018676758 + ], + [ + "▁REPRESENTATION", + -15.466370582580566 + ], + [ + "▁TAF", + -15.466373443603516 + ], + [ + "▁Carnaval", + -15.466375350952148 + ], + [ + "▁cytosol", + -15.466375350952148 + ], + [ + "▁Papyrus", + -15.46640682220459 + ], + [ + "▁visco", + -15.46640682220459 + ], + [ + "▁IPVanish", + -15.466445922851562 + ], + [ + "frid", + -15.466449737548828 + ], + [ + "▁ungainly", + -15.466530799865723 + ], + [ + "▁ayuda", + -15.466584205627441 + ], + [ + "▁Edging", + -15.46658992767334 + ], + [ + "▁clambered", + -15.466591835021973 + ], + [ + "網", + -15.466595649719238 + ], + [ + "layan", + -15.46660327911377 + ], + [ + "▁NTPC", + -15.466606140136719 + ], + [ + "别", + -15.466622352600098 + ], + [ + "▁Fetter", + -15.46662425994873 + ], + [ + "▁Concho", + -15.466629028320312 + ], + [ + "▁Ehrman", + -15.466732025146484 + ], + [ + "steering", + -15.466794967651367 + ], + [ + "▁Espe", + -15.466835975646973 + ], + [ + "everywhere", + -15.46684455871582 + ], + [ + "▁rien", + -15.46684455871582 + ], + [ + "▁LoRa", + -15.466877937316895 + ], + [ + "enthaler", + -15.466902732849121 + ], + [ + "▁PHOTOGRAPH", + -15.466903686523438 + ], + [ + "▁desiccated", + -15.466934204101562 + ], + [ + "RITE", + -15.466935157775879 + ], + [ + "▁RETURNS", + -15.466961860656738 + ], + [ + "▁Departed", + -15.466971397399902 + ], + [ + "Suggest", + -15.466975212097168 + ], + [ + "వ", + -15.466998100280762 + ], + [ + "▁Frustrating", + -15.467041015625 + ], + [ + "▁Clinician", + -15.46711254119873 + ], + [ + "schied", + -15.467123031616211 + ], + [ + "▁millstone", + -15.467123031616211 + ], + [ + "£10", + -15.467129707336426 + ], + [ + "hlmann", + -15.467138290405273 + ], + [ + "▁rosin", + -15.467174530029297 + ], + [ + "▁tailbone", + -15.467179298400879 + ], + [ + "moncler", + -15.467184066772461 + ], + [ + "nergy", + -15.467209815979004 + ], + [ + "▁Jokic", + -15.467228889465332 + ], + [ + "▁Pettersson", + -15.467283248901367 + ], + [ + "duced", + -15.467292785644531 + ], + [ + "warfare", + -15.467315673828125 + ], + [ + "ossian", + -15.46734619140625 + ], + [ + "▁Paltz", + -15.467347145080566 + ], + [ + "▁एक", + -15.467355728149414 + ], + [ + "▁Vibrio", + -15.467368125915527 + ], + [ + "▁LANG", + -15.467376708984375 + ], + [ + "▁Summerlin", + -15.467381477355957 + ], + [ + "▁Eevee", + -15.467394828796387 + ], + [ + "▁Renshaw", + -15.467424392700195 + ], + [ + "▁Clarify", + -15.467434883117676 + ], + [ + "▁sleepwear", + -15.467440605163574 + ], + [ + "Router", + -15.467480659484863 + ], + [ + "▁NIO", + -15.467484474182129 + ], + [ + "▁Delany", + -15.467555046081543 + ], + [ + "▁Krispie", + -15.4675931930542 + ], + [ + "PWD", + -15.467618942260742 + ], + [ + "▁Greedy", + -15.467635154724121 + ], + [ + "▁tawny", + -15.467637062072754 + ], + [ + "▁electromagnet", + -15.46765422821045 + ], + [ + "▁Blox", + -15.46766471862793 + ], + [ + "▁depredation", + -15.467679023742676 + ], + [ + "▁Kinnear", + -15.467684745788574 + ], + [ + "guiding", + -15.467742919921875 + ], + [ + "▁Pontoon", + -15.467755317687988 + ], + [ + "thrown", + -15.467757225036621 + ], + [ + "▁Wrecking", + -15.467796325683594 + ], + [ + "ங்க", + -15.467822074890137 + ], + [ + "plankton", + -15.46782398223877 + ], + [ + "Brent", + -15.467873573303223 + ], + [ + "atlantic", + -15.467896461486816 + ], + [ + "▁Betsey", + -15.467939376831055 + ], + [ + "▁Instructable", + -15.467979431152344 + ], + [ + "▁SDHC", + -15.468003273010254 + ], + [ + "▁tako", + -15.468018531799316 + ], + [ + "▁Furness", + -15.468029022216797 + ], + [ + "σε", + -15.468057632446289 + ], + [ + "fulfillment", + -15.468100547790527 + ], + [ + "▁Friel", + -15.468131065368652 + ], + [ + "adolescent", + -15.46813678741455 + ], + [ + "▁Benzoate", + -15.468147277832031 + ], + [ + "▁Vincennes", + -15.468147277832031 + ], + [ + "▁tinny", + -15.468155860900879 + ], + [ + "▁Multilateral", + -15.468158721923828 + ], + [ + "problematic", + -15.468208312988281 + ], + [ + "▁franca", + -15.468219757080078 + ], + [ + "در", + -15.468244552612305 + ], + [ + "▁brainpower", + -15.46826171875 + ], + [ + "▁Wamp", + -15.468295097351074 + ], + [ + "▁antiperspirant", + -15.468307495117188 + ], + [ + "▁Accurately", + -15.46831226348877 + ], + [ + "Hound", + -15.468329429626465 + ], + [ + "▁GREATEST", + -15.468348503112793 + ], + [ + "▁Timbuktu", + -15.468360900878906 + ], + [ + "▁Stiletto", + -15.468365669250488 + ], + [ + "▁Klijn", + -15.468411445617676 + ], + [ + "▁salvageable", + -15.46842098236084 + ], + [ + "▁thrombin", + -15.468421936035156 + ], + [ + "XXXXXX", + -15.468436241149902 + ], + [ + "▁Handball", + -15.468453407287598 + ], + [ + "▁rabbinical", + -15.468473434448242 + ], + [ + "▁Spangled", + -15.468475341796875 + ], + [ + "▁bytecode", + -15.468485832214355 + ], + [ + "▁الد", + -15.468487739562988 + ], + [ + "▁Underdog", + -15.468493461608887 + ], + [ + "▁puerto", + -15.468619346618652 + ], + [ + "▁pretreated", + -15.468669891357422 + ], + [ + "▁DEADLINE", + -15.468688011169434 + ], + [ + "▁viscoelastic", + -15.46870231628418 + ], + [ + "▁unjustifiable", + -15.468708038330078 + ], + [ + "▁serous", + -15.468731880187988 + ], + [ + "▁Mercator", + -15.46873950958252 + ], + [ + "▁Cecelia", + -15.468740463256836 + ], + [ + "▁Bairstow", + -15.468766212463379 + ], + [ + "▁repossess", + -15.468864440917969 + ], + [ + "▁MiFID", + -15.46890640258789 + ], + [ + "▁Civilisation", + -15.468908309936523 + ], + [ + "▁kü", + -15.468911170959473 + ], + [ + "▁Relocating", + -15.468913078308105 + ], + [ + "▁Harajuku", + -15.468914985656738 + ], + [ + "ambient", + -15.4689302444458 + ], + [ + "▁BLADE", + -15.468942642211914 + ], + [ + "reckless", + -15.468987464904785 + ], + [ + "▁Iglesia", + -15.468989372253418 + ], + [ + "▁Bunga", + -15.468994140625 + ], + [ + "▁Effi", + -15.469025611877441 + ], + [ + "▁TypeScript", + -15.469042778015137 + ], + [ + "garbage", + -15.469051361083984 + ], + [ + "▁Yuletide", + -15.469088554382324 + ], + [ + "▁Growler", + -15.469124794006348 + ], + [ + "CTP", + -15.469139099121094 + ], + [ + "म्", + -15.469141006469727 + ], + [ + "privilege", + -15.469176292419434 + ], + [ + "▁Upfront", + -15.469178199768066 + ], + [ + "▁HOG", + -15.469179153442383 + ], + [ + "раз", + -15.469191551208496 + ], + [ + "▁Brodeur", + -15.469254493713379 + ], + [ + "▁Donoghue", + -15.469271659851074 + ], + [ + "hoku", + -15.469281196594238 + ], + [ + "▁Lagan", + -15.469326972961426 + ], + [ + "▁immunities", + -15.469341278076172 + ], + [ + "ื", + -15.469345092773438 + ], + [ + "▁komun", + -15.469346046447754 + ], + [ + "▁Klassen", + -15.469422340393066 + ], + [ + "▁Herren", + -15.469443321228027 + ], + [ + "UTTER", + -15.469477653503418 + ], + [ + "▁dualistic", + -15.46951961517334 + ], + [ + "▁virtualisation", + -15.469528198242188 + ], + [ + "Grain", + -15.469532012939453 + ], + [ + "diploma", + -15.469532012939453 + ], + [ + "αγ", + -15.469561576843262 + ], + [ + "▁Tremor", + -15.469602584838867 + ], + [ + "▁impassive", + -15.469605445861816 + ], + [ + "MAKER", + -15.469657897949219 + ], + [ + "▁Ballantine", + -15.469663619995117 + ], + [ + "▁feckless", + -15.469664573669434 + ], + [ + "carbonyl", + -15.469680786132812 + ], + [ + "Assisted", + -15.469698905944824 + ], + [ + "▁magisterial", + -15.469703674316406 + ], + [ + "stunning", + -15.469751358032227 + ], + [ + "▁Aronson", + -15.469771385192871 + ], + [ + "▁Koren", + -15.46980094909668 + ], + [ + "▁Zeitschrift", + -15.469813346862793 + ], + [ + "▁Redfin", + -15.469869613647461 + ], + [ + "▁bisphosphonate", + -15.46989917755127 + ], + [ + "▁midlands", + -15.469910621643066 + ], + [ + "▁Legrand", + -15.469943046569824 + ], + [ + "▁Blitzer", + -15.469950675964355 + ], + [ + "▁Mahoning", + -15.470001220703125 + ], + [ + "▁Tensile", + -15.470014572143555 + ], + [ + "▁Snelling", + -15.470033645629883 + ], + [ + "▁Abaco", + -15.470067024230957 + ], + [ + "▁methinks", + -15.470152854919434 + ], + [ + "▁GRIP", + -15.470178604125977 + ], + [ + "▁Amicus", + -15.470196723937988 + ], + [ + "▁accommodative", + -15.470215797424316 + ], + [ + "peridone", + -15.470222473144531 + ], + [ + "▁Subwoofer", + -15.470236778259277 + ], + [ + "▁disquieting", + -15.47026252746582 + ], + [ + "▁mHealth", + -15.470276832580566 + ], + [ + "▁postsynaptic", + -15.470277786254883 + ], + [ + "▁hitchhiker", + -15.470354080200195 + ], + [ + "▁Hitchin", + -15.470362663269043 + ], + [ + "▁Segregation", + -15.470386505126953 + ], + [ + "▁oversubscribed", + -15.470452308654785 + ], + [ + "▁WENT", + -15.470457077026367 + ], + [ + "▁Czechoslovak", + -15.470480918884277 + ], + [ + "▁Matron", + -15.470573425292969 + ], + [ + "▁Touchdown", + -15.470626831054688 + ], + [ + "oxazol", + -15.470654487609863 + ], + [ + "▁Danang", + -15.470654487609863 + ], + [ + "▁clopidogrel", + -15.470748901367188 + ], + [ + "▁Bailly", + -15.470783233642578 + ], + [ + "Jessie", + -15.470794677734375 + ], + [ + "disruptive", + -15.470796585083008 + ], + [ + "▁chambre", + -15.470802307128906 + ], + [ + "ūn", + -15.470805168151855 + ], + [ + "▁Wenzel", + -15.470852851867676 + ], + [ + "▁Zusammen", + -15.470854759216309 + ], + [ + "▁Dilbert", + -15.470878601074219 + ], + [ + "▁retinue", + -15.470901489257812 + ], + [ + "▁parenthetical", + -15.470902442932129 + ], + [ + "▁Composting", + -15.47091007232666 + ], + [ + "▁FireEye", + -15.470952033996582 + ], + [ + "▁juke", + -15.470986366271973 + ], + [ + "▁scruff", + -15.471004486083984 + ], + [ + "▁Cheerleading", + -15.47103214263916 + ], + [ + "▁Borgata", + -15.471060752868652 + ], + [ + "▁Minu", + -15.471073150634766 + ], + [ + "▁Rothbard", + -15.471085548400879 + ], + [ + "Baha", + -15.47110366821289 + ], + [ + "quantity", + -15.471107482910156 + ], + [ + "▁Grem", + -15.471176147460938 + ], + [ + "ChE", + -15.471182823181152 + ], + [ + "▁SBIR", + -15.471205711364746 + ], + [ + "▁Perinatal", + -15.471227645874023 + ], + [ + "▁Storefront", + -15.471259117126465 + ], + [ + "mechanism", + -15.471270561218262 + ], + [ + "▁gonadotropin", + -15.471282958984375 + ], + [ + "▁lacuna", + -15.471306800842285 + ], + [ + "miami", + -15.471311569213867 + ], + [ + "▁Scythe", + -15.47139835357666 + ], + [ + "▁PROVISION", + -15.471399307250977 + ], + [ + "▁sulking", + -15.471424102783203 + ], + [ + "▁zoster", + -15.47143268585205 + ], + [ + "▁unexpired", + -15.471454620361328 + ], + [ + "▁Timeshare", + -15.47150707244873 + ], + [ + "▁mircea", + -15.471543312072754 + ], + [ + "▁creosote", + -15.471561431884766 + ], + [ + "▁Sassoon", + -15.471644401550293 + ], + [ + "▁QMS", + -15.471656799316406 + ], + [ + "▁Tomkins", + -15.471663475036621 + ], + [ + "▁CARPET", + -15.471687316894531 + ], + [ + "خت", + -15.471717834472656 + ], + [ + "lopp", + -15.471732139587402 + ], + [ + "▁Mademoiselle", + -15.471732139587402 + ], + [ + "▁rogaine", + -15.471732139587402 + ], + [ + "▁Chakotay", + -15.47177505493164 + ], + [ + "▁pubescent", + -15.471782684326172 + ], + [ + "▁Regulating", + -15.471803665161133 + ], + [ + "ŏ", + -15.471817970275879 + ], + [ + "ahkan", + -15.471820831298828 + ], + [ + "Linear", + -15.471831321716309 + ], + [ + "▁Berglund", + -15.471832275390625 + ], + [ + "▁propulsive", + -15.471851348876953 + ], + [ + "▁Shizu", + -15.471853256225586 + ], + [ + "▁emily", + -15.471915245056152 + ], + [ + "▁Epistemology", + -15.471945762634277 + ], + [ + "▁conscripted", + -15.47195053100586 + ], + [ + "▁Herculean", + -15.471966743469238 + ], + [ + "▁peatland", + -15.472058296203613 + ], + [ + "attract", + -15.472073554992676 + ], + [ + "▁bouillon", + -15.472081184387207 + ], + [ + "Deputy", + -15.472094535827637 + ], + [ + "algorithm", + -15.472097396850586 + ], + [ + "▁haar", + -15.472113609313965 + ], + [ + "aganda", + -15.472134590148926 + ], + [ + "accini", + -15.47221851348877 + ], + [ + "▁frivolity", + -15.472223281860352 + ], + [ + "socialism", + -15.472246170043945 + ], + [ + "▁Viera", + -15.472261428833008 + ], + [ + "▁recalculate", + -15.472267150878906 + ], + [ + "وج", + -15.472270011901855 + ], + [ + "ouff", + -15.472323417663574 + ], + [ + "criteria", + -15.472352027893066 + ], + [ + "▁Carpool", + -15.472352027893066 + ], + [ + "▁rituximab", + -15.472397804260254 + ], + [ + "▁feigning", + -15.47240924835205 + ], + [ + "▁propionate", + -15.472412109375 + ], + [ + "▁borderlands", + -15.472415924072266 + ], + [ + "▁dynami", + -15.472419738769531 + ], + [ + "▁Dalí", + -15.472469329833984 + ], + [ + "▁Pahang", + -15.472472190856934 + ], + [ + "▁Aegon", + -15.47248649597168 + ], + [ + "▁tripadvisor", + -15.472513198852539 + ], + [ + "▁conjugal", + -15.47260856628418 + ], + [ + "▁Cunning", + -15.472611427307129 + ], + [ + "benzyl", + -15.472616195678711 + ], + [ + "▁Elysian", + -15.472664833068848 + ], + [ + "▁RECOMMEND", + -15.47266674041748 + ], + [ + "▁caramelize", + -15.47266960144043 + ], + [ + "▁Rahe", + -15.472695350646973 + ], + [ + "▁Effortless", + -15.472701072692871 + ], + [ + "▁Darian", + -15.47270679473877 + ], + [ + "dichloro", + -15.472771644592285 + ], + [ + "▁Moroni", + -15.4727783203125 + ], + [ + "▁BLIND", + -15.47278118133545 + ], + [ + "▁Moskowitz", + -15.472786903381348 + ], + [ + "▁Baldur", + -15.472798347473145 + ], + [ + "▁reallocate", + -15.472807884216309 + ], + [ + "▁PDGF", + -15.472838401794434 + ], + [ + "▁Sigurd", + -15.472847938537598 + ], + [ + "UCL", + -15.47287368774414 + ], + [ + "▁palpation", + -15.472887992858887 + ], + [ + "▁Keele", + -15.4730224609375 + ], + [ + "▁Crompton", + -15.473105430603027 + ], + [ + "anthropy", + -15.473121643066406 + ], + [ + "▁Diamondback", + -15.47314167022705 + ], + [ + "▁Callisto", + -15.473146438598633 + ], + [ + "▁Hudgens", + -15.473148345947266 + ], + [ + "▁unicycle", + -15.473169326782227 + ], + [ + "▁Schreiner", + -15.473186492919922 + ], + [ + "flute", + -15.473206520080566 + ], + [ + "▁Shirdi", + -15.473223686218262 + ], + [ + "▁Guetta", + -15.473275184631348 + ], + [ + "▁photodiode", + -15.473315238952637 + ], + [ + "▁Kandinsky", + -15.473379135131836 + ], + [ + "▁Chaffee", + -15.473387718200684 + ], + [ + "▁Montenegrin", + -15.473443031311035 + ], + [ + "▁Ż", + -15.473448753356934 + ], + [ + "▁ballplayer", + -15.4734525680542 + ], + [ + "▁Antebellum", + -15.473464965820312 + ], + [ + "▁Barroso", + -15.473470687866211 + ], + [ + "▁endometrium", + -15.473485946655273 + ], + [ + "▁Hamden", + -15.473504066467285 + ], + [ + "absent", + -15.47352123260498 + ], + [ + "▁Summaries", + -15.47352409362793 + ], + [ + "▁PARENT", + -15.473535537719727 + ], + [ + "Alone", + -15.47378921508789 + ], + [ + "▁Corley", + -15.473814010620117 + ], + [ + "▁Foal", + -15.473820686340332 + ], + [ + "▁Arshad", + -15.473831176757812 + ], + [ + "ersdorf", + -15.47384262084961 + ], + [ + "▁saponin", + -15.473896980285645 + ], + [ + "Wicked", + -15.47391414642334 + ], + [ + "▁Antidepressant", + -15.473930358886719 + ], + [ + "▁Colville", + -15.473971366882324 + ], + [ + "▁Chalkboard", + -15.473980903625488 + ], + [ + "▁farmworkers", + -15.474016189575195 + ], + [ + "▁Encarnacion", + -15.474021911621094 + ], + [ + "▁Fadi", + -15.474042892456055 + ], + [ + "▁percept", + -15.474065780639648 + ], + [ + "▁dereliction", + -15.474077224731445 + ], + [ + "▁Bishkek", + -15.474085807800293 + ], + [ + "▁marooned", + -15.474100112915039 + ], + [ + "▁Beneficiaries", + -15.47410774230957 + ], + [ + "raig", + -15.47414493560791 + ], + [ + "▁Ernakulam", + -15.47417163848877 + ], + [ + "▁Ariadne", + -15.474173545837402 + ], + [ + "prediction", + -15.474194526672363 + ], + [ + "▁Bendis", + -15.47421932220459 + ], + [ + "▁Winstrol", + -15.474220275878906 + ], + [ + "Southwest", + -15.474297523498535 + ], + [ + "▁avenging", + -15.474388122558594 + ], + [ + "rattling", + -15.474485397338867 + ], + [ + "▁expres", + -15.474488258361816 + ], + [ + "▁Ondrej", + -15.474493026733398 + ], + [ + "▁Likert", + -15.474516868591309 + ], + [ + "carra", + -15.474520683288574 + ], + [ + "▁propriet", + -15.474601745605469 + ], + [ + "▁Serp", + -15.474608421325684 + ], + [ + "▁Feingold", + -15.474639892578125 + ], + [ + "martyr", + -15.474641799926758 + ], + [ + "▁horrifically", + -15.474677085876465 + ], + [ + "▁dirigi", + -15.474702835083008 + ], + [ + "▁VFL", + -15.474726676940918 + ], + [ + "▁Groucho", + -15.474771499633789 + ], + [ + "suede", + -15.474803924560547 + ], + [ + "ieving", + -15.474832534790039 + ], + [ + "koya", + -15.474857330322266 + ], + [ + "disposed", + -15.47486686706543 + ], + [ + "oglou", + -15.474921226501465 + ], + [ + "▁Glutathione", + -15.474922180175781 + ], + [ + "▁masseur", + -15.474922180175781 + ], + [ + "йте", + -15.474940299987793 + ], + [ + "▁wheatgrass", + -15.474969863891602 + ], + [ + "▁kook", + -15.4749755859375 + ], + [ + "▁través", + -15.475034713745117 + ], + [ + "▁Kraftwerk", + -15.4750394821167 + ], + [ + "Chamberlain", + -15.475075721740723 + ], + [ + "▁Athanasius", + -15.475099563598633 + ], + [ + "▁varnishes", + -15.475116729736328 + ], + [ + "▁Cheeseburger", + -15.475163459777832 + ], + [ + "▁Camelback", + -15.475226402282715 + ], + [ + "▁נ", + -15.475275039672852 + ], + [ + "▁Yasir", + -15.4752836227417 + ], + [ + "▁Stood", + -15.475289344787598 + ], + [ + "▁Tilburg", + -15.47529125213623 + ], + [ + "probable", + -15.475309371948242 + ], + [ + "▁Seahorse", + -15.475375175476074 + ], + [ + "▁Pontius", + -15.475403785705566 + ], + [ + "▁‒", + -15.475442886352539 + ], + [ + "▁hailstorm", + -15.47545337677002 + ], + [ + "▁Matchbox", + -15.475462913513184 + ], + [ + "▁Kristol", + -15.475467681884766 + ], + [ + "▁Genovese", + -15.4755220413208 + ], + [ + "▁nhl", + -15.475534439086914 + ], + [ + "▁Ramble", + -15.475540161132812 + ], + [ + "throttle", + -15.475541114807129 + ], + [ + "▁Vodacom", + -15.475544929504395 + ], + [ + "▁Surrealism", + -15.47557258605957 + ], + [ + "▁gearshift", + -15.47557258605957 + ], + [ + "▁WALTER", + -15.475597381591797 + ], + [ + "▁Narayanan", + -15.475605964660645 + ], + [ + "▁Conserving", + -15.475606918334961 + ], + [ + "▁ECTS", + -15.475625991821289 + ], + [ + "▁Breanna", + -15.475668907165527 + ], + [ + "▁Rozier", + -15.475682258605957 + ], + [ + "▁Schopenhauer", + -15.475715637207031 + ], + [ + "▁Rutte", + -15.475759506225586 + ], + [ + "▁unacceptably", + -15.475801467895508 + ], + [ + "▁Bonney", + -15.475833892822266 + ], + [ + "▁faz", + -15.475835800170898 + ], + [ + "▁niya", + -15.47584342956543 + ], + [ + "Joey", + -15.47586441040039 + ], + [ + "▁Philosoph", + -15.475882530212402 + ], + [ + "▁sumac", + -15.475882530212402 + ], + [ + "▁Repetitive", + -15.475930213928223 + ], + [ + "▁Arnica", + -15.47593879699707 + ], + [ + "▁Odette", + -15.475943565368652 + ], + [ + "وه", + -15.475956916809082 + ], + [ + "Quebec", + -15.475966453552246 + ], + [ + "▁PHASE", + -15.475974082946777 + ], + [ + "▁Plovdiv", + -15.475994110107422 + ], + [ + "▁Agassi", + -15.476033210754395 + ], + [ + "▁cyclophosphamide", + -15.47603702545166 + ], + [ + "▁depolarization", + -15.47607707977295 + ], + [ + "alongside", + -15.476101875305176 + ], + [ + "▁Dispersion", + -15.476101875305176 + ], + [ + "▁intertidal", + -15.476101875305176 + ], + [ + "Coleoptera", + -15.476109504699707 + ], + [ + "▁delineating", + -15.476144790649414 + ], + [ + "▁bungled", + -15.476197242736816 + ], + [ + "▁TURBO", + -15.476240158081055 + ], + [ + "▁Talal", + -15.476262092590332 + ], + [ + "▁Rothenberg", + -15.476277351379395 + ], + [ + "▁douglas", + -15.476289749145508 + ], + [ + "▁Clique", + -15.476374626159668 + ], + [ + "convention", + -15.47641372680664 + ], + [ + "▁photobooth", + -15.476435661315918 + ], + [ + "◦", + -15.476445198059082 + ], + [ + "▁Hazzard", + -15.476465225219727 + ], + [ + "▁Birchbox", + -15.476487159729004 + ], + [ + "▁Coherence", + -15.47648811340332 + ], + [ + "▁entomology", + -15.47648811340332 + ], + [ + "▁vintner", + -15.47649097442627 + ], + [ + "▁Grogan", + -15.4765043258667 + ], + [ + "▁Foodservice", + -15.47655200958252 + ], + [ + "Fellow", + -15.476601600646973 + ], + [ + "▁Jubil", + -15.476655006408691 + ], + [ + "▁Toilette", + -15.47666072845459 + ], + [ + "MoU", + -15.476661682128906 + ], + [ + "▁TILE", + -15.476716041564941 + ], + [ + "▁LEGOLAND", + -15.476738929748535 + ], + [ + "▁Attestation", + -15.476810455322266 + ], + [ + "▁Scarface", + -15.476814270019531 + ], + [ + "▁Dafoe", + -15.476815223693848 + ], + [ + "▁ELECTION", + -15.476821899414062 + ], + [ + "▁polaroid", + -15.476834297180176 + ], + [ + "mbria", + -15.476838111877441 + ], + [ + "▁Gilson", + -15.47684097290039 + ], + [ + "▁Goblet", + -15.476862907409668 + ], + [ + "▁Eviction", + -15.476877212524414 + ], + [ + "▁escal", + -15.476899147033691 + ], + [ + "四", + -15.476910591125488 + ], + [ + "waking", + -15.47692584991455 + ], + [ + "▁Hildegard", + -15.476947784423828 + ], + [ + "ισ", + -15.476949691772461 + ], + [ + "▁brimmed", + -15.476960182189941 + ], + [ + "室", + -15.47697639465332 + ], + [ + "▁HONDA", + -15.4769868850708 + ], + [ + "▁Lemme", + -15.476995468139648 + ], + [ + "▁INVENT", + -15.477041244506836 + ], + [ + "rouw", + -15.477075576782227 + ], + [ + "▁PTEN", + -15.477080345153809 + ], + [ + "peanut", + -15.477089881896973 + ], + [ + "otyping", + -15.47712230682373 + ], + [ + "▁Paneer", + -15.477239608764648 + ], + [ + "omena", + -15.477293014526367 + ], + [ + "▁Abolish", + -15.477306365966797 + ], + [ + "▁Sophocles", + -15.477326393127441 + ], + [ + "▁hyperthermia", + -15.477347373962402 + ], + [ + "▁FAME", + -15.47736930847168 + ], + [ + "▁Kayleigh", + -15.477380752563477 + ], + [ + "rishti", + -15.477394104003906 + ], + [ + "▁Mackerel", + -15.477397918701172 + ], + [ + "Tattoo", + -15.477411270141602 + ], + [ + "▁Analysing", + -15.477455139160156 + ], + [ + "▁Holographic", + -15.477493286132812 + ], + [ + "یت", + -15.477550506591797 + ], + [ + "▁shitting", + -15.477585792541504 + ], + [ + "▁flogged", + -15.477598190307617 + ], + [ + "▁Aalborg", + -15.477606773376465 + ], + [ + "▁Jumpstart", + -15.477648735046387 + ], + [ + "▁MQM", + -15.477669715881348 + ], + [ + "ու", + -15.477691650390625 + ], + [ + "▁Linköping", + -15.477734565734863 + ], + [ + "▁HAMILTON", + -15.477757453918457 + ], + [ + "▁challah", + -15.477758407592773 + ], + [ + "▁INCOME", + -15.47775936126709 + ], + [ + "▁Magnuson", + -15.477806091308594 + ], + [ + "▁ACCIDENT", + -15.47780704498291 + ], + [ + "▁GitLab", + -15.477849960327148 + ], + [ + "▁Loblaw", + -15.477871894836426 + ], + [ + "Sunset", + -15.4779634475708 + ], + [ + "▁Hessian", + -15.478017807006836 + ], + [ + "▁anarcho", + -15.478034973144531 + ], + [ + "▁haram", + -15.47803783416748 + ], + [ + "▁wincing", + -15.478067398071289 + ], + [ + "▁contemptible", + -15.478086471557617 + ], + [ + "▁WAITING", + -15.478156089782715 + ], + [ + "▁Mogherini", + -15.47818660736084 + ], + [ + "▁Jabari", + -15.478224754333496 + ], + [ + "▁Jamar", + -15.478227615356445 + ], + [ + "profound", + -15.478230476379395 + ], + [ + "carboxy", + -15.478283882141113 + ], + [ + "▁RATES", + -15.478301048278809 + ], + [ + "PRP", + -15.478304862976074 + ], + [ + "▁Hublot", + -15.478322982788086 + ], + [ + "terminated", + -15.478341102600098 + ], + [ + "▁FINISHED", + -15.478354454040527 + ], + [ + "▁Sebastopol", + -15.478358268737793 + ], + [ + "▁Diminish", + -15.478370666503906 + ], + [ + "▁Shaftesbury", + -15.47838020324707 + ], + [ + "▁makerspace", + -15.478387832641602 + ], + [ + "Alfred", + -15.478408813476562 + ], + [ + "ど", + -15.478413581848145 + ], + [ + "▁DUST", + -15.478416442871094 + ], + [ + "▁Thromb", + -15.478435516357422 + ], + [ + "TLC", + -15.478462219238281 + ], + [ + "LOO", + -15.478468894958496 + ], + [ + "▁UNKNOWN", + -15.478487968444824 + ], + [ + "▁realigned", + -15.478490829467773 + ], + [ + "▁Ummah", + -15.478517532348633 + ], + [ + "▁EXCEL", + -15.478569984436035 + ], + [ + "▁Jeeves", + -15.47857666015625 + ], + [ + "▁neigh", + -15.478580474853516 + ], + [ + "▁periscope", + -15.47860050201416 + ], + [ + "▁NDR", + -15.478610038757324 + ], + [ + "▁Tiverton", + -15.478616714477539 + ], + [ + "▁Ис", + -15.478621482849121 + ], + [ + "▁hematologic", + -15.478702545166016 + ], + [ + "ワ", + -15.478714942932129 + ], + [ + "▁descri", + -15.478754997253418 + ], + [ + "malignant", + -15.478769302368164 + ], + [ + "▁replicable", + -15.47877025604248 + ], + [ + "▁Evangelion", + -15.47878360748291 + ], + [ + "productivity", + -15.478789329528809 + ], + [ + "▁delicatessen", + -15.478822708129883 + ], + [ + "terminate", + -15.4788236618042 + ], + [ + "▁unfavorably", + -15.47883129119873 + ], + [ + "▁bracts", + -15.478837013244629 + ], + [ + "▁gaur", + -15.478857040405273 + ], + [ + "▁Nitrous", + -15.478904724121094 + ], + [ + "smiling", + -15.478917121887207 + ], + [ + "▁Cyclist", + -15.478918075561523 + ], + [ + "今", + -15.4789400100708 + ], + [ + "▁Kishan", + -15.478982925415039 + ], + [ + "sensation", + -15.479010581970215 + ], + [ + "▁Scilly", + -15.479035377502441 + ], + [ + "▁Clueless", + -15.479187965393066 + ], + [ + "SAY", + -15.479191780090332 + ], + [ + "rogan", + -15.479208946228027 + ], + [ + "LAIN", + -15.479230880737305 + ], + [ + "▁pedalling", + -15.479342460632324 + ], + [ + "HAVE", + -15.479354858398438 + ], + [ + "▁Cornelis", + -15.47935676574707 + ], + [ + "ulak", + -15.47937297821045 + ], + [ + "Kerry", + -15.479379653930664 + ], + [ + "authoritarian", + -15.479379653930664 + ], + [ + "▁Struct", + -15.47938060760498 + ], + [ + "▁Biodiesel", + -15.479393005371094 + ], + [ + "chemist", + -15.479425430297852 + ], + [ + "▁Musique", + -15.479433059692383 + ], + [ + "▁Basquiat", + -15.479434967041016 + ], + [ + "▁NORAD", + -15.4794921875 + ], + [ + "▁Ratcha", + -15.4794921875 + ], + [ + "Brig", + -15.479519844055176 + ], + [ + "▁egyptian", + -15.479524612426758 + ], + [ + "▁privatizing", + -15.479573249816895 + ], + [ + "▁Gangnam", + -15.479596138000488 + ], + [ + "▁SURVEY", + -15.479606628417969 + ], + [ + "▁SHELL", + -15.47961139678955 + ], + [ + "▁Hydrogenated", + -15.479656219482422 + ], + [ + "▁HKEY", + -15.479660034179688 + ], + [ + "▁Lanyard", + -15.479670524597168 + ], + [ + "ρό", + -15.479728698730469 + ], + [ + "▁MBTI", + -15.479748725891113 + ], + [ + "▁riffle", + -15.479757308959961 + ], + [ + "cluttering", + -15.479766845703125 + ], + [ + "▁Beaconsfield", + -15.479783058166504 + ], + [ + "▁spatiotemporal", + -15.479823112487793 + ], + [ + "smacking", + -15.479849815368652 + ], + [ + "▁Macaron", + -15.479866981506348 + ], + [ + "▁CONDO", + -15.479873657226562 + ], + [ + "▁CHICKEN", + -15.479952812194824 + ], + [ + "CNP", + -15.479968070983887 + ], + [ + "表面", + -15.479979515075684 + ], + [ + "▁fistful", + -15.47999095916748 + ], + [ + "▁NUTS", + -15.48000431060791 + ], + [ + "例えば", + -15.48002815246582 + ], + [ + "▁incest", + -15.480067253112793 + ], + [ + "▁SolarCity", + -15.480130195617676 + ], + [ + "ски", + -15.480161666870117 + ], + [ + "▁reperfusion", + -15.480255126953125 + ], + [ + "▁evolutionarily", + -15.480264663696289 + ], + [ + "Scrap", + -15.48029899597168 + ], + [ + "▁DTT", + -15.480306625366211 + ], + [ + "▁Gilmer", + -15.48031997680664 + ], + [ + "▁Chowder", + -15.480323791503906 + ], + [ + "▁Klep", + -15.480345726013184 + ], + [ + "podium", + -15.480367660522461 + ], + [ + "▁Roddick", + -15.480375289916992 + ], + [ + "▁Noreen", + -15.480395317077637 + ], + [ + "▁тре", + -15.480396270751953 + ], + [ + "▁Daikin", + -15.480414390563965 + ], + [ + "▁emma", + -15.480424880981445 + ], + [ + "Binding", + -15.48043155670166 + ], + [ + "unofficial", + -15.480487823486328 + ], + [ + "▁ferric", + -15.480509757995605 + ], + [ + "▁Midler", + -15.480522155761719 + ], + [ + "Neighbor", + -15.480600357055664 + ], + [ + "▁litigant", + -15.480621337890625 + ], + [ + "receipt", + -15.480623245239258 + ], + [ + "▁Mbeki", + -15.480629920959473 + ], + [ + "▁gujarat", + -15.480663299560547 + ], + [ + "▁Shroff", + -15.48068618774414 + ], + [ + "▁Bimini", + -15.480714797973633 + ], + [ + "▁Cucina", + -15.480714797973633 + ], + [ + "Elanna", + -15.48072338104248 + ], + [ + "▁WORLDWIDE", + -15.480749130249023 + ], + [ + "▁Parametric", + -15.480775833129883 + ], + [ + "▁semicircular", + -15.480778694152832 + ], + [ + "STORE", + -15.480856895446777 + ], + [ + "▁Samira", + -15.480856895446777 + ], + [ + "successfully", + -15.480891227722168 + ], + [ + "▁screeched", + -15.48091983795166 + ], + [ + "▁categorisation", + -15.480921745300293 + ], + [ + "▁һ", + -15.480968475341797 + ], + [ + "ѡ", + -15.481073379516602 + ], + [ + "▁SHOWER", + -15.481083869934082 + ], + [ + "▁Hopping", + -15.481122016906738 + ], + [ + "▁Bridgette", + -15.481143951416016 + ], + [ + "▁Grandstand", + -15.481192588806152 + ], + [ + "▁Dewitt", + -15.481247901916504 + ], + [ + "Invision", + -15.481287956237793 + ], + [ + "thrombin", + -15.481334686279297 + ], + [ + "▁Beauvoir", + -15.481389045715332 + ], + [ + "▁splurging", + -15.481417655944824 + ], + [ + "▁Photosmart", + -15.481424331665039 + ], + [ + "▁Haruka", + -15.481430053710938 + ], + [ + "Intelligent", + -15.48144245147705 + ], + [ + "▁Gobert", + -15.481499671936035 + ], + [ + "城", + -15.481539726257324 + ], + [ + "▁Drysdale", + -15.481603622436523 + ], + [ + "fication", + -15.481639862060547 + ], + [ + "Prospect", + -15.481646537780762 + ], + [ + "▁Stopper", + -15.48165512084961 + ], + [ + "▁Gatekeeper", + -15.481710433959961 + ], + [ + "▁HEREIN", + -15.481731414794922 + ], + [ + "▁Beveridge", + -15.481742858886719 + ], + [ + "▁tingly", + -15.481884002685547 + ], + [ + "▁enrage", + -15.481931686401367 + ], + [ + "▁Narcissist", + -15.481949806213379 + ], + [ + "▁repetitious", + -15.48195743560791 + ], + [ + "secretary", + -15.481973648071289 + ], + [ + "▁procreate", + -15.482009887695312 + ], + [ + "▁Hutson", + -15.482025146484375 + ], + [ + "▁Unavailable", + -15.482025146484375 + ], + [ + "▁windbreaker", + -15.482070922851562 + ], + [ + "视", + -15.482071876525879 + ], + [ + "▁Declared", + -15.4821195602417 + ], + [ + "▁Mundy", + -15.482197761535645 + ], + [ + "Elle", + -15.482231140136719 + ], + [ + "Charter", + -15.482339859008789 + ], + [ + "▁jefferson", + -15.482372283935547 + ], + [ + "▁anamorphic", + -15.482377052307129 + ], + [ + "▁Tatra", + -15.482534408569336 + ], + [ + "brushed", + -15.48254680633545 + ], + [ + "TAX", + -15.482552528381348 + ], + [ + "▁CINCINNATI", + -15.482563018798828 + ], + [ + "▁contro", + -15.482605934143066 + ], + [ + "▁Volpe", + -15.482612609863281 + ], + [ + "止", + -15.482612609863281 + ], + [ + "▁CHIC", + -15.482630729675293 + ], + [ + "▁NASL", + -15.482637405395508 + ], + [ + "▁satay", + -15.482738494873047 + ], + [ + "▁Invariably", + -15.482756614685059 + ], + [ + "▁minoxidil", + -15.482756614685059 + ], + [ + "易", + -15.482756614685059 + ], + [ + "▁minnie", + -15.482821464538574 + ], + [ + "▁reclassify", + -15.482836723327637 + ], + [ + "▁Cleave", + -15.482843399047852 + ], + [ + "▁Besson", + -15.482889175415039 + ], + [ + "▁CoreLogic", + -15.48299503326416 + ], + [ + "▁WebKit", + -15.48303508758545 + ], + [ + "stimulus", + -15.483041763305664 + ], + [ + "ም", + -15.483080863952637 + ], + [ + "▁intruded", + -15.483091354370117 + ], + [ + "ophytic", + -15.483153343200684 + ], + [ + "▁PANDORA", + -15.48316764831543 + ], + [ + "▁Successive", + -15.483192443847656 + ], + [ + "▁Veronika", + -15.483213424682617 + ], + [ + "▁Freckle", + -15.483222007751465 + ], + [ + "Magnetic", + -15.483244895935059 + ], + [ + "▁SITUATION", + -15.483297348022461 + ], + [ + "▁Noblesville", + -15.48339557647705 + ], + [ + "humble", + -15.483400344848633 + ], + [ + "▁Phonetic", + -15.483402252197266 + ], + [ + "▁skank", + -15.48348331451416 + ], + [ + "▁MANCHESTER", + -15.483519554138184 + ], + [ + "Compact", + -15.483549118041992 + ], + [ + "▁TTF", + -15.483588218688965 + ], + [ + "heiser", + -15.483606338500977 + ], + [ + "▁hypoglycemic", + -15.483626365661621 + ], + [ + "وز", + -15.483644485473633 + ], + [ + "▁£450", + -15.483681678771973 + ], + [ + "▁FDP", + -15.483684539794922 + ], + [ + "▁Brumbies", + -15.48369312286377 + ], + [ + "▁photorealistic", + -15.483697891235352 + ], + [ + "▁Comsenz", + -15.483731269836426 + ], + [ + "▁disorganization", + -15.483753204345703 + ], + [ + "▁sucessful", + -15.483757972717285 + ], + [ + "▁Lampoon", + -15.48376178741455 + ], + [ + "▁Cavite", + -15.4837646484375 + ], + [ + "▁Rifa", + -15.483777046203613 + ], + [ + "▁Steinfeld", + -15.483806610107422 + ], + [ + "myositis", + -15.483819007873535 + ], + [ + "▁genealogies", + -15.48383903503418 + ], + [ + "▁ampere", + -15.483858108520508 + ], + [ + "▁PROPER", + -15.483882904052734 + ], + [ + "▁CAROLINA", + -15.483949661254883 + ], + [ + "TTF", + -15.483954429626465 + ], + [ + "▁Bilderberg", + -15.483956336975098 + ], + [ + "▁banishing", + -15.484009742736816 + ], + [ + "▁NLD", + -15.484036445617676 + ], + [ + "▁Rhoads", + -15.48409652709961 + ], + [ + "▁Leticia", + -15.484156608581543 + ], + [ + "▁Schnee", + -15.484182357788086 + ], + [ + "Weapon", + -15.484210968017578 + ], + [ + "▁SCCM", + -15.484231948852539 + ], + [ + "▁anonymised", + -15.484271049499512 + ], + [ + "professed", + -15.484274864196777 + ], + [ + "▁loonie", + -15.484299659729004 + ], + [ + "عة", + -15.484318733215332 + ], + [ + "▁Skeeter", + -15.48432445526123 + ], + [ + "▁westernmost", + -15.484328269958496 + ], + [ + "▁FORTH", + -15.484419822692871 + ], + [ + "▁precession", + -15.484453201293945 + ], + [ + "▁Flashpoint", + -15.48445987701416 + ], + [ + "Η", + -15.484485626220703 + ], + [ + "qualify", + -15.484511375427246 + ], + [ + "▁Assamese", + -15.484604835510254 + ], + [ + "bliss", + -15.484609603881836 + ], + [ + "▁Sebi", + -15.484618186950684 + ], + [ + "▁JNU", + -15.484619140625 + ], + [ + "▁Leominster", + -15.484630584716797 + ], + [ + "▁Naeem", + -15.484631538391113 + ], + [ + "▁Economically", + -15.484640121459961 + ], + [ + "▁¥1", + -15.48465633392334 + ], + [ + "▁avarice", + -15.48475456237793 + ], + [ + "▁Edvard", + -15.48480224609375 + ], + [ + "▁Borgia", + -15.484811782836914 + ], + [ + "▁brasserie", + -15.48495864868164 + ], + [ + "▁Caterina", + -15.485001564025879 + ], + [ + "SPOT", + -15.485007286071777 + ], + [ + "▁GROWTH", + -15.485013961791992 + ], + [ + "▁Haggerty", + -15.485074043273926 + ], + [ + "Bennett", + -15.48512077331543 + ], + [ + "▁Octavian", + -15.485145568847656 + ], + [ + "▁Mistry", + -15.48518180847168 + ], + [ + "▁omnipotence", + -15.485201835632324 + ], + [ + "akku", + -15.485299110412598 + ], + [ + "▁DINING", + -15.485369682312012 + ], + [ + "▁LaRouche", + -15.48537540435791 + ], + [ + "▁STRANGE", + -15.485376358032227 + ], + [ + "▁Cybertron", + -15.485382080078125 + ], + [ + "▁milwaukee", + -15.485397338867188 + ], + [ + "▁Edinburg", + -15.485404968261719 + ], + [ + "▁Roussel", + -15.485457420349121 + ], + [ + "▁Enright", + -15.485465049743652 + ], + [ + "▁Piketty", + -15.485541343688965 + ], + [ + "▁effing", + -15.485543251037598 + ], + [ + "▁nubuck", + -15.48558235168457 + ], + [ + "▁PILOT", + -15.485593795776367 + ], + [ + "nuck", + -15.485599517822266 + ], + [ + "▁Steiger", + -15.485621452331543 + ], + [ + "▁revascularization", + -15.485635757446289 + ], + [ + "▁drawbridge", + -15.485641479492188 + ], + [ + "▁infallibility", + -15.485679626464844 + ], + [ + "▁VOX", + -15.485695838928223 + ], + [ + "▁möglich", + -15.485793113708496 + ], + [ + "સ", + -15.485852241516113 + ], + [ + "▁Ataturk", + -15.48587417602539 + ], + [ + "▁agonized", + -15.485876083374023 + ], + [ + "ionally", + -15.485932350158691 + ], + [ + "▁Chander", + -15.485939979553223 + ], + [ + "▁wakeboard", + -15.485944747924805 + ], + [ + "क्ष", + -15.485979080200195 + ], + [ + "▁Trowbridge", + -15.485981941223145 + ], + [ + "▁mongrel", + -15.486003875732422 + ], + [ + "▁Biofeedback", + -15.486007690429688 + ], + [ + "▁Leiter", + -15.486021041870117 + ], + [ + "▁Minuteman", + -15.4860258102417 + ], + [ + "Concert", + -15.486027717590332 + ], + [ + "ullin", + -15.486037254333496 + ], + [ + "▁Pritchett", + -15.486047744750977 + ], + [ + "gencia", + -15.486098289489746 + ], + [ + "▁ayahuasca", + -15.486133575439453 + ], + [ + "▁Pawel", + -15.486143112182617 + ], + [ + "▁Padraig", + -15.48618221282959 + ], + [ + "▁BEAM", + -15.486201286315918 + ], + [ + "▁Bildung", + -15.486209869384766 + ], + [ + "▁Palmitate", + -15.486226081848145 + ], + [ + "▁Anticipate", + -15.486268997192383 + ], + [ + "delphi", + -15.486284255981445 + ], + [ + "Maintain", + -15.486364364624023 + ], + [ + "kaXF", + -15.486371994018555 + ], + [ + "Champ", + -15.486387252807617 + ], + [ + "▁Outdated", + -15.486407279968262 + ], + [ + "▁Nappa", + -15.486420631408691 + ], + [ + "▁medicaid", + -15.48642349243164 + ], + [ + "developmental", + -15.486432075500488 + ], + [ + "stealth", + -15.48643970489502 + ], + [ + "▁Jalil", + -15.486462593078613 + ], + [ + "▁Endometriosis", + -15.48652458190918 + ], + [ + "▁Jobcentre", + -15.486528396606445 + ], + [ + "▁Debating", + -15.486532211303711 + ], + [ + "▁Qumran", + -15.486589431762695 + ], + [ + "▁Severance", + -15.486628532409668 + ], + [ + "▁disorient", + -15.486637115478516 + ], + [ + "▁mammo", + -15.486674308776855 + ], + [ + "▁Aliment", + -15.486675262451172 + ], + [ + "▁Perrier", + -15.486681938171387 + ], + [ + "▁synchronously", + -15.486685752868652 + ], + [ + "▁إلى", + -15.486741065979004 + ], + [ + "▁Jesu", + -15.486767768859863 + ], + [ + "▁splintering", + -15.486863136291504 + ], + [ + "▁Lunn", + -15.486867904663086 + ], + [ + "▁авто", + -15.486892700195312 + ], + [ + "▁gerrymander", + -15.486945152282715 + ], + [ + "▁CORS", + -15.486980438232422 + ], + [ + "మ", + -15.487001419067383 + ], + [ + "abrasion", + -15.487024307250977 + ], + [ + "▁ezr", + -15.487151145935059 + ], + [ + "▁Kennewick", + -15.487161636352539 + ], + [ + "▁existentialism", + -15.487181663513184 + ], + [ + "Stretch", + -15.487222671508789 + ], + [ + "▁foreknowledge", + -15.48727035522461 + ], + [ + "▁Hammam", + -15.487289428710938 + ], + [ + "Supplement", + -15.487305641174316 + ], + [ + "▁Methodological", + -15.487309455871582 + ], + [ + "▁proteinuria", + -15.487363815307617 + ], + [ + "▁Mitrovic", + -15.487394332885742 + ], + [ + "recommendation", + -15.487405776977539 + ], + [ + "▁CLOCK", + -15.487406730651855 + ], + [ + "▁Unbeatable", + -15.487414360046387 + ], + [ + "▁athleisure", + -15.487422943115234 + ], + [ + "▁FastPass", + -15.48746395111084 + ], + [ + "kamagra", + -15.487479209899902 + ], + [ + "metrix", + -15.487485885620117 + ], + [ + "ゲ", + -15.487558364868164 + ], + [ + "▁disdainful", + -15.487586975097656 + ], + [ + "▁Sintra", + -15.487613677978516 + ], + [ + "ЕН", + -15.48762035369873 + ], + [ + "ො", + -15.487630844116211 + ], + [ + "▁glamourous", + -15.487683296203613 + ], + [ + "▁Xenical", + -15.487699508666992 + ], + [ + "CSV", + -15.4877290725708 + ], + [ + "▁joie", + -15.48783016204834 + ], + [ + "▁conquistador", + -15.487848281860352 + ], + [ + "▁MUSEUM", + -15.487853050231934 + ], + [ + "▁Cistercian", + -15.487870216369629 + ], + [ + "▁SOUTHERN", + -15.487961769104004 + ], + [ + "▁Whimsical", + -15.4879789352417 + ], + [ + "▁perpetrating", + -15.4879789352417 + ], + [ + "▁spacesuit", + -15.488004684448242 + ], + [ + "companion", + -15.488027572631836 + ], + [ + "▁RYA", + -15.488059997558594 + ], + [ + "▁Tillamook", + -15.48808765411377 + ], + [ + "erlein", + -15.488089561462402 + ], + [ + "▁maki", + -15.488099098205566 + ], + [ + "alach", + -15.488119125366211 + ], + [ + "▁flac", + -15.488147735595703 + ], + [ + "▁thermonuclear", + -15.48814868927002 + ], + [ + "Vacation", + -15.48817253112793 + ], + [ + "urgy", + -15.48818588256836 + ], + [ + "evolutionary", + -15.48822021484375 + ], + [ + "RATING", + -15.488224983215332 + ], + [ + "ित", + -15.488225936889648 + ], + [ + "▁Irvington", + -15.488226890563965 + ], + [ + "▁Dordogne", + -15.488239288330078 + ], + [ + "▁Farrington", + -15.48824405670166 + ], + [ + "ημ", + -15.488288879394531 + ], + [ + "▁Giclee", + -15.488348007202148 + ], + [ + "▁cockatoo", + -15.488348007202148 + ], + [ + "▁athletically", + -15.488377571105957 + ], + [ + "▁Llorean", + -15.488412857055664 + ], + [ + "▁Chartres", + -15.488524436950684 + ], + [ + "▁Dvor", + -15.48853588104248 + ], + [ + "Frequency", + -15.48854923248291 + ], + [ + "▁Peroxide", + -15.48854923248291 + ], + [ + "▁sidestepped", + -15.488551139831543 + ], + [ + "▁baddest", + -15.488564491271973 + ], + [ + "▁Médi", + -15.488578796386719 + ], + [ + "▁Weintraub", + -15.488587379455566 + ], + [ + "▁Metamorphosis", + -15.488609313964844 + ], + [ + "▁retraced", + -15.488643646240234 + ], + [ + "▁Paprika", + -15.488659858703613 + ], + [ + "reflecting", + -15.488664627075195 + ], + [ + "▁Infernal", + -15.488679885864258 + ], + [ + "PaaS", + -15.488725662231445 + ], + [ + "▁Reitman", + -15.488739967346191 + ], + [ + "▁Pulte", + -15.48875617980957 + ], + [ + "▁credenza", + -15.488768577575684 + ], + [ + "▁Reasonably", + -15.488801002502441 + ], + [ + "▁Discontinued", + -15.488865852355957 + ], + [ + "ehner", + -15.488873481750488 + ], + [ + "shampoo", + -15.488951683044434 + ], + [ + "blob", + -15.48895263671875 + ], + [ + "ց", + -15.488956451416016 + ], + [ + "▁depreciating", + -15.488978385925293 + ], + [ + "▁ribeye", + -15.488985061645508 + ], + [ + "▁Skylanders", + -15.488996505737305 + ], + [ + "▁Keshav", + -15.489033699035645 + ], + [ + "fentanil", + -15.4890718460083 + ], + [ + "▁Gummy", + -15.489073753356934 + ], + [ + "乐", + -15.489081382751465 + ], + [ + "▁amiibo", + -15.489089965820312 + ], + [ + "▁vender", + -15.489100456237793 + ], + [ + "programmer", + -15.489131927490234 + ], + [ + "MILF", + -15.489174842834473 + ], + [ + "▁Gustavus", + -15.48923110961914 + ], + [ + "▁FAILED", + -15.489250183105469 + ], + [ + "▁deformable", + -15.489274978637695 + ], + [ + "OKO", + -15.4893217086792 + ], + [ + "▁Evoque", + -15.489378929138184 + ], + [ + "ESSA", + -15.489383697509766 + ], + [ + "▁Postmodernism", + -15.489387512207031 + ], + [ + "contour", + -15.489473342895508 + ], + [ + "▁chemistries", + -15.489493370056152 + ], + [ + "▁emboli", + -15.489534378051758 + ], + [ + "▁MAMA", + -15.489537239074707 + ], + [ + "▁Aeneas", + -15.48953914642334 + ], + [ + "▁lollies", + -15.489542961120605 + ], + [ + "▁Latency", + -15.489555358886719 + ], + [ + "Lace", + -15.489561080932617 + ], + [ + "lucent", + -15.48956298828125 + ], + [ + "▁Zendaya", + -15.489577293395996 + ], + [ + "▁Calabar", + -15.489616394042969 + ], + [ + "THAT", + -15.489631652832031 + ], + [ + "▁paternalistic", + -15.489631652832031 + ], + [ + "▁tonneau", + -15.489641189575195 + ], + [ + "▁Kilometer", + -15.489703178405762 + ], + [ + "▁tribune", + -15.489788055419922 + ], + [ + "ип", + -15.4898042678833 + ], + [ + "anatomy", + -15.489842414855957 + ], + [ + "▁salivate", + -15.489846229553223 + ], + [ + "disclosed", + -15.489879608154297 + ], + [ + "하면", + -15.48989200592041 + ], + [ + "Donoghue", + -15.489941596984863 + ], + [ + "▁Rhodo", + -15.489948272705078 + ], + [ + "Thumb", + -15.489950180053711 + ], + [ + "▁Knowlton", + -15.489962577819824 + ], + [ + "▁Abedi", + -15.490032196044922 + ], + [ + "▁Executing", + -15.490090370178223 + ], + [ + "▁deferential", + -15.490091323852539 + ], + [ + "czne", + -15.490114212036133 + ], + [ + "fructose", + -15.490116119384766 + ], + [ + "▁polemical", + -15.490202903747559 + ], + [ + "▁appeasing", + -15.49026107788086 + ], + [ + "▁repressor", + -15.490297317504883 + ], + [ + "▁Spearhead", + -15.490300178527832 + ], + [ + "▁Teich", + -15.490304946899414 + ], + [ + "▁Sussman", + -15.490309715270996 + ], + [ + "▁Prospector", + -15.490324020385742 + ], + [ + "Baba", + -15.49035930633545 + ], + [ + "▁Joanie", + -15.49036979675293 + ], + [ + "根据", + -15.490379333496094 + ], + [ + "▁Методические", + -15.490392684936523 + ], + [ + "▁incorruptible", + -15.4904146194458 + ], + [ + "▁taj", + -15.49042797088623 + ], + [ + "▁Guarantor", + -15.490501403808594 + ], + [ + "▁OpenBSD", + -15.490516662597656 + ], + [ + "▁Roommate", + -15.490523338317871 + ], + [ + "Temperature", + -15.490546226501465 + ], + [ + "stemmed", + -15.490584373474121 + ], + [ + "▁Lewisburg", + -15.49059009552002 + ], + [ + "▁Jenelle", + -15.490595817565918 + ], + [ + "▁arachnid", + -15.490632057189941 + ], + [ + "▁knapsack", + -15.490632057189941 + ], + [ + "▁Rectory", + -15.490649223327637 + ], + [ + "▁Ragland", + -15.490662574768066 + ], + [ + "▁Rasp", + -15.49068546295166 + ], + [ + "็", + -15.490696907043457 + ], + [ + "▁equilibria", + -15.49071979522705 + ], + [ + "▁ignominious", + -15.490763664245605 + ], + [ + "▁Digestion", + -15.490779876708984 + ], + [ + "Grandma", + -15.49078369140625 + ], + [ + "▁Lycoming", + -15.490798950195312 + ], + [ + "gospel", + -15.49083137512207 + ], + [ + "schnitt", + -15.49083137512207 + ], + [ + "▁microgravity", + -15.490901947021484 + ], + [ + "fucking", + -15.49093246459961 + ], + [ + "▁BDP", + -15.490954399108887 + ], + [ + "▁roku", + -15.490989685058594 + ], + [ + "HBA", + -15.49099349975586 + ], + [ + "ической", + -15.490998268127441 + ], + [ + "▁Enceladus", + -15.491045951843262 + ], + [ + "▁Optimise", + -15.4910888671875 + ], + [ + "▁Caledon", + -15.491103172302246 + ], + [ + "▁caffe", + -15.491116523742676 + ], + [ + "▁dhcp", + -15.491145133972168 + ], + [ + "▁Grewal", + -15.49114990234375 + ], + [ + "increment", + -15.491151809692383 + ], + [ + "▁Postoperative", + -15.491216659545898 + ], + [ + "▁declination", + -15.491223335266113 + ], + [ + "▁Shahzad", + -15.491250038146973 + ], + [ + "adaptation", + -15.491323471069336 + ], + [ + "▁TRANSPORT", + -15.491328239440918 + ], + [ + "ducción", + -15.491355895996094 + ], + [ + "▁Majeure", + -15.491373062133789 + ], + [ + "▁PLT", + -15.491453170776367 + ], + [ + "▁Bumrah", + -15.491520881652832 + ], + [ + "▁hideously", + -15.491525650024414 + ], + [ + "太", + -15.491525650024414 + ], + [ + "▁Broder", + -15.491532325744629 + ], + [ + "▁Dominator", + -15.491548538208008 + ], + [ + "▁headbutt", + -15.491551399230957 + ], + [ + "▁Dworkin", + -15.491593360900879 + ], + [ + "naghan", + -15.491599082946777 + ], + [ + "▁DNN", + -15.491644859313965 + ], + [ + "semantic", + -15.491668701171875 + ], + [ + "overview", + -15.491704940795898 + ], + [ + "▁PNR", + -15.491715431213379 + ], + [ + "▁Bookworm", + -15.491777420043945 + ], + [ + "管理", + -15.491778373718262 + ], + [ + "▁Shaheed", + -15.491801261901855 + ], + [ + "▁Selbst", + -15.491809844970703 + ], + [ + "▁disadvantageous", + -15.491849899291992 + ], + [ + "▁Gosford", + -15.491861343383789 + ], + [ + "▁Oolong", + -15.491965293884277 + ], + [ + "▁DEW", + -15.49196720123291 + ], + [ + "poop", + -15.491976737976074 + ], + [ + "▁Telefonica", + -15.491990089416504 + ], + [ + "▁Yasin", + -15.492002487182617 + ], + [ + "▁EXCITED", + -15.492005348205566 + ], + [ + "▁Skeptical", + -15.492021560668945 + ], + [ + "处理", + -15.492040634155273 + ], + [ + "▁Orthodontist", + -15.492071151733398 + ], + [ + "▁Combinatorial", + -15.492107391357422 + ], + [ + "▁hierarch", + -15.492107391357422 + ], + [ + "roulette", + -15.492212295532227 + ], + [ + "▁Tralee", + -15.492219924926758 + ], + [ + "▁Boltzmann", + -15.492228507995605 + ], + [ + "Administration", + -15.4922513961792 + ], + [ + "seemingly", + -15.4922513961792 + ], + [ + "grammar", + -15.492276191711426 + ], + [ + "▁jousting", + -15.49233627319336 + ], + [ + "пользов", + -15.492398262023926 + ], + [ + "▁Kamel", + -15.49240779876709 + ], + [ + "agogue", + -15.492411613464355 + ], + [ + "ículo", + -15.492454528808594 + ], + [ + "▁Worf", + -15.492496490478516 + ], + [ + "▁Corpora", + -15.492551803588867 + ], + [ + "身", + -15.4925537109375 + ], + [ + "▁Shmuel", + -15.492572784423828 + ], + [ + "▁Castiel", + -15.492609024047852 + ], + [ + "▁Teru", + -15.492613792419434 + ], + [ + "ക്ക", + -15.492680549621582 + ], + [ + "▁subsec", + -15.492682456970215 + ], + [ + "食", + -15.492772102355957 + ], + [ + "Nissan", + -15.492801666259766 + ], + [ + "bjerg", + -15.49281120300293 + ], + [ + "▁ᐈ", + -15.492813110351562 + ], + [ + "▁PROVIDERS", + -15.492814064025879 + ], + [ + "▁ezine", + -15.49283504486084 + ], + [ + "▁trazodone", + -15.492856979370117 + ], + [ + "▁Votto", + -15.49285888671875 + ], + [ + "Auction", + -15.492871284484863 + ], + [ + "▁Heathcote", + -15.492873191833496 + ], + [ + "▁Incubation", + -15.492878913879395 + ], + [ + "▁Ungar", + -15.49288272857666 + ], + [ + "▁Coolant", + -15.492892265319824 + ], + [ + "▁Lindstrom", + -15.492937088012695 + ], + [ + "Detective", + -15.49294662475586 + ], + [ + "▁Leilani", + -15.492969512939453 + ], + [ + "▁Hochschule", + -15.492984771728516 + ], + [ + "李", + -15.492984771728516 + ], + [ + "ILLO", + -15.49300765991211 + ], + [ + "lactamase", + -15.49301528930664 + ], + [ + "buffered", + -15.493033409118652 + ], + [ + "▁unfashionable", + -15.493075370788574 + ], + [ + "CUTE", + -15.493101119995117 + ], + [ + "qiu", + -15.493112564086914 + ], + [ + "▁misappropriated", + -15.493118286132812 + ], + [ + "▁celebra", + -15.49319076538086 + ], + [ + "▁garbanzo", + -15.493206024169922 + ], + [ + "▁Aventador", + -15.4932279586792 + ], + [ + "▁DESTROY", + -15.493233680725098 + ], + [ + "▁Prendergast", + -15.493249893188477 + ], + [ + "▁Appreciating", + -15.493271827697754 + ], + [ + "calculate", + -15.493319511413574 + ], + [ + "▁Madhuri", + -15.493341445922852 + ], + [ + "Deuteronomy", + -15.4933443069458 + ], + [ + "▁separa", + -15.493359565734863 + ], + [ + "▁QUIET", + -15.493369102478027 + ], + [ + "▁strutted", + -15.493369102478027 + ], + [ + "▁Cormorant", + -15.493380546569824 + ], + [ + "▁Bioshock", + -15.49338150024414 + ], + [ + "▁Ò", + -15.493398666381836 + ], + [ + "violate", + -15.493487358093262 + ], + [ + "▁Wimmer", + -15.493513107299805 + ], + [ + "▁mesmerize", + -15.493521690368652 + ], + [ + "Identify", + -15.493532180786133 + ], + [ + "▁Кр", + -15.49355411529541 + ], + [ + "▁Syringe", + -15.493571281433105 + ], + [ + "plaats", + -15.49358081817627 + ], + [ + "▁Acanth", + -15.493622779846191 + ], + [ + "ZZZ", + -15.493637084960938 + ], + [ + "▁Guzmán", + -15.493642807006836 + ], + [ + "ulite", + -15.493659019470215 + ], + [ + "▁Rausch", + -15.493674278259277 + ], + [ + "▁Arbitrage", + -15.493743896484375 + ], + [ + "▁Avios", + -15.49374771118164 + ], + [ + "▁rowboat", + -15.49377727508545 + ], + [ + "यो", + -15.493796348571777 + ], + [ + "▁Japon", + -15.493812561035156 + ], + [ + "▁biloba", + -15.493816375732422 + ], + [ + "▁新", + -15.493821144104004 + ], + [ + "▁datos", + -15.493861198425293 + ], + [ + "Publish", + -15.493917465209961 + ], + [ + "ambara", + -15.493952751159668 + ], + [ + "▁speechwriter", + -15.493988990783691 + ], + [ + "▁Quarries", + -15.493989944458008 + ], + [ + "padded", + -15.494025230407715 + ], + [ + "▁Belizean", + -15.494096755981445 + ], + [ + "▁Causa", + -15.494108200073242 + ], + [ + "▁Shaughnessy", + -15.494149208068848 + ], + [ + "▁Krejci", + -15.494189262390137 + ], + [ + "strategies", + -15.494242668151855 + ], + [ + "▁Telecaster", + -15.49425983428955 + ], + [ + "DRP", + -15.494277954101562 + ], + [ + "▁Huddleston", + -15.494314193725586 + ], + [ + "Panther", + -15.49432373046875 + ], + [ + "▁Fresnel", + -15.49432373046875 + ], + [ + "olata", + -15.494332313537598 + ], + [ + "▁hahahaha", + -15.494377136230469 + ], + [ + "▁Teapot", + -15.494379043579102 + ], + [ + "▁Kovalev", + -15.494474411010742 + ], + [ + "▁garlicky", + -15.494486808776855 + ], + [ + "HOOD", + -15.494498252868652 + ], + [ + "tretinoin", + -15.4945068359375 + ], + [ + "Tourism", + -15.494543075561523 + ], + [ + "▁Gravitational", + -15.494561195373535 + ], + [ + "▁millimetre", + -15.494563102722168 + ], + [ + "кции", + -15.494576454162598 + ], + [ + "▁Tamper", + -15.494589805603027 + ], + [ + "Dodge", + -15.494598388671875 + ], + [ + "▁Pepperoni", + -15.494648933410645 + ], + [ + "▁NORD", + -15.494682312011719 + ], + [ + "adiya", + -15.4946928024292 + ], + [ + "▁LICENSORS", + -15.494735717773438 + ], + [ + "▁Vanish", + -15.494772911071777 + ], + [ + "▁Manheim", + -15.494845390319824 + ], + [ + "▁Abhay", + -15.494864463806152 + ], + [ + "▁Jutland", + -15.49487590789795 + ], + [ + "▁GLORY", + -15.49494457244873 + ], + [ + "▁Bastia", + -15.494956970214844 + ], + [ + "▁که", + -15.494977951049805 + ], + [ + "▁ThinQ", + -15.494997024536133 + ], + [ + "▁nacho", + -15.495015144348145 + ], + [ + "▁Menswear", + -15.495019912719727 + ], + [ + "Lithuania", + -15.49506950378418 + ], + [ + "acquire", + -15.495083808898926 + ], + [ + "▁Gnar", + -15.495111465454102 + ], + [ + "Earnings", + -15.495119094848633 + ], + [ + "▁cisgender", + -15.495136260986328 + ], + [ + "atmosphere", + -15.495148658752441 + ], + [ + "▁Petaling", + -15.495163917541504 + ], + [ + "▁reais", + -15.495196342468262 + ], + [ + "▁Preservative", + -15.495216369628906 + ], + [ + "happily", + -15.495217323303223 + ], + [ + "▁Ramírez", + -15.4952392578125 + ], + [ + "Jessy", + -15.495272636413574 + ], + [ + "▁interlocked", + -15.495280265808105 + ], + [ + "▁cantankerous", + -15.495283126831055 + ], + [ + "▁curried", + -15.495320320129395 + ], + [ + "▁Tilden", + -15.495338439941406 + ], + [ + "▁Shaqiri", + -15.495357513427734 + ], + [ + "tribune", + -15.495368957519531 + ], + [ + "āma", + -15.49538516998291 + ], + [ + "▁Housekeeper", + -15.495396614074707 + ], + [ + "isée", + -15.495426177978516 + ], + [ + "Gorgeous", + -15.495463371276855 + ], + [ + "場", + -15.495519638061523 + ], + [ + "▁Rappaport", + -15.495633125305176 + ], + [ + "▁Schenker", + -15.495650291442871 + ], + [ + "▁botulism", + -15.495655059814453 + ], + [ + "▁fiduciaries", + -15.49567699432373 + ], + [ + "geographical", + -15.495696067810059 + ], + [ + "▁PINE", + -15.49570083618164 + ], + [ + "▁SIXTY", + -15.49573802947998 + ], + [ + "TTR", + -15.49574089050293 + ], + [ + "▁flouting", + -15.495813369750977 + ], + [ + "▁immo", + -15.495813369750977 + ], + [ + "▁Flipper", + -15.495898246765137 + ], + [ + "▁nosotros", + -15.495917320251465 + ], + [ + "▁NGF", + -15.496018409729004 + ], + [ + "▁Ро", + -15.49602222442627 + ], + [ + "▁Lumiere", + -15.496026039123535 + ], + [ + "▁Ruhl", + -15.496028900146484 + ], + [ + "▁bacteriophage", + -15.496049880981445 + ], + [ + "growers", + -15.496071815490723 + ], + [ + "▁Banca", + -15.49608325958252 + ], + [ + "▁LUCKY", + -15.496174812316895 + ], + [ + "▁Petoskey", + -15.496180534362793 + ], + [ + "ؤ", + -15.496246337890625 + ], + [ + "▁Goodale", + -15.496294021606445 + ], + [ + "invalid", + -15.496299743652344 + ], + [ + "Kbps", + -15.49634838104248 + ], + [ + "▁TorGuard", + -15.496349334716797 + ], + [ + "▁offshoring", + -15.496369361877441 + ], + [ + "scoe", + -15.49638557434082 + ], + [ + "munity", + -15.496444702148438 + ], + [ + "▁coord", + -15.49644660949707 + ], + [ + "▁etymological", + -15.496471405029297 + ], + [ + "▁unachievable", + -15.496508598327637 + ], + [ + "▁Cardoso", + -15.49653434753418 + ], + [ + "▁licensor", + -15.496540069580078 + ], + [ + "tsuko", + -15.49657154083252 + ], + [ + "▁poblano", + -15.496574401855469 + ], + [ + "▁Lidia", + -15.49660873413086 + ], + [ + "▁Guadalcanal", + -15.496618270874023 + ], + [ + "BRT", + -15.496642112731934 + ], + [ + "▁nougat", + -15.496657371520996 + ], + [ + "abundance", + -15.496671676635742 + ], + [ + "Texture", + -15.49667739868164 + ], + [ + "▁Chelan", + -15.496698379516602 + ], + [ + "▁Gigantic", + -15.496703147888184 + ], + [ + "porphyrin", + -15.496709823608398 + ], + [ + "▁plasm", + -15.49671745300293 + ], + [ + "ussel", + -15.496745109558105 + ], + [ + "▁Coherent", + -15.496772766113281 + ], + [ + "▁Fondation", + -15.496801376342773 + ], + [ + "▁Eudora", + -15.496811866760254 + ], + [ + "▁ActionScript", + -15.496813774108887 + ], + [ + "▁operetta", + -15.496837615966797 + ], + [ + "▁Masahiro", + -15.496870040893555 + ], + [ + "▁Excluded", + -15.496893882751465 + ], + [ + "▁Mujeres", + -15.496927261352539 + ], + [ + "▁Nudge", + -15.496932029724121 + ], + [ + "Sonoma", + -15.496959686279297 + ], + [ + "そ", + -15.496989250183105 + ], + [ + "▁Allendale", + -15.496992111206055 + ], + [ + "▁Steuben", + -15.497054100036621 + ], + [ + "▁flapped", + -15.497097969055176 + ], + [ + "رف", + -15.497121810913086 + ], + [ + "▁CHOCOLATE", + -15.497122764587402 + ], + [ + "▁Stroman", + -15.497123718261719 + ], + [ + "▁Rollover", + -15.497171401977539 + ], + [ + "გ", + -15.497182846069336 + ], + [ + "▁Stallings", + -15.49722671508789 + ], + [ + "▁Yala", + -15.49726390838623 + ], + [ + "Resume", + -15.497279167175293 + ], + [ + "▁Demers", + -15.497293472290039 + ], + [ + "▁untraceable", + -15.497298240661621 + ], + [ + "▁DURA", + -15.49732494354248 + ], + [ + "▁HORN", + -15.497352600097656 + ], + [ + "▁위한", + -15.497352600097656 + ], + [ + "▁Piglet", + -15.49736499786377 + ], + [ + "▁Spellman", + -15.497400283813477 + ], + [ + "▁Lumley", + -15.497411727905273 + ], + [ + "▁RMR", + -15.497445106506348 + ], + [ + "▁germanium", + -15.497471809387207 + ], + [ + "▁Ambala", + -15.497488975524902 + ], + [ + "▁supermassive", + -15.497490882873535 + ], + [ + "Pvt", + -15.497507095336914 + ], + [ + "گر", + -15.497517585754395 + ], + [ + "▁Bombardment", + -15.497517585754395 + ], + [ + "▁Sihanouk", + -15.497560501098633 + ], + [ + "Arsenal", + -15.497614860534668 + ], + [ + "pushed", + -15.497641563415527 + ], + [ + "АН", + -15.49766731262207 + ], + [ + "Monthly", + -15.497711181640625 + ], + [ + "▁desiccant", + -15.497758865356445 + ], + [ + "▁따라", + -15.49777889251709 + ], + [ + "▁argentina", + -15.497834205627441 + ], + [ + "neckline", + -15.49789810180664 + ], + [ + "▁travers", + -15.497940063476562 + ], + [ + "▁Dhillon", + -15.497944831848145 + ], + [ + "OLIN", + -15.497946739196777 + ], + [ + "▁Blowout", + -15.497961044311523 + ], + [ + "zón", + -15.498002052307129 + ], + [ + "▁Raster", + -15.498041152954102 + ], + [ + "▁Strel", + -15.498048782348633 + ], + [ + "shaker", + -15.498054504394531 + ], + [ + "Insaf", + -15.498056411743164 + ], + [ + "▁GPCR", + -15.498069763183594 + ], + [ + "▁Teheran", + -15.498089790344238 + ], + [ + "يق", + -15.498104095458984 + ], + [ + "▁Untreated", + -15.4981050491333 + ], + [ + "нь", + -15.49810791015625 + ], + [ + "▁Sahl", + -15.49810791015625 + ], + [ + "▁MQTT", + -15.498126029968262 + ], + [ + "▁BioShock", + -15.498127937316895 + ], + [ + "▁Soothe", + -15.498138427734375 + ], + [ + "▁Chiesa", + -15.49814510345459 + ], + [ + "▁Thrissur", + -15.498153686523438 + ], + [ + "phosphor", + -15.49815845489502 + ], + [ + "▁Footsteps", + -15.498169898986816 + ], + [ + "suresite", + -15.498187065124512 + ], + [ + "▁Khadija", + -15.498187065124512 + ], + [ + "▁Crises", + -15.498197555541992 + ], + [ + "▁Buncombe", + -15.498272895812988 + ], + [ + "▁Stoller", + -15.49827766418457 + ], + [ + "▁Blak", + -15.498332023620605 + ], + [ + "▁Scourge", + -15.498334884643555 + ], + [ + "sculpture", + -15.498367309570312 + ], + [ + "▁Rabobank", + -15.498394966125488 + ], + [ + "тро", + -15.498458862304688 + ], + [ + "▁Roddenberry", + -15.49846076965332 + ], + [ + "▁lexus", + -15.498525619506836 + ], + [ + "▁Treadwell", + -15.498526573181152 + ], + [ + "▁olanzapine", + -15.49854850769043 + ], + [ + "▁completo", + -15.498562812805176 + ], + [ + "▁multigenerational", + -15.498567581176758 + ], + [ + "▁equiv", + -15.498575210571289 + ], + [ + "▁↓", + -15.498669624328613 + ], + [ + "▁hydronic", + -15.498710632324219 + ], + [ + "ASTIC", + -15.498724937438965 + ], + [ + "▁landforms", + -15.498806953430176 + ], + [ + "▁Skool", + -15.498807907104492 + ], + [ + "shouldered", + -15.498811721801758 + ], + [ + "▁uncompromised", + -15.498833656311035 + ], + [ + "worry", + -15.498873710632324 + ], + [ + "▁LIQUID", + -15.498899459838867 + ], + [ + "▁Stadler", + -15.498903274536133 + ], + [ + "▁handwoven", + -15.498908996582031 + ], + [ + "▁Caco", + -15.498958587646484 + ], + [ + "▁Calamity", + -15.498976707458496 + ], + [ + "Lepidoptera", + -15.498987197875977 + ], + [ + "bericht", + -15.499136924743652 + ], + [ + "isomer", + -15.49920654296875 + ], + [ + "▁Humankind", + -15.499395370483398 + ], + [ + "▁Mowgli", + -15.499415397644043 + ], + [ + "Interactive", + -15.499444007873535 + ], + [ + "▁VESA", + -15.499509811401367 + ], + [ + "▁Saucony", + -15.499558448791504 + ], + [ + "발", + -15.499567031860352 + ], + [ + "▁viene", + -15.499604225158691 + ], + [ + "▁Rittenhouse", + -15.499625205993652 + ], + [ + "▁RESOLUTION", + -15.499628067016602 + ], + [ + "▁lockstep", + -15.49963092803955 + ], + [ + "respectful", + -15.499687194824219 + ], + [ + "lláh", + -15.499688148498535 + ], + [ + "▁Wuthering", + -15.499734878540039 + ], + [ + "▁Insurgent", + -15.49979305267334 + ], + [ + "▁instructable", + -15.49981689453125 + ], + [ + "▁mudguard", + -15.499832153320312 + ], + [ + "▁Whitcomb", + -15.499852180480957 + ], + [ + "▁Suncorp", + -15.499855041503906 + ], + [ + "材料", + -15.499889373779297 + ], + [ + "▁muddied", + -15.499919891357422 + ], + [ + "▁Aquitaine", + -15.499932289123535 + ], + [ + "▁Selden", + -15.499933242797852 + ], + [ + "ków", + -15.499948501586914 + ], + [ + "▁Caylee", + -15.49994945526123 + ], + [ + "outcome", + -15.499959945678711 + ], + [ + "▁Colitis", + -15.49998950958252 + ], + [ + "▁Nissen", + -15.50001335144043 + ], + [ + "▁monetise", + -15.500016212463379 + ], + [ + "▁Humid", + -15.500018119812012 + ], + [ + "▁Pocatello", + -15.500020027160645 + ], + [ + "▁Gravesend", + -15.500057220458984 + ], + [ + "▁Kaby", + -15.500091552734375 + ], + [ + "▁Ле", + -15.500097274780273 + ], + [ + "▁MACHINERY", + -15.50018310546875 + ], + [ + "execute", + -15.500226020812988 + ], + [ + "morbidities", + -15.500242233276367 + ], + [ + "ԝ", + -15.500284194946289 + ], + [ + "▁Lambton", + -15.500301361083984 + ], + [ + "▁Keighley", + -15.500306129455566 + ], + [ + "клад", + -15.500330924987793 + ], + [ + "▁Otu", + -15.500365257263184 + ], + [ + "▁Backdrop", + -15.500370025634766 + ], + [ + "▁BASH", + -15.500457763671875 + ], + [ + "Bangladesh", + -15.500473022460938 + ], + [ + "lógica", + -15.500484466552734 + ], + [ + "▁Earliest", + -15.500496864318848 + ], + [ + "itatis", + -15.500537872314453 + ], + [ + "▁lignite", + -15.500556945800781 + ], + [ + "▁Carrig", + -15.500568389892578 + ], + [ + "▁Jameel", + -15.500574111938477 + ], + [ + "▁Jainism", + -15.50057601928711 + ], + [ + "▁Dungeness", + -15.500679969787598 + ], + [ + "▁Proofreading", + -15.500683784484863 + ], + [ + "▁Brokaw", + -15.500686645507812 + ], + [ + "▁Chomp", + -15.500718116760254 + ], + [ + "▁baloney", + -15.5007905960083 + ], + [ + "▁Mozambican", + -15.500834465026855 + ], + [ + "▁Jankowski", + -15.500852584838867 + ], + [ + "▁Hungerford", + -15.500856399536133 + ], + [ + "▁REIN", + -15.500876426696777 + ], + [ + "▁PLAYING", + -15.500879287719727 + ], + [ + "ў", + -15.500882148742676 + ], + [ + "Spend", + -15.500899314880371 + ], + [ + "▁miniaturization", + -15.500900268554688 + ], + [ + "▁Huay", + -15.500935554504395 + ], + [ + "▁Blackheath", + -15.500945091247559 + ], + [ + "▁Borja", + -15.500946998596191 + ], + [ + "▁Ornitho", + -15.500958442687988 + ], + [ + "abala", + -15.500970840454102 + ], + [ + "▁Vigna", + -15.5010404586792 + ], + [ + "▁Spangler", + -15.501042366027832 + ], + [ + "ách", + -15.50106143951416 + ], + [ + "▁Ricochet", + -15.501068115234375 + ], + [ + "▁sandcastle", + -15.50107192993164 + ], + [ + "ャ", + -15.50107479095459 + ], + [ + "▁Rendon", + -15.501104354858398 + ], + [ + "ithromycin", + -15.501160621643066 + ], + [ + "▁transposon", + -15.501164436340332 + ], + [ + "▁Adamawa", + -15.501176834106445 + ], + [ + "▁snakeskin", + -15.501182556152344 + ], + [ + "▁PROMOTION", + -15.501225471496582 + ], + [ + "▁disequilibrium", + -15.501227378845215 + ], + [ + "▁THQ", + -15.50125503540039 + ], + [ + "brei", + -15.501288414001465 + ], + [ + "▁Shabaab", + -15.501358985900879 + ], + [ + "▁negli", + -15.501385688781738 + ], + [ + "▁vacuole", + -15.501405715942383 + ], + [ + "▁bodhisattva", + -15.5014066696167 + ], + [ + "Nebraska", + -15.50141716003418 + ], + [ + "▁Prescribed", + -15.501428604125977 + ], + [ + "semitic", + -15.501436233520508 + ], + [ + "액", + -15.501450538635254 + ], + [ + "▁Kleb", + -15.501477241516113 + ], + [ + "▁Shinde", + -15.501524925231934 + ], + [ + "liani", + -15.501532554626465 + ], + [ + "▁lipitor", + -15.501579284667969 + ], + [ + "▁Hostile", + -15.50159740447998 + ], + [ + "▁Moolah", + -15.501666069030762 + ], + [ + "▁usurper", + -15.501739501953125 + ], + [ + "▁이상", + -15.501745223999023 + ], + [ + "полн", + -15.501748085021973 + ], + [ + "▁ENVIRONMENT", + -15.501819610595703 + ], + [ + "▁seltzer", + -15.501830101013184 + ], + [ + "grew", + -15.501866340637207 + ], + [ + "▁tandoori", + -15.501869201660156 + ], + [ + "thalassemia", + -15.501891136169434 + ], + [ + "▁CNRS", + -15.501896858215332 + ], + [ + "enhof", + -15.501932144165039 + ], + [ + "▁Kiddie", + -15.50195026397705 + ], + [ + "▁GLOBE", + -15.501972198486328 + ], + [ + "liment", + -15.502018928527832 + ], + [ + "▁Ме", + -15.502037048339844 + ], + [ + "▁Mullet", + -15.502042770385742 + ], + [ + "▁Pontus", + -15.502103805541992 + ], + [ + "▁greenbelt", + -15.502111434936523 + ], + [ + "▁kumar", + -15.502119064331055 + ], + [ + "▁Bough", + -15.502145767211914 + ], + [ + "▁Pimentel", + -15.50220012664795 + ], + [ + "ommer", + -15.502243041992188 + ], + [ + "▁Letitia", + -15.502257347106934 + ], + [ + "▁Daisuke", + -15.502259254455566 + ], + [ + "exploit", + -15.502293586730957 + ], + [ + "untu", + -15.502304077148438 + ], + [ + "▁comScore", + -15.502309799194336 + ], + [ + "▁coveting", + -15.502323150634766 + ], + [ + "▁Islamophobic", + -15.502327919006348 + ], + [ + "▁Witty", + -15.502334594726562 + ], + [ + "▁Zuid", + -15.502349853515625 + ], + [ + "образ", + -15.502360343933105 + ], + [ + "▁AUTHORITY", + -15.502360343933105 + ], + [ + "▁bietet", + -15.502376556396484 + ], + [ + "▁USOC", + -15.502381324768066 + ], + [ + "▁paroxetine", + -15.502388000488281 + ], + [ + "▁Lucero", + -15.502395629882812 + ], + [ + "▁Smokin", + -15.502429962158203 + ], + [ + "▁Sinfonia", + -15.502443313598633 + ], + [ + "▁Kalka", + -15.502463340759277 + ], + [ + "▁rapier", + -15.502470016479492 + ], + [ + "igua", + -15.502470970153809 + ], + [ + "RNP", + -15.502503395080566 + ], + [ + "▁maggot", + -15.502504348754883 + ], + [ + "▁WMF", + -15.502535820007324 + ], + [ + "trumpet", + -15.502541542053223 + ], + [ + "▁configurator", + -15.502594947814941 + ], + [ + "▁xylophone", + -15.502595901489258 + ], + [ + "abnormal", + -15.502599716186523 + ], + [ + "▁LCSW", + -15.502605438232422 + ], + [ + "▁cingulate", + -15.502623558044434 + ], + [ + "▁TREK", + -15.502630233764648 + ], + [ + "▁exudate", + -15.502641677856445 + ], + [ + "▁TALL", + -15.502684593200684 + ], + [ + "▁OMEGA", + -15.50271987915039 + ], + [ + "▁parasailing", + -15.502729415893555 + ], + [ + "▁dazu", + -15.502747535705566 + ], + [ + "stuhl", + -15.502764701843262 + ], + [ + "▁Infineon", + -15.502862930297852 + ], + [ + "▁Faulty", + -15.50288200378418 + ], + [ + "▁Hazara", + -15.502889633178711 + ], + [ + "▁flim", + -15.502890586853027 + ], + [ + "▁CSW", + -15.50289249420166 + ], + [ + "adobe", + -15.502948760986328 + ], + [ + "ɦ", + -15.502948760986328 + ], + [ + "▁الخ", + -15.502951622009277 + ], + [ + "dissertation", + -15.502959251403809 + ], + [ + "▁impoverishment", + -15.50299072265625 + ], + [ + "▁Festus", + -15.502997398376465 + ], + [ + "▁Schnauzer", + -15.503037452697754 + ], + [ + "▁semaphore", + -15.503037452697754 + ], + [ + "▁Carmella", + -15.50308895111084 + ], + [ + "▁Metatrader", + -15.503098487854004 + ], + [ + "▁RescueTime", + -15.503119468688965 + ], + [ + "▁Fusarium", + -15.503170013427734 + ], + [ + "▁whimpered", + -15.503211975097656 + ], + [ + "▁Kantian", + -15.503259658813477 + ], + [ + "wishes", + -15.503264427185059 + ], + [ + "▁incredulously", + -15.503294944763184 + ], + [ + "aratne", + -15.503299713134766 + ], + [ + "▁Vertebrate", + -15.503301620483398 + ], + [ + "▁Neenah", + -15.503400802612305 + ], + [ + "FOAM", + -15.503410339355469 + ], + [ + "▁ArcelorMittal", + -15.503412246704102 + ], + [ + "▁JORDAN", + -15.503434181213379 + ], + [ + "▁Cinta", + -15.503435134887695 + ], + [ + "▁Orbitz", + -15.503458976745605 + ], + [ + "ыва", + -15.503470420837402 + ], + [ + "НО", + -15.503487586975098 + ], + [ + "▁vota", + -15.503487586975098 + ], + [ + "▁Roselle", + -15.503518104553223 + ], + [ + "▁Zwingle", + -15.503544807434082 + ], + [ + "▁RIDGE", + -15.50357723236084 + ], + [ + "▁général", + -15.503588676452637 + ], + [ + "参", + -15.503588676452637 + ], + [ + "▁salah", + -15.503604888916016 + ], + [ + "▁LexisNexis", + -15.503632545471191 + ], + [ + "oxime", + -15.503661155700684 + ], + [ + "单", + -15.50366497039795 + ], + [ + "▁eluding", + -15.503705978393555 + ], + [ + "▁HIGHER", + -15.503715515136719 + ], + [ + "▁Snoqualmie", + -15.503721237182617 + ], + [ + "▁Merion", + -15.503725051879883 + ], + [ + "▁Saku", + -15.503758430480957 + ], + [ + "结", + -15.503798484802246 + ], + [ + "▁Herkimer", + -15.503808975219727 + ], + [ + "▁VIVA", + -15.503832817077637 + ], + [ + "▁CANON", + -15.503890991210938 + ], + [ + "▁amyotrophic", + -15.50391960144043 + ], + [ + "▁ALEXANDER", + -15.503920555114746 + ], + [ + "▁GGG", + -15.503958702087402 + ], + [ + "iddling", + -15.5039701461792 + ], + [ + "▁sandbag", + -15.50400447845459 + ], + [ + "Protocol", + -15.504024505615234 + ], + [ + "▁agronomist", + -15.504032135009766 + ], + [ + "质", + -15.504035949707031 + ], + [ + "▁Hindustani", + -15.504064559936523 + ], + [ + "▁hemolytic", + -15.504104614257812 + ], + [ + "▁RALEIGH", + -15.504118919372559 + ], + [ + "▁propolis", + -15.504141807556152 + ], + [ + "▁photometric", + -15.504148483276367 + ], + [ + "▁Blackbeard", + -15.504151344299316 + ], + [ + "▁millones", + -15.504158020019531 + ], + [ + "▁Resistor", + -15.504161834716797 + ], + [ + "neural", + -15.504179954528809 + ], + [ + "▁ITALY", + -15.504190444946289 + ], + [ + "▁Dymo", + -15.504193305969238 + ], + [ + "WIND", + -15.504240036010742 + ], + [ + "▁Joab", + -15.5042724609375 + ], + [ + "▁Vicarage", + -15.50429630279541 + ], + [ + "▁pemb", + -15.50430965423584 + ], + [ + "▁reformulated", + -15.504319190979004 + ], + [ + "▁FANTASY", + -15.504339218139648 + ], + [ + "▁Vineland", + -15.504340171813965 + ], + [ + "▁Sentral", + -15.504341125488281 + ], + [ + "▁INSEAD", + -15.504361152648926 + ], + [ + "▁instigation", + -15.504409790039062 + ], + [ + "▁colonised", + -15.504444122314453 + ], + [ + "▁Seifert", + -15.504490852355957 + ], + [ + "▁marimba", + -15.50451946258545 + ], + [ + "Fifth", + -15.504539489746094 + ], + [ + "▁fibrinogen", + -15.504547119140625 + ], + [ + "autumn", + -15.50455379486084 + ], + [ + "▁Braunschweig", + -15.50460433959961 + ], + [ + "▁Groh", + -15.50461483001709 + ], + [ + "▁sacrum", + -15.504672050476074 + ], + [ + "車", + -15.504677772521973 + ], + [ + "Ubuntu", + -15.504681587219238 + ], + [ + "wight", + -15.504706382751465 + ], + [ + "▁Denbigh", + -15.504715919494629 + ], + [ + "▁Babysitter", + -15.504716873168945 + ], + [ + "baseline", + -15.50473403930664 + ], + [ + "Mighty", + -15.50473690032959 + ], + [ + "▁indemnified", + -15.50473690032959 + ], + [ + "Closing", + -15.504737854003906 + ], + [ + "shkov", + -15.504754066467285 + ], + [ + "▁irks", + -15.504830360412598 + ], + [ + "▁Soloist", + -15.504858016967773 + ], + [ + "▁Accor", + -15.504878044128418 + ], + [ + "▁responsabil", + -15.504899024963379 + ], + [ + "Рѕ", + -15.50492000579834 + ], + [ + "▁Afrikaner", + -15.504997253417969 + ], + [ + "▁Choudhary", + -15.505045890808105 + ], + [ + "▁Mustafi", + -15.505057334899902 + ], + [ + "▁poultice", + -15.505067825317383 + ], + [ + "▁Lyndhurst", + -15.505095481872559 + ], + [ + "▁cinn", + -15.505118370056152 + ], + [ + "▁Kahneman", + -15.505162239074707 + ], + [ + "▁Humberto", + -15.505226135253906 + ], + [ + "Received", + -15.505231857299805 + ], + [ + "▁unblocking", + -15.505243301391602 + ], + [ + "▁Waddington", + -15.505285263061523 + ], + [ + "述", + -15.50529670715332 + ], + [ + "▁Arriva", + -15.505354881286621 + ], + [ + "▁Expanse", + -15.505426406860352 + ], + [ + "▁pantsuit", + -15.505453109741211 + ], + [ + "▁Hayabusa", + -15.505465507507324 + ], + [ + "▁rehydration", + -15.505495071411133 + ], + [ + "▁LEMON", + -15.505502700805664 + ], + [ + "▁Andheri", + -15.505570411682129 + ], + [ + "▁Philemon", + -15.505594253540039 + ], + [ + "conium", + -15.505703926086426 + ], + [ + "▁Peridot", + -15.505706787109375 + ], + [ + "▁FANDOM", + -15.50572681427002 + ], + [ + "variation", + -15.505741119384766 + ], + [ + "carried", + -15.505753517150879 + ], + [ + "burr", + -15.505755424499512 + ], + [ + "▁Phantasm", + -15.50576114654541 + ], + [ + "ठ", + -15.505775451660156 + ], + [ + "▁launchpad", + -15.505805015563965 + ], + [ + "Invalid", + -15.505810737609863 + ], + [ + "▁Joli", + -15.505823135375977 + ], + [ + "سم", + -15.505840301513672 + ], + [ + "▁contentedly", + -15.505867958068848 + ], + [ + "▁Jagan", + -15.505935668945312 + ], + [ + "▁FWC", + -15.505983352661133 + ], + [ + "invitation", + -15.505992889404297 + ], + [ + "tufted", + -15.506016731262207 + ], + [ + "▁snowplow", + -15.506019592285156 + ], + [ + "係", + -15.50602912902832 + ], + [ + "SERVICE", + -15.506033897399902 + ], + [ + "saddle", + -15.506050109863281 + ], + [ + "▁ciabatta", + -15.506085395812988 + ], + [ + "▁Tagovailoa", + -15.50615119934082 + ], + [ + "▁BOG", + -15.506165504455566 + ], + [ + "▁Molecule", + -15.506206512451172 + ], + [ + "▁corralled", + -15.506277084350586 + ], + [ + "ხ", + -15.5062837600708 + ], + [ + "▁INFINITI", + -15.506306648254395 + ], + [ + "▁Banque", + -15.506330490112305 + ], + [ + "▁OVC", + -15.506357192993164 + ], + [ + "obese", + -15.506359100341797 + ], + [ + "▁Trice", + -15.506393432617188 + ], + [ + "▁distemper", + -15.506426811218262 + ], + [ + "▁Jabal", + -15.50644588470459 + ], + [ + "▁Descarga", + -15.506449699401855 + ], + [ + "▁Cumin", + -15.50645923614502 + ], + [ + "▁chinchilla", + -15.506461143493652 + ], + [ + "▁wij", + -15.506495475769043 + ], + [ + "▁Elliptical", + -15.506525993347168 + ], + [ + "▁Varga", + -15.506590843200684 + ], + [ + "▁Baskerville", + -15.50659465789795 + ], + [ + "▁varicella", + -15.506619453430176 + ], + [ + "Brady", + -15.506632804870605 + ], + [ + "▁fertilise", + -15.50666332244873 + ], + [ + "encrypted", + -15.506667137145996 + ], + [ + "▁Kiowa", + -15.506709098815918 + ], + [ + "▁Regain", + -15.506731033325195 + ], + [ + "Stainless", + -15.506760597229004 + ], + [ + "لت", + -15.506782531738281 + ], + [ + "▁Prav", + -15.506793022155762 + ], + [ + "▁transparencies", + -15.506793022155762 + ], + [ + "▁tarball", + -15.506826400756836 + ], + [ + "▁osteosarcoma", + -15.50685977935791 + ], + [ + "▁Cervi", + -15.50687026977539 + ], + [ + "▁neonicotinoid", + -15.506881713867188 + ], + [ + "▁honorific", + -15.506882667541504 + ], + [ + "▁Symbolism", + -15.506890296936035 + ], + [ + "elijke", + -15.506912231445312 + ], + [ + "▁Carmona", + -15.506945610046387 + ], + [ + "▁Bursary", + -15.507003784179688 + ], + [ + "Podcast", + -15.507009506225586 + ], + [ + "twisting", + -15.507043838500977 + ], + [ + "▁SUGGEST", + -15.507081031799316 + ], + [ + "▁Runescape", + -15.507087707519531 + ], + [ + "▁PBT", + -15.507096290588379 + ], + [ + "▁QUAD", + -15.507099151611328 + ], + [ + "▁ITSELF", + -15.50710391998291 + ], + [ + "extraction", + -15.507104873657227 + ], + [ + "GUY", + -15.507123947143555 + ], + [ + "▁ciliary", + -15.507124900817871 + ], + [ + "▁Lazaro", + -15.507149696350098 + ], + [ + "▁Knorr", + -15.50716495513916 + ], + [ + "▁Grunge", + -15.507168769836426 + ], + [ + "Universit", + -15.507200241088867 + ], + [ + "▁Globalisation", + -15.507294654846191 + ], + [ + "▁imprisoning", + -15.507332801818848 + ], + [ + "▁Tacitus", + -15.50735092163086 + ], + [ + "▁MISSED", + -15.507406234741211 + ], + [ + "▁Garbo", + -15.50745964050293 + ], + [ + "▁phylo", + -15.50748062133789 + ], + [ + "▁Proclaim", + -15.507494926452637 + ], + [ + "▁Cotto", + -15.507499694824219 + ], + [ + "▁Datin", + -15.5075101852417 + ], + [ + "rrera", + -15.507513999938965 + ], + [ + "urren", + -15.507529258728027 + ], + [ + "매", + -15.507534980773926 + ], + [ + "▁Greiner", + -15.507554054260254 + ], + [ + "▁Clawson", + -15.507559776306152 + ], + [ + "▁Tizen", + -15.507559776306152 + ], + [ + "▁Trenbolone", + -15.507590293884277 + ], + [ + "▁Marciano", + -15.507596969604492 + ], + [ + "ству", + -15.507611274719238 + ], + [ + "▁Przy", + -15.507647514343262 + ], + [ + "Diploma", + -15.507660865783691 + ], + [ + "Lili", + -15.50770092010498 + ], + [ + "ausch", + -15.507726669311523 + ], + [ + "▁pansies", + -15.507741928100586 + ], + [ + "▁Pollutant", + -15.50782299041748 + ], + [ + "▁glaciation", + -15.507837295532227 + ], + [ + "▁wikiHow", + -15.507842063903809 + ], + [ + "ала", + -15.50784683227539 + ], + [ + "صلى", + -15.507878303527832 + ], + [ + "creepy", + -15.507969856262207 + ], + [ + "▁Crysis", + -15.508031845092773 + ], + [ + "▁hominin", + -15.508035659790039 + ], + [ + "▁WebLogic", + -15.508047103881836 + ], + [ + "▁tahun", + -15.508049964904785 + ], + [ + "▁sentience", + -15.508050918579102 + ], + [ + "▁HUAWEI", + -15.508055686950684 + ], + [ + "▁Popping", + -15.508127212524414 + ], + [ + "様", + -15.508176803588867 + ], + [ + "ewska", + -15.50819206237793 + ], + [ + "▁Buu", + -15.508203506469727 + ], + [ + "contested", + -15.508213996887207 + ], + [ + "molding", + -15.5082368850708 + ], + [ + "▁Fragrant", + -15.508254051208496 + ], + [ + "▁Hepatology", + -15.50830364227295 + ], + [ + "ouchi", + -15.508316993713379 + ], + [ + "▁Miraculously", + -15.508345603942871 + ], + [ + "▁COMPANIES", + -15.508410453796387 + ], + [ + "HEAT", + -15.508420944213867 + ], + [ + "migrate", + -15.508441925048828 + ], + [ + "magnetism", + -15.50844955444336 + ], + [ + "▁Effingham", + -15.508461952209473 + ], + [ + "▁Kentuckian", + -15.508499145507812 + ], + [ + "▁Kampung", + -15.508502960205078 + ], + [ + "▁Jawbone", + -15.508513450622559 + ], + [ + "▁nailhead", + -15.508528709411621 + ], + [ + "▁Migratory", + -15.508587837219238 + ], + [ + "▁Calcite", + -15.508617401123047 + ], + [ + "▁mahjong", + -15.508635520935059 + ], + [ + "ается", + -15.508650779724121 + ], + [ + "▁Panarin", + -15.508650779724121 + ], + [ + "richard", + -15.508661270141602 + ], + [ + "Spell", + -15.508705139160156 + ], + [ + "▁Sentai", + -15.508752822875977 + ], + [ + "▁Cipriani", + -15.50876522064209 + ], + [ + "phylla", + -15.50878620147705 + ], + [ + "▁Suncor", + -15.5089693069458 + ], + [ + "▁Trinamool", + -15.508987426757812 + ], + [ + "长", + -15.508989334106445 + ], + [ + "harry", + -15.508993148803711 + ], + [ + "▁Kreider", + -15.509042739868164 + ], + [ + "Wanted", + -15.509078979492188 + ], + [ + "▁modulo", + -15.50909423828125 + ], + [ + "▁Suncoast", + -15.509098052978516 + ], + [ + "▁Clearview", + -15.509106636047363 + ], + [ + "▁Obsolete", + -15.50914192199707 + ], + [ + "▁anastomosis", + -15.50914192199707 + ], + [ + "▁inimical", + -15.509159088134766 + ], + [ + "▁buffaloes", + -15.509160041809082 + ], + [ + "▁Babin", + -15.509174346923828 + ], + [ + "▁mesmo", + -15.509177207946777 + ], + [ + "▁DETECT", + -15.509207725524902 + ], + [ + "▁surpr", + -15.509211540222168 + ], + [ + "Evangel", + -15.509220123291016 + ], + [ + "▁Polak", + -15.509234428405762 + ], + [ + "▁Ambler", + -15.50930404663086 + ], + [ + "▁attitudinal", + -15.50935173034668 + ], + [ + "olitic", + -15.509353637695312 + ], + [ + "▁Santoro", + -15.509366035461426 + ], + [ + "▁Hijab", + -15.509392738342285 + ], + [ + "Ж", + -15.509395599365234 + ], + [ + "TIFF", + -15.509428024291992 + ], + [ + "▁Grenville", + -15.509439468383789 + ], + [ + "▁devaluing", + -15.509452819824219 + ], + [ + "▁Nunc", + -15.509454727172852 + ], + [ + "▁LUXURY", + -15.509521484375 + ], + [ + "▁gringo", + -15.509521484375 + ], + [ + "uvier", + -15.509554862976074 + ], + [ + "▁TYR", + -15.509567260742188 + ], + [ + "▁Eury", + -15.509651184082031 + ], + [ + "▁Illuminate", + -15.50968074798584 + ], + [ + "λι", + -15.509683609008789 + ], + [ + "▁Olusegun", + -15.509719848632812 + ], + [ + "▁Vittoria", + -15.50973129272461 + ], + [ + "▁FitzGerald", + -15.509808540344238 + ], + [ + "▁RESET", + -15.509838104248047 + ], + [ + "▁Ajman", + -15.509856224060059 + ], + [ + "Patent", + -15.509861946105957 + ], + [ + "▁Distilling", + -15.509897232055664 + ], + [ + "▁Trevino", + -15.509900093078613 + ], + [ + "▁Trotz", + -15.509900093078613 + ], + [ + "implantation", + -15.509927749633789 + ], + [ + "▁Cabrillo", + -15.509929656982422 + ], + [ + "స", + -15.509941101074219 + ], + [ + "ִי", + -15.509957313537598 + ], + [ + "▁Cavity", + -15.50999927520752 + ], + [ + "▁baclofen", + -15.510074615478516 + ], + [ + "▁Mutu", + -15.510080337524414 + ], + [ + "▁serological", + -15.510083198547363 + ], + [ + "▁Satisfactory", + -15.510096549987793 + ], + [ + "▁blindingly", + -15.510100364685059 + ], + [ + "▁Nanna", + -15.510103225708008 + ], + [ + "▁Customizing", + -15.510144233703613 + ], + [ + "perience", + -15.51019287109375 + ], + [ + "▁VOLT", + -15.510276794433594 + ], + [ + "▁Prelims", + -15.51027774810791 + ], + [ + "▁repressing", + -15.51027774810791 + ], + [ + "▁darshan", + -15.51028823852539 + ], + [ + "▁Gregoire", + -15.510308265686035 + ], + [ + "▁penalizing", + -15.510308265686035 + ], + [ + "▁Wrestle", + -15.510340690612793 + ], + [ + "salary", + -15.510354042053223 + ], + [ + "▁ESSA", + -15.51036548614502 + ], + [ + "▁Olbermann", + -15.510385513305664 + ], + [ + "peritoneum", + -15.510400772094727 + ], + [ + "▁macys", + -15.510403633117676 + ], + [ + "▁Euphoria", + -15.510438919067383 + ], + [ + "▁Elaborate", + -15.510455131530762 + ], + [ + "▁Quranic", + -15.510459899902344 + ], + [ + "▁INDEPENDENT", + -15.51047420501709 + ], + [ + "Illumina", + -15.51048469543457 + ], + [ + "▁Taluk", + -15.510507583618164 + ], + [ + "▁hosp", + -15.510526657104492 + ], + [ + "消", + -15.510541915893555 + ], + [ + "▁atorvastatin", + -15.510631561279297 + ], + [ + "▁patellar", + -15.510636329650879 + ], + [ + "▁Riku", + -15.510642051696777 + ], + [ + "▁matthew", + -15.510644912719727 + ], + [ + "▁Baywatch", + -15.510653495788574 + ], + [ + "▁CHRO", + -15.510671615600586 + ], + [ + "▁Accumulate", + -15.5106840133667 + ], + [ + "▁actuating", + -15.510686874389648 + ], + [ + "Anytime", + -15.510705947875977 + ], + [ + "▁Swad", + -15.510716438293457 + ], + [ + "▁Kucherov", + -15.510741233825684 + ], + [ + "▁Hartnett", + -15.5107421875 + ], + [ + "morbid", + -15.510746002197266 + ], + [ + "▁TaylorMade", + -15.510754585266113 + ], + [ + "▁Natan", + -15.510757446289062 + ], + [ + "▁Snopes", + -15.510782241821289 + ], + [ + "▁Etisalat", + -15.510807991027832 + ], + [ + "▁denatured", + -15.510807991027832 + ], + [ + "▁Morpeth", + -15.51082992553711 + ], + [ + "RFID", + -15.510939598083496 + ], + [ + "choir", + -15.51096248626709 + ], + [ + "Efficient", + -15.510976791381836 + ], + [ + "Survival", + -15.510976791381836 + ], + [ + "▁obfuscated", + -15.510981559753418 + ], + [ + "▁unhygienic", + -15.511008262634277 + ], + [ + "Danish", + -15.511046409606934 + ], + [ + "▁dernier", + -15.511092185974121 + ], + [ + "▁stormtrooper", + -15.511103630065918 + ], + [ + "TRIBU", + -15.51114273071289 + ], + [ + "▁camisole", + -15.511143684387207 + ], + [ + "chested", + -15.511155128479004 + ], + [ + "▁분석", + -15.511208534240723 + ], + [ + "▁Biostatistics", + -15.511214256286621 + ], + [ + "▁Patchouli", + -15.511216163635254 + ], + [ + "Bliss", + -15.51125431060791 + ], + [ + "raag", + -15.511283874511719 + ], + [ + "Remix", + -15.511370658874512 + ], + [ + "pawn", + -15.511404991149902 + ], + [ + "ತ", + -15.511449813842773 + ], + [ + "▁gassing", + -15.511463165283203 + ], + [ + "▁Usagi", + -15.511476516723633 + ], + [ + "▁Entomol", + -15.511482238769531 + ], + [ + "▁Ticker", + -15.511490821838379 + ], + [ + "▁nodular", + -15.511496543884277 + ], + [ + "▁toggling", + -15.511526107788086 + ], + [ + "▁Musashi", + -15.511540412902832 + ], + [ + "▁Sojourner", + -15.511541366577148 + ], + [ + "▁weightlifter", + -15.511541366577148 + ], + [ + "consultation", + -15.51154613494873 + ], + [ + "▁Кон", + -15.511548042297363 + ], + [ + "gratitude", + -15.511557579040527 + ], + [ + "▁podiatry", + -15.511563301086426 + ], + [ + "▁Clapp", + -15.511567115783691 + ], + [ + "▁Cornwallis", + -15.511567115783691 + ], + [ + "▁subscript", + -15.51157283782959 + ], + [ + "LIMIT", + -15.511619567871094 + ], + [ + "aleh", + -15.511635780334473 + ], + [ + "▁loiter", + -15.511663436889648 + ], + [ + "▁Ewald", + -15.511669158935547 + ], + [ + "ATELY", + -15.51170825958252 + ], + [ + "▁Luanda", + -15.51170825958252 + ], + [ + "Assignment", + -15.511711120605469 + ], + [ + "▁Teachable", + -15.511792182922363 + ], + [ + "▁Sikhism", + -15.511836051940918 + ], + [ + "▁PATRICK", + -15.511856079101562 + ], + [ + "▁succes", + -15.511856079101562 + ], + [ + "▁lncRNA", + -15.511862754821777 + ], + [ + "▁Sundae", + -15.511876106262207 + ], + [ + "Bottle", + -15.511917114257812 + ], + [ + "Welsh", + -15.511947631835938 + ], + [ + "ো", + -15.511963844299316 + ], + [ + "▁barbiturate", + -15.511963844299316 + ], + [ + "▁webhosting", + -15.512011528015137 + ], + [ + "absurd", + -15.51204776763916 + ], + [ + "▁clampdown", + -15.512086868286133 + ], + [ + "овых", + -15.512113571166992 + ], + [ + "▁sagged", + -15.512130737304688 + ], + [ + "▁apogee", + -15.512181282043457 + ], + [ + "▁invincibility", + -15.512187004089355 + ], + [ + "▁Lovren", + -15.512208938598633 + ], + [ + "▁Burnsville", + -15.512223243713379 + ], + [ + "▁Materia", + -15.5122709274292 + ], + [ + "▁catastrophically", + -15.512369155883789 + ], + [ + "▁Papillon", + -15.512401580810547 + ], + [ + "▁Aleph", + -15.512435913085938 + ], + [ + "▁Lohr", + -15.512444496154785 + ], + [ + "▁defragment", + -15.512451171875 + ], + [ + "▁hobbling", + -15.512482643127441 + ], + [ + "▁shiva", + -15.51251220703125 + ], + [ + "▁Deliberately", + -15.512550354003906 + ], + [ + "▁paraplegic", + -15.512553215026855 + ], + [ + "polarization", + -15.512561798095703 + ], + [ + "miento", + -15.512578964233398 + ], + [ + "▁quanto", + -15.512592315673828 + ], + [ + "▁их", + -15.512600898742676 + ], + [ + "▁mimetic", + -15.512709617614746 + ], + [ + "▁Symphonie", + -15.512798309326172 + ], + [ + "Cooking", + -15.512809753417969 + ], + [ + "▁unheralded", + -15.512876510620117 + ], + [ + "sabotage", + -15.512890815734863 + ], + [ + "▁alprazolam", + -15.512899398803711 + ], + [ + "▁чтобы", + -15.512900352478027 + ], + [ + "▁Pomer", + -15.512956619262695 + ], + [ + "▁slitting", + -15.512956619262695 + ], + [ + "▁DOLLAR", + -15.512964248657227 + ], + [ + "▁inauspicious", + -15.512988090515137 + ], + [ + "▁Politic", + -15.512999534606934 + ], + [ + "▁Scioscia", + -15.513010025024414 + ], + [ + "obtain", + -15.513030052185059 + ], + [ + "블", + -15.513054847717285 + ], + [ + "▁sunbeds", + -15.513130187988281 + ], + [ + "▁Ligand", + -15.51313591003418 + ], + [ + "▁unreserved", + -15.513190269470215 + ], + [ + "ǐ", + -15.513233184814453 + ], + [ + "▁bismuth", + -15.5132417678833 + ], + [ + "▁shamanism", + -15.513272285461426 + ], + [ + "▁Contador", + -15.513283729553223 + ], + [ + "▁harvard", + -15.513320922851562 + ], + [ + "Inspector", + -15.513337135314941 + ], + [ + "▁Sperling", + -15.513387680053711 + ], + [ + "▁Plexus", + -15.513398170471191 + ], + [ + "cije", + -15.513413429260254 + ], + [ + "▁BRIEF", + -15.513422966003418 + ], + [ + "Ferrari", + -15.513427734375 + ], + [ + "▁doubtlessly", + -15.513457298278809 + ], + [ + "▁EVERYBODY", + -15.5134859085083 + ], + [ + "▁NBR", + -15.513492584228516 + ], + [ + "▁Curv", + -15.51350212097168 + ], + [ + "▁Interruption", + -15.513508796691895 + ], + [ + "▁Morelli", + -15.513553619384766 + ], + [ + "▁mbps", + -15.513567924499512 + ], + [ + "▁Walgreen", + -15.5136079788208 + ], + [ + "▁DeBoer", + -15.513611793518066 + ], + [ + "▁pontiac", + -15.513614654541016 + ], + [ + "quaint", + -15.513678550720215 + ], + [ + "▁Naxal", + -15.513687133789062 + ], + [ + "ikke", + -15.513710975646973 + ], + [ + "▁Fodor", + -15.513731002807617 + ], + [ + "Louisiana", + -15.513777732849121 + ], + [ + "▁ratty", + -15.513781547546387 + ], + [ + "▁Expedit", + -15.513826370239258 + ], + [ + "овой", + -15.513833999633789 + ], + [ + "▁Moloney", + -15.513856887817383 + ], + [ + "▁intransigence", + -15.513856887817383 + ], + [ + "▁menggunakan", + -15.513879776000977 + ], + [ + "▁Preschoolers", + -15.513931274414062 + ], + [ + "▁Smartwatch", + -15.513934135437012 + ], + [ + "▁eDiscovery", + -15.513985633850098 + ], + [ + "▁Hannigan", + -15.514039039611816 + ], + [ + "▁tersebut", + -15.514049530029297 + ], + [ + "▁Stuxnet", + -15.514102935791016 + ], + [ + "▁Luciana", + -15.514106750488281 + ], + [ + "▁Viognier", + -15.51414680480957 + ], + [ + "ап", + -15.51414966583252 + ], + [ + "▁Jacquelyn", + -15.514163970947266 + ], + [ + "▁Rockwall", + -15.514163970947266 + ], + [ + "▁Latifah", + -15.514205932617188 + ], + [ + "illustrator", + -15.514212608337402 + ], + [ + "▁Mujahideen", + -15.514216423034668 + ], + [ + "▁cussing", + -15.5142183303833 + ], + [ + "▁Fashionista", + -15.51422119140625 + ], + [ + "▁Luster", + -15.514237403869629 + ], + [ + "▁deltoid", + -15.514254570007324 + ], + [ + "ptosis", + -15.51425552368164 + ], + [ + "▁Ligne", + -15.514265060424805 + ], + [ + "▁Tapia", + -15.514275550842285 + ], + [ + "Reverse", + -15.514413833618164 + ], + [ + "▁CONTRA", + -15.51441764831543 + ], + [ + "CREA", + -15.514444351196289 + ], + [ + "▁nema", + -15.51456356048584 + ], + [ + "TRX", + -15.514653205871582 + ], + [ + "▁transdisciplinary", + -15.514719009399414 + ], + [ + "▁hummer", + -15.514720916748047 + ], + [ + "▁Lindelof", + -15.514732360839844 + ], + [ + "Hughes", + -15.514760971069336 + ], + [ + "▁Midrash", + -15.514787673950195 + ], + [ + "villian", + -15.514788627624512 + ], + [ + "ledger", + -15.514805793762207 + ], + [ + "▁Teriyaki", + -15.514840126037598 + ], + [ + "Publishing", + -15.514843940734863 + ], + [ + "▁haggis", + -15.514849662780762 + ], + [ + "Þ", + -15.514877319335938 + ], + [ + "▁Chicagoans", + -15.51487922668457 + ], + [ + "▁Nardi", + -15.51495361328125 + ], + [ + "▁Sevenoaks", + -15.514973640441895 + ], + [ + "Wallace", + -15.514983177185059 + ], + [ + "▁Tanja", + -15.514991760253906 + ], + [ + "▁Prostitution", + -15.515022277832031 + ], + [ + "▁Adrianna", + -15.515035629272461 + ], + [ + "▁trapezoid", + -15.515045166015625 + ], + [ + "▁Delirium", + -15.515068054199219 + ], + [ + "▁smouldering", + -15.515084266662598 + ], + [ + "▁squirting", + -15.515130996704102 + ], + [ + "enactors", + -15.51525592803955 + ], + [ + "▁KOYO", + -15.515266418457031 + ], + [ + "Glide", + -15.51528549194336 + ], + [ + "جه", + -15.5153169631958 + ], + [ + "▁cypher", + -15.515318870544434 + ], + [ + "▁invalidating", + -15.515324592590332 + ], + [ + "▁thirtieth", + -15.515329360961914 + ], + [ + "ificado", + -15.515348434448242 + ], + [ + "▁virtu", + -15.515358924865723 + ], + [ + "▁SOCKS", + -15.515381813049316 + ], + [ + "▁tortoiseshell", + -15.515435218811035 + ], + [ + "▁flume", + -15.515448570251465 + ], + [ + "▁Obscura", + -15.51546859741211 + ], + [ + "fabulous", + -15.515485763549805 + ], + [ + "▁OverDrive", + -15.515487670898438 + ], + [ + "wherever", + -15.51550006866455 + ], + [ + "▁Organise", + -15.515524864196777 + ], + [ + "confession", + -15.515589714050293 + ], + [ + "Brenda", + -15.515593528747559 + ], + [ + "▁oceanographic", + -15.515599250793457 + ], + [ + "Smoking", + -15.515634536743164 + ], + [ + "▁Allegany", + -15.515687942504883 + ], + [ + "▁tentang", + -15.515693664550781 + ], + [ + "trunc", + -15.515703201293945 + ], + [ + "▁OTOH", + -15.515735626220703 + ], + [ + "▁LVM", + -15.51578426361084 + ], + [ + "▁Judean", + -15.515787124633789 + ], + [ + "carrot", + -15.51579475402832 + ], + [ + "▁Cufflinks", + -15.5158052444458 + ], + [ + "▁Zhuhai", + -15.515822410583496 + ], + [ + "▁Wattle", + -15.515826225280762 + ], + [ + "▁percolating", + -15.515843391418457 + ], + [ + "▁qRT", + -15.515851020812988 + ], + [ + "▁Hampson", + -15.51591682434082 + ], + [ + "▁Tommaso", + -15.515945434570312 + ], + [ + "simplified", + -15.515971183776855 + ], + [ + "LOU", + -15.515987396240234 + ], + [ + "▁operon", + -15.515992164611816 + ], + [ + "▁Tenzin", + -15.516016960144043 + ], + [ + "▁Milpitas", + -15.516044616699219 + ], + [ + "▁Antigone", + -15.516101837158203 + ], + [ + "ОВ", + -15.516145706176758 + ], + [ + "▁NBFC", + -15.516159057617188 + ], + [ + "▁Subsidy", + -15.516182899475098 + ], + [ + "▁grosgrain", + -15.516222953796387 + ], + [ + "▁Borch", + -15.516298294067383 + ], + [ + "▁LIU", + -15.516356468200684 + ], + [ + "anediol", + -15.516364097595215 + ], + [ + "TERM", + -15.516377449035645 + ], + [ + "Alberta", + -15.516451835632324 + ], + [ + "▁두", + -15.516456604003906 + ], + [ + "▁QUIZ", + -15.516461372375488 + ], + [ + "▁Hemphill", + -15.51650619506836 + ], + [ + "▁Viable", + -15.516589164733887 + ], + [ + "▁Bight", + -15.516602516174316 + ], + [ + "▁DiGi", + -15.516634941101074 + ], + [ + "▁Overwhelmed", + -15.516671180725098 + ], + [ + "▁expr", + -15.516685485839844 + ], + [ + "▁Krasinski", + -15.516788482666016 + ], + [ + "▁MoveOn", + -15.516810417175293 + ], + [ + "▁Pujara", + -15.516820907592773 + ], + [ + "LIFT", + -15.51683235168457 + ], + [ + "Diane", + -15.516839027404785 + ], + [ + "spacing", + -15.516857147216797 + ], + [ + "Johann", + -15.516868591308594 + ], + [ + "▁conservatorship", + -15.51688289642334 + ], + [ + "▁EQT", + -15.516883850097656 + ], + [ + "Prevent", + -15.516888618469238 + ], + [ + "▁malayalam", + -15.516916275024414 + ], + [ + "▁Raiden", + -15.516921043395996 + ], + [ + "WARNING", + -15.516935348510742 + ], + [ + "▁Conservatism", + -15.516938209533691 + ], + [ + "fellowship", + -15.516949653625488 + ], + [ + "Therapy", + -15.516966819763184 + ], + [ + "▁stodgy", + -15.516983032226562 + ], + [ + "▁chaque", + -15.51699447631836 + ], + [ + "BRIDGE", + -15.517024993896484 + ], + [ + "▁Torchwood", + -15.517036437988281 + ], + [ + "▁Dagestan", + -15.517057418823242 + ], + [ + "▁nervy", + -15.51706600189209 + ], + [ + "Confidential", + -15.517087936401367 + ], + [ + "▁Enneagram", + -15.517094612121582 + ], + [ + "CBM", + -15.517163276672363 + ], + [ + "▁McCrea", + -15.51716423034668 + ], + [ + "somebody", + -15.517165184020996 + ], + [ + "▁Contained", + -15.517175674438477 + ], + [ + "▁Acronym", + -15.517181396484375 + ], + [ + "▁TISSUES", + -15.517184257507324 + ], + [ + "▁Kanazawa", + -15.517191886901855 + ], + [ + "rehabilitation", + -15.517199516296387 + ], + [ + "▁holier", + -15.51720142364502 + ], + [ + "▁Eltham", + -15.517267227172852 + ], + [ + "▁Sardinian", + -15.517292022705078 + ], + [ + "astri", + -15.517353057861328 + ], + [ + "▁chocolaty", + -15.517372131347656 + ], + [ + "▁neurobiological", + -15.517379760742188 + ], + [ + "▁reconfiguring", + -15.517385482788086 + ], + [ + "▁Cinematographer", + -15.517431259155273 + ], + [ + "▁Malkovich", + -15.517448425292969 + ], + [ + "▁Pavlo", + -15.517495155334473 + ], + [ + "▁Umeå", + -15.5175199508667 + ], + [ + "▁Kyria", + -15.517562866210938 + ], + [ + "▁Ancona", + -15.517617225646973 + ], + [ + "▁undersecretary", + -15.517622947692871 + ], + [ + "▁VOLUNTEER", + -15.517631530761719 + ], + [ + "▁crêpe", + -15.517654418945312 + ], + [ + "▁essa", + -15.517664909362793 + ], + [ + "▁trivialize", + -15.517682075500488 + ], + [ + "▁USATF", + -15.517691612243652 + ], + [ + "anoic", + -15.517717361450195 + ], + [ + "▁derogation", + -15.517735481262207 + ], + [ + "▁Clyne", + -15.517755508422852 + ], + [ + "▁Sicherheit", + -15.517810821533203 + ], + [ + "▁Pisgah", + -15.51781177520752 + ], + [ + "▁separatism", + -15.517833709716797 + ], + [ + "nière", + -15.517885208129883 + ], + [ + "▁375°", + -15.517935752868652 + ], + [ + "▁swatting", + -15.517945289611816 + ], + [ + "▁typhus", + -15.517951011657715 + ], + [ + "▁megastar", + -15.517953872680664 + ], + [ + "▁Goog", + -15.51795482635498 + ], + [ + "PINK", + -15.517970085144043 + ], + [ + "▁Keqiang", + -15.517974853515625 + ], + [ + "▁stepmom", + -15.517984390258789 + ], + [ + "基板", + -15.517999649047852 + ], + [ + "▁Sepsis", + -15.518047332763672 + ], + [ + "▁flab", + -15.518049240112305 + ], + [ + "▁NAFLD", + -15.518107414245605 + ], + [ + "▁kontakt", + -15.518125534057617 + ], + [ + "▁Inmarsat", + -15.518146514892578 + ], + [ + "▁STEWART", + -15.518146514892578 + ], + [ + "▁PEEK", + -15.518166542053223 + ], + [ + "▁synchronise", + -15.51823902130127 + ], + [ + "Essex", + -15.518243789672852 + ], + [ + "rovsky", + -15.51829719543457 + ], + [ + "▁Mendy", + -15.518353462219238 + ], + [ + "▁sabe", + -15.518370628356934 + ], + [ + "▁Cede", + -15.518377304077148 + ], + [ + "▁hungrier", + -15.518381118774414 + ], + [ + "▁interjection", + -15.518415451049805 + ], + [ + "▁Morphological", + -15.518428802490234 + ], + [ + "▁Eastlake", + -15.518434524536133 + ], + [ + "▁reformatted", + -15.518451690673828 + ], + [ + "▁Geico", + -15.518523216247559 + ], + [ + "▁Gaol", + -15.518548011779785 + ], + [ + "▁mehndi", + -15.518553733825684 + ], + [ + "▁ROUTE", + -15.518569946289062 + ], + [ + "▁Groceries", + -15.518571853637695 + ], + [ + "ARIAN", + -15.518575668334961 + ], + [ + "▁Handlebar", + -15.518610000610352 + ], + [ + "▁revisionism", + -15.518610000610352 + ], + [ + "▁Sarva", + -15.518622398376465 + ], + [ + "▁Millington", + -15.518658638000488 + ], + [ + "▁Latent", + -15.518661499023438 + ], + [ + "▁AICPA", + -15.5186767578125 + ], + [ + "▁metaphoric", + -15.51870059967041 + ], + [ + "▁Skrillex", + -15.5187406539917 + ], + [ + "lagged", + -15.518798828125 + ], + [ + "catholic", + -15.51882266998291 + ], + [ + "слов", + -15.518858909606934 + ], + [ + "vardhan", + -15.518864631652832 + ], + [ + "▁imbibed", + -15.518891334533691 + ], + [ + "▁sondern", + -15.518891334533691 + ], + [ + "▁Athenaeum", + -15.518896102905273 + ], + [ + "▁Kilburn", + -15.518898963928223 + ], + [ + "▁Kingswood", + -15.518952369689941 + ], + [ + "▁carapace", + -15.518980979919434 + ], + [ + "▁Lunatic", + -15.518989562988281 + ], + [ + "▁Climatic", + -15.519021987915039 + ], + [ + "▁LAUSD", + -15.51904582977295 + ], + [ + "blessing", + -15.519062042236328 + ], + [ + "▁Rapport", + -15.519104957580566 + ], + [ + "▁exchequer", + -15.519109725952148 + ], + [ + "▁Chambersburg", + -15.519153594970703 + ], + [ + "Nicholas", + -15.51915454864502 + ], + [ + "ourou", + -15.519189834594727 + ], + [ + "▁Nominate", + -15.519216537475586 + ], + [ + "▁Yonhap", + -15.519247055053711 + ], + [ + "inventory", + -15.51931095123291 + ], + [ + "▁analiz", + -15.519350051879883 + ], + [ + "▁Pamphlet", + -15.519356727600098 + ], + [ + "▁taffy", + -15.519356727600098 + ], + [ + "participating", + -15.519430160522461 + ], + [ + "▁naturist", + -15.519457817077637 + ], + [ + "▁Exim", + -15.519495010375977 + ], + [ + "▁Boylston", + -15.519506454467773 + ], + [ + "▁Bogdanovic", + -15.519529342651367 + ], + [ + "▁Syro", + -15.519532203674316 + ], + [ + "▁Assembling", + -15.51955795288086 + ], + [ + "▁rsync", + -15.51956558227539 + ], + [ + "▁ruched", + -15.519575119018555 + ], + [ + "▁Lifespan", + -15.519630432128906 + ], + [ + "▁Merkley", + -15.519641876220703 + ], + [ + "▁Agony", + -15.519699096679688 + ], + [ + "quinoline", + -15.519712448120117 + ], + [ + "▁wrinkly", + -15.519737243652344 + ], + [ + "▁Crean", + -15.51975154876709 + ], + [ + "▁Remittance", + -15.51979923248291 + ], + [ + "▁knackered", + -15.519824028015137 + ], + [ + "cotyledon", + -15.51983642578125 + ], + [ + "▁Sevastopol", + -15.51984977722168 + ], + [ + "improv", + -15.519872665405273 + ], + [ + "▁Erma", + -15.519875526428223 + ], + [ + "iatric", + -15.51992130279541 + ], + [ + "▁Bolivarian", + -15.519960403442383 + ], + [ + "▁gatefold", + -15.519960403442383 + ], + [ + "▁Endodontic", + -15.519962310791016 + ], + [ + "▁ferris", + -15.519983291625977 + ], + [ + "▁Ashwagandha", + -15.520007133483887 + ], + [ + "TTG", + -15.52003288269043 + ], + [ + "▁reacquaint", + -15.520054817199707 + ], + [ + "▁Revamp", + -15.520090103149414 + ], + [ + "Spoke", + -15.520140647888184 + ], + [ + "▁Pinpoint", + -15.520150184631348 + ], + [ + "3665", + -15.52018928527832 + ], + [ + "▁Frankston", + -15.52021312713623 + ], + [ + "▁Steuer", + -15.520219802856445 + ], + [ + "▁Asghar", + -15.520225524902344 + ], + [ + "▁spindly", + -15.520242691040039 + ], + [ + "▁POPULAR", + -15.520258903503418 + ], + [ + "▁presynaptic", + -15.520302772521973 + ], + [ + "換", + -15.520312309265137 + ], + [ + "▁Casita", + -15.520334243774414 + ], + [ + "doxycycline", + -15.520337104797363 + ], + [ + "▁Galatasaray", + -15.520342826843262 + ], + [ + "▁Bunge", + -15.520347595214844 + ], + [ + "▁MARTA", + -15.520353317260742 + ], + [ + "▁Rafah", + -15.520404815673828 + ], + [ + "▁Amerindian", + -15.520458221435547 + ], + [ + "▁Unemployed", + -15.520474433898926 + ], + [ + "▁Xerxes", + -15.520478248596191 + ], + [ + "▁BUFFALO", + -15.520612716674805 + ], + [ + "▁POWERFUL", + -15.520634651184082 + ], + [ + "▁impresario", + -15.52068042755127 + ], + [ + "▁Khadi", + -15.520710945129395 + ], + [ + "▁Karra", + -15.520713806152344 + ], + [ + "▁parfum", + -15.520743370056152 + ], + [ + "▁hypermarket", + -15.520764350891113 + ], + [ + "精", + -15.520812034606934 + ], + [ + "▁KARACHI", + -15.520814895629883 + ], + [ + "▁Ethylene", + -15.520877838134766 + ], + [ + "consisting", + -15.520939826965332 + ], + [ + "▁Bligh", + -15.52097225189209 + ], + [ + "▁Disodium", + -15.520977973937988 + ], + [ + "▁Nazionale", + -15.521049499511719 + ], + [ + "Educational", + -15.5210599899292 + ], + [ + "▁Pilsen", + -15.521081924438477 + ], + [ + "▁Spielen", + -15.521109580993652 + ], + [ + "▁Supercross", + -15.521110534667969 + ], + [ + "PBUH", + -15.521114349365234 + ], + [ + "▁Whimsy", + -15.52112865447998 + ], + [ + "▁unexamined", + -15.521143913269043 + ], + [ + "▁indelibly", + -15.52115249633789 + ], + [ + "▁lysosomal", + -15.521153450012207 + ], + [ + "▁insinuated", + -15.52118968963623 + ], + [ + "▁Wissen", + -15.521194458007812 + ], + [ + "▁ORIGIN", + -15.521195411682129 + ], + [ + "▁Petron", + -15.521238327026367 + ], + [ + "▁ascites", + -15.521239280700684 + ], + [ + "▁bonito", + -15.521240234375 + ], + [ + "▁Elasti", + -15.521249771118164 + ], + [ + "CLEAN", + -15.521288871765137 + ], + [ + "▁technocratic", + -15.521336555480957 + ], + [ + "▁demarcated", + -15.52136516571045 + ], + [ + "них", + -15.521379470825195 + ], + [ + "PPG", + -15.521464347839355 + ], + [ + "▁Koopa", + -15.521466255187988 + ], + [ + "√", + -15.521468162536621 + ], + [ + "▁McGarry", + -15.521486282348633 + ], + [ + "▁WEEKLY", + -15.521519660949707 + ], + [ + "▁deputation", + -15.521547317504883 + ], + [ + "apparent", + -15.521553039550781 + ], + [ + "Converter", + -15.521617889404297 + ], + [ + "penned", + -15.521632194519043 + ], + [ + "▁dodgeball", + -15.521653175354004 + ], + [ + "▁truancy", + -15.521682739257812 + ], + [ + "▁Marleau", + -15.521719932556152 + ], + [ + "▁Retrograde", + -15.521734237670898 + ], + [ + "▁Meagher", + -15.521809577941895 + ], + [ + "Marketwired", + -15.521829605102539 + ], + [ + "▁geoengineering", + -15.521838188171387 + ], + [ + "▁fringing", + -15.5218505859375 + ], + [ + "▁descargar", + -15.521870613098145 + ], + [ + "▁wingtip", + -15.521894454956055 + ], + [ + "▁Airlift", + -15.521906852722168 + ], + [ + "▁Kolhapur", + -15.521915435791016 + ], + [ + "▁clanging", + -15.521927833557129 + ], + [ + "▁Gulag", + -15.521940231323242 + ], + [ + "contributor", + -15.521955490112305 + ], + [ + "▁opcode", + -15.521957397460938 + ], + [ + "organism", + -15.521971702575684 + ], + [ + "▁Administra", + -15.521979331970215 + ], + [ + "▁Chromo", + -15.521987915039062 + ], + [ + "▁Rimmer", + -15.522008895874023 + ], + [ + "▁Linguist", + -15.522010803222656 + ], + [ + "IMAGE", + -15.522042274475098 + ], + [ + "HUM", + -15.522045135498047 + ], + [ + "opportunities", + -15.522073745727539 + ], + [ + "▁unsuited", + -15.522102355957031 + ], + [ + "▁Vigilante", + -15.522135734558105 + ], + [ + "▁Shurmur", + -15.522144317626953 + ], + [ + "Revised", + -15.522233009338379 + ], + [ + "butterfly", + -15.522233963012695 + ], + [ + "▁LEAN", + -15.522294998168945 + ], + [ + "▁불", + -15.52230453491211 + ], + [ + "▁denigrating", + -15.522319793701172 + ], + [ + "▁Tarun", + -15.522336959838867 + ], + [ + "▁pharynx", + -15.52234172821045 + ], + [ + "▁delude", + -15.522357940673828 + ], + [ + "▁denuclearisation", + -15.522364616394043 + ], + [ + "▁splenic", + -15.522368431091309 + ], + [ + "▁Thurgood", + -15.522371292114258 + ], + [ + "ovska", + -15.522391319274902 + ], + [ + "fff", + -15.522427558898926 + ], + [ + "irish", + -15.522427558898926 + ], + [ + "鈥", + -15.522464752197266 + ], + [ + "wrist", + -15.522525787353516 + ], + [ + "▁Accademia", + -15.522544860839844 + ], + [ + "▁BEIRUT", + -15.522589683532715 + ], + [ + "▁Odometer", + -15.522624015808105 + ], + [ + "triptyline", + -15.522636413574219 + ], + [ + "▁Laxman", + -15.522638320922852 + ], + [ + "▁Cutts", + -15.522650718688965 + ], + [ + "▁tinkered", + -15.52267837524414 + ], + [ + "▁phallic", + -15.522722244262695 + ], + [ + "▁impelled", + -15.522727012634277 + ], + [ + "▁Disick", + -15.52273178100586 + ], + [ + "▁Seraphim", + -15.522738456726074 + ], + [ + "導", + -15.522751808166504 + ], + [ + "▁Conformity", + -15.52275276184082 + ], + [ + "载", + -15.522771835327148 + ], + [ + "▁DEFEND", + -15.522785186767578 + ], + [ + "▁Zsa", + -15.522820472717285 + ], + [ + "▁GenBank", + -15.522822380065918 + ], + [ + "▁Spectrometer", + -15.522847175598145 + ], + [ + "▁Horwath", + -15.522881507873535 + ], + [ + "▁CONCERT", + -15.522910118103027 + ], + [ + "▁Vaccin", + -15.52292251586914 + ], + [ + "UCKER", + -15.523028373718262 + ], + [ + "▁Tripadvisor", + -15.523038864135742 + ], + [ + "▁Cholera", + -15.523076057434082 + ], + [ + "▁botch", + -15.523106575012207 + ], + [ + "▁Winsor", + -15.523114204406738 + ], + [ + "osseous", + -15.523136138916016 + ], + [ + "▁acrimony", + -15.523174285888672 + ], + [ + "skoye", + -15.523209571838379 + ], + [ + "▁Troika", + -15.523218154907227 + ], + [ + "▁Persimmon", + -15.523219108581543 + ], + [ + "▁Skou", + -15.523240089416504 + ], + [ + "▁Keypad", + -15.52324104309082 + ], + [ + "▁Leishmania", + -15.523258209228516 + ], + [ + "▁Menthol", + -15.523316383361816 + ], + [ + "▁Bajwa", + -15.523364067077637 + ], + [ + "▁bilingualism", + -15.523371696472168 + ], + [ + "יה", + -15.523401260375977 + ], + [ + "▁infuser", + -15.523451805114746 + ], + [ + "▁Multiverse", + -15.52346134185791 + ], + [ + "nayak", + -15.52347469329834 + ], + [ + "▁saja", + -15.523477554321289 + ], + [ + "▁Burdick", + -15.523484230041504 + ], + [ + "▁recommence", + -15.523534774780273 + ], + [ + "▁ludicrously", + -15.523537635803223 + ], + [ + "▁Betfred", + -15.523555755615234 + ], + [ + "Falcon", + -15.52355670928955 + ], + [ + "ʾ", + -15.523579597473145 + ], + [ + "biscuit", + -15.523597717285156 + ], + [ + "コー", + -15.523628234863281 + ], + [ + "▁gangbang", + -15.523704528808594 + ], + [ + "vulnerability", + -15.523752212524414 + ], + [ + "▁Jansson", + -15.523755073547363 + ], + [ + "▁Jerzy", + -15.523783683776855 + ], + [ + "▁colossus", + -15.523804664611816 + ], + [ + "▁Jepsen", + -15.52382755279541 + ], + [ + "▁Chobe", + -15.523843765258789 + ], + [ + "▁lackadaisical", + -15.523917198181152 + ], + [ + "SUPER", + -15.52393627166748 + ], + [ + "▁qytet", + -15.524031639099121 + ], + [ + "▁Chep", + -15.524063110351562 + ], + [ + "▁Kobi", + -15.524081230163574 + ], + [ + "synaptic", + -15.524134635925293 + ], + [ + "▁SLIM", + -15.524199485778809 + ], + [ + "▁spammed", + -15.524209022521973 + ], + [ + "▁uncouth", + -15.524209976196289 + ], + [ + "▁WebSocket", + -15.524231910705566 + ], + [ + "已", + -15.524234771728516 + ], + [ + "▁unadjusted", + -15.52428150177002 + ], + [ + "ULATOR", + -15.524316787719727 + ], + [ + "▁fluoroquinolone", + -15.524345397949219 + ], + [ + "▁predestination", + -15.524380683898926 + ], + [ + "▁Draught", + -15.524383544921875 + ], + [ + "▁platypus", + -15.52439022064209 + ], + [ + "本发明", + -15.524441719055176 + ], + [ + "▁unrecorded", + -15.524442672729492 + ], + [ + "▁Doub", + -15.524497032165527 + ], + [ + "transmitter", + -15.524516105651855 + ], + [ + "Č", + -15.524568557739258 + ], + [ + "Movement", + -15.524590492248535 + ], + [ + "▁ALBA", + -15.52460765838623 + ], + [ + "▁rigger", + -15.52463150024414 + ], + [ + "▁Maisel", + -15.524653434753418 + ], + [ + "▁pacifism", + -15.524660110473633 + ], + [ + "▁snobbish", + -15.524662971496582 + ], + [ + "ieck", + -15.52470874786377 + ], + [ + "▁Choudhury", + -15.524750709533691 + ], + [ + "▁Sabarimala", + -15.524773597717285 + ], + [ + "▁Annalise", + -15.524842262268066 + ], + [ + "▁Lockout", + -15.524886131286621 + ], + [ + "▁davis", + -15.524894714355469 + ], + [ + "▁Warrick", + -15.524906158447266 + ], + [ + "▁Télécharger", + -15.524953842163086 + ], + [ + "▁unpopularity", + -15.524971008300781 + ], + [ + "▁monoamine", + -15.524974822998047 + ], + [ + "punishment", + -15.525018692016602 + ], + [ + "▁redolent", + -15.525029182434082 + ], + [ + "▁время", + -15.525043487548828 + ], + [ + "▁Algoma", + -15.525045394897461 + ], + [ + "▁recalculated", + -15.525045394897461 + ], + [ + "▁Zweig", + -15.52505111694336 + ], + [ + "▁resuscitated", + -15.5250825881958 + ], + [ + "propaganda", + -15.525130271911621 + ], + [ + "▁Methuen", + -15.525139808654785 + ], + [ + "▁castrated", + -15.52519416809082 + ], + [ + "Roubaix", + -15.525253295898438 + ], + [ + "▁COTTON", + -15.525359153747559 + ], + [ + "▁failsafe", + -15.52538776397705 + ], + [ + "BIRD", + -15.525459289550781 + ], + [ + "フィ", + -15.525508880615234 + ], + [ + "▁GLAAD", + -15.5255126953125 + ], + [ + "TRAIN", + -15.52551555633545 + ], + [ + "▁debauch", + -15.525545120239258 + ], + [ + "▁Lova", + -15.525558471679688 + ], + [ + "▁transcriptomic", + -15.525565147399902 + ], + [ + "jeri", + -15.525618553161621 + ], + [ + "▁Snorkeling", + -15.525646209716797 + ], + [ + "assel", + -15.525676727294922 + ], + [ + "▁rapacious", + -15.525686264038086 + ], + [ + "▁phillip", + -15.525742530822754 + ], + [ + "▁Einsatz", + -15.52579402923584 + ], + [ + "thompson", + -15.525857925415039 + ], + [ + "▁Catalysis", + -15.52588176727295 + ], + [ + "▁Reinstall", + -15.525924682617188 + ], + [ + "▁Caldecott", + -15.525991439819336 + ], + [ + "▁wirklich", + -15.52601146697998 + ], + [ + "▁cartographic", + -15.526029586791992 + ], + [ + "▁Nuvo", + -15.526123046875 + ], + [ + "▁singalong", + -15.526158332824707 + ], + [ + "skeletal", + -15.526223182678223 + ], + [ + "▁Hinder", + -15.526226997375488 + ], + [ + "при", + -15.52631950378418 + ], + [ + "▁Piqua", + -15.526331901550293 + ], + [ + "0000000000000000", + -15.526369094848633 + ], + [ + "orowski", + -15.526378631591797 + ], + [ + "▁Ammonium", + -15.526391983032227 + ], + [ + "▁metalloproteinase", + -15.526396751403809 + ], + [ + "metadata", + -15.5264253616333 + ], + [ + "ラン", + -15.526446342468262 + ], + [ + "▁coleman", + -15.526447296142578 + ], + [ + "▁occurence", + -15.526512145996094 + ], + [ + "Fleet", + -15.526516914367676 + ], + [ + "▁menstruating", + -15.526533126831055 + ], + [ + "▁Kanawha", + -15.52656078338623 + ], + [ + "▁RICS", + -15.526632308959961 + ], + [ + "▁Wilfried", + -15.526660919189453 + ], + [ + "▁salicylate", + -15.526668548583984 + ], + [ + "▁tangentially", + -15.526674270629883 + ], + [ + "▁Giovanna", + -15.52670955657959 + ], + [ + "▁medida", + -15.526718139648438 + ], + [ + "▁blotches", + -15.526787757873535 + ], + [ + "▁postoperatively", + -15.526848793029785 + ], + [ + "▁Terminate", + -15.526891708374023 + ], + [ + "민", + -15.526893615722656 + ], + [ + "▁uveitis", + -15.52691650390625 + ], + [ + "▁Lume", + -15.526926040649414 + ], + [ + "▁Rauf", + -15.526992797851562 + ], + [ + "▁Shuck", + -15.527019500732422 + ], + [ + "들은", + -15.5270357131958 + ], + [ + "▁Staat", + -15.527040481567383 + ], + [ + "▁innerspring", + -15.527042388916016 + ], + [ + "hinged", + -15.527060508728027 + ], + [ + "▁Jaroslav", + -15.527064323425293 + ], + [ + "floral", + -15.527068138122559 + ], + [ + "lithography", + -15.527162551879883 + ], + [ + "▁pyrotechnic", + -15.527175903320312 + ], + [ + "▁сам", + -15.527180671691895 + ], + [ + "種", + -15.527201652526855 + ], + [ + "▁Stampeders", + -15.527222633361816 + ], + [ + "▁gumtree", + -15.527254104614258 + ], + [ + "ბ", + -15.52725601196289 + ], + [ + "£8", + -15.527280807495117 + ], + [ + "▁DuVernay", + -15.527300834655762 + ], + [ + "Poetry", + -15.527304649353027 + ], + [ + "ashley", + -15.527304649353027 + ], + [ + "desperate", + -15.527308464050293 + ], + [ + "▁EASA", + -15.52731704711914 + ], + [ + "▁PARKER", + -15.527336120605469 + ], + [ + "▁crustacean", + -15.52735424041748 + ], + [ + "▁scrimp", + -15.527365684509277 + ], + [ + "▁piccolo", + -15.527366638183594 + ], + [ + "quelle", + -15.527379035949707 + ], + [ + "▁Darci", + -15.527389526367188 + ], + [ + "▁Fete", + -15.527412414550781 + ], + [ + "▁Borrowed", + -15.527416229248047 + ], + [ + "iği", + -15.52741813659668 + ], + [ + "▁Vergleich", + -15.527451515197754 + ], + [ + "▁Polity", + -15.527453422546387 + ], + [ + "▁MacGyver", + -15.527459144592285 + ], + [ + "▁continuo", + -15.52746868133545 + ], + [ + "▁Declaring", + -15.527481079101562 + ], + [ + "▁octogenarian", + -15.527481079101562 + ], + [ + "▁Ndu", + -15.527544021606445 + ], + [ + "fortified", + -15.527549743652344 + ], + [ + "▁Sanctum", + -15.527560234069824 + ], + [ + "▁Offroad", + -15.527584075927734 + ], + [ + "▁FURNITURE", + -15.52770709991455 + ], + [ + "▁Sandinista", + -15.527708053588867 + ], + [ + "▁commissar", + -15.527748107910156 + ], + [ + "▁neurofeedback", + -15.527766227722168 + ], + [ + "▁Joystick", + -15.527770042419434 + ], + [ + "▁algunos", + -15.527774810791016 + ], + [ + "encounter", + -15.527779579162598 + ], + [ + "▁clonidine", + -15.527820587158203 + ], + [ + "shortened", + -15.527825355529785 + ], + [ + "ском", + -15.527825355529785 + ], + [ + "▁JEFFERSON", + -15.527843475341797 + ], + [ + "▁Watauga", + -15.527936935424805 + ], + [ + "austerity", + -15.527949333190918 + ], + [ + "▁Citrine", + -15.52799129486084 + ], + [ + "▁Dalmatia", + -15.527995109558105 + ], + [ + "▁misprint", + -15.528104782104492 + ], + [ + "▁NYSC", + -15.528128623962402 + ], + [ + "πε", + -15.528197288513184 + ], + [ + "Qatar", + -15.528212547302246 + ], + [ + "welded", + -15.528337478637695 + ], + [ + "▁sorrel", + -15.528362274169922 + ], + [ + "▁KILLER", + -15.528389930725098 + ], + [ + "▁emoticon", + -15.528471946716309 + ], + [ + "Tampa", + -15.528501510620117 + ], + [ + "▁Sauteed", + -15.528545379638672 + ], + [ + "morality", + -15.52855110168457 + ], + [ + "▁metamaterial", + -15.528553009033203 + ], + [ + "▁outstripped", + -15.528573989868164 + ], + [ + "▁avait", + -15.528579711914062 + ], + [ + "Pioneer", + -15.528592109680176 + ], + [ + "▁Ephemera", + -15.528593063354492 + ], + [ + "▁piglet", + -15.52872371673584 + ], + [ + "▁Dinamo", + -15.528727531433105 + ], + [ + "▁σε", + -15.528831481933594 + ], + [ + "密", + -15.528838157653809 + ], + [ + "▁compartmentalized", + -15.528840065002441 + ], + [ + "linolenic", + -15.528885841369629 + ], + [ + "▁NEITHER", + -15.528905868530273 + ], + [ + "dicion", + -15.528956413269043 + ], + [ + "▁Bhansali", + -15.528996467590332 + ], + [ + "▁THAAD", + -15.529027938842773 + ], + [ + "▁Rimmel", + -15.529029846191406 + ], + [ + "▁Livestream", + -15.529101371765137 + ], + [ + "▁Overlap", + -15.529158592224121 + ], + [ + "▁Pfister", + -15.529166221618652 + ], + [ + "▁hemming", + -15.529203414916992 + ], + [ + "étique", + -15.529204368591309 + ], + [ + "▁parameterized", + -15.529269218444824 + ], + [ + "ukku", + -15.529289245605469 + ], + [ + "▁Emporio", + -15.529295921325684 + ], + [ + "▁ASMR", + -15.529335975646973 + ], + [ + "▁Bettie", + -15.529341697692871 + ], + [ + "▁Redgrave", + -15.529378890991211 + ], + [ + "▁discriminant", + -15.52938175201416 + ], + [ + "▁sanctimonious", + -15.52938175201416 + ], + [ + "▁AdBlock", + -15.529383659362793 + ], + [ + "LETT", + -15.529409408569336 + ], + [ + "들을", + -15.529417991638184 + ], + [ + "Raising", + -15.529427528381348 + ], + [ + "cropped", + -15.529430389404297 + ], + [ + "창", + -15.529449462890625 + ], + [ + "▁Edgeworth", + -15.529462814331055 + ], + [ + "patter", + -15.529474258422852 + ], + [ + "▁sujet", + -15.529475212097168 + ], + [ + "▁Ricotta", + -15.529521942138672 + ], + [ + "▁subtotal", + -15.529541969299316 + ], + [ + "▁Mehmood", + -15.529565811157227 + ], + [ + "▁Multifunctional", + -15.52957820892334 + ], + [ + "▁Khris", + -15.529644012451172 + ], + [ + "▁ceramide", + -15.529670715332031 + ], + [ + "СС", + -15.529704093933105 + ], + [ + "▁Skyward", + -15.52974796295166 + ], + [ + "▁slaving", + -15.529749870300293 + ], + [ + "▁Marblehead", + -15.529759407043457 + ], + [ + "▁Drogheda", + -15.529788970947266 + ], + [ + "▁Sereno", + -15.529807090759277 + ], + [ + "Processing", + -15.529814720153809 + ], + [ + "▁CABINET", + -15.529834747314453 + ], + [ + "▁Ishaq", + -15.529834747314453 + ], + [ + "▁VENTURE", + -15.529861450195312 + ], + [ + "▁lilting", + -15.529867172241211 + ], + [ + "BHK", + -15.529874801635742 + ], + [ + "▁Piscataway", + -15.529879570007324 + ], + [ + "投", + -15.529929161071777 + ], + [ + "▁Sibyl", + -15.529932975769043 + ], + [ + "▁Trickster", + -15.529935836791992 + ], + [ + "conducted", + -15.529969215393066 + ], + [ + "Rosie", + -15.52997875213623 + ], + [ + "▁Jabhat", + -15.52998161315918 + ], + [ + "niej", + -15.529984474182129 + ], + [ + "▁Bottling", + -15.529996871948242 + ], + [ + "▁Gerda", + -15.53002643585205 + ], + [ + "▁DDG", + -15.53003978729248 + ], + [ + "▁Tangible", + -15.5300931930542 + ], + [ + "▁schwa", + -15.530102729797363 + ], + [ + "▁EXERCISE", + -15.530106544494629 + ], + [ + "▁وسلم", + -15.530129432678223 + ], + [ + "▁Watsonville", + -15.530189514160156 + ], + [ + "변", + -15.53023910522461 + ], + [ + "▁Paramus", + -15.530295372009277 + ], + [ + "▁Dimitr", + -15.530304908752441 + ], + [ + "▁Parrikar", + -15.530357360839844 + ], + [ + "▁Belafonte", + -15.530401229858398 + ], + [ + "ொ", + -15.530467987060547 + ], + [ + "Sheikh", + -15.530503273010254 + ], + [ + "▁lassen", + -15.53050422668457 + ], + [ + "▁Skyhawk", + -15.530529022216797 + ], + [ + "▁Klinsmann", + -15.530536651611328 + ], + [ + "ச", + -15.53056526184082 + ], + [ + "▁Hodgkinson", + -15.530567169189453 + ], + [ + "Jenna", + -15.530584335327148 + ], + [ + "▁COVERED", + -15.530603408813477 + ], + [ + "▁ESTABLISH", + -15.53060531616211 + ], + [ + "redeem", + -15.530620574951172 + ], + [ + "▁phon", + -15.530632019042969 + ], + [ + "▁Pussy", + -15.530633926391602 + ], + [ + "▁Orbison", + -15.530670166015625 + ], + [ + "▁Rheumatol", + -15.5306978225708 + ], + [ + "▁Ferrier", + -15.530713081359863 + ], + [ + "ballot", + -15.53072738647461 + ], + [ + "▁Quotient", + -15.530740737915039 + ], + [ + "▁AntiVirus", + -15.530743598937988 + ], + [ + "▁Wicket", + -15.530776023864746 + ], + [ + "球", + -15.530828475952148 + ], + [ + "▁desensitized", + -15.530900001525879 + ], + [ + "transparency", + -15.53091812133789 + ], + [ + "▁Laidlaw", + -15.530926704406738 + ], + [ + "rickson", + -15.530937194824219 + ], + [ + "▁violator", + -15.530942916870117 + ], + [ + "▁Catamaran", + -15.530990600585938 + ], + [ + "▁microplastics", + -15.53101634979248 + ], + [ + "▁Sensibility", + -15.53103256225586 + ], + [ + "Destination", + -15.531054496765137 + ], + [ + "▁jaar", + -15.53107738494873 + ], + [ + "▁TEACH", + -15.531167030334473 + ], + [ + "oxford", + -15.53117847442627 + ], + [ + "disappointed", + -15.531183242797852 + ], + [ + "▁reauthorize", + -15.531193733215332 + ], + [ + "▁Denying", + -15.53120231628418 + ], + [ + "▁inquisitor", + -15.531216621398926 + ], + [ + "▁Hoek", + -15.53123664855957 + ], + [ + "▁Irritable", + -15.531285285949707 + ], + [ + "▁Steadman", + -15.531290054321289 + ], + [ + "schall", + -15.531312942504883 + ], + [ + "▁Stirring", + -15.531333923339844 + ], + [ + "▁explication", + -15.531429290771484 + ], + [ + "▁strop", + -15.53148078918457 + ], + [ + "▁Alachua", + -15.53149127960205 + ], + [ + "▁Deuter", + -15.53150463104248 + ], + [ + "▁Griz", + -15.531514167785645 + ], + [ + "▁Conversational", + -15.531517028808594 + ], + [ + "▁Rhodesian", + -15.531550407409668 + ], + [ + "Muhammad", + -15.53155517578125 + ], + [ + "Html", + -15.531563758850098 + ], + [ + "▁chickadee", + -15.531603813171387 + ], + [ + "▁Monteiro", + -15.5316162109375 + ], + [ + "▁Gordie", + -15.531623840332031 + ], + [ + "▁Saskia", + -15.531698226928711 + ], + [ + "begotten", + -15.531699180603027 + ], + [ + "undefined", + -15.531744003295898 + ], + [ + "▁Applicator", + -15.531767845153809 + ], + [ + "чен", + -15.531781196594238 + ], + [ + "Herzegovina", + -15.531804084777832 + ], + [ + "▁McCluskey", + -15.531806945800781 + ], + [ + "YAH", + -15.531826972961426 + ], + [ + "▁vetoes", + -15.531893730163574 + ], + [ + "lewis", + -15.531933784484863 + ], + [ + "▁Wendt", + -15.531941413879395 + ], + [ + "▁Haddish", + -15.531942367553711 + ], + [ + "cannabinoid", + -15.531962394714355 + ], + [ + "▁ASSOCIATES", + -15.531989097595215 + ], + [ + "▁Congratulation", + -15.531990051269531 + ], + [ + "travers", + -15.53201675415039 + ], + [ + "▁Mowing", + -15.532047271728516 + ], + [ + "pnas", + -15.532073974609375 + ], + [ + "енно", + -15.532079696655273 + ], + [ + "▁harmonisation", + -15.532102584838867 + ], + [ + "▁permeation", + -15.532103538513184 + ], + [ + "▁Pooch", + -15.532139778137207 + ], + [ + "harris", + -15.532196998596191 + ], + [ + "vacu", + -15.532210350036621 + ], + [ + "aktion", + -15.532211303710938 + ], + [ + "▁consignor", + -15.532246589660645 + ], + [ + "原始内容存档于", + -15.532288551330566 + ], + [ + "▁paraprofessional", + -15.532297134399414 + ], + [ + "▁encroached", + -15.532308578491211 + ], + [ + "▁gerne", + -15.532336235046387 + ], + [ + "▁marvelled", + -15.532352447509766 + ], + [ + "▁strob", + -15.532362937927246 + ], + [ + "▁Distinguishing", + -15.532370567321777 + ], + [ + "▁terbaru", + -15.532398223876953 + ], + [ + "▁Zakir", + -15.532485008239746 + ], + [ + "▁institutionalised", + -15.532490730285645 + ], + [ + "▁Colonialism", + -15.532493591308594 + ], + [ + "▁Yael", + -15.53249740600586 + ], + [ + "Combat", + -15.532500267028809 + ], + [ + "▁Turntable", + -15.532514572143555 + ], + [ + "▁Rejuvenate", + -15.532533645629883 + ], + [ + "▁milligram", + -15.532533645629883 + ], + [ + "▁Refresher", + -15.532557487487793 + ], + [ + "Grind", + -15.532618522644043 + ], + [ + "▁Saoirse", + -15.532624244689941 + ], + [ + "Brendan", + -15.53262996673584 + ], + [ + "Dental", + -15.53267765045166 + ], + [ + "Yankee", + -15.532693862915039 + ], + [ + "▁Konzept", + -15.532694816589355 + ], + [ + "achieve", + -15.532783508300781 + ], + [ + "Influence", + -15.53286075592041 + ], + [ + "Noble", + -15.53288459777832 + ], + [ + "木", + -15.532896995544434 + ], + [ + "Located", + -15.532899856567383 + ], + [ + "▁tarred", + -15.53290843963623 + ], + [ + "▁Batley", + -15.532915115356445 + ], + [ + "▁recirculating", + -15.533050537109375 + ], + [ + "▁Occupant", + -15.533079147338867 + ], + [ + "ühr", + -15.533162117004395 + ], + [ + "▁Disabling", + -15.533169746398926 + ], + [ + "▁Tappan", + -15.533172607421875 + ], + [ + "▁Literal", + -15.533211708068848 + ], + [ + "▁CROWN", + -15.533260345458984 + ], + [ + "monopoly", + -15.533263206481934 + ], + [ + "▁espadrille", + -15.533283233642578 + ], + [ + "expose", + -15.53329086303711 + ], + [ + "▁THX", + -15.533347129821777 + ], + [ + "▁Distribu", + -15.533356666564941 + ], + [ + "▁Bedrock", + -15.533358573913574 + ], + [ + "▁Matsuda", + -15.533371925354004 + ], + [ + "▁zeta", + -15.533418655395508 + ], + [ + "fabrik", + -15.533453941345215 + ], + [ + "▁zoonotic", + -15.533467292785645 + ], + [ + "PRESSION", + -15.53348159790039 + ], + [ + "▁Impressionism", + -15.533510208129883 + ], + [ + "▁adiponectin", + -15.5335111618042 + ], + [ + "▁rubbermaid", + -15.53356647491455 + ], + [ + "וֹ", + -15.533592224121094 + ], + [ + "▁visto", + -15.533594131469727 + ], + [ + "▁Steinbrenner", + -15.533605575561523 + ], + [ + "持", + -15.533637046813965 + ], + [ + "▁ogle", + -15.53370475769043 + ], + [ + "iculata", + -15.533723831176758 + ], + [ + "▁CloudFlare", + -15.533738136291504 + ], + [ + "▁convolutional", + -15.533753395080566 + ], + [ + "disgusting", + -15.533782005310059 + ], + [ + "▁swank", + -15.533787727355957 + ], + [ + "▁audiology", + -15.533798217773438 + ], + [ + "qiang", + -15.533849716186523 + ], + [ + "▁MEMBERSHIP", + -15.533855438232422 + ], + [ + "調", + -15.533867835998535 + ], + [ + "abbo", + -15.533880233764648 + ], + [ + "YAG", + -15.53389835357666 + ], + [ + "▁Megadeth", + -15.533944129943848 + ], + [ + "▁Abruzzo", + -15.534010887145996 + ], + [ + "pheus", + -15.534016609191895 + ], + [ + "종", + -15.534055709838867 + ], + [ + "▁Dreadnought", + -15.534056663513184 + ], + [ + "▁Woolworth", + -15.53409194946289 + ], + [ + "▁aristo", + -15.534113883972168 + ], + [ + "Animation", + -15.534143447875977 + ], + [ + "▁Ahuja", + -15.53414535522461 + ], + [ + "▁Accommodate", + -15.534147262573242 + ], + [ + "▁rakhi", + -15.534150123596191 + ], + [ + "οῦ", + -15.534165382385254 + ], + [ + "▁Larch", + -15.534173011779785 + ], + [ + "Potter", + -15.534283638000488 + ], + [ + "settle", + -15.534319877624512 + ], + [ + "▁blacklisting", + -15.534329414367676 + ], + [ + "▁Quechua", + -15.534360885620117 + ], + [ + "בר", + -15.534385681152344 + ], + [ + "delegate", + -15.534393310546875 + ], + [ + "▁comprend", + -15.534443855285645 + ], + [ + "▁Neath", + -15.534462928771973 + ], + [ + "contractual", + -15.534475326538086 + ], + [ + "▁Bonferroni", + -15.534488677978516 + ], + [ + "▁quixotic", + -15.534488677978516 + ], + [ + "boomer", + -15.534492492675781 + ], + [ + "chromosome", + -15.534534454345703 + ], + [ + "▁incentivizing", + -15.534534454345703 + ], + [ + "▁Handshake", + -15.534539222717285 + ], + [ + "cannabis", + -15.534592628479004 + ], + [ + "MIG", + -15.534597396850586 + ], + [ + "Structural", + -15.534603118896484 + ], + [ + "▁Srebrenica", + -15.534603118896484 + ], + [ + "▁Flycatcher", + -15.534643173217773 + ], + [ + "Argument", + -15.534646987915039 + ], + [ + "▁Gyratory", + -15.534647941589355 + ], + [ + "▁Pudong", + -15.53465747833252 + ], + [ + "antenna", + -15.534671783447266 + ], + [ + "▁Entergy", + -15.534699440002441 + ], + [ + "▁fount", + -15.534829139709473 + ], + [ + "Highland", + -15.534834861755371 + ], + [ + "▁breadcrumb", + -15.53485107421875 + ], + [ + "▁Mesozoic", + -15.5348539352417 + ], + [ + "▁THINKING", + -15.534906387329102 + ], + [ + "▁Antiochus", + -15.534951210021973 + ], + [ + "▁Schrödinger", + -15.534966468811035 + ], + [ + "▁mesmerised", + -15.534989356994629 + ], + [ + "▁jostle", + -15.535008430480957 + ], + [ + "▁Bibcode", + -15.535012245178223 + ], + [ + "▁Nkrumah", + -15.535035133361816 + ], + [ + "▁cuban", + -15.535051345825195 + ], + [ + "▁Reclaiming", + -15.535054206848145 + ], + [ + "▁Stubborn", + -15.535058975219727 + ], + [ + "▁COMPLEX", + -15.535064697265625 + ], + [ + "▁Camtasia", + -15.535194396972656 + ], + [ + "▁Searcy", + -15.535194396972656 + ], + [ + "suggested", + -15.535226821899414 + ], + [ + "Argent", + -15.53526782989502 + ], + [ + "▁Derecho", + -15.535274505615234 + ], + [ + "▁Breville", + -15.535307884216309 + ], + [ + "▁화", + -15.535318374633789 + ], + [ + "▁progestin", + -15.535353660583496 + ], + [ + "▁moieties", + -15.53537654876709 + ], + [ + "▁Rushton", + -15.535419464111328 + ], + [ + "platte", + -15.535423278808594 + ], + [ + "VITA", + -15.535436630249023 + ], + [ + "▁Diebold", + -15.53543758392334 + ], + [ + "▁Bobbitt", + -15.535489082336426 + ], + [ + "▁Makarov", + -15.53557300567627 + ], + [ + "▁Torbay", + -15.535584449768066 + ], + [ + "Landmark", + -15.53564739227295 + ], + [ + "cowboy", + -15.535649299621582 + ], + [ + "▁mejores", + -15.535656929016113 + ], + [ + "▁Bamako", + -15.53566837310791 + ], + [ + "▁backsplashes", + -15.535669326782227 + ], + [ + "▁unmoving", + -15.535697937011719 + ], + [ + "▁bandstand", + -15.535709381103516 + ], + [ + "▁Denpasar", + -15.535741806030273 + ], + [ + "▁Kuehn", + -15.535757064819336 + ], + [ + "▁BOTTLE", + -15.535840034484863 + ], + [ + "libraries", + -15.535881996154785 + ], + [ + "▁salle", + -15.535888671875 + ], + [ + "Memories", + -15.535890579223633 + ], + [ + "ocrates", + -15.535896301269531 + ], + [ + "▁PRIVACY", + -15.535901069641113 + ], + [ + "üz", + -15.535953521728516 + ], + [ + "▁jessica", + -15.535958290100098 + ], + [ + "▁Cairngorm", + -15.535968780517578 + ], + [ + "▁Akhil", + -15.535984992980957 + ], + [ + "▁unbalance", + -15.53599739074707 + ], + [ + "insect", + -15.53600788116455 + ], + [ + "▁Vasudev", + -15.53606128692627 + ], + [ + "▁banality", + -15.536076545715332 + ], + [ + "▁autobiographies", + -15.536083221435547 + ], + [ + "▁multicoloured", + -15.536087989807129 + ], + [ + "▁Cranford", + -15.536093711853027 + ], + [ + "▁Trivedi", + -15.53612995147705 + ], + [ + "▁Bataan", + -15.536164283752441 + ], + [ + "▁Trumbo", + -15.536206245422363 + ], + [ + "▁Ramachandran", + -15.536293029785156 + ], + [ + "▁believability", + -15.536311149597168 + ], + [ + "▁Joelle", + -15.5363187789917 + ], + [ + "dhje", + -15.536367416381836 + ], + [ + "▁beluga", + -15.536380767822266 + ], + [ + "▁prav", + -15.536385536193848 + ], + [ + "▁Genesys", + -15.536394119262695 + ], + [ + "▁FireFox", + -15.536406517028809 + ], + [ + "gegeben", + -15.536432266235352 + ], + [ + "▁jostled", + -15.536436080932617 + ], + [ + "▁resinous", + -15.536457061767578 + ], + [ + "▁Repellent", + -15.536516189575195 + ], + [ + "▁LIFETIME", + -15.536604881286621 + ], + [ + "▁Malice", + -15.536616325378418 + ], + [ + "▁phonology", + -15.536624908447266 + ], + [ + "Twelve", + -15.536661148071289 + ], + [ + "Wiley", + -15.5366792678833 + ], + [ + "Console", + -15.536707878112793 + ], + [ + "▁retracing", + -15.536746978759766 + ], + [ + "▁inveterate", + -15.536767959594727 + ], + [ + "Permanent", + -15.536860466003418 + ], + [ + "▁SURFACE", + -15.536871910095215 + ], + [ + "▁Bochum", + -15.53687572479248 + ], + [ + "▁chutzpah", + -15.536881446838379 + ], + [ + "修", + -15.536901473999023 + ], + [ + "▁nutter", + -15.536917686462402 + ], + [ + "OSU", + -15.536951065063477 + ], + [ + "▁Colorear", + -15.53706169128418 + ], + [ + "ず", + -15.53706169128418 + ], + [ + "▁Schaaf", + -15.537100791931152 + ], + [ + "▁NIU", + -15.537130355834961 + ], + [ + "▁Saturation", + -15.537130355834961 + ], + [ + "▁Amundsen", + -15.537178039550781 + ], + [ + "▁XBMC", + -15.537229537963867 + ], + [ + "▁Seagal", + -15.537238121032715 + ], + [ + "▁morphologically", + -15.537239074707031 + ], + [ + "▁Hauler", + -15.537284851074219 + ], + [ + "▁slithering", + -15.537341117858887 + ], + [ + "▁Mudder", + -15.53734302520752 + ], + [ + "द्", + -15.537355422973633 + ], + [ + "inspire", + -15.537405014038086 + ], + [ + "▁LaBeouf", + -15.537405967712402 + ], + [ + "▁CERTIFICATE", + -15.537428855895996 + ], + [ + "약", + -15.537473678588867 + ], + [ + "▁luminary", + -15.537504196166992 + ], + [ + "었", + -15.537519454956055 + ], + [ + "▁ennui", + -15.537524223327637 + ], + [ + "▁Copywriting", + -15.537538528442383 + ], + [ + "ETER", + -15.537575721740723 + ], + [ + "▁Berserker", + -15.537615776062012 + ], + [ + "▁enraptured", + -15.53763484954834 + ], + [ + "▁Flotilla", + -15.537679672241211 + ], + [ + "Failed", + -15.537683486938477 + ], + [ + "▁Titian", + -15.537763595581055 + ], + [ + "▁он", + -15.53780460357666 + ], + [ + "▁Infinix", + -15.537824630737305 + ], + [ + "▁Grommet", + -15.537832260131836 + ], + [ + "▁STRESS", + -15.537841796875 + ], + [ + "▁shorebirds", + -15.537942886352539 + ], + [ + "▁Gemara", + -15.537981033325195 + ], + [ + "ֹ", + -15.537985801696777 + ], + [ + "▁Syndergaard", + -15.538000106811523 + ], + [ + "▁interposed", + -15.538020133972168 + ], + [ + "▁Ceremonial", + -15.538022994995117 + ], + [ + "pillow", + -15.538026809692383 + ], + [ + "Harmon", + -15.538053512573242 + ], + [ + "▁Kuti", + -15.538093566894531 + ], + [ + "▁Anglin", + -15.538095474243164 + ], + [ + "▁dishonorable", + -15.538103103637695 + ], + [ + "▁Cagle", + -15.53810977935791 + ], + [ + "▁Tectonic", + -15.538124084472656 + ], + [ + "▁Yuzu", + -15.538139343261719 + ], + [ + "▁NAIL", + -15.538152694702148 + ], + [ + "▁Graaf", + -15.538155555725098 + ], + [ + "parasitic", + -15.53816032409668 + ], + [ + "▁DocuSign", + -15.538174629211426 + ], + [ + "▁kitesurfing", + -15.538189888000488 + ], + [ + "▁Bereich", + -15.538236618041992 + ], + [ + "▁boggy", + -15.538247108459473 + ], + [ + "▁Skippy", + -15.538254737854004 + ], + [ + "Ethiopia", + -15.53825855255127 + ], + [ + "Gerald", + -15.53825855255127 + ], + [ + "▁Mutton", + -15.538261413574219 + ], + [ + "▁Smok", + -15.538315773010254 + ], + [ + "▁nonsteroidal", + -15.538320541381836 + ], + [ + "▁Katsina", + -15.538347244262695 + ], + [ + "▁Yonder", + -15.538396835327148 + ], + [ + "▁thronged", + -15.538396835327148 + ], + [ + "▁Weightlifting", + -15.53840160369873 + ], + [ + "▁Premio", + -15.538410186767578 + ], + [ + "▁tucson", + -15.538479804992676 + ], + [ + "▁fazer", + -15.538481712341309 + ], + [ + "▁только", + -15.538525581359863 + ], + [ + "▁Aronofsky", + -15.538527488708496 + ], + [ + "LDC", + -15.538546562194824 + ], + [ + "▁MINOR", + -15.538546562194824 + ], + [ + "▁Jarry", + -15.538565635681152 + ], + [ + "▁ardour", + -15.53857135772705 + ], + [ + "▁tzatziki", + -15.538593292236328 + ], + [ + "▁electioneering", + -15.538649559020996 + ], + [ + "▁MARGARET", + -15.53866195678711 + ], + [ + "▁kommt", + -15.53866195678711 + ], + [ + "▁resected", + -15.538713455200195 + ], + [ + "▁─", + -15.538751602172852 + ], + [ + "▁lucidity", + -15.538755416870117 + ], + [ + "▁HONEST", + -15.53876781463623 + ], + [ + "▁Juggling", + -15.538804054260254 + ], + [ + "▁Mitzi", + -15.53880500793457 + ], + [ + "▁Feroz", + -15.538846015930176 + ], + [ + "▁paralytic", + -15.538862228393555 + ], + [ + "▁calcified", + -15.53886890411377 + ], + [ + "Vocal", + -15.538878440856934 + ], + [ + "▁Staines", + -15.5388822555542 + ], + [ + "▁Solicitation", + -15.538902282714844 + ], + [ + "▁Kalle", + -15.53890609741211 + ], + [ + "▁epigraph", + -15.538915634155273 + ], + [ + "▁Heterocyclic", + -15.538917541503906 + ], + [ + "▁것을", + -15.538920402526855 + ], + [ + "owych", + -15.538928985595703 + ], + [ + "▁Claudette", + -15.538941383361816 + ], + [ + "▁polici", + -15.538946151733398 + ], + [ + "WAIT", + -15.538969039916992 + ], + [ + "▁vaporization", + -15.538976669311523 + ], + [ + "▁BARBARA", + -15.538984298706055 + ], + [ + "istische", + -15.538989067077637 + ], + [ + "▁Diagn", + -15.538994789123535 + ], + [ + "▁Hematite", + -15.539029121398926 + ], + [ + "▁Samiti", + -15.53903579711914 + ], + [ + "CLICK", + -15.539046287536621 + ], + [ + "Alison", + -15.539053916931152 + ], + [ + "Potential", + -15.53907585144043 + ], + [ + "▁इ", + -15.539077758789062 + ], + [ + "▁AFFECT", + -15.53908634185791 + ], + [ + "iblity", + -15.539090156555176 + ], + [ + "▁FLIP", + -15.539090156555176 + ], + [ + "▁Hobb", + -15.539108276367188 + ], + [ + "▁Supersonic", + -15.53918170928955 + ], + [ + "▁HBP", + -15.53920841217041 + ], + [ + "▁Immunotherapy", + -15.539225578308105 + ], + [ + "▁Polynomial", + -15.539226531982422 + ], + [ + "▁produk", + -15.539331436157227 + ], + [ + "▁Bribery", + -15.539402961730957 + ], + [ + "▁NorCal", + -15.539406776428223 + ], + [ + "▁Generously", + -15.539474487304688 + ], + [ + "▁ESOL", + -15.539525032043457 + ], + [ + "▁sapped", + -15.539538383483887 + ], + [ + "▁CHRISTOPHER", + -15.53955364227295 + ], + [ + "་", + -15.539569854736328 + ], + [ + "▁circulator", + -15.539570808410645 + ], + [ + "▁Wisp", + -15.539580345153809 + ], + [ + "▁CAIRO", + -15.539594650268555 + ], + [ + "▁sulphuric", + -15.539615631103516 + ], + [ + "▁Основы", + -15.53962230682373 + ], + [ + "▁Vesel", + -15.539626121520996 + ], + [ + "より", + -15.539631843566895 + ], + [ + "▁Gutman", + -15.539695739746094 + ], + [ + "▁Yggdrasil", + -15.539713859558105 + ], + [ + "▁InnoDB", + -15.539715766906738 + ], + [ + "▁Cohesion", + -15.5397367477417 + ], + [ + "▁accretive", + -15.539782524108887 + ], + [ + "twisted", + -15.539800643920898 + ], + [ + "▁arthroscopy", + -15.53980541229248 + ], + [ + "▁MASH", + -15.539809226989746 + ], + [ + "Klein", + -15.539848327636719 + ], + [ + "rogation", + -15.539862632751465 + ], + [ + "▁Rajnath", + -15.539884567260742 + ], + [ + "▁Berwyn", + -15.53991985321045 + ], + [ + "▁Factbook", + -15.539931297302246 + ], + [ + "hhhhhh", + -15.539932250976562 + ], + [ + "▁само", + -15.540021896362305 + ], + [ + "▁XXII", + -15.540130615234375 + ], + [ + "▁commandeer", + -15.540131568908691 + ], + [ + "▁FSF", + -15.540132522583008 + ], + [ + "▁Kaczynski", + -15.540145874023438 + ], + [ + "praying", + -15.540181159973145 + ], + [ + "▁Thrace", + -15.540251731872559 + ], + [ + "▁HAPPENED", + -15.540262222290039 + ], + [ + "▁Autographed", + -15.540292739868164 + ], + [ + "▁Crossbody", + -15.540294647216797 + ], + [ + "Stanley", + -15.540355682373047 + ], + [ + "▁PODCAST", + -15.540356636047363 + ], + [ + "▁Boredom", + -15.54038143157959 + ], + [ + "했", + -15.540399551391602 + ], + [ + "▁Yarbrough", + -15.540428161621094 + ], + [ + "▁Sisko", + -15.540430068969727 + ], + [ + "▁Guanajuato", + -15.540514945983887 + ], + [ + "▁Jourdan", + -15.540514945983887 + ], + [ + "▁Zaidi", + -15.540526390075684 + ], + [ + "pistol", + -15.540531158447266 + ], + [ + "▁Lahiri", + -15.540532112121582 + ], + [ + "Installation", + -15.540558815002441 + ], + [ + "▁Middleweight", + -15.540589332580566 + ], + [ + "chry", + -15.54061222076416 + ], + [ + "Щ", + -15.540619850158691 + ], + [ + "▁extrapolating", + -15.540629386901855 + ], + [ + "▁brainwash", + -15.540657043457031 + ], + [ + "▁externship", + -15.540708541870117 + ], + [ + "▁Giuliano", + -15.540719985961914 + ], + [ + "▁Craddock", + -15.54072093963623 + ], + [ + "▁HOOD", + -15.540736198425293 + ], + [ + "▁skal", + -15.540770530700684 + ], + [ + "iconic", + -15.540824890136719 + ], + [ + "▁disfavor", + -15.540850639343262 + ], + [ + "▁disbanding", + -15.540861129760742 + ], + [ + "syllable", + -15.540862083435059 + ], + [ + "greave", + -15.540865898132324 + ], + [ + "▁של", + -15.540874481201172 + ], + [ + "▁overshadowing", + -15.540914535522461 + ], + [ + "▁Lebowski", + -15.540919303894043 + ], + [ + "Meier", + -15.540923118591309 + ], + [ + "▁ALBERT", + -15.540943145751953 + ], + [ + "▁schweiz", + -15.540973663330078 + ], + [ + "ိ", + -15.541016578674316 + ], + [ + "▁Victorville", + -15.541041374206543 + ], + [ + "▁entangle", + -15.541043281555176 + ], + [ + "▁Circulating", + -15.541049003601074 + ], + [ + "▁tubercul", + -15.541064262390137 + ], + [ + "consist", + -15.541104316711426 + ], + [ + "▁Eurosport", + -15.541121482849121 + ], + [ + "▁dichotomous", + -15.541132926940918 + ], + [ + "├", + -15.5412015914917 + ], + [ + "armour", + -15.54124641418457 + ], + [ + "▁Honoree", + -15.541330337524414 + ], + [ + "▁bereits", + -15.541413307189941 + ], + [ + "▁Cowles", + -15.541419982910156 + ], + [ + "▁herculean", + -15.541454315185547 + ], + [ + "▁Luzerne", + -15.541465759277344 + ], + [ + "▁pomade", + -15.541543006896973 + ], + [ + "▁Dumoulin", + -15.541568756103516 + ], + [ + "★★★★★", + -15.541569709777832 + ], + [ + "Pamela", + -15.54159164428711 + ], + [ + "lattice", + -15.541624069213867 + ], + [ + "▁documentarian", + -15.541632652282715 + ], + [ + "evangel", + -15.541643142700195 + ], + [ + "▁glycosylation", + -15.541665077209473 + ], + [ + "▁reinvesting", + -15.541715621948242 + ], + [ + "การ", + -15.54179573059082 + ], + [ + "▁pincushion", + -15.541823387145996 + ], + [ + "▁Quartermaster", + -15.541826248168945 + ], + [ + "林", + -15.541837692260742 + ], + [ + "▁wombat", + -15.54187297821045 + ], + [ + "▁falta", + -15.54188346862793 + ], + [ + "▁Morbid", + -15.541987419128418 + ], + [ + "ष", + -15.541990280151367 + ], + [ + "င္", + -15.542001724243164 + ], + [ + "▁instrumentality", + -15.54212474822998 + ], + [ + "Hulk", + -15.542144775390625 + ], + [ + "▁Sharan", + -15.542149543762207 + ], + [ + "▁pelting", + -15.542155265808105 + ], + [ + "▁ASSET", + -15.542181015014648 + ], + [ + "Flood", + -15.542211532592773 + ], + [ + "▁Halak", + -15.542234420776367 + ], + [ + "▁amsterdam", + -15.542238235473633 + ], + [ + "▁migra", + -15.542346954345703 + ], + [ + "ива", + -15.542351722717285 + ], + [ + "Vienna", + -15.542365074157715 + ], + [ + "▁cephalosporin", + -15.542370796203613 + ], + [ + "▁puritan", + -15.542373657226562 + ], + [ + "Leigh", + -15.542377471923828 + ], + [ + "▁Yantra", + -15.542410850524902 + ], + [ + "▁Escaping", + -15.542451858520508 + ], + [ + "curable", + -15.542457580566406 + ], + [ + "▁Umrah", + -15.542469024658203 + ], + [ + "▁oblast", + -15.542490005493164 + ], + [ + "▁Olav", + -15.542531967163086 + ], + [ + "▁Spiller", + -15.542547225952148 + ], + [ + "Pierce", + -15.54255199432373 + ], + [ + "▁Tissot", + -15.542670249938965 + ], + [ + "▁Fontainebleau", + -15.54273796081543 + ], + [ + "Wade", + -15.54274845123291 + ], + [ + "kevich", + -15.542791366577148 + ], + [ + "印", + -15.542791366577148 + ], + [ + "▁HOLLYWOOD", + -15.542807579040527 + ], + [ + "▁Distinguish", + -15.542815208435059 + ], + [ + "Girlfriend", + -15.542831420898438 + ], + [ + "▁Thorsten", + -15.542832374572754 + ], + [ + "Regan", + -15.542892456054688 + ], + [ + "▁ZOOM", + -15.542898178100586 + ], + [ + "dispatch", + -15.542900085449219 + ], + [ + "▁Theranos", + -15.542903900146484 + ], + [ + "▁insolent", + -15.542919158935547 + ], + [ + "▁Ecclestone", + -15.542967796325684 + ], + [ + "▁BATTERY", + -15.542990684509277 + ], + [ + "IMMER", + -15.543076515197754 + ], + [ + "ခ", + -15.54308032989502 + ], + [ + "▁tubercle", + -15.543135643005371 + ], + [ + "Critic", + -15.543194770812988 + ], + [ + "▁Avicii", + -15.54324722290039 + ], + [ + "овая", + -15.543285369873047 + ], + [ + "fluorescent", + -15.543339729309082 + ], + [ + "▁russell", + -15.543347358703613 + ], + [ + "▁Mhz", + -15.543390274047852 + ], + [ + "▁Allgemeine", + -15.543449401855469 + ], + [ + "trodden", + -15.543538093566895 + ], + [ + "▁Medellín", + -15.54354190826416 + ], + [ + "▁Felon", + -15.543553352355957 + ], + [ + "▁Nirmala", + -15.543556213378906 + ], + [ + "▁Treviso", + -15.543567657470703 + ], + [ + "▁giv", + -15.54357624053955 + ], + [ + "▁Kolle", + -15.543610572814941 + ], + [ + "▁Suspicion", + -15.543610572814941 + ], + [ + "Rural", + -15.543624877929688 + ], + [ + "terpenoid", + -15.543676376342773 + ], + [ + "▁Xylo", + -15.543688774108887 + ], + [ + "▁objetivo", + -15.543693542480469 + ], + [ + "▁politicization", + -15.543700218200684 + ], + [ + "▁Doncic", + -15.543701171875 + ], + [ + "▁Resveratrol", + -15.543702125549316 + ], + [ + "eggia", + -15.543717384338379 + ], + [ + "▁Arminian", + -15.54372501373291 + ], + [ + "▁Filmfare", + -15.543729782104492 + ], + [ + "Sleeping", + -15.543754577636719 + ], + [ + "▁Λ", + -15.54377269744873 + ], + [ + "▁Archduke", + -15.543777465820312 + ], + [ + "arbitr", + -15.54382038116455 + ], + [ + "يك", + -15.54382038116455 + ], + [ + "▁Outcast", + -15.543830871582031 + ], + [ + "감", + -15.543841361999512 + ], + [ + "▁Disregard", + -15.543854713439941 + ], + [ + "▁pervading", + -15.543863296508789 + ], + [ + "▁Politician", + -15.5438871383667 + ], + [ + "▁shiplap", + -15.543902397155762 + ], + [ + "▁polyolefin", + -15.543915748596191 + ], + [ + "▁Lujan", + -15.543972969055176 + ], + [ + "▁Doubtless", + -15.543974876403809 + ], + [ + "▁peregrine", + -15.544024467468262 + ], + [ + "▁Abduction", + -15.544042587280273 + ], + [ + "▁diagramming", + -15.544042587280273 + ], + [ + "▁Travelodge", + -15.544048309326172 + ], + [ + "▁Floppy", + -15.544053077697754 + ], + [ + "Bail", + -15.544071197509766 + ], + [ + "ന്ന", + -15.544075012207031 + ], + [ + "▁Bielsa", + -15.5441312789917 + ], + [ + "vampire", + -15.544148445129395 + ], + [ + "▁jugar", + -15.54417610168457 + ], + [ + "▁Provigil", + -15.544208526611328 + ], + [ + "▁Pennywise", + -15.544240951538086 + ], + [ + "▁Jochen", + -15.544269561767578 + ], + [ + "▁deuterium", + -15.544276237487793 + ], + [ + "▁Leaking", + -15.544288635253906 + ], + [ + "▁Aintree", + -15.544303894042969 + ], + [ + "▁detestable", + -15.544304847717285 + ], + [ + "PPV", + -15.544305801391602 + ], + [ + "▁omaha", + -15.54434585571289 + ], + [ + "▁BizTalk", + -15.544533729553223 + ], + [ + "▁Roul", + -15.544548034667969 + ], + [ + "▁Marrone", + -15.544560432434082 + ], + [ + "▁Wholesome", + -15.544621467590332 + ], + [ + "▁cruciferous", + -15.544713973999023 + ], + [ + "▁CANDIDATE", + -15.544759750366211 + ], + [ + "Albany", + -15.54476261138916 + ], + [ + "▁uncritically", + -15.54477310180664 + ], + [ + "стор", + -15.544844627380371 + ], + [ + "▁Tiri", + -15.54486083984375 + ], + [ + "Elvis", + -15.544878959655762 + ], + [ + "▁polynucleotide", + -15.544880867004395 + ], + [ + "▁infirmities", + -15.54489803314209 + ], + [ + "까지", + -15.544900894165039 + ], + [ + "▁pushbutton", + -15.544905662536621 + ], + [ + "▁duplicitous", + -15.544920921325684 + ], + [ + "judgemental", + -15.544933319091797 + ], + [ + "▁parsnip", + -15.544964790344238 + ], + [ + "▁fazed", + -15.544974327087402 + ], + [ + "▁clairvoyance", + -15.544989585876465 + ], + [ + "mileage", + -15.54499626159668 + ], + [ + "▁TERRI", + -15.545001029968262 + ], + [ + "▁SIGGRAPH", + -15.545061111450195 + ], + [ + "▁starbucks", + -15.545100212097168 + ], + [ + "▁Archiving", + -15.545147895812988 + ], + [ + "▁Gorky", + -15.545154571533203 + ], + [ + "▁Hammerhead", + -15.545158386230469 + ], + [ + "▁UTSA", + -15.545174598693848 + ], + [ + "▁Hygienist", + -15.545196533203125 + ], + [ + "Depending", + -15.545197486877441 + ], + [ + "▁Dunhill", + -15.545209884643555 + ], + [ + "▁Richelieu", + -15.545219421386719 + ], + [ + "▁functor", + -15.54532527923584 + ], + [ + "colleague", + -15.545352935791016 + ], + [ + "▁TUF", + -15.545354843139648 + ], + [ + "pierce", + -15.545355796813965 + ], + [ + "▁COUPON", + -15.545380592346191 + ], + [ + "▁POSTED", + -15.545380592346191 + ], + [ + "▁Reciprocity", + -15.545449256896973 + ], + [ + "▁Eilat", + -15.54549789428711 + ], + [ + "ogged", + -15.545499801635742 + ], + [ + "▁Amstel", + -15.545557975769043 + ], + [ + "Lounge", + -15.545585632324219 + ], + [ + "▁Cerner", + -15.545607566833496 + ], + [ + "▁Kegel", + -15.545653343200684 + ], + [ + "▁nih", + -15.545656204223633 + ], + [ + "▁whinge", + -15.545656204223633 + ], + [ + "▁discontinuities", + -15.54565715789795 + ], + [ + "▁erhalten", + -15.54568099975586 + ], + [ + "▁Reaves", + -15.545706748962402 + ], + [ + "Monk", + -15.545741081237793 + ], + [ + "▁SKILLS", + -15.545748710632324 + ], + [ + "▁Latakia", + -15.545877456665039 + ], + [ + "▁Pravda", + -15.545897483825684 + ], + [ + "يس", + -15.545933723449707 + ], + [ + "▁expunge", + -15.545943260192871 + ], + [ + "▁rheumatology", + -15.545978546142578 + ], + [ + "▁καὶ", + -15.545978546142578 + ], + [ + "derivative", + -15.545989990234375 + ], + [ + "▁asymmetries", + -15.546002388000488 + ], + [ + "▁claus", + -15.546011924743652 + ], + [ + "▁Gawain", + -15.546036720275879 + ], + [ + "▁recapping", + -15.54604721069336 + ], + [ + "▁Hizbullah", + -15.546093940734863 + ], + [ + "خر", + -15.54613971710205 + ], + [ + "▁Soundgarden", + -15.54614543914795 + ], + [ + "═", + -15.546172142028809 + ], + [ + "▁hitchhike", + -15.54625415802002 + ], + [ + "▁Nieves", + -15.546255111694336 + ], + [ + "▁teleprompter", + -15.546255111694336 + ], + [ + "wirkung", + -15.546289443969727 + ], + [ + "▁Serkis", + -15.546317100524902 + ], + [ + "▁Cybercrime", + -15.546378135681152 + ], + [ + "▁Shikhar", + -15.546392440795898 + ], + [ + "너", + -15.546416282653809 + ], + [ + "бер", + -15.546426773071289 + ], + [ + "▁Uefa", + -15.546468734741211 + ], + [ + "▁intermarriage", + -15.546470642089844 + ], + [ + "phosphonic", + -15.546510696411133 + ], + [ + "▁embroideries", + -15.546536445617676 + ], + [ + "▁bangladesh", + -15.546554565429688 + ], + [ + "▁Thimphu", + -15.546600341796875 + ], + [ + "lexia", + -15.546607971191406 + ], + [ + "▁Dissemination", + -15.546647071838379 + ], + [ + "mexico", + -15.546664237976074 + ], + [ + "▁Oxlade", + -15.546677589416504 + ], + [ + "▁parodied", + -15.546692848205566 + ], + [ + "Psychology", + -15.546698570251465 + ], + [ + "▁Lundberg", + -15.546738624572754 + ], + [ + "▁Incandescent", + -15.546785354614258 + ], + [ + "ghast", + -15.546802520751953 + ], + [ + "▁breathlessness", + -15.546842575073242 + ], + [ + "▁Bacca", + -15.546855926513672 + ], + [ + "▁Douche", + -15.546868324279785 + ], + [ + "nouncing", + -15.546887397766113 + ], + [ + "▁Prescribing", + -15.546903610229492 + ], + [ + "▁Braveheart", + -15.546944618225098 + ], + [ + "beneficial", + -15.546950340270996 + ], + [ + "▁Shephard", + -15.54697036743164 + ], + [ + "▁CANCEL", + -15.547042846679688 + ], + [ + "▁woozy", + -15.547045707702637 + ], + [ + "▁Raritan", + -15.547061920166016 + ], + [ + "▁softcover", + -15.547073364257812 + ], + [ + "CRYPT", + -15.54713249206543 + ], + [ + "▁fotografi", + -15.547161102294922 + ], + [ + "▁Sackett", + -15.547171592712402 + ], + [ + "▁TJNBoost", + -15.547176361083984 + ], + [ + "▁llega", + -15.547188758850098 + ], + [ + "▁ADMINISTRATION", + -15.547245979309082 + ], + [ + "▁nameservers", + -15.54725456237793 + ], + [ + "Alter", + -15.547292709350586 + ], + [ + "▁Illuminating", + -15.547307968139648 + ], + [ + "quillo", + -15.547320365905762 + ], + [ + "▁Cragg", + -15.547321319580078 + ], + [ + "▁Ancestor", + -15.547337532043457 + ], + [ + "▁Prabhakar", + -15.547402381896973 + ], + [ + "LANG", + -15.54741096496582 + ], + [ + "▁Milburn", + -15.54745864868164 + ], + [ + "传", + -15.547469139099121 + ], + [ + "▁Kawaii", + -15.54747486114502 + ], + [ + "▁MISSING", + -15.547548294067383 + ], + [ + "нер", + -15.547563552856445 + ], + [ + "▁AVCHD", + -15.547564506530762 + ], + [ + "▁Lipitor", + -15.547616004943848 + ], + [ + "bereich", + -15.547623634338379 + ], + [ + "▁Lytle", + -15.547639846801758 + ], + [ + "▁django", + -15.547652244567871 + ], + [ + "▁Pulisic", + -15.5476713180542 + ], + [ + "▁Molyneux", + -15.547706604003906 + ], + [ + "▁HEATING", + -15.54773235321045 + ], + [ + "ulga", + -15.547734260559082 + ], + [ + "Manifest", + -15.547736167907715 + ], + [ + "▁semper", + -15.547748565673828 + ], + [ + "▁whizzed", + -15.547820091247559 + ], + [ + "▁Viktoria", + -15.547836303710938 + ], + [ + "Stephanie", + -15.547847747802734 + ], + [ + "▁femtosecond", + -15.547868728637695 + ], + [ + "▁urinalysis", + -15.547892570495605 + ], + [ + "▁Devonian", + -15.547900199890137 + ], + [ + "▁auxiliaries", + -15.54796028137207 + ], + [ + "▁Saina", + -15.547991752624512 + ], + [ + "▁Decreasing", + -15.548007011413574 + ], + [ + "▁magnetosphere", + -15.548015594482422 + ], + [ + "▁satirize", + -15.548019409179688 + ], + [ + "▁ornithologist", + -15.548029899597168 + ], + [ + "▁punjabi", + -15.548108100891113 + ], + [ + "▁kawaii", + -15.548110961914062 + ], + [ + "▁Lockyer", + -15.548130989074707 + ], + [ + "मि", + -15.548142433166504 + ], + [ + "prototype", + -15.548197746276855 + ], + [ + "▁purred", + -15.548237800598145 + ], + [ + "▁Whirlwind", + -15.548274040222168 + ], + [ + "▁mongoose", + -15.548310279846191 + ], + [ + "▁Insomniac", + -15.548323631286621 + ], + [ + "▁Mawson", + -15.548343658447266 + ], + [ + "請求項", + -15.548354148864746 + ], + [ + "▁क्या", + -15.548422813415527 + ], + [ + "▁Gerri", + -15.5484619140625 + ], + [ + "overnight", + -15.548466682434082 + ], + [ + "▁McLane", + -15.54847240447998 + ], + [ + "▁Entebbe", + -15.548494338989258 + ], + [ + "▁vasodilator", + -15.548537254333496 + ], + [ + "▁Eisenstein", + -15.548552513122559 + ], + [ + "▁franklin", + -15.548572540283203 + ], + [ + "▁̆", + -15.548584938049316 + ], + [ + "▁FEELING", + -15.548643112182617 + ], + [ + "▁Culpeper", + -15.548699378967285 + ], + [ + "▁antimalarial", + -15.548709869384766 + ], + [ + "▁redeployment", + -15.548724174499512 + ], + [ + "▁OLAP", + -15.548730850219727 + ], + [ + "▁Kalispell", + -15.548761367797852 + ], + [ + "▁Andreessen", + -15.548807144165039 + ], + [ + "▁etiologic", + -15.548859596252441 + ], + [ + "▁Subpoena", + -15.548860549926758 + ], + [ + "▁ALBANY", + -15.54886531829834 + ], + [ + "Einstein", + -15.5488920211792 + ], + [ + "▁stepsister", + -15.548898696899414 + ], + [ + "▁sepals", + -15.548927307128906 + ], + [ + "sylvania", + -15.548933029174805 + ], + [ + "▁granulocyte", + -15.54897403717041 + ], + [ + "▁wiener", + -15.54898738861084 + ], + [ + "▁riven", + -15.548990249633789 + ], + [ + "▁crimin", + -15.5490083694458 + ], + [ + "▁Synthroid", + -15.549026489257812 + ], + [ + "ideological", + -15.549062728881836 + ], + [ + "▁Prognostic", + -15.549067497253418 + ], + [ + "▁Grea", + -15.549081802368164 + ], + [ + "cleansing", + -15.54908275604248 + ], + [ + "▁Lattimore", + -15.549114227294922 + ], + [ + "▁Anticipated", + -15.549201965332031 + ], + [ + "▁Cedarville", + -15.549217224121094 + ], + [ + "における", + -15.549320220947266 + ], + [ + "▁accel", + -15.549335479736328 + ], + [ + "▁summarising", + -15.54941463470459 + ], + [ + "▁Thomsen", + -15.549473762512207 + ], + [ + "▁Yassin", + -15.549530982971191 + ], + [ + "▁DONATE", + -15.549538612365723 + ], + [ + "сы", + -15.549558639526367 + ], + [ + "▁pregunta", + -15.549567222595215 + ], + [ + "Gospel", + -15.54958438873291 + ], + [ + "判", + -15.549596786499023 + ], + [ + "▁Pharo", + -15.549635887145996 + ], + [ + "▁electroplating", + -15.549646377563477 + ], + [ + "Processor", + -15.54965877532959 + ], + [ + "▁Carpal", + -15.549691200256348 + ], + [ + "Breast", + -15.5497407913208 + ], + [ + "▁lope", + -15.549744606018066 + ], + [ + "Centric", + -15.549756050109863 + ], + [ + "其中", + -15.54977798461914 + ], + [ + "pollination", + -15.549778938293457 + ], + [ + "▁frust", + -15.549821853637695 + ], + [ + "▁plyometric", + -15.549839973449707 + ], + [ + "▁área", + -15.549839973449707 + ], + [ + "▁Jabalpur", + -15.549840927124023 + ], + [ + "▁CORRECTION", + -15.549883842468262 + ], + [ + "▁Granlund", + -15.549904823303223 + ], + [ + "▁DLNA", + -15.550057411193848 + ], + [ + "▁Fernanda", + -15.550070762634277 + ], + [ + "▁είναι", + -15.550130844116211 + ], + [ + "▁brulee", + -15.550138473510742 + ], + [ + "palace", + -15.550162315368652 + ], + [ + "▁Wigmore", + -15.550168991088867 + ], + [ + "ം", + -15.550177574157715 + ], + [ + "▁Maqui", + -15.550183296203613 + ], + [ + "▁chinook", + -15.550183296203613 + ], + [ + "arrested", + -15.550189018249512 + ], + [ + "축", + -15.550200462341309 + ], + [ + "▁Lebenslauf", + -15.550248146057129 + ], + [ + "▁Amalgamated", + -15.550254821777344 + ], + [ + "▁Xiaoping", + -15.550272941589355 + ], + [ + "效", + -15.550275802612305 + ], + [ + "差", + -15.550358772277832 + ], + [ + "ghetto", + -15.550373077392578 + ], + [ + "▁mujeres", + -15.550374031066895 + ], + [ + "OWER", + -15.550413131713867 + ], + [ + "Quan", + -15.550414085388184 + ], + [ + "ctio", + -15.550416946411133 + ], + [ + "consistency", + -15.550424575805664 + ], + [ + "▁Habanero", + -15.550455093383789 + ], + [ + "▁KIPP", + -15.550480842590332 + ], + [ + "gnome", + -15.550496101379395 + ], + [ + "▁Nisbet", + -15.550529479980469 + ], + [ + "uomo", + -15.550552368164062 + ], + [ + "▁pharmacodynamic", + -15.550603866577148 + ], + [ + "房", + -15.550639152526855 + ], + [ + "▁BIOL", + -15.550641059875488 + ], + [ + "▁dropkick", + -15.550668716430664 + ], + [ + "▁Tuolumne", + -15.550732612609863 + ], + [ + "headedness", + -15.550741195678711 + ], + [ + "leider", + -15.550756454467773 + ], + [ + "▁COMPONENTS", + -15.55077838897705 + ], + [ + "▁baltimore", + -15.55077838897705 + ], + [ + "collaboration", + -15.550824165344238 + ], + [ + "▁Reglazing", + -15.550827026367188 + ], + [ + "Nevertheless", + -15.550873756408691 + ], + [ + "Attention", + -15.550880432128906 + ], + [ + "▁Swagbucks", + -15.550965309143066 + ], + [ + "pharyngeal", + -15.55099105834961 + ], + [ + "त्र", + -15.550995826721191 + ], + [ + "▁trombonist", + -15.551010131835938 + ], + [ + "ṣa", + -15.55109977722168 + ], + [ + "▁Inventories", + -15.55112075805664 + ], + [ + "▁egoism", + -15.5511474609375 + ], + [ + "▁czy", + -15.551148414611816 + ], + [ + "Divide", + -15.551187515258789 + ], + [ + "▁wight", + -15.551222801208496 + ], + [ + "haug", + -15.551239967346191 + ], + [ + "▁anmeldung", + -15.551241874694824 + ], + [ + "▁nigga", + -15.551251411437988 + ], + [ + "▁Maldon", + -15.55128288269043 + ], + [ + "remarkable", + -15.551295280456543 + ], + [ + "▁libra", + -15.551295280456543 + ], + [ + "▁Eyal", + -15.551342010498047 + ], + [ + "▁degreaser", + -15.55142593383789 + ], + [ + "▁Bhojpuri", + -15.551472663879395 + ], + [ + "▁Vernal", + -15.551482200622559 + ], + [ + "▁stanley", + -15.551493644714355 + ], + [ + "▁Flemming", + -15.55150032043457 + ], + [ + "▁Dispensary", + -15.551542282104492 + ], + [ + "▁fueron", + -15.551555633544922 + ], + [ + "▁Avionics", + -15.55157470703125 + ], + [ + "▁microblogging", + -15.55157470703125 + ], + [ + "▁portugal", + -15.551593780517578 + ], + [ + "Roller", + -15.551623344421387 + ], + [ + "▁Hikari", + -15.551644325256348 + ], + [ + "▁lavatories", + -15.551681518554688 + ], + [ + "▁Energize", + -15.551695823669434 + ], + [ + "CTRL", + -15.55173397064209 + ], + [ + "▁Wynwood", + -15.551736831665039 + ], + [ + "▁sieving", + -15.551774978637695 + ], + [ + "স", + -15.551801681518555 + ], + [ + "sistance", + -15.55184268951416 + ], + [ + "UMBLE", + -15.551843643188477 + ], + [ + "▁Wylde", + -15.551878929138184 + ], + [ + "▁Connoisseur", + -15.551889419555664 + ], + [ + "▁remortgage", + -15.551907539367676 + ], + [ + "▁Indemnification", + -15.551959037780762 + ], + [ + "▁Epigenomics", + -15.551963806152344 + ], + [ + "Eventually", + -15.551966667175293 + ], + [ + "▁avons", + -15.551997184753418 + ], + [ + "▁Flaxseed", + -15.55201244354248 + ], + [ + "सी", + -15.552020072937012 + ], + [ + "▁diskette", + -15.552021980285645 + ], + [ + "▁merlot", + -15.552045822143555 + ], + [ + "photonic", + -15.552050590515137 + ], + [ + "▁Ertz", + -15.552062034606934 + ], + [ + "tainted", + -15.5520658493042 + ], + [ + "▁GEORGIA", + -15.552098274230957 + ], + [ + "设备", + -15.552109718322754 + ], + [ + "▁Kaspar", + -15.55219841003418 + ], + [ + "▁Poncho", + -15.552228927612305 + ], + [ + "▁sakura", + -15.552229881286621 + ], + [ + "▁Fadnavis", + -15.552237510681152 + ], + [ + "▁Félix", + -15.552330017089844 + ], + [ + "▁chastisement", + -15.552342414855957 + ], + [ + "▁Northcote", + -15.552349090576172 + ], + [ + "▁Coromandel", + -15.552352905273438 + ], + [ + "▁Fittingly", + -15.55237102508545 + ], + [ + "▁rosehip", + -15.552377700805664 + ], + [ + "▁bicentennial", + -15.552384376525879 + ], + [ + "Contest", + -15.552443504333496 + ], + [ + "▁FULLEST", + -15.552447319030762 + ], + [ + "inherited", + -15.552502632141113 + ], + [ + "▁misjudge", + -15.552552223205566 + ], + [ + "▁elution", + -15.552589416503906 + ], + [ + "Dependent", + -15.552591323852539 + ], + [ + "▁Bridlington", + -15.552607536315918 + ], + [ + "▁Gandhinagar", + -15.552641868591309 + ], + [ + "Diversity", + -15.552645683288574 + ], + [ + "▁Belknap", + -15.552705764770508 + ], + [ + "JOY", + -15.55271053314209 + ], + [ + "▁Yuvraj", + -15.55272388458252 + ], + [ + "▁COMPETITION", + -15.552816390991211 + ], + [ + "▁Marwan", + -15.55282974243164 + ], + [ + "▁cochlea", + -15.552834510803223 + ], + [ + "dividing", + -15.552841186523438 + ], + [ + "▁Frigate", + -15.552846908569336 + ], + [ + "▁Cloister", + -15.552867889404297 + ], + [ + "▁Bhajan", + -15.552964210510254 + ], + [ + "▁Jenga", + -15.55298137664795 + ], + [ + "▁Erfahrung", + -15.553001403808594 + ], + [ + "話", + -15.553034782409668 + ], + [ + "▁Tule", + -15.553037643432617 + ], + [ + "▁DESIRE", + -15.553071975708008 + ], + [ + "▁Reluctantly", + -15.553142547607422 + ], + [ + "▁jusqu", + -15.553181648254395 + ], + [ + "▁Sandburg", + -15.553202629089355 + ], + [ + "▁SLIDE", + -15.553214073181152 + ], + [ + "▁tsk", + -15.553223609924316 + ], + [ + "▁nunc", + -15.553303718566895 + ], + [ + "▁Swoon", + -15.553329467773438 + ], + [ + "ホ", + -15.553370475769043 + ], + [ + "▁Semple", + -15.553375244140625 + ], + [ + "▁Smalltalk", + -15.5534086227417 + ], + [ + "Tribe", + -15.553426742553711 + ], + [ + "▁Reinventing", + -15.553427696228027 + ], + [ + "▁DICOM", + -15.55344009399414 + ], + [ + "▁retweeting", + -15.553442001342773 + ], + [ + "▁Indulgence", + -15.55345344543457 + ], + [ + "▁Opponent", + -15.553461074829102 + ], + [ + "▁Psychotherapist", + -15.55346965789795 + ], + [ + "▁Energia", + -15.553506851196289 + ], + [ + "▁Oxon", + -15.553558349609375 + ], + [ + "▁kilter", + -15.55363941192627 + ], + [ + "▁MAINTAIN", + -15.553677558898926 + ], + [ + "stylist", + -15.553686141967773 + ], + [ + "▁robaxin", + -15.553726196289062 + ], + [ + "▁Sunken", + -15.55382251739502 + ], + [ + "▁impugned", + -15.553836822509766 + ], + [ + "▁Leibowitz", + -15.553863525390625 + ], + [ + "▁nich", + -15.553888320922852 + ], + [ + "▁Calicut", + -15.553956985473633 + ], + [ + "▁foisted", + -15.553967475891113 + ], + [ + "Wisdom", + -15.553988456726074 + ], + [ + "▁ensnare", + -15.553999900817871 + ], + [ + "licence", + -15.55401611328125 + ], + [ + "▁disunity", + -15.554043769836426 + ], + [ + "▁Schuman", + -15.554047584533691 + ], + [ + "▁Healdsburg", + -15.554115295410156 + ], + [ + "▁Mordechai", + -15.55413818359375 + ], + [ + "▁sloshing", + -15.554162979125977 + ], + [ + "▁NADH", + -15.554177284240723 + ], + [ + "▁Mockingjay", + -15.554184913635254 + ], + [ + "▁Telematics", + -15.55420970916748 + ], + [ + "▁pimento", + -15.554243087768555 + ], + [ + "▁perquisite", + -15.554256439208984 + ], + [ + "曲", + -15.55427074432373 + ], + [ + "▁juxtaposing", + -15.554277420043945 + ], + [ + "chaser", + -15.554311752319336 + ], + [ + "jón", + -15.55433464050293 + ], + [ + "▁haue", + -15.554344177246094 + ], + [ + "sensual", + -15.55435562133789 + ], + [ + "▁Songbird", + -15.554390907287598 + ], + [ + "▁WALKING", + -15.554391860961914 + ], + [ + "▁Authorship", + -15.554443359375 + ], + [ + "▁SOAR", + -15.554451942443848 + ], + [ + "▁Vibratory", + -15.554466247558594 + ], + [ + "petite", + -15.554481506347656 + ], + [ + "▁TASK", + -15.554481506347656 + ], + [ + "▁Ogilvie", + -15.554510116577148 + ], + [ + "Erika", + -15.554521560668945 + ], + [ + "▁вид", + -15.554542541503906 + ], + [ + "▁prolly", + -15.554576873779297 + ], + [ + "Vampire", + -15.554585456848145 + ], + [ + "▁Meritorious", + -15.554625511169434 + ], + [ + "▁exerci", + -15.55463695526123 + ], + [ + "▁Oneonta", + -15.554652214050293 + ], + [ + "▁Chasse", + -15.554692268371582 + ], + [ + "▁EXECUTIVE", + -15.554695129394531 + ], + [ + "otsky", + -15.554717063903809 + ], + [ + "▁Reichert", + -15.554750442504883 + ], + [ + "avoidance", + -15.554795265197754 + ], + [ + "▁Begley", + -15.554817199707031 + ], + [ + "▁LIDAR", + -15.554840087890625 + ], + [ + "avoir", + -15.554884910583496 + ], + [ + "elph", + -15.554912567138672 + ], + [ + "▁Knitter", + -15.554915428161621 + ], + [ + "▁Balti", + -15.554956436157227 + ], + [ + "▁embarkation", + -15.554960250854492 + ], + [ + "设", + -15.554993629455566 + ], + [ + "Eternal", + -15.55505084991455 + ], + [ + "effacing", + -15.555068969726562 + ], + [ + "▁YAML", + -15.555088996887207 + ], + [ + "▁UNFPA", + -15.555119514465332 + ], + [ + "▁mocktail", + -15.555140495300293 + ], + [ + "glycerol", + -15.55515193939209 + ], + [ + "▁ethane", + -15.555155754089355 + ], + [ + "Actual", + -15.55517578125 + ], + [ + "▁Netbook", + -15.555224418640137 + ], + [ + "machinery", + -15.555231094360352 + ], + [ + "▁Bathsheba", + -15.555253028869629 + ], + [ + "▁Nutanix", + -15.555253028869629 + ], + [ + "▁Reproduced", + -15.555258750915527 + ], + [ + "▁pinata", + -15.555264472961426 + ], + [ + "▁metabolically", + -15.555283546447754 + ], + [ + "▁niqab", + -15.555299758911133 + ], + [ + "▁🔥", + -15.555299758911133 + ], + [ + "toronto", + -15.555307388305664 + ], + [ + "▁Hassa", + -15.555371284484863 + ], + [ + "▁DINNER", + -15.555418014526367 + ], + [ + "▁Ahrens", + -15.555477142333984 + ], + [ + "▁chryso", + -15.555479049682617 + ], + [ + "occasionally", + -15.555572509765625 + ], + [ + "NAFTA", + -15.555596351623535 + ], + [ + "▁Carré", + -15.555598258972168 + ], + [ + "▁steeplechase", + -15.555603981018066 + ], + [ + "decline", + -15.555606842041016 + ], + [ + "▁cubbies", + -15.55568790435791 + ], + [ + "▁unleavened", + -15.555717468261719 + ], + [ + "▁Risotto", + -15.555731773376465 + ], + [ + "▁Neeraj", + -15.555747985839844 + ], + [ + "cchino", + -15.555764198303223 + ], + [ + "▁Yorba", + -15.555819511413574 + ], + [ + "▁expeditionary", + -15.555848121643066 + ], + [ + "Quo", + -15.55586051940918 + ], + [ + "bourgeois", + -15.555863380432129 + ], + [ + "▁kunnen", + -15.55587100982666 + ], + [ + "▁Bauchi", + -15.555882453918457 + ], + [ + "▁Pawlenty", + -15.555903434753418 + ], + [ + "յ", + -15.555927276611328 + ], + [ + "▁EVIDENCE", + -15.555927276611328 + ], + [ + "▁forskolin", + -15.55594253540039 + ], + [ + "▁sweetening", + -15.555975914001465 + ], + [ + "▁Supervising", + -15.556020736694336 + ], + [ + "▁Whitford", + -15.556068420410156 + ], + [ + "▁Rabbitohs", + -15.556138038635254 + ], + [ + "Heath", + -15.556168556213379 + ], + [ + "▁Tankless", + -15.556199073791504 + ], + [ + "delicate", + -15.556269645690918 + ], + [ + "▁Gowda", + -15.55628490447998 + ], + [ + "▁Bolger", + -15.556397438049316 + ], + [ + "kovski", + -15.556496620178223 + ], + [ + "▁Thaler", + -15.55654239654541 + ], + [ + "▁Angebot", + -15.556561470031738 + ], + [ + "Southeast", + -15.556612014770508 + ], + [ + "▁Juárez", + -15.556648254394531 + ], + [ + "▁marshalling", + -15.55666732788086 + ], + [ + "▁Chloé", + -15.556694984436035 + ], + [ + "▁séance", + -15.5567045211792 + ], + [ + "▁Luann", + -15.556732177734375 + ], + [ + "▁Juha", + -15.556787490844727 + ], + [ + "▁climatologist", + -15.556787490844727 + ], + [ + "▁Broadmoor", + -15.556803703308105 + ], + [ + "▁fermion", + -15.556838989257812 + ], + [ + "▁Halperin", + -15.55685806274414 + ], + [ + "▁ffmpeg", + -15.556882858276367 + ], + [ + "tangible", + -15.55688762664795 + ], + [ + "▁confiscating", + -15.556903839111328 + ], + [ + "▁FUNNY", + -15.556904792785645 + ], + [ + "▁regretfully", + -15.556923866271973 + ], + [ + "▁cuttlefish", + -15.556950569152832 + ], + [ + "▁beadwork", + -15.556953430175781 + ], + [ + "лиз", + -15.557025909423828 + ], + [ + "▁midazolam", + -15.557039260864258 + ], + [ + "▁Moschino", + -15.557049751281738 + ], + [ + "▁tittle", + -15.5570707321167 + ], + [ + "▁Taormina", + -15.557113647460938 + ], + [ + "▁otaku", + -15.557145118713379 + ], + [ + "▁Announcer", + -15.557154655456543 + ], + [ + "▁bazillion", + -15.557162284851074 + ], + [ + "清", + -15.5571870803833 + ], + [ + "▁Tupper", + -15.557223320007324 + ], + [ + "들의", + -15.557271957397461 + ], + [ + "▁passionfruit", + -15.557364463806152 + ], + [ + "▁Ogawa", + -15.55737590789795 + ], + [ + "̇", + -15.557388305664062 + ], + [ + "▁Podiatry", + -15.557439804077148 + ], + [ + "▁parried", + -15.557513236999512 + ], + [ + "▁Ikeja", + -15.55752944946289 + ], + [ + "▁Husker", + -15.557531356811523 + ], + [ + "▁NFU", + -15.557591438293457 + ], + [ + "▁Jeevan", + -15.557604789733887 + ], + [ + "▁HYIP", + -15.55762004852295 + ], + [ + "▁servile", + -15.557633399963379 + ], + [ + "▁appareils", + -15.557672500610352 + ], + [ + "▁phlebotomy", + -15.557672500610352 + ], + [ + "▁sancti", + -15.557723045349121 + ], + [ + "Vinyl", + -15.557753562927246 + ], + [ + "▁Bronner", + -15.557756423950195 + ], + [ + "▁taiwan", + -15.557852745056152 + ], + [ + "▁HOWARD", + -15.557889938354492 + ], + [ + "▁Bartlesville", + -15.557896614074707 + ], + [ + "▁Expressionism", + -15.557929992675781 + ], + [ + "▁irksome", + -15.557979583740234 + ], + [ + "ር", + -15.557998657226562 + ], + [ + "▁Utensil", + -15.558023452758789 + ], + [ + "▁RENEW", + -15.5580415725708 + ], + [ + "▁Kwazulu", + -15.55806827545166 + ], + [ + "geometric", + -15.558073997497559 + ], + [ + "▁serger", + -15.558087348937988 + ], + [ + "▁endocytosis", + -15.558094024658203 + ], + [ + "serif", + -15.558100700378418 + ], + [ + "▁homeostatic", + -15.558121681213379 + ], + [ + "▁Deliveroo", + -15.558133125305176 + ], + [ + "▁Shamir", + -15.558147430419922 + ], + [ + "isseur", + -15.558148384094238 + ], + [ + "▁ISKCON", + -15.558208465576172 + ], + [ + "όν", + -15.55825138092041 + ], + [ + "▁HOLE", + -15.558269500732422 + ], + [ + "▁Vaidya", + -15.5582857131958 + ], + [ + "▁ELCA", + -15.558310508728027 + ], + [ + "▁Cardstock", + -15.558392524719238 + ], + [ + "▁geode", + -15.558406829833984 + ], + [ + "xxxxx", + -15.558452606201172 + ], + [ + "▁Fairport", + -15.55848503112793 + ], + [ + "▁Tromb", + -15.558488845825195 + ], + [ + "▁Refinancing", + -15.558512687683105 + ], + [ + "Mercy", + -15.558547019958496 + ], + [ + "assassin", + -15.558547019958496 + ], + [ + "▁Fuerteventura", + -15.55860424041748 + ], + [ + "▁Rockymag", + -15.558606147766113 + ], + [ + "knowingly", + -15.558609962463379 + ], + [ + "▁Issuance", + -15.55862808227539 + ], + [ + "▁Nirmal", + -15.558701515197754 + ], + [ + "Mojo", + -15.558724403381348 + ], + [ + "▁WARREN", + -15.558724403381348 + ], + [ + "▁Zeitgeist", + -15.558768272399902 + ], + [ + "hiker", + -15.5587797164917 + ], + [ + "システム", + -15.558797836303711 + ], + [ + "▁Obese", + -15.558802604675293 + ], + [ + "▁Upadhyay", + -15.558815002441406 + ], + [ + "▁Grameen", + -15.558822631835938 + ], + [ + "▁Archiv", + -15.558826446533203 + ], + [ + "▁Khosla", + -15.558842658996582 + ], + [ + "▁Ubiquiti", + -15.558844566345215 + ], + [ + "▁replenishes", + -15.558847427368164 + ], + [ + "▁Luddite", + -15.558865547180176 + ], + [ + "▁Corleone", + -15.558884620666504 + ], + [ + "▁Lentz", + -15.558911323547363 + ], + [ + "▁prerecorded", + -15.558939933776855 + ], + [ + "ится", + -15.558954238891602 + ], + [ + "▁Bharara", + -15.558975219726562 + ], + [ + "▁McFly", + -15.559139251708984 + ], + [ + "▁Niña", + -15.55915641784668 + ], + [ + "▁KCNA", + -15.559161186218262 + ], + [ + "acji", + -15.559163093566895 + ], + [ + "▁Tatyana", + -15.559317588806152 + ], + [ + "JCC", + -15.559398651123047 + ], + [ + "▁Cardiologist", + -15.559412956237793 + ], + [ + "▁FRAUD", + -15.55948257446289 + ], + [ + "▁StumbleUpon", + -15.559492111206055 + ], + [ + "▁mitogen", + -15.559548377990723 + ], + [ + "ţe", + -15.559575080871582 + ], + [ + "fireplace", + -15.559576988220215 + ], + [ + "▁Carthaginian", + -15.559584617614746 + ], + [ + "▁Gangtok", + -15.559598922729492 + ], + [ + "Spike", + -15.55964183807373 + ], + [ + "▁Resurfacing", + -15.559654235839844 + ], + [ + "▁Hagrid", + -15.559661865234375 + ], + [ + "čka", + -15.55966567993164 + ], + [ + "▁CubeSat", + -15.559701919555664 + ], + [ + "▁Inherit", + -15.559751510620117 + ], + [ + "▁saccade", + -15.55978775024414 + ], + [ + "herbal", + -15.559814453125 + ], + [ + "BBW", + -15.559818267822266 + ], + [ + "▁Encrypted", + -15.559829711914062 + ], + [ + "▁Alumnus", + -15.559850692749023 + ], + [ + "▁Medizin", + -15.55987548828125 + ], + [ + "▁Shattuck", + -15.560029029846191 + ], + [ + "Oriental", + -15.56008243560791 + ], + [ + "막", + -15.560097694396973 + ], + [ + "▁rhode", + -15.560127258300781 + ], + [ + "ご", + -15.560160636901855 + ], + [ + "▁jenn", + -15.56019115447998 + ], + [ + "▁internacional", + -15.560214042663574 + ], + [ + "Oops", + -15.56023120880127 + ], + [ + "▁Balanchine", + -15.5602388381958 + ], + [ + "▁Jihadi", + -15.560259819030762 + ], + [ + "▁Carmack", + -15.560285568237305 + ], + [ + "blossom", + -15.56029224395752 + ], + [ + "▁Oliphant", + -15.560354232788086 + ], + [ + "़", + -15.560384750366211 + ], + [ + "▁vandalised", + -15.560389518737793 + ], + [ + "Incredible", + -15.560399055480957 + ], + [ + "▁Waimea", + -15.560446739196777 + ], + [ + "▁Raich", + -15.56048583984375 + ], + [ + "▁energising", + -15.560490608215332 + ], + [ + "▁bactericidal", + -15.560494422912598 + ], + [ + "▁Ouachita", + -15.560564994812012 + ], + [ + "dazzle", + -15.560578346252441 + ], + [ + "▁Peacemaker", + -15.560586929321289 + ], + [ + "▁Oshi", + -15.560592651367188 + ], + [ + "▁Anselmo", + -15.560601234436035 + ], + [ + "▁phagocytosis", + -15.560611724853516 + ], + [ + "▁Socorro", + -15.560612678527832 + ], + [ + "▁Arron", + -15.560622215270996 + ], + [ + "▁Haftar", + -15.560660362243652 + ], + [ + "gothic", + -15.560667037963867 + ], + [ + "cooperation", + -15.560712814331055 + ], + [ + "Diary", + -15.560717582702637 + ], + [ + "▁Chavan", + -15.56071949005127 + ], + [ + "utler", + -15.560742378234863 + ], + [ + "▁Multimodal", + -15.560790061950684 + ], + [ + "▁Greenock", + -15.560794830322266 + ], + [ + "Liam", + -15.560802459716797 + ], + [ + "▁MEAT", + -15.560836791992188 + ], + [ + "▁Hopkinton", + -15.560892105102539 + ], + [ + "▁Tübingen", + -15.560914993286133 + ], + [ + "▁Experimentation", + -15.560918807983398 + ], + [ + "▁Paraguayan", + -15.560975074768066 + ], + [ + "▁Panay", + -15.561104774475098 + ], + [ + "▁muffle", + -15.561112403869629 + ], + [ + "▁Sushil", + -15.561203956604004 + ], + [ + "▁Confrontation", + -15.561219215393066 + ], + [ + "▁acclimation", + -15.561219215393066 + ], + [ + "▁Ointment", + -15.56126594543457 + ], + [ + "▁slurping", + -15.561274528503418 + ], + [ + "suppressed", + -15.56128978729248 + ], + [ + "tropolis", + -15.561312675476074 + ], + [ + "▁lamentable", + -15.561379432678223 + ], + [ + "▁subcontracting", + -15.561394691467285 + ], + [ + "▁Daffy", + -15.561420440673828 + ], + [ + "▁Malema", + -15.561448097229004 + ], + [ + "▁TRIO", + -15.561556816101074 + ], + [ + "▁Fragen", + -15.5615873336792 + ], + [ + "▁ruminating", + -15.561591148376465 + ], + [ + "▁activi", + -15.561615943908691 + ], + [ + "▁Gianluca", + -15.56161880493164 + ], + [ + "▁Bourdieu", + -15.561713218688965 + ], + [ + "▁Ivorian", + -15.561745643615723 + ], + [ + "▁Magister", + -15.561752319335938 + ], + [ + "▁multiplicative", + -15.561779975891113 + ], + [ + "▁nelson", + -15.561827659606934 + ], + [ + "issuing", + -15.561842918395996 + ], + [ + "KOV", + -15.561846733093262 + ], + [ + "Π", + -15.561857223510742 + ], + [ + "▁Wilhelmina", + -15.561882019042969 + ], + [ + "▁garant", + -15.561885833740234 + ], + [ + "▁SAARC", + -15.561938285827637 + ], + [ + "▁BigCommerce", + -15.561964988708496 + ], + [ + "Diego", + -15.561970710754395 + ], + [ + "节", + -15.561995506286621 + ], + [ + "nuncio", + -15.56199836730957 + ], + [ + "▁FAW", + -15.56200122833252 + ], + [ + "▁DEVIL", + -15.56201457977295 + ], + [ + "▁Quasar", + -15.56203842163086 + ], + [ + "Jeffrey", + -15.562039375305176 + ], + [ + "▁CALLER", + -15.56208324432373 + ], + [ + "▁crèche", + -15.56210994720459 + ], + [ + "▁Shirk", + -15.562198638916016 + ], + [ + "▁heftier", + -15.562224388122559 + ], + [ + "▁Couches", + -15.562273025512695 + ], + [ + "▁Isiah", + -15.562285423278809 + ], + [ + "▁scampered", + -15.562294006347656 + ], + [ + "▁frigidaire", + -15.562294960021973 + ], + [ + "▁troponin", + -15.562317848205566 + ], + [ + "▁ALIEN", + -15.562335014343262 + ], + [ + "序", + -15.562372207641602 + ], + [ + "ARMA", + -15.56240463256836 + ], + [ + "▁APPOINTMENT", + -15.562411308288574 + ], + [ + "▁convulse", + -15.562411308288574 + ], + [ + "▁Captiva", + -15.562450408935547 + ], + [ + "▁ravage", + -15.562456130981445 + ], + [ + "▁Grinstead", + -15.562524795532227 + ], + [ + "▁MacNeil", + -15.56253433227539 + ], + [ + "▁Posen", + -15.562541961669922 + ], + [ + "▁Kombi", + -15.562570571899414 + ], + [ + "▁Dunleavy", + -15.562575340270996 + ], + [ + "▁Jayalalithaa", + -15.562575340270996 + ], + [ + "▁Horsepower", + -15.562637329101562 + ], + [ + "▁unshakeable", + -15.56264591217041 + ], + [ + "▁isoflavone", + -15.56266975402832 + ], + [ + "▁unobserved", + -15.562670707702637 + ], + [ + "▁Transfusion", + -15.562713623046875 + ], + [ + "bitten", + -15.562735557556152 + ], + [ + "phtho", + -15.562766075134277 + ], + [ + "▁Molino", + -15.562782287597656 + ], + [ + "▁Evaluator", + -15.562786102294922 + ], + [ + "▁Pentateuch", + -15.562786102294922 + ], + [ + "пор", + -15.562793731689453 + ], + [ + "▁stran", + -15.562825202941895 + ], + [ + "Administrator", + -15.562850952148438 + ], + [ + "▁unhappily", + -15.562864303588867 + ], + [ + "▁Headlamp", + -15.562935829162598 + ], + [ + "▁gooseberry", + -15.56300163269043 + ], + [ + "▁thromboembolism", + -15.563043594360352 + ], + [ + "▁Navarra", + -15.563054084777832 + ], + [ + "▁CRV", + -15.56307315826416 + ], + [ + "▁Echelon", + -15.563092231750488 + ], + [ + "▁Roughriders", + -15.563165664672852 + ], + [ + "▁Garcon", + -15.563185691833496 + ], + [ + "Driscoll", + -15.563217163085938 + ], + [ + "▁Edgbaston", + -15.563231468200684 + ], + [ + "▁ELECTRICAL", + -15.563307762145996 + ], + [ + "▁geochemistry", + -15.563339233398438 + ], + [ + "▁Spoelstra", + -15.563347816467285 + ], + [ + "Venice", + -15.56336498260498 + ], + [ + "trusive", + -15.563384056091309 + ], + [ + "▁Antibacterial", + -15.563389778137207 + ], + [ + "▁Bullish", + -15.563400268554688 + ], + [ + "▁Linnea", + -15.563408851623535 + ], + [ + "▁Hunterdon", + -15.563419342041016 + ], + [ + "▁Maryborough", + -15.563462257385254 + ], + [ + "▁REVENUE", + -15.563488960266113 + ], + [ + "▁Makan", + -15.563542366027832 + ], + [ + "▁également", + -15.563606262207031 + ], + [ + "▁uncompetitive", + -15.563623428344727 + ], + [ + "▁HMAS", + -15.563629150390625 + ], + [ + "ους", + -15.563641548156738 + ], + [ + "posterior", + -15.56364917755127 + ], + [ + "iqi", + -15.563706398010254 + ], + [ + "▁drizzly", + -15.563817024230957 + ], + [ + "COTT", + -15.563897132873535 + ], + [ + "▁Diaphragm", + -15.563910484313965 + ], + [ + "▁REGION", + -15.563926696777344 + ], + [ + "teaser", + -15.563996315002441 + ], + [ + "▁Capgemini", + -15.564003944396973 + ], + [ + "▁vestry", + -15.564024925231934 + ], + [ + "▁casin", + -15.564067840576172 + ], + [ + "CHANGE", + -15.56409740447998 + ], + [ + "▁DEGREE", + -15.564117431640625 + ], + [ + "▁IUPUI", + -15.564122200012207 + ], + [ + "▁Gün", + -15.564140319824219 + ], + [ + "▁unbleached", + -15.564154624938965 + ], + [ + "▁LOUISVILLE", + -15.564266204833984 + ], + [ + "▁REWARD", + -15.564315795898438 + ], + [ + "▁Broadview", + -15.564322471618652 + ], + [ + "▁Flaunt", + -15.564473152160645 + ], + [ + "▁Emmerich", + -15.564489364624023 + ], + [ + "lambda", + -15.564507484436035 + ], + [ + "利用", + -15.564552307128906 + ], + [ + "▁silkworm", + -15.564599990844727 + ], + [ + "ορ", + -15.564623832702637 + ], + [ + "▁número", + -15.564637184143066 + ], + [ + "▁Evra", + -15.564648628234863 + ], + [ + "limumab", + -15.564651489257812 + ], + [ + "unsaturated", + -15.56466293334961 + ], + [ + "▁Blech", + -15.564679145812988 + ], + [ + "▁mississippi", + -15.56468391418457 + ], + [ + "▁Henceforth", + -15.564722061157227 + ], + [ + "▁Massimiliano", + -15.56473159790039 + ], + [ + "▁Alawite", + -15.56473445892334 + ], + [ + "לי", + -15.564735412597656 + ], + [ + "cocktail", + -15.564764022827148 + ], + [ + "▁clindamycin", + -15.564778327941895 + ], + [ + "▁Gennaro", + -15.564803123474121 + ], + [ + "Lightning", + -15.5648193359375 + ], + [ + "بت", + -15.56482219696045 + ], + [ + "▁spinnaker", + -15.564825057983398 + ], + [ + "حت", + -15.564845085144043 + ], + [ + "agriculture", + -15.564872741699219 + ], + [ + "▁Anesth", + -15.564884185791016 + ], + [ + "▁florid", + -15.564921379089355 + ], + [ + "▁dispos", + -15.565000534057617 + ], + [ + "▁Radek", + -15.565031051635742 + ], + [ + "▁Fiasco", + -15.565045356750488 + ], + [ + "▁LLL", + -15.56509780883789 + ], + [ + "▁Pretender", + -15.565105438232422 + ], + [ + "▁RACING", + -15.565226554870605 + ], + [ + "▁Barksdale", + -15.565240859985352 + ], + [ + "▁interlayer", + -15.565305709838867 + ], + [ + "▁Pontiff", + -15.565311431884766 + ], + [ + "دار", + -15.565343856811523 + ], + [ + "▁Psychosocial", + -15.56535816192627 + ], + [ + "▁Gretsch", + -15.565364837646484 + ], + [ + "ASIA", + -15.565372467041016 + ], + [ + "▁Bouncing", + -15.565388679504395 + ], + [ + "▁Chrystia", + -15.565411567687988 + ], + [ + "▁bhakti", + -15.565508842468262 + ], + [ + "▁Sorcery", + -15.565552711486816 + ], + [ + "▁Prowler", + -15.565553665161133 + ], + [ + "готов", + -15.565601348876953 + ], + [ + "▁Vapour", + -15.565634727478027 + ], + [ + "▁Nirav", + -15.56564998626709 + ], + [ + "▁stanchion", + -15.565670013427734 + ], + [ + "demir", + -15.565671920776367 + ], + [ + "dtke", + -15.565671920776367 + ], + [ + "▁Trag", + -15.565735816955566 + ], + [ + "▁Rivalry", + -15.565738677978516 + ], + [ + "▁Brachy", + -15.5657958984375 + ], + [ + "▁Stiglitz", + -15.565813064575195 + ], + [ + "confused", + -15.565823554992676 + ], + [ + "▁Amplified", + -15.5658597946167 + ], + [ + "▁unpatriotic", + -15.565942764282227 + ], + [ + "▁hypodermic", + -15.565951347351074 + ], + [ + "bicycle", + -15.56598949432373 + ], + [ + "▁cosmetologist", + -15.566021919250488 + ], + [ + "▁bituminous", + -15.5660400390625 + ], + [ + "▁필요", + -15.566068649291992 + ], + [ + "▁Amesbury", + -15.566088676452637 + ], + [ + "morbidity", + -15.566113471984863 + ], + [ + "sustained", + -15.56612491607666 + ], + [ + "knob", + -15.566130638122559 + ], + [ + "rinse", + -15.566164016723633 + ], + [ + "▁Applause", + -15.566166877746582 + ], + [ + "sanitary", + -15.56620979309082 + ], + [ + "▁Decoding", + -15.566232681274414 + ], + [ + "▁Unbelievably", + -15.56623363494873 + ], + [ + "стан", + -15.56625747680664 + ], + [ + "▁entrails", + -15.5662841796875 + ], + [ + "▁Humayun", + -15.56630802154541 + ], + [ + "▁Heterogeneous", + -15.566397666931152 + ], + [ + "Cinderella", + -15.566431045532227 + ], + [ + "▁verging", + -15.566451072692871 + ], + [ + "urile", + -15.566507339477539 + ], + [ + "▁Salvo", + -15.566536903381348 + ], + [ + "carefully", + -15.566557884216309 + ], + [ + "Doctoral", + -15.566559791564941 + ], + [ + "▁eunuch", + -15.56656265258789 + ], + [ + "▁McKibben", + -15.566585540771484 + ], + [ + "▁COMMUNICATION", + -15.566636085510254 + ], + [ + "▁LaVar", + -15.56664752960205 + ], + [ + "▁курс", + -15.566648483276367 + ], + [ + "▁Walthamstow", + -15.566680908203125 + ], + [ + "▁Samarkand", + -15.566706657409668 + ], + [ + "▁PCSO", + -15.566731452941895 + ], + [ + "▁Gogol", + -15.566732406616211 + ], + [ + "▁RAJ", + -15.566751480102539 + ], + [ + "कार", + -15.566774368286133 + ], + [ + "▁Kriya", + -15.566803932189941 + ], + [ + "▁Boylan", + -15.566811561584473 + ], + [ + "▁SimCity", + -15.566844940185547 + ], + [ + "▁России", + -15.566844940185547 + ], + [ + "▁DMEM", + -15.566847801208496 + ], + [ + "Garage", + -15.566849708557129 + ], + [ + "▁÷", + -15.566922187805176 + ], + [ + "Employer", + -15.566948890686035 + ], + [ + "▁Boseman", + -15.566954612731934 + ], + [ + "▁centimetre", + -15.5669584274292 + ], + [ + "▁scowling", + -15.566960334777832 + ], + [ + "▁cctv", + -15.566963195800781 + ], + [ + "antibiotic", + -15.566980361938477 + ], + [ + "قة", + -15.567014694213867 + ], + [ + "ajah", + -15.56702709197998 + ], + [ + "▁Haldane", + -15.567055702209473 + ], + [ + "cyclist", + -15.56710433959961 + ], + [ + "eliminate", + -15.567132949829102 + ], + [ + "Swim", + -15.567166328430176 + ], + [ + "civic", + -15.567167282104492 + ], + [ + "▁Tandon", + -15.567172050476074 + ], + [ + "▁Fairhaven", + -15.567194938659668 + ], + [ + "▁mullahs", + -15.567238807678223 + ], + [ + "▁Feliciano", + -15.567256927490234 + ], + [ + "▁Dimmer", + -15.56731128692627 + ], + [ + "▁elderberry", + -15.56731128692627 + ], + [ + "具有", + -15.567320823669434 + ], + [ + "▁Fangio", + -15.567384719848633 + ], + [ + "▁Crou", + -15.567391395568848 + ], + [ + "▁foward", + -15.567456245422363 + ], + [ + "▁Fume", + -15.567472457885742 + ], + [ + "▁hillock", + -15.567505836486816 + ], + [ + "ARRI", + -15.567520141601562 + ], + [ + "▁capsid", + -15.567577362060547 + ], + [ + "curdling", + -15.567593574523926 + ], + [ + "enrolled", + -15.567646980285645 + ], + [ + "ργ", + -15.567646980285645 + ], + [ + "seizure", + -15.567654609680176 + ], + [ + "▁Proportional", + -15.567694664001465 + ], + [ + "▁Observational", + -15.567780494689941 + ], + [ + "▁RedHat", + -15.567800521850586 + ], + [ + "RAIL", + -15.567835807800293 + ], + [ + "▁Kubiak", + -15.567854881286621 + ], + [ + "▁Orillia", + -15.567856788635254 + ], + [ + "▁Establishes", + -15.567862510681152 + ], + [ + "▁COUPLE", + -15.567924499511719 + ], + [ + "▁schtick", + -15.56794548034668 + ], + [ + "unlawful", + -15.568031311035156 + ], + [ + "▁Draisaitl", + -15.56804370880127 + ], + [ + "alleged", + -15.568096160888672 + ], + [ + "▁Takeuchi", + -15.568140983581543 + ], + [ + "▁Dalam", + -15.56814956665039 + ], + [ + "HVAC", + -15.56816291809082 + ], + [ + "▁Softbank", + -15.568169593811035 + ], + [ + "achieved", + -15.568190574645996 + ], + [ + "▁Jetzt", + -15.568292617797852 + ], + [ + "▁vår", + -15.568316459655762 + ], + [ + "▁бесплатно", + -15.568326950073242 + ], + [ + "▁SciFi", + -15.568351745605469 + ], + [ + "▁Biryani", + -15.568357467651367 + ], + [ + "Spicy", + -15.568366050720215 + ], + [ + "▁Alfaro", + -15.56837272644043 + ], + [ + "▁฿", + -15.568411827087402 + ], + [ + "▁aloha", + -15.568425178527832 + ], + [ + "▁Balthazar", + -15.568446159362793 + ], + [ + "▁Sehr", + -15.568461418151855 + ], + [ + "▁eschatology", + -15.56846809387207 + ], + [ + "▁arkansas", + -15.568561553955078 + ], + [ + "▁Crofton", + -15.568562507629395 + ], + [ + "▁Intraday", + -15.568643569946289 + ], + [ + "▁Hartsfield", + -15.568647384643555 + ], + [ + "▁Раз", + -15.568704605102539 + ], + [ + "nightmare", + -15.568727493286133 + ], + [ + "▁hostgator", + -15.568731307983398 + ], + [ + "dihydro", + -15.56873893737793 + ], + [ + "▁Princip", + -15.568747520446777 + ], + [ + "▁ACHIEVE", + -15.568751335144043 + ], + [ + "▁thala", + -15.568756103515625 + ], + [ + "▁Molokai", + -15.568779945373535 + ], + [ + "▁Micra", + -15.568787574768066 + ], + [ + "▁Complementing", + -15.56882381439209 + ], + [ + "▁Vaso", + -15.568824768066406 + ], + [ + "▁Referencing", + -15.568852424621582 + ], + [ + "▁указания", + -15.568915367126465 + ], + [ + "Exploring", + -15.568921089172363 + ], + [ + "foreclosure", + -15.568926811218262 + ], + [ + "▁Bonnaroo", + -15.568943977355957 + ], + [ + "Banana", + -15.568977355957031 + ], + [ + "▁Kotor", + -15.568999290466309 + ], + [ + "▁Matheny", + -15.569023132324219 + ], + [ + "▁Irresistible", + -15.569032669067383 + ], + [ + "▁Bruch", + -15.569061279296875 + ], + [ + "▁Skewer", + -15.569072723388672 + ], + [ + "▁Steamship", + -15.569079399108887 + ], + [ + "▁MOTO", + -15.56909465789795 + ], + [ + "▁biogeochemical", + -15.569174766540527 + ], + [ + "▁blared", + -15.569194793701172 + ], + [ + "▁Faul", + -15.569197654724121 + ], + [ + "▁Brek", + -15.56921672821045 + ], + [ + "ций", + -15.569217681884766 + ], + [ + "▁flutist", + -15.56922435760498 + ], + [ + "Known", + -15.569229125976562 + ], + [ + "▁versch", + -15.569304466247559 + ], + [ + "iehl", + -15.569308280944824 + ], + [ + "▁decease", + -15.569344520568848 + ], + [ + "該", + -15.569377899169922 + ], + [ + "▁unfeasible", + -15.569417953491211 + ], + [ + "feminism", + -15.56944465637207 + ], + [ + "▁USMLE", + -15.56949520111084 + ], + [ + "▁jenny", + -15.569525718688965 + ], + [ + "jelly", + -15.569536209106445 + ], + [ + "NWR", + -15.569557189941406 + ], + [ + "▁Grigory", + -15.569622993469238 + ], + [ + "▁Kostenlos", + -15.569624900817871 + ], + [ + "λά", + -15.569664001464844 + ], + [ + "▁FREAK", + -15.569709777832031 + ], + [ + "poiesis", + -15.569710731506348 + ], + [ + "Trailer", + -15.56971549987793 + ], + [ + "▁Dangerfield", + -15.569734573364258 + ], + [ + "▁Ullah", + -15.56975269317627 + ], + [ + "▁Essar", + -15.569842338562012 + ], + [ + "▁Obra", + -15.569867134094238 + ], + [ + "▁Gobind", + -15.570022583007812 + ], + [ + "▁LaLiga", + -15.570022583007812 + ], + [ + "ಗ", + -15.57004451751709 + ], + [ + "itudinal", + -15.57005786895752 + ], + [ + "▁cowbell", + -15.570058822631836 + ], + [ + "POOL", + -15.570089340209961 + ], + [ + "▁calligrapher", + -15.570094108581543 + ], + [ + "▁Cascading", + -15.570103645324707 + ], + [ + "▁Famicom", + -15.570137977600098 + ], + [ + "Palmer", + -15.570160865783691 + ], + [ + "▁Klinger", + -15.57016658782959 + ], + [ + "▁Marisol", + -15.570181846618652 + ], + [ + "observed", + -15.570182800292969 + ], + [ + "▁работа", + -15.570183753967285 + ], + [ + "▁Giglio", + -15.570192337036133 + ], + [ + "▁ndrysh", + -15.570197105407715 + ], + [ + "grunt", + -15.570222854614258 + ], + [ + "lightning", + -15.570223808288574 + ], + [ + "▁Niguel", + -15.570241928100586 + ], + [ + "▁Ismaili", + -15.570271492004395 + ], + [ + "▁Hydrolyzed", + -15.570314407348633 + ], + [ + "▁Interlock", + -15.570387840270996 + ], + [ + "Derek", + -15.57041072845459 + ], + [ + "Mcf", + -15.570413589477539 + ], + [ + "Xtreme", + -15.570417404174805 + ], + [ + "▁EDMONTON", + -15.57042407989502 + ], + [ + "▁zookeeper", + -15.57043170928955 + ], + [ + "▁HISTORIC", + -15.570450782775879 + ], + [ + "▁illumine", + -15.570454597473145 + ], + [ + "▁concatenated", + -15.570481300354004 + ], + [ + "▁Bogut", + -15.570490837097168 + ], + [ + "focussed", + -15.570505142211914 + ], + [ + "▁bandaid", + -15.570533752441406 + ], + [ + "▁hackneyed", + -15.570589065551758 + ], + [ + "▁WGBH", + -15.570599555969238 + ], + [ + "▁Turbocharged", + -15.570611953735352 + ], + [ + "▁defilement", + -15.570627212524414 + ], + [ + "NCAA", + -15.570652961730957 + ], + [ + "inclined", + -15.570656776428223 + ], + [ + "▁italicized", + -15.570663452148438 + ], + [ + "صل", + -15.570664405822754 + ], + [ + "alope", + -15.570686340332031 + ], + [ + "▁Sinbad", + -15.570751190185547 + ], + [ + "▁retaliating", + -15.570754051208496 + ], + [ + "▁reconstitute", + -15.570764541625977 + ], + [ + "▁SOMA", + -15.570779800415039 + ], + [ + "▁Chock", + -15.570818901062012 + ], + [ + "▁Rosalyn", + -15.570818901062012 + ], + [ + "▁Wellbutrin", + -15.57082462310791 + ], + [ + "▁Baahubali", + -15.57084846496582 + ], + [ + "▁Europol", + -15.570865631103516 + ], + [ + "▁wiggly", + -15.570884704589844 + ], + [ + "▁Fader", + -15.570893287658691 + ], + [ + "▁Polska", + -15.570907592773438 + ], + [ + "Brass", + -15.570911407470703 + ], + [ + "MCU", + -15.570981979370117 + ], + [ + "▁detainer", + -15.571025848388672 + ], + [ + "▁gjitha", + -15.571057319641113 + ], + [ + "▁Palomino", + -15.571061134338379 + ], + [ + "▁VISUAL", + -15.571064949035645 + ], + [ + "▁DISCUSSION", + -15.571080207824707 + ], + [ + "▁Éireann", + -15.571084976196289 + ], + [ + "▁Spry", + -15.571138381958008 + ], + [ + "▁dilator", + -15.571138381958008 + ], + [ + "▁WSF", + -15.571145057678223 + ], + [ + "oudou", + -15.571221351623535 + ], + [ + "▁Rekha", + -15.5712308883667 + ], + [ + "▁squiggle", + -15.57127571105957 + ], + [ + "amyloid", + -15.57131290435791 + ], + [ + "▁stratagem", + -15.571332931518555 + ], + [ + "▁quadriplegic", + -15.571368217468262 + ], + [ + "▁transvestite", + -15.571414947509766 + ], + [ + "zicht", + -15.571420669555664 + ], + [ + "odorus", + -15.571477890014648 + ], + [ + "▁MYSELF", + -15.57150936126709 + ], + [ + "▁BUDGET", + -15.571535110473633 + ], + [ + "▁Gunpowder", + -15.571535110473633 + ], + [ + "▁Betway", + -15.571585655212402 + ], + [ + "Westphalia", + -15.571593284606934 + ], + [ + "▁chelation", + -15.571593284606934 + ], + [ + "Negative", + -15.571614265441895 + ], + [ + "▁spil", + -15.571616172790527 + ], + [ + "▁Saakashvili", + -15.571627616882324 + ], + [ + "▁SHG", + -15.57164192199707 + ], + [ + "▁Kaushik", + -15.571654319763184 + ], + [ + "▁genu", + -15.5716552734375 + ], + [ + "▁desorption", + -15.571660995483398 + ], + [ + "panies", + -15.571701049804688 + ], + [ + "ана", + -15.571760177612305 + ], + [ + "▁vlogging", + -15.571778297424316 + ], + [ + "▁STRING", + -15.571786880493164 + ], + [ + "▁snowmelt", + -15.571806907653809 + ], + [ + "entities", + -15.571829795837402 + ], + [ + "▁camry", + -15.571840286254883 + ], + [ + "imenti", + -15.571876525878906 + ], + [ + "▁autocracy", + -15.571892738342285 + ], + [ + "ivier", + -15.571897506713867 + ], + [ + "適", + -15.57190227508545 + ], + [ + "▁nacelle", + -15.571914672851562 + ], + [ + "▁WSW", + -15.571920394897461 + ], + [ + "harvesting", + -15.571948051452637 + ], + [ + "Fancy", + -15.571959495544434 + ], + [ + "時間", + -15.572080612182617 + ], + [ + "▁Mikayla", + -15.572092056274414 + ], + [ + "steep", + -15.572105407714844 + ], + [ + "Azure", + -15.572127342224121 + ], + [ + "▁Moleskine", + -15.572147369384766 + ], + [ + "▁Thrombo", + -15.572149276733398 + ], + [ + "▁Frequencies", + -15.572195053100586 + ], + [ + "▁Nanette", + -15.572235107421875 + ], + [ + "▁Barkov", + -15.572237014770508 + ], + [ + "▁Videographer", + -15.572248458862305 + ], + [ + "▁Sarna", + -15.572261810302734 + ], + [ + "▁heedless", + -15.572305679321289 + ], + [ + "▁bratwurst", + -15.57231330871582 + ], + [ + "▁usurpation", + -15.57231616973877 + ], + [ + "▁LUNCH", + -15.572325706481934 + ], + [ + "▁Destructive", + -15.572348594665527 + ], + [ + "▁McAn", + -15.572419166564941 + ], + [ + "▁Strathcona", + -15.572456359863281 + ], + [ + "▁Greif", + -15.572457313537598 + ], + [ + "▁gondii", + -15.57245922088623 + ], + [ + "▁dramedy", + -15.572502136230469 + ], + [ + "▁Nimitz", + -15.572526931762695 + ], + [ + "▁Theravada", + -15.572575569152832 + ], + [ + "▁Unicef", + -15.572580337524414 + ], + [ + "▁Lanvin", + -15.572663307189941 + ], + [ + "▁Unboxing", + -15.572691917419434 + ], + [ + "▁coagulate", + -15.572694778442383 + ], + [ + "▁creaked", + -15.572696685791016 + ], + [ + "▁louvre", + -15.572782516479492 + ], + [ + "▁NCLB", + -15.5728178024292 + ], + [ + "▁Perpetu", + -15.572827339172363 + ], + [ + "mystify", + -15.57282829284668 + ], + [ + "▁pickaxe", + -15.572847366333008 + ], + [ + "▁Untuk", + -15.572869300842285 + ], + [ + "▁phosphodiesterase", + -15.572927474975586 + ], + [ + "▁Shinkansen", + -15.572951316833496 + ], + [ + "▁parametr", + -15.572954177856445 + ], + [ + "▁intercellular", + -15.572977066040039 + ], + [ + "▁Collison", + -15.573103904724121 + ], + [ + "▁Exploding", + -15.573140144348145 + ], + [ + "▁SIBO", + -15.573153495788574 + ], + [ + "▁Englisch", + -15.57319450378418 + ], + [ + "▁Horsley", + -15.573204040527344 + ], + [ + "▁wakeboarding", + -15.573211669921875 + ], + [ + "▁pallbearers", + -15.573236465454102 + ], + [ + "utilization", + -15.57339096069336 + ], + [ + "lazi", + -15.573479652404785 + ], + [ + "ERIE", + -15.573539733886719 + ], + [ + "warrant", + -15.57355785369873 + ], + [ + "▁EXPLORE", + -15.573558807373047 + ], + [ + "Bulletin", + -15.573559761047363 + ], + [ + "łe", + -15.573563575744629 + ], + [ + "▁Shulkin", + -15.573573112487793 + ], + [ + "▁HINT", + -15.573587417602539 + ], + [ + "deserve", + -15.573601722717285 + ], + [ + "▁Klonopin", + -15.573613166809082 + ], + [ + "Transformers", + -15.573620796203613 + ], + [ + "▁Theosophical", + -15.573637962341309 + ], + [ + "▁Batali", + -15.573678970336914 + ], + [ + "▁Shoaib", + -15.573685646057129 + ], + [ + "▁Rondon", + -15.573759078979492 + ], + [ + "▁gargle", + -15.573772430419922 + ], + [ + "▁heterodimer", + -15.573803901672363 + ], + [ + "▁Parchment", + -15.573826789855957 + ], + [ + "rickshaw", + -15.57383918762207 + ], + [ + "▁correlative", + -15.573897361755371 + ], + [ + "▁Showbiz", + -15.573901176452637 + ], + [ + "▁Krzyzewski", + -15.573921203613281 + ], + [ + "▁Headliner", + -15.573927879333496 + ], + [ + "udine", + -15.573945045471191 + ], + [ + "▁Kyaw", + -15.573986053466797 + ], + [ + "▁CZK", + -15.574016571044922 + ], + [ + "▁Xenopus", + -15.574023246765137 + ], + [ + "▁Cardano", + -15.574052810668945 + ], + [ + "frontier", + -15.574074745178223 + ], + [ + "▁Stackhouse", + -15.574151992797852 + ], + [ + "▁Papier", + -15.5741605758667 + ], + [ + "▁Davila", + -15.574185371398926 + ], + [ + "Firefox", + -15.574195861816406 + ], + [ + "▁SHIRT", + -15.574304580688477 + ], + [ + "Crawl", + -15.574346542358398 + ], + [ + "editorial", + -15.574355125427246 + ], + [ + "▁Hajime", + -15.574371337890625 + ], + [ + "▁fluorite", + -15.57439136505127 + ], + [ + "▁Numismatic", + -15.574395179748535 + ], + [ + "▁becasue", + -15.574396133422852 + ], + [ + "▁Albino", + -15.574424743652344 + ], + [ + "▁sandstorm", + -15.574430465698242 + ], + [ + "▁Unzip", + -15.574493408203125 + ], + [ + "▁pharyngeal", + -15.574508666992188 + ], + [ + "▁Annecy", + -15.574530601501465 + ], + [ + "▁FIVB", + -15.574646949768066 + ], + [ + "▁nucleosome", + -15.574654579162598 + ], + [ + "店", + -15.574687004089355 + ], + [ + "▁sensorimotor", + -15.574703216552734 + ], + [ + "▁DfE", + -15.574721336364746 + ], + [ + "▁contrive", + -15.574725151062012 + ], + [ + "▁BABA", + -15.574748992919922 + ], + [ + "પ", + -15.574797630310059 + ], + [ + "▁Bandhan", + -15.574804306030273 + ], + [ + "susceptible", + -15.574809074401855 + ], + [ + "▁Mohsen", + -15.574820518493652 + ], + [ + "▁iconoclastic", + -15.57486343383789 + ], + [ + "▁whittling", + -15.574873924255371 + ], + [ + "▁goalposts", + -15.574878692626953 + ], + [ + "▁profundity", + -15.574898719787598 + ], + [ + "▁reprocessed", + -15.574898719787598 + ], + [ + "▁Niue", + -15.57491397857666 + ], + [ + "▁exhilarated", + -15.574915885925293 + ], + [ + "PARK", + -15.574938774108887 + ], + [ + "▁Multiculturalism", + -15.574939727783203 + ], + [ + "congruent", + -15.574953079223633 + ], + [ + "▁Bonilla", + -15.574953079223633 + ], + [ + "Carmen", + -15.574995040893555 + ], + [ + "▁Featherweight", + -15.575079917907715 + ], + [ + "▁Uncovering", + -15.575092315673828 + ], + [ + "Submission", + -15.575142860412598 + ], + [ + "▁Brunello", + -15.575162887573242 + ], + [ + "HMC", + -15.575182914733887 + ], + [ + "GOV", + -15.575201034545898 + ], + [ + "buki", + -15.575211524963379 + ], + [ + "PBX", + -15.57522964477539 + ], + [ + "▁Persecution", + -15.575271606445312 + ], + [ + "whack", + -15.575278282165527 + ], + [ + "▁Morrill", + -15.575284004211426 + ], + [ + "िया", + -15.575335502624512 + ], + [ + "▁Shakhtar", + -15.575366020202637 + ], + [ + "staple", + -15.575409889221191 + ], + [ + "▁Acuna", + -15.575427055358887 + ], + [ + "▁što", + -15.575441360473633 + ], + [ + "anchored", + -15.5756196975708 + ], + [ + "▁turbid", + -15.575682640075684 + ], + [ + "▁SourceForge", + -15.575684547424316 + ], + [ + "▁Boudoir", + -15.575691223144531 + ], + [ + "▁TGIF", + -15.575709342956543 + ], + [ + "▁Pavelski", + -15.57574462890625 + ], + [ + "▁kru", + -15.575790405273438 + ], + [ + "ouverture", + -15.575872421264648 + ], + [ + "Depot", + -15.575922966003418 + ], + [ + "▁mientras", + -15.575935363769531 + ], + [ + "▁Lochte", + -15.575987815856934 + ], + [ + "▁Assertion", + -15.575992584228516 + ], + [ + "breach", + -15.576061248779297 + ], + [ + "LDP", + -15.576064109802246 + ], + [ + "▁alexander", + -15.57607364654541 + ], + [ + "▁Stephanopoulos", + -15.5761137008667 + ], + [ + "▁deactivating", + -15.576170921325684 + ], + [ + "▁gyno", + -15.576211929321289 + ], + [ + "∑", + -15.576220512390137 + ], + [ + "▁McGinley", + -15.576220512390137 + ], + [ + "plaza", + -15.576225280761719 + ], + [ + "▁Rostock", + -15.576225280761719 + ], + [ + "▁conflating", + -15.576248168945312 + ], + [ + "аться", + -15.576262474060059 + ], + [ + "nicotin", + -15.576269149780273 + ], + [ + "▁các", + -15.576271057128906 + ], + [ + "▁bërë", + -15.5762939453125 + ], + [ + "▁Rhinoplasty", + -15.576295852661133 + ], + [ + "overlapping", + -15.576335906982422 + ], + [ + "▁coauthored", + -15.57634162902832 + ], + [ + "▁مت", + -15.57640552520752 + ], + [ + "Certification", + -15.576412200927734 + ], + [ + "▁Aoife", + -15.576412200927734 + ], + [ + "▁Illicit", + -15.576416969299316 + ], + [ + "▁utilitarianism", + -15.576436996459961 + ], + [ + "▁Globus", + -15.576451301574707 + ], + [ + "▁logjam", + -15.5764799118042 + ], + [ + "fertility", + -15.576517105102539 + ], + [ + "▁Sontag", + -15.576544761657715 + ], + [ + "▁Plenum", + -15.576581001281738 + ], + [ + "▁mkv", + -15.576640129089355 + ], + [ + "stimmt", + -15.576666831970215 + ], + [ + "disguised", + -15.576680183410645 + ], + [ + "▁Embassies", + -15.57669448852539 + ], + [ + "▁pollinating", + -15.57672119140625 + ], + [ + "culturist", + -15.576735496520996 + ], + [ + "▁Keuchel", + -15.576742172241211 + ], + [ + "SEVEN", + -15.576759338378906 + ], + [ + "▁Antonov", + -15.576797485351562 + ], + [ + "▁RICK", + -15.576807022094727 + ], + [ + "penalty", + -15.576830863952637 + ], + [ + "ər", + -15.576836585998535 + ], + [ + "▁Salafist", + -15.57684326171875 + ], + [ + "prudential", + -15.576855659484863 + ], + [ + "▁Astrological", + -15.576908111572266 + ], + [ + "Lucia", + -15.576933860778809 + ], + [ + "سب", + -15.576958656311035 + ], + [ + "▁Dybala", + -15.5769624710083 + ], + [ + "▁Théâtre", + -15.577003479003906 + ], + [ + "▁enslaving", + -15.577098846435547 + ], + [ + "▁impracticable", + -15.577098846435547 + ], + [ + "▁Skirmish", + -15.577146530151367 + ], + [ + "Deposit", + -15.577155113220215 + ], + [ + "Francisco", + -15.577187538146973 + ], + [ + "maple", + -15.577288627624512 + ], + [ + "▁INACCURACIES", + -15.577312469482422 + ], + [ + "respectively", + -15.577351570129395 + ], + [ + "▁Neutrino", + -15.577383041381836 + ], + [ + "Incident", + -15.577401161193848 + ], + [ + "▁RESORT", + -15.577410697937012 + ], + [ + "▁diffrent", + -15.577420234680176 + ], + [ + "▁profligate", + -15.577454566955566 + ], + [ + "▁risqué", + -15.577458381652832 + ], + [ + "▁OPERA", + -15.577479362487793 + ], + [ + "duplication", + -15.577502250671387 + ], + [ + "▁INSTRUMENT", + -15.577526092529297 + ], + [ + "▁Fulcrum", + -15.57752799987793 + ], + [ + "▁Crossbow", + -15.577528953552246 + ], + [ + "▁Wombat", + -15.577613830566406 + ], + [ + "▁MAME", + -15.57762336730957 + ], + [ + "▁rehearing", + -15.577630996704102 + ], + [ + "lapper", + -15.57763957977295 + ], + [ + "▁пу", + -15.577699661254883 + ], + [ + "▁Kairos", + -15.577707290649414 + ], + [ + "▁Consecutive", + -15.577739715576172 + ], + [ + "Delicious", + -15.577770233154297 + ], + [ + "▁Libertad", + -15.57778263092041 + ], + [ + "▁Ainslie", + -15.577788352966309 + ], + [ + "▁quadrangle", + -15.577811241149902 + ], + [ + "▁neph", + -15.577825546264648 + ], + [ + "▁mpeg", + -15.577871322631836 + ], + [ + "▁Barthes", + -15.577885627746582 + ], + [ + "▁IGNOU", + -15.578015327453613 + ], + [ + "stimulant", + -15.578042984008789 + ], + [ + "▁Lavelle", + -15.5780668258667 + ], + [ + "治", + -15.578071594238281 + ], + [ + "▁Neufeld", + -15.578084945678711 + ], + [ + "namespace", + -15.57816219329834 + ], + [ + "▁smokestack", + -15.57820987701416 + ], + [ + "▁Dykstra", + -15.578215599060059 + ], + [ + "▁anodised", + -15.578217506408691 + ], + [ + "▁SILK", + -15.578230857849121 + ], + [ + "▁sublease", + -15.578266143798828 + ], + [ + "Vital", + -15.5783052444458 + ], + [ + "fessional", + -15.578330993652344 + ], + [ + "▁Klebsiella", + -15.578429222106934 + ], + [ + "▁Goggle", + -15.578452110290527 + ], + [ + "▁Magnificat", + -15.578474998474121 + ], + [ + "▁Huarache", + -15.57848072052002 + ], + [ + "▁Bakshi", + -15.57848834991455 + ], + [ + "▁Wimpy", + -15.578506469726562 + ], + [ + "▁Frieze", + -15.578523635864258 + ], + [ + "▁Nyack", + -15.578556060791016 + ], + [ + "▁larch", + -15.578564643859863 + ], + [ + "▁Cyberpunk", + -15.578655242919922 + ], + [ + "▁Île", + -15.578689575195312 + ], + [ + "▁∆", + -15.57871150970459 + ], + [ + "▁Cousteau", + -15.578714370727539 + ], + [ + "▁Ramadi", + -15.578714370727539 + ], + [ + "▁Cmd", + -15.578729629516602 + ], + [ + "▁unvarnished", + -15.57873821258545 + ], + [ + "▁Sandvik", + -15.578869819641113 + ], + [ + "▁goofball", + -15.57892894744873 + ], + [ + "▁bowsette", + -15.578935623168945 + ], + [ + "entitled", + -15.578963279724121 + ], + [ + "oxidative", + -15.578974723815918 + ], + [ + "▁tactfully", + -15.57897663116455 + ], + [ + "▁Morello", + -15.578977584838867 + ], + [ + "▁Wachovia", + -15.5789794921875 + ], + [ + "▁Aquifer", + -15.579002380371094 + ], + [ + "olfi", + -15.579020500183105 + ], + [ + "좋", + -15.579023361206055 + ], + [ + "▁pathogenicity", + -15.579051971435547 + ], + [ + "phosphorylation", + -15.579055786132812 + ], + [ + "▁Cardona", + -15.579132080078125 + ], + [ + "▁penalise", + -15.57913875579834 + ], + [ + "decorative", + -15.579144477844238 + ], + [ + "lauren", + -15.579154968261719 + ], + [ + "▁Flywheel", + -15.5791654586792 + ], + [ + "▁unpredictably", + -15.579166412353516 + ], + [ + "▁Investec", + -15.579273223876953 + ], + [ + "▁submachine", + -15.579276084899902 + ], + [ + "▁Kinsler", + -15.5792818069458 + ], + [ + "▁Otsego", + -15.579333305358887 + ], + [ + "ilene", + -15.579399108886719 + ], + [ + "▁Lodz", + -15.579435348510742 + ], + [ + "▁Democracies", + -15.579452514648438 + ], + [ + "utah", + -15.579537391662598 + ], + [ + "▁STEERING", + -15.579572677612305 + ], + [ + "ают", + -15.579617500305176 + ], + [ + "Remain", + -15.579623222351074 + ], + [ + "tackle", + -15.579647064208984 + ], + [ + "▁sehen", + -15.57965087890625 + ], + [ + "babble", + -15.57966136932373 + ], + [ + "▁Theologian", + -15.579689979553223 + ], + [ + "▁rupiah", + -15.579689979553223 + ], + [ + "▁coveralls", + -15.579690933227539 + ], + [ + "▁Stauffer", + -15.579727172851562 + ], + [ + "nitrogen", + -15.579765319824219 + ], + [ + "▁Mikkelsen", + -15.57983112335205 + ], + [ + "▁Ponca", + -15.579873085021973 + ], + [ + "▁Alpena", + -15.579933166503906 + ], + [ + "▁Mistletoe", + -15.579952239990234 + ], + [ + "▁Xhaka", + -15.579995155334473 + ], + [ + "▁encamped", + -15.579999923706055 + ], + [ + "▁Tuareg", + -15.58000659942627 + ], + [ + "▁Cariboo", + -15.58003044128418 + ], + [ + "▁bauble", + -15.58003044128418 + ], + [ + "▁Nautica", + -15.580036163330078 + ], + [ + "▁Julep", + -15.58005428314209 + ], + [ + "▁Safar", + -15.580065727233887 + ], + [ + "▁RUSSIA", + -15.580083847045898 + ], + [ + "смотр", + -15.58010196685791 + ], + [ + "flickr", + -15.580151557922363 + ], + [ + "▁Katara", + -15.580155372619629 + ], + [ + "aumont", + -15.580174446105957 + ], + [ + "▁Qinghai", + -15.58019733428955 + ], + [ + "▁Farragut", + -15.580214500427246 + ], + [ + "▁Bhagavan", + -15.580222129821777 + ], + [ + "▁Pedroia", + -15.580257415771484 + ], + [ + "▁uproarious", + -15.580265998840332 + ], + [ + "methylated", + -15.58028793334961 + ], + [ + "▁sensationalist", + -15.580312728881836 + ], + [ + "▁veces", + -15.580323219299316 + ], + [ + "strengthen", + -15.580376625061035 + ], + [ + "WHITE", + -15.580409049987793 + ], + [ + "▁absurdist", + -15.580472946166992 + ], + [ + "Dunn", + -15.580574035644531 + ], + [ + "▁twitches", + -15.580578804016113 + ], + [ + "▁Snoring", + -15.58059310913086 + ], + [ + "▁valacyclovir", + -15.580620765686035 + ], + [ + "widow", + -15.580644607543945 + ], + [ + "Experimental", + -15.580650329589844 + ], + [ + "병", + -15.58069133758545 + ], + [ + "activator", + -15.58070182800293 + ], + [ + "▁cannoli", + -15.580758094787598 + ], + [ + "▁dispersant", + -15.580810546875 + ], + [ + "latte", + -15.580836296081543 + ], + [ + "▁unfunny", + -15.58087158203125 + ], + [ + "ędz", + -15.58088493347168 + ], + [ + "goodbye", + -15.580889701843262 + ], + [ + "satisfying", + -15.58089542388916 + ], + [ + "▁Kinz", + -15.580910682678223 + ], + [ + "▁Adolphus", + -15.580924034118652 + ], + [ + "▁illusionist", + -15.580938339233398 + ], + [ + "ichte", + -15.580976486206055 + ], + [ + "MILL", + -15.581032752990723 + ], + [ + "▁possib", + -15.58105754852295 + ], + [ + "▁Termini", + -15.581061363220215 + ], + [ + "ност", + -15.581116676330566 + ], + [ + "技术", + -15.581148147583008 + ], + [ + "MOBILE", + -15.581226348876953 + ], + [ + "▁DEFINITION", + -15.581238746643066 + ], + [ + "▁Ingenious", + -15.581287384033203 + ], + [ + "▁Jale", + -15.58130931854248 + ], + [ + "▁Pedicure", + -15.581317901611328 + ], + [ + "▁EITC", + -15.581347465515137 + ], + [ + "န", + -15.581382751464844 + ], + [ + "▁Riboflavin", + -15.581382751464844 + ], + [ + "▁Weingarten", + -15.581406593322754 + ], + [ + "▁Tolbert", + -15.581428527832031 + ], + [ + "Mapper", + -15.581555366516113 + ], + [ + "▁Recognised", + -15.58159065246582 + ], + [ + "▁mutating", + -15.58159351348877 + ], + [ + "april", + -15.581594467163086 + ], + [ + "רו", + -15.581610679626465 + ], + [ + "▁triumvirate", + -15.581621170043945 + ], + [ + "▁AUDIT", + -15.581636428833008 + ], + [ + "▁Shamanic", + -15.581645011901855 + ], + [ + "▁Meunier", + -15.581645965576172 + ], + [ + "FALL", + -15.581647872924805 + ], + [ + "amenti", + -15.58165168762207 + ], + [ + "arbeiten", + -15.581659317016602 + ], + [ + "▁dropshipping", + -15.581704139709473 + ], + [ + "▁sublimated", + -15.581711769104004 + ], + [ + "▁Lyla", + -15.581732749938965 + ], + [ + "▁Mesmer", + -15.581734657287598 + ], + [ + "▁sucess", + -15.581744194030762 + ], + [ + "▁improbably", + -15.581753730773926 + ], + [ + "▁mechatronic", + -15.58178997039795 + ], + [ + "▁hyperspace", + -15.581807136535645 + ], + [ + "petrol", + -15.581888198852539 + ], + [ + "Certain", + -15.581907272338867 + ], + [ + "▁thumbprint", + -15.581930160522461 + ], + [ + "▁Kaffe", + -15.581965446472168 + ], + [ + "▁Misdemeanor", + -15.582002639770508 + ], + [ + "角", + -15.582002639770508 + ], + [ + "▁Uncheck", + -15.582005500793457 + ], + [ + "▁DESIGNED", + -15.582054138183594 + ], + [ + "▁nutcracker", + -15.582063674926758 + ], + [ + "▁kommer", + -15.582091331481934 + ], + [ + "ziehung", + -15.582098007202148 + ], + [ + "▁LUCI", + -15.58210277557373 + ], + [ + "▁gestion", + -15.58215045928955 + ], + [ + "friday", + -15.582159996032715 + ], + [ + "▁양", + -15.58216667175293 + ], + [ + "▁하나", + -15.582219123840332 + ], + [ + "physeal", + -15.582223892211914 + ], + [ + "▁Ghaz", + -15.582226753234863 + ], + [ + "notebook", + -15.582260131835938 + ], + [ + "▁Gershon", + -15.582273483276367 + ], + [ + "▁Khorasan", + -15.582292556762695 + ], + [ + "spectacular", + -15.582310676574707 + ], + [ + "río", + -15.582389831542969 + ], + [ + "▁positivism", + -15.582395553588867 + ], + [ + "▁Elyria", + -15.582442283630371 + ], + [ + "▁Jeroboam", + -15.582456588745117 + ], + [ + "▁NBCSN", + -15.582515716552734 + ], + [ + "▁Sorbet", + -15.58251667022705 + ], + [ + "▁frankness", + -15.58254623413086 + ], + [ + "▁Rampart", + -15.582597732543945 + ], + [ + "▁CalPERS", + -15.582606315612793 + ], + [ + "КА", + -15.582634925842285 + ], + [ + "▁anaesthetist", + -15.582647323608398 + ], + [ + "▁Chho", + -15.582741737365723 + ], + [ + "▁membranous", + -15.58276653289795 + ], + [ + "▁không", + -15.582792282104492 + ], + [ + "▁ARTHUR", + -15.582816123962402 + ], + [ + "▁Valera", + -15.582817077636719 + ], + [ + "▁forgivable", + -15.582840919494629 + ], + [ + "▁Whopper", + -15.582853317260742 + ], + [ + "▁Dunstable", + -15.582870483398438 + ], + [ + "oregon", + -15.582902908325195 + ], + [ + "▁Stenhouse", + -15.582919120788574 + ], + [ + "dailycallernewsfoundation", + -15.58293342590332 + ], + [ + "▁Baffert", + -15.582935333251953 + ], + [ + "▁Brightening", + -15.582955360412598 + ], + [ + "▁IIHF", + -15.582995414733887 + ], + [ + "晶", + -15.583013534545898 + ], + [ + "▁Fujiwara", + -15.583049774169922 + ], + [ + "▁Minnow", + -15.58305549621582 + ], + [ + "▁dunn", + -15.583057403564453 + ], + [ + "▁Slogan", + -15.583088874816895 + ], + [ + "▁Enlighten", + -15.583099365234375 + ], + [ + "▁paracord", + -15.583171844482422 + ], + [ + "▁Magnussen", + -15.583205223083496 + ], + [ + "Invent", + -15.583208084106445 + ], + [ + "▁Kriti", + -15.583271980285645 + ], + [ + "▁luego", + -15.583272933959961 + ], + [ + "▁Osteen", + -15.58327865600586 + ], + [ + "Existing", + -15.583345413208008 + ], + [ + "▁enunciated", + -15.583365440368652 + ], + [ + "▁egalitarianism", + -15.583370208740234 + ], + [ + "▁Burlap", + -15.583377838134766 + ], + [ + "▁Fawad", + -15.583378791809082 + ], + [ + "▁BRICK", + -15.583380699157715 + ], + [ + "▁OFFICER", + -15.583395957946777 + ], + [ + "▁Skylake", + -15.583415031433105 + ], + [ + "▁tomahawk", + -15.583434104919434 + ], + [ + "sweeping", + -15.583468437194824 + ], + [ + "▁canonization", + -15.583517074584961 + ], + [ + "▁reddened", + -15.583535194396973 + ], + [ + "Formerly", + -15.583538055419922 + ], + [ + "mysterious", + -15.583553314208984 + ], + [ + "▁Ellyn", + -15.583596229553223 + ], + [ + "▁Tarkovsky", + -15.583718299865723 + ], + [ + "▁REVOLUTION", + -15.583722114562988 + ], + [ + "▁XFINITY", + -15.583722114562988 + ], + [ + "Occupy", + -15.583738327026367 + ], + [ + "Acoustic", + -15.583765029907227 + ], + [ + "announce", + -15.583817481994629 + ], + [ + "▁Generosity", + -15.583818435668945 + ], + [ + "▁région", + -15.583824157714844 + ], + [ + "▁Hepatic", + -15.5838623046875 + ], + [ + "▁Florio", + -15.583888053894043 + ], + [ + "okoro", + -15.583975791931152 + ], + [ + "saheb", + -15.584044456481934 + ], + [ + "▁Aortic", + -15.5840482711792 + ], + [ + "chorus", + -15.584059715270996 + ], + [ + "▁Gansu", + -15.584080696105957 + ], + [ + "▁pegboard", + -15.584081649780273 + ], + [ + "▁Tukey", + -15.58410930633545 + ], + [ + "arret", + -15.584135055541992 + ], + [ + "▁Parham", + -15.584184646606445 + ], + [ + "▁AVAILABILITY", + -15.584200859069824 + ], + [ + "kendall", + -15.584202766418457 + ], + [ + "▁Varley", + -15.58425235748291 + ], + [ + "relational", + -15.584257125854492 + ], + [ + "Beverly", + -15.584264755249023 + ], + [ + "▁THOUSANDS", + -15.584280014038086 + ], + [ + "▁Alabaster", + -15.584311485290527 + ], + [ + "▁exclusiv", + -15.58432388305664 + ], + [ + "Initially", + -15.58432674407959 + ], + [ + "▁mineralogy", + -15.584351539611816 + ], + [ + "Preferences", + -15.584368705749512 + ], + [ + "▁Prestigious", + -15.584391593933105 + ], + [ + "▁Pietra", + -15.584393501281738 + ], + [ + "Turf", + -15.584421157836914 + ], + [ + "している", + -15.584437370300293 + ], + [ + "▁QUEST", + -15.584466934204102 + ], + [ + "▁Prunus", + -15.584477424621582 + ], + [ + "▁Lumberton", + -15.584480285644531 + ], + [ + "▁Killexams", + -15.584486961364746 + ], + [ + "Scanner", + -15.584587097167969 + ], + [ + "Maintenance", + -15.584598541259766 + ], + [ + "▁bewitched", + -15.584687232971191 + ], + [ + "HPLC", + -15.584689140319824 + ], + [ + "▁Loong", + -15.584699630737305 + ], + [ + "▁RADAR", + -15.584734916687012 + ], + [ + "▁Willingness", + -15.584776878356934 + ], + [ + "▁Lauper", + -15.584803581237793 + ], + [ + "▁Patisserie", + -15.584822654724121 + ], + [ + "▁woodgrain", + -15.584835052490234 + ], + [ + "Tibetan", + -15.5848388671875 + ], + [ + "▁Fulfilling", + -15.584845542907715 + ], + [ + "▁metagame", + -15.58488655090332 + ], + [ + "▁Anthracite", + -15.584894180297852 + ], + [ + "began", + -15.584895133972168 + ], + [ + "Ambrosio", + -15.584916114807129 + ], + [ + "▁mozilla", + -15.584919929504395 + ], + [ + "▁Seroquel", + -15.584944725036621 + ], + [ + "priligy", + -15.5849609375 + ], + [ + "▁Thielen", + -15.584965705871582 + ], + [ + "▁bellicose", + -15.584966659545898 + ], + [ + "Casual", + -15.58498764038086 + ], + [ + "▁mechani", + -15.585000991821289 + ], + [ + "TREE", + -15.585014343261719 + ], + [ + "▁TELUS", + -15.585020065307617 + ], + [ + "▁boondoggle", + -15.585038185119629 + ], + [ + "▁Gallows", + -15.58505916595459 + ], + [ + "▁lexi", + -15.585103988647461 + ], + [ + "●", + -15.58512020111084 + ], + [ + "▁Scrubber", + -15.585137367248535 + ], + [ + "JPEG", + -15.58521842956543 + ], + [ + "фе", + -15.585227966308594 + ], + [ + "方式", + -15.585253715515137 + ], + [ + "▁Hypothetical", + -15.58527946472168 + ], + [ + "narcotic", + -15.585349082946777 + ], + [ + "▁Kompany", + -15.585380554199219 + ], + [ + "▁commodification", + -15.58541488647461 + ], + [ + "▁Gwynne", + -15.585441589355469 + ], + [ + "▁Canaccord", + -15.585450172424316 + ], + [ + "Harmony", + -15.585455894470215 + ], + [ + "▁psychopathy", + -15.585465431213379 + ], + [ + "▁sambar", + -15.5855073928833 + ], + [ + "▁collectivism", + -15.58552074432373 + ], + [ + "▁Kunj", + -15.585531234741211 + ], + [ + "arbeitet", + -15.585618019104004 + ], + [ + "Explain", + -15.585647583007812 + ], + [ + "▁acidophilus", + -15.585683822631836 + ], + [ + "▁Movistar", + -15.585684776306152 + ], + [ + "phenoxy", + -15.585700988769531 + ], + [ + "▁Cloverfield", + -15.585746765136719 + ], + [ + "▁CHEVROLET", + -15.585756301879883 + ], + [ + "▁CHEAT", + -15.585758209228516 + ], + [ + "▁Tipper", + -15.585771560668945 + ], + [ + "SLAVE", + -15.585793495178223 + ], + [ + "▁spicier", + -15.585795402526855 + ], + [ + "▁CBOE", + -15.58581256866455 + ], + [ + "▁Paleontology", + -15.585831642150879 + ], + [ + "▁Lovable", + -15.585845947265625 + ], + [ + "waterproof", + -15.585888862609863 + ], + [ + "▁birdcage", + -15.585916519165039 + ], + [ + "▁KRW", + -15.585929870605469 + ], + [ + "▁Legacies", + -15.585939407348633 + ], + [ + "▁Banaras", + -15.585969924926758 + ], + [ + "▁Synergi", + -15.586084365844727 + ], + [ + "▁GaAs", + -15.586100578308105 + ], + [ + "▁calypso", + -15.586164474487305 + ], + [ + "▁Cleanliness", + -15.586257934570312 + ], + [ + "▁easternmost", + -15.58626651763916 + ], + [ + "forthcoming", + -15.586295127868652 + ], + [ + "▁Márquez", + -15.586307525634766 + ], + [ + "▁Hoxton", + -15.586371421813965 + ], + [ + "▁Claudine", + -15.586398124694824 + ], + [ + "▁Peshmerga", + -15.586403846740723 + ], + [ + "▁evangelizing", + -15.586424827575684 + ], + [ + "▁carotenoid", + -15.586432456970215 + ], + [ + "uriel", + -15.586438179016113 + ], + [ + "▁baratas", + -15.586445808410645 + ], + [ + "▁Mihai", + -15.58646011352539 + ], + [ + "▁sonorous", + -15.586474418640137 + ], + [ + "▁Blackfriars", + -15.586499214172363 + ], + [ + "▁Pravin", + -15.586538314819336 + ], + [ + "▁HONEY", + -15.58655834197998 + ], + [ + "▁Myocardial", + -15.58659553527832 + ], + [ + "▁positiv", + -15.586600303649902 + ], + [ + "▁extortionate", + -15.58662223815918 + ], + [ + "▁zygote", + -15.586645126342773 + ], + [ + "▁liveaboard", + -15.586668014526367 + ], + [ + "▁LiPo", + -15.58670425415039 + ], + [ + "Voyage", + -15.586730003356934 + ], + [ + "▁Embellished", + -15.586762428283691 + ], + [ + "▁BRZ", + -15.586773872375488 + ], + [ + "civilian", + -15.586774826049805 + ], + [ + "▁agrochemical", + -15.586776733398438 + ], + [ + "▁sociability", + -15.586788177490234 + ], + [ + "washington", + -15.586823463439941 + ], + [ + "▁möchte", + -15.586835861206055 + ], + [ + "Cylinder", + -15.586846351623535 + ], + [ + "▁hecto", + -15.586862564086914 + ], + [ + "▁machismo", + -15.586864471435547 + ], + [ + "▁Delmarva", + -15.586957931518555 + ], + [ + "▁substantiation", + -15.586966514587402 + ], + [ + "▁moonroof", + -15.586981773376465 + ], + [ + "▁GENEVA", + -15.586996078491211 + ], + [ + "▁Mosco", + -15.587003707885742 + ], + [ + "▁hydrocortisone", + -15.587053298950195 + ], + [ + "▁Rahane", + -15.587100982666016 + ], + [ + "Vega", + -15.5872163772583 + ], + [ + "ован", + -15.587240219116211 + ], + [ + "▁Aqueous", + -15.587244033813477 + ], + [ + "accessories", + -15.587244987487793 + ], + [ + "▁ψ", + -15.587279319763184 + ], + [ + "▁Bungee", + -15.587288856506348 + ], + [ + "▁STARTING", + -15.587369918823242 + ], + [ + "▁subcutaneously", + -15.587370872497559 + ], + [ + "▁RECOVERY", + -15.587387084960938 + ], + [ + "rakh", + -15.587400436401367 + ], + [ + "ذا", + -15.587404251098633 + ], + [ + "▁ADDITION", + -15.58746337890625 + ], + [ + "▁Fonterra", + -15.587481498718262 + ], + [ + "▁intoxicant", + -15.587486267089844 + ], + [ + "▁fomenting", + -15.587501525878906 + ], + [ + "▁Celebrant", + -15.587516784667969 + ], + [ + "transfected", + -15.58754825592041 + ], + [ + "▁niveau", + -15.587590217590332 + ], + [ + "▁Oshie", + -15.587618827819824 + ], + [ + "legendary", + -15.587621688842773 + ], + [ + "▁Antietam", + -15.587675094604492 + ], + [ + "▁AMSOIL", + -15.587701797485352 + ], + [ + "Resistance", + -15.58770751953125 + ], + [ + "hehehe", + -15.587717056274414 + ], + [ + "ティ", + -15.587730407714844 + ], + [ + "▁Seltzer", + -15.587761878967285 + ], + [ + "razzi", + -15.587763786315918 + ], + [ + "Northwest", + -15.587791442871094 + ], + [ + "ű", + -15.587794303894043 + ], + [ + "▁capsular", + -15.587825775146484 + ], + [ + "▁quatre", + -15.58787727355957 + ], + [ + "▁imitrex", + -15.58793830871582 + ], + [ + "▁Griffen", + -15.58796215057373 + ], + [ + "▁Tyrod", + -15.587983131408691 + ], + [ + "▁CRUD", + -15.58802318572998 + ], + [ + "æl", + -15.588047981262207 + ], + [ + "▁TAO", + -15.58806324005127 + ], + [ + "▁Granderson", + -15.588068008422852 + ], + [ + "tanning", + -15.58810806274414 + ], + [ + "▁naruto", + -15.588114738464355 + ], + [ + "▁palabra", + -15.588115692138672 + ], + [ + "▁rambler", + -15.588119506835938 + ], + [ + "▁kuch", + -15.588127136230469 + ], + [ + "▁Cronk", + -15.588129043579102 + ], + [ + "disturbing", + -15.588147163391113 + ], + [ + "▁reneged", + -15.588170051574707 + ], + [ + "▁Duisburg", + -15.588202476501465 + ], + [ + "▁polycrystalline", + -15.588207244873047 + ], + [ + "▁また", + -15.588210105895996 + ], + [ + "▁pentagram", + -15.588266372680664 + ], + [ + "▁Endura", + -15.588268280029297 + ], + [ + "▁contin", + -15.58829116821289 + ], + [ + "▁raleigh", + -15.58834171295166 + ], + [ + "▁Jughead", + -15.58839225769043 + ], + [ + "▁Bermondsey", + -15.588395118713379 + ], + [ + "▁Descending", + -15.588464736938477 + ], + [ + "Martinez", + -15.588475227355957 + ], + [ + "▁Isidro", + -15.588496208190918 + ], + [ + "▁Lightening", + -15.588502883911133 + ], + [ + "▁THROW", + -15.58857536315918 + ], + [ + "▁Veselnitskaya", + -15.588586807250977 + ], + [ + "▁∗", + -15.588624000549316 + ], + [ + "▁Pynchon", + -15.588635444641113 + ], + [ + "▁WTOP", + -15.588662147521973 + ], + [ + "▁ARROW", + -15.588722229003906 + ], + [ + "▁Philbin", + -15.588746070861816 + ], + [ + "▁Sitar", + -15.58876895904541 + ], + [ + "▁impermanent", + -15.588773727416992 + ], + [ + "▁seguir", + -15.588802337646484 + ], + [ + "▁CORRESPONDENCE", + -15.5888032913208 + ], + [ + "▁FAULT", + -15.588836669921875 + ], + [ + "▁Eradication", + -15.588838577270508 + ], + [ + "Jenkins", + -15.588918685913086 + ], + [ + "bridal", + -15.588976860046387 + ], + [ + "assemblies", + -15.58901309967041 + ], + [ + "▁Если", + -15.589139938354492 + ], + [ + "▁Nellis", + -15.58924388885498 + ], + [ + "▁DECISION", + -15.589274406433105 + ], + [ + "LDH", + -15.589285850524902 + ], + [ + "▁Chirac", + -15.589325904846191 + ], + [ + "▁Berlioz", + -15.58933162689209 + ], + [ + "▁templating", + -15.589335441589355 + ], + [ + "▁ductility", + -15.589343070983887 + ], + [ + "▁Grazie", + -15.589385986328125 + ], + [ + "▁дел", + -15.589404106140137 + ], + [ + "UMMER", + -15.58940601348877 + ], + [ + "▁Joinery", + -15.589411735534668 + ], + [ + "▁Kamran", + -15.589448928833008 + ], + [ + "Whose", + -15.58947467803955 + ], + [ + "▁DEMON", + -15.589512825012207 + ], + [ + "▁DICK", + -15.589529991149902 + ], + [ + "immie", + -15.58955192565918 + ], + [ + "▁unreliability", + -15.58957290649414 + ], + [ + "▁muppet", + -15.589646339416504 + ], + [ + "▁actuaries", + -15.589666366577148 + ], + [ + "▁DYNAMIC", + -15.589717864990234 + ], + [ + "▁Tirol", + -15.589740753173828 + ], + [ + "▁Secession", + -15.589760780334473 + ], + [ + "▁Dunaway", + -15.589774131774902 + ], + [ + "▁miscalculated", + -15.589781761169434 + ], + [ + "▁saran", + -15.589804649353027 + ], + [ + "Armenian", + -15.589879989624023 + ], + [ + "▁Milkshake", + -15.58988094329834 + ], + [ + "▁schnitzel", + -15.589884757995605 + ], + [ + "DIRECT", + -15.589923858642578 + ], + [ + "▁POOR", + -15.589926719665527 + ], + [ + "演", + -15.589949607849121 + ], + [ + "▁SLIP", + -15.589995384216309 + ], + [ + "zhang", + -15.590004920959473 + ], + [ + "▁POWDER", + -15.590036392211914 + ], + [ + "▁sterilizer", + -15.590043067932129 + ], + [ + "Philosophy", + -15.590044975280762 + ], + [ + "▁Taney", + -15.59008502960205 + ], + [ + "дер", + -15.59009838104248 + ], + [ + "▁Monorail", + -15.590112686157227 + ], + [ + "piration", + -15.590115547180176 + ], + [ + "▁bandsaw", + -15.590117454528809 + ], + [ + "▁THOMPSON", + -15.590149879455566 + ], + [ + "▁Surfboard", + -15.590150833129883 + ], + [ + "▁FRANCIS", + -15.590188026428223 + ], + [ + "نس", + -15.590250968933105 + ], + [ + "士", + -15.590283393859863 + ], + [ + "▁TRADITION", + -15.59029483795166 + ], + [ + "请", + -15.590340614318848 + ], + [ + "▁RELIABILITY", + -15.59034252166748 + ], + [ + "▁Swayze", + -15.590359687805176 + ], + [ + "극", + -15.590414047241211 + ], + [ + "warranty", + -15.590441703796387 + ], + [ + "iński", + -15.590486526489258 + ], + [ + "▁Rijeka", + -15.590490341186523 + ], + [ + "▁cahoots", + -15.590510368347168 + ], + [ + "▁ACTIVITIES", + -15.5905122756958 + ], + [ + "▁McArdle", + -15.590535163879395 + ], + [ + "suasive", + -15.590564727783203 + ], + [ + "ᴡ", + -15.590582847595215 + ], + [ + "▁Cathal", + -15.590588569641113 + ], + [ + "▁Listopia", + -15.590599060058594 + ], + [ + "▁Vacaville", + -15.590653419494629 + ], + [ + "▁Pacioretty", + -15.590655326843262 + ], + [ + "▁Sunoco", + -15.590668678283691 + ], + [ + "▁Yanez", + -15.590709686279297 + ], + [ + "▁Araujo", + -15.59078311920166 + ], + [ + "ornament", + -15.590786933898926 + ], + [ + "▁Pathetic", + -15.59079360961914 + ], + [ + "▁snooty", + -15.590825080871582 + ], + [ + "▁Rifkin", + -15.590827941894531 + ], + [ + "▁cyclase", + -15.590920448303223 + ], + [ + "▁Gombe", + -15.590941429138184 + ], + [ + "مان", + -15.590986251831055 + ], + [ + "▁Chilcot", + -15.590989112854004 + ], + [ + "▁Lupo", + -15.59104061126709 + ], + [ + "▁pilsner", + -15.591042518615723 + ], + [ + "Mutual", + -15.591053009033203 + ], + [ + "Agriculture", + -15.591107368469238 + ], + [ + "θη", + -15.591124534606934 + ], + [ + "▁Ocampo", + -15.591161727905273 + ], + [ + "▁unwound", + -15.591185569763184 + ], + [ + "▁impregnable", + -15.591257095336914 + ], + [ + "▁Downward", + -15.591272354125977 + ], + [ + "centenary", + -15.59138298034668 + ], + [ + "ल्", + -15.591392517089844 + ], + [ + "▁igual", + -15.591394424438477 + ], + [ + "▁Audiovisual", + -15.59139633178711 + ], + [ + "▁Sandhurst", + -15.591404914855957 + ], + [ + "▁Cropped", + -15.591493606567383 + ], + [ + "▁blondie", + -15.59150218963623 + ], + [ + "▁Piguet", + -15.591503143310547 + ], + [ + "▁cobweb", + -15.591506004333496 + ], + [ + "hype", + -15.591508865356445 + ], + [ + "Karina", + -15.591660499572754 + ], + [ + "czuk", + -15.591668128967285 + ], + [ + "▁MONTE", + -15.591713905334473 + ], + [ + "▁dismutase", + -15.5917387008667 + ], + [ + "▁oxidizer", + -15.59174633026123 + ], + [ + "BookmarkDownloadby", + -15.591747283935547 + ], + [ + "precipitation", + -15.591755867004395 + ], + [ + "▁rejoinder", + -15.59179401397705 + ], + [ + "Χ", + -15.591811180114746 + ], + [ + "▁malabsorption", + -15.591890335083008 + ], + [ + "instructor", + -15.591910362243652 + ], + [ + "▁CYBER", + -15.59195327758789 + ], + [ + "aviation", + -15.591963768005371 + ], + [ + "資", + -15.5919828414917 + ], + [ + "hosa", + -15.59199333190918 + ], + [ + "▁Bitfinex", + -15.592100143432617 + ], + [ + "▁yeoman", + -15.59212589263916 + ], + [ + "▁Hottie", + -15.59215259552002 + ], + [ + "▁conver", + -15.592164039611816 + ], + [ + "▁Pampanga", + -15.592166900634766 + ], + [ + "▁Stinky", + -15.592187881469727 + ], + [ + "▁sterilisation", + -15.592245101928711 + ], + [ + "▁infiltrator", + -15.592299461364746 + ], + [ + "▁Stiftung", + -15.592461585998535 + ], + [ + "άλ", + -15.59246826171875 + ], + [ + "▁KTLA", + -15.592507362365723 + ], + [ + "▁venus", + -15.592525482177734 + ], + [ + "issel", + -15.592529296875 + ], + [ + "▁recirculate", + -15.592535972595215 + ], + [ + "▁voyeurism", + -15.592558860778809 + ], + [ + "▁Hornady", + -15.592568397521973 + ], + [ + "▁Ramapo", + -15.592578887939453 + ], + [ + "▁triphosphate", + -15.592578887939453 + ], + [ + "▁famished", + -15.592589378356934 + ], + [ + "ын", + -15.592602729797363 + ], + [ + "▁qeveri", + -15.592641830444336 + ], + [ + "▁sensorial", + -15.592700958251953 + ], + [ + "写", + -15.592719078063965 + ], + [ + "▁NEURO", + -15.59281063079834 + ], + [ + "▁spondylitis", + -15.59284782409668 + ], + [ + "▁HOV", + -15.592860221862793 + ], + [ + "ន", + -15.592914581298828 + ], + [ + "Ethernet", + -15.592940330505371 + ], + [ + "▁Frege", + -15.592948913574219 + ], + [ + "Affair", + -15.592963218688965 + ], + [ + "▁newscaster", + -15.593031883239746 + ], + [ + "▁Steinem", + -15.593048095703125 + ], + [ + "▁Thau", + -15.593056678771973 + ], + [ + "▁indolent", + -15.59311580657959 + ], + [ + "▁Karelia", + -15.593168258666992 + ], + [ + "Keyword", + -15.593174934387207 + ], + [ + "志", + -15.593183517456055 + ], + [ + "pumpkin", + -15.593193054199219 + ], + [ + "श्", + -15.593212127685547 + ], + [ + "▁colada", + -15.593420028686523 + ], + [ + "▁Undeterred", + -15.593427658081055 + ], + [ + "▁rectus", + -15.593433380126953 + ], + [ + "▁SkyDrive", + -15.593518257141113 + ], + [ + "▁Bukowski", + -15.593583106994629 + ], + [ + "Finn", + -15.593607902526855 + ], + [ + "▁Steppenwolf", + -15.593620300292969 + ], + [ + "▁Retiring", + -15.593644142150879 + ], + [ + "▁Koivu", + -15.59366226196289 + ], + [ + "Surgical", + -15.59368896484375 + ], + [ + "▁FRANKFURT", + -15.593692779541016 + ], + [ + "▁GarageBand", + -15.593705177307129 + ], + [ + "▁AVERAGE", + -15.593718528747559 + ], + [ + "▁DFID", + -15.593867301940918 + ], + [ + "▁DIESEL", + -15.593917846679688 + ], + [ + "▁Mannequin", + -15.593934059143066 + ], + [ + "שׁ", + -15.593985557556152 + ], + [ + "▁tantalize", + -15.593985557556152 + ], + [ + "▁Handwritten", + -15.594005584716797 + ], + [ + "▁miniskirt", + -15.594010353088379 + ], + [ + "▁Kedar", + -15.59402847290039 + ], + [ + "▁Marjan", + -15.594030380249023 + ], + [ + "ENCIA", + -15.594039916992188 + ], + [ + "▁Falstaff", + -15.59405517578125 + ], + [ + "amsterdam", + -15.594094276428223 + ], + [ + "▁Smoak", + -15.59411334991455 + ], + [ + "▁Berserk", + -15.594171524047852 + ], + [ + "abundant", + -15.594181060791016 + ], + [ + "▁bunnings", + -15.594225883483887 + ], + [ + "▁есть", + -15.594226837158203 + ], + [ + "▁curso", + -15.594253540039062 + ], + [ + "Coconut", + -15.594276428222656 + ], + [ + "вр", + -15.594281196594238 + ], + [ + "▁Wingfield", + -15.594325065612793 + ], + [ + "▁Vikki", + -15.594345092773438 + ], + [ + "AMMA", + -15.594353675842285 + ], + [ + "▁Melodic", + -15.594367027282715 + ], + [ + "ਨ", + -15.594368934631348 + ], + [ + "জ", + -15.594392776489258 + ], + [ + "QoL", + -15.594402313232422 + ], + [ + "▁Prager", + -15.5944185256958 + ], + [ + "overlooked", + -15.59443187713623 + ], + [ + "▁THAI", + -15.59443187713623 + ], + [ + "▁Bhadra", + -15.594472885131836 + ], + [ + "▁fealty", + -15.594472885131836 + ], + [ + "▁Sainz", + -15.594572067260742 + ], + [ + "▁Mountbatten", + -15.594586372375488 + ], + [ + "Travis", + -15.594722747802734 + ], + [ + "▁natter", + -15.594743728637695 + ], + [ + "▁Skog", + -15.594758033752441 + ], + [ + "▁Odoo", + -15.5948486328125 + ], + [ + "▁excoriate", + -15.594853401184082 + ], + [ + "▁DEFENSE", + -15.594856262207031 + ], + [ + "▁Foxwoods", + -15.594856262207031 + ], + [ + "Loft", + -15.594881057739258 + ], + [ + "▁Brannon", + -15.59489631652832 + ], + [ + "▁hermitage", + -15.594919204711914 + ], + [ + "▁Alopecia", + -15.594924926757812 + ], + [ + "▁Euronext", + -15.594924926757812 + ], + [ + "▁Metrolink", + -15.594940185546875 + ], + [ + "odendron", + -15.594986915588379 + ], + [ + "▁ADVERTISER", + -15.594999313354492 + ], + [ + "aditya", + -15.595016479492188 + ], + [ + "▁aromatase", + -15.595038414001465 + ], + [ + "▁Exclude", + -15.595088958740234 + ], + [ + "▁Eretz", + -15.59508991241455 + ], + [ + "▁PLYMOUTH", + -15.595094680786133 + ], + [ + "▁pirouette", + -15.595094680786133 + ], + [ + "▁Adventurous", + -15.595142364501953 + ], + [ + "Shaughnessy", + -15.595187187194824 + ], + [ + "▁musik", + -15.595197677612305 + ], + [ + "▁reapplied", + -15.595219612121582 + ], + [ + "▁ambushes", + -15.595287322998047 + ], + [ + "▁♡", + -15.595303535461426 + ], + [ + "▁Santini", + -15.595304489135742 + ], + [ + "▁lavage", + -15.595340728759766 + ], + [ + "▁Obstruction", + -15.595409393310547 + ], + [ + "▁Turnitin", + -15.595480918884277 + ], + [ + "▁Fundación", + -15.595489501953125 + ], + [ + "ENIX", + -15.595508575439453 + ], + [ + "Jupiter", + -15.595526695251465 + ], + [ + "▁EXEMPLARY", + -15.595529556274414 + ], + [ + "▁disavowed", + -15.595535278320312 + ], + [ + "▁ASIO", + -15.595562934875488 + ], + [ + "▁Dufferin", + -15.595573425292969 + ], + [ + "▁Deezer", + -15.595600128173828 + ], + [ + "▁Appendices", + -15.595602035522461 + ], + [ + "Resort", + -15.595605850219727 + ], + [ + "Awlaki", + -15.59562873840332 + ], + [ + "▁Galilean", + -15.595632553100586 + ], + [ + "▁FSBO", + -15.595638275146484 + ], + [ + "▁Agrippa", + -15.595641136169434 + ], + [ + "▁Maciej", + -15.59564208984375 + ], + [ + "Katherine", + -15.595646858215332 + ], + [ + "▁Sawant", + -15.595669746398926 + ], + [ + "morphous", + -15.59567642211914 + ], + [ + "▁Avinash", + -15.595694541931152 + ], + [ + "Civic", + -15.59571647644043 + ], + [ + "▁Shabazz", + -15.595725059509277 + ], + [ + "▁Stastny", + -15.595746994018555 + ], + [ + "▁sólo", + -15.595795631408691 + ], + [ + "▁Palisade", + -15.59583568572998 + ], + [ + "▁Hossa", + -15.595865249633789 + ], + [ + "куп", + -15.595869064331055 + ], + [ + "▁trapdoor", + -15.59595012664795 + ], + [ + "▁Hairston", + -15.596016883850098 + ], + [ + "▁Protagonist", + -15.596037864685059 + ], + [ + "iyani", + -15.596059799194336 + ], + [ + "Fame", + -15.59607982635498 + ], + [ + "WordPress", + -15.59618091583252 + ], + [ + "Babylon", + -15.596182823181152 + ], + [ + "▁Poynter", + -15.596256256103516 + ], + [ + "▁Mangala", + -15.596268653869629 + ], + [ + "▁Stalinism", + -15.596349716186523 + ], + [ + "▁Scipio", + -15.5963716506958 + ], + [ + "▁Ingelheim", + -15.596376419067383 + ], + [ + "▁Sprawl", + -15.596381187438965 + ], + [ + "▁Aleister", + -15.596444129943848 + ], + [ + "▁Pappy", + -15.596487998962402 + ], + [ + "▁Wouter", + -15.596527099609375 + ], + [ + "messaging", + -15.596546173095703 + ], + [ + "▁Mahā", + -15.596548080444336 + ], + [ + "naught", + -15.59660530090332 + ], + [ + "▁Snob", + -15.596611976623535 + ], + [ + "▁Nakano", + -15.596628189086914 + ], + [ + "ция", + -15.596631050109863 + ], + [ + "▁raffia", + -15.596633911132812 + ], + [ + "transgender", + -15.596661567687988 + ], + [ + "▁Untersuchungen", + -15.596688270568848 + ], + [ + "▁UMNO", + -15.596723556518555 + ], + [ + "Shaun", + -15.596726417541504 + ], + [ + "▁Pharmacological", + -15.596795082092285 + ], + [ + "▁Thorburn", + -15.596826553344727 + ], + [ + "▁Sayoc", + -15.596834182739258 + ], + [ + "otheca", + -15.596924781799316 + ], + [ + "▁abge", + -15.5969820022583 + ], + [ + "łow", + -15.596993446350098 + ], + [ + "▁Hameed", + -15.597046852111816 + ], + [ + "fehl", + -15.59714412689209 + ], + [ + "▁Burhan", + -15.597206115722656 + ], + [ + "narayana", + -15.597212791442871 + ], + [ + "▁Olmstead", + -15.597249031066895 + ], + [ + "ျ", + -15.597249984741211 + ], + [ + "▁profund", + -15.597288131713867 + ], + [ + "▁Populist", + -15.597371101379395 + ], + [ + "▁BlogEngine", + -15.597447395324707 + ], + [ + "▁Buckwheat", + -15.597480773925781 + ], + [ + "▁pummeling", + -15.597490310668945 + ], + [ + "▁jabbed", + -15.597494125366211 + ], + [ + "▁deduplication", + -15.597498893737793 + ], + [ + "▁LAUGH", + -15.597541809082031 + ], + [ + "▁julienne", + -15.597586631774902 + ], + [ + "▁approbation", + -15.597588539123535 + ], + [ + "▁Tempranillo", + -15.597757339477539 + ], + [ + "▁Superstorm", + -15.597764015197754 + ], + [ + "▁CLARI", + -15.597858428955078 + ], + [ + "▁trong", + -15.597858428955078 + ], + [ + "▁Hodson", + -15.597861289978027 + ], + [ + "▁supranational", + -15.597870826721191 + ], + [ + "▁😦", + -15.597905158996582 + ], + [ + "▁gulag", + -15.597929954528809 + ], + [ + "▁Sideboard", + -15.597930908203125 + ], + [ + "▁Kovind", + -15.598008155822754 + ], + [ + "华", + -15.598017692565918 + ], + [ + "▁Exfoliating", + -15.598024368286133 + ], + [ + "▁Ishq", + -15.59802532196045 + ], + [ + "italian", + -15.598047256469727 + ], + [ + "▁Cirencester", + -15.59807300567627 + ], + [ + "▁CHARLESTON", + -15.598106384277344 + ], + [ + "▁PROVE", + -15.598132133483887 + ], + [ + "Lebanon", + -15.598140716552734 + ], + [ + "▁parsonage", + -15.598159790039062 + ], + [ + "▁Vaio", + -15.598187446594238 + ], + [ + "▁quadrilateral", + -15.598196983337402 + ], + [ + "▁Minstrel", + -15.598238945007324 + ], + [ + "реш", + -15.598308563232422 + ], + [ + "▁Nepean", + -15.598322868347168 + ], + [ + "▁enthrall", + -15.598437309265137 + ], + [ + "ół", + -15.598441123962402 + ], + [ + "▁monolingual", + -15.598451614379883 + ], + [ + "▁Orangutan", + -15.598461151123047 + ], + [ + "designate", + -15.598466873168945 + ], + [ + "nourishment", + -15.598482131958008 + ], + [ + "▁Lisbeth", + -15.5985689163208 + ], + [ + "▁Bukola", + -15.598575592041016 + ], + [ + "▁NiMH", + -15.598599433898926 + ], + [ + "▁gorging", + -15.598615646362305 + ], + [ + "▁microglial", + -15.598624229431152 + ], + [ + "▁sleepwalking", + -15.598627090454102 + ], + [ + "▁Haruhi", + -15.598694801330566 + ], + [ + "▁Stitt", + -15.598711013793945 + ], + [ + "Tacoma", + -15.598722457885742 + ], + [ + "▁Gorkha", + -15.598776817321777 + ], + [ + "▁Nürburgring", + -15.598776817321777 + ], + [ + "▁Rachmaninoff", + -15.598824501037598 + ], + [ + "▁Brittain", + -15.59890365600586 + ], + [ + "▁WaPo", + -15.598923683166504 + ], + [ + "▁basset", + -15.598939895629883 + ], + [ + "▁Matriculation", + -15.5989990234375 + ], + [ + "▁Amjad", + -15.599017143249512 + ], + [ + "▁quadrature", + -15.599042892456055 + ], + [ + "▁Meander", + -15.599048614501953 + ], + [ + "cubi", + -15.599080085754395 + ], + [ + "▁legging", + -15.599090576171875 + ], + [ + "▁Chimpanzee", + -15.599116325378418 + ], + [ + "▁houzz", + -15.599125862121582 + ], + [ + "▁dyspepsia", + -15.599140167236328 + ], + [ + "▁McNeal", + -15.599163055419922 + ], + [ + "▁squatter", + -15.59924602508545 + ], + [ + "Families", + -15.59925651550293 + ], + [ + "▁TINY", + -15.599276542663574 + ], + [ + "Temporary", + -15.599283218383789 + ], + [ + "▁Caithness", + -15.599286079406738 + ], + [ + "seismic", + -15.599334716796875 + ], + [ + "▁OBLIGATION", + -15.599358558654785 + ], + [ + "▁adiabatic", + -15.599407196044922 + ], + [ + "▁detonating", + -15.599407196044922 + ], + [ + "▁Birkbeck", + -15.599422454833984 + ], + [ + "▁música", + -15.599431991577148 + ], + [ + "▁Fugue", + -15.59943675994873 + ], + [ + "▁Wondershare", + -15.599446296691895 + ], + [ + "▁Occam", + -15.599451065063477 + ], + [ + "▁Atherosclerosis", + -15.599480628967285 + ], + [ + "▁singularities", + -15.599494934082031 + ], + [ + "▁FlashScore", + -15.599512100219727 + ], + [ + "▁embezzling", + -15.599577903747559 + ], + [ + "上記", + -15.59959602355957 + ], + [ + "▁LiveJournal", + -15.599611282348633 + ], + [ + "▁Borrego", + -15.59963321685791 + ], + [ + "▁Caching", + -15.59964656829834 + ], + [ + "▁Silvi", + -15.599660873413086 + ], + [ + "▁Mumble", + -15.599696159362793 + ], + [ + "▁Amaral", + -15.599703788757324 + ], + [ + "▁Pompei", + -15.599746704101562 + ], + [ + "▁Pagina", + -15.599762916564941 + ], + [ + "carlo", + -15.599785804748535 + ], + [ + "▁vermi", + -15.599790573120117 + ], + [ + "▁Camilo", + -15.599794387817383 + ], + [ + "▁LGBTQIA", + -15.599802017211914 + ], + [ + "▁FOLD", + -15.599841117858887 + ], + [ + "▁Manulife", + -15.599884033203125 + ], + [ + "▁paramilitaries", + -15.599893569946289 + ], + [ + "ologizing", + -15.599945068359375 + ], + [ + "Currency", + -15.599987983703613 + ], + [ + "▁Wiktionary", + -15.600014686584473 + ], + [ + "▁Margolis", + -15.600017547607422 + ], + [ + "Orsay", + -15.600018501281738 + ], + [ + "▁Transvaal", + -15.6000394821167 + ], + [ + "urov", + -15.600046157836914 + ], + [ + "▁demonization", + -15.600049018859863 + ], + [ + "▁Sleuth", + -15.600055694580078 + ], + [ + "▁pictogram", + -15.600130081176758 + ], + [ + "▁BIRTH", + -15.600137710571289 + ], + [ + "▁Ashdown", + -15.600150108337402 + ], + [ + "▁Buca", + -15.600180625915527 + ], + [ + "▁Contractual", + -15.600212097167969 + ], + [ + "▁Karabakh", + -15.600214004516602 + ], + [ + "▁ASSOCIATED", + -15.600234031677246 + ], + [ + "▁Sigourney", + -15.600281715393066 + ], + [ + "cropping", + -15.60031509399414 + ], + [ + "족", + -15.60035514831543 + ], + [ + "▁adirondack", + -15.60037899017334 + ], + [ + "▁Laven", + -15.600403785705566 + ], + [ + "▁Hotchkiss", + -15.600427627563477 + ], + [ + "▁Varner", + -15.60047435760498 + ], + [ + "▁Rhimes", + -15.600482940673828 + ], + [ + "▁Irkutsk", + -15.60050106048584 + ], + [ + "▁ebullient", + -15.60050106048584 + ], + [ + "▁CHARM", + -15.600543975830078 + ], + [ + "gruppen", + -15.600555419921875 + ], + [ + "HARA", + -15.600625038146973 + ], + [ + "▁SEPTA", + -15.600629806518555 + ], + [ + "▁ecliptic", + -15.60064697265625 + ], + [ + "▁Brushless", + -15.600707054138184 + ], + [ + "▁czech", + -15.600717544555664 + ], + [ + "▁Michelson", + -15.600726127624512 + ], + [ + "▁Campari", + -15.600764274597168 + ], + [ + "▁Cincy", + -15.600765228271484 + ], + [ + "▁taxonomies", + -15.600769996643066 + ], + [ + "embu", + -15.600775718688965 + ], + [ + "стру", + -15.600852012634277 + ], + [ + "▁SEVERAL", + -15.60089111328125 + ], + [ + "▁McCool", + -15.600920677185059 + ], + [ + "▁permanency", + -15.60093879699707 + ], + [ + "▁politicking", + -15.600971221923828 + ], + [ + "▁Anorexia", + -15.600987434387207 + ], + [ + "deviantart", + -15.600990295410156 + ], + [ + "▁tortellini", + -15.601068496704102 + ], + [ + "▁FOREGOING", + -15.601133346557617 + ], + [ + "分析", + -15.60116958618164 + ], + [ + "▁evalu", + -15.601181983947754 + ], + [ + "▁Contemplate", + -15.601200103759766 + ], + [ + "▁unfriend", + -15.601234436035156 + ], + [ + "▁GENERATION", + -15.601282119750977 + ], + [ + "Satellite", + -15.601325988769531 + ], + [ + "본", + -15.601325988769531 + ], + [ + "▁Ushuaia", + -15.601351737976074 + ], + [ + "투", + -15.601400375366211 + ], + [ + "▁Xanadu", + -15.60147762298584 + ], + [ + "광", + -15.601544380187988 + ], + [ + "limentary", + -15.601576805114746 + ], + [ + "▁hollandaise", + -15.60159683227539 + ], + [ + "funeral", + -15.601611137390137 + ], + [ + "▁Windrush", + -15.601646423339844 + ], + [ + "Priest", + -15.601672172546387 + ], + [ + "▁Autobahn", + -15.601709365844727 + ], + [ + "▁Agamemnon", + -15.601716995239258 + ], + [ + "▁lloyd", + -15.601750373840332 + ], + [ + "▁Frisian", + -15.601775169372559 + ], + [ + "likelihood", + -15.601802825927734 + ], + [ + "MAKE", + -15.601805686950684 + ], + [ + "travelling", + -15.601841926574707 + ], + [ + "▁Ranma", + -15.601861953735352 + ], + [ + "▁benzoate", + -15.60193157196045 + ], + [ + "quarium", + -15.601973533630371 + ], + [ + "▁HHH", + -15.601977348327637 + ], + [ + "swallow", + -15.602002143859863 + ], + [ + "▁Tiburon", + -15.602010726928711 + ], + [ + "чу", + -15.602035522460938 + ], + [ + "▁unidentifiable", + -15.602045059204102 + ], + [ + "▁Viggo", + -15.602079391479492 + ], + [ + "▁immunogenicity", + -15.602081298828125 + ], + [ + "▁Pavia", + -15.602134704589844 + ], + [ + "▁Foligno", + -15.602155685424805 + ], + [ + "▁Bukhara", + -15.602160453796387 + ], + [ + "ương", + -15.602179527282715 + ], + [ + "brugge", + -15.602184295654297 + ], + [ + "▁Kennebec", + -15.602240562438965 + ], + [ + "▁Dancehall", + -15.602252006530762 + ], + [ + "declaration", + -15.602348327636719 + ], + [ + "▁besoin", + -15.602407455444336 + ], + [ + "▁Mercenary", + -15.602448463439941 + ], + [ + "▁patrimony", + -15.602449417114258 + ], + [ + "Cabinet", + -15.602550506591797 + ], + [ + "▁eToro", + -15.602594375610352 + ], + [ + "▁Gavril", + -15.602604866027832 + ], + [ + "▁Kirstie", + -15.602620124816895 + ], + [ + "▁Agricole", + -15.602632522583008 + ], + [ + "▁Wayward", + -15.602644920349121 + ], + [ + "▁kraut", + -15.60265064239502 + ], + [ + "▁paar", + -15.602679252624512 + ], + [ + "zionale", + -15.602747917175293 + ], + [ + "Stuart", + -15.60276985168457 + ], + [ + "▁cannibalize", + -15.602787017822266 + ], + [ + "▁Halliwell", + -15.602789878845215 + ], + [ + "▁megalomaniac", + -15.602812767028809 + ], + [ + "▁Bethnal", + -15.60286808013916 + ], + [ + "▁yodel", + -15.602900505065918 + ], + [ + "▁Brassard", + -15.602907180786133 + ], + [ + "▁Kroos", + -15.602932929992676 + ], + [ + "▁predisposing", + -15.602934837341309 + ], + [ + "▁Riddler", + -15.603005409240723 + ], + [ + "▁ENGL", + -15.603010177612305 + ], + [ + "▁Nagarjuna", + -15.603035926818848 + ], + [ + "▁artikel", + -15.60305118560791 + ], + [ + "ಕ", + -15.603055000305176 + ], + [ + "▁Telescopic", + -15.60314655303955 + ], + [ + "▁noisier", + -15.603189468383789 + ], + [ + "וּ", + -15.603193283081055 + ], + [ + "▁FUNERAL", + -15.603227615356445 + ], + [ + "▁plasmon", + -15.603232383728027 + ], + [ + "▁iGaming", + -15.603249549865723 + ], + [ + "▁Kumamoto", + -15.603257179260254 + ], + [ + "lemma", + -15.603260040283203 + ], + [ + "Chlor", + -15.603277206420898 + ], + [ + "Customize", + -15.603321075439453 + ], + [ + "▁NAVIGATION", + -15.603349685668945 + ], + [ + "▁Fluttershy", + -15.603375434875488 + ], + [ + "▁Wisteria", + -15.603386878967285 + ], + [ + "▁Louvain", + -15.603410720825195 + ], + [ + "▁mesenteric", + -15.603422164916992 + ], + [ + "▁Coogler", + -15.60342788696289 + ], + [ + "▁Austell", + -15.603477478027344 + ], + [ + "▁Raskin", + -15.603510856628418 + ], + [ + "▁Szechuan", + -15.603545188903809 + ], + [ + "▁Oblique", + -15.603547096252441 + ], + [ + "▁quaff", + -15.603547096252441 + ], + [ + "▁Dhruv", + -15.60355281829834 + ], + [ + "▁thermogenic", + -15.603656768798828 + ], + [ + "▁superseding", + -15.603666305541992 + ], + [ + "▁PREVIEW", + -15.60367202758789 + ], + [ + "▁Huggies", + -15.603694915771484 + ], + [ + "▁EXPORT", + -15.603760719299316 + ], + [ + "▁DRAFT", + -15.603829383850098 + ], + [ + "Ariana", + -15.603863716125488 + ], + [ + "▁Cece", + -15.603885650634766 + ], + [ + "▁Confined", + -15.603894233703613 + ], + [ + "▁jamaica", + -15.603896141052246 + ], + [ + "Optimize", + -15.603901863098145 + ], + [ + "▁FiveThirtyEight", + -15.603910446166992 + ], + [ + "▁Percocet", + -15.603934288024902 + ], + [ + "▁Shuri", + -15.603960990905762 + ], + [ + "urator", + -15.603967666625977 + ], + [ + "▁astrophysical", + -15.60400104522705 + ], + [ + "▁shoegaze", + -15.604018211364746 + ], + [ + "▁polymath", + -15.604024887084961 + ], + [ + "▁Gamification", + -15.604077339172363 + ], + [ + "▁Coupé", + -15.604080200195312 + ], + [ + "▁Honeysuckle", + -15.604081153869629 + ], + [ + "▁allocator", + -15.604090690612793 + ], + [ + "▁Poldark", + -15.604118347167969 + ], + [ + "▁Almora", + -15.604125022888184 + ], + [ + "▁Kaminski", + -15.6041259765625 + ], + [ + "▁Fnatic", + -15.604129791259766 + ], + [ + "▁EXIF", + -15.60413932800293 + ], + [ + "ṅ", + -15.604154586791992 + ], + [ + "▁Mulcahy", + -15.604154586791992 + ], + [ + "▁ACRES", + -15.604158401489258 + ], + [ + "▁Boreal", + -15.604239463806152 + ], + [ + "phatic", + -15.604265213012695 + ], + [ + "▁amylase", + -15.604269027709961 + ], + [ + "ribose", + -15.60427188873291 + ], + [ + "▁MINUTE", + -15.604371070861816 + ], + [ + "▁Sackler", + -15.604389190673828 + ], + [ + "▁BECK", + -15.60439682006836 + ], + [ + "ステップ", + -15.604486465454102 + ], + [ + "▁Sokolov", + -15.604514122009277 + ], + [ + "▁Feldspar", + -15.604544639587402 + ], + [ + "▁Kamakura", + -15.60457992553711 + ], + [ + "▁NAMA", + -15.604605674743652 + ], + [ + "jackson", + -15.604634284973145 + ], + [ + "▁Saquon", + -15.604646682739258 + ], + [ + "agnon", + -15.604669570922852 + ], + [ + "▁premenstrual", + -15.604682922363281 + ], + [ + "▁Mladenoff", + -15.604691505432129 + ], + [ + "▁Goldfinger", + -15.604701042175293 + ], + [ + "mittance", + -15.604726791381836 + ], + [ + "▁DeMille", + -15.604736328125 + ], + [ + "▁PEF", + -15.604747772216797 + ], + [ + "▁LOFT", + -15.604838371276855 + ], + [ + "transcend", + -15.604848861694336 + ], + [ + "▁Bafana", + -15.604872703552246 + ], + [ + "▁CLASSES", + -15.604883193969727 + ], + [ + "Fuji", + -15.604921340942383 + ], + [ + "▁magnific", + -15.604968070983887 + ], + [ + "chronicle", + -15.604971885681152 + ], + [ + "▁Scuderia", + -15.604990005493164 + ], + [ + "▁Acuity", + -15.605037689208984 + ], + [ + "▁Dunmore", + -15.605045318603516 + ], + [ + "▁Retribution", + -15.605047225952148 + ], + [ + "▁Ethnography", + -15.605088233947754 + ], + [ + "▁sanatorium", + -15.605114936828613 + ], + [ + "▁Handrail", + -15.605128288269043 + ], + [ + "uddhi", + -15.605145454406738 + ], + [ + "▁Cetearyl", + -15.605203628540039 + ], + [ + "▁Anglic", + -15.605208396911621 + ], + [ + "▁Newburyport", + -15.605224609375 + ], + [ + "Honest", + -15.605249404907227 + ], + [ + "▁preconfigured", + -15.605263710021973 + ], + [ + "▁bryan", + -15.605331420898438 + ], + [ + "▁accompli", + -15.60544490814209 + ], + [ + "▁adenoid", + -15.605478286743164 + ], + [ + "Mohammed", + -15.605520248413086 + ], + [ + "▁Inherited", + -15.605536460876465 + ], + [ + "▁можете", + -15.605550765991211 + ], + [ + "▁HEARD", + -15.605571746826172 + ], + [ + "▁evidencing", + -15.605594635009766 + ], + [ + "▁venerate", + -15.60560131072998 + ], + [ + "▁Castaneda", + -15.605668067932129 + ], + [ + "Spangled", + -15.605696678161621 + ], + [ + "Generator", + -15.605731010437012 + ], + [ + "▁Gustaf", + -15.60574722290039 + ], + [ + "▁cakewalk", + -15.605758666992188 + ], + [ + "▁Umpqua", + -15.605775833129883 + ], + [ + "чение", + -15.605790138244629 + ], + [ + "▁Kampong", + -15.605826377868652 + ], + [ + "▁Orlistat", + -15.605866432189941 + ], + [ + "▁Siskiyou", + -15.605888366699219 + ], + [ + "Typically", + -15.605914115905762 + ], + [ + "▁Worsley", + -15.605948448181152 + ], + [ + "Handbook", + -15.60598373413086 + ], + [ + "▁shrift", + -15.606010437011719 + ], + [ + "▁Pneumo", + -15.606096267700195 + ], + [ + "▁Kolar", + -15.606112480163574 + ], + [ + "seite", + -15.60611343383789 + ], + [ + "▁Breh", + -15.606161117553711 + ], + [ + "▁desecrated", + -15.606180191040039 + ], + [ + "▁nitpicking", + -15.606181144714355 + ], + [ + "▁HAW", + -15.606186866760254 + ], + [ + "▁Doggett", + -15.606208801269531 + ], + [ + "▁Morita", + -15.606245994567871 + ], + [ + "▁Ferrante", + -15.606273651123047 + ], + [ + "▁Doubtful", + -15.606278419494629 + ], + [ + "mineralization", + -15.60631275177002 + ], + [ + "▁pouvez", + -15.606330871582031 + ], + [ + "лл", + -15.606340408325195 + ], + [ + "öller", + -15.606354713439941 + ], + [ + "▁hiphop", + -15.606374740600586 + ], + [ + "▁DOUGLAS", + -15.606401443481445 + ], + [ + "▁Kalgoorlie", + -15.606401443481445 + ], + [ + "▁chloroquine", + -15.606402397155762 + ], + [ + "▁craniofacial", + -15.606402397155762 + ], + [ + "hadda", + -15.60642147064209 + ], + [ + "Kenny", + -15.606447219848633 + ], + [ + "▁Kuber", + -15.606498718261719 + ], + [ + "nephr", + -15.60650634765625 + ], + [ + "ummel", + -15.606520652770996 + ], + [ + "▁labrum", + -15.60653018951416 + ], + [ + "йн", + -15.606545448303223 + ], + [ + "MACHINE", + -15.60655403137207 + ], + [ + "Conflict", + -15.606571197509766 + ], + [ + "▁Botticelli", + -15.606572151184082 + ], + [ + "▁dabbed", + -15.606593132019043 + ], + [ + "▁Reorganization", + -15.606612205505371 + ], + [ + "▁udemy", + -15.606621742248535 + ], + [ + "сов", + -15.606637001037598 + ], + [ + "▁levothyroxine", + -15.606645584106445 + ], + [ + "▁emissaries", + -15.606670379638672 + ], + [ + "▁Witwatersrand", + -15.606695175170898 + ], + [ + "▁Batson", + -15.606719970703125 + ], + [ + "▁Mizrahi", + -15.606724739074707 + ], + [ + "▁exegetical", + -15.606743812561035 + ], + [ + "ਸ", + -15.606890678405762 + ], + [ + "▁Hegelian", + -15.606932640075684 + ], + [ + "▁ADVISOR", + -15.606940269470215 + ], + [ + "digestible", + -15.606956481933594 + ], + [ + "▁cackling", + -15.606973648071289 + ], + [ + "Batch", + -15.607048988342285 + ], + [ + "Nichol", + -15.607053756713867 + ], + [ + "▁kota", + -15.607057571411133 + ], + [ + "▁Spelman", + -15.607075691223145 + ], + [ + "textbook", + -15.607090950012207 + ], + [ + "▁Muzzle", + -15.607152938842773 + ], + [ + "▁Turbulent", + -15.607159614562988 + ], + [ + "▁filamentous", + -15.607187271118164 + ], + [ + "▁Bopp", + -15.607237815856934 + ], + [ + "▁upperclassmen", + -15.607306480407715 + ], + [ + "▁Mugg", + -15.607327461242676 + ], + [ + "Advertising", + -15.607329368591309 + ], + [ + "ristina", + -15.607339859008789 + ], + [ + "OPTION", + -15.60734748840332 + ], + [ + "unnecessary", + -15.60735034942627 + ], + [ + "HUGE", + -15.607362747192383 + ], + [ + "▁Lawndale", + -15.607366561889648 + ], + [ + "nosuke", + -15.607421875 + ], + [ + "▁Pimple", + -15.607468605041504 + ], + [ + "▁Equinix", + -15.607484817504883 + ], + [ + "▁Pornstar", + -15.607510566711426 + ], + [ + "california", + -15.607569694519043 + ], + [ + "TORIA", + -15.607571601867676 + ], + [ + "▁Bayreuth", + -15.607622146606445 + ], + [ + "▁embarassing", + -15.607625007629395 + ], + [ + "▁Kirwan", + -15.607641220092773 + ], + [ + "▁THEATRE", + -15.607649803161621 + ], + [ + "▁Deliberate", + -15.607666969299316 + ], + [ + "τά", + -15.607690811157227 + ], + [ + "▁HKLM", + -15.607701301574707 + ], + [ + "▁الل", + -15.607731819152832 + ], + [ + "율", + -15.607747077941895 + ], + [ + "▁Birchwood", + -15.607773780822754 + ], + [ + "volley", + -15.607776641845703 + ], + [ + "▁Yossi", + -15.607789039611816 + ], + [ + "▁Geralt", + -15.60784912109375 + ], + [ + "▁Lufkin", + -15.607870101928711 + ], + [ + "customized", + -15.607904434204102 + ], + [ + "▁buttresses", + -15.607911109924316 + ], + [ + "▁BLUETOOTH", + -15.607943534851074 + ], + [ + "▁granulo", + -15.607943534851074 + ], + [ + "cleanse", + -15.607945442199707 + ], + [ + "▁alibaba", + -15.607946395874023 + ], + [ + "XRP", + -15.607969284057617 + ], + [ + "▁Niigata", + -15.608040809631348 + ], + [ + "▁Chainsmokers", + -15.608059883117676 + ], + [ + "▁Gleich", + -15.608073234558105 + ], + [ + "▁LANSING", + -15.608099937438965 + ], + [ + "▁Redefining", + -15.608100891113281 + ], + [ + "▁Chaves", + -15.608102798461914 + ], + [ + "STYLE", + -15.608112335205078 + ], + [ + "▁Interlaken", + -15.608114242553711 + ], + [ + "▁piquant", + -15.608246803283691 + ], + [ + "▁repercussion", + -15.608360290527344 + ], + [ + "▁disloyalty", + -15.608366966247559 + ], + [ + "▁appellee", + -15.608375549316406 + ], + [ + "▁memphis", + -15.608389854431152 + ], + [ + "JAY", + -15.608433723449707 + ], + [ + "▁Hormel", + -15.608502388000488 + ], + [ + "kilogram", + -15.608540534973145 + ], + [ + "destroyed", + -15.608553886413574 + ], + [ + "▁Manchurian", + -15.608576774597168 + ], + [ + "▁missense", + -15.60858154296875 + ], + [ + "▁psionic", + -15.608607292175293 + ], + [ + "▁sparred", + -15.608656883239746 + ], + [ + "▁Troubadour", + -15.608677864074707 + ], + [ + "▁вам", + -15.608707427978516 + ], + [ + "▁Luscious", + -15.608728408813477 + ], + [ + "▁Gritty", + -15.608739852905273 + ], + [ + "▁recusal", + -15.608742713928223 + ], + [ + "▁Reckon", + -15.608752250671387 + ], + [ + "Corona", + -15.608779907226562 + ], + [ + "▁Rubric", + -15.608798027038574 + ], + [ + "▁Ludacris", + -15.60884952545166 + ], + [ + "LORD", + -15.608875274658203 + ], + [ + "Vegan", + -15.608894348144531 + ], + [ + "penetrating", + -15.608914375305176 + ], + [ + "▁untainted", + -15.608927726745605 + ], + [ + "amido", + -15.608965873718262 + ], + [ + "▁Whalley", + -15.60897445678711 + ], + [ + "▁discoloured", + -15.60899829864502 + ], + [ + "ranium", + -15.609001159667969 + ], + [ + "▁Goodlatte", + -15.609051704406738 + ], + [ + "BANG", + -15.60908317565918 + ], + [ + "▁ADORABLE", + -15.609094619750977 + ], + [ + "▁transgressive", + -15.609174728393555 + ], + [ + "lsby", + -15.609180450439453 + ], + [ + "Birkenau", + -15.609228134155273 + ], + [ + "▁ROUGE", + -15.609246253967285 + ], + [ + "▁Lemmy", + -15.609251022338867 + ], + [ + "▁candidiasis", + -15.609251022338867 + ], + [ + "▁Etched", + -15.609292030334473 + ], + [ + "▁Ventolin", + -15.609309196472168 + ], + [ + "repository", + -15.609314918518066 + ], + [ + "▁Condenser", + -15.609342575073242 + ], + [ + "▁TRIPLE", + -15.609357833862305 + ], + [ + "▁Vasu", + -15.609387397766113 + ], + [ + "▁Kosten", + -15.609393119812012 + ], + [ + "▁Smoot", + -15.609399795532227 + ], + [ + "Skype", + -15.609402656555176 + ], + [ + "▁Celer", + -15.609403610229492 + ], + [ + "immolation", + -15.609418869018555 + ], + [ + "▁kemi", + -15.609437942504883 + ], + [ + "▁prokaryotic", + -15.609437942504883 + ], + [ + "👍", + -15.60946273803711 + ], + [ + "▁Precast", + -15.609463691711426 + ], + [ + "▁rearguard", + -15.60949420928955 + ], + [ + "▁Splenda", + -15.609517097473145 + ], + [ + "bedding", + -15.609655380249023 + ], + [ + "Horror", + -15.609661102294922 + ], + [ + "▁microplate", + -15.609731674194336 + ], + [ + "▁Schmal", + -15.609795570373535 + ], + [ + "▁aktuelle", + -15.609816551208496 + ], + [ + "ikku", + -15.609867095947266 + ], + [ + "▁Parthian", + -15.60989761352539 + ], + [ + "▁Lactation", + -15.609918594360352 + ], + [ + "▁Kirstjen", + -15.609929084777832 + ], + [ + "▁Birnbaum", + -15.610002517700195 + ], + [ + "▁JOINT", + -15.610004425048828 + ], + [ + "communal", + -15.610033988952637 + ], + [ + "▁Coakley", + -15.610039710998535 + ], + [ + "▁nonparametric", + -15.610054969787598 + ], + [ + "▁petabyte", + -15.610055923461914 + ], + [ + "▁untruthful", + -15.610098838806152 + ], + [ + "▁Zamboanga", + -15.610100746154785 + ], + [ + "Timothy", + -15.610101699829102 + ], + [ + "▁Synthesizer", + -15.610101699829102 + ], + [ + "▁YKK", + -15.610111236572266 + ], + [ + "Lilly", + -15.610163688659668 + ], + [ + "HDMI", + -15.610187530517578 + ], + [ + "▁Suzette", + -15.610221862792969 + ], + [ + "▁nerfed", + -15.610262870788574 + ], + [ + "▁Guillen", + -15.610283851623535 + ], + [ + "▁Webroot", + -15.610311508178711 + ], + [ + "▁Malayan", + -15.610322952270508 + ], + [ + "▁lipopolysaccharide", + -15.610346794128418 + ], + [ + "▁Taichung", + -15.610407829284668 + ], + [ + "▁Contessa", + -15.610419273376465 + ], + [ + "nicola", + -15.610445976257324 + ], + [ + "▁encaustic", + -15.610493659973145 + ], + [ + "▁tupperware", + -15.610493659973145 + ], + [ + "satisfactory", + -15.610495567321777 + ], + [ + "▁telepathically", + -15.610495567321777 + ], + [ + "▁BOOKING", + -15.610554695129395 + ], + [ + "▁Villegas", + -15.61055850982666 + ], + [ + "大学", + -15.610565185546875 + ], + [ + "ultimately", + -15.610712051391602 + ], + [ + "iegler", + -15.610730171203613 + ], + [ + "▁MINISTER", + -15.610776901245117 + ], + [ + "Burma", + -15.610812187194824 + ], + [ + "▁Lexical", + -15.610867500305176 + ], + [ + "müller", + -15.6108980178833 + ], + [ + "Climb", + -15.61091423034668 + ], + [ + "Surprise", + -15.61091423034668 + ], + [ + "▁colonizers", + -15.610947608947754 + ], + [ + "Collective", + -15.610962867736816 + ], + [ + "▁efter", + -15.611055374145508 + ], + [ + "атор", + -15.611089706420898 + ], + [ + "▁hygge", + -15.611111640930176 + ], + [ + "▁quotable", + -15.61114501953125 + ], + [ + "▁EXTENDED", + -15.611157417297363 + ], + [ + "▁ORTHO", + -15.611166954040527 + ], + [ + "▁Epilogue", + -15.61119270324707 + ], + [ + "▁TalkTalk", + -15.6112060546875 + ], + [ + "ificio", + -15.611211776733398 + ], + [ + "▁Shahrukh", + -15.611230850219727 + ], + [ + "▁Euripides", + -15.611254692077637 + ], + [ + "ään", + -15.611265182495117 + ], + [ + "▁Averaging", + -15.611279487609863 + ], + [ + "▁Coutts", + -15.611282348632812 + ], + [ + "лод", + -15.611294746398926 + ], + [ + "▁Chantelle", + -15.611295700073242 + ], + [ + "▁Sedaris", + -15.611297607421875 + ], + [ + "capability", + -15.611326217651367 + ], + [ + "▁Smriti", + -15.611331939697266 + ], + [ + "▁MOVEMENT", + -15.611339569091797 + ], + [ + "▁Dauber", + -15.611443519592285 + ], + [ + "▁polarities", + -15.611482620239258 + ], + [ + "▁DeLay", + -15.611536026000977 + ], + [ + "обр", + -15.611544609069824 + ], + [ + "▁İstanbul", + -15.611574172973633 + ], + [ + "▁bobber", + -15.611577033996582 + ], + [ + "prescribing", + -15.61158561706543 + ], + [ + "▁endearment", + -15.611599922180176 + ], + [ + "▁electrophysiology", + -15.611610412597656 + ], + [ + "japan", + -15.611639022827148 + ], + [ + "▁Babbage", + -15.611763954162598 + ], + [ + "▁Adjective", + -15.611788749694824 + ], + [ + "▁Anthro", + -15.611809730529785 + ], + [ + "instrumental", + -15.611821174621582 + ], + [ + "▁Yousuf", + -15.611833572387695 + ], + [ + "▁traitorous", + -15.611847877502441 + ], + [ + "▁Gymnast", + -15.611903190612793 + ], + [ + "▁eluted", + -15.611926078796387 + ], + [ + "▁Daedalus", + -15.611943244934082 + ], + [ + "ılı", + -15.611977577209473 + ], + [ + "▁Tamaki", + -15.61202335357666 + ], + [ + "ці", + -15.612029075622559 + ], + [ + "▁LEASE", + -15.612078666687012 + ], + [ + "Ugh", + -15.612138748168945 + ], + [ + "ίν", + -15.612142562866211 + ], + [ + "▁exigencies", + -15.612164497375488 + ], + [ + "▁ATHENS", + -15.612189292907715 + ], + [ + "▁McSweeney", + -15.612214088439941 + ], + [ + "▁decimation", + -15.612227439880371 + ], + [ + "▁Captcha", + -15.612231254577637 + ], + [ + "▁tinkling", + -15.612262725830078 + ], + [ + "▁Unsworth", + -15.612357139587402 + ], + [ + "▁Ripken", + -15.612373352050781 + ], + [ + "▁smokiness", + -15.61239242553711 + ], + [ + "▁Hashmi", + -15.612412452697754 + ], + [ + "▁neurotoxicity", + -15.612428665161133 + ], + [ + "▁Kammer", + -15.612462043762207 + ], + [ + "▁EXPLAIN", + -15.612485885620117 + ], + [ + "▁Vickery", + -15.612504005432129 + ], + [ + "▁Superficial", + -15.612586975097656 + ], + [ + "cussion", + -15.612588882446289 + ], + [ + "Omni", + -15.61265754699707 + ], + [ + "▁رو", + -15.612727165222168 + ], + [ + "▁WHEAT", + -15.612792015075684 + ], + [ + "▁Guacamole", + -15.612829208374023 + ], + [ + "▁GLAM", + -15.612831115722656 + ], + [ + "▁crooning", + -15.612860679626465 + ], + [ + "sentinel", + -15.612915992736816 + ], + [ + "لو", + -15.612922668457031 + ], + [ + "▁iptables", + -15.61296272277832 + ], + [ + "▁coalescing", + -15.613001823425293 + ], + [ + "▁BIGGER", + -15.61300277709961 + ], + [ + "プロ", + -15.613037109375 + ], + [ + "▁Bibliographic", + -15.613110542297363 + ], + [ + "hurricane", + -15.613126754760742 + ], + [ + "▁Greve", + -15.613141059875488 + ], + [ + "▁Rosslyn", + -15.6131591796875 + ], + [ + "▁Skynyrd", + -15.613247871398926 + ], + [ + "▁religio", + -15.613277435302734 + ], + [ + "psychoactive", + -15.6133394241333 + ], + [ + "▁allosteric", + -15.613346099853516 + ], + [ + "▁globulin", + -15.613351821899414 + ], + [ + "▁pitied", + -15.613362312316895 + ], + [ + "rifle", + -15.61336898803711 + ], + [ + "▁gynaecologist", + -15.613444328308105 + ], + [ + "▁Gautier", + -15.613445281982422 + ], + [ + "▁Mainframe", + -15.613555908203125 + ], + [ + "▁catalyzing", + -15.613592147827148 + ], + [ + "▁Salutation", + -15.613622665405273 + ], + [ + "configurable", + -15.613632202148438 + ], + [ + "▁Kalani", + -15.613640785217285 + ], + [ + "ስ", + -15.613666534423828 + ], + [ + "▁underestimation", + -15.613691329956055 + ], + [ + "▁Suzu", + -15.613717079162598 + ], + [ + "▁McEntire", + -15.613740921020508 + ], + [ + "▁unwed", + -15.613792419433594 + ], + [ + "▁Redshift", + -15.613801002502441 + ], + [ + "Sequence", + -15.613851547241211 + ], + [ + "▁Ashgate", + -15.613866806030273 + ], + [ + "石", + -15.613924026489258 + ], + [ + "▁decapitation", + -15.613937377929688 + ], + [ + "▁scintilla", + -15.613953590393066 + ], + [ + "ASIS", + -15.613977432250977 + ], + [ + "▁Resuscitation", + -15.61401081085205 + ], + [ + "▁مو", + -15.614020347595215 + ], + [ + "▁feasibly", + -15.614035606384277 + ], + [ + "aestheti", + -15.614044189453125 + ], + [ + "▁Powershell", + -15.61406135559082 + ], + [ + "以下", + -15.61407470703125 + ], + [ + "▁Twirl", + -15.614118576049805 + ], + [ + "▁Littlehampton", + -15.614157676696777 + ], + [ + "▁Jessop", + -15.614213943481445 + ], + [ + "▁Savoie", + -15.614222526550293 + ], + [ + "▁baklava", + -15.614285469055176 + ], + [ + "ів", + -15.61430835723877 + ], + [ + "▁AutoZone", + -15.614313125610352 + ], + [ + "▁POCKET", + -15.614418983459473 + ], + [ + "▁speculator", + -15.614437103271484 + ], + [ + "▁Reddish", + -15.614450454711914 + ], + [ + "▁clapboard", + -15.614489555358887 + ], + [ + "дав", + -15.614520072937012 + ], + [ + "▁Casumo", + -15.614543914794922 + ], + [ + "▁perplexity", + -15.614553451538086 + ], + [ + "▁anxiolytic", + -15.614578247070312 + ], + [ + "▁một", + -15.614578247070312 + ], + [ + "▁Hazlewood", + -15.614581108093262 + ], + [ + "ständig", + -15.614584922790527 + ], + [ + "▁indiscretions", + -15.614737510681152 + ], + [ + "▁Fredric", + -15.614799499511719 + ], + [ + "▁Pahlavi", + -15.614800453186035 + ], + [ + "▁Convex", + -15.614840507507324 + ], + [ + "Providing", + -15.614852905273438 + ], + [ + "▁uninstallation", + -15.614862442016602 + ], + [ + "▁neurocognitive", + -15.614866256713867 + ], + [ + "▁resumé", + -15.614876747131348 + ], + [ + "▁Prolific", + -15.614877700805664 + ], + [ + "▁ROBINSON", + -15.614877700805664 + ], + [ + "tención", + -15.614911079406738 + ], + [ + "▁Paganism", + -15.614911079406738 + ], + [ + "▁Urethane", + -15.614953994750977 + ], + [ + "Mozilla", + -15.614995956420898 + ], + [ + "▁MEMPHIS", + -15.615071296691895 + ], + [ + "▁SUBSTANCE", + -15.615120887756348 + ], + [ + "▁Furnishing", + -15.615153312683105 + ], + [ + "▁Gobble", + -15.615157127380371 + ], + [ + "▁NYFW", + -15.615169525146484 + ], + [ + "▁Shimbun", + -15.615177154541016 + ], + [ + "▁Decrypt", + -15.615185737609863 + ], + [ + "▁bradycardia", + -15.615194320678711 + ], + [ + "▁Ooster", + -15.615209579467773 + ], + [ + "▁Doubling", + -15.615233421325684 + ], + [ + "blitz", + -15.61523723602295 + ], + [ + "▁Trivial", + -15.615255355834961 + ], + [ + "▁Cagney", + -15.61526870727539 + ], + [ + "▁natura", + -15.615269660949707 + ], + [ + "▁также", + -15.615270614624023 + ], + [ + "≈", + -15.615345001220703 + ], + [ + "▁pinyin", + -15.615355491638184 + ], + [ + "▁Béla", + -15.615382194519043 + ], + [ + "▁Consumable", + -15.615391731262207 + ], + [ + "▁Widnes", + -15.615402221679688 + ], + [ + "▁encuentra", + -15.61544132232666 + ], + [ + "vocational", + -15.615514755249023 + ], + [ + "▁Farkas", + -15.615572929382324 + ], + [ + "▁btc", + -15.615577697753906 + ], + [ + "▁Horwitz", + -15.615580558776855 + ], + [ + "▁sarcoidosis", + -15.615663528442383 + ], + [ + "▁Einhorn", + -15.615665435791016 + ], + [ + "▁Raffi", + -15.615670204162598 + ], + [ + "▁Parmigiano", + -15.615737915039062 + ], + [ + "回路", + -15.61574935913086 + ], + [ + "▁Roeder", + -15.615791320800781 + ], + [ + "▁Rikki", + -15.615856170654297 + ], + [ + "▁Göteborg", + -15.615935325622559 + ], + [ + "▁Shuttleworth", + -15.61597728729248 + ], + [ + "ြ", + -15.615983963012695 + ], + [ + "▁Belanger", + -15.615991592407227 + ], + [ + "▁WATCHED", + -15.61600112915039 + ], + [ + "▁lugged", + -15.616036415100098 + ], + [ + "▁Oireachtas", + -15.616058349609375 + ], + [ + "▁steadier", + -15.616073608398438 + ], + [ + "▁SCREAM", + -15.61609935760498 + ], + [ + "▁baha", + -15.61613941192627 + ], + [ + "jurisdictional", + -15.616178512573242 + ], + [ + "▁Finasteride", + -15.616206169128418 + ], + [ + "▁tutte", + -15.616289138793945 + ], + [ + "▁DRUM", + -15.616345405578613 + ], + [ + "sourceforge", + -15.61636734008789 + ], + [ + "▁stadia", + -15.61638069152832 + ], + [ + "Immigration", + -15.616418838500977 + ], + [ + "égé", + -15.61645221710205 + ], + [ + "▁purposive", + -15.616503715515137 + ], + [ + "zą", + -15.61666202545166 + ], + [ + "orchestra", + -15.616663932800293 + ], + [ + "저", + -15.616679191589355 + ], + [ + "▁anthony", + -15.616690635681152 + ], + [ + "▁Suharto", + -15.616701126098633 + ], + [ + "▁Werder", + -15.616724967956543 + ], + [ + "▁общ", + -15.616726875305176 + ], + [ + "JACK", + -15.61673355102539 + ], + [ + "▁Dufour", + -15.616745948791504 + ], + [ + "▁plastid", + -15.616748809814453 + ], + [ + "▁lullabies", + -15.616774559020996 + ], + [ + "▁Bramley", + -15.616776466369629 + ], + [ + "otropi", + -15.616842269897461 + ], + [ + "▁EVANS", + -15.616851806640625 + ], + [ + "▁luz", + -15.616888046264648 + ], + [ + "blindness", + -15.616988182067871 + ], + [ + "▁Protectorate", + -15.617010116577148 + ], + [ + "▁TALENT", + -15.61704158782959 + ], + [ + "▁Tsuji", + -15.61713695526123 + ], + [ + "vape", + -15.617168426513672 + ], + [ + "▁Dyche", + -15.617179870605469 + ], + [ + "▁fibroid", + -15.61720085144043 + ], + [ + "▁Hairdresser", + -15.617219924926758 + ], + [ + "▁geico", + -15.617254257202148 + ], + [ + "▁Ladysmith", + -15.617267608642578 + ], + [ + "▁Oglethorpe", + -15.617271423339844 + ], + [ + "▁Gaultier", + -15.617300033569336 + ], + [ + "▁kishte", + -15.617342948913574 + ], + [ + "▁peritonitis", + -15.617342948913574 + ], + [ + "▁karl", + -15.617369651794434 + ], + [ + "▁franco", + -15.617401123046875 + ], + [ + "த்த", + -15.61740779876709 + ], + [ + "optimistic", + -15.617424011230469 + ], + [ + "▁Euthanasia", + -15.61744213104248 + ], + [ + "▁Oxbow", + -15.617452621459961 + ], + [ + "mixture", + -15.61747932434082 + ], + [ + "ctrl", + -15.61757755279541 + ], + [ + "adverse", + -15.617592811584473 + ], + [ + "▁01131", + -15.617602348327637 + ], + [ + "▁subrogation", + -15.617633819580078 + ], + [ + "▁tyke", + -15.617658615112305 + ], + [ + "Intermediate", + -15.617666244506836 + ], + [ + "earthquake", + -15.617666244506836 + ], + [ + "▁Nexstar", + -15.617673873901367 + ], + [ + "▁Doña", + -15.61776351928711 + ], + [ + "▁neuropeptide", + -15.617788314819336 + ], + [ + "Triangle", + -15.6177978515625 + ], + [ + "▁Pansy", + -15.617838859558105 + ], + [ + "▁stipulating", + -15.617862701416016 + ], + [ + "▁innervation", + -15.617865562438965 + ], + [ + "Rhine", + -15.617945671081543 + ], + [ + "▁marrë", + -15.61798095703125 + ], + [ + "Titanic", + -15.618003845214844 + ], + [ + "▁Whangarei", + -15.618011474609375 + ], + [ + "▁lanolin", + -15.618012428283691 + ], + [ + "▁Slavonic", + -15.618048667907715 + ], + [ + "ях", + -15.618049621582031 + ], + [ + "▁SEVENTY", + -15.618117332458496 + ], + [ + "▁Torsion", + -15.618130683898926 + ], + [ + "▁diwali", + -15.618176460266113 + ], + [ + "▁Ghor", + -15.618216514587402 + ], + [ + "▁ASSIGNORS", + -15.618233680725098 + ], + [ + "▁netherlands", + -15.618239402770996 + ], + [ + "BOOT", + -15.618241310119629 + ], + [ + "▁imploding", + -15.618308067321777 + ], + [ + "▁Учебное", + -15.618309020996094 + ], + [ + "Increasing", + -15.61833667755127 + ], + [ + "▁MEMORIAL", + -15.61835765838623 + ], + [ + "returnable", + -15.61839485168457 + ], + [ + "maturity", + -15.61843204498291 + ], + [ + "Nail", + -15.618441581726074 + ], + [ + "▁EQUAL", + -15.618450164794922 + ], + [ + "▁Absentee", + -15.618496894836426 + ], + [ + "▁Detoxification", + -15.618496894836426 + ], + [ + "▁Osteopathy", + -15.61855697631836 + ], + [ + "▁Gatland", + -15.618570327758789 + ], + [ + "▁Marmite", + -15.618576049804688 + ], + [ + "▁Fritsch", + -15.618606567382812 + ], + [ + "Pound", + -15.618609428405762 + ], + [ + "♂", + -15.61862564086914 + ], + [ + "▁Granular", + -15.61868667602539 + ], + [ + "BOOM", + -15.6187105178833 + ], + [ + "ถ", + -15.618728637695312 + ], + [ + "▁Ancillary", + -15.618753433227539 + ], + [ + "fascism", + -15.618757247924805 + ], + [ + "▁CLARA", + -15.618766784667969 + ], + [ + "▁electromagnetism", + -15.618804931640625 + ], + [ + "▁ELECTRO", + -15.618844032287598 + ], + [ + "▁CINEMA", + -15.618932723999023 + ], + [ + "▁ESSAY", + -15.61897087097168 + ], + [ + "▁cesium", + -15.61898422241211 + ], + [ + "Cmd", + -15.619009971618652 + ], + [ + "▁Mcdonald", + -15.619044303894043 + ], + [ + "▁Spurlock", + -15.61909294128418 + ], + [ + "omatous", + -15.619112014770508 + ], + [ + "▁Chablis", + -15.619138717651367 + ], + [ + "▁Cymbalta", + -15.619140625 + ], + [ + "прос", + -15.61915111541748 + ], + [ + "Athletic", + -15.6191987991333 + ], + [ + "▁spu", + -15.619232177734375 + ], + [ + "▁Deckard", + -15.61927604675293 + ], + [ + "▁intranasal", + -15.619288444519043 + ], + [ + "▁Raimondo", + -15.619322776794434 + ], + [ + "思", + -15.619339942932129 + ], + [ + "▁Blizz", + -15.619356155395508 + ], + [ + "Madame", + -15.619367599487305 + ], + [ + "Һ", + -15.619397163391113 + ], + [ + "phoria", + -15.619401931762695 + ], + [ + "▁Surfside", + -15.619431495666504 + ], + [ + "Hottie", + -15.619455337524414 + ], + [ + "Abadi", + -15.619522094726562 + ], + [ + "▁dunia", + -15.619527816772461 + ], + [ + "▁ENGINEER", + -15.619551658630371 + ], + [ + "ặ", + -15.6195707321167 + ], + [ + "▁NerdWallet", + -15.619573593139648 + ], + [ + "▁broadleaf", + -15.61957836151123 + ], + [ + "▁GRAVE", + -15.619662284851074 + ], + [ + "▁enthalpy", + -15.619669914245605 + ], + [ + "▁Archeological", + -15.619688034057617 + ], + [ + "▁BLANK", + -15.619739532470703 + ], + [ + "Grape", + -15.619746208190918 + ], + [ + "▁REACTION", + -15.619833946228027 + ], + [ + "▁Korver", + -15.619842529296875 + ], + [ + "▁cretin", + -15.619845390319824 + ], + [ + "▁Saracen", + -15.619869232177734 + ], + [ + "кры", + -15.619874954223633 + ], + [ + "▁isthmus", + -15.619915008544922 + ], + [ + "่อ", + -15.61992359161377 + ], + [ + "▁prioritisation", + -15.619942665100098 + ], + [ + "Holstein", + -15.619948387145996 + ], + [ + "▁kurz", + -15.619955062866211 + ], + [ + "▁Hypertext", + -15.620028495788574 + ], + [ + "Amelia", + -15.620048522949219 + ], + [ + "▁vPN", + -15.620071411132812 + ], + [ + "▁Rundle", + -15.620085716247559 + ], + [ + "▁Esperance", + -15.62009048461914 + ], + [ + "▁Obelisk", + -15.620091438293457 + ], + [ + "▁Macular", + -15.62009334564209 + ], + [ + "▁Pizarro", + -15.62014102935791 + ], + [ + "ья", + -15.620147705078125 + ], + [ + "▁Adhesion", + -15.62021541595459 + ], + [ + "▁Vestal", + -15.620237350463867 + ], + [ + "▁Valerio", + -15.620287895202637 + ], + [ + "▁Dasgupta", + -15.620295524597168 + ], + [ + "▁beneficent", + -15.620307922363281 + ], + [ + "▁Smaug", + -15.620308876037598 + ], + [ + "▁WRITER", + -15.620314598083496 + ], + [ + "▁temporality", + -15.620325088500977 + ], + [ + "▁misdemeanour", + -15.620339393615723 + ], + [ + "▁Rigorous", + -15.62042236328125 + ], + [ + "▁misadventure", + -15.620424270629883 + ], + [ + "يف", + -15.620439529418945 + ], + [ + "認", + -15.62044620513916 + ], + [ + "äger", + -15.620473861694336 + ], + [ + "▁Cullman", + -15.620500564575195 + ], + [ + "biodegradable", + -15.620526313781738 + ], + [ + "▁daikon", + -15.620534896850586 + ], + [ + "▁felonious", + -15.62055778503418 + ], + [ + "Alias", + -15.620566368103027 + ], + [ + "▁Glück", + -15.620587348937988 + ], + [ + "▁Goosebumps", + -15.620587348937988 + ], + [ + "▁FrontPage", + -15.620594024658203 + ], + [ + "cystic", + -15.620614051818848 + ], + [ + "Orléans", + -15.620615005493164 + ], + [ + "▁Bisping", + -15.620683670043945 + ], + [ + "▁Shruti", + -15.62070083618164 + ], + [ + "▁ecclesial", + -15.620706558227539 + ], + [ + "▁REGISTERED", + -15.620744705200195 + ], + [ + "▁Technorati", + -15.620746612548828 + ], + [ + "▁Sukkot", + -15.6207857131958 + ], + [ + "频", + -15.6207914352417 + ], + [ + "▁conflation", + -15.620922088623047 + ], + [ + "▁heterodox", + -15.620928764343262 + ], + [ + "▁AppStore", + -15.620933532714844 + ], + [ + "▁BRANCH", + -15.621024131774902 + ], + [ + "▁Rohrabacher", + -15.621058464050293 + ], + [ + "▁Ganja", + -15.62106704711914 + ], + [ + "jiao", + -15.621150970458984 + ], + [ + "▁Complying", + -15.621191024780273 + ], + [ + "▁Aransas", + -15.621237754821777 + ], + [ + "▁Retweet", + -15.62128734588623 + ], + [ + "▁Bhandari", + -15.621289253234863 + ], + [ + "▁Mexi", + -15.621352195739746 + ], + [ + "▁FTIR", + -15.621390342712402 + ], + [ + "▁unquenchable", + -15.621406555175781 + ], + [ + "▁gumball", + -15.621516227722168 + ], + [ + "▁Cowper", + -15.621535301208496 + ], + [ + "▁boca", + -15.621561050415039 + ], + [ + "Burger", + -15.621596336364746 + ], + [ + "▁Boundless", + -15.621606826782227 + ], + [ + "▁Corrine", + -15.621642112731934 + ], + [ + "▁Sampdoria", + -15.621654510498047 + ], + [ + "▁Stuyvesant", + -15.621659278869629 + ], + [ + "Brussels", + -15.621684074401855 + ], + [ + "Rodriguez", + -15.621710777282715 + ], + [ + "▁Entrust", + -15.621723175048828 + ], + [ + "▁Slalom", + -15.621733665466309 + ], + [ + "▁maceration", + -15.621912002563477 + ], + [ + "▁cloistered", + -15.621922492980957 + ], + [ + "▁DEWALT", + -15.621928215026855 + ], + [ + "Perez", + -15.621932029724121 + ], + [ + "ῖ", + -15.621952056884766 + ], + [ + "▁Plugged", + -15.622003555297852 + ], + [ + "▁Decanter", + -15.62205696105957 + ], + [ + "▁Disturbed", + -15.622167587280273 + ], + [ + "▁aufge", + -15.622191429138184 + ], + [ + "▁Qamar", + -15.62220287322998 + ], + [ + "▁▲", + -15.622268676757812 + ], + [ + "blockchain", + -15.622320175170898 + ], + [ + "shoring", + -15.622343063354492 + ], + [ + "▁Gazeta", + -15.622359275817871 + ], + [ + "▁URGENT", + -15.622376441955566 + ], + [ + "▁cloche", + -15.622416496276855 + ], + [ + "ände", + -15.622417449951172 + ], + [ + "▁Ojibwe", + -15.622424125671387 + ], + [ + "▁Dunphy", + -15.622471809387207 + ], + [ + "▁Bovi", + -15.622488975524902 + ], + [ + "Merit", + -15.622498512268066 + ], + [ + "пас", + -15.622647285461426 + ], + [ + "DOMIN", + -15.62265396118164 + ], + [ + "Frontier", + -15.622802734375 + ], + [ + "▁Farouk", + -15.62281322479248 + ], + [ + "▁Stonington", + -15.622873306274414 + ], + [ + "▁Nakhon", + -15.622896194458008 + ], + [ + "▁Updike", + -15.62292194366455 + ], + [ + "▁Junaid", + -15.622941970825195 + ], + [ + "Spencer", + -15.622978210449219 + ], + [ + "▁debridement", + -15.62299633026123 + ], + [ + "▁ALCOHOL", + -15.623021125793457 + ], + [ + "leistung", + -15.62303638458252 + ], + [ + "▁Wizardry", + -15.623088836669922 + ], + [ + "attendance", + -15.62311840057373 + ], + [ + "▁legitimise", + -15.62311840057373 + ], + [ + "▁paradigmatic", + -15.623163223266602 + ], + [ + "▁cpanel", + -15.6231689453125 + ], + [ + "▁prickle", + -15.623175621032715 + ], + [ + "▁dalliance", + -15.623187065124512 + ], + [ + "▁Jenifer", + -15.62320327758789 + ], + [ + "▁natu", + -15.623212814331055 + ], + [ + "Knox", + -15.623242378234863 + ], + [ + "νη", + -15.623257637023926 + ], + [ + "▁temerity", + -15.623319625854492 + ], + [ + "▁Shiki", + -15.623353004455566 + ], + [ + "▁Wodehouse", + -15.623369216918945 + ], + [ + "▁encontra", + -15.623406410217285 + ], + [ + "▁Picturesque", + -15.623429298400879 + ], + [ + "▁약", + -15.623443603515625 + ], + [ + "▁Shrestha", + -15.623468399047852 + ], + [ + "▁Conjugate", + -15.623518943786621 + ], + [ + "▁McAlister", + -15.623549461364746 + ], + [ + "QUIN", + -15.623551368713379 + ], + [ + "സ", + -15.623567581176758 + ], + [ + "Pixar", + -15.623568534851074 + ], + [ + "▁japonica", + -15.623594284057617 + ], + [ + "▁Alliant", + -15.62360668182373 + ], + [ + "orientierte", + -15.623723030090332 + ], + [ + "▁Gadkari", + -15.62373161315918 + ], + [ + "▁Kristopher", + -15.623732566833496 + ], + [ + "▁Jussi", + -15.623747825622559 + ], + [ + "▁Pfeffer", + -15.623770713806152 + ], + [ + "▁avaliable", + -15.623772621154785 + ], + [ + "▁AFSCME", + -15.62379264831543 + ], + [ + "▁bloatware", + -15.623889923095703 + ], + [ + "▁suckle", + -15.623891830444336 + ], + [ + "▁Changzhou", + -15.623932838439941 + ], + [ + "Sesame", + -15.62393856048584 + ], + [ + "▁Chandrasekhar", + -15.623991012573242 + ], + [ + "Offset", + -15.62403678894043 + ], + [ + "▁EVENING", + -15.624112129211426 + ], + [ + "▁BENEFIT", + -15.624119758605957 + ], + [ + "IVITY", + -15.624161720275879 + ], + [ + "▁Khara", + -15.624175071716309 + ], + [ + "▁Magdeburg", + -15.624215126037598 + ], + [ + "▁Fuzhou", + -15.62426471710205 + ], + [ + "▁Folau", + -15.62428092956543 + ], + [ + "▁ADVERTISING", + -15.624289512634277 + ], + [ + "manufacture", + -15.624343872070312 + ], + [ + "▁Chavis", + -15.624373435974121 + ], + [ + "▁stich", + -15.624391555786133 + ], + [ + "▁succesfully", + -15.624421119689941 + ], + [ + "▁bantam", + -15.624480247497559 + ], + [ + "▁Metrology", + -15.624491691589355 + ], + [ + "▁Mythical", + -15.624521255493164 + ], + [ + "▁Scanned", + -15.624560356140137 + ], + [ + "▁Sigrid", + -15.624574661254883 + ], + [ + "▁Kilbride", + -15.624603271484375 + ], + [ + "больш", + -15.624605178833008 + ], + [ + "sdottir", + -15.624613761901855 + ], + [ + "▁destructor", + -15.624632835388184 + ], + [ + "▁MVNO", + -15.6246337890625 + ], + [ + "显示", + -15.62464427947998 + ], + [ + "ensemble", + -15.624650001525879 + ], + [ + "▁Monoxide", + -15.624661445617676 + ], + [ + "▁Graziano", + -15.624798774719238 + ], + [ + "goldentabs", + -15.624825477600098 + ], + [ + "Diaz", + -15.624872207641602 + ], + [ + "▁Chibok", + -15.62491512298584 + ], + [ + "patron", + -15.624948501586914 + ], + [ + "ojmë", + -15.624968528747559 + ], + [ + "▁Veyron", + -15.624968528747559 + ], + [ + "indicate", + -15.625012397766113 + ], + [ + "GREAT", + -15.62501335144043 + ], + [ + "eventbrite", + -15.625103950500488 + ], + [ + "▁Sandoz", + -15.625173568725586 + ], + [ + "Stalin", + -15.625244140625 + ], + [ + "▁gucci", + -15.625248908996582 + ], + [ + "▁확인", + -15.625286102294922 + ], + [ + "▁acetonitrile", + -15.625310897827148 + ], + [ + "SESSION", + -15.625313758850098 + ], + [ + "▁Goodfellow", + -15.62533187866211 + ], + [ + "▁Crappie", + -15.62541389465332 + ], + [ + "▁Thabo", + -15.62543773651123 + ], + [ + "▁Conclude", + -15.625439643859863 + ], + [ + "ameen", + -15.625462532043457 + ], + [ + "▁prati", + -15.625473976135254 + ], + [ + "▁confab", + -15.625507354736328 + ], + [ + "virginia", + -15.62552547454834 + ], + [ + "▁Pathological", + -15.625539779663086 + ], + [ + "tighten", + -15.625608444213867 + ], + [ + "▁Maynooth", + -15.6256103515625 + ], + [ + "▁linden", + -15.625638961791992 + ], + [ + "▁Cleland", + -15.625643730163574 + ], + [ + "Jenner", + -15.625718116760254 + ], + [ + "TRUE", + -15.625731468200684 + ], + [ + "▁rochester", + -15.625734329223633 + ], + [ + "MFT", + -15.625748634338379 + ], + [ + "▁clumsiness", + -15.625760078430176 + ], + [ + "▁palisade", + -15.625760078430176 + ], + [ + "▁hawaiian", + -15.625765800476074 + ], + [ + "▁rachel", + -15.625863075256348 + ], + [ + "▁bevacizumab", + -15.625884056091309 + ], + [ + "▁한국", + -15.625885009765625 + ], + [ + "▁unstated", + -15.625893592834473 + ], + [ + "▁Isaak", + -15.62605094909668 + ], + [ + "▁Peloponnese", + -15.626084327697754 + ], + [ + "▁Velar", + -15.62609577178955 + ], + [ + "▁PFOA", + -15.626145362854004 + ], + [ + "▁Giese", + -15.626147270202637 + ], + [ + "▁colonise", + -15.62619686126709 + ], + [ + "ött", + -15.626261711120605 + ], + [ + "▁Volgograd", + -15.62630844116211 + ], + [ + "▁KEEPING", + -15.626320838928223 + ], + [ + "visión", + -15.62632942199707 + ], + [ + "lubber", + -15.6263427734375 + ], + [ + "▁progressivism", + -15.626447677612305 + ], + [ + "Cutting", + -15.62646198272705 + ], + [ + "▁uncommitted", + -15.62647819519043 + ], + [ + "STAND", + -15.626556396484375 + ], + [ + "▁Erlbaum", + -15.626632690429688 + ], + [ + "▁POMPEI", + -15.62665843963623 + ], + [ + "▁baik", + -15.62665843963623 + ], + [ + "▁Enthusiastic", + -15.62667179107666 + ], + [ + "▁blotch", + -15.626684188842773 + ], + [ + "▁permethrin", + -15.626708030700684 + ], + [ + "▁boorish", + -15.626717567443848 + ], + [ + "▁SORT", + -15.62675952911377 + ], + [ + "▁Estella", + -15.626764297485352 + ], + [ + "▁Telefónica", + -15.62680721282959 + ], + [ + "▁DIMENSIONS", + -15.626845359802246 + ], + [ + "potassium", + -15.626864433288574 + ], + [ + "▁InventHelp", + -15.626887321472168 + ], + [ + "▁Cymbal", + -15.626931190490723 + ], + [ + "▁UnitedHealthcare", + -15.626932144165039 + ], + [ + "▁Stradivari", + -15.626957893371582 + ], + [ + "лез", + -15.626961708068848 + ], + [ + "▁Zepp", + -15.626976013183594 + ], + [ + "🏼", + -15.627008438110352 + ], + [ + "▁Softcover", + -15.6270170211792 + ], + [ + "▁материал", + -15.627020835876465 + ], + [ + "▁preprocessor", + -15.627046585083008 + ], + [ + "▁COLORADO", + -15.627059936523438 + ], + [ + "▁WRIGHT", + -15.62707805633545 + ], + [ + "▁Bluestacks", + -15.627096176147461 + ], + [ + "enhausen", + -15.62709903717041 + ], + [ + "▁twinned", + -15.627249717712402 + ], + [ + "outrageous", + -15.627264022827148 + ], + [ + "▁CONSTANT", + -15.627381324768066 + ], + [ + "▁Nasu", + -15.627392768859863 + ], + [ + "σα", + -15.62739372253418 + ], + [ + "▁funnily", + -15.627412796020508 + ], + [ + "▁Mashhad", + -15.62741756439209 + ], + [ + "▁Gregorius", + -15.627422332763672 + ], + [ + "▁heterologous", + -15.627481460571289 + ], + [ + "▁Chenoweth", + -15.627506256103516 + ], + [ + "▁Djur", + -15.627548217773438 + ], + [ + "순", + -15.627606391906738 + ], + [ + "ੁ", + -15.627656936645508 + ], + [ + "▁Contempt", + -15.627685546875 + ], + [ + "▁parlayed", + -15.627741813659668 + ], + [ + "▁SECRETARY", + -15.627763748168945 + ], + [ + "GRID", + -15.627771377563477 + ], + [ + "▁entrap", + -15.627787590026855 + ], + [ + "▁Tonbridge", + -15.627813339233398 + ], + [ + "▁hammam", + -15.627821922302246 + ], + [ + "▁uTorrent", + -15.627970695495605 + ], + [ + "▁appartment", + -15.627982139587402 + ], + [ + "▁Ocado", + -15.627983093261719 + ], + [ + "Κ", + -15.62802791595459 + ], + [ + "▁kolkata", + -15.628033638000488 + ], + [ + "▁Nicolson", + -15.628040313720703 + ], + [ + "▁adductor", + -15.628046035766602 + ], + [ + "▁Yuval", + -15.628055572509766 + ], + [ + "▁Linares", + -15.628059387207031 + ], + [ + "▁Yamazaki", + -15.62808609008789 + ], + [ + "▁ditë", + -15.62808609008789 + ], + [ + "ização", + -15.62810230255127 + ], + [ + "▁OpenCV", + -15.628113746643066 + ], + [ + "▁pedagogic", + -15.628143310546875 + ], + [ + "▁Novichok", + -15.628182411193848 + ], + [ + "▁Smirnoff", + -15.628281593322754 + ], + [ + "revelation", + -15.62832260131836 + ], + [ + "▁Lionheart", + -15.628334045410156 + ], + [ + "Thriller", + -15.628366470336914 + ], + [ + "▁Sawgrass", + -15.62837028503418 + ], + [ + "▁Beadle", + -15.628379821777344 + ], + [ + "מי", + -15.628500938415527 + ], + [ + "▁NIMH", + -15.628525733947754 + ], + [ + "passage", + -15.628541946411133 + ], + [ + "▁BEARING", + -15.628545761108398 + ], + [ + "ွ", + -15.628556251525879 + ], + [ + "▁proselytizing", + -15.628581047058105 + ], + [ + "▁catalase", + -15.628583908081055 + ], + [ + "ABEL", + -15.628585815429688 + ], + [ + "▁belching", + -15.628592491149902 + ], + [ + "ORDINA", + -15.6286039352417 + ], + [ + "▁Teknologi", + -15.628630638122559 + ], + [ + "▁Untersuchung", + -15.628684043884277 + ], + [ + "▁DailyMail", + -15.628704071044922 + ], + [ + "▁Chandan", + -15.628725051879883 + ], + [ + "▁Rishabh", + -15.62875747680664 + ], + [ + "▁Emeryville", + -15.628763198852539 + ], + [ + "بی", + -15.628790855407715 + ], + [ + "▁Darya", + -15.628809928894043 + ], + [ + "Juicy", + -15.62883186340332 + ], + [ + "▁Guzzi", + -15.62885570526123 + ], + [ + "▁Grosjean", + -15.62885856628418 + ], + [ + "ουν", + -15.628863334655762 + ], + [ + "▁Gabbert", + -15.628868103027344 + ], + [ + "Exist", + -15.628973960876465 + ], + [ + "▁Описание", + -15.628981590270996 + ], + [ + "▁Laotian", + -15.629000663757324 + ], + [ + "sulfonyl", + -15.629018783569336 + ], + [ + "MSFT", + -15.629020690917969 + ], + [ + "▁Chinchilla", + -15.629032135009766 + ], + [ + "▁Menachem", + -15.629040718078613 + ], + [ + "▁Neurologist", + -15.629058837890625 + ], + [ + "▁SCOPE", + -15.629060745239258 + ], + [ + "▁scapular", + -15.629066467285156 + ], + [ + "artisan", + -15.629080772399902 + ], + [ + "▁msgstr", + -15.629080772399902 + ], + [ + "▁abacus", + -15.62908935546875 + ], + [ + "▁Fructose", + -15.629256248474121 + ], + [ + "Invite", + -15.629280090332031 + ], + [ + "▁скачать", + -15.629406929016113 + ], + [ + "▁decontaminate", + -15.629434585571289 + ], + [ + "▁Vignette", + -15.629443168640137 + ], + [ + "▁Rauschenberg", + -15.629463195800781 + ], + [ + "▁Morrowind", + -15.629477500915527 + ], + [ + "▁Discworld", + -15.62949275970459 + ], + [ + "Chaos", + -15.629576683044434 + ], + [ + "▁Bedlam", + -15.629608154296875 + ], + [ + "▁Meteorite", + -15.629634857177734 + ], + [ + "accented", + -15.629659652709961 + ], + [ + "▁woud", + -15.62969970703125 + ], + [ + "▁Beetroot", + -15.629728317260742 + ], + [ + "EVILLE", + -15.629742622375488 + ], + [ + "ость", + -15.629743576049805 + ], + [ + "▁Snowfall", + -15.629852294921875 + ], + [ + "▁Beechwood", + -15.629855155944824 + ], + [ + "▁trivet", + -15.629857063293457 + ], + [ + "▁SHAKE", + -15.629892349243164 + ], + [ + "▁bronchodilator", + -15.629907608032227 + ], + [ + "▁DEVO", + -15.629960060119629 + ], + [ + "▁Jumia", + -15.629960060119629 + ], + [ + "▁flexural", + -15.629960060119629 + ], + [ + "▁Carnatic", + -15.629999160766602 + ], + [ + "Bark", + -15.630000114440918 + ], + [ + "▁pyjama", + -15.630003929138184 + ], + [ + "▁Rhythmic", + -15.630005836486816 + ], + [ + "템", + -15.63000774383545 + ], + [ + "▁gardaí", + -15.630016326904297 + ], + [ + "Melan", + -15.63001823425293 + ], + [ + "▁Anderlecht", + -15.630032539367676 + ], + [ + "NPT", + -15.630057334899902 + ], + [ + "▁හ", + -15.630057334899902 + ], + [ + "を示す", + -15.630122184753418 + ], + [ + "▁acuerdo", + -15.630157470703125 + ], + [ + "▁Groundwork", + -15.630168914794922 + ], + [ + "ợ", + -15.630182266235352 + ], + [ + "Fighter", + -15.630208969116211 + ], + [ + "▁nuclease", + -15.630234718322754 + ], + [ + "▁BEGINNING", + -15.63025951385498 + ], + [ + "enormous", + -15.630288124084473 + ], + [ + "maschinen", + -15.630290031433105 + ], + [ + "▁Moldavia", + -15.630314826965332 + ], + [ + "▁Xplore", + -15.630315780639648 + ], + [ + "Sadr", + -15.630385398864746 + ], + [ + "▁constitutively", + -15.630423545837402 + ], + [ + "▁infomation", + -15.630571365356445 + ], + [ + "▁Macklemore", + -15.630583763122559 + ], + [ + "▁Caligula", + -15.630614280700684 + ], + [ + "▁renegotiating", + -15.63062858581543 + ], + [ + "▁Jeunesse", + -15.630762100219727 + ], + [ + "▁➤", + -15.63077449798584 + ], + [ + "▁Monreal", + -15.630790710449219 + ], + [ + "▁germinating", + -15.630823135375977 + ], + [ + "ικά", + -15.63084602355957 + ], + [ + "duzione", + -15.63086223602295 + ], + [ + "收", + -15.630870819091797 + ], + [ + "▁Amplitude", + -15.63088607788086 + ], + [ + "▁keloid", + -15.630959510803223 + ], + [ + "▁ProRes", + -15.630961418151855 + ], + [ + "▁Saranac", + -15.631001472473145 + ], + [ + "Untitled", + -15.631072044372559 + ], + [ + "▁vacillate", + -15.631110191345215 + ], + [ + "▁παρ", + -15.631126403808594 + ], + [ + "▁burglarized", + -15.631145477294922 + ], + [ + "SHARE", + -15.631239891052246 + ], + [ + "▁chauvinism", + -15.631284713745117 + ], + [ + "COPY", + -15.631319046020508 + ], + [ + "▁DeepMind", + -15.631359100341797 + ], + [ + "▁Ngai", + -15.63137149810791 + ], + [ + "androgen", + -15.631438255310059 + ], + [ + "▁THOUSAND", + -15.631477355957031 + ], + [ + "▁público", + -15.631510734558105 + ], + [ + "describe", + -15.631537437438965 + ], + [ + "▁cellulitis", + -15.63154411315918 + ], + [ + "▁cuneiform", + -15.631561279296875 + ], + [ + "feuille", + -15.631567001342773 + ], + [ + "رس", + -15.631576538085938 + ], + [ + "▁chippy", + -15.631579399108887 + ], + [ + "▁imbibing", + -15.631586074829102 + ], + [ + "▁Gaslight", + -15.631612777709961 + ], + [ + "Punjab", + -15.631619453430176 + ], + [ + "HOLE", + -15.63163948059082 + ], + [ + "RRRRR", + -15.631656646728516 + ], + [ + "▁Hafez", + -15.631665229797363 + ], + [ + "سل", + -15.63167667388916 + ], + [ + "cortico", + -15.631686210632324 + ], + [ + "▁Liqueur", + -15.631686210632324 + ], + [ + "▁Trekker", + -15.631709098815918 + ], + [ + "▁ATTEMPT", + -15.63176155090332 + ], + [ + "▁kowtow", + -15.631786346435547 + ], + [ + "AGON", + -15.631787300109863 + ], + [ + "▁compet", + -15.631811141967773 + ], + [ + "▁INTERESTED", + -15.631814956665039 + ], + [ + "▁Bamber", + -15.63184928894043 + ], + [ + "▁Inhofe", + -15.63184928894043 + ], + [ + "▁Dalma", + -15.631851196289062 + ], + [ + "▁forsaking", + -15.631869316101074 + ], + [ + "▁alfredo", + -15.631912231445312 + ], + [ + "▁Michonne", + -15.631913185119629 + ], + [ + "▁affine", + -15.631954193115234 + ], + [ + "йд", + -15.63198471069336 + ], + [ + "▁Löw", + -15.632006645202637 + ], + [ + "▁ANYWAY", + -15.632049560546875 + ], + [ + "quartz", + -15.632158279418945 + ], + [ + "▁الك", + -15.632173538208008 + ], + [ + "▁Hewson", + -15.632197380065918 + ], + [ + "▁exoneration", + -15.63229751586914 + ], + [ + "▁Blundell", + -15.632338523864746 + ], + [ + "▁kamikaze", + -15.632413864135742 + ], + [ + "▁Neuromuscular", + -15.632495880126953 + ], + [ + "▁NACHI", + -15.632522583007812 + ], + [ + "▁Myntra", + -15.632542610168457 + ], + [ + "▁Bhagwat", + -15.632624626159668 + ], + [ + "▁pjesë", + -15.632628440856934 + ], + [ + "▁SIMPLY", + -15.63263988494873 + ], + [ + "▁Pranab", + -15.63266658782959 + ], + [ + "▁anthropometric", + -15.63271713256836 + ], + [ + "▁Dismissal", + -15.632762908935547 + ], + [ + "ന്", + -15.632827758789062 + ], + [ + "▁Wokingham", + -15.632837295532227 + ], + [ + "▁STUDIES", + -15.632841110229492 + ], + [ + "▁Poppies", + -15.63286304473877 + ], + [ + "▁acrylamide", + -15.632905006408691 + ], + [ + "▁Indivisible", + -15.632943153381348 + ], + [ + "ති", + -15.632956504821777 + ], + [ + "ừ", + -15.633016586303711 + ], + [ + "▁Omron", + -15.63301944732666 + ], + [ + "Various", + -15.63302230834961 + ], + [ + "▁clementine", + -15.633041381835938 + ], + [ + "▁snobby", + -15.63305377960205 + ], + [ + "▁Capuchin", + -15.63309383392334 + ], + [ + "▁endosperm", + -15.633195877075195 + ], + [ + "▁EMPIRE", + -15.633217811584473 + ], + [ + "unpublished", + -15.633235931396484 + ], + [ + "FOOD", + -15.633240699768066 + ], + [ + "▁Hiatt", + -15.63326358795166 + ], + [ + "▁methicillin", + -15.633269309997559 + ], + [ + "▁tangibly", + -15.633281707763672 + ], + [ + "methicone", + -15.633309364318848 + ], + [ + "nykh", + -15.633322715759277 + ], + [ + "▁fluoridated", + -15.633368492126465 + ], + [ + "SELF", + -15.633430480957031 + ], + [ + "▁Merthyr", + -15.633468627929688 + ], + [ + "▁Delica", + -15.633479118347168 + ], + [ + "▁Paranoid", + -15.633506774902344 + ], + [ + "▁Cautious", + -15.633530616760254 + ], + [ + "▁MODIS", + -15.633610725402832 + ], + [ + "▁Disparities", + -15.63361930847168 + ], + [ + "▁Albanese", + -15.633652687072754 + ], + [ + "▁Sabri", + -15.633676528930664 + ], + [ + "▁curiae", + -15.633700370788574 + ], + [ + "embrace", + -15.633764266967773 + ], + [ + "PSY", + -15.633835792541504 + ], + [ + "▁decolonization", + -15.633837699890137 + ], + [ + "▁Sailboat", + -15.633851051330566 + ], + [ + "▁pedicle", + -15.633868217468262 + ], + [ + "京", + -15.633889198303223 + ], + [ + "disciplin", + -15.633920669555664 + ], + [ + "▁Crease", + -15.633965492248535 + ], + [ + "▁FTLN", + -15.63397216796875 + ], + [ + "▁Mauritian", + -15.633979797363281 + ], + [ + "SPECIAL", + -15.634025573730469 + ], + [ + "▁Lichen", + -15.634040832519531 + ], + [ + "Marathon", + -15.63404369354248 + ], + [ + "▁Barzani", + -15.634055137634277 + ], + [ + "▁Poznań", + -15.634072303771973 + ], + [ + "▁Harington", + -15.634077072143555 + ], + [ + "▁Nutshell", + -15.634087562561035 + ], + [ + "▁VINYL", + -15.634184837341309 + ], + [ + "▁pacient", + -15.634222030639648 + ], + [ + "▁preconception", + -15.63422966003418 + ], + [ + "▁IGCSE", + -15.634232521057129 + ], + [ + "еѕе", + -15.634234428405762 + ], + [ + "▁Amalgam", + -15.634238243103027 + ], + [ + "▁Rizvi", + -15.634299278259277 + ], + [ + "▁Hagerty", + -15.63437557220459 + ], + [ + "hugh", + -15.634380340576172 + ], + [ + "▁somthing", + -15.634383201599121 + ], + [ + "Presbyterian", + -15.63443374633789 + ], + [ + "▁Claver", + -15.634451866149902 + ], + [ + "▁Apocalyptic", + -15.634474754333496 + ], + [ + "▁McClendon", + -15.634474754333496 + ], + [ + "▁Roleplaying", + -15.634517669677734 + ], + [ + "▁vacay", + -15.634530067443848 + ], + [ + "▁PLAT", + -15.634536743164062 + ], + [ + "evitch", + -15.634552955627441 + ], + [ + "▁Baggies", + -15.634556770324707 + ], + [ + "procedural", + -15.634559631347656 + ], + [ + "▁stearic", + -15.634629249572754 + ], + [ + "▁fiefdom", + -15.634650230407715 + ], + [ + "▁nonconforming", + -15.634760856628418 + ], + [ + "▁Unhealthy", + -15.634781837463379 + ], + [ + "▁Wollstonecraft", + -15.634800910949707 + ], + [ + "▁Dinwiddie", + -15.63482666015625 + ], + [ + "▁Tallulah", + -15.634830474853516 + ], + [ + "▁montane", + -15.634854316711426 + ], + [ + "▁CARRY", + -15.634889602661133 + ], + [ + "ổ", + -15.634902000427246 + ], + [ + "converged", + -15.634970664978027 + ], + [ + "▁Hepworth", + -15.635005950927734 + ], + [ + "terrace", + -15.63503360748291 + ], + [ + "▁Caterham", + -15.635035514831543 + ], + [ + "压", + -15.635055541992188 + ], + [ + "▁cincinnati", + -15.635103225708008 + ], + [ + "▁horticulturist", + -15.635103225708008 + ], + [ + "▁marjoram", + -15.635128021240234 + ], + [ + "cution", + -15.63512897491455 + ], + [ + "只", + -15.635133743286133 + ], + [ + "▁ventilating", + -15.63525390625 + ], + [ + "하다", + -15.635266304016113 + ], + [ + "▁Moncrief", + -15.635456085205078 + ], + [ + "透", + -15.635579109191895 + ], + [ + "Highlight", + -15.635640144348145 + ], + [ + "▁Burkett", + -15.635641098022461 + ], + [ + "▁MoneyGram", + -15.635689735412598 + ], + [ + "▁Klipsch", + -15.635754585266113 + ], + [ + "Willow", + -15.635781288146973 + ], + [ + "▁multifactorial", + -15.635783195495605 + ], + [ + "▁bazooka", + -15.635807991027832 + ], + [ + "▁martingale", + -15.635835647583008 + ], + [ + "playground", + -15.635839462280273 + ], + [ + "▁phenylalanine", + -15.635884284973145 + ], + [ + "▁quantized", + -15.635895729064941 + ], + [ + "▁Ramzan", + -15.635903358459473 + ], + [ + "▁Tocopheryl", + -15.635933876037598 + ], + [ + "▁flounce", + -15.636004447937012 + ], + [ + "▁McChrystal", + -15.63613510131836 + ], + [ + "▁BREACH", + -15.63620662689209 + ], + [ + "▁Piña", + -15.636370658874512 + ], + [ + "▁EHIC", + -15.636374473571777 + ], + [ + "▁Belated", + -15.636382102966309 + ], + [ + "▁Friedlander", + -15.636397361755371 + ], + [ + "WILD", + -15.636408805847168 + ], + [ + "▁retouched", + -15.63647747039795 + ], + [ + "9780", + -15.636520385742188 + ], + [ + "Poison", + -15.636524200439453 + ], + [ + "coagulation", + -15.636551856994629 + ], + [ + "▁Bercow", + -15.636603355407715 + ], + [ + "▁charset", + -15.636662483215332 + ], + [ + "▁TeamViewer", + -15.636675834655762 + ], + [ + "▁penmanship", + -15.63669490814209 + ], + [ + "CHARGE", + -15.636697769165039 + ], + [ + "▁minutia", + -15.63670825958252 + ], + [ + "Oncology", + -15.636802673339844 + ], + [ + "▁fascinator", + -15.636816024780273 + ], + [ + "▁Biodegradable", + -15.63681697845459 + ], + [ + "▁Linalool", + -15.63689136505127 + ], + [ + "▁Pinkett", + -15.636923789978027 + ], + [ + "未", + -15.636962890625 + ], + [ + "▁पा", + -15.636987686157227 + ], + [ + "▁idaho", + -15.636998176574707 + ], + [ + "▁Tailwind", + -15.637100219726562 + ], + [ + "▁Muncy", + -15.637123107910156 + ], + [ + "▁Hesperia", + -15.637186050415039 + ], + [ + "▁COVERAGE", + -15.63720703125 + ], + [ + "Loughlin", + -15.637219429016113 + ], + [ + "tropia", + -15.637229919433594 + ], + [ + "▁Microdermabrasion", + -15.63729476928711 + ], + [ + "▁confounders", + -15.63730239868164 + ], + [ + "Objective", + -15.637321472167969 + ], + [ + "▁Koscielny", + -15.637371063232422 + ], + [ + "出力", + -15.637374877929688 + ], + [ + "▁interprofessional", + -15.637377738952637 + ], + [ + "▁Hennig", + -15.637420654296875 + ], + [ + "▁semaine", + -15.637423515319824 + ], + [ + "▁NDSU", + -15.63742446899414 + ], + [ + "▁abrogate", + -15.637553215026855 + ], + [ + "suspend", + -15.637575149536133 + ], + [ + "initialize", + -15.637580871582031 + ], + [ + "▁“", + -15.637598037719727 + ], + [ + "▁PIZZA", + -15.637613296508789 + ], + [ + "▁Jørgen", + -15.63762378692627 + ], + [ + "Franc", + -15.63764762878418 + ], + [ + "▁Swedenborg", + -15.63765811920166 + ], + [ + "▁MKII", + -15.637689590454102 + ], + [ + "Banner", + -15.637701988220215 + ], + [ + "AGAN", + -15.637751579284668 + ], + [ + "▁MANUFACTURER", + -15.637754440307617 + ], + [ + "▁clase", + -15.637808799743652 + ], + [ + "locus", + -15.637809753417969 + ], + [ + "▁Hadassah", + -15.637825012207031 + ], + [ + "▁Disord", + -15.637834548950195 + ], + [ + "Teenage", + -15.637847900390625 + ], + [ + "sulfonic", + -15.637847900390625 + ], + [ + "▁Humberside", + -15.637863159179688 + ], + [ + "Appeal", + -15.637885093688965 + ], + [ + "▁Craftsmen", + -15.637921333312988 + ], + [ + "Gregory", + -15.637947082519531 + ], + [ + "▁Voj", + -15.637948989868164 + ], + [ + "▁Balzac", + -15.637993812561035 + ], + [ + "▁Oppenheim", + -15.638012886047363 + ], + [ + "Jamaica", + -15.638018608093262 + ], + [ + "Zulu", + -15.638032913208008 + ], + [ + "▁illusive", + -15.638041496276855 + ], + [ + "▁nikon", + -15.638047218322754 + ], + [ + "ʊ", + -15.638051986694336 + ], + [ + "▁Tesoro", + -15.638062477111816 + ], + [ + "டு", + -15.638096809387207 + ], + [ + "▁Jumanji", + -15.638104438781738 + ], + [ + "▁miscarried", + -15.638164520263672 + ], + [ + "▁Godavari", + -15.638181686401367 + ], + [ + "flavonoid", + -15.638189315795898 + ], + [ + "hypnosis", + -15.638224601745605 + ], + [ + "flipping", + -15.638252258300781 + ], + [ + "▁Adelman", + -15.638252258300781 + ], + [ + "▁Ameen", + -15.638317108154297 + ], + [ + "▁insubordination", + -15.638330459594727 + ], + [ + "▁XBRL", + -15.638361930847168 + ], + [ + "НИ", + -15.63838005065918 + ], + [ + "▁кор", + -15.638383865356445 + ], + [ + "▁Transcribe", + -15.63839340209961 + ], + [ + "▁Fondazione", + -15.638394355773926 + ], + [ + "▁covalently", + -15.638428688049316 + ], + [ + "▁Kamchatka", + -15.63843059539795 + ], + [ + "footprint", + -15.638450622558594 + ], + [ + "▁Archdeacon", + -15.638481140136719 + ], + [ + "▁Cranfield", + -15.638503074645996 + ], + [ + "בי", + -15.638534545898438 + ], + [ + "▁Dispensing", + -15.638558387756348 + ], + [ + "autism", + -15.638561248779297 + ], + [ + "lassen", + -15.638572692871094 + ], + [ + "▁LaCrosse", + -15.638632774353027 + ], + [ + "ይ", + -15.638657569885254 + ], + [ + "▁Podgorica", + -15.638657569885254 + ], + [ + "▁McCurdy", + -15.638686180114746 + ], + [ + "▁Conceded", + -15.638688087463379 + ], + [ + "▁multimillionaire", + -15.638700485229492 + ], + [ + "チャ", + -15.638724327087402 + ], + [ + "▁oesophagus", + -15.638733863830566 + ], + [ + "▁LINKED", + -15.6387357711792 + ], + [ + "▁Miramax", + -15.638737678527832 + ], + [ + "▁Foxtrot", + -15.638764381408691 + ], + [ + "▁Migrating", + -15.638799667358398 + ], + [ + "▁McKellen", + -15.638816833496094 + ], + [ + "▁Neruda", + -15.63883113861084 + ], + [ + "▁acclimatization", + -15.638859748840332 + ], + [ + "▁Nikolaj", + -15.638866424560547 + ], + [ + "▁OFFERED", + -15.638885498046875 + ], + [ + "▁Molybdenum", + -15.638960838317871 + ], + [ + "▁Orpheum", + -15.638960838317871 + ], + [ + "rën", + -15.638991355895996 + ], + [ + "▁isothermal", + -15.638998985290527 + ], + [ + "▁Oxbridge", + -15.639007568359375 + ], + [ + "配置", + -15.639023780822754 + ], + [ + "▁Cocina", + -15.63914966583252 + ], + [ + "▁Suhr", + -15.6392183303833 + ], + [ + "∗", + -15.639251708984375 + ], + [ + "▁contenu", + -15.639269828796387 + ], + [ + "▁minicab", + -15.639287948608398 + ], + [ + "▁Influencing", + -15.639289855957031 + ], + [ + "▁Iwobi", + -15.639320373535156 + ], + [ + "قر", + -15.639395713806152 + ], + [ + "SMITH", + -15.639396667480469 + ], + [ + "èche", + -15.639410972595215 + ], + [ + "≠", + -15.639440536499023 + ], + [ + "approve", + -15.63947868347168 + ], + [ + "ਹ", + -15.639542579650879 + ], + [ + "▁superconductivity", + -15.639542579650879 + ], + [ + "▁Chetan", + -15.63955020904541 + ], + [ + "▁Bobrovsky", + -15.639571189880371 + ], + [ + "▁Wrocław", + -15.639617919921875 + ], + [ + "Comparison", + -15.639655113220215 + ], + [ + "▁CyberEd", + -15.639684677124023 + ], + [ + "▁Clarifying", + -15.639732360839844 + ], + [ + "▁Castellan", + -15.639739036560059 + ], + [ + "的に", + -15.639759063720703 + ], + [ + "▁Aminu", + -15.639776229858398 + ], + [ + "▁minutos", + -15.639789581298828 + ], + [ + "Rookie", + -15.639801979064941 + ], + [ + "▁allopurinol", + -15.639845848083496 + ], + [ + "pharmacological", + -15.639857292175293 + ], + [ + "galaxy", + -15.639945983886719 + ], + [ + "Navigation", + -15.639957427978516 + ], + [ + "Facial", + -15.639982223510742 + ], + [ + "▁Bendix", + -15.639989852905273 + ], + [ + "▁Administered", + -15.640028953552246 + ], + [ + "▁ARRIVE", + -15.640043258666992 + ], + [ + "▁Ensuite", + -15.640074729919434 + ], + [ + "wogy", + -15.640098571777344 + ], + [ + "▁Sourdough", + -15.64010238647461 + ], + [ + "▁Naresh", + -15.640115737915039 + ], + [ + "दी", + -15.640117645263672 + ], + [ + "▁unseren", + -15.640121459960938 + ], + [ + "▁exorcist", + -15.640124320983887 + ], + [ + "▁Gruff", + -15.64013671875 + ], + [ + "▁journo", + -15.640167236328125 + ], + [ + "▁steht", + -15.640172004699707 + ], + [ + "▁arcuate", + -15.640229225158691 + ], + [ + "▁booger", + -15.640233039855957 + ], + [ + "▁NINETY", + -15.640380859375 + ], + [ + "▁Othman", + -15.640414237976074 + ], + [ + "▁orgasmic", + -15.64042854309082 + ], + [ + "▁Tamerlan", + -15.640478134155273 + ], + [ + "▁Welterweight", + -15.6405029296875 + ], + [ + "▁Morphine", + -15.640518188476562 + ], + [ + "▁miserly", + -15.640522956848145 + ], + [ + "ffff", + -15.640594482421875 + ], + [ + "▁voile", + -15.640636444091797 + ], + [ + "▁Evesham", + -15.640639305114746 + ], + [ + "▁syncopated", + -15.640680313110352 + ], + [ + "▁Lunenburg", + -15.6406888961792 + ], + [ + "▁maxalt", + -15.640697479248047 + ], + [ + "▁confortable", + -15.640768051147461 + ], + [ + "▁GATA", + -15.640803337097168 + ], + [ + "▁Calabrese", + -15.640807151794434 + ], + [ + "applicant", + -15.640819549560547 + ], + [ + "▁Alitalia", + -15.640835762023926 + ], + [ + "▁broadsheet", + -15.640839576721191 + ], + [ + "▁Flavio", + -15.640851020812988 + ], + [ + "▁Inequalities", + -15.64088249206543 + ], + [ + "▁Burford", + -15.640892028808594 + ], + [ + "▁Steinbach", + -15.640909194946289 + ], + [ + "▁Abort", + -15.640918731689453 + ], + [ + "▁Pandu", + -15.640936851501465 + ], + [ + "▁replicator", + -15.640960693359375 + ], + [ + "▁Wheelock", + -15.640969276428223 + ], + [ + "▁Caloundra", + -15.640985488891602 + ], + [ + "дь", + -15.641063690185547 + ], + [ + "▁unrecognisable", + -15.641136169433594 + ], + [ + "▁TALKING", + -15.641179084777832 + ], + [ + "ablon", + -15.641180992126465 + ], + [ + "▁Eintracht", + -15.641212463378906 + ], + [ + "▁microfiche", + -15.641212463378906 + ], + [ + "▁Kajal", + -15.641271591186523 + ], + [ + "▁Swapping", + -15.64132022857666 + ], + [ + "▁crisscrossed", + -15.641350746154785 + ], + [ + "服务", + -15.64146900177002 + ], + [ + "BHS", + -15.641489028930664 + ], + [ + "▁Arellano", + -15.64149284362793 + ], + [ + "▁fishmonger", + -15.64150333404541 + ], + [ + "йти", + -15.641547203063965 + ], + [ + "▁reverently", + -15.641610145568848 + ], + [ + "twelve", + -15.641648292541504 + ], + [ + "CYC", + -15.641651153564453 + ], + [ + "▁phantasm", + -15.641656875610352 + ], + [ + "▁Universiteit", + -15.641693115234375 + ], + [ + "▁Creuset", + -15.641694068908691 + ], + [ + "▁Nutrisystem", + -15.641773223876953 + ], + [ + "▁supermajority", + -15.641783714294434 + ], + [ + "▁Veneta", + -15.641790390014648 + ], + [ + "▁Almeria", + -15.641801834106445 + ], + [ + "▁दि", + -15.641817092895508 + ], + [ + "▁gnostic", + -15.641830444335938 + ], + [ + "▁Behringer", + -15.641836166381836 + ], + [ + "▁Paranoia", + -15.641851425170898 + ], + [ + "▁Shohei", + -15.641860961914062 + ], + [ + "▁deleveraging", + -15.64189624786377 + ], + [ + "etzky", + -15.641924858093262 + ], + [ + "▁Agnieszka", + -15.641946792602539 + ], + [ + "confined", + -15.64204216003418 + ], + [ + "▁Fazl", + -15.64204216003418 + ], + [ + "▁Zondervan", + -15.642073631286621 + ], + [ + "▁Nomadic", + -15.642109870910645 + ], + [ + "▁oilsands", + -15.642128944396973 + ], + [ + "▁Lathrop", + -15.642212867736816 + ], + [ + "▁REFLECT", + -15.642289161682129 + ], + [ + "DriverEd", + -15.642319679260254 + ], + [ + "네", + -15.642326354980469 + ], + [ + "▁Klub", + -15.642341613769531 + ], + [ + "▁galactose", + -15.642355918884277 + ], + [ + "▁Lemire", + -15.64242935180664 + ], + [ + "▁Khel", + -15.642450332641602 + ], + [ + "▁Prostitute", + -15.642462730407715 + ], + [ + "▁Lactose", + -15.64250373840332 + ], + [ + "▁Philistine", + -15.64250373840332 + ], + [ + "▁Bittersweet", + -15.642504692077637 + ], + [ + "SPCA", + -15.642507553100586 + ], + [ + "▁EVOO", + -15.642507553100586 + ], + [ + "accent", + -15.642572402954102 + ], + [ + "▁readjustment", + -15.642578125 + ], + [ + "fortress", + -15.642582893371582 + ], + [ + "▁Baul", + -15.64262580871582 + ], + [ + "▁georgette", + -15.642626762390137 + ], + [ + "▁explo", + -15.64264965057373 + ], + [ + "▁OSCAR", + -15.642679214477539 + ], + [ + "▁Conestoga", + -15.642682075500488 + ], + [ + "▁тем", + -15.642765998840332 + ], + [ + "hydration", + -15.642776489257812 + ], + [ + "▁Debenture", + -15.64280891418457 + ], + [ + "▁Triangular", + -15.642905235290527 + ], + [ + "▁Hsien", + -15.643023490905762 + ], + [ + "▁ogni", + -15.643065452575684 + ], + [ + "打", + -15.64306640625 + ], + [ + "ciencia", + -15.643104553222656 + ], + [ + "▁Coronet", + -15.643204689025879 + ], + [ + "Cedar", + -15.643207550048828 + ], + [ + "▁Gradle", + -15.643238067626953 + ], + [ + "▁SUSTAIN", + -15.643240928649902 + ], + [ + "▁Embankment", + -15.643316268920898 + ], + [ + "Ahmad", + -15.643317222595215 + ], + [ + "▁Dreadful", + -15.643319129943848 + ], + [ + "▁freakishly", + -15.643348693847656 + ], + [ + "▁Arbitrary", + -15.643383026123047 + ], + [ + "▁Furnish", + -15.64350700378418 + ], + [ + "FOOT", + -15.643570899963379 + ], + [ + "Helm", + -15.643576622009277 + ], + [ + "▁verifier", + -15.643607139587402 + ], + [ + "DESIGN", + -15.643630981445312 + ], + [ + "▁telenovela", + -15.643747329711914 + ], + [ + "Montgomery", + -15.643760681152344 + ], + [ + "▁Fusco", + -15.643771171569824 + ], + [ + "▁autocorrelation", + -15.64377498626709 + ], + [ + "▁CONVERT", + -15.643782615661621 + ], + [ + "など", + -15.64378833770752 + ], + [ + "▁Boerne", + -15.643791198730469 + ], + [ + "▁BRILLIANT", + -15.643797874450684 + ], + [ + "▁Lutron", + -15.643811225891113 + ], + [ + "▁چ", + -15.643821716308594 + ], + [ + "▁Medjugorje", + -15.643874168395996 + ], + [ + "進", + -15.64389419555664 + ], + [ + "urethral", + -15.643896102905273 + ], + [ + "Yummy", + -15.643904685974121 + ], + [ + "码", + -15.643940925598145 + ], + [ + "▁Kankakee", + -15.643950462341309 + ], + [ + "论", + -15.643977165222168 + ], + [ + "▁Brittle", + -15.643998146057129 + ], + [ + "▁광", + -15.644027709960938 + ], + [ + "▁pře", + -15.644059181213379 + ], + [ + "▁Fabricated", + -15.644068717956543 + ], + [ + "▁Mondelez", + -15.644081115722656 + ], + [ + "Warehouse", + -15.644095420837402 + ], + [ + "▁bruxism", + -15.644103050231934 + ], + [ + "▁видео", + -15.64412784576416 + ], + [ + "▁Banach", + -15.644159317016602 + ], + [ + "▁AIRPORT", + -15.644169807434082 + ], + [ + "▁ONTARIO", + -15.644179344177246 + ], + [ + "stood", + -15.644250869750977 + ], + [ + "▁Cellulite", + -15.644317626953125 + ], + [ + "▁terbaik", + -15.64438247680664 + ], + [ + "▁disbelieving", + -15.644397735595703 + ], + [ + "▁Surcharge", + -15.644410133361816 + ], + [ + "▁phonon", + -15.644469261169434 + ], + [ + "▁Schweiz", + -15.644471168518066 + ], + [ + "▁Superdrug", + -15.644497871398926 + ], + [ + "scared", + -15.644503593444824 + ], + [ + "▁Birthright", + -15.644549369812012 + ], + [ + "▁kepada", + -15.644584655761719 + ], + [ + "ippus", + -15.644600868225098 + ], + [ + "Delaware", + -15.644613265991211 + ], + [ + "▁Graveside", + -15.644679069519043 + ], + [ + "▁Gaja", + -15.644686698913574 + ], + [ + "▁BREAKFAST", + -15.64468765258789 + ], + [ + "▁unswerving", + -15.644712448120117 + ], + [ + "▁boutonniere", + -15.644737243652344 + ], + [ + "▁recombine", + -15.644761085510254 + ], + [ + "▁Backlash", + -15.644796371459961 + ], + [ + "еаѕ", + -15.64482307434082 + ], + [ + "▁MOCA", + -15.644840240478516 + ], + [ + "▁turk", + -15.644844055175781 + ], + [ + "colorado", + -15.644872665405273 + ], + [ + "▁SummerSlam", + -15.644941329956055 + ], + [ + "▁WordCamp", + -15.644947052001953 + ], + [ + "▁Agronomy", + -15.644994735717773 + ], + [ + "▁Weiwei", + -15.645001411437988 + ], + [ + "▁typifies", + -15.645023345947266 + ], + [ + "Translate", + -15.645085334777832 + ], + [ + "▁để", + -15.645120620727539 + ], + [ + "▁Subscribing", + -15.645147323608398 + ], + [ + "▁Montefiore", + -15.645170211791992 + ], + [ + "▁피", + -15.645183563232422 + ], + [ + "▁Ethnographic", + -15.645191192626953 + ], + [ + "▁Mauldin", + -15.645196914672852 + ], + [ + "▁Mouni", + -15.645212173461914 + ], + [ + "▁Metropole", + -15.645233154296875 + ], + [ + "▁Shoah", + -15.645241737365723 + ], + [ + "▁McNaughton", + -15.645271301269531 + ], + [ + "▁Dreamworks", + -15.645377159118652 + ], + [ + "▁Ventana", + -15.645390510559082 + ], + [ + "condemn", + -15.645395278930664 + ], + [ + "Valle", + -15.645413398742676 + ], + [ + "ãƒ", + -15.64547061920166 + ], + [ + "▁cheesesteak", + -15.645475387573242 + ], + [ + "▁CONSUMER", + -15.645500183105469 + ], + [ + "рон", + -15.645524978637695 + ], + [ + "POLY", + -15.64555549621582 + ], + [ + "▁Austerity", + -15.645599365234375 + ], + [ + "▁Lasseter", + -15.64560604095459 + ], + [ + "▁받", + -15.645712852478027 + ], + [ + "▁DHgate", + -15.645753860473633 + ], + [ + "▁Crozier", + -15.645854949951172 + ], + [ + "▁CRESC", + -15.645857810974121 + ], + [ + "naphth", + -15.64586067199707 + ], + [ + "sensical", + -15.645873069763184 + ], + [ + "▁PGCE", + -15.645892143249512 + ], + [ + "▁delinquencies", + -15.645907402038574 + ], + [ + "▁Бо", + -15.645920753479004 + ], + [ + "▁Mumtaz", + -15.64595890045166 + ], + [ + "▁Sriram", + -15.646045684814453 + ], + [ + "dipine", + -15.646076202392578 + ], + [ + "▁RESCUE", + -15.64608383178711 + ], + [ + "Governmental", + -15.646087646484375 + ], + [ + "▁Quds", + -15.64610767364502 + ], + [ + "Renaissance", + -15.646162033081055 + ], + [ + "▁MISTAKE", + -15.646163940429688 + ], + [ + "▁Situational", + -15.646163940429688 + ], + [ + "accumulation", + -15.64627742767334 + ], + [ + "Controlled", + -15.646282196044922 + ], + [ + "▁Taiko", + -15.646305084228516 + ], + [ + "▁rekindling", + -15.64631462097168 + ], + [ + "▁Pocock", + -15.646346092224121 + ], + [ + "mosaic", + -15.646358489990234 + ], + [ + "▁Rambam", + -15.64648151397705 + ], + [ + "▁fritz", + -15.646500587463379 + ], + [ + "nervous", + -15.646539688110352 + ], + [ + "▁Thracian", + -15.646544456481934 + ], + [ + "▁Affection", + -15.646551132202148 + ], + [ + "▁Hammad", + -15.646586418151855 + ], + [ + "▁Athanas", + -15.646625518798828 + ], + [ + "울", + -15.6466703414917 + ], + [ + "explanation", + -15.646682739257812 + ], + [ + "olactone", + -15.646687507629395 + ], + [ + "▁Baobab", + -15.646734237670898 + ], + [ + "aggregation", + -15.646735191345215 + ], + [ + "▁JUNIOR", + -15.646748542785645 + ], + [ + "▁Transmitted", + -15.64675235748291 + ], + [ + "▁Tejada", + -15.64675521850586 + ], + [ + "▁distended", + -15.646764755249023 + ], + [ + "▁Wireshark", + -15.64677619934082 + ], + [ + "Curtis", + -15.646782875061035 + ], + [ + "▁LIBERTY", + -15.646785736083984 + ], + [ + "▁Marrero", + -15.6469144821167 + ], + [ + "▁NAVY", + -15.646970748901367 + ], + [ + "▁Aggravated", + -15.646976470947266 + ], + [ + "▁Guayaquil", + -15.646976470947266 + ], + [ + "▁HARTFORD", + -15.647004127502441 + ], + [ + "ോ", + -15.647103309631348 + ], + [ + "▁Caltrain", + -15.647104263305664 + ], + [ + "▁Lansdale", + -15.647115707397461 + ], + [ + "▁masochistic", + -15.647136688232422 + ], + [ + "▁Aupair", + -15.647146224975586 + ], + [ + "▁wholesaling", + -15.647163391113281 + ], + [ + "kitten", + -15.647191047668457 + ], + [ + "▁Jogging", + -15.647215843200684 + ], + [ + "▁bombast", + -15.647215843200684 + ], + [ + "▁Toscana", + -15.647282600402832 + ], + [ + "▁microflora", + -15.647286415100098 + ], + [ + "▁PLENTY", + -15.647324562072754 + ], + [ + "crazed", + -15.647334098815918 + ], + [ + "▁Shafiq", + -15.647369384765625 + ], + [ + "Shenzhen", + -15.647372245788574 + ], + [ + "▁Mohler", + -15.647384643554688 + ], + [ + "▁Pickwick", + -15.6474027633667 + ], + [ + "▁FRIENDLY", + -15.647404670715332 + ], + [ + "▁Meraki", + -15.647425651550293 + ], + [ + "طر", + -15.647436141967773 + ], + [ + "▁Chahal", + -15.647459030151367 + ], + [ + "置", + -15.647479057312012 + ], + [ + "ivamente", + -15.647541999816895 + ], + [ + "▁Ludington", + -15.647584915161133 + ], + [ + "▁Baffle", + -15.647632598876953 + ], + [ + "▁Kijiji", + -15.647638320922852 + ], + [ + "▁renovator", + -15.647665023803711 + ], + [ + "▁imperceptibly", + -15.647689819335938 + ], + [ + "▁Placenta", + -15.647721290588379 + ], + [ + "Investigation", + -15.647730827331543 + ], + [ + "▁Unstoppable", + -15.64776611328125 + ], + [ + "▁phenytoin", + -15.64776611328125 + ], + [ + "▁LaRue", + -15.647791862487793 + ], + [ + "▁sherpa", + -15.647822380065918 + ], + [ + "▁waaay", + -15.64783763885498 + ], + [ + "arbitrary", + -15.647897720336914 + ], + [ + "▁Enfant", + -15.647970199584961 + ], + [ + "▁mugger", + -15.647970199584961 + ], + [ + "▁aversive", + -15.64798641204834 + ], + [ + "bootstrap", + -15.648012161254883 + ], + [ + "▁ichthyo", + -15.648022651672363 + ], + [ + "▁THUNDER", + -15.64802360534668 + ], + [ + "▁Mahwah", + -15.648073196411133 + ], + [ + "▁merupakan", + -15.648148536682129 + ], + [ + "▁Sardis", + -15.648170471191406 + ], + [ + "Marian", + -15.648194313049316 + ], + [ + "turtle", + -15.64821720123291 + ], + [ + "▁CRITICAL", + -15.648279190063477 + ], + [ + "▁Roxana", + -15.648294448852539 + ], + [ + "▁tahoe", + -15.648335456848145 + ], + [ + "azzini", + -15.648365020751953 + ], + [ + "▁Khoury", + -15.648399353027344 + ], + [ + "▁fractionated", + -15.64841079711914 + ], + [ + "▁Culpepper", + -15.648458480834961 + ], + [ + "▁Finesse", + -15.648545265197754 + ], + [ + "▁Ridder", + -15.648553848266602 + ], + [ + "▁compatibil", + -15.648568153381348 + ], + [ + "▁mullion", + -15.648571014404297 + ], + [ + "ద", + -15.648581504821777 + ], + [ + "▁Savills", + -15.64860725402832 + ], + [ + "▁chronometer", + -15.64863109588623 + ], + [ + "Puerto", + -15.648650169372559 + ], + [ + "▁Complicating", + -15.648658752441406 + ], + [ + "▁Tromsø", + -15.648658752441406 + ], + [ + "▁REPLACEMENT", + -15.648667335510254 + ], + [ + "▁PROHIBIT", + -15.648736000061035 + ], + [ + "▁rivulet", + -15.648785591125488 + ], + [ + "▁Fareham", + -15.648818016052246 + ], + [ + "▁crostini", + -15.648837089538574 + ], + [ + "▁cinco", + -15.64883804321289 + ], + [ + "▁Mycoplasma", + -15.648862838745117 + ], + [ + "occhio", + -15.648863792419434 + ], + [ + "▁Sadducees", + -15.648913383483887 + ], + [ + "▁Fakhr", + -15.648933410644531 + ], + [ + "Kitten", + -15.64895248413086 + ], + [ + "▁Odebrecht", + -15.648967742919922 + ], + [ + "▁Salicylic", + -15.648990631103516 + ], + [ + "▁skri", + -15.648994445800781 + ], + [ + "▁《", + -15.649116516113281 + ], + [ + "▁Nomenclature", + -15.649117469787598 + ], + [ + "▁halcyon", + -15.64914321899414 + ], + [ + "▁Banister", + -15.649232864379883 + ], + [ + "Athens", + -15.649309158325195 + ], + [ + "Rubber", + -15.649335861206055 + ], + [ + "▁tracheo", + -15.649353981018066 + ], + [ + "▁Pristina", + -15.64942455291748 + ], + [ + "▁misclassification", + -15.649447441101074 + ], + [ + "▁Ayutthaya", + -15.649449348449707 + ], + [ + "▁Fidget", + -15.649473190307617 + ], + [ + "▁Unprecedented", + -15.649577140808105 + ], + [ + "▁cozies", + -15.649675369262695 + ], + [ + "occupancy", + -15.649797439575195 + ], + [ + "favorable", + -15.649798393249512 + ], + [ + "▁Brienne", + -15.649836540222168 + ], + [ + "▁Songwriting", + -15.649857521057129 + ], + [ + "▁Cocteau", + -15.649858474731445 + ], + [ + "▁Contoh", + -15.649913787841797 + ], + [ + "▁pièce", + -15.649935722351074 + ], + [ + "▁PROCESSING", + -15.649941444396973 + ], + [ + "inflammatories", + -15.6499605178833 + ], + [ + "▁Eggleston", + -15.649970054626465 + ], + [ + "▁Disagreement", + -15.64997386932373 + ], + [ + "▁PITCH", + -15.650006294250488 + ], + [ + "▁PhotoShop", + -15.650030136108398 + ], + [ + "ELLY", + -15.650074005126953 + ], + [ + "▁Nilgiri", + -15.650092124938965 + ], + [ + "realestate", + -15.650147438049316 + ], + [ + "وف", + -15.650155067443848 + ], + [ + "▁Sentimental", + -15.650191307067871 + ], + [ + "▁Implied", + -15.65030288696289 + ], + [ + "▁Krea", + -15.65047550201416 + ], + [ + "▁pangolin", + -15.65047836303711 + ], + [ + "▁Beauties", + -15.650489807128906 + ], + [ + "▁Lankford", + -15.650517463684082 + ], + [ + "Angie", + -15.650518417358398 + ], + [ + "gaben", + -15.650569915771484 + ], + [ + "▁bisexuality", + -15.650577545166016 + ], + [ + "▁Chazelle", + -15.65059757232666 + ], + [ + "▁reappraisal", + -15.65060043334961 + ], + [ + "▁bunkhouse", + -15.650609970092773 + ], + [ + "▁idolatrous", + -15.650625228881836 + ], + [ + "▁Gagarin", + -15.650673866271973 + ], + [ + "▁Wilken", + -15.650694847106934 + ], + [ + "▁Carnivore", + -15.650701522827148 + ], + [ + "▁Crittenden", + -15.650701522827148 + ], + [ + "▁traipsing", + -15.650701522827148 + ], + [ + "führung", + -15.650793075561523 + ], + [ + "ritten", + -15.650835990905762 + ], + [ + "▁canapes", + -15.650848388671875 + ], + [ + "▁pulverizing", + -15.65090560913086 + ], + [ + "熱", + -15.65093994140625 + ], + [ + "▁shoplifter", + -15.650955200195312 + ], + [ + "▁Lehenga", + -15.65096378326416 + ], + [ + "▁gauche", + -15.65097427368164 + ], + [ + "hawaii", + -15.651068687438965 + ], + [ + "ТЕ", + -15.651073455810547 + ], + [ + "Attend", + -15.651093482971191 + ], + [ + "▁Belgravia", + -15.651162147521973 + ], + [ + "EVENT", + -15.651171684265137 + ], + [ + "▁teflon", + -15.651264190673828 + ], + [ + "basal", + -15.651327133178711 + ], + [ + "▁Jehu", + -15.651342391967773 + ], + [ + "调", + -15.651344299316406 + ], + [ + "▁Sideways", + -15.65135669708252 + ], + [ + "▁Sardine", + -15.651460647583008 + ], + [ + "▁cytomegalovirus", + -15.651468276977539 + ], + [ + "▁romeo", + -15.65151309967041 + ], + [ + "setzt", + -15.65153980255127 + ], + [ + "blazer", + -15.651606559753418 + ], + [ + "▁Joerg", + -15.651651382446289 + ], + [ + "▁Pippen", + -15.651660919189453 + ], + [ + "▁McCready", + -15.651700973510742 + ], + [ + "ʹ", + -15.651750564575195 + ], + [ + "▁Swindle", + -15.651762962341309 + ], + [ + "Concern", + -15.651790618896484 + ], + [ + "▁papel", + -15.651874542236328 + ], + [ + "▁Gynecologic", + -15.651924133300781 + ], + [ + "▁hematological", + -15.652007102966309 + ], + [ + "▁Guntur", + -15.652047157287598 + ], + [ + "▁Terbaru", + -15.652134895324707 + ], + [ + "▁TYPO", + -15.652168273925781 + ], + [ + "▁Venous", + -15.652174949645996 + ], + [ + "언", + -15.65218448638916 + ], + [ + "▁radioisotope", + -15.652236938476562 + ], + [ + "▁AICTE", + -15.652284622192383 + ], + [ + "▁biophysics", + -15.652300834655762 + ], + [ + "▁CHEESE", + -15.652338027954102 + ], + [ + "▁daresay", + -15.65234661102295 + ], + [ + "▁Apologize", + -15.652473449707031 + ], + [ + "▁Jeune", + -15.652644157409668 + ], + [ + "▁BROKEN", + -15.65267562866211 + ], + [ + "Viagra", + -15.652731895446777 + ], + [ + "▁Bouncy", + -15.652817726135254 + ], + [ + "▁Farmingdale", + -15.652817726135254 + ], + [ + "iculus", + -15.652822494506836 + ], + [ + "genocide", + -15.652877807617188 + ], + [ + "▁INTERNAL", + -15.652933120727539 + ], + [ + "▁GROVE", + -15.652966499328613 + ], + [ + "▁Petrovic", + -15.652979850769043 + ], + [ + "▁AutoNation", + -15.65301513671875 + ], + [ + "▁credulity", + -15.653030395507812 + ], + [ + "▁Bidwell", + -15.65306568145752 + ], + [ + "ッチ", + -15.653081893920898 + ], + [ + "▁XMPP", + -15.653098106384277 + ], + [ + "▁Cyprian", + -15.653160095214844 + ], + [ + "▁seguro", + -15.653172492980957 + ], + [ + "▁circumnavigation", + -15.653236389160156 + ], + [ + "▁shakespeare", + -15.653261184692383 + ], + [ + "▁McGann", + -15.65329360961914 + ], + [ + "lectro", + -15.653307914733887 + ], + [ + "▁HOLDER", + -15.653326988220215 + ], + [ + "dropper", + -15.653343200683594 + ], + [ + "니다", + -15.653441429138184 + ], + [ + "▁beadboard", + -15.653481483459473 + ], + [ + "Hunger", + -15.653502464294434 + ], + [ + "▁JACKSONVILLE", + -15.653570175170898 + ], + [ + "▁Pollyanna", + -15.653581619262695 + ], + [ + "▁indianapolis", + -15.653597831726074 + ], + [ + "▁CEREC", + -15.653610229492188 + ], + [ + "▁calyx", + -15.653636932373047 + ], + [ + "ença", + -15.653637886047363 + ], + [ + "▁Hulse", + -15.653672218322754 + ], + [ + "intimate", + -15.653752326965332 + ], + [ + "▁Cantonment", + -15.65376091003418 + ], + [ + "▁Chitty", + -15.653776168823242 + ], + [ + "▁Aldermen", + -15.653803825378418 + ], + [ + "▁unrealistically", + -15.653820037841797 + ], + [ + "▁heraldry", + -15.653868675231934 + ], + [ + "ં", + -15.653876304626465 + ], + [ + "▁Rosenblum", + -15.653881072998047 + ], + [ + "▁Wobble", + -15.653915405273438 + ], + [ + "▁michel", + -15.653925895690918 + ], + [ + "▁Generac", + -15.653938293457031 + ], + [ + "▁Gurdwara", + -15.653953552246094 + ], + [ + "▁Optoelectronic", + -15.653968811035156 + ], + [ + "运", + -15.653986930847168 + ], + [ + "▁Eruption", + -15.654016494750977 + ], + [ + "습", + -15.654029846191406 + ], + [ + "▁misstated", + -15.654030799865723 + ], + [ + "▁Krasno", + -15.65406322479248 + ], + [ + "έχ", + -15.654072761535645 + ], + [ + "venlafaxine", + -15.654107093811035 + ], + [ + "fingerprint", + -15.654122352600098 + ], + [ + "▁manoeuvrability", + -15.654260635375977 + ], + [ + "stearate", + -15.654274940490723 + ], + [ + "▁Vicenza", + -15.654324531555176 + ], + [ + "▁Fidesz", + -15.654340744018555 + ], + [ + "▁frente", + -15.654390335083008 + ], + [ + "jungle", + -15.654406547546387 + ], + [ + "▁interconnectivity", + -15.654450416564941 + ], + [ + "▁Vellore", + -15.654481887817383 + ], + [ + "▁Trejo", + -15.6544828414917 + ], + [ + "compilation", + -15.654484748840332 + ], + [ + "▁omeprazole", + -15.654491424560547 + ], + [ + "▁Kosmos", + -15.654498100280762 + ], + [ + "▁reconfigurable", + -15.65450382232666 + ], + [ + "тен", + -15.654562950134277 + ], + [ + "civilized", + -15.654596328735352 + ], + [ + "▁Inhibit", + -15.65460205078125 + ], + [ + "▁scleroderma", + -15.654637336730957 + ], + [ + "symbolic", + -15.65468978881836 + ], + [ + "▁Betsoft", + -15.654704093933105 + ], + [ + "▁Haystack", + -15.65473747253418 + ], + [ + "▁HYDRA", + -15.654743194580078 + ], + [ + "▁Khaimah", + -15.654778480529785 + ], + [ + "▁SAMUEL", + -15.654830932617188 + ], + [ + "detox", + -15.654833793640137 + ], + [ + "▁EMBL", + -15.654881477355957 + ], + [ + "▁Festivities", + -15.654890060424805 + ], + [ + "▁curvilinear", + -15.654902458190918 + ], + [ + "▁accusatory", + -15.654928207397461 + ], + [ + "▁Trappist", + -15.654934883117676 + ], + [ + "▁neurosurgical", + -15.654976844787598 + ], + [ + "▁Sudhir", + -15.654993057250977 + ], + [ + "▁Nuestra", + -15.65500259399414 + ], + [ + "▁snigger", + -15.655009269714355 + ], + [ + "▁Arequipa", + -15.655108451843262 + ], + [ + "▁BATMAN", + -15.655116081237793 + ], + [ + "ическое", + -15.65513801574707 + ], + [ + "▁κατ", + -15.655158996582031 + ], + [ + "▁Thinkpad", + -15.65517520904541 + ], + [ + "▁calisthenics", + -15.655184745788574 + ], + [ + "oussi", + -15.655195236206055 + ], + [ + "Farber", + -15.655227661132812 + ], + [ + "▁KAREN", + -15.65524959564209 + ], + [ + "የ", + -15.65526294708252 + ], + [ + "用户", + -15.655280113220215 + ], + [ + "▁adobo", + -15.655348777770996 + ], + [ + "▁Skrull", + -15.655405044555664 + ], + [ + "microwave", + -15.655425071716309 + ], + [ + "▁ampoule", + -15.65546989440918 + ], + [ + "▁underclassmen", + -15.65549373626709 + ], + [ + "▁Keillor", + -15.655500411987305 + ], + [ + "▁adenine", + -15.655526161193848 + ], + [ + "eclipse", + -15.655560493469238 + ], + [ + "▁Invercargill", + -15.655595779418945 + ], + [ + "▁teaspoonful", + -15.655610084533691 + ], + [ + "▁Kaminsky", + -15.655670166015625 + ], + [ + "▁benedict", + -15.655684471130371 + ], + [ + "▁Gradual", + -15.655708312988281 + ], + [ + "▁segunda", + -15.655730247497559 + ], + [ + "▁TWIST", + -15.655732154846191 + ], + [ + "Distribution", + -15.655805587768555 + ], + [ + "▁Cobblestone", + -15.655805587768555 + ], + [ + "Beginning", + -15.655830383300781 + ], + [ + "▁McVey", + -15.655865669250488 + ], + [ + "▁roule", + -15.655877113342285 + ], + [ + "privat", + -15.65589427947998 + ], + [ + "▁unsavoury", + -15.655929565429688 + ], + [ + "▁Damsel", + -15.655975341796875 + ], + [ + "icolo", + -15.656012535095215 + ], + [ + "▁Aisling", + -15.656079292297363 + ], + [ + "▁ionizer", + -15.656084060668945 + ], + [ + "▁Slipknot", + -15.656094551086426 + ], + [ + "▁zara", + -15.656139373779297 + ], + [ + "▁Abiola", + -15.656166076660156 + ], + [ + "▁vibro", + -15.656176567077637 + ], + [ + "▁Aqaba", + -15.656195640563965 + ], + [ + "strengthening", + -15.656221389770508 + ], + [ + "Fluor", + -15.656246185302734 + ], + [ + "▁eroticism", + -15.65625286102295 + ], + [ + "EXPO", + -15.656255722045898 + ], + [ + "fragile", + -15.6563081741333 + ], + [ + "▁Maccabees", + -15.656371116638184 + ], + [ + "characteristic", + -15.656386375427246 + ], + [ + "便", + -15.656429290771484 + ], + [ + "Might", + -15.65644359588623 + ], + [ + "▁Conductive", + -15.656458854675293 + ], + [ + "▁MTSU", + -15.656461715698242 + ], + [ + "▁Resurgence", + -15.656469345092773 + ], + [ + "▁Divan", + -15.656476974487305 + ], + [ + "▁Bonobo", + -15.656490325927734 + ], + [ + "▁Whitson", + -15.65652084350586 + ], + [ + "▁Hegarty", + -15.656522750854492 + ], + [ + "Worst", + -15.656584739685059 + ], + [ + "▁Sedalia", + -15.656584739685059 + ], + [ + "▁Kontrol", + -15.656590461730957 + ], + [ + "kowicz", + -15.656600952148438 + ], + [ + "▁Blantyre", + -15.656624794006348 + ], + [ + "Hydroxy", + -15.656655311584473 + ], + [ + "▁Omagh", + -15.656655311584473 + ], + [ + "▁IMMEDIATE", + -15.656716346740723 + ], + [ + "▁Pranayama", + -15.656811714172363 + ], + [ + "▁SIMILAR", + -15.656829833984375 + ], + [ + "exploited", + -15.656853675842285 + ], + [ + "▁Falcao", + -15.656855583190918 + ], + [ + "าย", + -15.65687084197998 + ], + [ + "▁proclivities", + -15.656907081604004 + ], + [ + "▁greasing", + -15.656912803649902 + ], + [ + "▁Enchilada", + -15.65695858001709 + ], + [ + "▁fluorophore", + -15.657063484191895 + ], + [ + "▁Ramiro", + -15.65713119506836 + ], + [ + "Glasgow", + -15.657155990600586 + ], + [ + "▁Lafarge", + -15.657164573669434 + ], + [ + "▁Samadhi", + -15.657186508178711 + ], + [ + "▁Hormuz", + -15.657266616821289 + ], + [ + "▁Meenakshi", + -15.657472610473633 + ], + [ + "▁hallucinatory", + -15.657498359680176 + ], + [ + "▁Fabry", + -15.657511711120605 + ], + [ + "▁Scarsdale", + -15.657571792602539 + ], + [ + "▁Guardsmen", + -15.657577514648438 + ], + [ + "▁MgCl", + -15.657577514648438 + ], + [ + "▁Pirro", + -15.657577514648438 + ], + [ + "Naomi", + -15.657588005065918 + ], + [ + "ugli", + -15.657626152038574 + ], + [ + "▁Sunbelt", + -15.657691955566406 + ], + [ + "▁CONGRESS", + -15.65770435333252 + ], + [ + "kidney", + -15.657726287841797 + ], + [ + "▁Laoghaire", + -15.657754898071289 + ], + [ + "▁Sidewinder", + -15.657756805419922 + ], + [ + "Infant", + -15.657763481140137 + ], + [ + "▁Impedance", + -15.657781600952148 + ], + [ + "▁Colloidal", + -15.657853126525879 + ], + [ + "▁Giaco", + -15.657888412475586 + ], + [ + "▁impoverish", + -15.657951354980469 + ], + [ + "trotting", + -15.65795612335205 + ], + [ + "▁tricyclic", + -15.65796947479248 + ], + [ + "▁Rosehip", + -15.658024787902832 + ], + [ + "▁Θ", + -15.658025741577148 + ], + [ + "Byrne", + -15.65804386138916 + ], + [ + "▁Rohini", + -15.658102989196777 + ], + [ + "hindi", + -15.658103942871094 + ], + [ + "▁clinton", + -15.658134460449219 + ], + [ + "▁Bronfman", + -15.658198356628418 + ], + [ + "▁lidded", + -15.658242225646973 + ], + [ + "▁orthography", + -15.658273696899414 + ], + [ + "▁Multifamily", + -15.658306121826172 + ], + [ + "▁Fotograf", + -15.658317565917969 + ], + [ + "▁polygamous", + -15.658373832702637 + ], + [ + "▁Gammon", + -15.6583833694458 + ], + [ + "▁Pavli", + -15.658398628234863 + ], + [ + "▁Scrappy", + -15.658428192138672 + ], + [ + "athion", + -15.658434867858887 + ], + [ + "▁Dupuis", + -15.658451080322266 + ], + [ + "▁Bedminster", + -15.658461570739746 + ], + [ + "▁Koppel", + -15.658515930175781 + ], + [ + "Passenger", + -15.658580780029297 + ], + [ + "▁Expansive", + -15.658605575561523 + ], + [ + "propylene", + -15.658681869506836 + ], + [ + "▁Phobos", + -15.65869426727295 + ], + [ + "▁Dumbbell", + -15.658703804016113 + ], + [ + "▁Fredonia", + -15.65870475769043 + ], + [ + "▁biomedicine", + -15.65877914428711 + ], + [ + "▁nitroglycerin", + -15.658785820007324 + ], + [ + "bidding", + -15.658808708190918 + ], + [ + "algae", + -15.658823013305664 + ], + [ + "▁Rosamund", + -15.658855438232422 + ], + [ + "▁Submersible", + -15.658888816833496 + ], + [ + "▁studiously", + -15.658891677856445 + ], + [ + "▁obliterating", + -15.658914566040039 + ], + [ + "के", + -15.658916473388672 + ], + [ + "▁Motrin", + -15.658919334411621 + ], + [ + "▁vociferously", + -15.658923149108887 + ], + [ + "▁Bitmap", + -15.658966064453125 + ], + [ + "▁osteotomy", + -15.658970832824707 + ], + [ + "▁Radium", + -15.659010887145996 + ], + [ + "▁subsiding", + -15.659056663513184 + ], + [ + "disconnect", + -15.65910816192627 + ], + [ + "▁yuzu", + -15.659147262573242 + ], + [ + "▁Trammell", + -15.659205436706543 + ], + [ + "▁doilies", + -15.659250259399414 + ], + [ + "▁Ravenswood", + -15.65928840637207 + ], + [ + "▁Mavro", + -15.659384727478027 + ], + [ + "▁Dewalt", + -15.659445762634277 + ], + [ + "▁Nettie", + -15.659455299377441 + ], + [ + "causal", + -15.659491539001465 + ], + [ + "▁voyeuristic", + -15.659533500671387 + ], + [ + "▁Shearwater", + -15.659547805786133 + ], + [ + "▁Venturing", + -15.659547805786133 + ], + [ + "▁Salvi", + -15.659566879272461 + ], + [ + "▁salbutamol", + -15.659682273864746 + ], + [ + "▁alveoli", + -15.659685134887695 + ], + [ + "▁Для", + -15.659721374511719 + ], + [ + "▁microtransactions", + -15.659736633300781 + ], + [ + "▁Lytham", + -15.659768104553223 + ], + [ + "Scratch", + -15.659769058227539 + ], + [ + "▁impish", + -15.659769058227539 + ], + [ + "▁Preamble", + -15.659856796264648 + ], + [ + "▁Extremist", + -15.659941673278809 + ], + [ + "হ", + -15.65994644165039 + ], + [ + "▁Sargeant", + -15.659978866577148 + ], + [ + "morris", + -15.659980773925781 + ], + [ + "▁Bernoulli", + -15.659997940063477 + ], + [ + "▁Statistic", + -15.660028457641602 + ], + [ + "▁APPEAL", + -15.660110473632812 + ], + [ + "▁parallelogram", + -15.660179138183594 + ], + [ + "▁Limonene", + -15.660194396972656 + ], + [ + "▁NARRATOR", + -15.660204887390137 + ], + [ + "▁Froh", + -15.660228729248047 + ], + [ + "▁pecca", + -15.660247802734375 + ], + [ + "▁Fitzsimmons", + -15.660256385803223 + ], + [ + "utilised", + -15.660294532775879 + ], + [ + "عمل", + -15.66031551361084 + ], + [ + "▁tacoma", + -15.660344123840332 + ], + [ + "से", + -15.660386085510254 + ], + [ + "Sterling", + -15.660407066345215 + ], + [ + "▁Apopka", + -15.660438537597656 + ], + [ + "▁इस", + -15.660531044006348 + ], + [ + "Brahm", + -15.66054916381836 + ], + [ + "▁Dravidian", + -15.660573959350586 + ], + [ + "▁Telehealth", + -15.660589218139648 + ], + [ + "▁omnivorous", + -15.660592079162598 + ], + [ + "▁repackaging", + -15.660660743713379 + ], + [ + "Lieutenant", + -15.660688400268555 + ], + [ + "dwarf", + -15.660737037658691 + ], + [ + "▁Bielefeld", + -15.660746574401855 + ], + [ + "▁cavalcade", + -15.660798072814941 + ], + [ + "▁Zaza", + -15.660804748535156 + ], + [ + "▁decentralisation", + -15.660849571228027 + ], + [ + "▁Paycheck", + -15.66089153289795 + ], + [ + "▁symbiont", + -15.660901069641113 + ], + [ + "▁Midwinter", + -15.660941123962402 + ], + [ + "▁pradesh", + -15.66096019744873 + ], + [ + "▁InfoTrie", + -15.660979270935059 + ], + [ + "▁jeez", + -15.660994529724121 + ], + [ + "▁Sepulchre", + -15.661056518554688 + ], + [ + "▁sombrero", + -15.661115646362305 + ], + [ + "▁Krampus", + -15.66115951538086 + ], + [ + "▁Laodicea", + -15.661164283752441 + ], + [ + "▁syria", + -15.661214828491211 + ], + [ + "WASH", + -15.661247253417969 + ], + [ + "▁Baluchistan", + -15.661263465881348 + ], + [ + "▁meerkat", + -15.661340713500977 + ], + [ + "▁microbrewery", + -15.66134262084961 + ], + [ + "▁McAlpine", + -15.661355018615723 + ], + [ + "▁motilium", + -15.661368370056152 + ], + [ + "▁Collide", + -15.661396026611328 + ], + [ + "▁Unstable", + -15.661413192749023 + ], + [ + "▁Rosenblatt", + -15.661428451538086 + ], + [ + "▁Dukakis", + -15.661443710327148 + ], + [ + "factual", + -15.661456108093262 + ], + [ + "▁ovoid", + -15.661456108093262 + ], + [ + "▁pathophysiological", + -15.661469459533691 + ], + [ + "▁Worshipful", + -15.66147518157959 + ], + [ + "▁Kapital", + -15.661595344543457 + ], + [ + "Morph", + -15.66159725189209 + ], + [ + "▁Mukhtar", + -15.661667823791504 + ], + [ + "▁Seddon", + -15.661739349365234 + ], + [ + "▁strateg", + -15.661853790283203 + ], + [ + "▁Alprazolam", + -15.661857604980469 + ], + [ + "▁submerging", + -15.661934852600098 + ], + [ + "▁idyll", + -15.661966323852539 + ], + [ + "▁preternatural", + -15.661994934082031 + ], + [ + "adapter", + -15.662032127380371 + ], + [ + "ícia", + -15.662066459655762 + ], + [ + "▁Wyvern", + -15.662078857421875 + ], + [ + "▁Aurangzeb", + -15.662090301513672 + ], + [ + "▁BANGKOK", + -15.662116050720215 + ], + [ + "▁Kirov", + -15.662240982055664 + ], + [ + "▁kundalini", + -15.66224479675293 + ], + [ + "▁Imposing", + -15.662259101867676 + ], + [ + "optimization", + -15.662264823913574 + ], + [ + "seattle", + -15.66232967376709 + ], + [ + "▁transcranial", + -15.662400245666504 + ], + [ + "▁Whitbread", + -15.662416458129883 + ], + [ + "▁DEBUG", + -15.662420272827148 + ], + [ + "転", + -15.662424087524414 + ], + [ + "▁prematurity", + -15.662446022033691 + ], + [ + "▁grizzlies", + -15.662477493286133 + ], + [ + "▁zyban", + -15.662528038024902 + ], + [ + "▁Vassil", + -15.662530899047852 + ], + [ + "▁Galliano", + -15.66254711151123 + ], + [ + "▁Electrostatic", + -15.662576675415039 + ], + [ + "tragic", + -15.662620544433594 + ], + [ + "▁Schlegel", + -15.662629127502441 + ], + [ + "▁Genuity", + -15.662644386291504 + ], + [ + "Sanchez", + -15.662663459777832 + ], + [ + "▁Biopsy", + -15.662711143493652 + ], + [ + "▁Lilongwe", + -15.662711143493652 + ], + [ + "▁Aayog", + -15.662717819213867 + ], + [ + "▁saddening", + -15.662737846374512 + ], + [ + "▁Spurrier", + -15.662744522094727 + ], + [ + "▁Cuzco", + -15.662773132324219 + ], + [ + "▁ANTH", + -15.662797927856445 + ], + [ + "▁futsal", + -15.662832260131836 + ], + [ + "せ", + -15.66287612915039 + ], + [ + "▁COSMO", + -15.662883758544922 + ], + [ + "european", + -15.662891387939453 + ], + [ + "▁Schuette", + -15.6628999710083 + ], + [ + "▁Sawtooth", + -15.66299057006836 + ], + [ + "promoter", + -15.66301441192627 + ], + [ + "▁glycan", + -15.663015365600586 + ], + [ + "▁kryptonite", + -15.66309928894043 + ], + [ + "Panama", + -15.663108825683594 + ], + [ + "▁claret", + -15.663177490234375 + ], + [ + "▁neuroma", + -15.663192749023438 + ], + [ + "obtained", + -15.663195610046387 + ], + [ + "▁EMILY", + -15.663203239440918 + ], + [ + "▁telecommute", + -15.663246154785156 + ], + [ + "▁Pokies", + -15.663253784179688 + ], + [ + "▁accustom", + -15.663269996643066 + ], + [ + "▁clarinetist", + -15.6632719039917 + ], + [ + "umbrella", + -15.663335800170898 + ], + [ + "▁POUND", + -15.663337707519531 + ], + [ + "▁calzone", + -15.663354873657227 + ], + [ + "Amino", + -15.663392066955566 + ], + [ + "▁accessorizing", + -15.663491249084473 + ], + [ + "▁Hillbilly", + -15.66349983215332 + ], + [ + "▁Foxboro", + -15.663542747497559 + ], + [ + "▁Appomattox", + -15.663590431213379 + ], + [ + "▁Haggis", + -15.663612365722656 + ], + [ + "▁Darragh", + -15.663652420043945 + ], + [ + "▁temporomandibular", + -15.663668632507324 + ], + [ + "▁unspent", + -15.663697242736816 + ], + [ + "▁Prichard", + -15.663715362548828 + ], + [ + "រ", + -15.663741111755371 + ], + [ + "▁prophesies", + -15.663745880126953 + ], + [ + "态", + -15.663777351379395 + ], + [ + "난", + -15.663797378540039 + ], + [ + "globalization", + -15.663840293884277 + ], + [ + "▁strafe", + -15.663840293884277 + ], + [ + "говор", + -15.663844108581543 + ], + [ + "Sensitive", + -15.663869857788086 + ], + [ + "▁mantelpiece", + -15.663911819458008 + ], + [ + "▁timidity", + -15.663936614990234 + ], + [ + "▁Edelstein", + -15.663965225219727 + ], + [ + "surname", + -15.663997650146484 + ], + [ + "▁Lytton", + -15.664008140563965 + ], + [ + "▁заказ", + -15.66401195526123 + ], + [ + "▁Unquestionably", + -15.664031028747559 + ], + [ + "▁Lemur", + -15.664087295532227 + ], + [ + "▁Okamoto", + -15.664090156555176 + ], + [ + "▁dinky", + -15.664090156555176 + ], + [ + "▁scarab", + -15.664108276367188 + ], + [ + "▁Weizmann", + -15.664113998413086 + ], + [ + "▁herbivore", + -15.66421127319336 + ], + [ + "▁neccessary", + -15.664212226867676 + ], + [ + "▁scandinavian", + -15.664212226867676 + ], + [ + "▁Adorned", + -15.66423225402832 + ], + [ + "▁Alaric", + -15.664319038391113 + ], + [ + "▁ideologue", + -15.664325714111328 + ], + [ + "▁Vassal", + -15.664376258850098 + ], + [ + "▁Poinsettia", + -15.664420127868652 + ], + [ + "Windsor", + -15.664450645446777 + ], + [ + "▁encyclopaedia", + -15.664523124694824 + ], + [ + "▁buttercup", + -15.664527893066406 + ], + [ + "Creek", + -15.66454029083252 + ], + [ + "▁Demerara", + -15.664549827575684 + ], + [ + "▁Yekaterinburg", + -15.66460132598877 + ], + [ + "▁Clerical", + -15.664634704589844 + ], + [ + "▁symbology", + -15.664634704589844 + ], + [ + "▁Maddux", + -15.664678573608398 + ], + [ + "▁Taffy", + -15.664697647094727 + ], + [ + "TRACK", + -15.664709091186523 + ], + [ + "▁urological", + -15.664741516113281 + ], + [ + "▁буд", + -15.664773941040039 + ], + [ + "▁Castilian", + -15.664776802062988 + ], + [ + "Ortho", + -15.664782524108887 + ], + [ + "▁Belmond", + -15.664789199829102 + ], + [ + "▁SNCF", + -15.664859771728516 + ], + [ + "▁Prokop", + -15.664970397949219 + ], + [ + "RENE", + -15.664984703063965 + ], + [ + "▁Margaux", + -15.665000915527344 + ], + [ + "▁Gumball", + -15.66507625579834 + ], + [ + "ης", + -15.665105819702148 + ], + [ + "▁venereal", + -15.665127754211426 + ], + [ + "McDonald", + -15.665173530578613 + ], + [ + "▁phylum", + -15.665186882019043 + ], + [ + "▁DeWalt", + -15.66523551940918 + ], + [ + "▁BEWARE", + -15.66524600982666 + ], + [ + "▁Convince", + -15.665301322937012 + ], + [ + "▁sheaves", + -15.66530990600586 + ], + [ + "▁Practicum", + -15.665329933166504 + ], + [ + "▁chivalrous", + -15.665352821350098 + ], + [ + "альные", + -15.665356636047363 + ], + [ + "▁Mandell", + -15.665356636047363 + ], + [ + "vathi", + -15.665363311767578 + ], + [ + "▁Svensson", + -15.66536808013916 + ], + [ + "▁Harga", + -15.66539192199707 + ], + [ + "▁Ossoff", + -15.665412902832031 + ], + [ + "▁Pepys", + -15.665422439575195 + ], + [ + "Sabrina", + -15.66542911529541 + ], + [ + "▁Shizuoka", + -15.665435791015625 + ], + [ + "▁Benedetto", + -15.665482521057129 + ], + [ + "▁helminth", + -15.665482521057129 + ], + [ + "▁angiogram", + -15.665535926818848 + ], + [ + "▁Egbert", + -15.665539741516113 + ], + [ + "▁pipped", + -15.665579795837402 + ], + [ + "▁darwin", + -15.665599822998047 + ], + [ + "▁stratigraphy", + -15.665602684020996 + ], + [ + "▁Vassili", + -15.665608406066895 + ], + [ + "▁grudging", + -15.665610313415527 + ], + [ + "▁Curlew", + -15.66562557220459 + ], + [ + "▁lyme", + -15.665627479553223 + ], + [ + "▁স", + -15.665631294250488 + ], + [ + "▁propagand", + -15.66563606262207 + ], + [ + "▁OVERVIEW", + -15.66567325592041 + ], + [ + "▁referenda", + -15.665689468383789 + ], + [ + "▁homophobe", + -15.665724754333496 + ], + [ + "slett", + -15.665732383728027 + ], + [ + "▁Miscavige", + -15.66576862335205 + ], + [ + "▁lithographic", + -15.665790557861328 + ], + [ + "▁Shepparton", + -15.665794372558594 + ], + [ + "▁Gardaí", + -15.665797233581543 + ], + [ + "▁peridot", + -15.665843963623047 + ], + [ + "▁frumpy", + -15.665871620178223 + ], + [ + "▁membuat", + -15.665871620178223 + ], + [ + "▁EIGHTY", + -15.665942192077637 + ], + [ + "▁concessionaire", + -15.665958404541016 + ], + [ + "▁Lancome", + -15.66598892211914 + ], + [ + "▁spondylo", + -15.66600227355957 + ], + [ + "▁Sulphate", + -15.666028022766113 + ], + [ + "▁Clerkenwell", + -15.666053771972656 + ], + [ + "▁종", + -15.666081428527832 + ], + [ + "coalition", + -15.666085243225098 + ], + [ + "▁Kagawa", + -15.666139602661133 + ], + [ + "▁Glenelg", + -15.666234970092773 + ], + [ + "Luther", + -15.666259765625 + ], + [ + "▁Guida", + -15.666277885437012 + ], + [ + "▁Streatham", + -15.666313171386719 + ], + [ + "▁Injectable", + -15.666315078735352 + ], + [ + "EURO", + -15.666319847106934 + ], + [ + "мин", + -15.666329383850098 + ], + [ + "israel", + -15.666373252868652 + ], + [ + "▁Nacogdoches", + -15.66644287109375 + ], + [ + "▁Magritte", + -15.666443824768066 + ], + [ + "▁Buccaneer", + -15.66645336151123 + ], + [ + "Modified", + -15.666508674621582 + ], + [ + "▁ZigBee", + -15.666606903076172 + ], + [ + "femoral", + -15.666608810424805 + ], + [ + "▁Biohazard", + -15.666645050048828 + ], + [ + "Petite", + -15.666669845581055 + ], + [ + "▁norvasc", + -15.666703224182129 + ], + [ + "Celebrate", + -15.666712760925293 + ], + [ + "contrary", + -15.666722297668457 + ], + [ + "▁motrin", + -15.666725158691406 + ], + [ + "▁bioassay", + -15.666778564453125 + ], + [ + "▁phish", + -15.666790008544922 + ], + [ + "▁Clarksburg", + -15.66680908203125 + ], + [ + "Population", + -15.666852951049805 + ], + [ + "▁Rosita", + -15.666861534118652 + ], + [ + "▁subregion", + -15.666868209838867 + ], + [ + "▁Valente", + -15.666938781738281 + ], + [ + "▁같은", + -15.667014122009277 + ], + [ + "▁Experi", + -15.667098999023438 + ], + [ + "VALUE", + -15.667163848876953 + ], + [ + "▁STOXX", + -15.667204856872559 + ], + [ + "▁CIRCUMSTANCES", + -15.667222023010254 + ], + [ + "▁sandblasted", + -15.667222023010254 + ], + [ + "CONTIN", + -15.66724681854248 + ], + [ + "▁recapitalization", + -15.667248725891113 + ], + [ + "▁Twente", + -15.667281150817871 + ], + [ + "▁omnidirectional", + -15.667386054992676 + ], + [ + "▁Srikanth", + -15.66740608215332 + ], + [ + "immel", + -15.667420387268066 + ], + [ + "veined", + -15.66746997833252 + ], + [ + "▁Zinda", + -15.667471885681152 + ], + [ + "▁QUARTER", + -15.667482376098633 + ], + [ + "▁nephritis", + -15.667509078979492 + ], + [ + "▁annotating", + -15.667512893676758 + ], + [ + "▁TROY", + -15.667613983154297 + ], + [ + "▁Radiotherapy", + -15.667646408081055 + ], + [ + "ška", + -15.667719841003418 + ], + [ + "▁Gondwana", + -15.667747497558594 + ], + [ + "▁Trifecta", + -15.667794227600098 + ], + [ + "▁keith", + -15.667794227600098 + ], + [ + "rehearsed", + -15.667841911315918 + ], + [ + "harbor", + -15.667855262756348 + ], + [ + "▁PureVPN", + -15.667872428894043 + ], + [ + "▁Chamorro", + -15.667874336242676 + ], + [ + "▁Kovalchuk", + -15.667876243591309 + ], + [ + "▁Sigurdsson", + -15.667877197265625 + ], + [ + "▁Babylonia", + -15.66788101196289 + ], + [ + "▁Temperament", + -15.667892456054688 + ], + [ + "mercy", + -15.667915344238281 + ], + [ + "▁Naqvi", + -15.668027877807617 + ], + [ + "Experiment", + -15.668082237243652 + ], + [ + "Bianca", + -15.668156623840332 + ], + [ + "▁blotchy", + -15.668230056762695 + ], + [ + "▁Sucre", + -15.668242454528809 + ], + [ + "▁bedfellows", + -15.668242454528809 + ], + [ + "▁lorazepam", + -15.66826343536377 + ], + [ + "▁Biochim", + -15.668270111083984 + ], + [ + "▁fecundity", + -15.668282508850098 + ], + [ + "▁CAPACITY", + -15.668291091918945 + ], + [ + "▁Humorous", + -15.668291091918945 + ], + [ + "▁Disappearance", + -15.66833782196045 + ], + [ + "Leslie", + -15.668356895446777 + ], + [ + "▁glutinous", + -15.668375015258789 + ], + [ + "▁unashamed", + -15.668476104736328 + ], + [ + "▁NCUA", + -15.668554306030273 + ], + [ + "▁Nemours", + -15.668559074401855 + ], + [ + "Earl", + -15.668573379516602 + ], + [ + "▁DISTRIBUTION", + -15.668574333190918 + ], + [ + "▁THEREFORE", + -15.668574333190918 + ], + [ + "prisoners", + -15.668610572814941 + ], + [ + "▁Pollut", + -15.668628692626953 + ], + [ + "▁minocycline", + -15.668652534484863 + ], + [ + "MySQL", + -15.668732643127441 + ], + [ + "▁Pietermaritzburg", + -15.668756484985352 + ], + [ + "▁Convict", + -15.668839454650879 + ], + [ + "▁adaptogen", + -15.668862342834473 + ], + [ + "▁Tandoori", + -15.668912887573242 + ], + [ + "▁Escuela", + -15.66894817352295 + ], + [ + "▁VITAL", + -15.669061660766602 + ], + [ + "▁Ambleside", + -15.669069290161133 + ], + [ + "▁Bogaerts", + -15.669069290161133 + ], + [ + "▁RUSSELL", + -15.669095039367676 + ], + [ + "▁occultist", + -15.669168472290039 + ], + [ + "Tutor", + -15.66919994354248 + ], + [ + "▁silliest", + -15.669225692749023 + ], + [ + "▁Zealot", + -15.66926383972168 + ], + [ + "Butterfly", + -15.669309616088867 + ], + [ + "▁genau", + -15.669319152832031 + ], + [ + "▁Patriotism", + -15.669341087341309 + ], + [ + "▁Chelyabinsk", + -15.669355392456055 + ], + [ + "▁Pollak", + -15.669395446777344 + ], + [ + "▁Boulanger", + -15.669417381286621 + ], + [ + "▁Kwong", + -15.669437408447266 + ], + [ + "▁Cyanide", + -15.669447898864746 + ], + [ + "▁Loewen", + -15.669449806213379 + ], + [ + "Kindergarten", + -15.669559478759766 + ], + [ + "▁supercede", + -15.669607162475586 + ], + [ + "▁disillusion", + -15.6696195602417 + ], + [ + "▁Javits", + -15.669634819030762 + ], + [ + "▁Ribera", + -15.669659614562988 + ], + [ + "▁DECIDE", + -15.66967487335205 + ], + [ + "▁Ishtar", + -15.669698715209961 + ], + [ + "▁Ajith", + -15.66971492767334 + ], + [ + "▁우리", + -15.669746398925781 + ], + [ + "▁Zachariah", + -15.669781684875488 + ], + [ + "▁compensator", + -15.669794082641602 + ], + [ + "autobiographical", + -15.669820785522461 + ], + [ + "▁suce", + -15.669825553894043 + ], + [ + "▁SquarePants", + -15.66985034942627 + ], + [ + "▁Tyvek", + -15.669880867004395 + ], + [ + "▁Corelli", + -15.66988468170166 + ], + [ + "▁Howlett", + -15.66989803314209 + ], + [ + "▁rDNA", + -15.669907569885254 + ], + [ + "▁ergodic", + -15.670007705688477 + ], + [ + "▁tricolor", + -15.670022964477539 + ], + [ + "▁postprandial", + -15.670029640197754 + ], + [ + "▁Swachh", + -15.670036315917969 + ], + [ + "Membership", + -15.67006778717041 + ], + [ + "Applause", + -15.6701078414917 + ], + [ + "▁SAHM", + -15.670114517211914 + ], + [ + "▁Marantz", + -15.67016315460205 + ], + [ + "▁Ewok", + -15.670204162597656 + ], + [ + "▁derangement", + -15.67021656036377 + ], + [ + "▁Garrard", + -15.670226097106934 + ], + [ + "▁GENUINE", + -15.670241355895996 + ], + [ + "▁Collapsible", + -15.670268058776855 + ], + [ + "▁Bolero", + -15.670278549194336 + ], + [ + "▁Artemisia", + -15.670339584350586 + ], + [ + "▁SmartThings", + -15.670351028442383 + ], + [ + "▁Inferior", + -15.670372009277344 + ], + [ + "clokep", + -15.67041015625 + ], + [ + "▁Ganymede", + -15.670424461364746 + ], + [ + "▁REPEAT", + -15.670449256896973 + ], + [ + "incentive", + -15.670454025268555 + ], + [ + "▁microalgae", + -15.670500755310059 + ], + [ + "▁Duhamel", + -15.670503616333008 + ], + [ + "Arkansas", + -15.670527458190918 + ], + [ + "▁cyclosporine", + -15.670554161071777 + ], + [ + "chondral", + -15.670561790466309 + ], + [ + "▁Gardasil", + -15.670598030090332 + ], + [ + "▁Dierks", + -15.670612335205078 + ], + [ + "▁Surendra", + -15.67061710357666 + ], + [ + "▁lenticular", + -15.670702934265137 + ], + [ + "Acquire", + -15.6707181930542 + ], + [ + "▁enthroned", + -15.670737266540527 + ], + [ + "ведение", + -15.670755386352539 + ], + [ + "▁Nantwich", + -15.67076301574707 + ], + [ + "▁AccuWeather", + -15.670766830444336 + ], + [ + "▁pupae", + -15.67078685760498 + ], + [ + "▁positivist", + -15.670832633972168 + ], + [ + "childhood", + -15.670833587646484 + ], + [ + "▁Speyside", + -15.670841217041016 + ], + [ + "▁DESIGNER", + -15.670855522155762 + ], + [ + "▁Bicycling", + -15.670884132385254 + ], + [ + "Bharat", + -15.670923233032227 + ], + [ + "ል", + -15.670945167541504 + ], + [ + "▁Javascript", + -15.670949935913086 + ], + [ + "▁Biarritz", + -15.670997619628906 + ], + [ + "▁Mossberg", + -15.67109489440918 + ], + [ + "▁transpiration", + -15.671119689941406 + ], + [ + "▁aldosterone", + -15.671128273010254 + ], + [ + "Solomon", + -15.671158790588379 + ], + [ + "HAHAHAHA", + -15.671168327331543 + ], + [ + "▁Shiseido", + -15.671180725097656 + ], + [ + "▁mycelium", + -15.6712064743042 + ], + [ + "▁Renwick", + -15.671226501464844 + ], + [ + "wrought", + -15.671243667602539 + ], + [ + "posición", + -15.671305656433105 + ], + [ + "▁Crackdown", + -15.671360969543457 + ], + [ + "▁Gambhir", + -15.671475410461426 + ], + [ + "▁Fatih", + -15.671483993530273 + ], + [ + "می", + -15.671491622924805 + ], + [ + "▁Norristown", + -15.6715669631958 + ], + [ + "▁Schnabel", + -15.6715669631958 + ], + [ + "▁budgie", + -15.671594619750977 + ], + [ + "▁Учеб", + -15.671597480773926 + ], + [ + "▁charleston", + -15.67167854309082 + ], + [ + "▁Pharmacokinetic", + -15.671704292297363 + ], + [ + "Tournament", + -15.67175006866455 + ], + [ + "▁Ladybird", + -15.671777725219727 + ], + [ + "▁Dubstep", + -15.671792984008789 + ], + [ + "▁Pygmy", + -15.671806335449219 + ], + [ + "支", + -15.671813011169434 + ], + [ + "▁PROTEIN", + -15.67188549041748 + ], + [ + "▁Tilak", + -15.671917915344238 + ], + [ + "▁Ngoc", + -15.671935081481934 + ], + [ + "▁nauseum", + -15.671936988830566 + ], + [ + "▁comeuppance", + -15.671989440917969 + ], + [ + "▁말", + -15.672002792358398 + ], + [ + "Obj", + -15.672016143798828 + ], + [ + "▁briny", + -15.67205810546875 + ], + [ + "▁Carlile", + -15.672061920166016 + ], + [ + "▁Euromonitor", + -15.67212963104248 + ], + [ + "Connecticut", + -15.672172546386719 + ], + [ + "▁climatology", + -15.672173500061035 + ], + [ + "logische", + -15.67221450805664 + ], + [ + "भा", + -15.67221736907959 + ], + [ + "▁Stannis", + -15.672281265258789 + ], + [ + "standardized", + -15.672334671020508 + ], + [ + "▁Thibault", + -15.672381401062012 + ], + [ + "▁Palumbo", + -15.67239761352539 + ], + [ + "▁Gargano", + -15.672402381896973 + ], + [ + "øj", + -15.67241096496582 + ], + [ + "▁Dinnerware", + -15.672439575195312 + ], + [ + "▁oportunidad", + -15.67251205444336 + ], + [ + "Minneapolis", + -15.672533988952637 + ], + [ + "▁Porous", + -15.672555923461914 + ], + [ + "▁Montour", + -15.672557830810547 + ], + [ + "▁florescent", + -15.67259407043457 + ], + [ + "▁subsume", + -15.672625541687012 + ], + [ + "▁ESTIMATE", + -15.672669410705566 + ], + [ + "Quilt", + -15.672673225402832 + ], + [ + "▁Tactile", + -15.672680854797363 + ], + [ + "normalized", + -15.672733306884766 + ], + [ + "▁Bitty", + -15.6727876663208 + ], + [ + "▁Artstor", + -15.672810554504395 + ], + [ + "▁nanocrystals", + -15.672820091247559 + ], + [ + "ministry", + -15.672831535339355 + ], + [ + "▁Centrifuge", + -15.672853469848633 + ], + [ + "▁Tonawanda", + -15.672929763793945 + ], + [ + "▁Financier", + -15.672956466674805 + ], + [ + "▁Nagios", + -15.673012733459473 + ], + [ + "▁matriculated", + -15.673012733459473 + ], + [ + "Residential", + -15.67302417755127 + ], + [ + "Bravo", + -15.673027992248535 + ], + [ + "▁Subsidies", + -15.67303466796875 + ], + [ + "▁Whaling", + -15.673040390014648 + ], + [ + "roaming", + -15.673046112060547 + ], + [ + "▁eureka", + -15.67305850982666 + ], + [ + "▁LIGHTING", + -15.673077583312988 + ], + [ + "▁Crunchyroll", + -15.673148155212402 + ], + [ + "adillo", + -15.67316722869873 + ], + [ + "▁Nipper", + -15.67316722869873 + ], + [ + "Austrian", + -15.673175811767578 + ], + [ + "filtrate", + -15.673203468322754 + ], + [ + "▁SERIOUSLY", + -15.67321491241455 + ], + [ + "HOPE", + -15.673221588134766 + ], + [ + "▁SELLING", + -15.673223495483398 + ], + [ + "▁pharmacotherapy", + -15.673223495483398 + ], + [ + "equivoca", + -15.673331260681152 + ], + [ + "독", + -15.673348426818848 + ], + [ + "icamente", + -15.673378944396973 + ], + [ + "▁sneakily", + -15.673398971557617 + ], + [ + "▁WARRIOR", + -15.67340087890625 + ], + [ + "构", + -15.6734037399292 + ], + [ + "▁JavaFX", + -15.673476219177246 + ], + [ + "▁gobsmacked", + -15.673479080200195 + ], + [ + "▁estilo", + -15.673491477966309 + ], + [ + "Palace", + -15.673548698425293 + ], + [ + "▁Westmeath", + -15.67355728149414 + ], + [ + "▁QoL", + -15.673569679260254 + ], + [ + "iên", + -15.673599243164062 + ], + [ + "▁Brooklands", + -15.673625946044922 + ], + [ + "▁Dictatorship", + -15.6736421585083 + ], + [ + "▁siècle", + -15.673687934875488 + ], + [ + "▁LNCS", + -15.673711776733398 + ], + [ + "▁jigger", + -15.673718452453613 + ], + [ + "▁bolero", + -15.673755645751953 + ], + [ + "▁Apologetics", + -15.673819541931152 + ], + [ + "stomach", + -15.673840522766113 + ], + [ + "▁Cockney", + -15.67386531829834 + ], + [ + "▁Sloven", + -15.673894882202148 + ], + [ + "▁Konig", + -15.673904418945312 + ], + [ + "▁의해", + -15.67392635345459 + ], + [ + "▁Guha", + -15.674118995666504 + ], + [ + "▁hippopotamus", + -15.67413330078125 + ], + [ + "▁Vashem", + -15.674177169799805 + ], + [ + "▁MANUFACTURE", + -15.674205780029297 + ], + [ + "▁Mundial", + -15.674217224121094 + ], + [ + "▁Aliyah", + -15.674236297607422 + ], + [ + "alphabet", + -15.674269676208496 + ], + [ + "grasp", + -15.674341201782227 + ], + [ + "▁citrine", + -15.674347877502441 + ], + [ + "readiness", + -15.674373626708984 + ], + [ + "Confession", + -15.67441177368164 + ], + [ + "▁qenë", + -15.674443244934082 + ], + [ + "mplify", + -15.674447059631348 + ], + [ + "bayev", + -15.674476623535156 + ], + [ + "▁Margaritaville", + -15.674530029296875 + ], + [ + "▁Lotteries", + -15.674535751342773 + ], + [ + "CONTROL", + -15.674560546875 + ], + [ + "▁Niseko", + -15.674562454223633 + ], + [ + "▁SPIEGEL", + -15.674578666687012 + ], + [ + "▁Rockabilly", + -15.674604415893555 + ], + [ + "ው", + -15.674630165100098 + ], + [ + "technologie", + -15.674637794494629 + ], + [ + "▁VATICAN", + -15.674656867980957 + ], + [ + "实施例", + -15.67465877532959 + ], + [ + "▁paean", + -15.674661636352539 + ], + [ + "▁Fleisch", + -15.674725532531738 + ], + [ + "▁Whitchurch", + -15.674732208251953 + ], + [ + "▁snook", + -15.674734115600586 + ], + [ + "ELIA", + -15.67474365234375 + ], + [ + "▁Olivo", + -15.674753189086914 + ], + [ + "▁Espen", + -15.67475414276123 + ], + [ + "▁pilaf", + -15.674776077270508 + ], + [ + "▁Rotator", + -15.674788475036621 + ], + [ + "▁Backlund", + -15.674820899963379 + ], + [ + "▁wanker", + -15.67485237121582 + ], + [ + "▁Pahrump", + -15.674867630004883 + ], + [ + "▁intrastate", + -15.674942970275879 + ], + [ + "glycol", + -15.674981117248535 + ], + [ + "▁Kikuchi", + -15.675003051757812 + ], + [ + "▁vilification", + -15.675012588500977 + ], + [ + "▁Soulja", + -15.675020217895508 + ], + [ + "▁exigent", + -15.675036430358887 + ], + [ + "▁Franch", + -15.675050735473633 + ], + [ + "mathematical", + -15.675065040588379 + ], + [ + "▁Tiramisu", + -15.675102233886719 + ], + [ + "QUAL", + -15.67518138885498 + ], + [ + "▁sidle", + -15.675195693969727 + ], + [ + "▁Rivendell", + -15.675206184387207 + ], + [ + "Subscription", + -15.675214767456055 + ], + [ + "▁Rubies", + -15.675219535827637 + ], + [ + "▁psychotherapeutic", + -15.675271034240723 + ], + [ + "LARGE", + -15.675281524658203 + ], + [ + "▁Torrens", + -15.675322532653809 + ], + [ + "▁Pembina", + -15.67536449432373 + ], + [ + "▁Garrido", + -15.67540454864502 + ], + [ + "▁Yugi", + -15.675447463989258 + ], + [ + "▁irreverence", + -15.675495147705078 + ], + [ + "▁Croquet", + -15.67552661895752 + ], + [ + "▁Thurber", + -15.675570487976074 + ], + [ + "▁Gerlach", + -15.675602912902832 + ], + [ + "▁virility", + -15.675615310668945 + ], + [ + "Emerald", + -15.675630569458008 + ], + [ + "▁учеб", + -15.675651550292969 + ], + [ + "▁THREAT", + -15.675763130187988 + ], + [ + "motorcycle", + -15.675771713256836 + ], + [ + "▁Medeiros", + -15.675862312316895 + ], + [ + "▁Qadri", + -15.675950050354004 + ], + [ + "▁unintelligent", + -15.675976753234863 + ], + [ + "▁Geometr", + -15.675995826721191 + ], + [ + "▁frailties", + -15.676030158996582 + ], + [ + "ETTING", + -15.676051139831543 + ], + [ + "▁Harlingen", + -15.676095008850098 + ], + [ + "▁Beluga", + -15.676124572753906 + ], + [ + "▁Minimizing", + -15.676125526428223 + ], + [ + "▁Duffield", + -15.676218032836914 + ], + [ + "▁Bhardwaj", + -15.676255226135254 + ], + [ + "▁Saurabh", + -15.676264762878418 + ], + [ + "▁Martingale", + -15.676286697387695 + ], + [ + "▁Dorfman", + -15.676290512084961 + ], + [ + "▁umbrage", + -15.676307678222656 + ], + [ + "▁Smudge", + -15.676353454589844 + ], + [ + "Allahu", + -15.676361083984375 + ], + [ + "▁Rainmaker", + -15.676407814025879 + ], + [ + "▁Flume", + -15.676431655883789 + ], + [ + "▁Menstrual", + -15.676438331604004 + ], + [ + "▁Ferrous", + -15.676471710205078 + ], + [ + "▁Wetherby", + -15.676501274108887 + ], + [ + "thirsty", + -15.676507949829102 + ], + [ + "▁metatrader", + -15.676531791687012 + ], + [ + "▁COMPASS", + -15.676541328430176 + ], + [ + "▁Sorghum", + -15.676543235778809 + ], + [ + "▁Collegium", + -15.676700592041016 + ], + [ + "▁Cabell", + -15.676851272583008 + ], + [ + "▁STEAL", + -15.67685604095459 + ], + [ + "TSXV", + -15.676861763000488 + ], + [ + "▁catabolism", + -15.676910400390625 + ], + [ + "bleacherreport", + -15.676925659179688 + ], + [ + "▁Meilleur", + -15.677098274230957 + ], + [ + "lymphocyte", + -15.67710018157959 + ], + [ + "▁외", + -15.677101135253906 + ], + [ + "вол", + -15.677135467529297 + ], + [ + "▁Organist", + -15.677135467529297 + ], + [ + "▁pastoralists", + -15.677151679992676 + ], + [ + "▁sienna", + -15.677170753479004 + ], + [ + "▁Bronchitis", + -15.677173614501953 + ], + [ + "▁disjoint", + -15.677183151245117 + ], + [ + "▁NELSON", + -15.677199363708496 + ], + [ + "▁nippy", + -15.677199363708496 + ], + [ + "▁Sushant", + -15.677213668823242 + ], + [ + "▁Anniversaries", + -15.677226066589355 + ], + [ + "ც", + -15.677277565002441 + ], + [ + "▁stowage", + -15.677302360534668 + ], + [ + "sclerosis", + -15.67733097076416 + ], + [ + "loyalty", + -15.677340507507324 + ], + [ + "▁Muthu", + -15.677340507507324 + ], + [ + "fuzzy", + -15.677379608154297 + ], + [ + "oochie", + -15.67747974395752 + ], + [ + "▁tonsillitis", + -15.677488327026367 + ], + [ + "footnote", + -15.677494049072266 + ], + [ + "▁Colburn", + -15.677536964416504 + ], + [ + "▁Transocean", + -15.677543640136719 + ], + [ + "离", + -15.677546501159668 + ], + [ + "▁vRealize", + -15.677566528320312 + ], + [ + "▁Shigeru", + -15.67758846282959 + ], + [ + "▁EXCLUSIVELY", + -15.677591323852539 + ], + [ + "▁Weisberg", + -15.67764663696289 + ], + [ + "▁wormwood", + -15.677663803100586 + ], + [ + "▁Daines", + -15.677665710449219 + ], + [ + "🔥", + -15.677674293518066 + ], + [ + "▁streusel", + -15.677724838256836 + ], + [ + "▁unflappable", + -15.677750587463379 + ], + [ + "▁Audemars", + -15.677777290344238 + ], + [ + "▁pruritus", + -15.677777290344238 + ], + [ + "EVEN", + -15.677850723266602 + ], + [ + "▁konnte", + -15.677870750427246 + ], + [ + "▁meristem", + -15.677887916564941 + ], + [ + "▁occlusal", + -15.677907943725586 + ], + [ + "▁KILLED", + -15.677957534790039 + ], + [ + "chapel", + -15.67800521850586 + ], + [ + "▁Radic", + -15.678018569946289 + ], + [ + "▁Wattpad", + -15.67802906036377 + ], + [ + "▁flummoxed", + -15.67803955078125 + ], + [ + "님", + -15.67806625366211 + ], + [ + "differentiated", + -15.67812728881836 + ], + [ + "▁Deschanel", + -15.678144454956055 + ], + [ + "▁Forthcoming", + -15.678189277648926 + ], + [ + "mäki", + -15.678248405456543 + ], + [ + "▁impregnate", + -15.678277969360352 + ], + [ + "chondro", + -15.678289413452148 + ], + [ + "▁Ballinger", + -15.678304672241211 + ], + [ + "permitted", + -15.67831039428711 + ], + [ + "erfolg", + -15.678329467773438 + ], + [ + "▁которые", + -15.678380966186523 + ], + [ + "▁Lymphatic", + -15.678383827209473 + ], + [ + "▁fibronectin", + -15.678434371948242 + ], + [ + "▁credulous", + -15.678438186645508 + ], + [ + "▁glasgow", + -15.678460121154785 + ], + [ + "▁última", + -15.678512573242188 + ], + [ + "▁Basmati", + -15.678529739379883 + ], + [ + "▁CUBE", + -15.678534507751465 + ], + [ + "Petr", + -15.678552627563477 + ], + [ + "▁reprobate", + -15.678568840026855 + ], + [ + "▁série", + -15.678616523742676 + ], + [ + "▁Cleese", + -15.678632736206055 + ], + [ + "▁DateTime", + -15.67863655090332 + ], + [ + "▁barstool", + -15.678637504577637 + ], + [ + "▁ultima", + -15.678654670715332 + ], + [ + "▁phyla", + -15.678680419921875 + ], + [ + "▁hoodlums", + -15.678698539733887 + ], + [ + "Wordpress", + -15.678701400756836 + ], + [ + "▁CAMPBELL", + -15.678749084472656 + ], + [ + "▁REPUBLIC", + -15.678749084472656 + ], + [ + "▁Podemos", + -15.678766250610352 + ], + [ + "▁Decomposition", + -15.678789138793945 + ], + [ + "▁consignee", + -15.678816795349121 + ], + [ + "▁Bergstrom", + -15.678823471069336 + ], + [ + "▁SPLIT", + -15.678850173950195 + ], + [ + "▁barbecuing", + -15.67888069152832 + ], + [ + "▁Bicester", + -15.678888320922852 + ], + [ + "▁brachytherapy", + -15.67890739440918 + ], + [ + "▁rigueur", + -15.678933143615723 + ], + [ + "▁Theobald", + -15.678966522216797 + ], + [ + "▁Shellfish", + -15.679080963134766 + ], + [ + "▁Strobel", + -15.679210662841797 + ], + [ + "Anglo", + -15.67926025390625 + ], + [ + "▁Molasses", + -15.679381370544434 + ], + [ + "▁تع", + -15.679457664489746 + ], + [ + "▁uncannily", + -15.679485321044922 + ], + [ + "▁Carmarthenshire", + -15.679594993591309 + ], + [ + "▁boule", + -15.679603576660156 + ], + [ + "▁Porcello", + -15.679606437683105 + ], + [ + "▁Thorac", + -15.679619789123535 + ], + [ + "▁ungreased", + -15.679643630981445 + ], + [ + "▁Solvay", + -15.679657936096191 + ], + [ + "defect", + -15.67973804473877 + ], + [ + "▁coupé", + -15.679744720458984 + ], + [ + "▁Petrel", + -15.67988395690918 + ], + [ + "▁EPSRC", + -15.679987907409668 + ], + [ + "▁GRANITE", + -15.680011749267578 + ], + [ + "botanical", + -15.680013656616211 + ], + [ + "▁Confessor", + -15.68007755279541 + ], + [ + "▁hallucinate", + -15.680091857910156 + ], + [ + "inquiry", + -15.680100440979004 + ], + [ + "sunshine", + -15.680179595947266 + ], + [ + "▁Paddling", + -15.680273056030273 + ], + [ + "▁Anacostia", + -15.680274963378906 + ], + [ + "VIER", + -15.680301666259766 + ], + [ + "▁Embarrassing", + -15.680301666259766 + ], + [ + "▁Giotto", + -15.680336952209473 + ], + [ + "▁dirge", + -15.680441856384277 + ], + [ + "▁RnB", + -15.680460929870605 + ], + [ + "informative", + -15.680503845214844 + ], + [ + "oakley", + -15.68053150177002 + ], + [ + "withdrawal", + -15.680538177490234 + ], + [ + "▁Loesch", + -15.68055534362793 + ], + [ + "Jensen", + -15.680563926696777 + ], + [ + "▁Chemother", + -15.680648803710938 + ], + [ + "▁Moyle", + -15.68066120147705 + ], + [ + "differential", + -15.680669784545898 + ], + [ + "▁Bloodborne", + -15.68069839477539 + ], + [ + "▁rebutted", + -15.680707931518555 + ], + [ + "▁Gynaecology", + -15.680723190307617 + ], + [ + "▁Blavatsky", + -15.68074893951416 + ], + [ + "▁kawasaki", + -15.68074893951416 + ], + [ + "▁pulsate", + -15.68074893951416 + ], + [ + "▁Rohl", + -15.68082046508789 + ], + [ + "▁Nürnberg", + -15.680828094482422 + ], + [ + "preserve", + -15.680862426757812 + ], + [ + "▁Isthmus", + -15.680908203125 + ], + [ + "▁Microcontroller", + -15.680949211120605 + ], + [ + "entrifug", + -15.680954933166504 + ], + [ + "מו", + -15.680997848510742 + ], + [ + "pogon", + -15.681005477905273 + ], + [ + "▁Sheepdog", + -15.681119918823242 + ], + [ + "▁pierogi", + -15.681163787841797 + ], + [ + "▁Annuities", + -15.681177139282227 + ], + [ + "Outlook", + -15.681181907653809 + ], + [ + "Amateur", + -15.68118667602539 + ], + [ + "▁HAMMER", + -15.68118667602539 + ], + [ + "▁Hazleton", + -15.681258201599121 + ], + [ + "▁Lassiter", + -15.681278228759766 + ], + [ + "▁sequoia", + -15.681303024291992 + ], + [ + "▁Mishnah", + -15.681341171264648 + ], + [ + "▁Goldsboro", + -15.681346893310547 + ], + [ + "statutory", + -15.681356430053711 + ], + [ + "▁Whitlam", + -15.68143367767334 + ], + [ + "▁Arkadi", + -15.681464195251465 + ], + [ + "▁Bustamante", + -15.681487083435059 + ], + [ + "oviruses", + -15.681575775146484 + ], + [ + "Tunnel", + -15.6815824508667 + ], + [ + "▁lightheadedness", + -15.681600570678711 + ], + [ + "▁Tedesco", + -15.681622505187988 + ], + [ + "▁nutella", + -15.681665420532227 + ], + [ + "以及", + -15.681710243225098 + ], + [ + "▁Vizag", + -15.681731224060059 + ], + [ + "▁unbanked", + -15.681777954101562 + ], + [ + "▁somatosensory", + -15.681803703308105 + ], + [ + "▁proprio", + -15.681806564331055 + ], + [ + "▁будет", + -15.681838035583496 + ], + [ + "Emperor", + -15.681857109069824 + ], + [ + "▁Aeroflot", + -15.682120323181152 + ], + [ + "▁nicotinic", + -15.682225227355957 + ], + [ + "▁الف", + -15.682272911071777 + ], + [ + "ľ", + -15.682278633117676 + ], + [ + "▁leicht", + -15.682295799255371 + ], + [ + "▁subjunctive", + -15.682331085205078 + ], + [ + "ercise", + -15.682367324829102 + ], + [ + "▁Giddens", + -15.682415008544922 + ], + [ + "metaphor", + -15.6824312210083 + ], + [ + "▁huckster", + -15.6824369430542 + ], + [ + "coordinator", + -15.6824951171875 + ], + [ + "▁Barthel", + -15.682564735412598 + ], + [ + "▁adiposity", + -15.682568550109863 + ], + [ + "▁Mirada", + -15.682594299316406 + ], + [ + "▁Devereux", + -15.682600021362305 + ], + [ + "Torres", + -15.682637214660645 + ], + [ + "Karma", + -15.682646751403809 + ], + [ + "Memphis", + -15.682647705078125 + ], + [ + "▁HONOLULU", + -15.682647705078125 + ], + [ + "医", + -15.682672500610352 + ], + [ + "NHTSA", + -15.682682037353516 + ], + [ + "splitter", + -15.682687759399414 + ], + [ + "Taliban", + -15.682701110839844 + ], + [ + "ivating", + -15.682766914367676 + ], + [ + "▁Apocrypha", + -15.682779312133789 + ], + [ + "▁Furstenberg", + -15.682779312133789 + ], + [ + "▁Vipassana", + -15.68285846710205 + ], + [ + "ńska", + -15.682860374450684 + ], + [ + "▁harangue", + -15.682940483093262 + ], + [ + "▁Voyageur", + -15.682953834533691 + ], + [ + "▁Moncada", + -15.682989120483398 + ], + [ + "▁Laconia", + -15.683048248291016 + ], + [ + "▁दे", + -15.683083534240723 + ], + [ + "▁muggle", + -15.683099746704102 + ], + [ + "視", + -15.683109283447266 + ], + [ + "레이", + -15.683232307434082 + ], + [ + "sterile", + -15.683237075805664 + ], + [ + "▁Estefan", + -15.68332290649414 + ], + [ + "▁Broking", + -15.683388710021973 + ], + [ + "Economy", + -15.683394432067871 + ], + [ + "▁Ensenada", + -15.683440208435059 + ], + [ + "hilfe", + -15.68344497680664 + ], + [ + "▁Maurya", + -15.683460235595703 + ], + [ + "▁Hylton", + -15.68352222442627 + ], + [ + "OSIS", + -15.683536529541016 + ], + [ + "▁Akiva", + -15.683563232421875 + ], + [ + "▁Wildrose", + -15.683572769165039 + ], + [ + "▁RELIGION", + -15.683624267578125 + ], + [ + "ृ", + -15.683650970458984 + ], + [ + "häng", + -15.6836519241333 + ], + [ + "▁Assemblywoman", + -15.683711051940918 + ], + [ + "▁convalescent", + -15.683730125427246 + ], + [ + "▁Gertie", + -15.683812141418457 + ], + [ + "▁genitive", + -15.683833122253418 + ], + [ + "▁Kamikaze", + -15.683835983276367 + ], + [ + "▁Clyburn", + -15.683836936950684 + ], + [ + "▁Matthieu", + -15.683862686157227 + ], + [ + "▁Wetherspoon", + -15.68386459350586 + ], + [ + "▁stereotactic", + -15.683924674987793 + ], + [ + "Hypo", + -15.68393325805664 + ], + [ + "▁smtp", + -15.68396282196045 + ], + [ + "▁الص", + -15.684000015258789 + ], + [ + "▁autocad", + -15.684014320373535 + ], + [ + "▁Logue", + -15.684052467346191 + ], + [ + "άρ", + -15.68410873413086 + ], + [ + "organising", + -15.684123039245605 + ], + [ + "clavicular", + -15.68412971496582 + ], + [ + "plugged", + -15.6841402053833 + ], + [ + "값", + -15.684206008911133 + ], + [ + "▁bigwigs", + -15.68420696258545 + ], + [ + "▁abstruse", + -15.684232711791992 + ], + [ + "▁Sigil", + -15.684245109558105 + ], + [ + "▁polysilicon", + -15.68425464630127 + ], + [ + "▁Skydive", + -15.684263229370117 + ], + [ + "▁anticlimactic", + -15.684273719787598 + ], + [ + "吸", + -15.68429183959961 + ], + [ + "jtë", + -15.684296607971191 + ], + [ + "▁Murrow", + -15.684305191040039 + ], + [ + "▁Ostensibly", + -15.684338569641113 + ], + [ + "Observer", + -15.684345245361328 + ], + [ + "▁uncontroversial", + -15.684365272521973 + ], + [ + "▁Wavelength", + -15.684410095214844 + ], + [ + "FIFA", + -15.684420585632324 + ], + [ + "Springfield", + -15.684443473815918 + ], + [ + "▁Montano", + -15.68447494506836 + ], + [ + "▁Sialkot", + -15.684496879577637 + ], + [ + "▁roughshod", + -15.684524536132812 + ], + [ + "▁Harada", + -15.684548377990723 + ], + [ + "וד", + -15.684565544128418 + ], + [ + "▁Mendelson", + -15.684660911560059 + ], + [ + "▁Gaudet", + -15.684673309326172 + ], + [ + "▁traipse", + -15.684708595275879 + ], + [ + "▁interneurons", + -15.684709548950195 + ], + [ + "▁Gordhan", + -15.684741020202637 + ], + [ + "▁mesoderm", + -15.68478775024414 + ], + [ + "▁intifada", + -15.684866905212402 + ], + [ + "▁Ackroyd", + -15.684867858886719 + ], + [ + "▁laggy", + -15.684935569763184 + ], + [ + "▁Trattoria", + -15.684946060180664 + ], + [ + "▁statutorily", + -15.684972763061523 + ], + [ + "▁Laryngo", + -15.684986114501953 + ], + [ + "▁situating", + -15.68499755859375 + ], + [ + "▁gramophone", + -15.685007095336914 + ], + [ + "▁Glanville", + -15.685014724731445 + ], + [ + "stirring", + -15.685020446777344 + ], + [ + "▁Kommunikation", + -15.685025215148926 + ], + [ + "▁Tymoshenko", + -15.685026168823242 + ], + [ + "چ", + -15.685027122497559 + ], + [ + "▁Tristram", + -15.685029029846191 + ], + [ + "occu", + -15.685046195983887 + ], + [ + "▁Pontefract", + -15.685052871704102 + ], + [ + "▁Tarmac", + -15.68515682220459 + ], + [ + "▁purchasable", + -15.685157775878906 + ], + [ + "▁Sepulveda", + -15.685184478759766 + ], + [ + "▁Brahmaputra", + -15.685211181640625 + ], + [ + "shaun", + -15.685230255126953 + ], + [ + "▁Kake", + -15.685301780700684 + ], + [ + "▁Pollinator", + -15.685328483581543 + ], + [ + "▁Billingsley", + -15.685333251953125 + ], + [ + "助", + -15.685342788696289 + ], + [ + "▁mutagenic", + -15.68541431427002 + ], + [ + "▁DYNA", + -15.685471534729004 + ], + [ + "박", + -15.68547534942627 + ], + [ + "▁prognostication", + -15.685501098632812 + ], + [ + "▁ventriloquist", + -15.685504913330078 + ], + [ + "▁Dorking", + -15.68553638458252 + ], + [ + "▁amyloidosis", + -15.68554401397705 + ], + [ + "▁cajun", + -15.68554401397705 + ], + [ + "▁DODGE", + -15.685545921325684 + ], + [ + "▁crystallographic", + -15.685713768005371 + ], + [ + "▁Gerwig", + -15.685785293579102 + ], + [ + "▁FORMULA", + -15.685800552368164 + ], + [ + "▁Gitmo", + -15.685815811157227 + ], + [ + "▁retooled", + -15.685820579528809 + ], + [ + "Serena", + -15.68586540222168 + ], + [ + "▁Deshpande", + -15.685925483703613 + ], + [ + "adviser", + -15.686003684997559 + ], + [ + "pinned", + -15.68602180480957 + ], + [ + "▁Cheyne", + -15.686031341552734 + ], + [ + "▁negocia", + -15.686066627502441 + ], + [ + "economist", + -15.68607234954834 + ], + [ + "▁Holmgren", + -15.686073303222656 + ], + [ + "▁Navan", + -15.686080932617188 + ], + [ + "▁towbar", + -15.686127662658691 + ], + [ + "Flickr", + -15.686197280883789 + ], + [ + "padding", + -15.686243057250977 + ], + [ + "manipulation", + -15.686325073242188 + ], + [ + "▁symbiote", + -15.686325073242188 + ], + [ + "▁embryogenesis", + -15.686338424682617 + ], + [ + "▁Lassie", + -15.686347961425781 + ], + [ + "▁Ticonderoga", + -15.686348915100098 + ], + [ + "▁Willowbrook", + -15.686373710632324 + ], + [ + "▁Proliferation", + -15.686385154724121 + ], + [ + "▁Ioannis", + -15.686402320861816 + ], + [ + "▁초", + -15.686406135559082 + ], + [ + "▁einmal", + -15.686524391174316 + ], + [ + "▁COOLING", + -15.686532974243164 + ], + [ + "▁HORROR", + -15.686562538146973 + ], + [ + "▁whist", + -15.686586380004883 + ], + [ + "▁Misérables", + -15.686588287353516 + ], + [ + "▁morphologies", + -15.686623573303223 + ], + [ + "čí", + -15.6866455078125 + ], + [ + "ǒ", + -15.686667442321777 + ], + [ + "▁Lubrication", + -15.686746597290039 + ], + [ + "catalyzed", + -15.686751365661621 + ], + [ + "▁SGML", + -15.686838150024414 + ], + [ + "Glyc", + -15.686854362487793 + ], + [ + "▁Blandford", + -15.686866760253906 + ], + [ + "▁Bodmin", + -15.686902046203613 + ], + [ + "▁asceticism", + -15.686943054199219 + ], + [ + "▁Tevez", + -15.686956405639648 + ], + [ + "▁vivax", + -15.687009811401367 + ], + [ + "Marilyn", + -15.687012672424316 + ], + [ + "▁här", + -15.68702507019043 + ], + [ + "▁Calaveras", + -15.68703842163086 + ], + [ + "溶", + -15.687111854553223 + ], + [ + "▁indispensible", + -15.687117576599121 + ], + [ + "ား", + -15.687118530273438 + ], + [ + "ifolium", + -15.687127113342285 + ], + [ + "▁TOWIE", + -15.68714427947998 + ], + [ + "amanda", + -15.687154769897461 + ], + [ + "▁lanceolate", + -15.687174797058105 + ], + [ + "▁CURRENTLY", + -15.687202453613281 + ], + [ + "▁Substation", + -15.687211036682129 + ], + [ + "▁McInerney", + -15.687276840209961 + ], + [ + "▁Kaiju", + -15.687291145324707 + ], + [ + "▁mikro", + -15.687314987182617 + ], + [ + "▁LEON", + -15.68731689453125 + ], + [ + "айте", + -15.68732738494873 + ], + [ + "Palatinate", + -15.68741226196289 + ], + [ + "awakening", + -15.687413215637207 + ], + [ + "▁Blockade", + -15.687417030334473 + ], + [ + "▁Stihl", + -15.687451362609863 + ], + [ + "▁jako", + -15.68755054473877 + ], + [ + "▁Mertz", + -15.68758773803711 + ], + [ + "▁agglomerate", + -15.68759536743164 + ], + [ + "▁Reinforce", + -15.687614440917969 + ], + [ + "▁Atheros", + -15.687703132629395 + ], + [ + "neighbour", + -15.687807083129883 + ], + [ + "▁duplicative", + -15.687807083129883 + ], + [ + "PDIF", + -15.687854766845703 + ], + [ + "▁Quirin", + -15.687877655029297 + ], + [ + "▁mélange", + -15.687973022460938 + ], + [ + "hashtag", + -15.688004493713379 + ], + [ + "▁lemme", + -15.68803882598877 + ], + [ + "archaeology", + -15.688042640686035 + ], + [ + "поль", + -15.688055992126465 + ], + [ + "ников", + -15.68805980682373 + ], + [ + "▁Meadowbrook", + -15.688074111938477 + ], + [ + "▁endorphin", + -15.688173294067383 + ], + [ + "▁brouhaha", + -15.688311576843262 + ], + [ + "▁pyrex", + -15.688360214233398 + ], + [ + "▁ALLOY", + -15.68838119506836 + ], + [ + "▁Gdańsk", + -15.688419342041016 + ], + [ + "Variety", + -15.688475608825684 + ], + [ + "▁Excavating", + -15.688497543334961 + ], + [ + "▁hacksaw", + -15.688542366027832 + ], + [ + "▁biocide", + -15.688546180725098 + ], + [ + "▁htc", + -15.688575744628906 + ], + [ + "▁발생", + -15.688603401184082 + ], + [ + "▁Geocaching", + -15.688630104064941 + ], + [ + "psychiatric", + -15.688654899597168 + ], + [ + "▁McGuinty", + -15.688762664794922 + ], + [ + "▁société", + -15.688762664794922 + ], + [ + "▁Lallana", + -15.688803672790527 + ], + [ + "▁Podiatrist", + -15.68881607055664 + ], + [ + "▁UNAIDS", + -15.688838005065918 + ], + [ + "▁puncturing", + -15.6888427734375 + ], + [ + "▁Phlebotomy", + -15.68886947631836 + ], + [ + "▁theoretician", + -15.688902854919434 + ], + [ + "▁palatal", + -15.688972473144531 + ], + [ + "▁Phaneuf", + -15.68897533416748 + ], + [ + "▁neurotrophic", + -15.68897819519043 + ], + [ + "rubbed", + -15.689001083374023 + ], + [ + "▁Ehrenreich", + -15.689002990722656 + ], + [ + "▁albinism", + -15.689055442810059 + ], + [ + "▁TIRES", + -15.689065933227539 + ], + [ + "▁negroes", + -15.689107894897461 + ], + [ + "▁CTExcel", + -15.689135551452637 + ], + [ + "▁guesstimate", + -15.68913745880127 + ], + [ + "▁Rück", + -15.689178466796875 + ], + [ + "▁Cartoonist", + -15.689205169677734 + ], + [ + "officio", + -15.68927001953125 + ], + [ + "▁GREATER", + -15.689274787902832 + ], + [ + "▁interleaved", + -15.689390182495117 + ], + [ + "▁Tranmere", + -15.68942928314209 + ], + [ + "▁pudgy", + -15.689438819885254 + ], + [ + "▁untiring", + -15.689455032348633 + ], + [ + "▁Eustis", + -15.689480781555176 + ], + [ + "▁Doorbell", + -15.689481735229492 + ], + [ + "▁Cunliffe", + -15.689535140991211 + ], + [ + "▁ischaemic", + -15.68956184387207 + ], + [ + "▁Trundle", + -15.689563751220703 + ], + [ + "▁FORTUNE", + -15.689617156982422 + ], + [ + "▁Waggoner", + -15.6896390914917 + ], + [ + "▁cephalopod", + -15.689667701721191 + ], + [ + "▁Geisel", + -15.689682006835938 + ], + [ + "123456", + -15.689682960510254 + ], + [ + "ignition", + -15.689705848693848 + ], + [ + "▁bromance", + -15.689729690551758 + ], + [ + "▁metagenomic", + -15.689738273620605 + ], + [ + "▁Fitzgibbon", + -15.689772605895996 + ], + [ + "▁Trichy", + -15.689817428588867 + ], + [ + "▁Cappella", + -15.689820289611816 + ], + [ + "▁Emphasizing", + -15.689826011657715 + ], + [ + "▁immunologic", + -15.689839363098145 + ], + [ + "▁VRBO", + -15.689896583557129 + ], + [ + "QUOTE", + -15.689970016479492 + ], + [ + "▁ziploc", + -15.690001487731934 + ], + [ + "Alicia", + -15.690041542053223 + ], + [ + "▁voilà", + -15.690091133117676 + ], + [ + "▁Fujimori", + -15.690108299255371 + ], + [ + "▁partakers", + -15.69013500213623 + ], + [ + "ила", + -15.690135955810547 + ], + [ + "▁Houlihan", + -15.690197944641113 + ], + [ + "▁hacia", + -15.690208435058594 + ], + [ + "ferrer", + -15.69022274017334 + ], + [ + "립", + -15.690303802490234 + ], + [ + "αυτ", + -15.690335273742676 + ], + [ + "野", + -15.690345764160156 + ], + [ + "▁Tanganyika", + -15.690357208251953 + ], + [ + "如果", + -15.6904296875 + ], + [ + "▁Wagg", + -15.690434455871582 + ], + [ + "integrating", + -15.690435409545898 + ], + [ + "▁пе", + -15.690513610839844 + ], + [ + "▁Jozef", + -15.690546035766602 + ], + [ + "▁Narmada", + -15.690557479858398 + ], + [ + "Stupid", + -15.690561294555664 + ], + [ + "▁Bisbee", + -15.690596580505371 + ], + [ + "▁omniscience", + -15.690705299377441 + ], + [ + "IFRS", + -15.690792083740234 + ], + [ + "▁Alfons", + -15.690837860107422 + ], + [ + "▁reimbursing", + -15.690889358520508 + ], + [ + "▁TRPV", + -15.690933227539062 + ], + [ + "▁Bacteriol", + -15.690942764282227 + ], + [ + "▁endotracheal", + -15.690970420837402 + ], + [ + "▁Radulov", + -15.690975189208984 + ], + [ + "ninety", + -15.690988540649414 + ], + [ + "bazar", + -15.690999984741211 + ], + [ + "terminable", + -15.691095352172852 + ], + [ + "▁UNAM", + -15.691116333007812 + ], + [ + "ペ", + -15.691150665283203 + ], + [ + "▁chrysalis", + -15.691184043884277 + ], + [ + "▁Österreich", + -15.691184997558594 + ], + [ + "▁Adonai", + -15.691244125366211 + ], + [ + "▁entrada", + -15.69125747680664 + ], + [ + "효", + -15.691288948059082 + ], + [ + "▁Ryukyu", + -15.691454887390137 + ], + [ + "▁Parkersburg", + -15.691487312316895 + ], + [ + "▁stria", + -15.691509246826172 + ], + [ + "▁Fukuda", + -15.69153118133545 + ], + [ + "▁anesthesiology", + -15.691608428955078 + ], + [ + "▁Futuristic", + -15.691620826721191 + ], + [ + "▁Pasir", + -15.69162654876709 + ], + [ + "▁COOKIE", + -15.691681861877441 + ], + [ + "dessert", + -15.691731452941895 + ], + [ + "MOTION", + -15.69178295135498 + ], + [ + "▁được", + -15.691821098327637 + ], + [ + "▁Sqtf", + -15.69184398651123 + ], + [ + "fading", + -15.691878318786621 + ], + [ + "▁psychomotor", + -15.691943168640137 + ], + [ + "▁subarachnoid", + -15.691954612731934 + ], + [ + "redundant", + -15.691961288452148 + ], + [ + "unicorn", + -15.692001342773438 + ], + [ + "▁Huong", + -15.692093849182129 + ], + [ + "▁Gastonia", + -15.692097663879395 + ], + [ + "▁YHVH", + -15.692113876342773 + ], + [ + "▁macrame", + -15.692171096801758 + ], + [ + "Suddenly", + -15.692172050476074 + ], + [ + "▁Hammel", + -15.692179679870605 + ], + [ + "▁magoosh", + -15.692205429077148 + ], + [ + "nuclei", + -15.692270278930664 + ], + [ + "▁Levesque", + -15.692270278930664 + ], + [ + "Anxiety", + -15.692278861999512 + ], + [ + "eswaran", + -15.692307472229004 + ], + [ + "бол", + -15.692355155944824 + ], + [ + "▁Pyrrha", + -15.692461013793945 + ], + [ + "▁unsuspected", + -15.692514419555664 + ], + [ + "▁Miho", + -15.692546844482422 + ], + [ + "öck", + -15.692554473876953 + ], + [ + "▁rappelling", + -15.692586898803711 + ], + [ + "▁Xarelto", + -15.692620277404785 + ], + [ + "▁unsolvable", + -15.692646980285645 + ], + [ + "▁tylenol", + -15.692727088928223 + ], + [ + "▁clematis", + -15.692780494689941 + ], + [ + "▁Kryptonite", + -15.692789077758789 + ], + [ + "▁neuroplasticity", + -15.6928071975708 + ], + [ + "▁Prosperous", + -15.69282054901123 + ], + [ + "▁Dotted", + -15.692865371704102 + ], + [ + "▁Radiologist", + -15.692870140075684 + ], + [ + "▁Dialectic", + -15.692873001098633 + ], + [ + "▁Suicidal", + -15.692889213562012 + ], + [ + "▁Ankeny", + -15.692890167236328 + ], + [ + "Edison", + -15.692892074584961 + ], + [ + "▁LADIES", + -15.692892074584961 + ], + [ + "violation", + -15.69294261932373 + ], + [ + "ौ", + -15.692967414855957 + ], + [ + "▁Telemetry", + -15.693004608154297 + ], + [ + "▁acclamation", + -15.693106651306152 + ], + [ + "necessarily", + -15.693107604980469 + ], + [ + "▁pedagogies", + -15.693153381347656 + ], + [ + "▁Tincture", + -15.693168640136719 + ], + [ + "▁YOUTUBE", + -15.693181037902832 + ], + [ + "▁Rhetorical", + -15.69329833984375 + ], + [ + "▁Disposing", + -15.693310737609863 + ], + [ + "▁Borrelia", + -15.693318367004395 + ], + [ + "пп", + -15.693412780761719 + ], + [ + "▁Kitchenaid", + -15.693421363830566 + ], + [ + "▁LENOVO", + -15.69344711303711 + ], + [ + "▁Blarney", + -15.693449020385742 + ], + [ + "▁Marlena", + -15.693466186523438 + ], + [ + "▁Marija", + -15.693488121032715 + ], + [ + "▁Carrol", + -15.693497657775879 + ], + [ + "ା", + -15.693527221679688 + ], + [ + "▁Bacolod", + -15.693527221679688 + ], + [ + "▁dissapoint", + -15.693552017211914 + ], + [ + "▁OWASP", + -15.693584442138672 + ], + [ + "▁Mysuru", + -15.693730354309082 + ], + [ + "injector", + -15.693794250488281 + ], + [ + "▁outrebounded", + -15.693794250488281 + ], + [ + "▁Bergoglio", + -15.69379997253418 + ], + [ + "▁agonize", + -15.693808555603027 + ], + [ + "ԛ", + -15.693846702575684 + ], + [ + "▁Menorah", + -15.693938255310059 + ], + [ + "▁Gaither", + -15.693995475769043 + ], + [ + "▁pearlescent", + -15.69401741027832 + ], + [ + "▁Gaudí", + -15.694114685058594 + ], + [ + "▁przez", + -15.694119453430176 + ], + [ + "▁Turnip", + -15.694199562072754 + ], + [ + "▁leachate", + -15.69421672821045 + ], + [ + "▁Carnoustie", + -15.694221496582031 + ], + [ + "Destiny", + -15.694281578063965 + ], + [ + "νε", + -15.694342613220215 + ], + [ + "▁Krazy", + -15.694355010986328 + ], + [ + "클", + -15.694355010986328 + ], + [ + "▁Klerk", + -15.69439697265625 + ], + [ + "▁Gasser", + -15.694404602050781 + ], + [ + "▁Ileana", + -15.69442081451416 + ], + [ + "▁Saugus", + -15.694452285766602 + ], + [ + "▁CIRCUIT", + -15.69456958770752 + ], + [ + "ген", + -15.694574356079102 + ], + [ + "▁IMPROVEMENT", + -15.694591522216797 + ], + [ + "▁Hoef", + -15.69459342956543 + ], + [ + "siewicz", + -15.694608688354492 + ], + [ + "▁convenor", + -15.694622039794922 + ], + [ + "ණ", + -15.694648742675781 + ], + [ + "▁TÜV", + -15.694648742675781 + ], + [ + "▁Gilliland", + -15.69467544555664 + ], + [ + "▁Kalmar", + -15.694676399230957 + ], + [ + "▁Repsol", + -15.694695472717285 + ], + [ + "Hanlon", + -15.694701194763184 + ], + [ + "patience", + -15.694733619689941 + ], + [ + "Steagall", + -15.694794654846191 + ], + [ + "▁Zuba", + -15.694804191589355 + ], + [ + "▁Melchior", + -15.694836616516113 + ], + [ + "良", + -15.694908142089844 + ], + [ + "▁moringa", + -15.694929122924805 + ], + [ + "検出", + -15.694955825805664 + ], + [ + "альная", + -15.694985389709473 + ], + [ + "▁Cyclades", + -15.694997787475586 + ], + [ + "Kristin", + -15.695039749145508 + ], + [ + "Carolyn", + -15.695054054260254 + ], + [ + "▁SATELLITE", + -15.695075988769531 + ], + [ + "▁Sociologist", + -15.695138931274414 + ], + [ + "▁Ishida", + -15.69516658782959 + ], + [ + "▁Paquette", + -15.695195198059082 + ], + [ + "▁OBGYN", + -15.69521713256836 + ], + [ + "▁sqlite", + -15.695249557495117 + ], + [ + "▁amalgamate", + -15.695259094238281 + ], + [ + "אי", + -15.695291519165039 + ], + [ + "▁lassi", + -15.695301055908203 + ], + [ + "▁rationalisation", + -15.695313453674316 + ], + [ + "▁fertilisation", + -15.695316314697266 + ], + [ + "ulescu", + -15.695337295532227 + ], + [ + "▁Interconnection", + -15.695364952087402 + ], + [ + "▁Barrage", + -15.695384979248047 + ], + [ + "▁obeisance", + -15.695449829101562 + ], + [ + "▁comentario", + -15.695450782775879 + ], + [ + "▁Bernese", + -15.695582389831543 + ], + [ + "КО", + -15.695624351501465 + ], + [ + "physiologic", + -15.695632934570312 + ], + [ + "kreis", + -15.695670127868652 + ], + [ + "▁Behrens", + -15.695700645446777 + ], + [ + "▁Ilorin", + -15.695718765258789 + ], + [ + "▁Putrajaya", + -15.695772171020508 + ], + [ + "ibition", + -15.69578742980957 + ], + [ + "▁Pheromone", + -15.69579792022705 + ], + [ + "▁subdirectories", + -15.69585132598877 + ], + [ + "▁Würzburg", + -15.695904731750488 + ], + [ + "▁STACK", + -15.695929527282715 + ], + [ + "brimmed", + -15.695965766906738 + ], + [ + "▁Vostok", + -15.696002006530762 + ], + [ + "▁Stereotypes", + -15.696006774902344 + ], + [ + "▁stdout", + -15.69611930847168 + ], + [ + "IgG", + -15.696136474609375 + ], + [ + "▁chamberlain", + -15.69618034362793 + ], + [ + "▁Pelton", + -15.696186065673828 + ], + [ + "▁magickal", + -15.696240425109863 + ], + [ + "Uniform", + -15.696256637573242 + ], + [ + "▁Osteopath", + -15.696388244628906 + ], + [ + "▁Centipede", + -15.696413040161133 + ], + [ + "▁नि", + -15.696455001831055 + ], + [ + "▁polyphony", + -15.696487426757812 + ], + [ + "smear", + -15.696571350097656 + ], + [ + "▁Alphonso", + -15.696599960327148 + ], + [ + "▁conversationalist", + -15.696642875671387 + ], + [ + "▁acetylene", + -15.696663856506348 + ], + [ + "▁WCAG", + -15.696718215942383 + ], + [ + "hippie", + -15.69672679901123 + ], + [ + "▁duopoly", + -15.696776390075684 + ], + [ + "▁Casket", + -15.69677734375 + ], + [ + "▁christopher", + -15.696791648864746 + ], + [ + "▁CORPORATE", + -15.696867942810059 + ], + [ + "▁Kratz", + -15.696928977966309 + ], + [ + "状態", + -15.696930885314941 + ], + [ + "USAID", + -15.696967124938965 + ], + [ + "▁Thucydides", + -15.697001457214355 + ], + [ + "marketplace", + -15.697041511535645 + ], + [ + "▁aflatoxin", + -15.69710922241211 + ], + [ + "▁commensal", + -15.697110176086426 + ], + [ + "▁Speakeasy", + -15.697118759155273 + ], + [ + "▁peephole", + -15.697141647338867 + ], + [ + "whirl", + -15.697197914123535 + ], + [ + "▁Tentacle", + -15.697197914123535 + ], + [ + "▁surreptitious", + -15.697227478027344 + ], + [ + "初", + -15.69722843170166 + ], + [ + "PARTY", + -15.697294235229492 + ], + [ + "▁Antiqua", + -15.697303771972656 + ], + [ + "▁Cathcart", + -15.697308540344238 + ], + [ + "▁DEBT", + -15.697403907775879 + ], + [ + "▁MICHELLE", + -15.697403907775879 + ], + [ + "▁backstabbing", + -15.697510719299316 + ], + [ + "▁Pakatan", + -15.697530746459961 + ], + [ + "▁Tarasenko", + -15.69759464263916 + ], + [ + "TRUST", + -15.697628021240234 + ], + [ + "▁GDAX", + -15.69763469696045 + ], + [ + "州", + -15.697640419006348 + ], + [ + "KAY", + -15.697648048400879 + ], + [ + "Ranch", + -15.697680473327637 + ], + [ + "misleading", + -15.697701454162598 + ], + [ + "実施形態", + -15.697725296020508 + ], + [ + "▁CHROME", + -15.697803497314453 + ], + [ + "▁dammed", + -15.697824478149414 + ], + [ + "▁REMEDY", + -15.697832107543945 + ], + [ + "▁Darussalam", + -15.697858810424805 + ], + [ + "▁periwinkle", + -15.697858810424805 + ], + [ + "▁periodontist", + -15.697885513305664 + ], + [ + "fetish", + -15.697891235351562 + ], + [ + "▁Matsuyama", + -15.697904586791992 + ], + [ + "▁Categorical", + -15.69791316986084 + ], + [ + "pheresis", + -15.697951316833496 + ], + [ + "COIN", + -15.69805908203125 + ], + [ + "▁nullification", + -15.698062896728516 + ], + [ + "▁Powhatan", + -15.698073387145996 + ], + [ + "▁malibu", + -15.698126792907715 + ], + [ + "رض", + -15.698139190673828 + ], + [ + "▁undigested", + -15.698153495788574 + ], + [ + "▁Elspeth", + -15.698180198669434 + ], + [ + "Conduct", + -15.69820785522461 + ], + [ + "coherent", + -15.6983060836792 + ], + [ + "▁Macarthur", + -15.698314666748047 + ], + [ + "Planner", + -15.698389053344727 + ], + [ + "sixteen", + -15.698399543762207 + ], + [ + "▁NWSL", + -15.698410987854004 + ], + [ + "▁Sukhoi", + -15.698440551757812 + ], + [ + "▁Barnstaple", + -15.698480606079102 + ], + [ + "▁decimating", + -15.698555946350098 + ], + [ + "▁Meacham", + -15.698585510253906 + ], + [ + "▁pillaging", + -15.698690414428711 + ], + [ + "▁Zeli", + -15.69877815246582 + ], + [ + "habitation", + -15.698782920837402 + ], + [ + "▁AECOM", + -15.698808670043945 + ], + [ + "剂", + -15.698830604553223 + ], + [ + "▁Durrell", + -15.698896408081055 + ], + [ + "leiter", + -15.698908805847168 + ], + [ + "▁Keeneland", + -15.698908805847168 + ], + [ + "▁Nephilim", + -15.698966026306152 + ], + [ + "▁qigong", + -15.699015617370605 + ], + [ + "competing", + -15.699036598205566 + ], + [ + "▁Vieja", + -15.699037551879883 + ], + [ + "TAY", + -15.699061393737793 + ], + [ + "▁Dermalogica", + -15.69912052154541 + ], + [ + "▁hypnotize", + -15.699137687683105 + ], + [ + "▁shinning", + -15.699164390563965 + ], + [ + "ensuring", + -15.699222564697266 + ], + [ + "fiddle", + -15.699308395385742 + ], + [ + "▁Steubenville", + -15.699319839477539 + ], + [ + "▁streptomycin", + -15.699334144592285 + ], + [ + "▁Bayonetta", + -15.699360847473145 + ], + [ + "▁Sarkisian", + -15.699360847473145 + ], + [ + "▁Tindall", + -15.699389457702637 + ], + [ + "▁Colón", + -15.699420928955078 + ], + [ + "▁Cineplex", + -15.69948959350586 + ], + [ + "▁extrude", + -15.699517250061035 + ], + [ + "▁Dongfeng", + -15.699565887451172 + ], + [ + "▁whodunit", + -15.699567794799805 + ], + [ + "▁commutative", + -15.699584007263184 + ], + [ + "HEART", + -15.699597358703613 + ], + [ + "▁Whanganui", + -15.699628829956055 + ], + [ + "▁retooling", + -15.699684143066406 + ], + [ + "Jewelry", + -15.699728012084961 + ], + [ + "▁Mosca", + -15.69975471496582 + ], + [ + "▁Krauthammer", + -15.69981861114502 + ], + [ + "▁Habra", + -15.699833869934082 + ], + [ + "♫", + -15.699897766113281 + ], + [ + "▁Wilford", + -15.69993782043457 + ], + [ + "british", + -15.699939727783203 + ], + [ + "▁trenchant", + -15.699976921081543 + ], + [ + "▁Bourgogne", + -15.700032234191895 + ], + [ + "▁Colada", + -15.700035095214844 + ], + [ + "oulou", + -15.700042724609375 + ], + [ + "▁Ellsbury", + -15.700058937072754 + ], + [ + "▁Leonora", + -15.700112342834473 + ], + [ + "gliptin", + -15.700121879577637 + ], + [ + "▁Snort", + -15.700154304504395 + ], + [ + "▁Wayanad", + -15.700169563293457 + ], + [ + "▁FERPA", + -15.7001953125 + ], + [ + "▁morocco", + -15.700215339660645 + ], + [ + "▁pueda", + -15.700218200683594 + ], + [ + "bjorn", + -15.700239181518555 + ], + [ + "即", + -15.70024585723877 + ], + [ + "Automotive", + -15.700275421142578 + ], + [ + "▁लिए", + -15.700300216674805 + ], + [ + "▁Besiktas", + -15.7003812789917 + ], + [ + "rupp", + -15.700434684753418 + ], + [ + "ONNE", + -15.700480461120605 + ], + [ + "▁Michiel", + -15.700549125671387 + ], + [ + "以上", + -15.700583457946777 + ], + [ + "Allison", + -15.700630187988281 + ], + [ + "▁CAPEX", + -15.700642585754395 + ], + [ + "▁DESCRIBE", + -15.700765609741211 + ], + [ + "▁Obituaries", + -15.700838088989258 + ], + [ + "▁Eerdmans", + -15.700891494750977 + ], + [ + "▁sudoku", + -15.700931549072266 + ], + [ + "▁Kottayam", + -15.700972557067871 + ], + [ + "▁Sonntag", + -15.701016426086426 + ], + [ + "▁Rubble", + -15.701017379760742 + ], + [ + "▁vasodilation", + -15.70105266571045 + ], + [ + "▁Navidad", + -15.70107364654541 + ], + [ + "▁бу", + -15.701204299926758 + ], + [ + "▁grazie", + -15.701306343078613 + ], + [ + "▁podría", + -15.701323509216309 + ], + [ + "▁LaBelle", + -15.701361656188965 + ], + [ + "▁TALLAHASSEE", + -15.701375007629395 + ], + [ + "▁inaugurating", + -15.70142936706543 + ], + [ + "Discrimination", + -15.701436996459961 + ], + [ + "▁Meerkat", + -15.701468467712402 + ], + [ + "▁emulsified", + -15.701482772827148 + ], + [ + "▁pragmatically", + -15.701576232910156 + ], + [ + "dallas", + -15.701611518859863 + ], + [ + "▁Terraform", + -15.70162296295166 + ], + [ + "▁Bellarmine", + -15.701643943786621 + ], + [ + "▁Sifu", + -15.70168399810791 + ], + [ + "▁marginalisation", + -15.701700210571289 + ], + [ + "▁apologetically", + -15.701716423034668 + ], + [ + "▁MASON", + -15.701726913452148 + ], + [ + "▁SPAIN", + -15.701845169067383 + ], + [ + "▁Jernigan", + -15.701859474182129 + ], + [ + "▁unsportsmanlike", + -15.701859474182129 + ], + [ + "▁consonance", + -15.701886177062988 + ], + [ + "▁Bintang", + -15.701948165893555 + ], + [ + "▁aminotransferase", + -15.701955795288086 + ], + [ + "▁Effortlessly", + -15.70201587677002 + ], + [ + "▁Agoura", + -15.70222282409668 + ], + [ + "▁puedo", + -15.702229499816895 + ], + [ + "▁Negeri", + -15.702232360839844 + ], + [ + "▁humbug", + -15.702254295349121 + ], + [ + "▁LIRR", + -15.702290534973145 + ], + [ + "جل", + -15.702338218688965 + ], + [ + "Technica", + -15.702349662780762 + ], + [ + "▁PURPLE", + -15.702391624450684 + ], + [ + "▁airbnb", + -15.702427864074707 + ], + [ + "▁Binyamin", + -15.702452659606934 + ], + [ + "elective", + -15.702457427978516 + ], + [ + "▁bekannt", + -15.702468872070312 + ], + [ + "▁Titicaca", + -15.702478408813477 + ], + [ + "SCREEN", + -15.702479362487793 + ], + [ + "▁vibrators", + -15.70250129699707 + ], + [ + "▁Girish", + -15.702502250671387 + ], + [ + "▁Mandrake", + -15.702567100524902 + ], + [ + "▁PERCENT", + -15.7025728225708 + ], + [ + "ετ", + -15.702619552612305 + ], + [ + "确", + -15.702622413635254 + ], + [ + "▁Depressive", + -15.702706336975098 + ], + [ + "plosion", + -15.702744483947754 + ], + [ + "▁Mancuso", + -15.702747344970703 + ], + [ + "Guarantee", + -15.702754974365234 + ], + [ + "▁Frappuccino", + -15.702775001525879 + ], + [ + "▁Diogo", + -15.70284652709961 + ], + [ + "▁Navratri", + -15.702882766723633 + ], + [ + "著", + -15.702889442443848 + ], + [ + "▁Okorocha", + -15.702909469604492 + ], + [ + "▁Drexler", + -15.702936172485352 + ], + [ + "cytoma", + -15.702939987182617 + ], + [ + "▁sorbitol", + -15.702962875366211 + ], + [ + "▁Yuji", + -15.703027725219727 + ], + [ + "▁Likelihood", + -15.703043937683105 + ], + [ + "▁Fuhrman", + -15.703047752380371 + ], + [ + "▁Malagasy", + -15.703063011169434 + ], + [ + "▁McClean", + -15.703068733215332 + ], + [ + "Biblical", + -15.703079223632812 + ], + [ + "▁Clinker", + -15.703080177307129 + ], + [ + "▁Destruct", + -15.703134536743164 + ], + [ + "retrieve", + -15.703141212463379 + ], + [ + "▁Proactol", + -15.703178405761719 + ], + [ + "▁Kimpton", + -15.7031888961792 + ], + [ + "▁Nazca", + -15.703194618225098 + ], + [ + "▁Jarrell", + -15.703279495239258 + ], + [ + "መ", + -15.703312873840332 + ], + [ + "两", + -15.703317642211914 + ], + [ + "▁Sulfo", + -15.703330993652344 + ], + [ + "deemed", + -15.703348159790039 + ], + [ + "▁Korda", + -15.703348159790039 + ], + [ + "▁WALLACE", + -15.703374862670898 + ], + [ + "▁Positivity", + -15.703391075134277 + ], + [ + "▁upliftment", + -15.703402519226074 + ], + [ + "ubber", + -15.703405380249023 + ], + [ + "▁rerouting", + -15.70347785949707 + ], + [ + "▁Durkheim", + -15.703556060791016 + ], + [ + "▁Transceiver", + -15.703582763671875 + ], + [ + "▁ZOO", + -15.70358657836914 + ], + [ + "▁Arakan", + -15.703590393066406 + ], + [ + "▁Permitting", + -15.703601837158203 + ], + [ + "ρω", + -15.703604698181152 + ], + [ + "▁svoj", + -15.703642845153809 + ], + [ + "▁millenium", + -15.703672409057617 + ], + [ + "▁niobium", + -15.703690528869629 + ], + [ + "▁tatami", + -15.703703880310059 + ], + [ + "▁FHWA", + -15.703709602355957 + ], + [ + "▁Pastrnak", + -15.703744888305664 + ], + [ + "▁Burgundian", + -15.703771591186523 + ], + [ + "▁Authenticate", + -15.703781127929688 + ], + [ + "▁Iskandar", + -15.7037992477417 + ], + [ + "aktiv", + -15.70380973815918 + ], + [ + "Absolute", + -15.703819274902344 + ], + [ + "áil", + -15.703822135925293 + ], + [ + "▁Fortaleza", + -15.703852653503418 + ], + [ + "triptan", + -15.70385456085205 + ], + [ + "benzoic", + -15.703873634338379 + ], + [ + "▁pendent", + -15.703885078430176 + ], + [ + "▁Riverbend", + -15.703892707824707 + ], + [ + "▁oases", + -15.703923225402832 + ], + [ + "▁Geologic", + -15.703985214233398 + ], + [ + "▁Stunned", + -15.703987121582031 + ], + [ + "▁Shrugged", + -15.704042434692383 + ], + [ + "▁Claridge", + -15.704071044921875 + ], + [ + "▁Escambia", + -15.704094886779785 + ], + [ + "▁Loach", + -15.704262733459473 + ], + [ + "▁Laughton", + -15.704283714294434 + ], + [ + "优", + -15.704288482666016 + ], + [ + "▁Beeston", + -15.704341888427734 + ], + [ + "benchmark", + -15.704366683959961 + ], + [ + "owice", + -15.704423904418945 + ], + [ + "▁Lupton", + -15.704506874084473 + ], + [ + "▁disorganised", + -15.704571723937988 + ], + [ + "▁Stuckey", + -15.70462417602539 + ], + [ + "▁Enlargement", + -15.704627990722656 + ], + [ + "ATPase", + -15.704646110534668 + ], + [ + "▁Grapple", + -15.704692840576172 + ], + [ + "▁Gambier", + -15.704719543457031 + ], + [ + "▁NIMBY", + -15.704855918884277 + ], + [ + "Barack", + -15.704859733581543 + ], + [ + "▁jackhammer", + -15.704911231994629 + ], + [ + "▁Sonali", + -15.704930305480957 + ], + [ + "▁CHINESE", + -15.704931259155273 + ], + [ + "▁convulsive", + -15.70504093170166 + ], + [ + "▁Gimli", + -15.705046653747559 + ], + [ + "▁Celica", + -15.705092430114746 + ], + [ + "▁Ekaterinburg", + -15.705093383789062 + ], + [ + "▁BUZZ", + -15.705129623413086 + ], + [ + "▁Glycine", + -15.705146789550781 + ], + [ + "▁Recife", + -15.705164909362793 + ], + [ + "gradient", + -15.705334663391113 + ], + [ + "▁Nyssa", + -15.705361366271973 + ], + [ + "▁borosilicate", + -15.705389976501465 + ], + [ + "▁unperturbed", + -15.705389976501465 + ], + [ + "▁creche", + -15.705422401428223 + ], + [ + "▁Heracles", + -15.705423355102539 + ], + [ + "▁Kenseth", + -15.705428123474121 + ], + [ + "▁MYSTERY", + -15.705438613891602 + ], + [ + "▁Jonsson", + -15.705528259277344 + ], + [ + "英语", + -15.705530166625977 + ], + [ + "▁hajj", + -15.705642700195312 + ], + [ + "▁bermuda", + -15.705643653869629 + ], + [ + "▁Molitor", + -15.705656051635742 + ], + [ + "▁Collusion", + -15.705657958984375 + ], + [ + "▁RELIABLE", + -15.705714225769043 + ], + [ + "▁LIFESTYLE", + -15.705717086791992 + ], + [ + "▁Ulaanbaatar", + -15.705740928649902 + ], + [ + "▁Seyfried", + -15.705835342407227 + ], + [ + "▁adduced", + -15.705866813659668 + ], + [ + "린", + -15.705876350402832 + ], + [ + "Luckily", + -15.705973625183105 + ], + [ + "JFK", + -15.7060546875 + ], + [ + "hemoglobin", + -15.706080436706543 + ], + [ + "ॉ", + -15.706092834472656 + ], + [ + "▁Epidemiological", + -15.706146240234375 + ], + [ + "▁easiness", + -15.706148147583008 + ], + [ + "▁Bjørn", + -15.706172943115234 + ], + [ + "▁Zukunft", + -15.70617389678955 + ], + [ + "Creep", + -15.70619010925293 + ], + [ + "▁Slovacka", + -15.70620059967041 + ], + [ + "Quiz", + -15.706246376037598 + ], + [ + "akhir", + -15.706253051757812 + ], + [ + "▁pneumothorax", + -15.70630931854248 + ], + [ + "clomid", + -15.706334114074707 + ], + [ + "šić", + -15.7063570022583 + ], + [ + "▁Counterterrorism", + -15.706391334533691 + ], + [ + "▁Magnetism", + -15.706524848937988 + ], + [ + "▁Dieppe", + -15.706548690795898 + ], + [ + "Historic", + -15.706587791442871 + ], + [ + "▁Imaginative", + -15.706600189208984 + ], + [ + "▁Schlage", + -15.706602096557617 + ], + [ + "▁Carmarthen", + -15.706629753112793 + ], + [ + "▁Inhabitants", + -15.706632614135742 + ], + [ + "▁Ysidro", + -15.706713676452637 + ], + [ + "▁Esparza", + -15.706742286682129 + ], + [ + "▁DAUGHTER", + -15.706768035888672 + ], + [ + "flattering", + -15.706785202026367 + ], + [ + "▁Stelvio", + -15.706798553466797 + ], + [ + "buffalo", + -15.706908226013184 + ], + [ + "▁Nibble", + -15.7069091796875 + ], + [ + "lucid", + -15.706928253173828 + ], + [ + "تی", + -15.706942558288574 + ], + [ + "▁tribu", + -15.706998825073242 + ], + [ + "▁Divina", + -15.707059860229492 + ], + [ + "▁Sciatica", + -15.707079887390137 + ], + [ + "bolus", + -15.707090377807617 + ], + [ + "shutdown", + -15.707099914550781 + ], + [ + "▁verbena", + -15.70715618133545 + ], + [ + "▁jedoch", + -15.70720100402832 + ], + [ + "Spectrum", + -15.707244873046875 + ], + [ + "▁Bouvier", + -15.707320213317871 + ], + [ + "Lorenzo", + -15.707327842712402 + ], + [ + "▁antiplatelet", + -15.70733642578125 + ], + [ + "▁Charmant", + -15.707353591918945 + ], + [ + "▁CEILING", + -15.70736312866211 + ], + [ + "▁MOUSE", + -15.707425117492676 + ], + [ + "▁Fahad", + -15.707430839538574 + ], + [ + "▁Solvusoft", + -15.707470893859863 + ], + [ + "EGFR", + -15.707527160644531 + ], + [ + "▁confort", + -15.707535743713379 + ], + [ + "▁pulverize", + -15.70754337310791 + ], + [ + "▁THROUGHOUT", + -15.707545280456543 + ], + [ + "calibre", + -15.707653999328613 + ], + [ + "▁papilloma", + -15.707659721374512 + ], + [ + "▁Autopsy", + -15.707666397094727 + ], + [ + "▁tinkle", + -15.707694053649902 + ], + [ + "ении", + -15.707695960998535 + ], + [ + "いた", + -15.707704544067383 + ], + [ + "▁impugn", + -15.707822799682617 + ], + [ + "zzoli", + -15.70782470703125 + ], + [ + "▁Triune", + -15.707886695861816 + ], + [ + "▁Olympique", + -15.707976341247559 + ], + [ + "▁encasing", + -15.708012580871582 + ], + [ + "▁Zoltan", + -15.708025932312012 + ], + [ + "bmw", + -15.708054542541504 + ], + [ + "▁Hornblower", + -15.708057403564453 + ], + [ + "▁Thornbury", + -15.708074569702148 + ], + [ + "▁Mazatlan", + -15.708093643188477 + ], + [ + "Mercedes", + -15.708104133605957 + ], + [ + "▁CHAMBER", + -15.708148002624512 + ], + [ + "▁℗", + -15.708273887634277 + ], + [ + "▁sockeye", + -15.708297729492188 + ], + [ + "▁FRANKLIN", + -15.708321571350098 + ], + [ + "▁gcse", + -15.708327293395996 + ], + [ + "▁Circumcision", + -15.708365440368652 + ], + [ + "▁Karbala", + -15.708391189575195 + ], + [ + "Continental", + -15.70842456817627 + ], + [ + "▁Constru", + -15.708468437194824 + ], + [ + "▁Ellipse", + -15.708504676818848 + ], + [ + "▁Glycolic", + -15.70859146118164 + ], + [ + "manifold", + -15.708612442016602 + ], + [ + "▁Alpina", + -15.708620071411133 + ], + [ + "▁Subcontractor", + -15.708664894104004 + ], + [ + "▁Towle", + -15.708670616149902 + ], + [ + "combustible", + -15.708672523498535 + ], + [ + "▁Instacart", + -15.708683967590332 + ], + [ + "▁Colborne", + -15.708724975585938 + ], + [ + "▁Liftgate", + -15.708727836608887 + ], + [ + "▁Amalie", + -15.708800315856934 + ], + [ + "BWA", + -15.708808898925781 + ], + [ + "▁kinfolk", + -15.708853721618652 + ], + [ + "लि", + -15.708863258361816 + ], + [ + "Teddy", + -15.708902359008789 + ], + [ + "성을", + -15.70890998840332 + ], + [ + "▁Turkana", + -15.708919525146484 + ], + [ + "▁Mutharika", + -15.708932876586914 + ], + [ + "▁Scheifele", + -15.709041595458984 + ], + [ + "▁rumpled", + -15.709047317504883 + ], + [ + "▁chorister", + -15.709114074707031 + ], + [ + "ttingen", + -15.709138870239258 + ], + [ + "▁ELECT", + -15.709166526794434 + ], + [ + "schließ", + -15.709193229675293 + ], + [ + "▁Fernandina", + -15.70923137664795 + ], + [ + "▁Officinalis", + -15.70923137664795 + ], + [ + "▁Symbiosis", + -15.709234237670898 + ], + [ + "▁Relais", + -15.709249496459961 + ], + [ + "▁McDormand", + -15.709285736083984 + ], + [ + "▁Zaheer", + -15.709309577941895 + ], + [ + "▁extens", + -15.709321975708008 + ], + [ + "▁sideburns", + -15.70937728881836 + ], + [ + "ovec", + -15.70938777923584 + ], + [ + "▁Pillay", + -15.70939826965332 + ], + [ + "Pluto", + -15.709494590759277 + ], + [ + "▁memiliki", + -15.709502220153809 + ], + [ + "deliberately", + -15.709510803222656 + ], + [ + "▁summarization", + -15.709529876708984 + ], + [ + "착", + -15.709529876708984 + ], + [ + "▁MARSHALL", + -15.70955753326416 + ], + [ + "▁Скачать", + -15.709637641906738 + ], + [ + "▁Harari", + -15.709692001342773 + ], + [ + "Operating", + -15.709695816040039 + ], + [ + "▁vegetated", + -15.709785461425781 + ], + [ + "▁Vrindavan", + -15.709827423095703 + ], + [ + "▁Masculinity", + -15.709855079650879 + ], + [ + "▁Whistling", + -15.709883689880371 + ], + [ + "▁Mandurah", + -15.709909439086914 + ], + [ + "▁Lukla", + -15.709931373596191 + ], + [ + "▁continence", + -15.709997177124023 + ], + [ + "Parallel", + -15.710000991821289 + ], + [ + "▁DKNY", + -15.710055351257324 + ], + [ + "▁gerbera", + -15.710071563720703 + ], + [ + "▁LAFC", + -15.710086822509766 + ], + [ + "▁Saddler", + -15.71015739440918 + ], + [ + "ʏ", + -15.710169792175293 + ], + [ + "▁Giudice", + -15.710186004638672 + ], + [ + "▁Borisov", + -15.71020793914795 + ], + [ + "▁Bacharach", + -15.710262298583984 + ], + [ + "▁Nadeau", + -15.710354804992676 + ], + [ + "ciÃ", + -15.710386276245117 + ], + [ + "▁IntelliJ", + -15.710453987121582 + ], + [ + "▁Bandicoot", + -15.710478782653809 + ], + [ + "UniProt", + -15.71052360534668 + ], + [ + "▁bespectacled", + -15.710587501525879 + ], + [ + "▁colabora", + -15.710603713989258 + ], + [ + "▁Pasig", + -15.710604667663574 + ], + [ + "▁switzerland", + -15.710668563842773 + ], + [ + "scramble", + -15.710771560668945 + ], + [ + "naphthalene", + -15.710827827453613 + ], + [ + "▁skydiver", + -15.710846900939941 + ], + [ + "▁qualité", + -15.710854530334473 + ], + [ + "Levitt", + -15.710878372192383 + ], + [ + "▁NISSAN", + -15.710919380187988 + ], + [ + "▁Camargo", + -15.710939407348633 + ], + [ + "pulp", + -15.710943222045898 + ], + [ + "▁dyslipidemia", + -15.710967063903809 + ], + [ + "▁CONCERN", + -15.711104393005371 + ], + [ + "我们", + -15.711109161376953 + ], + [ + "Palmolive", + -15.711226463317871 + ], + [ + "▁germplasm", + -15.711282730102539 + ], + [ + "flirt", + -15.711341857910156 + ], + [ + "▁Mudra", + -15.71135139465332 + ], + [ + "▁Unisys", + -15.711384773254395 + ], + [ + "▁Kullu", + -15.711400032043457 + ], + [ + "▁Seibert", + -15.711408615112305 + ], + [ + "▁jangle", + -15.711409568786621 + ], + [ + "▁gravida", + -15.711420059204102 + ], + [ + "▁epitaxial", + -15.711429595947266 + ], + [ + "vogel", + -15.711472511291504 + ], + [ + "▁jamais", + -15.711477279663086 + ], + [ + "▁Roxburgh", + -15.711494445800781 + ], + [ + "▁knotting", + -15.711575508117676 + ], + [ + "shakti", + -15.711588859558105 + ], + [ + "▁Nonviolent", + -15.71160888671875 + ], + [ + "хи", + -15.711636543273926 + ], + [ + "Chennai", + -15.711689949035645 + ], + [ + "▁Microelectronics", + -15.711715698242188 + ], + [ + "▁McMinnville", + -15.7117280960083 + ], + [ + "FULLY", + -15.711788177490234 + ], + [ + "▁Imbalance", + -15.711811065673828 + ], + [ + "▁Fingal", + -15.711820602416992 + ], + [ + "Circuit", + -15.711836814880371 + ], + [ + "sheriff", + -15.711848258972168 + ], + [ + "▁CreateSpace", + -15.7118558883667 + ], + [ + "OTCPK", + -15.711884498596191 + ], + [ + "дж", + -15.711888313293457 + ], + [ + "▁Cardozo", + -15.711894989013672 + ], + [ + "▁sambal", + -15.711922645568848 + ], + [ + "▁Convincing", + -15.7119722366333 + ], + [ + "▁Exterieur", + -15.7119722366333 + ], + [ + "▁jilted", + -15.712026596069336 + ], + [ + "▁kullan", + -15.712042808532715 + ], + [ + "▁хорош", + -15.712054252624512 + ], + [ + "Universität", + -15.712064743041992 + ], + [ + "説明", + -15.712078094482422 + ], + [ + "▁Chitwan", + -15.712101936340332 + ], + [ + "▁ASSISTANCE", + -15.712111473083496 + ], + [ + "▁CONCRETE", + -15.712135314941406 + ], + [ + "घ", + -15.712136268615723 + ], + [ + "▁Gué", + -15.71216106414795 + ], + [ + "GivingTuesday", + -15.712202072143555 + ], + [ + "ან", + -15.712202072143555 + ], + [ + "harbour", + -15.712207794189453 + ], + [ + "▁Ehsan", + -15.712210655212402 + ], + [ + "▁Kirkcaldy", + -15.712298393249512 + ], + [ + "老", + -15.712383270263672 + ], + [ + "יו", + -15.712394714355469 + ], + [ + "▁Zipcar", + -15.71239948272705 + ], + [ + "▁ersatz", + -15.712458610534668 + ], + [ + "▁Capernaum", + -15.712461471557617 + ], + [ + "Scribe", + -15.712472915649414 + ], + [ + "〉", + -15.712494850158691 + ], + [ + "▁Kanagawa", + -15.712566375732422 + ], + [ + "▁Mujahid", + -15.71264934539795 + ], + [ + "▁Ynez", + -15.712742805480957 + ], + [ + "Wherever", + -15.712743759155273 + ], + [ + "Bureau", + -15.712777137756348 + ], + [ + "entwicklung", + -15.712790489196777 + ], + [ + "▁Fujairah", + -15.712897300720215 + ], + [ + "▁unreached", + -15.712925910949707 + ], + [ + "▁Corvus", + -15.712959289550781 + ], + [ + "▁desarrollo", + -15.713032722473145 + ], + [ + "▁Hafeez", + -15.71303653717041 + ], + [ + "▁Ilocos", + -15.713091850280762 + ], + [ + "▁Misconception", + -15.713120460510254 + ], + [ + "▁TROUBLE", + -15.71316909790039 + ], + [ + "▁linguine", + -15.71317195892334 + ], + [ + "▁Landeskog", + -15.713223457336426 + ], + [ + "▁SCREW", + -15.713374137878418 + ], + [ + "Baltistan", + -15.71340560913086 + ], + [ + "▁Gantz", + -15.713425636291504 + ], + [ + "▁Vitra", + -15.713529586791992 + ], + [ + "judica", + -15.713536262512207 + ], + [ + "▁JAKARTA", + -15.713549613952637 + ], + [ + "▁Holdsworth", + -15.71357536315918 + ], + [ + "Successful", + -15.713577270507812 + ], + [ + "▁adulteration", + -15.7136812210083 + ], + [ + "▁Oktober", + -15.713693618774414 + ], + [ + "demonstration", + -15.71369743347168 + ], + [ + "▁ukraine", + -15.71370792388916 + ], + [ + "▁Separatist", + -15.713713645935059 + ], + [ + "▁blepharoplasty", + -15.713713645935059 + ], + [ + "▁ellipsis", + -15.713713645935059 + ], + [ + "▁Vinaigrette", + -15.713740348815918 + ], + [ + "Dakota", + -15.713744163513184 + ], + [ + "▁것이", + -15.71374797821045 + ], + [ + "อง", + -15.713773727416992 + ], + [ + "prende", + -15.713775634765625 + ], + [ + "▁Histogram", + -15.713788986206055 + ], + [ + "▁haploid", + -15.713799476623535 + ], + [ + "▁plasmonic", + -15.713815689086914 + ], + [ + "▁Lugosi", + -15.713834762573242 + ], + [ + "▁SEEKING", + -15.713911056518555 + ], + [ + "▁Kraemer", + -15.713946342468262 + ], + [ + "▁reformulation", + -15.713946342468262 + ], + [ + "awkward", + -15.713976860046387 + ], + [ + "▁Chalcedon", + -15.713985443115234 + ], + [ + "▁semiannual", + -15.714022636413574 + ], + [ + "قل", + -15.714078903198242 + ], + [ + "ENTIAL", + -15.714106559753418 + ], + [ + "Γ", + -15.714107513427734 + ], + [ + "▁parsimonious", + -15.71412181854248 + ], + [ + "▁tumbleweed", + -15.714122772216797 + ], + [ + "▁Dalston", + -15.71413516998291 + ], + [ + "glutamine", + -15.714198112487793 + ], + [ + "▁thcheap", + -15.714228630065918 + ], + [ + "Patterson", + -15.714242935180664 + ], + [ + "▁JULIA", + -15.71424674987793 + ], + [ + "▁Intrigue", + -15.714262008666992 + ], + [ + "▁Corazon", + -15.714266777038574 + ], + [ + "▁Tromp", + -15.714266777038574 + ], + [ + "▁barrette", + -15.714334487915039 + ], + [ + "empirical", + -15.714433670043945 + ], + [ + "▁Dowager", + -15.714468002319336 + ], + [ + "▁birdbath", + -15.71448802947998 + ], + [ + "▁neoadjuvant", + -15.714506149291992 + ], + [ + "▁Quesada", + -15.714559555053711 + ], + [ + "▁Kinsale", + -15.714580535888672 + ], + [ + "Elephant", + -15.714597702026367 + ], + [ + "▁Reuven", + -15.714653015136719 + ], + [ + "▁NJCAA", + -15.7146635055542 + ], + [ + "▁Kusama", + -15.714666366577148 + ], + [ + "Lubavitch", + -15.714695930480957 + ], + [ + "▁Rehnquist", + -15.71474838256836 + ], + [ + "▁voltaren", + -15.714775085449219 + ], + [ + "Intellectual", + -15.714869499206543 + ], + [ + "▁Walworth", + -15.714882850646973 + ], + [ + "في", + -15.714900970458984 + ], + [ + "▁TEMPLE", + -15.714911460876465 + ], + [ + "Radical", + -15.714958190917969 + ], + [ + "▁Ljub", + -15.714981079101562 + ], + [ + "identifier", + -15.714985847473145 + ], + [ + "▁dervish", + -15.7150239944458 + ], + [ + "Vendor", + -15.715066909790039 + ], + [ + "▁Contradiction", + -15.715080261230469 + ], + [ + "Extend", + -15.715112686157227 + ], + [ + "▁Flatbed", + -15.715123176574707 + ], + [ + "▁Witney", + -15.715128898620605 + ], + [ + "lobular", + -15.715216636657715 + ], + [ + "▁Amityville", + -15.715230941772461 + ], + [ + "▁Explanatory", + -15.715239524841309 + ], + [ + "▁humectant", + -15.715293884277344 + ], + [ + "▁masochist", + -15.715312957763672 + ], + [ + "決", + -15.715335845947266 + ], + [ + "mercapto", + -15.715387344360352 + ], + [ + "▁biotechnological", + -15.715402603149414 + ], + [ + "▁Isadora", + -15.715442657470703 + ], + [ + "▁Ashburton", + -15.71545696258545 + ], + [ + "Torch", + -15.715603828430176 + ], + [ + "▁Tremaine", + -15.715861320495605 + ], + [ + "▁Documentaries", + -15.715996742248535 + ], + [ + "Broadcast", + -15.716055870056152 + ], + [ + "▁chandler", + -15.716086387634277 + ], + [ + "▁Isidore", + -15.716133117675781 + ], + [ + "▁Xhosa", + -15.716211318969727 + ], + [ + "▁imdb", + -15.716218948364258 + ], + [ + "creativity", + -15.716238021850586 + ], + [ + "▁Woodinville", + -15.7162504196167 + ], + [ + "▁Equalization", + -15.716262817382812 + ], + [ + "▁Authenticator", + -15.716300010681152 + ], + [ + "▁Raffaele", + -15.716302871704102 + ], + [ + "▁obliteration", + -15.716302871704102 + ], + [ + "रि", + -15.716317176818848 + ], + [ + "▁Recyclable", + -15.716330528259277 + ], + [ + "▁OUTPUT", + -15.716504096984863 + ], + [ + "▁Tyrolean", + -15.716531753540039 + ], + [ + "Angry", + -15.716552734375 + ], + [ + "shuttle", + -15.716559410095215 + ], + [ + "▁pasteurization", + -15.716630935668945 + ], + [ + "Eclipse", + -15.71664810180664 + ], + [ + "▁crusading", + -15.71668529510498 + ], + [ + "ੀ", + -15.716712951660156 + ], + [ + "▁Gamecube", + -15.716731071472168 + ], + [ + "▁Krishnamurti", + -15.716739654541016 + ], + [ + "▁neurotoxic", + -15.716740608215332 + ], + [ + "▁diaphragmatic", + -15.716745376586914 + ], + [ + "피", + -15.71680736541748 + ], + [ + "▁Evasion", + -15.716813087463379 + ], + [ + "▁Mursi", + -15.716822624206543 + ], + [ + "▁Yameen", + -15.71688175201416 + ], + [ + "DEBUG", + -15.716970443725586 + ], + [ + "▁vermiculite", + -15.717013359069824 + ], + [ + "Diptera", + -15.717035293579102 + ], + [ + "▁suppositories", + -15.717095375061035 + ], + [ + "▁CARICOM", + -15.717259407043457 + ], + [ + "▁Pinecrest", + -15.717266082763672 + ], + [ + "▁Trestle", + -15.71727466583252 + ], + [ + "▁transept", + -15.717279434204102 + ], + [ + "▁Stimulating", + -15.717347145080566 + ], + [ + "▁Bremner", + -15.717373847961426 + ], + [ + "▁Optometric", + -15.717473030090332 + ], + [ + "▁coiffure", + -15.717477798461914 + ], + [ + "MARKET", + -15.717488288879395 + ], + [ + "▁Punic", + -15.71755599975586 + ], + [ + "▁welsh", + -15.717594146728516 + ], + [ + "▁Ayrton", + -15.717597961425781 + ], + [ + "bruch", + -15.71761703491211 + ], + [ + "ALLOW", + -15.717652320861816 + ], + [ + "tepec", + -15.7177095413208 + ], + [ + "▁Chewie", + -15.717711448669434 + ], + [ + "spontaneous", + -15.717735290527344 + ], + [ + "▁comedienne", + -15.717752456665039 + ], + [ + "▁Shalimar", + -15.717806816101074 + ], + [ + "ANTO", + -15.71780776977539 + ], + [ + "▁criminologist", + -15.717901229858398 + ], + [ + "▁│", + -15.71798324584961 + ], + [ + "▁Salwar", + -15.718144416809082 + ], + [ + "▁Neuropathy", + -15.718169212341309 + ], + [ + "▁coffered", + -15.718213081359863 + ], + [ + "압", + -15.718215942382812 + ], + [ + "▁Suunto", + -15.718225479125977 + ], + [ + "retardant", + -15.718282699584961 + ], + [ + "▁GAPDH", + -15.718329429626465 + ], + [ + "РѕР", + -15.718334197998047 + ], + [ + "▁connecticut", + -15.718353271484375 + ], + [ + "▁구성", + -15.718395233154297 + ], + [ + "连接", + -15.718412399291992 + ], + [ + "▁Spengler", + -15.71843433380127 + ], + [ + "ordnung", + -15.718476295471191 + ], + [ + "▁quebec", + -15.718517303466797 + ], + [ + "▁concious", + -15.718522071838379 + ], + [ + "▁APPROX", + -15.718568801879883 + ], + [ + "▁Megumi", + -15.718683242797852 + ], + [ + "▁cherche", + -15.7186918258667 + ], + [ + "▁Cherbourg", + -15.71870231628418 + ], + [ + "mushroom", + -15.718754768371582 + ], + [ + "atunga", + -15.718796730041504 + ], + [ + "whelmed", + -15.718836784362793 + ], + [ + "▁Consolidate", + -15.718870162963867 + ], + [ + "▁couleur", + -15.718935012817383 + ], + [ + "▁Neoclassical", + -15.719013214111328 + ], + [ + "مت", + -15.7190523147583 + ], + [ + "▁valvular", + -15.719063758850098 + ], + [ + "Tennis", + -15.71911907196045 + ], + [ + "▁synthetase", + -15.719145774841309 + ], + [ + "되었", + -15.719145774841309 + ], + [ + "▁VIPTix", + -15.719147682189941 + ], + [ + "່", + -15.71915340423584 + ], + [ + "gartner", + -15.719155311584473 + ], + [ + "▁Cavusoglu", + -15.719283103942871 + ], + [ + "▁WFAN", + -15.719289779663086 + ], + [ + "▁leeward", + -15.719310760498047 + ], + [ + "pledge", + -15.719319343566895 + ], + [ + "Gilbert", + -15.71934986114502 + ], + [ + "▁DEMOCRAT", + -15.719365119934082 + ], + [ + "▁Mechatronics", + -15.719367027282715 + ], + [ + "Wolves", + -15.719374656677246 + ], + [ + "▁VICTOR", + -15.719379425048828 + ], + [ + "▁michelle", + -15.719379425048828 + ], + [ + "▁peyote", + -15.719501495361328 + ], + [ + "▁METALLIC", + -15.71953296661377 + ], + [ + "Fraud", + -15.7196626663208 + ], + [ + "Iceland", + -15.719671249389648 + ], + [ + "▁Pixabay", + -15.719693183898926 + ], + [ + "▁Smitten", + -15.719709396362305 + ], + [ + "▁Algernon", + -15.719747543334961 + ], + [ + "▁Leyden", + -15.719807624816895 + ], + [ + "▁MITCHELL", + -15.719830513000488 + ], + [ + "▁Moustakas", + -15.719884872436523 + ], + [ + "▁Cracow", + -15.719893455505371 + ], + [ + "▁relegating", + -15.719940185546875 + ], + [ + "Debbie", + -15.719966888427734 + ], + [ + "▁Langmuir", + -15.719979286193848 + ], + [ + "▁disciplinarian", + -15.71999454498291 + ], + [ + "ugoslav", + -15.720006942749023 + ], + [ + "conveniently", + -15.720014572143555 + ], + [ + "▁warthog", + -15.720026969909668 + ], + [ + "▁Lynden", + -15.720067977905273 + ], + [ + "▁caprice", + -15.720087051391602 + ], + [ + "Newcastle", + -15.720109939575195 + ], + [ + "▁Divestment", + -15.720159530639648 + ], + [ + "▁inconsolable", + -15.720159530639648 + ], + [ + "Pearson", + -15.720232963562012 + ], + [ + "▁SMASH", + -15.72023868560791 + ], + [ + "▁Pushpa", + -15.720256805419922 + ], + [ + "▁Quarles", + -15.72040843963623 + ], + [ + "Ameri", + -15.720409393310547 + ], + [ + "▁multisensory", + -15.720455169677734 + ], + [ + "çı", + -15.720462799072266 + ], + [ + "▁nightingale", + -15.720474243164062 + ], + [ + "▁adjutant", + -15.720489501953125 + ], + [ + "▁PASSWORD", + -15.720490455627441 + ], + [ + "▁PAINTING", + -15.720498085021973 + ], + [ + "SCAPE", + -15.720500946044922 + ], + [ + "▁snowblower", + -15.720627784729004 + ], + [ + "▁trastuzumab", + -15.720735549926758 + ], + [ + "▁KARL", + -15.72073745727539 + ], + [ + "volcano", + -15.720747947692871 + ], + [ + "▁eames", + -15.720772743225098 + ], + [ + "Whip", + -15.720864295959473 + ], + [ + "▁Tamoxifen", + -15.720871925354004 + ], + [ + "▁Suzanna", + -15.720904350280762 + ], + [ + "▁Immense", + -15.720909118652344 + ], + [ + "▁neonate", + -15.720934867858887 + ], + [ + "▁BASEBALL", + -15.720955848693848 + ], + [ + "▁docetaxel", + -15.72098159790039 + ], + [ + "transcriptional", + -15.721097946166992 + ], + [ + "▁Glendora", + -15.72110366821289 + ], + [ + "▁Redundancy", + -15.721145629882812 + ], + [ + "preventive", + -15.721152305603027 + ], + [ + "▁Galápagos", + -15.721173286437988 + ], + [ + "▁quantitation", + -15.72118091583252 + ], + [ + "▁Lindquist", + -15.721196174621582 + ], + [ + "▁ayurveda", + -15.72122859954834 + ], + [ + "報", + -15.721277236938477 + ], + [ + "▁nastier", + -15.721308708190918 + ], + [ + "▁consequat", + -15.72132396697998 + ], + [ + "▁priciest", + -15.721338272094727 + ], + [ + "▁Exterminator", + -15.721365928649902 + ], + [ + "▁Khosrowshahi", + -15.721365928649902 + ], + [ + "▁centenarian", + -15.721393585205078 + ], + [ + "▁INVITE", + -15.721426963806152 + ], + [ + "▁Québécois", + -15.721475601196289 + ], + [ + "handicap", + -15.72148323059082 + ], + [ + "programmable", + -15.721494674682617 + ], + [ + "▁Persepolis", + -15.72150707244873 + ], + [ + "▁Temasek", + -15.72153377532959 + ], + [ + "scrut", + -15.721569061279297 + ], + [ + "▁Vibro", + -15.721602439880371 + ], + [ + "▁incompatibilities", + -15.721639633178711 + ], + [ + "▁incomparably", + -15.721667289733887 + ], + [ + "▁stonemason", + -15.72170639038086 + ], + [ + "▁Haughton", + -15.721795082092285 + ], + [ + "observable", + -15.721818923950195 + ], + [ + "▁unobtainable", + -15.721832275390625 + ], + [ + "▁mechanised", + -15.721863746643066 + ], + [ + "▁aniline", + -15.721918106079102 + ], + [ + "血", + -15.721983909606934 + ], + [ + "▁Bacterio", + -15.721986770629883 + ], + [ + "▁Bloat", + -15.722015380859375 + ], + [ + "▁jonathan", + -15.722066879272461 + ], + [ + "▁trabalho", + -15.72210693359375 + ], + [ + "▁가장", + -15.7221097946167 + ], + [ + "Eugene", + -15.722150802612305 + ], + [ + "альный", + -15.722186088562012 + ], + [ + "ņ", + -15.722188949584961 + ], + [ + "▁Neuronal", + -15.722228050231934 + ], + [ + "▁Landslide", + -15.722259521484375 + ], + [ + "▁Vallée", + -15.722307205200195 + ], + [ + "krieg", + -15.722311973571777 + ], + [ + "▁determinative", + -15.722336769104004 + ], + [ + "▁KLCC", + -15.722370147705078 + ], + [ + "ਕ", + -15.722380638122559 + ], + [ + "Shandong", + -15.722428321838379 + ], + [ + "▁compartmentalize", + -15.722444534301758 + ], + [ + "▁WHATEVER", + -15.722481727600098 + ], + [ + "▁SINGH", + -15.722511291503906 + ], + [ + "▁Hebden", + -15.722550392150879 + ], + [ + "▁Artsakh", + -15.722561836242676 + ], + [ + "▁feminized", + -15.722575187683105 + ], + [ + "▁Schechter", + -15.722588539123535 + ], + [ + "Become", + -15.722593307495117 + ], + [ + "▁microcrystalline", + -15.72262954711914 + ], + [ + "▁nephrology", + -15.722663879394531 + ], + [ + "▁immunoreactivity", + -15.72268295288086 + ], + [ + "ður", + -15.72270679473877 + ], + [ + "▁Bodleian", + -15.722710609436035 + ], + [ + "▁Smucker", + -15.722722053527832 + ], + [ + "▁Bupa", + -15.722739219665527 + ], + [ + "▁homogenate", + -15.722765922546387 + ], + [ + "▁Zelaya", + -15.722770690917969 + ], + [ + "▁HIGHWAY", + -15.722784996032715 + ], + [ + "surprising", + -15.722796440124512 + ], + [ + "▁MEAL", + -15.722804069519043 + ], + [ + "▁Moscato", + -15.722809791564941 + ], + [ + "POSITION", + -15.722817420959473 + ], + [ + "▁clawfoot", + -15.722902297973633 + ], + [ + "surcharge", + -15.722914695739746 + ], + [ + "▁Snappy", + -15.722941398620605 + ], + [ + "▁Mammalian", + -15.722954750061035 + ], + [ + "▁Mezzo", + -15.722997665405273 + ], + [ + "▁pettiness", + -15.723074913024902 + ], + [ + "▁Progesterone", + -15.723094940185547 + ], + [ + "▁copulation", + -15.723097801208496 + ], + [ + "▁pericardial", + -15.723098754882812 + ], + [ + "▁Calderón", + -15.72314167022705 + ], + [ + "▁shapeshifter", + -15.723146438598633 + ], + [ + "▁Frantic", + -15.723176002502441 + ], + [ + "▁Klout", + -15.723179817199707 + ], + [ + "лся", + -15.72320556640625 + ], + [ + "▁Taraba", + -15.723252296447754 + ], + [ + "▁Anniston", + -15.72330093383789 + ], + [ + "▁GnRH", + -15.723320007324219 + ], + [ + "sentiment", + -15.7233247756958 + ], + [ + "▁Cerebro", + -15.723369598388672 + ], + [ + "▁Mussa", + -15.723379135131836 + ], + [ + "發", + -15.723467826843262 + ], + [ + "tenured", + -15.723483085632324 + ], + [ + "▁Chromatic", + -15.723544120788574 + ], + [ + "▁Stimson", + -15.723556518554688 + ], + [ + "▁zynga", + -15.723567962646484 + ], + [ + "▁indoctrinate", + -15.723677635192871 + ], + [ + "▁Legislator", + -15.72372817993164 + ], + [ + "▁glutamic", + -15.723769187927246 + ], + [ + "▁blotter", + -15.723820686340332 + ], + [ + "restrictive", + -15.72382926940918 + ], + [ + "▁llegar", + -15.723859786987305 + ], + [ + "tanned", + -15.723893165588379 + ], + [ + "▁Jacinta", + -15.723925590515137 + ], + [ + "ే", + -15.723947525024414 + ], + [ + "▁Ahmadiyya", + -15.723981857299805 + ], + [ + "▁Gaetano", + -15.724032402038574 + ], + [ + "▁Periyar", + -15.724048614501953 + ], + [ + "▁responsable", + -15.724090576171875 + ], + [ + "Drunk", + -15.724095344543457 + ], + [ + "▁Intermodal", + -15.724151611328125 + ], + [ + "▁uncrowded", + -15.72419548034668 + ], + [ + "▁Fraudulent", + -15.724207878112793 + ], + [ + "deterministic", + -15.724210739135742 + ], + [ + "▁Oksana", + -15.724213600158691 + ], + [ + "▁Friuli", + -15.72425365447998 + ], + [ + "生成", + -15.724308013916016 + ], + [ + "▁Ichabod", + -15.724333763122559 + ], + [ + "▁liye", + -15.724431991577148 + ], + [ + "▁Grylls", + -15.724434852600098 + ], + [ + "▁prilosec", + -15.724470138549805 + ], + [ + "▁Kinship", + -15.724479675292969 + ], + [ + "▁Higdon", + -15.724498748779297 + ], + [ + "▁glycosides", + -15.724528312683105 + ], + [ + "▁Wedbush", + -15.724533081054688 + ], + [ + "▁SUMO", + -15.724535942077637 + ], + [ + "▁ayudar", + -15.724556922912598 + ], + [ + "另", + -15.724587440490723 + ], + [ + "▁Brisket", + -15.724649429321289 + ], + [ + "▁prenup", + -15.724711418151855 + ], + [ + "Nitro", + -15.724740028381348 + ], + [ + "▁CHAMPIONSHIP", + -15.724773406982422 + ], + [ + "▁Voight", + -15.724773406982422 + ], + [ + "▁cheekily", + -15.724775314331055 + ], + [ + "▁Nazarbayev", + -15.724828720092773 + ], + [ + "Interpret", + -15.724847793579102 + ], + [ + "▁succour", + -15.724895477294922 + ], + [ + "introducing", + -15.724899291992188 + ], + [ + "▁Hinterland", + -15.72492504119873 + ], + [ + "▁Quadratic", + -15.724960327148438 + ], + [ + "lysine", + -15.724977493286133 + ], + [ + "▁línea", + -15.725021362304688 + ], + [ + "▁Thermoplastic", + -15.725025177001953 + ], + [ + "▁Onassis", + -15.725053787231445 + ], + [ + "ignoring", + -15.725077629089355 + ], + [ + "▁Insecticide", + -15.725083351135254 + ], + [ + "▁oximeter", + -15.72510814666748 + ], + [ + "▁drog", + -15.725114822387695 + ], + [ + "owanie", + -15.725120544433594 + ], + [ + "regulator", + -15.725127220153809 + ], + [ + "▁kohë", + -15.725163459777832 + ], + [ + "Colossians", + -15.725174903869629 + ], + [ + "▁Berrien", + -15.725189208984375 + ], + [ + "▁Scalability", + -15.72521686553955 + ], + [ + "▁Hilfe", + -15.725229263305664 + ], + [ + "▁Это", + -15.725262641906738 + ], + [ + "▁uninvolved", + -15.725284576416016 + ], + [ + "Lotus", + -15.725289344787598 + ], + [ + "▁Moultrie", + -15.725323677062988 + ], + [ + "kohl", + -15.725356101989746 + ], + [ + "▁pistil", + -15.725418090820312 + ], + [ + "▁KITT", + -15.725444793701172 + ], + [ + "▁Sauv", + -15.725444793701172 + ], + [ + "Singing", + -15.725600242614746 + ], + [ + "▁immunoprecipitation", + -15.725685119628906 + ], + [ + "ENBERG", + -15.725722312927246 + ], + [ + "▁Supercharged", + -15.725830078125 + ], + [ + "▁Breaux", + -15.725833892822266 + ], + [ + "▁Wurst", + -15.725839614868164 + ], + [ + "▁REVO", + -15.72585678100586 + ], + [ + "buffet", + -15.725863456726074 + ], + [ + "▁Encode", + -15.72586727142334 + ], + [ + "▁Hakone", + -15.725954055786133 + ], + [ + "▁Deshmukh", + -15.72603988647461 + ], + [ + "BOUND", + -15.726051330566406 + ], + [ + "▁FLOOD", + -15.726072311401367 + ], + [ + "IFIER", + -15.726103782653809 + ], + [ + "▁Zetterberg", + -15.726122856140137 + ], + [ + "conferencing", + -15.726143836975098 + ], + [ + "▁Saguaro", + -15.726150512695312 + ], + [ + "▁그리고", + -15.726150512695312 + ], + [ + "Seems", + -15.726157188415527 + ], + [ + "▁Hindsight", + -15.726171493530273 + ], + [ + "▁Pemex", + -15.726211547851562 + ], + [ + "▁Anarchism", + -15.72623348236084 + ], + [ + "suppression", + -15.726283073425293 + ], + [ + "▁Nahyan", + -15.726300239562988 + ], + [ + "disposal", + -15.726304054260254 + ], + [ + "▁enantiomer", + -15.726325988769531 + ], + [ + "Activities", + -15.726356506347656 + ], + [ + "▁fluvial", + -15.726395606994629 + ], + [ + "▁neurochemical", + -15.726415634155273 + ], + [ + "▁Singletary", + -15.726420402526855 + ], + [ + "▁countermeasure", + -15.72651195526123 + ], + [ + "нич", + -15.726522445678711 + ], + [ + "▁syntheses", + -15.72653865814209 + ], + [ + "▁Álvarez", + -15.726564407348633 + ], + [ + "▁Antimicrob", + -15.726571083068848 + ], + [ + "▁Illustrate", + -15.726592063903809 + ], + [ + "▁SENSOR", + -15.726654052734375 + ], + [ + "▁Arbiter", + -15.726709365844727 + ], + [ + "▁certitude", + -15.726746559143066 + ], + [ + "▁McCullers", + -15.726757049560547 + ], + [ + "▁RingCentral", + -15.726766586303711 + ], + [ + "ijden", + -15.726836204528809 + ], + [ + "▁modders", + -15.726879119873047 + ], + [ + "▁MacDougall", + -15.726922035217285 + ], + [ + "▁unexciting", + -15.726936340332031 + ], + [ + "Registry", + -15.726941108703613 + ], + [ + "attraction", + -15.726948738098145 + ], + [ + "▁모든", + -15.726949691772461 + ], + [ + "Ivory", + -15.726969718933105 + ], + [ + "▁Jarred", + -15.726984024047852 + ], + [ + "prioritize", + -15.7269926071167 + ], + [ + "▁Marengo", + -15.727002143859863 + ], + [ + "▁Kadyrov", + -15.727005004882812 + ], + [ + "▁substitu", + -15.727009773254395 + ], + [ + "▁immunomodulatory", + -15.727032661437988 + ], + [ + "▁Wernick", + -15.727096557617188 + ], + [ + "baptism", + -15.727133750915527 + ], + [ + "▁ACCEPTED", + -15.727140426635742 + ], + [ + "revenge", + -15.72714614868164 + ], + [ + "ONLINE", + -15.727211952209473 + ], + [ + "▁Commute", + -15.727215766906738 + ], + [ + "▁Pernod", + -15.727232933044434 + ], + [ + "Medicaid", + -15.727251052856445 + ], + [ + "apprentice", + -15.727251052856445 + ], + [ + "包", + -15.727310180664062 + ], + [ + "ocarpus", + -15.72731876373291 + ], + [ + "Submitted", + -15.72739315032959 + ], + [ + "▁Steemit", + -15.72744083404541 + ], + [ + "▁Reynold", + -15.727517127990723 + ], + [ + "▁Aptos", + -15.727530479431152 + ], + [ + "Colonial", + -15.727602005004883 + ], + [ + "clau", + -15.727631568908691 + ], + [ + "▁unlikable", + -15.72769546508789 + ], + [ + "ത്ത", + -15.727704048156738 + ], + [ + "icchio", + -15.727731704711914 + ], + [ + "▁Torsten", + -15.72773551940918 + ], + [ + "▁Pluralism", + -15.727774620056152 + ], + [ + "接続", + -15.727791786193848 + ], + [ + "▁Madinah", + -15.727794647216797 + ], + [ + "explosion", + -15.727879524230957 + ], + [ + "▁precluding", + -15.727882385253906 + ], + [ + "▁Advaita", + -15.727943420410156 + ], + [ + "▁Optimistic", + -15.727960586547852 + ], + [ + "▁₱", + -15.727972984313965 + ], + [ + "Continuous", + -15.727988243103027 + ], + [ + "▁Claypool", + -15.728015899658203 + ], + [ + "▁qatar", + -15.728135108947754 + ], + [ + "Passport", + -15.728165626525879 + ], + [ + "gredi", + -15.728174209594727 + ], + [ + "▁Gisela", + -15.728271484375 + ], + [ + "▁Ferretti", + -15.728312492370605 + ], + [ + "▁propitious", + -15.728325843811035 + ], + [ + "▁Umayyad", + -15.728330612182617 + ], + [ + "▁Solicit", + -15.72843074798584 + ], + [ + "▁Cetyl", + -15.728446006774902 + ], + [ + "▁Accolade", + -15.728470802307129 + ], + [ + "▁Riemsdyk", + -15.728496551513672 + ], + [ + "Zawahiri", + -15.728525161743164 + ], + [ + "▁müssen", + -15.728607177734375 + ], + [ + "possibility", + -15.728609085083008 + ], + [ + "▁trouver", + -15.72861099243164 + ], + [ + "liegen", + -15.728652000427246 + ], + [ + "▁Wyckoff", + -15.728689193725586 + ], + [ + "INDIA", + -15.728728294372559 + ], + [ + "▁Egyptologist", + -15.728777885437012 + ], + [ + "communism", + -15.728788375854492 + ], + [ + "▁CHASE", + -15.728900909423828 + ], + [ + "▁glucophage", + -15.728939056396484 + ], + [ + "▁Escri", + -15.728954315185547 + ], + [ + "▁Riptide", + -15.728957176208496 + ], + [ + "▁euthanize", + -15.728998184204102 + ], + [ + "▁modifica", + -15.729043006896973 + ], + [ + "▁Claxton", + -15.729060173034668 + ], + [ + "▁LaVine", + -15.729085922241211 + ], + [ + "▁BUSY", + -15.729118347167969 + ], + [ + "▁talaq", + -15.729183197021484 + ], + [ + "▁hudson", + -15.729281425476074 + ], + [ + "▁Presario", + -15.729317665100098 + ], + [ + "▁Udinese", + -15.729325294494629 + ], + [ + "▁YMMV", + -15.72935676574707 + ], + [ + "▁Monmouthshire", + -15.729462623596191 + ], + [ + "▁Bridgwater", + -15.729496002197266 + ], + [ + "civilization", + -15.729509353637695 + ], + [ + "▁Huynh", + -15.729523658752441 + ], + [ + "▁calligraphic", + -15.729532241821289 + ], + [ + "▁Brabham", + -15.729546546936035 + ], + [ + "▁tulsa", + -15.729546546936035 + ], + [ + "▁Clowney", + -15.7295560836792 + ], + [ + "▁bloodletting", + -15.729557037353516 + ], + [ + "▁Stovall", + -15.729560852050781 + ], + [ + "Defined", + -15.72956371307373 + ], + [ + "▁madrasa", + -15.729604721069336 + ], + [ + "ARROW", + -15.729625701904297 + ], + [ + "▁Melancholy", + -15.729629516601562 + ], + [ + "▁Equus", + -15.729641914367676 + ], + [ + "▁smoosh", + -15.729677200317383 + ], + [ + "harvard", + -15.729764938354492 + ], + [ + "▁Bettis", + -15.729851722717285 + ], + [ + "▁filipino", + -15.729852676391602 + ], + [ + "▁Kakadu", + -15.729876518249512 + ], + [ + "▁bevelled", + -15.729899406433105 + ], + [ + "tolerated", + -15.730022430419922 + ], + [ + "▁DropBox", + -15.73003101348877 + ], + [ + "DREAM", + -15.730034828186035 + ], + [ + "▁Cuttack", + -15.730037689208984 + ], + [ + "▁ejemplo", + -15.730097770690918 + ], + [ + "▁Vitoria", + -15.730108261108398 + ], + [ + "▁geostationary", + -15.730108261108398 + ], + [ + "Tropical", + -15.730130195617676 + ], + [ + "▁DISCO", + -15.730164527893066 + ], + [ + "▁Zahir", + -15.730195999145508 + ], + [ + "▁Lantz", + -15.730254173278809 + ], + [ + "▁Mellencamp", + -15.730321884155273 + ], + [ + "irregular", + -15.730338096618652 + ], + [ + "STITUTION", + -15.730350494384766 + ], + [ + "▁breadsticks", + -15.730351448059082 + ], + [ + "تي", + -15.730354309082031 + ], + [ + "Uninstall", + -15.730386734008789 + ], + [ + "▁Hillingdon", + -15.730462074279785 + ], + [ + "Sweat", + -15.73048210144043 + ], + [ + "רי", + -15.730647087097168 + ], + [ + "▁Barbarossa", + -15.73082160949707 + ], + [ + "▁Impeachment", + -15.730847358703613 + ], + [ + "▁JACKET", + -15.730860710144043 + ], + [ + "ügen", + -15.730914115905762 + ], + [ + "▁tizzy", + -15.730955123901367 + ], + [ + "▁Lovecraftian", + -15.730961799621582 + ], + [ + "▁santé", + -15.730971336364746 + ], + [ + "▁HALLOWEEN", + -15.730985641479492 + ], + [ + "▁Miyake", + -15.731043815612793 + ], + [ + "▁chori", + -15.731182098388672 + ], + [ + "▁CJEU", + -15.731189727783203 + ], + [ + "adherence", + -15.73133659362793 + ], + [ + "▁intestate", + -15.731337547302246 + ], + [ + "▁Libertadores", + -15.731348037719727 + ], + [ + "▁Condoms", + -15.731365203857422 + ], + [ + "▁Fajardo", + -15.731401443481445 + ], + [ + "▁Tunstall", + -15.731438636779785 + ], + [ + "▁absolutist", + -15.731468200683594 + ], + [ + "Schema", + -15.731489181518555 + ], + [ + "▁Vigilant", + -15.731512069702148 + ], + [ + "▁Shoji", + -15.7315673828125 + ], + [ + "▁Culkin", + -15.731599807739258 + ], + [ + "▁Baffin", + -15.73163890838623 + ], + [ + "▁mockingbird", + -15.731721878051758 + ], + [ + "▁Oleksandr", + -15.731734275817871 + ], + [ + "▁Astronomer", + -15.7317476272583 + ], + [ + "▁Panchkula", + -15.731762886047363 + ], + [ + "▁soliloquy", + -15.731789588928223 + ], + [ + "нят", + -15.731802940368652 + ], + [ + "▁CareCredit", + -15.731861114501953 + ], + [ + "cumulative", + -15.731915473937988 + ], + [ + "▁pentatonic", + -15.73193359375 + ], + [ + "δο", + -15.731947898864746 + ], + [ + "▁Jerrold", + -15.732067108154297 + ], + [ + "▁Visceral", + -15.732067108154297 + ], + [ + "agglutinin", + -15.732094764709473 + ], + [ + "▁Segunda", + -15.732109069824219 + ], + [ + "▁Silvestri", + -15.732123374938965 + ], + [ + "▁MONTHLY", + -15.732160568237305 + ], + [ + "▁Transducer", + -15.732170104980469 + ], + [ + "▁napalm", + -15.732172966003418 + ], + [ + "▁gonorrhoea", + -15.732205390930176 + ], + [ + "▁Berardi", + -15.732215881347656 + ], + [ + "FAIL", + -15.732295036315918 + ], + [ + "▁Amaechi", + -15.732404708862305 + ], + [ + "▁malefic", + -15.732425689697266 + ], + [ + "望", + -15.732505798339844 + ], + [ + "▁Labelle", + -15.732507705688477 + ], + [ + "hydrating", + -15.732559204101562 + ], + [ + "▁Barricade", + -15.732565879821777 + ], + [ + "hoef", + -15.73257064819336 + ], + [ + "▁agronomy", + -15.732624053955078 + ], + [ + "▁Pushcart", + -15.732812881469727 + ], + [ + "▁Ojibwa", + -15.732889175415039 + ], + [ + "lık", + -15.732897758483887 + ], + [ + "▁Silvestre", + -15.73289966583252 + ], + [ + "▁BuddyPress", + -15.732956886291504 + ], + [ + "WRITE", + -15.732962608337402 + ], + [ + "▁EFFICIENT", + -15.732982635498047 + ], + [ + "biblio", + -15.732991218566895 + ], + [ + "helium", + -15.733001708984375 + ], + [ + "▁Ipanema", + -15.733123779296875 + ], + [ + "▁subacute", + -15.733203887939453 + ], + [ + "▁Resiliency", + -15.733232498168945 + ], + [ + "reviewjournal", + -15.733237266540527 + ], + [ + "▁Anodized", + -15.733260154724121 + ], + [ + "聚", + -15.733261108398438 + ], + [ + "▁KGaA", + -15.733262062072754 + ], + [ + "Kylie", + -15.733277320861816 + ], + [ + "バー", + -15.733283042907715 + ], + [ + "▁Moomin", + -15.73328685760498 + ], + [ + "▁pilasters", + -15.733343124389648 + ], + [ + "▁Pouliot", + -15.73337459564209 + ], + [ + "EXCLUSIVE", + -15.733416557312012 + ], + [ + "▁Gliding", + -15.733416557312012 + ], + [ + "▁decaffeinated", + -15.7334566116333 + ], + [ + "需要", + -15.733464241027832 + ], + [ + "▁transmog", + -15.733530044555664 + ], + [ + "▁GameFAQs", + -15.733566284179688 + ], + [ + "Melanie", + -15.73358154296875 + ], + [ + "▁EliteSingles", + -15.733593940734863 + ], + [ + "Editorial", + -15.73361873626709 + ], + [ + "▁Polytechnique", + -15.733638763427734 + ], + [ + "▁balayage", + -15.733704566955566 + ], + [ + "▁CATALOG", + -15.733744621276855 + ], + [ + "友", + -15.733786582946777 + ], + [ + "▁Histological", + -15.73379898071289 + ], + [ + "بة", + -15.733942985534668 + ], + [ + "▁Fluctuation", + -15.73398208618164 + ], + [ + "ି", + -15.734004974365234 + ], + [ + "▁Pallbearers", + -15.73401165008545 + ], + [ + "▁Steeple", + -15.73401927947998 + ], + [ + "hypertension", + -15.734090805053711 + ], + [ + "▁typologies", + -15.734095573425293 + ], + [ + "▁Rahab", + -15.734135627746582 + ], + [ + "▁Proxies", + -15.73418140411377 + ], + [ + "▁Tarleton", + -15.734189987182617 + ], + [ + "▁identifica", + -15.734259605407715 + ], + [ + "pathogen", + -15.734305381774902 + ], + [ + "vardenafil", + -15.734333038330078 + ], + [ + "▁GRAHAM", + -15.73441219329834 + ], + [ + "Biblio", + -15.734430313110352 + ], + [ + "prendi", + -15.734437942504883 + ], + [ + "▁Heimlich", + -15.734469413757324 + ], + [ + "▁Kerstin", + -15.734657287597656 + ], + [ + "recognize", + -15.734747886657715 + ], + [ + "▁immodest", + -15.734766006469727 + ], + [ + "▁Sorrentino", + -15.734843254089355 + ], + [ + "▁Gibney", + -15.734869003295898 + ], + [ + "▁Tokio", + -15.734939575195312 + ], + [ + "▁DISPUTE", + -15.735010147094727 + ], + [ + "▁writting", + -15.735024452209473 + ], + [ + "Barbera", + -15.735089302062988 + ], + [ + "▁operability", + -15.735091209411621 + ], + [ + "▁undignified", + -15.73509407043457 + ], + [ + "ając", + -15.73512077331543 + ], + [ + "Presence", + -15.735170364379883 + ], + [ + "▁Divergence", + -15.735180854797363 + ], + [ + "▁Zamfara", + -15.735260963439941 + ], + [ + "▁punë", + -15.735278129577637 + ], + [ + "▁Grenz", + -15.735294342041016 + ], + [ + "▁Pericles", + -15.735312461853027 + ], + [ + "▁Devotees", + -15.735455513000488 + ], + [ + "▁electrify", + -15.735456466674805 + ], + [ + "媒", + -15.735527992248535 + ], + [ + "orrhoea", + -15.73555850982666 + ], + [ + "▁Sharples", + -15.73558235168457 + ], + [ + "▁Tactic", + -15.735630989074707 + ], + [ + "comedian", + -15.735647201538086 + ], + [ + "▁mortification", + -15.735661506652832 + ], + [ + "▁SPREAD", + -15.735671043395996 + ], + [ + "▁soirée", + -15.735710144042969 + ], + [ + "▁Interleukin", + -15.735761642456055 + ], + [ + "TRIP", + -15.735803604125977 + ], + [ + "▁Beilein", + -15.735827445983887 + ], + [ + "▁anticholinergic", + -15.735844612121582 + ], + [ + "张", + -15.735847473144531 + ], + [ + "▁cenote", + -15.735854148864746 + ], + [ + "▁Monteith", + -15.735885620117188 + ], + [ + "▁Anaesthesia", + -15.735894203186035 + ], + [ + "▁epitomize", + -15.735954284667969 + ], + [ + "▁cyclonic", + -15.735968589782715 + ], + [ + "권", + -15.735984802246094 + ], + [ + "▁Toscano", + -15.736001014709473 + ], + [ + "PRODUCT", + -15.736014366149902 + ], + [ + "▁demonetization", + -15.736040115356445 + ], + [ + "distribute", + -15.73609447479248 + ], + [ + "▁gilet", + -15.736109733581543 + ], + [ + "▁Belushi", + -15.736111640930176 + ], + [ + "▁Niece", + -15.73611831665039 + ], + [ + "▁mycorrhizal", + -15.736123085021973 + ], + [ + "zentrum", + -15.736139297485352 + ], + [ + "▁unhampered", + -15.736151695251465 + ], + [ + "beverage", + -15.736172676086426 + ], + [ + "▁NURSE", + -15.736172676086426 + ], + [ + "▁COMBINE", + -15.736180305480957 + ], + [ + "▁Ranaut", + -15.736201286315918 + ], + [ + "▁geben", + -15.73621654510498 + ], + [ + "▁CEDAR", + -15.73625659942627 + ], + [ + "▁Hélène", + -15.736262321472168 + ], + [ + "▁Kahuna", + -15.7362642288208 + ], + [ + "▁ResponseAre", + -15.736268997192383 + ], + [ + "▁PolitiFact", + -15.73629093170166 + ], + [ + "scotland", + -15.736310958862305 + ], + [ + "▁Ngozi", + -15.736361503601074 + ], + [ + "▁Kathrin", + -15.736485481262207 + ], + [ + "▁Gnosticism", + -15.736555099487305 + ], + [ + "▁Carlotta", + -15.736576080322266 + ], + [ + "▁politicised", + -15.736631393432617 + ], + [ + "互", + -15.736699104309082 + ], + [ + "▁Psychosis", + -15.736709594726562 + ], + [ + "▁citron", + -15.736733436584473 + ], + [ + "▁ONTRAPORT", + -15.736736297607422 + ], + [ + "▁EPFL", + -15.736751556396484 + ], + [ + "histamine", + -15.736769676208496 + ], + [ + "▁Saarinen", + -15.736773490905762 + ], + [ + "Recycle", + -15.736775398254395 + ], + [ + "▁Raisman", + -15.736856460571289 + ], + [ + "▁Carnarvon", + -15.736875534057617 + ], + [ + "▁hungrily", + -15.736875534057617 + ], + [ + "▁Fukuyama", + -15.736913681030273 + ], + [ + "▁maltodextrin", + -15.736930847167969 + ], + [ + "▁Yuhao", + -15.736950874328613 + ], + [ + "▁nagged", + -15.736963272094727 + ], + [ + "▁Continual", + -15.737001419067383 + ], + [ + "▁besotted", + -15.737070083618164 + ], + [ + "gentleman", + -15.73708724975586 + ], + [ + "▁Poulsen", + -15.737095832824707 + ], + [ + "▁Neverwinter", + -15.7371244430542 + ], + [ + "fisk", + -15.737125396728516 + ], + [ + "Joyce", + -15.737161636352539 + ], + [ + "▁monopod", + -15.7372407913208 + ], + [ + "▁Merrifield", + -15.737249374389648 + ], + [ + "ajda", + -15.73727035522461 + ], + [ + "ವ", + -15.737290382385254 + ], + [ + "🙏", + -15.737320899963379 + ], + [ + "▁Solidworks", + -15.737343788146973 + ], + [ + "▁Eccleston", + -15.737351417541504 + ], + [ + "▁byzantine", + -15.737378120422363 + ], + [ + "▁Beatport", + -15.73738956451416 + ], + [ + "▁Jäger", + -15.737409591674805 + ], + [ + "Hoop", + -15.73754596710205 + ], + [ + "▁ROFL", + -15.73754596710205 + ], + [ + "▁Anemone", + -15.737547874450684 + ], + [ + "Ellie", + -15.737576484680176 + ], + [ + "supreme", + -15.7376070022583 + ], + [ + "ίας", + -15.737610816955566 + ], + [ + "travelled", + -15.737615585327148 + ], + [ + "▁Honeybee", + -15.737622261047363 + ], + [ + "Kurdish", + -15.737624168395996 + ], + [ + "더", + -15.737648010253906 + ], + [ + "genix", + -15.737648963928223 + ], + [ + "▁Bredesen", + -15.737714767456055 + ], + [ + "▁REGARD", + -15.7377290725708 + ], + [ + "möglich", + -15.73776626586914 + ], + [ + "▁Cabrini", + -15.737850189208984 + ], + [ + "displacement", + -15.737862586975098 + ], + [ + "▁Comintern", + -15.73790168762207 + ], + [ + "▁Negroni", + -15.737955093383789 + ], + [ + "▁Methamphetamine", + -15.737991333007812 + ], + [ + "▁Kirklees", + -15.737993240356445 + ], + [ + "▁Nidhi", + -15.738004684448242 + ], + [ + "▁Optum", + -15.738005638122559 + ], + [ + "▁multilateralism", + -15.738033294677734 + ], + [ + "▁McCandless", + -15.738046646118164 + ], + [ + "▁volcanism", + -15.738046646118164 + ], + [ + "▁Stratasys", + -15.73811149597168 + ], + [ + "▁Connex", + -15.738170623779297 + ], + [ + "▁Dreher", + -15.738205909729004 + ], + [ + "▁sainthood", + -15.738260269165039 + ], + [ + "▁dinghies", + -15.738269805908203 + ], + [ + "▁Grieving", + -15.738275527954102 + ], + [ + "▁Corrado", + -15.738293647766113 + ], + [ + "▁Baguette", + -15.738325119018555 + ], + [ + "Azhar", + -15.73832893371582 + ], + [ + "ирования", + -15.738410949707031 + ], + [ + "Participant", + -15.738425254821777 + ], + [ + "▁Cockroaches", + -15.73845100402832 + ], + [ + "▁woodstove", + -15.738503456115723 + ], + [ + "▁Emeka", + -15.73861026763916 + ], + [ + "▁Webseite", + -15.738616943359375 + ], + [ + "▁Schenck", + -15.738661766052246 + ], + [ + "Phosph", + -15.73869514465332 + ], + [ + "Đ", + -15.73870849609375 + ], + [ + "▁Azarenka", + -15.73874568939209 + ], + [ + "▁Fonz", + -15.738746643066406 + ], + [ + "Celeb", + -15.73876667022705 + ], + [ + "▁CELEBRATE", + -15.738771438598633 + ], + [ + "▁bishopric", + -15.738868713378906 + ], + [ + "grandchild", + -15.738879203796387 + ], + [ + "▁baronet", + -15.738892555236816 + ], + [ + "ữ", + -15.738911628723145 + ], + [ + "▁Rooibos", + -15.73893928527832 + ], + [ + "cancelling", + -15.738962173461914 + ], + [ + "ผ", + -15.738996505737305 + ], + [ + "▁Olufsen", + -15.739023208618164 + ], + [ + "▁ketoacidosis", + -15.739023208618164 + ], + [ + "▁Barzal", + -15.739073753356934 + ], + [ + "▁Papacy", + -15.739100456237793 + ], + [ + "▁Touareg", + -15.739107131958008 + ], + [ + "counterfeit", + -15.739128112792969 + ], + [ + "▁gullet", + -15.739140510559082 + ], + [ + "▁distributable", + -15.739147186279297 + ], + [ + "▁literacies", + -15.739173889160156 + ], + [ + "Kraft", + -15.739174842834473 + ], + [ + "▁Decipher", + -15.739175796508789 + ], + [ + "Europa", + -15.73918342590332 + ], + [ + "▁timp", + -15.739218711853027 + ], + [ + "Ḥ", + -15.739424705505371 + ], + [ + "integrate", + -15.739476203918457 + ], + [ + "dynami", + -15.73949909210205 + ], + [ + "▁Harpoon", + -15.739554405212402 + ], + [ + "▁varmint", + -15.739555358886719 + ], + [ + "▁porcini", + -15.739652633666992 + ], + [ + "▁LCBO", + -15.739664077758789 + ], + [ + "▁Walmsley", + -15.739693641662598 + ], + [ + "▁McIver", + -15.739694595336914 + ], + [ + "▁PRISON", + -15.73972225189209 + ], + [ + "▁Zootopia", + -15.739826202392578 + ], + [ + "▁singulair", + -15.73985767364502 + ], + [ + "▁DEER", + -15.739885330200195 + ], + [ + "▁Carmody", + -15.739889144897461 + ], + [ + "▁RESTORE", + -15.739958763122559 + ], + [ + "▁Husbandry", + -15.73997688293457 + ], + [ + "▁Investopedia", + -15.740008354187012 + ], + [ + "▁Shopbop", + -15.740042686462402 + ], + [ + "▁Technologie", + -15.74014663696289 + ], + [ + "▁Terrifying", + -15.740158081054688 + ], + [ + "▁disaggregated", + -15.740168571472168 + ], + [ + "▁catabolic", + -15.740171432495117 + ], + [ + "كر", + -15.740260124206543 + ], + [ + "▁nativist", + -15.740289688110352 + ], + [ + "做", + -15.740344047546387 + ], + [ + "▁PULSE", + -15.740416526794434 + ], + [ + "▁HOUSING", + -15.740421295166016 + ], + [ + "▁immunostaining", + -15.740560531616211 + ], + [ + "Gomez", + -15.740579605102539 + ], + [ + "▁Maroney", + -15.740609169006348 + ], + [ + "▁Rizwan", + -15.740665435791016 + ], + [ + "▁Kuntz", + -15.740705490112305 + ], + [ + "▁Bravery", + -15.740717887878418 + ], + [ + "gué", + -15.740775108337402 + ], + [ + "REACH", + -15.740817070007324 + ], + [ + "▁Audley", + -15.74085807800293 + ], + [ + "▁Schock", + -15.740894317626953 + ], + [ + "combining", + -15.740896224975586 + ], + [ + "▁Clockwise", + -15.740950584411621 + ], + [ + "እ", + -15.740952491760254 + ], + [ + "▁Cressida", + -15.741002082824707 + ], + [ + "▁Meaghan", + -15.741095542907715 + ], + [ + "による", + -15.741129875183105 + ], + [ + "Aziz", + -15.741164207458496 + ], + [ + "▁Discontent", + -15.741170883178711 + ], + [ + "prehensible", + -15.741207122802734 + ], + [ + "▁Observable", + -15.741239547729492 + ], + [ + "Ё", + -15.741284370422363 + ], + [ + "給", + -15.741349220275879 + ], + [ + "methodology", + -15.741389274597168 + ], + [ + "Thermal", + -15.741406440734863 + ], + [ + "▁Curitiba", + -15.741483688354492 + ], + [ + "抗", + -15.741496086120605 + ], + [ + "▁dyskinesia", + -15.741511344909668 + ], + [ + "▁immunosuppressant", + -15.741511344909668 + ], + [ + "▁Deemed", + -15.741535186767578 + ], + [ + "ீ", + -15.741539001464844 + ], + [ + "▁Meningitis", + -15.741622924804688 + ], + [ + "luvial", + -15.741628646850586 + ], + [ + "▁Crespo", + -15.741662979125977 + ], + [ + "▁ashwagandha", + -15.741707801818848 + ], + [ + "▁ENVIRONMENTAL", + -15.741742134094238 + ], + [ + "üş", + -15.7417573928833 + ], + [ + "름", + -15.7417631149292 + ], + [ + "▁Tempting", + -15.74182415008545 + ], + [ + "ָה", + -15.741860389709473 + ], + [ + "▁Diwan", + -15.741909980773926 + ], + [ + "▁Bambino", + -15.74191951751709 + ], + [ + "▁ephedrine", + -15.74201488494873 + ], + [ + "ению", + -15.742037773132324 + ], + [ + "供", + -15.742055892944336 + ], + [ + "▁Coveney", + -15.742056846618652 + ], + [ + "触", + -15.7421236038208 + ], + [ + "▁coercing", + -15.742127418518066 + ], + [ + "境", + -15.742185592651367 + ], + [ + "▁ARLINGTON", + -15.742238998413086 + ], + [ + "▁Tuchel", + -15.742274284362793 + ], + [ + "▁Maronite", + -15.742300033569336 + ], + [ + "▁Margiela", + -15.742340087890625 + ], + [ + "▁Dagmar", + -15.742341995239258 + ], + [ + "determining", + -15.742371559143066 + ], + [ + "▁francais", + -15.7423734664917 + ], + [ + "▁SOLELY", + -15.74240779876709 + ], + [ + "▁Akashic", + -15.742409706115723 + ], + [ + "Repository", + -15.742682456970215 + ], + [ + "联", + -15.742685317993164 + ], + [ + "ય", + -15.742687225341797 + ], + [ + "▁CONSOL", + -15.742698669433594 + ], + [ + "waiver", + -15.742722511291504 + ], + [ + "▁Beckinsale", + -15.742772102355957 + ], + [ + "▁Interscope", + -15.742826461791992 + ], + [ + "▁Clematis", + -15.742971420288086 + ], + [ + "▁destabilising", + -15.742996215820312 + ], + [ + "▁subsonic", + -15.743000984191895 + ], + [ + "▁Krissy", + -15.743008613586426 + ], + [ + "Emerging", + -15.74301815032959 + ], + [ + "▁Larkspur", + -15.743024826049805 + ], + [ + "climax", + -15.743032455444336 + ], + [ + "▁Undefeated", + -15.74305248260498 + ], + [ + "부터", + -15.743099212646484 + ], + [ + "litigation", + -15.743132591247559 + ], + [ + "▁Meticulously", + -15.743253707885742 + ], + [ + "▁cudgel", + -15.743309020996094 + ], + [ + "▁delegitimize", + -15.743361473083496 + ], + [ + "Trojan", + -15.743431091308594 + ], + [ + "▁AUTHENTIC", + -15.743500709533691 + ], + [ + "▁Capsiplex", + -15.743528366088867 + ], + [ + "▁Barbari", + -15.7435302734375 + ], + [ + "▁Peloton", + -15.743561744689941 + ], + [ + "▁BRUCE", + -15.743573188781738 + ], + [ + "Gypsy", + -15.743607521057129 + ], + [ + "▁Controversies", + -15.743640899658203 + ], + [ + "▁Shrike", + -15.743657112121582 + ], + [ + "▁baitfish", + -15.743719100952148 + ], + [ + "▁alacrity", + -15.743781089782715 + ], + [ + "▁superimpose", + -15.743794441223145 + ], + [ + "▁Estée", + -15.743850708007812 + ], + [ + "▁Brimstone", + -15.743866920471191 + ], + [ + "▁COMPARTMENTS", + -15.74389362335205 + ], + [ + "automation", + -15.7439603805542 + ], + [ + "▁Sellars", + -15.743993759155273 + ], + [ + "CURRENT", + -15.744070053100586 + ], + [ + "▁Fairbairn", + -15.744117736816406 + ], + [ + "▁Alessio", + -15.744119644165039 + ], + [ + "との", + -15.74417495727539 + ], + [ + "▁Arbuckle", + -15.744194030761719 + ], + [ + "▁Jupp", + -15.744267463684082 + ], + [ + "rubicin", + -15.744280815124512 + ], + [ + "▁Rupture", + -15.744290351867676 + ], + [ + "▁Raynaud", + -15.744328498840332 + ], + [ + "▁Trollope", + -15.74439811706543 + ], + [ + "▁Zobrist", + -15.744399070739746 + ], + [ + "▁Habakkuk", + -15.744426727294922 + ], + [ + "▁polyamory", + -15.744454383850098 + ], + [ + "LEVEL", + -15.744476318359375 + ], + [ + "▁Hayworth", + -15.744505882263184 + ], + [ + "ለ", + -15.744595527648926 + ], + [ + "doubling", + -15.744597434997559 + ], + [ + "▁CyberGhost", + -15.744632720947266 + ], + [ + "▁Günther", + -15.744656562805176 + ], + [ + "ள்", + -15.74468994140625 + ], + [ + "▁Barbaro", + -15.744710922241211 + ], + [ + "▁Chopard", + -15.744714736938477 + ], + [ + "▁Llorente", + -15.744791984558105 + ], + [ + "▁Affectionate", + -15.74483871459961 + ], + [ + "▁77891", + -15.744854927062988 + ], + [ + "Bresson", + -15.744871139526367 + ], + [ + "cervical", + -15.744911193847656 + ], + [ + "▁TRANSIT", + -15.744987487792969 + ], + [ + "gianni", + -15.74500560760498 + ], + [ + "Presentation", + -15.745018005371094 + ], + [ + "▁Bostic", + -15.745089530944824 + ], + [ + "▁Mihail", + -15.74509334564209 + ], + [ + "ḍ", + -15.745100975036621 + ], + [ + "▁congregating", + -15.745128631591797 + ], + [ + "▁Connexion", + -15.74515438079834 + ], + [ + "▁TEPCO", + -15.745157241821289 + ], + [ + "▁Shortlisted", + -15.745163917541504 + ], + [ + "▁Gaskell", + -15.745238304138184 + ], + [ + "▁DATABASE", + -15.745248794555664 + ], + [ + "▁différent", + -15.745269775390625 + ], + [ + "Recover", + -15.74528980255127 + ], + [ + "Spoiler", + -15.745291709899902 + ], + [ + "Cigarette", + -15.745376586914062 + ], + [ + "በ", + -15.745381355285645 + ], + [ + "Aboriginal", + -15.74542236328125 + ], + [ + "环", + -15.745433807373047 + ], + [ + "▁percolation", + -15.745437622070312 + ], + [ + "▁Thornberry", + -15.74547290802002 + ], + [ + "▁divvy", + -15.74551010131836 + ], + [ + "▁dissapear", + -15.745607376098633 + ], + [ + "▁Turlock", + -15.74567699432373 + ], + [ + "▁Taurine", + -15.745743751525879 + ], + [ + "▁Phthalate", + -15.745746612548828 + ], + [ + "▁unipolar", + -15.745783805847168 + ], + [ + "▁borealis", + -15.745819091796875 + ], + [ + "▁LISTED", + -15.745892524719238 + ], + [ + "▁kerfuffle", + -15.745915412902832 + ], + [ + "▁experiance", + -15.745973587036133 + ], + [ + "▁Fransisco", + -15.745977401733398 + ], + [ + "▁availabilities", + -15.74600601196289 + ], + [ + "Cyclo", + -15.74606990814209 + ], + [ + "▁Deontay", + -15.746084213256836 + ], + [ + "▁DISTANCE", + -15.746087074279785 + ], + [ + "▁Sphero", + -15.746109962463379 + ], + [ + "평", + -15.746112823486328 + ], + [ + "▁burgdorferi", + -15.746140480041504 + ], + [ + "▁psyllium", + -15.746140480041504 + ], + [ + "▁Deidre", + -15.746186256408691 + ], + [ + "▁pressurize", + -15.746203422546387 + ], + [ + "▁Benefic", + -15.746252059936523 + ], + [ + "▁Caenorhabditis", + -15.74625301361084 + ], + [ + "JOHN", + -15.746258735656738 + ], + [ + "Zarqawi", + -15.74631118774414 + ], + [ + "▁Bouteflika", + -15.746337890625 + ], + [ + "▁Configurable", + -15.746365547180176 + ], + [ + "▁violist", + -15.746365547180176 + ], + [ + "▁Wondrous", + -15.746421813964844 + ], + [ + "▁Cypri", + -15.74645709991455 + ], + [ + "▁Fleischmann", + -15.746488571166992 + ], + [ + "▁Formaldehyde", + -15.74653434753418 + ], + [ + "▁vesicular", + -15.746535301208496 + ], + [ + "اض", + -15.746554374694824 + ], + [ + "▁Contaminated", + -15.746563911437988 + ], + [ + "Tutorial", + -15.746569633483887 + ], + [ + "▁caucasian", + -15.746590614318848 + ], + [ + "▁Kinematic", + -15.746637344360352 + ], + [ + "общ", + -15.746650695800781 + ], + [ + "Threat", + -15.746864318847656 + ], + [ + "hhhhhhh", + -15.746957778930664 + ], + [ + "victoria", + -15.746970176696777 + ], + [ + "▁diversionary", + -15.746980667114258 + ], + [ + "▁Tilapia", + -15.74698543548584 + ], + [ + "▁Cauvery", + -15.747029304504395 + ], + [ + "▁Knickerbocker", + -15.747040748596191 + ], + [ + "qPCR", + -15.74706745147705 + ], + [ + "▁Maribor", + -15.747092247009277 + ], + [ + "Strawberry", + -15.747095108032227 + ], + [ + "▁intermingle", + -15.747152328491211 + ], + [ + "▁buisness", + -15.747183799743652 + ], + [ + "▁FINDING", + -15.747245788574219 + ], + [ + "▁cornflour", + -15.747247695922852 + ], + [ + "▁nanostructured", + -15.74731731414795 + ], + [ + "dedication", + -15.747336387634277 + ], + [ + "▁Mohanlal", + -15.747395515441895 + ], + [ + "▁Exponent", + -15.747396469116211 + ], + [ + "LOVER", + -15.747397422790527 + ], + [ + "announcement", + -15.747406005859375 + ], + [ + "▁reaffirmation", + -15.74743366241455 + ], + [ + "WWWW", + -15.747455596923828 + ], + [ + "▁necropolis", + -15.747693061828613 + ], + [ + "▁hoodoo", + -15.74770736694336 + ], + [ + "▁loooong", + -15.7477445602417 + ], + [ + "▁Debugger", + -15.747749328613281 + ], + [ + "▁Consolation", + -15.74781608581543 + ], + [ + "▁Fermat", + -15.74781608581543 + ], + [ + "▁Safavieh", + -15.74782943725586 + ], + [ + "Lonely", + -15.747855186462402 + ], + [ + "▁venal", + -15.7479248046875 + ], + [ + "▁Spivey", + -15.747942924499512 + ], + [ + "查", + -15.747969627380371 + ], + [ + "▁transphobia", + -15.748064994812012 + ], + [ + "▁проект", + -15.74808406829834 + ], + [ + "▁Spielautomaten", + -15.7481107711792 + ], + [ + "▁Mephisto", + -15.748112678527832 + ], + [ + "▁Campervan", + -15.74814510345459 + ], + [ + "messenger", + -15.748147010803223 + ], + [ + "▁Kalamata", + -15.748167991638184 + ], + [ + "▁ADORE", + -15.74819278717041 + ], + [ + "▁Fulford", + -15.748204231262207 + ], + [ + "provisional", + -15.748376846313477 + ], + [ + "▁Tamarack", + -15.748381614685059 + ], + [ + "▁incongruity", + -15.748421669006348 + ], + [ + "▁Refinement", + -15.74856185913086 + ], + [ + "▁inviolable", + -15.748618125915527 + ], + [ + "▁denuclearize", + -15.748655319213867 + ], + [ + "▁Gobierno", + -15.748703956604004 + ], + [ + "▁semicircle", + -15.748750686645508 + ], + [ + "blush", + -15.748810768127441 + ], + [ + "▁Lurgan", + -15.748831748962402 + ], + [ + "▁Xylitol", + -15.748844146728516 + ], + [ + "▁statuesque", + -15.748884201049805 + ], + [ + "▁sheepdog", + -15.74891471862793 + ], + [ + "ון", + -15.74895191192627 + ], + [ + "Ethics", + -15.748980522155762 + ], + [ + "▁porphyry", + -15.748985290527344 + ], + [ + "▁altarpiece", + -15.74902057647705 + ], + [ + "▁Monteverde", + -15.749022483825684 + ], + [ + "▁Nicolette", + -15.749039649963379 + ], + [ + "▁levodopa", + -15.749070167541504 + ], + [ + "▁victual", + -15.749072074890137 + ], + [ + "▁Sneha", + -15.749135971069336 + ], + [ + "▁Anacortes", + -15.749154090881348 + ], + [ + "▁appropri", + -15.749170303344727 + ], + [ + "▁Denomination", + -15.749197006225586 + ], + [ + "▁Tertullian", + -15.749210357666016 + ], + [ + "▁plavix", + -15.749323844909668 + ], + [ + "▁Sorbate", + -15.749377250671387 + ], + [ + "▁sulcus", + -15.74940299987793 + ], + [ + "▁Cresswell", + -15.749565124511719 + ], + [ + "competence", + -15.749570846557617 + ], + [ + "▁Abdulrahman", + -15.749641418457031 + ], + [ + "▁système", + -15.749690055847168 + ], + [ + "▁sorbent", + -15.74972152709961 + ], + [ + "▁Thuringia", + -15.74979019165039 + ], + [ + "▁вос", + -15.749890327453613 + ], + [ + "▁Sabotage", + -15.749897003173828 + ], + [ + "Jacket", + -15.74991226196289 + ], + [ + "Millennial", + -15.749914169311523 + ], + [ + "▁Parsha", + -15.749955177307129 + ], + [ + "▁chaplaincy", + -15.749992370605469 + ], + [ + "azuma", + -15.750127792358398 + ], + [ + "WASHINGTON", + -15.750165939331055 + ], + [ + "▁Telefon", + -15.750177383422852 + ], + [ + "▁Retaliation", + -15.750311851501465 + ], + [ + "▁Roatan", + -15.750336647033691 + ], + [ + "▁morpheme", + -15.750384330749512 + ], + [ + "▁ANNIVERSARY", + -15.750395774841309 + ], + [ + "Pivot", + -15.750452995300293 + ], + [ + "▁undeliverable", + -15.750480651855469 + ], + [ + "potency", + -15.750531196594238 + ], + [ + "▁stowaway", + -15.750536918640137 + ], + [ + "▁Uffizi", + -15.750537872314453 + ], + [ + "შ", + -15.750555992126465 + ], + [ + "工程", + -15.75059986114502 + ], + [ + "Chron", + -15.750608444213867 + ], + [ + "▁pecorino", + -15.750621795654297 + ], + [ + "Revolutionary", + -15.75068187713623 + ], + [ + "▁Volkov", + -15.75074291229248 + ], + [ + "▁Paralysis", + -15.750752449035645 + ], + [ + "▁Shortcake", + -15.75086784362793 + ], + [ + "▁Monopol", + -15.750874519348145 + ], + [ + "phoenix", + -15.750896453857422 + ], + [ + "▁untroubled", + -15.750961303710938 + ], + [ + "▁Ketamine", + -15.751017570495605 + ], + [ + "▁fovea", + -15.751028060913086 + ], + [ + "ТО", + -15.751033782958984 + ], + [ + "aşı", + -15.751090049743652 + ], + [ + "▁nimbly", + -15.751091957092285 + ], + [ + "▁Yisroel", + -15.751102447509766 + ], + [ + "▁Furtado", + -15.75115966796875 + ], + [ + "▁futbol", + -15.751160621643066 + ], + [ + "▁bolognese", + -15.751214981079102 + ], + [ + "пит", + -15.751290321350098 + ], + [ + "▁odonto", + -15.751299858093262 + ], + [ + "▁decongest", + -15.751310348510742 + ], + [ + "Segment", + -15.751335144042969 + ], + [ + "ુ", + -15.751357078552246 + ], + [ + "schrieben", + -15.75136947631836 + ], + [ + "▁Jacobean", + -15.751502990722656 + ], + [ + "▁alzheimer", + -15.75152587890625 + ], + [ + "▁Fenugreek", + -15.751554489135742 + ], + [ + "▁Tarsus", + -15.751565933227539 + ], + [ + "▁Blumberg", + -15.751574516296387 + ], + [ + "Hallelujah", + -15.751580238342285 + ], + [ + "▁telekinetic", + -15.751596450805664 + ], + [ + "川", + -15.751639366149902 + ], + [ + "▁epigram", + -15.751640319824219 + ], + [ + "▁videotaping", + -15.751640319824219 + ], + [ + "allergy", + -15.751710891723633 + ], + [ + "▁Interchangeable", + -15.751720428466797 + ], + [ + "▁Peacekeeping", + -15.751781463623047 + ], + [ + "▁plainclothes", + -15.75178337097168 + ], + [ + "▁baobab", + -15.751784324645996 + ], + [ + "▁Eurogamer", + -15.751873016357422 + ], + [ + "▁arboreal", + -15.751876831054688 + ], + [ + "▁asphyxiation", + -15.751906394958496 + ], + [ + "▁unscrambling", + -15.752035140991211 + ], + [ + "Declaration", + -15.752060890197754 + ], + [ + "▁citronella", + -15.75207233428955 + ], + [ + "▁Norquist", + -15.752105712890625 + ], + [ + "▁peuvent", + -15.752126693725586 + ], + [ + "▁ASKED", + -15.75214672088623 + ], + [ + "▁McMorris", + -15.752148628234863 + ], + [ + "░", + -15.75217342376709 + ], + [ + "ИЯ", + -15.752238273620605 + ], + [ + "▁schmuck", + -15.752239227294922 + ], + [ + "sacrificing", + -15.752259254455566 + ], + [ + "Sunflower", + -15.752298355102539 + ], + [ + "▁contextualise", + -15.752306938171387 + ], + [ + "▁Thiessen", + -15.752362251281738 + ], + [ + "изация", + -15.752420425415039 + ], + [ + "▁incapacitate", + -15.75247859954834 + ], + [ + "▁Ingmar", + -15.752518653869629 + ], + [ + "Nielsen", + -15.752577781677246 + ], + [ + "▁titillating", + -15.752630233764648 + ], + [ + "▁availabe", + -15.752726554870605 + ], + [ + "▁interpolate", + -15.752760887145996 + ], + [ + "▁puffins", + -15.752856254577637 + ], + [ + "▁lég", + -15.752904891967773 + ], + [ + "▁CALENDAR", + -15.752941131591797 + ], + [ + "對", + -15.752985954284668 + ], + [ + "▁treacle", + -15.753005981445312 + ], + [ + "▁Mendota", + -15.753026962280273 + ], + [ + "Leninism", + -15.753035545349121 + ], + [ + "▁Employability", + -15.753090858459473 + ], + [ + "Sculpt", + -15.753135681152344 + ], + [ + "▁STEREO", + -15.75313663482666 + ], + [ + "crucial", + -15.753145217895508 + ], + [ + "▁Gaeta", + -15.7532320022583 + ], + [ + "▁Wailea", + -15.753286361694336 + ], + [ + "patriotic", + -15.753303527832031 + ], + [ + "▁Stilwell", + -15.753334045410156 + ], + [ + "▁striated", + -15.753374099731445 + ], + [ + "▁Compagnie", + -15.75339412689209 + ], + [ + "▁JENNIFER", + -15.753422737121582 + ], + [ + "▁Deaton", + -15.753438949584961 + ], + [ + "Mobil", + -15.753485679626465 + ], + [ + "選択", + -15.75350570678711 + ], + [ + "▁Seiji", + -15.753532409667969 + ], + [ + "▁Perlmutter", + -15.753621101379395 + ], + [ + "ιά", + -15.753682136535645 + ], + [ + "▁jetties", + -15.753698348999023 + ], + [ + "▁lipophilic", + -15.753703117370605 + ], + [ + "▁Nuova", + -15.753734588623047 + ], + [ + "▁sertraline", + -15.753762245178223 + ], + [ + "▁Committing", + -15.75379467010498 + ], + [ + "▁bahama", + -15.753872871398926 + ], + [ + "▁Mewtwo", + -15.753891944885254 + ], + [ + "▁Durbar", + -15.75394344329834 + ], + [ + "▁Hahnemann", + -15.754000663757324 + ], + [ + "▁bratty", + -15.754029273986816 + ], + [ + "▁lipgloss", + -15.754040718078613 + ], + [ + "且", + -15.754055976867676 + ], + [ + "▁FISHER", + -15.75410270690918 + ], + [ + "▁cephalexin", + -15.75410270690918 + ], + [ + "▁Lipinski", + -15.754118919372559 + ], + [ + "▁Svitolina", + -15.754158973693848 + ], + [ + "▁revitalising", + -15.754216194152832 + ], + [ + "▁Kospi", + -15.754265785217285 + ], + [ + "離", + -15.754281044006348 + ], + [ + "▁Bernina", + -15.754362106323242 + ], + [ + "▁HSDPA", + -15.754396438598633 + ], + [ + "träge", + -15.754446983337402 + ], + [ + "abbreviated", + -15.754469871520996 + ], + [ + "快", + -15.75447940826416 + ], + [ + "▁immortalised", + -15.754508972167969 + ], + [ + "經", + -15.754534721374512 + ], + [ + "步", + -15.754556655883789 + ], + [ + "▁Hypoallergenic", + -15.754587173461914 + ], + [ + "▁overwintering", + -15.75458812713623 + ], + [ + "▁Pergamon", + -15.754612922668457 + ], + [ + "Excellence", + -15.754745483398438 + ], + [ + "Veronica", + -15.75477123260498 + ], + [ + "▁renege", + -15.75479793548584 + ], + [ + "▁enthu", + -15.754798889160156 + ], + [ + "▁Bubblegum", + -15.754828453063965 + ], + [ + "▁TIBCO", + -15.754839897155762 + ], + [ + "防", + -15.754860877990723 + ], + [ + "▁Sleaford", + -15.754924774169922 + ], + [ + "ὰ", + -15.754953384399414 + ], + [ + "▁Ascorbic", + -15.754953384399414 + ], + [ + "▁Fresenius", + -15.755011558532715 + ], + [ + "▁gastropub", + -15.75504207611084 + ], + [ + "eininger", + -15.755064964294434 + ], + [ + "▁clapper", + -15.755107879638672 + ], + [ + "▁Credible", + -15.755120277404785 + ], + [ + "ই", + -15.755123138427734 + ], + [ + "▁Manilow", + -15.755151748657227 + ], + [ + "▁Georgios", + -15.755270004272461 + ], + [ + "▁Pezz", + -15.755280494689941 + ], + [ + "▁Veloci", + -15.755290985107422 + ], + [ + "예", + -15.755292892456055 + ], + [ + "▁Sinful", + -15.755295753479004 + ], + [ + "pubertal", + -15.755306243896484 + ], + [ + "▁EGCG", + -15.755314826965332 + ], + [ + "▁collins", + -15.755332946777344 + ], + [ + "Relation", + -15.755436897277832 + ], + [ + "▁mormon", + -15.755440711975098 + ], + [ + "weebly", + -15.755441665649414 + ], + [ + "▁carrera", + -15.755465507507324 + ], + [ + "▁SPECIFICALLY", + -15.755467414855957 + ], + [ + "▁Carvajal", + -15.755492210388184 + ], + [ + "▁gemcitabine", + -15.75550365447998 + ], + [ + "▁ruffian", + -15.755570411682129 + ], + [ + "▁cuisinart", + -15.75557804107666 + ], + [ + "▁kinesin", + -15.755578994750977 + ], + [ + "▁Andriy", + -15.755590438842773 + ], + [ + "plaintiff", + -15.755627632141113 + ], + [ + "Hurry", + -15.755638122558594 + ], + [ + "▁Wisniewski", + -15.75575065612793 + ], + [ + "Vantage", + -15.755758285522461 + ], + [ + "▁Siemian", + -15.755772590637207 + ], + [ + "maximal", + -15.755834579467773 + ], + [ + "되고", + -15.755865097045898 + ], + [ + "▁Abusive", + -15.75590991973877 + ], + [ + "▁Natchitoches", + -15.755975723266602 + ], + [ + "▁Aravind", + -15.756020545959473 + ], + [ + "▁Hgtv", + -15.756170272827148 + ], + [ + "▁Colloid", + -15.756200790405273 + ], + [ + "▁Morricone", + -15.756202697753906 + ], + [ + "amplified", + -15.756234169006348 + ], + [ + "▁Halibut", + -15.756261825561523 + ], + [ + "▁Neuhaus", + -15.75627326965332 + ], + [ + "larion", + -15.756296157836914 + ], + [ + "服", + -15.756332397460938 + ], + [ + "▁Empresa", + -15.756370544433594 + ], + [ + "▁hypochlorite", + -15.756458282470703 + ], + [ + "▁dwarven", + -15.756600379943848 + ], + [ + "▁Raspbian", + -15.756659507751465 + ], + [ + "▁Trentino", + -15.756688117980957 + ], + [ + "▁LATAM", + -15.756752967834473 + ], + [ + "Ordinary", + -15.756769180297852 + ], + [ + "▁Quando", + -15.756856918334961 + ], + [ + "▁surrealistic", + -15.756875991821289 + ], + [ + "▁Extensible", + -15.757028579711914 + ], + [ + "▁Zomato", + -15.757030487060547 + ], + [ + "▁ovum", + -15.757059097290039 + ], + [ + "▁Crestron", + -15.757111549377441 + ], + [ + "▁Sadhana", + -15.757170677185059 + ], + [ + "▁mislabeled", + -15.757224082946777 + ], + [ + "▁DePuy", + -15.75722599029541 + ], + [ + "जी", + -15.757279396057129 + ], + [ + "▁Pacemaker", + -15.757285118103027 + ], + [ + "▁suturing", + -15.757349967956543 + ], + [ + "▁mincing", + -15.757354736328125 + ], + [ + "▁NOVEL", + -15.757437705993652 + ], + [ + "▁Dungannon", + -15.757481575012207 + ], + [ + "▁Yanagi", + -15.757499694824219 + ], + [ + "▁Slashdot", + -15.757622718811035 + ], + [ + "▁valerian", + -15.757640838623047 + ], + [ + "▁GAMING", + -15.757674217224121 + ], + [ + "▁genotoxic", + -15.75772762298584 + ], + [ + "▁Slackware", + -15.757866859436035 + ], + [ + "abilidad", + -15.757871627807617 + ], + [ + "▁Glyphosate", + -15.757908821105957 + ], + [ + "▁Havant", + -15.757943153381348 + ], + [ + "коль", + -15.757966041564941 + ], + [ + "ろ", + -15.757988929748535 + ], + [ + "▁Marquardt", + -15.75802230834961 + ], + [ + "▁Valence", + -15.758024215698242 + ], + [ + "▁UNIVERSE", + -15.758087158203125 + ], + [ + "▁marzo", + -15.758106231689453 + ], + [ + "▁phosphorylate", + -15.758153915405273 + ], + [ + "▁Hedging", + -15.758163452148438 + ], + [ + "Regina", + -15.758221626281738 + ], + [ + "▁Murmansk", + -15.758225440979004 + ], + [ + "▁Timbaland", + -15.75825023651123 + ], + [ + "▁Kedarnath", + -15.758252143859863 + ], + [ + "▁FOLK", + -15.758322715759277 + ], + [ + "▁Rabinowitz", + -15.758341789245605 + ], + [ + "eluting", + -15.758350372314453 + ], + [ + "▁Scioto", + -15.7583646774292 + ], + [ + "▁POLAR", + -15.75838565826416 + ], + [ + "▁NOISE", + -15.758407592773438 + ], + [ + "▁Deforestation", + -15.758505821228027 + ], + [ + "▁retcon", + -15.758634567260742 + ], + [ + "▁Pietersen", + -15.75864028930664 + ], + [ + "▁zilch", + -15.758683204650879 + ], + [ + "レン", + -15.758724212646484 + ], + [ + "▁quadruped", + -15.75876235961914 + ], + [ + "Messenger", + -15.758822441101074 + ], + [ + "▁sextet", + -15.758845329284668 + ], + [ + "▁dispersive", + -15.75887680053711 + ], + [ + "▁Meissner", + -15.758904457092285 + ], + [ + "PayPal", + -15.758907318115234 + ], + [ + "тери", + -15.758909225463867 + ], + [ + "游", + -15.758910179138184 + ], + [ + "德", + -15.758913040161133 + ], + [ + "▁Dumpty", + -15.75897216796875 + ], + [ + "yummy", + -15.7589750289917 + ], + [ + "▁INSPECTION", + -15.759018898010254 + ], + [ + "▁Gonsalves", + -15.759047508239746 + ], + [ + "WINDOWS", + -15.759050369262695 + ], + [ + "▁Kedah", + -15.759099006652832 + ], + [ + "▁Pragya", + -15.759114265441895 + ], + [ + "Gauge", + -15.759127616882324 + ], + [ + "▁Dombrowski", + -15.759132385253906 + ], + [ + "▁Piramal", + -15.759191513061523 + ], + [ + "▁Skimmer", + -15.759265899658203 + ], + [ + "▁Lockerbie", + -15.75932788848877 + ], + [ + "▁Rosicrucian", + -15.759361267089844 + ], + [ + "▁striatal", + -15.759367942810059 + ], + [ + "▁OUTSTANDING", + -15.759446144104004 + ], + [ + "▁terrine", + -15.759506225585938 + ], + [ + "emulsion", + -15.759561538696289 + ], + [ + "▁zantac", + -15.759562492370605 + ], + [ + "▁Menominee", + -15.759567260742188 + ], + [ + "Beginner", + -15.759588241577148 + ], + [ + "▁vraiment", + -15.75961685180664 + ], + [ + "均", + -15.759700775146484 + ], + [ + "▁accuracies", + -15.759702682495117 + ], + [ + "▁Gujrat", + -15.75978946685791 + ], + [ + "▁Tatooine", + -15.759817123413086 + ], + [ + "▁Battaglia", + -15.759819984436035 + ], + [ + "▁développement", + -15.759834289550781 + ], + [ + "Marketwire", + -15.759856224060059 + ], + [ + "▁Hyperactivity", + -15.759933471679688 + ], + [ + "▁chaperon", + -15.75998592376709 + ], + [ + "▁virile", + -15.760031700134277 + ], + [ + "▁disenfranchise", + -15.7601900100708 + ], + [ + "▁grapeseed", + -15.760215759277344 + ], + [ + "▁WEAPON", + -15.760217666625977 + ], + [ + "بو", + -15.760229110717773 + ], + [ + "▁slugged", + -15.760237693786621 + ], + [ + "▁propensities", + -15.760244369506836 + ], + [ + "мест", + -15.760334014892578 + ], + [ + "▁Privatization", + -15.760374069213867 + ], + [ + "▁adjudicating", + -15.76050090789795 + ], + [ + "▁tjetër", + -15.76050090789795 + ], + [ + "▁LAURA", + -15.760517120361328 + ], + [ + "റ", + -15.760614395141602 + ], + [ + "▁stoicism", + -15.760660171508789 + ], + [ + "▁Shakib", + -15.760666847229004 + ], + [ + "▁espacio", + -15.760698318481445 + ], + [ + "▁Donatello", + -15.760699272155762 + ], + [ + "▁CLINICAL", + -15.760717391967773 + ], + [ + "▁elimina", + -15.760795593261719 + ], + [ + "▁Sengupta", + -15.76083755493164 + ], + [ + "▁↵", + -15.76083755493164 + ], + [ + "führer", + -15.760848045349121 + ], + [ + "▁Kelantan", + -15.76087474822998 + ], + [ + "Infrastructure", + -15.760926246643066 + ], + [ + "▁Luís", + -15.761018753051758 + ], + [ + "▁fogged", + -15.761059761047363 + ], + [ + "▁Megaupload", + -15.761128425598145 + ], + [ + "▁Zeigler", + -15.761159896850586 + ], + [ + "▁MARRIED", + -15.761242866516113 + ], + [ + "vár", + -15.761245727539062 + ], + [ + "▁Boonville", + -15.76126480102539 + ], + [ + "Santos", + -15.761303901672363 + ], + [ + "▁GURPS", + -15.76132869720459 + ], + [ + "▁KEITH", + -15.761363983154297 + ], + [ + "▁Dimitrios", + -15.761378288269043 + ], + [ + "▁Homage", + -15.76138973236084 + ], + [ + "▁Tarragona", + -15.761414527893066 + ], + [ + "▁Lucite", + -15.761422157287598 + ], + [ + "▁Becton", + -15.761425971984863 + ], + [ + "▁ANDROID", + -15.761443138122559 + ], + [ + "▁Eredivisie", + -15.761443138122559 + ], + [ + "▁synergize", + -15.761444091796875 + ], + [ + "steuer", + -15.761449813842773 + ], + [ + "▁Juicing", + -15.761481285095215 + ], + [ + "▁Longchamp", + -15.761491775512695 + ], + [ + "▁Vesey", + -15.7615385055542 + ], + [ + "▁Abhinav", + -15.761547088623047 + ], + [ + "familysearch", + -15.761575698852539 + ], + [ + "▁SPRAY", + -15.761584281921387 + ], + [ + "▁SIGMA", + -15.761611938476562 + ], + [ + "▁Freon", + -15.761614799499512 + ], + [ + "▁Dharamshala", + -15.761643409729004 + ], + [ + "▁PHOTOGRAPHY", + -15.761663436889648 + ], + [ + "psychologist", + -15.761737823486328 + ], + [ + "▁Hypnotic", + -15.76188850402832 + ], + [ + "▁фото", + -15.761927604675293 + ], + [ + "▁deionized", + -15.761929512023926 + ], + [ + "Maurice", + -15.761933326721191 + ], + [ + "▁Terengganu", + -15.762014389038086 + ], + [ + "▁Aquari", + -15.762038230895996 + ], + [ + "Accident", + -15.762133598327637 + ], + [ + "ө", + -15.76215648651123 + ], + [ + "▁Gekko", + -15.762258529663086 + ], + [ + "khel", + -15.762314796447754 + ], + [ + "▁Kursk", + -15.76235580444336 + ], + [ + "▁Studded", + -15.762391090393066 + ], + [ + "ば", + -15.762627601623535 + ], + [ + "ھ", + -15.763615608215332 + ], + [ + "ゴ", + -15.763712882995605 + ], + [ + "《", + -15.764501571655273 + ], + [ + "ủ", + -15.76556396484375 + ], + [ + "土", + -15.766181945800781 + ], + [ + "句", + -15.769379615783691 + ], + [ + "백", + -15.770766258239746 + ], + [ + "던", + -15.771286010742188 + ], + [ + "ట", + -15.771803855895996 + ], + [ + "ṁ", + -15.77492618560791 + ], + [ + "令", + -15.77624797821045 + ], + [ + "─", + -15.77719497680664 + ], + [ + "五", + -15.77762222290039 + ], + [ + "約", + -15.77784538269043 + ], + [ + "院", + -15.777878761291504 + ], + [ + "火", + -15.779181480407715 + ], + [ + "커", + -15.779451370239258 + ], + [ + "আ", + -15.78003215789795 + ], + [ + "바", + -15.780098915100098 + ], + [ + "ქ", + -15.780468940734863 + ], + [ + "즈", + -15.780468940734863 + ], + [ + "域", + -15.781194686889648 + ], + [ + "உ", + -15.784697532653809 + ], + [ + "ກ", + -15.786638259887695 + ], + [ + "載", + -15.787171363830566 + ], + [ + "완", + -15.787801742553711 + ], + [ + "车", + -15.78841781616211 + ], + [ + "级", + -15.788690567016602 + ], + [ + "散", + -15.788832664489746 + ], + [ + "િ", + -15.789973258972168 + ], + [ + "強", + -15.790514945983887 + ], + [ + "▷", + -15.790708541870117 + ], + [ + "ီ", + -15.790766716003418 + ], + [ + "病", + -15.7908296585083 + ], + [ + "获", + -15.791131019592285 + ], + [ + "命", + -15.791827201843262 + ], + [ + "您", + -15.793800354003906 + ], + [ + "福", + -15.7947416305542 + ], + [ + "孔", + -15.794757843017578 + ], + [ + "際", + -15.795669555664062 + ], + [ + "试", + -15.795989990234375 + ], + [ + "", + -15.79616641998291 + ], + [ + "复", + -15.797412872314453 + ], + [ + "带", + -15.799083709716797 + ], + [ + "Ӏ", + -15.79924201965332 + ], + [ + "ඩ", + -15.800666809082031 + ], + [ + "አ", + -15.801497459411621 + ], + [ + "말", + -15.802523612976074 + ], + [ + "米", + -15.804863929748535 + ], + [ + "≡", + -15.80629825592041 + ], + [ + "ಸ", + -15.80673885345459 + ], + [ + "워", + -15.809616088867188 + ], + [ + "⟩", + -15.810395240783691 + ], + [ + "শ", + -15.810544967651367 + ], + [ + "୍", + -15.81264591217041 + ], + [ + "確", + -15.814017295837402 + ], + [ + "링", + -15.814541816711426 + ], + [ + "资", + -15.814787864685059 + ], + [ + "排", + -15.81505298614502 + ], + [ + "까", + -15.815380096435547 + ], + [ + "類", + -15.815943717956543 + ], + [ + "ର", + -15.817466735839844 + ], + [ + "页", + -15.818286895751953 + ], + [ + "ʃ", + -15.81849479675293 + ], + [ + "ศ", + -15.818978309631348 + ], + [ + "Û", + -15.819008827209473 + ], + [ + "育", + -15.819435119628906 + ], + [ + "લ", + -15.820795059204102 + ], + [ + "歌", + -15.820878982543945 + ], + [ + "史", + -15.821322441101074 + ], + [ + "‒", + -15.821515083312988 + ], + [ + "◊", + -15.821857452392578 + ], + [ + "卡", + -15.822144508361816 + ], + [ + "索", + -15.822444915771484 + ], + [ + "场", + -15.822468757629395 + ], + [ + "達", + -15.823857307434082 + ], + [ + "校", + -15.824036598205566 + ], + [ + "외", + -15.824703216552734 + ], + [ + "글", + -15.82519817352295 + ], + [ + "Μ", + -15.826580047607422 + ], + [ + "ĭ", + -15.826751708984375 + ], + [ + "య", + -15.826811790466309 + ], + [ + "古", + -15.827757835388184 + ], + [ + "预", + -15.828415870666504 + ], + [ + "₦", + -15.828521728515625 + ], + [ + "💕", + -15.828643798828125 + ], + [ + "给", + -15.830180168151855 + ], + [ + "ġ", + -15.83078384399414 + ], + [ + "声", + -15.831010818481445 + ], + [ + "গ", + -15.831089973449707 + ], + [ + "斯", + -15.831343650817871 + ], + [ + "చ", + -15.83350944519043 + ], + [ + "换", + -15.834254264831543 + ], + [ + "愛", + -15.834821701049805 + ], + [ + "ਮ", + -15.836523056030273 + ], + [ + "局", + -15.837397575378418 + ], + [ + "충", + -15.837662696838379 + ], + [ + "❶", + -15.837940216064453 + ], + [ + "염", + -15.838310241699219 + ], + [ + "报", + -15.8383150100708 + ], + [ + "ో", + -15.838556289672852 + ], + [ + "標", + -15.841940879821777 + ], + [ + "Φ", + -15.842072486877441 + ], + [ + "界", + -15.84296989440918 + ], + [ + "જ", + -15.843287467956543 + ], + [ + "േ", + -15.843503952026367 + ], + [ + "點", + -15.843916893005371 + ], + [ + "∘", + -15.846173286437988 + ], + [ + "增", + -15.84679889678955 + ], + [ + "ォ", + -15.84712028503418 + ], + [ + "채", + -15.84732437133789 + ], + [ + "员", + -15.847545623779297 + ], + [ + "专", + -15.847878456115723 + ], + [ + "検", + -15.847978591918945 + ], + [ + "길", + -15.849442481994629 + ], + [ + "ក", + -15.852154731750488 + ], + [ + "머", + -15.854663848876953 + ], + [ + "博", + -15.856559753417969 + ], + [ + "ூ", + -15.856671333312988 + ], + [ + "員", + -15.858838081359863 + ], + [ + "담", + -15.861299514770508 + ], + [ + "體", + -15.861671447753906 + ], + [ + "랑", + -15.862089157104492 + ], + [ + "범", + -15.862215042114258 + ], + [ + "べ", + -15.863154411315918 + ], + [ + "ѵ", + -15.863289833068848 + ], + [ + "施", + -15.86388874053955 + ], + [ + "留", + -15.864175796508789 + ], + [ + "필", + -15.865251541137695 + ], + [ + "규", + -15.865409851074219 + ], + [ + "Ć", + -15.867217063903809 + ], + [ + "악", + -15.868646621704102 + ], + [ + "∣", + -15.871066093444824 + ], + [ + "ਤ", + -15.871607780456543 + ], + [ + "茅", + -15.871672630310059 + ], + [ + "ἰ", + -15.872756004333496 + ], + [ + "ੇ", + -15.872979164123535 + ], + [ + "番", + -15.873555183410645 + ], + [ + "ヒ", + -15.874553680419922 + ], + [ + "旅", + -15.87544059753418 + ], + [ + "ซ", + -15.877235412597656 + ], + [ + "半", + -15.877778053283691 + ], + [ + "剤", + -15.87799072265625 + ], + [ + "脂", + -15.878046035766602 + ], + [ + "政", + -15.878303527832031 + ], + [ + "걸", + -15.879443168640137 + ], + [ + "头", + -15.879688262939453 + ], + [ + "Ψ", + -15.879737854003906 + ], + [ + "į", + -15.880863189697266 + ], + [ + "এ", + -15.881025314331055 + ], + [ + "首", + -15.882569313049316 + ], + [ + "👏", + -15.883054733276367 + ], + [ + "👉", + -15.88386058807373 + ], + [ + "粒", + -15.884759902954102 + ], + [ + "▸", + -15.885895729064941 + ], + [ + "充", + -15.885940551757812 + ], + [ + "材", + -15.886106491088867 + ], + [ + "免", + -15.886935234069824 + ], + [ + "略", + -15.887612342834473 + ], + [ + "異", + -15.889115333557129 + ], + [ + "評", + -15.890080451965332 + ], + [ + "డ", + -15.890401840209961 + ], + [ + "否", + -15.89120864868164 + ], + [ + "존", + -15.893101692199707 + ], + [ + "ী", + -15.895383834838867 + ], + [ + "伝", + -15.895840644836426 + ], + [ + "符", + -15.896818161010742 + ], + [ + "ژ", + -15.897344589233398 + ], + [ + "走", + -15.898127555847168 + ], + [ + "极", + -15.898296356201172 + ], + [ + "積", + -15.89989948272705 + ], + [ + "있", + -15.900115013122559 + ], + [ + "热", + -15.900646209716797 + ], + [ + "词", + -15.900912284851074 + ], + [ + "识", + -15.901552200317383 + ], + [ + "题", + -15.901887893676758 + ], + [ + "ヤ", + -15.901991844177246 + ], + [ + "њ", + -15.902164459228516 + ], + [ + "∫", + -15.903182983398438 + ], + [ + "識", + -15.903453826904297 + ], + [ + "ќ", + -15.903604507446289 + ], + [ + "ါ", + -15.903809547424316 + ], + [ + "ザ", + -15.904388427734375 + ], + [ + "曜", + -15.906810760498047 + ], + [ + "克", + -15.90781307220459 + ], + [ + "징", + -15.90859603881836 + ], + [ + "애", + -15.909456253051758 + ], + [ + "话", + -15.909557342529297 + ], + [ + "収", + -15.910455703735352 + ], + [ + "細", + -15.911561965942383 + ], + [ + "底", + -15.912379264831543 + ], + [ + "们", + -15.913616180419922 + ], + [ + "油", + -15.913858413696289 + ], + [ + "登", + -15.913992881774902 + ], + [ + "込", + -15.91526985168457 + ], + [ + "ಮ", + -15.915566444396973 + ], + [ + "技", + -15.916524887084961 + ], + [ + "ử", + -15.916767120361328 + ], + [ + "応", + -15.918474197387695 + ], + [ + "书", + -15.918739318847656 + ], + [ + "గ", + -15.919438362121582 + ], + [ + "致", + -15.919499397277832 + ], + [ + "취", + -15.92037582397461 + ], + [ + "론", + -15.920811653137207 + ], + [ + "ŭ", + -15.921682357788086 + ], + [ + "江", + -15.921916007995605 + ], + [ + "ஆ", + -15.922252655029297 + ], + [ + "Ā", + -15.92322063446045 + ], + [ + "ብ", + -15.923293113708496 + ], + [ + "試", + -15.923727989196777 + ], + [ + "ಂ", + -15.924263000488281 + ], + [ + "磁", + -15.925058364868164 + ], + [ + "혈", + -15.926385879516602 + ], + [ + "池", + -15.926514625549316 + ], + [ + "區", + -15.92658805847168 + ], + [ + "ď", + -15.927295684814453 + ], + [ + "东", + -15.928174018859863 + ], + [ + "났", + -15.928915023803711 + ], + [ + "混", + -15.931241989135742 + ], + [ + "້", + -15.932066917419434 + ], + [ + "々", + -15.93217658996582 + ], + [ + "Ј", + -15.932872772216797 + ], + [ + "足", + -15.933174133300781 + ], + [ + "効", + -15.933906555175781 + ], + [ + "ነ", + -15.933992385864258 + ], + [ + "ᄏ", + -15.934305191040039 + ], + [ + "ಯ", + -15.934735298156738 + ], + [ + "張", + -15.934823989868164 + ], + [ + "ັ", + -15.935494422912598 + ], + [ + "茶", + -15.938770294189453 + ], + [ + "것", + -15.94052791595459 + ], + [ + "ね", + -15.940934181213379 + ], + [ + "百", + -15.940974235534668 + ], + [ + "激", + -15.941457748413086 + ], + [ + "维", + -15.9420747756958 + ], + [ + "编", + -15.9423828125 + ], + [ + "味", + -15.943224906921387 + ], + [ + "झ", + -15.943641662597656 + ], + [ + "림", + -15.943675994873047 + ], + [ + "選", + -15.946630477905273 + ], + [ + "올", + -15.94672966003418 + ], + [ + "ງ", + -15.946738243103027 + ], + [ + "描", + -15.947455406188965 + ], + [ + "延", + -15.947504043579102 + ], + [ + "ĩ", + -15.949759483337402 + ], + [ + "官", + -15.950825691223145 + ], + [ + "び", + -15.950882911682129 + ], + [ + "备", + -15.951003074645996 + ], + [ + "➡", + -15.951623916625977 + ], + [ + "∆", + -15.956645965576172 + ], + [ + "ດ", + -15.95751667022705 + ], + [ + "ተ", + -15.961688995361328 + ], + [ + "〈", + -15.96299934387207 + ], + [ + "침", + -15.963224411010742 + ], + [ + "說", + -15.964147567749023 + ], + [ + "케", + -15.9644136428833 + ], + [ + "Ξ", + -15.965252876281738 + ], + [ + "径", + -15.966187477111816 + ], + [ + "運", + -15.967495918273926 + ], + [ + "島", + -15.967531204223633 + ], + [ + "책", + -15.968092918395996 + ], + [ + "ប", + -15.96837043762207 + ], + [ + "⟨", + -15.96876049041748 + ], + [ + "լ", + -15.969287872314453 + ], + [ + "ढ", + -15.970695495605469 + ], + [ + "村", + -15.970891952514648 + ], + [ + "予", + -15.971088409423828 + ], + [ + "単", + -15.971870422363281 + ], + [ + "ស", + -15.971888542175293 + ], + [ + "ජ", + -15.972456932067871 + ], + [ + "遊", + -15.979320526123047 + ], + [ + "ළ", + -15.982094764709473 + ], + [ + "典", + -15.982510566711426 + ], + [ + "門", + -15.982711791992188 + ], + [ + "წ", + -15.98359203338623 + ], + [ + "►", + -15.984354972839355 + ], + [ + "김", + -15.984731674194336 + ], + [ + "门", + -15.98544692993164 + ], + [ + "ٌ", + -15.985876083374023 + ], + [ + "買", + -15.986408233642578 + ], + [ + "같", + -15.987593650817871 + ], + [ + "Ђ", + -15.987642288208008 + ], + [ + "補", + -15.988275527954102 + ], + [ + "답", + -15.988381385803223 + ], + [ + "青", + -15.988462448120117 + ], + [ + "简", + -15.989781379699707 + ], + [ + "째", + -15.991826057434082 + ], + [ + "ያ", + -15.992042541503906 + ], + [ + "ና", + -15.995573043823242 + ], + [ + "ภ", + -15.999079704284668 + ], + [ + "농", + -15.999368667602539 + ], + [ + "健", + -15.999590873718262 + ], + [ + "ῆ", + -16.0002384185791 + ], + [ + "վ", + -16.00118064880371 + ], + [ + "ড", + -16.001689910888672 + ], + [ + "▫", + -16.003189086914062 + ], + [ + "움", + -16.003217697143555 + ], + [ + "華", + -16.00374412536621 + ], + [ + "座", + -16.00408172607422 + ], + [ + "樂", + -16.0042781829834 + ], + [ + "‖", + -16.0049991607666 + ], + [ + "强", + -16.008108139038086 + ], + [ + "ƅ", + -16.00832176208496 + ], + [ + "把", + -16.008544921875 + ], + [ + "탄", + -16.0096378326416 + ], + [ + "🏽", + -16.011838912963867 + ], + [ + "ည", + -16.012645721435547 + ], + [ + "노", + -16.013181686401367 + ], + [ + "ṃ", + -16.013532638549805 + ], + [ + "ម", + -16.015213012695312 + ], + [ + "느", + -16.015657424926758 + ], + [ + "চ", + -16.01576805114746 + ], + [ + "÷", + -16.01649284362793 + ], + [ + "널", + -16.01668930053711 + ], + [ + "령", + -16.017499923706055 + ], + [ + "响", + -16.017810821533203 + ], + [ + "베", + -16.018016815185547 + ], + [ + "손", + -16.01860809326172 + ], + [ + "読", + -16.019241333007812 + ], + [ + "达", + -16.019472122192383 + ], + [ + "ィ", + -16.019487380981445 + ], + [ + "拉", + -16.01987648010254 + ], + [ + "景", + -16.0212345123291 + ], + [ + "双", + -16.021270751953125 + ], + [ + "ფ", + -16.02275276184082 + ], + [ + "Ѓ", + -16.022985458374023 + ], + [ + "ზ", + -16.023792266845703 + ], + [ + "深", + -16.024761199951172 + ], + [ + "Ƅ", + -16.02568817138672 + ], + [ + "배", + -16.02727699279785 + ], + [ + "ֲ", + -16.02777099609375 + ], + [ + "创", + -16.028146743774414 + ], + [ + "초", + -16.030263900756836 + ], + [ + "날", + -16.032329559326172 + ], + [ + "振", + -16.0324764251709 + ], + [ + "▄", + -16.032485961914062 + ], + [ + "๎", + -16.032733917236328 + ], + [ + "群", + -16.033798217773438 + ], + [ + "추", + -16.03472328186035 + ], + [ + "살", + -16.035215377807617 + ], + [ + "准", + -16.035974502563477 + ], + [ + "風", + -16.0364933013916 + ], + [ + "ธ", + -16.037734985351562 + ], + [ + "ὴ", + -16.037885665893555 + ], + [ + "ອ", + -16.038005828857422 + ], + [ + "친", + -16.038148880004883 + ], + [ + "息", + -16.038232803344727 + ], + [ + "细", + -16.03908920288086 + ], + [ + "落", + -16.0394229888916 + ], + [ + "答", + -16.04014015197754 + ], + [ + "处", + -16.040302276611328 + ], + [ + "甲", + -16.040597915649414 + ], + [ + "져", + -16.0426025390625 + ], + [ + "ਦ", + -16.042943954467773 + ], + [ + "章", + -16.043094635009766 + ], + [ + "ˌ", + -16.04498863220215 + ], + [ + "ầ", + -16.04589080810547 + ], + [ + "ছ", + -16.045974731445312 + ], + [ + "约", + -16.04798126220703 + ], + [ + "ὐ", + -16.048824310302734 + ], + [ + "밀", + -16.04947280883789 + ], + [ + "겠", + -16.049701690673828 + ], + [ + "務", + -16.05097770690918 + ], + [ + "ເ", + -16.053030014038086 + ], + [ + "객", + -16.054092407226562 + ], + [ + "记", + -16.054100036621094 + ], + [ + "左", + -16.054576873779297 + ], + [ + "世", + -16.054584503173828 + ], + [ + "პ", + -16.05615997314453 + ], + [ + "누", + -16.056198120117188 + ], + [ + "必", + -16.05788803100586 + ], + [ + "樹", + -16.057971954345703 + ], + [ + "І", + -16.059062957763672 + ], + [ + "퍼", + -16.05927085876465 + ], + [ + "従", + -16.059755325317383 + ], + [ + "ღ", + -16.060001373291016 + ], + [ + "経", + -16.060550689697266 + ], + [ + "ษ", + -16.06069564819336 + ], + [ + "란", + -16.0610408782959 + ], + [ + "げ", + -16.0622615814209 + ], + [ + "▀", + -16.06243324279785 + ], + [ + "私", + -16.064674377441406 + ], + [ + "잘", + -16.06517219543457 + ], + [ + "ශ", + -16.065174102783203 + ], + [ + "✦", + -16.06575584411621 + ], + [ + "準", + -16.065841674804688 + ], + [ + "랜", + -16.067031860351562 + ], + [ + "干", + -16.067033767700195 + ], + [ + "验", + -16.06781768798828 + ], + [ + "证", + -16.069169998168945 + ], + [ + "ᴇ", + -16.069904327392578 + ], + [ + "住", + -16.0699462890625 + ], + [ + "գ", + -16.070175170898438 + ], + [ + "😁", + -16.07017707824707 + ], + [ + "ỉ", + -16.070215225219727 + ], + [ + "͡", + -16.074424743652344 + ], + [ + "페", + -16.075048446655273 + ], + [ + "🙌", + -16.075204849243164 + ], + [ + "权", + -16.07549285888672 + ], + [ + "ỏ", + -16.075557708740234 + ], + [ + "황", + -16.07575225830078 + ], + [ + "င", + -16.076309204101562 + ], + [ + "▲", + -16.077098846435547 + ], + [ + "春", + -16.077356338500977 + ], + [ + "む", + -16.077856063842773 + ], + [ + "許", + -16.078083038330078 + ], + [ + "並", + -16.078466415405273 + ], + [ + "ɗ", + -16.080337524414062 + ], + [ + "₤", + -16.084781646728516 + ], + [ + "撮", + -16.085140228271484 + ], + [ + "皮", + -16.086641311645508 + ], + [ + "则", + -16.08669090270996 + ], + [ + "義", + -16.087007522583008 + ], + [ + "ʔ", + -16.0872745513916 + ], + [ + "ධ", + -16.087432861328125 + ], + [ + "架", + -16.089500427246094 + ], + [ + "读", + -16.0902156829834 + ], + [ + "广", + -16.092397689819336 + ], + [ + "Ý", + -16.092668533325195 + ], + [ + "≦", + -16.094181060791016 + ], + [ + "Ў", + -16.09569549560547 + ], + [ + "ీ", + -16.096773147583008 + ], + [ + "ओ", + -16.097293853759766 + ], + [ + "問", + -16.097766876220703 + ], + [ + "請", + -16.09901237487793 + ], + [ + "볼", + -16.09905242919922 + ], + [ + "등", + -16.099590301513672 + ], + [ + "ܐ", + -16.099613189697266 + ], + [ + "應", + -16.100021362304688 + ], + [ + "實", + -16.100317001342773 + ], + [ + "ũ", + -16.101537704467773 + ], + [ + "統", + -16.10199546813965 + ], + [ + "॥", + -16.10205841064453 + ], + [ + "돌", + -16.102380752563477 + ], + [ + "∀", + -16.10390853881836 + ], + [ + "按", + -16.105188369750977 + ], + [ + "探", + -16.105606079101562 + ], + [ + "갖", + -16.107290267944336 + ], + [ + "師", + -16.108030319213867 + ], + [ + "永", + -16.108104705810547 + ], + [ + "映", + -16.10939598083496 + ], + [ + "项", + -16.109546661376953 + ], + [ + "հ", + -16.110322952270508 + ], + [ + "ະ", + -16.110734939575195 + ], + [ + "功", + -16.11080551147461 + ], + [ + "팅", + -16.11153793334961 + ], + [ + "适", + -16.111547470092773 + ], + [ + "ဆ", + -16.111740112304688 + ], + [ + "હ", + -16.112224578857422 + ], + [ + "അ", + -16.112712860107422 + ], + [ + "松", + -16.11350440979004 + ], + [ + "љ", + -16.113767623901367 + ], + [ + "ẽ", + -16.114418029785156 + ], + [ + "ٹ", + -16.1195125579834 + ], + [ + "ギ", + -16.11998176574707 + ], + [ + "런", + -16.12016487121582 + ], + [ + "割", + -16.120756149291992 + ], + [ + "優", + -16.121540069580078 + ], + [ + "ء", + -16.121553421020508 + ], + [ + "⦁", + -16.122581481933594 + ], + [ + "较", + -16.124971389770508 + ], + [ + "附", + -16.125774383544922 + ], + [ + "備", + -16.12751007080078 + ], + [ + "ʒ", + -16.1280460357666 + ], + [ + "態", + -16.128746032714844 + ], + [ + "關", + -16.1290225982666 + ], + [ + "总", + -16.130775451660156 + ], + [ + "康", + -16.13178253173828 + ], + [ + "ෝ", + -16.131925582885742 + ], + [ + "컨", + -16.1335391998291 + ], + [ + "降", + -16.133543014526367 + ], + [ + "➢", + -16.133913040161133 + ], + [ + "马", + -16.134122848510742 + ], + [ + "套", + -16.134897232055664 + ], + [ + "ං", + -16.135530471801758 + ], + [ + "喜", + -16.135820388793945 + ], + [ + "享", + -16.13623809814453 + ], + [ + "荷", + -16.13688850402832 + ], + [ + "총", + -16.13698387145996 + ], + [ + "男", + -16.139984130859375 + ], + [ + "們", + -16.14249038696289 + ], + [ + "‣", + -16.143081665039062 + ], + [ + "終", + -16.144556045532227 + ], + [ + "距", + -16.145456314086914 + ], + [ + "屋", + -16.14560317993164 + ], + [ + "ึ", + -16.146005630493164 + ], + [ + "📝", + -16.14688491821289 + ], + [ + "🇺", + -16.147308349609375 + ], + [ + "温", + -16.148021697998047 + ], + [ + "况", + -16.14954948425293 + ], + [ + "候", + -16.14995765686035 + ], + [ + "ὲ", + -16.152273178100586 + ], + [ + "夜", + -16.152687072753906 + ], + [ + "승", + -16.152780532836914 + ], + [ + "氧", + -16.153369903564453 + ], + [ + "义", + -16.156217575073242 + ], + [ + "武", + -16.157005310058594 + ], + [ + "ມ", + -16.1572322845459 + ], + [ + "럼", + -16.157394409179688 + ], + [ + "암", + -16.158966064453125 + ], + [ + "幅", + -16.16142463684082 + ], + [ + "ゃ", + -16.161558151245117 + ], + [ + "找", + -16.16200065612793 + ], + [ + "館", + -16.162033081054688 + ], + [ + "菜", + -16.162242889404297 + ], + [ + "失", + -16.162967681884766 + ], + [ + "ǔ", + -16.163267135620117 + ], + [ + "ף", + -16.164377212524414 + ], + [ + "灣", + -16.165679931640625 + ], + [ + "六", + -16.166784286499023 + ], + [ + "采", + -16.166996002197266 + ], + [ + "̀", + -16.16700553894043 + ], + [ + "隔", + -16.16826629638672 + ], + [ + "ẹ", + -16.169044494628906 + ], + [ + "또", + -16.170806884765625 + ], + [ + "囲", + -16.170827865600586 + ], + [ + "ヘ", + -16.171632766723633 + ], + [ + "粉", + -16.172958374023438 + ], + [ + "ວ", + -16.17296600341797 + ], + [ + "际", + -16.173568725585938 + ], + [ + "못", + -16.174596786499023 + ], + [ + "術", + -16.17469596862793 + ], + [ + "센", + -16.175159454345703 + ], + [ + "ە", + -16.175764083862305 + ], + [ + "內", + -16.177032470703125 + ], + [ + "構", + -16.17862892150879 + ], + [ + "范", + -16.178972244262695 + ], + [ + "短", + -16.179399490356445 + ], + [ + "କ", + -16.18052864074707 + ], + [ + "ദ", + -16.18117904663086 + ], + [ + "ஸ", + -16.18170166015625 + ], + [ + "ὶ", + -16.18296241760254 + ], + [ + "户", + -16.18328857421875 + ], + [ + "̋", + -16.183910369873047 + ], + [ + "희", + -16.183921813964844 + ], + [ + "核", + -16.184572219848633 + ], + [ + "녀", + -16.185401916503906 + ], + [ + "ĕ", + -16.18553352355957 + ], + [ + "似", + -16.18583869934082 + ], + [ + "혼", + -16.18601417541504 + ], + [ + "참", + -16.1864070892334 + ], + [ + "균", + -16.186494827270508 + ], + [ + "风", + -16.187728881835938 + ], + [ + "環", + -16.18796157836914 + ], + [ + "省", + -16.18833351135254 + ], + [ + "ฟ", + -16.1885929107666 + ], + [ + "厚", + -16.1888427734375 + ], + [ + "ਲ", + -16.188899993896484 + ], + [ + "將", + -16.191152572631836 + ], + [ + "頭", + -16.191614151000977 + ], + [ + "眼", + -16.192323684692383 + ], + [ + "万", + -16.193111419677734 + ], + [ + "ဖ", + -16.193817138671875 + ], + [ + "ണ", + -16.1939697265625 + ], + [ + "Ԁ", + -16.196107864379883 + ], + [ + "🇸", + -16.19615364074707 + ], + [ + "콘", + -16.196327209472656 + ], + [ + "納", + -16.196331024169922 + ], + [ + "概", + -16.19761085510254 + ], + [ + "封", + -16.19791030883789 + ], + [ + "固", + -16.19914436340332 + ], + [ + "属", + -16.199190139770508 + ], + [ + "価", + -16.200775146484375 + ], + [ + "Ł", + -16.202800750732422 + ], + [ + "冷", + -16.204151153564453 + ], + [ + "阿", + -16.204328536987305 + ], + [ + "ভ", + -16.20616912841797 + ], + [ + "દ", + -16.206436157226562 + ], + [ + "줄", + -16.207103729248047 + ], + [ + "智", + -16.208528518676758 + ], + [ + "突", + -16.212047576904297 + ], + [ + "ត", + -16.212377548217773 + ], + [ + "认", + -16.213193893432617 + ], + [ + "數", + -16.213754653930664 + ], + [ + "八", + -16.214126586914062 + ], + [ + "念", + -16.216114044189453 + ], + [ + "🤣", + -16.216684341430664 + ], + [ + "😭", + -16.21845054626465 + ], + [ + "減", + -16.219425201416016 + ], + [ + "ὁ", + -16.220346450805664 + ], + [ + "Џ", + -16.220752716064453 + ], + [ + "ံ", + -16.221296310424805 + ], + [ + "费", + -16.221670150756836 + ], + [ + "族", + -16.22168731689453 + ], + [ + "當", + -16.2218017578125 + ], + [ + "논", + -16.223512649536133 + ], + [ + "ീ", + -16.22401237487793 + ], + [ + "規", + -16.224084854125977 + ], + [ + "壁", + -16.22562026977539 + ], + [ + "∈", + -16.227806091308594 + ], + [ + "务", + -16.229433059692383 + ], + [ + "ಲ", + -16.229604721069336 + ], + [ + "又", + -16.22979164123535 + ], + [ + "େ", + -16.230154037475586 + ], + [ + "ગ", + -16.23093032836914 + ], + [ + "才", + -16.231616973876953 + ], + [ + "ង", + -16.231840133666992 + ], + [ + "आ", + -16.23410987854004 + ], + [ + "츠", + -16.234773635864258 + ], + [ + "낮", + -16.235002517700195 + ], + [ + "ٍ", + -16.235551834106445 + ], + [ + "侧", + -16.235971450805664 + ], + [ + "够", + -16.236248016357422 + ], + [ + "🏾", + -16.236473083496094 + ], + [ + "억", + -16.23665428161621 + ], + [ + "Њ", + -16.23752784729004 + ], + [ + "问", + -16.23835563659668 + ], + [ + "称", + -16.23845100402832 + ], + [ + "骨", + -16.239728927612305 + ], + [ + "河", + -16.2401123046875 + ], + [ + "⚡", + -16.24130630493164 + ], + [ + "黄", + -16.241626739501953 + ], + [ + "망", + -16.24347496032715 + ], + [ + "红", + -16.243663787841797 + ], + [ + "複", + -16.244834899902344 + ], + [ + "̓", + -16.246877670288086 + ], + [ + "猫", + -16.247182846069336 + ], + [ + "ひ", + -16.248106002807617 + ], + [ + "ほ", + -16.248886108398438 + ], + [ + "香", + -16.249935150146484 + ], + [ + "独", + -16.25108528137207 + ], + [ + "編", + -16.253679275512695 + ], + [ + "杂", + -16.253746032714844 + ], + [ + "越", + -16.254505157470703 + ], + [ + "软", + -16.254640579223633 + ], + [ + "Ъ", + -16.254819869995117 + ], + [ + "护", + -16.255762100219727 + ], + [ + "份", + -16.25577735900879 + ], + [ + "範", + -16.257524490356445 + ], + [ + "依", + -16.257638931274414 + ], + [ + "還", + -16.258243560791016 + ], + [ + "続", + -16.25855255126953 + ], + [ + "ץ", + -16.261768341064453 + ], + [ + "故", + -16.262325286865234 + ], + [ + "節", + -16.263784408569336 + ], + [ + "ማ", + -16.264219284057617 + ], + [ + "帯", + -16.265594482421875 + ], + [ + "龙", + -16.26657485961914 + ], + [ + "귀", + -16.26729393005371 + ], + [ + "馬", + -16.268957138061523 + ], + [ + "刘", + -16.270803451538086 + ], + [ + "右", + -16.27103042602539 + ], + [ + "终", + -16.272706985473633 + ], + [ + "ք", + -16.272945404052734 + ], + [ + "ἔ", + -16.27446937561035 + ], + [ + "찰", + -16.275136947631836 + ], + [ + "普", + -16.275236129760742 + ], + [ + "ಪ", + -16.275325775146484 + ], + [ + "ူ", + -16.275617599487305 + ], + [ + "硬", + -16.2761173248291 + ], + [ + "☛", + -16.277000427246094 + ], + [ + "ਪ", + -16.277143478393555 + ], + [ + "軸", + -16.27764320373535 + ], + [ + "ີ", + -16.27801513671875 + ], + [ + "彩", + -16.27830696105957 + ], + [ + "콜", + -16.27833366394043 + ], + [ + "ె", + -16.280736923217773 + ], + [ + "ょ", + -16.281354904174805 + ], + [ + "維", + -16.28140640258789 + ], + [ + "ਜ", + -16.28165054321289 + ], + [ + "死", + -16.281702041625977 + ], + [ + "ґ", + -16.28236198425293 + ], + [ + "ລ", + -16.284061431884766 + ], + [ + "견", + -16.28550148010254 + ], + [ + "播", + -16.286617279052734 + ], + [ + "圖", + -16.287399291992188 + ], + [ + "待", + -16.288541793823242 + ], + [ + "价", + -16.288606643676758 + ], + [ + "▓", + -16.289981842041016 + ], + [ + "若", + -16.290462493896484 + ], + [ + "签", + -16.290586471557617 + ], + [ + "ׁ", + -16.29090690612793 + ], + [ + "ļ", + -16.29106330871582 + ], + [ + "허", + -16.291790008544922 + ], + [ + "谷", + -16.294218063354492 + ], + [ + "希", + -16.295339584350586 + ], + [ + "∶", + -16.295434951782227 + ], + [ + "講", + -16.295923233032227 + ], + [ + "極", + -16.2961483001709 + ], + [ + "替", + -16.296646118164062 + ], + [ + "覆", + -16.29776954650879 + ], + [ + "므", + -16.29802131652832 + ], + [ + "ғ", + -16.298215866088867 + ], + [ + "ટ", + -16.298215866088867 + ], + [ + "폭", + -16.298606872558594 + ], + [ + "খ", + -16.300416946411133 + ], + [ + "楽", + -16.300994873046875 + ], + [ + "围", + -16.301942825317383 + ], + [ + "🎉", + -16.303308486938477 + ], + [ + "返", + -16.30462074279785 + ], + [ + "両", + -16.304698944091797 + ], + [ + "见", + -16.30483627319336 + ], + [ + "么", + -16.305673599243164 + ], + [ + "藤", + -16.30586814880371 + ], + [ + "露", + -16.305946350097656 + ], + [ + "址", + -16.30680274963379 + ], + [ + "井", + -16.307279586791992 + ], + [ + "財", + -16.307735443115234 + ], + [ + "অ", + -16.308279037475586 + ], + [ + "Ò", + -16.30877685546875 + ], + [ + "亚", + -16.308786392211914 + ], + [ + "陈", + -16.30927085876465 + ], + [ + "ぶ", + -16.30956268310547 + ], + [ + "☞", + -16.310453414916992 + ], + [ + "찾", + -16.311046600341797 + ], + [ + "尔", + -16.311058044433594 + ], + [ + "条", + -16.3121395111084 + ], + [ + "Ś", + -16.312437057495117 + ], + [ + "ந", + -16.313486099243164 + ], + [ + "⃣", + -16.316354751586914 + ], + [ + "⌘", + -16.31645393371582 + ], + [ + "북", + -16.31779670715332 + ], + [ + "ች", + -16.31959342956543 + ], + [ + "呼", + -16.319881439208984 + ], + [ + "师", + -16.31989288330078 + ], + [ + "ณ", + -16.320642471313477 + ], + [ + "討", + -16.320981979370117 + ], + [ + "դ", + -16.32139015197754 + ], + [ + "Ī", + -16.321441650390625 + ], + [ + "題", + -16.32149887084961 + ], + [ + "许", + -16.321645736694336 + ], + [ + "连", + -16.323270797729492 + ], + [ + "携", + -16.323623657226562 + ], + [ + "玩", + -16.323692321777344 + ], + [ + "➜", + -16.324695587158203 + ], + [ + "웨", + -16.325849533081055 + ], + [ + "থ", + -16.32630157470703 + ], + [ + "ທ", + -16.326662063598633 + ], + [ + "ằ", + -16.3283634185791 + ], + [ + "植", + -16.32953643798828 + ], + [ + "征", + -16.329879760742188 + ], + [ + "맞", + -16.33022689819336 + ], + [ + "費", + -16.330732345581055 + ], + [ + "束", + -16.330745697021484 + ], + [ + "絶", + -16.33110237121582 + ], + [ + "麼", + -16.33146858215332 + ], + [ + "规", + -16.334278106689453 + ], + [ + "堂", + -16.33525848388672 + ], + [ + "順", + -16.335411071777344 + ], + [ + "九", + -16.336488723754883 + ], + [ + "吉", + -16.338529586791992 + ], + [ + "새", + -16.339448928833008 + ], + [ + "큰", + -16.33965301513672 + ], + [ + "研", + -16.339895248413086 + ], + [ + "ẩ", + -16.34067153930664 + ], + [ + "🤔", + -16.342912673950195 + ], + [ + "બ", + -16.343990325927734 + ], + [ + "락", + -16.345422744750977 + ], + [ + "શ", + -16.346343994140625 + ], + [ + "偏", + -16.347007751464844 + ], + [ + "획", + -16.34767723083496 + ], + [ + "ḵ", + -16.349218368530273 + ], + [ + "ः", + -16.34937286376953 + ], + [ + "Ṣ", + -16.350143432617188 + ], + [ + "术", + -16.350357055664062 + ], + [ + "升", + -16.35051727294922 + ], + [ + "ඇ", + -16.350812911987305 + ], + [ + "ግ", + -16.35137939453125 + ], + [ + "▪", + -16.351455688476562 + ], + [ + "復", + -16.35154914855957 + ], + [ + "折", + -16.351884841918945 + ], + [ + "观", + -16.352828979492188 + ], + [ + "텔", + -16.35318374633789 + ], + [ + "ደ", + -16.353235244750977 + ], + [ + "◎", + -16.353282928466797 + ], + [ + "թ", + -16.35385513305664 + ], + [ + "随", + -16.355207443237305 + ], + [ + "献", + -16.35544776916504 + ], + [ + "ĺ", + -16.356233596801758 + ], + [ + "習", + -16.356393814086914 + ], + [ + "१", + -16.35659408569336 + ], + [ + "😘", + -16.35763168334961 + ], + [ + "ә", + -16.358720779418945 + ], + [ + "늘", + -16.358877182006836 + ], + [ + "ˇ", + -16.358928680419922 + ], + [ + "评", + -16.359556198120117 + ], + [ + "駆", + -16.359607696533203 + ], + [ + "ສ", + -16.359766006469727 + ], + [ + "Ř", + -16.361215591430664 + ], + [ + "ಳ", + -16.36183738708496 + ], + [ + "턴", + -16.36204719543457 + ], + [ + "ល", + -16.364229202270508 + ], + [ + "黑", + -16.364656448364258 + ], + [ + "患", + -16.36496353149414 + ], + [ + "轴", + -16.365236282348633 + ], + [ + "̃", + -16.365901947021484 + ], + [ + "久", + -16.367156982421875 + ], + [ + "追", + -16.367721557617188 + ], + [ + "根", + -16.369585037231445 + ], + [ + "Ṭ", + -16.370044708251953 + ], + [ + "哪", + -16.37026023864746 + ], + [ + "련", + -16.37088394165039 + ], + [ + "專", + -16.371200561523438 + ], + [ + "園", + -16.371623992919922 + ], + [ + "夫", + -16.372766494750977 + ], + [ + "药", + -16.37331199645996 + ], + [ + "縁", + -16.374469757080078 + ], + [ + "ድ", + -16.375991821289062 + ], + [ + "؟", + -16.376150131225586 + ], + [ + "Θ", + -16.377660751342773 + ], + [ + "航", + -16.37799835205078 + ], + [ + "갈", + -16.379589080810547 + ], + [ + "ບ", + -16.3804988861084 + ], + [ + "곳", + -16.383943557739258 + ], + [ + "执", + -16.38416290283203 + ], + [ + "두", + -16.384185791015625 + ], + [ + "ላ", + -16.386714935302734 + ], + [ + "盘", + -16.387310028076172 + ], + [ + "즉", + -16.388744354248047 + ], + [ + "護", + -16.388803482055664 + ], + [ + "━", + -16.38916015625 + ], + [ + "ḏ", + -16.38954734802246 + ], + [ + "訊", + -16.389907836914062 + ], + [ + "刷", + -16.39011573791504 + ], + [ + "彼", + -16.390661239624023 + ], + [ + "ഷ", + -16.3909912109375 + ], + [ + "ਗ", + -16.39168930053711 + ], + [ + "她", + -16.392505645751953 + ], + [ + "델", + -16.392547607421875 + ], + [ + "录", + -16.392871856689453 + ], + [ + "불", + -16.395000457763672 + ], + [ + "床", + -16.39507484436035 + ], + [ + "肉", + -16.395231246948242 + ], + [ + "刻", + -16.395336151123047 + ], + [ + "♭", + -16.396743774414062 + ], + [ + "💪", + -16.396743774414062 + ], + [ + "택", + -16.39701271057129 + ], + [ + "売", + -16.397491455078125 + ], + [ + "申", + -16.398252487182617 + ], + [ + "ထ", + -16.398523330688477 + ], + [ + "ᴏ", + -16.398523330688477 + ], + [ + "產", + -16.39901351928711 + ], + [ + "ղ", + -16.399171829223633 + ], + [ + "ễ", + -16.39992904663086 + ], + [ + "률", + -16.40019989013672 + ], + [ + "稿", + -16.40060043334961 + ], + [ + "ญ", + -16.401552200317383 + ], + [ + "႔", + -16.402690887451172 + ], + [ + "ਵ", + -16.40339469909668 + ], + [ + "銇", + -16.40363883972168 + ], + [ + "沒", + -16.40388298034668 + ], + [ + "ẓ", + -16.405567169189453 + ], + [ + "早", + -16.40616226196289 + ], + [ + "곡", + -16.40643882751465 + ], + [ + "ੋ", + -16.40703773498535 + ], + [ + "郎", + -16.408126831054688 + ], + [ + "酒", + -16.410364151000977 + ], + [ + "魔", + -16.41337776184082 + ], + [ + "积", + -16.413827896118164 + ], + [ + "Ѕ", + -16.4140625 + ], + [ + "査", + -16.415220260620117 + ], + [ + "链", + -16.417890548706055 + ], + [ + "ỗ", + -16.418981552124023 + ], + [ + "翻", + -16.419204711914062 + ], + [ + "එ", + -16.419330596923828 + ], + [ + "薄", + -16.42094612121582 + ], + [ + "ẻ", + -16.422292709350586 + ], + [ + "̣", + -16.425926208496094 + ], + [ + "흡", + -16.42600440979004 + ], + [ + "😎", + -16.426725387573242 + ], + [ + "ᴀ", + -16.427227020263672 + ], + [ + "害", + -16.427574157714844 + ], + [ + "决", + -16.42800521850586 + ], + [ + "얼", + -16.4283390045166 + ], + [ + "療", + -16.429805755615234 + ], + [ + "阳", + -16.430185317993164 + ], + [ + "燃", + -16.430187225341797 + ], + [ + "ਆ", + -16.430288314819336 + ], + [ + "怎", + -16.43034553527832 + ], + [ + "ỹ", + -16.431123733520508 + ], + [ + "跟", + -16.43141746520996 + ], + [ + "需", + -16.4316349029541 + ], + [ + "覧", + -16.432456970214844 + ], + [ + "ћ", + -16.43285369873047 + ], + [ + "ገ", + -16.434083938598633 + ], + [ + "佳", + -16.434371948242188 + ], + [ + "ஜ", + -16.434755325317383 + ], + [ + "ḷ", + -16.43492317199707 + ], + [ + "⇑", + -16.4355411529541 + ], + [ + "↑", + -16.43564224243164 + ], + [ + "玉", + -16.435876846313477 + ], + [ + "円", + -16.436813354492188 + ], + [ + "背", + -16.43706512451172 + ], + [ + "増", + -16.438634872436523 + ], + [ + "ŕ", + -16.43952751159668 + ], + [ + "ը", + -16.440202713012695 + ], + [ + "儿", + -16.440486907958984 + ], + [ + "협", + -16.44082260131836 + ], + [ + "母", + -16.44120979309082 + ], + [ + "静", + -16.44266700744629 + ], + [ + "ಬ", + -16.443979263305664 + ], + [ + "习", + -16.443981170654297 + ], + [ + "伸", + -16.444414138793945 + ], + [ + "ळ", + -16.44454574584961 + ], + [ + "陳", + -16.445659637451172 + ], + [ + "購", + -16.44663429260254 + ], + [ + "슬", + -16.446754455566406 + ], + [ + "呢", + -16.447546005249023 + ], + [ + "എ", + -16.447832107543945 + ], + [ + "ὑ", + -16.4481143951416 + ], + [ + "ɒ", + -16.449420928955078 + ], + [ + "렌", + -16.4522647857666 + ], + [ + "項", + -16.452898025512695 + ], + [ + "💙", + -16.45380401611328 + ], + [ + "ੈ", + -16.454090118408203 + ], + [ + "ಡ", + -16.454259872436523 + ], + [ + "企", + -16.454261779785156 + ], + [ + "千", + -16.454376220703125 + ], + [ + "园", + -16.454439163208008 + ], + [ + "득", + -16.455461502075195 + ], + [ + "▒", + -16.455913543701172 + ], + [ + "朝", + -16.45603370666504 + ], + [ + "疗", + -16.458154678344727 + ], + [ + "壇", + -16.45866584777832 + ], + [ + "富", + -16.459726333618164 + ], + [ + "ਬ", + -16.460216522216797 + ], + [ + "居", + -16.46084213256836 + ], + [ + "Ō", + -16.461196899414062 + ], + [ + "云", + -16.462051391601562 + ], + [ + "某", + -16.462627410888672 + ], + [ + "든", + -16.465110778808594 + ], + [ + "Ա", + -16.465919494628906 + ], + [ + "엔", + -16.46672821044922 + ], + [ + "ẫ", + -16.466901779174805 + ], + [ + "旋", + -16.467180252075195 + ], + [ + "થ", + -16.467479705810547 + ], + [ + "ἡ", + -16.46753692626953 + ], + [ + "休", + -16.467592239379883 + ], + [ + "̅", + -16.467708587646484 + ], + [ + "✪", + -16.467769622802734 + ], + [ + "響", + -16.469562530517578 + ], + [ + "ੰ", + -16.470840454101562 + ], + [ + "ๅ", + -16.471364974975586 + ], + [ + "ṯ", + -16.471538543701172 + ], + [ + "承", + -16.471715927124023 + ], + [ + "析", + -16.471773147583008 + ], + [ + "ശ", + -16.472932815551758 + ], + [ + "篇", + -16.472999572753906 + ], + [ + "控", + -16.473337173461914 + ], + [ + "︎", + -16.474212646484375 + ], + [ + "ʀ", + -16.474796295166016 + ], + [ + "😊", + -16.475444793701172 + ], + [ + "ǽ", + -16.47677993774414 + ], + [ + "善", + -16.4789981842041 + ], + [ + "边", + -16.47982406616211 + ], + [ + "草", + -16.48028564453125 + ], + [ + "察", + -16.481346130371094 + ], + [ + "箱", + -16.48175811767578 + ], + [ + "Ș", + -16.48322296142578 + ], + [ + "乙", + -16.483383178710938 + ], + [ + "ନ", + -16.483810424804688 + ], + [ + "०", + -16.484045028686523 + ], + [ + "ყ", + -16.484045028686523 + ], + [ + "洗", + -16.486631393432617 + ], + [ + "餐", + -16.486644744873047 + ], + [ + "ෂ", + -16.48775863647461 + ], + [ + "ῷ", + -16.48834991455078 + ], + [ + "આ", + -16.48882293701172 + ], + [ + "բ", + -16.48976707458496 + ], + [ + "ከ", + -16.490774154663086 + ], + [ + "✿", + -16.491657257080078 + ], + [ + "۱", + -16.491722106933594 + ], + [ + "ຫ", + -16.491790771484375 + ], + [ + "△", + -16.492080688476562 + ], + [ + "ẖ", + -16.492374420166016 + ], + [ + "먼", + -16.492610931396484 + ], + [ + "ඉ", + -16.492849349975586 + ], + [ + "染", + -16.49427604675293 + ], + [ + "末", + -16.494550704956055 + ], + [ + "岩", + -16.495222091674805 + ], + [ + "叫", + -16.495798110961914 + ], + [ + "અ", + -16.497608184814453 + ], + [ + "른", + -16.49766731262207 + ], + [ + "゚", + -16.497846603393555 + ], + [ + "添", + -16.49826431274414 + ], + [ + "译", + -16.49855613708496 + ], + [ + "ಹ", + -16.499038696289062 + ], + [ + "級", + -16.501012802124023 + ], + [ + "雪", + -16.501192092895508 + ], + [ + "골", + -16.50166893005371 + ], + [ + "ራ", + -16.501670837402344 + ], + [ + "巴", + -16.50498390197754 + ], + [ + "験", + -16.505199432373047 + ], + [ + "ɴ", + -16.505268096923828 + ], + [ + "ɾ", + -16.506471633911133 + ], + [ + "폴", + -16.506589889526367 + ], + [ + "尚", + -16.50755500793457 + ], + [ + "ষ", + -16.509845733642578 + ], + [ + "🌟", + -16.511232376098633 + ], + [ + "✔", + -16.512218475341797 + ], + [ + "蛋", + -16.51424789428711 + ], + [ + "😃", + -16.51432228088379 + ], + [ + "破", + -16.514558792114258 + ], + [ + "録", + -16.51458740234375 + ], + [ + "販", + -16.51474380493164 + ], + [ + "♡", + -16.5147705078125 + ], + [ + "ἄ", + -16.51517105102539 + ], + [ + "毛", + -16.515541076660156 + ], + [ + "ҳ", + -16.515716552734375 + ], + [ + "吗", + -16.515775680541992 + ], + [ + "奇", + -16.516321182250977 + ], + [ + "ൂ", + -16.516687393188477 + ], + [ + "洋", + -16.516876220703125 + ], + [ + "삼", + -16.517053604125977 + ], + [ + "库", + -16.517181396484375 + ], + [ + "ረ", + -16.517356872558594 + ], + [ + "策", + -16.517671585083008 + ], + [ + "철", + -16.51814842224121 + ], + [ + "앞", + -16.519182205200195 + ], + [ + "款", + -16.519973754882812 + ], + [ + "ধ", + -16.520278930664062 + ], + [ + "👌", + -16.520753860473633 + ], + [ + "七", + -16.521800994873047 + ], + [ + "ও", + -16.521928787231445 + ], + [ + "战", + -16.523221969604492 + ], + [ + "産", + -16.523574829101562 + ], + [ + "ඔ", + -16.52419090270996 + ], + [ + "龍", + -16.524436950683594 + ], + [ + "裡", + -16.524755477905273 + ], + [ + "沙", + -16.52495574951172 + ], + [ + "ົ", + -16.525239944458008 + ], + [ + "̄", + -16.526792526245117 + ], + [ + "ң", + -16.528301239013672 + ], + [ + "広", + -16.528772354125977 + ], + [ + "吧", + -16.529531478881836 + ], + [ + "宝", + -16.530452728271484 + ], + [ + "빈", + -16.530517578125 + ], + [ + "横", + -16.530752182006836 + ], + [ + "艺", + -16.53126335144043 + ], + [ + "售", + -16.53164291381836 + ], + [ + "ᴛ", + -16.531688690185547 + ], + [ + "께", + -16.533788681030273 + ], + [ + "議", + -16.53447914123535 + ], + [ + "奖", + -16.534988403320312 + ], + [ + "∠", + -16.535024642944336 + ], + [ + "樣", + -16.53615951538086 + ], + [ + "吃", + -16.536270141601562 + ], + [ + "縮", + -16.536357879638672 + ], + [ + "戦", + -16.536365509033203 + ], + [ + "詳", + -16.536815643310547 + ], + [ + "簡", + -16.537029266357422 + ], + [ + "Є", + -16.53750228881836 + ], + [ + "պ", + -16.537628173828125 + ], + [ + "融", + -16.539310455322266 + ], + [ + "☀", + -16.53989601135254 + ], + [ + "↓", + -16.54014015197754 + ], + [ + "雄", + -16.540502548217773 + ], + [ + "য", + -16.541234970092773 + ], + [ + "💖", + -16.541980743408203 + ], + [ + "풍", + -16.543167114257812 + ], + [ + "課", + -16.543235778808594 + ], + [ + "衣", + -16.54341697692871 + ], + [ + "滑", + -16.543655395507812 + ], + [ + "ិ", + -16.54428482055664 + ], + [ + "军", + -16.545608520507812 + ], + [ + "季", + -16.546043395996094 + ], + [ + "ċ", + -16.546228408813477 + ], + [ + "ବ", + -16.546417236328125 + ], + [ + "ヴ", + -16.54798126220703 + ], + [ + "漫", + -16.549100875854492 + ], + [ + "假", + -16.549551010131836 + ], + [ + "ஒ", + -16.551437377929688 + ], + [ + "릴", + -16.551815032958984 + ], + [ + "ং", + -16.551942825317383 + ], + [ + "ւ", + -16.552318572998047 + ], + [ + "司", + -16.554019927978516 + ], + [ + "။", + -16.555410385131836 + ], + [ + "∇", + -16.556673049926758 + ], + [ + "停", + -16.557735443115234 + ], + [ + "탈", + -16.558130264282227 + ], + [ + "ወ", + -16.559778213500977 + ], + [ + "薬", + -16.559938430786133 + ], + [ + "拡", + -16.562278747558594 + ], + [ + "쪽", + -16.56244659423828 + ], + [ + "숙", + -16.562509536743164 + ], + [ + "▻", + -16.563209533691406 + ], + [ + "뉴", + -16.563274383544922 + ], + [ + "傳", + -16.564538955688477 + ], + [ + "议", + -16.56620979309082 + ], + [ + "ې", + -16.566654205322266 + ], + [ + "戏", + -16.56818199157715 + ], + [ + "续", + -16.568193435668945 + ], + [ + "ሰ", + -16.568252563476562 + ], + [ + "➖", + -16.56913948059082 + ], + [ + "అ", + -16.56914710998535 + ], + [ + "织", + -16.5692195892334 + ], + [ + "障", + -16.570722579956055 + ], + [ + "ታ", + -16.5731258392334 + ], + [ + "洲", + -16.573514938354492 + ], + [ + "잡", + -16.573640823364258 + ], + [ + "😆", + -16.573766708374023 + ], + [ + "單", + -16.574546813964844 + ], + [ + "많", + -16.57512092590332 + ], + [ + "๒", + -16.577444076538086 + ], + [ + "律", + -16.578155517578125 + ], + [ + "插", + -16.578920364379883 + ], + [ + "ഗ", + -16.579254150390625 + ], + [ + "械", + -16.58022689819336 + ], + [ + "ᥱ", + -16.580806732177734 + ], + [ + "牛", + -16.581260681152344 + ], + [ + "远", + -16.583024978637695 + ], + [ + "ણ", + -16.58372688293457 + ], + [ + "따", + -16.584247589111328 + ], + [ + "块", + -16.584352493286133 + ], + [ + "驗", + -16.584482192993164 + ], + [ + "례", + -16.584962844848633 + ], + [ + "ባ", + -16.585678100585938 + ], + [ + "😱", + -16.586334228515625 + ], + [ + "氣", + -16.586986541748047 + ], + [ + "☑", + -16.588613510131836 + ], + [ + "號", + -16.588623046875 + ], + [ + "糖", + -16.588932037353516 + ], + [ + "❖", + -16.58944320678711 + ], + [ + "캐", + -16.593982696533203 + ], + [ + "់", + -16.595422744750977 + ], + [ + "딩", + -16.596546173095703 + ], + [ + "○", + -16.596731185913086 + ], + [ + "冲", + -16.597023010253906 + ], + [ + "텐", + -16.597599029541016 + ], + [ + "錄", + -16.597740173339844 + ], + [ + "अ", + -16.59857177734375 + ], + [ + "ׂ", + -16.600303649902344 + ], + [ + "夏", + -16.6009578704834 + ], + [ + "尼", + -16.601381301879883 + ], + [ + "렇", + -16.601694107055664 + ], + [ + "겨", + -16.603477478027344 + ], + [ + "ክ", + -16.603681564331055 + ], + [ + "秋", + -16.604415893554688 + ], + [ + "沿", + -16.604461669921875 + ], + [ + "牌", + -16.605009078979492 + ], + [ + "←", + -16.607255935668945 + ], + [ + "뿐", + -16.61273765563965 + ], + [ + "셀", + -16.61481285095215 + ], + [ + "💜", + -16.615352630615234 + ], + [ + "紙", + -16.615400314331055 + ], + [ + "领", + -16.615692138671875 + ], + [ + "Ґ", + -16.616153717041016 + ], + [ + "兩", + -16.616161346435547 + ], + [ + "💥", + -16.61744499206543 + ], + [ + "ಟ", + -16.617900848388672 + ], + [ + "づ", + -16.61909294128418 + ], + [ + "観", + -16.619367599487305 + ], + [ + "ѓ", + -16.619430541992188 + ], + [ + "听", + -16.62039566040039 + ], + [ + "陽", + -16.62099838256836 + ], + [ + "异", + -16.621604919433594 + ], + [ + "價", + -16.62228012084961 + ], + [ + "쓰", + -16.62228012084961 + ], + [ + "⋯", + -16.622522354125977 + ], + [ + "۔", + -16.62268829345703 + ], + [ + "✓", + -16.62349510192871 + ], + [ + "丁", + -16.623821258544922 + ], + [ + "葉", + -16.623828887939453 + ], + [ + "↩", + -16.62546157836914 + ], + [ + "ទ", + -16.625864028930664 + ], + [ + "ɐ", + -16.626544952392578 + ], + [ + "變", + -16.62769889831543 + ], + [ + "◾", + -16.62810707092285 + ], + [ + "✈", + -16.62851333618164 + ], + [ + "從", + -16.62872886657715 + ], + [ + "ϊ", + -16.629873275756836 + ], + [ + "鏡", + -16.632102966308594 + ], + [ + "街", + -16.63246726989746 + ], + [ + "頁", + -16.633148193359375 + ], + [ + "雅", + -16.633832931518555 + ], + [ + "∧", + -16.63389778137207 + ], + [ + "ʌ", + -16.635744094848633 + ], + [ + "抯", + -16.637800216674805 + ], + [ + "빠", + -16.63875961303711 + ], + [ + "键", + -16.638900756835938 + ], + [ + "⋆", + -16.639036178588867 + ], + [ + "▬", + -16.639312744140625 + ], + [ + "証", + -16.639362335205078 + ], + [ + "ဘ", + -16.639379501342773 + ], + [ + "យ", + -16.640268325805664 + ], + [ + "ゼ", + -16.64031219482422 + ], + [ + "阻", + -16.64107894897461 + ], + [ + "촉", + -16.64158058166504 + ], + [ + "👀", + -16.641923904418945 + ], + [ + "ೇ", + -16.644268035888672 + ], + [ + "😄", + -16.6444091796875 + ], + [ + "ූ", + -16.645374298095703 + ], + [ + "則", + -16.645769119262695 + ], + [ + "謝", + -16.648134231567383 + ], + [ + "镜", + -16.648706436157227 + ], + [ + "먹", + -16.648975372314453 + ], + [ + "Հ", + -16.649044036865234 + ], + [ + "错", + -16.649112701416016 + ], + [ + "抽", + -16.649219512939453 + ], + [ + "票", + -16.64926528930664 + ], + [ + "拟", + -16.650375366210938 + ], + [ + "싶", + -16.650432586669922 + ], + [ + "Έ", + -16.651403427124023 + ], + [ + "때", + -16.65580177307129 + ], + [ + "難", + -16.65620231628418 + ], + [ + "寺", + -16.656496047973633 + ], + [ + "拍", + -16.65660285949707 + ], + [ + "森", + -16.65691566467285 + ], + [ + "档", + -16.65740394592285 + ], + [ + "裝", + -16.65866470336914 + ], + [ + "遠", + -16.66025733947754 + ], + [ + "残", + -16.660343170166016 + ], + [ + "岡", + -16.660415649414062 + ], + [ + "团", + -16.660545349121094 + ], + [ + "聞", + -16.66223907470703 + ], + [ + "척", + -16.662382125854492 + ], + [ + "港", + -16.66266632080078 + ], + [ + "է", + -16.663436889648438 + ], + [ + "ফ", + -16.665620803833008 + ], + [ + "๊", + -16.66562271118164 + ], + [ + "寸", + -16.667829513549805 + ], + [ + "넷", + -16.66802215576172 + ], + [ + "략", + -16.668800354003906 + ], + [ + "驱", + -16.668865203857422 + ], + [ + "즐", + -16.669296264648438 + ], + [ + "让", + -16.669504165649414 + ], + [ + "첫", + -16.67000389099121 + ], + [ + "ህ", + -16.670642852783203 + ], + [ + "織", + -16.67153549194336 + ], + [ + "威", + -16.671857833862305 + ], + [ + "ʁ", + -16.67582893371582 + ], + [ + "胞", + -16.676603317260742 + ], + [ + "橋", + -16.67668342590332 + ], + [ + "ɨ", + -16.67803955078125 + ], + [ + "宗", + -16.678102493286133 + ], + [ + "历", + -16.678403854370117 + ], + [ + "↔", + -16.678754806518555 + ], + [ + "џ", + -16.679685592651367 + ], + [ + "ἱ", + -16.680400848388672 + ], + [ + "∕", + -16.681116104125977 + ], + [ + "؛", + -16.68290901184082 + ], + [ + "ុ", + -16.6841983795166 + ], + [ + "✌", + -16.68657112121582 + ], + [ + "⊕", + -16.686790466308594 + ], + [ + "ယ", + -16.687658309936523 + ], + [ + "秀", + -16.688161849975586 + ], + [ + "既", + -16.689672470092773 + ], + [ + "嗎", + -16.690181732177734 + ], + [ + "폐", + -16.691049575805664 + ], + [ + "̨", + -16.69170379638672 + ], + [ + "ୁ", + -16.69184684753418 + ], + [ + "ജ", + -16.691917419433594 + ], + [ + "२", + -16.69198989868164 + ], + [ + "創", + -16.692644119262695 + ], + [ + "藏", + -16.693452835083008 + ], + [ + "敏", + -16.69365692138672 + ], + [ + "왔", + -16.696054458618164 + ], + [ + "脱", + -16.696186065673828 + ], + [ + "๑", + -16.696271896362305 + ], + [ + "쳐", + -16.696346282958984 + ], + [ + "穿", + -16.696422576904297 + ], + [ + "府", + -16.69671058654785 + ], + [ + "̂", + -16.697715759277344 + ], + [ + "湖", + -16.698883056640625 + ], + [ + "핑", + -16.698894500732422 + ], + [ + "벌", + -16.699331283569336 + ], + [ + "几", + -16.699363708496094 + ], + [ + "凹", + -16.699893951416016 + ], + [ + "벽", + -16.70079231262207 + ], + [ + "⊙", + -16.701595306396484 + ], + [ + "ๆ", + -16.701963424682617 + ], + [ + "买", + -16.703428268432617 + ], + [ + "ǫ", + -16.703643798828125 + ], + [ + "◇", + -16.70379066467285 + ], + [ + "బ", + -16.70386505126953 + ], + [ + "尾", + -16.70547866821289 + ], + [ + "斜", + -16.70561408996582 + ], + [ + "ძ", + -16.705623626708984 + ], + [ + "庭", + -16.708206176757812 + ], + [ + "릭", + -16.70863914489746 + ], + [ + "ђ", + -16.709089279174805 + ], + [ + "宮", + -16.709156036376953 + ], + [ + "讯", + -16.70937156677246 + ], + [ + "针", + -16.71131134033203 + ], + [ + "益", + -16.711957931518555 + ], + [ + "써", + -16.712697982788086 + ], + [ + "亮", + -16.71285057067871 + ], + [ + "ํ", + -16.713611602783203 + ], + [ + "親", + -16.713653564453125 + ], + [ + "Ğ", + -16.713956832885742 + ], + [ + "ડ", + -16.714176177978516 + ], + [ + "└", + -16.717435836791992 + ], + [ + "烯", + -16.717845916748047 + ], + [ + "Ћ", + -16.718481063842773 + ], + [ + "💯", + -16.718852996826172 + ], + [ + "┬", + -16.72146224975586 + ], + [ + "ബ", + -16.721683502197266 + ], + [ + "股", + -16.72197723388672 + ], + [ + "Ό", + -16.723922729492188 + ], + [ + "฿", + -16.724401473999023 + ], + [ + "乳", + -16.725343704223633 + ], + [ + "ɖ", + -16.72601890563965 + ], + [ + "ɣ", + -16.726694107055664 + ], + [ + "芯", + -16.726993560791016 + ], + [ + "症", + -16.727333068847656 + ], + [ + "谢", + -16.727519989013672 + ], + [ + "峰", + -16.728137969970703 + ], + [ + "减", + -16.72857666015625 + ], + [ + "ܘ", + -16.72864532470703 + ], + [ + "۰", + -16.729246139526367 + ], + [ + "맥", + -16.731428146362305 + ], + [ + "│", + -16.73168182373047 + ], + [ + "尺", + -16.731891632080078 + ], + [ + "ʺ", + -16.73248291015625 + ], + [ + "씨", + -16.735729217529297 + ], + [ + "班", + -16.735883712768555 + ], + [ + "刊", + -16.73610496520996 + ], + [ + "킨", + -16.736108779907227 + ], + [ + "雷", + -16.736421585083008 + ], + [ + "ഞ", + -16.73671531677246 + ], + [ + "卷", + -16.737632751464844 + ], + [ + "∴", + -16.738229751586914 + ], + [ + "雨", + -16.738466262817383 + ], + [ + "첨", + -16.73853302001953 + ], + [ + "ତ", + -16.739215850830078 + ], + [ + "宜", + -16.73921775817871 + ], + [ + "⚠", + -16.740127563476562 + ], + [ + "耐", + -16.74095344543457 + ], + [ + "婚", + -16.741052627563477 + ], + [ + "杨", + -16.741262435913086 + ], + [ + "誌", + -16.74376678466797 + ], + [ + "ဒ", + -16.743783950805664 + ], + [ + "紹", + -16.743852615356445 + ], + [ + "컬", + -16.744468688964844 + ], + [ + "◄", + -16.745460510253906 + ], + [ + "ආ", + -16.746301651000977 + ], + [ + "君", + -16.747833251953125 + ], + [ + "놀", + -16.748138427734375 + ], + [ + "폰", + -16.748674392700195 + ], + [ + "ぎ", + -16.749582290649414 + ], + [ + "킬", + -16.749671936035156 + ], + [ + "ິ", + -16.75006103515625 + ], + [ + "헤", + -16.750900268554688 + ], + [ + "购", + -16.7512149810791 + ], + [ + "聽", + -16.751293182373047 + ], + [ + "₹", + -16.752399444580078 + ], + [ + "ҝ", + -16.753746032714844 + ], + [ + "參", + -16.75520896911621 + ], + [ + "❄", + -16.75551414489746 + ], + [ + "జ", + -16.755517959594727 + ], + [ + "朋", + -16.75775909423828 + ], + [ + "笑", + -16.759376525878906 + ], + [ + "ḳ", + -16.75961685180664 + ], + [ + "培", + -16.760398864746094 + ], + [ + "唔", + -16.7606258392334 + ], + [ + "উ", + -16.7608585357666 + ], + [ + "午", + -16.76178741455078 + ], + [ + "興", + -16.762027740478516 + ], + [ + "紀", + -16.7631893157959 + ], + [ + "받", + -16.76479148864746 + ], + [ + "̲", + -16.76504135131836 + ], + [ + "伊", + -16.765365600585938 + ], + [ + "ഇ", + -16.766223907470703 + ], + [ + "ധ", + -16.766613006591797 + ], + [ + "趣", + -16.766624450683594 + ], + [ + "欢", + -16.766748428344727 + ], + [ + "协", + -16.768341064453125 + ], + [ + "仮", + -16.768856048583984 + ], + [ + "粘", + -16.76888656616211 + ], + [ + "仅", + -16.769123077392578 + ], + [ + "∩", + -16.769271850585938 + ], + [ + "ຍ", + -16.7699031829834 + ], + [ + "菌", + -16.772798538208008 + ], + [ + "央", + -16.7740478515625 + ], + [ + "階", + -16.775606155395508 + ], + [ + "ῳ", + -16.775707244873047 + ], + [ + "幸", + -16.777198791503906 + ], + [ + "ႏ", + -16.778066635131836 + ], + [ + "统", + -16.779422760009766 + ], + [ + "警", + -16.78020668029785 + ], + [ + "ܝ", + -16.78044319152832 + ], + [ + "週", + -16.78066635131836 + ], + [ + "詞", + -16.781320571899414 + ], + [ + "없", + -16.781444549560547 + ], + [ + "셔", + -16.7823429107666 + ], + [ + "켜", + -16.78448486328125 + ], + [ + "념", + -16.78623390197754 + ], + [ + "槽", + -16.786237716674805 + ], + [ + "휴", + -16.78655242919922 + ], + [ + "汉", + -16.78800392150879 + ], + [ + "ච", + -16.788305282592773 + ], + [ + "娱", + -16.788305282592773 + ], + [ + "援", + -16.78997802734375 + ], + [ + "ແ", + -16.791105270385742 + ], + [ + "Ż", + -16.791397094726562 + ], + [ + "ὅ", + -16.791738510131836 + ], + [ + "ऐ", + -16.791980743408203 + ], + [ + "ĝ", + -16.79205894470215 + ], + [ + "薦", + -16.792940139770508 + ], + [ + "ព", + -16.793338775634766 + ], + [ + "监", + -16.79583740234375 + ], + [ + "ପ", + -16.796550750732422 + ], + [ + "떤", + -16.79679298400879 + ], + [ + "ସ", + -16.797677993774414 + ], + [ + "宿", + -16.79994773864746 + ], + [ + "׳", + -16.800498962402344 + ], + [ + "亞", + -16.80116844177246 + ], + [ + "ỳ", + -16.80187225341797 + ], + [ + "處", + -16.802526473999023 + ], + [ + "纳", + -16.802757263183594 + ], + [ + "એ", + -16.803245544433594 + ], + [ + "룹", + -16.803327560424805 + ], + [ + "ヨ", + -16.803607940673828 + ], + [ + "什", + -16.803741455078125 + ], + [ + "ർ", + -16.803813934326172 + ], + [ + "純", + -16.803869247436523 + ], + [ + "🌸", + -16.804622650146484 + ], + [ + "ആ", + -16.806734085083008 + ], + [ + "ぐ", + -16.80697250366211 + ], + [ + "聖", + -16.80738067626953 + ], + [ + "摩", + -16.80759620666504 + ], + [ + "혹", + -16.807788848876953 + ], + [ + "摄", + -16.809099197387695 + ], + [ + "檔", + -16.809255599975586 + ], + [ + "轮", + -16.809282302856445 + ], + [ + "羅", + -16.80953025817871 + ], + [ + "觀", + -16.81236457824707 + ], + [ + "😳", + -16.813005447387695 + ], + [ + "ⲣ", + -16.813087463378906 + ], + [ + "♯", + -16.81365966796875 + ], + [ + "ゆ", + -16.81452178955078 + ], + [ + "ざ", + -16.814966201782227 + ], + [ + "済", + -16.815610885620117 + ], + [ + "漢", + -16.815622329711914 + ], + [ + "济", + -16.815637588500977 + ], + [ + "淮", + -16.815872192382812 + ], + [ + "좌", + -16.816280364990234 + ], + [ + "ഹ", + -16.816936492919922 + ], + [ + "误", + -16.81719970703125 + ], + [ + "銀", + -16.818241119384766 + ], + [ + "ໍ", + -16.818504333496094 + ], + [ + "暗", + -16.819379806518555 + ], + [ + "貨", + -16.81980323791504 + ], + [ + "싱", + -16.82071876525879 + ], + [ + "迎", + -16.820966720581055 + ], + [ + "๋", + -16.824100494384766 + ], + [ + "授", + -16.82523536682129 + ], + [ + "杆", + -16.8264102935791 + ], + [ + "럽", + -16.826831817626953 + ], + [ + "卫", + -16.826915740966797 + ], + [ + "树", + -16.82692527770996 + ], + [ + "ମ", + -16.827163696289062 + ], + [ + "迷", + -16.827167510986328 + ], + [ + "往", + -16.827655792236328 + ], + [ + "ඳ", + -16.827993392944336 + ], + [ + "ધ", + -16.82815933227539 + ], + [ + "毒", + -16.828495025634766 + ], + [ + "黃", + -16.828739166259766 + ], + [ + "익", + -16.8287410736084 + ], + [ + "ំ", + -16.830150604248047 + ], + [ + "梅", + -16.830320358276367 + ], + [ + "섬", + -16.830402374267578 + ], + [ + "催", + -16.831398010253906 + ], + [ + "졌", + -16.832733154296875 + ], + [ + "惠", + -16.833066940307617 + ], + [ + "烷", + -16.833507537841797 + ], + [ + "摘", + -16.8339786529541 + ], + [ + "兴", + -16.834062576293945 + ], + [ + "哈", + -16.834409713745117 + ], + [ + "钟", + -16.83483123779297 + ], + [ + "抵", + -16.835302352905273 + ], + [ + "អ", + -16.8355655670166 + ], + [ + "េ", + -16.836822509765625 + ], + [ + "눈", + -16.837160110473633 + ], + [ + "缺", + -16.837596893310547 + ], + [ + "抑", + -16.83882713317871 + ], + [ + "쉽", + -16.83892059326172 + ], + [ + "욱", + -16.840179443359375 + ], + [ + "搬", + -16.840229034423828 + ], + [ + "隆", + -16.840267181396484 + ], + [ + "ൽ", + -16.841859817504883 + ], + [ + "倍", + -16.841936111450195 + ], + [ + "उ", + -16.842191696166992 + ], + [ + "🔴", + -16.842193603515625 + ], + [ + "😜", + -16.842449188232422 + ], + [ + "◉", + -16.84337615966797 + ], + [ + "웹", + -16.84379768371582 + ], + [ + "寓", + -16.843883514404297 + ], + [ + "満", + -16.84471321105957 + ], + [ + "圆", + -16.84540557861328 + ], + [ + "营", + -16.84575653076172 + ], + [ + "飛", + -16.845897674560547 + ], + [ + "划", + -16.846158981323242 + ], + [ + "委", + -16.847354888916016 + ], + [ + "홍", + -16.849035263061523 + ], + [ + "显", + -16.84974479675293 + ], + [ + "筒", + -16.84986114501953 + ], + [ + "샵", + -16.850128173828125 + ], + [ + "仕", + -16.850290298461914 + ], + [ + "칭", + -16.85047721862793 + ], + [ + "ჩ", + -16.851070404052734 + ], + [ + "ӏ", + -16.851242065429688 + ], + [ + "却", + -16.8513240814209 + ], + [ + "ণ", + -16.851667404174805 + ], + [ + "ూ", + -16.851835250854492 + ], + [ + "չ", + -16.852941513061523 + ], + [ + "宇", + -16.853111267089844 + ], + [ + "余", + -16.853437423706055 + ], + [ + "💰", + -16.85354232788086 + ], + [ + "扬", + -16.85396385192871 + ], + [ + "仪", + -16.854135513305664 + ], + [ + "➔", + -16.854389190673828 + ], + [ + "🤗", + -16.854473114013672 + ], + [ + "ច", + -16.85498046875 + ], + [ + "纤", + -16.855335235595703 + ], + [ + "逆", + -16.855979919433594 + ], + [ + "励", + -16.857112884521484 + ], + [ + "豆", + -16.85711669921875 + ], + [ + "몇", + -16.857460021972656 + ], + [ + "ປ", + -16.85755157470703 + ], + [ + "缘", + -16.858915328979492 + ], + [ + "丽", + -16.859516143798828 + ], + [ + "急", + -16.860109329223633 + ], + [ + "拿", + -16.860204696655273 + ], + [ + "泰", + -16.860898971557617 + ], + [ + "册", + -16.861398696899414 + ], + [ + "课", + -16.86406135559082 + ], + [ + "봉", + -16.864490509033203 + ], + [ + "ས", + -16.865222930908203 + ], + [ + "幕", + -16.865957260131836 + ], + [ + "ੂ", + -16.867679595947266 + ], + [ + "轉", + -16.867679595947266 + ], + [ + "罗", + -16.86838722229004 + ], + [ + "ふ", + -16.86941146850586 + ], + [ + "🏆", + -16.86941146850586 + ], + [ + "벤", + -16.869840621948242 + ], + [ + "舞", + -16.870710372924805 + ], + [ + "負", + -16.871723175048828 + ], + [ + "幾", + -16.87183380126953 + ], + [ + "讓", + -16.871932983398438 + ], + [ + "👇", + -16.87235450744629 + ], + [ + "孩", + -16.873550415039062 + ], + [ + "腔", + -16.873571395874023 + ], + [ + "ਂ", + -16.87391471862793 + ], + [ + "估", + -16.874013900756836 + ], + [ + "協", + -16.874332427978516 + ], + [ + "😅", + -16.874351501464844 + ], + [ + "盖", + -16.874614715576172 + ], + [ + "刺", + -16.87469482421875 + ], + [ + "胶", + -16.87599754333496 + ], + [ + "帝", + -16.876008987426758 + ], + [ + "ῶ", + -16.877275466918945 + ], + [ + "閲", + -16.877552032470703 + ], + [ + "柱", + -16.877643585205078 + ], + [ + "赤", + -16.87921905517578 + ], + [ + "启", + -16.87923240661621 + ], + [ + "願", + -16.87938690185547 + ], + [ + "廣", + -16.87967872619629 + ], + [ + "仁", + -16.88045310974121 + ], + [ + "屏", + -16.8809814453125 + ], + [ + "释", + -16.88229751586914 + ], + [ + "⇒", + -16.88256072998047 + ], + [ + "搜", + -16.88333511352539 + ], + [ + "ծ", + -16.883867263793945 + ], + [ + "📸", + -16.886062622070312 + ], + [ + "☐", + -16.886327743530273 + ], + [ + "ᐅ", + -16.88641357421875 + ], + [ + "ី", + -16.88763999938965 + ], + [ + "둘", + -16.887645721435547 + ], + [ + "🇦", + -16.888172149658203 + ], + [ + "觉", + -16.888980865478516 + ], + [ + "긴", + -16.889055252075195 + ], + [ + "ዝ", + -16.889408111572266 + ], + [ + "濃", + -16.889575958251953 + ], + [ + "ભ", + -16.889673233032227 + ], + [ + "इ", + -16.890729904174805 + ], + [ + "瑞", + -16.891006469726562 + ], + [ + "凸", + -16.891067504882812 + ], + [ + "軍", + -16.891090393066406 + ], + [ + "隊", + -16.892414093017578 + ], + [ + "朱", + -16.89303207397461 + ], + [ + "힘", + -16.89312171936035 + ], + [ + "엄", + -16.894094467163086 + ], + [ + "۲", + -16.89560317993164 + ], + [ + "ʟ", + -16.895692825317383 + ], + [ + "軟", + -16.895780563354492 + ], + [ + "童", + -16.896493911743164 + ], + [ + "乾", + -16.897552490234375 + ], + [ + "🙄", + -16.898269653320312 + ], + [ + "麻", + -16.898801803588867 + ], + [ + "닌", + -16.900318145751953 + ], + [ + "徐", + -16.900575637817383 + ], + [ + "ぼ", + -16.901288986206055 + ], + [ + "押", + -16.902063369750977 + ], + [ + "钱", + -16.903362274169922 + ], + [ + "鱼", + -16.90336799621582 + ], + [ + "⊥", + -16.904878616333008 + ], + [ + "胡", + -16.907014846801758 + ], + [ + "缩", + -16.90794563293457 + ], + [ + "击", + -16.908117294311523 + ], + [ + "ኣ", + -16.909908294677734 + ], + [ + "ǝ", + -16.91071891784668 + ], + [ + "̯", + -16.911880493164062 + ], + [ + "飞", + -16.912525177001953 + ], + [ + "ើ", + -16.913509368896484 + ], + [ + "ᴠ", + -16.9136962890625 + ], + [ + "💗", + -16.913698196411133 + ], + [ + "誘", + -16.91440200805664 + ], + [ + "ຂ", + -16.9144287109375 + ], + [ + "፡", + -16.914691925048828 + ], + [ + "쉬", + -16.915325164794922 + ], + [ + "ᅠ", + -16.9164981842041 + ], + [ + "检", + -16.917499542236328 + ], + [ + "紅", + -16.917591094970703 + ], + [ + "填", + -16.91830825805664 + ], + [ + "滤", + -16.918869018554688 + ], + [ + "團", + -16.91950225830078 + ], + [ + "紫", + -16.919923782348633 + ], + [ + "汽", + -16.920686721801758 + ], + [ + "ચ", + -16.920772552490234 + ], + [ + "벨", + -16.9211368560791 + ], + [ + "Ē", + -16.92131805419922 + ], + [ + "ユ", + -16.922536849975586 + ], + [ + "ῦ", + -16.922704696655273 + ], + [ + "ጥ", + -16.923324584960938 + ], + [ + "ଲ", + -16.923505783081055 + ], + [ + "爾", + -16.923757553100586 + ], + [ + "ĉ", + -16.924327850341797 + ], + [ + "๐", + -16.92606544494629 + ], + [ + "🇷", + -16.928449630737305 + ], + [ + "ដ", + -16.92972755432129 + ], + [ + "ຈ", + -16.932132720947266 + ], + [ + "🌹", + -16.932579040527344 + ], + [ + "ਖ", + -16.932584762573242 + ], + [ + "💚", + -16.93267822265625 + ], + [ + "访", + -16.93277359008789 + ], + [ + "ŷ", + -16.932952880859375 + ], + [ + "Ζ", + -16.933597564697266 + ], + [ + "寫", + -16.934932708740234 + ], + [ + "兰", + -16.935361862182617 + ], + [ + "守", + -16.935983657836914 + ], + [ + "굴", + -16.93609046936035 + ], + [ + "৳", + -16.936830520629883 + ], + [ + "Ń", + -16.938405990600586 + ], + [ + "ゾ", + -16.94011688232422 + ], + [ + "帶", + -16.941852569580078 + ], + [ + "ಅ", + -16.946584701538086 + ], + [ + "竹", + -16.94894027709961 + ], + [ + "👑", + -16.949111938476562 + ], + [ + "韓", + -16.94939422607422 + ], + [ + "盤", + -16.95004653930664 + ], + [ + "զ", + -16.951271057128906 + ], + [ + "Ἀ", + -16.95305633544922 + ], + [ + "铁", + -16.95559310913086 + ], + [ + "氏", + -16.956432342529297 + ], + [ + "负", + -16.95692253112793 + ], + [ + "շ", + -16.958147048950195 + ], + [ + "框", + -16.959383010864258 + ], + [ + "垂", + -16.959932327270508 + ], + [ + "勝", + -16.961450576782227 + ], + [ + "勢", + -16.96199607849121 + ], + [ + "佐", + -16.962295532226562 + ], + [ + "庫", + -16.962322235107422 + ], + [ + "满", + -16.962505340576172 + ], + [ + "〇", + -16.96297836303711 + ], + [ + "🇬", + -16.963645935058594 + ], + [ + "獲", + -16.96373176574707 + ], + [ + "皇", + -16.96421241760254 + ], + [ + "📷", + -16.96449851989746 + ], + [ + "💛", + -16.964500427246094 + ], + [ + "탁", + -16.9645938873291 + ], + [ + "叶", + -16.964977264404297 + ], + [ + "碳", + -16.965261459350586 + ], + [ + "ὺ", + -16.965639114379883 + ], + [ + "뢰", + -16.966402053833008 + ], + [ + "畫", + -16.966413497924805 + ], + [ + "曾", + -16.966503143310547 + ], + [ + "农", + -16.966598510742188 + ], + [ + "船", + -16.96669578552246 + ], + [ + "잠", + -16.96725845336914 + ], + [ + "ພ", + -16.967742919921875 + ], + [ + "≧", + -16.968780517578125 + ], + [ + "វ", + -16.968873977661133 + ], + [ + "ऑ", + -16.970216751098633 + ], + [ + "況", + -16.97048568725586 + ], + [ + "币", + -16.970794677734375 + ], + [ + "ᾶ", + -16.971080780029297 + ], + [ + "⚽", + -16.971454620361328 + ], + [ + "∅", + -16.971654891967773 + ], + [ + "ਇ", + -16.972135543823242 + ], + [ + "宏", + -16.972412109375 + ], + [ + "ၾ", + -16.972803115844727 + ], + [ + "몰", + -16.97347640991211 + ], + [ + "ਉ", + -16.973766326904297 + ], + [ + "苏", + -16.97425079345703 + ], + [ + "寄", + -16.974748611450195 + ], + [ + "ܢ", + -16.974821090698242 + ], + [ + "십", + -16.978864669799805 + ], + [ + "毎", + -16.97980499267578 + ], + [ + "扩", + -16.98041534423828 + ], + [ + "ŵ", + -16.980796813964844 + ], + [ + "ഡ", + -16.981281280517578 + ], + [ + "晚", + -16.983028411865234 + ], + [ + "ជ", + -16.983213424682617 + ], + [ + "哲", + -16.983409881591797 + ], + [ + "읽", + -16.984281539916992 + ], + [ + "̥", + -16.984458923339844 + ], + [ + "權", + -16.98448371887207 + ], + [ + "銉", + -16.98492431640625 + ], + [ + "솔", + -16.985252380371094 + ], + [ + "湾", + -16.987686157226562 + ], + [ + "塩", + -16.987693786621094 + ], + [ + "副", + -16.988157272338867 + ], + [ + "招", + -16.98992347717285 + ], + [ + "🚨", + -16.990022659301758 + ], + [ + "銈", + -16.99039649963379 + ], + [ + "途", + -16.99127960205078 + ], + [ + "ഭ", + -16.991291046142578 + ], + [ + "ໃ", + -16.991987228393555 + ], + [ + "ਚ", + -16.992170333862305 + ], + [ + "枚", + -16.9925537109375 + ], + [ + "兒", + -16.992687225341797 + ], + [ + "‧", + -16.993051528930664 + ], + [ + "়", + -16.994754791259766 + ], + [ + "틸", + -16.9960880279541 + ], + [ + "┐", + -16.996532440185547 + ], + [ + "攻", + -17.00002098083496 + ], + [ + "탕", + -17.000120162963867 + ], + [ + "芳", + -17.00058937072754 + ], + [ + "預", + -17.00070571899414 + ], + [ + "酯", + -17.003143310546875 + ], + [ + "ຄ", + -17.003583908081055 + ], + [ + "윤", + -17.003673553466797 + ], + [ + "භ", + -17.004465103149414 + ], + [ + "🇧", + -17.00495719909668 + ], + [ + "哥", + -17.005390167236328 + ], + [ + "澳", + -17.005859375 + ], + [ + "退", + -17.006542205810547 + ], + [ + "ሚ", + -17.007143020629883 + ], + [ + "최", + -17.00719451904297 + ], + [ + "킹", + -17.007341384887695 + ], + [ + "闻", + -17.00743865966797 + ], + [ + "😋", + -17.007837295532227 + ], + [ + "∋", + -17.007936477661133 + ], + [ + "ڈ", + -17.008533477783203 + ], + [ + "聯", + -17.00864028930664 + ], + [ + "俊", + -17.009475708007812 + ], + [ + "辑", + -17.010225296020508 + ], + [ + "癌", + -17.010391235351562 + ], + [ + "롤", + -17.010522842407227 + ], + [ + "႕", + -17.011917114257812 + ], + [ + "虚", + -17.012332916259766 + ], + [ + "ṉ", + -17.01311492919922 + ], + [ + "飯", + -17.016437530517578 + ], + [ + "弹", + -17.017032623291016 + ], + [ + "队", + -17.017122268676758 + ], + [ + "姐", + -17.017202377319336 + ], + [ + "ፍ", + -17.01841926574707 + ], + [ + "蒸", + -17.019624710083008 + ], + [ + "ܪ", + -17.0212345123291 + ], + [ + "쇄", + -17.02133560180664 + ], + [ + "ቀ", + -17.021434783935547 + ], + [ + "ਅ", + -17.022846221923828 + ], + [ + "ቅ", + -17.023046493530273 + ], + [ + "ൊ", + -17.023752212524414 + ], + [ + "Ţ", + -17.02425765991211 + ], + [ + "町", + -17.026803970336914 + ], + [ + "震", + -17.026897430419922 + ], + [ + "‛", + -17.026987075805664 + ], + [ + "養", + -17.02768898010254 + ], + [ + "泉", + -17.028188705444336 + ], + [ + "灯", + -17.029001235961914 + ], + [ + "ਣ", + -17.03033447265625 + ], + [ + "⊗", + -17.030942916870117 + ], + [ + "秒", + -17.031143188476562 + ], + [ + "ሳ", + -17.031959533691406 + ], + [ + "檚", + -17.032264709472656 + ], + [ + "県", + -17.033483505249023 + ], + [ + "夢", + -17.03399085998535 + ], + [ + "Ɩ", + -17.03450584411621 + ], + [ + "쿠", + -17.034812927246094 + ], + [ + "覺", + -17.03523826599121 + ], + [ + "难", + -17.036151885986328 + ], + [ + "丙", + -17.036821365356445 + ], + [ + "끼", + -17.036855697631836 + ], + [ + "₩", + -17.03757095336914 + ], + [ + "խ", + -17.037776947021484 + ], + [ + "避", + -17.037988662719727 + ], + [ + "恩", + -17.039518356323242 + ], + [ + "総", + -17.039613723754883 + ], + [ + "壳", + -17.04065704345703 + ], + [ + "針", + -17.041038513183594 + ], + [ + "挿", + -17.04111099243164 + ], + [ + "谱", + -17.04137420654297 + ], + [ + "萬", + -17.042238235473633 + ], + [ + "ೀ", + -17.042390823364258 + ], + [ + "养", + -17.042404174804688 + ], + [ + "採", + -17.043004989624023 + ], + [ + "损", + -17.043933868408203 + ], + [ + "盛", + -17.044248580932617 + ], + [ + "閉", + -17.044599533081055 + ], + [ + "佛", + -17.044660568237305 + ], + [ + "輸", + -17.0457820892334 + ], + [ + "ખ", + -17.049198150634766 + ], + [ + "▽", + -17.049510955810547 + ], + [ + "帮", + -17.050630569458008 + ], + [ + "津", + -17.050762176513672 + ], + [ + "ķ", + -17.05147933959961 + ], + [ + "魚", + -17.051895141601562 + ], + [ + "Ḵ", + -17.05251693725586 + ], + [ + "稱", + -17.052616119384766 + ], + [ + "Ą", + -17.052724838256836 + ], + [ + "函", + -17.053232192993164 + ], + [ + "ག", + -17.0543270111084 + ], + [ + "塔", + -17.05449867248535 + ], + [ + "젝", + -17.054595947265625 + ], + [ + "爆", + -17.054807662963867 + ], + [ + "伴", + -17.05481719970703 + ], + [ + "ܬ", + -17.055326461791992 + ], + [ + "焦", + -17.05550193786621 + ], + [ + "顯", + -17.055553436279297 + ], + [ + "询", + -17.055858612060547 + ], + [ + "ོ", + -17.056507110595703 + ], + [ + "ຕ", + -17.057207107543945 + ], + [ + "窶", + -17.060754776000977 + ], + [ + "楼", + -17.060863494873047 + ], + [ + "礼", + -17.06096076965332 + ], + [ + "ష", + -17.061487197875977 + ], + [ + "ᅲ", + -17.061691284179688 + ], + [ + "丝", + -17.062437057495117 + ], + [ + "兵", + -17.062929153442383 + ], + [ + "뒤", + -17.063480377197266 + ], + [ + "刀", + -17.063594818115234 + ], + [ + "뇌", + -17.065793991088867 + ], + [ + "亦", + -17.066274642944336 + ], + [ + "ռ", + -17.066740036010742 + ], + [ + "శ", + -17.066741943359375 + ], + [ + "ହ", + -17.068321228027344 + ], + [ + "牙", + -17.068538665771484 + ], + [ + "ऊ", + -17.068639755249023 + ], + [ + "临", + -17.069074630737305 + ], + [ + "盒", + -17.06938362121582 + ], + [ + "උ", + -17.069482803344727 + ], + [ + "泡", + -17.069902420043945 + ], + [ + "腦", + -17.070125579833984 + ], + [ + "⊂", + -17.07073974609375 + ], + [ + "🤷", + -17.071552276611328 + ], + [ + "派", + -17.07169532775879 + ], + [ + "秘", + -17.071914672851562 + ], + [ + "誤", + -17.072021484375 + ], + [ + "🇨", + -17.07244300842285 + ], + [ + "🙈", + -17.07392692565918 + ], + [ + "塞", + -17.074352264404297 + ], + [ + "黒", + -17.074874877929688 + ], + [ + "픽", + -17.07530975341797 + ], + [ + "丹", + -17.076034545898438 + ], + [ + "💋", + -17.076160430908203 + ], + [ + "脑", + -17.076168060302734 + ], + [ + "势", + -17.07650375366211 + ], + [ + "盐", + -17.0777530670166 + ], + [ + "嘉", + -17.078706741333008 + ], + [ + "왕", + -17.07956886291504 + ], + [ + "쟁", + -17.079673767089844 + ], + [ + "輪", + -17.081167221069336 + ], + [ + "흐", + -17.08116912841797 + ], + [ + "ካ", + -17.08159828186035 + ], + [ + "찬", + -17.081809997558594 + ], + [ + "넘", + -17.081918716430664 + ], + [ + "↪", + -17.0820255279541 + ], + [ + "冰", + -17.083637237548828 + ], + [ + "ಜ", + -17.083951950073242 + ], + [ + "零", + -17.084177017211914 + ], + [ + "耳", + -17.084373474121094 + ], + [ + "顶", + -17.085237503051758 + ], + [ + "ື", + -17.085887908935547 + ], + [ + "禁", + -17.085979461669922 + ], + [ + "ຊ", + -17.086423873901367 + ], + [ + "徴", + -17.086929321289062 + ], + [ + "父", + -17.087810516357422 + ], + [ + "ᄒ", + -17.087879180908203 + ], + [ + "补", + -17.088119506835938 + ], + [ + "監", + -17.089319229125977 + ], + [ + "🇪", + -17.089324951171875 + ], + [ + "郭", + -17.09136199951172 + ], + [ + "窗", + -17.091846466064453 + ], + [ + "刚", + -17.092676162719727 + ], + [ + "끝", + -17.093103408813477 + ], + [ + "털", + -17.093860626220703 + ], + [ + "ូ", + -17.094289779663086 + ], + [ + "☯", + -17.094932556152344 + ], + [ + "险", + -17.09506607055664 + ], + [ + "梁", + -17.095487594604492 + ], + [ + "珠", + -17.095491409301758 + ], + [ + "팀", + -17.09624481201172 + ], + [ + "ਭ", + -17.096786499023438 + ], + [ + "妹", + -17.09723472595215 + ], + [ + "墨", + -17.09886360168457 + ], + [ + "醇", + -17.100372314453125 + ], + [ + "唐", + -17.100698471069336 + ], + [ + "錢", + -17.101028442382812 + ], + [ + "ฉ", + -17.10125160217285 + ], + [ + "办", + -17.101680755615234 + ], + [ + "绝", + -17.101917266845703 + ], + [ + "ഴ", + -17.10201072692871 + ], + [ + "✧", + -17.10222816467285 + ], + [ + "讨", + -17.103212356567383 + ], + [ + "藝", + -17.104066848754883 + ], + [ + "戲", + -17.104093551635742 + ], + [ + "磨", + -17.104406356811523 + ], + [ + "靠", + -17.104413986206055 + ], + [ + "螺", + -17.104509353637695 + ], + [ + "🖤", + -17.105180740356445 + ], + [ + "😉", + -17.105716705322266 + ], + [ + "ዳ", + -17.106494903564453 + ], + [ + "唱", + -17.108123779296875 + ], + [ + "😢", + -17.108797073364258 + ], + [ + "違", + -17.109230041503906 + ], + [ + "灵", + -17.10968780517578 + ], + [ + "־", + -17.110227584838867 + ], + [ + "ʜ", + -17.111989974975586 + ], + [ + "삶", + -17.112211227416992 + ], + [ + "듈", + -17.112651824951172 + ], + [ + "晓", + -17.112762451171875 + ], + [ + "雲", + -17.11307716369629 + ], + [ + "좀", + -17.11342430114746 + ], + [ + "歡", + -17.113651275634766 + ], + [ + "Ќ", + -17.113975524902344 + ], + [ + "컴", + -17.114194869995117 + ], + [ + "🌈", + -17.114307403564453 + ], + [ + "۳", + -17.11574363708496 + ], + [ + "赵", + -17.117183685302734 + ], + [ + "吴", + -17.1171875 + ], + [ + "戰", + -17.118181228637695 + ], + [ + "凝", + -17.12139892578125 + ], + [ + "馆", + -17.12285041809082 + ], + [ + "훈", + -17.125303268432617 + ], + [ + "앙", + -17.125974655151367 + ], + [ + "Ї", + -17.12630844116211 + ], + [ + "톡", + -17.128660202026367 + ], + [ + "🇮", + -17.12877082824707 + ], + [ + "帖", + -17.130456924438477 + ], + [ + "ဳ", + -17.130903244018555 + ], + [ + "没", + -17.131471633911133 + ], + [ + "崎", + -17.13191032409668 + ], + [ + "ஷ", + -17.13292694091797 + ], + [ + "̱", + -17.13357925415039 + ], + [ + "寶", + -17.135068893432617 + ], + [ + "蔡", + -17.135177612304688 + ], + [ + "ែ", + -17.135292053222656 + ], + [ + "宣", + -17.135738372802734 + ], + [ + "訳", + -17.139150619506836 + ], + [ + "總", + -17.140426635742188 + ], + [ + "担", + -17.140605926513672 + ], + [ + "销", + -17.142559051513672 + ], + [ + "阅", + -17.14310646057129 + ], + [ + "Ƭ", + -17.14356231689453 + ], + [ + "坐", + -17.144250869750977 + ], + [ + "證", + -17.144493103027344 + ], + [ + "讀", + -17.145368576049805 + ], + [ + "뷰", + -17.145612716674805 + ], + [ + "渡", + -17.145952224731445 + ], + [ + "ܡ", + -17.146411895751953 + ], + [ + "貴", + -17.146642684936523 + ], + [ + "搭", + -17.146739959716797 + ], + [ + "Ħ", + -17.146867752075195 + ], + [ + "宽", + -17.14744758605957 + ], + [ + "☼", + -17.148008346557617 + ], + [ + "🎶", + -17.149152755737305 + ], + [ + "ŝ", + -17.14972496032715 + ], + [ + "ֿ", + -17.1506404876709 + ], + [ + "勇", + -17.150981903076172 + ], + [ + "鬼", + -17.151437759399414 + ], + [ + "塑", + -17.151445388793945 + ], + [ + "豪", + -17.15201759338379 + ], + [ + "览", + -17.152135848999023 + ], + [ + "︡", + -17.15304946899414 + ], + [ + "乃", + -17.153575897216797 + ], + [ + "ೂ", + -17.155576705932617 + ], + [ + "램", + -17.15604019165039 + ], + [ + "赛", + -17.157299041748047 + ], + [ + "锁", + -17.157299041748047 + ], + [ + "ೊ", + -17.157764434814453 + ], + [ + "贴", + -17.15799903869629 + ], + [ + "옥", + -17.158344268798828 + ], + [ + "削", + -17.159591674804688 + ], + [ + "纸", + -17.160297393798828 + ], + [ + "碼", + -17.16032600402832 + ], + [ + "ヽ", + -17.16123390197754 + ], + [ + "衛", + -17.161806106567383 + ], + [ + "ှ", + -17.1635684967041 + ], + [ + "칼", + -17.16390037536621 + ], + [ + "Ά", + -17.164018630981445 + ], + [ + "ɹ", + -17.164831161499023 + ], + [ + "※", + -17.164953231811523 + ], + [ + "☕", + -17.166109085083008 + ], + [ + "떠", + -17.166109085083008 + ], + [ + "淳", + -17.168325424194336 + ], + [ + "燥", + -17.168548583984375 + ], + [ + "涂", + -17.169137954711914 + ], + [ + "蓄", + -17.169214248657227 + ], + [ + "脉", + -17.169607162475586 + ], + [ + "奈", + -17.17011070251465 + ], + [ + "잔", + -17.170188903808594 + ], + [ + "틀", + -17.170305252075195 + ], + [ + "棒", + -17.171119689941406 + ], + [ + "핵", + -17.172529220581055 + ], + [ + "ై", + -17.174285888671875 + ], + [ + "죽", + -17.17440414428711 + ], + [ + "💎", + -17.17498207092285 + ], + [ + "Ě", + -17.175107955932617 + ], + [ + "炭", + -17.17671012878418 + ], + [ + "浮", + -17.17716407775879 + ], + [ + "硅", + -17.177410125732422 + ], + [ + "︠", + -17.177576065063477 + ], + [ + "혜", + -17.17769432067871 + ], + [ + "允", + -17.17829132080078 + ], + [ + "휘", + -17.179460525512695 + ], + [ + "🎄", + -17.179698944091797 + ], + [ + "⁃", + -17.179922103881836 + ], + [ + "∨", + -17.179931640625 + ], + [ + "렉", + -17.180641174316406 + ], + [ + "邊", + -17.180864334106445 + ], + [ + "冬", + -17.181589126586914 + ], + [ + "ጠ", + -17.181821823120117 + ], + [ + "訂", + -17.183687210083008 + ], + [ + "阵", + -17.184185028076172 + ], + [ + "គ", + -17.184307098388672 + ], + [ + "ૂ", + -17.185136795043945 + ], + [ + "ஏ", + -17.185373306274414 + ], + [ + "伟", + -17.186796188354492 + ], + [ + "覚", + -17.188215255737305 + ], + [ + "ḡ", + -17.189056396484375 + ], + [ + "邮", + -17.189653396606445 + ], + [ + "듯", + -17.189889907836914 + ], + [ + "促", + -17.19036293029785 + ], + [ + "涉", + -17.19037628173828 + ], + [ + "聲", + -17.19094467163086 + ], + [ + "巻", + -17.192136764526367 + ], + [ + "疑", + -17.192163467407227 + ], + [ + "纪", + -17.192873001098633 + ], + [ + "饰", + -17.192873001098633 + ], + [ + "쇼", + -17.1929931640625 + ], + [ + "弁", + -17.193174362182617 + ], + [ + "ഒ", + -17.19490623474121 + ], + [ + "ඒ", + -17.19490623474121 + ], + [ + "紧", + -17.195266723632812 + ], + [ + "鳥", + -17.195390701293945 + ], + [ + "혀", + -17.19574546813965 + ], + [ + "ἶ", + -17.196823120117188 + ], + [ + "ฤ", + -17.197547912597656 + ], + [ + "辺", + -17.198843002319336 + ], + [ + "巧", + -17.2003116607666 + ], + [ + "ొ", + -17.201032638549805 + ], + [ + "〕", + -17.201318740844727 + ], + [ + "흥", + -17.201995849609375 + ], + [ + "鍵", + -17.202096939086914 + ], + [ + "奥", + -17.202585220336914 + ], + [ + "ዘ", + -17.202600479125977 + ], + [ + "麗", + -17.20317268371582 + ], + [ + "ұ", + -17.203323364257812 + ], + [ + "汇", + -17.203407287597656 + ], + [ + "雑", + -17.203432083129883 + ], + [ + "ῇ", + -17.203685760498047 + ], + [ + "详", + -17.203811645507812 + ], + [ + "抣", + -17.20417022705078 + ], + [ + "舒", + -17.20477867126465 + ], + [ + "租", + -17.204904556274414 + ], + [ + "擇", + -17.205148696899414 + ], + [ + "忠", + -17.205251693725586 + ], + [ + "御", + -17.20549964904785 + ], + [ + "밝", + -17.20561981201172 + ], + [ + "塗", + -17.206069946289062 + ], + [ + "ဟ", + -17.206836700439453 + ], + [ + "롯", + -17.20755958557129 + ], + [ + "醫", + -17.207679748535156 + ], + [ + "啊", + -17.2097110748291 + ], + [ + "ܠ", + -17.20998764038086 + ], + [ + "ၿ", + -17.21144676208496 + ], + [ + "ሉ", + -17.21181297302246 + ], + [ + "홀", + -17.21193504333496 + ], + [ + "⟵", + -17.212299346923828 + ], + [ + "顺", + -17.212310791015625 + ], + [ + "缓", + -17.21354103088379 + ], + [ + "焼", + -17.2136173248291 + ], + [ + "脚", + -17.213645935058594 + ], + [ + "ƴ", + -17.214372634887695 + ], + [ + "氨", + -17.21550178527832 + ], + [ + "✖", + -17.215585708618164 + ], + [ + "❗", + -17.215717315673828 + ], + [ + "❌", + -17.216449737548828 + ], + [ + "Ľ", + -17.217676162719727 + ], + [ + "职", + -17.219514846801758 + ], + [ + "阪", + -17.21961212158203 + ], + [ + "Ū", + -17.21976089477539 + ], + [ + "稳", + -17.22075653076172 + ], + [ + "ད", + -17.220905303955078 + ], + [ + "亲", + -17.22233772277832 + ], + [ + "賞", + -17.222946166992188 + ], + [ + "株", + -17.223188400268555 + ], + [ + "ථ", + -17.223203659057617 + ], + [ + "繁", + -17.22342872619629 + ], + [ + "啦", + -17.224559783935547 + ], + [ + "✩", + -17.225421905517578 + ], + [ + "칙", + -17.226409912109375 + ], + [ + "默", + -17.226530075073242 + ], + [ + "頻", + -17.228652954101562 + ], + [ + "蘭", + -17.229623794555664 + ], + [ + "慧", + -17.229625701904297 + ], + [ + "挙", + -17.229740142822266 + ], + [ + "Ę", + -17.23012351989746 + ], + [ + "仔", + -17.23050308227539 + ], + [ + "랙", + -17.231739044189453 + ], + [ + "홈", + -17.23198699951172 + ], + [ + "✰", + -17.232234954833984 + ], + [ + "戶", + -17.233928680419922 + ], + [ + "循", + -17.23410415649414 + ], + [ + "ི", + -17.235401153564453 + ], + [ + "専", + -17.235824584960938 + ], + [ + "놓", + -17.23596954345703 + ], + [ + "뮤", + -17.237092971801758 + ], + [ + "欧", + -17.23710060119629 + ], + [ + "練", + -17.23728370666504 + ], + [ + "탐", + -17.237594604492188 + ], + [ + "ȝ", + -17.239469528198242 + ], + [ + "剛", + -17.239707946777344 + ], + [ + "멀", + -17.240598678588867 + ], + [ + "맛", + -17.24109649658203 + ], + [ + "Ս", + -17.24273109436035 + ], + [ + "禮", + -17.24273109436035 + ], + [ + "筆", + -17.242860794067383 + ], + [ + "暴", + -17.243350982666016 + ], + [ + "伯", + -17.243858337402344 + ], + [ + "ળ", + -17.244489669799805 + ], + [ + "占", + -17.24549102783203 + ], + [ + "倒", + -17.248003005981445 + ], + [ + "痛", + -17.24991798400879 + ], + [ + "浓", + -17.250185012817383 + ], + [ + "丸", + -17.250417709350586 + ], + [ + "條", + -17.250812530517578 + ], + [ + "頂", + -17.250911712646484 + ], + [ + "죠", + -17.25168800354004 + ], + [ + "昌", + -17.25181007385254 + ], + [ + "➞", + -17.252195358276367 + ], + [ + "劉", + -17.25511360168457 + ], + [ + "🇳", + -17.256772994995117 + ], + [ + "庆", + -17.257036209106445 + ], + [ + "욕", + -17.257789611816406 + ], + [ + "셋", + -17.25779151916504 + ], + [ + "왜", + -17.258682250976562 + ], + [ + "遺", + -17.25945472717285 + ], + [ + "즘", + -17.26059913635254 + ], + [ + "傾", + -17.260835647583008 + ], + [ + "알", + -17.263458251953125 + ], + [ + "革", + -17.263460159301758 + ], + [ + "۹", + -17.26380157470703 + ], + [ + "圈", + -17.264171600341797 + ], + [ + "炎", + -17.265094757080078 + ], + [ + "⊆", + -17.26585578918457 + ], + [ + "💃", + -17.2659912109375 + ], + [ + "엇", + -17.26624298095703 + ], + [ + "ᴅ", + -17.267013549804688 + ], + [ + "슈", + -17.267913818359375 + ], + [ + "貼", + -17.26791763305664 + ], + [ + "慢", + -17.26829719543457 + ], + [ + "呈", + -17.268461227416992 + ], + [ + "串", + -17.268569946289062 + ], + [ + "۵", + -17.269590377807617 + ], + [ + "肌", + -17.269996643066406 + ], + [ + "ಶ", + -17.270362854003906 + ], + [ + "∪", + -17.271263122558594 + ], + [ + "བ", + -17.271684646606445 + ], + [ + "鼠", + -17.272424697875977 + ], + [ + "∃", + -17.27256202697754 + ], + [ + "ջ", + -17.273208618164062 + ], + [ + "乱", + -17.273452758789062 + ], + [ + "職", + -17.273855209350586 + ], + [ + "ፈ", + -17.27385711669922 + ], + [ + "😩", + -17.274246215820312 + ], + [ + "戸", + -17.274629592895508 + ], + [ + "◆", + -17.27520179748535 + ], + [ + "膚", + -17.27591896057129 + ], + [ + "继", + -17.276325225830078 + ], + [ + "築", + -17.277359008789062 + ], + [ + "̪", + -17.278514862060547 + ], + [ + "银", + -17.279191970825195 + ], + [ + "錯", + -17.27945327758789 + ], + [ + "↳", + -17.279966354370117 + ], + [ + "🎥", + -17.281661987304688 + ], + [ + "😮", + -17.281661987304688 + ], + [ + "ೋ", + -17.28179168701172 + ], + [ + "杰", + -17.282052993774414 + ], + [ + "갑", + -17.282184600830078 + ], + [ + "仲", + -17.28243064880371 + ], + [ + "劇", + -17.2828311920166 + ], + [ + "徒", + -17.283872604370117 + ], + [ + "։", + -17.287818908691406 + ], + [ + "袋", + -17.287948608398438 + ], + [ + "輝", + -17.288850784301758 + ], + [ + "ൾ", + -17.29058265686035 + ], + [ + "Ț", + -17.291109085083008 + ], + [ + "ར", + -17.291669845581055 + ], + [ + "👊", + -17.292163848876953 + ], + [ + "漏", + -17.29322052001953 + ], + [ + "ಚ", + -17.293615341186523 + ], + [ + "递", + -17.293895721435547 + ], + [ + "讲", + -17.294679641723633 + ], + [ + "夹", + -17.294687271118164 + ], + [ + "⎯", + -17.295738220214844 + ], + [ + "浪", + -17.29693031311035 + ], + [ + "雙", + -17.29693031311035 + ], + [ + "팔", + -17.297060012817383 + ], + [ + "举", + -17.2978572845459 + ], + [ + "ǂ", + -17.29905128479004 + ], + [ + "혁", + -17.299848556518555 + ], + [ + "퇴", + -17.300247192382812 + ], + [ + "溝", + -17.30155372619629 + ], + [ + "냉", + -17.30184555053711 + ], + [ + "柔", + -17.302114486694336 + ], + [ + "ῃ", + -17.302377700805664 + ], + [ + "苦", + -17.30278205871582 + ], + [ + "熟", + -17.303312301635742 + ], + [ + "ᴜ", + -17.304513931274414 + ], + [ + "ጋ", + -17.3050479888916 + ], + [ + "疾", + -17.30558204650879 + ], + [ + "빛", + -17.30571746826172 + ], + [ + "풀", + -17.305984497070312 + ], + [ + "롭", + -17.306921005249023 + ], + [ + "🎁", + -17.307458877563477 + ], + [ + "ʕ", + -17.307727813720703 + ], + [ + "😡", + -17.307891845703125 + ], + [ + "锟", + -17.308393478393555 + ], + [ + "弾", + -17.308696746826172 + ], + [ + "ஞ", + -17.309602737426758 + ], + [ + "诸", + -17.309608459472656 + ], + [ + "须", + -17.309879302978516 + ], + [ + "짜", + -17.310409545898438 + ], + [ + "۴", + -17.31108283996582 + ], + [ + "沉", + -17.31123161315918 + ], + [ + "👩", + -17.31202507019043 + ], + [ + "ໄ", + -17.312166213989258 + ], + [ + "浩", + -17.31268310546875 + ], + [ + "孙", + -17.314319610595703 + ], + [ + "団", + -17.314453125 + ], + [ + "歴", + -17.31617546081543 + ], + [ + "湯", + -17.316734313964844 + ], + [ + "║", + -17.317386627197266 + ], + [ + "〔", + -17.31859016418457 + ], + [ + "虎", + -17.31865692138672 + ], + [ + "滴", + -17.320396423339844 + ], + [ + "困", + -17.320810317993164 + ], + [ + "隙", + -17.321468353271484 + ], + [ + "ڑ", + -17.322307586669922 + ], + [ + "综", + -17.322717666625977 + ], + [ + "닝", + -17.322851181030273 + ], + [ + "ヌ", + -17.324329376220703 + ], + [ + "ఆ", + -17.32434844970703 + ], + [ + "湿", + -17.324899673461914 + ], + [ + "Ꭲ", + -17.32503318786621 + ], + [ + "హ", + -17.325714111328125 + ], + [ + "鞋", + -17.32571792602539 + ], + [ + "ሁ", + -17.326942443847656 + ], + [ + "ಣ", + -17.327077865600586 + ], + [ + "Ἰ", + -17.327077865600586 + ], + [ + "苯", + -17.327455520629883 + ], + [ + "埋", + -17.327611923217773 + ], + [ + "ゅ", + -17.328937530517578 + ], + [ + "尽", + -17.329286575317383 + ], + [ + "洪", + -17.329790115356445 + ], + [ + "ੱ", + -17.329816818237305 + ], + [ + "ჯ", + -17.330364227294922 + ], + [ + "裂", + -17.33051300048828 + ], + [ + "靈", + -17.33103370666504 + ], + [ + "鎖", + -17.33197593688965 + ], + [ + "賣", + -17.332836151123047 + ], + [ + "긍", + -17.33393669128418 + ], + [ + "批", + -17.33436393737793 + ], + [ + "绍", + -17.335041046142578 + ], + [ + "阶", + -17.336153030395508 + ], + [ + "斗", + -17.33641815185547 + ], + [ + "货", + -17.336843490600586 + ], + [ + "셨", + -17.3375186920166 + ], + [ + "팬", + -17.3375186920166 + ], + [ + "臨", + -17.337791442871094 + ], + [ + "텍", + -17.33779525756836 + ], + [ + "滿", + -17.33904266357422 + ], + [ + "੍", + -17.33987045288086 + ], + [ + "争", + -17.340421676635742 + ], + [ + "🚀", + -17.340984344482422 + ], + [ + "섭", + -17.341533660888672 + ], + [ + "ሪ", + -17.34181022644043 + ], + [ + "祭", + -17.34222984313965 + ], + [ + "궁", + -17.34264373779297 + ], + [ + "ଦ", + -17.34333610534668 + ], + [ + "ģ", + -17.344032287597656 + ], + [ + "仍", + -17.344457626342773 + ], + [ + "Մ", + -17.345561981201172 + ], + [ + "寿", + -17.345977783203125 + ], + [ + "ǀ", + -17.346675872802734 + ], + [ + "幻", + -17.346824645996094 + ], + [ + "͜", + -17.3476505279541 + ], + [ + "깨", + -17.34834861755371 + ], + [ + "ഥ", + -17.34876823425293 + ], + [ + "熊", + -17.349884033203125 + ], + [ + "宋", + -17.350425720214844 + ], + [ + "ဂ", + -17.35142707824707 + ], + [ + "😬", + -17.351852416992188 + ], + [ + "盟", + -17.352130889892578 + ], + [ + "ൻ", + -17.352266311645508 + ], + [ + "托", + -17.35227394104004 + ], + [ + "宁", + -17.352542877197266 + ], + [ + "督", + -17.352684020996094 + ], + [ + "祝", + -17.353113174438477 + ], + [ + "🌿", + -17.354511260986328 + ], + [ + "撃", + -17.35464096069336 + ], + [ + "衡", + -17.35466957092285 + ], + [ + "狗", + -17.354928970336914 + ], + [ + "ƿ", + -17.355213165283203 + ], + [ + "❀", + -17.355634689331055 + ], + [ + "罪", + -17.356185913085938 + ], + [ + "튼", + -17.356618881225586 + ], + [ + "損", + -17.35759925842285 + ], + [ + "础", + -17.35761260986328 + ], + [ + "拳", + -17.357725143432617 + ], + [ + "꾸", + -17.357746124267578 + ], + [ + "ధ", + -17.35887336730957 + ], + [ + "곤", + -17.35901641845703 + ], + [ + "깊", + -17.35972023010254 + ], + [ + "羊", + -17.360143661499023 + ], + [ + "救", + -17.36029052734375 + ], + [ + "১", + -17.360570907592773 + ], + [ + "役", + -17.36098861694336 + ], + [ + "엘", + -17.361133575439453 + ], + [ + "硫", + -17.36137580871582 + ], + [ + "웃", + -17.36141586303711 + ], + [ + "⬇", + -17.361980438232422 + ], + [ + "隨", + -17.36224937438965 + ], + [ + "桃", + -17.362552642822266 + ], + [ + "😀", + -17.36264419555664 + ], + [ + "ោ", + -17.36296844482422 + ], + [ + "怪", + -17.364110946655273 + ], + [ + "顧", + -17.36435317993164 + ], + [ + "溫", + -17.364824295043945 + ], + [ + "抰", + -17.36552619934082 + ], + [ + "乗", + -17.366352081298828 + ], + [ + "财", + -17.366378784179688 + ], + [ + "녹", + -17.367090225219727 + ], + [ + "須", + -17.367366790771484 + ], + [ + "ἑ", + -17.368085861206055 + ], + [ + "ὀ", + -17.368085861206055 + ], + [ + "헌", + -17.368371963500977 + ], + [ + "몸", + -17.368511199951172 + ], + [ + "浴", + -17.369224548339844 + ], + [ + "颗", + -17.369794845581055 + ], + [ + "臺", + -17.369949340820312 + ], + [ + "邻", + -17.369951248168945 + ], + [ + "仙", + -17.370664596557617 + ], + [ + "̩", + -17.372493743896484 + ], + [ + "昇", + -17.373926162719727 + ], + [ + "ײ", + -17.37494468688965 + ], + [ + "̸", + -17.375951766967773 + ], + [ + "✅", + -17.377038955688477 + ], + [ + "̵", + -17.377534866333008 + ], + [ + "捕", + -17.377670288085938 + ], + [ + "괴", + -17.37839126586914 + ], + [ + "၀", + -17.378677368164062 + ], + [ + "℮", + -17.379253387451172 + ], + [ + "덕", + -17.37968635559082 + ], + [ + "◼", + -17.380117416381836 + ], + [ + "説", + -17.381826400756836 + ], + [ + "싸", + -17.382715225219727 + ], + [ + "筋", + -17.38313865661621 + ], + [ + "ሆ", + -17.384016036987305 + ], + [ + "❦", + -17.384044647216797 + ], + [ + "◈", + -17.38589859008789 + ], + [ + "吳", + -17.386316299438477 + ], + [ + "巨", + -17.387216567993164 + ], + [ + "칠", + -17.38735008239746 + ], + [ + "삭", + -17.388221740722656 + ], + [ + "矩", + -17.389450073242188 + ], + [ + "唯", + -17.389677047729492 + ], + [ + "酶", + -17.39027214050293 + ], + [ + "杯", + -17.390682220458984 + ], + [ + "భ", + -17.390838623046875 + ], + [ + "✏", + -17.3909854888916 + ], + [ + "၊", + -17.391130447387695 + ], + [ + "祖", + -17.391408920288086 + ], + [ + "蓝", + -17.39202117919922 + ], + [ + "졸", + -17.392295837402344 + ], + [ + "ɢ", + -17.393463134765625 + ], + [ + "额", + -17.39348030090332 + ], + [ + "ٰ", + -17.394195556640625 + ], + [ + "耶", + -17.394346237182617 + ], + [ + "ઈ", + -17.394487380981445 + ], + [ + "睡", + -17.394744873046875 + ], + [ + "ዎ", + -17.395217895507812 + ], + [ + "歯", + -17.395469665527344 + ], + [ + "❑", + -17.396242141723633 + ], + [ + "ἴ", + -17.397268295288086 + ], + [ + "융", + -17.397268295288086 + ], + [ + "匹", + -17.397720336914062 + ], + [ + "吐", + -17.39797019958496 + ], + [ + "忘", + -17.39828872680664 + ], + [ + "众", + -17.39992332458496 + ], + [ + "闭", + -17.400508880615234 + ], + [ + "ኢ", + -17.400941848754883 + ], + [ + "蒙", + -17.400951385498047 + ], + [ + "卧", + -17.401384353637695 + ], + [ + "裏", + -17.40226173400879 + ], + [ + "敬", + -17.403358459472656 + ], + [ + "≫", + -17.403446197509766 + ], + [ + "氯", + -17.404199600219727 + ], + [ + "๏", + -17.40433120727539 + ], + [ + "舗", + -17.404624938964844 + ], + [ + "遇", + -17.405061721801758 + ], + [ + "傷", + -17.40624237060547 + ], + [ + "脈", + -17.40739631652832 + ], + [ + "梦", + -17.40803337097168 + ], + [ + "슨", + -17.40936279296875 + ], + [ + "ຮ", + -17.409669876098633 + ], + [ + "০", + -17.410104751586914 + ], + [ + "談", + -17.410694122314453 + ], + [ + "轻", + -17.41203498840332 + ], + [ + "ֽ", + -17.414121627807617 + ], + [ + "嵌", + -17.41455841064453 + ], + [ + "练", + -17.41486930847168 + ], + [ + "됨", + -17.41636085510254 + ], + [ + "圣", + -17.41696548461914 + ], + [ + "岛", + -17.41743278503418 + ], + [ + "恋", + -17.417863845825195 + ], + [ + "ഉ", + -17.418752670288086 + ], + [ + "ɕ", + -17.419204711914062 + ], + [ + "閒", + -17.419504165649414 + ], + [ + "歷", + -17.41952896118164 + ], + [ + "촬", + -17.42025375366211 + ], + [ + "欠", + -17.4205379486084 + ], + [ + "絡", + -17.421295166015625 + ], + [ + "悪", + -17.42129898071289 + ], + [ + "乎", + -17.421310424804688 + ], + [ + "♛", + -17.422204971313477 + ], + [ + "弟", + -17.422937393188477 + ], + [ + "➥", + -17.423860549926758 + ], + [ + "😏", + -17.42416000366211 + ], + [ + "屬", + -17.425363540649414 + ], + [ + "殺", + -17.42547607421875 + ], + [ + "Գ", + -17.425668716430664 + ], + [ + "蔵", + -17.427154541015625 + ], + [ + "🤦", + -17.4282283782959 + ], + [ + "危", + -17.42868423461914 + ], + [ + "ಇ", + -17.428688049316406 + ], + [ + "Ġ", + -17.42914390563965 + ], + [ + "۶", + -17.42974853515625 + ], + [ + "甚", + -17.429885864257812 + ], + [ + "떨", + -17.43065643310547 + ], + [ + "❥", + -17.43111228942871 + ], + [ + "遮", + -17.431236267089844 + ], + [ + "幫", + -17.432636260986328 + ], + [ + "∵", + -17.43323516845703 + ], + [ + "借", + -17.43387222290039 + ], + [ + "訪", + -17.434450149536133 + ], + [ + "祥", + -17.435056686401367 + ], + [ + "☰", + -17.43507957458496 + ], + [ + "歩", + -17.435659408569336 + ], + [ + "ァ", + -17.435813903808594 + ], + [ + "ൈ", + -17.43582534790039 + ], + [ + "殊", + -17.43597984313965 + ], + [ + "샘", + -17.436281204223633 + ], + [ + "ષ", + -17.436588287353516 + ], + [ + "ሕ", + -17.436738967895508 + ], + [ + "ዋ", + -17.437807083129883 + ], + [ + "疫", + -17.438268661499023 + ], + [ + "駅", + -17.439027786254883 + ], + [ + "⇧", + -17.439029693603516 + ], + [ + "ֱ", + -17.4393367767334 + ], + [ + "ណ", + -17.440250396728516 + ], + [ + "큼", + -17.440711975097656 + ], + [ + "ញ", + -17.440858840942383 + ], + [ + "陆", + -17.440874099731445 + ], + [ + "甘", + -17.44285011291504 + ], + [ + "ួ", + -17.443159103393555 + ], + [ + "ܒ", + -17.443164825439453 + ], + [ + "宅", + -17.44454574584961 + ], + [ + "∏", + -17.44500732421875 + ], + [ + "렬", + -17.445161819458008 + ], + [ + "▶", + -17.4454345703125 + ], + [ + "咖", + -17.44562530517578 + ], + [ + "Ḩ", + -17.446239471435547 + ], + [ + "∝", + -17.447309494018555 + ], + [ + "잉", + -17.447317123413086 + ], + [ + "娘", + -17.448244094848633 + ], + [ + "训", + -17.44855499267578 + ], + [ + "💡", + -17.45009422302246 + ], + [ + "彦", + -17.45055389404297 + ], + [ + "兼", + -17.45063018798828 + ], + [ + "續", + -17.452590942382812 + ], + [ + "潮", + -17.452831268310547 + ], + [ + "矢", + -17.452863693237305 + ], + [ + "贵", + -17.453649520874023 + ], + [ + "腐", + -17.45453453063965 + ], + [ + "笔", + -17.45473861694336 + ], + [ + "税", + -17.454750061035156 + ], + [ + "닛", + -17.45505142211914 + ], + [ + "杜", + -17.456462860107422 + ], + [ + "扫", + -17.45661163330078 + ], + [ + "朗", + -17.456918716430664 + ], + [ + "넣", + -17.45847511291504 + ], + [ + "裕", + -17.45873260498047 + ], + [ + "迪", + -17.45957374572754 + ], + [ + "伤", + -17.459575653076172 + ], + [ + "俗", + -17.460037231445312 + ], + [ + "賽", + -17.460189819335938 + ], + [ + "ḩ", + -17.46034812927246 + ], + [ + "튜", + -17.46112823486328 + ], + [ + "닐", + -17.46159553527832 + ], + [ + "̉", + -17.46163558959961 + ], + [ + "筑", + -17.461761474609375 + ], + [ + "烧", + -17.461883544921875 + ], + [ + "沈", + -17.462677001953125 + ], + [ + "衝", + -17.46282958984375 + ], + [ + "⇨", + -17.46331787109375 + ], + [ + "ێ", + -17.46472930908203 + ], + [ + "돈", + -17.465200424194336 + ], + [ + "眉", + -17.465524673461914 + ], + [ + "ৰ", + -17.466611862182617 + ], + [ + "ខ", + -17.4680233001709 + ], + [ + "譯", + -17.468341827392578 + ], + [ + "屈", + -17.468486785888672 + ], + [ + "⇔", + -17.4685001373291 + ], + [ + "戻", + -17.469070434570312 + ], + [ + "跳", + -17.47103500366211 + ], + [ + "📌", + -17.47165298461914 + ], + [ + "མ", + -17.47200584411621 + ], + [ + "켓", + -17.4722843170166 + ], + [ + "ฮ", + -17.47260284423828 + ], + [ + "ዓ", + -17.473390579223633 + ], + [ + "镇", + -17.47433853149414 + ], + [ + "🍀", + -17.47481346130371 + ], + [ + "뜻", + -17.475290298461914 + ], + [ + "٠", + -17.475608825683594 + ], + [ + "ฝ", + -17.475610733032227 + ], + [ + "☝", + -17.475923538208008 + ], + [ + "ફ", + -17.47640037536621 + ], + [ + "権", + -17.47653579711914 + ], + [ + "🇹", + -17.47688102722168 + ], + [ + "偶", + -17.4776611328125 + ], + [ + "맨", + -17.478466033935547 + ], + [ + "顔", + -17.478914260864258 + ], + [ + "拼", + -17.478952407836914 + ], + [ + "姿", + -17.480844497680664 + ], + [ + "澤", + -17.481325149536133 + ], + [ + "琴", + -17.482927322387695 + ], + [ + "👋", + -17.484207153320312 + ], + [ + "耗", + -17.485319137573242 + ], + [ + "韩", + -17.48539924621582 + ], + [ + "坦", + -17.48598861694336 + ], + [ + "鮮", + -17.486934661865234 + ], + [ + "楚", + -17.48775863647461 + ], + [ + "።", + -17.489498138427734 + ], + [ + "ܕ", + -17.48982048034668 + ], + [ + "ᴍ", + -17.49094581604004 + ], + [ + "ǥ", + -17.491268157958984 + ], + [ + "앱", + -17.491268157958984 + ], + [ + "ᴄ", + -17.49159049987793 + ], + [ + "삽", + -17.491750717163086 + ], + [ + "吹", + -17.49190902709961 + ], + [ + "擬", + -17.493677139282227 + ], + [ + "🇵", + -17.493690490722656 + ], + [ + "旧", + -17.494491577148438 + ], + [ + "ḇ", + -17.494983673095703 + ], + [ + "弘", + -17.495147705078125 + ], + [ + "Ḳ", + -17.495302200317383 + ], + [ + "継", + -17.49544334411621 + ], + [ + "ဝ", + -17.495790481567383 + ], + [ + "穴", + -17.49639320373535 + ], + [ + "妈", + -17.497732162475586 + ], + [ + "ଜ", + -17.49805450439453 + ], + [ + "낙", + -17.49805450439453 + ], + [ + "岸", + -17.49822235107422 + ], + [ + "≃", + -17.498703002929688 + ], + [ + "렸", + -17.499513626098633 + ], + [ + "珍", + -17.500490188598633 + ], + [ + "洛", + -17.502647399902344 + ], + [ + "❏", + -17.50276756286621 + ], + [ + "옵", + -17.5029296875 + ], + [ + "截", + -17.50360107421875 + ], + [ + "飲", + -17.503742218017578 + ], + [ + "矿", + -17.50522804260254 + ], + [ + "ӳ", + -17.505704879760742 + ], + [ + "ះ", + -17.506519317626953 + ], + [ + "叠", + -17.506521224975586 + ], + [ + "핀", + -17.506521224975586 + ], + [ + "葡", + -17.506694793701172 + ], + [ + "掲", + -17.50684356689453 + ], + [ + "ܵ", + -17.50684928894043 + ], + [ + "🔹", + -17.507667541503906 + ], + [ + "鑑", + -17.508312225341797 + ], + [ + "ֻ", + -17.50832176208496 + ], + [ + "ఎ", + -17.508485794067383 + ], + [ + "額", + -17.50963020324707 + ], + [ + "藍", + -17.50963592529297 + ], + [ + "✎", + -17.510618209838867 + ], + [ + "岁", + -17.51078987121582 + ], + [ + "昨", + -17.51160430908203 + ], + [ + "ེ", + -17.51163673400879 + ], + [ + "啡", + -17.511932373046875 + ], + [ + "胺", + -17.51265525817871 + ], + [ + "ஹ", + -17.51341438293457 + ], + [ + "俱", + -17.51359748840332 + ], + [ + "隣", + -17.5140323638916 + ], + [ + "ܰ", + -17.514074325561523 + ], + [ + "窒", + -17.514204025268555 + ], + [ + "贝", + -17.51456642150879 + ], + [ + "尤", + -17.516380310058594 + ], + [ + "荐", + -17.51671600341797 + ], + [ + "羽", + -17.517534255981445 + ], + [ + "洞", + -17.51786231994629 + ], + [ + "绿", + -17.518545150756836 + ], + [ + "恒", + -17.51886749267578 + ], + [ + "♬", + -17.519025802612305 + ], + [ + "颜", + -17.51903533935547 + ], + [ + "繊", + -17.519668579101562 + ], + [ + "✍", + -17.52035140991211 + ], + [ + "̈", + -17.520483016967773 + ], + [ + "͞", + -17.52049446105957 + ], + [ + "辦", + -17.520532608032227 + ], + [ + "昭", + -17.521516799926758 + ], + [ + "噴", + -17.523469924926758 + ], + [ + "١", + -17.524005889892578 + ], + [ + "Դ", + -17.524173736572266 + ], + [ + "ణ", + -17.524173736572266 + ], + [ + "楊", + -17.524667739868164 + ], + [ + "ູ", + -17.524681091308594 + ], + [ + "ɲ", + -17.524839401245117 + ], + [ + "曼", + -17.52518653869629 + ], + [ + "浸", + -17.52684211730957 + ], + [ + "隐", + -17.527677536010742 + ], + [ + "弱", + -17.528005599975586 + ], + [ + "燕", + -17.528512954711914 + ], + [ + "ɜ", + -17.529512405395508 + ], + [ + "⬅", + -17.529680252075195 + ], + [ + "✘", + -17.530517578125 + ], + [ + "❣", + -17.530685424804688 + ], + [ + "盲", + -17.530691146850586 + ], + [ + "檢", + -17.531888961791992 + ], + [ + "冠", + -17.532033920288086 + ], + [ + "挑", + -17.532529830932617 + ], + [ + "Ộ", + -17.53521728515625 + ], + [ + "💔", + -17.535219192504883 + ], + [ + "帧", + -17.535587310791016 + ], + [ + "ਈ", + -17.53656578063965 + ], + [ + "ূ", + -17.53740882873535 + ], + [ + "📍", + -17.53740882873535 + ], + [ + "奶", + -17.5380859375 + ], + [ + "🏿", + -17.5380859375 + ], + [ + "貫", + -17.539405822753906 + ], + [ + "遅", + -17.539730072021484 + ], + [ + "脿", + -17.540109634399414 + ], + [ + "隱", + -17.540639877319336 + ], + [ + "処", + -17.5412654876709 + ], + [ + "ቸ", + -17.54298973083496 + ], + [ + "톤", + -17.544178009033203 + ], + [ + "ঁ", + -17.54485511779785 + ], + [ + "ἀ", + -17.544858932495117 + ], + [ + "ಷ", + -17.545024871826172 + ], + [ + "乡", + -17.54520034790039 + ], + [ + "皆", + -17.5456485748291 + ], + [ + "씩", + -17.545875549316406 + ], + [ + "冱", + -17.546388626098633 + ], + [ + "跑", + -17.547067642211914 + ], + [ + "席", + -17.547916412353516 + ], + [ + "恐", + -17.548242568969727 + ], + [ + "農", + -17.548757553100586 + ], + [ + "鐘", + -17.5491886138916 + ], + [ + "尿", + -17.549610137939453 + ], + [ + "३", + -17.549795150756836 + ], + [ + "ᑦ", + -17.550308227539062 + ], + [ + "污", + -17.552532196044922 + ], + [ + "ഫ", + -17.552875518798828 + ], + [ + "鼓", + -17.553565979003906 + ], + [ + "絵", + -17.554067611694336 + ], + [ + "📚", + -17.554073333740234 + ], + [ + "ṟ", + -17.554759979248047 + ], + [ + "届", + -17.555095672607422 + ], + [ + "領", + -17.555110931396484 + ], + [ + "据", + -17.5557918548584 + ], + [ + "尖", + -17.55596160888672 + ], + [ + "荣", + -17.55612564086914 + ], + [ + "絲", + -17.557655334472656 + ], + [ + "ቲ", + -17.559059143066406 + ], + [ + "ઓ", + -17.55923080444336 + ], + [ + "尋", + -17.55943489074707 + ], + [ + "倉", + -17.55957794189453 + ], + [ + "🐶", + -17.55961799621582 + ], + [ + "谈", + -17.56009864807129 + ], + [ + "肥", + -17.560951232910156 + ], + [ + "ਧ", + -17.560956954956055 + ], + [ + "۷", + -17.562339782714844 + ], + [ + "眠", + -17.563175201416016 + ], + [ + "喷", + -17.563207626342773 + ], + [ + "陸", + -17.564075469970703 + ], + [ + "̳", + -17.564252853393555 + ], + [ + "Љ", + -17.56458854675293 + ], + [ + "ఉ", + -17.56476402282715 + ], + [ + "८", + -17.565454483032227 + ], + [ + "ǣ", + -17.565629959106445 + ], + [ + "ਟ", + -17.56580352783203 + ], + [ + "봄", + -17.56580352783203 + ], + [ + "ዲ", + -17.56632423400879 + ], + [ + "๓", + -17.567712783813477 + ], + [ + "籍", + -17.56911277770996 + ], + [ + "診", + -17.569446563720703 + ], + [ + "责", + -17.570837020874023 + ], + [ + "ෑ", + -17.571195602416992 + ], + [ + "ኛ", + -17.571195602416992 + ], + [ + "😇", + -17.571197509765625 + ], + [ + "券", + -17.571372985839844 + ], + [ + "ଣ", + -17.57224464416504 + ], + [ + "璃", + -17.57293701171875 + ], + [ + "慮", + -17.573184967041016 + ], + [ + "掛", + -17.573986053466797 + ], + [ + "ỡ", + -17.573991775512695 + ], + [ + "饭", + -17.573991775512695 + ], + [ + "誰", + -17.57399559020996 + ], + [ + "肯", + -17.574172973632812 + ], + [ + "浄", + -17.57431983947754 + ], + [ + "储", + -17.5743465423584 + ], + [ + "ུ", + -17.574729919433594 + ], + [ + "浦", + -17.575225830078125 + ], + [ + "넓", + -17.5755672454834 + ], + [ + "👨", + -17.575742721557617 + ], + [ + "醒", + -17.575912475585938 + ], + [ + "̍", + -17.577651977539062 + ], + [ + "밖", + -17.57784652709961 + ], + [ + "ན", + -17.57929229736328 + ], + [ + "戴", + -17.579404830932617 + ], + [ + "ང", + -17.580171585083008 + ], + [ + "營", + -17.580991744995117 + ], + [ + "胸", + -17.581010818481445 + ], + [ + "獨", + -17.58136558532715 + ], + [ + "☠", + -17.58171844482422 + ], + [ + "ӧ", + -17.58365821838379 + ], + [ + "✭", + -17.584543228149414 + ], + [ + "較", + -17.58487892150879 + ], + [ + "♢", + -17.585426330566406 + ], + [ + "浜", + -17.585628509521484 + ], + [ + "倫", + -17.586313247680664 + ], + [ + "틱", + -17.586313247680664 + ], + [ + "坡", + -17.58681869506836 + ], + [ + "Ն", + -17.587020874023438 + ], + [ + "❉", + -17.58737564086914 + ], + [ + "蛍", + -17.58770751953125 + ], + [ + "₵", + -17.587730407714844 + ], + [ + "灰", + -17.587732315063477 + ], + [ + "帳", + -17.588075637817383 + ], + [ + "۸", + -17.588085174560547 + ], + [ + "꽃", + -17.58843994140625 + ], + [ + "旨", + -17.590740203857422 + ], + [ + "ጣ", + -17.590749740600586 + ], + [ + "ហ", + -17.59128189086914 + ], + [ + "ۀ", + -17.591461181640625 + ], + [ + "ୟ", + -17.59235191345215 + ], + [ + "ໂ", + -17.59271240234375 + ], + [ + "∥", + -17.59272003173828 + ], + [ + "尊", + -17.594148635864258 + ], + [ + "ฐ", + -17.594493865966797 + ], + [ + "欣", + -17.594852447509766 + ], + [ + "辉", + -17.595211029052734 + ], + [ + "💵", + -17.59574317932129 + ], + [ + "릿", + -17.596099853515625 + ], + [ + "執", + -17.596111297607422 + ], + [ + "獎", + -17.596458435058594 + ], + [ + "Ĺ", + -17.597532272338867 + ], + [ + "Ź", + -17.598068237304688 + ], + [ + "卓", + -17.598787307739258 + ], + [ + "ぜ", + -17.59967803955078 + ], + [ + "✚", + -17.60076141357422 + ], + [ + "ḫ", + -17.600940704345703 + ], + [ + "钥", + -17.601106643676758 + ], + [ + "纯", + -17.601119995117188 + ], + [ + "녕", + -17.601301193237305 + ], + [ + "旦", + -17.602920532226562 + ], + [ + "ዮ", + -17.60436248779297 + ], + [ + "黎", + -17.605989456176758 + ], + [ + "攝", + -17.606342315673828 + ], + [ + "瘤", + -17.60651397705078 + ], + [ + "孝", + -17.606691360473633 + ], + [ + "☁", + -17.60706329345703 + ], + [ + "ẵ", + -17.607431411743164 + ], + [ + "剧", + -17.609580993652344 + ], + [ + "ຸ", + -17.610336303710938 + ], + [ + "ỷ", + -17.610692977905273 + ], + [ + "빌", + -17.61087417602539 + ], + [ + "玻", + -17.611408233642578 + ], + [ + "膨", + -17.611417770385742 + ], + [ + "幼", + -17.613786697387695 + ], + [ + "Ő", + -17.614328384399414 + ], + [ + "壓", + -17.615041732788086 + ], + [ + "桥", + -17.616392135620117 + ], + [ + "ಭ", + -17.61688232421875 + ], + [ + "犬", + -17.617794036865234 + ], + [ + "흔", + -17.618892669677734 + ], + [ + "ఇ", + -17.618894577026367 + ], + [ + "慶", + -17.618896484375 + ], + [ + "衬", + -17.62091064453125 + ], + [ + "繰", + -17.62179183959961 + ], + [ + "鉄", + -17.62181854248047 + ], + [ + "밤", + -17.623109817504883 + ], + [ + "ቶ", + -17.623661041259766 + ], + [ + "纹", + -17.623661041259766 + ], + [ + "掌", + -17.623676300048828 + ], + [ + "辛", + -17.624387741088867 + ], + [ + "믿", + -17.624948501586914 + ], + [ + "ዕ", + -17.625133514404297 + ], + [ + "ৃ", + -17.625314712524414 + ], + [ + "鸡", + -17.625324249267578 + ], + [ + "订", + -17.62532615661621 + ], + [ + "據", + -17.625534057617188 + ], + [ + "兄", + -17.627164840698242 + ], + [ + "礎", + -17.627538681030273 + ], + [ + "辅", + -17.627710342407227 + ], + [ + "沢", + -17.62827491760254 + ], + [ + "閾", + -17.62837791442871 + ], + [ + "짐", + -17.62845230102539 + ], + [ + "邪", + -17.628467559814453 + ], + [ + "ଟ", + -17.628637313842773 + ], + [ + "忙", + -17.629018783569336 + ], + [ + "扣", + -17.62957191467285 + ], + [ + "💫", + -17.62993049621582 + ], + [ + "ঙ", + -17.631040573120117 + ], + [ + "覽", + -17.632675170898438 + ], + [ + "胜", + -17.632909774780273 + ], + [ + "邦", + -17.633255004882812 + ], + [ + "ங", + -17.633686065673828 + ], + [ + "ὄ", + -17.634008407592773 + ], + [ + "奏", + -17.635684967041016 + ], + [ + "潜", + -17.6358699798584 + ], + [ + "腹", + -17.636795043945312 + ], + [ + "≪", + -17.636798858642578 + ], + [ + "齿", + -17.637765884399414 + ], + [ + "ୀ", + -17.640344619750977 + ], + [ + "詩", + -17.640520095825195 + ], + [ + "몬", + -17.641653060913086 + ], + [ + "ἁ", + -17.643526077270508 + ], + [ + "虫", + -17.643661499023438 + ], + [ + "🙋", + -17.645404815673828 + ], + [ + "ἐ", + -17.64581298828125 + ], + [ + "営", + -17.646345138549805 + ], + [ + "郑", + -17.64690589904785 + ], + [ + "‿", + -17.64702606201172 + ], + [ + "泳", + -17.64728355407715 + ], + [ + "钢", + -17.649930953979492 + ], + [ + "旗", + -17.650314331054688 + ], + [ + "😐", + -17.65162467956543 + ], + [ + "ަ", + -17.652193069458008 + ], + [ + "犯", + -17.652772903442383 + ], + [ + "২", + -17.65370750427246 + ], + [ + "聴", + -17.654630661010742 + ], + [ + "輕", + -17.654844284057617 + ], + [ + "앨", + -17.655601501464844 + ], + [ + "陰", + -17.657487869262695 + ], + [ + "狂", + -17.65769386291504 + ], + [ + "桂", + -17.65825843811035 + ], + [ + "斤", + -17.658838272094727 + ], + [ + "坂", + -17.65921401977539 + ], + [ + "曹", + -17.65941619873047 + ], + [ + "◯", + -17.660358428955078 + ], + [ + "🌎", + -17.66210174560547 + ], + [ + "摸", + -17.662277221679688 + ], + [ + "跡", + -17.66303253173828 + ], + [ + "誠", + -17.663217544555664 + ], + [ + "狀", + -17.66324806213379 + ], + [ + "۪", + -17.66379737854004 + ], + [ + "飾", + -17.66455841064453 + ], + [ + "✮", + -17.664941787719727 + ], + [ + "署", + -17.665128707885742 + ], + [ + "董", + -17.665494918823242 + ], + [ + "ϳ", + -17.6655216217041 + ], + [ + "Ꭺ", + -17.666095733642578 + ], + [ + "ଆ", + -17.66609764099121 + ], + [ + "ୋ", + -17.667247772216797 + ], + [ + "ẳ", + -17.668209075927734 + ], + [ + "਼", + -17.66839599609375 + ], + [ + "鲁", + -17.668983459472656 + ], + [ + "칩", + -17.669363021850586 + ], + [ + "✊", + -17.670133590698242 + ], + [ + "樓", + -17.670133590698242 + ], + [ + "漂", + -17.67032241821289 + ], + [ + "ړ", + -17.670711517333984 + ], + [ + "遥", + -17.671493530273438 + ], + [ + "贸", + -17.672069549560547 + ], + [ + "乘", + -17.672435760498047 + ], + [ + "▣", + -17.67244529724121 + ], + [ + "탑", + -17.67244529724121 + ], + [ + "椎", + -17.67283058166504 + ], + [ + "牧", + -17.673582077026367 + ], + [ + "顿", + -17.674787521362305 + ], + [ + "␓", + -17.676313400268555 + ], + [ + "ଇ", + -17.676895141601562 + ], + [ + "卖", + -17.677688598632812 + ], + [ + "➽", + -17.677865982055664 + ], + [ + "Ե", + -17.678447723388672 + ], + [ + "甜", + -17.679039001464844 + ], + [ + "납", + -17.679615020751953 + ], + [ + "✗", + -17.680004119873047 + ], + [ + "ళ", + -17.680587768554688 + ], + [ + "堆", + -17.681930541992188 + ], + [ + "銷", + -17.6821231842041 + ], + [ + "춘", + -17.682144165039062 + ], + [ + "❝", + -17.682340621948242 + ], + [ + "ઉ", + -17.682729721069336 + ], + [ + "✤", + -17.683706283569336 + ], + [ + "Ϫ", + -17.683900833129883 + ], + [ + "阴", + -17.685876846313477 + ], + [ + "严", + -17.686843872070312 + ], + [ + "Ү", + -17.687028884887695 + ], + [ + "ॅ", + -17.687225341796875 + ], + [ + "냈", + -17.687419891357422 + ], + [ + "芝", + -17.687618255615234 + ], + [ + "逐", + -17.688203811645508 + ], + [ + "ዊ", + -17.68840217590332 + ], + [ + "५", + -17.688989639282227 + ], + [ + "虽", + -17.688995361328125 + ], + [ + "魂", + -17.6903133392334 + ], + [ + "ಆ", + -17.691347122192383 + ], + [ + "厅", + -17.691354751586914 + ], + [ + "ۆ", + -17.692726135253906 + ], + [ + "Ď", + -17.693317413330078 + ], + [ + "頼", + -17.693893432617188 + ], + [ + "ធ", + -17.69390296936035 + ], + [ + "랫", + -17.694698333740234 + ], + [ + "럭", + -17.694698333740234 + ], + [ + "臂", + -17.69508171081543 + ], + [ + "멘", + -17.695093154907227 + ], + [ + "玲", + -17.69509506225586 + ], + [ + "擦", + -17.695228576660156 + ], + [ + "莉", + -17.696870803833008 + ], + [ + "併", + -17.69749641418457 + ], + [ + "肝", + -17.697660446166992 + ], + [ + "赞", + -17.698068618774414 + ], + [ + "̴", + -17.698078155517578 + ], + [ + "Ꞌ", + -17.698257446289062 + ], + [ + "糸", + -17.698625564575195 + ], + [ + "☹", + -17.69864845275879 + ], + [ + "😔", + -17.698654174804688 + ], + [ + "操", + -17.700443267822266 + ], + [ + "↗", + -17.703819274902344 + ], + [ + "扱", + -17.70400619506836 + ], + [ + "譜", + -17.70442771911621 + ], + [ + "⚫", + -17.705413818359375 + ], + [ + "렴", + -17.706012725830078 + ], + [ + "ಧ", + -17.70640754699707 + ], + [ + "耦", + -17.707393646240234 + ], + [ + "履", + -17.70796775817871 + ], + [ + "归", + -17.70871925354004 + ], + [ + "斷", + -17.70961570739746 + ], + [ + "亡", + -17.70981216430664 + ], + [ + "握", + -17.710010528564453 + ], + [ + "媽", + -17.71101951599121 + ], + [ + "閱", + -17.711414337158203 + ], + [ + "〗", + -17.71180534362793 + ], + [ + "肖", + -17.71221160888672 + ], + [ + "↘", + -17.71221923828125 + ], + [ + "〖", + -17.71261978149414 + ], + [ + "亜", + -17.712793350219727 + ], + [ + "ゥ", + -17.712810516357422 + ], + [ + "ሎ", + -17.71282196044922 + ], + [ + "佢", + -17.71302604675293 + ], + [ + "濟", + -17.71343231201172 + ], + [ + "丰", + -17.713611602783203 + ], + [ + "샤", + -17.713626861572266 + ], + [ + "绕", + -17.71384048461914 + ], + [ + "凡", + -17.714603424072266 + ], + [ + "≅", + -17.71584129333496 + ], + [ + "锦", + -17.716243743896484 + ], + [ + "艾", + -17.71626091003418 + ], + [ + "װ", + -17.7176570892334 + ], + [ + "ങ", + -17.717859268188477 + ], + [ + "郵", + -17.718259811401367 + ], + [ + "ቃ", + -17.71885108947754 + ], + [ + "ዚ", + -17.718870162963867 + ], + [ + "緊", + -17.719083786010742 + ], + [ + "塊", + -17.721895217895508 + ], + [ + "撑", + -17.722116470336914 + ], + [ + "밍", + -17.722312927246094 + ], + [ + "빨", + -17.723125457763672 + ], + [ + "掉", + -17.72353744506836 + ], + [ + "Ɗ", + -17.72434425354004 + ], + [ + "ぱ", + -17.726787567138672 + ], + [ + "🌺", + -17.728012084960938 + ], + [ + "虑", + -17.728639602661133 + ], + [ + "欲", + -17.730459213256836 + ], + [ + "蘇", + -17.73104476928711 + ], + [ + "鋼", + -17.731470108032227 + ], + [ + "阀", + -17.731895446777344 + ], + [ + "ঠ", + -17.7323055267334 + ], + [ + "̷", + -17.73271942138672 + ], + [ + "봐", + -17.734149932861328 + ], + [ + "党", + -17.734355926513672 + ], + [ + "囊", + -17.734779357910156 + ], + [ + "烟", + -17.735374450683594 + ], + [ + "ङ", + -17.736413955688477 + ], + [ + "◕", + -17.73723793029785 + ], + [ + "胎", + -17.73723793029785 + ], + [ + "氢", + -17.73763084411621 + ], + [ + "섹", + -17.73785400390625 + ], + [ + "Ԝ", + -17.738679885864258 + ], + [ + "簽", + -17.73926544189453 + ], + [ + "፣", + -17.73929786682129 + ], + [ + "菲", + -17.73950958251953 + ], + [ + "💞", + -17.740949630737305 + ], + [ + "Տ", + -17.741779327392578 + ], + [ + "拌", + -17.742328643798828 + ], + [ + "己", + -17.74253273010254 + ], + [ + "Ə", + -17.743227005004883 + ], + [ + "ሃ", + -17.74343490600586 + ], + [ + "▌", + -17.743846893310547 + ], + [ + "跨", + -17.743953704833984 + ], + [ + "註", + -17.744470596313477 + ], + [ + "빙", + -17.745508193969727 + ], + [ + "🎵", + -17.7457218170166 + ], + [ + "😕", + -17.74675750732422 + ], + [ + "軽", + -17.747156143188477 + ], + [ + "泥", + -17.74715805053711 + ], + [ + "틴", + -17.747379302978516 + ], + [ + "腕", + -17.747787475585938 + ], + [ + "📱", + -17.747793197631836 + ], + [ + "४", + -17.74779510498047 + ], + [ + "🌊", + -17.7477970123291 + ], + [ + "繝", + -17.74791145324707 + ], + [ + "ɯ", + -17.748003005981445 + ], + [ + "耀", + -17.748428344726562 + ], + [ + "肤", + -17.748628616333008 + ], + [ + "攀", + -17.74925994873047 + ], + [ + "닥", + -17.7498779296875 + ], + [ + "붙", + -17.750295639038086 + ], + [ + "ϭ", + -17.750713348388672 + ], + [ + "聊", + -17.75136375427246 + ], + [ + "푸", + -17.751548767089844 + ], + [ + "厂", + -17.752225875854492 + ], + [ + "氮", + -17.75238609313965 + ], + [ + "潤", + -17.75251007080078 + ], + [ + "莫", + -17.753009796142578 + ], + [ + "淡", + -17.7536563873291 + ], + [ + "엽", + -17.753849029541016 + ], + [ + "❯", + -17.754058837890625 + ], + [ + "肺", + -17.754060745239258 + ], + [ + "∷", + -17.754070281982422 + ], + [ + "འ", + -17.75411033630371 + ], + [ + "栅", + -17.75428009033203 + ], + [ + "宾", + -17.754486083984375 + ], + [ + "辞", + -17.755508422851562 + ], + [ + "抜", + -17.755945205688477 + ], + [ + "캠", + -17.755945205688477 + ], + [ + "侵", + -17.75659942626953 + ], + [ + "齐", + -17.756999969482422 + ], + [ + "ὡ", + -17.757205963134766 + ], + [ + "ႈ", + -17.75762367248535 + ], + [ + "냐", + -17.758676528930664 + ], + [ + "🔔", + -17.759939193725586 + ], + [ + "诉", + -17.76034164428711 + ], + [ + "魏", + -17.76078987121582 + ], + [ + "烈", + -17.76099967956543 + ], + [ + "ঘ", + -17.761837005615234 + ], + [ + "陶", + -17.762046813964844 + ], + [ + "麵", + -17.76395606994629 + ], + [ + "냥", + -17.764162063598633 + ], + [ + "ਡ", + -17.764163970947266 + ], + [ + "💻", + -17.764799118041992 + ], + [ + "ᆞ", + -17.765857696533203 + ], + [ + "榮", + -17.766286849975586 + ], + [ + "賀", + -17.766599655151367 + ], + [ + "ଗ", + -17.76797866821289 + ], + [ + "😝", + -17.76797866821289 + ], + [ + "➤", + -17.769550323486328 + ], + [ + "ቱ", + -17.7698917388916 + ], + [ + "ʽ", + -17.770105361938477 + ], + [ + "辨", + -17.770357131958008 + ], + [ + "ὕ", + -17.770530700683594 + ], + [ + "됐", + -17.77074432373047 + ], + [ + "ڪ", + -17.771169662475586 + ], + [ + "翼", + -17.771169662475586 + ], + [ + "揮", + -17.771595001220703 + ], + [ + "폼", + -17.771808624267578 + ], + [ + "죄", + -17.772022247314453 + ], + [ + "凤", + -17.77655601501465 + ], + [ + "🇲", + -17.77737045288086 + ], + [ + "꼭", + -17.7775821685791 + ], + [ + "ሮ", + -17.778654098510742 + ], + [ + "🌴", + -17.77886962890625 + ], + [ + "ञ", + -17.78015899658203 + ], + [ + "ᓂ", + -17.781448364257812 + ], + [ + "낌", + -17.781448364257812 + ], + [ + "ὖ", + -17.782310485839844 + ], + [ + "ଡ", + -17.782957077026367 + ], + [ + "诊", + -17.783185958862305 + ], + [ + "ྱ", + -17.783430099487305 + ], + [ + "辐", + -17.7846736907959 + ], + [ + "״", + -17.78533172607422 + ], + [ + "킷", + -17.785762786865234 + ], + [ + "📺", + -17.78662872314453 + ], + [ + "辣", + -17.787458419799805 + ], + [ + "茂", + -17.787919998168945 + ], + [ + "펜", + -17.790966033935547 + ], + [ + "玄", + -17.79116439819336 + ], + [ + "喝", + -17.79241180419922 + ], + [ + "鐵", + -17.792926788330078 + ], + [ + "粗", + -17.7955265045166 + ], + [ + "ჭ", + -17.7955379486084 + ], + [ + "绘", + -17.796483993530273 + ], + [ + "轨", + -17.79706573486328 + ], + [ + "谐", + -17.797285079956055 + ], + [ + "迅", + -17.797285079956055 + ], + [ + "ἵ", + -17.79750633239746 + ], + [ + "幣", + -17.79815673828125 + ], + [ + "拜", + -17.798370361328125 + ], + [ + "ܫ", + -17.798383712768555 + ], + [ + "辆", + -17.80079460144043 + ], + [ + "诗", + -17.801231384277344 + ], + [ + "🐾", + -17.801231384277344 + ], + [ + "켰", + -17.802112579345703 + ], + [ + "訓", + -17.802114486694336 + ], + [ + "ལ", + -17.8023738861084 + ], + [ + "ៅ", + -17.80254364013672 + ], + [ + "✯", + -17.80255126953125 + ], + [ + "튀", + -17.803871154785156 + ], + [ + "麦", + -17.804094314575195 + ], + [ + "ǧ", + -17.804309844970703 + ], + [ + "∎", + -17.804533004760742 + ], + [ + "歐", + -17.805620193481445 + ], + [ + "🔸", + -17.805856704711914 + ], + [ + "忍", + -17.806961059570312 + ], + [ + "抎", + -17.807178497314453 + ], + [ + "ὼ", + -17.808504104614258 + ], + [ + "妻", + -17.808507919311523 + ], + [ + "吾", + -17.810272216796875 + ], + [ + "餅", + -17.810945510864258 + ], + [ + "腿", + -17.81114959716797 + ], + [ + "殿", + -17.811386108398438 + ], + [ + "ᑎ", + -17.812047958374023 + ], + [ + "ሩ", + -17.812271118164062 + ], + [ + "윈", + -17.81249237060547 + ], + [ + "鹿", + -17.81252670288086 + ], + [ + "🌞", + -17.812715530395508 + ], + [ + "🌷", + -17.812936782836914 + ], + [ + "☉", + -17.814048767089844 + ], + [ + "줍", + -17.814939498901367 + ], + [ + "坊", + -17.815227508544922 + ], + [ + "累", + -17.817161560058594 + ], + [ + "펙", + -17.81761360168457 + ], + [ + "恶", + -17.81806182861328 + ], + [ + "陵", + -17.818504333496094 + ], + [ + "☘", + -17.82051658630371 + ], + [ + "桌", + -17.82052230834961 + ], + [ + "暖", + -17.820974349975586 + ], + [ + "纵", + -17.820985794067383 + ], + [ + "柄", + -17.822072982788086 + ], + [ + "雜", + -17.82233428955078 + ], + [ + "秦", + -17.8227596282959 + ], + [ + "銅", + -17.823179244995117 + ], + [ + "🌱", + -17.823209762573242 + ], + [ + "ᐊ", + -17.82365608215332 + ], + [ + "💓", + -17.825231552124023 + ], + [ + "冊", + -17.82590675354004 + ], + [ + "夠", + -17.82615089416504 + ], + [ + "涛", + -17.826807022094727 + ], + [ + "捷", + -17.826812744140625 + ], + [ + "县", + -17.8270320892334 + ], + [ + "枝", + -17.82722282409668 + ], + [ + "ܲ", + -17.82725715637207 + ], + [ + "🎨", + -17.827482223510742 + ], + [ + "豐", + -17.827762603759766 + ], + [ + "ઇ", + -17.828609466552734 + ], + [ + "緩", + -17.829267501831055 + ], + [ + "貝", + -17.829282760620117 + ], + [ + "毫", + -17.829505920410156 + ], + [ + "呀", + -17.829965591430664 + ], + [ + "છ", + -17.83041763305664 + ], + [ + "렵", + -17.831546783447266 + ], + [ + "늄", + -17.832000732421875 + ], + [ + "ֺ", + -17.83449363708496 + ], + [ + "藥", + -17.834716796875 + ], + [ + "墅", + -17.8347225189209 + ], + [ + "པ", + -17.834758758544922 + ], + [ + "Պ", + -17.835176467895508 + ], + [ + "ἕ", + -17.835628509521484 + ], + [ + "腫", + -17.83648681640625 + ], + [ + "๛", + -17.837677001953125 + ], + [ + "₪", + -17.837905883789062 + ], + [ + "浅", + -17.839040756225586 + ], + [ + "͟", + -17.841520309448242 + ], + [ + "캡", + -17.841785430908203 + ], + [ + "⇐", + -17.842241287231445 + ], + [ + "敦", + -17.842241287231445 + ], + [ + "浏", + -17.84247589111328 + ], + [ + "啟", + -17.842927932739258 + ], + [ + "✉", + -17.843385696411133 + ], + [ + "垫", + -17.843738555908203 + ], + [ + "磷", + -17.844072341918945 + ], + [ + "셜", + -17.844074249267578 + ], + [ + "柏", + -17.844079971313477 + ], + [ + "寒", + -17.844989776611328 + ], + [ + "Ή", + -17.845449447631836 + ], + [ + "ថ", + -17.84659194946289 + ], + [ + "픈", + -17.84659767150879 + ], + [ + "柳", + -17.846609115600586 + ], + [ + "汤", + -17.846817016601562 + ], + [ + "拓", + -17.847070693969727 + ], + [ + "ភ", + -17.847280502319336 + ], + [ + "💩", + -17.8475341796875 + ], + [ + "帰", + -17.848312377929688 + ], + [ + "腰", + -17.84889793395996 + ], + [ + "ଶ", + -17.84912872314453 + ], + [ + "😈", + -17.84959602355957 + ], + [ + "杀", + -17.850061416625977 + ], + [ + "剪", + -17.8509578704834 + ], + [ + "酵", + -17.85165023803711 + ], + [ + "낸", + -17.851896286010742 + ], + [ + "仿", + -17.85306739807129 + ], + [ + "찍", + -17.853282928466797 + ], + [ + "짧", + -17.85397720336914 + ], + [ + "ଏ", + -17.854904174804688 + ], + [ + "廳", + -17.855140686035156 + ], + [ + "🎂", + -17.855140686035156 + ], + [ + "鲜", + -17.855146408081055 + ], + [ + "ሊ", + -17.85559844970703 + ], + [ + "ሓ", + -17.85559844970703 + ], + [ + "ܳ", + -17.856063842773438 + ], + [ + "멋", + -17.857221603393555 + ], + [ + "縣", + -17.85791015625 + ], + [ + "腺", + -17.8579158782959 + ], + [ + "砂", + -17.858150482177734 + ], + [ + "稀", + -17.858840942382812 + ], + [ + "ഖ", + -17.858848571777344 + ], + [ + "ܟ", + -17.861879348754883 + ], + [ + "Қ", + -17.862577438354492 + ], + [ + "馈", + -17.863285064697266 + ], + [ + "棚", + -17.863502502441406 + ], + [ + "ሞ", + -17.865617752075195 + ], + [ + "ᒪ", + -17.8658504486084 + ], + [ + "咁", + -17.866085052490234 + ], + [ + "潔", + -17.866586685180664 + ], + [ + "̊", + -17.867835998535156 + ], + [ + "桜", + -17.868419647216797 + ], + [ + "Ẓ", + -17.869369506835938 + ], + [ + "ሲ", + -17.86937141418457 + ], + [ + "縦", + -17.869592666625977 + ], + [ + "ʖ", + -17.869840621948242 + ], + [ + "孟", + -17.871034622192383 + ], + [ + "ଙ", + -17.871490478515625 + ], + [ + "ಎ", + -17.871723175048828 + ], + [ + "努", + -17.87220573425293 + ], + [ + "銆", + -17.87226676940918 + ], + [ + "帽", + -17.873611450195312 + ], + [ + "怕", + -17.873859405517578 + ], + [ + "ヶ", + -17.874086380004883 + ], + [ + "勒", + -17.874359130859375 + ], + [ + "霜", + -17.874549865722656 + ], + [ + "ʋ", + -17.87502670288086 + ], + [ + "٢", + -17.87526512145996 + ], + [ + "슷", + -17.875499725341797 + ], + [ + "퓨", + -17.876447677612305 + ], + [ + "績", + -17.87683868408203 + ], + [ + "겼", + -17.876920700073242 + ], + [ + "陷", + -17.878131866455078 + ], + [ + "擊", + -17.879270553588867 + ], + [ + "룰", + -17.879291534423828 + ], + [ + "晴", + -17.87976837158203 + ], + [ + "寻", + -17.880001068115234 + ], + [ + "剑", + -17.881181716918945 + ], + [ + "鉴", + -17.881196975708008 + ], + [ + "🤘", + -17.881668090820312 + ], + [ + "呵", + -17.88190460205078 + ], + [ + "杉", + -17.88238525390625 + ], + [ + "焊", + -17.88286781311035 + ], + [ + "◀", + -17.883333206176758 + ], + [ + "逻", + -17.884048461914062 + ], + [ + "妙", + -17.884519577026367 + ], + [ + "孫", + -17.884767532348633 + ], + [ + "迹", + -17.885723114013672 + ], + [ + "殖", + -17.886428833007812 + ], + [ + "儀", + -17.886655807495117 + ], + [ + "🌻", + -17.88715934753418 + ], + [ + "👶", + -17.88715934753418 + ], + [ + "侯", + -17.888336181640625 + ], + [ + "顾", + -17.888349533081055 + ], + [ + "眾", + -17.888566970825195 + ], + [ + "删", + -17.889097213745117 + ], + [ + "鈴", + -17.889310836791992 + ], + [ + "煮", + -17.889328002929688 + ], + [ + "촌", + -17.88955307006836 + ], + [ + "僕", + -17.889785766601562 + ], + [ + "蓋", + -17.89000701904297 + ], + [ + "俄", + -17.890283584594727 + ], + [ + "責", + -17.890756607055664 + ], + [ + "溪", + -17.891151428222656 + ], + [ + "🔵", + -17.891231536865234 + ], + [ + "Կ", + -17.893110275268555 + ], + [ + "😥", + -17.89580535888672 + ], + [ + "獻", + -17.89582633972168 + ], + [ + "圍", + -17.896278381347656 + ], + [ + "缝", + -17.896533966064453 + ], + [ + "洁", + -17.896541595458984 + ], + [ + "闲", + -17.897260665893555 + ], + [ + "伦", + -17.897485733032227 + ], + [ + "밴", + -17.89773941040039 + ], + [ + "🗣", + -17.898223876953125 + ], + [ + "浙", + -17.898460388183594 + ], + [ + "ቢ", + -17.898466110229492 + ], + [ + "姆", + -17.899919509887695 + ], + [ + "큐", + -17.900161743164062 + ], + [ + "炉", + -17.900407791137695 + ], + [ + "⏬", + -17.900646209716797 + ], + [ + "钓", + -17.90091323852539 + ], + [ + "挡", + -17.901369094848633 + ], + [ + "蚀", + -17.901371002197266 + ], + [ + "肩", + -17.9025821685791 + ], + [ + "ܚ", + -17.902587890625 + ], + [ + "勉", + -17.903305053710938 + ], + [ + "콩", + -17.903560638427734 + ], + [ + "🇭", + -17.90379524230957 + ], + [ + "僅", + -17.904552459716797 + ], + [ + "靴", + -17.90501594543457 + ], + [ + "😞", + -17.905508041381836 + ], + [ + "ଭ", + -17.905752182006836 + ], + [ + "芬", + -17.90663719177246 + ], + [ + "肪", + -17.907161712646484 + ], + [ + "ΐ", + -17.907215118408203 + ], + [ + "燒", + -17.91014862060547 + ], + [ + "낼", + -17.9106388092041 + ], + [ + "🎈", + -17.9106388092041 + ], + [ + "👈", + -17.911619186401367 + ], + [ + "嘅", + -17.9121036529541 + ], + [ + "伏", + -17.912355422973633 + ], + [ + "叉", + -17.91240692138672 + ], + [ + "雞", + -17.913145065307617 + ], + [ + "ձ", + -17.91431999206543 + ], + [ + "엑", + -17.915796279907227 + ], + [ + "劃", + -17.91579818725586 + ], + [ + "庄", + -17.91653060913086 + ], + [ + "꿈", + -17.916534423828125 + ], + [ + "凯", + -17.91677474975586 + ], + [ + "渉", + -17.91699981689453 + ], + [ + "瓦", + -17.917024612426758 + ], + [ + "ȧ", + -17.917274475097656 + ], + [ + "糕", + -17.917524337768555 + ], + [ + "歳", + -17.917762756347656 + ], + [ + "ൃ", + -17.91826057434082 + ], + [ + "險", + -17.918495178222656 + ], + [ + "翔", + -17.919994354248047 + ], + [ + "聘", + -17.921478271484375 + ], + [ + "扰", + -17.92150115966797 + ], + [ + "ぞ", + -17.922550201416016 + ], + [ + "剥", + -17.92269515991211 + ], + [ + "⚪", + -17.923704147338867 + ], + [ + "ᴘ", + -17.92494773864746 + ], + [ + "🌍", + -17.92494773864746 + ], + [ + "抱", + -17.926433563232422 + ], + [ + "ቤ", + -17.92743682861328 + ], + [ + "Ί", + -17.927684783935547 + ], + [ + "絕", + -17.928163528442383 + ], + [ + "佈", + -17.92945098876953 + ], + [ + "밥", + -17.930179595947266 + ], + [ + "묘", + -17.930429458618164 + ], + [ + "幹", + -17.93242073059082 + ], + [ + "겁", + -17.93292999267578 + ], + [ + "ぬ", + -17.932931900024414 + ], + [ + "岐", + -17.93465805053711 + ], + [ + "փ", + -17.9346866607666 + ], + [ + "ժ", + -17.9349365234375 + ], + [ + "斌", + -17.93514060974121 + ], + [ + "ἦ", + -17.93518829345703 + ], + [ + "륨", + -17.93543815612793 + ], + [ + "脳", + -17.935672760009766 + ], + [ + "💀", + -17.935945510864258 + ], + [ + "ຽ", + -17.935949325561523 + ], + [ + "ෆ", + -17.936946868896484 + ], + [ + "賢", + -17.937705993652344 + ], + [ + "酷", + -17.938434600830078 + ], + [ + "鄭", + -17.9387264251709 + ], + [ + "践", + -17.938976287841797 + ], + [ + "輯", + -17.93971824645996 + ], + [ + "ܥ", + -17.940221786499023 + ], + [ + "詢", + -17.940467834472656 + ], + [ + "児", + -17.941476821899414 + ], + [ + "瓶", + -17.942495346069336 + ], + [ + "蓮", + -17.942794799804688 + ], + [ + "豊", + -17.9429931640625 + ], + [ + "谁", + -17.943002700805664 + ], + [ + "爸", + -17.945032119750977 + ], + [ + "膠", + -17.945280075073242 + ], + [ + "💦", + -17.945280075073242 + ], + [ + "恢", + -17.947315216064453 + ], + [ + "竞", + -17.947593688964844 + ], + [ + "뜨", + -17.947818756103516 + ], + [ + "踪", + -17.9486026763916 + ], + [ + "듣", + -17.9490909576416 + ], + [ + "芸", + -17.949100494384766 + ], + [ + "嘴", + -17.949853897094727 + ], + [ + "裁", + -17.950105667114258 + ], + [ + "돼", + -17.95010757446289 + ], + [ + "劣", + -17.950607299804688 + ], + [ + "ϩ", + -17.951383590698242 + ], + [ + "衍", + -17.952159881591797 + ], + [ + "ҡ", + -17.95291519165039 + ], + [ + "ް", + -17.95317268371582 + ], + [ + "팁", + -17.953426361083984 + ], + [ + "勤", + -17.953948974609375 + ], + [ + "끌", + -17.954195022583008 + ], + [ + "崇", + -17.95475959777832 + ], + [ + "険", + -17.95572853088379 + ], + [ + "芽", + -17.960079193115234 + ], + [ + "덤", + -17.96009635925293 + ], + [ + "災", + -17.960357666015625 + ], + [ + "坏", + -17.96062660217285 + ], + [ + "碎", + -17.960819244384766 + ], + [ + "빔", + -17.961383819580078 + ], + [ + "徳", + -17.96164321899414 + ], + [ + "ኖ", + -17.962158203125 + ], + [ + "🦄", + -17.962181091308594 + ], + [ + "誕", + -17.962413787841797 + ], + [ + "Ṛ", + -17.96241569519043 + ], + [ + "֥", + -17.96293067932129 + ], + [ + "剖", + -17.962947845458984 + ], + [ + "迟", + -17.963726043701172 + ], + [ + "̧", + -17.964397430419922 + ], + [ + "쌍", + -17.964481353759766 + ], + [ + "廠", + -17.964738845825195 + ], + [ + "迫", + -17.964744567871094 + ], + [ + "힌", + -17.964998245239258 + ], + [ + "姓", + -17.96525001525879 + ], + [ + "➨", + -17.96551513671875 + ], + [ + "鹏", + -17.96551513671875 + ], + [ + "拷", + -17.96619987487793 + ], + [ + "ɬ", + -17.967069625854492 + ], + [ + "釋", + -17.967844009399414 + ], + [ + "Ĉ", + -17.969144821166992 + ], + [ + "擎", + -17.969924926757812 + ], + [ + "ܣ", + -17.97044563293457 + ], + [ + "😒", + -17.970983505249023 + ], + [ + "毕", + -17.972522735595703 + ], + [ + "Ė", + -17.97304916381836 + ], + [ + "驚", + -17.973304748535156 + ], + [ + "鼻", + -17.973539352416992 + ], + [ + "愿", + -17.97357940673828 + ], + [ + "狭", + -17.97407341003418 + ], + [ + "젠", + -17.974092483520508 + ], + [ + "ῥ", + -17.974353790283203 + ], + [ + "✴", + -17.97513771057129 + ], + [ + "歲", + -17.975387573242188 + ], + [ + "妝", + -17.977230072021484 + ], + [ + "沖", + -17.977493286132812 + ], + [ + "蜜", + -17.977750778198242 + ], + [ + "ጽ", + -17.97801399230957 + ], + [ + "ဥ", + -17.978275299072266 + ], + [ + "霞", + -17.97880744934082 + ], + [ + "罩", + -17.979061126708984 + ], + [ + "邀", + -17.97985076904297 + ], + [ + "🇱", + -17.97985076904297 + ], + [ + "冒", + -17.98038101196289 + ], + [ + "▭", + -17.98040771484375 + ], + [ + "桑", + -17.980648040771484 + ], + [ + "盡", + -17.98141098022461 + ], + [ + "갔", + -17.982742309570312 + ], + [ + "ᾳ", + -17.98300552368164 + ], + [ + "춤", + -17.98326873779297 + ], + [ + "ܦ", + -17.984060287475586 + ], + [ + "펴", + -17.984323501586914 + ], + [ + "痴", + -17.984848022460938 + ], + [ + "遗", + -17.984853744506836 + ], + [ + "̿", + -17.987821578979492 + ], + [ + "ǰ", + -17.988550186157227 + ], + [ + "▢", + -17.98961067199707 + ], + [ + "🎃", + -17.98961067199707 + ], + [ + "圳", + -17.989879608154297 + ], + [ + "🍃", + -17.990398406982422 + ], + [ + "🤓", + -17.990671157836914 + ], + [ + "苗", + -17.991220474243164 + ], + [ + "┌", + -17.99135398864746 + ], + [ + "ጉ", + -17.991466522216797 + ], + [ + "씀", + -17.99173355102539 + ], + [ + "娜", + -17.991836547851562 + ], + [ + "緒", + -17.99226188659668 + ], + [ + "▾", + -17.99247932434082 + ], + [ + "圓", + -17.99309539794922 + ], + [ + "👻", + -17.993595123291016 + ], + [ + "🇰", + -17.99492645263672 + ], + [ + "팩", + -17.995193481445312 + ], + [ + "짝", + -17.995458602905273 + ], + [ + "竟", + -17.995466232299805 + ], + [ + "泛", + -17.996286392211914 + ], + [ + "넥", + -17.99652671813965 + ], + [ + "Ọ", + -17.997325897216797 + ], + [ + "辰", + -17.997798919677734 + ], + [ + "沟", + -17.99812126159668 + ], + [ + "拥", + -17.99837303161621 + ], + [ + "👎", + -17.998384475708008 + ], + [ + "埃", + -17.99972152709961 + ], + [ + "艦", + -18.000534057617188 + ], + [ + "ĥ", + -18.00080680847168 + ], + [ + "臓", + -18.001056671142578 + ], + [ + "ꞌ", + -18.001609802246094 + ], + [ + "ੜ", + -18.00187873840332 + ], + [ + "ዩ", + -18.00187873840332 + ], + [ + "🦋", + -18.003219604492188 + ], + [ + "😲", + -18.004297256469727 + ], + [ + "饮", + -18.004308700561523 + ], + [ + "遍", + -18.004777908325195 + ], + [ + "ຖ", + -18.004840850830078 + ], + [ + "벗", + -18.005104064941406 + ], + [ + "钮", + -18.005659103393555 + ], + [ + "亭", + -18.00644874572754 + ], + [ + "뛰", + -18.006452560424805 + ], + [ + "荒", + -18.006996154785156 + ], + [ + "Ἐ", + -18.007801055908203 + ], + [ + "償", + -18.00818634033203 + ], + [ + "酰", + -18.008291244506836 + ], + [ + "贼", + -18.01021957397461 + ], + [ + "扇", + -18.010238647460938 + ], + [ + "搞", + -18.010303497314453 + ], + [ + "掃", + -18.010501861572266 + ], + [ + "밸", + -18.011043548583984 + ], + [ + "兲", + -18.011314392089844 + ], + [ + "棋", + -18.0115909576416 + ], + [ + "ೈ", + -18.012126922607422 + ], + [ + "ᖅ", + -18.012670516967773 + ], + [ + "夕", + -18.012941360473633 + ], + [ + "袖", + -18.01321792602539 + ], + [ + "⊇", + -18.013484954833984 + ], + [ + "卻", + -18.01514434814453 + ], + [ + "🙃", + -18.0153865814209 + ], + [ + "睇", + -18.01538848876953 + ], + [ + "競", + -18.016510009765625 + ], + [ + "払", + -18.017269134521484 + ], + [ + "恵", + -18.017837524414062 + ], + [ + "⌥", + -18.01947593688965 + ], + [ + "懂", + -18.020570755004883 + ], + [ + "炒", + -18.020666122436523 + ], + [ + "岳", + -18.021089553833008 + ], + [ + "♔", + -18.021114349365234 + ], + [ + "敵", + -18.021921157836914 + ], + [ + "९", + -18.022483825683594 + ], + [ + "ဗ", + -18.024677276611328 + ], + [ + "婆", + -18.02503204345703 + ], + [ + "봇", + -18.025226593017578 + ], + [ + "苷", + -18.025508880615234 + ], + [ + "寬", + -18.025524139404297 + ], + [ + "၁", + -18.026599884033203 + ], + [ + "宫", + -18.026884078979492 + ], + [ + "究", + -18.027294158935547 + ], + [ + "働", + -18.029621124267578 + ], + [ + "輔", + -18.029897689819336 + ], + [ + "멤", + -18.030183792114258 + ], + [ + "諸", + -18.030466079711914 + ], + [ + "慈", + -18.03154945373535 + ], + [ + "綠", + -18.031848907470703 + ], + [ + "🏃", + -18.032394409179688 + ], + [ + "ܶ", + -18.03239631652832 + ], + [ + "郡", + -18.03239631652832 + ], + [ + "闪", + -18.032684326171875 + ], + [ + "昆", + -18.03350067138672 + ], + [ + "둔", + -18.034055709838867 + ], + [ + "瓜", + -18.034069061279297 + ], + [ + "冇", + -18.034334182739258 + ], + [ + "舍", + -18.03485870361328 + ], + [ + "👆", + -18.03571891784668 + ], + [ + "⇢", + -18.03599739074707 + ], + [ + "栋", + -18.035999298095703 + ], + [ + "戀", + -18.037111282348633 + ], + [ + "ಥ", + -18.037662506103516 + ], + [ + "७", + -18.03794288635254 + ], + [ + "ሽ", + -18.03822135925293 + ], + [ + "옷", + -18.03849983215332 + ], + [ + "挥", + -18.03879165649414 + ], + [ + "刑", + -18.039037704467773 + ], + [ + "⫽", + -18.039335250854492 + ], + [ + "Ԍ", + -18.040729522705078 + ], + [ + "肠", + -18.040733337402344 + ], + [ + "핸", + -18.041845321655273 + ], + [ + "💁", + -18.042125701904297 + ], + [ + "̌", + -18.04291343688965 + ], + [ + "ኑ", + -18.043243408203125 + ], + [ + "舉", + -18.04353141784668 + ], + [ + "荧", + -18.044389724731445 + ], + [ + "衰", + -18.044635772705078 + ], + [ + "🤖", + -18.046606063842773 + ], + [ + "雖", + -18.0468807220459 + ], + [ + "彭", + -18.047704696655273 + ], + [ + "歸", + -18.049407958984375 + ], + [ + "敗", + -18.050249099731445 + ], + [ + "숨", + -18.051105499267578 + ], + [ + "紋", + -18.05169105529785 + ], + [ + "ɫ", + -18.05223274230957 + ], + [ + "偿", + -18.052257537841797 + ], + [ + "艳", + -18.053083419799805 + ], + [ + "꺼", + -18.05364418029785 + ], + [ + "̤", + -18.054746627807617 + ], + [ + "📢", + -18.055625915527344 + ], + [ + "ঞ", + -18.055908203125 + ], + [ + "ἅ", + -18.055910110473633 + ], + [ + "🇫", + -18.056474685668945 + ], + [ + "ܗ", + -18.057043075561523 + ], + [ + "喔", + -18.05817985534668 + ], + [ + "妖", + -18.05953598022461 + ], + [ + "앤", + -18.06159019470215 + ], + [ + "ഈ", + -18.061874389648438 + ], + [ + "릉", + -18.063295364379883 + ], + [ + "菊", + -18.064163208007812 + ], + [ + "뭐", + -18.064441680908203 + ], + [ + "怒", + -18.064725875854492 + ], + [ + "叔", + -18.065288543701172 + ], + [ + "┼", + -18.066444396972656 + ], + [ + "潘", + -18.066730499267578 + ], + [ + "檛", + -18.067588806152344 + ], + [ + "ܩ", + -18.06816291809082 + ], + [ + "倾", + -18.06816291809082 + ], + [ + "❧", + -18.068449020385742 + ], + [ + "☻", + -18.06901741027832 + ], + [ + "ଳ", + -18.06988525390625 + ], + [ + "拢", + -18.071321487426758 + ], + [ + "偉", + -18.071678161621094 + ], + [ + "랩", + -18.071897506713867 + ], + [ + "卸", + -18.072113037109375 + ], + [ + "燈", + -18.07247543334961 + ], + [ + "ఫ", + -18.0727596282959 + ], + [ + "🎬", + -18.07276153564453 + ], + [ + "宙", + -18.0732364654541 + ], + [ + "Ꮃ", + -18.073915481567383 + ], + [ + "恭", + -18.073925018310547 + ], + [ + "🔊", + -18.074203491210938 + ], + [ + "偽", + -18.075069427490234 + ], + [ + "ӣ", + -18.076801300048828 + ], + [ + "瀬", + -18.07708168029785 + ], + [ + "诚", + -18.077089309692383 + ], + [ + "६", + -18.077091217041016 + ], + [ + "Վ", + -18.078250885009766 + ], + [ + "媚", + -18.078250885009766 + ], + [ + "▐", + -18.079456329345703 + ], + [ + "臭", + -18.080549240112305 + ], + [ + "렛", + -18.080568313598633 + ], + [ + "锚", + -18.080862045288086 + ], + [ + "웠", + -18.081439971923828 + ], + [ + "ஓ", + -18.08173179626465 + ], + [ + "둥", + -18.082313537597656 + ], + [ + "忆", + -18.082904815673828 + ], + [ + "ॐ", + -18.083477020263672 + ], + [ + "🌼", + -18.083477020263672 + ], + [ + "藉", + -18.08457374572754 + ], + [ + "゙", + -18.08464241027832 + ], + [ + "弯", + -18.085405349731445 + ], + [ + "ʈ", + -18.08551788330078 + ], + [ + "͛", + -18.087257385253906 + ], + [ + "އ", + -18.087562561035156 + ], + [ + "熔", + -18.087858200073242 + ], + [ + "梯", + -18.08875274658203 + ], + [ + "Ư", + -18.089317321777344 + ], + [ + "滅", + -18.090177536010742 + ], + [ + "낭", + -18.09225082397461 + ], + [ + "ެ", + -18.092546463012695 + ], + [ + "氟", + -18.093996047973633 + ], + [ + "萄", + -18.0946044921875 + ], + [ + "梨", + -18.095190048217773 + ], + [ + "劳", + -18.096092224121094 + ], + [ + "🏴", + -18.096961975097656 + ], + [ + "舊", + -18.09696388244629 + ], + [ + "뇨", + -18.097551345825195 + ], + [ + "札", + -18.099143981933594 + ], + [ + "遷", + -18.100502014160156 + ], + [ + "晨", + -18.10051918029785 + ], + [ + "锋", + -18.100683212280273 + ], + [ + "簧", + -18.101423263549805 + ], + [ + "炸", + -18.10169792175293 + ], + [ + "緑", + -18.101974487304688 + ], + [ + "̮", + -18.10225486755371 + ], + [ + "縺", + -18.10272789001465 + ], + [ + "봤", + -18.102880477905273 + ], + [ + "ˍ", + -18.10370635986328 + ], + [ + "抓", + -18.103776931762695 + ], + [ + "ヲ", + -18.104032516479492 + ], + [ + "̡", + -18.104066848754883 + ], + [ + "爭", + -18.104677200317383 + ], + [ + "繼", + -18.104930877685547 + ], + [ + "阈", + -18.105255126953125 + ], + [ + "ฎ", + -18.105260848999023 + ], + [ + "肿", + -18.1064453125 + ], + [ + "❓", + -18.1064510345459 + ], + [ + "챔", + -18.106748580932617 + ], + [ + "姜", + -18.107057571411133 + ], + [ + "🇩", + -18.107341766357422 + ], + [ + "ፋ", + -18.107641220092773 + ], + [ + "ګ", + -18.108238220214844 + ], + [ + "Ť", + -18.109134674072266 + ], + [ + "ଥ", + -18.109434127807617 + ], + [ + "蜂", + -18.11018180847168 + ], + [ + "寧", + -18.110898971557617 + ], + [ + "杭", + -18.11212921142578 + ], + [ + "ἢ", + -18.11272621154785 + ], + [ + "⏩", + -18.113025665283203 + ], + [ + "📲", + -18.113624572753906 + ], + [ + "怀", + -18.113630294799805 + ], + [ + "齊", + -18.113954544067383 + ], + [ + "斑", + -18.11420249938965 + ], + [ + "灌", + -18.114540100097656 + ], + [ + "泊", + -18.114566802978516 + ], + [ + "๕", + -18.116029739379883 + ], + [ + "ᄋ", + -18.116029739379883 + ], + [ + "抄", + -18.11634063720703 + ], + [ + "呂", + -18.117534637451172 + ], + [ + "ϋ", + -18.11874008178711 + ], + [ + "旭", + -18.119028091430664 + ], + [ + "🍷", + -18.119644165039062 + ], + [ + "ຼ", + -18.120861053466797 + ], + [ + "鎮", + -18.12118148803711 + ], + [ + "ᐃ", + -18.1214542388916 + ], + [ + "Ꮋ", + -18.121458053588867 + ], + [ + "铃", + -18.122041702270508 + ], + [ + "˃", + -18.123882293701172 + ], + [ + "瞬", + -18.123882293701172 + ], + [ + "Ꮤ", + -18.125093460083008 + ], + [ + "怡", + -18.125701904296875 + ], + [ + "枠", + -18.125959396362305 + ], + [ + "멸", + -18.12630844116211 + ], + [ + "ḗ", + -18.126611709594727 + ], + [ + "棄", + -18.126617431640625 + ], + [ + "虹", + -18.12714195251465 + ], + [ + "Į", + -18.127222061157227 + ], + [ + "剣", + -18.127521514892578 + ], + [ + "净", + -18.12845230102539 + ], + [ + "ఈ", + -18.129657745361328 + ], + [ + "̞", + -18.129907608032227 + ], + [ + "♨", + -18.130266189575195 + ], + [ + "🍕", + -18.13058853149414 + ], + [ + "எ", + -18.130840301513672 + ], + [ + "섯", + -18.130876541137695 + ], + [ + "ဇ", + -18.131181716918945 + ], + [ + "◘", + -18.131181716918945 + ], + [ + "般", + -18.13173484802246 + ], + [ + "胃", + -18.131799697875977 + ], + [ + "屆", + -18.133005142211914 + ], + [ + "ផ", + -18.133007049560547 + ], + [ + "💍", + -18.133323669433594 + ], + [ + "➝", + -18.133934020996094 + ], + [ + "毅", + -18.134227752685547 + ], + [ + "竜", + -18.13485336303711 + ], + [ + "뮬", + -18.134855270385742 + ], + [ + "ඹ", + -18.135160446166992 + ], + [ + "≲", + -18.135160446166992 + ], + [ + "汁", + -18.135160446166992 + ], + [ + "ಠ", + -18.13608169555664 + ], + [ + "깔", + -18.136693954467773 + ], + [ + "⏰", + -18.136695861816406 + ], + [ + "ෘ", + -18.138538360595703 + ], + [ + "̆", + -18.138778686523438 + ], + [ + "🥀", + -18.1403865814209 + ], + [ + "̔", + -18.141550064086914 + ], + [ + "ৈ", + -18.142236709594727 + ], + [ + "壤", + -18.142244338989258 + ], + [ + "😯", + -18.1431884765625 + ], + [ + "铝", + -18.143442153930664 + ], + [ + "ឹ", + -18.143444061279297 + ], + [ + "柴", + -18.144380569458008 + ], + [ + "ʉ", + -18.14440155029297 + ], + [ + "🎧", + -18.14440155029297 + ], + [ + "盆", + -18.144712448120117 + ], + [ + "婦", + -18.14471435546875 + ], + [ + "巾", + -18.145322799682617 + ], + [ + "끔", + -18.14533042907715 + ], + [ + "戒", + -18.14580726623535 + ], + [ + "🎤", + -18.147192001342773 + ], + [ + "憲", + -18.147716522216797 + ], + [ + "♕", + -18.149364471435547 + ], + [ + "ඟ", + -18.149677276611328 + ], + [ + "॰", + -18.15154457092285 + ], + [ + "臣", + -18.151803970336914 + ], + [ + "萍", + -18.152475357055664 + ], + [ + "🎅", + -18.153417587280273 + ], + [ + "败", + -18.15342903137207 + ], + [ + "畢", + -18.154033660888672 + ], + [ + "滚", + -18.154693603515625 + ], + [ + "润", + -18.155920028686523 + ], + [ + "逸", + -18.156848907470703 + ], + [ + "靜", + -18.15711784362793 + ], + [ + "┘", + -18.157155990600586 + ], + [ + "Բ", + -18.15717124938965 + ], + [ + "碟", + -18.158117294311523 + ], + [ + "ʙ", + -18.15843963623047 + ], + [ + "ĵ", + -18.159053802490234 + ], + [ + "맹", + -18.159366607666016 + ], + [ + "铜", + -18.15936851501465 + ], + [ + "짓", + -18.161252975463867 + ], + [ + "Ů", + -18.163143157958984 + ], + [ + "֖", + -18.163143157958984 + ], + [ + "ኤ", + -18.16345977783203 + ], + [ + "쁜", + -18.163772583007812 + ], + [ + "烤", + -18.164424896240234 + ], + [ + "锐", + -18.165042877197266 + ], + [ + "惑", + -18.16567611694336 + ], + [ + "ۡ", + -18.16661834716797 + ], + [ + "泵", + -18.16661834716797 + ], + [ + "曝", + -18.1666202545166 + ], + [ + "औ", + -18.167253494262695 + ], + [ + "孤", + -18.167577743530273 + ], + [ + "苑", + -18.167884826660156 + ], + [ + "审", + -18.16915512084961 + ], + [ + "ʎ", + -18.16978645324707 + ], + [ + "ฒ", + -18.169790267944336 + ], + [ + "믹", + -18.170421600341797 + ], + [ + "琳", + -18.17137908935547 + ], + [ + "旁", + -18.172359466552734 + ], + [ + "顕", + -18.172561645507812 + ], + [ + "🍂", + -18.173603057861328 + ], + [ + "ຢ", + -18.174251556396484 + ], + [ + "ฯ", + -18.17519760131836 + ], + [ + "壊", + -18.176002502441406 + ], + [ + "琀", + -18.176166534423828 + ], + [ + "ଅ", + -18.17647361755371 + ], + [ + "Ả", + -18.177433013916016 + ], + [ + "ኩ", + -18.179035186767578 + ], + [ + "ᑕ", + -18.179353713989258 + ], + [ + "⊃", + -18.179996490478516 + ], + [ + "﷽", + -18.18067741394043 + ], + [ + "脊", + -18.180950164794922 + ], + [ + "씬", + -18.180957794189453 + ], + [ + "懷", + -18.181608200073242 + ], + [ + "🐍", + -18.181861877441406 + ], + [ + "🚫", + -18.181921005249023 + ], + [ + "姚", + -18.182537078857422 + ], + [ + "₱", + -18.182863235473633 + ], + [ + "💘", + -18.18288803100586 + ], + [ + "ぽ", + -18.18352508544922 + ], + [ + "̕", + -18.18384552001953 + ], + [ + "猪", + -18.184490203857422 + ], + [ + "祐", + -18.185138702392578 + ], + [ + "逃", + -18.185462951660156 + ], + [ + "噪", + -18.185470581054688 + ], + [ + "滨", + -18.185791015625 + ], + [ + "ዛ", + -18.186429977416992 + ], + [ + "룸", + -18.18836784362793 + ], + [ + "╣", + -18.188655853271484 + ], + [ + "赖", + -18.189023971557617 + ], + [ + "遙", + -18.18966293334961 + ], + [ + "💧", + -18.190311431884766 + ], + [ + "募", + -18.190635681152344 + ], + [ + "鄉", + -18.19064712524414 + ], + [ + "釈", + -18.190914154052734 + ], + [ + "捉", + -18.191923141479492 + ], + [ + "塚", + -18.19192886352539 + ], + [ + "莊", + -18.19266128540039 + ], + [ + "飽", + -18.19321632385254 + ], + [ + "⚓", + -18.19322967529297 + ], + [ + "谓", + -18.19356346130371 + ], + [ + "쾌", + -18.193880081176758 + ], + [ + "၂", + -18.19420623779297 + ], + [ + "隻", + -18.19453239440918 + ], + [ + "墙", + -18.1948299407959 + ], + [ + "糊", + -18.194862365722656 + ], + [ + "膝", + -18.196155548095703 + ], + [ + "悲", + -18.196487426757812 + ], + [ + "ᒃ", + -18.196809768676758 + ], + [ + "傍", + -18.197084426879883 + ], + [ + "袁", + -18.19713592529297 + ], + [ + "✶", + -18.197463989257812 + ], + [ + "傑", + -18.197786331176758 + ], + [ + "🎀", + -18.197790145874023 + ], + [ + "듀", + -18.198116302490234 + ], + [ + "霊", + -18.19877052307129 + ], + [ + "咪", + -18.199098587036133 + ], + [ + "碱", + -18.19910430908203 + ], + [ + "煤", + -18.19912338256836 + ], + [ + "奉", + -18.200389862060547 + ], + [ + "닉", + -18.20040512084961 + ], + [ + "ଚ", + -18.201059341430664 + ], + [ + "Ķ", + -18.201387405395508 + ], + [ + "ި", + -18.201717376708984 + ], + [ + "丘", + -18.20204734802246 + ], + [ + "Լ", + -18.20237159729004 + ], + [ + "阁", + -18.204343795776367 + ], + [ + "趋", + -18.204710006713867 + ], + [ + "͇", + -18.20672035217285 + ], + [ + "ਥ", + -18.206972122192383 + ], + [ + "瑜", + -18.207908630371094 + ], + [ + "傅", + -18.20821189880371 + ], + [ + "ճ", + -18.20829200744629 + ], + [ + "鍋", + -18.208383560180664 + ], + [ + "ֆ", + -18.208616256713867 + ], + [ + "៉", + -18.208620071411133 + ], + [ + "账", + -18.20895004272461 + ], + [ + "滋", + -18.20960807800293 + ], + [ + "虛", + -18.210153579711914 + ], + [ + "鳳", + -18.21025848388672 + ], + [ + "窓", + -18.2105770111084 + ], + [ + "弓", + -18.210594177246094 + ], + [ + "坚", + -18.210603713989258 + ], + [ + "鳴", + -18.210912704467773 + ], + [ + "堡", + -18.211265563964844 + ], + [ + "坛", + -18.211593627929688 + ], + [ + "揚", + -18.212244033813477 + ], + [ + "嚴", + -18.21394920349121 + ], + [ + "ʂ", + -18.21491050720215 + ], + [ + "旺", + -18.21524429321289 + ], + [ + "ኮ", + -18.215574264526367 + ], + [ + "།", + -18.21756935119629 + ], + [ + "抦", + -18.21823501586914 + ], + [ + "ቡ", + -18.218568801879883 + ], + [ + "肢", + -18.218608856201172 + ], + [ + "煙", + -18.218666076660156 + ], + [ + "ܼ", + -18.21923828125 + ], + [ + "칸", + -18.220905303955078 + ], + [ + "寝", + -18.221235275268555 + ], + [ + "ጵ", + -18.221572875976562 + ], + [ + "鉛", + -18.222875595092773 + ], + [ + "ҷ", + -18.223581314086914 + ], + [ + "疆", + -18.224185943603516 + ], + [ + "쳤", + -18.22626304626465 + ], + [ + "Ƀ", + -18.226608276367188 + ], + [ + "✝", + -18.22856330871582 + ], + [ + "ଷ", + -18.228954315185547 + ], + [ + "횡", + -18.228954315185547 + ], + [ + "ު", + -18.22895622253418 + ], + [ + "訴", + -18.228973388671875 + ], + [ + "ਏ", + -18.229965209960938 + ], + [ + "✕", + -18.23198699951172 + ], + [ + "룩", + -18.23198890686035 + ], + [ + "땅", + -18.233003616333008 + ], + [ + "渋", + -18.233667373657227 + ], + [ + "₽", + -18.233680725097656 + ], + [ + "ຜ", + -18.234027862548828 + ], + [ + "ˉ", + -18.23469352722168 + ], + [ + "ቻ", + -18.234695434570312 + ], + [ + "悟", + -18.23503303527832 + ], + [ + "浆", + -18.23504066467285 + ], + [ + "롬", + -18.236051559448242 + ], + [ + "֣", + -18.236730575561523 + ], + [ + "彈", + -18.238540649414062 + ], + [ + "趙", + -18.238697052001953 + ], + [ + "诺", + -18.238792419433594 + ], + [ + "腸", + -18.239768981933594 + ], + [ + "➚", + -18.241493225097656 + ], + [ + "丈", + -18.241819381713867 + ], + [ + "泽", + -18.241846084594727 + ], + [ + "✽", + -18.242515563964844 + ], + [ + "疏", + -18.24319839477539 + ], + [ + "킴", + -18.244565963745117 + ], + [ + "錶", + -18.24456787109375 + ], + [ + "栓", + -18.246938705444336 + ], + [ + "惡", + -18.24694061279297 + ], + [ + "곱", + -18.246963500976562 + ], + [ + "ஐ", + -18.246965408325195 + ], + [ + "빅", + -18.24730682373047 + ], + [ + "숫", + -18.248336791992188 + ], + [ + "▮", + -18.24868392944336 + ], + [ + "அ", + -18.24936866760254 + ], + [ + "淨", + -18.249420166015625 + ], + [ + "젤", + -18.25005531311035 + ], + [ + "疲", + -18.250741958618164 + ], + [ + "😻", + -18.250755310058594 + ], + [ + "ഏ", + -18.251083374023438 + ], + [ + "姫", + -18.25235366821289 + ], + [ + "➳", + -18.252809524536133 + ], + [ + "Ċ", + -18.253156661987305 + ], + [ + "곧", + -18.25384521484375 + ], + [ + "⋮", + -18.257596969604492 + ], + [ + "🍁", + -18.25834083557129 + ], + [ + "๗", + -18.259037017822266 + ], + [ + "舌", + -18.259363174438477 + ], + [ + "ዶ", + -18.26007843017578 + ], + [ + "⎜", + -18.2607421875 + ], + [ + "꼬", + -18.26112174987793 + ], + [ + "🐝", + -18.261417388916016 + ], + [ + "␣", + -18.26148796081543 + ], + [ + "薩", + -18.26177978515625 + ], + [ + "卒", + -18.261817932128906 + ], + [ + "蛇", + -18.262147903442383 + ], + [ + "敷", + -18.264244079589844 + ], + [ + "凍", + -18.26493263244629 + ], + [ + "ਫ", + -18.265302658081055 + ], + [ + "థ", + -18.265302658081055 + ], + [ + "펌", + -18.265302658081055 + ], + [ + "奧", + -18.266677856445312 + ], + [ + "废", + -18.267745971679688 + ], + [ + "撒", + -18.268104553222656 + ], + [ + "貸", + -18.268798828125 + ], + [ + "🐻", + -18.268802642822266 + ], + [ + "麥", + -18.26915168762207 + ], + [ + "痫", + -18.27020263671875 + ], + [ + "즌", + -18.27055549621582 + ], + [ + "ኝ", + -18.271608352661133 + ], + [ + "乌", + -18.272674560546875 + ], + [ + "舰", + -18.272855758666992 + ], + [ + "╬", + -18.27301788330078 + ], + [ + "ὔ", + -18.27336883544922 + ], + [ + "霉", + -18.273502349853516 + ], + [ + "Ḡ", + -18.273719787597656 + ], + [ + "顏", + -18.274084091186523 + ], + [ + "ሱ", + -18.274425506591797 + ], + [ + "ܓ", + -18.275129318237305 + ], + [ + "헬", + -18.275482177734375 + ], + [ + "萌", + -18.27724266052246 + ], + [ + "✡", + -18.27724838256836 + ], + [ + "腾", + -18.277254104614258 + ], + [ + "💬", + -18.277956008911133 + ], + [ + "巡", + -18.277963638305664 + ], + [ + "闘", + -18.278657913208008 + ], + [ + "🏀", + -18.27901840209961 + ], + [ + "ሌ", + -18.27972412109375 + ], + [ + "愀", + -18.27972984313965 + ], + [ + "잎", + -18.280433654785156 + ], + [ + "↦", + -18.28078842163086 + ], + [ + "쇠", + -18.28078842163086 + ], + [ + "ဦ", + -18.282920837402344 + ], + [ + "ጀ", + -18.28363037109375 + ], + [ + "栄", + -18.283634185791016 + ], + [ + "₡", + -18.284696578979492 + ], + [ + "▴", + -18.284696578979492 + ], + [ + "兆", + -18.28502655029297 + ], + [ + "酮", + -18.285032272338867 + ], + [ + "✂", + -18.285053253173828 + ], + [ + "娟", + -18.285409927368164 + ], + [ + "덴", + -18.287193298339844 + ], + [ + "₫", + -18.287195205688477 + ], + [ + "✱", + -18.288265228271484 + ], + [ + "烏", + -18.2890625 + ], + [ + "匯", + -18.289695739746094 + ], + [ + "雕", + -18.290395736694336 + ], + [ + "淘", + -18.290416717529297 + ], + [ + "賓", + -18.291484832763672 + ], + [ + "仰", + -18.292190551757812 + ], + [ + "堅", + -18.292198181152344 + ], + [ + "歪", + -18.29290008544922 + ], + [ + "廷", + -18.29292106628418 + ], + [ + "漀", + -18.292930603027344 + ], + [ + "☮", + -18.29327964782715 + ], + [ + "悬", + -18.29364776611328 + ], + [ + "蔽", + -18.294017791748047 + ], + [ + "辽", + -18.294349670410156 + ], + [ + "汪", + -18.294363021850586 + ], + [ + "̑", + -18.29498863220215 + ], + [ + "召", + -18.295764923095703 + ], + [ + "ቁ", + -18.29579734802246 + ], + [ + "ሙ", + -18.297237396240234 + ], + [ + "钻", + -18.297603607177734 + ], + [ + "髮", + -18.29836654663086 + ], + [ + "淋", + -18.298669815063477 + ], + [ + "ぷ", + -18.299041748046875 + ], + [ + "🤤", + -18.29976463317871 + ], + [ + "葛", + -18.300851821899414 + ], + [ + "🌲", + -18.300851821899414 + ], + [ + "貓", + -18.30120277404785 + ], + [ + "癫", + -18.30193328857422 + ], + [ + "濾", + -18.302318572998047 + ], + [ + "拆", + -18.302661895751953 + ], + [ + "娃", + -18.30302619934082 + ], + [ + "👽", + -18.30302619934082 + ], + [ + "柯", + -18.303382873535156 + ], + [ + "끄", + -18.303386688232422 + ], + [ + "⍝", + -18.30411148071289 + ], + [ + "碰", + -18.304458618164062 + ], + [ + "騎", + -18.304845809936523 + ], + [ + "縫", + -18.305166244506836 + ], + [ + "͒", + -18.305519104003906 + ], + [ + "傘", + -18.30601692199707 + ], + [ + "💝", + -18.306291580200195 + ], + [ + "厨", + -18.30702781677246 + ], + [ + "💸", + -18.30738639831543 + ], + [ + "😫", + -18.30738639831543 + ], + [ + "💐", + -18.307392120361328 + ], + [ + "魅", + -18.308116912841797 + ], + [ + "擁", + -18.308488845825195 + ], + [ + "⬆", + -18.3088436126709 + ], + [ + "Ϝ", + -18.309207916259766 + ], + [ + "찌", + -18.3095703125 + ], + [ + "哦", + -18.3099365234375 + ], + [ + "睛", + -18.310688018798828 + ], + [ + "俺", + -18.3110294342041 + ], + [ + "⚙", + -18.311399459838867 + ], + [ + "碩", + -18.3114070892334 + ], + [ + "Ɛ", + -18.311771392822266 + ], + [ + "契", + -18.31212615966797 + ], + [ + "➣", + -18.312498092651367 + ], + [ + "賴", + -18.3132381439209 + ], + [ + "♤", + -18.3150634765625 + ], + [ + "🙂", + -18.315088272094727 + ], + [ + "胆", + -18.315799713134766 + ], + [ + "Ꭰ", + -18.316165924072266 + ], + [ + "݂", + -18.3161678314209 + ], + [ + "頓", + -18.316171646118164 + ], + [ + "狼", + -18.31689453125 + ], + [ + "彰", + -18.316898345947266 + ], + [ + "╚", + -18.3172607421875 + ], + [ + "陣", + -18.317630767822266 + ], + [ + "椅", + -18.317968368530273 + ], + [ + "剩", + -18.318382263183594 + ], + [ + "Ŧ", + -18.31947898864746 + ], + [ + "🍾", + -18.319852828979492 + ], + [ + "➕", + -18.32058334350586 + ], + [ + "҉", + -18.320589065551758 + ], + [ + "苹", + -18.321319580078125 + ], + [ + "🍪", + -18.321664810180664 + ], + [ + "壽", + -18.32186508178711 + ], + [ + "兔", + -18.322418212890625 + ], + [ + "ႀ", + -18.322429656982422 + ], + [ + "拒", + -18.32317352294922 + ], + [ + "ぁ", + -18.323535919189453 + ], + [ + "쁘", + -18.32353973388672 + ], + [ + "ዜ", + -18.324281692504883 + ], + [ + "佑", + -18.324281692504883 + ], + [ + "榜", + -18.325389862060547 + ], + [ + "ྲ", + -18.325801849365234 + ], + [ + "淑", + -18.326501846313477 + ], + [ + "貌", + -18.3265380859375 + ], + [ + "흑", + -18.32687759399414 + ], + [ + "멍", + -18.327621459960938 + ], + [ + "魯", + -18.328371047973633 + ], + [ + "弧", + -18.32870101928711 + ], + [ + "ៃ", + -18.328731536865234 + ], + [ + "뚜", + -18.328737258911133 + ], + [ + "͑", + -18.329435348510742 + ], + [ + "🔗", + -18.329483032226562 + ], + [ + "냅", + -18.33022689819336 + ], + [ + "╝", + -18.330596923828125 + ], + [ + "擔", + -18.330928802490234 + ], + [ + "莱", + -18.33135223388672 + ], + [ + "➦", + -18.332088470458984 + ], + [ + "Ώ", + -18.332094192504883 + ], + [ + "凌", + -18.332101821899414 + ], + [ + "抛", + -18.332494735717773 + ], + [ + "📖", + -18.33321189880371 + ], + [ + "亿", + -18.333532333374023 + ], + [ + "Ո", + -18.333585739135742 + ], + [ + "觸", + -18.3343563079834 + ], + [ + "ނ", + -18.336584091186523 + ], + [ + "ᆵ", + -18.337209701538086 + ], + [ + "🇯", + -18.33770179748535 + ], + [ + "🍻", + -18.33770751953125 + ], + [ + "͝", + -18.33771324157715 + ], + [ + "័", + -18.33807945251465 + ], + [ + "ฑ", + -18.338085174560547 + ], + [ + "덱", + -18.339210510253906 + ], + [ + "🥇", + -18.339210510253906 + ], + [ + "饼", + -18.339963912963867 + ], + [ + "͘", + -18.339977264404297 + ], + [ + "怖", + -18.34147071838379 + ], + [ + "濕", + -18.341787338256836 + ], + [ + "崔", + -18.34222984313965 + ], + [ + "佩", + -18.342992782592773 + ], + [ + "慣", + -18.343303680419922 + ], + [ + "冻", + -18.343852996826172 + ], + [ + "藻", + -18.344501495361328 + ], + [ + "ᅳ", + -18.344858169555664 + ], + [ + "諾", + -18.345577239990234 + ], + [ + "⚜", + -18.345623016357422 + ], + [ + "匀", + -18.345651626586914 + ], + [ + "ଉ", + -18.34600067138672 + ], + [ + "ஊ", + -18.34600067138672 + ], + [ + "凱", + -18.346006393432617 + ], + [ + "⎟", + -18.346324920654297 + ], + [ + "ຶ", + -18.346389770507812 + ], + [ + "敢", + -18.346757888793945 + ], + [ + "◌", + -18.346759796142578 + ], + [ + "仂", + -18.347515106201172 + ], + [ + "徽", + -18.348634719848633 + ], + [ + "Թ", + -18.349414825439453 + ], + [ + "⩾", + -18.350553512573242 + ], + [ + "陥", + -18.351308822631836 + ], + [ + "淀", + -18.351314544677734 + ], + [ + "혔", + -18.352455139160156 + ], + [ + "ଖ", + -18.35283851623535 + ], + [ + "넌", + -18.35283851623535 + ], + [ + "̠", + -18.35315704345703 + ], + [ + "ଛ", + -18.353219985961914 + ], + [ + "뿌", + -18.353221893310547 + ], + [ + "👧", + -18.353221893310547 + ], + [ + "멜", + -18.353601455688477 + ], + [ + "瓣", + -18.353612899780273 + ], + [ + "翠", + -18.354568481445312 + ], + [ + "箇", + -18.354726791381836 + ], + [ + "赏", + -18.35474967956543 + ], + [ + "ଁ", + -18.355510711669922 + ], + [ + "悠", + -18.35589599609375 + ], + [ + "遭", + -18.35628318786621 + ], + [ + "霸", + -18.356687545776367 + ], + [ + "裸", + -18.3570499420166 + ], + [ + "돕", + -18.357423782348633 + ], + [ + "Ň", + -18.357807159423828 + ], + [ + "娛", + -18.358192443847656 + ], + [ + "ƙ", + -18.358572006225586 + ], + [ + "ܛ", + -18.359724044799805 + ], + [ + "▂", + -18.360061645507812 + ], + [ + "靖", + -18.3604679107666 + ], + [ + "匟", + -18.36125946044922 + ], + [ + "幽", + -18.361268997192383 + ], + [ + "겐", + -18.362028121948242 + ], + [ + "婷", + -18.362030029296875 + ], + [ + "Ի", + -18.36280059814453 + ], + [ + "딸", + -18.363183975219727 + ], + [ + "😴", + -18.363569259643555 + ], + [ + "՝", + -18.363954544067383 + ], + [ + "鬆", + -18.36470603942871 + ], + [ + "🤞", + -18.36472511291504 + ], + [ + "녁", + -18.365880966186523 + ], + [ + "赢", + -18.36588478088379 + ], + [ + "ఏ", + -18.366270065307617 + ], + [ + "涵", + -18.366287231445312 + ], + [ + "踏", + -18.36652183532715 + ], + [ + "ኔ", + -18.367429733276367 + ], + [ + "ഓ", + -18.368202209472656 + ], + [ + "盗", + -18.368221282958984 + ], + [ + "춰", + -18.368976593017578 + ], + [ + "팽", + -18.368976593017578 + ], + [ + "롱", + -18.36936378479004 + ], + [ + "弗", + -18.37015151977539 + ], + [ + "럴", + -18.370529174804688 + ], + [ + "쥐", + -18.371305465698242 + ], + [ + "舟", + -18.371706008911133 + ], + [ + "랍", + -18.37285804748535 + ], + [ + "栗", + -18.373653411865234 + ], + [ + "卵", + -18.374393463134766 + ], + [ + "吋", + -18.374771118164062 + ], + [ + "腳", + -18.374807357788086 + ], + [ + "悉", + -18.378681182861328 + ], + [ + "閣", + -18.378698348999023 + ], + [ + "ἠ", + -18.37870979309082 + ], + [ + "崩", + -18.379426956176758 + ], + [ + "姻", + -18.379850387573242 + ], + [ + "⌊", + -18.380666732788086 + ], + [ + "ȳ", + -18.38066864013672 + ], + [ + "儲", + -18.381391525268555 + ], + [ + "쓸", + -18.381450653076172 + ], + [ + "┈", + -18.383039474487305 + ], + [ + "팝", + -18.383806228637695 + ], + [ + "ɸ", + -18.384201049804688 + ], + [ + "벡", + -18.384593963623047 + ], + [ + "冯", + -18.385774612426758 + ], + [ + "ʇ", + -18.38656234741211 + ], + [ + "⩽", + -18.388141632080078 + ], + [ + "ɧ", + -18.388545989990234 + ], + [ + "◻", + -18.38892936706543 + ], + [ + "🏈", + -18.388931274414062 + ], + [ + "徑", + -18.388994216918945 + ], + [ + "靶", + -18.38971519470215 + ], + [ + "軌", + -18.389719009399414 + ], + [ + "ඕ", + -18.389720916748047 + ], + [ + "括", + -18.390501022338867 + ], + [ + "ዱ", + -18.390512466430664 + ], + [ + "🎊", + -18.39090919494629 + ], + [ + "羟", + -18.391263961791992 + ], + [ + "☃", + -18.391700744628906 + ], + [ + "🥂", + -18.393287658691406 + ], + [ + "勁", + -18.393936157226562 + ], + [ + "┇", + -18.39448356628418 + ], + [ + "ሻ", + -18.39487648010254 + ], + [ + "繧", + -18.395084381103516 + ], + [ + "箭", + -18.395265579223633 + ], + [ + "掩", + -18.396442413330078 + ], + [ + "펄", + -18.39726448059082 + ], + [ + "帕", + -18.397676467895508 + ], + [ + "暨", + -18.39886474609375 + ], + [ + "缸", + -18.399629592895508 + ], + [ + "딱", + -18.399658203125 + ], + [ + "嵐", + -18.400053024291992 + ], + [ + "ჰ", + -18.402456283569336 + ], + [ + "邓", + -18.402462005615234 + ], + [ + "캔", + -18.404462814331055 + ], + [ + "揭", + -18.404464721679688 + ], + [ + "˂", + -18.404865264892578 + ], + [ + "爪", + -18.404882431030273 + ], + [ + "😌", + -18.405668258666992 + ], + [ + "찮", + -18.406471252441406 + ], + [ + "惊", + -18.407278060913086 + ], + [ + "邱", + -18.4080810546875 + ], + [ + "늦", + -18.409290313720703 + ], + [ + "翰", + -18.410837173461914 + ], + [ + "撞", + -18.410924911499023 + ], + [ + "ጅ", + -18.41131019592285 + ], + [ + "碧", + -18.41131019592285 + ], + [ + "괄", + -18.411714553833008 + ], + [ + "췌", + -18.412525177001953 + ], + [ + "挤", + -18.412837982177734 + ], + [ + "錦", + -18.414146423339844 + ], + [ + "̜", + -18.41440200805664 + ], + [ + "◙", + -18.414947509765625 + ], + [ + "횟", + -18.416170120239258 + ], + [ + "ଧ", + -18.416576385498047 + ], + [ + "🌑", + -18.41848373413086 + ], + [ + "紐", + -18.419017791748047 + ], + [ + "卢", + -18.419435501098633 + ], + [ + "薪", + -18.419832229614258 + ], + [ + "၏", + -18.419841766357422 + ], + [ + "審", + -18.42107391357422 + ], + [ + "⌒", + -18.421873092651367 + ], + [ + "缆", + -18.42230224609375 + ], + [ + "떡", + -18.42268943786621 + ], + [ + "ښ", + -18.423097610473633 + ], + [ + "🇿", + -18.423097610473633 + ], + [ + "ᕐ", + -18.42391586303711 + ], + [ + "瓷", + -18.42555046081543 + ], + [ + "덜", + -18.42596435546875 + ], + [ + "赌", + -18.42597198486328 + ], + [ + "엠", + -18.426376342773438 + ], + [ + "餘", + -18.427188873291016 + ], + [ + "扁", + -18.427200317382812 + ], + [ + "ἤ", + -18.4276065826416 + ], + [ + "弥", + -18.4276065826416 + ], + [ + "ɟ", + -18.427608489990234 + ], + [ + "Ⲩ", + -18.428016662597656 + ], + [ + "〰", + -18.42843246459961 + ], + [ + "蒂", + -18.42843246459961 + ], + [ + "氓", + -18.42925262451172 + ], + [ + "脏", + -18.429670333862305 + ], + [ + "눌", + -18.43007469177246 + ], + [ + "瑪", + -18.430898666381836 + ], + [ + "仏", + -18.4316349029541 + ], + [ + "ዴ", + -18.43172264099121 + ], + [ + "맵", + -18.4321346282959 + ], + [ + "刃", + -18.432523727416992 + ], + [ + "🏡", + -18.432544708251953 + ], + [ + "締", + -18.432954788208008 + ], + [ + "萨", + -18.432973861694336 + ], + [ + "緣", + -18.433359146118164 + ], + [ + "貯", + -18.433740615844727 + ], + [ + "৫", + -18.434202194213867 + ], + [ + "罐", + -18.434629440307617 + ], + [ + "ઘ", + -18.435441970825195 + ], + [ + "ቦ", + -18.43709945678711 + ], + [ + "侍", + -18.43709945678711 + ], + [ + "隠", + -18.437925338745117 + ], + [ + "٬", + -18.43917465209961 + ], + [ + "勿", + -18.439178466796875 + ], + [ + "磊", + -18.439178466796875 + ], + [ + "৯", + -18.44000816345215 + ], + [ + "ὃ", + -18.44042205810547 + ], + [ + "뱅", + -18.44042205810547 + ], + [ + "盈", + -18.440431594848633 + ], + [ + "讚", + -18.440441131591797 + ], + [ + "宛", + -18.440828323364258 + ], + [ + "弃", + -18.44085121154785 + ], + [ + "ӓ", + -18.44167137145996 + ], + [ + "锅", + -18.442489624023438 + ], + [ + "勞", + -18.4425048828125 + ], + [ + "槍", + -18.4425048828125 + ], + [ + "辭", + -18.44332504272461 + ], + [ + "ٱ", + -18.44375991821289 + ], + [ + "徵", + -18.444175720214844 + ], + [ + "ሬ", + -18.444591522216797 + ], + [ + "̰", + -18.444982528686523 + ], + [ + "ᑐ", + -18.44500732421875 + ], + [ + "٣", + -18.44542694091797 + ], + [ + "渗", + -18.44546127319336 + ], + [ + "ၚ", + -18.44668197631836 + ], + [ + "渀", + -18.44668960571289 + ], + [ + "벼", + -18.447519302368164 + ], + [ + "இ", + -18.447599411010742 + ], + [ + "ᅮ", + -18.447940826416016 + ], + [ + "💲", + -18.448362350463867 + ], + [ + "◥", + -18.449195861816406 + ], + [ + "랐", + -18.44919776916504 + ], + [ + "⟶", + -18.450037002563477 + ], + [ + "ቆ", + -18.450878143310547 + ], + [ + "伍", + -18.452146530151367 + ], + [ + "玛", + -18.45258331298828 + ], + [ + "坤", + -18.452970504760742 + ], + [ + "줘", + -18.453401565551758 + ], + [ + "묵", + -18.453824996948242 + ], + [ + "縄", + -18.453826904296875 + ], + [ + "畳", + -18.454587936401367 + ], + [ + "٫", + -18.455936431884766 + ], + [ + "ਛ", + -18.455936431884766 + ], + [ + "坑", + -18.45637321472168 + ], + [ + "훌", + -18.456783294677734 + ], + [ + "滞", + -18.457195281982422 + ], + [ + "奪", + -18.457202911376953 + ], + [ + "밑", + -18.457204818725586 + ], + [ + "飘", + -18.457626342773438 + ], + [ + "ਐ", + -18.45762825012207 + ], + [ + "酢", + -18.457637786865234 + ], + [ + "胀", + -18.45764923095703 + ], + [ + "亂", + -18.458009719848633 + ], + [ + "祈", + -18.458053588867188 + ], + [ + "😤", + -18.458057403564453 + ], + [ + "曰", + -18.458398818969727 + ], + [ + "爽", + -18.458480834960938 + ], + [ + "➪", + -18.458898544311523 + ], + [ + "뒷", + -18.459321975708008 + ], + [ + "儒", + -18.45933723449707 + ], + [ + "👦", + -18.459747314453125 + ], + [ + "摆", + -18.460134506225586 + ], + [ + "⎢", + -18.460186004638672 + ], + [ + "✻", + -18.460594177246094 + ], + [ + "綜", + -18.461002349853516 + ], + [ + "銘", + -18.462196350097656 + ], + [ + "晃", + -18.462308883666992 + ], + [ + "ఒ", + -18.46272087097168 + ], + [ + "‽", + -18.46272087097168 + ], + [ + "훨", + -18.463146209716797 + ], + [ + "ǚ", + -18.463571548461914 + ], + [ + "끗", + -18.46399688720703 + ], + [ + "雾", + -18.46401023864746 + ], + [ + "禅", + -18.46402359008789 + ], + [ + "◣", + -18.464426040649414 + ], + [ + "廉", + -18.464862823486328 + ], + [ + "슘", + -18.46527671813965 + ], + [ + "薇", + -18.465700149536133 + ], + [ + "📣", + -18.465702056884766 + ], + [ + "랄", + -18.466129302978516 + ], + [ + "ᓇ", + -18.466554641723633 + ], + [ + "옆", + -18.466556549072266 + ], + [ + "椀", + -18.46685028076172 + ], + [ + "↠", + -18.467409133911133 + ], + [ + "猀", + -18.467416763305664 + ], + [ + "Ấ", + -18.467838287353516 + ], + [ + "걱", + -18.468265533447266 + ], + [ + "裤", + -18.46845245361328 + ], + [ + "亳", + -18.468690872192383 + ], + [ + "😑", + -18.4691219329834 + ], + [ + "ὥ", + -18.469547271728516 + ], + [ + "퀴", + -18.46954917907715 + ], + [ + "🎰", + -18.46997833251953 + ], + [ + "壞", + -18.470844268798828 + ], + [ + "膏", + -18.471267700195312 + ], + [ + "措", + -18.47168731689453 + ], + [ + "龄", + -18.472566604614258 + ], + [ + "欄", + -18.472978591918945 + ], + [ + "ҫ", + -18.474702835083008 + ], + [ + "拘", + -18.47512435913086 + ], + [ + "٩", + -18.47556495666504 + ], + [ + "豚", + -18.47556495666504 + ], + [ + "ਝ", + -18.476428985595703 + ], + [ + "𐌰", + -18.4772891998291 + ], + [ + "젊", + -18.477291107177734 + ], + [ + "↵", + -18.4777889251709 + ], + [ + "労", + -18.47813606262207 + ], + [ + "➫", + -18.4781551361084 + ], + [ + "獣", + -18.47894287109375 + ], + [ + "椒", + -18.47901725769043 + ], + [ + "ᴋ", + -18.479019165039062 + ], + [ + "忽", + -18.47902488708496 + ], + [ + "💄", + -18.480751037597656 + ], + [ + "挖", + -18.481204986572266 + ], + [ + "덮", + -18.4820499420166 + ], + [ + "烃", + -18.482057571411133 + ], + [ + "🍑", + -18.482486724853516 + ], + [ + "霧", + -18.482980728149414 + ], + [ + "Խ", + -18.48378562927246 + ], + [ + "仆", + -18.484195709228516 + ], + [ + "ៀ", + -18.484647750854492 + ], + [ + "๖", + -18.484657287597656 + ], + [ + "ǁ", + -18.485092163085938 + ], + [ + "醉", + -18.48509407043457 + ], + [ + "📈", + -18.48770523071289 + ], + [ + "┃", + -18.48813819885254 + ], + [ + "ಉ", + -18.488140106201172 + ], + [ + "弦", + -18.489336013793945 + ], + [ + "橡", + -18.490320205688477 + ], + [ + "醋", + -18.49032211303711 + ], + [ + "釣", + -18.49032211303711 + ], + [ + "٪", + -18.49175262451172 + ], + [ + "櫃", + -18.49338150024414 + ], + [ + "ǵ", + -18.49427032470703 + ], + [ + "ఖ", + -18.49471092224121 + ], + [ + "␙", + -18.495147705078125 + ], + [ + "尹", + -18.495147705078125 + ], + [ + "껴", + -18.496028900146484 + ], + [ + "贈", + -18.496463775634766 + ], + [ + "莎", + -18.49690055847168 + ], + [ + "芭", + -18.497358322143555 + ], + [ + "掘", + -18.49736785888672 + ], + [ + "🐰", + -18.498661041259766 + ], + [ + "愉", + -18.498674392700195 + ], + [ + "渐", + -18.498682022094727 + ], + [ + "ऋ", + -18.49911117553711 + ], + [ + "黨", + -18.499143600463867 + ], + [ + "貞", + -18.500375747680664 + ], + [ + "슴", + -18.500877380371094 + ], + [ + "菓", + -18.501323699951172 + ], + [ + "❚", + -18.50175666809082 + ], + [ + "澄", + -18.50176239013672 + ], + [ + "晋", + -18.503093719482422 + ], + [ + "셈", + -18.50353240966797 + ], + [ + "脸", + -18.505756378173828 + ], + [ + "💨", + -18.506195068359375 + ], + [ + "蝶", + -18.50619888305664 + ], + [ + "겪", + -18.50663948059082 + ], + [ + "徹", + -18.507089614868164 + ], + [ + "弄", + -18.50709342956543 + ], + [ + "咨", + -18.507102966308594 + ], + [ + "❷", + -18.507530212402344 + ], + [ + "괜", + -18.508420944213867 + ], + [ + "〓", + -18.50843048095703 + ], + [ + "偵", + -18.509315490722656 + ], + [ + "亠", + -18.509756088256836 + ], + [ + "📦", + -18.50975799560547 + ], + [ + "霍", + -18.51065444946289 + ], + [ + "֑", + -18.512435913085938 + ], + [ + "٥", + -18.513330459594727 + ], + [ + "⭕", + -18.51377296447754 + ], + [ + "۩", + -18.51378059387207 + ], + [ + "✹", + -18.513790130615234 + ], + [ + "廊", + -18.514202117919922 + ], + [ + "⌋", + -18.514225006103516 + ], + [ + "ຣ", + -18.51422691345215 + ], + [ + "ଯ", + -18.515121459960938 + ], + [ + "诱", + -18.515125274658203 + ], + [ + "硕", + -18.515565872192383 + ], + [ + "৩", + -18.51647186279297 + ], + [ + "郁", + -18.51647186279297 + ], + [ + "枢", + -18.51735496520996 + ], + [ + "ʝ", + -18.517772674560547 + ], + [ + "稲", + -18.518268585205078 + ], + [ + "ჟ", + -18.518714904785156 + ], + [ + "Ơ", + -18.519615173339844 + ], + [ + "ĸ", + -18.52006721496582 + ], + [ + "爀", + -18.521425247192383 + ], + [ + "脫", + -18.52143096923828 + ], + [ + "穌", + -18.52145004272461 + ], + [ + "陀", + -18.521862030029297 + ], + [ + "謎", + -18.523231506347656 + ], + [ + "̝", + -18.523630142211914 + ], + [ + "栏", + -18.524133682250977 + ], + [ + "挟", + -18.52498435974121 + ], + [ + "玫", + -18.525028228759766 + ], + [ + "Ռ", + -18.525033950805664 + ], + [ + "挂", + -18.52504539489746 + ], + [ + "┤", + -18.52593994140625 + ], + [ + "ɳ", + -18.525941848754883 + ], + [ + "ὗ", + -18.52684783935547 + ], + [ + "닫", + -18.52684783935547 + ], + [ + "힐", + -18.527301788330078 + ], + [ + "瑰", + -18.528045654296875 + ], + [ + "ἂ", + -18.528663635253906 + ], + [ + "🍺", + -18.528663635253906 + ], + [ + "ඛ", + -18.52911949157715 + ], + [ + "⚾", + -18.52949333190918 + ], + [ + "懸", + -18.53046226501465 + ], + [ + "퀀", + -18.53048324584961 + ], + [ + "▃", + -18.530920028686523 + ], + [ + "ઠ", + -18.53093910217285 + ], + [ + "謂", + -18.5311279296875 + ], + [ + "钠", + -18.531375885009766 + ], + [ + "雀", + -18.532302856445312 + ], + [ + "Ŝ", + -18.533674240112305 + ], + [ + "錠", + -18.534101486206055 + ], + [ + "汚", + -18.534576416015625 + ], + [ + "⊢", + -18.534587860107422 + ], + [ + "🎯", + -18.534587860107422 + ], + [ + "稍", + -18.5350341796875 + ], + [ + "ጎ", + -18.535961151123047 + ], + [ + "鸟", + -18.535964965820312 + ], + [ + "⏤", + -18.536418914794922 + ], + [ + "⚔", + -18.536418914794922 + ], + [ + "溴", + -18.536420822143555 + ], + [ + "ঝ", + -18.536876678466797 + ], + [ + "⎪", + -18.536882400512695 + ], + [ + "冦", + -18.536975860595703 + ], + [ + "萊", + -18.537322998046875 + ], + [ + "襲", + -18.53824806213379 + ], + [ + "廚", + -18.538711547851562 + ], + [ + "랭", + -18.538711547851562 + ], + [ + "͠", + -18.539182662963867 + ], + [ + "粤", + -18.53998565673828 + ], + [ + "갱", + -18.540088653564453 + ], + [ + "몽", + -18.540088653564453 + ], + [ + "┴", + -18.54055404663086 + ], + [ + "륭", + -18.5410099029541 + ], + [ + "🍒", + -18.541011810302734 + ], + [ + "狐", + -18.541473388671875 + ], + [ + "廖", + -18.541475296020508 + ], + [ + "辊", + -18.541505813598633 + ], + [ + "ፊ", + -18.541929244995117 + ], + [ + "Ɵ", + -18.542877197265625 + ], + [ + "披", + -18.545156478881836 + ], + [ + "莲", + -18.546550750732422 + ], + [ + "▹", + -18.547016143798828 + ], + [ + "锘", + -18.548398971557617 + ], + [ + "ځ", + -18.549789428710938 + ], + [ + "妇", + -18.5497989654541 + ], + [ + "郷", + -18.55164337158203 + ], + [ + "☽", + -18.552112579345703 + ], + [ + "锡", + -18.552570343017578 + ], + [ + "Ʒ", + -18.55257797241211 + ], + [ + "髓", + -18.55257797241211 + ], + [ + "ȟ", + -18.553043365478516 + ], + [ + "🍎", + -18.553508758544922 + ], + [ + "ฏ", + -18.554439544677734 + ], + [ + "ኒ", + -18.554906845092773 + ], + [ + "Ө", + -18.55584144592285 + ], + [ + "锛", + -18.556346893310547 + ], + [ + "廃", + -18.557233810424805 + ], + [ + "⪯", + -18.55724334716797 + ], + [ + "🚚", + -18.557708740234375 + ], + [ + "웅", + -18.558177947998047 + ], + [ + "ۇ", + -18.55817985534668 + ], + [ + "톱", + -18.55817985534668 + ], + [ + "잃", + -18.55911636352539 + ], + [ + "♻", + -18.55958366394043 + ], + [ + "뷔", + -18.55958366394043 + ], + [ + "ͅ", + -18.55988121032715 + ], + [ + "乏", + -18.560375213623047 + ], + [ + "셉", + -18.560522079467773 + ], + [ + "୧", + -18.56192970275879 + ], + [ + "窝", + -18.56193733215332 + ], + [ + "🐱", + -18.562400817871094 + ], + [ + "Ἑ", + -18.562868118286133 + ], + [ + "ɥ", + -18.5628719329834 + ], + [ + "🦁", + -18.562875747680664 + ], + [ + "筐", + -18.564250946044922 + ], + [ + "ඊ", + -18.56428337097168 + ], + [ + "ⲉ", + -18.565223693847656 + ], + [ + "৮", + -18.566171646118164 + ], + [ + "妮", + -18.566173553466797 + ], + [ + "🤑", + -18.566638946533203 + ], + [ + "ᓯ", + -18.567110061645508 + ], + [ + "펩", + -18.56711196899414 + ], + [ + "豬", + -18.567584991455078 + ], + [ + "ἷ", + -18.568531036376953 + ], + [ + "ᓐ", + -18.569000244140625 + ], + [ + "ƶ", + -18.569477081298828 + ], + [ + "吕", + -18.57137107849121 + ], + [ + "끊", + -18.57137107849121 + ], + [ + "🎙", + -18.57184600830078 + ], + [ + "愈", + -18.57321548461914 + ], + [ + "🎮", + -18.573238372802734 + ], + [ + "爲", + -18.5737247467041 + ], + [ + "💣", + -18.57469367980957 + ], + [ + "∮", + -18.574697494506836 + ], + [ + "🤙", + -18.574697494506836 + ], + [ + "暂", + -18.5756778717041 + ], + [ + "奴", + -18.577083587646484 + ], + [ + "鴻", + -18.57803726196289 + ], + [ + "붕", + -18.578989028930664 + ], + [ + "貢", + -18.578994750976562 + ], + [ + "⎥", + -18.579004287719727 + ], + [ + "慎", + -18.57946014404297 + ], + [ + "勵", + -18.580902099609375 + ], + [ + "🔷", + -18.58090591430664 + ], + [ + "閃", + -18.580907821655273 + ], + [ + "啓", + -18.58119773864746 + ], + [ + "፤", + -18.58138084411621 + ], + [ + "앉", + -18.58138084411621 + ], + [ + "🍓", + -18.581382751464844 + ], + [ + "읍", + -18.581859588623047 + ], + [ + "ཆ", + -18.58189582824707 + ], + [ + "禾", + -18.58281898498535 + ], + [ + "鼎", + -18.58281898498535 + ], + [ + "晉", + -18.58379364013672 + ], + [ + "৭", + -18.584260940551758 + ], + [ + "⫺", + -18.584739685058594 + ], + [ + "遵", + -18.586181640625 + ], + [ + "🎼", + -18.586645126342773 + ], + [ + "硝", + -18.586647033691406 + ], + [ + "拠", + -18.58713722229004 + ], + [ + "ɩ", + -18.58714485168457 + ], + [ + "尝", + -18.588605880737305 + ], + [ + "˥", + -18.589075088500977 + ], + [ + "穩", + -18.58955955505371 + ], + [ + "슐", + -18.59149169921875 + ], + [ + "赋", + -18.59149932861328 + ], + [ + "듬", + -18.591976165771484 + ], + [ + "똑", + -18.59294319152832 + ], + [ + "≳", + -18.592945098876953 + ], + [ + "伙", + -18.59334945678711 + ], + [ + "衆", + -18.593368530273438 + ], + [ + "딜", + -18.593429565429688 + ], + [ + "綫", + -18.593914031982422 + ], + [ + "ɓ", + -18.59441375732422 + ], + [ + "ױ", + -18.594884872436523 + ], + [ + "৪", + -18.594886779785156 + ], + [ + "🏳", + -18.59537124633789 + ], + [ + "億", + -18.595848083496094 + ], + [ + "獅", + -18.596837997436523 + ], + [ + "잊", + -18.597314834594727 + ], + [ + "贺", + -18.597810745239258 + ], + [ + "鶴", + -18.598194122314453 + ], + [ + "氷", + -18.598283767700195 + ], + [ + "옮", + -18.598289489746094 + ], + [ + "勾", + -18.59848976135254 + ], + [ + "♚", + -18.598777770996094 + ], + [ + "劍", + -18.59908676147461 + ], + [ + "脆", + -18.599760055541992 + ], + [ + "拾", + -18.601682662963867 + ], + [ + "및", + -18.601852416992188 + ], + [ + "纽", + -18.602188110351562 + ], + [ + "囉", + -18.602554321289062 + ], + [ + "✋", + -18.60315704345703 + ], + [ + "蒋", + -18.603174209594727 + ], + [ + "筛", + -18.603178024291992 + ], + [ + "ઝ", + -18.604642868041992 + ], + [ + "ሥ", + -18.605133056640625 + ], + [ + "쌀", + -18.605134963989258 + ], + [ + "첩", + -18.60562515258789 + ], + [ + "暑", + -18.606109619140625 + ], + [ + "夷", + -18.606111526489258 + ], + [ + "℘", + -18.60660743713379 + ], + [ + "🌏", + -18.60660743713379 + ], + [ + "ጭ", + -18.607589721679688 + ], + [ + "涼", + -18.608083724975586 + ], + [ + "偷", + -18.608095169067383 + ], + [ + "赫", + -18.60858154296875 + ], + [ + "얘", + -18.609066009521484 + ], + [ + "ৌ", + -18.60955810546875 + ], + [ + "ᓄ", + -18.61005210876465 + ], + [ + "✷", + -18.61005210876465 + ], + [ + "ˀ", + -18.610544204711914 + ], + [ + "🙊", + -18.610544204711914 + ], + [ + "颖", + -18.61054801940918 + ], + [ + "룬", + -18.612518310546875 + ], + [ + "涓", + -18.61342430114746 + ], + [ + "℗", + -18.613615036010742 + ], + [ + "夾", + -18.613996505737305 + ], + [ + "☢", + -18.61400032043457 + ], + [ + "ಖ", + -18.614002227783203 + ], + [ + "肽", + -18.614017486572266 + ], + [ + "漠", + -18.614776611328125 + ], + [ + "🔝", + -18.615488052368164 + ], + [ + "搅", + -18.616003036499023 + ], + [ + "♩", + -18.616479873657227 + ], + [ + "伪", + -18.616479873657227 + ], + [ + "帐", + -18.616981506347656 + ], + [ + "痕", + -18.618877410888672 + ], + [ + "̟", + -18.618907928466797 + ], + [ + "瑟", + -18.61896514892578 + ], + [ + "ಈ", + -18.619462966918945 + ], + [ + "乔", + -18.619956970214844 + ], + [ + "૦", + -18.6219539642334 + ], + [ + "맡", + -18.622451782226562 + ], + [ + "ᓗ", + -18.623451232910156 + ], + [ + "劑", + -18.623958587646484 + ], + [ + "☔", + -18.62445068359375 + ], + [ + "댄", + -18.625452041625977 + ], + [ + "卦", + -18.62630271911621 + ], + [ + "盧", + -18.626386642456055 + ], + [ + "💅", + -18.62645149230957 + ], + [ + "🚗", + -18.62645149230957 + ], + [ + "薛", + -18.626956939697266 + ], + [ + "˧", + -18.62896156311035 + ], + [ + "盾", + -18.628963470458984 + ], + [ + "૧", + -18.629465103149414 + ], + [ + "۞", + -18.629968643188477 + ], + [ + "宴", + -18.630474090576172 + ], + [ + "猛", + -18.630477905273438 + ], + [ + "ฬ", + -18.63097381591797 + ], + [ + "닙", + -18.63147735595703 + ], + [ + "펠", + -18.63147735595703 + ], + [ + "╗", + -18.631994247436523 + ], + [ + "ぇ", + -18.633176803588867 + ], + [ + "ډ", + -18.635009765625 + ], + [ + "嫁", + -18.635021209716797 + ], + [ + "ጊ", + -18.635515213012695 + ], + [ + "弊", + -18.636030197143555 + ], + [ + "堀", + -18.637041091918945 + ], + [ + "ӯ", + -18.63753890991211 + ], + [ + "ḱ", + -18.638046264648438 + ], + [ + "🌳", + -18.638046264648438 + ], + [ + "탭", + -18.639568328857422 + ], + [ + "֔", + -18.64007568359375 + ], + [ + "ృ", + -18.640583038330078 + ], + [ + "卜", + -18.642580032348633 + ], + [ + "빼", + -18.642620086669922 + ], + [ + "鏈", + -18.642797470092773 + ], + [ + "Ꮇ", + -18.643129348754883 + ], + [ + "ȯ", + -18.643131256103516 + ], + [ + "ټ", + -18.643638610839844 + ], + [ + "烘", + -18.64373779296875 + ], + [ + "Ế", + -18.644147872924805 + ], + [ + "杏", + -18.6446590423584 + ], + [ + "繪", + -18.64569664001465 + ], + [ + "瘍", + -18.64613151550293 + ], + [ + "갤", + -18.646190643310547 + ], + [ + "拖", + -18.64671516418457 + ], + [ + "隧", + -18.647750854492188 + ], + [ + "͏", + -18.64823341369629 + ], + [ + "麟", + -18.649259567260742 + ], + [ + "Օ", + -18.649263381958008 + ], + [ + "哉", + -18.65028190612793 + ], + [ + "̛", + -18.650306701660156 + ], + [ + "Ә", + -18.651315689086914 + ], + [ + "⍟", + -18.651317596435547 + ], + [ + "쿼", + -18.65182876586914 + ], + [ + "厦", + -18.6522159576416 + ], + [ + "콤", + -18.65234375 + ], + [ + "╯", + -18.652345657348633 + ], + [ + "왼", + -18.653371810913086 + ], + [ + "凰", + -18.653467178344727 + ], + [ + "驾", + -18.653879165649414 + ], + [ + "孕", + -18.65389060974121 + ], + [ + "蕭", + -18.65440559387207 + ], + [ + "哀", + -18.654903411865234 + ], + [ + "٤", + -18.654918670654297 + ], + [ + "亀", + -18.655364990234375 + ], + [ + "묻", + -18.65595054626465 + ], + [ + "샷", + -18.65595054626465 + ], + [ + "🔑", + -18.655956268310547 + ], + [ + "ぴ", + -18.656457901000977 + ], + [ + "💌", + -18.657499313354492 + ], + [ + "拔", + -18.660093307495117 + ], + [ + "饱", + -18.660104751586914 + ], + [ + "🔎", + -18.660606384277344 + ], + [ + "扭", + -18.660608291625977 + ], + [ + "沃", + -18.660608291625977 + ], + [ + "ጻ", + -18.66112518310547 + ], + [ + "ⲁ", + -18.66164207458496 + ], + [ + "ጸ", + -18.661643981933594 + ], + [ + "爷", + -18.661649703979492 + ], + [ + "伄", + -18.661724090576172 + ], + [ + "踐", + -18.66265869140625 + ], + [ + "Ệ", + -18.662681579589844 + ], + [ + "ɵ", + -18.662683486938477 + ], + [ + "煩", + -18.66320037841797 + ], + [ + "钙", + -18.66421890258789 + ], + [ + "蜀", + -18.66423797607422 + ], + [ + "⟹", + -18.665802001953125 + ], + [ + "ϟ", + -18.665803909301758 + ], + [ + "ঃ", + -18.665803909301758 + ], + [ + "喬", + -18.665807723999023 + ], + [ + "◢", + -18.665843963623047 + ], + [ + "̢", + -18.666847229003906 + ], + [ + "ⲭ", + -18.667369842529297 + ], + [ + "ᖃ", + -18.667890548706055 + ], + [ + "仓", + -18.66893768310547 + ], + [ + "寡", + -18.668947219848633 + ], + [ + "棘", + -18.669464111328125 + ], + [ + "巫", + -18.67051887512207 + ], + [ + "遞", + -18.671030044555664 + ], + [ + "骑", + -18.671550750732422 + ], + [ + "撓", + -18.673080444335938 + ], + [ + "ܸ", + -18.67313003540039 + ], + [ + "👁", + -18.673654556274414 + ], + [ + "沪", + -18.67418098449707 + ], + [ + "嫌", + -18.675752639770508 + ], + [ + "湘", + -18.67681884765625 + ], + [ + "灾", + -18.677873611450195 + ], + [ + "沼", + -18.677875518798828 + ], + [ + "惜", + -18.67837142944336 + ], + [ + "ሀ", + -18.67839241027832 + ], + [ + "ಒ", + -18.678922653198242 + ], + [ + "͙", + -18.679384231567383 + ], + [ + "잇", + -18.679975509643555 + ], + [ + "컷", + -18.6810359954834 + ], + [ + "🍫", + -18.681049346923828 + ], + [ + "궤", + -18.681564331054688 + ], + [ + "🌙", + -18.68156623840332 + ], + [ + "翁", + -18.682050704956055 + ], + [ + "☾", + -18.68209457397461 + ], + [ + "✳", + -18.68209457397461 + ], + [ + "ྒ", + -18.6821231842041 + ], + [ + "🏠", + -18.683155059814453 + ], + [ + "唇", + -18.68317985534668 + ], + [ + "迁", + -18.68370819091797 + ], + [ + "̺", + -18.684154510498047 + ], + [ + "碍", + -18.684181213378906 + ], + [ + "寵", + -18.68450164794922 + ], + [ + "ஈ", + -18.68474769592285 + ], + [ + "🍊", + -18.685279846191406 + ], + [ + "栽", + -18.685819625854492 + ], + [ + "ɤ", + -18.686872482299805 + ], + [ + "쌓", + -18.686874389648438 + ], + [ + "媛", + -18.686878204345703 + ], + [ + "咩", + -18.687406539916992 + ], + [ + "伺", + -18.687423706054688 + ], + [ + "잭", + -18.687938690185547 + ], + [ + "➲", + -18.68794059753418 + ], + [ + "縲", + -18.68935775756836 + ], + [ + "吊", + -18.689537048339844 + ], + [ + "봅", + -18.689538955688477 + ], + [ + "🇴", + -18.689538955688477 + ], + [ + "Ĝ", + -18.68954086303711 + ], + [ + "ʍ", + -18.68954086303711 + ], + [ + "⋄", + -18.68955421447754 + ], + [ + "👸", + -18.690074920654297 + ], + [ + "ȱ", + -18.69061279296875 + ], + [ + "棉", + -18.69061851501465 + ], + [ + "暮", + -18.691112518310547 + ], + [ + "彬", + -18.691144943237305 + ], + [ + "겟", + -18.69167709350586 + ], + [ + "̦", + -18.692211151123047 + ], + [ + "珊", + -18.69221305847168 + ], + [ + "漆", + -18.692216873168945 + ], + [ + "舎", + -18.6923770904541 + ], + [ + "͈", + -18.692665100097656 + ], + [ + "遂", + -18.692665100097656 + ], + [ + "ᓕ", + -18.692745208740234 + ], + [ + "ɚ", + -18.692747116088867 + ], + [ + "덩", + -18.692747116088867 + ], + [ + "茄", + -18.694358825683594 + ], + [ + "琪", + -18.695423126220703 + ], + [ + "ᒥ", + -18.695964813232422 + ], + [ + "跃", + -18.69597053527832 + ], + [ + "雰", + -18.696481704711914 + ], + [ + "貿", + -18.696489334106445 + ], + [ + "ਘ", + -18.697040557861328 + ], + [ + "厳", + -18.698646545410156 + ], + [ + "蕾", + -18.69866180419922 + ], + [ + "朵", + -18.699609756469727 + ], + [ + "稅", + -18.699691772460938 + ], + [ + "⍺", + -18.69973373413086 + ], + [ + "📰", + -18.69973373413086 + ], + [ + "卿", + -18.700288772583008 + ], + [ + "ଂ", + -18.7008113861084 + ], + [ + "塘", + -18.700830459594727 + ], + [ + "겹", + -18.701351165771484 + ], + [ + "븐", + -18.701892852783203 + ], + [ + "╰", + -18.702972412109375 + ], + [ + "ଫ", + -18.702974319458008 + ], + [ + "┻", + -18.704599380493164 + ], + [ + "灭", + -18.705127716064453 + ], + [ + "৬", + -18.705142974853516 + ], + [ + "滩", + -18.70515251159668 + ], + [ + "Ḫ", + -18.705642700195312 + ], + [ + "⎕", + -18.7056827545166 + ], + [ + "ѣ", + -18.705684661865234 + ], + [ + "▰", + -18.706226348876953 + ], + [ + "绩", + -18.706235885620117 + ], + [ + "墓", + -18.706762313842773 + ], + [ + "̬", + -18.7077579498291 + ], + [ + "獄", + -18.707876205444336 + ], + [ + "Ạ", + -18.708398818969727 + ], + [ + "兽", + -18.70948600769043 + ], + [ + "ӹ", + -18.71002960205078 + ], + [ + "╦", + -18.71002960205078 + ], + [ + "듭", + -18.710031509399414 + ], + [ + "垃", + -18.7105712890625 + ], + [ + "煎", + -18.71099281311035 + ], + [ + "圾", + -18.71166229248047 + ], + [ + "鸿", + -18.711923599243164 + ], + [ + "🚩", + -18.71221351623535 + ], + [ + "곰", + -18.713306427001953 + ], + [ + "🍔", + -18.713855743408203 + ], + [ + "څ", + -18.714946746826172 + ], + [ + "톨", + -18.714946746826172 + ], + [ + "▇", + -18.715599060058594 + ], + [ + "桐", + -18.71659278869629 + ], + [ + "鴨", + -18.717693328857422 + ], + [ + "帆", + -18.717695236206055 + ], + [ + "蝦", + -18.718236923217773 + ], + [ + "ާ", + -18.718788146972656 + ], + [ + "姑", + -18.719343185424805 + ], + [ + "☏", + -18.720434188842773 + ], + [ + "ഘ", + -18.720436096191406 + ], + [ + "🕺", + -18.720436096191406 + ], + [ + "😠", + -18.720970153808594 + ], + [ + "♖", + -18.72098731994629 + ], + [ + "🔒", + -18.72153663635254 + ], + [ + "ឡ", + -18.72208595275879 + ], + [ + "妳", + -18.722089767456055 + ], + [ + "昔", + -18.723163604736328 + ], + [ + "곽", + -18.72319221496582 + ], + [ + "寂", + -18.723724365234375 + ], + [ + "둑", + -18.723745346069336 + ], + [ + "肋", + -18.7248477935791 + ], + [ + "Ր", + -18.725400924682617 + ], + [ + "ވ", + -18.725406646728516 + ], + [ + "擴", + -18.725950241088867 + ], + [ + "֙", + -18.7259578704834 + ], + [ + "臉", + -18.726511001586914 + ], + [ + "汗", + -18.72651481628418 + ], + [ + "┊", + -18.727619171142578 + ], + [ + "❱", + -18.727619171142578 + ], + [ + "淚", + -18.729291915893555 + ], + [ + "茨", + -18.72984504699707 + ], + [ + "摇", + -18.7298526763916 + ], + [ + "驶", + -18.730392456054688 + ], + [ + "͢", + -18.730409622192383 + ], + [ + "奸", + -18.730865478515625 + ], + [ + "悦", + -18.73151206970215 + ], + [ + "咲", + -18.73310089111328 + ], + [ + "摺", + -18.73311996459961 + ], + [ + "ਠ", + -18.73373794555664 + ], + [ + "惯", + -18.733755111694336 + ], + [ + "漸", + -18.73427391052246 + ], + [ + "殘", + -18.734853744506836 + ], + [ + "贾", + -18.735408782958984 + ], + [ + "❞", + -18.73541259765625 + ], + [ + "맷", + -18.735971450805664 + ], + [ + "喇", + -18.735980987548828 + ], + [ + "碗", + -18.73708724975586 + ], + [ + "흰", + -18.73764991760254 + ], + [ + "枪", + -18.737655639648438 + ], + [ + "ሜ", + -18.738771438598633 + ], + [ + "鑫", + -18.738771438598633 + ], + [ + "虾", + -18.739337921142578 + ], + [ + "禪", + -18.739858627319336 + ], + [ + "ᄀ", + -18.74041748046875 + ], + [ + "Ģ", + -18.740453720092773 + ], + [ + "誉", + -18.74045753479004 + ], + [ + "幌", + -18.740459442138672 + ], + [ + "텝", + -18.74270248413086 + ], + [ + "ᄅ", + -18.742704391479492 + ], + [ + "🎩", + -18.74382781982422 + ], + [ + "扮", + -18.74480438232422 + ], + [ + "📹", + -18.744956970214844 + ], + [ + "溢", + -18.74496841430664 + ], + [ + "⌃", + -18.74608612060547 + ], + [ + "📞", + -18.74608612060547 + ], + [ + "ڵ", + -18.7460880279541 + ], + [ + "ဏ", + -18.746654510498047 + ], + [ + "ѧ", + -18.74721908569336 + ], + [ + "✐", + -18.74834632873535 + ], + [ + "辿", + -18.748348236083984 + ], + [ + "좁", + -18.74891471862793 + ], + [ + "纺", + -18.748924255371094 + ], + [ + "ⲛ", + -18.750614166259766 + ], + [ + "稼", + -18.75172996520996 + ], + [ + "៍", + -18.751747131347656 + ], + [ + "奔", + -18.751760482788086 + ], + [ + "🌀", + -18.751977920532227 + ], + [ + "딘", + -18.752887725830078 + ], + [ + "🐘", + -18.75288963317871 + ], + [ + "頃", + -18.75344467163086 + ], + [ + "🍳", + -18.753456115722656 + ], + [ + "猜", + -18.753475189208984 + ], + [ + "疯", + -18.7540225982666 + ], + [ + "🎸", + -18.754024505615234 + ], + [ + "稻", + -18.754045486450195 + ], + [ + "❮", + -18.755165100097656 + ], + [ + "쓴", + -18.755165100097656 + ], + [ + "蟹", + -18.7557315826416 + ], + [ + "氛", + -18.756885528564453 + ], + [ + "醬", + -18.757448196411133 + ], + [ + "楠", + -18.757919311523438 + ], + [ + "ዉ", + -18.758018493652344 + ], + [ + "룡", + -18.758018493652344 + ], + [ + "慕", + -18.758581161499023 + ], + [ + "⎠", + -18.75858497619629 + ], + [ + "贡", + -18.75972557067871 + ], + [ + "މ", + -18.759735107421875 + ], + [ + "馨", + -18.760292053222656 + ], + [ + "🍋", + -18.76030731201172 + ], + [ + "⇀", + -18.761451721191406 + ], + [ + "◗", + -18.76145362854004 + ], + [ + "沸", + -18.762006759643555 + ], + [ + "̫", + -18.762042999267578 + ], + [ + "🍰", + -18.762598037719727 + ], + [ + "Ὁ", + -18.762601852416992 + ], + [ + "❍", + -18.764326095581055 + ], + [ + "谦", + -18.76490020751953 + ], + [ + "꿀", + -18.76490020751953 + ], + [ + "扎", + -18.76491928100586 + ], + [ + "ጨ", + -18.76547622680664 + ], + [ + "쿨", + -18.76547622680664 + ], + [ + "❋", + -18.765478134155273 + ], + [ + "奨", + -18.766054153442383 + ], + [ + "😣", + -18.766056060791016 + ], + [ + "ৎ", + -18.766630172729492 + ], + [ + "✸", + -18.76712989807129 + ], + [ + "💭", + -18.7672061920166 + ], + [ + "菩", + -18.7689151763916 + ], + [ + "‵", + -18.76892852783203 + ], + [ + "짙", + -18.769515991210938 + ], + [ + "锥", + -18.76954460144043 + ], + [ + "Ƶ", + -18.771251678466797 + ], + [ + "។", + -18.771251678466797 + ], + [ + "̐", + -18.772361755371094 + ], + [ + "៊", + -18.772985458374023 + ], + [ + "◁", + -18.772991180419922 + ], + [ + "葵", + -18.77300262451172 + ], + [ + "丢", + -18.774747848510742 + ], + [ + "锌", + -18.775882720947266 + ], + [ + "╩", + -18.775903701782227 + ], + [ + "⊤", + -18.777063369750977 + ], + [ + "͓", + -18.777570724487305 + ], + [ + "晒", + -18.77765464782715 + ], + [ + "ඡ", + -18.778228759765625 + ], + [ + "荡", + -18.77881622314453 + ], + [ + "끈", + -18.779394149780273 + ], + [ + "ኦ", + -18.780563354492188 + ], + [ + "웰", + -18.780563354492188 + ], + [ + "ཀ", + -18.780601501464844 + ], + [ + "巳", + -18.781131744384766 + ], + [ + "寛", + -18.781145095825195 + ], + [ + "͚", + -18.78227424621582 + ], + [ + "빵", + -18.782901763916016 + ], + [ + "ฆ", + -18.784664154052734 + ], + [ + "瓢", + -18.78466796875 + ], + [ + "않", + -18.7849063873291 + ], + [ + "嘗", + -18.785160064697266 + ], + [ + "鍾", + -18.785850524902344 + ], + [ + "圹", + -18.786420822143555 + ], + [ + "柚", + -18.78700065612793 + ], + [ + "逼", + -18.78701400756836 + ], + [ + "憶", + -18.787376403808594 + ], + [ + "嶋", + -18.788190841674805 + ], + [ + "ૃ", + -18.789371490478516 + ], + [ + "닷", + -18.789371490478516 + ], + [ + "අ", + -18.78961944580078 + ], + [ + "Ḏ", + -18.789960861206055 + ], + [ + "泄", + -18.791725158691406 + ], + [ + "🎓", + -18.79173469543457 + ], + [ + "턱", + -18.794692993164062 + ], + [ + "熙", + -18.795286178588867 + ], + [ + "릅", + -18.795879364013672 + ], + [ + "٨", + -18.796472549438477 + ], + [ + "稚", + -18.796478271484375 + ], + [ + "ଓ", + -18.797067642211914 + ], + [ + "흉", + -18.797067642211914 + ], + [ + "萃", + -18.797069549560547 + ], + [ + "屯", + -18.797502517700195 + ], + [ + "抢", + -18.797658920288086 + ], + [ + "⎝", + -18.79766082763672 + ], + [ + "蘋", + -18.79825782775879 + ], + [ + "顆", + -18.800512313842773 + ], + [ + "낄", + -18.801237106323242 + ], + [ + "⦿", + -18.801834106445312 + ], + [ + "濁", + -18.80236053466797 + ], + [ + "丨", + -18.803028106689453 + ], + [ + "➠", + -18.804222106933594 + ], + [ + "싼", + -18.805423736572266 + ], + [ + "Ӵ", + -18.806621551513672 + ], + [ + "煌", + -18.80722427368164 + ], + [ + "蒲", + -18.807228088378906 + ], + [ + "ཁ", + -18.807252883911133 + ], + [ + "ᗩ", + -18.80782127380371 + ], + [ + "啶", + -18.80789566040039 + ], + [ + "☂", + -18.808422088623047 + ], + [ + "揃", + -18.80901336669922 + ], + [ + "ˊ", + -18.809627532958984 + ], + [ + "壮", + -18.810192108154297 + ], + [ + "咬", + -18.810216903686523 + ], + [ + "➧", + -18.81022834777832 + ], + [ + "ෞ", + -18.810232162475586 + ], + [ + "닭", + -18.81083106994629 + ], + [ + "坪", + -18.810848236083984 + ], + [ + "碑", + -18.811431884765625 + ], + [ + "堙", + -18.811450958251953 + ], + [ + "ѐ", + -18.8138484954834 + ], + [ + "抹", + -18.814455032348633 + ], + [ + "˗", + -18.8150577545166 + ], + [ + "⎞", + -18.81566047668457 + ], + [ + "∖", + -18.815664291381836 + ], + [ + "ރ", + -18.8156681060791 + ], + [ + "ኽ", + -18.816875457763672 + ], + [ + "Է", + -18.816877365112305 + ], + [ + "ⴰ", + -18.818052291870117 + ], + [ + "齢", + -18.818668365478516 + ], + [ + "ṓ", + -18.81991195678711 + ], + [ + "耕", + -18.81991195678711 + ], + [ + "韻", + -18.8205509185791 + ], + [ + "寮", + -18.820556640625 + ], + [ + "༽", + -18.821128845214844 + ], + [ + "Ɖ", + -18.821739196777344 + ], + [ + "昂", + -18.82236099243164 + ], + [ + "禱", + -18.822364807128906 + ], + [ + "圭", + -18.822542190551758 + ], + [ + "̗", + -18.824665069580078 + ], + [ + "醚", + -18.824764251708984 + ], + [ + "ǃ", + -18.82723617553711 + ], + [ + "迈", + -18.827239990234375 + ], + [ + "♌", + -18.827848434448242 + ], + [ + "🐣", + -18.827848434448242 + ], + [ + "̻", + -18.82968521118164 + ], + [ + "钛", + -18.83024787902832 + ], + [ + "渣", + -18.83026885986328 + ], + [ + "尘", + -18.830921173095703 + ], + [ + "卤", + -18.831527709960938 + ], + [ + "ᔪ", + -18.831531524658203 + ], + [ + "렷", + -18.831531524658203 + ], + [ + "⎛", + -18.8321475982666 + ], + [ + "疼", + -18.832149505615234 + ], + [ + "뼈", + -18.832763671875 + ], + [ + "〃", + -18.83286476135254 + ], + [ + "挺", + -18.8333740234375 + ], + [ + "✫", + -18.83338165283203 + ], + [ + "Ở", + -18.833995819091797 + ], + [ + "ͧ", + -18.834440231323242 + ], + [ + "爵", + -18.834609985351562 + ], + [ + "杠", + -18.835208892822266 + ], + [ + "Ǝ", + -18.835227966308594 + ], + [ + "✞", + -18.83523178100586 + ], + [ + "ਓ", + -18.835847854614258 + ], + [ + "⫹", + -18.835847854614258 + ], + [ + "뀌", + -18.835847854614258 + ], + [ + "🌐", + -18.836467742919922 + ], + [ + "軒", + -18.837074279785156 + ], + [ + "͉", + -18.837621688842773 + ], + [ + "🏁", + -18.83832359313965 + ], + [ + "빗", + -18.83894157409668 + ], + [ + "흘", + -18.839563369750977 + ], + [ + "瀏", + -18.839569091796875 + ], + [ + "掺", + -18.840808868408203 + ], + [ + "捨", + -18.84153938293457 + ], + [ + "Ƹ", + -18.8420467376709 + ], + [ + "੧", + -18.8420467376709 + ], + [ + "🙅", + -18.8420467376709 + ], + [ + "ൗ", + -18.843290328979492 + ], + [ + "ܙ", + -18.843914031982422 + ], + [ + "禄", + -18.84453773498535 + ], + [ + "亨", + -18.846357345581055 + ], + [ + "👼", + -18.84640884399414 + ], + [ + "逢", + -18.846433639526367 + ], + [ + "戊", + -18.846900939941406 + ], + [ + "╨", + -18.847042083740234 + ], + [ + "͂", + -18.84821319580078 + ], + [ + "垣", + -18.848281860351562 + ], + [ + "畜", + -18.848896026611328 + ], + [ + "ᄂ", + -18.84953498840332 + ], + [ + "侠", + -18.849538803100586 + ], + [ + "颈", + -18.850143432617188 + ], + [ + "ܹ", + -18.850162506103516 + ], + [ + "攪", + -18.85064125061035 + ], + [ + "緻", + -18.852685928344727 + ], + [ + "钉", + -18.852703094482422 + ], + [ + "⌈", + -18.853300094604492 + ], + [ + "癒", + -18.853313446044922 + ], + [ + "׃", + -18.854557037353516 + ], + [ + "岭", + -18.85457420349121 + ], + [ + "紗", + -18.85519790649414 + ], + [ + "😖", + -18.8552188873291 + ], + [ + "탱", + -18.855817794799805 + ], + [ + "泌", + -18.85643196105957 + ], + [ + "֫", + -18.856449127197266 + ], + [ + "엉", + -18.856449127197266 + ], + [ + "嬨", + -18.856847763061523 + ], + [ + "姉", + -18.85692024230957 + ], + [ + "塵", + -18.85709571838379 + ], + [ + "͎", + -18.85765838623047 + ], + [ + "窄", + -18.85771369934082 + ], + [ + "躍", + -18.85772705078125 + ], + [ + "鑽", + -18.858718872070312 + ], + [ + "핏", + -18.85897445678711 + ], + [ + "Ꭼ", + -18.859607696533203 + ], + [ + "♘", + -18.860872268676758 + ], + [ + "🔮", + -18.86087417602539 + ], + [ + "頑", + -18.86149787902832 + ], + [ + "🌵", + -18.86150550842285 + ], + [ + "♧", + -18.862138748168945 + ], + [ + "ಫ", + -18.862773895263672 + ], + [ + "숲", + -18.862775802612305 + ], + [ + "錫", + -18.863088607788086 + ], + [ + "僧", + -18.863842010498047 + ], + [ + "༼", + -18.864051818847656 + ], + [ + "漿", + -18.864660263061523 + ], + [ + "♏", + -18.864681243896484 + ], + [ + "氀", + -18.864688873291016 + ], + [ + "줌", + -18.865318298339844 + ], + [ + "伽", + -18.865846633911133 + ], + [ + "ᖇ", + -18.86659049987793 + ], + [ + "悄", + -18.867218017578125 + ], + [ + "⌐", + -18.867223739624023 + ], + [ + "냄", + -18.86722755432129 + ], + [ + "陪", + -18.867229461669922 + ], + [ + "烦", + -18.867691040039062 + ], + [ + "๘", + -18.86786651611328 + ], + [ + "忌", + -18.869075775146484 + ], + [ + "ヾ", + -18.869142532348633 + ], + [ + "펀", + -18.869142532348633 + ], + [ + "诞", + -18.871030807495117 + ], + [ + "⛄", + -18.871700286865234 + ], + [ + "∉", + -18.87234115600586 + ], + [ + "🦅", + -18.872343063354492 + ], + [ + "寨", + -18.873620986938477 + ], + [ + "⛔", + -18.87362289428711 + ], + [ + "聰", + -18.873628616333008 + ], + [ + "曉", + -18.87363624572754 + ], + [ + "ೃ", + -18.874267578125 + ], + [ + "芦", + -18.87491798400879 + ], + [ + "╔", + -18.87554168701172 + ], + [ + "̼", + -18.876075744628906 + ], + [ + "〒", + -18.876768112182617 + ], + [ + "֗", + -18.8768367767334 + ], + [ + "ڕ", + -18.87877082824707 + ], + [ + "猴", + -18.87909507751465 + ], + [ + "漬", + -18.879392623901367 + ], + [ + "ሐ", + -18.87941551208496 + ], + [ + "峡", + -18.87942123413086 + ], + [ + "渔", + -18.8807373046875 + ], + [ + "̹", + -18.881175994873047 + ], + [ + "贯", + -18.881351470947266 + ], + [ + "୦", + -18.882648468017578 + ], + [ + "ʐ", + -18.88265037536621 + ], + [ + "妨", + -18.883285522460938 + ], + [ + "ಏ", + -18.88330078125 + ], + [ + "╕", + -18.88455581665039 + ], + [ + "˹", + -18.88459014892578 + ], + [ + "ᄃ", + -18.885204315185547 + ], + [ + "橘", + -18.88524055480957 + ], + [ + "😨", + -18.885961532592773 + ], + [ + "̽", + -18.886425018310547 + ], + [ + "Ύ", + -18.886539459228516 + ], + [ + "핫", + -18.886539459228516 + ], + [ + "婴", + -18.88654136657715 + ], + [ + "ၽ", + -18.887832641601562 + ], + [ + "🛑", + -18.888492584228516 + ], + [ + "띠", + -18.889142990112305 + ], + [ + "툴", + -18.889142990112305 + ], + [ + "͔", + -18.890300750732422 + ], + [ + "ቂ", + -18.89044761657715 + ], + [ + "Ḍ", + -18.89044761657715 + ], + [ + "✠", + -18.89109992980957 + ], + [ + "恆", + -18.89174461364746 + ], + [ + "̚", + -18.892295837402344 + ], + [ + "👯", + -18.892406463623047 + ], + [ + "🛍", + -18.89240837097168 + ], + [ + "😓", + -18.893064498901367 + ], + [ + "Ᏼ", + -18.893712997436523 + ], + [ + "蓉", + -18.89502716064453 + ], + [ + "妃", + -18.895679473876953 + ], + [ + "Ų", + -18.895681381225586 + ], + [ + "🍸", + -18.895681381225586 + ], + [ + "舶", + -18.89635467529297 + ], + [ + "♒", + -18.89699363708496 + ], + [ + "☄", + -18.898305892944336 + ], + [ + "絞", + -18.898941040039062 + ], + [ + "ٔ", + -18.898967742919922 + ], + [ + "珪", + -18.900251388549805 + ], + [ + "⍵", + -18.900283813476562 + ], + [ + "彡", + -18.900285720825195 + ], + [ + "❂", + -18.900941848754883 + ], + [ + "鹽", + -18.9009952545166 + ], + [ + "綾", + -18.901613235473633 + ], + [ + "옹", + -18.902923583984375 + ], + [ + "🇾", + -18.902923583984375 + ], + [ + "违", + -18.90419578552246 + ], + [ + "贤", + -18.904253005981445 + ], + [ + "🍌", + -18.9049129486084 + ], + [ + "潛", + -18.905542373657227 + ], + [ + "炮", + -18.905574798583984 + ], + [ + "韋", + -18.906232833862305 + ], + [ + "🐷", + -18.906816482543945 + ], + [ + "📽", + -18.906892776489258 + ], + [ + "✒", + -18.90689468383789 + ], + [ + "扑", + -18.90689468383789 + ], + [ + "漁", + -18.90755844116211 + ], + [ + "胖", + -18.90756607055664 + ], + [ + "ሸ", + -18.908222198486328 + ], + [ + "ヮ", + -18.908884048461914 + ], + [ + "胁", + -18.908893585205078 + ], + [ + "Ἡ", + -18.9095516204834 + ], + [ + "卐", + -18.90955352783203 + ], + [ + "🐐", + -18.90955352783203 + ], + [ + "̖", + -18.910831451416016 + ], + [ + "뭔", + -18.9108829498291 + ], + [ + "͕", + -18.9113826751709 + ], + [ + "檬", + -18.912227630615234 + ], + [ + "焰", + -18.91348648071289 + ], + [ + "𐌷", + -18.913551330566406 + ], + [ + "🐺", + -18.914159774780273 + ], + [ + "搵", + -18.914220809936523 + ], + [ + "앰", + -18.914220809936523 + ], + [ + "濱", + -18.91489028930664 + ], + [ + "酚", + -18.91554832458496 + ], + [ + "朴", + -18.91555404663086 + ], + [ + "勘", + -18.91558837890625 + ], + [ + "͍", + -18.916122436523438 + ], + [ + "髪", + -18.916200637817383 + ], + [ + "鄧", + -18.91689109802246 + ], + [ + "琼", + -18.91756820678711 + ], + [ + "ぃ", + -18.917573928833008 + ], + [ + "Ἄ", + -18.918235778808594 + ], + [ + "ஃ", + -18.919578552246094 + ], + [ + "绪", + -18.919584274291992 + ], + [ + "桶", + -18.91959571838379 + ], + [ + "ȃ", + -18.920251846313477 + ], + [ + "❊", + -18.920251846313477 + ], + [ + "褲", + -18.921598434448242 + ], + [ + "菱", + -18.922266006469727 + ], + [ + "謙", + -18.922929763793945 + ], + [ + "ḻ", + -18.92361831665039 + ], + [ + "🏋", + -18.924964904785156 + ], + [ + "懈", + -18.924968719482422 + ], + [ + "🐦", + -18.924970626831055 + ], + [ + "😵", + -18.924972534179688 + ], + [ + "沫", + -18.925373077392578 + ], + [ + "Ꮒ", + -18.92564582824707 + ], + [ + "兗", + -18.926197052001953 + ], + [ + "٧", + -18.926319122314453 + ], + [ + "얇", + -18.926319122314453 + ], + [ + "巣", + -18.926820755004883 + ], + [ + "妆", + -18.926990509033203 + ], + [ + "褌", + -18.9269962310791 + ], + [ + "➸", + -18.927671432495117 + ], + [ + "璽", + -18.92767333984375 + ], + [ + "꾼", + -18.92767333984375 + ], + [ + "哭", + -18.928329467773438 + ], + [ + "箔", + -18.928329467773438 + ], + [ + "咸", + -18.92833709716797 + ], + [ + "♋", + -18.92835235595703 + ], + [ + "妥", + -18.92902374267578 + ], + [ + "ⲓ", + -18.92902946472168 + ], + [ + "🐕", + -18.929031372070312 + ], + [ + "ᴥ", + -18.929689407348633 + ], + [ + "騰", + -18.929689407348633 + ], + [ + "🍹", + -18.930387496948242 + ], + [ + "蟲", + -18.931743621826172 + ], + [ + "喵", + -18.931745529174805 + ], + [ + "Ꮮ", + -18.931747436523438 + ], + [ + "🔺", + -18.932422637939453 + ], + [ + "叢", + -18.932424545288086 + ], + [ + "邵", + -18.932506561279297 + ], + [ + "̭", + -18.93299674987793 + ], + [ + "ʘ", + -18.93446922302246 + ], + [ + "谩", + -18.93446922302246 + ], + [ + "笺", + -18.93501091003418 + ], + [ + "氰", + -18.93577003479004 + ], + [ + "ʑ", + -18.935834884643555 + ], + [ + "ŧ", + -18.935836791992188 + ], + [ + "⻬", + -18.9365177154541 + ], + [ + "冤", + -18.937164306640625 + ], + [ + "ጃ", + -18.93720054626465 + ], + [ + "罚", + -18.937746047973633 + ], + [ + "❃", + -18.937883377075195 + ], + [ + "ኪ", + -18.937885284423828 + ], + [ + "🇽", + -18.939252853393555 + ], + [ + "ἥ", + -18.939254760742188 + ], + [ + "栀", + -18.9399471282959 + ], + [ + "畑", + -18.94062614440918 + ], + [ + "겸", + -18.94131088256836 + ], + [ + "굽", + -18.941312789916992 + ], + [ + "谭", + -18.941314697265625 + ], + [ + "٦", + -18.941997528076172 + ], + [ + "👕", + -18.941997528076172 + ], + [ + "놈", + -18.941999435424805 + ], + [ + "⬜", + -18.943334579467773 + ], + [ + "匠", + -18.94337272644043 + ], + [ + "帅", + -18.94338035583496 + ], + [ + "吟", + -18.943391799926758 + ], + [ + "廢", + -18.94339942932129 + ], + [ + "♈", + -18.94474983215332 + ], + [ + "ጫ", + -18.945438385009766 + ], + [ + "彙", + -18.946056365966797 + ], + [ + "矛", + -18.946130752563477 + ], + [ + "仇", + -18.94614601135254 + ], + [ + "悔", + -18.946819305419922 + ], + [ + "輩", + -18.946819305419922 + ], + [ + "걷", + -18.946819305419922 + ], + [ + "巷", + -18.946828842163086 + ], + [ + "斉", + -18.947507858276367 + ], + [ + "迦", + -18.948143005371094 + ], + [ + "畅", + -18.94818687438965 + ], + [ + "泣", + -18.948196411132812 + ], + [ + "扶", + -18.948823928833008 + ], + [ + "🍩", + -18.948862075805664 + ], + [ + "暫", + -18.949419021606445 + ], + [ + "酱", + -18.949596405029297 + ], + [ + "涯", + -18.949600219726562 + ], + [ + "႐", + -18.953744888305664 + ], + [ + "🍭", + -18.95513916015625 + ], + [ + "韦", + -18.955827713012695 + ], + [ + "欺", + -18.956525802612305 + ], + [ + "₺", + -18.957229614257812 + ], + [ + "搶", + -18.95791244506836 + ], + [ + "丛", + -18.957927703857422 + ], + [ + "␤", + -18.95862579345703 + ], + [ + "嶺", + -18.959308624267578 + ], + [ + "⁎", + -18.959320068359375 + ], + [ + "滝", + -18.959320068359375 + ], + [ + "ٽ", + -18.960023880004883 + ], + [ + "ෛ", + -18.960023880004883 + ], + [ + "吡", + -18.960060119628906 + ], + [ + "唑", + -18.96027183532715 + ], + [ + "撥", + -18.961397171020508 + ], + [ + "柜", + -18.961416244506836 + ], + [ + "Ű", + -18.961423873901367 + ], + [ + "୨", + -18.962121963500977 + ], + [ + "ᴢ", + -18.962827682495117 + ], + [ + "牲", + -18.963485717773438 + ], + [ + "∊", + -18.964229583740234 + ], + [ + "팡", + -18.964229583740234 + ], + [ + "❁", + -18.965627670288086 + ], + [ + "👠", + -18.965633392333984 + ], + [ + "涤", + -18.965639114379883 + ], + [ + "賭", + -18.967737197875977 + ], + [ + "綱", + -18.967741012573242 + ], + [ + "笠", + -18.967744827270508 + ], + [ + "慰", + -18.96841049194336 + ], + [ + "潟", + -18.969152450561523 + ], + [ + "ऱ", + -18.969158172607422 + ], + [ + "૨", + -18.969158172607422 + ], + [ + "⌚", + -18.969160079956055 + ], + [ + "Ꮐ", + -18.97057342529297 + ], + [ + "캘", + -18.97057342529297 + ], + [ + "憂", + -18.972002029418945 + ], + [ + "🌅", + -18.972694396972656 + ], + [ + "匙", + -18.973398208618164 + ], + [ + "Յ", + -18.974111557006836 + ], + [ + "♐", + -18.974821090698242 + ], + [ + "螢", + -18.97551918029785 + ], + [ + "젖", + -18.97553253173828 + ], + [ + "揺", + -18.976213455200195 + ], + [ + "琉", + -18.97626495361328 + ], + [ + "͖", + -18.976884841918945 + ], + [ + "ጡ", + -18.9776668548584 + ], + [ + "橫", + -18.978363037109375 + ], + [ + "Ĥ", + -18.97838020324707 + ], + [ + "၃", + -18.979089736938477 + ], + [ + "綿", + -18.979782104492188 + ], + [ + "ˋ", + -18.97980308532715 + ], + [ + "戈", + -18.97980308532715 + ], + [ + "咗", + -18.979806900024414 + ], + [ + "刮", + -18.979808807373047 + ], + [ + "🍦", + -18.981237411499023 + ], + [ + "猿", + -18.981945037841797 + ], + [ + "敌", + -18.981964111328125 + ], + [ + "⇩", + -18.98265838623047 + ], + [ + "🏅", + -18.982664108276367 + ], + [ + "Ҭ", + -18.983379364013672 + ], + [ + "嘛", + -18.98410987854004 + ], + [ + "賊", + -18.9847469329834 + ], + [ + "ܽ", + -18.984813690185547 + ], + [ + "厘", + -18.98482894897461 + ], + [ + "鬥", + -18.985498428344727 + ], + [ + "ކ", + -18.98552894592285 + ], + [ + "⇌", + -18.98552894592285 + ], + [ + "겔", + -18.98696517944336 + ], + [ + "싫", + -18.987682342529297 + ], + [ + "͵", + -18.98768424987793 + ], + [ + "ᾱ", + -18.98768424987793 + ], + [ + "冗", + -18.988399505615234 + ], + [ + "̘", + -18.98900604248047 + ], + [ + "岗", + -18.98912811279297 + ], + [ + "잖", + -18.989843368530273 + ], + [ + "ឆ", + -18.989852905273438 + ], + [ + "磯", + -18.990562438964844 + ], + [ + "裔", + -18.990575790405273 + ], + [ + "Ố", + -18.993453979492188 + ], + [ + "❸", + -18.99345588684082 + ], + [ + "Ị", + -18.99562644958496 + ], + [ + "☎", + -19.11284065246582 + ], + [ + "😛", + -19.214902877807617 + ], + [ + "络", + -19.237167358398438 + ], + [ + "높", + -19.392269134521484 + ], + [ + "댓", + -20.01149559020996 + ], + [ + "择", + -20.219987869262695 + ], + [ + "🙁", + -20.237056732177734 + ], + [ + "떻", + -20.257667541503906 + ], + [ + "択", + -20.412452697753906 + ], + [ + "😦", + -20.72555160522461 + ], + [ + "됩", + -20.904518127441406 + ], + [ + "昵", + -21.02384376525879 + ], + [ + "骤", + -21.122180938720703 + ], + [ + "펼", + -24.518444061279297 + ], + [ + "뀐", + -24.518545150756836 + ], + [ + "ᐈ", + -24.518644332885742 + ], + [ + "얻", + -24.518644332885742 + ] + ] + } +} \ No newline at end of file diff --git a/models/dbertaInjection/tokenizer_config.json b/models/dbertaInjection/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..3fedc5db3b3da39611b5db2607d43ea03389eacf --- /dev/null +++ b/models/dbertaInjection/tokenizer_config.json @@ -0,0 +1,16 @@ +{ + "bos_token": "[CLS]", + "clean_up_tokenization_spaces": true, + "cls_token": "[CLS]", + "do_lower_case": false, + "eos_token": "[SEP]", + "mask_token": "[MASK]", + "model_max_length": 1000000000000000019884624838656, + "pad_token": "[PAD]", + "sep_token": "[SEP]", + "sp_model_kwargs": {}, + "split_by_punct": false, + "tokenizer_class": "DebertaV2Tokenizer", + "unk_token": "[UNK]", + "vocab_type": "spm" +} diff --git a/models/dbertaInjection/training_args.bin b/models/dbertaInjection/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..8b451277272f21ac55b633e7417f8ea222f0d70f --- /dev/null +++ b/models/dbertaInjection/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a69a93fd6f6ff40d061d2890cc2c653840203973675b926ca88eacda8a741022 +size 3963 diff --git a/models/detoxify/config.json b/models/detoxify/config.json new file mode 100644 index 0000000000000000000000000000000000000000..8db5e7ac5bfc9ec8b613b776009300fe3685d957 --- /dev/null +++ b/models/detoxify/config.json @@ -0,0 +1,21 @@ +{ + "architectures": [ + "RobertaForMaskedLM" + ], + "attention_probs_dropout_prob": 0.1, + "bos_token_id": 0, + "eos_token_id": 2, + "hidden_act": "gelu", + "hidden_dropout_prob": 0.1, + "hidden_size": 768, + "initializer_range": 0.02, + "intermediate_size": 3072, + "layer_norm_eps": 1e-05, + "max_position_embeddings": 514, + "model_type": "roberta", + "num_attention_heads": 12, + "num_hidden_layers": 12, + "pad_token_id": 1, + "type_vocab_size": 1, + "vocab_size": 50265 +} diff --git a/models/detoxify/merges.txt b/models/detoxify/merges.txt new file mode 100644 index 0000000000000000000000000000000000000000..226b0752cac7789c48f0cb3ec53eda48b7be36cc --- /dev/null +++ b/models/detoxify/merges.txt @@ -0,0 +1,50001 @@ +#version: 0.2 +Ġ t +Ġ a +h e +i n +r e +o n +Ġt he +e r +Ġ s +a t +Ġ w +Ġ o +e n +Ġ c +i t +i s +a n +o r +e s +Ġ b +e d +Ġ f +in g +Ġ p +o u +Ġa n +a l +a r +Ġt o +Ġ m +Ġo f +Ġ in +Ġ d +Ġ h +Ġan d +i c +a s +l e +Ġt h +i on +o m +l l +en t +Ġ n +Ġ l +s t +Ġ re +v e +Ġ e +r o +l y +Ġb e +Ġ g +Ġ T +c t +Ġ S +i d +o t +Ġ I +u t +e t +Ġ A +Ġ is +Ġ on +i m +a m +o w +a y +a d +s e +Ġth at +Ġ C +i g +Ġf or +a c +Ġ y +v er +u r +Ġ u +l d +Ġs t +Ġ M +' s +Ġ he +Ġ it +at ion +it h +i r +c e +Ġy ou +i l +Ġ B +Ġw h +o l +Ġ P +Ġw ith +Ġ 1 +t er +c h +Ġa s +Ġw e +Ġ ( +n d +i ll +Ġ D +i f +Ġ 2 +a g +er s +k e +Ġ " +Ġ H +e m +Ġc on +Ġ W +Ġ R +he r +Ġw as +Ġ r +o d +Ġ F +u l +at e +Ġa t +r i +p p +o re +ĠT he +Ġs e +u s +Ġp ro +Ġh a +u m +Ġa re +Ġd e +a in +an d +Ġo r +ig h +es t +is t +a b +r om +Ġ N +t h +Ġc om +Ġ G +u n +o p +0 0 +Ġ L +Ġn ot +es s +Ġe x +Ġ v +re s +Ġ E +e w +it y +an t +Ġb y +e l +o s +or t +o c +q u +Ġf rom +Ġha ve +Ġs u +i ve +ou ld +Ġs h +Ġth is +n t +r a +p e +igh t +ar t +m ent +Ġa l +u st +en d +- - +al l +Ġ O +ac k +Ġc h +Ġ le +i es +re d +ar d +â Ģ +ou t +Ġ J +Ġa b +e ar +i v +al ly +ou r +o st +g h +p t +Ġp l +as t +Ġc an +a k +om e +u d +T he +Ġh is +Ġd o +Ġg o +Ġh as +g e +' t +Ġ U +r ou +Ġs a +Ġ j +Ġb ut +Ġw or +Ġa ll +e ct +Ġ k +am e +Ġw ill +o k +Ġw he +Ġthe y +id e +0 1 +f f +ic h +p l +t her +Ġt r +. . +Ġin t +i e +u re +ag e +Ġn e +i al +a p +in e +ic e +Ġm e +Ġo ut +an s +on e +on g +ion s +Ġwh o +Ġ K +Ġu p +Ġthe ir +Ġa d +Ġ 3 +Ġu s +at ed +ou s +Ġm ore +u e +o g +ĠS t +in d +i ke +Ġs o +im e +p er +. " +b er +i z +a ct +Ġon e +Ġsa id +Ġ - +a re +Ġyou r +c c +ĠT h +Ġc l +e p +a ke +ab le +i p +Ġcon t +Ġwh ich +i a +Ġ im +Ġab out +Ġwe re +ver y +u b +Ġh ad +Ġ en +Ġcom p +, " +ĠI n +Ġu n +Ġa g +i re +ac e +a u +ar y +Ġw ould +as s +r y +Ġ âĢ +c l +o ok +e re +s o +Ġ V +ig n +i b +Ġof f +Ġt e +v en +Ġ Y +i le +o se +it e +or m +Ġ2 01 +Ġre s +Ġm an +Ġp er +Ġo ther +or d +ul t +Ġbe en +Ġl ike +as e +an ce +k s +ay s +ow n +en ce +Ġd is +ct ion +Ġan y +Ġa pp +Ġs p +in t +res s +ation s +a il +Ġ 4 +ic al +Ġthe m +Ġhe r +ou nt +ĠC h +Ġa r +Ġ if +Ġthe re +Ġp e +Ġy ear +a v +Ġm y +Ġs ome +Ġwhe n +ou gh +ac h +Ġth an +r u +on d +ic k +Ġo ver +ve l +Ġ qu +Ċ Ċ +Ġs c +re at +re e +ĠI t +ou nd +p ort +Ġal so +Ġp art +f ter +Ġk n +Ġbe c +Ġt ime +en s +Ġ 5 +op le +Ġwh at +Ġn o +d u +m er +an g +Ġn ew +-- -- +Ġg et +or y +it ion +ing s +Ġj ust +Ġint o +Ġ 0 +ent s +o ve +t e +Ġpe ople +Ġp re +Ġit s +Ġre c +Ġt w +i an +ir st +ar k +or s +Ġwor k +ad e +o b +Ġs he +Ġo ur +w n +in k +l ic +Ġ1 9 +ĠH e +is h +nd er +au se +Ġh im +on s +Ġ [ +Ġ ro +f orm +i ld +at es +ver s +Ġon ly +o ll +Ġs pe +c k +e ll +am p +Ġa cc +Ġb l +i ous +ur n +f t +o od +Ġh ow +he d +Ġ ' +Ġa fter +a w +Ġat t +o v +n e +Ġpl ay +er v +ic t +Ġc ould +it t +Ġa m +Ġf irst +Ġ 6 +Ġa ct +Ġ $ +e c +h ing +u al +u ll +Ġcom m +o y +o ld +c es +at er +Ġf e +Ġbe t +w e +if f +Ġtw o +oc k +Ġb ack +) . +id ent +Ġu nder +rou gh +se l +x t +Ġm ay +rou nd +Ġp o +p h +is s +Ġd es +Ġm ost +Ġd id +Ġad d +j ect +Ġin c +f ore +Ġp ol +on t +Ġag ain +cl ud +ter n +Ġkn ow +Ġne ed +Ġcon s +Ġc o +Ġ . +Ġw ant +Ġse e +Ġ 7 +n ing +i ew +ĠTh is +c ed +Ġe ven +Ġin d +t y +ĠW e +at h +Ġthe se +Ġp r +Ġu se +Ġbec ause +Ġf l +n g +Ġn ow +ĠâĢ ĵ +c om +is e +Ġm ake +Ġthe n +ow er +Ġe very +ĠU n +Ġse c +os s +u ch +Ġe m +Ġ = +ĠR e +i ed +r it +Ġin v +le ct +Ġsu pp +at ing +Ġl ook +m an +pe ct +Ġ 8 +ro w +Ġb u +Ġwhe re +if ic +Ġyear s +i ly +Ġd iff +Ġsh ould +Ġre m +T h +I n +Ġe v +d ay +' re +ri b +Ġre l +s s +Ġde f +Ġr ight +Ġs y +) , +l es +00 0 +he n +Ġth rough +ĠT r +_ _ +Ġw ay +Ġd on +Ġ , +Ġ1 0 +as ed +Ġas s +ub lic +Ġre g +ĠA nd +i x +Ġ very +Ġin clud +ot her +Ġim p +ot h +Ġsu b +ĠâĢ Ķ +Ġbe ing +ar g +ĠW h += = +ib le +Ġdo es +an ge +r am +Ġ 9 +er t +p s +it ed +ation al +Ġb r +Ġd own +Ġman y +ak ing +Ġc all +ur ing +it ies +Ġp h +ic s +al s +Ġde c +at ive +en er +Ġbe fore +il ity +Ġwe ll +Ġm uch +ers on +Ġth ose +Ġsu ch +Ġ ke +Ġ end +ĠB ut +as on +t ing +Ġl ong +e f +Ġth ink +y s +Ġbe l +Ġs m +it s +a x +Ġo wn +Ġpro v +Ġs et +if e +ment s +b le +w ard +Ġsh ow +Ġp res +m s +om et +Ġo b +Ġs ay +ĠS h +t s +f ul +Ġe ff +Ġg u +Ġin st +u nd +re n +c ess +Ġ ent +ĠY ou +Ġgo od +Ġst art +in ce +Ġm ade +t t +st em +ol og +u p +Ġ | +um p +Ġhe l +ver n +ul ar +u ally +Ġa c +Ġm on +Ġl ast +Ġ2 00 +1 0 +Ġst ud +u res +ĠA r +sel f +ar s +mer ic +u es +c y +Ġm in +oll ow +Ġc ol +i o +Ġm od +Ġc ount +ĠC om +he s +Ġf in +a ir +i er +âĢ Ķ +re ad +an k +at ch +e ver +Ġst r +Ġpo int +or k +ĠN ew +Ġs ur +o ol +al k +em ent +Ġus ed +ra ct +we en +Ġs ame +ou n +ĠA l +c i +Ġdiff ere +Ġwh ile +---- ---- +Ġg ame +ce pt +Ġs im +.. . +Ġin ter +e k +Ġre port +Ġpro du +Ġst ill +l ed +a h +Ġhe re +Ġwor ld +Ġth ough +Ġn um +ar ch +im es +al e +ĠS e +ĠI f +/ / +ĠL e +Ġre t +Ġre f +Ġtr ans +n er +ut ion +ter s +Ġt ake +ĠC l +Ġcon f +w ay +a ve +Ġgo ing +Ġs l +u g +ĠA meric +Ġspe c +Ġh and +Ġbet ween +ist s +ĠD e +o ot +I t +Ġe ar +Ġagain st +Ġh igh +g an +a z +at her +Ġex p +Ġo p +Ġin s +Ġg r +Ġhel p +Ġre qu +et s +in s +ĠP ro +is m +Ġf ound +l and +at a +us s +am es +Ġp erson +Ġg reat +p r +Ġs ign +ĠA n +' ve +Ġs omet +Ġs er +h ip +Ġr un +Ġ : +Ġt er +ire ct +Ġf ollow +Ġd et +ic es +Ġf ind +1 2 +Ġm em +Ġc r +e red +e x +Ġex t +ut h +en se +c o +Ġte am +v ing +ou se +as h +at t +v ed +Ġsy stem +ĠA s +d er +iv es +m in +Ġle ad +ĠB l +c ent +Ġa round +Ġgo vern +Ġc ur +vel op +an y +Ġc our +al th +ag es +iz e +Ġc ar +od e +Ġl aw +Ġre ad +' m +c on +Ġre al +Ġsupp ort +Ġ1 2 +.. .. +Ġre ally +n ess +Ġf act +Ġd ay +Ġb oth +y ing +Ġs erv +ĠF or +Ġth ree +Ġw om +Ġm ed +od y +ĠThe y +5 0 +Ġex per +t on +Ġe ach +ak es +Ġc he +Ġc re +in es +Ġre p +1 9 +g g +ill ion +Ġg rou +ut e +i k +W e +g et +E R +Ġm et +Ġs ays +o x +Ġd uring +er n +iz ed +a red +Ġf am +ic ally +Ġha pp +ĠI s +Ġch ar +m ed +v ent +Ġg ener +i ent +p le +i et +re nt +1 1 +v es +pt ion +Ġ2 0 +form ation +Ġc or +Ġoff ic +ie ld +Ġto o +is ion +Ġin f +Ġ Z +t he +o ad +Ġp ublic +Ġpro g +r ic +* * +Ġw ar +Ġp ower +v iew +Ġf ew +Ġl oc +Ġdiffere nt +Ġst ate +Ġhe ad +' ll +Ġp oss +Ġst at +re t +ant s +Ġv al +Ġis s +Ġc le +i vers +an c +Ġex pl +Ġan other +Ġ Q +Ġa v +th ing +n ce +W h +Ġch ild +Ġs ince +i red +l ess +Ġl ife +Ġde velop +itt le +Ġde p +Ġp ass +ã ĥ +Ġt urn +or n +Th is +b ers +ro ss +ĠA d +Ġf r +Ġres p +Ġsec ond +o h +Ġ / +Ġdis c +Ġ & +Ġsomet hing +Ġcomp le +Ġ ed +Ġf il +Ġmon th +a j +u c +Ġgovern ment +Ġwith out +Ġle g +Ġd ist +Ġp ut +Ġqu est +an n +Ġpro t +2 0 +Ġne ver +i ence +Ġle vel +Ġar t +Ġth ings +Ġm ight +Ġeff ect +Ġcont ro +Ġc ent +Ġ1 8 +Ġall ow +Ġbel ie +ch ool +ot t +Ġinc re +Ġfe el +Ġres ult +Ġl ot +Ġf un +ot e +Ġt y +ere st +Ġcont in +Ġus ing +Ġb ig +2 01 +Ġas k +Ġb est +Ġ ) +I N +Ġo pp +3 0 +Ġnum ber +in ess +S t +le ase +Ġc a +Ġm ust +Ġd irect +Ġg l +Ġ < +Ġop en +Ġp ost +Ġcom e +Ġse em +ord ing +Ġwe ek +ate ly +it al +Ġe l +ri end +Ġf ar +Ġt ra +in al +Ġp ri +ĠU S +Ġpl ace +Ġfor m +Ġto ld +" : +ain s +at ure +ĠTr ump +Ġst and +Ġ # +id er +ĠF r +Ġne xt +Ġs oc +Ġp ur +Ġle t +Ġl ittle +Ġh um +Ġ i +r on +1 5 +Ġ1 5 +Ġcomm un +Ġm ark +ĠThe re +Ġw r +ĠTh at +Ġin formation +w ays +Ġb us +a pp +Ġinv est +m e +Ġh ard +ain ed +e ad +Ġim port +Ġapp ro +Ġt est +Ġt ri +Ġre st +os ed +Ġf ull +Ġc are +ĠS p +Ġc ase +O N +Ġs k +Ġl ess +Ġ + +Ġpart ic +ĠP l +ab ly +u ck +is hed +ch n +b e +Ġl ist +at or +Ġto p +Ġad v +ĠB e +ru ct +Ġd em +r ation +l ing +g y +re en +g er +Ġh ome +Ġle ft +Ġbet ter +Ġd ata +Ġ1 1 +Ġatt ack +Ġpro ble +l ine +ard s +Ġbe h +r al +ĠH ow +ĠS he +ar ge +Ġ -- +: // +Ġb ro +ĠP h +at s +Ġbu ild +w w +id ed +a im +as es +en cy +Ġm ain +in ed +Ġinclud ing +Ġ { +Ġg ot +Ġint erest +Ġke ep +Ġ X +Ġe as +ain ing +Ġcl ass +âĢ ¦ +ĠN o +Ġv ar +Ġsm all +amp le +A T +Ġ ide +ĠS o +Ġre ce +Ġpol it +Ġm ov +Ġpl an +Ġper cent +iv ing +Ġc amp +Ġp ay +1 4 +s c +is ed +Ġu nt +one y +pl oy +== == +Ġdid n +ĠI nd +el s +ert ain +Ġp os +__ __ +i ver +Ġpro cess +Ġprog ram +if ied +ĠR ep +1 6 +u ro +olog y +at ter +in a +Ġn ame +ĠA ll +Ġf our +Ġret urn +v ious +b s +Ġcall ed +Ġm ove +ĠS c +ir d +Ġgrou p +Ġb re +Ġm en +Ġc ap +t en +e e +Ġd ri +le g +he re +uth or +Ġp at +Ġcur rent +id es +Ġp op +t o +ent ion +Ġal ways +Ġm il +Ġwom en +Ġ1 6 +Ġo ld +iv en +ra ph +ĠO r +r or +ent ly +Ġn ear +ĠE x +re am +s h +Ġ1 4 +Ġf ree +iss ion +st and +ĠC on +al ity +us ed +1 3 +Ġdes ign +Ġch ange +Ġch ang +Ġb o +Ġv is +em ber +Ġb ook +read y +Ġk ill +2 5 +pp ed +Ġa way +Ġab le +Ġcount ry +Ġcon st +ar n +Ġor der +A R +i or +i um +or th +1 8 +ail able +Ġs w +Ġm illion +Ġ1 3 +at ic +t ed +ĠG o +Ġo per +en g +Ġth ing +aj or +con om +ĠCom m +Ġwh y +u red +ur al +Ġs chool +b y +ĠM ar +Ġa ff +Ġd ays +Ġan n +us h +an e +I f +e g +Ġpro f +Ġhe alth +ou th +B ut +ion al +. , +Ġs ol +Ġal ready +Ġ3 0 +Ġchar act +H e +Ġf riend +E S +i ans +ic le +' d +ĠO n +Ġle ast +Ġp rom +Ġd r +Ġh ist +it her +Ġ est +i qu +1 7 +s on +Ġte ll +Ġt alk +oh n +o int +le ction +A N +Ġunt il +au gh +Ġl ater +Ġ ve +Ġv iew +end ing +iv ed +Ġwor d +w are +Ġc ost +Ġen ough +Ġg ive +ĠUn ited +Ġte chn +are nt +O R +Ġp ar +ĠD r +Ġ201 6 +r ist +er ing +Ġ  +Ġl arge +s ide +ac y +cc ess +Ġw in +Ġimport ant +Ġ19 9 +Ġdoes n +Ġ1 7 +Ġbus iness +Ġcle ar +Ġre se +" , +ur y +Ġe qu +as ter +al f +ĠAmeric an +n ect +Ġex pect +ivers ity +Ġo cc +ĠF l +Ġk ind +Ġme an +Ġp ast +Ġde v +Ġb as +le t +ra ft +Ġor gan +Ġde l +Ġper form +Ġst ory +Ġse ason +ĠC ol +Ġcl aim +Ġc ame +Ġwith in +Ġl ine +Ġpro ject +ĠA t +Ġcontro l +end ed +ĠS y +Ġa ir +iz ation +Ġ * +le y +Ġm oney +id d +Y ou +f or +Ġfam ily +Ġm aking +Ġb it +Ġpol ice +Ġhapp en +Ġ vers +on y +u ff +ĠW hen +Ġs it +ide o +l f +is on +Ġsu re +g in +Ġapp ear +Ġl ight +Ġ es +o f +Ġw ater +Ġt imes +n ot +Ġg row +Ġcomp any +ĠT e +ow s +Ġm ar +our ce +i ol +ar m +b r +Ġex ample +Ġcon c +Ġf ore +ĠT o +p ro +E N +ri es +Ġ2 5 +ĠC an +ne y +Ġact ually +Ġe ver +ur ity +ak en +ap s +Ġt ax +Ġm ajor +am a +Ġof ten +er al +Ġhum an +Ġj ob +is ter +Ġav ailable +oc r +en n +a id +iv id +Ġrec ord +? " +Ġs ing +ĠA m +id ence +Ġnew s +st er +Ġe conom +Ġfollow ing +ĠB r +is ing +Ġh our +m ost +um ent +Ġse x +Ġdes c +Ġbec ome +ĠE d +Ġto ok +Ġha ving +Ġprodu ct +a ult +A s +ar ing +Ġme ans +Ġh op +un e +Ġch o +Ġc ertain +Ġn on +Ġde al +2 4 +le ment +oc i +en e +Ġs ide +ĠP r +ĠM ay +Ġre ason +u ed +c hed +ul ation +Ġe lect +Ġoffic ial +Ġposs ible +Ġh old +and s +ot s +Ġc ity +or ies +Ġse ver +Ġchild ren +Ġon ce +Ġact iv +l er +Ġn ight +it ions +ĠJ ohn +a pe +pl ay +Ġd one +Ġl im +Ġwork ing +ĠP res +or ld +e b +ĠC o +Ġb ody +ail s +ut es +ĠM r +Ġwhe ther +Ġa uthor +ro p +Ġpro per +Ġse en +) ; +Ġf ac +ĠS u +Ġcon d +it ing +Ġcour se +Ġ } +-------- -------- +a ign +Ġev ent +Ġen g +Ġp ot +Ġin tern +i am +Ġsh ort +em pt +ã Ĥ +ĠG od +il ar +8 0 +Ġor ig +I S +our n +ab ility +it ive +Ġd am +Ġ1 00 +Ġp ress +Ġdo ing +Ġprot ect +r ing +Ġthough t +Ġquest ion +re w +ĠW ar +Ġsever al +ĠSt ate +Ġg iven +Ġf und +ĠT w +Ġw ent +an ces +w ork +p or +m y +4 0 +Ġar g +art ment +ust om +Ġpol ic +Ġme et +Ġc reat +2 2 +ĠSt ates +Ġg ames +ra w +ut ure +Ġunder stand +ur s +ĠO b +l ish +s y +Ġm akes +Ġw on +ag on +Ġh tt +Ġl ove +ent ial +Ġcomple te +p ar +ĠI m +A L +Ġacc ount + ł +ore d +ver t +Ġ ident +Ġ201 5 +Ġother s +ĠM in +i ber +ver age +The re +ition al +d d +Ġpro b +Ġyou ng +Ġal ong +Ġacc ording +Ġy et +Ġmem bers +ĠWh at +o id +ĠM an +A nd +Ġam ong +a i +Ġem ploy +ĠR es +Ġ > +Ġinv ol +Ġl ow +a f +ĠC ar +Ġh ig +ĠO ne +ĠS ec +in ation +Ġlike ly +Ġan t +ag ed +ĠR uss +Ġb en +Ġre le +F or +b ack +ĠN ot +Ġpres ident +b all +Ġacc ess +ivid ual +ĠD em +ĠE uro +6 0 +Ġkn own +ir l +ĠG r +Ġear ly +u se +iet y +âĢ ĵ +Ġf ight +Ġs ent +Ġto day +Ġmark et +" . +Ġb ased +Ġstr ong +ur ther +Ġde b +m ber +Ġproble m +Ġde ath +Ġsoc ial +im ate +A S +ort un +Ġcamp aign +er y +C h +Ġe y +i ally +Ġm us +w h +p os +Ġ er +Ġsa f +Ġmonth s +ir on +Ġv iol +Ġf ive +Ġst re +Ġplay ers +in c +al d +y ear +a un +Ġsu ccess +Ġpres ent +ere nce +Ġ201 4 +Ġsu gg +Ġpartic ular +Ġtr y +Ġsugg est +ĠCh rist +on es +Ġpri v +2 3 +Ġc rit +Ġl and +Ġloc al +if y +2 9 +Ġa ut +E D +ĠG u +Ġm ult +Ġpolit ical +Ġask ed +Ġfor mer +it ter +ri pt +Ġcl ose +Ġp ract +ĠY ork +Ġget ting +Ġac ross +Ġcom b +Ġbelie ve +Ġ z +Ġto get +Ġtoget her +ĠC ent +ir c +Ġind ividual +ĠM c +2 7 +is k +ĠE ng +Ġf ace +Ġ2 4 +Ġval ue +Ġare a +e v +Ġw rit +ĠPres ident +Ġv ot +Ġke y +Ġm om +p ut +Ġany thing +Ġexper ience +att le +Ġm ind +a ff +om m +Ġf uture +g ed +Ġc ut +Ġto t +it ch +Ġv ideo +Ġinvest ig +Ġn et +ĠM y +r ict +i en +. ) +Ġimp ro +th ough +ward s +Ġcon nect +ĠM ed +sel ves +ens ive +m b +o ber +at ors +A n +Ġ5 0 +Ġre du +res ent +Ġab ove +Ġf re +ĠEuro pe +s w +Ġam ount +ĠA pp +Ġe ither +Ġmil it +Ġan al +Ġf ail +ĠE n +al es +Ġspec ial +Ġbl ack +I T +c her +Ġlook ing +Ġf ire +y n +Ġal most +o on +Ġstud y +Ġm iss +c hes +ro wn +Ġt re +Ġcommun ity +Ġmed ia +Ġf ood +Ġcom es +ĠUn iversity +Ġsing le +Wh at +u ly +Ġh alf +ag ue +h od +ĠRep ublic +Ġstart ed +Ġqu ick +ot o +b ook +Ġiss ue +it or +Ġel se +Ġcons ider +2 6 +ro du +Ġt aken +2 8 +9 9 +ĠW ith +Ġtr ue +Ġw a +Ġtr ad +Ġag o +Ġm ess +ie f +Ġadd ed +o ke +Ġb ad +Ġf av +3 3 +Ġsim ilar +as k +ĠD on +Ġcharact er +ort s +ĠH ouse +Ġreport ed +Ġty pe +v al +i od +ĠHow ever +Ġt arg +Ġent ire +pp ing +Ġhist ory +Ġl ive +ff ic +.... .... +ed eral +Ġtr ying +Ġdisc uss +ĠH ar +ac es +l ished +Ġse lf +os p +re st +Ġro om +el t +Ġf all +ol ution +Ġe t +Ġ x +Ġis n +Ġide a +b o +Ġs ound +ĠD ep +Ġsome one +ci ally +ull y +Ġf oc +Ġob ject +if t +ap er +Ġplay er +Ġr ather +Ġserv ice +as hing +ĠD o +ĠP art +ru g +m on +p ly +Ġm or +Ġnot hing +Ġprov ide +I C +un g +Ġpart y +Ġex ist +Ġm ag +7 0 +Ġr ul +Ġh ouse +Ġbeh ind +Ġhow ever +ĠW orld +Ġs um +Ġapp lic +Ġ ; +Ġfun ction +g r +ĠP ol +Ġfr ont +2 00 +Ġser ies +Ġt em +Ġty p +ill s +Ġo pt +Ġpoint s +Ġbel ow +itt ed +Ġspec ific +Ġ201 7 +um b +Ġr a +Ġpre vious +Ġpre t +re me +Ġc ustom +Ġcour t +ĠM e +Ġre pl +Ġwho le +g o +c er +Ġt reat +ĠA ct +Ġprob ably +Ġle arn +end er +ĠA ss +Ġvers ion +n ow +Ġche ck +ĠC al +R E +min ist +O n +our ces +Ġben ef +Ġd oc +Ġdet er +Ġen c +Ġsu per +Ġadd ress +Ġv ict +Ġ201 3 +Ġme as +t r +Ġf ield +W hen +Ġsign ific +u ge +Ġfe at +Ġcomm on +l oad +Ġbe gin +Ġbr ing +Ġa ction +er man +Ġdesc rib +Ġind ust +Ġwant ed +ri ed +m ing +Ġatt empt +4 5 +f er +Ġd ue +ress ion +# # +Ġsh all +Ġs ix +o o +Ġst ep +Ġp ub +Ġhim self +Ġ2 3 +Ġc op +Ġd est +Ġst op +A C +ib ility +Ġl ab +ic ult +Ġhour s +Ġcre ate +Ġf urther +ĠAmeric a +ĠC ity +Ġd ou +he ad +S T +ĠN orth +c ing +Ġn ational +u le +ĠIn st +Ġt aking +ĠQ u +ir t +Ġre d +Ġrese arch +v iron +ĠG e +Ġbre ak +an a +Ġsp ace +ater ial +Ġrec ent +ĠA b +Ġgener al +Ġh it +Ġper iod +Ġevery thing +ive ly +Ġph ys +Ġsay ing +an ks +Ġc ou +Ġc ult +ac ed +e al +u ation +Ġc oun +l u +Ġinclud e +Ġpos ition +ĠA fter +ĠCan ad +ĠE m +Ġim m +ĠR ed +Ġp ick +Ġcom pl +Ġm atter +re g +e xt +ang u +is c +o le +a ut +Ġcomp et +e ed +f ect +Ġ2 1 +ĠS en +ĠThe se +as ing +Ġcan not +Ġin it +Ġrel ations +ac hed +Ġb ar +Ġ4 0 +ĠT H +Ġ201 2 +Ġv ol +Ġg round +Ġsec urity +Ġup d +il t +3 5 +Ġconc ern +ĠJ ust +Ġwh ite +Ġseem s +ĠH er +pe cially +i ents +Ġann oun +Ġf ig +ight s +Ġst ri +l ike +id s +Ġs us +Ġw atch +Ġ â +Ġw ind +ĠC ont +Ġit self +Ġm ass +A l +y le +iqu e +ĠN ational +Ġab s +Ġp ack +Ġout side +Ġan im +Ġp ain +et er +Ġman ag +du ct +og n +Ġ ] +ĠSe pt +se c +o ff +ĠJ an +Ġf oot +ad es +Ġth ird +Ġm ot +Ġev idence +int on +Ġth reat +a pt +pl es +c le +Ġl o +Ġde cl +Ġit em +med i +Ġrep resent +om b +am er +Ġsignific ant +og raph +s u +Ġc al +i res +00 00 +I D +A M +Ġsim ply +Ġlong er +Ġf ile +O T +c he +S o +ate g +or g +ĠH is +Ġen er +Ġd om +Ġup on +il i +": " +Ġthem selves +Ġcom ing +Ġqu ite +Ġdiff icult +ĠB ar +il ities +re l +end s +c ial +6 4 +Ġwom an +ra p +y r +Ġne cess +ip s +Ġte xt +Ġrequ ire +Ġmilit ary +Ġre view +Ġresp ons +7 5 +Ġsub ject +Ġinst ead +Ġiss ues +Ġg en +" ," +Ġmin utes +Ġwe ap +r ay +am ed +t ime +b l +H ow +Ġc ode +ĠS m +Ġhig her +ĠSt e +r is +Ġp age +Ġstud ents +ĠIn tern +Ġmet hod +ĠA ug +ĠP er +ĠA g +Ġpolic y +ĠS w +Ġex ec +Ġac cept +um e +rib ut +Ġword s +Ġfin al +Ġchang es +ĠDem ocr +Ġfriend s +Ġres pect +Ġe p +Ġcomp an +iv il +Ġdam age +** ** +og le +viron ment +Ġne g +ent al +Ġa p +Ġtot al +iv al +! " +l im +Ġneed s +Ġag re +Ġdevelop ment +Ġa ge +ip le +2 1 +Ġresult s +ĠA f +S h +Ġg un +ĠOb ama +ro ll +Ġ @ +Ġright s +ĠB rit +Ġrun ning +Ġwas n +Ġp ort +Ġr ate +Ġpret ty +Ġtarg et +Ġsa w +Ġc irc +Ġwor ks +ic ro +al t +o ver +ww w +Th at +l ier +Ġevery one +ud e +Ġp ie +idd le +ra el +Ġr ad +Ġbl ock +Ġw alk +T o +ã ģ +n es +ĠA ust +a ul +ro te +ĠS outh +ess ion +op h +Ġshow s +Ġs ite +Ġj o +Ġr isk +cl us +l t +Ġin j +id ing +ĠS pe +Ġch all +ir m +Ġ2 2 +itt ing +st r +Ġh y +L E +ke y +Ġbe gan +at ur +ashing ton +l am +ĠD av +b it +Ġs ize +ĠP ar +3 8 +ourn al +f ace +Ġdec ision +Ġl arg +Ġj ud +re ct +Ġcontin ue +ĠO ct +ove red +ĠI nt +==== ==== +Ġp arent +ĠW ill +Ġeas y +Ġd rug +ang er +Ġs ense +Ġd i +id ay +Ġener gy +ist ic +Ġass oci +ar ter +ob al +e ks +ĠE l +ur ch +Ġg irl +o e +it le +Ġ2 8 +ĠC he +Ġrequ est +Ġso on +Ġh ost +k y +Ġst ates +om es +Ġm aterial +le x +Ġmom ent +Ġan sw +on se +Ġes pecially +Ġn orm +Ġserv ices +p ite +r an +Ġro le +4 4 +) : +Ġc red +C l +____ ____ +Ġm at +Ġl og +ĠCl inton +O U +Ġoff ice +Ġ2 6 +Ġch arg +Ġtr ack +m a +Ġhe art +Ġb all +Ġperson al +Ġbuild ing +n a +s et +b ody +ĠBl ack +Ġincre ase +itt en +Ġneed ed +3 6 +3 2 += " +Ġl ost +Ġbec ame +Ġgrou ps +ĠM us +Ġw rote +ĠP e +Ġpro p +j oy +à © +ĠWh ite +Ġde ad +. ' +Ġhtt p +Ġwe bs +O S +Ġins ide +Ġwr ong +Ġstat ement +Ġ ... +y l +Ġfil m +Ġmus ic +Ġsh are +ific ation +Ġre lease +Ġfor ward +Ġst ay +Ġcomp ut +it te +s er +Ġorig inal +Ġc ard +Ġc and +Ġd iv +at ural +Ġfav or +O M +Ġc ases +us es +Ġse ction +Ġle ave +g ing +ov ed +ĠW ashington +3 9 +ĠG l +Ġrequ ired +act ion +ap an +o or +it er +ĠK ing +Ġcount ries +ĠG erman +ll ing +Ġ2 7 +3 4 +Ġquest ions +Ġpr im +Ġc ell +Ġsh oot +Ġany one +ĠW est +Ġaff ect +ep end +Ġon line +ĠIs rael +ĠSept ember +Ġab ility +Ġcont ent +is es +Ġre ve +Ġl aun +Ġind ic +Ġfor ce +c ast +Ġso ld +av ing +f l +Ġso ft +Ġcompan ies +ce ed +Ġart icle +Ġa ud +Ġre v +Ġed uc +Ġplay ing +0 5 +Ġhe ld +ct or +Ġrele ased +Ġf ederal +3 7 +Ġad minist +Ġinter view +Ġinst all +Ġrece ived +Ġs ource +u k +P h +Ġser ious +Ġcre ated +Ġc ause +Ġim medi +Ġdef in +u el +ĠDep artment +ct ions +ĠC our +ĠN ow +z e +it es +it ution +Ġl ate +Ġspe ak +n ers +Ġleg al +ar i +ĠC or +Ġwe eks +Ġmod el +Ġp red +Ġex act +B C +ĠB y +IN G +os ing +Ġt akes +Ġreg ard +Ġopp ortun +Ġpr ice +Ġ19 8 +ĠA pr +f ully +Ġor d +Ġproble ms +ru ction +h am +ĠC ount +le ge +Ġlead ers +E T +le v +Ġde ep +olog ical +es e +h aps +ĠS ome +Ġp ers +Ġcont ract +Ġrelations hip +s p +ou d +Ġb ase +4 8 +m it +A d +anc ial +Ġcons um +Ġpot ential +Ġl angu +re m +et h +Ġrel ig +ress ed +6 6 +Ġl ink +Ġl ower +ay er +ĠJ une +Ġf em +un t +er c +ur d +Ġcont act +Ġ ill +Ġm other +Ġest ab +h tt +ĠM arch +ĠB ro +ĠCh ina +Ġ2 9 +Ġs qu +Ġprov ided +Ġa verage +as ons +Ġ201 1 +Ġex am +l in +5 5 +n ed +Ġper fect +Ġt ou +al se +u x +Ġbu y +Ġsh ot +Ġcol lect +Ġph ot +Ġplay ed +Ġsur pr +Ġofficial s +Ġsim ple +av y +Ġindust ry +Ġhand s +g round +Ġp ull +Ġr ound +Ġus er +Ġr ange +u ary +Ġpriv ate +op s +e es +Ġw ays +ĠM ich +Ġve h +Ġex cept +Ġter ms +im um +pp er +I ON +ore s +ĠDr agon +ou l +Ġd en +Ġperform ance +Ġb ill +c il +4 7 +Ġen vironment +Ġex c +ad d +Ġwor th +Ġp ict +Ġch ance +Ġ201 8 +b or +Ġspe ed +ict ion +Ġal leg +ĠJ apan +at ory +re et +Ġm atch +ĠI I +Ġst ru +ord er +Ġst e +Ġl iving +Ġst ruct +in o +Ġse par +her n +Ġresp onse +Ġen joy +Ġv ia +A D +um ents +ace book +Ġmem ber +ib r +iz ing +Ġto ol +ĠM on +ĠWh ile +h ood +ĠA ng +ĠD ef +Ġoff er +T r +a ur +Ġturn ed +ĠJ uly +d own +an ced +Ġrec ently +ĠE ar +Ġc e +ĠSt ar +ĠC ong +rough t +Ġbl ood +Ġhop e +Ġcom ment +ain t +Ġar ri +il es +Ġpartic ip +ough t +ri ption +0 8 +4 9 +Ġg ave +Ġse lect +Ġkill ed +sy ch +Ġgo es +i j +Ġc oll +Ġimp act +at ives +ĠS er +0 9 +ĠAug ust +Ġb oy +d e +ĠD es +Ġf elt +U S +Ġexpect ed +Ġim age +ĠM ark +cc ording +o ice +E C +ĠM ag +en ed +h old +ĠP ost +Ġpre vent +N o +Ġinvol ved +Ġey es +Ġquick ly +A t +un k +Ġbeh av +Ġ ur +Ġl ed +c ome +e y +Ġcand id +Ġear lier +Ġfoc us +et y +P ro +led ge +ix ed +ill ed +Ġpop ular +A P +Ġset t +l ight +Ġvar ious +in ks +Ġlevel s +Ġro ad +ell ig +ab les +he l +itte e +ĠG ener +y pe +Ġhe ard +ic les +Ġm is +Ġus ers +ĠS an +Ġimpro ve +Ġf ather +Ġse arch +The y +v il +Ġprof ess +Ġkn ew +Ġl oss +Ġev ents +6 5 +Ġb illion +0 7 +0 2 +ĠNew s +ĠA M +Ġco ver +w here +ens ion +Ġb ott +Ġare as +en ces +op e +ĠTw itter +a el +Ġget s +ĠGo ogle +Ġs n +i ant +Ġv ote +Ġnear ly +Ġinclud ed +Ġrec ogn +z z +m m +al ed +Ġhappen ed +0 4 +Ġh ot +Ġwho se +Ġc ivil +Ġsu ff +o es +it iz +ĠSy ri +Ġresp ond +Ġh on +Ġfeat ures +Ġeconom ic +ĠApr il +r im +Ġtechn ology +Ġo ption +ag ing +Ġpur ch +R e +Ġl at +ch ie +is l +Ġrec omm +u f +Ġtr aining +Ġeffect s +Ġf ast +Ġ201 0 +Ġocc ur +Ġwebs ite +Ġem ail +Ġs ens +e ch +Ġo il +Ġinf lu +Ġcurrent ly +ĠS ch +ĠAd d +Ġgo al +Ġsc ient +Ġcon v +1 00 +em y +Ġdec ided +Ġtra vel +Ġm ention +L L +0 3 +Ġe lection +Ġph one +Ġlook s +Ġsit uation +Ġc y +Ġh or +b ed +ĠCour t +a ily +av es +Ġqu ality +ĠCom p +w ise +Ġt able +Ġst aff +ĠW ind +et t +Ġtri ed +ide red +Ġadd ition +Ġb ox +Ġl ack +ar ily +Ġw ide +Ġm id +Ġbo ard +ys is +Ġant i +h a +Ġd ig +en ing +Ġd ro +C on +6 8 +Ġsl ow +b ased +se qu +Ġp ath +E x +ak er +Ġwork ed +Ġp en +Ġeng ine +Ġlook ed +ĠSu per +ĠS erv +Ġvict im +U n +Ġproper ty +Ġint rodu +Ġexec ut +ĠP M +L e +Ġcol or +ĠM ore +Ġ6 0 +Ġnet work +Ġd ate +c ul +id ge +Ġext ra +3 1 +Ġs le +6 7 +Ġw ond +Ġreport s +j ust +ĠAust ral +Ġcap ital +Ġen s +Ġcomm and +Ġallow ed +Ġpre p +Ġca pt +h ib +Ġnum bers +ch an +Ġf air +m p +om s +Ġre ach +W ith +t ain +Ġbro ad +Ġcou ple +ec ause +ly ing +ĠF eb +Ġsc reen +Ġl ives +Ġpri or +ĠCong ress +A r +Ġappro ach +Ġe mer +ar ies +ĠD is +s erv +ĠN e +Ġbu ilt +c ies +Ġre pe +Ġrul es +for ce +ĠP al +Ġfin ancial +Ġcons idered +ĠCh ar +n ces +ĠI S +Ġb rought +Ġb i +i ers +ĠS im +O P +Ġproduct s +Ġvis it +Ġdoc ument +Ġcon duct +Ġcomplete ly +in ing +ĠCal if +ib ly +Ġwr itten +ĠT V +em ents +Ġd raw +O ne +Ġpub lished +Ġsec ret +r ain +he t +ĠF acebook +ond ay +ĠU p +Ġsex ual +Ġth ous +ĠP at +Ġ ess +Ġstand ard +Ġar m +g es +ect ion +Ġf ell +Ġfore ign +an i +ĠFr iday +Ġreg ular +in ary +Ġincre ased +Ġus ually +Ġdem on +Ġd ark +Ġadd itional +ro l +ĠO f +Ġprodu ction +! ! +und red +Ġintern ational +id ents +ĠF ree +rou p +Ġr ace +Ġm ach +Ġh uge +A ll +le ar +ove mber +Ġto wn +Ġatt ention +ĠO ff +y ond +ĠThe n +f ield +Ġter ror +ra z +ĠB o +Ġmeet ing +ĠP ark +Ġar rest +Ġf ear +Ġa w +ĠV al +or ing +' , +Ġext reme +ar r +Ġwork ers +A fter +Ġ3 1 +n et +am ent +Ġdirect ly +Ġpop ulation +ub e +ĠOct ober +ĠI N +ĠJan uary +5 9 +ĠDav id +Ġc ross +ce mber +ĠF irst +Ġmess age +ir it +Ġn ation +Ġp oll +is ions +Ġansw er +n y +is ode +Ġcar ry +ĠRuss ia +Ġhe ar +eng th +ro y +Ġn atural +in ally +Ġdo g +m itted +Ġtr ade +Ġsub st +Ġmult iple +ĠAf ric +Ġf ans +Ġs ort +Ġgl obal +ic ation +ĠW ed +ar a +Ġa chie +Ġlangu age +ve y +Ġt al +Ġnecess ary +Ġdet ails +Ġs en +ĠS und +ĠRe g +ĠR ec +0 6 +Ġs il +ress ive +Ġmed ical +un ch +orn ia +Ġu nd +f ort +oc ks +ĠM onday +ues day +c raft +7 7 +ur t +Ġ ver +ĠH ill +Ġrece ive +Ġmor ning +es tern +Ġb ank +Ġs at +ir th +ĠH igh +Ġdev ice +ĠTH E +ĠCent er +Ġsaf e +Ġp le +ĠCanad a +Ġsystem s +Ġass ist +Ġsur v +Ġb attle +ĠS oc +vert is +S he +Ġp aper +Ġgrow th +Ġc ast +S c +Ġpl ans +ll ed +Ġpart s +Ġw all +Ġmove ment +Ġpract ice +im ately +Ġdis play +Ġsomet imes +om p +ĠP aul +ĠY es +k ing +5 8 +o ly +Ġs on +Ġav oid +ok es +ĠJ ew +Ġto wards +as c +Ġ // +ĠK ore +Ġtalk ing +Ġcor rect +Ġsp ent +ic ks +i able +e ared +Ġter m +Ġwant s +om ing +Ġ ut +Ġdou b +Ġfor ces +Ġp lease +6 9 +ĠN ovember +at form +ond on +Ġon es +Ġimmedi ately +ĠRuss ian +ĠM et +Ġde g +Ġparent s +C H +ĠAmeric ans +al y +ĠM od +Ġsh own +Ġcond itions +Ġst uff +Ġre b +ĠY our +Ġinclud es +n own +ĠS am +Ġexper ien +m ission +ĠE ven +augh t +Ġannoun ced +ĠRepublic an +Ġdeter min +Ġdescrib ed +ĠCount y +( ) +Ġdo or +Ġchang ed +Ġne igh +ĠH ere +Ġcle an +Ġp an +ĠDe cember +ĠEurope an +ir ing +ap ter +Ġcl ub +ĠT uesday +Ġp aid +ĠN et +Ġattack s +Ġcharact ers +Ġal one +Ġdirect or +d om +Ġ3 5 +Ġl oad +Ġr out +ĠCalif ornia +Ġfin ally +Ġr ac +Ġcont r +Ġexact ly +res h +p ri +ĠIs lam +Ġn ature +Ġcare er +Ġlat est +Ġcon vers +ĠS l +p ose +ci ent +ĠIn c +iv ity +8 8 +ĠA tt +ĠM or +nes day +Ġwe ight +k en +Ġnot e +Ġteam s +Ġ \ +air s +ĠG reen +Ġh undred +on ent +Ġstre ng +Ġcons ist +ic ated +Ġreg ul +Ġl ic +ast ic +Ġt en +urs day +ellig ence +ous ly +ĠU K +B I +Ġcost s +Ġind epend +ĠA P +Ġnorm al +Ġh om +Ġob vious +Ġs we +Ġst ar +Ġread y +ac her +Ġimp lement +g est +Ġs ong +ĠG et +ĠL ab +Ġinterest ing +us ing +Ġg iving +ĠSund ay +Ġet c +Ġm iddle +Ġrem ember +r ight +os ition +ut ions +Ġm ax +4 6 +Ġyour self +Ġdem and +Ġtreat ment +Ġd anger +ĠC ons +Ġgu y +ĠBrit ish +Ġphys ical +Ġrel ated +Ġrem ain +Ġcould n +Ġref er +Ġc itiz +b ox +EN T +bo ard +Ġin n +I G +er o +ĠSt reet +osp ital +ren ch +cher s +Ġst ra +O L +ag er +ĠA N +Ġeas ily +I A +en ge +in y +Ġcl os +ock ed +Ġus es +ĠC oun +I m +u ild +? ? +m ore +Ġan g +Ġwr ite +ol ute +5 7 +Ġlead er +Ġread ing +< / +Ġaut om +est s +4 3 +Ġleg isl +ĠG old +Ġdesign ed +ĠS T +ĠLe g +a res +Ġbe aut +ĠT ex +Ġappear s +Ġstru gg +ĠR om +Ġ 00 +Ġcho ice +Ġparticular ly +ĠF rom +op er +ĠL ondon +ann ed +Ġallow s +ob ile +Ġdiffere nce +âĢ ¢ +ĠV iew +ĠWed nesday +Ġal though +Ġrel ative +Ġapplic ation +ate ver +Ġare n +Ġmy self +Ġim ag +Ġdis e +Ġsoc iety +Ġfre qu +ĠEng lish +Ġpo or +ĠD ay +Ġwrit ing +Ġse ven +Ġstart ing +Ġb ud +Ġpr int +ĠTr ans +uf act +ĠSt ud +n ew +Ġcr im +Ġg ives +Ġco ol +a e +i ance +ĠGener al +Ġthink ing +Ġsa ve +Ġlim ited +ĠPart y +Ġmean ing +p en +ow ers +ĠJ ack +E M +Ġn ice +ru pt +Ġg as +Ġe ight +Ġfe et +Ġeff ort +Ġ ign +ic it +B l +co in +Ġop in +Ġbr ain +Wh ile +he st +ĠTh ursday +Ġwould n +augh ter +Ġtou ch +le ments +Ġstud ies +Ġcent er +c ont +or ge +Ġcomput er +Ġinvestig ation +P l +or ks +Ġ200 8 +Ġincre asing +Ġst ore +Ġcom ments +Ġb al +m en +Ġdo ll +Ġl iber +Ġw ife +Ġlaw s +atur day +it ness +Ġmod ern +ĠS k +Ġadminist ration +Ġopportun ity +Ġs al +Ġpower ful +M y +Ġclaim s +ĠEar th +ord s +Ġt itle +Ġes c +n ame +N ot +om en +Ġbe yond +Ġc amer +Ġse ll +it ute +ear ch +Ġapp l +im ent +4 2 +ĠAr t +Ġun f +Ġviol ence +ur g +ĠE ast +Ġcomp ared +Ġopt ions +Ġthrough out +Ġv s +ig r +. [ +ac hes +7 8 +Ġfil es +F L +E L +ar ian +ĠJ ames +ĠA ir +an ch +Ġdet ail +Ġpie ce +P S +Ġn amed +Ġeduc ation +Ġdri ve +Ġitem s +Ġstud ent +ic ed +: : +ic o +Ġth row +Ġsc ene +Ġcomple x +Ġ200 9 +Ġpre c +ĠB re +7 9 +Ġcon cept +Ġstat us +am ing +Ġd ied +Ġknow ledge +Ġbegin ning +O D +ru ary +Ġcertain ly +Ġgu ys +Ġsl ight +in n +ound s +Ġf ine +Ġf at +ic ations +Ġper haps +ĠA nt +Ġinc ome +Ġhtt ps +Ġmajor ity +port s +st on +Ġgreat er +Ġfe ed +ent ially +Ġsaf ety +Ġun ique +and om +Ġg one +Ġshow ed +Ġhist or +Ġcoun ter +i us +id a +Ġlead ing +i pe +Ġs end +ĠDon ald +er ve +Ġdef ense +ines e +Ġy es +ĠF ire +ĠMus lim +ra q +Ġcontin ued +os h +Ġprov ides +Ġpr ison +ĠP re +Ġhapp y +Ġeconom y +Ġtr ust +ag s +ĠG ame +Ġweap ons +um an +ĠC le +it ation +Ġanal ysis +ĠT imes +Ġsc ience +- > +Ġfig ure +Ġdis app +ent y +Ġsoft ware +Ġu lt +Ġoffic ers +N ew +I s +Ġrem ains +ĠInd ia +Ġp sych +ri ef +Ġc at +es c +Ġob serv +Ġst age +ĠD ark +Ġent er +ch ange +Ġpass ed +Ġdes pite +ĠO ut +Ġmov ie +r s +Ġv oice +m ine +ĠPl ay +Ġto ward +ĠT er +Ġreg ion +Ġval ues +or ters +Ġm ount +Ġoffic er +ĠO ther +b an +Ġh ous +w ood +ro om +I V +ĠS un +se e +ĠO ver +ro g +9 0 +Ġl ay +ĠT ur +a wn +Ġpress ure +ĠS ub +Ġbook s +ed om +ĠS and +A A +ag o +Ġre asons +f ord +Ġactiv ity +U T +N ow +ĠSen ate +ce ll +n ight +Ġcall s +in ter +Ġlet ter +ĠR ob +ĠJ e +Ġcho ose +ĠL aw +G et +B e +Ġro b +Ġtyp es +Ġpl atform +Ġqu arter +R A +ĠT ime +Ġmay be +ĠC r +9 5 +p re +Ġmov ing +Ġl if +Ġgo ld +Ġs om +Ġpat ients +Ġtr uth +ĠK e +ur ance +ant ly +m ar +Ġchar ge +ĠG reat +Ġce le +---------------- ---------------- +Ġro ck +ro id +an cy +Ġcred it +a ud +B y +ĠE very +Ġmov ed +ing er +rib ution +Ġn ames +Ġstra ight +ĠHe alth +ĠW ell +Ġfe ature +Ġr ule +Ġsc he +in ated +ĠMich ael +ber g +4 1 +il ed +b and +Ġcl ick +ĠAng el +on ents +Â Ń +ĠI raq +ĠS aturday +Ġa ware +p art +Ġpat tern +O W +ĠL et +Ġgr ad +ign ed +Ġassoci ated +Ġst yle +n o +i ation +a ith +il ies +Ġst ories +ur ation +Ġindividual s +ĠâĢ ¦ +m iss +ĠAss oci +ish ing +ab y +Ġsum mer +ĠB en +Ġ3 2 +Ġar ch +ut y +ĠTex as +h ol +Ġfull y +Ġm ill +Ġfollow ed +ĠB ill +ĠInd ian +ĠSec ret +ĠB el +ĠFeb ruary +Ġjob s +Ġseem ed +ĠGo vern +i pped +Ġreal ity +Ġl ines +Ġp ark +Ġmeas ure +ĠO ur +I M +Ġbro ther +Ġgrow ing +Ġb an +Ġest im +Ġc ry +ĠS chool +Ġme chan +ĠO F +ĠWind ows +Ġr ates +ĠO h +Ġpos itive +Ġcult ure +ist ics +ic a +Ġh ar +y a +ite ly +i pp +Ġm ap +en cies +ĠWill iam +I I +ak ers +5 6 +ĠM art +ĠR em +Ġal tern +it ude +Ġco ach +row d +D on +Ġk ids +Ġj ournal +Ġcor por +Ġf alse +Ġwe b +Ġsle ep +Ġcont ain +Ġst o +Ġb ed +iver se +ĠR ich +ĠCh inese +Ġp un +Ġme ant +k nown +Ġnot ice +Ġfavor ite +a ven +Ġcond ition +Ġpur pose +) ) +Ġorgan ization +Ġchall eng +Ġman ufact +Ġsus p +ĠA c +Ġcrit ic +un es +uc lear +Ġm er +vent ion +Ġ8 0 +Ġm ist +ĠU s +ĠT or +htt p +ol f +Ġlarg er +Ġadv ant +Ġrese ar +Ġact ions +m l +Ġke pt +Ġa im +, ' +c ol +Ġbenef its +if ying +Ġact ual +ĠIntern ational +Ġveh icle +Ġch ief +Ġeff orts +ĠLe ague +ĠM ost +Ġwa it +Ġad ult +Ġover all +Ġspe ech +Ġhigh ly +Ġfem ale +Ġer ror +Ġeffect ive +5 4 +Ġenc our +w ell +Ġfail ed +Ġcons erv +Ġprogram s +Ġt rou +Ġa head +5 00 +vertis ement +I P +ĠF ound +p ir +Ġ % +Ġcr ime +and er +Ġloc ation +ĠI ran +Ġbehav ior +az ing +Ġr are +Ġem b +Ġca used +Ġsh ip +Ġact ive +Ġcont ribut +Ġg reen +Ġac qu +Ġref lect +ven ue +Ġf irm +Ġb irth +] . +Ġclear ly +Ġem ot +Ġag ency +ri age +Ġmem ory +9 8 +S A +ĠSe e +ac ing +C C +Ġbig gest +Ġr ap +Ġbas ic +Ġb and +e at +Ġsus pect +ĠM ac +Ġ9 0 +m ark +ist an +Ġsp read +am s +k i +as y +ra v +ĠR ober +Ġdemon str +r ated +Ġabs olute +Ġpl aces +Ġim pl +ibr ary +Ġc ards +Ġdest roy +Ġv irt +ve re +Ġapp eared +y an +p oint +Ġbe g +Ġtem per +s pe +ant ed +ear s +ĠD irect +Ġl ength +Ġbl og +am b +Ġint eg +Ġres ources +ac c +if ul +Ġsp ot +Ġfor ced +Ġthous ands +ĠMin ister +Ġqu al +ĠF rench +at ically +Ġgener ally +Ġdr ink +Ġth us +I L +od es +Ġappro pri +ĠRe ad +Ġwh om +Ġey e +Ġcol lege +Ġ4 5 +ire ction +Ġens ure +Ġapp arent +id ers +Ġrelig ious +Ġmin or +ol ic +Ġt ro +ĠWh y +rib ute +m et +Ġprim ary +Ġdevelop ed +Ġpe ace +Ġsk in +st e +av a +Ġbl ue +Ġfam ilies +Ġ ir +Ġapp ly +Ġin form +ĠSm ith +C T +i i +Ġlim it +Ġres ist +........ ........ +um n +Ġconf lic +Ġtw e +ud d +ĠT om +Ġl iter +qu e +b on +Ġha ir +Ġevent ually +Ġp us +Ġhelp ed +Ġag g +or ney +ĠApp le +Ġf it +ĠS ur +Ġpre m +Ġs ales +Ġsecond s +Ġstreng th +Ġfeel ing +¿ ½ +Ġt our +Ġknow s +o om +Ġex erc +Ġsom ew +ï ¿½ +> > +Ġsp okes +Ġide as +Ġreg ist +so ft +ĠD el +ĠP C +Ġpro pos +Ġlaun ch +Ġbott om +T H +ĠP lease +v est +it z +ĠIn ter +Ġsc ript +Ġr at +ar ning +Ġ il +ĠJ er +ĠA re +Ġwh atever +ok en +ci ence +Ġmod e +Ġag ree +Ġs ources +Ġinit ial +Ġrest rict +Ġwond er +us ion +## ## +ĠS il +vil le +Ġb urn +t w +as ion +Ġ £ +Ġn or +u ing +Ġre ached +Ġs un +Ġc ateg +ig ration +Ġc ook +Ġprom ot +Ġm ale +Ġcl imate +Ġf ix +Ġalleg ed +U R +all ed +Ġim ages +C ont +ot a +Ġschool s +i os +Ġd rop +Ġst ream +ĠM o +Ġprevious ly +al ing +Ġp et +Ġdou ble +Ġ( @ +ann el +Ġdef ault +t ies +Ġr ank +ĠD ec +ĠCoun cil +Ġweap on +Ġst ock +Ġanal y +ĠSt r +Ġpict ure +ĠPol ice +f erence +Ġcent ury +Ġcitiz ens +Ġon to +Ġexp and +Ġhe ro +ĠS ol +Ġw ild +Ġupd ate +Ġcustom ers +r ont +d ef +Ġl ik +Ġcrim inal +ĠChrist ian +S P +7 6 +Ġle aving +Ġother wise +ĠD ist +Ġbas is +5 2 +5 3 +ic ip +ĠB er +Ġrecomm end +Ġfl oor +Ġc rowd +ol es +Ġ7 0 +Ġcent ral +ĠE v +Ġd ream +Ġdown load +Ġconf ir +ĠTh om +Ġwind ow +Ġhapp ens +Ġun it +Ġt end +Ġs pl +Ġbec omes +Ġfight ing +Ġpred ict +ĠP ress +ĠP ower +Ġhe avy +ak ed +Ġf an +or ter +ate gy +B A +iz es +Ġsp end +H ere +Ġ200 7 +Ġad op +ĠH am +Ġfoot ball +ĠP ort +od ay +5 1 +amp ions +Ġtrans fer +h t +Ġ3 8 +ter m +ac ity +Ġb ur +] , +tern al +r ig +b ut +Ġthere fore +ĠB ecause +res p +re y +Ġm ission +S ome +Ġnot ed +Ġass um +Ġdise ase +Ġed it +Ġprog ress +r d +ĠB rown +oc al +Ġadd ing +Ġra ised +ĠAn y +Ġt ick +Ġsee ing +ĠPe ople +Ġagre ement +Ġser ver +Ġw at +Ġdeb ate +Ġsupp osed +il ing +Ġlarg est +Ġsuccess ful +ĠP ri +ĠDemocr atic +Ġj ump +ĠSyri a +Ġown ers +Ġoff ers +Ġshoot ing +Ġeff ic +se y +Ġha ven +ver se +te red +ĠL ight +im al +ĠB ig +Ġdef end +Ġbe at +Ġrecord s +% ) +Ġsc en +Ġemploy ees +Ġdev ices +he m +Ġcom mer +ĠM ex +Ġbenef it +ĠPro f +Ġil leg +Ġsur face +ĠAl so +Ġh arm +ing ly +w ide +ĠA lex +Ġsh ut +ĠC ur +Ġl ose +p m +Ġchall enge +se mb +Ġst ation +Ġint elligence +Ġacc ur +ĠFl or +Ġrequ ires +ĠM al +b um +Ġh ospital +Ġsp irit +Ġoff ered +Ġprodu ce +ĠComm un +Ġcreat ing +Ġcr is +s pect +Ġend ed +Ġd aily +Ġvot ers +land s +i as +i h +on a +Ġsm art +ĠOff ice +ĠL ord +ri al +ĠIntern et +Ġcirc um +Ġextreme ly +' . +Ġopin ion +ĠM il +Ġg ain +B S +ĠF in +y p +Ġuse ful +Ġbud get +Ġcom fort +is f +Ġback ground +el ine +Ġep isode +Ġen emy +Ġtri al +Ġestab lish +d ate +ĠC ap +Ġcontin ues +Ġshow ing +ĠUn ion +w ith +Ġpost ed +ĠSy stem +Ġe at +ri an +Ġr ise +ĠGerman y +il s +Ġsign ed +Ġv ill +Ġgr and +m or +ĠEng land +Ġproject s +um ber +Ġconf erence +z a +Ġrespons ible +ĠAr ab +Ġlearn ed +âĢĶ âĢĶ +i pping +ĠGe orge +O C +Ġreturn ed +ĠAustral ia +Ġb rief +Q u +Ġbr and +ill ing +ab led +Ġhig hest +Ġtr ain +ĠComm ission +wh ile +Ġn om +cept ion +Ġm ut +ĠBl ue +Ġinc ident +v ant +8 6 +ĠI D +Ġn uclear +7 4 +ĠL ike +ĠR E +ĠM icro +l i +m ail +Ġcharg es +8 9 +Ġad just +ad o +Ġear th +N A +Ġpr ices +P A +Ġd raft +Ġrun s +Ġcandid ate +ens es +Ġmanag ement +ĠPh il +ĠM iss +Ġte ach +g ram +Ġunderstand ing +a it +ic ago +A dd +ĠE p +sec ut +Ġsepar ate +Ġinst ance +Ġe th +Ġun less +**** **** +ĠF ore +in ate +Ġoper ations +S p +Ġf aith +g ar +ĠCh urch +ron ic +Ġconf ig +os ure +Ġactiv ities +Ġtrad itional +Ġ3 6 +Ġd irection +Ġmach ine +Ġsur round +Ġp ush +un ction +ĠE U +Ġeas ier +Ġarg ument +G B +Ġm icro +Ġsp ending +iz ations +Ġthe ory +ad ow +Ġcall ing +ĠL ast +Ġd er +Ġinflu ence +Ġcomm it +Ġph oto +Ġun c +ist ry +g n +ast e +ack s +Ġdis p +ad y +d o +ĠG ood +Ġ ` +Ġw ish +Ġreve aled +Âł Âł +l ig +Ġen force +ĠComm ittee +Ġche m +Ġmil es +Ġinterest ed +Ġsol ution +ic y +in ct +Ġ- > +ĠD et +Ġrem oved +Ġcomp ar +e ah +Ġpl ant +ĠS ince +Ġachie ve +Ġadvant age +Ġslight ly +b ing +Ġpl aced +u nder +201 5 +ĠM ad +Ġt im +os es +Ġc ru +ĠR ock +Ġmost ly +Ġneg ative +Ġset ting +Ġprodu ced +Ġm ur +Ġconnect ion +ĠM er +Ġdri ver +Ġexecut ive +Ġass ault +Ġb orn +ĠV er +t ained +Ġstruct ure +Ġredu ce +Ġdec ades +Ġd ed +u ke +ĠM any +idd en +Ġle ague +S e +Ġjo in +Ġdis co +Ġd ie +c ks +act ions +Ġass ess +ag n +Ġgo als +our s +I R +Ġsen ior +ill er +m od +ip ment +oc ol +u y +ĠQ ue +Ġpart ies +ir gin +Ġle arning +it able +Ġstre et +Ġcamer a +A pp +Ġsk ills +b re +c ious +Ġcele br +ĠFr anc +Ġexist ing +Ġwill ing +l or +Ġ id +ĠSp ace +Ġcrit ical +ĠL a +ortun ately +Ġser ve +Ġc old +Ġspec ies +T S +Ġanim als +ĠB ay +Ġold er +ĠU nder +est ic +ĠT re +Ġte acher +Ġpre fer +v is +Ġth read +ĠM att +Ġmanag er +ãĥ » +Ġprofess ional +ĠV ol +Ġnot es +The se +ul a +Ġf resh +ent ed +u zz +ed y +clus ion +ĠR el +Ġdoub t +E O +Ġopen ed +ĠB it +Ad vertisement +Ġgu ess +ĠU N +Ġse qu +Ġexpl ain +ott en +Ġatt ract +ak s +Ġstr ing +Ġcont ext +oss ible +ĠRepublic ans +Ġsol id +Ġc ities +Ġask ing +Ġr andom +u ps +ur ies +ar ant +dd en +g l +ĠFlor ida +Ġdep end +ĠSc ott +Ġ3 3 +Ġi T +ic on +Ġmention ed +Ġ2 000 +Ġclaim ed +Ġdefin itely +ul f +Ġc ore +Ġopen ing +ĠCon st +wh ich +ĠT ra +A G +7 2 +Ġbelie ved +ad a +Ġ4 8 +ĠSec urity +yr ight +ĠP et +ĠL ou +Ġhold ing +======== ======== +Ġ ice +Ġb row +Ġauthor ities +h ost +w ord +Ġsc ore +ĠD iv +Ġcell s +Ġtrans l +Ġneigh bor +Ġrem ove +u ct +Ġdist rict +ĠA ccording +Ġwor se +Ġconcern s +Ġpresident ial +Ġpolic ies +ĠH all +7 3 +Ġh us +A Y +Ġ200 6 +ĠJ ud +Ġindepend ent +ĠJust ice +ili ar +pr int +igh ter +Ġprotect ion +z en +Ġsu dden +h ouse +ĠJ es +P R +ĠIn f +Ġb ul +Ġ _ +ĠServ ice +ĠP R +Ġstr ategy +ff ect +Ġgirl s +Ġmiss ing +oy al +ĠTe am +ul ated +Ġd at +Ġpolit ics +ab or +A ccording +Ġspe ll +Ġg raph +ort hern +T C +A b +Ġlab or +is her +Ġk ick +ĠiT unes +Ġstep s +pos es +Ġsmall er +E n +ber t +Ġro ll +Ġresear chers +Ġcl osed +Ġtrans port +Ġlaw y +________ ________ +ĠCh icago +Ġas pect +Ġn one +Ġmar riage +9 6 +Ġe lements +ĠF re +ĠS al +Ġd ram +F C +t op +e qu +Ġhe aring +Ġsupport ed +Ġtest ing +co hol +Ġmass ive +Ġst ick +Ġgu ard +is co +ph one +F rom +How ever +Ġb order +Ġcop y +ograph y +l ist +7 1 +Ġown er +cl ass +ru it +r ate +ĠO nce +Ġdig ital +Ġt ask +ER S +Ġinc red +t es ++ + +ĠFr ance +Ġb reat +ow l +Ġiss ued +ĠW estern +Ġdet ect +Ġpart ners +Ġsh ared +ĠC all +Ġcan cer +ac he +rib e +Ġexpl ained +Ġhe at +{ " +Ġinvest ment +ĠB ook +Ġw ood +Ġtool s +ĠAl though +Ġbelie f +Ġcris is +Ġg e +ĠM P +Ġoper ation +ty pe +~ ~ +g a +Ġcont ains +ant a +Ġexp ress +ĠG roup +ĠJ ournal +k a +Ġam b +ĠUS A +Ġfind ing +Ġfund ing +h ow +Ġestab lished +ide os +Ġdeg ree +Ġdanger ous +ang ing +Ġfre edom +pp ort +out hern +Ġch urch +Ġc atch +ĠTw o +Ġpres ence +ĠGu ard +U p +Ġauthor ity +ĠPro ject +Ġbut ton +Ġcon sequ +Ġval id +Ġwe ak +Ġstart s +Ġref erence +ĠM em +" ) +U N +or age +ĠO pen +Ġcol lection +y m +g ency +Ġbeaut iful +ro s +Ġtell s +Ġwa iting +n el +Ġprov iding +ĠDemocr ats +Ġd aughter +Ġm aster +Ġpur poses +ĠJapan ese +Ġequ al +Ġturn s +Ġdoc uments +Ġwatch ing +R es +Ġr an +201 4 +Ġre ject +ĠKore a +Ġvictim s +Le vel +ere nces +Ġw itness +Ġ3 4 +Ġre form +com ing +Ġocc up +Ġc aught +Ġtra ffic +ad ing +Ġmod els +ar io +Ġserv ed +Ġb atter +u ate +ĠSecret ary +Ġagre ed +Ġtr uly +yn am +ĠR et +Ġun its +ĠRes earch +h and +az ine +ĠM ike +Ġvar iety +ot al +Ġam azing +Ġconfir med +Ġentire ly +Ġpurch ase +Ġe lement +Ġc ash +Ġdeter mine +D e +Ġc ars +ĠW all +â ĸ +Ġview s +Ġdrug s +Ġdep artment +ĠSt ep +u it +Ġ3 9 +as ure +ĠCl ass +Ġc overed +ĠB ank +Ġme re +u ana +Ġmult i +Ġm ix +Ġun like +lev ision +Ġsto pped +Ġs em +ĠG al +ul es +Ġwe l +ĠJohn son +l a +Ġsk ill +Ġbec oming +ri e +Ġappropri ate +f e +ell ow +ĠPro t +ul ate +oc ation +Ġweek end +od ies +Ġsit es +Ġanim al +ĠT im +Ġsc ale +Ġcharg ed +Ġinst ruct +ill a +Ġmethod s +Ġc ert +Ġjud ge +ĠH el +Ġdoll ars +Ġstand ing +ĠS qu +Ġdeb t +l iam +Ġdri ving +ĠS um +ĠEd ition +Ġal bum +and on +I F +ĠU k +6 3 +ad er +Ġcommer cial +es h +ĠGovern ment +Ġdisc overed +Ġout put +ĠHill ary +ĠCar ol +Ġ200 5 +Ġab use +anc ing +Ġsw itch +Ġann ual +T w +Ġst ated +ag ement +in ner +Ġdem ocr +Ġres idents +Ġallow ing +Ġfact ors +od d +Ġf uck +em ies +Ġoccur red +ot i +Ġn orth +ĠP ublic +Ġinj ury +Ġins urance +C L +oll y +ã Ģ +Ġrepe ated +Ġar ms +ang ed +Ġconst ruction +Ġf le +P U +ic ians +Ġfor ms +ĠMc C +ant ic +Ġm ental +p ire +Ġequ ipment +Ġf ant +Ġdiscuss ion +Ġregard ing +k in +ar p +Ġch air +og ue +Ġpro ceed +ĠI d +O ur +Ġmur der +M an +Ġ4 9 +as p +Ġsupp ly +Ġin put +Ġwe alth +liam ent +Ġpro ced +or ial +ĠSt at +ĠN FL +hen s +ĠInst itute +Ġput ting +ourn ament +et ic +Ġloc ated +Ġk id +er ia +r un +Ġpr inc +Ġ ! +go ing +ĠB et +Ġcl ot +Ġtell ing +Ġprop osed +i ot +or ry +Ġfund s +g ment +ĠL ife +Ġb aby +ĠB ack +Ġsp oke +Im age +Ġear n +ĠA T +g u +Ġex change +ĠL in +ov ing +Ġp air +M ore +az on +Ġarrest ed +Ġkill ing +c an +ĠC ard +y d +Ġident ified +Ġm obile +Ġthan ks +ony m +ĠF orm +Ġhundred s +ĠCh ris +ĠC at +Ġtre nd +h at +ĠA v +om an +Ġelect ric +ĠW il +S E +O f +Ġrest aur +ot ed +Ġtr ig +Ġn ine +Ġb omb +Wh y + ¯ +Ġco verage +Ġapp eal +ĠRober t +ĠS up +Ġfin ished +Ġfl ow +Ġdel iver +Ġcal cul +Ġphot os +Ġph il +Ġpie ces +Ġapp re +k es +Ġr ough +D o +Ġpart ner +Ġconcern ed +Ġ3 7 +ĠG en +C ol +ct ors +Ġ= > +st ate +Ġsuggest ed +ĠFor ce +C E +Ġher self +ĠPl an +w orks +o oth +ren cy +Ġcor ner +Ġhus band +Ġintern et +ĠA ut +em s +os en +ĠAt l +g en +Ġbal ance +6 2 +Ġsound s +te xt +Ġar r +ov es +Ġmill ions +Ġrad io +Ġsat isf +ĠD am +M r +G o +S pe +Ġcomb at +r ant +ĠG ree +Ġf uel +Ġdist ance +Ġtest s +Ġdec re +ĠE r +Ġman aged +D S +Ġt it +Ġmeas ures +ĠL iber +Ġatt end +as hed +ĠJ ose +ĠN ight +d it +ĠN ov +ĠE nd +out s +Ġgener ation +Ġadv oc +y th +Ġconvers ation +ĠS ky +act ive +ce l +ri er +ĠFr ank +Ġg ender +Ġcon cent +Ġcar ried +and a +ĠV irgin +Ġarri ved +ic ide +ad ed +Ġfail ure +Ġmin imum +le ts +Ġwor st +Ġkeep ing +Ġint ended +Ġilleg al +Ġsub sc +Ġdetermin ed +Ġtri p +Y es +Ġra ise +Ġ ~ +Ġfeel s +Ġpack age +ĠJ o +h i +201 6 +re al +Ġf ra +Ġsy mb +M e +uck y +p ret +ĠK h +ĠEd it +ĠWe b +em ic +ĠCol or +Ġjust ice +I nt +Ġfar m +ck now +" > +el ess +Ġredu ced +Ġ5 00 +x x +ĠR ad +ĠW ood +Ġcl in +Ġhy p +il er +ur a +k ins +8 5 +6 1 +ĠThe ir +ĠM ary +Ġs an +Ġno vel +ĠWh o +Ġcap acity +Ġimp ossible +Ġpl ays +Ġmin ister +ij uana +ic ate +ĠS et +Ġf ram +Ġ ing +Ġcommun ities +ĠF BI +it a +Ġb on +Ġstr ateg +Ġinterest s +l ock +g ers +m as +ĠAN D +Ġconflic t +Ġrequire ments +Ġs ac +Ġoper ating +in i +rel ated +Ġcomm itted +Ġrelative ly +Ġs outh +¯ ¯ +Ġaff ord +Ġident ity +Ġdec isions +Ġacc used +pl ace +Ġvict ory +o ch +i at +N ame +C om +t ion +ed s +Ġsee k +Ġt ight +ĠIm ages +Ġinit i +Ġhum ans +Ġfam iliar +Ġaud ience +Ġintern al +vent ure +Ġs ides +ĠT O +Ġd im +Ġcon clud +Ġapp oint +Ġenforce ment +ĠJ im +ĠAssoci ation +Ġcircum st +ĠCanad ian +Ġjo ined +Ġdiffere nces +ĠL os +Ġprot est +Ġtw ice +w in +Ġgl ass +ars h +ĠAr my +Ġexp ression +Ġdec ide +Ġplan ning +an ia +Ġhand le +ĠMicro soft +ĠN or +Ġmax imum +ĠRe v +Ġse a +Ġev al +Ġhel ps +re f +Ġb ound +Ġm outh +Ġstand ards +Ġcl im +ĠC amp +ĠF ox +cl es +Ġar my +ĠTe chn +ack ing +x y +S S +Ġ4 2 +Ġbu g +ĠUk rain +ĠM ax +ĠJ ones +ĠSh ow +l o +Ġplan et +Ġ7 5 +Ġwin ning +Ġf aster +Ġspe ct +Ġbro ken +T R +Ġdef ined +Ġhealth y +Ġcompet ition +htt ps +ĠIs land +ĠF e +Ġannoun ce +ĠC up +ĠInst ead +Ġcl ient +Ġposs ibly +se ction +ock et +l ook +Ġfin ish +Ġcre w +Ġres erv +Ġed itor +Ġh ate +Ġs ale +Ġcontro vers +Ġp ages +w ing +Ġnum er +Ġopp osition +Ġ200 4 +Ġref uge +Ġfl ight +Ġap art +ĠL at +A meric +ĠAfric a +Ġapplic ations +ĠPal est +ĠB ur +Ġg ar +ĠSoc ial +Ġup gr +Ġsh ape +Ġspe aking +ans ion +a o +ĠS n +Ġwor ry +ĠBrit ain +P lease +rou d +Ġh un +Ġintrodu ced +Ġd iet +I nd +ĠSec ond +Ġfun ctions +ut s +ĠE ach +ĠJe ff +Ġst ress +Ġaccount s +Ġgu arant +ĠAn n +ed ia +Ġhon est +Ġt ree +ĠAfric an +ĠB ush +} , +Ġs ch +ĠOn ly +Ġf if +ig an +Ġexerc ise +ĠEx p +Ġscient ists +Ġlegisl ation +ĠW ork +ĠS pr +à Ĥ +ĠH uman +Ġ è +Ġsur vey +Ġr ich +ri p +Ġmain tain +Ġfl o +Ġleaders hip +st ream +ĠIslam ic +Ġ 01 +ĠCol lege +Ġmag ic +ĠPr ime +Ġfig ures +201 7 +ind er +x ual +ĠDe ad +Ġabsolute ly +Ġfour th +Ġpresent ed +resp ond +rib le +Ġal cohol +at o +ĠD E +por ary +Ġgr ab +Ġvar i +Ġqu ant +ĠPh oto +Ġpl us +r ick +ar ks +Ġaltern ative +Ġp il +Ġappro x +th at +Ġobject s +ĠR o +ĠAnd roid +Ġsignificant ly +ĠR oad +k ay +R ead +av or +Ġa cknow +ĠH D +ĠS ing +O r +ĠM ont +Ġun s +pro f +Ġneg oti +ĠAr ch +ik i +Ġte levision +ĠJew ish +Ġcomm ittee +Ġmot or +Ġappear ance +Ġs itting +Ġstri ke +ĠD own +com p +ĠH ist +Ġf old +ac ement +ĠLou is +Ġbel ong +ĠâĢ ¢ +Ġm ort +Ġprep ared +Ġ6 4 +ĠM aster +Ġind eed +ĠD en +Ġre nt +T A +our ney +ar c +S u +9 7 +Ġadv ice +Ġchang ing +Ġlist ed +Ġlaun ched +is ation +ĠP eter +is hes +Ġl ived +ĠM el +ĠSup reme +ĠF ederal +Ġ) ; +ruct ure +Ġset s +Ġphil os +u ous +Ġ ł +Ġappl ied +ĠN OT +Ġhous ing +ĠM ount +Ġo dd +Ġsu st +D A +ffic ient +Ġ ? +ol ved +Ġp owers +Ġth r +Ġrem aining +ĠW ater +L C +Ġca uses +ãģ ® +Ġman ner +ad s +Ġsuggest s +Ġend s +stand ing +f ig +ĠD un +id th +Ġg ay +Ġter min +ĠAngel es +M S +Ġscient ific +Ġco al +ap ers +b ar +ĠThom as +Ġsy m +ĠR un +th is +P C +igr ants +Ġmin ute +ĠDist rict +cell ent +Ġle aves +Ġcomple ted +am in +Ġfoc used +Ġmon itor +Ġveh icles +M A +ĠM ass +ĠGr and +Ġaffect ed +itution al +Ġconst ruct +Ġfollow s +Ġt on +re ens +Ġh omes +ĠE xt +ĠLe vel +r ast +ĠI r +Ġel im +Ġlarge ly +ĠJ oe +Ġvot es +all s +Ġbusiness es +ĠFound ation +ĠCent ral +Ġy ards +Ġmaterial s +ul ner +Ġgu ide +Ġclos er +um s +Ġsp orts +ed er +J ust +Ġtax es +8 4 +ĠO ld +Ġdec ade +ol a +Ġv ir +Ġdro pped +Ġdel ay +it ect +Ġsec ure +ste in +le vel +Ġtre ated +Ġfil ed +ain e +Ġv an +Ġm ir +Ġcol umn +ict ed +e per +Ġro t +Ġcons ult +Ġent ry +Ġmar ijuana +ĠD ou +Ġapparent ly +ok ing +clus ive +Ġincre ases +an o +Ġspecific ally +Ġte le +ens ions +Ġrelig ion +ab ilities +Ġfr ame +ĠN ote +ĠLe e +Ġhelp ing +Ġed ge +ost on +Ġorgan izations +à ĥ +ĠB oth +hip s +Ġbig ger +Ġbo ost +ĠSt and +Ġro w +ul s +ab ase +Ġr id +L et +are n +ra ve +Ġst ret +P D +Ġv ision +Ġwe aring +Ġappre ci +Ġa ward +ĠU se +Ġfact or +w ar +ul ations +) ( +Ġg od +Ġter rit +Ġpar am +ast s +8 7 +Ġen emies +ĠG ames +F F +Ġacc ident +W ell +ĠMart in +T ER +Ġat h +ĠHe ll +Ġfor g +Ġve ter +ĠMed ic +f ree +Ġst ars +Ġexp ensive +Ġac ad +ra wn +ĠW he +Ġl ock +Ġform at +Ġsold iers +s m +Ġag ent +Ġrespons ibility +or a +ĠS cience +Ġrap id +Ġt ough +ĠJes us +Ġbelie ves +M L +Ġwe ar +le te +Ãĥ ÃĤ +ĠD ri +Ġcomm ission +ĠB ob +O h +ap ed +Ġwar m +ÃĥÃĤ ÃĥÃĤ +Ġ200 3 +ort ion +Ġhas n +ust er +Ġun ivers +ĠI ll +Ġk ing +olog ies +9 4 +ĠT em +ĠM os +Ġpat ient +ĠMex ico +ce an +ĠDe ath +ĠSand ers +y ou +ĠC ast +ĠComp any +pt y +Ġhappen ing +F P +ĠB attle +Ġb ought +A m +M od +U s +ut ers +ĠC re +ĠTh ose +Ġ4 4 +is er +Ġs oul +ĠT op +ĠHar ry +ĠA w +Ġse at +ff ee +Ġrev olution +Ġ( " +ĠD uring +et te +Ġr ing +Ġoff ensive +Ġreturn s +Ġv ideos +Ġdis cl +Ġfam ous +en ced +ĠS ign +ĠR iver +Ġ3 00 +P M +ĠB us +ĠC H +Ġcandid ates +ard en +Ġpercent age +Ġvis ual +Ġthan k +Ġtrou ble +ner gy +Ġ200 1 +Ġpro ve +ash ion +Ġen h +ĠL ong +U M +Ġconnect ed +Ġposs ibility +O ver +Ġexper t +Ġl ibrary +art s +ĠDirect or +Ġfell ow +9 2 +ir ty +Ġd ry +Ġsign s +ĠL ove +Ġqu iet +f oot +Ġp ure +ĠH un +Ġf illed +ph as +ĠE lect +end ment +ĠEx pl +Ġun able +n s +m o +Ġv ast +ob e +Ġident ify +app ing +ĠCarol ina +g ress +Ġpro te +Ġf ish +Ġcircumst ances +raz y +ĠPh ot +Ġb odies +ĠM ur +Ġdevelop ing +ĠA R +Ġexperien ced +Ġsubst ant +ĠBo ard +es ome +Ġdom estic +Ġcomb ined +ĠP ut +Ġchem ical +ĠCh ild +Ġpo ol +ĠC y +Ġe gg +c ons +st ers +Ġh urt +Ġmark ets +Ġconserv ative +Ġsupp orters +Ġag encies +id el +O b +ur b +Ġ4 3 +ĠDef ense +y e +ĠA p +du le +Ġtemper ature +Ġconduct ed +ĠCh ief +Ġpull ed +Ġf ol +L ast +ont o +os is +V ER +D es +ĠP an +F irst +Ġadv ance +Ġlic ense +r ors +ĠJ on +Ġimag ine +Ġhe ll +Ġf ixed +Ġinc or +os ite +ĠL og +ick en +] : +Ġsurpr ise +h ab +Ġc raft +ol t +ĠJ ul +Ġd ial +Ġrele vant +Ġent ered +Ġlead s +ĠA D +ĠCle an +Ġpict ures +ess or +Ġal t +Ġpay ing +P er +ĠMark et +Ġupd ates +am ily +ĠT ype +ĠH ome +Ġ5 5 +semb ly +rom e +8 3 +Ġgreat est +Ġhe ight +Ġhe av +ain ts +Ġlist en +as er +ĠS H +Ġcap able +ac le +Ġpers pect +in ating +Ġoff ering +ry pt +ĠDe velop +ab in +r c +Ġbr ight +al ty +ar row +Ġsupp l +ind ing +ack ed +gy pt +ĠAn other +p g +ĠVirgin ia +ĠL u +Ġpl anned +Ġp it +Ġswe et +T ype +ĠD i +Ġtyp ically +ĠFranc isco +Ġpro spect +ĠD an +Ġte en +re es +Ġsc hed +Ġh ol +Ġsc r +Ġlot s +l ife +Ġnews p +Ġfor get +ĠN one +ĠM iddle +ĠR yan +ed d +Ġse vere +Ġsu it +ll er +9 3 +Ġcor respond +Ġexpl os +u ations +Ġfl ag +g ame +r id +Ġpr in +ĠD ata +Ġde ploy +ĠEn ter +su it +gh an +ĠM en +Ġthough ts +Ġmat ters +Ġad apt +ĠA ri +Ġf ill +Ġfor th +Ġs am +Ġ4 1 +Ġpay ment +ĠH or +Ġsp ring +du c +Ġl osing +Ġbring ing +F O +al a +Ġdist ribution +he red +b our +ĠIsrael i +om a +Ġcomb ination +Ġpl enty +V E +C an +ĠH aw +Ġper man +ĠSpe cial +Ġto w +Ġsee king +Ġexam ples +Ġclass es +c r +Ġbe er +Ġmov es +ĠI P +ĠK n +Ġpan el +E ven +Ġproper ly +Ġr is +Ġpl ug +Ġestim ated +E very +Ġdef ensive +ag raph +Ġpre gn +Ġinst it +ĠV ict +Ġvol ume +Ġpos itions +Ġl inks +ĠPro gram +ĠWe ek +ag ues +Ġtrans form +k er +ĠC EO +Ġc as +Ġopp onent +Ġtwe et +ĠC ode +Ġsh op +Ġf ly +Ġtal ks +Ġb ag +Ph one +Ġa id +Ġpl ants +Ġ6 5 +Ġatt orney +ar ters +qu est +ĠMag ic +Ġbeg ins +Ġmy ster +Ġenvironment al +Ġst orage +N N +Ġm arg +Ġs ke +Ġmet al +ell y +Ġord ered +Ġrem ained +Ġl oved +Ġprom pt +Ġupd ated +Ġexper ts +Ġwalk ing +Ġan cient +Ġperform ed +AT E +Ġne ither +i ency +Ġmanufact ure +ĠP ak +Ġselect ed +Ġm ine +Ġult imately +Ġexpl an +Ġlab el +ĠServ ices +ribut ed +Tr ump +Ġsy n +ĠU lt +S C +Ġme at +Ġg iant +ĠW ars +ĠO N +Ġad m +Ġinter pret +Ġeven ing +Ġev il +ĠB oston +ĠW ild +Ġ à +ĠBit coin +ĠAm azon +D r +ĠIn formation +Ġobvious ly +Ġadv anced +Ph oto +ol ar +Ġwe ather +Ġsymb ol +Ġso le +Ġpot entially +ost er +Ġorig inally +m un +3 00 +az e +ess ions +Ġde ck +Ġst ood +Ġyou th +ĠB ern +R ep +ĠT est +Ġbas ically +ot ic +Ġinvol ve +ol it +ly n +S ee +Ġair craft +Ġconf irm +E W +Ġmess ages +ĠRich ard +Ġk it +Ġpro hib +Ġv ulner +is ters +Ġexist ence +Ġturn ing +ĠS P +Ġdes ire +Ġfl at +Ġm ent +se ason +ang es +Ġneighbor hood +ĠL ake +AT ION +Ġpoint ed +b ur +Ġinn ov +uc ks +U L +Ġprofess or +Ġexp ressed +A B +ic ious +Ġ200 2 +ĠDe v +Ġs ession +Ġb are +s en +Ġdis s +ĠC ath +ĠP ass +ĠP oint +Ġdo ctor +or row +ail ed +ĠR ub +ĠD C +ĠChar l +p erson +Ġwrit er +igh ters +ure au +Ġob lig +Ġrecord ed +Ġbro ke +Ġord ers +il ty +Ġmot ion +in ity +l aw +ad ium +Ġimm igration +Ġcontr ast +Ġb att +Ġex cellent +Ġtechn ical +am i +Ġt un +Ġcl oud +ĠY ear +ge on +Ġcre ation +Ġstr ange +Ġa uth +Ġfor t +b orn +Ġext ent +ĠT oday +ĠCl ub +Ġr ain +Ġs ample +Ġaccept ed +Ġt act +Ġf ired +ĠS on +Ġstand s +Ġb oot +Ġ4 7 +Ġstat ements +Ġvers ions +Ġse lling +ound ed +Ġ199 0 +Ġwere n +ĠW atch +Ġexper iment +P ost +Ġret ail +ul ed +In st +un te +ãĥ ¼ +Ġdep art +Ġb ond +i very +om pl +Ġre action +ĠSyri an +ĠP ac +app ed +ani el +D P +Ġres olution +Ġre act +Ġappro ved +on om +m ond +ĠO ffic +-- - +Ġrepl ace +Ġt ack +Ġsp ort +Ġch ain +Ġemer gency +r ad +ĠPalest in +Ġ4 6 +Ġautom atically +Ġrout e +Ġp al +Ġb anks +ĠPar is +ĠMed ia +ro ad +ic ing +i xt +ist ed +Ġg rew +Ġco ord +ĠW here +om in +Ġsub s +� � +Ġ ± +Ġcorpor ate +Ġse lection +n oon +ĠRep ort +c s +clud ing +ord ers +anc he +ĠIt s +Ġslow ly +ĠE gypt +ĠA cc +Ġcol le +iqu es +E X +Ġattempt s +ur l +ĠC ross +Ġfind ings +ĠS C +ĠO R +Ġind ex +ens ity +ĠW ay +ĠL and +Ġsh ock +d is +Ġd ynam +Ġc art +m osp +S ince +i est +ĠB oy +Ġst orm +ĠCont in +201 3 +he w +il it +Ġess ential +iqu id +O ther +ive red +Ġreason able +A ct +Ġsub sequ +ĠP ack +ĠF ort +Ġconsider ing +Ġun iversity +l og +Ġmar ried +Ġill ust +ĠTr ue +£ ı +Ġnumer ous +rast ructure +Ġserious ly +Ġrefer red +u a +Ġconsist ent +on na +ĠRe al +ru ption +ci ples +Ġfact s +9 1 +ot es +er g +The n +Ġacc ompl +N ote +Ġre venue +Ġpass ing +Ġm al +e en +ĠY et +Ġg ather +ter day +ew ork +ĠA uthor +P e +Ġopt im +Ġr ub +Ġè £ı +Ġun known +st one +Ġun ion +ol ve +Ġopportun ities +Ġbrow ser +ĠW al +ĠC ost +Ġreport ing +st s +p et +Ġs and +Ġsudden ly +Ġsurpr ising +ĠV R +Ġsomew hat +ĠB as +ult ure +iz z +ĠC D +Ġchalleng es +Ġsett ings +Ġexperien ces +ĠF ull +Ġcan n +Ġrece iving +ES T +Ġj oint +Ġcult ural +Ġa st +8 2 +as tern +ce ived +ĠC ru +Ġb ull +p ired +am m +Ġfac ing +p ower +Ġb oss +ĠH ol +Ġinst r +Ġincreasing ly +Ġsh ift +Ġstre ets +ĠWilliam s +ab b +Ġl ie +Ġl augh +ĠC a +P L +Ġadult s +Ġcustom er +Ġob tained +Ġsupport ing +ht ml +f ire +Ġdetail ed +Ġpick ed +ĠR ight +ld er +E E +st ood +ĠK im +Ġw ire +Ġs ight +Ġdevelop ers +Ġpers ons +Ġs ad +Ġc up +Ġwar ning +Ġboy s +l ong +Ġb ird +f o +Ġw al +Ġobserv ed +Ġz one +iven ess +Ġch annel +c ript +Ġref used +ĠAg ain +Ġsu c +Ġspokes man +ĠRe f +r ite +ou ston +ãĥ ³ +ĠS her +Ġact s +ĠN ame +Ġstrugg le +ar ry +omet imes +Ġdisc rim +H T +Ġcateg ory +Ġreal ize +Ġemploy ee +ĠAf ghan +en ger +Ġgun s +ĠSte ve +ĠM ot +ĠO l +ok ed +Ġth ick +Ġfair ly +ill y +Ġsur ve +ĠM at +we ight +â Ķ +Ġtro ops +Ġag ents +Ġbatter y +Ġmot iv +à ¡ +S ec +d en +o very +L S +Ġfl u +Ġconf ident +ĠO per +Ġem pty +Ġp hen +Ġse ctor +Ġexc ited +Ġrem ote +ap h +o en +Ġdestroy ed +Ġmor al +ĠH P +ĠR on +Ġd ress +ĠB at +Ġl it +ĠM S +Ġa f +H L +r um +is ms +Ġshould n +Ġsym pt +ĠTor onto +het ic +Ġcar bon +Ġinstall ed +Ġviol ent +Ġsol ar +j a +Ġpract ices +Ġr ide +ĠP enn +Ġimpro ved +Ġaud io +Ġbehav i +ĠP S +Ġe ating +D ata +ĠRe view +p ass +cl aim +u ated +ang ers +c hen +Ġproper ties +Ġany where +An other +Ġbl ow +ĠJack son +Ġp roud +Ġplan e +l ines +Ġsqu are +Ġpro of +ans as +Ġtalk ed +m akers +Ġs ister +Ġhold s +Ġres ident +Ġ= = +Ġresist ance +Ġspl it +Ġpro secut +Ġconf idence +res ents +Ġcut s +Ġexcept ion +Ġz ero +Get ty +Ġcop yright +Ġtot ally +orm al +ific ations +ĠAustral ian +Ġs ick +Ġ1 50 +Ġhouse hold +Ġfe es +Ġdri vers +og en +ĠN Y +Ġnecess arily +Ġregul ations +ear ing +s l +Ġperspect ive +c are +ic ial +H is +Ġesc ape +Ġsurpr ised +ĠV an +ur rent +Ġv ac +8 1 +ĠTh us +Ġem phas +ĠCh ampions +ĠI ce +Ġn arr +Ġhead s +Ġca using +b el +f ortunately +ĠM a +Ġtarg ets +ci pl +Ġafter noon +Ġadd s +ĠMay be +ĠF our +ess ed +ple te +Ġus ual +ch o +ing u +Ġwith d +ĠE nergy +ĠE conom +O O +Ġart icles +Ġinj ured +Ġman age +Ġexpl ains +Ġdi agn +R ec +at ures +Ġlink ed +Ġdiscuss ed +Ġexpl o +Ġocc asion +ath an +Ġopp osite +Ġfac es +Ġden ied +ĠK night +Ġn ut +Ġapprox imately +Ġdisapp oint +onym ous +ĠB est +ĠL o +ĠH y +ĠA ff +Ġvot ing +an while +ĠII I +Ġinstit utions +ag ram +ĠD aily +Ġdr ag +Ġnear by +Ġgu ilty +Ġcon ver +P re +s hip +Ġre ward +Ġphilos oph +ĠS S +u gh +Ġapp s +f riend +Ġu pper +Ġad vert +Ġs now +Ġfr ust +Ġour selves +F r +ĠD ie +amp ion +Ġdis miss +Ġc ere +Ġsign al +f rom +Ġ ). +Ġ5 2 +Ġcr imes +it ors +est ival +use um +Ġcoun cil +ĠS aud +M ay +ĠG un +ic ian +et her +Ġsu fficient +ĠH en +so le +Ġhistor ical +ĠF ar +ĠT urn +Ġp in +Ġsuc ceed +m at +ly mp +Ġtrad ition +ĠO k +Ġc ro +Ġdesc ription +al le +Ġsk y +T e +Ġwide ly +Ġw ave +Ġdefin ition +ĠJew s +Ġcy cle +Ġref ere +Ġbr ings +us al +Ġal ive +Ġfrequ ently +Ġint ention +ĠCont rol +l v +y stem +Ġpriv acy +g ent +ren ce +ĠQu est +ĠChrist mas +Ġr ail +Ġco oper +Ġtest ed +ĠC apt +as ks +Ġcomfort able +Ġdel ivered +sc ape +Ġdep th +ĠG OP +Ġwrit es +Ġass ets +Ġsa v +im ents +Ġtrans ition +Ġart ist +ĠL ook +Ġl ob +Ġcomp onents +ar ity +Ġwalk ed +Ġro ot +Ġparticip ants +Ġnot iced +Ġres c +Ġn av +ĠAd minist +d a +ut ral +pl ate +Ġimport ance +Ġass ert +ious ly +c ription +Ġinj uries +ĠChe ck +Ġregist ered +Ġint ent +Ġmiss ed +ograph ic +Ġsent ence +oun ter +Ġassist ance +ev in +Ġdat abase +Ġbuild ings +Ġclass ic +Ġth inks +ĠOh io +P r +ug g +Ġfe e +p an +Ġeffect ively +Ġfac ility +Ġbe ar +Ġch apter +Ġdog s +ĠCol umb +Ġl atter +it ial +Ġad mitted +T V +ĠGe org +Ġpost s +\ \ +Ġlawy er +Ġequ ival +Ġm and +Ġcontro lled +ĠW alk +ĠAnd rew +Ġmen u +am ental +Ġprotect ed +v a +Ġadminist r +or al +Ġre in +ĠS ar +Ġamount s +Ġn ative +ĠM oon +Ġrep resents +Ġab andon +Ġcarry ing +Ġt ank +m ary +Ġdecl ared +T ube +Ġh at +Ġpun ish +el lect +m es +Ġun iverse +ĠR od +ph y +Ġinf rastructure +Ġ5 1 +Ġopp osed +ow nt +c a +ĠM ake +Ġhard ware +Ġco ffee +R el +b al +w orld +ĠS af +ĠSe a +in als +Ġown ed +Ġh all +ers ion +Ġdescrib e +ĠP ot +Ġport ion +Ġat mosp +Ġgovern ments +Ġdep ending +Ġoff ense +Ġtr ick +aw a +ĠL ine +ĠV is +ĠH ard +ĠOr ig +ĠCl ick +Ġdes k +ĠVal ley +ĠS ov +Ġmov ies +Ġrem ark +Ġm ail +Ġcons cious +Ġrul ing +ĠR ights +Ġmed ic +he nt +ĠW omen +> < +Ġrepl aced +ĠP rem +ĠTh anks +Ġre new +ĠB all +if orm +Ġsh ots +C omm +Ġar med +Ġconst ant +Ġt aste +Ġreal ized +Ġbu ff +Ġm o +Ġeffic ient +M ost +or ation +if ies +Ġcommun ication +Ġfl ood +Ġconsequ ences +Ġany way +ig g +ĠG M +ĠTh ank +Ġ iron +Ġev olution +ĠC op +tw itter +Ġ9 5 +Ġrelationship s +ad el +ĠYou ng +Ġpropos al +ay ers +uild ing +ĠH ot +OR E +c os +Ġcoll abor +P G +ax y +Ġknow ing +Ġsupport s +ow ed +Ġcontrol s +Ġmere ly +um er +Ġath let +Ġf ashion +p ath +Ġg ift +Ġer a +AN D +Ġkind s +ĠKore an +Ġleg it +ul ous +Ġess entially +Ġthe rap +n ic +Ġsuff ered +Ġh ur +Ġprom ise +Ġex cess +Ġover w +Ġpr ime +ĠH ouston +er ry +ĠM s +R S +201 2 +Ġst ores +ĠO lymp +Ġj ourney +Al though +S ub +ĠE duc +ĠCh apter +Ġrequest s +Ġconsum ers +Ġt iny +Ġis ol +ĠF air +b a +ĠY OU +Ġcr ash +ce ler +Ġemot ional +Ġgood s +Ġelect ed +Ġmod er +ĠLin ux +Ġbl ocks +Ġis land +ĠSoc iety +Ġelect ions +Ġbroad cast +Ġche ap +Ġn ations +Ġse asons +4 00 +Ġwas te +ĠS at +Ġfield s +em ploy +Ġprof ile +Ġauth ors +AL L +ĠG ra +w est +ĠT y +Ġdeath s +Ġv acc +Ġfor med +Ġd u +Ġon going +ĠMuslim s +el f +ig ure +Ġass ume +ĠUkrain e +w ater +Ġco ast +Ġvot ed +g or +ĠA S +ĠMich igan +az a +ĠAr m +i ro +Ġf lex +as ters +' ' +Ġwel come +ar l +Ġloc ations +ig ation +ĠF il +Ġbu ying +Ġarch itect +Ġhard er +ĠC ub +Ġinter face +Ġrestaur ant +Ġdisco ver +Ġex ceed +Ġfav our +ger y +Ġd uty +Ġp itch +ad or +ĠM ach +b oy +Ġrespond ed +Ġext ended +her s +M any +ra id +if er +ĠIn s +S er +Ġmed ium +s he +ĠS ports +Ġmag azine +ut ation +Ġlim its +ĠG all +Ġex ternal +raz il +Ġyoung er +t le +Ġrem ind +ĠC ON +Ġimmedi ate +Ġh idden +Ġvol unte +Ġsim pl +od cast +Ġph ase +d r +Ġpl ot +Ġexp osure +R I +og rap +v in +an ish +ĠAc ad +ĠEng ine +Ġexp ansion +ĠP ay +Y our +Ġpus hed +ĠE ll +ĠHe ad +Ġmarket ing +ĠA C +k et +Ġh its +Ġg ro +ĠA ge +ĠSc ot +] [ +Ġst im +Ġi Phone +Ī Ĵ +Ġn arrow +ĠGet ty +ĠTur key +Ġperfect ly +Ġen able +ut ch +Ġprec ise +Ġreg ime +Ġsh if +Ġcomp ens +g un +d iv +Ġch osen +ĠK en +An y +Ġtre es +Ġrecomm ended +ĠR en +u able +ĠH T +F ollow +E G +ĠH and +ĠK enn +Ġarg uments +Ġex ists +Ġb ike +ĠCons erv +Ġbre aking +ĠG ar +Ġc razy +Ġvirt ual +ay lor +ix el +Ġ19 80 +Ġper mission +ĠSer ies +Ġconsum er +Ġclose ly +c alled +Ġ5 4 +Ġhop es +Ġar ray +ĠW in +ĠLab our +Ġsp ons +ĠI re +Ġp ow +Ġread ers +Ġemploy ment +Ġcreat ure +Ġresult ing +Ġaccur ate +Ġmom ents +Ġarg ued +Ġp ed +D uring +Ġ5 3 +ĠT al +Ġs ought +Ġsuff ering +Ġ icon +le e +Ġ( $ +al ian + ° +Ġp ra +Ġbon us +( " +k o +Ġact ing +D E +f all +Ġcompar ison +Ġsm ooth +ĠN AS +u pp +ĠJose ph +ep ing +ĠT ake +ĠM id +Ġs ending +f ast +ĠF all +Ġdeal ing +us er +ĠOr gan +C o +Ġatt ached +Ġse es +% . +Ġtyp ical +AR T +Ġfind s +ĠAs ia +um in +ĠC ore +ĠE nt +in ent +u ce +ĠBl ood +ĠN ever +Ġem ails +Ġhigh light +Ġconf ront +at us +ut ed +Ġun us +Ġtop ic +ĠAd am +Ġb le +at i +Ġunder stood +S et +st ruct +T P +Ġm ob +a a +ĠSt art +pect ed +se ll +Ġded icated +ĠC A +u an +Ġsong s +esc ription +Ġte ch +Ġr ape +Ġas ide +Ġgr ant +Ġ5 6 +s ub +Ġarg ue +Ġcont aining +Ġsche dule +Ġliber al +Ġpublic ly +Ġheav ily +ĠU t +in er +ĠS ection +ĠC are +we et +l s +D is +âĶ Ģ +ĠF ollow +B ack +ĠI T +Ġb es +j i +ĠH it +est ed +Ġevery body +ĠSw ed +Ġfem in +Ġfac ilities +Ġcon ven +C omp +ĠO S +c ore +Ġan x +Ġdiv ision +ĠC am +ĠSt an +m ates +Ġexpl ore +pl om +Ġsh ares +pl oad +an es +Ġide al +et ers +ĠB ase +Ġpl astic +Ġdist inct +ĠNet work +ĠSe attle +Ġtrad ing +ens us +int end +Ġex hib +Ġinit ially +ĠF ood +Ġthous and +ĠBus iness +act er +Ġpar agraph +Ġrough ly +Ġw ww +Ġcreat ive +ĠCon f +Ġconsum ption +Ġfil ms +ag an +Ġob tain +Ġt all +Ġt or +Ġacknow led +Ġg rown +al o +K E +Ġ4 00 +end ers +t aining +U G +Ġsu icide +Ġwat ched +ĠL ist +al i +re hens +Ġsurround ing +Ġp ip +Ġf lying +ĠJ ava +ord an +Ġserv ing +in ations +p ost +Ġsh o +A v +Ġj ail +z y +Ġ199 9 +Ġ< / +Ġliter ally +ĠS ir +Ġexp osed +Ġl ies +st ar +Ġb at +Ġear ned +ĠD ig +Ġspec ified +ĠSe ason +Ġdeg rees +Don ald +Ġcent re +Ġsh aring +Ġwin ter +ĠC O +C he +Ġ Î +M P +Ġun w +Ġfew er +ĠM ir +Ġsomew here +ĠK ey +Ġattack ed +ĠK ir +Ġdom ain +Ġstrong er +Ġ9 9 +Ġpen alty +I d +Sc ript +Ġdecl ined +Ġne ck +Ġfra ud +Ġcur rency +Ġr ising +R C +â̦ â̦ +H z +Ġt ab +Ġtal ent +n am +ĠN BA +Ġvill age +Ġleg s +ĠN ext +E d +Ġac id +Ġhy d +8 00 +Ġinvol ving +ĠIm age +ĠBe fore +F l +Ġyes terday +S ource +Ġterror ist +Ġsu p +Ġsy nt +ĠSaud i +Ġw est +Ġr u +b urg +Ġvis ible +Ġstru ck +r ison +Ġaw esome +Ġd rawn +Ġansw ers +ĠG irl +ĠR am +Ġthreat s +Ġdef eat +os it +Ġv ent +atur ally +Americ an +end a +ĠH oly +Ġr um +% , +c ase +ĠHist ory +ĠYou Tube +Ġsit uations +ĠD NA +S te +Ġsa ved +It em +Ġrec ip +olog ist +Ġfac ed +Ġel ig +O nce +ĠL i +u h +Ġmist ake +ĠDiv ision +ĠB ell +Ġsympt oms + ® +Ġdom in +Ġfall ing +Ġend ing +as hes +Ġmat ches +ĠOn line +Ġexplan ation +D ef +red it +Ġany more +ĠT otal +ĠF OR +us hed +Ġlet ters +Ġris ks +ĠO K +Ġreported ly +: \ +Ġpl ate +Ġsubject s +Ġattempt ed +if ier +ian a +Ġunlike ly +ĠTh ough +um a +ĠIn vest +ĠPr in +ic an +ĠD ar +ĠColor ado +au g +Ġve get +a os +ri a +Ġshe l +Ġmark ed +Ġ( ) +Ġsp r +p o +ĠL ink +Ġdef e +ĠJ r +Ġthem e +Ġpass ion +ĠP en +Ġinf o +iz er +Ġsh it +ĠC ivil +ap se +c re +Ġpo ly +Ġcomp onent +ĠChar les +ĠIre land +ĠPro v +Ġdo ctors +Ġgr anted +Ġpain t +Ġhon or +Ġsm oke +Ġpay ments +Ġprim arily +ĠKing dom +r ich +ate ll +Ġde als +Ġsched uled +Ġfund amental +Ġprote in +Ġnewsp aper +Ġcl ients +yth on +ĠD ate +h us +Ġfeed back +Ġstret ch +Ġc ock +Ġhot el +ĠQue en +Ġsu gar +Ġj u +Ġmil k +Ġappro val +ĠL ive +Ġequival ent +ef ully +Ġins ert +z ona +Ġext ension +d ri +J ohn +Ġacc omp +S m +ĠF und +Ġconst antly +Ġ` ` +Ġgener ated +ĠA ction +ĠP sych +ĠT ri +Ġrecogn ize +Ġv ary +ph a +ĠR a +d f +et ch +ĠSov iet +Tw o +Ġpattern s +Ġprof ession +an ing +T ime +ĠL im +Ġcol ors +ĠA z +ĠT R +Ġinf ect +Ġphen omen +Ġshe ll +Al so +Ġput s +Ġdel ivery +Ġbro wn +Ġprocess ing +Ġlight s +ess age +ĠBro ok +ĠA ud +l ation +Ġindust rial +L ike +ĠB razil +rou s +ES S +ĠL uc +Ġsome how +Ġ8 5 +Ġpro port +Ġpolit icians +Ġindic ate +Ġh ole +Ġtechn iques +Ġcompet itive +Ġph r +Ġv o +ist ent +ĠD ream +Ġcamp us +Ġaspect s +Ġhelp ful +Ġsh ield +or se +Ġtrig ger +m al +Ġ5 8 +Ġt ort +Ġperson ally +Ġt ag +Ġkeep s +ĠV ideo +Ġben ch +Ġg ap +a ire +Ġe ast +Ġrec overy +per ial +Ġprof it +ĠM ic +Ġ5 7 +Ġcol on +Ġstrong ly +st yle +Ġalleg ations +h an +Ġrep orters +j o +r ine +arg et +and al +Ġ0 3 +Ġfl ash +tr ans +Ġstr ict +Ġpark ing +ĠPak istan +Ġl i +Ġwe ird +ĠE ric +Ġreg ions +ĠJ un +Ġint ellect +ĠW H +od ing +rib utes +up id +ĠT it +Ġf inger +or ia +Ġe lev +ĠF ield +Ġcon clusion +; ; +Ġfeel ings +Ġext ensive +Ġm ixed +Ġne uro +v y +Ġhar ass +ĠC irc +ou ch +Ġterrit ory +Ġsuccess fully +M ar +Ġing red +Ġoverw hel +Ġl ayer +V iew +Ġall ies +ill ance +ĠTh ree +Ġb unch +Ġnorm ally +Ġnet works +Ġsac r +ĠC IA +b les +Ġch ose +Ġopp onents +Ġregard less +Ġfr anch +Ġpre f +ĠP o +Ġbr idge +ann a +ĠSil ver +Ġw age +p age +ri or +Ġrad ical +ĠL ittle +Ġman ip +Ġsecret ary +Ġg ang +D R +F A +Ġdec ent +ĠSp irit +Ġun cle +ĠDevelop ment +Ġinvest ors +Ġwall s +Ġpub lish +Ġgener ate +iss ions +c ar +Ġprom ote +Ġcut ting +Ġche st +Ġdrink ing +Ġcollect ed +Ġ7 2 +Ġhop ing +Ġem br +gor ith +Ġwar ned +Ġinstruct ions +O G +ĠD id +ĠAg ency +Ġg ear +Ġcritic ism +ĠF urther +Ġut il +ann y +R ed +Ġcoun sel +ĠAs ian +Ġredu ction +p ool +Ġteach ing +Ġdeep ly +i y +Ġestim ates +Ġcho ices +Ġperman ent +in em +ke l +Ġf asc +p se +f ile +ĠL ow +ĠP erson +Ġt ournament +st al +Ġm el +U ST +ĠR ay +az i +V al +Ġcont ained +ĠH olly +Ġw ake +Ġreve al +Ġprocess es +ĠIS IS +Ġ0 9 +Ġbl ind +Ġste el +ĠB ad +Ġcare fully +app y +ro it +Ġg aming +Ġhous es +ĠC oll +Ġtr uck +er m +Ġsc ored +Ġocc as +ret urn +b ound +v ar +Ġsh arp +Ġaf raid +ĠE X +am ber +c ific +Ġsche me +N C +ĠPol it +Ġdecl ine +Ġ199 8 +Ġpus hing +Ġposs ession +Ġpriv ile +Ġteacher s +Ġy ield +H A +ĠDav is +it led +#### #### +Ġr ig +ĠD aniel +ac on +Ġh ide +ut en +Ġcolle agues +Ġprin ciples +Ġl oud +Ġs in +ĠDem on +Ġst one +Ġ0 2 +Ġt aught +Ġter rible +Ġst uck +ĠPol icy +te en +Ġimplement ation +ĠB BC +ĠAP I +Ġwhe el +all as +Ġch ampions +ol ars +play er +Ġrepeated ly +ĠSt ill +Ġlik es +ast y +es ter +ĠCath olic +R L +Ġb ath +Ġno ise +t itle +Ġn orthern +P art +Ġmag n +Ġf ab +ĠAs h +Ġdis pl +Ġtick et +Ġm urd +Ġalong side +ĠMus ic +Ġr iver +ĠSte el +ĠC L +ĠPl ayer +ĠM ult +ow ing +re p +s ize +Ġt ur +ĠGeorg ia +isc al +ra ction +Ġc able +Ġ5 9 +Ġw ins +Ġup coming +Ġsurv ive +Ġins pired +ĠEduc ation +Ġstat istics +ĠF oot +iam i +Ġy ellow +ĠP age +. - +ĠH as +Ġur ban +Ġa x +es sel +\ " +Ġquarter back +Ġreg ister +ĠLab or +Ġab ilities +ĠF amily +Ġvar iable +ĠPr ice +Ġcont em +Ġth in +ĠE qu +d ata +Ġg otten +Ġconst it +Ġas ks +Ġt ail +Ġexc iting +ĠE ffect +ĠSp anish +Ġencour age +ins on +ĠA h +Ġcommit ment +C S +Ġr ally +Ġ: : +Ġsubs id +Ġsp in +Ġcapt ured +201 8 +Ġinn oc +Ġalleged ly +ĠC ome +Ġart ists +ĠN umber +Ġelect ronic +Ġreg ional +ap es +Ġw ra +Ġmy th +pr ise +ĠM iller +ĠC reat +ĠEp isode +b ell +Ġdirect ed +Ġext ract +Ġs orry +Ġv ice +ag ger +ĠSu pport +Ġ6 6 +ĠI ron +Ġwonder ful +Ġg ra +N et +ion e +E ng +Ġsh ips +ik es +ĠK evin +it ar +Ġactiv ists +tr ue +ĠAri zona +ent h +ĠDes pite +ĠS E +Ġha bit +ern el +Ġin qu +Ġab ortion +Ġv oid +Ġexpl icit +Ġeng aged +Ġang ry +Ġr ating +Ġfr ag +b ro +ick ing +d ev +Ġwor ried +Ġob ser +Ġap artment +ĠG T +Ġest ate +ĠConst itution +em on +ĠS now +Ġcount y +Ġdis ag +ĠStep hen +Ġimm igrants +w ind +ĠN ations +Ġfol ks +O ut +Ġg all +Ġtarget ed +Ġst ead +ĠB on +ĠL ib +Ġinform ed +Ġ12 0 +ch ain +idel ines +or ough +Ġdri ven +Ġregular ly +Ġbas ket +Ġprinc iple +oc ument +Ġst un +ib ilities +ĠRom an +ĠAb out +Ġal ert +Ġdemocr acy +Ġrepresent ed +H S +c ers +p arent +Ar t +p ack +Ġdi plom +re ts +ĠN O +Ġcapt ure +ĠAd v +Ħ ¢ +Ġannounce ment +ĠL ear +Ġh ook +Ġpur s +ĠS uch +ĠC amer +Ġrefuge es +ĠV e +P ol +Ġrecogn ized +l ib +Ġhad n +A ss +Ġpil ot +us hing +Ġreturn ing +Ġtra il +ĠSt one +Ġrout ine +Ġcour ts +Ġdes per +Ġfriend ly +ĠIt aly +Ġpl ed +Ġbreat h +Ġstud io +N S +Ġimp ressive +ĠAfghan istan +Ġf ing +Ġd ownt +ink ing +ĠR og +i ary +col or +se x +ar on +Ġf ault +ĠN ick +D own +ĠR ose +ĠS outhern +X X +is odes +L ist +6 00 +Ġout come +er r +Ġelse where +Ġret ire +Ġp ounds +ĠGl obal +Pe ople +Ġcommun ications +Ġlo an +Ġrat io +ĠEm pire +Ġg onna +Ġinv ent +D F +Ġ19 70 +ĠComm on +p at +Ġprom ised +Ġd inner +ĠH om +Ġcreat es +Ġoper ate +ver ty +ĠJ ordan +et ime +Ġsust ain +R eg +Ġincred ible +im a +Ġwar rant +Ġm m +A tt +Ġlaw suit +Ġreview s +it ure +ĠS ource +l ights +ĠF ord +Ġ6 3 +g roup +st ore +Ġfeat ured +Ġfore ver +Ġpo verty +ĠP op +ĠC NN +az z +ab is +ach ing +Ġl aid +ĠSu pp +Ġfil ter +en a +ĠCommun ity +Ġcreat ures +u ction +ĠR oyal +Ġassoci ation +ĠCon nect +ĠBr ad +âĸ Ī +l ers +the re +ĠG i +Ġval uable +AC K +ĠT aylor +Ġl iquid +ĠAtt orney +ĠCar l +ĠF inal +ag a +ĠWil son +B ecause +ĠProf essor +ak a +Ġincred ibly +r ance +! ) +R ef +s k +Ġsol utions +Ġatmosp here +Ġbl ame +um es +ĠN ob +C A +um ps +r ical +ĠPut in +ĠD est +or ic +ĠP A +Ġrespect ively +w an +Ġfif th +â Ħ¢ +ĠC ry +Ġgovern or +res ident +Ġpurch ased +Ġh ack +Ġint ense +ob s +Ġorig in +Ġdef ine +Ġcare ful +** * +Ġshould er +Cl ick +Ġt ied +Ġdest ruction +ou red +Ġno body +Ġh o +ĠEx per +Ġt ip +" ; +Ġtechn ique +Ġj ur +ĠP ok +b ow +Ġleg end +Ġacc ord +Ġbus y +ĠInt el +Ġh ang +ak i +. ] +âĢĶâĢĶ âĢĶâĢĶ +Ġsur gery +Ġrep rodu +Ġun iform +Ġscen es +c ode +Ġ6 2 +l isher +ĠH ave +ph ia +Ġcry pt +Ġrec on +Ġsc ream +Ġadop ted +Ġsc ores +N e +ĠIt alian +in cluding +B O +Ġindic ated +Ġent ertain +G u +T ext +i el +Ġtw enty +Ġeng age +off s +ĠPac ific +Ġsm ile +Ġperson nel +Ġto ler +Ġdo ors +Ġt one +Ġmach ines +Ġent ering +ten ance +C O +ĠJer sey +Ġfore st +Ġhor se +Ġcompl aint +ĠSpr ing +y o +ĠPl us +ed ing +ĠRet urn +qu arters +ial s +c ow +Ġacad emic +Ġf ruit +Ġ199 6 +og ether +Ġw ine +Ġpur su +ĠSte ven +Ġlic ens +Wh o +Ġclot hes +re ction +Ġsqu ad +Ġst able +Ġr aw +z ens +St ar +ut ies +anc er +Ġke ys +ĠM u +Ġcompl icated +ig er +ĠTe xt +Ġabs or +Ġ6 8 +Ġfun ny +Ġrel ief +ĠL ew +ĠC ook +Ġch art +Ġdraw ing +G E +Ġmod ule +ĠB ull +I LL +Ġs alt +0000 0000 +il le +Ġres ource +aw ay +adel phia +ĠB ru +Ġ6 7 +Ġsome body +Ġparticip ate +Ġro se +we red +Ġmus cle +Ġcons ent +Ġcontin uing +ĠGuard ian +ĠOr der +reg on +Ġre ar +Ġprov ision +Ġlik ed +ri ent +Ġb ra +Tr ans +Ġmeet ings +Ġto x +Ġcon vent +Ġaut o +Ġrec ording +ĠSo ft +00 1 +ĠR oll +Ġprogram ming +Ġp ic +Ġprov ed +Ġst ab +ĠA st +Ġca ption +ul ating +ĠAtt ack +Ġnew ly +Ġ199 7 +f r +Ġdis cipl +ĠGree k +Ġed ition +ĠDo es +ĠB ox +if le +ack et +Ġpass es +Ġgu est +Ġac celer +it als +U D +Ġaut hent +ĠR est +ov al +t a +u ine +Ġarm or +ĠT own +Ġcomp at +Ġinc hes +Des pite +Ġass ign +he rent +Ġprep are +ĠM eg +oc key +Ġdep ends +Ġtrack s +w atch +Ġl ists +ĠN orthern +Ġal ter +re c +ĠE astern +Ġcond em +Ġevery where +? ' +Ġaff ili +Ġf ought +": {" +Ġm ac +it arian +Ġsc ope +ĠA L +aw s +ar ms +Ġqu e +Ġenjoy ed +nes ota +Ġagg ressive +ĠSt ory +ĠI V +Ġrec ipe +Ġrare ly +ĠMed ical +val ue +ang el +ay ing +omet hing +Ġsub section +Ġs outhern +Ġfrequ ency +re te +roll ed +ult s +ĠN ic +Ġbeh alf +Ġsequ ence +ab et +Ġcontrovers ial +Ġcomp rom +Ġwork er +Ġmain ly +Ġal gorith +ĠM ajor +or ce +g ender +Ġorgan ized +Ġf ake +Ġconclud ed +ĠE D +ĠEx ec +r age +Ġch ances +ber ry +ĠTr ad +Ġconfig uration +Ġwithd raw +Ġf ro +ud es +ĠBro ther +ĠB rian +Ġtri es +Ġsam ples +Ġb id +ĠGold en +Ġphot ograph +if est +ĠD O +ĠPar liament +******** ******** +R em +Ġcont est +Ġsign ing +p x +ĠZ eal +âĶĢ âĶĢ +E ar +Ġex it +Be fore +ĠCor por +n ull +mon th +Ġrac ial +ott ed +ĠV eg +ĠRe uters +Ġsw ord +ps on +ĠRom ney +a ed +Ġt rib +Ġin ner +Ġprot ocol +ĠB i +ĠM iami +ever al +p ress +Ġsh ipping +ĠAm endment +ĠHow ard +con nect +ĠD isc +ĠJ ac +iam ond +ĠThere fore +s es +ĠPrin cess +ĠUS B +ĠAn th +Ġsurve illance +Ġap olog +Ġ6 1 +ow a +Ġf ulf +j s +Ġl uck +ust ed +Ġ § +n i +Ġant icip +em an +Ġwin ner +Ġsil ver +ll a +ic ity +Ġunus ual +Ġcr ack +Ġt ies +e z +Ġpract ical +Ġprov ince +ĠPl ace +Ġprior ity +IC E +Ġdescrib es +Ġbr anch +F orm +ask a +miss ions +b i +Ġp orn +ĠTur k +Ġent hus +Ġf ighters +Ġ0 8 +ĠDet roit +Ġfound ation +av id +A re +Ġjud gment +cl ing +Ġsol ve +ĠDes ign +W here +hes is +ĠT ro +a fter +Ġne utral +ĠPalestin ian +ĠHolly wood +Ġadv is +ĠN on +y es +ol is +Ġrep utation +Ġsm ell +Ġb read +ĠB ul +ĠBe ach +Ġclaim ing +Ġgen etic +Ġtechn ologies +Ġupgr ade +row s +Ġdevelop er +ĠJ osh +ĠDis ney +erv ed +ip al +Ġun ex +Ġbare ly +t hen +ĠP ub +Ġill ness +et ary +ĠB al +Ġp atch +Ġbut t +Ġst upid +ĠD og +ĠD allas +f ront +ie ce +Ġprot ests +Ġch at +oen ix +Ġw ing +Ġpar liament +Ġ7 7 +ose xual +Ġre nder +pt ions +ĠCo ast +os a +ĠG reg +h op +ĠMan agement +Ġbit coin +Ġrec over +Ġincor por +or ne +ĠUs ing +Ġpre ced +Ġthreat ened +Ġspirit ual +ĠE vent +ĠF red +Ġadvert ising +Ġimprove ments +ĠC ustom +Ġer rors +Ġsens itive +ĠN avy +Ġcre am +L ook +Ġex clusive +Ġcomp rehens +Ġde leg +Ġcon ce +Ġrem em +Ġstruct ures +Ġst ored +N D +Ġ1 000 +U P +ĠB udd +A F +w oman +ĠAcad emy +ð Ł +se a +Ġtem porary +Ab out +es ters +Ġtick ets +Ġposs ess +in ch +o z +Ġl a +Ġcontract s +Ġun p +Ġc ig +ĠK at +ult ural +as m +Ġmount ain +ĠCapt ain +St ep +m aking +ĠSp ain +Ġequ ally +Ġl ands +at ers +Ġreject ed +er a +im m +ri x +C D +Ġtrans action +g ener +less ly +Ġ| | +Ġc os +ĠHen ry +Ġprov isions +Ġg ained +Ġdirect ory +Ġra ising +ĠS ep +ol en +ond er +Ġcon sole +in st +Ġb om +Ġunc ertain +1 50 +ock ing +Ġmeas ured +Ġpl ain +Ġse ats +Ġd ict +S L +af e +Ġest imate +iz on +at hered +Ġcontribut ed +Ġep isodes +omm od +G r +AN T +Ġ6 9 +G ener +Ġ2 50 +vious ly +rog en +Ġterror ism +Ġmove ments +ent le +oun ce +ĠS oul +Ġpre v +ĠT able +act s +ri ors +t ab +Ġsuff er +Ġn erv +Ġmain stream +ĠW olf +Ġfranch ise +b at +Ġdem ands +Ġag enda +Ġdo zen +Ġclin ical +iz ard +ĠO p +t d +Ġvis ited +ĠPer haps +Ġact or +Ġde lic +Ġcont ribute +Ġin ject +ĠE s +ac co +Ġlist ening +Ġcon gress +epend ent +Ġprem ium +Ġ7 6 +ĠIr ish +Ġass igned +ĠPh ys +Ġworld wide +Ġnarr ative +ot ype +m ont +b ase +ĠB owl +ĠAdminist ration +Ġrel ation +ĠE V +C P +Ġco vers +Ġ7 8 +Ġcert ific +Ġgr ass +Ġ0 4 +pir acy +ir a +Ġengine ering +ĠM ars +Ġun employ +ĠFore ign +st ract +Ġv en +Ġst eal +Ġrepl ied +Ġult imate +Ġtit les +d ated +Ġj oy +a us +Ġhy per +ak u +Ġoffic ially +ĠPro duct +Ġdifficult y +per or +Ġresult ed +rib ed +l ink +wh o +~~ ~~ +ĠSpe ed +ĠV iet +W ind +ĠBar ack +Ġrestrict ions +ĠSh are +Ġ199 5 +ition ally +Ġbeaut y +op t +Ġm aps +ĠC R +ĠN ation +ĠCru z +W ill +Ġelectric ity +Ġor g +Ġb urd +Ġviol ation +Ġus age +Ġper mit +ĠCh ron +ĠF ant +Ġn aturally +Ġ0 7 +Ġth rown +ĠAw oken +Ġal ien +ĠHer o +ĠK ent +ĠR ick +ri ke +Ġp ace +}, {" +G L +Ġpo ison +ĠT ower +Ġform al +al ysis +Ġgen uine +Ġk il +a ver +Ġproced ure +ĠPro p +intend o +ĠM ain +as ant +Ġtr ained +G ame +ĠL oad +ĠM A +Ġcru cial +Ġle ts +ĠF R +Ġch ampion +1 01 +ĠCon ference +Ġwrit ers +Ġconnect ions +Ġo kay +ir ms +ĠR and +Ġenc ounter +ĠB uff +Ġachie ved +Ġche cks +isc ons +Ġassist ant +Ġwhen ever +ĠA ccess +ĠU r +b in +Ġcl ock +is p +op her +Ġb orrow +Ġm ad +Ġperson ality +on ly +IS T +ab ama +Ġg ains +Ġcommon ly +Ġter r +Ġhyp ot +Ġre ly +Ġt iss +iscons in +Ġrid ic +f unction +ĠO regon +Ġun com +r ating +el and +ĠN C +Ġm oon +ann on +Ġvulner able +ut ive +³³ ³³ +ĠRad io +Ġw estern +se ct +ĠT ony +Ġocc urs +ĠO s +ĠH on +Ã Ń +Ġv essel +ĠScot land +Ġdiscrim ination +Ġsubsequ ent +st ring +Ġfant asy +ĠSh adow +Ġtest im +W E +it i +r as +Ġbo at +Ġmar ks +Ġord inary +Ġre n +Ġrepresent ative +Ġpet ition +Ġ7 3 +Ġad venture +Ġign ore +ĠPhil adelphia +ĠS av +V P +Ġfact ory +Ġt asks +Ġdep ression +z ed +................ ................ +ĠSt orm +Ġc ogn +Ġelig ible +Ġredu cing +v ia +Ġ0 5 +Ġstri king +Ġdoll ar +h o +O V +Ġinstr ument +Ġphilosoph y +ĠMo ore +ĠA venue +Ġrul ed +ĠFr ont +IN E +ĠM ah +Ġscen ario +ĠNAS A +Ġen orm +Ġdeb ut +Ġte a +T oday +Ġabs ence +S im +Ġh am +le ep +Ġt ables +ĠHe art +M I +K e +re qu +V D +m ap +Ġchair man +Ġp ump +Ġrapid ly +v i +Ġsubstant ial +E P +d es +ch ant +ili pp +ĠS anta +ri ers +anche ster +L oad +ĠC ase +Ġsa ving +Ġ7 4 +ĠA FP +er ning +oun ced +ĠMin nesota +ĠW as +Ġrec ru +Ġassess ment +ĠB ron +U E +Ġdynam ic +Ġf urn +ul ator +Ġprop ag +h igh +Ġacc ommod +Ġst ack +ĠS us +w rit +Ġre ven +ĠGod d +ĠZeal and +ab s +Ġbr ut +Ġper pet +h ot +Ġhard ly +ĠB urn +ãĤ ¹ +Ġst y +Ġtrans actions +Ġg ate +Ġsc reens +Ġsub mitted +Ġ1 01 +Ġlangu ages +ugh t +em en +Ġfall s +Ġc oc +Ĥ ¬ +Ġstri kes +p a +Ġdel iber +ĠI M +Ġrel ax +ann els +ĠSen ator +Ġext rem +Ġ} , +ĠDe b +Ġbe ll +Ġdis order +c ut +Ġi OS +Ġl ocked +Ġem issions +Ġshort ly +" ] +ĠJud ge +ĠS ometimes +Ġr ival +Ġd ust +Ġreach ing +F ile +¯¯ ¯¯ +ino is +ĠJ ason +Ġs atell +are t +Ġst ations +Ġag ric +ĠTechn ology +com es +ĠUn fortunately +ĠChild ren +Ġappl ies +ast ed +Ġan ger +ail ability +ĠDam age +Ġcomp are +ĠStand ard +Ġaim ed +ĠB a +angu age +Ġreg ulation +Ġj ury +Ġair port +Ġse ctions +ĠPr ince +em ed +Ġmedic ine +Ġh itting +Ġsp ark +ol ves +Ġad s +St ate +Ġfood s +Ġrepl acement +Ġch icken +Ġlow est +Ġmind s +Ġinvol ves +u i +Ġarr ang +Ġproced ures +ĠWh ich +ivers ary +Ġb ills +Ġimprove ment +Ġin ev +Ġexpect ations +Ġintellect ual +Ġsp aces +Ġmechan ism +2 50 +bre ak +ĠZ e +ĠT enn +ĠB alt +Ġbar rel +Ġstat ic +man n +Pol ice +Ġt ips +Ġhand ling +c us +od ed +il ton +ir y +Ġjournal ists +our se +Ġcom ic +Ġnom ine +IT Y +Ġvers us +Ġlo op +Ġsur f +ĠInd ust +ĠHun ter +Ġbelief s +is an +Ġset up +Ġbre w +im age +Ġcomput ers +f ol +} ," +ĠMed al +Ġtax p +Ġdisplay ed +Ġg rav +Ġf iscal +M on +ĠMos cow +ĠK ong +ĠCent re +Ġcamer as +ĠMr s +ĠH ay +Ġa ver +ĠK elly +p y +Ġrequire ment +Ġent itled +omb ie +Ġsh adow +ag ic +ĠA k +Ġel ite +Ġdiv ided +Ġhead ing +Ġcop ies +Ġloss es +Ġv it +k ed +ĠB ry +Ġan s +ĠSte am +Ġrep orter +he im +ĠIt em +Ġsuper ior +d on +ere nt +à ¶ +Ġtherap y +Ġpe ak +ĠMod el +Ġl ying +Ġg am +z er +r itten +Ġrespons es +Ġconsider ation +ĠB ible +Ġl oyal +Ġinst ant +Ġp m +ĠFore st +à ¼ +Ġext end +Ġconv icted +Ġfound er +Ġconv in +ĠO ak +che ck +Ġsch olars +p ed +Ġover se +T op +c ount +ĠAr k + · +Ġ0 6 +ĠL A +m d +ĠLat in +im ental +ĠC PU +Ġsubst ance +Ġminor ity +Ġmanufact uring +E r +ocol ate +Ġatt ended +ĠMan ager +r ations +Ġappreci ate +om y +GB T +id ency +B L +Ġguarant ee +pos ition +Ġo cean +clud e +Ġhead ed +Ġt ape +Ġlo ose +Ġlog ic +Ġpro ven +Ġsp ir +Ġad mit +is a +Ġinvestig ate +Ġ199 4 +sy lv +ĠL ost +c est +Ġ7 1 +Ġrequest ed +Ġwind ows +ĠPok é +ĠWith out +M et +Ġbehavi our +Ġread er +Ġh ung +ĠKe ep +Ġro les +Ġimplement ed +Ġbl ank +Ġserv es +ĠJ ay +Ġc ited +ĠF riend +prof it +ap on +Ġrep air +it em +arr ass +Ġcrit ics +ad i +ĠF ather +Ġsh out +Ġf ool +Ġ8 8 +Ġprodu cing +Ġl ib +Ġround s +Ġcirc le +Ġpre par +Ġsub mit +Ġn ic +mor row +ãĥ « +U nder +Ġv ital +ater n +Ġpass word +Ġpublic ation +Ġprom inent +Ġspeak s +Ġb ars +Ġde eper +ĠM ill +port ed +Ġw id +Ġbut ter +Ġsm oking +Ġindic ates +K ey +rop ri +ĠF ile +all ing +ast ing +ĠR us +Ġad j +Ġ7 9 +av al +Ġpres um +bur gh +on ic +Ġf ur +Ġpoll s +ik a +Ġsecond ary +Ġmon ster +ig s +ĠCur rent +E vent +Ġowners hip +end ar +Ġarri ve +ĠT ax +Ġn ull +ĠPri v +Ġth ro +Ġk iss +c at +Ġup set +ang le +it ches +ect or +olog ists +ĠGal axy +Ġcor ruption +Ġh int +ent er +ĠH ospital +Ġgreat ly +Ġbeg un +es y +Ġso il +ĠAnt on +Ġmain tenance +ãĥ © +Ġdo zens +Ġhuman ity +ĠAl abama +Ġr om +w orth +ap ing +sylv ania +l ah +Ġg athered +G A +Ġattack ing +f ound +ĠSqu are +Ġar bit +ict ions +ĠW isconsin +Ġd ance +ĠS aint +arch y +Ġbase ball +Ġcontribut ions +Ġliter ature +Ġex ha +per ty +t est +Ġb ab +Ġcontain er +let ter +Ġfall en +Ġwebs ites +Ġbott le +ĠS ac +Ġbre ast +ĠP L +Ġveter an +Ġinterview s +ĠA le +Ġb anned +eng ers +ĠRev olution +in th +Ġconc erning +IV E +Ġexp enses +ĠMatt hew +ĠColumb ia +d s +ist ance +Ġent ity +.. ." +Ġrel iable +Ġpar alle +ĠChrist ians +Ġopin ions +Ġin du +l ow +Ġcompet e +Ġth orough +Ġemploy ed +Ġestablish ment +ig en +ĠC ro +Ġlawy ers +ĠSt ation +T E +ĠL ind +ĠP ur +it ary +Ġeffic iency +âĢ IJ +ĠL y +Ġm ask +Ġdis aster +Ġag es +ER E +es is +ĠH old +Ġcas ual +b led +Ġen abled +ĠEn vironment +ĠInt elligence +i per +ĠM ap +ĠB E +Ġemer ged +is dom +Ġc abin +Ġregist ration +Ġfing ers +Ġro ster +Ġfram ework +ĠDo ctor +et ts +Ġtransport ation +Ġaware ness +H er +Ġattempt ing +O ff +ĠSt ore +ÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤ +ĠK now +Ġdef ence +Ġsc an +ĠT en +ĠCh air +ĠP H +ĠAtl anta +Ġfuck ing +Ġans wered +b n +ĠK ar +Ġcateg ories +Ġr ational +Ġc ust +Ġrob ot +Ġcorrect ly +Ġg if +Ġgraph ics +m ic +Ġground s +ĠO pp +i ate +Ġdist ributed +Ġsan ctions +Ġchalleng ing +ut o +Ġingred ients +Ġinv ited +Ġfound ed +ĠRe qu +d ed +Ġb owl +Ġbrother s +ĠH a +I O +Ġw ages +im ore +oc ial +Ġse ed +ative ly +Ġaddress es +ĠI owa +ab eth +Ġatt itude +is d +ch ild +Ġm ole +Ġdisco very +y ard +B r +Ġ8 2 +Ġsuppl ies +ell ing +Ġdist ingu +C R +Ġre cept +Ġ vert +Ġsw im +b ec +d oor +ĠY eah +Ġg al +Ġinter act +ĠE SP +ĠC S +amp s +Ġconvin ced +Ġobject ive +Ġdis h +ĠPhot os +l ad +Ġdownt own +o il +in ction +Ġto morrow +ĠC OM +Ġsurv ival +sh ot +Ġsett lement +C ons +ĠX box +int erest +ĠS M +arg o +en ess +Ġeth nic +b ered +M in +ĠT ok +Ġinc ent +ĠComm and +Ġmain tained +Ġbreak s +br idge +at ar +ag g +ĠF inally +un icip +ĠO nt +le ft +Ġrecogn ition +Ġ* / +ĠP ers +Ġwe lf +Ġaddress ed +ĠK ansas +Ġvir us +Ġwhere as +Ġp apers +ram s +ĠMin istry +Ġple asure +Ġacqu ired +Ġd uration +j pg +Ġcal m +ĠN HL +Ġburn ing +Ġfold er +ick ed +ĠP y +ĠIll inois +Cl ass +ĠGodd ess +Ġperform ing +Ġwelf are +j ar +In ter +Ġl in +Ġenh ance +Ġnot ion +f are +yp es +ĠAre a +Ġcann abis +ĠDie go +f s +ĠM anchester +com m +in ite +Ġcover ing +ĠS ound +Ġ19 60 +Ġ8 4 +e lect +z ing +Ġcitiz en +Ġph ones +Ġr aid +Ġign ored +ĠOb ject +Ġu pload +c ard +Ġmod ified +Ġroom s +ia h +r ange +he ast +ach us +Ġsuggest ing +âĢ ĭ +gr ade +E l +Ġclot hing +Ġr h +ĠH an +un ity +en cing +ĠAust in +sec ution +t ra +d em +ĠQ ual +Ġhe aven +Ġst ages +Ġw edd +pl us +ific ial +ĠIm m +ĠH o +iet ies +Ġphr ase +Ġbr ill +act ory +Ġprov iders +Ġsil ence +Ġa er +ĠA I +ĠAd venture +Ġplatform s +Ġdemonstr ated +Ġinter f +ing ton +Ġr aces +Ġgr ade +ult ane +ĠTh rough +f alse +Ġb ow +ĠA B +Ġfl avor +Ġhistor ic +g ov +Ġcol our +Ġview ed +ĠEm ail +el come +Ġinter vention +Ġd iversity +Ġperiod s +Ġre verse +ĠV ery +Ġqu ote +ĠLe ft +th rough +Ġsc rew +Ġland ing +Ġp ill +Ġw et +Ġprot esters +Ġrepe at +av ed +er k +Ġsal ary +ĠPenn sylvania +St ill +Ġmay or +Ġkit chen +Ġfeat uring +ĠM useum +ĠT ournament +ĠF al +Ġser vers +U C +Ġany body +im g +ĠTr ade +ixt ure +the less +Ġfin ance +Ġcl osing +ĠPat ri +i ac +ab el +Ġ> > +or ous +Ġf irms +sc reen +un a +Ġemb arrass +ul se +Ġlet ting +Ġth rew +ile y +Ġch annels +l an +ĠVeg as +Ġse ar +Ġfant astic +ar re +uzz le +ĠD er +Th ose +Ġsw ing +Ġshe et +ind ex +co ver +og an +Ġvari ables +ĠTe ch +Ġsp oken +ac hel +ĠD a +ĠMount ain +Ġload ed +Ġfoot age +vers ion +Ġun l +ĠPh oenix +Ġthrow ing +Ġf iring +Ġtrack ing +Ġw idth +Ġstrugg ling +ro oms +ot ion +Ġmonth ly +ĠSer ver +Ġegg s +op en +M C +Ġ199 3 +Ġh ired +Ġstay ed +ĠAll en +Ġst ro +Ġ9 8 +st ep +ĠTurk ish +Ġfab ric +ist ing +ĠD om +Ġd ates +Ġpr on +Ġbasket ball +Ġl ucky +ĠArab ia +Ġassum ed +est y +Ġaff airs +Ġgl ad +ĠInd eed +ĠF A +ĠW ord +Ġjo ining +if ice +p read +ir ts +ĠSe lect +Ġpop ulations +aw are +Ġn ose +Ġcompl aints +st art +Ġsc oring +Th anks +Ġmin ing +Ġvisit ors +S H +Ġdam aged +Ġcharacter istics +ĠP ent +D C +Ġ8 3 +ĠS ix +r ates +Ġfl ags +ĠB rew +d og +M ark +// // +Ġexec ution +Ġj oke +ph ones +Ġtestim ony +Ġob st +Q L +ĠC ut +Ġstud ied +ĠN intendo +ick et +ĠN BC +Ġl ad +ĠB ra +ĠM oh +Ġk ernel +Ġoverwhel ming +Ġag ed +Ġapplic able +ĠC ond +Ġroad s +ĠBl ock +m ade +od ge +Ġcomm ands +Ġoff ices +vel and +Ġt ut +Ġrece iver +ĠF ro +Ġsho pping +Ġi P +ĠSt re +ĠA BC +Ġentertain ment +ĠB ow +ort ed +M c +Ġread s +gr ad +ĠCol lect +Ġâ ĪĴ +ĠCap ital +eder ation +Ġemploy er +Ġinvolve ment +Ġanx iety +al ia +Ġro of +ĠAm ong +ĠDemocr at +Ġstat s +ĠV ill +Ġconst itutional +Ġrefer ring +itt y +Ġtack le +out ube +Ġback ed +ĠH ong +ĠBro ad +Ġe le +ĠO tt +Ġ199 2 +h our +achus etts +C al +Ġdefe ated +Ġ8 1 +es p +Ġseem ingly +w as +ĠJ enn +ĠK urd +Ġg ene +Ġdisc ount +R et +EC T +( ); +Ġclub s +Ġs id +ĠM arsh +Che ck +Ġp p +ĠE ag +ides pread +Ġbe ings +F T +Ġintrodu ction +ĠCh ange +AR D +Ġ1 10 +ad ows +ier ce +Ġme al +a uthor +ĠB ang +lah oma +Ġr anks +201 1 +?? ?? +m ax +Ġcoll apse +Ġop ens +Ġe cho +Ġs oph +Ġrac ist +Ġenorm ous +Ġw aves +Ġt ap +Ġcomprehens ive +. -- +ĠR oy +Ġfarm ers +Rel ated +a ired +ron es +ĠC rim +Ġproport ion +Ġdesign s +Ġnegoti ations +Ġvirt ually +ĠBat man +Ġwar n +Ġlegit imate +m ate +Ġcon vention +, , +net ic +ĠS D +Ġconsist ently +Ġcompens ation +Ġpunish ment +Ġy e +Ġt ie +ĠB ureau +ir lf +ĠB u +ĠA ren +ĠPh ilipp +Ġkn ife +Ġmem ories +ĠR oss +Ġang le +Ġ8 6 +ĠTh under +Ġre nd +ĠT our +Ġcount s +s ung +ĠIm p +Ġeduc ational +Ġaccess ible +C OM +Ġd rew +y er +G l +am ine +OR T +O B +I B +m aster +Ġtri als +og y +h ar +ĠTr ust +Ġprefer red +irlf riend +ĠN ev +Ġb in +Ġc ow +P age +Ġsign ature +ĠB L +7 00 +Ġret ired +Ġby tes +Ġneigh b +ĠLeg end +Ġdev ast +Ġsuspect ed +is ons +ĠPoké mon +sc ale +Ġcap abilities +Ġre vel +Ġche ese +d y +igr ant +Ġfail ing +b its +ĠHer oes +ĠG host +ĠS cient +Ġappoint ed +ur i +Ġinst itution +Ġexpand ed +g reg +Ġmonitor ing +Ġp odcast +Ġcoal ition +Ġ9 6 +J o +Ġst olen +ĠS ab +Ġstop s +Ġhol iday +Ġint r +C ar +Bl ack +ĠL GBT +Ġwar ming +ĠAnd erson +Ġ8 9 +Ġprodu cer +M ed +Ġaccur acy +ĠMar vel +iz abeth +ĠPat rick +m ony +Ġmin i +ac les +Ġover t +the y +Ġmembers hip +ĠV en +Ġex ch +Ġrem oval +ĠD ave +T Y +m ad +ĠF ind +Ġad equ +Ġe c +Ġte eth +Ġemot ion +Ġper m +Ġsole ly +d b +Ġextra ord +IG HT +c al +Ġgu idelines +Ġd ying +Ġsusp ended +ĠPrem ier +ĠAnth ony +el ve +Ġd ad +ĠE th +ĠFoot ball +Ġabandon ed +Ġ< < +Ġm arch +Ġhor ror +â̦ " +Ġchild hood +Ġcampaign s +Ġl unch +ĠAl bert +bl ock +âĸĪ âĸĪ +ound ing +Ġb one +or gan +ad ers +ĠFl ash +ĠDri ve +Ġton ight +Ġw ars +ĠF L +Ġform ation +con st +New s +Ġcom pe +or ious +ĠSt aff +Ġdiscuss ions +ĠProt ection +ĠJ am +Ġcrit eria +Ġinstall ation +Ġaccompl ish +iz za +Ġpub lisher +Ġresc ue +ĠT ry +U LL +ĠS om +ĠH op +ore t +th s +ord on +Ġp ocket +ĠIn v +Down load +ĠCr ime +Ġb ene +ĠGu ide +ĠAs sembly +Ġparam eters +I E +ĠAlex ander +Ġconc ert +ĠSc he +Ġsh oes +Ġvis iting +Ġrec all +Ġb ub +Ġr ural +Ġconc rete +ĠR os +N ext +R uss +Ġlo ans +ĠSh ield +Ġtre m +hem at +k g +ĠHar ris +is ition +ĠM ove +ĠF C +Ġf ate +ĠCh o +Ġt ired +Ġprinc ipal +h ist +ien ces +ath y +Ġse vent +Ġm ood +Ġstrateg ic +Ġdise ases +Ġfor um +Ġtem por +Ġhead quarters +P ar +ig e +fl ix +Ġgu itar +Ġ9 4 +On ly +Ġrele ases +ro ph +================ ================ +Ġ6 00 +ĠContin ue +ig ate +ĠC rit +sy stem +Ġdis abled +Ġunex pected +ith ub +Ġuncle ar +ĠE st +Ġcontr ad +Ġstrateg ies +vent ures +Ġpass age +AM E +Ġimpro ving +Ġreve als +Ġdecre ase +ov a +Ġann oy +ĠSh ort +ĠL ibrary +Ġcy ber +n ell +ĠH ur +ĠC B +Ġphot ograp +U I +Ġs ed +G e +Ġ8 7 +Ġd iverse +Ġencour aged +Ġcons piracy +Ġbird s +Ġoper ator +Ġhand ful +Ġclass ified +? ) +Ġdram atic +Ġinvestig ators +it o +Ġw idespread +ĠR oom +-------------------------------- -------------------------------- +Ġcollect ive +Ġjournal ist +St ring +Ġtemper atures +il a +Ġgu id +Ġins pect +Ġmiss ile +ĠMay or +Ġman ual +Ġsim ultane +Ġrat ings +Ġsu ck +Ġ9 7 +Ġunivers al +Ġph arm +Ġdis rupt +ian o +A V +Ġf t +Ġstat ist +old s +ĠWalk er +ph p +Ġunder t +ĠL as +ish op +nt il +res hold +ĠWhe ther +M s +Ġden y +ĠCl oud +Ġprov ider +Ġsurv iv +ĠUp date +h as +Ġmist akes +ch arge +pl ed +r ity +Ġn ode +ĠMass achusetts +ool s +lic ation +Ġf ails +em ale +or i +back s +Ġsh irt +Ġ' ' +ĠN AT +Ġwat ers +els on +Ġe ase +Ġsc ar +Ġcont ents +m ind +Ġcont ribution +Ġsh r +Ġhand ed +Ġst ability +Ġtra ve +E m +Ġmir ror +12 3 +Ġwe igh +Ġf iction +ou ver +ist ant +r ition +ĠF ed +Ġphys ically +Ġst ake +ĠArt icle +ĠAr c +ĠLew is +ĠM ind +Ġdemonstr ate +Ġprof its +v ision +om ic +ol id +Ġbatt les +Ġdri ves +Ġeas tern +ĠS ony +!! ! +ar ation +v ard +ĠG L +port ation +Ġ9 2 +Ġlaw makers +Ġprotect ing +ĠE PA +Ġy eah +Ġsh ame +ol ph +e ven +x it +Ġatt ach +Ġrepresent ing +Ġob s +ĠUt ah +iff s +ĠFre edom +à ³ +A K +Ġinc idents +it age +Ġview ers +c d +Ġm ouse +Ġcl ar +Ġaccord ance +Ġb ot +c or +ĠSum mer +he ld +Ġinnoc ent +Ġiniti ative +ol s +________________ ________________ +Ġsp ots +p ace +Ġconvent ional +Ġcorpor ations +Ġblock ed +H D +at tered +Ġref ers +Ġbu ck +ĠDig ital +12 0 +Ġtop ics +T F +Ä ģ +br id +re ement +Ġunder lying +ĠM ember +Ġinvestig ating +Ġpregn ancy +Ġtouch down +ĠB and +ĠCall er +Ġinst ances +P P +w a +G ood +Ġ199 1 +ĠC old +Ġfear s +Ġrem arks +Ĩ Ĵ +at al +Ġm it +Ġexper iments +i pt +Col or +ind u +Up date +Ġ9 3 +A g +Ġ å +anc ouver +B oth +Ġjud ges +Ob ject +Ġst ere +umb n +Ġparticip ation +ĠSt ars +ĠJ ere +Ġweek ly +ĠB an +Ġconvers ations +ĠP itt +u z +ĠIndian a +ĠK ick +Ġinf ection +Ġhero es +Ġsett led +Ġstri p +Ġh al +Ġd ump +ĠS ci +Ġl es +Ġref erences +ĠU RL +ĠBr idge +Ġwant ing +For ce +Ġex clus +Me anwhile +m n +Ġg entle +m aker +sen al +ĠG ro +ou ri +ĠR ain +ĠAll iance +Ġl ift +el a +S D +ĠCle veland +Ġrank ed +Ġst adium +Ġdead ly +ä ¸ +Ġr iding +ar ia +ĠAr mor +Ġdocument ation +ĠGree ce +ree k +Ġl ens +ĠS a +Ġg ross +ĠE mer +ag ers +ĠD ub +ĠR h +ĠAM D +Ġarri val +Ġdes ert +Ġsupp lement +ĠRes p +Ġkn ee +Ġmarg in +f ont +og g +201 0 +ĠP ir +ĠP rom +iv als +Ġint ake +Ġdifferent ly +ug s +Ġb its +clud ed +Ġsearch ing +ĠD u +um ble +Ġfunction al +ĠBalt imore +ĠC ould +Ġdes ired +Ġcirc uit +ĠL yn +ĠG O +ĠF alse +re pre +' : +alt ies +Ġmin im +Ġdro ve +ĠSh ould +Ġh ip +Ġpro s +Ġut ility +ĠN ature +ĠM ode +P resident +o pp +r at +form ance +Ġconcent ration +Ġf ont +ĠB ud +Ġam id +Ġre vers +ĠM L +B ar +Ġinter action +Ġjur isd +Ġspell s +d ep +f il +Ġcivil ians +ut ter +ĠCo oper +ĠBel ow +Ġent rance +Ġcon vert +Ġcontrovers y +ow ered +Ġcontr ary +Ġar c +ĠExec utive +ĠOffic er +Ġpack ages +Ġprog ressive +w idth +Ġreserv ed +v ol +ĠSam sung +Ġprint ed +Ġcent ers +Ġintrodu ce +ĠKenn edy +Ġodd s +Ġsure ly +Ġindepend ence +Ġpass engers +repre ne +ĠBe h +Ġl oves +ĠESP N +Ġfac ilit +Ġident ical +Ġdo ct +Ġpartners hip +con f +ĠH ide +Ġconf used +ĠC ow +M en +Ġw rest +ĠIraq i +Ġh oles +ĠStud ies +Ġpregn ant +h ard +Ġsign als +I X +Ġpull ing +Ġgrad uate +Ġnomine e +D ate +Ġper mitted +Ġâ Ĥ¬ +ĠOk lahoma +St art +Ġauthor ized +Ġal arm +ĠC os +v an +Ġgener ations +c ular +Ġdr agon +ĠSoft ware +ĠEd ward +Ġcontro ller +S en +ge red +ĠV ik +Ġappro ached +Th ank +Ġcan ce +Ġform ula +ĠSm all +Ġweak ness +Ġr amp +it udes +j ud +Ġbrill iant +Ġacc us +s ource +Ġ8 00 +ĠE vil +S w +Ġhom eless +we ek +i ens +r ics +ĠTh ird +T O +Ġorgan ic +Ġpresent ation +ag h +ĠDown load +v ation +Ġas sembly +or able +hold ers +ĠBern ie +ĠHel p +Ġt ong +ĠF ight +Ġbe ach +B ook +ĠL ic +Ġr ush +ĠR ound +ou p +ĠMar x +Ġcalcul ated +ĠDe vil +ĠSar ah +Ġoccasion ally +Ġbul let +Av ailable +g ate +Ġ9 1 +Ġh osp +Ġprom ises +ĠH IV +ĠSt adium +ĠSt ock +ĠCorpor ation +g age +N G +ĠC redit +Ġs ne +ib l +Ġacc um +s uch +Ġterror ists +Ġconscious ness +ĠZ h +Ġdram a +ool a +pir ation +Ġlab our +ĠN in +Ġut ter +Ġdemocr atic +Ġass ass +il ation +Ġg est +Ġab road +Ġmet ab +Ġs orts +Ġfl av +U B +Ġm g +ĠNot hing +ĠO d +Ġmus ical +200 9 +Ġdro ps +oc ated +ater al +0000 00 +Ġg re +Ġequ ality +Ġburd en +Ġv ig +ĠLe ader +-------- ---- +Ġcere mony +Ġf ighter +Ġact ors +Ġ æ +am an +F i +Ġal ign +put er +Ġe lder +ĠN SA +Ġrepresent ation +ĠOnt ario +IT H +usal em +Ġharass ment +itz er +Ġsy mp +Ġbox es +ĠD R +Ġman ifest +at re +Ġ ^ +Ġd ies +le ton +Ġmiss ions +et he +Ġres olve +Ġfollow ers +Ġas c +Ġk m +l ord +am med +Ġsil ent +ĠAssoci ated +Ġtim ing +Ġprison ers +ĠK ings +ĠF ive +Ġtow er +Ġappro aches +Ġprecise ly +Ġb ureau +ĠM other +ĠI ss +Ġkey board +it ual +Ġfund ed +Ġstay ing +Ġpsych ological +Ġm ile +ĠLe on +ĠBar b +w ill +Ġw ider +ĠAtl antic +Ġt ill +ĠR ome +ro t +Ġaccomp an +Ġfl our +ac o +W orld +ĠExp ress +ĠY u +C or +Ġple ased +part y +Ġpoint ing +Ġinf lation +Ġro y +Ġ ), +ain er +Ġwedd ing +orm on +Ġrequ iring +Ġqual ified +Ġse gment +EN D +Ġs izes +e als +Ġcor rupt +ass ador +Ġcele b +Ġdream s +ĠM ess +Ġcheck ing +ĠV ersion +Ġprep aring +Ġact ively +ĠD iff +Ġl ux +ĠW inter +act eria +ĠN E +Ġdep uty +Ġtrans gender +Ġsum mary +Ġin her +er ies +ch ar +ĠY an +Ġkn ock +ĠP ath +Ġl ip +roll er +Ġimp ression +Ġcelebr ate +Ġsl ide +Ġgu ests +Ġcl ip +F S +Ġsav ings +Ġcapt ain +Ġleg acy +ĠDen ver +Ġw ounded +tab oola +AC T +Ġpurs ue +Ġo xy +Ġ q +Ġsem i +ĠN eed +ĠAff airs +Ġob sc +Ġcheck ed +Ġd ual +C ode +ĠM D +le m +ult y +Ġ © +ĠEl izabeth +Ġcent uries +ard ed +s rc +Ġev ident +enn is +at in +Ġunemploy ment +ĠMar io +Ġint im +Ch rist +Ġbi ological +Ġsold ier +ĠAdd ed +Ġm ath +ĠG il +Ġbi as +Ġd ating +ĠO cean +Ġm ice +M us +h ire +ĠT es +Ser ver +lim ited +S ize +Ġmet ers +Ġrock et +es see +Ġcertific ate +ĠIran ian +AS S +Ġgr id +D ec +Ġro lling +com mun +ĠSwed en +b ury +Ġtiss ue +Ġrac ism +ĠL ocal +Ġmyster y +Ġexam ine +Ġst em +Ġs its +Ġhop ed +ot ing +Ġdial ogue +Ġpers u +W atch +l ay +M AN +Ġch ronic +ĠPort land +mark et +ĠS EC +Ġparalle l +Ġsc andal +Ġcar ries +Ġphenomen on +h uman +ack er +ĠO x +Ġretire ment +tain ment +ov ie +ĠG ear +Ġd uties +Ġdo se +Ġsc roll +M B +in f +Ġsa uce +Ġland scape +red dit +ĠChampions hip +ĠRed dit +al id +Ġco in +Ġover s +Ġpost ing +ab out +Ġf el +and y +Ġb old +Ġfocus ing +e ffect +G R +Ġde emed +Ġrecommend ations +Ġste pped +Ġvot er +ĠDe ep +ĠInst agram +Ġmoder ate +ĠMary land +Ġrestrict ed +ĠM B +ĠCh all +Ġto b +Ġc ir +ĠO cc +ĠE ver +Ġcoll aps +IN FO += - +ĠP ict +ĠAcc ount +n c +Ġo ught +Ġex port +Ġdr unk +( ' +Ġw ise +ĠM ort +ne cess +Ġan cest +ĠInc re +Ġfrequ ent +m ir +Ġinterpret ation +Ġdepend ent +Ġco ins +ĠB ol +V ideo +ĠJust in +Ġfat al +Ġcook ing +Ġconf usion +ip her +Ġcust ody +ĠMor gan +om ach +ĠGovern or +Ġrestaur ants +el ing +Ġacknowled ged +Ġthe r +Ġgen es +ch ing +He y +Ġtact ics +ĠMex ican +Ġv end +Ġhe s +qu er +Ġnot ing +ĠCamer on +Ġtarget ing +ro ck +Ġcred its +Ġemot ions +Ġrepresent atives +new s +Ġlegisl ative +Ġrem oving +Ġtweet ed +ĠCar ter +ĠF ixed +Ġfor cing +Ġspeak er +Ġm ales +ĠViet nam +l ined +Ġconcept s +Ġvo ices +o ir +ĠT rib +W he +ĠJer usalem +ĠS ant +Ġc ul +Ġl ady +ĠHaw ai +Ġar ts +ĠIn n +ĠMach ine +ĠEm peror +Ġsl ot +g ly +ĠPro cess +II I +Ġathlet es +ĠTem ple +ĠRep resent +Ġpres c +Ġt ons +Ġgold en +Ġp unch +ĠG R +iver pool +Ġen act +Ġlob by +Ġm os +Ġpick ing +Ġlif etime +Ġcogn itive +E ach +z o +Ġd ub +Ġcons ists +ol n +Ġf estival +am ous +Ġint ellig +w ords +ĠSm art +Ġde le +Ġl apt +Ġmag ical +ĠS in +b us +ur ities +igh th +ĠRub y +ĠS ure +ol ving +Ġj un +O ST +Ġimp osed +Ġast ron +Ġcor rel +ĠN S +ĠK it +ĠF uture +b urn +Ġimm une +oc us +Ġcour ses +ĠSt ring +Ġle an +Ġg host +Ġout comes +Ġexp ense +Ġevery day +Ġaccept able +A h +Ġequ ipped +Ġor ange +F R +ĠD utch +Th ough +ĠR ank +Q U +ĠRober ts +wh at +re nd +Ġdisapp ear +Ġsp awn +ĠL am +o is +Ġdes erve +Ġmin imal +Ġnerv ous +ĠW ould +Ġro ok +ĠV ancouver +Ġres ign +sh ire +ĠW orks +ĠB uild +Ġafford able +ĠG ary +ĠAren a +Ġh anging +Ġimpl ications +ĠS ong +Ġmain taining +Ġgu ards +C ON +Ġder ived +Ġexecut ed +Ġthe ories +Ġqu oted +ĠAnd re +og a +sel ess +in fo +ĠBel g +Ġt ears +ĠSur v +Ġbirth day +ig ious +im mer +Ġspect rum +Ġarchitect ure +Ġrec ruit +arm a +T able +Ġmon sters +ĠG ov +Ġdest ination +Ġattract ive +Ġf oss +ĠMore over +Ġpres ents +TH E +Ġrep ly +pt on +Ġc um +Ġdel ight +Ġaffect s +Ġdon ations +ĠT oy +ĠH im +M ENT +Ġover come +it ched +ĠFant asy +ĠH at +ĠBe ast +b ott +Ġinvestig ations +R un +Ġhun ting +d i +f und +Ġs essions +est yle +Ġport ray +oid s +Y eah +Ġcommun icate +Ġcom edy +ĠY ang +Ġbel t +ĠMar ine +Ġpredict ed +Pl ay +Ġimportant ly +Ġremark able +Ġelim inate +D avid +Ġb ind +V ID +Ġadvoc ates +ĠG aza +im p +D B +ĠN a +ĠSim ilar +I ES +Ġchar ity +v as +m ath +Ġâ ĸ +ok er +nd um +Ġcap s +ĠH al +2 000 +e an +Ġfle et +Ġrec re +R ight +Ġsleep ing +ij ing +k ind +Ġdesign ated +à ¤ +Ġanim ation +ke e +ĠInt rodu +Ġ/ > +Ġdelay ed +Ġtrem end +Ġcur ious +U se +Ġle ct +d am +Ġinnov ation +ĠPoint s +Ġload ing +Ġdisp ute +ct ic +ird s +ĠB Y +Ġn urs +ĠVal ue +ION S +ĠH um +Ġtem plate +m ers +Ġappear ances +ĠEnter tainment +Ġtransl ation +Ġsa ke +Ġbene ath +Ġin hib +Ġe uro +abet es +Ġstud ying +ĠM as +Ġper ceived +Ġexam ined +Ġe ager +Ġco aches +Ġim per +ch i +Ġprodu ces +" ). +ĠEvery one +Ġm unicip +Ġg irlfriend +Ġh ire +ĠV ice +Ġsu itable +op y +Ġin equ +ĠD uke +f ish +f irst +ĠO bs +Ġinter ior +ĠBru ce +ĠR y +Ġanal ys +Ġconsider able +Ġfore cast +Ġf ert +ors hip +ĠD rug +ĠA LL +: " +th ur +ĠM ail +Ġball ot +Ġinst antly +ĠCh annel +Ġp icks +Ġ198 9 +Ġt ent +ol i +Ġcivil ian +b ling +ell o +b u +Ġin ch +Ġlog o +Ġcooper ation +Ġwal ks +Ġinvest ments +Ġimp rison +ĠF estival +ĠK y +Ġleg ally +Ġg ri +ch arg +S l +Ġthreat ening +du ction +fl ow +Ġdismiss ed +ibr aries +c ap +e le +ĠMc G +ĠHar vard +ĠConserv ative +ĠC BS +p ng +Ġro ots +ĠH aving +umb led +ĠF un +\ / +ĠS earch +ple x +Ġdiscuss ing +Ġcontin u +ĠT ai +ĠW ik +F ree +f it +Ġref use +Ġmanag ing +Ġsy nd +ip edia +w alk +Ġprofession als +Ġguid ance +Ġunivers ities +Ġas semb +unt u +F inally +AS E +ĠAut o +ĠH ad +Ġann iversary +L D +ĠD ur +ĠUlt imate +ih ad +pro duct +Ġtrans it +Ġrest ore +Ġexpl aining +Ġass et +Ġtransfer red +Ġbur st +ap olis +ĠMag azine +ĠC ra +ĠB R +gg ed +ĠH E +M ich +b et +ĠL ady +yl um +erv es +Ġme ets +wh ite +L og +Ġcorrespond ing +Ġins isted +G G +Ġsurround ed +Ġt ens +Ġl ane +Ġco inc +h ome +Ġexist ed +ect ed +ĠDou ble +lam m +Ġske pt +ex p +Ġper ception +ie v +ĠBe ing +o ft +Ġadop t +. : +] ; +Wind ows +Ġsatell ite +AS H +Ġinf ant +d escription +ĠMe anwhile +c m +oc a +ĠT reat +act or +Ġtob acco +ĠN orm +em ption +Ġfl esh +Ġj e +o op +ĠHe aven +Ġbe ating +an im +Ġgather ing +Ġcult iv +G O +ab e +ĠJon athan +ĠSaf ety +Ġbad ly +pro t +Ġcho osing +Ġcontact ed +Ġqu it +Ġdist ur +Ġst ir +Ġto ken +D et +ĠP a +Ġfunction ality +00 3 +s ome +Ġlimit ations +Ġmet h +b uild +con fig +N T +re ll +ble m +ĠM om +Ġveter ans +ĠH u +Ġtrend s +are r +ĠG iven +ĠCa ption +m ay +AS T +Ġwond ering +ĠCl ark +n ormal +Ġsepar ated +Ġdes p +st ic +b rew +Ġrel ating +ĠN ik +ĠF arm +Ġenthus i +g ood +d eb +Ġactiv ist +Ġm art +Ġexplos ion +ĠEconom ic +L ink +Ġins ight +Ġconven ient +Ġcounter part +su pport +ĠV irt +ag en +ĠTenn essee +ĠSim on +ĠA ward +OC K +ĠF igure +Ġoverse as +Ġpr ide +ĠC as +n ote +m g +C urrent +Ġdispl ays +cont ent +Ġtravel ing +Ġhosp itals +ĠFin ancial +ĠP ast +Ġdefend ant +Ġstream ing +m ble +ĠBer lin +uk i +Ġdist ribut +Ġant ib +Ġch ocolate +ĠCast le +Ġinter rupt +ĠR ow +Ġconvers ion +Ġbug s +ĠR ather +li est +L Y +ĠJe an +com mon +ak h +Ġ1 30 +ot ton +ĠDe an +Ġam endment +Ġgame play +ĠWar ren +od a +Ġhigh lights +Ġir re +ĠNAT O +Ġball s +Ġdemand ing +U RE +ĠL uke +F igure +st op +on ia +z one +iz ers +ĠW R +Ġaward ed +Ġregul atory +ĠH art +ĠS N +pl ing +Ġs our +ĠP ixel +us ive +Ġf et +ĠS ent +Ġautom atic +Ġf er +vern ment +ĠKh an +T ON +f ather +Ġextraord inary +th rop +ĠP ython +ĠG PU +Ġsex ually +Ġdesk top +it ivity +ĠAnton io +Ġo rient +Ġe ars +ob by +ous es +vertis ements +Ġmanufacture rs +ic ient +min ute +Ġconv iction +Ġg arden +p ublic +Ġsatisf ied +f old +O K +Ġin hab +ĠTh ink +Ġprogram me +Ġst omach +Ġcoord in +Ġh oly +Ġth reshold +Ġr het +Ġser ial +Ġemploy ers +ĠEvery thing +ra h +Ġb other +Ġbr ands +Val ue +ĠT ed +ĠPlan et +Ġp ink +ĠFurther more +s a +P E +re ck +ĠUS D +ot te +Ġ& & +Ġland ed +g ets +Ġprodu cers +Ġhealth care +Ġdomin ant +Ġdest ro +Ġam ended +ch ron +Ġf its +ĠSy d +ĠAuthor ity +AT CH +Ġfight s +ĠL LC +Ġ-- - +ĠCor p +Ġtox ic +spe cific +ĠC orn +ĠChe l +Ġtele phone +ĠP ant +Ġmyster ious +aun ch +od ox +med ia +Ġwitness es +ag u +Ġquestion ed +ĠBre xit +ĠRem ember +ene z +Ġend orse +iat ric +ĠId ent +Ġridic ulous +1 10 +Ġpr ayer +Ġscient ist +Ġ19 50 +ĠA qu +Ġunder ground +ĠU FC +m are +ĠL ater +w ich +Ġsubsc rib +Ġhost s +Ġer r +Ġgr ants +ant om +Ġsum mon +ear ly +ĠC lear +ĠPr im +Ġsusp ension +Ġguarant eed +app er +Ġr ice +ĠSe an +ĠSh in +Ġrefere ndum +Ġfl ed +r ust +Ġ3 60 +ter y +Ġsh ocked +B R +ĠO il +ĠAll ah +Ġpart ly +Ġign or +Ġtrans mission +Ġhom osexual +ivers al +Ġhop efully +ãĤ ¤ +Ġless on +L eg +Ġ .. +Y et +t able +app ropri +re tt +Ġbo ards +Ġincor rect +Ġb acteria +ar u +am ac +Ġsn ap +.' " +Ġpar ad +t em +he art +Ġav ailability +Ġw isdom +Ġ( + +Ġpri est +ĠÂł ĠÂł +O pen +Ġsp an +Ġparam eter +Ġconv ince +Ġ( %) +r ac +Ġf o +Ġsafe ly +Ġconver ted +ĠOlymp ic +Ġres erve +Ġhe aling +ĠM ine +M ax +Ġin herent +ĠGra ham +Ġinteg rated +D em +Ġpip eline +Ġapp lying +Ġem bed +ĠCharl ie +Ġc ave +200 8 +Ġcons ensus +Ġre wards +P al +ĠHT ML +Ġpopular ity +look ing +ĠSw ord +ĠAr ts +' ) +Ġelect ron +clus ions +Ġinteg rity +Ġexclus ively +Ġgr ace +Ġtort ure +Ġburn ed +tw o +Ġ18 0 +P rodu +Ġent reprene +raph ics +Ġg ym +ric ane +ĠT am +Ġadministr ative +Ġmanufacture r +Ġ vel +ĠN i +Ġisol ated +ĠMedic ine +Ġback up +Ġpromot ing +Ġcommand er +Ġfle e +ĠRus sell +Ġforg otten +ĠMiss ouri +Ġres idence +m ons +Ġrese mb +Ġw and +Ġmeaning ful +P T +Ġb ol +Ġhe lic +Ġwealth y +Ġr ifle +str ong +row ing +pl an +as ury +â̦ . +Ġexpand ing +ĠHam ilton +Ġrece ives +S I +eat ures +ĠAn im +RE E +P ut +Ġbrief ly +ri ve +Ġstim ul +Ġ`` ( +Ġ __ +Ġch ip +Ġha z +Ġpri ze +ĠTh ings +AC E +ul in +d ict +ok u +Ġassoci ate +ock ets +y outube +St ory +ateg ory +Ġm ild +ail ing +ĠY e +O rig +ĠK a +or ig +Ġpropag anda +Ġan onymous +Ġstrugg led +Ġout rage +AT ED +ĠBe ijing +r ary +Ġle ather +Ġworld s +Ġbroad er +12 5 +id al +ĠBet ter +Ġt ear +E xt +Ġpropos als +Ġit er +ĠSqu ad +Ġvol unt +m i +D id +ĠP u +p in +Ġspeak ers +Ġb orders +Ġfig ured += ' +Ġsimultane ously +aed a +Ġcharg ing +Ġur ged +Ġcon j +25 6 +ĠG ordon +mer ce +Ġdocument ary +Sh are +it ol +ON E +ĠG arden +h att +ĠThom pson +ane ous +ap ore +Ġt anks +Ġless ons +tr ack +Ġout standing +Ġvolunte ers +Ġsp ray +Ġmanag ers +l arge +Ġcamp s +Ġart ificial +ĠR u +Ġb ags +th al +Ġcompat ible +ĠBl ade +Ġf ed +Ġarg ues +F I +Ġunf air +Ġcor n +Ġoff set +Ġdirect ions +Ġdisappoint ed +ĠCon vention +Ġview ing +M E +oc ity +Ġtown s +Ġlay ers +Ġro lled +Ġjump ed +Ġatt ribute +Ġun necess +inc oln +Ġsupp ose +ĠNet her +ch a +Ġbur ied +Ġsix th +B en +ress ing +OU R +Ġw ound +Ġcy cl +Ġmechan isms +Ġcongress ional +ĠE lement +Ġagre ements +Ġdec or +Ġclos est +ĠM it +Go ogle +} } +Ġm ixture +Ġflu id +S ign +ĠSch olar +Ġp ist +ask et +ab ling +Ġrac ing +he ro +ri el +ass y +Ġche aper +b en +Ġvert ical +amac are +ĠRead ing +g ments +Ġhelic op +Ġsacr ifice +ay a +p aren +V A +ĠL es +ĠStud io +Ġviol ations +ĠAn na +ac er +é ¾ +ĠR at +ĠBe ck +ĠD ick +ĠA CT +Ġcomp osition +Ġtext ure +ĠO wn +Ġsmart phone +ĠN A +Ġfor b +im port +Ġdef ending +il st +re r +Ġo h +ĠJere my +Ġbank ing +cept ions +Ġrespect ive +/ . +Ġdr inks +ĠW i +Ġb ands +ĠL iverpool +Ġg rip +ĠB uy +Ġopen ly +Ġreview ed +per t +Ġver ify +ĠCo le +ĠW ales +M O +Ġun pre +Ġshel ter +ĠIm perial +Ġgu i +ĠD ak +Ġsuggest ions +Ġexplicit ly +Ġsl ave +Ġblock chain +Ġcompet ing +Ġprom ising +S ON +Ġsoc cer +Ġconst itution +4 29 +Ġdist ract +ĠU ser +es ides +ĠMet hod +ĠTok yo +Ġaccompan ied +Cl ient +s ur +al og +Ġident ification +Ġinv asion +as ma +Ġindust ries +pp ers +Ġsub tle +ĠUn it +n atural +Ġsurv ived +Ġfl aw +ĺ ħ +ĠH oll +Ġdef icit +Ġtut orial +ĠCh ance +Ġarg uing +Ġcontem porary +Ġinteg ration +for ward +Ġt um +it is +Ġh iding +ĠD omin +ĠT an +ĠB uilding +ĠV in +Ġspokes person +ĠNot es +Ġemer ging +Ġprepar ation +Ġpro st +Ġsuspect s +Ġaut onom +D escription +Ġdeal t +ĠP ear +Ġstead y +Ġdecre ased +Ġso vere +ĠCl in +Ġgrad ually +ors es +ĠW AR +S erv +ãĤ ¢ +h r +Ġd irty +ĠB arn +ĠB C +Ġd il +Ġcal endar +Ġcompl iance +Ġch amber +b b +Ġpass enger +ate ful +ĠT itle +ĠSyd ney +ĠG ot +Ġdark ness +Ġdef ect +Ġpack ed +ass ion +Ġgod s +Ġh arsh +IC K +le ans +Ġalgorith m +Ġoxy gen +Ġvis its +Ġbl ade +Ġkil omet +ĠKent ucky +Ġkill er +P ack +enn y +Ġdiv ine +Ġnom ination +be ing +Ġeng ines +Ġc ats +Ġbuff er +ĠPh ill +Ġtra ff +AG E +Ġtong ue +Ġrad iation +ere r +m em +ĠExpl icit +é¾ į +Ġcou ples +Ġphys ics +ĠMc K +Ġpolit ically +aw ks +ĠBl oom +Ġwor ship +e ger +ut er +ĠF O +Ġmat hemat +Ġsent enced +Ġdis k +ĠM arg +Ġ/ * +P I +Ġoption al +Ġbab ies +Ġse eds +ĠScott ish +Ġth y +] ] +ĠHit ler +P H +ng th +Ġrec overed +ing e +Ġpow der +Ġl ips +Ġdesign er +Ġdis orders +Ġcour age +Ġch aos +" },{" +Ġcar rier +b ably +H igh +ĠR T +es ity +l en +Ġrout es +u ating +F il +N OT +w all +s burgh +Ġeng aging +ĠJava Script +ore r +li hood +Ġun ions +ĠF ederation +ĠTes la +Ġcomple tion +ĠT a +Ġprivile ge +ĠOr ange +Ġne ur +paren cy +Ġb ones +Ġtit led +Ġprosecut ors +ĠM E +Ġengine er +ĠUn iverse +ĠH ig +n ie +o ard +Ġheart s +ĠG re +uss ion +Ġmin istry +Ġpen et +ĠN ut +ĠO w +ĠX P +in stein +Ġbul k +S ystem +ic ism +ĠMarket able +Ġpre val +Ġpost er +Ġatt ending +ur able +Ġlicens ed +ĠG h +et ry +ĠTrad able +Ġbl ast +à ¤ +ĠTit an +ell ed +d ie +H ave +ĠFl ame +Ġprof ound +Ġparticip ating +Ġan ime +ĠE ss +Ġspec ify +Ġregard ed +ĠSpe ll +Ġs ons +own ed +Ġm erc +Ġexper imental +land o +h s +ĠDun geon +in os +Ġcomp ly +ĠSystem s +ar th +Ġse ized +l ocal +ĠGirl s +ud o +on ed +ĠF le +Ġconstruct ed +Ġhost ed +Ġsc ared +act ic +ĠIs lands +ĠM ORE +Ġbl ess +Ġblock ing +Ġch ips +Ġev ac +P s +Ġcorpor ation +Ġo x +Ġlight ing +Ġneighb ors +ĠU b +ar o +Ġbe ef +ĠU ber +F acebook +ar med +it ate +ĠR ating +ĠQu ick +Ġoccup ied +Ġaim s +ĠAdd itionally +ĠInt erest +Ġdram atically +Ġhe al +Ġpain ting +Ġengine ers +M M +ĠM ust +Ġquant ity +P aul +Ġearn ings +ĠPost s +st ra +ãĥ¼ ãĥ +Ġst ance +Ġdro pping +sc ript +Ġd ressed +M ake +Ġjust ify +ĠL td +Ġprompt ed +Ġscr ut +Ġspeed s +ĠGi ants +om er +ĠEd itor +Ġdescrib ing +ĠL ie +ment ed +Ġnow here +oc aly +Ġinst ruction +fort able +Ġent ities +Ġc m +ĠN atural +Ġinqu iry +Ġpress ed +iz ont +for ced +Ġra ises +ĠNet flix +ĠS ide +Ġout er +Ġamong st +im s +ows ki +Ġclim b +ne ver +Ġcomb ine +d ing +Ġcomp r +Ġsignific ance +Ġremem bered +ĠNev ada +ĠT el +ĠSc ar +ĠWar riors +ĠJ ane +Ġcou p +b as +Ġtermin al +, - +O H +Ġt ension +Ġw ings +ĠMy ster +�� �� +ĠUn like +val id +viron ments +ĠAl i +Ġn aked +book s +ĠM un +ĠG ulf +Ġd ensity +Ġdim in +Ġdesper ate +Ġpres idency +Ġ198 6 +h y +IN D +Ġun lock +im ens +Ġhand led +ĠE b +Ġdisapp eared +Ġgen re +Ġ198 8 +Ġdetermin ation +St ream +ik o +ap ters +Ġacknow ledge +J an +Ġcapital ism +P at +Ġ20 20 +Ġpain ful +Ġcur ve +Ġbom bs +st orm +ĠMet al +en cer +ĠF ig +ĠA aron +anc hes +Ġins piration +Ġexha ust +t ains +ash i +Ġdesc ript +Ġr itual +ĠChel sea +Ġpromot ion +ĠH ung +ĠW ard +iv a +ĠE T +Ġto ss +all ow +ĠFranc is +D ep +Ġhapp iness +ĠGl ass +Ġbet a +Ġstreng then +N E +o a +Ġbutt ons +ĠMur ray +Ġkick ed +Qu est +ĠT alk +ĠS everal +ĠZ ero +Ġdr one +ul k +Ġc am +ĠM obile +Ġprevent ing +Ġret ro +ĠA x +Ġcru el +Ġflo at +. ), +Ġfil ing +ĠGr ant +ĠB or +Ġr ib +Ġchampions hip +ĠM erc +Ġsty les +Ġc ake +Ġbuild s +ĠS elf +io x +Ġep ic +oy d +B el +ĠSt ew +. ( +ah u +ĠBe yond +Ġout s +Ġsol o +ĠT ree +Ġpres erve +Ġt ub +AR E +ro c +ĠIm pro +ĠW right +Ġbu nd +Ġtr aged +Ġoccas ional +b ian +Sec ond +r ons +Ġinter actions +form ed +s ing +Ġown s +Ġh ockey +Gener al +Ġlog ical +Ġexp end +Ġesc al +ĠGr iff +ĠC rown +ĠRes erve +Ġsto pping +Ġexc use +sec ond +Ġoper ated +Ġre aches +ĠMal ays +Ġpoll ution +ĠBrook lyn +Ġde lete +Ġhas h +Bl ock +ah a +âĢ ³ +Ġsh orter +p iece +> >> +ĠM ormon +t or +Ġpartic les +ĠB art +ry ption +Ġad min +Ġsqu ee +VID IA +Ġcreat or +iam eter +ic ular +N BC +Ġgrab bed +Ġn odd +Ġr ated +Ġrot ation +Ġgr asp +Ġexcess ive +ĠE C +ĠWh it +Ġinvent ory +ault s +ĠF B +Ġe cosystem +Ġbill ions +Ġvent ure +n amed +Ġdef ender +out e +Inst ead +ir able +W ar +Ġassum ption +Ġb ite +Ġearth qu +t ail +sp ace +Ġgif ts +boy s +Ġinev itable +Ġstruct ural +Ġbenef icial +Ġcompe lling +h ole +erv ation +Ġco at +o j +inc arn +ĠY ears +Ġdetermin ing +Ġrhet oric +Ġbound aries +Ġwh ites +A nt +add y +) - +ra ham +eter min +Ġhar vest +ĠCon c +Ġlapt op +ĠM atch +Ġenjoy ing +cc a +oll ar +Ġtri ps +Ġadd iction +ĠS ak +Ġpow ered +Ġc ous +ĠRuss ians +ie re +Ġret rie +qu ality +Ġdiff er +Ġking dom +ĠL aur +ĠCap itol +Ġcon clusions +ĠAl tern +ĠN av +Ġtrans parent +B ER +G roup +ĠCom plete +Ġinf er +Ġint rig +Ġins ane +R O +oph ob +is en +qu al +Mich ael +Ġm useum +ĠP ope +Ġres et +r ative +f ive +Ġagg reg +itte es +osit ory +Ġcar b +ĠRec ord +Ġdec ides +ĠF ix +Ġexcept ions +ĠCommission er +un s +ĠEnvironment al +Ġlegend ary +ist ence +Ġtun nel +k m +Ġins ult +Ġt roll +Ġsh ake +Ġdet ention +qu es +ĠCh rome +ĠF iles +Ġsub t +Ġprospect s +Ġpro l +re nder +pro of +Ġperform ances +St r +Ġh ref +ern ame +Ġachieve ment +Ġf ut +F ull +ĠLe ban +go ogle +ãĥ Ī +amp a +May be +Ġproject ed +ĠE mb +Ġcol leg +Ġa wards +Ġâ Ķ +G old +ĠBl ake +ĠR aj +if ting +Ġp ending +Ġinst inct +Ġdevelop ments +Con nect +ĠM and +ĠW ITH +ĠPhilipp ines +prof ile +Ġalt ogether +ĠB und +ĠT D +oo oo +amp ed +ip h +Ġste am +Ġold est +Ġdet ection +ul pt +Ġ ç +ĠWay ne +200 6 +f a +Ġcir cles +ĠF u +Ġdon ors +appropri ate +ĠDak ota +j amin +Ġmotiv ated +Ġpurch ases +ĠLouis iana +ĠS pl +Ġgl obe +Ġ10 5 +z ip +c all +Ġdepart ments +Ġsustain able +10 5 +ĠO P +if iers +Ġprevent ed +Ġinc omp +ĠComm ander +Ġdom inated +Ġ » +Ġinvest ed +Ġcomplex ity +Ġin cl +Ġens uring +Ġreal m +yn c +ĠInd ependent +r ained +ĠJ en +ĠFl ight +Ġat he +Ġspec ulation +ĠT E +oc ate +t ic +Ġpl aint +her ry +Ġto y +Ġ1 11 +Ġpl ates +st atus +ĠIs a +Ġdev oted +C op +ĠE S +25 5 +ur rency +M ain +Ġsl aves +Ġpe pper +Ġqu otes +Ġce iling +ĠF ish +Ġtrans formation +Ġfra ction +Ġadvant ages +Ġto ile +Ġstun ning +Ġmo ist +bre aking +s i +ĠL ocation +ĠMed ium +Ġtext s +Ġu gly +Ġb io +. âĢĶ +ĠB ased +Ġtr ains +ĠW ing +ĠAn cient +ĠRec ords +ĠH ope +Spe cial +ades h +ob i +[ / +Ġtempor arily +V er +h u +os er +Ġover night +Ġm amm +ĠTre asury +ĠV enezuel +ĠMeg a +Ġt ar +Ġexpect s +bl ack +or ph +\\ \\ +Ġaccept ance +Ġrad ar +s is +Ġjun ior +Ġfram es +Ġobserv ation +ac ies +P ower +ĠAdv anced +M ag +olog ically +ĠMe chan +Ġsent ences +Ġanaly sts +augh ters +force ment +Ġv ague +Ġcl ause +Ġdirect ors +Ġeval uate +Ġcabin et +M att +ĠClass ic +A ng +Ġcl er +ĠB uck +Ġresear cher +Ġ16 0 +Ġpoor ly +Ġexperien cing +ĠP ed +ĠMan hattan +Ġfre ed +Ġthem es +ad vant +Ġn in +Ġpra ise +10 4 +ĠLib ya +b est +Ġtrust ed +Ġce ase +Ġd ign +D irect +Ġbomb ing +Ġm igration +ĠSci ences +Ġmunicip al +ĠA verage +Ġgl ory +Ġreve aling +Ġare na +Ġuncertain ty +Ġbattle field +ia o +G od +Ġc inem +ra pe +el le +ap ons +Ġlist ing +Ġwa ited +Ġsp otted +ke ley +ĠAud io +e or +ard ing +idd ing +ig ma +ĠN eg +Ġl one +Ġ ---- +ex e +d eg +Ġtrans f +Ġwas h +Ġsl avery +Ġexpl oring +ĠW W +ats on +Ġen cl +l ies +ĠC reek +Ġwood en +Man ager +ĠBr and +um my +ĠAr thur +Ġbureau cr +Ġbl end +ar ians +F urther +Ġsupposed ly +Ġwind s +Ġ19 79 +Ġgrav ity +Ġanalys es +ĠTra vel +ĠV eter +Ġd umb +Ġaltern ate +g al +Ġconsum ed +Ġeffect iveness +.' ' +Ġpath s +ond a +L A +ĠStr ong +Ġen ables +Ġesc aped +Ġ" " +Ġ1 12 +Ġ198 3 +Ġsm iled +Ġtend ency +F ire +Ġp ars +ĠR oc +Ġl ake +Ġf itness +ĠA th +ĠH orn +Ġh ier +Ġimp ose +m other +Ġp ension +ic ut +bor ne +ic iary +. _ +ĠS U +Ġpol ar +is y +eng u +itial ized +AT A +w rite +Ġexerc ises +ĠD iamond +ot ypes +Ġharm ful +on z +Ġprint ing +st ory +Ġexpert ise +ĠG er +Ġtraged y +ĠF ly +Ġd ivid +amp ire +st ock +M em +Ġre ign +Ġun ve +Ġam end +ĠProp het +Ġmut ual +ĠF ac +Ġrepl acing +H ar +ĠCirc uit +Ġthro at +ĠSh ot +Ġbatter ies +Ġto ll +Ġaddress ing +ĠMedic aid +Ġp upp +ĠN ar +ol k +Ġequ ity +M R +ĠHis pan +ĠL arge +m id +D ev +Ġexp ed +Ġdem o +ĠMarsh all +erg us +Ġf iber +Ġdiv orce +ĠCre ate +Ġsl ower +ĠPark er +ĠStud ent +ĠTr aining +Ret urn +ĠT ru +Ġc ub +ĠRe ached +Ġpan ic +Ġqu arters +Ġre ct +Ġtreat ing +Ġr ats +ĠChristian ity +ol er +Ġsac red +Ġdecl are +ul ative +et ing +Ġdeliver ing +est one +Ġt el +ĠL arry +Ġmet a +ac cept +art z +ĠRog er +hand ed +Ġhead er +Ġtra pped +ĠCent ury +Ġkn ocked +ĠOx ford +Ġsurviv ors +b ot +Ġdemon stration +Ġd irt +Ġass ists +OM E +ĠD raft +ortun ate +fol io +pe red +ust ers +g t +ĠL ock +Ġjud icial +ver ted +Ġsec ured +out ing +ĠBook s +Ġhost ing +Ġlif ted +l ength +Ġj er +Ġwhe els +ĠR ange +umbn ails +Ġdiagn osis +te ch +ĠStew art +ĠP ract +Ġnation wide +Ġde ar +Ġoblig ations +Ġgrow s +Ġmand atory +Ġsusp icious +! ' +A pr +G reat +Ġmort gage +Ġprosecut or +Ġeditor ial +ĠK r +Ġprocess ed +ung le +Ġflex ibility +Ear lier +ĠC art +ĠS ug +Ġfoc uses +Ġstart up +Ġbre ach +ĠT ob +cy cle +ãĢ Į +ro se +Ġb izarre +ãĢ į +Ġveget ables +$ $ +Ġret reat +osh i +ĠSh op +ĠG round +ĠSt op +ĠHawai i +ĠA y +Per haps +ĠBe aut +uff er +enn a +Ġproduct ivity +F ixed +cont rol +Ġabs ent +ĠCamp aign +G reen +Ġident ifying +Ġreg ret +Ġpromot ed +ĠSe ven +Ġer u +ne ath +aug hed +ĠP in +ĠL iving +C ost +om atic +me ga +ĠN ig +oc y +Ġin box +Ġem pire +Ġhor izont +Ġbr anches +Ġmet aph +Act ive +ed i +ĠFil m +ĠS omething +Ġmod s +inc ial +ĠOrig inal +G en +Ġspir its +Ġear ning +H ist +Ġr iders +Ġsacr ific +M T +ĠV A +ĠS alt +Ġoccup ation +ĠM i +Ġdis g +lic t +Ġn it +Ġn odes +e em +ĠP ier +Ġhat red +ps y +ãĥ ī +Ġthe ater +Ġsophistic ated +Ġdef ended +Ġbes ides +Ġthorough ly +ĠMedic are +Ġbl amed +arent ly +Ġcry ing +F OR +pri v +Ġsing ing +ĠI l +Ġc ute +o ided +olit ical +ĠNe uro +å ¤ +Ġdon ation +ĠEag les +ĠG ive +T om +Ġsubstant ially +ĠLic ense +ĠJ a +Ġg rey +ĠAn imal +ĠE R +ĠU nd +Ġke en +Ġconclud e +ĠMississ ippi +Eng ine +ĠStud ios +P ress +o vers +ll ers +Ġ3 50 +ĠR angers +Ġr ou +ert o +E p +iss a +iv an +Ġse al +ĠReg ist +dis play +Ġwe aken +u um +ĠComm ons +ĠS ay +Ġcult ures +Ġl aughed +Ġsl ip +Ġtreat ments +iz able +m art +ĠR ice +Ġbe ast +Ġob esity +ĠLa ure +ig a +Wh ich +hold er +Ġelder ly +Ġp ays +Ġcompl ained +Ġc rop +Ġpro c +Ġexplos ive +ĠF an +ĠAr senal +A uthor +ef ul +Ġme als +Ġ( - +id ays +Ġimag ination +Ġann ually +Ġm s +as ures +H ead +ik h +m atic +Ġboy friend +ĠCom puter +Ġb ump +Ġsur ge +ĠCra ig +ĠKir k +D el +medi ate +Ġscen arios +ĠM ut +ĠSt ream +Ġcompet itors +Ù Ħ +ĠStan ford +ĠRes ources +az ed +b age +Ġorgan is +ĠRe lease +Ġsepar ately +Ġha bits +Ġmeasure ments +ĠCl ose +Ġaccomp any +Ġg ly +Ġt ang +ĠR ou +Ġplug in +Ġcon vey +ĠChall enge +oot s +j an +Ġcur s +ĠRel ations +ke eper +Ġapproach ing +p ing +Spe aking +Ġarrang ement +ĠV I +are ttes +Ġaffect ing +Ġperm its +b ecause +Ġu seless +ĠH us +!! !! +Ġdestro ying +Un fortunately +Ġfasc inating +S em +Ġelect oral +Ġtrans parency +ĠCh aos +Ġvolunte er +Ġstatist ical +Ġactiv ated +ro x +We b +H E +ĠHamp shire +is ive +M ap +Ġtr ash +ĠLaw rence +st ick +C r +Ġr ings +EX T +Ġoper ational +op es +D oes +ĠEv ans +Ġwitness ed +P ort +Ġlaunch ing +ec onom +w ear +ĠPart icip +um m +cul es +ĠR AM +ĠT un +Ġass ured +Ġb inary +Ġbet ray +Ġexpl oration +ĠF el +Ġad mission +it ated +S y +Ġav oided +ĠSim ulator +Ġcelebr ated +ĠElect ric +¥ ŀ +Ġcl uster +itzer land +he alth +L ine +ĠN ash +at on +Ġsp are +Ġenter prise +ĠD IS +clud es +Ġfl ights +Ġreg ards +ĠÃ Ĺ +h alf +Ġtr ucks +Ġcontact s +Ġunc ons +ĠCl imate +Ġimm ense +N EW +oc c +ect ive +Ġemb od +Ġpat rol +Ġbes ide +Ġv iable +Ġcre ep +Ġtrig gered +ver ning +Ġcompar able +q l +Ġg aining +ass es +Ġ( ); +ĠG rey +ĠM LS +s ized +Ġpros per +" ? +Ġpoll ing +Ġsh ar +ĠR C +Ġfire arm +or ient +Ġf ence +Ġvari ations +g iving +ĠP i +osp el +Ġpled ge +Ġc ure +Ġsp y +Ġviol ated +Ġr ushed +Ġstro ke +ĠBl og +sel s +ĠE c +,' ' +Ġp ale +ĠColl ins +ter ror +ĠCanad ians +Ġt une +Ġlabor atory +Ġn ons +t arian +Ġdis ability +ĠG am +Ġsing er +al g +ĠSen ior +Ġtrad ed +ĠWar rior +Ġinf ring +ĠFrank lin +Ġstr ain +ĠSwed ish +Ġsevent h +ĠB enn +ĠT ell +Ġsynd rome +Ġwond ered +id en +++ ++ +ig o +Ġpur ple +Ġjournal ism +Ġreb el +Ġf u +bl og +Ġinv ite +ren cies +ĠCont act +Is rael +ĠCont ent +Ġche er +Ġbed room +ĠEngine ering +ĠQue ens +Ġd well +ĠPlay Station +ĠD im +ĠCol on +l r +Ġoper ates +Ġmotiv ation +US A +ast ered +C ore +ĠTr uth +ol o +OS E +ĠMem ory +Ġpred ec +Ġan arch +Ġ19 20 +ĠY am +à ¨ +b id +Ġgr ateful +Ġexc itement +Ġtre asure +Ġlong est +ct ive +Ġdes erves +Ġreserv es +Ġcop s +ĠOtt awa +ĠEgypt ian +ank ed +Ġart if +Ġhypot hesis +: / +Ġpurch asing +Ġlove ly +H P +Ġdiv ide +Ġstrict ly +Ġquestion ing +Ġtaxp ayers +ĠJ oy +Ġroll s +ĠHe avy +Ġp orts +Ġmag netic +Ġinf lamm +Ġbr ush +t ics +â ĪĴ +Ġbott les +pp y +Ġp add +ãĤ ¯ +m illion +Ġdevast ating +Ġcomp iled +Ġmed ication +Ġtw elve +ĠPer ry +Sp ace +im b +y our +Ġle aked +ĠT ar +Ġun ity +Ġinfect ed +Ġtravel ed +ID E +ĠMc Donald +t xt +ĠPr inc +Ġinter ven +ĠTai wan +ĠP ow +Ġbe aring +ĠTh read +Ġz ones +iz ards +un ks +Ch apter +ll or +Ġ · +Ġw ounds +Ġdisc retion +Ġsucceed ed +ik ing +Ġicon ic +C all +Ġscreen ing +ĠM is +ict s +Ġmin isters +Ġsepar ation +Pl ayer +Ġb ip +Ġbel oved +Ġcount ing +ĠE ye +ar ound +ing ing +Ġtable t +Ġoff ence +in ance +h ave +ĠInf o +ĠNin ja +Ġprotect ive +ĠC ass +M ac +ĠQual ity +N orth +Ġ ic +ĠCub a +ĠChron icle +ĠPro perty +Ġfast est +ot os +ĠG erm +OW N +Ġbo om +ĠStan ley +ergus on +Ġcle ver +Ġent ers +m ode +ter ior +ĠS ens +Ġlin ear +AR K +Ġcomp aring +Ġpure ly +Ġsaf er +ĠPot ter +Ġc ups +R T +Ġgl uc +Ġatt ributed +Ġdu pl +ĠP ap +Ġprec ious +Ġp a +iction ary +ĠT ig +ĠTo o +ol utions +st an +Ġrob ots +Ġlob b +Ġstat ute +Ġprevent ion +w estern +16 0 +ĠAct ive +ĠMar ia +h al +N one +ell ar +ĠK B +ĠPart ners +ĠSing le +ĠFollow ing +ang o +ac ious +Ġth ou +Ġk g +Ġinflu ential +ĠFriend s +S ur +ain ted +Ġfor ums +Ġst arter +Ġcitizens hip +ĠE lection +on ge +ot ation +os ph +;; ;; +ut ical +p ur +ere n +Ġaccus ations +bit ious +ab bit +ĠOr d +Post ed +ir k +Ġsens itivity +ic he +ĠAm y +ĠF ab +Ġsum mit +Ġped est +Ġrub ber +Ġagric ultural +Ġcan cel +A E +Ġin aug +Ġcont am +Ġfirm ly +i w +st age +ĠK an +Ġt ier +Ġinv ention +Ġtransl ated +ĠR ules +B ox +Tw itter +ID S +Ġp izza +Ġdeb ug +ĠD rop +v s +Ġh orses +b ig +Ġb oring +Ġh ood +ĠMcC ain +at ched +ĠBro s +Ġsk ip +Ġess ay +st at +ĠLeg ends +Ġam munition +au c +Ġshoot er +Ġun h +Ġsuppl ied +Ġgener ic +ĠS K +ib an +yr ics +Ġ25 5 +Ġclim bing +Form er +Ġfl ip +Ġjump ing +Ġfrust ration +ĠTer ry +Ġneighborhood s +Ġmed ian +be an +Ġbr ains +Follow ing +Ġsh aped +Ġdraw s +Ġal tered +J ack +Ġrecip es +Ġsk illed +we alth +ach i +e lection +Ġbehavi ors +de als +ĠU ntil +F e +Ġdecl aration +mar ks +ĠBet ween +cel ona +Ġres on +Ġbub ble +Am ong +Ġim perial +G S +Ġfemin ist +200 5 +ĠK yle +Ġaccount ing +ĠTe le +ĠT yr +Ġconnect ing +Ġre hab +ĠP red +s im +Ġmeant ime +Ġphys ician +M W +ĠCamp bell +ĠBr andon +Ġcontribut ing +ĠR ule +ĠWe ight +ĠN ap +Ġinter active +Ġv ag +Ġhel met +ĠCom b +f our +Ġsh ipped +Ġcomple ting +ĠP D +PD ATE +Ġspread ing +Ġsc ary +erv ing +ĠG as +Ġfr ank +s chool +Ġrom antic +Ġstab il +R ob +Ġaccur ately +Ġac ute +ĠH ann +Ġsymbol s +Ġcivil ization +ĠA W +Ġlight ning +Ġcons iders +Ġven ue +Ġ × +Ġo ven +ĠS F +h is +Ġn u +ĠLear n +Ġpe oples +Ġst d +Ġsle e +Ġs lic +ĠStat istics +Ġcor ners +ĠB aker +Ġ: ) +ment ation +ol ver +Ġlaugh ing +ĠT odd +ond e +ĠH ills +Ġn uts +ĠW oman +pl ane +Ġl iver +ĠIn side +S orry +Ġagre es +Ġfund ament +ĠF isher +Ġa uction +Ġthread s +gl as +ĠBas ic +ĠN at +Ġlack ing +Ġceleb ration +j u +Ġs illy +E uro +Ġt att +ight y +cont rolled +T est +ĠSing h +Ġr age +Ġrh yth +o ffic +ĠPh antom +Ġhead lines +Ġrespond ing +ĠMor ning +Ġvit amin +Ġboot s +ĠS ite +al in +p i +Ġvir al +ĠU C +D ER +ĠSe x +Ġst ocks +c urrent +Ġch urches +ĠR are +ĠMur phy +Ġden ial +ĠG aming +Ġtou g +Ġn ick +Ġm akers +ĠRon ald +Ġgener ous +ĠD oc +ĠMor ris +Ġtransform ed +ĠN ormal +Ġ10 4 +ĠKick starter +ĠUp on +On line +ĠI RS +Ġw rap +Ġl oving +Ġarri ves +ĠD ue +Ġhe ter +ĠM ade +Ġrent al +Ġbelong s +Ġatt orneys +Ġcro ps +Ġmat ched +ul um +ol ine +10 9 +Ġdis par +Ġbuy ers +ĠCam bridge +Ġeth ics +rou ps +Ġjust ified +Ġmarg inal +Ġrespect ed +win ning +Ġnodd ed +ĠSer ge +ĠForm er +C raft +######## ######## +ĠWar ner +Ġd ash +et e +Ġent ert +ĠE scape +out heast +Ġkn ees +ĠB omb +Ġr ug +P ass +Ġatt itudes +go vernment +ĠPri or +Ġqual ities +Ġnot ification +ĠPh one +l ie +Ġanticip ated +ĠCom bat +ĠBar ry +Ġ198 2 +Us ers +on er +Ġcomput ing +ĠConnect icut +Ġless er +Ġpe ers +ĠC u +Ġtechn ically +Ġsub mission +ĠUn iversal +Ġman ually +our ge +Ġrespond ents +ĠB TC +ĠH ost +Ġf are +ĠB ird +Ġrece ipt +al so +Ġj ack +Ġagric ulture +Ġsk ull +Ġ! = +Ġpass ive +ĠC I +Ġsoc ieties +Ġremind ed +Ġinter ference +B uy +Ġâ ľ +g on +Ġscrut iny +ĠW itch +Ġconduct ing +Ġ ãĥ +Ġexch anges +ĠMit chell +Ġinhab it +Ġtw ist +B D +Ġwhere ver +group on +Ġj okes +ĠBen jamin +ĠR andom +fr ame +ĠL ions +Ġhighlight ed +ĠArk ansas +E nt +Ġp ile +Ġpre lim +g s +mind ed +Ġfel ony +ĠG A +ĠL uck +Ġpract ically +ĠB os +Ġact ress +D am +ĠB ou +Ġvis a +Ġembed ded +Ġhy brid +Ġear liest +Ġsoon er +s ocial +ĠH A +Ġste ep +Ġdis advant +Ġexplo it +ĠE gg +ĠUlt ra +Ġnecess ity +L ocal +ie ge +Ġd ated +Ġmass es +Ġsubsc ription +pl ess +Ġan onym +Ġpresum ably +Bl ue +The ir +asket ball +ĠPhil ip +Ġcom ed +load ed +r ane +Ġref lection +Ch ina +Ġext ends +Ġform ing +Ġund ers +200 1 +Ġgr at +Ġconcent rations +Ġins ulin +Ġsec ular +Ġwh ilst +Ġwin ners +Ad vertisements +Ġdeliber ately +ĠWork ing +Ġs ink +et ics +d ale +Ġmand ate +Ġg ram +Ġvac ation +Ġwarn ings +ri pp +ĠTH AT +Ġcomment ary +Ġint u +Ġa est +Ġreason ing +Ġbreak down +ĠZ ombie +Ġ-- > +ĠPolit ical +c ott +Ġthr ust +Ġtechn ological +Ġdec iding +Ġtraff icking +L ong +W elcome +pr ising +ĠCommun ications +Ġend ors +Ġsw ift +Ġmetab ol +co ins +res a +ĠHT TP +Ġen roll +ĠH appy +us r +int age +Ġ[ " +u ably +ĠM aterial +Ġrepe al +Se pt +k h +ĠMod i +Ġunder neath +ĠI L +sh ore +Ġdiagn osed +ace utical +Ġsh ower +au x +ĠSw itch +ĠStre ngth +Ġj ihad +n ational +Ġtra uma +uss y +on i +Ġcons olid +Ġcal ories +ĠF lynn +ag ged +16 8 +ĠP ink +Ġfulf ill +Ġch ains +Ġnot ably +ĠA V +L ife +ĠCh uck +m us +ĠUr ban +ĠH end +Ġdep osit +ĠS ad +Ġaff air +OR K +ie val +ĠF DA +Ġt rop +ĠOver all +Ġvirt ue +Ġsatisf action +au nd +Ġl un +ĠSw itzerland +ĠOper ation +pro cess +Ġsh ook +Ġcount ies +le ased +ĠCharl otte +1 12 +Ġtrans cript +Ġre dd +p ush +ĠHe y +ĠAn alysis +[ " +Ġaltern atives +ard less +Ġele ph +Ġpre jud +ĠLe af +H aving +ĠH ub +Ġexpress ions +ĠVol ume +Ġshock ing +ĠRed s +Ġread ily +Ġplan ets +ad ata +Ġcollaps ed +ĠMad rid +Ġir rit +i pper +ĠEn c +ĠW ire +Ġbu zz +ĠG P +ash a +Ġaccident ally +ur u +Ġfrust rated +ĠS A +Ġhung ry +ĠH uff +Ġlab els +ant o +ĠE P +Ġbar riers +) | +ĠBer keley +ĠJ ets +Ġp airs +ĠL an +J ames +ĠB ear +Ġhum or +ĠLiber ty +Ġmagn itude +Ġag ing +ĠM ason +Ġfriends hip +umb ling +Ġemer ge +Ġnewsp apers +Ġam bitious +ĠRich ards +atern al +Ġ198 1 +Ġcook ies +Ġsc ulpt +Ġpur suit +L ocation +Ġscript s +p c +Ġarrang ements +Ġd iameter +Ġl oses +am ation +Ġl iqu +ĠJ ake +aret te +Ġunderstand s +ĠZ en +v m +Ġappro ve +Ġw ip +Ġult ra +Ġint end +ĠD I +asc ular +Ġst ays +ĠK or +ĠK l +Ġinvest ing +L a +Ġbelie ving +b ad +m outh +Ġtaxp ayer +ãĥ ĥ +ĠQue bec +Ġl ap +ĠSw iss +d rop +Ġdr ain +ir i +et c +ft en +ĠN ex +Ġst raw +Ġscream ing +Ġcount ed +Ġdam aging +Ġamb assador +cent ury +Ġpro x +Ġarrest s +u v +il ateral +ĠCh arg +Ġpresc ribed +Ġindepend ently +Ġf ierce +ĠB aby +Ġb rave +Ġsu its += > +Ġbas eline +ĠR ate +Ġis lands +Ġ( ( +g reen +ix els +Ġname ly +ĠVill age +th an +am y +V ersion +g mail +ential s +ĠS ud +ĠMel bourne +Ġarri ving +Ġquant um +e ff +rop olitan +T ri +Ġfun eral +ĠI R +ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ +ĠC ob +it ably +Ġt urb +Ġcomb o +Re view +Ġdeploy ment +u ity +ĠB ott +Ġinv isible +Ġrender ing +Ġunl ocked +Ġa qu +ĠVlad imir +Ġp ad +ĠBr ain +ĠLeg acy +dr agon +ĠKurd ish +Ġsound ed +Ġdet ained +ĠD M +g ary +Ġd aughters +Ġdistur bing +uk a +ĠPar ad +Ġt ast +Ġunf ortunate +Ġu l +em in +Ġattend ance +tr l +Ġpar ks +ĠMem orial +ĠAl ice +oth y +gu ard +ĠD ise +ĠSh an +ĠFor um +R ich +Ġshif ted +ue z +Ġl ighter +ĠMag n +Ġc od +S ch +ham mad +P ub +3 50 +ĠP okemon +Ġprot otype +Ġun re +B ase +ĠStud ents +ĠRep ly +ĠCommun ist +Ġg au +ĠTy ler +I Z +Ġparticip ated +Ġsup rem +ĠDet ails +Ġvessel s +ro d +Ġt ribe +ke ep +Ġassum ptions +Ġp ound +Ġcr ude +ĠAv ailable +Ġswim ming +Ġin clusion +Ġadv ances +c ulation +Ġconserv ation +Ġover d +ĠBuff alo +Art icle +ed ge +Ġaw a +ĠMad ison +Ġsid ew +Ġcat ast +ĠK rist +uc le +ĠHigh way +ĠTer ror +Ġactiv ation +Ġuncons cious +ĠSat an +ĠSus an +ill ery +Ġarr anged +i op +Ġrum ors +ur ring +th ink +ĠKe ith +ĠK ind +Ġavoid ing +by n +n ut +ĠSpe aker +r us +n ames +Ġgu ilt +ĠOlymp ics +Ġsa il +ĠM es +lev ant +ĠColumb us +a ft +C ity +S outh +ĠHar vey +ĠP un +S everal +Ġment ally +Ġimp ress +m ount +ĠUb untu +âĢĶâĢĶâĢĶâĢĶ âĢĶâĢĶâĢĶâĢĶ +ĠSuper man +ĠMP s +Ġintent ions +ĠR acing +Ġlike lihood +Ġ2 40 +T otal +Ġto ys +ĠW atson +Ġur ge +L ear +ĠP aper +Ġoccur ring +ĠB eng +ĠC ert +Ġst ones +T im +ĠTw in +z b +ĠD ynam +Ġpolit ician +k ens +ĠEnter prise +UT ERS +Ġab ol +Ġref resh +Ġarbit rary +pe ction +Ġtrou bles +Ġ} ); +t v +Ġpil ots +Ġdist ribute +Ġaud it +Ġp ause +orig inal +Ġr ivals + £ +F ig +T L +ab il +ry ing +L in +ion ed +l on +Ġf ancy +Ġcr ashed +Ġt ract +Ġshe d +Ġcons ume +B ased +down load +in it +Ġvolt age +Int rodu +Ġcondem ned +ĠFin ance +res pect +Ġex cluded +Ġestablish ing +her ic +Ġher itage +Ġspect acular +Ġun st +ĠSnow den +ĠL ane +S an +Ġprotect ions +st ruction +inc inn +Ġmac ro +C ustom +ios ity +Ġes p +Ġfunction ing +Ġm ush +Ġp uzzle +Ġeth ical +M al +Ġgo verning +ĠF erguson +Ġrest ored +Ġst ressed +ĠCoun ter +ĠK as +cl ip +AN S +Ġse iz +U K +by ss +old own +ap i +Ġperman ently +oun ters +W est +Th rough +L ight +at oes +Ġne at +Ġc ord +ure r +Ġsevere ly +ĠA ven +Ġinter rog +Ġtri ple +G iven +N umber +Ġar ise +Ġs her +pl ant +Ġfl ower +ĠC ou +Ġat e +Ġnew er +b ul +Ġmean while +ĠL air +Ġadjust ment +ĠCop yright +Ġd ivers +i ological +Ġgam ers +o at +Ġhistor ically +Ġanal og +Ġlong time +Ġpres cription +ĠM ist +ĠHy per +ĠM aine +ĠDe ity +Ġmulti pl +ĠRe incarn +ĠH yd +ĠP ic +S il +r ants +ĠC ris +. ; +( { +epend ence +Ġrec y +ate ur +Ġqu ad +Ġgl ob +Ġcon ced +te am +Ġcapital ist +ĠL ot +Ġroy al +ĠCy ber +Ġblack s +met ic +ri v +ĠD anny +Ġsp o +ĠR O +Ġanim ated +rypt ed +ĠDep uty +Ġrend ered +F E +Ġstre ak +Ġcloud s +ĠDou g +~~~~ ~~~~ +Ġdisc our +ĠVe h +Ġpsych ology +ĠJ ourney +Ġcry stal +ĠFro st +Ġsuspic ion +Ġrel ate +or us +ĠC rypt +ĠN VIDIA +com ed +ut ing +incinn ati +Ġvulner ability +ost ic +Ġisol ation +Ġcool ing +ĠCoal ition +Ġ1 19 +F our +ĠDe al +Ġâ ī +se mble +ram ent +ĠBar celona +Ġ10 2 +Ġcoc aine +ocaly pse +F eb +ogen ic +Ġmut ation +Ġcrypt oc +ĠK el +ĠG it +a is +Ġs isters +AN K +Ġactiv ate +T er +Ġd read +yl on +Ġprop ri +A ust +ĠDef ault +Ġout door +Ġshe er +ce ive +Ġg ently +Ð ¾ +Pro gram +Ġâ ĨĴ +Ġve gan +ĠCr us +Ġrespons ibilities +ĠH R +OL D +Ġprev ents +Ġst iff +ĠW ere +Ġathlet ic +ĠSc ore +Ġ) : +Ġcolumn s +ĠL oc +av ailable +ĠF ram +ĠS essions +Ġcompan ion +Ġpack s +14 0 +ĠKn ights +Ġf art +Ġstream s +Ġsh ore +Ġapp eals +ĠPer formance +h aul +ĠSt ra +ĠN ag +10 3 +ĠTrans portation +B B +E v +z an +P ublic +Ġtw in +uls ion +M ult +Ġelect ro +Ġstat ue +ation ally +ĠN ort +Ġins pection +/ * +ig ue +Ġcomp assion +ĠT ales +ĠSte in +ĠSc reen +ĠB ug +ĠL ion +g irl +Ġwithdraw al +Ġobject ives +Ġblood y +Ġprelim inary +Ġj acket +Ġdim ensions +ĠC ool +ĠOcc up +Ġw reck +Ġdoub led +ank ing +Ġ19 75 +Ġglass es +ĠW ang +pro v +P ath +connect ed +ĠMult i +ĠNor way +agon ist +Ġfe ared +Ġtouch ing +Ġarg uably +¯¯¯¯ ¯¯¯¯ +ĠNC AA +che m +Ġsp at +ĠW WE +ĠC el +ig ger +Ġattack er +ĠJo in +ob ject +ett a +Ġelim inated +d et +Ġdest ruct +ĠLuc as +ct uary +18 0 +ĠBr ady +ĠBl ues +B ay +au kee +Ġtim eline +Ġdeleg ates +w ritten +uff icient +Ġsh apes +Cop yright +ou ble +serv ice +Ġp ione +Ġcolleg es +Ġrow s +Ġsp ite +Ġassess ed +3 60 +Ġle ase +Ġconfident ial +ck er +ĠMan ning +ĠV oice +Ġse aled +Ġcalcul ate +N O +ĠAss istant +Ġteen ager +ul ent +ather ine +Ġm ock +Ġd iamond +Ġf est +Ġsw itched +Ġres ume +ĠPu erto +Ġl anes +ir ation +ĠSimilar ly +Ġro d +ĠS el +ĠPal ace +ĠLim ited +e ous +Ġvar iant +Ġw ard +Ġ) ) +Sh ow +OO K +A lex +ĠN ep +br is +ĠWik ipedia +Ġexcept ional +Ġman ages +ĠD raw +Ag ain +Ġco pper +ut t +Ġex ports +Ġport folio +Ġelev ated +R ated +ĠOther wise +ĠT act +ĠShe l +ĠT X +" âĢĶ +Ġres ur +ĠW a +ven ant +Ġmon etary +pe ople +E mail +Ġfif ty +ĠS weet +ĠMalays ia +Ġconf using +ĠR io +ud a +uten ant +" ); +Ġpra ised +Ġvol umes +t urn +Ġm ature +Ġnon profit +Ġpassion ate +ĠPriv ate +Ġ10 3 +Ġdesc end +ç ¥ŀ +uff y +head ed +Whe ther +ri en +ze ch +be it +Ġch rom +ĠMc M +Ġd ancing +Ġe leg +ĠNot iced +11 5 +Ġadvoc acy +ENT S +amb ling +ĠMin or +ĠF inn +Ġprior ities +Ġthere of +ĠSt age +ĠRog ers +Ġsubst itute +ĠJ ar +ĠJeff erson +Ġlight ly +10 2 +ĠL isa +u its +ys ical +Ġshif ts +Ġd rones +Ġwork place +Ġres id +ens ed +ah n +Ġpref erences +ser ver +Ġdeb ates +d oc +ĠGod s +Ġhelicop ter +Ġhon our +Ġconsider ably +ed ed +ĠF emale +ĠAn ne +Ġre un +ĠF ace +ĠHall ow +ĠBud get +Ġcondem n +Ġt ender +Pro f +ocr atic +ĠTurn er +ĠAg ric +Ġ19 76 +Ġa pt +d isc +ĠF ighter +ĠA ur +Ġgar bage +in put +ĠK arl +ĠOl iver +ĠL anguage +k n +N on +ĠCl ar +Ġtrad itions +Ġad vertisement +ĠS or +Ġarch ive +Ġvill ages +7 50 +Ġimplement ing +w aukee +Ġdiet ary +Ġswitch ing +Rep ublic +Ġvel ocity +Ġc it +ĠA wards +Ġfin ancing +Ġlast ed +) ] +Ġrem inder +P erson +Ġprec ision +Ġdesign ers +ĠF ried +ĠB order +Ġtr agic +Ġw ield +Ġiniti atives +ĠT ank +w er +Ġjo ins +R o +in ery +Ġar row +Ġgener ating +found er +Ġsear ches +Ġrandom ly +A ccess +Ġb atch +Ġp osed +l at +Ġpursu ing +as a +Ġtest ified +form ing +ĠSh ar +w iki +ĠE ither +S ometimes +Ġsen ators +ĠJohn ny +ĠTal iban +ĠG PS +":" / +ãģ® å +Ġanaly zed +ĠRub io +ĠMove ment +op ard +ii i +St and +f ight +Ġign oring +i ang +ĠG N +so ever +ĠST AT +Ġref using +Ġswe at +Ġb ay +P ORT +ir med +ak y +Ġdis pro +Ġlabel ed +Ġ10 8 +H ello +Ġple asant +ab a +Ġtri umph +Ġab oard +Ġinc om +ĠC row +le tt +Ġfol k +Ġch ase +` ` +ĠBr us +Ġte ens +c ue +Ġter rain +h yd +il ight +OR Y +Su pport +ew s +ll i +rain ts +ĠC and +Ġab used +ach ment +l arg +B as +ĠC ancer +Ġ19 78 +Ġsupp orter +ac cess +ĠTer min +ĠT ampa +ĠAN Y +Ġnew est +ĠCrim inal +ed u +Ġ19 30 +Ġadm its +Ġend e +Ġfail ures +ur ate +ful ness +cy cl +ĠSub ject +Ġinf inite +th ree +W A +p it +ĠInst all +R ad +ili ation +G M +Ġcontin ent +Ġaccommod ate +ĠCl ay +Ġp up +ĠF unction +Ġham mer +ĠAlbert a +Ġrev ised +Ġminor ities +Ġmeasure ment +Con nell +Ġdis able +ĠM ix +In cre +Ġfor k +ĠR osen +Ġimpl ies +umb lr +AN G +Ġprote ins +Ġagg ression +Ġfacilit ate +S N +Ġilleg ally +u er +Ġacad em +Ġp uzz +ĠSh ift +p ay +oll o +Ġaud iences +B uild +Ġno ble +Ġsynt ax +â ĺħ +Ġbe am +ĠB ed +ĠA ld +Ġorig ins +v ideo +Ġ19 77 +ĠAss ault +Ġgar age +Te am +Ġver dict +Ġd war +ĠVirt ual +e vent +Ke ep +Ġsent iment +Ġwild life +sh irt +Ġb urg +Ġrecommend ation +rep resent +Ġgall ery +own ers +Ġsch olar +Ġconven ience +ĠSw ift +Ġconv inc +C ap +Ġwar fare +ĠVis ual +Ġconst itute +Ġab ort +ĠWe ather +ĠLook ing +ĠH em +Ġmart ial +Ġinc oming +et ition +Ġtoler ance +ĠCre ated +Ġfl ows +ĠE lder +Ġsoul s +Ġf oul +ĠP ain +ĠC AN +Ġ2 20 +b c +he nd +Ġgen ius +R eal +ĠW r +omet er +p ad +Ġlim iting +ĠS i +ĠL ore +ĠAd ventures +Ġvar ied +D isc +f in +ĠPerson al +Ch ris +Ġinv ented +Ġd ive +ĠR ise +Ġo z +ĠCom ics +Ġexp ose +ĠRe b +let ters +s ite +im ated +Ġh acking +Ġeduc ated +ĠNob ody +Ġdep ri +Ġincent ive +ãĤ · +Ġovers ight +Ġtrib es +ĠBelg ium +Ġlicens ing +our t +Produ ct +ah l +ĠG em +Ġspecial ist +Ġc ra +ann ers +ĠCor byn +Ġ19 73 +RE AD +Ġsum mar +Ġover look +ĠApp lication +Ġin appropriate +Ġdownload ed +Q ue +ĠB ears +Ġth umb +ĠChar acter +ĠReincarn ated +ĠS id +Ġdemonstr ates +s ky +ĠBloom berg +ĠAr ray +ĠRes ults +ĠFour th +ĠED T +ĠO scar +c end +Ġ10 6 +ĠN ULL +ĠH ERE +m atch +ĠBr un +Ġgluc ose +ie g +eg u +Ġcert ified +Ġrel ie +Ġhuman itarian +Ġpr ayers +K ing +Ġn an +h ou +10 8 +ul u +Ġrenew able +Ġdistingu ish +Ġd ense +ĠV ent +ĠPack age +ĠB oss +Ġedit ors +Ġm igr +T ra +ĠPet ers +ĠAr ctic +200 4 +ĠC ape +Ġloc ally +Ġlast ing +Ġhand y +. ). +P an +ĠR ES +Ind ex +Ġt ensions +Ġformer ly +Ġide ological +Ġsens ors +Ġdeal ers +Ġdef ines +S k +Ġproceed s +Ġpro xy +az ines +ĠB ash +ĠP ad +ĠC raft +eal ous +Ġshe ets +omet ry +J une +cl ock +T T +ĠThe atre +ĠB uzz +Ġch apters +Ġmill enn +Ġd ough +ĠCongress ional +Ġimag ined +av ior +Ġclin ic +Ġ19 45 +Ġhold er +ro ot +oles ter +Ġrest art +B N +ĠHam as +ĠJ ob +Ġor b +Ġr am +Ġdiscl ose +Ġtransl ate +Ġimm igrant +Ġannoy ing +Ġtreat y +an ium +ĠTe a +ĠLeg ion +Ġcrowd s +ĠB ec +ĠA er +oh yd +B ro +Look ing +Ġl bs +Ġagg ress +Ġse am +Ġinter cept +ĠM I +mer cial +act iv +ĠC it +Ġdim ension +Ġconsist ency +Ġr ushing +ĠDou glas +Ġtr im +Inst all +ick er +Ġsh y +10 6 +Ġment ions +pe lled +ĠT ak +c ost +Ġclass room +Ġfort une +dri ven +Ġun le +ĠWhe el +Ġinvest or +ĠM asters +k it +Ġassoci ations +ĠEv olution +op ing +us cript +Ġprov incial +ĠWal ter +av i +S O +Ġun limited +Eng lish +ĠC ards +ĠEb ola +ne red +Ġreven ge +Ġout right +um per +Ġf itting +ĠSol id +Ġform ally +Ġproblem atic +Ġhaz ard +Ġenc ryption +Ġstraight forward +ĠA K +Ġp se +ĠOr b +ĠCh amber +ĠM ak +Cont ents +Ġloyal ty +Ġl yrics +ĠSy m +Ġwel comed +Ġcook ed +Ġmon op +Ġn urse +Ġmis leading +Ġe ternal +Ġshif ting +Ġ+ = +V is +Ġinst itutional +ill ary +Ġp ant +VER T +ĠA CC +ĠEn h +Ġinc on +ĠRE UTERS +Ġdon ated +â̦â̦ â̦â̦ +In tern +Ġexhib it +Ġt ire +ĠR ic +ĠCh ampion +ĠMu hammad +N ING +ĠSoc cer +Ġmob ility +Ġvary ing +ĠM ovie +Ġl ord +o ak +F ield +Ġve ctor +us ions +Ġsc rap +Ġen abling +m ake +T or +. * +| | +ĠWe bsite +ĠN PC +Ġsocial ist +ĠBill y +ĠAdd itional +Ġc argo +Ġfar ms +ĠSo on +ĠPri ze +Ġmid night +Ġ9 00 +se en +ĠSp ot +Ġshe ep +Ġspons ored +ĠH i +ĠJ ump +Ġ19 67 +Micro soft +ĠAg ent +Ġch arts +d ir +Ġadj acent +Ġtr icks +Ġman ga +Ġex agger +/ > +foot ball +ĠF CC +G C +ĠT ier +and ra +OU ND +% ), +Ġfru its +V C +ĠA A +R ober +Ġmid st +â Ĺ +ank a +Ġlegisl ature +ĠNe il +Ġtour ists +" " +ĠWar ning +ĠNever theless +ĠOffic ial +ĠWh atever +Ġm old +Ġdraft ed +Ġsubst ances +Ġbre ed +Ġt ags +ĠT ask +Ġver b +Ġmanufact ured +com ments +ĠPol ish +Pro v +Ġdetermin es +Ob ama +k ers +Ġutter ly +Ġse ct +sc he +ĠG ates +ĠCh ap +Ġal uminum +Ġz ombie +ĠT ouch +ĠU P +Ġsatisf y +Ġpred omin +asc ript +Ġelabor ate +Ġ19 68 +Ġmeas uring +ĠV ari +any ahu +Ġs ir +ul ates +id ges +ick ets +ĠSp encer +T M +oub ted +Ġpre y +Ġinstall ing +ĠC ab +re ed +re ated +Su pp +Ġwr ist +ĠK erry +10 7 +ĠK le +ĠR achel +Ġc otton +ĠA RE +ĠE le +Cont rol +Ġload s +ĠD od +an as +b one +Ġclass ical +ĠReg ional +ĠInt eg +V M +Ġdes ires +Ġaut ism +support ed +ĠM essage +Ġcomp act +writ er +Ġ10 9 +ĠHur ricane +c ision +Ġcy cles +Ġdr ill +Ġcolle ague +Ġm aker +G erman +Ġmist aken +S un +ĠG ay +Ġwhat soever +Ġsell s +ĠA irl +l iv +ĠO ption +Ġsol ved +Ġse ctors +Ġhorizont al +Ġequ ation +ĠSk ill +ĠB io +g ement +ĠSn ap +ĠLeg al +Ġtradem ark +Ġmake up +Ġassemb led +Ġsa ves +ĠHallow een +ĠVer mont +ĠFR OM +Ġfar ming +ĠP odcast +accept able +ĠHig her +Ġas leep +ull ivan +Ġrefere n +ĠLe v +Ġbul lets +ok o +H C +Ġst airs +Ġmain tains +ĠL ower +ĠV i +Ġmar ine +Ġac res +Ġcoordin ator +ĠJ oh +Ġcounterpart s +ĠBrother s +Ġind ict +b ra +Ġch unk +Ġc ents +H ome +ĠMon th +Ġaccording ly +if les +ĠGerm ans +ĠSy n +H ub +Ġey eb +âĶĢâĶĢ âĶĢâĶĢ +Ġr anges +ĠHoll and +ĠRob ot +f c +M ike +Ġpl asma +Ġsw ap +Ġath lete +ĠR ams +,' " +Ġinfect ions +Ġcor rid +Ġv ib +Ġpat ches +Ġtradition ally +Ġrevel ation +Ġswe ep +Ġgl ance +Ġin ex +200 3 +ĠR aw +work ing +os ures +ĠD at +ĠLyn ch +Ġle verage +ĠRe id +Ġcorrel ation +ian ces +av ascript +Ġrep ository +ret ty +Ġ19 72 +24 0 +Ġo un +p ol +ĠRe ed +Ġtact ical +is ite +App le +ĠQu inn +Ġrap ed +ill o +Euro pe +Ġalgorith ms +ĠRod rig +i u +Ġill um +Ġf ame +Ġintrodu cing +Ġdel ays +ĠRaid ers +Ġwh istle +Ġnovel s +ĠRe ally +Ġder iv +Ġpublic ations +ĠNe ither +ĠCom merce +Ġa ston +l anguage +Not es +ĠR oth +ĠF ear +Ġm ate +Ġpar ade +ĠQ B +Ġman eu +ĠC incinnati +m itting +Ġwa ist +ĠR ew +Ġdisc ont +Ð ° +Ġst aring +Ġal ias +Ġsec urities +Ġtoile t +ĠJ edi +Ġun law +v ised +//// //// +] ( +ĠWe iss +Ġpre st +ĠComp an +Ġmem o +ĠGr ace +J uly +ĠEl ite +cent er +ĠSt ay +Ġgal axy +Ġto oth +ĠS ettings +Ġsubject ed +ãĤ ¦ +Ġline back +Ġretail ers +ĠW ant +Ġd angers +A ir +Ġvolunt ary +ew ay +Ġinterpret ed +ot ine +à § +Ġp el +Serv ice +ĠEvent ually +Ġcare ers +Ġthreat en +Ġmem or +ĠBrad ley +anc ies +s n +ĠUn known +N ational +Ġsh adows +ail and +ĠD ash +Every one +izz ard +M arch += ( +Ġpull s +Ġstr anger +Ġback wards +ĠBern ard +imens ional +Ġch ron +Ġtheoret ical +k top +Ġw are +ĠInvest ig +ĠIn iti +ĠOper ations +o ven +oc ide +* / +Ġfl ames +ĠC ash +sh it +Ġc ab +ĠAn aly +ĠSe ah +Ġdefin ing +Ġorder ing +Ġimm un +Ġpers istent +AC H +Russ ian +m ans +Ġh ind +Ġphot ography + © +Ġh ug +Ġ10 7 +ĠH ence +i ots +ude au +Ġsubsid ies +Ġroutine ly +ĠDev ice +it ic +Ġdisg ust +land er +Ġ19 40 +Ġassign ment +ĠB esides +w ick +ĠD ust +us c +struct ed +11 1 +de velop +Ġf ond +Ġinter section +Ġdign ity +Ġcommission er +With out +re ach +Ġcart oon +Ġsc ales +ãĥ Ń +F IG +Ġsurve ys +ĠIndones ia +Ġart work +Ġun ch +Ġcy cling +un ct +au er +or ate +ĠOb viously +Ġcharacter ized +fe ld +Ġaff irm +Ġinn ings +Ġ é +Ġal iens +Ġcl oth +et ooth +ĠC ertain + § +Ġdig est +k now +ĠX L +Ġpredict ions +Ġd in +W AR +Ġafter math +Ex ample +ĠSu ccess +ĠTh r +IG N +Ġmin er +B us +Ġcl arity +heim er +ĠO UT +ĠS end +ĠCirc le +ĠD iet +Ġpron ounced +Ġcreat ors +Ġearthqu ake +atter y +ge ons +Ġo d +Ġlay ing +or p +U lt +pro ject +Ġunder min +Ġsequ el +S am +ĠDark ness +Ġre ception +b ull +Y S +ĠV ir +Ġsequ ences +ĠCo in +Ġout fit +ĠW ait +1 19 +Ġdel ivers +.... .. +Ġbl own +ĠE sc +ĠM ath +per m +ĠU l +Ġgl im +Ġfac ial +Ġgreen house +Ġto kens +/ - +ĠAnn ual +ĠON E +Ġteen age +ĠPhys ical +ĠL ang +ĠC elt +Ġsu ed +ivid ually +Ġpat ience +ch air +reg ular +Ġa ug +in v +ex cept +ĠL il +Ġn est +f d +s um +ĠCh ase +Russ ia +ĠJenn ifer +Ġoff season +Over all +F ore +Ġr iot +A ud +form er +Ġdefend ers +ĠC T +iot ic +rib ly +Ġautom ated +Ġpen is +Ġins ist +Ġdi agram +ĠS QL +ĠG arc +Ġw itch +cl ient +ier ra +am bers +Ġrec ount +f ar +V ery +oster one +Ġappreci ated +ĠPer fect +S ection +Ġd oses +oca ust +Ġcost ly +Ġg rams +ĠSh i +Ġwrest ling +Ġ19 71 +Ġtro phy +Ġn erve +ĠK az +ĠExper ience +Ġpled ged +Ġplay back +Ġcreat ivity +by e +Ġattack ers +Ġhold ers +ĠCo ach +ĠPh D +Ġtransf ers +Ġcol ored +ĠH indu +Ġd rown +Ġlist ened +ĠW A +ias m +P O +Ġappeal ing +Ġdiscl osed +ĠCh icken +ag ging +Ġple aded +Ġnav igation +ĠReturn s +Ġ[ [ +R OR +E A +Ġphotograp her +ĠR ider +ipp ers +Ġsl ice +Ġe rect +Ġhe d +iss ance +ĠVik ings +ur ious +Ġapp et +oubted ly +Ch ild +Ġauthent ic +o os +ĠM aking +Ġannoun cing +Ġb od +Ġmet er +ĠN ine +ĠR ogue +Ġwork force +Ġrenew ed +Ġorganis ations +ac s +P LE +Sh ort +Ġcomp ounds +ĠVis it +Ġen velop +ear th +Ġsupport ive +gg le +ĠBrus sels +ĠGu ild +Cre ate +RE L +Ġaver aged +Ġ19 69 +ri ages +Ġlength y +Ġforg ot +O kay +ĠE rd +Ġdeal er +Ġrec ession +D D +Ġdesper ately +Ġhun ger +Ġst icks +Ġm ph +ĠF aith +Ġintention ally +Ġdem ol +ue ller +ĠS ale +Ġde bris +s pring +Ġle ap +>> >> +Ġcontain ers +se lling +rane an +atter ing +Ġcomment ed +ĠC M +on ut +Ġwood s +es pecially +Ġorgan ize +iv ic +ĠWood s +ang a +s qu +Ġm aj +am on +Ġax is +Ġ19 74 +ĠDen mark +Ġwar rior +ĠP and +Ġout lined +ĠB O +ins ula +z illa +eb ook +Ġd are +Ġsear ched +Ġnav igate +S n +writ ing +Ġun ited +J apan +ĠHe brew +Ġfl ame +Ġrel ies +Ġcatch ing +ĠSh o +Ġimprison ment +Ġp ockets +Ġclos ure +ĠF am +t im +ade qu +Act ivity +Ġrecru iting +ĠW ATCH +ĠArgent ina +d est +Ġapolog ize +or o +Ġlack s +Ġtun ed +ĠGriff in +Ġinf amous +Ġcelebr ity +ss on +Ġ ---------------------------------------------------------------- +ĠIs is +ĠDis play +Ġcred ibility +Ġeconom ies +Ġhead line +ĠCow boys +Ġind ef +Ġl ately +Ġincent ives +but ton +ĠM ob +A ut +Ġres igned +ĠO m +c amp +Ġprof iles +Ġsche mes +olph ins +ay ed +Cl inton +en h +ĠY ahoo +Ġab st +Ġan k +su its +Ġw ished +ĠMar co +udd en +Ġsp here +ĠB ishop +Ġincorpor ated +ĠPl ant +11 4 +Ġh ated +p ic +Ġdon ate +Ġl ined +Ġbe ans +Ġsteal ing +Ġcost ume +Ġsher iff +Ġfor ty +Ġint act +Ġadapt ed +Ġtrave lling +b art +Ġnice ly +Ġdri ed +Ġsc al +os ity +NOT E +ĠB h +ĠBron cos +ĠI gn +Ġint imate +Ġchem istry +Ġopt imal +D eb +ĠGener ation +Ġ] , +ich i +ĠW ii +ĠYOU R +vent ions +W rite +Ġpop ul +un ning +ĠW or +V ol +Ġqu een +head s +K K +Ġanaly ze +op ic +ear chers +Ġd ot +leg raph +ast ically +Ġupgr ades +Ġca res +Ġext ending +Ġfree ze +Ġin ability +Ġorg ans +Ġpret end +Ġout let +11 3 +ol an +ĠM all +ul ing +t alk +Ġexpress ing +ĠAl ways +ĠBe gin +f iles +Ġlic enses +% % +ĠM itt +Ġfil ters +ĠMil waukee +G N +Ġunf old +M o +Ġnut rition +pp o +B o +Ġfound ing +Ġunder mine +Ġeas iest +ĠC zech +ĠM ack +Ġsexual ity +ĠN ixon +W in +ĠAr n +ĠK in +ãĤ £ +ic er +Ġfort un +Ġsurf aces +agh d +Ġcar riers +ĠP ART +ĠT ib +Ġinter val +Ġfrust rating +ĠSh ip +ĠAr med +ff e +Ġbo ats +ĠAb raham +in is +Ġsu ited +th read +i ov +ab ul +ĠVenezuel a +Ġto m +su per +Ġcast le +alth ough +iox ide +ec hes +Ġevolution ary +Ġnegoti ate +Ġconfront ed +Rem ember +Ġ17 0 +S uch +Ġ9 11 +m ult +ĠA byss +ur ry +ke es +spe c +ĠBarb ara +Ġbelong ing +Ġvill ain +ist ani +Ġaccount able +Ġport ions +ĠDe cl +U r +ĠK ate +g re +Ġmag azines +UC K +Ġregul ate +om on +ĠAl most +Ġover view +Ġsc ram +Ġl oot +ĠF itz +Ġcharacter istic +ĠSn ake +s ay +ĠR ico +Ġtra it +ĠJo ined +au cus +Ġadapt ation +ĠAirl ines +Ġarch ae +ĠI de +Ġb ikes +Ġliter ary +Ġinflu ences +ĠUs ed +C reat +Ġple a +ĠDef ence +ĠAss ass +Ġp ond +UL T +) " +Ġeval uated +Ġob taining +Ġdem ographic +Ġvig il +ale y +Ġsp ouse +ĠSeah awks +resp ons +ĠB elt +um atic +Ġr ises +run ner +ĠMichel le +Ġpot ent +r ace +ĠP AC +F ind +olester ol +IS S +ĠIntrodu ced +ress es +ign ment +O s +ĠT u +ĠDe x +ic ides +Ġspark ed +ĠLaur a +ĠBry ant +Ġsm iling +ĠNex us +Ġdefend ants +ĠCat al +Ġdis hes +sh aped +Ġpro long +m t +( $ +ãĢ Ĥ +Ġcalcul ations +ĠS ame +Ġp iv +H H +Ġcance lled +Ġgr in +Ġterrit ories +ist ically +C ome +ĠP arent +Pro ject +Ġneg lig +ĠPriv acy +Ġam mo +LE CT +olute ly +ĠEp ic +Ġmis under +w al +Apr il +m os +path y +ĠC arson +Ġalbum s +ĠE asy +Ġpist ol +< < +Ġ\ ( +t arget +hel p +Ġinter pre +cons cious +ĠH ousing +ĠJ oint +12 7 +Ġbe ers +s cience +ĠFire fox +effect ive +ĠC abin +ĠO kay +ĠApp lic +Ġspace craft +ĠS R +ve t +ĠStr ange +S B +Ġcor ps +iber al +e fficient +Ġpreval ence +Ġeconom ists +11 8 +Th read +ord able +OD E +ĠC ant +=- =- +if iable +ĠA round +Ġpo le +Ġwilling ness +CL A +ĠK id +Ġcomple ment +Ġsc attered +Ġin mates +Ġble eding +e very +Ġque ue +ĠTr ain +Ġh ij +Ġme lee +ple ted +Ġdig it +Ġg em +offic ial +Ġlif ting +Ð µ +Re qu +it utes +Ġpack aging +ĠWork ers +h ran +ĠLeban on +ol esc +Ġpun ished +ĠJ uan +Ġj am +ĠD ocument +Ġm apping +ic ates +Ġinev itably +Ġvan illa +ĠT on +Ġwat ches +Ġle agues +Ġiniti ated +deg ree +port ion +Ġrec alls +Ġru in +Ġm elt +I AN +Ġhe m +Ex p +Ġb aking +ĠCol omb +at ible +Ġrad ius +pl ug +ĠI F +et ically +Ġf ict +H ER +ĠT ap +atin um +Ġin k +Ġco h +ĠW izard +b oth +te x +Ġsp ends +ĠCurrent ly +ĠP it +Ġneur ons +ig nt +Ġr all +Ġbus es +b uilding +Ġadjust ments +Ġc ried +ibl ical +att ed +ĠZ ion +ĠM atter +Ġmed itation +ĠD ennis +Ġour s +ĠT ab +Ġrank ings +ort al +Ġad vers +Ġsur render +ĠG ob +ci um +om as +im eter +Ġmulti player +Ġhero in +Ġoptim istic +Ġindic ator +ĠBr ig +Ġgro cery +Ġapplic ant +ĠRock et +v id +Ex ception +p ent +Ġorgan izing +Ġenc ounters +ĠT OD +Ġjew el +S ave +ĠChrist ie +Ġhe ating +Ġl azy +ĠC P +Ġcous in +Con fig +Ġreg ener +Ġne arest +Ġachie ving +EN S +th row +ĠRich mond +ant le +200 2 +Ġan ten +b ird +13 3 +Ġn arc +r aint +un ny +ĠHispan ic +ourn aments +Ġprop he +ĠTh ailand +ĠT i +Ġinject ion +Ġinher it +rav is +Ġmed i +Ġwho ever +ĠDE BUG +G P +ĠH ud +C ard +p rom +Ġp or +Ġover head +L aw +Ġviol ate +Ġhe ated +Ġdescript ions +Ġachieve ments +ĠBe er +ĠQu ant +W as +Ġe ighth +ĠI v +Ġspecial ized +U PDATE +ĠD elta +P op +J ul +ĠAs k +oph y +Ġnews letters +ĠT ool +Ġg ard +ĠConf eder +ĠGM T +ĠAb bott +Ġimm unity +ĠV M +Is lam +Ġimpl icit +w d +Ġ19 44 +rav ity +omet ric +Ġsurv iving +ur ai +ĠPr ison +Ġr ust +ĠSk etch +Ġbe es +ĠThe ory +Ġmer it +T ex +ch at +Ġm im +Ġpast e +ĠK och +Ġignor ance +ĠSh oot +Ġbas ement +Un ited +ĠAd vis +he ight +Ġf oster +Ġdet ain +in formation +Ġne ural +' ; +Ġprov es +all ery +Ġinv itation +um bers +Ġc attle +Ġbicy cle +z i +Ġconsult ant +Ġap ology +ĠT iger +Ġ12 3 +99 9 +Ġind ividually +r t +ig ion +ĠBrazil ian +Ġdist urb +Ġentreprene urs +Ġfore sts +cer pt +pl ates +p her +clip se +Ġtw itter +Ġac ids +ograph ical +h um +ĠB ald +if ully +Ġcomp iler +ĠD A +Ġdon or +as i +Ġtrib al +l ash +ĠCon fig +Ġapplic ants +Ġsal aries +13 5 +Put in +ĠF ocus +ir s +Ġmisc onduct +ĠH az +Ġeat en +M obile +Mus lim +ĠMar cus +v iol +Ġfavor able +Ġst ub +ad in +ĠH ob +Ġfaith ful +Ġelectron ics +Ġvac uum +w ait +back ed +econom ic +d ist +Ġten ure +Ġsince re +ĠT ogether +ĠW ave +Ġprog ression +Ġden ying +Ġdist ress +br aska +th ird +Ġmix ing +Ġcolon ial +Ġpriv ately +Ġun rest +atern ity +Ġprem ises +ant i +greg ation +Ġlic ence +ĠH ind +ĠSam uel +Ġconvinc ing +ĠA ce +ĠR ust +ĠNet anyahu +Ġhand les +ĠP atch +orient ed +ah o +ĠG onz +Ġhack ers +claim er +Ġcustom s +ĠGr an +f ighters +Ġl uc +Ġman uscript +aren thood +Ġdev il +Ġwar riors +Ġoff enders +Will iam +Ġhol idays +Ġnight mare +Ġle ver +iff erent +St at +Ġexhib ition +put ed +ĠP ure +Ġal pha +Ġenthus iasm +ĠRepresent atives +E AR +ĠT yp +Ġwhe at +ĠAl f +Ġcor rection +Ġev angel +AT T +M iss +Ġs oup +Ġimpl ied +par am +Ġsex y +ĠL ux +Ġrep ublic +p atch +ab lish +Ġic ons +Ġfather s +ĠG ET +ĠCar ib +Ġregul ated +ĠCo hen +ĠBob by +Ġn er +Ġb ent +vent ory +ĠAl ong +ĠE ST +ĠWall ace +Ġmurd ers +r ise +ke ll +ĠCommon wealth +Ġn asty +et a +ĠM IT +Ġadminist ered +Ġgenuine ly +Ed itor +n ick +Ġhyd ro +**************** **************** +ĠB le +Ġfin es +Ġg orge +aus ible +r h +Ġapp le +ment ioned +Ġro pe +ot yp +H R +Ġdisappoint ing +Ġc age +n ik +Ġdoub ts +ĠF REE +print s +ĠM UST +Ġvend ors +ĠIn qu +Ġliber als +Ġcontract or +Ġup side +child ren +Ġtrick y +Ġregul ators +charg ed +l iter +Ġ *** +Ġreb ell +l ang +Ġloc als +Ġphys icians +Ġhe y +ar se +t m +ĠLe x +Ġbehavior al +success ful +F X +Ġbr ick +ov ic +Ġcon form +Ġreview ing +Ġins ights +Ġbi ology +ĠRem ove +ĠExt ra +Ġcomm itting +indu ced +ignt y +ig m +Ġat omic +Comm on +ĠE M +ĠP ere +ĠIt ems +e h +Ġpres erved +ĠH ood +Ġprison er +Ġbankrupt cy +Ġg ren +us hes +Ġexplo itation +Ġsign atures +Ġfin an +] ," +ĠM R +Ġme g +rem lin +Ġmusic ians +Ġselect ing +Ġexam ining +IN K +l ated +H i +Ġart ic +Ġp ets +Ġimp air +ĠM AN +Ġtable ts +in clude +R ange +Ġca ut +Ġlog s +Ġmount ing +Ġun aware +Ġdynam ics +ĠPalest ine +ĠQu arter +ĠPur ple +Ġm a +ĠIm port +Ġcollect ions +ci ation +Ġsuccess or +Ġcl one +Ġaim ing +Ġposs essed +Ġstick ing +Ġsh aking +Ġloc ate +ĠH ockey +T urn +17 0 +Ġfif teen +ĠHar rison +Ġcontinu ously +ĠT C +ĠVal ent +ĠRes cue +Ġby pass +am ount +Ġm ast +Ġprotect s +Ġart istic +Ġsomet ime +Ġsh oe +Ġshout ed +ific ant +et itive +ĠReg ister +ĠJ in +Ġconcent rated +ling ton +on ies +Ġgener ator +yr im +ĠAr men +Ġclear ing +id o +ĠT W +al ph +Ġlad ies +H ard +Ġdial og +Ġinput s +æ ľ +Ġpos es +Ġsl ots +ĠPrem ium +Ġle aks +Ġboss es +Ġ11 3 +c ourse +A cc +ĠNew ton +ĠAust ria +ĠM age +Ġte aches +ab ad +Ġwe ars +Ġc yl +Ġcur se +ĠS ales +ĠW ings +Ġp sy +Ġg aps +ĠIce land +ĠP interest +Ġland lord +Ġdefin itions +ĠK er +Ġsufficient ly +ĠP ence +ĠArch itect +Ġsur pass +Ġ11 4 +Ġsuper hero +ĠDise ase +Ġpri ests +ĠC ulture +Ġdefin itive +Ġsecret ly +ĠD ance +inst all +ch ief +ĠJess ica +W ould +Up dated +Ġlock er +ĠK ay +Ġmem orial +è ¦ +f at +Ġdis gu +Ġflav ors +ĠBase ball +ĠRes istance +Ġk icks +Ġen v +Ġteen agers +D ark +ĠC AR +Ġh alt +ĠL G +ĠGab riel +Ġfe ver +Ġs atur +Ġm all +Ġaffili ate +ĠS leep +ĠSpe cific +ĠV el +Ġj ar +ĠSac red +ĠEd wards +ĠA CL +Ġret ained +ĠG iant +Ġlim itation +in ces +Ġref usal +ĠT ale +ĠBut ler +Ġacc idents +ĠC SS +Ġimport ed +ĠCop y +Î ± +ER T +z el +Ġdiv isions +h ots +ĠAl b +ĠD S +Load er +W ashington +at isf +ĠCreat ive +\ . +ĠAut om +red ict +Ġrecept or +ĠCarl os +Met hod +ok a +Ġmal icious +Ġste pping +, [ +ĠD ad +Ġatt raction +ĠEffect s +ĠPir ate +ĠC er +ĠIndust ry +ĠR ud +Ġchar ter +Ġd ining +Ġins ists +Ġconfig ure +Ġ( # +ĠSim ple +ĠSc roll +UT C +17 5 +ĠK on +Ġmarket place +Ġ ãĤ +Ġref res +Ġg ates +er red +ĠP od +Ġbeh ave +Fr ank +n ode +Ġendors ed +he tt +as ive +ĠHom eland +Ġr ides +ĠLe ave +er ness +Ġflood ing +A FP +Ġris en +Ġcontin ually +Ġun anim +ĠCont ract +ĠP as +Ġgu ided +ĠCh ile +b d +Ġsu cc +pt ic +Ġcomm ittees +ĠL uther +ĠAny one +Ġs ab +12 4 +Ġp ixel +ĠB ak +ĠT ag +ĠBenn ett +En ter +sm all +ĠPresident ial +Ġp ul +Ġcontr ace +arch ive +Ġcoast al +ĠK ids +19 2 +âĢ ² +ick y +ING TON +Ġw olf +ĠSt alin +T ur +id get +am as +ĠUn less +Ġspons or +Ġmor ph +ĠCho ose +Ġrun ner +Ġun bel +Ġm ud +ĠMan a +Ġdub bed +Ġg odd +ure rs +wind ow +Ġrel ied +Ġcelebr ating +os c +Ġ13 5 +Ġlobb ying +Ġincom plete +Ġrestrict ion +Ġinc ap +it us +Ġexpect ation +ĠAp ollo +Ġint ens +Ġsyn c +G H +Ġmanip ulation +B Y +Ġspe ar +Ġbre asts +Ġvol can +il ia +M aterial +Ġform ats +ĠB ast +Ġparliament ary +Ġsn ake +Ġserv ants +ĠTr udeau +ĠGr im +ĠArab ic +ĠSC P +ĠBoy s +st ation +Ġprospect ive +ord e +in itialized +Ġb ored +AB LE +Ġaccess ed +Ġtax i +ĠShe ll +aid en +urs ed +in ates +ĠIns urance +ĠPet e +Sept ember +6 50 +Ġad ventures +ĠCo ver +Ġt ribute +Ġsk etch +Ġem power +Ġ Ø +ĠGl enn +ĠD aw += \" +ĠPolit ics +Ġgu ides +Ġd ioxide +ĠG ore +ĠBr ight +ĠS ierra +Ġval ued +c ond +Ġpo inter +Se lect +Ġrisk y +Ġabsor b +im ages +Ġref uses +Ġbon uses +__ _ +Ġh ilar +ĠF eatures +2 20 +ĠCollect or +F oot +Ġ19 64 +cul us +Ġd awn +Ġwork out +ĠL O +Ġphilosoph ical +ĠSand y +ĠYou th +Ġl iable +A f +bl ue +Ġovert urn +less ness +ĠTrib une +ĠIn g +Ġfact ories +Ġcat ches +Ġpr one +Ġmat rix +Ġlog in +Ġin acc +Ġex ert +s ys +Ġneed le +ĠQ ur +Ġnot ified +ould er +t x +Ġremind s +Ġpublisher s +Ġn ort +Ġg it +Ġfl ies +ĠEm ily +Ġflow ing +ĠAl ien +ĠStr ateg +Ġhard est +Ġmod ification +AP I +ĠM Y +Ġcr ashes +st airs +n umber +Ġur ging +ch annel +ĠFal con +Ġinhabit ants +Ġterr ifying +Ġutil ize +Ġban ner +Ġcig arettes +Ġsens es +ĠHol mes +Ġpract ition +ĠPhill ips +ott o +Ġcomp ile +Mod el +ĠK o +Ġ[ ] +Americ ans +ĠTer ms +Ġmed ications +ĠAn a +Ġfundament ally +ĠNot ice +Ġwe aker +Ġ 0000 +Ġgar lic +Ġout break +Ġeconom ist +ĠB irth +Ġobst acles +ar cer +ĠOr thodox +Ġplace bo +ĠC rew +asp berry +ĠAng els +Ġdis charge +Ġdestruct ive +11 7 +ĠR ising +Ġd airy +l ate +Ġcoll ision +ĠTig ers +ean or +ocument ed +ĠIn valid +Ġd ont +ĠL iter +ĠV a +Ġhyd rogen +Ġvari ants +ĠBrown s +Ġ19 65 +Ġind igenous +Ġtrad es +Ġremain der +Ġswe pt +ĠImp act +Ġred ist +Ġun int +grad uate +ãĥ ķ +ĠW ILL +ãģ® ç +ĠCrit ical +Ġf isher +Ġv icious +Ġrevers ed +Y ear +ĠS ox +Ġshoot ings +Ġfil ming +Ġtouchdown s +ai res +m el +Ġgrand father +Ġaffect ion +ing le +Ġover ly +Add itional +Ġsup reme +ĠGr ad +Ġsport ing +Ġmer cy +ĠBrook s +ount y +Ġperform s +Ġtight ly +Ġdem ons +Ġkill ings +Ġfact ion +ĠNov a +aut s +Ġund oubtedly +ar in +Ġunder way +ra k +Ġl iv +ĠReg ion +Ġbrief ing +s ers +cl oud +ĠM ik +us p +Ġpred iction +az or +Ġport able +ĠG and +Ġpresent ing +Ġ10 80 + » +ush i +ĠSp ark +there um +Ġjust ification +ĠN y +Ġcontract ors +ming ham +ĠSt yle +å ħ +ĠChron icles +ĠPict ure +Ġprov ing +Ġw ives +set t +Ġmole cules +ĠFair y +Ġconsist ing +Ġp ier +al one +in ition +Ġn ucle +j son +Ġg otta +Ġmob il +Ġver bal +ar ium +Ġmon ument +uck ed +Ġ25 6 +T ech +mine craft +ĠTr ack +Ġt ile +Ġcompat ibility +as is +Ġs add +Ġinstruct ed +ĠM ueller +Ġle thal +Ġhorm one +Ġor che +el se +Ġske let +Ġentert aining +Ġminim ize +ag ain +Ġunder go +Ġconst raints +Ġcig arette +ĠIslam ist +Ġtravel s +ĠPant hers +l ings +C are +Ġlaw suits +ur as +Ġcry st +Ġlow ered +Ġaer ial +Ġcomb inations +Ġha un +Ġch a +Ġv ine +Ġquant ities +Ġlink ing +b ank +Ġso y +B ill +ĠAngel a +Ġrecip ient +ĠProt est +Ġs ocket +Ġsolid arity +Ġâ Ĩ +m ill +Ġvar ies +ĠPak istani +Dr agon +Ġun e +Ġhor izon +³³³³ ³³³³ +Ġprov inces +Ġfrank ly +Ġenact ed +not es +[ ' +Ġ19 2 +ocr acy +Ġendorse ment +Ġover time +Tr ue +L ab +lic ted +ĠD NC +Ġbe ats +ĠJam ie +15 2 +ĠIN T +Cont act +Ġaccount ed +h ash +ĠPack ers +p ires +Ġles bian +Ġamend ments +Ġhop eful +ĠFin land +Ġspot light +Ġconfig ured +Ġtrou bled +Ġg aze +ĠCal gary +Ġrel iability +Ġins urg +sw er +b uy +ĠSk in +Ġp ixels +Ġhand gun +Ġpar as +Ġcateg or +ĠE L +ĠRe x +Ind eed +Ġkind a +Ġconj unction +ĠBry an +ĠMan ufact +y ang +Pl us +S QL +ish ment +Ġdom inate +Ġn ail +Ġo ath +Ġeru pt +ĠF ine +it bart +ĠCh ip +ĠAb d +ĠN am +Ġbuy er +Ġdiss ent +Le aks +Cont in +Ġr ider +ĠSome one +Ġill usion +c in +ĠBoe ing +Ġin adequ +ov ation +i ants +Ġreb uild +4 50 +ĠDest iny +S W +ĠT ill +H it +ia z +ĠBang l +acher s +ĠRe form +Ġse gments +Ġsystem atic +d c +ĠConserv atives +Ġport al +h or +ĠDragon bound +Ġdrag ged +om o +Ġthe e +ad vert +ĠRep orts +ĠE t +Ġbarrel s +Aug ust +Ġcompar isons +Ġhe x +Ġan throp +" [ +bor ough +ab i +Ġpict ured +play ing +ĠAdd ress +ĠMir ror +Sm ith +Ġt ires +ĠN PR +AA AA +Ġclass ification +ĠTh an +ĠH arm +ĠR A +Ġreject ion +min ation +Ġr anged +ĠF alls +D I +H ost +ãĤ ´ +ĠEx ample +list ed +th irds +Ġsaf egu +br and +Ġprob able +Can ada +IT ION +ĠQ aeda +Ġch ick +Ġimport s +h it +l oc +W W +Ġble w +Ġany time +Ġwh oles +ik ed +Ġcal culation +cre ate +ĠO ri +Ġupgr aded +Ġapp ar +ut ory +ĠM ol +B rit +ĠJ ong +IN AL +ĠStart ing +Ġd ice +urt le +Ġre lying +cl osure +Ġprof itable +Ġsl aughter +ĠMan ual +c aster +Ġ" $ +Ġfe ather +ĠSim ply +ie ves +Ġdeter ior +ĠPC I +Ġst amp +Ġfl aws +Ġsh ade +ham mer +Ġpass port +Ġcont ing +am el +Ġobser vers +Ġneg lect +ĠR B +ĠBrother hood +Ġskept ical +f amily +us k +Ġemotion ally +â Ļ +ĠBet a +ason able +id ity +ĠM ul +Ġkick ing +ĠC arm +oll ah +VERT IS +ĠAt hen +Ġlad der +ĠBul let +å £ +00 01 +ĠWild life +ĠM ask +ĠN an +R ev +Ġun acceptable +leg al +Ġcrowd ed +ag i +ĠC ox +j e +Ġmor ality +Ġfu els +Ġc ables +Ġman kind +ĠCarib bean +Ġanch or +Ġby te +ĠO ften +ĠO z +Ġcraft ed +Ġhistor ian +ĠW u +Ġtow ers +ĠCitiz ens +Ġhel m +Ġcred entials +Ġsing ular +ĠJes se +Ġtack les +Ġcont empt +Ġa fore +ĠSh adows +Ġn il +Ġur gent +app le +bl ood +Ġv on +Ġoff line +Ġbreat he +Ġj umps +Ġirre levant +ox ic +om al +import ant +J im +Ġgl oves +arm ing +dep th +Ġtal ents +ook ie +ĠS B +Ġpal m +uff s +est a +IG H +Ġcan on +ĠVer izon +ĠP le +Ġcou pled +vel t +Ġfundra ising +ĠGet ting +ĠD LC +Ġmathemat ical +ĠH S +ĠCard inals +te lling +Ġspons ors +Ġ Ï +ĠBull s +op tion +Ġprop ose +Ġmem orable +Ġembr aced +Ġdecl ining +He alth +ed a +Ġ} ; +Ġsp am +m ile +Ġpit cher +ĠE ight +Ġcar ing +ut ic +ro le +Ġair line +ernand ez +ĠAth let +Ġcert ification +ux e +rig er +Ġem pir +Ġsens ation +Ġdis m +Ġb olt +Ġev olve +H ouse +Ġconsult ation +ĠD uty +Ġtou ches +ĠN athan +Ġf aint +h ad +" ( +ĠCons umer +ĠExt reme +Ġ12 7 +ĠHer m +ĠSac rament +iz oph +Ġanx ious +ul ously +Ġsoc ially +ĠU TC +Ġsol ving +ĠLet ter +Hist ory +ed uc +Pr ice +) ); +Ġrel oad +am ic +Ġp ork +Ġdisc ourse +Ġt ournaments +ai ro +ĠK ur +ĠCost a +Ġviol ating +Ġinterf ere +Ġrecre ational +uff le +Ġspe eches +Ġneed ing +Ġremem bers +Ġcred ited +n ia +f ocused +amer a +Ġb ru +um bs +ĠCub an +Ġpreced ing +Ġnons ense +ac ial +Ġsmart phones +ĠSt ories +S ports +ĠEmer gency +oun cing +ef ined +Ġb er +Ġconsult ing +Ġm asters +he astern +." [ +ĠRun ning +Ġsus cept +ĠF eng +Americ a +pr ises +st itial +ĠWeek ly +ĠGreat er +mod ules +if ter +G raphics +ul er +Ġwho lly +Ġsupp ress +Ġconce aled +Ġhapp ily +Ġaccept s +ĠEn joy +Ġr ivers +ĠEx cept +2 25 +ĠN HS +ĠMc Connell +Ġp ussy +fer red +ut able +Ġatt ain +Ġ> = +Ġdepos its +roph ic +Ġnot orious +ĠSh aw +il itation +Ġepid emic +all ic +Ġsmall est +ov ich +Ġaccess ories +per ties +Ġsur plus +ĠMe ch +Ġamb ig +ĠImm igration +Ġch im +ev al +Ġpract icing +ĠMyster y +Ġdom ains +ĠSil icon +app s +Ġkilomet ers +e a +ĠSm ash +Ġwarrant y +Ġn ost +s il +re v +J on +ĠDub lin +Ġtast es +Ġb out +g reat +er ror +Ġsw itches +ĠB apt +D O +ok i +Ġsour ced +pro du +Ġattach ment +ĠIss ue +ĠQuest ion +Jo in +Ġf itted +Ġunlaw ful +^ ^ +ere k +Ġauthent ication +Ġst ole +Ġaccount ability +l abel +S earch +Ġal beit +atic an +fund ed +ĠAdd ing +ĠI Q +Ġsub mar +l it +a que +ĠLear ning +Ġint eger +M aster +ĠCh rom +Ġprem ier +O p +ĠLi u +Ġbl essed +ĠGl obe +ĠResp onse +Ġlegit im +ĠMer kel +Ġdispos al + ´ +Ġgau ge +pe at +Ġindu ced +Ġquestion able +arth y +ĠV it +ĠF eed +U ntil +U t +worth y +R Y +ĠH erald +ĠHam mer +Ġmed al +ĠR ivers +ĠH ack +Ġclar ify +Ġtrack ed +Ġautonom ous +Ġten ant +ĠQ atar +er ie +Ġgr im +ĠMon itor +Ġresist ant +ĠSpe c +ĠWell s +N AS +14 8 +Ġmin ers +iot ics +Ġmiss es +11 6 +g ian +g it +ĠE yes +p res +Ġgrad uated +Ġang el +Ġsyn chron +Ġefficient ly +Ġtrans mitted +H arry +Ġglob ally +EN CE +ĠMont ana +r aged +ĠPre vention +Ġp iss +ĠL l +Ġshe lf +ĠB JP +ĠTest ament +ĠL ate +ik er +ĠH app +ĠJul ian +h all +Ġsp ont +Ġshut down +Ġincons istent +Ġsubscrib ers +Ġske leton +ĠNe braska +Ġins pire +ĠV oid +F eed +Ġang les +ĠSpr ings +Ġbench mark +Ġvacc ines +izoph ren +se xual +uff ed +Ġsh ine +ĠK ath +Ġgest ure +ine a +Ġr ip +Ġopp ression +Ġcons cience +b t +ĠL um +Ġinc idence +ĠF a +w r +Ġmin eral +ĠSp urs +alk y +Ġth under +Ġop io +Be ing +ĠPal m +Ġwas ted +Ġl b +i aries +ĠIniti ative +Ġcur ric +Ġmark er +ĠMc L +Ġext ensions +ĠP v +ĠAr ms +Ġoffer ings +Ġdef enses +Ġvend or +Ġcontrad ict +ĠCol in +Ġredd it +Ġper ipher +12 2 +Ġs ins +E dit +IC T +So ft +ĠSh ah +Ġadministr ator +ĠT rip +Ġporn ography +Ġtu ition +in ence +ĠPro gress +Ġcat alog +Ġsu ite +Ġh ike +Ġreprodu ctive +eng ine +Ġd rought +ĠNo ah +Ġ2 30 +Ġd ude +Ġrelax ed +Ġpart ition +Ġparticip ant +Ġtel esc +Ġfe as +ĠF F +own er +Ġswe eping +Ġl enses +Ġmatch up +ĠRe pl +ourn als +Ġcred ible +Ġgrand mother +Ġther mal +Ġsubscrib ing +Ġident ities +col m +U CT +Ġreluct ant +us ers +ĠC ort +Ġassist ed +OS S +ATION S +IS H +Ġpharm aceutical +ic able +ad ian +ĠSon ic +ĠF ury +ĠM ong +A H +ĠPsych ology +Ġph osph +Ġtreat s +Ń Ķ +Ġstead ily +ĠHell o +Ġrel ates +Ġcl ue +Ex pl +a uth +Ġrev ision +Ġe ld +os ion +Ġbr on +14 4 +ri kes +Ġmin es +Ġblank et +ĠF ail +el ed +ĠIm agine +ĠPl anned +a ic +Re quest +M ad +ĠHor se +ĠEag le +Ġcap ac +15 7 +Ġl ing +ĠN ice +ĠP arenthood +min ster +og s +ens itive +Not hing +Ġcar n +F in +ĠP E +Ġr ifles +ĠL P +S and +Ġgui Active +Ġtour ist +C NN +Ġunve iled +Ġpredec essor +} { +u ber +Ġoff shore +Ġopt ical +ĠR ot +ĠPear l +et on +Ġst ared +Ġfart her +at ility +cont in +ĠG y +ĠF oster +ĠC oc +ri ents +Ġdesign ing +ĠEconom y +ON G +W omen +ĠN ancy +er ver +Ġmas cul +Ġcasual ties +Ġ2 25 +ĠS ullivan +ĠCh oice +Ġa ster +w s +Ġhot els +Ġconsider ations +Ġcou ch +ĠSt rip +ĠG n +Ġmanip ulate +l ied +Ġsynt hetic +Ġassault ed +Ġoff enses +ĠDra ke +Ġim pe +Oct ober +ĠHer itage +h l +ĠBl air +Un like +Ġg rief +Ġ4 50 +Ġopt ed +Ġresign ation +il o +Ġver se +ĠT omb +Ġu pt +Ġa ired +ĠH ook +ĠML B +Ġassum es +out ed +ĠV ers +Ġinfer ior +Ġbund le +ĠD NS +ograp her +Ġmult ip +ĠSoul s +Ġillust rated +Ġtact ic +Ġdress ing +Ġdu o +Con f +Ġrel ent +Ġc ant +Ġscar ce +Ġcand y +ĠC F +Ġaffili ated +Ġspr int +yl an +ĠGarc ia +Ġj unk +Pr int +ex ec +C rit +Ġport rait +ir ies +ĠOF F +Ġdisp utes +W R +L ove +ãģ Ħ +ĠRe yn +Ġh ipp +op ath +Ġflo ors +ĠFe el +Ġwor ries +Ġsett lements +ĠP os +Ġmos que +Ġfin als +Ġcr ushed +ĠPro bably +ĠB ot +ĠM ans +ĠPer iod +Ġsovere ignty +Ġsell er +Ġap ost +Ġam ateur +Ġd orm +Ġconsum ing +Ġarm our +ĠRo ose +Ġint ensive +Ġelim inating +ĠSun ni +ĠAle ppo +j in +Ġadv ise +p al +ĠH alo +Ġdes cent +Ġsimpl er +Ġbo oth +ST R +L ater +ĠC ave +== = +Ġm ol +Ġf ist +Ġshot gun +su pp +Ġrob bery +E ffect +Ġobsc ure +ĠProf essional +Ġemb assy +Ġmilit ant +Ġinc arcer +Ġgener ates +Ġlaun ches +Ġadministr ators +Ġsh aft +Ġcirc ular +Ġfresh man +ĠW es +ĠJo el +ĠD rew +ĠDun can +ĠApp arently +s ight +ĠIntern al +ĠInd ividual +ĠF E +Ġb ore +ĠM t +Ġbroad ly +ĠO ptions +ount ain +ip es +ĠV ideos +20 4 +Ġh ills +Ġsim ulation +Ġdisappoint ment +it an +ĠLabor atory +Ġup ward +Ġbound ary +Ġdark er +h art +Ġdomin ance +C ong +ĠOr acle +ĠL ords +Ġscholars hip +ĠVin cent +ed e +ĠR ah +Ġencour ages +ro v +Ġqu o +Ġprem ise +ĠCris is +ĠHol ocaust +Ġrhyth m +Ġmet ric +cl ub +Ġtransport ed +Ġn od +ĠP ist +Ġancest ors +ĠFred er +th umbnails +ĠC E +ON D +Ph il +ven ge +ĠProduct s +cast le +Ġqual ifying +ĠK aren +VERTIS EMENT +Ġmight y +Ġexplan ations +Ġfix ing +D i +Ġdecl aring +Ġanonym ity +Ġju ven +ĠN ord +ĠDo om +ĠAct ually +O k +ph is +ĠDes ert +Ġ11 6 +I K +ĠF M +Ġinc omes +V EL +ok ers +Ġpe cul +Ġlight weight +g ue +Ġacc ent +Ġincre ment +ĠCh an +Ġcompl aining +ĠB aghd +Ġmidfield er +Ġover haul +Pro cess +ĠH ollow +ĠTit ans +Sm all +man uel +ĠUn ity +ĠEv ents +S ty +Ġdispro portion +n esty +en es +ĠC od +Ġdemonstr ations +ĠCrim son +ĠO H +Ġen rolled +Ġc el +ĠBre tt +Ġa ide +Ġhe els +Ġbroad band +Ġmark ing +Ġw izard +ĠN J +ĠChief s +Ġingred ient +Ġd ug +ĠSh ut +urch ase +end or +Ġfar mer +ĠGold man +12 9 +15 5 +Or der +Ġl ion +i ably +Ġst ain +ar ray +ilit ary +ĠFA Q +Ġexpl oded +ĠMcC arthy +ĠT weet +ĠG reens +ek ing +l n +ens en +Ġmotor cycle +Ġpartic le +Ġch olesterol +B ron +Ġst air +Ġox id +Ġdes irable +ib les +Ġthe or +for cing +Ġpromot ional +ov o +b oot +ĠBon us +raw ling +Ġshort age +ĠP sy +Ġrecru ited +Ġinf ants +Ġtest osterone +Ġded uct +Ġdistinct ive +Ġfirm ware +bu ilt +14 5 +Ġexpl ored +Ġfact ions +Ġv ide +Ġtatt oo +Ġfinan cially +Ġfat igue +Ġproceed ing +const itutional +Ġmis er +Ġch airs +gg ing +ipp le +Ġd ent +Ġdis reg +ç Ķ +st ant +ll o +b ps +aken ing +Ġab normal +ĠE RA +å£ « +ĠH BO +ĠM AR +Ġcon cess +Ġserv ant +Ġas pir +l av +ĠPan el +am o +Ġprec ip +Ġrecord ings +Ġproceed ed +Ġcol ony +ĠT ang +ab lo +Ġstri pped +Le ft +to o +Ġpot atoes +Ġfin est +% ). +Ġc rap +ĠZ ach +ab ases +ĠG oth +Ġbillion aire +w olf +Ġsan ction +S K +Ġlog ged +P o +ey ed +un al +Ġcr icket +Ġarm ies +Ġunc overed +Cl oud +ó n +Ġreb ounds +Ġm es +O per +P ac +Ġnation ally +Ġinsert ed +p ict +Ġgovern ance +Ð ¸ +Ġprivile ges +G ET +Ġfavor ites +im ity +Ġlo ver +the m +em pl +Ġgorge ous +An n +Ġsl ipped +Ġve to +B ob +Ġsl im +u cc +ĠF ame +udden ly +Ġden ies +ĠM aur +Ġdist ances +Ġw anna +t ar +ĠS ER +Ġâ Ī +Ġle mon +at hetic +Ġlit eral +Ġdistingu ished +Ġansw ering +G I +Ġrelig ions +ĠPhil os +ĠL ay +Ġcomp os +ire ments +ĠK os +ine z +roll ing +Ġyoung est +and ise +ĠB orn +Ġalt ar +am ina +ĠB oot +v oc +Ġdig ging +Ġpress ures +Ġl en +26 4 +Ġassass ination +ĠBir mingham +ĠMy th +Ġsovere ign +ĠArt ist +ĠPhot ograph +Ġdep icted +Ġdisp ens +orth y +Ġamb ul +int eg +ĠC ele +ĠTib et +Ġhier archy +Ġc u +Ġpre season +ĠPet erson +Ġcol ours +Ġworry ing +Ġback ers +ĠPal mer +ĠÎ ¼ +Ġcontribut or +Ġhear ings +Ġur ine +Ġ Ù +ourge ois +Sim ilar +ĠZ immer +s omething +ĠUS C +Ġstrength s +ĠF I +Ġlog ging +As ked +ĠTh ai +in qu +ĠW alt +Ġcrew s +it ism +3 01 +Ġshar ply +um ed +Ġred irect +r ators +In f +ĠWe apons +Ġte asp +19 99 +L ive +ĠEs pecially +ĠS ter +ĠVeter ans +Ġint ro +other apy +Ġmal ware +Ġbre eding +Ġmole cular +ĠR oute +ĠCom ment +oc hem +Ġa in +Se ason +Ġlineback er +Ä « +ĠEconom ics +es ar +ĠL ives +ĠEm ma +Ġk in +ĠTer rit +Ġpl anted +ot on +ĠBut ter +ĠSp ons +P ER +Ġdun geon +Ġsymb olic +Ġfil med +Ġdi ets +Ġconclud es +Ġcertain ty +ĠForm at +Ġstr angers +form at +ĠPh ase +Ġcop ied +Ġmet res +ld a +ĠUs ers +Ġdeliber ate +Ġwas hed +ĠL ance +im ation +Ġimpro per +ĠGen esis +ick r +ĠK ush +Ġreal ise +Ġembarrass ing +alk ing +b ucks +Ġver ified +Ġout line +year s +ĠIn come +20 2 +Ġz ombies +F inal +ĠMill enn +Ġmod ifications +ĠV ision +ĠM oses +ver b +iter ranean +ĠJ et +Ġnav al +ĠA gg +Ġur l +Ġvict ories +Ġnon etheless +Ġinj ust +ĠF act +ç ļ +Ġins ufficient +re view +face book +Ġnegoti ating +Ġguarant ees +im en +uten berg +Ġg ambling +Ġcon gr +Load ing +Ġnever theless +Ġpres idents +ĠIndust rial +Ġ11 8 +Ġp oured +ĠT ory +Ġ17 5 +Ġ: = +Sc ott +ange red +T ok +Ġorgan izers +M at +ĠG rowth +Ġad ul +Ġens ures +Ġ11 7 +é¾į å +Ġmass acre +Ġgr ades +be fore +AD VERTISEMENT +ĠSl ow +ĠM MA +âĢĶ " +ĠV atican +Q aeda +Ġo we +66 66 +ĠS orry +ĠGr ass +Ġbackground s +Ġexha usted +Ġcl an +Ġcomprom ised +ĠE lf +ĠIsa ac +ens on +In vest +IF A +Ġinterrupt ed +ãĥī ãĥ© +Ġtw isted +ĠDrag ons +M ode +ĠK remlin +Ġfert il +he res +ph an +ĠN ode +f ed +ĠOr c +Ġunw illing +C ent +Ġprior it +Ġgrad uates +Ġsubject ive +Ġiss uing +ĠL t +Ġview er +Ġw oke +Th us +bro ok +Ġdep ressed +Ġbr acket +ĠG or +ĠFight ing +Ġstri ker +Rep ort +ĠPortug al +Ġne o +w ed +19 9 +Ġflee ing +sh adow +ident ified +US E +Ste am +Ġstret ched +Ġrevel ations +art ed +ĠD w +Ġalign ment +est on +ĠJ ared +S ep +Ġblog s +up date +g om +r isk +Ġcl ash +ĠH our +Ġrun time +Ġunw anted +Ġsc am +Ġr ack +Ġen light +on est +ĠF err +Ġconv ictions +Ġp iano +Ġcirc ulation +ĠW elcome +Ġback lash +ĠW ade +Ġrece ivers +ot ive +J eff +Ġnetwork ing +ĠPre p +ĠExpl orer +Ġlect ure +Ġupload ed +ĠMe at +B LE +ĠNaz is +ĠSy nd +st ud +ro ots +ri ans +Ġportray ed +Ġ ?? +ĠBudd ha +s un +Rober t +ĠCom plex +Ġover see +Ġste alth +T itle +ĠJ obs +ĠK um +Ġappreci ation +ĠM OD +Ġbas ics +Ġcl ips +Ġnurs ing +Ġpropos ition +Ġreal ised +ĠNY C +Ġall ocated +ri um +ar an +ĠPro duction +ĠV ote +Ġsm ugg +Ġhun ter +az er +ĠCh anges +Ġfl uct +y on +Ar ray +Ġk its +W ater +Ġuncom mon +Ġrest ing +ell s +w ould +Ġpurs ued +Ġassert ion +omet own +ĠMos ul +ĠPl atform +io let +Ġshare holders +Ġtra ils +P ay +ĠEn forcement +ty pes +ĠAn onymous +Ġsatisf ying +il ogy +Ġ( ' +w ave +c ity +Ste ve +Ġconfront ation +ĠE ld +C apt +ah an +ht m +ĠC trl +ON S +2 30 +if a +hold ing +Ġdelic ate +Ġj aw +ĠGo ing +or um +S al +Ġd ull +ĠB eth +Ġpr isons +Ġe go +ĠEl sa +avor ite +ĠG ang +ĠN uclear +Ġsp ider +ats u +Ġsam pling +Ġabsor bed +ĠPh arm +iet h +Ġbuck et +ĠRec omm +O F +ĠF actory +AN CE +Ġb acter +H as +ĠObs erv +12 1 +Ġprem iere +De velop +Ġcur rencies +C ast +Ġaccompany ing +ĠNash ville +Ġfat ty +ĠBre nd +Ġloc ks +Ġcent ered +ĠU T +augh s +or ie +ĠAff ordable +v ance +D L +em et +Ġthr one +ĠBlu etooth +Ġn aming +if ts +AD E +Ġcorrect ed +Ġprompt ly +ĠST R +Ġgen ome +Ġcop e +Ġval ley +Ġround ed +ĠK end +al ion +p ers +Ġtour ism +Ġst ark +v l +Ġblow ing +ĠSche dule +st d +Ġunh appy +Ġlit igation +ced es +Ġand roid +Ġinteg ral +ere rs +ud ed +t ax +Ġre iter +ĠMot ors +oci ated +Ġwond ers +ĠAp ost +uck ing +ĠRoose velt +f ram +Ġyield s +Ġconstit utes +aw k +Int erest +Ġinter im +Ġbreak through +ĠC her +Ġpro sec +ĠD j +ĠM T +Res p +ĠP T +Ġs perm +ed it +B T +Lin ux +count ry +le ague +Ġd ick +Ġo ct +Ġinsert ing +Ġsc ra +ĠBrew ing +Ġ19 66 +Ġrun ners +Ġpl un +id y +ĠD ian +Ġdys function +Ġex clusion +Ġdis gr +Ġincorpor ate +Ġrecon c +Ġnom inated +ĠAr cher +d raw +achel or +Ġwrit ings +Ġshall ow +Ġh ast +ĠB MW +ĠR S +Ġth igh +Ġ19 63 +Ġl amb +Ġfav ored +ag le +Ġcool er +ĠH ours +ĠG U +ĠOrig in +Ġglim pse +---------------- ---- +L im +Ġche ek +Ġj ealous +- ' +Ġhar ness +ĠPo ison +Ġdis abilities +ne apolis +Ġout look +Ġnot ify +ĠIndian apolis +Ġab rupt +ns ic +Ġenc rypted +Ġfor fe +reat h +Ġr abb +Ġfound ations +Ġcompl iment +ĠInter view +ĠS we +Ġad olesc +Ġmon itors +ĠSacrament o +Ġtime ly +Ġcontem pl +Ġposition ed +Ġpost ers +ph ies +iov ascular +v oid +ĠFif th +Ġinvestig ative +OU N +Ġinteg rate +ĠIN C +ish a +ibl ings +ĠRe quest +ĠRodrig uez +Ġsl ides +ĠD X +Ġfemin ism +Ġdat as +Ġb end +ir us +ĠNig eria +F ox +Ch ange +Ġair plane +ĠLad en +Ġpublic ity +ixt y +Ġcommit ments +Ġaggreg ate +Ġdisplay ing +ĠAr row +Ġ12 2 +Ġrespect s +and roid +s ix +ĠSh a +Ġrest oration +) \ +W S +oy s +Ġillust rate +with out +12 6 +ĠâĶ Ĥ +Ġpick up +n els +Ġ .... +f ood +ĠF en +) ? +Ġphenomen a +Ġcompan ions +ĠW rite +Ġsp ill +Ġbr idges +ĠUp dated +ĠF o +Ġinsect s +ASH INGTON +Ġsc are +il tr +ĠZh ang +Ġsever ity +Ġind ul +14 9 +ĠCo ffee +Ġnorm s +Ġp ulse +ĠF T +Ġhorr ific +ĠDest roy +ĠJ SON +Ġo live +Ġdiscuss es +R est +E lect +ĠW inn +ĠSurv iv +ĠH ait +S ure +op ed +Ġro oted +ĠS ke +ĠBron ze +Ġl ol +Def ault +Ġcommod ity +red ited +Ġliber tarian +Ġforb idden +Ġgr an +à ¨ +Ġl ag +en z +dri ve +Ġmathemat ics +Ġw ires +Ġcrit ically +Ġcarb ohyd +ĠChance llor +ĠEd die +Ġban ning +ĠF ri +Ġcompl ications +et ric +ĠBangl adesh +Ġband width +St op +ĠOrig inally +Ġhalf way +yn asty +sh ine +Ġt ales +rit ies +av ier +Ġspin ning +ĠWH O +Ġneighbour hood +b ach +Ġcommer ce +ĠS le +B U +Ġentreprene ur +Ġpecul iar +ĠCom ments +f re +3 20 +IC S +Ġimag ery +ĠCan on +ĠElect ronic +sh ort +( ( +D ig +Ġcomm em +u ced +Ġincl ined +ĠSum mon +Ġcl iff +ĠMed iterranean +Ġpo etry +Ġprosper ity +ĠRe ce +Ġp ills +m ember +Ġfin ale +un c +ĠG ig +ä ½ +Ġl od +Ġback ward +- + +ĠFor ward +Ġth ri +s ure +Ġso ap +ĠF X +R ES +ĠSe xual +oul os +Ġfool ish +Ġright eous +Ġco ff +terror ism +ust ain +ot er +Ġab uses +ne xt +Ġab usive +Ġthere after +Ġprohib ition +ĠS UP +Ġd ip +Ġr ipped +Ġinher ited +Ġb ats +st ru +G T +Ġflaw ed +ph abet +Ġf og +do ors +Ġim aging +Ġdig its +ĠHung ary +Ġar rog +Ġteach ings +Ġprotocol s +ĠB anks +à ¸ +p ound +ĠC urt +." ) +. / +Ġex emption +end ix +ĠM ull +Ġimpro ves +ĠG amer +d imensional +I con +ĠMarg aret +St atus +d ates +Ġint ends +Ġdep ict +Ġpark ed +J oe +ĠMar ines +chn ology +! ). +Ġjud ged +Ġwe ights +R ay +Ġapart ments +he ster +Ġrein force +Ġoff ender +occ up +Ġs ore +e pt +ĠPH P +ĠB row +Ġauthor ization +ĠR isk +ĠDel aware +ĠQ U +Ġnot ifications +Ġsun light +Ġex clude +d at +Ġm esh +ĠSud an +Ġbelong ed +Ġsub way +Ġno on +ĠInter ior +ol ics +ĠL akers +Ġc oding +Dis claimer +Cal if +O ld +Ġdis l +???? ? +Ġconfir ms +Ġrecruit ment +Ġhom icide +Cons ider +ĠJeff rey +ft y +} ; +Ġobject ion +do ing +ĠLe o +W ant +Ġgl ow +ĠClar ke +ĠNorm an +Ġver ification +Ġpack et +ĠForm ula +Ġpl ag +es ville +Ġshout ing +Ġo v +ĠR EC +ĠB ub +Ġn inth +Ġener g +Ġvalid ity +Ġup s +j ack +Ġneighbor ing +ĠN ec +ew orks +ĠH ab +are z +Ġsp ine +Ġevent ual +ĠLe aders +ĠC arn +Ġprob ation +Ġrom ance +ms g +ĠMechan ical +ER Y +R ock +Ġpart isan +N ode +ass ets +min ent +Ġforeign ers +Ġtest ify +ĠUs ually +l ords +ĠG ren +ĠPow ell +BI L +Ġs r +Ġadd ict +Ġshell s +Ġs igh +ĠY ale +tern ity +Ġ7 50 +E U +ĠR ifle +Ġpat ron +em a +ĠB annon +an ity +Ġtrop ical +ĠV II +c ross +Every thing +ĠIS O +Ġhum ble +ass ing +ĠF IG +Ġupd ating +ys on +Ġcal cium +Ġcompet ent +Ġste ering +Pro t +ĠS Y +ĠFin als +ĠR ug +15 9 +13 7 +ĠG olf +Ġ12 6 +Ġaccommod ation +ĠHug hes +Ġaest hetic +art isan +ĠTw ilight +Ġpr ince +ĠAgric ulture +ĠDis co +Ġpreced ent +Ġtyp ing +author ized +O ption +ĠA ub +l ishes +ach t +m ag +P eter +ĠU FO +mont on +ĠL ith +Ġa rom +Ġsec uring +Ġconf ined +priv ate +Ġsw ords +Ġmark ers +Ġmetab olic +se lect +ĠCur se +ĠO t +g ressive +Ġinc umb +ĠS aga +Ġpr iced +Ġclear ance +Cont ent +Ġdr illing +Ġnot ices +Ġb ourgeois +Ġv est +Ġcook ie +ĠGuard ians +ry s +in yl +Ġ12 4 +Ġpl ausible +on gh +ĠOd in +Ġconcept ion +ĠY uk +ĠBaghd ad +ĠFl ag +Aust ral +ĠI BM +Ġintern ationally +ĠWiki Leaks +I ED +Ġc yn +Ġcho oses +ĠP ill +Ġcomb ining +Ġrad i +ĠMoh ammed +def ense +atch ing +Sub ject +ic iency +Fr ame +Ġ{ " +Ġche ss +Ġtim er +19 0 +Ġt in +Ġord inance +emet ery +Ġacc using +Ġnotice able +Ġcent res +Ġl id +ĠM ills +img ur +Ġz oom +erg ic +Ġcomp ression +pr im +f ind +Ġsur g +Ġp and +ĠK ee +ĠCh ad +cell ence +oy le +Ġsocial ism +ĠT ravis +ĠM Hz +Ġgu ild +ALL Y +ĠSub scribe +ĠRel ated +Ġoccur rence +itch ing +Ġfict ional +Ġcr ush +ĠE A +c od +m ix +ĠTri ple +Ġretrie ve +Ġstimul us +Ġpsych iat +ĠDo or +Ġhomosexual ity +Ġelement ary +Ġcell ular +id ian +ĠL aun +Ġintrig uing +Ġfo am +ĠB ass +id i +its u +Ġass ure +Ġcongr at +Ġbusiness man +ĠBo ost +cl ose +Ġl ied +Ġsc iences +ĠO mega +ĠG raphics +Ġ< = +sp oken +Ġconnect ivity +S aturday +ĠAven gers +Ġto ggle +Ġank le +Ġnational ist +mod el +ĠP ool +ophob ia +V ar +ĠM ons +ator ies +Ġaggress ively +C lear +For ge +act ers +Ġhed ge +Ġpip es +Ġbl unt +Ġs q +Ġremote ly +W ed +as ers +Ġref riger +Ġt iles +Ġresc ued +Ġcompr ised +ins ky +Ġman if +avan augh +Ġprol ifer +Ġal igned +x ml +Ġtri v +Ġcoord ination +ĠP ER +ĠQu ote +13 4 +b f +ĠS aw +Ġtermin ation +Ġ19 0 +Ġadd itions +Ġtri o +Ġproject ions +Ġpositive ly +Ġin clusive +Ġmem br +19 90 +old er +Ġpract iced +ink le +Ar ch +Ġstar ters +ari us +Ġinter mediate +ĠBen ef +ĠK iller +Ġinter ventions +ĠK il +ĠF lying +In v +Ġprem ature +Ġpsych iatric +Ġind ie +Ġcoll ar +ĠRain bow +af i +Ġdis ruption +ĠFO X +cast ing +Ġmis dem +c ro +Ġw ipe +ard on +Ġb ast +ĠTom my +ĠRepresent ative +Ġbell y +ĠP O +ĠBre itbart +13 2 +Ġmess aging +Sh ould +Ref erences +ĠG RE +ist ical +L P +ĠC av +ĠC razy +Ġintu itive +ke eping +ĠM oss +Ġdiscont in +ĠMod ule +Ġun related +ĠPract ice +ĠTrans port +Ġstatist ically +orn s +Ġs ized +p u +Ġca f +ĠWorld s +ĠRod gers +ĠL un +ĠCom ic +l iving +Ġc ared +Ġclim bed +) { +Ġconsist ed +Ġmed ieval +fol k +Ġh acked +Ġd ire +ĠHerm ione +Ġt ended +ce ans +D aniel +w ent +Ġlegisl ators +Ġred es +g ames +Ġg n +am iliar +Ġ+ + +gg y +th reat +Ġmag net +Ġper ceive +Ġz ip +Ġindict ment +Ġcrit ique +g ard +ĠSaf e +ĠC ream +Ġad vent +ob a +Ġv owed +ous ands +Ġsk i +Ġabort ions +u art +Ġstun ned +Ġadv ancing +Ġlack ed +Ġ\ " +Ġsch izophren +Ġeleg ant +Ġconf erences +Ġcance led +ĠHud son +ĠHop efully +Ġtr ump +Ġfrequ encies +Ġmet eor +ĠJun ior +ĠFle et +ĠMal colm +ĠT ools +Ġ ........ +Ġh obby +ĠEurope ans +Ġ15 00 +ĠInt o +Ġs way +ĠApp ro +ĠCom pl +Comm unity +Ġt ide +ĠSum mit +ä » +Ġinter vals +ĠE ther +Ġhabit at +ĠSteven s +lish ing +ĠDom ain +Ġtrig gers +Ġch asing +Ġchar m +ĠFl ower +it ored +Ġbless ing +Ġtext ures +F ive +Ġliqu or +R P +F IN +Ġ19 62 +C AR +Un known +Ġres il +ĠL ily +Ġabund ance +Ġpredict able +r ar +Ġbull shit +le en +che t +M or +M uch +ä ¹ +Ġemphas ized +Ġcr ust +Ġprim itive +Ġenjoy able +ĠPict ures +Ġteam mate +pl er +ĠT ol +ĠK ane +Ġsummon ed +th y +ram a +ĠH onda +Ġreal izing +Ġquick er +Ġconcent rate +cle ar +Ġ2 10 +ĠErd ogan +ar is +Ġrespond s +ĠB I +Ġelig ibility +Ġpus hes +ĠId aho +Ġagg rav +Ġru ins +ur ations +Ġb ans +Ġan at +sh are +Ġgr ind +h in +um en +Ġut ilities +ĠYan kees +Ġdat abases +ĠD D +Ġdispl aced +Ġdepend encies +Ġstim ulation +h un +h ouses +ĠP retty +ĠRaven s +ĠTOD AY +Ġassoci ates +Ġthe rape +cl ed +Ġde er +Ġrep airs +rent ice +Ġrecept ors +Ġrem ed +ĠC e +Ġmar riages +Ġball ots +ĠSold ier +Ġhilar ious +op l +13 8 +Ġinherent ly +Ġignor ant +Ġb ounce +ĠE aster +REL ATED +ĠCur rency +E V +ãĥ ŀ +ĠLe ad +Ġdece ased +B rien +ĠMus k +J S +Ġmer ge +heart ed +c reat +m itt +m und +ĠâĢ ĭ +ĠB ag +Ġproject ion +Ġj ava +ĠStand ards +ĠLeon ard +Ġcoc onut +ĠPop ulation +Ġtra ject +Ġimp ly +Ġcur iosity +ĠD B +ĠF resh +ĠP or +Ġheav ier +ne ys +gom ery +Ġdes erved +Ġphr ases +ĠG C +Ġye ast +d esc +De ath +Ġreb oot +Ġmet adata +IC AL +Ġrep ay +ĠInd ependence +Ġsubur ban +ical s +Ġat op +Ġall ocation +gener ation +ĠG ram +Ġmoist ure +Ġp ine +ĠLiber als +Ġa ides +Ġund erest +ĠBer ry +Ġcere mon +3 70 +ast rous +ĠPir ates +Ġt ense +ĠIndust ries +ĠApp eals +ĠN ear +Ġè£ı ç +Ġlo vers +ĠC AP +ĠC raw +Ġg iants +Ġeffic acy +E lement +ĠBeh avior +ĠToy ota +Ġint est +P riv +A I +Ġmaneu ver +Ġperfect ion +Ġb ang +p aper +r ill +Ge orge +b order +in ters +ĠS eth +Ġcl ues +ĠLe vi +ĠRe venue +14 7 +Ġv apor +Ġfortun ate +Ġthreat ens +Ġve t +Ġdepend ency +ers ed +art icle +ĠBl izzard +Ġch lor +Ġmin us +ĠB ills +Ġcryptoc urrency +Ġmetabol ism +ter ing +Ġp estic +step s +ĠTre asure +ract ed +ĠConst ant +Ġtem p +13 9 +ĠDet ective +ur ally +Ġrecover ing +Ġcort ex +Ġ14 4 +cl osed +Ġprejud ice +aun ted +Ġstorm s +ĠN OW +Ġmach inery +Add ress +Ġcompe lled +27 0 +Ġdesp air +b ane +Ġveget able +Ġbed s +Lear n +Ġcolor ful +Ġsp ike +Ġmarg ins +Ġsymp athy +Ġworks hop +ĠC BC +S at +Ġburn s +ĠG ender +Ġ12 9 +ĠC able +Ġdeb ts +ĠThe resa +Ġreflect ing +Ġa irst +Ġr im +ram id +Ġweakness es +W rit +ogg le +t i +ĠCh arge +Ġwe ighed +Ġ( . +Ġl aughter +Ġrou ter +ĠDemocr acy +D ear +Ġhas ht +Ġd y +Ġhint s +run ning +Ġfin ishes +ar us +M ass +res ult +asc us +Ġv intage +Ġcon qu +Ġwild ly +ac ist +Ġl ingu +Ġprot agonist +st rom +te enth +ĠSol o +m ac +f illed +Ġre nown +it ives +Ġmot ive +ĠAnt ar +ĠM ann +ĠAd just +Ġrock ets +Ġtrou bling +e i +Ġorgan isms +ass is +Christ ian +Ġ14 5 +ĠH ass +Ġsw all +Ġw ax +ĠSurv ival +V S +ĠM urd +v d +stand ard +Ġdrag ons +Ġacceler ation +r ational +f inal +Ġp aired +ĠE thereum +Ġinterf aces +Ġres ent +Ġartif acts +Å « +are l +Ġcompet itor +ĠNich olas +ĠSur face +c pp +ĠT ot +Ġeconom ically +Ġorgan ised +Ġen forced +in ho +Ġvar ieties +Ġab dom +ĠBa iley +id av +ĠSal v +p aid +Ġalt itude +ess ert +ĠG utenberg +are a +op oulos +Ġprofess ors +igg s +ĠF ate +he y +Ġ3 000 +D ist +Ġtw ins +c ill +ĠM aps +Ġtra ps +Ġwe ed +ĠK iss +Ġy oga +Ġrecip ients +ĠWest minster +Ġpool s +ĠWal mart +18 8 +ĠSchool s +att ack +ĠAR M +par agraph +W arning +j l +Ġself ish +anche z +ĠHe ights +F re +ĠS oph +Ġ -------------------------------- +t ml +33 3 +Ġraid s +Ġsatell ites +KE Y +Ġlast s +Ñ Ĥ +In s +ĠD ame +Ġunp redict +// / +gh ai +Ġart illery +Ġcru ise +Ġg el +ĠCabin et +Ġbl ows +ĠE sp +Ġprox imity +ot he +ĠSk ills +ĠU pper +ob o +ĠN DP +Ġenjoy s +Ġrepe ating +ĠConst ruction +ĠQuest ions +H illary +Ġu int +Ġprocess ors +ĠGib son +ĠMult iple +q a +ĠB om +ĠM iles +vent ional +Ġhur ts +s kin +ĠA IDS +Ġadvis ers +ĠR oot +Ġmethod ology +ĠD ale +Ġdet on +ĠKnow ledge +sequ ently +Ġ12 1 +Ġconnect s +C y +ĠD anger +Ġcontribut ors +ĠB ent +Ġbr ass +ĠGun s +int o +ĠFort une +Ġbro ker +bal ance +Ġlength s +Ġv ic +Ġaver aging +Ġappropri ately +ĠCamer a +Ġsand wich +ĠCD C +Ġcoord inate +Ġnav ig +Ġgood ness +l aim +Ġbra ke +Ġextrem ist +ĠW ake +ĠM end +ĠT iny +ĠC OL +ĠR F +ĠD ual +ĠW ine +C ase +Ġref ined +Ġl amp +L ead +Ġb apt +ĠCar b +ĠS add +ĠMin neapolis +PD F +Ear ly +ĠH idden +I ts +ĠT IME +Ġp ap +Ġcommission ed +ĠF ew +ĠCol ts +ĠB ren +Ġbot hered +Ġlike wise +Ex per +ĠSch w +c ry +n n +ĠM itch +im on +M G +b m +UM P +r ays +Ġregist ry +Ġ2 70 +ach ine +re lla +ant ing +00 000 +Ġru ined +sp ot +Ġt a +Ġmaxim ize +Ġincon ven +D ead +H uman +En abled +ĠMar ie +Ġch ill +ĠParad ise +Ġstar ring +ĠLat ino +ĠProt ocol +ĠE VER +Ġsuppl iers +m essage +ĠBro ck +Ġser um +âĸĪâĸĪ âĸĪâĸĪ +Ġen comp +Ġamb ition +ues e +Ġar rows +And rew +Ġanten na +Ġ19 61 +ĠB ark +Ġb ool +ãĤ ª +ĠSt orage +Ġrail way +Ġtoug her +ĠC ad +Ġwas hing +P y +' ] +em bed +ĠMem phis +ack le +Ġfam ously +ĠF ortunately +ov ies +Ġmind set +Ġsne ak +ĠD h +RA W +ĠSim pson +Ġliv est +Ġland mark +Ġc ement +L ow +Ġthr illed +ĠCour se +in el +Ġch uck +id ate +gl obal +Ġwh it +Ġ � +ad ays +s ki +ĠS V +Ġvir uses +30 6 +ĠResp ons +Ġthe aters +ĠBr anch +ĠGene va +ĠM K +Ġunbel iev +Ġcommun ist +Orig inal +ĠRe ceived +ĠTrans fer +ĠAr g +In put +ĠStr ategy +Ġpal ace +the ning +D ri +Ġsent encing +umbn ail +Ġp ins +re cy +Ġs iblings +Get ting +ĠB U +ĠNorth west +Ġprolong ed +ĠSak ura +C omb +ĠB our +Ġinadequ ate +ĠK ash +Ġus ername +ĠImpro ve +Ġbatt ling +ĠM AC +Ġcurric ulum +Ġs oda +ĠC annon +Ġsens ible +sp ons +De cember +Ġw icked +ĠP engu +Ġdict ators +ĠHe arts +og yn +Ġsimilar ities +ĠSt ats +Ġh ollow +it ations +": [ +Ġh over +ĠList en +s ch +S und +Ġc ad +ĠPar ks +Ġl ur +Ġhy pe +ĠL em +N AME +is ure +Fr iday +Ġshoot s +Ġclos es +Ġd b +ĠR idge +ĠDiff erent +Ġrepl ies +ĠBroad way +op ers +Ġint oler +ĠZe us +akes pe +Ġpropri etary +Ġrequest ing +Ġcontro llers +ĠM IN +im edia +be cca +Ġexp ans +Ġoil s +B ot +ĠCh and +Ġpr inter +Ġto pped +ĠP OL +ĠEar lier +S ocial +av in +Ġdecre ases +ĠSe b +Ġspecific ations +ĠBl ast +ĠK urt +Ġfre el +B rown +Ġdil ig +ro e +ĠPro blem +ĠQu ad +Ġdecent ral +ĠV ector +an ut +Ġplug ins +ĠGreg ory +Ġfuck ed +el ines +ĠAmb assador +t ake +Ġcle ans +ong yang +An onymous +st ro +" } +al ine +ĠO dd +ĠE ug +2 16 +Ġbo il +ĠP owers +Ġnurs es +Ob viously +ĠTechn ical +Ġexceed ed +OR S +Ġextrem ists +Ġtr aces +ex pl +Ġcom r +ĠS ach +) / +Ġm asks +Ġsc i +B on +Ġreg ression +we gian +Ġadvis or +it ures +ĠV o +ex ample +ĠInst ruct +Ġs iege +Ġredu ctions +pt r +Ġstat utory +Ġrem oves +Ġp uck +red its +Ġbe e +Ġsal ad +Ġpromot ions +ĠJosh ua +with standing +ET H +ĠCh a +im us +Ġexpend iture +aun ting +Ġdelight ed +Ġ15 5 +be h +Ġcar pet +ĠSp art +Ġj ungle +l ists +Ġbull ying +ĠNob el +ĠGl en +Ġreferen ced +Ġintrodu ces +se in +Ġcho pped +gl ass +ĠW rest +Ġneutral ity +Ġâ Ļ +Ġinvestig ator +Ġshel ves +Ġun constitutional +Ġreprodu ction +Ġmer chant +m ia +Ġmet rics +Ġexplos ives +ĠSon ia +Ġbod ily +Ġthick ness +Ġpredomin antly +ĠAb ility +Ġmon itored +IC H +Ġ] . +ĠMart inez +Ġvis ibility +Ġqu eries +Ġgen ocide +ĠWar fare +Qu ery +Ġstud ios +Ġemb ry +Ġcorrid or +Ġclean ed +com plete +ĠM H +Ġenroll ment +ING S +Ġimpact ed +Ġdis astrous +ĠY un +ĠCl aire +ĠBas ically +y t +uster ity +Ġindirect ly +w ik +Ġd od +ĠCar r +Ġam p +Ġprohib it +ĠIn itial +ĠR d +ij i +Ġeduc ate +c orn +i ott +ĠBeaut y +Ġdetect ive +ĠCon n +s ince +Ġst agger +Ġob ese +Ġb ree +olog ic +is se +walk er +Ġbl ades +Ġlaw ful +fun c +ĠBeh ind +Ġappet ite +Ġ( * +Ġt ennis +Ġoff spring +Ġj ets +Ġstruct ured +Ġafore mentioned +N ov +Ġsc aling +f ill +Ġst ew +Ġcur b +ĠStep han +ed In +S F +ob ic +é ŃĶ +ou g +ĠM M +Ġgen etically +ope z +13 6 +Ġu mb +anc ers +Ġcoh ort +Ġmerch andise +Ġimp osing +ĠLegisl ature +ĠArch ive +iv ia +ĠN aval +Ġoff ences +Ġmir acle +Ġsn apped +Ġf oes +Ġextensive ly +ĠR af +Ġc ater +ed ience +K it +ĠB in +Ġrecomm ends +ĠC ities +Ġrig id +ĠRE AD +ĠNob le +ĠT ian +Ġcertific ates +ant is +o iler +ĠBudd hist +d id +Ġsurvey ed +Ġdown ward +Ġprint s +ĠMot ion +ron ics +ĠS ans +oss ibly +u ctions +Ġcolon ies +ĠDan ish +un it +Ġsp oil +Ġadvis ory +ber ries +Pl an +Ġspecific ation +op hers +ĠRes ource +Ġsh irts +prising ly +commun ications +Ġtriv ial +Ġmention ing +ise xual +Ġsupp lements +Ġsuper vision +B P +v or +Ġw it +Ġco oldown +Ġplaint iff +ĠReview s +ĠS ri +ĠM int +ĠSug ar +Ġafter ward +ĠPri est +ĠInvest ment +og ene +ĠT aking +Ġstretch ing +Ġinflamm ation +ĠTe hran +Ġl ining +Ġfree zing +ĠEnt ity +Ġins piring +spe cial +pr ice +Ġsu e +ĠP orter +oun ge +ET A +ĠD erek +ĠLu is +u o +ym ph +Ġex terior +ih il +ĠAsh ley +in ator +Ġnut rients +ĠTh rones +Ġfin ances +ĠIn spect +Ġspe cially +ĠRequ ired +ĠP TS +ĠViol ence +oint ed +sh ots +Ġex cerpt +co on +IN S +ĠG ri +Ġrecogn ised +We ek +You ng +Ġv om +is le +ĠCur ry +ĠBudd h +Ġnot ebook +Ġd urable +/ ? +ĠG ad +ĠP upp +Ġforg ive +p ark +Ġpersonal ities +an alysis +cl amation +Ġelev ator +Ġware house +ĠR ole +un n +Ġillust ration +ĠSc an +Ġatmosp heric +Im port +AN C +rict ed +f u +01 0 +Ġar che +Ġreward ed +akespe are +Ġintern ally +ĠR BI +alk er +Ġeleph ant +ow itz +ĠP izza +Ġbip artisan +é s +Ġslow ed +ĠSt ark +Ġover ride +OU S +Ġ3 20 +undred s +ĠDe ck +ĠC ensus +be e +14 6 +ot or +Ġ ip +Ġu b +oc ations +ĠBut ton +r ice +Ġc ripp +ff f +Ġorig inated +Ġoverwhel med +app a +Ġfore most +âĢ ij +ĠL EG +re lease +eat ured +at ches +Ġre ps +Ġl ending +ĠRe ference +ĠCl ient +16 5 +vent h +Com plete +ĠPat rol +Ġsw orn +c am +Ġshut tle +ĠR alph +Ġh ometown +- , +on al +ĠB P +å ı +Ġpersu ade +ĠAlex and +Ġcomb ines +Ġv ivid +ĠL ag +Ġenc oding +Ġsal vation +w en +ĠRec overy +i ya +Un iversity +ĠB iden +Ġbud gets +ĠTex ans +f its +Ġhon ored +Ġp ython +T D +## # +cl one +Ġbl ink +ĠL iquid +Ġunemploy ed +Ġcl ashes +ĠCoun sel +Ġdirect ing +Ġpun ct +ĠFal cons +Ġsh ark +ĠDam ascus +Ġje ans +Ġemb ark +Ġse ize +Ġup wards +2 80 +ĠE z +ĠAny thing +Ġex otic +l ower +ĠCreat or +ĠU m +Ġsubur bs +ber ger +ĠW end +Ġm int +ĠX X +ĠD ro +Ġsuff ers +Ġher b +t ree +Ġfrag ile +Ġflood ed +ĠAl cohol +ole an +ny der +ĠK O +F ram +Ġ13 6 +Ġow ed +ĠMe lee +ĠH ash +Ġwh isk +Ġsu do +r r +Qu ick +app ro +Ġi i +ĠEx amples +he e +Ġpromot es +per ature +k ar +ĠHon or +Ġs odium +ĠL if +ros so +intend ent +Ġcorrespond ent +F ound +sec ret +Ġident ifies +ag ne +Ġl ou +ĠP P +Ġcoinc idence +m ove +Ġmilit ia +Ġinf iltr +ĠPrim ary +Ġpitch ing +ĠI b +ĠGO OD +ãĤ ¸ +ĠW izards +ir al +ĠVen us +R R +ĠâĢ ķ +ĠCase y +Ġsad ly +Ġadm ire +Ġembarrass ed +c b +M el +Ġtub es +Ġbeaut ifully +ĠQueens land +Bel ow +re z +qu et +ple asant +Ġ « +C amp +Ġdec isive +19 98 +ĠL amb +ut ton +h n +ĠJ agu +au nder +ĠC ord +Ġcl erk +Ġca ffe +Ġwip ed +Ġre im +ĠMount ains +Ġimprison ed +Ġdevelop s +ĠP ra +Ġmodel ing +Any one +ance l +ĠS it +Ġshield s +Ġl awn +Ġcard iovascular +Ġdemonstr ating +Ġpar se +ĠIsrael is +Ġeuro s +14 3 +Ġgl orious +ins ki +ec d +Ġcondition ing +Ġhel pless +Ġmicro sc +ĠHar bor +Ġst akes +Ġ2 60 +Ġun equ +ĠFl oyd +Ġd amp +Ġappar atus +ĠLaw s +Ġcoun ters +Ġindu ce +at able +ĠAh med +Ġsl am +N ovember +Ġpers ist +Ġim minent +á n +Ġsh red +Ġph ases +ĠEd monton +ĠArm strong +ĠMe et +ĠK itty +Ñ Ģ +c irc +ĠAd ult +Ġa rose +ĠX en +D an +g ow +Ġsuper f +ĠAd mir +Ġend ure +Ġkey word +yr us +Ġy arn +Ġpath way +ĠHop kins +mid t +Ġcens orship +d ependent +Ġinstruct or +S ources +Ġto e +Ġball oon +N ob +Ġsw ear +ĠCast ro +Ġgl oss +ĠK avanaugh +Ġremark ably +Ph otos +ĠN om +ĠS outheast +y ers +Ġvalid ation +Ġcann on +ĠVict ory +ĠPier re +Ġcaut ious +Aud io +Ġf etch +ĠG ift +ĠH yp +Ġrem edy +Z E +Ġsc ent +Ġbe ard +ĠR ut +- " +Ġpat ents +H y +Ġun just +Ġpot ato +Ġforth coming +Ġche f +ĠR ift +aff e +ĠR OM +ĠL aunch +Ġp ads +ĠNe o +Ġon set +Ġsquee ze +s afe +Ġpref ix +ĠT M +ĠN early +ĠClin ical +ĠM ental +ot iation +ĠUn ic +ant ry +ĠC ir +Ġep it +à ¦ +Ġextract ed +verse ly +ri ad +Ġstr ains +Ġto ps +Ġpo em +ĠRand y +ĠMap le +TH ER +up iter +ĠSS D +ļ é +Ġun con +per ing +Ġsle pt +in ers +Ġunder water +ĠEv idence +g one +20 5 +Ġhistor ians +Ġsynt hesis +Ġf rog +b asketball +Ġvibr ant +Ġsub ord +Ġ3 65 +ĠD ial +Ġcooper ate +HA HA +Ġgreet ed +15 8 +Ġj azz +Ġinto x +ĠWalk ing +Ġsuper visor +ĠF usion +ĠMer cedes +s end +H am +s d +n l +Ġtour s +ĠF IFA +Ġcul p +g d +30 4 +Ġple as +Ġillust rates +ĠColomb ia +Ġhighlight ing +ĠSum mary +Ġexp osing +ĠD ru +Ġir ony +r itional +ĠCar roll +ĠEll is +P ict +ĠR apt +Ġad apter +Ġun m +Ġcor pse +Ġceleb rities +D en +at um +ĠAp ocalypse +ĠW ag +lin ing +Ġhorm ones +R ub +ĠX i +ĠV aults +20 8 +alky rie +inos aur +Ġfeed s +v ity +Ġdefe ating +W ait +Ġemphas ize +ĠSteel ers +yr inth +le ys +ĠWhe never +Current ly +ĠCl ock +Ġcollect ively +any on +ĠJ P +Ġment ality +Ġdownload s +Ġsurround ings +ĠBarn es +Ġflags hip +Ġindic ators +Ġgra pp +Jan uary +ĠElement al +ĠAthen a +ib al +Ġs ights +Ġcap ita +ĠTreat y +Ġvo iced +ĠG az +let te +Ġy a +Ġexp ired +Leg end +H ot +n ature +Ġunst able +Ġ2 80 +à º +Com ment +AL E +Ġquest s +Ġhand ler +n is +Ġvers atile +Ġconce al +enge ance +ĠInter active +Ġobs essed +ĠDog s +Ġcr acked +S ound +s v +ĠD ylan +ro ads +f x +ĠCath olics +ĠH ag +Ġsl ammed +Ġgl owing +s ale +Ġtiss ues +ĠCh i +ne e +Ġc her +s ic +ur rection +Ġb acon +ul atory +) ." +Ġir regular +FOR M +ass ed +Ġintention al +Ġcompens ate +ĠSpe aking +ĠS ets +15 3 +Ġconvent ions +b ands +em ade +Ġe cc +ĠWin ston +ĠAssass in +ĠBelg ian +Ġdepend ence +Ġnic he +Ġb ark +ĠJ azz +Ġdisadvant age +Ġgas oline +Ġ16 5 +çļ Ħ +ess a +mod ule +ang ular +O Y +ĠTreat ment +it as +ol ation +ĠArn old +Ġfe ud +ĠN est +Ġthe atre +ew ater +Ġmin ors +olic y +ĠH aven +div ision +Ġtr unk +F ar +ĠP ull +Ġcapt uring +Ġ18 00 +ĠTe en +Ġex empl +Ġclin ics +ĠB urg +Ġsubst it +Ġpay load +ĠL av +ĠT roy +ĠW itness +Ġfrag ments +Ġpass words +Ġg ospel +ĠG in +Ġten ants +ol ith +S ix +Pre vious +ĠAg es +ĠDar win +Ġbl at +Ġem pathy +sm ith +b ag +ĠE cho +ĠC amb +ĠM add +ĠB oo +Ġred e +ĠBurn ing +Ġsmooth ly +ĠAd rian +ĠV ampire +ĠMon sters +ste am +Sty le +M a +re a +ĠD war +aly st +urs or +Ġelim ination +Ġcrypt o +ch t +ĠE ternal +â̦ ] +ĠS orce +I ll +N ER +Ġu h +Con clusion +w age +Ġresp ir +Ġrem inis +het ical +Ġg y +Ġutil ized +ic idal +Ġ19 00 +Ġhun ters +ĠSw an +ĠRe act +Ġvis itor +ĠThanks giving +30 8 +Post s +Ġh ips +19 97 +om ers +Ġkn ocking +ĠVeh icle +Ġt il +Ġ13 8 +Ġm i +ĠInvest igation +ĠKen ya +Ġcas ino +Ġmot ives +Ġreg ain +re x +Ġweek ends +Ġstab bed +bor o +Ġexplo ited +ĠHA VE +ĠTe levision +c ock +Ġprepar ations +Ġende av +ĠRem ote +ĠM aker +ĠPro du +ĠEv an +Ġinform ational +ĠLouis ville +15 4 +ĠDream s +Ġpl ots +ĠRun ner +Ġhur ting +Ġacad emy +ĠMont gomery +n m +ĠL anc +ĠAl z +2 10 +el ong +Ġretail er +Ġar ising +Ġrebell ion +Ġbl onde +play ed +Ġinstrument al +C ross +Ġret ention +Ġtherape utic +Ġse as +Ġinfant ry +ĠCl int +Ġprompt ing +Ġbit ch +Ġst ems +ĠK ra +Ġthe sis +ĠB og +ru ed +Ġk ings +Ġcl ay +ific ent +ĠY ES +ĠTh ing +ĠCub s +vey ard +els h +in arily +ĠE y +ĠRoll ing +Ġev olving +Ind ia +Ġrecogn izes +Ġgrad uation +is ers +Ġfert ility +ĠMil an +Comm and +Ġbox ing +Ġ19 43 +Ġgl uten +ĠEm ir +Ġid ol +Ġcon ceived +ĠCre ation +Mer it +udd y +uss ions +ĠLie utenant +iet al +Ġunch anged +ĠSc ale +ĠCrime a +ball s +ator ial +Ġdepth s +Ġempir ical +Ġtrans m +Ġuns afe +miss ible +com fort +15 6 +Ġmechan ic +00 2 +l ins +Ġsm oked +P os +Ġslow ing +Ġl av +Tex as +Ġche ating +ĠMet ropolitan +eth yl +Ġdiscover ing +as se +Ġpen cil +ĠPy ongyang +Ġclos et +ĠShe et +ĠEnt ry +ou stic +Ġmy st +er ate +ari at +Ġminer als +Ġmusic ian +ĠP ul +ĠM az +24 9 +Ġper missions +Ġ iv +en ary +ick ers +ĠB ing +he a +en able +Ġgri ev +Ġassert ed +ĠColon el +Ġaff idav +w o +Ġse ated +ĠR ide +Ġpaint ings +ĠP ix +Ġ13 7 +ish i +umb ai +g otten +ĠEar l +Ġin ning +Ġc ensus +Ġtrave lled +ĠCons ult +18 5 +b ind +Ġsimpl icity +Ġoverlook ed +ĠHelp ful +Ġmon key +Ġoverwhelming ly +Bl ood +ĠFl int +ĠJ ama +ĠPres ent +ĠR age +ĠT A +pt ive +Ġturn out +w ald +ĠD olphins +ĠV PN +Ġon ion +Ġcraft ing +m ma +ĠMerc ury +Ġarr ange +Ġalert s +ĠO T +zb ollah +Ġg ases +ĠRichards on +s al +l ar +Ġfro st +Ġlower ing +Ġacc laim +Ġstart ups +ĠG ain +ess ment +Ġguard ian +äº º +ĠP ie +ĠL inks +Ġmer its +Ġaw ake +Ġparent al +Ġexceed s +Ġid le +ĠPil ot +Ġe Bay +ĠAc cept +ipe g +C am +ĠK ot +Ġtrad ers +olit ics +unk er +ĠP ale +os i +an mar +Ġ19 47 +ĠF ell +est ial +it ating +G F +ĠS r +if ted +Ġconnect or +ĠB one +ill es +2 60 +h ma +Ġoverl ap +ĠGit Hub +Ġclean er +ĠBapt ist +ĠW AS +Ġlung s +Ñ ģ +ĠB UT +Ġc ite +Ġpit ched +reat ment +Ġtro phies +ĠN u +38 6 +ĠPr ide +Ġattend ees +[ ] +17 9 +Ġspat ial +Ġpri zes +ĠRel igion +Ġshow case +ĠC ategory +vid ia +T arget +Pro perty +? , +Ġf usion +p ie +ĠU CLA +Ġsound track +Ġprin cess +ĠC aval +sh ould +Ġlim bs +Back ground +Ġlone ly +Ġc ores +ĠT ail +she et +Ġ13 2 +R a +ãĤ « +ĠB olt +Ġbook ed +Ġadmin ister +Ġequ als +w y +Ġobserv ing +ĠBar on +ĠAd obe +Ġv irgin +ĠSocial ist +M ove +gh azi +ĠLind a +2 12 +Ġbre wing +Ġmerch ants +bur se +Ġdiv or +Ġmet als +ĠN er +Ġsum s +ĠEn emy +Ġen vision +Ġgrant ing +ĠH oney +ĠSk yrim +Ġsoc io +gr aded +Ġselect ive +W ASHINGTON +Ġ19 48 +ĠSir ius +ĠG ross +act ivity +ĠI van +Ġfur ious +BS D +ĠPre vious +Ġrespons ive +Ġchar itable +Ġle aning +ĠP ew +Ġviol ates +\\\\ \\\\ +ĠCom ing +w ire +Ġpo et +Ġres olutions +comm and +ĠPortug uese +Ġnick name +Ġde af +Feb ruary +Ġrecogn ise +Ġentire ty +Ġseason al +pl aced +ĠTe legraph +Ġmicro phone +our ing +Ġgr ains +Ġgovern ed +Ġpost p +ĠW aters +in ement +Ġund ocumented +ĠCom cast +Ġf ox +Ġassault s +re on +man y +ĠJen kins +ĠAny way +Ġassess ments +Ġdown s +ĠM ouse +Ġsuper b +k t +ĠD ow +Ġtax ation +4 01 +Ġsm iles +Ġundert aken +Ġex h +Ġenthusi astic +Ġtw ent +Ġgovernment al +Ġautonom y +ĠTechn ologies +ĠCh ain +Ġpreval ent +f b +Ġnic otine +og ram +j ob +Ġawa iting +ĠMen u +Ġdep uties +k ov +ish ops +But ton +ĠShan ghai +Ġdies el +ĠD uck +R yan +ĠPC s +N F +j ury +ent e +Ġinacc urate +edd y +Wh atever +Ġshow c +ĠN ad +od us +et r +Ġplaint iffs +ĠW OR +ĠAss ange +Ġpriv at +Ġpremium s +Ġt am +UR L +Ġel ites +ĠR anger +otten ham +ĠH off +ĠAt hens +Ġdefin ite +Ġs ighed +Ġeven ly +2 11 +ĠAm ber +ak ia +Ġmail ing +Ġcr ashing +ĠConfeder ate +ru gged +W al +ĠDep ths +Ġjuven ile +Ġreact or +Introdu ction +ĠDel uxe +19 95 +ĠS anchez +ĠM ead +iv able +: - +ĠPlan ning +ĠT rap +qu in +ĠProt ect +ve red +In formation +Ġkid ney +inn amon +l as +Ġpolic ing +Ġtoler ate +ĠQ i +Ġbi ased +F ort +ĠK i +s ave +Ġprivile ged +Ġbe asts +ĠGl as +ĠC inem +Ġcome back +Sund ay +Ġext inction +h ops +Ġtrans mit +Ġdoub les +ĠFl at +16 7 +Ġdis puted +Ġinjust ice +f oo +V ict +role um +ĠJul ie +Con text +ĠR arity +iss ue +Comp onent +Ġcounsel ing +an ne +d ark +Ġobject ions +u ilt +Ġg ast +Ġpl ac +Ġun used +ãĥ ĩ +ĠT rial +ĠJ as +hed ral +ob b +Ġtempor al +ĠPR O +ĠN W +ĠAnn iversary +L arge +Ġther m +Ġd avid +Ġsystem ic +ĠSh ir +m ut +ĠNe pt +add ress +Ġscan ning +Ġunderstand able +Ġcan vas +C at +ĠZ oo +Ġang els +L O +ĠStat ement +ĠS ig +ov able +ĠA way +sh aring +ocr ats +st ated +Ġweigh ing +N or +w ild +B ey +Ġaston ishing +ĠReyn olds +Ġop ener +Ġtrain er +Ġsurg ical +p n +Ġadjust ing +whe el +Ġf rown +erv ative +Ġsusp end +With in +te in +Ġobst acle +Ġliber ties +ym es +Ġur anium +ans om +an ol +ub a +ĠL oss +Ġa rous +ĠHend erson +W ow +s pl +c ur +ĠÂ Ń +Ġtheir s +Dam age +Ġdownload ing +Ġdisc ern +ĠSt o +ĠFl a +Ġh ath +ĠA j +Ġun pleasant +Europe an +exp ensive +Ġscreens hot +ĠU V +Ġall ied +ĠPers ian +Ġmonop oly +Ġat om +ĠReds kins +"> < +Ġcan cell +Ġcinem a +13 1 +f air +ĠAlf red +Ġd uck +arg s +22 3 +ĠIS I +Ġsign aling +in ar +Ġlaugh s +Ġfor wards +Ġreck less +Ġlisten ers +at ivity +Ġvast ly +n ant +L ess +ĠHun ting +ĠScient ific +IT ED +Ġkn ight +ĠH TC +us a +t mp +Ġr ude +ĠLegend ary +Ġar ises +B ad +ĠCl aim +pe g +Ġreal ities +Th ink +Ġ ° +Ġro de +Ġstri ve +Ġan ecd +Ġshort s +Ġhypot hes +Ġcoord inated +ĠGand hi +ĠF PS +R ED +Ġsuscept ible +Ġshr ink +ĠCh art +Hel p +Ġ ion +de ep +rib es +ĠK ai +ĠCustom er +Sum mary +Ġc ough +w ife +Ġl end +Ġposition ing +Ġlot tery +ĠC anyon +Ġf ade +Ġbron ze +ĠKenn y +Ġbo asts +ĠEnh anced +rec ord +Ġemer gence +Ġa kin +ĠB ert +it ous +âĸ ij +Ġst ip +Ġexch anged +om ore +als h +Ġreserv oir +Ġstand point +W M +Ġiniti ate +Ġdec ay +Ġbrew ery +Ġter ribly +Ġmort al +lev ard +Ġrev is +N I +el o +Ġconf ess +ĠMS NBC +Ġsub missions +Cont roller +Ġ20 2 +ĠR uth +} ); +ĠAz ure +Ġ ." +20 6 +ĠMarket ing +Ġl aund +ien cies +Ġrenown ed +ĠT rou +ĠN GO +ble ms +Ġterr ified +Ġwar ns +Ġper t +Ġuns ure +4 80 +ale z +ult z +ĠOut side +Ġst yl +ĠUnder ground +Ġp anc +Ġd ictionary +Ġf oe +rim inal +ĠNor wegian +Ġj ailed +Ġm aternal +é e +ĠLu cy +c op +Ch o +Ġuns igned +ĠZe lda +ĠIns ider +ĠContin ued +Ġ13 3 +ĠNar uto +ĠMajor ity +16 9 +ĠW o +ãĤ ĵ +Ġpast or +Ġinform al +Ð ½ +an throp +jo in +ãģ Ĺ +it ational +N P +ĠWrit ing +f n +ĠB ever +19 5 +Ġy elling +Ġdr astically +Ġe ject +Ġne ut +Ġth rive +ĠFre qu +ou x +Ġpossess es +ĠSen ators +ĠD ES +ĠSh akespeare +ĠFran co +ĠL B +uch i +Ġinc arn +Ġfound ers +F unction +Ġbright ness +ĠB T +Ġwh ale +ĠThe ater +m ass +ĠD oll +S omething +Ġecho ed +ĠHe x +c rit +af ia +Ġgodd ess +Ġele ven +ĠPre view +ĠAur ora +Ġ4 01 +uls ive +ĠLog an +in burgh +ĠCent ers +ĠON LY +ĠA id +Ġparad ox +Ġh urd +ĠL C +D ue +c ourt +Ġoff ended +Ġeval uating +ĠMatthew s +Ġto mb +Ġpay roll +Ġextra ction +ĠH ands +if i +Ġsuper natural +ĠCOM M +] = +dog s +Ġ5 12 +ĠMe eting +Rich ard +ĠMax imum +Ġide als +Th ings +m and +ĠReg ardless +Ġhum ili +b uffer +L ittle +ĠD ani +ĠN ak +Ġliber ation +ĠA be +ĠO L +Ġstuff ed +ac a +ind a +raph ic +Ġmos qu +Ġcampaign ing +Ġoccup y +S qu +r ina +ĠW el +ĠV S +Ġphys ic +Ġp uls +r int +oad ed +ET F +ĠArch ives +Ġven ues +h ner +ĠTur bo +Ġl ust +Ġappeal ed +que z +il ib +ĠTim othy +Ġo mn +d ro +Ġobs ession +ĠSav age +19 96 +Gl obal +J es +2 14 +Ġsl iding +Ġdisapp ro +ĠMag ical +Ġvolunt arily +g b +ane y +Ġprop het +ĠRe in +ĠJul ia +ĠW orth +aur us +Ġb ounds +ie u +)) ) +Ġcro re +ĠCitiz en +S ky +Ġcolumn ist +Ġseek ers +ond o +IS A +ĠL ength +Ġnost alg +Ġnew com +Ġdet rim +ent ric +3 75 +ĠG E +Ġaut op +Ġacadem ics +App Data +ĠS hen +Ġid iot +ĠTrans it +Ġteasp oon +W il +K O +ĠCom edy +> , +Ġpop ulated +W D +Ġp igs +ĠO culus +Ġsymp athetic +Ġmar athon +19 8 +Ġseiz ure +s ided +Ġd op +irt ual +L and +ĠFl oor +osa urs +... ] +Ġl os +Ġsubsid iary +E Y +ĠPart s +ĠSt ef +ĠJud iciary +Ġ13 4 +Ġmir rors +Ġk et +t imes +Ġneuro log +Ġc av +ĠGu est +Ġtum or +sc ill +ĠLl oyd +E st +Ġcle arer +Ġstere otypes +Ġd ur +not hing +Red dit +Ġnegoti ated +---------------- -------- +23 5 +Ġfl own +ĠSe oul +ĠRes ident +ĠS CH +Ġdisappear ance +ĠV ince +g rown +Ġgrab s +r il +ĠInf inite +ĠTw enty +Ġpedest rian +Ġjer sey +ĠF ur +ĠInf inity +ĠEll iott +Ġment or +Ġmor ally +Ġob ey +sec ure +iff e +Ġantib iotics +ang led +ĠFre eman +ĠIntrodu ction +J un +Ġm arsh +ic ans +ĠEV ENTS +och ond +W all +icult y +Ġmisdem eanor +Ġl y +Th omas +ĠRes olution +Ġanim ations +ĠD ry +Ġinter course +ĠNew castle +ĠH og +ĠEqu ipment +17 7 +Ġterrit orial +Ġarch ives +20 3 +Fil ter +ĠMun ich +Ġcommand ed +ĠW and +Ġpit ches +ĠCro at +Ġrat ios +ĠM its +Ġaccum ulated +ĠSpecific ally +Ġgentle man +acer b +Ġp enn +Ġa ka +ĠF uk +Ġinterven e +ĠRef uge +ĠAlz heimer +Ġsuccess ion +oh an +d oes +L ord +Ġsepar at +Ġcorrespond ence +Ġsh iny +P rior +Ġs ulf +Ġmiser able +Ġded ication +( ). +Ġspecial ists +Ġdefect s +ĠC ult +ĠX ia +Ġje opard +ĠO re +Ab ility +Ġle ar +Ġamb itions +ĠB MI +ĠArab s +Ġ19 42 +Ġpres ervation +ific ate +Ġash amed +l oss +ĠRest aur +Ġrese mble +Ġen rich +ĠK N +ĠCl an +fl oat +Ġplay able +IT T +Ġharm ony +arr ison +ĠWe instein +w ere +Ġpoison ing +ĠCom put +ĠWord Press +m ajor +ĠVal ve +F an +ĠTh row +ĠRom ans +ĠDep ression +ad os +Ġtort ured +Ġbal ancing +bott om +Ġacqu iring +ĠMon te +ard i +Ġa ura +Ġ# # +ĠStand ing +ĠAtl as +C F +Ġintr ins +ĠBen ghazi +Ġcamp ing +Ġt apped +bl ade +st rous +ĠR abb +ĠW ritten +t ip +ĠNe igh +ster dam +ĠAll ow +ĠHe aling +ĠR hod +n um +Ġcaffe ine +ĠPer cent +Ġbo o +Ġapp les +30 5 +Ġwel coming +Ġappl aud +Ġa usterity + ± +ĠRe ality +ef e +å ® +Ġsu cks +Ġtab s +ĠPay Pal +Ġback pack +Ġgif ted +abul ary +ĠSc out +ir teen +Ġch in +Ġo mitted +Ġnegative ly +Ġaccess ing +ĠE arn +Ġambul ance +Ġhead phones +Ġ20 5 +ĠRef resh +p resident +ĠKit chen +ĠEnt ered +ĠS nyder +00 5 +om ical +Ġborrow ed +ĠN em +Ġav iation +Ġst all +rim ination +Ġuniform s +it ime +ĠSim mons +ener gy +ab lished +y y +qual ified +Ġrall ies +ĠSt uart +fl ight +Ġgang s +r ag +Ġv ault +lu x +ĠCom par +Ġdesign ation +20 9 +ĠJ os +d ollar +z ero +Ġwell s +30 3 +Ġconstitu ents +Ġhe ck +Ġc ows +Ġcommand ers +Ġdifferent ial +ĠC atherine +29 9 +Ġval ve +Ġbr ace +Ġperspect ives +c ert +f act +icular ly +ĠMc N +pl anes +Ġint ric +Ġpe as +ov an +Ġtoss ed +ret ch +ĠL opez +Ġunf amiliar +de ath +ĠA part +ĠCh ang +Ġrelie ved +rop he +Ġair ports +Ġfre ak +ut il +M ill +ĠCh in +ĠOw en +m ale +ĠBro ken +ĠWind s +ro b +r ising +Ġfire fighters +Ġauthor itarian +Ġ14 8 +Bit coin +ex ternal +Ġbrow sers +iche ver +or ian +Ġun b +Ġpo ke +ĠZ ot +M id +ĠPop ular +Ġco vert +Ġcont ributes +Ġ6 50 +Ġcont ention +G ate +Ġcons oles +Ġchrom os +ĠI X +Ġvis ually +ĠE isen +Ġjewel ry +Ġdeleg ation +Ġacceler ate +ĠR iley +Ġsl ope +Ġind oor +it ially +Ġhuge ly +Ġtun nels +Ġfin ed +Ġdirect ive +Ġfore head +ustom ed +Ġsk ate +Mus ic +g as +Ġrecogn izing +am bo +Ġover weight +ĠGr ade +Ù Ĭ +Ġsound ing +Ġlock ing +ĠR EM +St ore +Ġexc av +ĠLike wise +ĠL ights +Ġel bow +ĠSupp ly +w ic +Ġhands ome +19 94 +C oll +Ġadequ ately +ĠAssoci ate +Ġstri ps +Ġcrack down +Ġmar vel +ĠK un +Ġpass ages +@@ @@ +ĠT all +Ġthought ful +names e +Ġprost itution +bus iness +Ġball istic +person al +c ig +iz ational +R ound +ĠÂłĠÂł ĠÂłĠÂł +ĠCole man +Ġadm itting +ĠPl ug +Ġbit coins +ĠSu z +Ġfair ness +Ġsupp lier +Ġcatast rophic +ĠHel en +o qu +M arc +ĠArt icles +g ie +Ġend angered +Ġdest iny +ĠVol t +ol ia +ax is +Ġche at +Ġun ified +IC O +qu ote +30 2 +ĠS ed +Ġsupp ression +Ġanaly zing +Ġsqu at +Ġfig uring +Ġcoordin ates +Ġch unks +Ġ19 46 +Ġsub p +Ġw iki +ĠFor bes +ĠJ upiter +ĠE rik +im er +ĠCom mercial +\ ) +Ġlegitim acy +Ġd ental +ĠMe an +Ġdefic its +5 50 +Orig inally +ĠHor ror +Ġcontam ination +ll ah +Ġconf isc +ĠCl are +T B +ĠF ailed +an ed +Ġrul er +ĠCont roller +Ġfemin ists +F ix +g ay +20 7 +Ġr abbit +Th ird +ownt own +Ġgl ue +Ġvol atile +Ġsh ining +Ġf oll +Ġimp aired +Ġsup ers +æ Ī +Ġcl utch +ļé ĨĴ +Ġpro let +Ġ( ! +Ġy elled +ĠK iev +ĠEr n +ĠSh ock +K B +Ġsit uated +qu ery +ĠN as +Ġan nex +char acter +ĠHol iday +Ġautom ation +ĠJ ill +ĠRem astered +Ġl inem +Ġwild erness +ĠHor izon +ĠGu inea +A Z +Ġmain land +Ġsec recy +LE ASE +Ġp unk +ĠProv ince +( ), +Spe ed +Ġhand ing +ĠSeb ast +S ir +r ase +Ġj ournals +Ġcon gest +ĠT ut +ir rel +Ġschizophren ia +Ġmis ogyn +health y +I ron +Ġreact ed +- $ +25 2 +Ġpl ural +Ġpl um +Ġbarg ain +Ġground ed +f inder +Ġdis se +ĠL az +O OD +Ġat roc +F actory +Ġmin ions +Ġo ri +ĠB rave +ĠP RE +ĠMy anmar +ĠH od +Ġexped ition +Ġexpl ode +ĠCo ord +Ġext r +ĠB rief +ĠAD HD +Ġhard core +feed ing +Ġd ile +ĠF ruit +Ġvacc ination +ĠM ao +osp here +Ġcont ests +- | +Ġf ren +isp here +R om +ĠSh arp +ĠTre nd +Ġdis connect +âĢ¢ âĢ¢ +Ġper secution +Ear th +Ġhealth ier +38 4 +Ġc ob +ĠTr inity +OW S +AN N +Ġspecial ty +Ġg ru +Ġcooper ative +wh y +Start ing +ĠIss ues +st re +ens or +Ġ18 5 +Ad v +! ? +ĠRe vel +em ia +ĠH ulk +Ġcelebr ations +ĠS ou +ra ud +ĠKle in +Ġun real +con text +Ġpartners hips +Ġadop ting +t ical +Ġspl ash +ĠHe zbollah +c ategory +cycl op +xt on +ĠD ot +urd y +t z +Ġenvelop e +ĠN L +â ķ +Ġwhere in +Spe c +18 4 +Ġte lev +al iation +Ġmyth s +å ° +Ġrig orous +Ġcommun icating +Ġobser ver +Ġre he +ĠW ash +Ġapolog ized +ĠT in +Ġexpend itures +work ers +d ocument +Ġhes itate +ĠLen in +Ġunpredict able +Ġrenew al +cl er +ok ia +ĠCON T +Ġpost season +Tok ens +Ġex acerb +Ġbet ting +Ġ14 7 +Ġelev ation +W ood +ĠSol omon +19 4 +00 4 +out put +Ġredu nd +ĠM umbai +Ġp H +Ġreprodu ce +ĠD uration +MA X +Ġb og +C BS +ĠBal ance +ĠS gt +ĠRec ent +Ġc d +Ġpo pped +Ġincomp et +pro p +ay an +g uy +Pac ific +Ġty r +Ġ{ { +ĠMy stic +ĠD ana +Ġmast urb +Ġge ometry +à ¢ +ĠCor rect +Ġtraject ory +Ġdistract ed +Ġf oo +ĠW elsh +L uc +m ith +Ġrug by +Ġrespir atory +Ġtri angle +Ġ2 15 +Ġunder graduate +ĠSuper ior +ch anging +_ - +Ġright ly +Ġrefere e +Ġluc rative +Ġun authorized +Ġresemb les +ĠGN U +ĠDer by +Ġpath ways +ĠL ed +Ġend urance +Ġst int +Ġcollect or +F ast +Ġd ots +Ġnational s +ĠSec urities +Ġwh ip +Par am +Ġlearn s +M agic +Ġdetail ing +m oon +Ġbroadcast ing +Ġb aked +26 5 +hol m +ĠS ah +ĠHus sein +ĠCourt esy +17 4 +Ġ14 6 +Ġge ographic +pe ace +Ġjud ging +ĠS tern +B ur +Ġstory line +G un +ĠSt ick +24 5 +30 7 +ãĤ´ ãĥ³ +ĠAdminist rator +Ġbur nt +Ġp ave +ch oes +Ex ec +Ġcamp uses +Res ult +Ġmut ations +ĠCh arter +Ġcapt ures +Ġcomp ares +Ġbad ge +S cient +Ġer ad +ier y +o i +ett es +ĠE state +Ġst rap +Ġproud ly +Ġf ried +Ġwithd rawn +ĠV oy +ph ony +It ems +ĠP ierce +b ard +Ġann otation +ant on +ill on +Im pro +... ) +Ġhapp ier +---- -- +ad just +Ġstaff ers +Ġactiv ism +Ġper f +Ġal right +N eed +Ġcomm ence +Ġopio id +ĠAm anda +E s +ĠP ars +ĠK aw +W orks +24 8 +Ġind o +t c +end ant +ĠM oto +Ġlegal ization +OT E +Ġtask ed +Ġt sp +ĠACT IONS +16 6 +Ġrefres hing +ĠN R +ĠPere z +Ġinfring ement +S Y +List en +in ning +k u +Ġrot ate +pro gram +ar ah +Des ign +Ġ( £ +Ġst oring +Ġwar rants +Ġjud gement +ĠB rist +us ually +ph oto +ĠR an +ĠP ine +Ġoutrage ous +ĠValent ine +lu ence +ĠEvery body +Al tern +Ġrele vance +Ġtermin ated +Ġd essert +Ġfulf illed +Ġprosecut ed +ĠW ords +Ġm igrant +Ġcultiv ation +ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ +idel ity +ĠV ern +ĠLog in +Ġmetaph or +ĠT ip +Ġrecru its +ĠP ig +rib ing +Ġenthusi asts +ex per +Ġfright ening +ĠH air +ans on +str ate +Ġh i +He ight +Ġown ing +n one +Ġdis like +Ġkn ives +pher d +Ġloud ly +ĠAP Is +Dis play +ĠL ac +ĠUS S +ab l +ver ages +J ew +Ġ17 2 +ĠHist orical +at oon +ĠPhys ics +in tern +Ġwarm th +Ġto pp +D M +Ġgun man +Ġem peror +od i +ãĥ £ +in atory +ĠR ib +Ġ13 1 +ĠSat urn +ĠSh ining +Ġw aking +Qu otes +Ġcomed ian +en berg + ½ +Ġbelie vers +Ġpaper work +c ustom +Ġle v +Ġl ament +Ġpour ing +22 2 +p olitical +ĠSupp lement +m aid +Ġcruel ty +Ġt read +ys ics +A w +rit es +Ġmod ifier +ĠP osition +Ad am +l b +ub s +Ġimper fect +Ġcl usters +ĠEngine er +ĠC herry +Ġinaug uration +ĠS au +Ġembod iment +ĠUn cle +Ġover r +Ġexplos ions +c ule +ĠPrinc eton +ĠAndre a +Ġincorrect ly +Ġearn est +Ġpil gr +ĠS print +Ġslee ve +Ġhe ars +ĠAm azing +Ġbrow sing +ag in +Ġhom eland +Ġha w +Ġd iving +ist ered +17 8 +Ġbarg aining +ĠArc ade +Ġdeleg ate +ters on +................................ ................................ +ĠJackson ville +27 5 +Ġst agn +Ġad am +ĠSher man +C B +Ġsub urb +ĠFood s +Ġconver ting +ĠAr ist +Ġch ambers +l ove +Ġam ino +ĠG an +Ġmad ness +m c +ĠUS E +def ined +Ġul tr +ind ust +Ġw olves +l ance +Add itionally +Ġcr acks +as ia +ĠRe ason +ĠP ump +Ġaccident al +ĠL aser +ĠR id +Ġinitial ized +ell i +Ġun named +Ġn oun +ĠPass ed +Ġhost age +ĠEth iop +sh irts +Ġun rel +ĠEmb assy +Ġ19 41 +Ġat oms +Ġpur ported +16 4 +ĠF i +Ġgall ons +ĠMon ica +Ġp g +en ment +Ġsort ed +ĠG ospel +Ġhe ights +Ġtr aced +Ġunder going +She ll +Ġs acks +Ġproport ions +Ġhall uc +F ont +ac et +Ġwar mer +ĠIN TER +Ġgrab bing +Pl ug +Ġreal ization +ĠBur ke +Ġen chant +AT ER +ĠSe ed +Ġabund ant +F M +Ġc ivic +V s +is i +Ġv ow +Ġre per +ĠPartners hip +Ġpenet ration +Ġax e +Ġsh attered +ĠZ ombies +Ġv inyl +ĠAl ert +e on +Ġoblig ed +ĠIll ust +ĠPl aza +ĠFront ier +Ġdavid jl +ĠSer ial +ĠH av +ĠNut rition +B i +Ġâĸ Ī +ĠJ ays +lin ux +Ġhur ry +Ġv oy +Ġhop eless +ĠSte alth +Ġ ãģ +ess ors +tt le +b org +ĠSaf ari +f ell +Ġw ary +d ue +ĠAb ove +H a +E LL +Ġnot or +ĠW on +T oo +Ġoccup ations +Ġposs essions +Ġinv iting +Ġpred ators +Ġacceler ated +Ġ15 7 +uter te +ĠC ube +e ast +acc ount +G ive +Ġtrans plant +red ients +id able +Ġscreens hots +ĠG und +ĠF S +Ġtravel ers +Ġsens ory +ĠF iat +ĠRock ets +İ ĭ +_ { +F riend +Ġchar ming +AL S +Ġenjoy ment +m ph +Ġ5 000 +ĠRE G +Ù Ĩ +b ia +Ġcomp ilation +ro st +ĠV P +ĠSch ne +201 9 +Ġcop ying +M ORE +ĠFl ore +f alls +2 15 +t otal +Ġdis ciples +d ouble +Ġexceed ing +Ġsm ashed +Ġconcept ual +ĠRom ania +ĠB rent +ĠI CE +ĠT ou +Ġg rap +Ġn ails +18 9 +ãĥ ĺ +Ġproc ure +e ur +Ġconfir ming +ĠC ec +aw i +ĠEd en +Ġn g +Ġengine ered +at ics +Ġhook ed +Ġdisgust ing +ĠMur der +ãĤ ¿ +L ibrary +Ġ16 8 +Al most +hem atic +Men u +ĠNot re +ĠJ ur +Ġkidn apped +Ġhack er +ĠJ ade +Ġcreep y +Ġdraw ings +ĠSpons or +Ġcycl ists +ĠGob lin +Ġoptim ized +Ġst aged +ĠMc D +bet ween +A ge +en o +S ex +ĠW ide +n ings +av is +Ġincap able +ĠK ob +Ġreward ing +ĠL one +oles cent +Ġcontract ed +Ġstick y +J ose +B all +f est +ĠIn put +ĠRec ently +Ġto mat +squ are +App lication +Ġnit rogen +Ġdupl icate +ĠRec on +ĠD ear +L ondon +Ġint ra +Ġd ock +Ġout reach +ĠM illion +Ġmamm als +am pton +V AL +Ġsn aps +Ġd os +ĠWh ole +ĠRead y +T ry +ĠWinn ipeg +ear ance +Ġinc urred +ren ched +ĠNS W +il ot +rain e +Ġc ube +g ot +Ġrun way +etermin ed +ĠHaw ks +Ġsurviv or +ĠW ish +ĠD in +ĠDE F +ĠV ault +18 7 +Ġmush rooms +Ġcris p +be y +ĠDisco very +Ġdevelopment al +Ġparad igm +Ġcha otic +ĠT su +Ġ3 33 +b ons +Ġbacter ial +Ġcomm its +Ġcos mic +Ġme ga +oc ative +ĠP aint +ophob ic +Ġv ain +Ġcar ved +ĠTh ief +ĠG ul +ows hip +Ġc ites +ĠEd inburgh +Ġdimin ished +Ġacknowled ges +ĠK ills +Ġmic row +ĠHer a +Ġsen iors +Ġwhere by +H op +at ron +Ġun available +ĠN ate +Ġ4 80 +Ġsl ated +ĠRe becca +ĠB attery +Ġgram mar +Ġhead set +Ġcurs or +Ġex cluding +any e +aunder ing +eb in +Ġfeas ible +ĠPub lishing +ĠLab s +ĠCl iff +ĠFerr ari +Ġp ac +vis ible +mark ed +pe ll +Ġpol ite +Ġstagger ing +ĠGal actic +Ġsuper st +Ġpar an +ĠOffic ers +ãĢ ģ +Ġspecific s +ul us +23 9 +ĠP aste +AM P +ĠPan ama +ĠDe lete +angu ard +rest rial +Ġhero ic +ĠD y +ا ÙĦ +Ġincumb ent +Ġcr unch +t ro +Ġsc oop +Ġblog ger +Ġsell ers +ure n +Ġmedic ines +ĠC aps +ĠAnim ation +ox y +Ġout ward +Ġinqu iries +22 9 +Ġpsych ologist +ĠS ask +ev il +Ġcontam inated +ãĤ ¨ +he rence +Ġbrand ed +ĠAbd ul +z h +Ġparagraph s +Ġmin s +Ġcor related +er b +Ġimp art +Ġmil estone +ĠSol utions +ot le +Ġunder cover +Ġmar ched +ĠCharg ers +f ax +ĠSec rets +Ġr uth +we ather +Ġfemin ine +Ġsh am +Ġprest igious +igg ins +Ġs ung +hist ory +ett le +gg ie +Ġout dated +ol and +Ġper ceptions +ĠS ession +ĠDod gers +u j +ĠE ND +D oc +Ġdefic iency +Gr and +ĠJ oker +Ġretro spect +Ġdiagn ostic +Ġharm less +Ġro gue +ĠA val +E qu +Ġtrans c +ĠRoberts on +ĠDep ending +ĠBurn s +iv o +Ġhost ility +F eatures +ĵ ĺ +Ġdis comfort +ĠL CD +spec ified +ĠEx pect +3 40 +Ġimper ative +ĠReg ular +Ch inese +Ġstate wide +Ġsy mm +Ġlo ops +Ġaut umn +N ick +Ġsh aping +Ġqu ot +Ġc herry +ĠCross ref +è¦ ļéĨĴ +Stand ard +he ed +ĠD ell +ĠViet namese +Ġo st +ĠV alkyrie +O A +Ass ad +Ġreb ound +ĠTra ffic +pl aces +æ ĺ +ĠB uc +17 2 +Ġshel ters +Ġins isting +ĠCertain ly +ĠKenn eth +ĠT CP +Ġpen al +ĠRe play +he ard +Ġdial ect +iz a +ĠF Y +it cher +ĠD L +Ġspir al +Ġquarterback s +Ġh ull +Ġgo ogle +Ġto dd +ĠSter ling +ĠPl ate +Ġsp ying +mb ol +ĠReal m +ĠPro ced +ĠCr ash +Ġtermin ate +Ġprotest ing +C enter +gu ided +Ġun cover +Ġboy cott +Ġreal izes +s ound +Ġpret ending +ĠV as +19 80 +Ġfram ed +Ġ13 9 +Ġdesc ended +Ġrehab ilitation +Ġborrow ing +ĠB uch +Ġbl ur +R on +ĠFro zen +en za +Ch ief +ĠP oor +Ġtransl ates +M IN +Ġ2 12 +J ECT +Ġerupt ed +Ġsuccess es +S EC +Ġpl ague +Ġg ems +d oms +Ġstret ches +ĠSp y +Ġstory telling +C redit +ĠP ush +Ġtra ction +Ġin effective +ĠL una +Ġt apes +Ġanaly tics +erc ise +Ġprogram mes +ĠCar bon +Ġbeh old +he avy +ĠConserv ation +ĠF IR +Ġs ack +ter min +ric ks +Ġhous ed +Ġunus ually +I ce +Ġexecut ing +ĠMor oc +ed ay +Ġed itions +Ġsm arter +ĠB A +Ġout law +Ġvan ished +ib a +AL SE +ĠSil va +23 8 +C ould +Ġphilos opher +Ġevac uated +Sec ret +14 2 +Ġvis as +ãĤ ¬ +ĠM alt +ĠClear ly +ĠN iger +ĠC airo +ĠF ist +3 80 +ĠX ML +aut o +it ant +Ġrein forced +Rec ord +ĠSurviv or +G Hz +Ġscrew s +parent s +Ġo ceans +ma res +Ġbra kes +vas ive +Ġhell o +ĠS IM +rim p +Ġo re +ĠArm our +24 7 +Ġterr ific +Ġt ones +14 1 +ĠMin utes +Ep isode +Ġcur ves +Ġinflamm atory +Ġbat ting +ĠBeaut iful +L ay +Ġunp op +v able +Ġr iots +ĠTact ics +b augh +ĠC ock +Ġorg asm +ĠS as +Ġconstruct or +et z +G ov +Ġant agon +Ġthe at +Ġde eds +ha o +c uts +ĠMc Cl +Ġu m +ĠScient ists +Ġgrass roots +ys sey +"] => +Ġsurf aced +Ġsh ades +Ġneighb ours +Ġad vertis +oy a +Ġmer ged +Up on +Ġg ad +Ġanticip ate +Any way +Ġsl ogan +Ġdis respect +I ran +ĠT B +act ed +Ġsubp oen +medi ately +OO OO +Ġwa iver +Ġvulner abilities +ott esville +ĠHuff ington +J osh +ĠD H +M onday +ĠEll en +K now +x on +it ems +22 8 +Ġf ills +ĠN ike +Ġcum ulative +and als +I r +Ġ ì +Ġfr iction +ig ator +Ġsc ans +ĠVi enna +ld om +Ġperform ers +P rim +Ġb idding +M ur +Ġlean ed +ĠPri x +al ks +Ġ[ â̦] +ĠTw itch +ĠDevelop er +ĠG ir +Ġcall back +Ab stract +Ġacc ustomed +Ġfreed oms +ĠP G +ur acy +Ġl ump +is man +,, ,, +19 92 +ĠR ED +Ġwor m +M atch +ĠPl atinum +I J +ĠOwn er +Tri via +com pl +Ġnew born +Ġfant as +O wn +Ġ19 59 +Ġsymp ath +Ġub iqu +Ġoutput s +Ġal lev +Ġpr ag +K evin +Ġfav ors +Ġbur ial +Ġn urt +so lete +c ache +Ġ15 6 +Ġunl ocks +te chn +M aking +Ġcon quer +ad ic +æ ĸ +Ġel f +Ġelect orate +ĠKurd s +ĠSt ack +ĠSam urai +Ġâ ĺħ +Ġ{ } +ĠS aid +ĠFall out +Ġkind ness +ĠCustom s +ĠBou levard +Ġhelicop ters +ot ics +ĠVe get +com ment +Ġcritic ised +Ġpol ished +ĠRem ix +ĠC ultural +Ġrec ons +Ġdo i +at em +Sc reen +Ġbar red +Com ments +ĠGener ally +Ġsl ap +7 20 +V ari +p ine +Ġem pt +Ġh ats +ĠPlay ing +l ab +a verage +form s +ĠC otton +Ġcan s +ĠD ON +ĠSom alia +C rypt +ĠIncre ases +E ver +mod ern +Ġsur geon +3 000 +Ġrandom ized +================================ ================================ +B ern +im pl +ĠC OR +Ġpro claim +th ouse +Ġto es +Ġam ple +Ġpres erving +Ġdis bel +gr and +B esides +Ġsil k +ĠPat tern +h m +Ġenter prises +Ġaffidav it +ĠAdvis ory +Ġadvert ised +ĠRel igious +se ctions +psy ch +ĠField s +aw ays +Ġhasht ag +ĠNight mare +Ġv ampire +Ġfore nsic +rosso ver +n ar +Ġn avy +Ġvac ant +ĠD uel +Ġhall way +Ġface book +ident ally +ĠN RA +Ġm att +Ġhur ricane +ĠKir by +ĠP uzzle +Ġsk irt +ou st +du llah +Ġanal ogy +in ion +Ġtomat oes +ĠN V +ĠPe ak +ĠMe yer +Ġappoint ments +Ġm asc +Ġal ley +re hend +Ġchar ities +Ġund o +Ġdest inations +ĠTest ing +"> " +c ats +* . +Ġgest ures +gener al +Le ague +Ġpack ets +ĠInspect or +ĠBer g +Ġfraud ulent +Ġcritic ize +F un +Ġbl aming +nd ra +Ġsl ash +ĠE ston +Ġpropos ing +Ġwh ales +Ġtherap ist +Ġsub set +Ġle isure +EL D +ĠC VE +ĠAct ivity +Ġcul min +sh op +ĠD AY +is cher +ĠAdmir al +ĠAtt acks +Ġ19 58 +Ġmem oir +Ġfold ed +Ġsex ist +Ġ15 3 +ĠL I +Ġread ings +Ġembarrass ment +ĠEmploy ment +w art +ch in +Ġcontin uation +l ia +Rec ently +Ġd uel +Ġevac uation +ĠKash mir +Ġdis position +ĠR ig +Ġbol ts +Ġins urers +4 67 +M ex +Ġret aliation +Ġmis ery +Ġunre asonable +r aining +I mm +ĠP U +em er +Ġgen ital +ãĤ ³ +ĠC andy +Ġon ions +ĠP att +lin er +Ġconced ed +Ġf a +Ġfor c +ĠH ernandez +ĠGe off +deb ian +ĠTe ams +Ġc ries +Ġhome owners +23 7 +A BC +Ġst itch +Ġstat istic +Ġhead ers +ĠBi ology +Ġmot ors +ĠG EN +ĠL ip +Ġh ates +Ġhe el +S elf +i pl +ED IT +ort ing +Ġann ot +ĠSpe ech +old emort +ĠJ avascript +ĠLe Bron +Ġfoot print +Ġf n +Ġseiz ures +n as +h ide +Ġ19 54 +ĠBe e +ĠDecl aration +ĠKat ie +Ġreserv ations +N R +f emale +Ġsatur ated +Ġb iblical +Ġtroll s +Dev ice +ph otos +Ġdr ums +ãĥīãĥ© ãĤ´ãĥ³ +N ight +f ighter +ĠH ak +ri ber +Ġc ush +Ġdiscipl inary +ba um +ĠG H +ĠSch midt +ilib rium +Ġs ixty +ĠKush ner +ro ts +Ġp und +ĠR ac +Ġspr ings +Ġcon ve +Bus iness +F all +Ġqual ifications +Ġvers es +Ġnarc iss +ĠK oh +ĠW ow +ĠCharl ottesville +ed o +Ġinterrog ation +ĠW ool +36 5 +B rian +Ġâľ ĵ +Ġalleg es +ond s +id ation +ĠJack ie +y u +Ġl akes +Ġworth while +Ġcryst als +ĠJud a +Ġcomp rehend +Ġfl ush +Ġabsor ption +ĠO C +Ġfright ened +ĠCh ocolate +Mart in +Ġbu ys +Ġbu cks +Ġapp ell +ĠChampions hips +Ġlist ener +ĠDef ensive +Ġc z +ud s +ĠM ate +Ġre play +Ġdecor ated +Ġs unk +ĠV IP +ĠAn k +Ġ19 5 +aa aa +Nob ody +ĠMil k +ĠG ur +ĠM k +ĠS ara +Ġse ating +ĠW id +Tr ack +Ġemploy s +Ġgig antic +AP P +ãĤ § +in ventory +Ġtow el +at che +l asting +ĠT L +Ġlat ency +Ġkn e +B er +me aning +Ġup held +Ġplay ground +Ġm ant +S ide +Ġstere o +Ġnorth west +Ġexception ally +Ġr ays +Ġrec urring +D rive +Ġup right +Ġab duct +ĠMar athon +Ġgood bye +Ġal phabet +h p +Ġcourt room +ring ton +ot hing +T ag +Ġdiplom ats +Ġbar bar +ĠAqu a +18 3 +33 33 +Ġmat urity +Ġinst ability +ĠAp ache +Ġ= == +Ġfast ing +ĠGr id +Mod Loader +Ġ15 2 +A bs +ĠOper ating +ett i +Ġacqu aint +Don nell +ĠK em +ĠFor ge +Ġarm ored +M il +Ġphilos ophers +in vest +Pl ayers +â Ī +Ġmy riad +Ġcomr ades +R ot +Ġremember ing +Ġcorrespond s +Ġprogram mers +ĠLyn n +Ġo lig +Ġco herent +yn chron +ĠChem ical +Ġj ugg +p air +post s +E ye +ĠIn ner +Ġsem ester +ott est +ĠEmir ates +ric anes +or ously +m its +ĠW is +Ġd odge +l ocation +Ġf aded +Am azon +ĠPro ceed +ĠIN FO +j ournal +ĠTru ck +T en +Ġ2 17 +Ġstat utes +m obile +ĠT ypes +Rec omm +b uster +pe x +Ġleg ends +Ġhead ache +f aced +ĠWi Fi +if ty +ĠH ER +Ġcirc uits +ER ROR +22 6 +ol in +Ġcyl inder +osp ace +ik ers +P rem +Qu ant +Ġconflic ting +Ġslight est +Ġfor ged +ion age +Step hen +ĠK ub +ĠOpp ortun +ĠHe al +Ġbl o +Ġrul ers +Ġh uh +Ġsubmar ine +f y +ass er +Ġallow ance +ĠKas ich +ĠT as +ĠAustral ians +Forge ModLoader +ĠâĨ ij +ĠMat rix +am ins +Ġ12 00 +ĠAc qu +23 6 +D ocument +ĠBre aking +19 3 +ĠSub st +ĠRoll er +ĠPro perties +ĠN I +t ier +Ġcr ushing +Ġadvoc ating +Further more +keep ers +Ġsex ism +x d +Ġcall er +ĠS ense +chie ve +ĠT F +Ġfuel ed +Ġreminis cent +Ġobs ess +ur st +Ġup hold +ĠF ans +het ics +Ġâ Ĺ +ĠB ath +Ġbe verage +Ġo scill +25 4 +Ġpol es +Ġgrad ual +Ġex ting +ĠS uff +ĠS uddenly +Ġlik ing +Ġ19 49 +un ciation +am ination +ĠO mar +ĠL V +ĠCon sequently +Ġsynt hes +ĠG IF +Ġp ains +Ġinteract ing +u ously +inc re +Ġrum or +ĠScient ology +19 7 +ĠZ ig +Ġspe lling +ĠA SS +Ġexting u +ms on +Ġg h +Ġremark ed +ĠStrateg ic +ĠM ON +å ¥ +g ae +ĠWH AT +E ric +ĠCamp us +Ġmeth ane +Ġimag in +J UST +ĠAl m +X T +i q +ĠR SS +Ġwrong doing +att a +Ġbig ot +Ġdemonstr ators +ĠCal vin +ĠV illa +Ġmembr ane +ĠAw esome +Ġbenef ic +26 8 +Ġmagn ificent +ĠL ots +G reg +ĠBor is +Ġdetain ees +ĠH erman +Ġwhis pered +Ġa we +Prof essor +fund ing +Ġphys iological +ĠDest ruction +Ġlim b +Ġmanip ulated +Ġbub bles +Ġpse ud +Ġhyd ra +ĠBrist ol +Ġst ellar +ĠExp ansion +ĠK ell +ĠInterest ingly +Ġm ans +Ġdrag ging +Ġec ological +ĠF it +Ġg ent +Ġbenef ited +ĠHait i +Ġpoly g +ãĥ İ +Ġ20 30 +Ġpro w +Ġrecon struction +Ġwas t +Ġpsych ic +ĠGree ks +Hand ler +16 2 +ĠP ulse +Ġsol icit +Ġsy s +Ġinflu x +ĠG entle +per cent +Ġprolifer ation +Ġtax able +Ġdisreg ard +Ġesc aping +Ġg inger +Ġwith stand +Ġdevast ated +ĠD ew +ser ies +Ġinject ed +ela ide +Ġturn over +he at +Ļ Ĥ +H appy +ĠSil ent +ãĤ Ń +iv ism +Ġir rational +AM A +Ġre ef +r ub +Ġ16 2 +Ġbank ers +ĠEth ics +v v +Ġcritic isms +K n +18 6 +M ovie +ĠT ories +Ġno od +Ġdist ortion +F alse +od ore +Ġt asty +Res earch +ĠU ID +- ) +Ġdivor ced +ĠM U +ĠHay es +ĠIs n +ian i +ĠH Q +Ġ" # +ign ant +Ġtra umatic +ĠL ing +H un +Ġsab ot +on line +r andom +Ġren amed +ra red +K A +d ead +é t +ĠAss istance +Ġse af +++++ ++++ +Ġse ldom +ĠWeb b +Ġbo olean +u let +Ġref rain +ĠDI Y +ru le +Ġshut ting +Ġutil izing +load ing +ĠPar am +co al +oot er +Ġattract ing +ĠD ol +Ġher s +ag netic +ĠRe ach +im o +Ġdisc arded +ĠP ip +01 5 +ü r +Ġm ug +Im agine +C OL +Ġcurs ed +ĠSh ows +ĠCurt is +ĠSach s +spe aking +ĠV ista +ĠFram ework +ong o +Ġsub reddit +Ġcr us +ĠO val +R ow +g rowing +Ġinstall ment +Ġgl ac +ĠAdv ance +EC K +ĠLGBT Q +LE Y +Ġac et +Ġsuccess ive +ĠNic ole +Ġ19 57 +Qu ote +Ġcircumst ance +ack ets +Ġ14 2 +ort ium +Ġguess ed +ĠFr ame +Ġperpet rators +ĠAv iation +ĠBen ch +Ġhand c +A p +Ġ19 56 +25 9 +r and +Net Message +d in +urt les +h ig +ĠV III +ff iti +ĠSw ords +b ial +Ġkidn apping +dev ice +Ġb arn +ĠEl i +auc as +S end +Con structed +Ġ ½ +Ġneed les +Ġad vertisements +Ġv ou +Ġexhib ited +ĠFort ress +As k +B erry +TY PE +Ġcan cers +ump ing +ĠTerrit ory +Ġpr ud +Ġn as +Ġathe ist +Ġbal ances +ãģ Ł +ĠSh awn +& & +Ġland sc +ĠR GB +Ġpet ty +Ġex cellence +Ġtransl ations +Ġpar cel +ĠChe v +E ast +ĠOut put +im i +Ġamb ient +ĠTh reat +Ġvill ains +Ġ5 50 +IC A +Ġtall er +Ġle aking +c up +Ġpol ish +Ġinfect ious +ĠK C +Ġ@ @ +back ground +Ġbureaucr acy +ĠS ai +un less +it ious +ĠSky pe +At l +ID ENT +00 8 +Ġhyp ocr +Ġpit chers +Ġguess ing +ĠF INAL +Bet ween +Ġvill agers +Ġ25 2 +f ashion +ĠTun is +Be h +ĠEx c +ĠM ID +28 8 +ĠHas kell +19 6 +ĠN OR +Ġspec s +Ġinv ari +Ġgl ut +ĠC ars +Ġimp ulse +Ġhon ors +g el +Ġjurisd ictions +ĠBund le +ul as +Calif ornia +ĠIncre ase +Ġp ear +Ġsing les +Ġc ues +Ġunder went +ĠW S +Ġexagger ated +Ġdub ious +Ġfl ashing +L OG +) ]. +J ournal +t g +V an +ĠI stanbul +ĠIn sp +ĠFrank en +D raw +Ġsad ness +Ġiron ic +ĠF ry +x c +Ġ16 4 +is ch +W ay +ĠProtest ant +h orn +Ġun aff +ĠV iv +ill as +ĠProduct ions +ĠH ogan +Ġper imeter +ĠS isters +Ġspont aneous +Ġdown side +Ġdescend ants +Ġor n +w orm +Japan ese +Ġ19 55 +Ġ15 1 +ĠDo ing +els en +umb les +Ġrad ically +ĠDr um +ĠB ach +Ġli abilities +ĠO B +ĠElement ary +Ġmem e +yn es +Ġfinger print +ĠGr ab +Ġundert ake +Mem bers +ĠRead er +ĠSim s +g od +Ġhypot hetical +s cient +ĠA J +Ġchar ism +Ġad missions +ĠMiss ile +tr ade +Ġexerc ising +ĠBack ground +W ritten +Ġvoc als +whe ther +Ġv i +ĠW inner +Ġl itter +ĠSh ooting +ST EM +ãĤ ¡ +ĠA FL +Ġvari ability +Ġe ats +ĠD PS +b row +Ġeleph ants +Ġstr at +Ġ Å +Ġsett lers +Matt hew +Ġin advert +H I +ĠIM F +ĠGo al +Ġnerv es +John son +ey e +ablish ment +Th ursday +BIL ITY +H ad +am oto +het amine +ep s +Ġmit ochond +Ġcomp ressed +ĠTre vor +ĠAnim als +T ool +L ock +Ġtwe ak +Ġpin ch +Ġcancell ation +P ot +Ġfoc al +ĠAst ron +17 3 +ĠA SC +ĠO THER +umn i +Ġdem ise +d l +Ù ħ +Sem itism +Ġcr acking +Ġcollabor ative +Ġexpl ores +s ql +Ġher bs +Ġconfig urations +m is +ĠRes ult +ace y +ĠSm oke +Ġsan ct +el ia +Ġdeg ener +Ġdeep est +Ġscream ed +Ġn ap +Soft ware +ĠST AR +E F +ĠX in +spons ored +mans hip +23 3 +Ġprim aries +Ġfilter ing +Ġas semble +m il +ĠMy ers +b ows +Ġpun ched +M ic +Ġinnov ations +Ġfun c +and o +Ġfr acking +ĠV ul +о Ð +osh op +ĠIm mun +Ġsett ling +Ġadolesc ents +Ġreb uilding +Ġtransform ing +Ġpar ole +Ġhar bor +Ġbook ing +ot ional +onge vity +ĠY o +b ug +Ġemer ges +ĠMethod s +ĠCh u +P res +ĠDun geons +Ġtra iling +ĠR um +ĠH ugh +å¤ © +ĠE ra +ĠBatt les +Res ults +ĠTr ading +Ġvers a +c ss +ax ies +he et +Ġgre ed +19 89 +Ġgard ens +Ġconting ent +P ark +ĠLeaf s +h ook +ro be +Ġdiplom acy +ĠF uel +ĠInv asion +Ġupgr ading +M ale +Ġe lic +Ġrelent less +ĠCo venant +ap esh +ĠT rop +T y +pro duction +art y +Ġpun ches +ak o +cyclop edia +ĠR abbit +ĠHD MI +Ġ14 1 +Ġf oil +Item Image +ĠF G +Ġimplement ations +ĠP om +ixt ures +Ġaw ait +Ġ3 30 +am us +Ġumb rella +Ġfore see +se par +Ġcircum cision +Ġperipher al +S ay +ĠExper t +In c +Ġwithd rew +ĠAnd ers +f ried +Ġradio active +ĠOp ening +Ġboard ing +ĠN D +Ġover throw +Act iv +W P +ĠAct s +× Ļ +Ġmot ions +v ic +ĠM ighty +ĠDef ender +a er +Ġthank ful +ĠK illing +ĠBr is +mo il +Ġpredict ing +26 6 +ch oice +Ġkill ers +Ġinc ub +ĠChe st +ather ing +Ġpro claimed +fl ower +oss om +umbled ore +ĠCy cling +ĠOccup y +AG ES +P en +ĠY ug +Ġpack aged +Ġheight ened +c ot +st ack +C ond +Ġst amps +m age +Ġpersu aded +Ġens l +ĠCard inal +Ġsol itary +Ġpossess ing +ĠC ork +Ġev id +ĠT ay +Ġbl ues +Ġextrem ism +Ġlun ar +Ġcl own +Te chn +Ġfest ivals +ĠPv P +ĠL ar +Ġconsequ ently +p resent +Ġsom eday +ç İĭ +ĠMet eor +Ġtour ing +c ulture +Ġbe aches +S hip +c ause +ĠFl ood +ãĥ ¯ +Ġpur ity +th ose +Ġem ission +b olt +Ġch ord +ĠScript ure +L u +Ġ$ { +cre ated +Other s +25 8 +Ġelement al +Ġannoy ed +ĠA E +d an +ĠS ag +Res earchers +Ġfair y +âĢĵ âĢĵ +======== ==== +Sm art +GG GG +Ġskelet ons +Ġpup ils +link ed +Ġur gency +en abled +ĠF uck +Ġcoun cill +r ab +U AL +T I +Ġlif es +Ġconf essed +B ug +Ġharm on +ĠCON FIG +ĠNe utral +D ouble +Ġst aple +ĠSH A +Brit ish +ĠSN P +AT OR +oc o +Ġswing ing +ge x +ole on +pl ain +ĠMiss ing +ĠTro phy +v ari +ran ch +Ġ3 01 +4 40 +00000000 00000000 +Ġrest oring +Ġha ul +uc ing +ner g +Ġfut ures +Ġstrateg ist +quest ion +Ġlater al +ĠB ard +Ġs or +ĠRhod es +ĠD owntown +????? - +ĠL it +ĠB ened +Ġco il +st reet +ĠPort al +FI LE +ĠG ru +* , +23 1 +ne um +Ġsuck ed +Ġr apper +Ġtend encies +ĠLaure n +cell aneous +26 7 +Ġbrow se +Ġover c +head er +o ise +Ġbe et +ĠG le +St ay +Ġm um +Ġtyp ed +Ġdiscount s +T alk +ĠO g +ex isting +ĠS ell +u ph +C I +ĠAust rian +ĠW arm +Ġdismiss al +Ġaver ages +c amera +Ġalleg iance +L AN +=" # +Ġcomment ators +ĠSet ting +ĠMid west +Ġpharm ac +ĠEX P +Ġstain less +Ch icago +Ġt an +24 4 +Ġcountry side +ĠV ac +29 5 +Ġpin ned +Ġcr ises +Ġstandard ized +T ask +ĠJ ail +ĠD ocker +col ored +f orth +" }, +Ġpat rons +Ġsp ice +Ġm ourn +ĠM ood +Ġlaund ry +Ġequ ip +ĠM ole +y ll +ĠTH C +n ation +ĠSher lock +Ġiss u +ĠK re +ĠAmeric as +ĠA AA +Ġsystem atically +Ġcont ra +ĠS ally +Ġrational e +Ġcar riage +Ġpe aks +Ġcontrad iction +ens ation +ĠFail ure +Ġpro ps +Ġnames pace +Ġc ove +field s +ãĤ ĭ +Ġw ool +ĠC atch +Ġpresum ed +ĠD iana +r agon +ig i +Ġh amm +Ġst unt +ĠG UI +ĠObserv atory +ĠSh ore +Ġsmell s +ann ah +Ġcock pit +ĠD uterte +8 50 +Ġopp ressed +bre aker +ĠCont ribut +ĠPer u +ĠMons anto +ĠAtt empt +Ġcommand ing +Ġfr idge +ĠR in +ĠChe ss +ual ity +Ġo l +Republic an +ĠGl ory +ĠW IN +.... ... +ag ent +read ing +Ġin h +J ones +Ġcl icks +al an +Ġ[ ]; +ĠMaj esty +ĠC ed +op us +ate l +à ª +AR C +ĠEc uador +ãĥ ł +ĠK uro +Ġritual s +Ġcapt ive +Ġoun ce +Ġdisag reement +Ġsl og +f uel +P et +M ail +Ġexerc ised +Ġsol ic +Ġrain fall +Ġdev otion +ĠAss essment +Ġrob otic +opt ions +ĠR P +ĠFam ilies +ĠFl ames +Ġassign ments +00 7 +aked own +Ġvoc abulary +Re illy +Ġc aval +g ars +Ġsupp ressed +ĠS ET +ĠJohn s +Ġwar p +bro ken +Ġstat ues +Ġadvoc ated +Ġ2 75 +Ġper il +om orph +ĠF emin +per fect +Ġh atch +L ib +5 12 +Ġlif elong +3 13 +Ġche eks +Ġnum bered +ĠM ug +B ody +ra vel +We ight +ĠJ ak +ĠHe ath +Ġkiss ing +ĠJ UST +Ġw aving +u pload +Ġins ider +ĠPro gressive +ĠFil ter +tt a +ĠBe am +Ġviol ently +ip ation +Ġskept icism +Ġ19 18 +ĠAnn ie +ĠS I +Ġgen etics +Ġon board +at l +ĠFried man +ĠB ri +cept ive +Ġpir ate +ĠRep orter +27 8 +Ġmyth ology +Ġe clipse +Ġsk ins +Ġgly ph +ing ham +F iles +C our +w omen +Ġreg imes +Ġphotograp hed +K at +ĠMA X +Offic ials +Ġunexpected ly +Ġimpress ions +F ront +;;;; ;;;; +Ġsuprem acy +Ġs ang +Ġaggrav ated +Ġabrupt ly +ĠS ector +Ġexc uses +Ġcost ing +ide press +St ack +ĠR NA +ob il +Ġghost s +ld on +at ibility +Top ics +Ġreim burse +ĠH M +ĠDe g +Ġth ief +y et +ogen esis +le aning +ĠK ol +ĠB asketball +Ġf i +ĠSee ing +Ġrecy cling +Ġ[ - +Cong ress +Ġlect ures +P sy +Ġne p +Ġm aid +Ġori ented +A X +Ġrespect ful +re ne +fl ush +ĠUn loaded +re quest +gr id +ĠAltern atively +ĠHug o +Ġdec ree +ĠBuddh ism +and um +And roid +ĠCong o +ĠJoy ce +Ġacknowled ging +hes ive +ĠTom orrow +ĠH iro +th ren +ĠM aced +Ġho ax +ĠIncre ased +ĠPr adesh +W ild +____ __ +16 1 +Ġa unt +Ġdistribut ing +ĠT ucker +ĠSS L +ĠW olves +B uilding +ou lt +ĠLu o +ĠY as +ĠSp ir +ĠSh ape +ĠCamb od +ĠIP v +Ġm l +Ġext rad +39 0 +ĠPenn y +d ream +Ġstation ed +opt ional +ew orthy +. +ĠWorks hop +ĠRet ail +ĠAv atar +6 25 +N a +ĠV C +ĠSec ure +M Y +19 88 +oss ip +Ġpro state +Ġund en +Ġg amer +ĠCont ents +ĠWar hammer +ĠSent inel +3 10 +Ġse gregation +ĠF lex +ĠM AY +Ġdr ills +ĠDrug s +Islam ic +Ġsp ur +Ġca fe +Ġimag inary +Ġgu iding +Ġsw ings +ĠThe me +ob y +Ġn ud +Ġbe gging +Ġstr ongh +Ġreject ing +Ġpedest rians +ĠPro spect +R are +s le +Ġconcess ions +ĠConst itutional +Ġbe ams +Ġfib ers +p oon +Ġinstinct s +pro perty +ĠB IG +Sand ers +im ates +Ġco ating +Ġcorps es +ĠTR UE +check ed +Ġ16 6 +A sh +ĠJ S +ĠF iction +Ġcommun al +Ġener getic +oooo oooo +Ġnow adays +IL D +ib o +ĠSU V +R en +Ġdwell ing +Sil ver +Ġt ally +ĠM oving +Ġcow ard +Ġgener als +Ġhorn s +Ġcirc ulated +Ġrob bed +ĠUn limited +Ġharass ed +Ġinhib it +Ġcomp oser +ĠSpot ify +Ġspread s +3 64 +Ġsu icidal +Ġno ises +ĠSt ur +Ġs aga +ĠK ag +is o +Ġtheoret ically +M oney +Ġsimilar ity +Ġslic ed +ut ils +ing es +" - +Ġan th +Ġimp ed +Mod ule +Through out +Ġmen us +comm ittee +and i +ob j +in av +f ired +ĠAb dullah +Ġund ead +Ġfont s +H old +EN G +Ġsustain ability +Ġfl ick +Ġr azor +ĠF est +ĠChar acters +Ġword ing +Ġpopul ist +Ġcritic izing +Ġm use +v ine +Ġcard board +Ġkind ly +Ġfr inge +ĠThe ft +icult ural +Ġgovern ors +Ġ ���� +Ġ16 3 +Ġtime out +ĠA uth +Child ren +A U +Ġred emption +ĠAl ger +Ġ19 14 +Ġw aved +Ġastron auts +og rams +Ġsw amp +ĠFinn ish +Ġcand le +Ġton nes +ut m +Ġr ay +Ġsp un +Ġfear ful +art icles +Ġca us +or ically +ĠRequ ires +ĠG ol +Ġpop e +Ġinaug ural +Ġg le +AD A +ĠIS IL +ĠOff ensive +Ġwatch dog +Ġbal con +ent ity +ĠH oo +Ġgall on +AC C +Ġdoub ling +Ġimpl ication +ĠS ight +Ġdoct r +---- --- +Ġ\ \ +Ġm alt +R oll +Ġâī ¥ +Ġrec ap +add ing +u ces +ĠB end +fig ure +Ġtur key +Ġsoc ietal +ĠT ickets +Ġcommer cially +Ġsp icy +Ġ2 16 +ĠR amp +Ġsuperior ity +à ¯ +ĠTr acker +C arl +ĠC oy +ĠPatri ot +Ġconsult ed +Ġlist ings +Ġsle w +reens hot +ĠG one +Ġ[ ...] +30 9 +Ġh ottest +Ø ± +Ġrock y +ĠD iaz +Ġmass age +Ġpar aly +Ġp ony +A z +Ġcart ridge +ĠN Z +Ġsn ack +ĠLam ar +ple ment +ĠLes lie +Ġm ater +Ġsn ipp +24 6 +Ġjoint ly +ĠBris bane +ĠiP od +Ġpump ing +Ġgo at +ĠSh aron +eal ing +Ġcor on +Ġan omal +rah im +ĠConnect ion +Ġsculpt ure +Ġsched uling +ĠD addy +at hing +Ġeyeb rows +Ġcur ved +Ġsent iments +Ġdraft ing +D rop +( [ +Ġnom inal +ĠLeaders hip +ĠG row +Ġ17 6 +Ġconstruct ive +iv ation +Ġcorrupt ed +ger ald +ĠC ros +ĠChe ster +ĠL ap +ãģ ª +OT H +D ATA +Ġal mond +pro bably +I mp +Ġfe ast +ĠWar craft +F lor +Ġcheck point +Ġtrans cription +Ġ20 4 +Ġtwe aks +Ġrel ieve +S cience +Ġperform er +Z one +Ġtur moil +ig ated +hib it +ĠC afe +the med +Ġflu or +ben ch +Ġde com +ĠU nt +ĠBar rett +ĠF acts +Ġt asting +ĠPTS D +ĠSe al +ĠJuda ism +ĠDynam ic +ĠC ors +V e +ĠM ing +ĠTrans form +v on +ĠDef enders +ĠTact ical +ĠV on +ĠUn ivers +Ġdist orted +ĠB reath +?' " +Ġag on +ĠDead ly +Ġl an +ĠCy cle +orn ed +Ġrel iably +Ġgl or +ĠMon key +ãĥ ¡ +Ġad ren +Ġmicrow ave +ĠAl ban +irc raft +dig it +sm art +ĠD read +¯¯¯¯¯¯¯¯ ¯¯¯¯¯¯¯¯ +{ { +ĠRoc hester +Ġsimpl ified +Ġinf licted +Ġtake over +Ġyour selves +ad itional +Ġmus cular +K S +Ġing en +T ax +ĠFe ature +27 7 +Ġcru c +Ġcr ate +Ġun identified +Ġacclaim ed +ĠM anga +ĠFr ances +ĠNep al +ĠG erald +ĠKu wait +Ġsl ain +ĠHe b +ĠG oku +ãģ® æ +28 6 +M rs +ĠC ody +ĠSan ctuary +01 6 +Ġdism ant +Ġdatas et +ĠH ond +b uck +ĠPat terson +Ġpal ette +ĠG D +ic ol +ĠL odge +Ġplanet ary +ak in +ĠRegist ered +ab we +ĠPeters burg +Ġha iled +ĠP iece +S che +ĠDO J +Ġen umer +18 1 +ĠObs erver +ĠB old +f ounded +com merce +Ġexplo its +ĠF inding +UR N +ĠS ne +ĠAc id +ay ette +ĠVal ues +Ġdr astic +Ġarchitect ural +Ġ" . +× ķ +ump ed +Ġwra pping +Ġwid ow +ĠSl ayer +l ace +on ce +German y +av oid +Ġtem ples +P AR +à ´ +ĠLuc ifer +ĠFl ickr +l ov +for ces +Ġsc outing +Ġlou der +tes y +Ġbefore hand +Ä ĵ +ĠNe on +ĠW ol +ĠTyp ically +ĠPolit ico +-+ -+ +Ġbuild er +Ġder ive +K ill +Ġp oker +Ġambig uous +Ġlif ts +Ġcy t +Ġrib s +ood le +ĠS ounds +h air +ĠSynd rome +t f +Ġproport ional +u id +Ġper taining +ĠKind le +ĠNeg ro +Ġreiter ated +ĠTon ight +oth s +ĠCorn ell +Ġo wing +Ġ20 8 +elf are +oc ating +ĠB irds +Sub scribe +Ġess ays +Ġburd ens +Ġillust rations +ar ious +ER AL +ĠCal cul +Ġx en +ĠLink edIn +ĠJ ung +Ġredes ign +Con nor +29 6 +Ġrevers al +ĠAd elaide +ĠL L +Ġs inking +Ġg um +US H +c apt +ĠGr imm +Ġfoot steps +ĠCB D +isp ers +Ġpro se +Wed nesday +ĠM ovies +ed in +Ġoverturn ed +Ġcontent ious +US B +~~~~~~~~ ~~~~~~~~ +ĠCo pper +Ġpoint less +N V +val ues +olph in +d ain +Ġdepos ited +ĠG W +Ġpreced ed +ĠCl a +ĠGo lem +ĠN im +ĠÎ ² +ĠEngine ers +m iddle +Ġfl att +oper ative +Ġcouncil s +imb abwe +el in +Ġstress ful +ĠL D +Ġres h +l ake +Ġwheel chair +ĠAltern ative +Ġoptim ize +oper ation +Ġpe ek +Ġones elf +ig il +Ġtrans itions +op athy +bl ank +Ġ16 9 +17 1 +________________________________ ________________________________ +Ġl aundering +En c +ĠD EC +Ġwork outs +Ġsp ikes +Ġdin osaurs +Ġdiscrim inatory +P ool +R ather +38 5 +R NA +tes ters +et o +ĠIdent ity +Ġve in +ĠBur ton +Ġarc ade +4 20 +Ult imately +ĠSad ly +à ° +p ill +Ġcub ic +ĠSpect rum +the se +st ates +Ġun official +h awks +ĠEVER Y +Ġrain bow +Ġincarcer ation +and ing +Ġsy ll +ĠEver ton +Ġ17 9 +ĠSer bia +Ġ18 9 +m eter +ĠMic key +Ġant iqu +Ġfact ual +ne ck +ĠN are +n orm +m ust +Ġhigh ways +Ġgl am +Ġdivid ing +ĠSquad ron +ĠMar tha +Ġbirth s +C over +//////// //////// +ĠW ong +Ph ot +ĠA LS +ri o +ĠNon etheless +ĠL emon +Ġ20 6 +ĠE E +Ġderiv ative +ĠWW II +v ote +Ġthere in +Ġsepar ating +44 6 +sy nc +ĠStre ets +Ġr att +Ġmunicip ality +ĠShort ly +Ġmon k +) ," +Ġscr ub +Ġoper atives +Ne ither +Pl ace +ĠLim it +F emale +ĠAct or +Char acter +Ġconstit uted +35 7 +Ġprotest ed +ĠSt raw +ĠHe ight +ild a +ĠTy ph +Ġflood s +Ġcos metic +W AY +pert ure +up on +t ons +ess ing +ĠP ocket +Ġro oft +ĠC aucas +Ġant idepress +Ġincomp atible +EC D +Ġoper a +ĠCont est +Ġgener ators +l ime +Def ense +19 87 +for um +Ġsav age +ĠHung arian +n z +Ġmet allic +Ġex pelled +Ġres idency +Ġdress es +66 6 +ĠC lement +f ires +C ategory +Ġge ek +al is +Ġc emetery +educ ated +Ġc rawl +ĠUn able +ĠT yson +ak is +Ġp ardon +ĠW ra +Ġstrengthen ed +ĠF ors +33 5 +ĠH C +ĠM ond +Ġvisual s +ĠBeat les +ett lement +Ġ ï +g ro +Ġb ash +Ġpo orest +Ġex cel +Ġaspir ations +ĠM unicip +ens ible +Ġceremon ies +Ġintimid ation +ĠCON TR +be ck +ĠK ap +as u +Ġtradem arks +ĠS ew +ĠComp etition +net work +ĠAr ri +ĠT et +Ro aming +W C +D at +Ġso b +Ġpair ing +Ġoverd ose +SA Y +ab er +Ġrev olt +ĠF ah +act ing +e q +est ation +F ight +ĠMar ks +27 3 +Ġ17 8 +R aw +ãģ ĭ +34 9 +bl ocks +Ġver ge +est ine +ĠPod esta +Ġinv asive +Ġprofound ly +ĠA o +e ach +Ġl est +inter pret +Ġshr inking +Ġerr one +Ġche es +ly s +ĠI vy +ĠDirect ory +Ġhint ed +V ICE +Ġcontact ing +ĠG ent +he i +Ġlabel ing +Ġmerc ury +ĠL ite +Ġexp ires +Ġdest abil +rit is +c u +Ġfeather s +Ġste er +Ġprogram med +ĠV ader +Go ing +ĠE lim +Ġy o +ĠMic he +Ġ20 3 +Ġslee ves +Ġb ully +ĠHum ans +36 8 +Ġcomp ress +ĠBan ner +AR S +Ġa while +Ġcal ib +Ġspons orship +ĠDiff iculty +ĠP apers +Ġident ifier +} . +Ġy og +ĠSh ia +Ġclean up +Ġvib e +int rodu +im ming +Austral ia +Ġout lines +ĠY outube +tr ain +ĠM akes +Ġde ported +Ġcent r +ĠD ug +ĠB oulder +ĠBuff y +Ġinj unction +ĠHar ley +ĠG roups +ĠD umbledore +ĠCl ara +Ġ" - +Ġsacrific ed +ep h +Sh adow +ib ling +Ġfreel ance +Ġevident ly +ph al +Ġret ains +M ir +Ġfin ite +d ar +ĠC ous +Ġrep aired +Ġperiod ic +Ġchampions hips +Ġaster oid +bl ind +Ġexpress ly +ĠAst ros +Ġsc aled +Ġge ographical +ĠRap ids +En joy +Ġel astic +ĠMoh amed +Mark et +be gin +Ġdisco vers +Ġtele communications +Ġscan ner +Ġen large +Ġsh arks +Ġpsy chedel +ĠRou ge +Ġsnap shot +is ine +X P +Ġpestic ides +ĠL SD +ĠDist ribution +re ally +Ġde gradation +Ġdisgu ise +Ġbi om +ĠEX T +Ġequ ations +Ġhaz ards +ĠComp ared +) * +Ġvirt ues +Ġeld ers +Ġenh ancing +ĠAc ross +er os +ang ling +Ġcomb ust +ucc i +Ġconc ussion +Ġcontrace ption +ĠK ang +Ġexpress es +Ġa ux +ĠP ione +Ġexhib its +Deb ug +OT AL +ĠAl ready +ĠWheel er +Ġexp ands +? : +Ġreconc iliation +Ġpir ates +Ġpur se +Ġdiscour age +Ġspect acle +R ank +Ġwra ps +ĠTh ought +Ġimp ending +O pp +ĠAng lo +ĠE UR +Ġscrew ed +ret ched +Ġencour agement +mod els +Ġconf use +mm m +ĠVit amin +âĸij âĸij +C ru +Ġkn ights +Ġdisc ard +Ġb ishops +ĠW ear +ĠGar rett +k an +ãĥ Ł +Ġmascul ine +cap ital +ĠA us +Ġfat ally +th anks +ĠA U +ĠG ut +12 00 +Ġ 00000000 +Ġsur rog +ĠBI OS +ra its +ĠWat ts +Ġresur rection +ĠElect oral +ĠT ips +4 000 +Ġnut rient +Ġdepict ing +Ġspr ink +Ġm uff +ĠL IM +ĠS ample +ps c +ib i +gener ated +Ġspec imens +Ġdiss atisf +Ġtail ored +Ġhold ings +ĠMonth ly +ĠE at +po ons +Ġne c +ĠC age +ĠLot us +ĠLan tern +Ġfront ier +Ġp ensions +Ġj oked +ĠHard y +=-=- =-=- +r ade +U ID +Ġr ails +Ġem it +Ġsl ate +Ġsm ug +Ġsp it +ĠCall s +ĠJac obs +f eat +ĠU E +Ġrest ruct +Ġregener ation +Ġenerg ies +ĠCon nor +OH N +ĠChe ese +Ġg er +Ġresur rect +man agement +N W +Ġpres ently +ĠBru ins +M ember +ĠM ang +id an +Ġboost ing +w yn ++ . +requ isite +ĠNY PD +ĠMe gan +ĠCond itions +Ġp ics +nes ium +ĠR ash +Ġ17 4 +ĠD ucks +Ġemb ro +z u +on ian +rel igious +Ġc raz +ĠAC A +ĠZ ucker +EM A +ĠPro s +We apon +ĠKn ox +ĠAr duino +Ġst ove +Ġheaven s +ĠP urchase +Ġher d +Ġfundra iser +Dig ital +5 000 +Ġprop onents +/ âĢĭ +Ġj elly +ĠVis a +Ġmon ks +Ġadvance ment +ĠW er +Ġ18 7 +e us +ert ility +Ġfet al +Ġ19 36 +L o +Ġout fits +Ġstair case +b omb +Ġcustom ized +cl air +T ree +Ġm apped +ĠConsider ing +ĠTor res +Ġmeth yl +Ġapprox imate +Ġdo om +ĠHans en +Ġc rossover +Ġstand alone +ä ¼ +Ġinv ites +Ġgra veyard +Ġh p +Donald Trump +Ġesc ort +G ar +Ġpredec essors +Ġh ay +Ġen zyme +ĠStra ight +vis ors +I ng +ane ously +ĠApp lied +Ġf ec +ĠDur ant +Ġout spoken +or b +Ġz eal +Ġdisgr ace +' ). +ĠChe ng +28 9 +ĠRen a +ĠSu icide +29 4 +Ġout raged +ĠNew man +ĠN vidia +ĠA ber +ĠB ers +Ġrecre ation +Wind ow +ĠD P +x e +Ġped oph +Ġfall out +ambo o +Ġpresent ations +ĠApp s +Ġh tml +3 45 +ĠX XX +Ġrub bing +ĠLe ather +Ġhum idity +se ys +est ablished +ĠUn its +64 6 +Ġrespect able +A uto +Ġthri ving +ĠInn ovation +ang s +Ext ra +reg ulation +29 8 +p ick +Ex amples +ĠC J +Att ack +Ġdr acon +L T +Ġstick er +re rs +Ġsun ny +I ss +reg ulated +d im +ĠAb stract +Ġhus bands +Off ice +om ination +it ars +AN GE +asc al +ĠK ris +ĠInf antry +Ġm alf +ĠA the +ĠR ally +bal anced +................ ........ +OU P +Ġmole cule +met ics +ĠSpl it +ĠInstruct ions +ĠN ights +c ards +Ġt ug +Ġcon e +å Ń +Ġt x +ĠDisc ussion +Ġcatast rophe +pp e +g io +Ġcommun ism +Ġhal ted +ĠGu ant +cle an +ĠSc hed +ĠK anye +Ġw ander +ĠSer iously +Ġ18 8 +enn ial +f ollow +product ive +ĠFl ow +ĠS ail +Ġc raw +Ġsim ulations +or u +ang les +ĠN olan +Ġmen stru +4 70 +Ġ20 7 +aj a +Ġcas ually +board ing +Ġ2 22 +ov y +ĠN umbers +um at +O E +28 7 +ĠCle mson +Ġcert s +Ġsl id +ĠT ribe +Ġto ast +Ġfort unes +Ġf als +ĠComm ittees +Ġg p +Ġf iery +ĠN ets +ĠAn ime +Pack age +ĠComp are +l aughter +in fect +Ġatroc ities +Ġjust ices +Ġins ults +ĠVern on +Ġsh aken +Ġperson a +est amp +36 7 +br ain +Ġexperiment ing +K en +ĠElect ronics +Ġ16 1 +dom ain +Ġgraph ical +b ishop +Ġwho pping +ĠEv angel +Ġadvertis ers +ĠSpe ar +Ġb ids +Ġdestro ys +ut z +Ġunders c +ĠAD D +Ġan ts +ĠC um +ipp les +ĠF ill +Ġgl anced +Ġind icted +ĠE ff +Ġmis con +ĠDes ktop +Ġab ide +ãĥ Ģ +ĠI o +ĠC oul +Ġcaps ule +ĠCh rys +M ON +Ġund es +ĠI RA +Ġc itation +Ġdict ate +ĠNet works +ĠConf lict +ĠSt uff +x a +is ec +ĠChem istry +Ġquarter ly +William s +an an +O pt +ĠAlexand ria +out heastern +ĠSpring field +ĠBlack s +Ġge ography +24 2 +Ġut most +ĠEx xon +ab outs +E VA +ĠEn able +ĠBar r +Ġdisag reed +ĠCy prus +Ġdement ia +Ġlab s +Ġubiqu itous +ĠLO VE +Ġconsolid ated +s r +Ġcream y +ĠTim ber +Reg ardless +ĠCert ificate +Ġ" ... +ogen ous +Capt ain +Ġinsult ing +ĠSor os +ĠInst r +ĠBulgar ia +bet ter +Ġsuck ing +ĠDavid son +at z +Ġcoll ateral +g if +Ġplag ued +ĠC ancel +ĠGard ner +R B +Ġsix teen +Rem ove +ur istic +c ook +R od +Ġcompr ising +f le +) âĢĶ +ĠVik ing +g rowth +agon al +Ġsr f +af ety +m ot +N early +st own +ĠF actor +Ġautom obile +Ġproced ural +m ask +amp ires +Ġdisapp ears +j ab +3 15 +Ġ19 51 +ne eded +Ġd aring +le ader +Ġp odium +Ġun healthy +Ġm und +Ġpy ramid +oc re +Ġkiss ed +Ġdream ed +ĠFant astic +ĠG ly +å Ĭ +Ġgreat ness +Ġsp ices +Ġmet ropolitan +Ġcomp uls +i ets +101 6 +ĠSh am +ĠP yr +fl ies +ĠMid night +Ġswall owed +Ġgen res +ĠL ucky +ĠRew ards +Ġdisp atch +ĠI PA +ĠApp ly +Ġa ven +al ities +3 12 +th ings +Ġ( ). +Ġm ates +ĠS z +ĠC OP +ol ate +O FF +Ġre charge +c aps +ĠYork er +ic one +Ġgal axies +ile aks +D ave +ĠP uzz +ĠCelt ic +ĠA FC +27 6 +ĠS ons +Ġaffirm ative +H or +Ġtutorial s +ĠC ITY +ĠR osa +ĠExt ension +Ser ies +Ġf ats +Ġr ab +l is +Ġun ic +Ġe ve +ĠSp in +Ġadul thood +ty p +Ġsect arian +Ġcheck out +ĠCy cl +S ingle +Ġmart yr +Ġch illing +88 8 +ou fl +Ġ] ; +Ġcongest ion +m k +ĠWhere as +Ġ19 38 +ur rencies +er ion +Ġbo ast +ĠPat ients +Ġch ap +ĠB D +real DonaldTrump +Ġexam ines +h ov +Ġstart ling +ĠBab ylon +w id +om ew +br ance +ĠOd yssey +w ig +Ġtor ch +ĠV ox +ĠMo z +ĠT roll +ĠAn s +Similar ly +ĠF ul +00 6 +Un less +ĠAl one +st ead +ĠPub lisher +r ights +t u +ĠDoes n +Ġprofession ally +Ġcl o +ic z +Ġste als +Ġ á +19 86 +Ġst urdy +ĠJoh ann +Ġmed als +Ġfil ings +ĠFr aser +d one +Ġmult inational +Ġf eder +Ġworth less +Ġp est +Yes terday +ank ind +Ġg ays +Ġb orne +ĠP OS +Pict ure +Ġpercent ages +25 1 +r ame +Ġpot ions +AM D +ĠLeban ese +Ġr ang +ĠL SU +ong s +Ġpen insula +ĠCl ause +AL K +oh a +ĠMac Book +Ġunanim ous +Ġl enders +Ġhang s +Ġfranch ises +ore rs +ĠUp dates +Ġisol ate +and ro +S oon +Ġdisrupt ive +ĠSur ve +Ġst itches +ĠSc orp +ĠDomin ion +Ġsupp lying +Ar g +Ġtur ret +ĠL uk +Ġbr ackets +* ) +ĠRevolution ary +ĠHon est +Ġnot icing +ĠSh annon +Ġafford ed +Ġth a +ĠJan et +! -- +ĠNare ndra +ĠPl ot +H ol +se ver +e enth +Ġobst ruction +Ġ10 24 +st aff +j as +or get +sc enes +l aughs +ĠF argo +cr ime +Ġorche str +Ġde let +ili ary +rie ved +Ġmilit ar +ĠGreen e +âĹ ı +ãģ ¦ +ĠGu ards +Ġunle ashed +ĠWe ber +Ġadjust able +Ġcal iber +Ġmotiv ations +Ġà ł +m Ah +ĠL anka +hand le +Ġp ent +ĠR av +ĠAng ular +ĠK au +umb ing +Ġphil anthrop +Ġde hyd +Ġtox icity +e er +ĠY ORK +w itz +å ¼ +ĠI E +commun ity +ĠA H +Ġret ali +Ġmass ively +ĠDani els +ĠD EL +Ġcar cin +Ur l +Ġrout ing +ĠNPC s +ĠR AF +ry ce +Ġwa ived +ĠGu atem +Every body +Ġco venant +Ġ17 3 +Ġrelax ing +Ġqu art +al most +Ġguard ed +ĠSold iers +ĠPL AY +Ġout going +L AND +Ġre write +ĠM OV +ĠIm per +ĠS olution +Ġphenomen al +Ġl ongevity +Ġimp at +ĠN issan +ir ie +Ġod or +ĠZ ar +ok s +Ġmilit ias +ĠSP EC +Ġtoler ated +ars er +ĠBrad ford ++ , +Ġsur real +s f +Can adian +Ġresemb lance +Ġcarbohyd rate +VI EW +Ġaccess ory +me al +larg est +ieg el +Some one +Ġtoug hest +os o +Ġfun nel +Ġcondemn ation +lu ent +Ġw ired +ĠSun set +Jes us +ĠP ST +ĠP ages +ĠTy coon +ĠP F +Ġselect ions +Ġ ठ+part isan +Ġhigh s +ĠR une +Ġcraft s +le ad +ĠParent s +Ġre claim +ek er +ĠAll ied +ae per +Ġlo oming +Ġbenefic iaries +ĠH ull +Stud ents +Jew ish +d j +Ġp act +tem plate +ĠOffic ials +ĠBay lor +Ġhe mp +Ġyouth s +ĠLevel s +ĠX iao +ĠC hes +Ġende avor +ĠRem oved +Ġhipp ocamp +H ell +ãĤ Ĭ +80 5 +Ġd inosaur +ĠWr ath +ĠIndones ian +Ġcalcul ator +ĠD ictionary +Ġ4 20 +ĠM AG +( _ +! , +t arians +Ġrestrict ing +rac use +Ġweek day +OU NT +Ġsh rugged +leg round +Ġb ald +ĠDo ctors +Ġt outed +ĠMax well +Ġ2 14 +Ġdiplom at +Ġrep ression +Ġconstitu ency +v ice +r anked +ĠNap oleon +g ang +ĠFore ver +t un +Ġbul b +ĠPD T +ĠC isco +V EN +Ġres umed +Ste ven +ĠManit oba +Ġfab ulous +ĠAg ents +19 84 +Ġam using +ĠMyster ies +Ġor thodox +fl oor +Ġquestion naire +Ġpenet rate +Ġfilm makers +ĠUn c +Ġst amped +Ġth irteen +Ġout field +Ġforward ed +Ġapp ra +Ġa ided +t ry +Ġunf ocused +ĠL iz +ĠWend y +ĠSc ene +Ch arg +Ġreject s +Ġleft ist +ĠProv idence +ĠBr id +reg n +Ġprophe cy +ĠL IVE +4 99 +Ġfor ge +ĠF ML +Ġintrins ic +ĠF rog +Ġw ont +ĠH olt +Ġfam ed +CL US +aeper nick +ĠH ate +ĠC ay +Ġregister ing +ort ality +rop y +ocaly ptic +a an +n av +Ġfasc ist +IF IED +Ġimpl icated +ĠRes ort +ĠChand ler +ĠBr ick +P in +ys c +Us age +ĠHel m +us ra +âĺħ âĺħ +ĠAb bas +Ġunanim ously +Ġke eper +Ġadd icted +?? ? +Ġhelm ets +Ġant ioxid +aps ed +80 8 +gi ene +Ġwa its +Ġmin ion +ra ved +ĠP orsche +Ġdream ing +Ġ17 1 +ĠC ain +Ġun for +ass o +ĠConfig uration +k un +hard t +Ġn ested +ĠL DS +L ES +Ġt ying +en os +Ġc ue +ĠMar qu +sk irts +Ġclick ed +Ġexp iration +ĠAccording ly +ĠW C +Ġbless ings +Ġaddict ive +ĠN arr +y x +ĠJagu ars +Ġrent s +ĠS iber +Ġt ipped +ous se +ĠFitz gerald +Ġhier arch +out ine +Ġwa velength +> . +ch id +ĠProcess ing +/ + +r anking +E asy +ĠConst ruct +Ġt et +ins ured +H UD +Ġqu oting +Ġcommun icated +in x +Ġin mate +Ġerect ed +ĠAbs olutely +ĠSure ly +Ġun im +ĠThr one +he id +Ġcl aws +Ġsuper star +ĠL enn +ĠWh is +U k +ab ol +Ġsk et +ĠN iet +Ġper ks +Ġaff inity +Ġopen ings +phas is +Ġdiscrim inate +T ip +v c +Ġgr inding +ĠJenn y +Ġast hma +hol es +ĠHom er +Ġreg isters +ĠGl ad +Ġcre ations +Ġlith ium +Ġappl ause +unt il +Just ice +ĠTur ks +Ġsc andals +Ġb ake +t ank +M ech +ĠMe ans +ĠM aid +Republic ans +is al +wind ows +ĠSant os +Ġveget ation +33 8 +t ri +Ġfl ux +ins ert +Ġclar ified +Ġmort g +ĠCh im +ĠT ort +Ġdiscl aim +met al +ĠAs ide +Ġindu ction +Ġinf l +Ġathe ists +amp h +Ġe ther +ĠV ital +ĠBu ilt +M ind +Ġweapon ry +S ET +Ġ18 6 +ad min +g am +cont ract +af a +Ġderiv atives +Ġsn acks +Ġch urn +E conom +Ġca pped +ĠUnder standing +ĠH ers +ĠI z +Ġd uct +I ENT +augh ty +Ġâľ Ķ +ĠN P +Ġsa iling +In itialized +Ġt ed +Ġreact ors +ĠL omb +Ġcho ke +ĠW orm +Ġadm iration +Ġsw ung +ens ibly +Ġr ash +ĠGo als +ĠImport ant +Sh ot +ĠR as +Ġtrain ers +ĠB un +Work ing +Ġhar med +ĠPand ora +ĠL TE +Ġmush room +ĠCH AR +ĠF ee +ĠM oy +B orn +ol iberal +ĠMart ial +Ġgentle men +Ġling ering +Offic ial +Ġgra ffiti +ĠN ames +D er +Ġqu int +ist rate +aze era +ĠNOT ICE +ĠFlore nce +Ġpay able +Ġdep icts +ĠSpe cies +He art +âĶĢâĶĢâĶĢâĶĢ âĶĢâĶĢâĶĢâĶĢ +Ġencl osed +Incre ases +D aily +ĠL is +Ġenact ment +ĠB acon +ĠSt eele +dem and +Ġ18 3 +Ġmouth s +Ġstr anded +Ġenhance ment +01 1 +ĠWh ats +Ġhe aled +en y +ĠR ab +Ġ3 40 +ĠLab yrinth +ro ach +ĠY osh +ĠCl ippers +Ġconcert s +Intern et +35 5 +Ġstick ers +Ġter med +ĠAx e +Ġgrand parents +Fr ance +ĠCl im +ĠU h +ul ic +Ġthr ill +cent ric +ĠOver view +ĠCond uct +Ġsubstant ive +Ġ18 2 +m ur +Ġstr ay +ĠCo ff +Ġrep etitive +ĠFor gotten +Ġqual ification +ew itness +ĠZ imbabwe +Ġsim ulated +ĠJ D +25 3 +ĠW are +Ġun sc +T imes +Ġsum mons +Ġdis connected +Ġ18 4 +ci us +ĠGu jar +od ka +Ġer ase +ĠTob acco +elect ed +Ġun cont +ĠShe pard +ĠL amp +Ġalert ed +Ġoper ative +arn a +u int +Ġneglig ence +ac ements +Ġsup ra +Ġprev ail +ĠSh ark +Ġbel ts +ãģ « +Ġt ighter +Engine ers +Ġin active +Ġexp onent +ĠWill ie +a ples +Ġhe ir +ĠH its +ian n +ĠS ays +Ġcurrent s +ĠBeng al +Ġar ist +B uffer +Ġbree ze +ĠWes ley +Col a +Ġpron oun +Ġde ed +ĠK ling +Ġof t +Ġinf lict +Ġpun ishing +Ġn m +ik u +OD UCT +01 4 +Ġsubsid y +ĠDE A +ĠHer bert +ĠJ al +B ank +Ġdef erred +Ġship ment +B ott +Ġal le +b earing +HT ML +Off line +Ġ2 13 +Ġscroll ing +Ġsc anned +ĠLib yan +ĠT OP +ch rom +d t +col umn +Psy NetMessage +Z ero +Ġtor so +0 50 +âķ IJ +Ġimp erson +ĠSchw artz +ud ic +Ġpiss ed +ĠS app +25 7 +ĠIS Ps +og l +Ġsuper vised +Ġad olescent +Ġatt ained +ĠDel ivery +ĠB unny +Ġ19 37 +Ġmini ature +Ġo s +Ġ3 70 +60 8 +ĠMour inho +Ġinn ate +Ġtem po +ĠN M +ĠFall en +00 9 +Ġprov ocative +Stream er +ĠBened ict +ĠBol she +Ġt urtle +ĠPC B +ĠEqu al +Direct or +ĠR end +Ġflu ids +Author ities +Ġcous ins +requ ency +ĠNeigh bor +s ets +sh ared +Char les +pass word +Ġg ears +Ġ2 11 +ĠHard ware +ri ka +Ġup stream +H om +Ġdisproportion ately +iv ities +Ġund efined +Ġelect rons +Ġcommem or +Event ually +Ġ> < +Ġir responsible +2 18 +ĠRe leased +ĠO VER +ĠI GN +ĠB read +st ellar +ĠS age +tt ed +dam age +ed ition +ĠPre c +Ġl ime +Ġconf inement +Ġcal orie +we apon +Ġdiff ering +ĠS ina +m ys +am d +Ġintric ate +k k +ĠP AT +ã o +st ones +lin ks +Ġr anch +Sem itic +Ġdifferent iate +ĠS inger +occup ied +Ġfort ress +c md +Ġinter ception +ĠAnk ara +Ġre pt +ĠSol itaire +Ġrem ake +p red +Ġd ared +aut ions +ĠB ACK +Run ning +Ġdebug ging +Ġgraph s +3 99 +ĠNig el +Ġb un +Ġpill ow +Ġprog ressed +fashion ed +Ġob edience +ER N +Ġrehe ars +C ell +t l +S her +Ġher ald +ĠPay ment +ĠC ory +ĠDe pt +Ġrep ent +ĠWe ak +uck land +Ġple asing +Ġshort ages +Ġjur ors +ĠK ab +q qa +Ant i +Ġw ow +ĠRC MP +Ġt sun +ĠS ic +Ġcomp rises +Ġsp ies +Ġprec inct +n u +Ġur ges +Ġtim ed +Ġstrip es +ĠB oots +Ġy en +Adv anced +Ġdisc rete +ĠArch angel +employ ment +D iff +Ġmon uments +Ġ20 9 +work er +Ġ19 6 +ĠI g +utter stock +T PS +J ac +Ġhomeless ness +Ġcomment ator +Ġrac ially +f ing +se ed +E le +ell ation +Ġeth anol +Ġpar ish +ĠD ong +ĠAw akening +Ġdev iation +ĠB earing +ĠTsu k +Ġrec ess +Ġl ymph +ĠCann abis +å ľ +ĠNEW S +Ġd ra +ĠStef an +ĠWr ong +ĠS AM +Ġloose ly +Ġinterpre ter +ĠPl ain +Go vernment +Ġbigot ry +Ġgren ades +ave z +pict ured +Ġmand ated +ĠMon k +ĠPed ro +Ġl ava +27 4 +Ġcyn ical +ĠScroll s +l ocks +M p +Ġcon gregation +orn ings +ph il +ĠI bid +Ġf erv +Ġdisapp earing +Ġarrog ant +sy n +ĠMa ver +ĠSu it +24 1 +Ġab bre +ack ers +P a +ĠY el +Whe never +Ġ23 5 +ĠV ine +ĠAn at +Ġext inct +LE T +Ġexecut able +V ERS +ox ide +D NA +ĠP rel +Ġresent ment +Ġcompr ise +ĠAv iv +Ġinter ceptions +Ġprol ific +IN A +ĠEr in +though t +2 19 +ĠPsychiat ry +un ky +chem ist +H o +ĠMcC oy +Ġbr icks +L os +ri ly +ĠUS SR +Ġr ud +Ġl aud +ĠW ise +ĠEmer ald +Ġrev ived +Ġdam ned +ĠRep air +id em +ct ica +Ġpatri arch +ĠN urs +me g +Ġcheap est +re ements +empt y +ĠCele br +Ġdepri vation +ch anted +ĠTh umbnails +E nergy +ĠEth an +ĠQ ing +Ġopp oses +W IND +v ik +ĠM au +ĠS UB +66 7 +G RE +ĠVol unte +nt on +C ook +å IJ +es que +Ġplum met +Ġsu ing +Ġpron ounce +Ġresist ing +ĠF ishing +ĠTri als +Ġy ell +Ġ3 10 +Ġin duct +Ġpersonal ized +oft en +R eb +EM BER +Ġview point +Ġexist ential +() ) +rem ove +MENT S +l asses +Ġev apor +Ġa isle +met a +Ġreflect ive +Ġentit lement +Ġdev ised +mus ic +asc ade +Ġwind ing +off set +Ġaccess ibility +ke red +Bet ter +ĠJohn ston +th inking +S now +ĠCroat ia +ĠAt omic +27 1 +34 8 +Ġtext book +ĠSix th +Ġ اÙĦ +Ġsl ider +ĠBur ger +b ol +S ync +Ġgrand children +Ġc erv ++ ) +Ġe ternity +Ġtweet ing +Ġspec ulative +Ġpiv otal +ĠW P +ĠT ER +ynam ic +Ġu pl +ĠC ats +per haps +Ġclass mates +Ġblat ant +' - +Ġl akh +ant ine +ĠB org +i om +/ ( +ĠAthlet ic +Ġs ar +OT A +ĠHoff man +Never theless +Ġad orable +Ġspawn ed +Ass ociated +ĠDom estic +Ġimpl ant +ĠLux em +ĠK ens +Ġp umps +ĠS AT +Att ributes +50 9 +av our +Ġcentral ized +ĠT N +Ġfresh ly +ĠA chieve +Ġouts iders +her ty +ĠRe e +ĠT owers +ĠD art +ak able +Ġm p +ĠHeaven ly +Ġr ipe +ĠCarol ine +ry an +Ġclass ics +Ġret iring +Ġ2 28 +Ġa h +Ġdeal ings +Ġpunch ing +ĠChap man +O ptions +max well +vol ume +Ġst al +Ġex ported +ĠQu ite +Ġnumer ical +B urn +F act +ĠKey stone +Ġtrend ing +Ġalter ing +ĠAfric ans +47 8 +ĠM N +ĠKn ock +Ġtempt ation +Ġprest ige +Over view +ĠTrad itional +ĠBah rain +Priv ate +ĠH OU +Ġbar r +ĠT at +C ube +US D +ĠGrand e +ĠG at +ĠFl o +Ġres ides +Ġind ec +vol ent +Ġperpet ual +ub es +Ġworld view +ĠQuant um +Ġfil tered +Ġen su +orget own +ERS ON +ĠM ild +37 9 +OT T +à ¥ +Ġvit amins +Ġrib bon +Ġsincere ly +ĠH in +Ġeight een +Ġcontradict ory +Ġgl aring +Ġexpect ancy +Ġcons pir +Ġmon strous +Ġ3 80 +re ci +Ġhand ic +Ġpump ed +Ġindic ative +Ġr app +Ġav ail +ĠLEG O +ĠMar ijuana +19 85 +ert on +Ġtwent ieth +################ ################ +ĠSw amp +Ġval uation +Ġaffili ates +adjust ed +ĠFac ility +26 2 +Ġenz ymes +itud inal +Ġimp rint +S ite +Ġinstall er +ĠT RA +m ology +lin ear +ĠCollect ive +ig ating +ĠT oken +Ġspec ulated +K N +ĠC ly +or ity +Ġdef er +Ġinspect ors +appro ved +R M +ĠSun s +Ġinform ing +ĠSy racuse +ib li +7 65 +Ġgl ove +Ġauthor ize +â̦â̦â̦â̦ â̦â̦â̦â̦ +ĠCru ise +Ġcontract ing +she ll +IF E +ĠJew el +p ract +ĠPhot oshop +ĠKnow ing +h arm +Ġattract ions +ad an +et us +01 8 +w agen +Al t +Ġmultip ly +Ġequ ilibrium +: { +ĠF ighters +ĠEd gar +Ġfour teen +Go vern +Ġmis use +Ġab using +Ġancest ry +ram er +64 4 +Ġwor ms +Ġthick er +ĠComb ine +Ġpeas ants +Ġv ind +Ġcon quest +Ġm ocked +Ġc innamon +ĠC ald +ĠGall up +Ġavoid ance +Ġincarn ation +ĠStr at +Ġt asted +ent a +ĠN eal +p ared +Ġtermin ology +ject ion +Scient ists +ĠIN S +ĠDe e +Ġdirect ories +R oad +ĠSh ap +br ight +ĠDirect ors +ĠCol umn +Ġb ob +Ġprefer ably +Ġgl itch +f urt +Ġe g +id is +C BC +Ġsur rendered +Ġtest ament +33 6 +ug gest +ĠN il +an other +Ġpat hetic +ĠDon na +Ġ2 18 +ĠA very +Ġwhis key +Ġf ixture +ĠCon quest +Ġbet s +O cc +ĠLe icester +] ." +Ġ) ); +Ġfl ashes +45 6 +Ġmask ed +ge bra +Ġcomput ed +che l +aud er +Ġdefe ats +ĠLiber ation +ĠOs ama +ĠV ive +Ch anges +Ch annel +Ġtar iffs +Ġm age +ĠS ax +Ġinadvert ently +ĠC RE +ĠRe aper +ink y +gr ading +Ġstere otyp +Ġcur l +ĠF ANT +Ġfram eworks +M om +ĠAn ch +Ġflav our +car bon +Ġperm itting +let cher +ĠMo zilla +ĠPark ing +ĠCh amp +Sc roll +Ġmurd erer +Ġrest ed +Ġow es +ĠP oss +AD D +IF F +res olution +ĠMin ing +Ġcompar ative +D im +Ġneighbour ing +ĠA ST +ĠT oxic +Ġbi ases +Ġgun fire +ur ous +ĠMom ent +19 83 +Ġper vasive +tt p +ĠNorm ally +r ir +S arah +ĠAlb any +Ġun sett +ĠS MS +ip ers +l ayer +ĠWh ites +up le +Ġtur bo +ĠLe eds +Ġthat s +ĠMin er +M ER +ĠRe ign +Ġper me +ĠBl itz +Ġ19 34 +Ġintimid ating +t ube +Ġecc entric +ab olic +box es +ĠAssoci ates +v otes +Ġsim ulate +um bo +aster y +Ġship ments +FF FF +an th +Ġseason ed +Ġexperiment ation +âĸ ł +law s +Me et +idd les +ant ics +R ating +IS IS +h ift +Ġfront s +b uf +01 7 +Ġun att +ĠD il +le ases +ĠGard ens +77 7 +t ouch +ve ll +45 8 +Ġ= ==== +s aving +Ġer osion +ĠQu in +Ġearn s +Ġaccomplish ment +ĠWe i +Ġ< [ +____ _ +Ġir rig +ĠT eddy +Ġconqu ered +ĠArm ored +Ġassert s +Ġmanip ulating +r é +Ġtranscript s +G allery +Ġplot ting +Ne il +Ġbetray al +load er +ĠS ul +Ġdispl acement +Ġroy alty +ĠW I +he it +ĠDev ices +alle l +Ġmunicipal ities +Ġcan al +St ars +ĠU AE +Ġ" â̦ +ĠC U +ab ove +Ġreson ance +ĠguiActive Un +add ed +ĠBra ves +ĠI bn +Ġhere by +ĠB RE +Ġshare holder +ĠH ir +ĠJ i +Ġstrange ly +Ġadm ired +Ġpl ight +Ġb achelor +ĠP ole +cipl inary +T ony +ĠArmen ian +Ġun man +ĠZion ist +St age +isco ver +Ġautom otive +Ġs idelines +Ġsl ick +ĠRena issance +ĠF UN +Im ages +ĠH aj +Ġp ing +Ġshort cut +ĠBl vd +ĠLook s +Ġbur sts +Ġcl amp +Ġm ish +Ġsort ing +Ġpatri ot +Ġcorrect ness +ĠScand inav +ĠCaval iers +p ython +az ar +Ġ3 75 +ĠJa une +40 9 +Ġdetrim ental +Ġstab bing +Ġpoison ed +Ġf ountain +oc ent +or st +ĠMar i +Ġr ains +ĠO vers +ĠInst itution +ud get +AM Y +t ale +ĠK R +ĠPr ices +Ġhead aches +Ġlands l +ĠA ura +Bon us +ĠZ hao +ĠH ip +Ġhop s +ĠKurd istan +Ġexplo iting +ry n +Ġhypocr isy +op ening +Ġgun shot +Ġw ed +inter stitial +Inter stitial +Ġam en +Bre aking +Ġmarket ed +W ire +ĠC rowd +Contin ue +ĠK nown +ĠEffect ive +ore an +iz ons +Jose ph +Ġescal ation +us ername +Ġcur tain +AT ES +ĠP AR +ĠM iy +Ġcounter fe +l ene +Ġcont enders +d aily +ĠAs c +ĠPhill ip +most ly +Ġfil ename +he ne +Ġresemb ling +Ġst aging +ĠCh loe +Ġw iring +H on +ĠRen ew +ott age +ĠHy brid +m uch +Ġstro kes +Ġpolicy makers +AP TER +ĠArk ham +pl ot +Ġassist ants +Ġde port +ĠSe ga +Ġinflu enza +ĠC ursed +ĠK obe +Ġskin ny +Prov ider +ĠR ip +Ġincrement al +product s +B F +Ġd ome +ĠC redits +Ġlos ers +int s +ĠBet ty +ĠTal ent +ĠD AM +L v +E ss +Ġd ens +tem p +J udge +od ic +Ġ' ( +UR ES +ets k +V O +Ġretrie ved +Ġarchitect s +Ù ĩ +Ġeth ic +ĠSecond ary +st ocks +ad ia +Ġ3 25 +ĠOp inion +Ġsimultane ous +Ġd izz +ul p +Ġsmugg ling +ipp ery +R andom +f acing +ĠD as +Ġstock p +Ġdiscl osures +po inter +Ġcor al +ĠSe lection +ĠP ike +ival ent +Ġruth less +ĠR im +Ġensu ing +ĠExper iment +Ġcongress man +Ġbelie ver +Ġun specified +ĠM ord +Ġknowledge able +ĠV ERY +T X +Ġstra ps +Ġtur f +apesh ifter +Ġmar ital +Ġfl ock +ãģ Ĩ +26 3 +AM ES +ĠOpp osition +Ġtre asures +ĠG OD +Ġmodel ed +ĠWOR LD +Ġ( [ +ĠUs age +H F +Ġ$ ( +uss ed +Ġpione er +E ight +par se +b read +rit z +ĠMir anda +ĠK ant +++ ) +ore n +Ġprov oked +Ġbre eds +ĠIn cludes +ĠPast ebin +ĠFl ip +J ava +Ġbr ink +Ġrum ored +Ġun seen +Ġgar nered +ĠDef in +al ted +Ġtatt oos +Ġhes itation +is itions +ĠWe aver +ĠReport ing +Ġtherap ies +Ġconsult ants +Ġresid ual +ĠMal i +ĠRom a +i ago +ĠRes idents +ub i +Ġremed ies +Ġadapt ive +ĠAl ive +ĠBar cl +Ġwal lets +c rypt +etermin ation +ĠPel osi +Ġsl ipping +oton in +Ġall iances +pat rick +ir is +Ġor th +ĠPer kins +ĠDe V +ĠG ets +Ġdry ing +ge e +fore st +ĠFor get +ore m +33 9 +Ġvague ly +ĠD ion +ĠP orn +ĠH OW +Ġp neum +Ġrub ble +ĠT aste +enc ia +ĠG el +Ġd st +Ġ24 5 +ĠMoroc co +inf lamm +ĠTw ins +Ġb ots +d aughter +ĠB alk +Ġbre thren +Ġlog os +Ġgo bl +f ps +Ġsub division +Ġp awn +Ġsquee zed +Ġmor ale +ĠD W +' " +Ġkn ot +ook y +Ġdiv isive +Ġboost ed +ch y +ãĥ IJ +if act +Ġnewcom ers +ĠWrest ling +Ġsc outs +w olves +R at +Ġnin eteenth +ĠOs borne +St ats +Ġem powered +Ġpsych opath +ĠO EM +ugg age +ĠP K +ĠMoh ammad +P ak +Ġanarch ists +ĠExt ract +est hes +ĠStock holm +l oo +ĠG raph +Ġdeploy ing +ĠStr anger +ĠM old +Ġstaff er +Ġdiscount ed +uck le +ple ase +ĠLand ing +ÃŃ a +Ġ19 3 +Ġan te +Ġrep etition +Ġ+ /- +Ġpar ody +Ġlive ly +AA A +ĠHor us +Ġp its +ind ers +L OC +ĠVen ice +40 6 +ĠDis cover +â Ĩ +ellect ual +Ġp ens +Ġey el +ig uous +Im pl +Ġj oking +Ġinv al +ĠBel fast +Ġcredit ors +ĠSky walker +ov sky +Ġcease fire +Ġse als +is oft +) ). +ĠFel ix +IT S +Ġt resp +ĠBlock chain +ew are +ĠSch war +en ne +mount ed +ĠBe acon +les h +Ġimmense ly +Ġche ering +Em ploy +sc ene +ish ly +atche wan +ĠNic olas +Ġdr ained +ĠEx it +ĠAz erb +j un +Ġflo ated +u ania +De ep +Ġsuper v +Ġmyst ical +ĠD ollar +ĠApost le +ĠR EL +ĠProv ided +ĠB ucks +ãĥ ´ +cut ting +Ġenhance ments +ĠPengu ins +ĠIsa iah +Ġj erk +ĠW yn +Ġst alled +Ġcryptoc urrencies +ĠR oland +sing le +Ġl umin +ĠF ellow +ĠCap acity +ĠKaz akh +W N +Ġfin anced +38 9 +Ġt id +Ġcoll usion +ĠMy r +î Ģ +Sen ator +Ġped iatric +Ġneat ly +Ġsandwic hes +ĠArchitect ure +Ġt ucked +Ġbalcon y +Ġearthqu akes +qu ire +F uture +Ġhe fty +é Ĺ +Ġspecial izes +Ġstress es +Ġs ender +Ġmisunder standing +Ġep ile +Ġprov oke +ĠCol ors +Ġdis may +uk o +[ _ +58 6 +ne utral +Ġdon ating +ĠRand all +Mult i +Ġconvenient ly +ĠS ung +ĠC oca +Ġt ents +ĠAc celer +Ġpart nered +27 2 +ir ming +ĠB AS +s ometimes +Ġobject ed +ub ric +p osed +LC S +gr ass +Ġattribut able +V IS +Israel i +Ġrepe ats +ĠR M +v ag +ut a +in ous +Ġin ert +ĠMig uel +æ Ń +ĠHawai ian +B oard +Ġart ific +ĠAzerb ai +as io +ĠR ent +A IN +Ġappl iances +Ġnational ity +Ġass hole +ĠN eb +Ġnot ch +h ani +ĠBr ide +Av ailability +Ġintercept ed +Ġcontin ental +Ġsw elling +ĠPers pect +b ies +. < +ith metic +ĠL ara +Ġtempt ing +add r +Ġoversee ing +cl ad +ĠD V +ĠGing rich +Ġm un +ĠApp ropri +Ġalter ations +ĠPat reon +Ġha voc +Ġdiscipl ines +Ġnotor iously +aku ya +ier i +? ). +ĠW ent +Ġsil icon +Ġtre mb +Cont ainer +K nown +Ġmort ar +est e +ick a +Ar thur +ĠPre viously +ĠMart y +Ġsp arse +g ins +Ġin ward +ĠParticip ant +C opy +ĠM isc +Ġantib iotic +ĠRet ro +Ġel usive +Ġass ail +ĠBatt alion +ĠB ought +Ġdimin ish +ĠEuro pa +s ession +ĠDanger ous +ies el +Ġdisbel ief +Ġbl asts +ext reme +ĠBoy d +ĠProject s +ĠGu ys +Ġunder gone +Ġgr ill +ĠDw ight +Ġ19 7 +US ER +Ġfiles ystem +Ġcl ocks +T aylor +Ġwra pper +Ġfold ing +ous and +ĠPhilipp ine +ATION AL +ĠPer th +Ġas hes +Ġaccum ulate +ĠGate way +Sh op +orks hire +H an +ĠBar rel +ĠLe h +ĠX V +Ġwh im +Ġrep o +ĠC G +ĠM am +Ġincorpor ating +Ġbail out +Ġlingu istic +Ġdis integ +C LE +Ġcinem atic +ĠF iber +S yn +il ion +ĠCom pos +c hens +Ġne oc +Ġbo iled +F INE +on o +un cle +ik en +ĠB M +Î ¹ +Ġreceipt s +Ġdisp osed +ĠTh irty +ĠR ough +ĠA BS +Ġnot withstanding +oll en +# $ +Ġunrel iable +Ġbl oom +Ġmedi ocre +Ġtr am +ĠTas man +Ġsh akes +Ġmanifest o +ĠM W +Ġsatisf actory +Ġsh ores +Ġcomput ation +Ġassert ions +orm ons +ar ag +ab it +Dem ocrats +ĠL oot +ĠVol ks +ha ired +Ġgrav itational +S ing +ĠM iz +Ġthro ttle +Ġtyr anny +ĠView s +Ġrob ber +ĠMinor ity +Ġsh rine +sc ope +pur pose +Ġnucle us +our cing +ĠUS DA +ĠD HS +w ra +ĠBow ie +Sc ale +ĠB EL +x i +I ter +Ġ( ), +w right +Ġsail ors +ous ed +NAS A +ĠPro of +ĠMin eral +t oken +ĠF D +R ew +Ġe ll +6 30 +Ġchance llor +ĠG os +Ġamount ed +ĠRec re +ome z +ĠOpt im +ĠOl ive +Ġtrack er +ow ler +ĠUn ique +R oot +Ġmar itime +ĠQur an +ĠAd apt +Ġecosystem s +ĠRe peat +ĠS oy +ĠI MP +Ġgrad uating +and em +P ur +ĠRes et +ĠTr ick +ĠPh illy +ĠT ue +ĠMalays ian +Ġclim ax +Ġb ury +Ġcons pic +ĠSouth ampton +ĠFl owers +Ġesc orted +ĠEduc ational +ĠI RC +Ġbrut ally +e ating +Ġpill ar +ĠS ang +ĠJ ude +ar ling +ĠAm nesty +Ġrem inding +ĠAdminist rative +hes da +Ġfl ashed +ĠP BS +per ate +fe ature +Ġsw ipe +Ġgra ves +oult ry +26 1 +bre aks +ĠGu er +Ġsh rimp +ĠV oting +qu ist +Ġanaly tical +Ġtables poons +ĠS OU +Ġresear ched +Ġdisrupt ed +Ġj our +Ġrepl ica +Ġcart oons +b ians +} ) +c opy +G ot +ou ched +P UT +Ġsw arm +not ations +s aid +Ġreb uilt +Ġcollabor ate +Ġr aging +Ġn ar +Ġdem ographics +ĠD DR +Ġdist rust +oss ier +ĠK ro +Ġpump kin +Ġreg rets +Ġfatal ities +ĠL ens +ĠO le +p d +Ġpupp et +ĠOut look +ĠSt am +O l +F air +U U +Ġre written +Ä ± +Ġfasc inated +Ġve ctors +Ġtrib unal +u ay +ĠM ats +ĠCo ins +[ [ +Ġ18 1 +Ġrend ers +ĠK aepernick +Ġesp ionage +Ġsum m +Ġd itch +Acc ount +Ġspread sheet +Ġmut ant +p ast +40 7 +Ġd ye +Ġinit iation +Ġ4 000 +Ġpunish able +Ġth inner +ĠKh al +Ġinter medi +D un +ĠGoth am +Ġeager ly +Ġvag inal +p owers +V W +ĠWATCH ED +Ġpred ator +ams ung +Ġdispar ity +Ġ[ * +Ġam ph +Ġout skirts +ĠSpir its +Ġskelet al +Ð » +ĠR ear +Ġissu ance +ĠLog ic +re leased +Z Z +ĠB ound +Ent ry +Ġex its +is ol +ĠFound er +Ġw re +ĠGreen land +ĠM MO +t aker +IN C +ãģ ¾ +Ġhour ly +hen ko +Ġfantas ies +Ġdis ob +Ġdemol ition +ãĥ ĭ +Ġen listed +rat ulations +Ġmis guided +Ġens ured +Ġdiscour aged +m ort +Ġfl ank +Ġc ess +Ġreact s +ĠS ere +s ensitive +ĠSer pent +ass ad +Ġ24 7 +Ġcalm ly +b usters +Ġble ed +ĠSt ro +Ġamuse ment +ĠAntar ctica +Ġs cept +ĠG aw +a q +ason ic +Ġsp rawling +n ative +atur ated +ĠBattle field +IV ERS +E B +ĠG ems +ĠNorth western +ĠFil ms +ĠAut omatic +Ġappre hend +ãģ ¨ +Ġgui Name +Ġback end +Ġevid enced +ge ant +01 2 +ĠS iege +Ġexternal To +Ġunfocused Range +ĠguiActiveUn focused +Ġgui Icon +ĠexternalTo EVA +ĠexternalToEVA Only +F ri +ch ard +en aries +Ġchief s +Ġc f +ĠH UD +Ġcorro bor +Ġd B +ĠT aken +ĠPat ricia +ra il +ĠCh arm +ĠLiber tarian +rie ve +Person al +ĠO UR +ger ies +Ġdump ing +Ġneurolog ical +it imate +ĠClint ons +raft ed +ĠM olly +Ġtermin als +reg ister +Ġfl are +Ġenc oded +Ġautop sy +p el +m achine +Ġexempt ions +ĠRoy als +d istance +Ġdraft s +Ġl ame +ĠC unning +Ġsp ouses +ĠMark ets +ĠCar rier +Ġimp lying +ĠY ak +s id +Ġl oser +Ġvigil ant +Ġimpe achment +Ġaug mented +ĠEmploy ees +Ġunint ended +tern ally +ĠW att +Ġrecogn izable +ess im +æ Ŀ +Ġco ated +r ha +Ġlie utenant +ĠLegisl ation +pub lished +44 4 +01 3 +Ġide ally +ĠPass word +Ġsimpl ify +ĠMet a +ĠM RI +Ġple ading +organ ized +hand ler +Ġun ravel +cor rect +Ġ icy +Ġparan oid +Ġpass er +Ġinspect ions +of er +ĠHealth care +28 3 +ĠBr ut +iol a +for ge +ĠMed ieval +MS N +ie vers +ĠProgram ming +å ī +Ġ2 23 +m u +ĠC LE +ug a +Ġsho ppers +Ġinform ative +ĠPl ans +Ġsupplement ation +ĠT ests +ty ard +ocy tes +ĠVeg a +ĠGujar at +erman ent +Ex cept +ĠL OT +all a +ĠC umm +ĠO sw +Ġven om +ĠDeb t +ĠD OWN +Ġreun ion +Ġm uc +ĠRel ief +Ġge op +ĠðŁ ĺ +al ogue +An th +ech o +Ġcor ros +Ġrepl ication +ĠBl azing +ĠD aughter +Ġinf lic +ĠLind sey +Ù Ī +28 4 +Ex it +Ġgl oom +TA IN +Ġundermin ing +Ġadv ising +h idden +Ġover flow +Ġg or +urd ue +Ġe choes +enh agen +Ġimp uls +d rug +c ash +Ġas ync +Ġmir ac +at ts +p unk +Ġpiv ot +ĠLegisl ative +Ġblog gers +ĠCl aw +s burg +d yl +ĠRecomm end +Ġver te +Ġprohib iting +ĠPant her +Jon athan +Ġo min +Ġhate ful +28 1 +ĠOr che +ĠMurd och +down s +Ġas ymm +G ER +Al ways +Ġinform s +ĠW M +ĠP ony +ĠApp endix +ĠAr lington +J am +Ġmedic inal +ĠS lam +IT IES +Ġre aff +ĠR i +F G +S pring +b ool +Ġthigh s +Ġmark ings +ĠRa qqa +ĠL ak +p oll +ts ky +ĠMort y +ĠDef inition +Ġdeb unk +end ered +ĠLe one +a vers +Ġmortg ages +App arently +N ic +ha us +ĠTh ousands +au ld +Ġm ash +sh oot +Ġdi arr +Ġconscious ly +H ero +e as +ĠN aturally +ĠDestroy er +Ġdash board +serv ices +R og +Ġmillenn ials +Ġinv ade +- ( +Ġcomm issions +ĠA uckland +Ġbroadcast s +Ġfront al +Ġcr ank +ĠHist oric +Ġrum ours +CT V +Ġster il +Ġboost er +rock et +ãĤ ¼ +ut sche +ĠP I +Ġ2 33 +ĠProdu cer +ĠAnaly tics +Ġinval uable +Ġunint ention +ĠC Y +Ġscrut in +Ġg igg +Ġeng ulf +Ġprolet ariat +Ġh acks +ĠH ew +ar ak +ĠSl ime +ield ing +ag her +ĠEll iot +Ġtele com +Ġ2 19 +ult an +ĠAr bor +ĠSc outs +B an +Ġlifes pan +Ġbl asp +38 8 +Ġjud iciary +ĠContin ental +ask ing +Mc C +L ED +Ġbag gage +ĠSorce rer +Ġrem nants +ĠGriff ith +ets u +ĠSub aru +ĠPerson ality +des igned +ush ima +agn ar +Ġrec oil +Ġpass ions +\ ": +Ġte e +Ġabol ition +ĠCreat ing +j ac +Ġ19 4 +01 9 +Ġpill ars +ric hed +/ " +t k +Ġlive lihood +Ġro asted +ah on +ĠH utch +ass ert +Ġdivid end +Ġkn it +Ġd aunting +Ġdisturb ance +Ġsh ale +Ġcultiv ated +Ġrefriger ator +L B +ĠN ET +Ġcommercial s +Ġthink ers +45 5 +Ġch op +B road +Ġsuspic ions +Ġtag ged +l ifting +Ġsty lish +ĠShield s +Short ly +Ġt ails +A uth +ST E +ĠG AME +Ġse ism +ĠK is +olog ne +Ġcow ork +Ġforc ibly +Ġthy roid +ĠP B +AN E +mar ried +h orse +Ġpoly mer +ĠCh al +od or +DE BUG +ĠCon text +Ġbl iss +Ġpin point +ĠMat hemat +leg ram +ĠWeek end +Ġlab elled +Ġb art +it les +Ġest rogen +âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ +" ' +Ġvis ibly +Ġouts ider +aid a +Are a +Ġdisse min +Ġdish onest +ĠCl osed +ĠBullet in +ĠRam sey +sw ord +ĠX I +our ced +S ame +34 6 +ĠRe pe +ĠK ou +c ake +em is +C ache +ĠMe aning +ĠEn light +onom y +Ġmanifest ation +sw orth +J ay +Ġch ore +ö r +D ream +Ġsanction ed +Ġcult urally +ĠA ra +N av +Ġthe ological +Ġstr ut +ĠV O +ĠHand book +Ġconstruct ing +Ġ ¶ +ĠBenef its +ĠPsych ological +s ac +å ¸ +p olicy +ĠMat ters +ĠReport ed +ĠBy te +Ġvit ro +ĠM aiden +Ġl am +ĠJenn ings +Ġgar ment +ĠRut gers +ĠStaff ord +ĠWell ington +Ġinter mitt +Ġn pm +Ġord eal +Ġplug ged +o oming +in ished +fram ework +Ġtim ber +Ġc ass +Ġ8 50 +il ess +ĠRed ux +7 68 +St re +Ġsurpass ed +w hel +Ġparalle ls +Ġve il +ĠG I +ĠR EST +Ġread iness +s ort +Ġmod ifying +ĠSl ate +ru ff +Ġmar ble +Ġinf rared +Ġaud itor +ĠFANT ASY +ĠP overty +ĠS PD +Ġ" ( +K y +RA Y +Ġexecut ions +ĠBever ly +ĠMarx ism +ĠBur st +ĠK ali +est ones +Clear ly +E ll +ãģ § +ĠProceed ings +T oken +IF IC +ñ a +Cent ral +ĠH aley +ĠD rama +Ġform ations +OR N +Book s +Ġdom inating +ĠFly ers +ĠCompan ion +Ġdiscipl ined +ĠYug oslav +ĠSpell s +Ġv engeance +Ġland lords +L en +ĠO gre +ano ia +Ġpier cing +Ġcon greg +Ġscore r +ob ia +Ġnic kel +ĠLear ns +Ġre jo +Ġmaster piece +Fl ash +Ġinhab ited +ĠOpen GL +ĠD ud +ĠI CO +Ġar ter +Ġpl ur +Ġmaster y +Ġlong standing +st ed +Ġw ines +Ġtelev ised +ĠSh rine +ĠBay ern +Ġâ ĵĺ +Ġencl osure +j ohn +Ġprophe ts +ĠRes urrection +ĠOrd ers +Ġun even +r als +Ġd wind +ĠL ah +ĠSl oven +37 8 +Ġins istence +aff le +ĠCl one +Ġhard ship +ĠCongress man +Ġple ad +Ġreview ers +Ġc ured +Ġ19 35 +as ley +f ake +ĠTh inking +yd ia +P ART +ĠD ota +o it +Ġwh ipped +Ġb ouncing +ĠHispan ics +com ings +Ġcann abin +ĠCh ambers +ĠZ ack +Option al +Ġco ats +Ġprow ess +ĠNort on +Ġplain ly +Ġfre ight +Ġinhib ition +Ġcl am +Ġ30 3 +ke f +ale igh +L uke +Ġpsych o +ator ium +M ED +Ġtreat ies +Ġind isc +Ġd c +OP S +Ġresil ient +ĠInter state +Ġsl ack +Ġmund ane +Ġestab lishes +35 9 +Ġstr ained +Ġn ond +S us +Ġcast e +ar ate +ie ving +Ġunfair ly +Ġpars er +on ial +urs ive +V ia +ĠOtt o +ĠAuthor ities +stro ke +K R +ĠMer cy +Ġfurn ished +Ġout set +Ġmet ic +19 82 +olith ic +ĠT ent +og ical +ĠA ircraft +Ġh ides +ĠBec ame +Ġeduc ators +re aching +Ġvol atility +Ġtodd ler +ĠNAS CAR +ĠTw elve +ĠHigh lights +Ġgra pe +Ġspl its +Ġpe asant +Ġre neg +ĠMS I +Tem p +st ars +Ġtre k +ĠHy de +b inding +Ġreal ism +Ġox ide +ĠH os +Ġmount s +Ġbit ing +Ġcollaps ing +Ġpost al +Ġmuse ums +Ġdet ached +Ġrespect ing +Ġmonop ol +Ġwork flow +ĠC ake +Tem plate +ĠOrgan isation +Ġpers istence +36 9 +C oming +B rad +Ġredund ant +ĠG TA +Ġb ending +Ġrev oked +Ġoff ending +Ġfram ing +Ġprint f +Comm un +mem bers +Out side +Ġconst rued +Ġc oded +F ORE +Ġch ast +Ch at +Ind ian +ĠY ard +? !" +ĠP orts +ĠX avier +ĠR ET +' ." +ĠBo at +iv ated +ich t +umer able +D s +ĠDun n +Ġcoff in +Ġsecure ly +ĠRapt ors +ĠB es +Install ation +Ġin ception +ĠHealth y +end ants +Ġpsych ologists +ĠShe ikh +c ultural +ĠBlack Berry +sh ift +F red +oc he +Ġc akes +ĠS EO +ĠG ian +ĠAs ians +og ging +e lement +Ġpund its +ĠV augh +ĠG avin +Ġh itter +Ġdrown ed +Ġch alk +ĠZ ika +Ġmeas les +80 2 +â̦ .. +ĠAW S +] " +Ġdist ort +ĠM ast +Ġantib odies +ĠM ash +Mem ory +ĠUg anda +ĠPro b +Ġvom iting +ĠTurn s +Ġoccup ying +Ġev asion +ĠTher apy +Ġprom o +Ġelect r +Ġblue print +ĠD re +pr iced +ĠDep ot +Ġallev iate +ĠSom ali +m arg +n ine +Ġnostalg ia +ĠShe pherd +Ġcaval ry +Ġtor ped +ĠBlood y +x b +Ġs ank +Ġgo alt +report print +embed reportprint +clone embedreportprint +ĠIn itially +ĠF ischer +Ġnot eworthy +c ern +Ġin efficient +raw download +rawdownload cloneembedreportprint +c ation +ĠD ynasty +l ag +D ES +Ġdistinct ly +ĠEston ia +Ġopen ness +Ġg ossip +ru ck +W idth +ĠIb rahim +Ġpet roleum +Ġav atar +ĠH ed +ath a +ĠHog warts +Ġc aves +67 8 +Ġsafegu ard +ĠM og +iss on +ĠDur ham +sl aught +ĠGrad uate +Ġsub conscious +ĠEx cellent +ĠD um +---- - +Ġp iles +ĠW ORK +ĠG arn +ĠF ol +ĠAT M +Ġavoid s +ĠT ul +Ġble ak +EL Y +iv ist +light ly +P ers +ĠD ob +ĠL S +Ġins anity +Î µ +atal ie +En large +Ġtw ists +Ġfault y +Ġpir acy +Ġimp over +Ġrug ged +ĠF ashion +Ġs ands +' ? +sw ick +Ġn atives +Ġhe n +ĠNo ise +ãĥ Ĺ +Ġg reens +Ġfree zer +Ġd ynasty +ĠFather s +ĠNew ark +Ġarchae ological +Ġo t +ob ar +Ġblock ade +Ġall erg +L V +Ġdeb it +ĠR FC +ĠMil ton +ĠPress ure +Ġwill ingly +Ġdisproportion ate +Ġopp ressive +Ġdiamond s +Ġbelong ings +19 70 +Ġbell s +Ġimperial ism +Ġ2 27 +Ġexpl oding +ĠE clipse +Ġ19 19 +Ġr ant +Ġnom inations +34 7 +Ġpeace fully +ric a +ĠF UCK +Ġvib ration +mal ink +Ġro pes +ĠIv anka +ĠBrew ery +ĠBook er +ĠOw ens +go ers +Serv ices +ĠSn ape +Ġ19 1 +39 5 +Ġ2 99 +just ice +Ġb ri +Ġdisc s +Ġprom inently +Ġvul gar +Ġsk ipping +l ves +Ġtsun ami +37 4 +ĠU rug +ĠE id +rec ated +p hen +Ġfault s +ĠStart ed +9 50 +Ġp i +Ġdetect or +Ġbast ard +Ġvalid ated +Space Engineers +OUR CE +Ġ( ~ +Ġuns ur +Ġaff irmed +Ġfasc ism +Ġres olving +ĠCh avez +ĠC yn +Ġdet ract +L ost +Ġrig ged +Ġhom age +ĠBrun o +55 5 +ec a +Ġpress es +Ġhum our +Ġsp acing +Ġ' / +olk ien +C oun +OP ER +T re +S on +ĠCambod ia +ier re +m ong +o zy +Ġliquid ity +ĠSov iets +ĠFernand o +Ġ2 29 +Ġsl ug +ĠCatal an +elect ric +Ġsc enery +ĠH earth +Ġconst rained +Ġgoal ie +ĠGu idelines +ĠAm mo +ĠPear son +Ġtax ed +Ġfet us +Resp onse +ĠAlex is +th ia +G uy +Ġrecon struct +Ġextrem es +Ġconclud ing +ĠP eg +ook s +Ġded uctions +R ose +Ġground breaking +ĠT arg +ãĥ ģ +ĠRe ve +res ource +Ġmo ons +Ġelectrom agnetic +Ġamid st +ĠVik tor +N ESS +B ACK +Ġcomm ute +ĠAna heim +Ġfluct uations +6 40 +Ġnood les +ĠCop enhagen +ĠT ide +ĠGri zz +ĠS EE +Ġpip elines +Ġsc ars +end o +ag us +ĠE TF +/ # +ĠBec ome +44 8 +Ġvis c +ĠRecomm ended +Ġj umper +Ġcogn ition +Ġassass in +Ġwitness ing +ĠSet up +Ġl ac +v im +IS M +p ages +SS L +35 8 +Ġad ject +indust rial +l ore +cher y +Ġgl itter +Ġc alf +Flor ida +Ġspoil ers +Ġsucceed s +Ġch anting +Ġslog ans +ĠTr acy +Vis it +rol ogy +Ġm ornings +Ġline age +Ġs ip +Ġintense ly +Ġflour ish +ĠSle eping +ĠF em +or por +ĠK lan +ĠDar th +h ack +ĠNi elsen +Ġtum ors +Ġprocure ment +ĠY orkshire +Ġra ided +K Y +An na +Ġ// [ +ĠDis order +ĠMust ang +ĠW en +ĠTry ing +s q +Ġdeliver ies +Ġshut ter +Ġcere bral +Ġbip olar +ĠC N +l ass +j et +Ġdeb ating +> : +Ġe agle +gr ades +ĠD ixon +UG C +M AS +ĠDr aco +ĠMach ines +aff er +Ġem an + ² +pr on +ĠG ym +Ġcompar atively +ĠTrib unal +PR O +Ġle x +Ġfert ile +Ġdep ressing +Ġsuperf icial +ess ential +ĠHun ters +g p +Ġprom inence +L iber +ĠAn cest +ote chnology +Ġm ocking +ĠTra ff +ĸ ļ +Med ium +I raq +Ġpsychiat rist +Quant ity +ĠL ect +Ġno isy +5 20 +G Y +Ġsl apped +ĠM TV +Ġpar a +p ull +Mult iple +as her +Ġn our +ĠSe g +Spe ll +v ous +ord ial +Sen ior +ĠGold berg +ĠPl asma +ne ed +Ġmess enger +ere t +Ġteam ed +Ġliter acy +ĠLe ah +ĠD oyle +Ġem itted +U X +Ġev ade +Ġm aze +Ġwrong ly +ĠL ars +Ġstere otype +Ġpled ges +Ġarom a +ĠM ET +Ġac re +ĠO D +Ġf f +Ġbrew eries +ĠH ilton +und le +ĠK ak +ĠThank fully +ĠCan ucks +in ctions +ĠApp ears +Ġco er +Ġundermin ed +ro vers +And re +Ġbl aze +um ers +Ġfam ine +amp hetamine +ulk an +Am ount +Ġdesper ation +wik ipedia +develop ment +ĠCor inth +uss ia +Jack son +L I +N ative +R s +Oh io +ĠKath leen +F ortunately +Ġattend ant +ĠPre ferred +ĠDid n +ĠV s +M is +Ġrespond ent +Ġb oun +st able +Ġp aved +Ġunex pl +ĠChe ney +L M +ĠC ull +bl own +Ġconfront ing +oc ese +serv ing +W i +ĠLith uania +ann i +Ġst alk +h d +Ġv ener +AP H +ynchron ous +UR R +um ably +hist oric +H alf +H ay +Ġresil ience +spe ction +Ġabandon ing +O bs +ĠDeb bie +Ġgrad ient +ĠPl aint +ĠCan al +AR CH +Ġexpans ive +Ġfun g +Ġb ounced +U nd +Ġprec autions +Ġclar ification +Ġd agger +Ġgri ps +Ġ µ +ĠRiver a +ĠUnd ead +is ites +ĠFIR ST +ñ o +aud i +Ġhost ages +Ġcompl iant +Ġal umni +Se ven +Ġcyber security +e ither +Col lect +Ġinvari ably +ĠS oci +Ġlaw maker +Ġa le +ĠPerson ally +N azi +Ġcustom ization +ĠPro c +ĠSask atchewan +eat uring +Ġsp ared +Ġdiscontin ued +Ġcomput ational +ĠMotor ola +Ġsuprem acist +government al +Ġparad ise +ĠDown ing +ĠNik on +Ġcat alyst +ber ra +Tor onto +8 75 +bet a +ĠMac ron +Ġunreal istic +ve ctor +ĠVeh icles +it iveness +ĠR V +ĠCol bert +s in +o ji +ent in +ĠKr ish +hell o +ff ield +ok y +ĠT ate +Ġmap le +Ġa ids +chem ical +33 4 +n uts +ĠWar p +Ġx x +ĠRob b +umer ous +_- _ +ft ime +ĠV W +Ġw inger +ĠD ome +t ools +ĠP V +ĠGe orgetown +Ġg eared +Ġjihad ists +Ġc p +Ġster oids +M other +cler osis +ĠDR M +nes ia +Ġl inger +Ġimm ersive +ĠC OUN +Ġoutwe igh +ens ual +B and +Ġtransform s +mat ched +ps ons +ĠJud icial +f actor +Ġrefer ral +Ġodd ly +ĠW enger +B ring +ĠB ows +60 2 +IC LE +Ġl ions +ĠAcad emic +ĠTh orn +ĠRa ider +kef eller +St orage +L ower +ĠOr t +ĠEqu ality +AL T +ĠS OC +T ypes +Ġl yn +ĠAss et +co at +TP P +C VE +ĠPione er +app lication +Mod ern +ĠH K +En vironment +Al right +R ain +IP P +ĠShi ite +Ġm ound +ĠAb ilities +cond ition +St aff +Ġcompet ence +ĠM oor +ĠDi ablo +Ġwith held +Ġost ensibly +ĠB rom +Ġms g +Ġden omin +ĠRef erences +ĠF P +Ġplun ged +Ġp amph +m oving +cent ral +Ġdown right +Ġf ading +T al +T yp +ĠTh y +uk es +it he +Ġo ve +Ġbatt led +Ġseaf ood +Ġfig ur +ĠR D +c rop +Ġsqu ads +{ \ +à ¹ +ĠE h +Ġinterview ing +ĠQ in +Ġas piring +PL IC +Ġcla uses +ĠG ast +ĠN ir +Ġl uggage +Ġh ose +Ġsystem d +Ġdesc ending +ĠRev ised +ĠR ails +al ign +70 9 +33 7 +Ġf ug +charg ing +t ags +Ġut er +k ish +WAR NING +49 0 +prof its +Ġvoy age +Ġa ce +ĠV anguard +ĠT anks +ĠM uk +Ġ2 26 +S afe +Ar mor +Ġvolcan ic +Ġwom b +ĠM IL +Ġbegin ner +ĠRec ogn +ĠA AP +PL AY +) ! +Ġdetect ing +c n +Ġbre aches +Bas ically +ĠP ag +ĠMunicip al +ĠInd ie +ĠL af +ĠDis able +ĠOl son +Ġrest rained +Ġrul ings +Ġhum ane +ev ents +ĠCinem a +display Text +ĠH atch +action Date +onna issance +Ġassault ing +ĠL ug +CH AT +Ġvig orous +ĠPer se +Ġintoler ance +ĠSnap chat +ĠSh arks +Ġd ummy +ĠDi agn +ĠGu itar +im eters +40 3 +RE G +A x +Ġsepar ates +ĠMah m +Ġt v +j ah +O OL +C irc +ĠWinds or +uss ian +Ġintu ition +Ġdis dain +ĠDon ovan +Ġ2 21 +E mb +Ġcondem ning +Ġgener osity +zz y +Ġpant ies +ĠPre vent +Action Code +AN A +34 2 +external ActionCode +Ġspec ifying +Ġcryst all +J ere +Ġru pt +ĠApp rentice +Ġprof iling +Ð º +St rike +Ġsid eline +Ġoblig ated +Ġocc ult +Ġbureaucr atic +ant ically +rupt ed +neg ative +ĠEthiop ia +ĠC ivic +Ġins iders +el igible +ĠTV s +ĠB AR +ĠT I +i ologist +ĠA IR +Ġsubstit uted +Ar ab +ĠS aul +ĠY og +p rem +Ġbuild ers +Ġstation ary +Ġdoubt ful +Ġvig orously +Ġthr illing +Ph ysical +ĠCare y +ĠHyd ra +geon ing +ĠS ly +y ton +Ġborrow ers +ĠPark inson +Ġ ë +ĠJama ica +Ġsat ir +Ġinsurg ents +ĠF irm +Ġis ot +ĠK arn +our ning +ak ens +doc s +l ittle +ĠMon aco +CL ASS +Tur key +L y +ĠCon an +ass ic +Ġstar red +ĠPac ers +et ies +Ġt ipping +M oon +ĠR w +s ame +Ġcav ity +Ġgo of +ĠZ o +Sh ock +um mer +Ġemphas izes +Ġreg rett +Ġnovel ty +Ġen vy +ĠPass ive +r w +50 5 +Ġind ifferent +ĠR ica +ĠHim self +ĠFred die +Ġad ip +ä¸ Ģ +Ġbreak out +Ġhur ried +ĠHu ang +ĠD isk +Ġro aming +?????- ?????- +U V +ĠRick y +ĠS igma +Ġmarginal ized +Ġed its +Ġ30 4 +mem ory +Ġspec imen +29 3 +ãģ ¯ +Ġvert ically +Ġaud ition +ĠHe ck +Ġc aster +ĠHold ings +ad al +ĠC ron +ĠL iam +Ġdef lect +P ick +ĠDeb ug +RE F +Ġvers atility +ot hes +class ified +ĠMah ar +ĠH ort +C ounter +st asy +not iced +33 1 +ĠSh im +f uck +ĠB ie +Ġair ing +ĠPro tein +ĠHold ing +Ġspect ators +ili ated +ĠThat cher +n osis +ãĥ¼ ãĥ³ +Te le +B oston +ĠTem pl +st ay +Ġdecl arations +47 9 +Vol ume +ĠDesign er +ĠOver watch +id ae +Ġon wards +Ġn ets +ĠMan ila +part icularly +Ġpolit ic +o other +Ġport raits +Ġpave ment +c ffff +Ġs aints +Ġbegin ners +ES PN +Ġshort comings +âķIJ âķIJ +Ġcom et +ĠOrgan ic +qu el +Ġhospital ized +Bre ak +Ġpe el +dyl ib +asp x +ur ances +ĠT IM +P g +Ġread able +ĠMal ik +Ġm uzzle +Ġbench marks +d al +ĠV acc +ĠH icks +60 9 +ĠB iblical +he ng +Ġover load +ĠCivil ization +Ġimm oral +Ġf ries +ãĤ Ĵ +Ġreprodu ced +Ġform ulation +j ug +ire z +g ear +Ġco ached +Mp Server +ĠS J +ĠK w +In it +d eal +ĠO ro +ĠL oki +ĠSong s +Ġ23 2 +ĠLou ise +asion ally +Ġunc ond +olly wood +Ġprogress ives +ĠEn ough +ĠDo e +Ġwreck age +Ġbr ushed +ĠBase Type +Ġz oning +ish able +het ically +ĠC aucus +ĠH ue +Ġk arma +ĠSport ing +Ġtrad er +Ġseem ing +ĠCapt ure +4 30 +b ish +Ġt unes +Ġindo ors +ĠSp here +ĠD ancing +TER N +Ġno b +ĠG ST +m aps +Ġpe ppers +F it +Ġoverse es +ĠRabb i +ĠR uler +vert ising +off ice +xx x +Ġra ft +Ch anged +Ġtext books +L inks +ĠO mn +ãĢ ij +Ġinconven ience +ĠDon etsk += ~ +Ġimplicit ly +Ġboost s +ĠB ones +ĠBo om +Cour tesy +Ġsens ational +AN Y +Ġgre edy +ed en +Ġinex per +ĠL er +ĠV ale +Ġtight en +ĠE AR +ĠN um +Ġancest or +S ent +ĠH orde +urg ical +all ah +Ġsa p +amb a +ĠSp read +tw itch +Ġgrand son +Ġfract ure +Ġmoder ator +ĠSe venth +ĠRe verse +Ġestim ation +Cho ose +Ġpar ach +Ġbar ric +ãĢ IJ +Ġcomp ass +Ġall ergic +âĢ ķ +OT HER +err illa +Ġw agon +Ġz inc +Ġrub bed +ĠFull er +ĠLuxem bourg +ĠHoo ver +Ġli ar +ĠEven ing +ĠCob b +est eem +Ġselect or +ĠB rawl +is ance +ĠE k +Ġtro op +Ġg uts +ĠApp eal +ĠTibet an +Ġrout ines +ĠM ent +Ġsummar ized +steam apps +Ġtr anqu +Ġ19 29 +or an +ĠAut hent +Ġg maxwell +Ġappre hens +Ġpo ems +Ġsa usage +ĠWeb ster +ur us +Ġthem ed +Ġl ounge +Ġcharg er +Sp oiler +Ġsp illed +h og +ĠSu nder +ĠA in +ĠAng ry +Ġdis qual +ĠFrequ ency +ĠEther net +Ġhel per +Per cent +Ġhorr ifying +Ġa il +ĠAll an +EE E +ĠCross ing +44 9 +Ġh olog +ĠPuzz les +ĠGo es +eren n +60 4 +ãģ ı +ĠRaf ael +Ġatt en +ĠE manuel +Ġup ro +ĠSus p +P sych +ĠTr ainer +ĠN ES +ĠHun ts +bec ue +Ġcounsel or +R ule +Ġtox ins +Ġb anners +r ifice +Ġgreet ing +Ġfren zy +Ġall ocate +Ġ* ) +ex pr +50 3 +ĠCh ick +ĠT orn +Ġconsolid ation +ĠF letcher +sw itch +fr ac +cl ips +ĠMcK in +ĠLun ar +Mon th +IT CH +Ġscholar ly +rap ed +39 8 +Ġ19 10 +Ġe greg +Ġin secure +Ġvict orious +cffff cc +Ġsing led +Ġel ves +ĠW ond +bur st +Ġcam oufl +ĠBL ACK +Ġcondition ed +ç ī +ans wered +Ġcompuls ory +asc ist +Ġpodcast s +ĠFrank furt +bn b +Ġne oliberal +ĠKey board +ĠBel le +w arm +Ġtrust s +Ġins ured +ĠBu cc +us able +60 7 +ĠPl ains +Ġ18 90 +Ġsabot age +Ġlod ged +f elt +Ġg a +ĠN arc +ĠSal em +Ġsevent y +ĠBl ank +p ocket +Ġwhis per +Ġm ating +om ics +ĠSal man +ĠK ad +Ġan gered +Ġcoll isions +Ġextraord inarily +Ġcoerc ion +G host +b irds +è Ģ +k ok +Ġper missible +avor able +Ġpo inters +Ġdiss ip +ac i +Ġtheat rical +ĠCos mic +Ġforget ting +Ġfinal ized +å¤ § +y out +l ibrary +Ġbo oming +ĠBel ieve +ĠTe acher +ĠL iv +ĠGOOD MAN +ĠDomin ican +OR ED +ĠPart ies +Ġprecip itation +ĠSl ot +R oy +ĠComb ined +Ġinteg rating +Ġch rome +Ġintest inal +ĠRe bell +Ġmatch ups +Ġblock buster +ĠLore n +ĠLe vy +Ġpre aching +ĠS ending +ĠPur pose +ra x +f if +Ġauthor itative +ĠP ET +ast ical +Ġdish on +Ġchat ting +Ġ"$ :/ +Connect ion +Ġrecre ate +Ġdel inqu +Ġbro th +ĠD irty +ĠAd min +z man +Ġscholars hips +Ġ25 3 +cont act +als a +7 67 +c reen +abb age +Ġ19 15 +Ġbl ended +Ġal armed +L anguage +35 6 +Ġbl ends +ĠCh anged +W olf +Ġhe pat +Creat ing +Ġper secut +Ġsweet ness +art e +Ġforfe iture +ĠRober to +im pro +N FL +ĠMag net +Det ailed +Ġinsign ificant +ĠPOL IT +ĠBB Q +ĠC PS +Ġse aw +amin er +m L +end if +f inals +Ġ26 5 +u ish +Ġ} ) +ĠPro blems +Ġem blem +Ġserious ness +Ġpars ing +Ġsubst itution +Ġpress ured +Ġrecy cled +ale b +Rub y +Ġprof iciency +Dri ver +ĠW ester +: ' +AF TA +Ġm antle +ĠClay ton +fl ag +Ġpractition er +c overed +ĠSt ruct +add afi +4 25 +ĠTown ship +ĠHyd ro +Lou is +34 3 +Ġcond o +ĠT ao +Ġutil ization +Ġnause a +ĠDem s +rid ges +p ause +Ġform ulas +Ġchall enger +37 6 +Ġdefect ive +ĠRail way +ĠPub Med +Ġyog urt +l bs +ĠNor folk +OP E +ĠMood y +Ġdistribut or +Ġscroll s +Ġextract s +St an +Ġv iability +Ġexp oses +Ġstar vation +ĠStep s +ĠD odd +f ew +ST D +33 2 +Ġclos ures +Ġcomplement ary +ĠS asha +ump y +Ġmon et +Ġartic ulate +ĠDo ct +k iller +Ġsc rim +Ġ2 64 +Ġprost itutes +Ġse vered +Ġattach ments +Ġcool ed +L ev +ĠF alk +f ail +Ġpolic eman +ĠD ag +Ġpray ed +ĠK ernel +Ġcl ut +Ġc ath +Ġan omaly +St orm +em aker +ĠBreak fast +ul i +o ire +J J +h z +Oper ation +ĠS ick +35 4 +ĠGuatem ala +R ate +Ġexp osures +f aces +ĠArch ae +ra f +ĠM ia +Ġ20 25 +Ġop aque +Ġdisgu ised +ĠHead quarters +S ah +Ġp ots +9 78 +ĠM alf +Ġfrown ed +Ġpoison ous +ĠCon vers +ee ks +Ġcr ab +." " +Ġtre ason +Ġr anc +Ġescal ating +Ġwar r +Ġmob s +Ġl amps +ĠSun shine +ĠBrun swick +Ph ones +Ġspe lled +ĠSk ip +Ġ20 50 +Ġ19 11 +ĠPl uto +ĠAm end +Ġme ats +38 7 +Ġst omp +ĠZh ou +ĠLevi athan +ĠHaz ard +ad v +ĠOr well +Ġal oud +Ġb umper +ĠAn arch +ub untu +ĠSer ious +f itting +ĠOption al +ĠCec il +RE AM +Ġser otonin +Ġcultiv ate +ag ogue +} \ +Ġmos ques +ĠSun ny +Ġre active +rev olution +ĠL up +ĠFed ora +Ġdefense man +ĠV ID +ist ine +Ġdrown ing +ĠBroad casting +Ġthr iller +ĠS cy +Ġacceler ating +Ġdirect s +od ied +b ike +d uration +Ġpain fully +R edd +Ġproduct ions +Ġg ag +Ġwh ist +Ġs ock +Ġinf initely +ĠConc ern +ĠCit adel +Ġlie u +Ġcand les +ogene ous +arg er +Ġheaven ly +inflamm atory +Per formance +C s +ruct ose +az aki +Ġp essim +Ġinf erence +Ġpow d +ĠZ oe +Ġpain ts +Ġd azz +pt a +-------- --- +Ġins pir +ĠExper imental +ĠKn ife +reg or +b ors +Ġshow ers +rom eda +Ġs aint +Ġben ign +ĠJ iang +Ġenvision ed +Ġsh roud +IF T +H O +Ġsh uff +ĠI CC +Ġse greg +Ġrevis it +ighth ouse +L i +Ġsub strate +ĠSe as +ĠRew ard +ĠH ep +ĠBr ass +s bm +Ġelim inates +Ġst amina +ĠV AT +ĠLo an +Ġconst raint +Ġappropri ated +Ġp es +ĠA LE +r anging +Ġ40 4 +39 2 +Ġintellectual s +ach u +Ġrestruct uring +ĠLe vin +Ġrun es +Ġdelight ful +Ġcarbohyd rates +ĠMod els +ĠExp o +Ġtransport ing +all oc +Ġring ing +S amsung +Ġscarce ly +ĠURL s +ĠM AS +Ġprot otypes +Ġnarr ator +ĠCPU s +cd n +ĠBart on +Ġdecided ly +ĠSh u +ix ir +oc ious +ĠMy st +N intendo +Ġre use +Ġforg iven +F ew +in ical +n at +Ġseam less +ĠEv a +ĠE VE +ĠJ O +land ers +Ġso fter +neg ie +Ġtrans ient +Ġorb ital +Ġfulf il +ĠK om +Hop efully +Ġdynam ically +ĠHun ger +å Ľ +ĠArmen ia +el man +ber to +Ġp ige +ĠID s +lim it +Ġve ins +Ġso aring +p acks +Gold en +ĠCr ab +ist or +ĠR PM +Ġ$ $ +g ression +Ġjihad ist +Ġgam ble +Ġcare g +Ġinf lated +F ace +ĠFire arms +ĠEm manuel +â Ŀ +Ġsh ocks +gr ab +Ġspl end +ĠHP V +ab ortion +Ab ove +Ent ity +play ers +Ġcomm enced +ul ence +Ġfulfill ment +Ġembod iments +ĠW elfare +Ġha il +Ġ< @ +tt en +Ġcat cher +ĠJ azeera +Ġvolcan o +Ġstabil ize +ĠHand ler +Ġintens ified +ĠAb rams +Ġhum iliation +p aced +60 5 +ĠCent OS +Spe cific +Ġhe ed +ĠC AM +ĠGal ile +D ie +Ġabol ished +ĠThom son +ĠTe achers +ĠW ass +j ong +ĠIS BN +ĠAll ies +sh ake +å · +v ict +How ard +Ġde em +Ġexceed ingly +ĠSmart stocks +ib e +Ġdoor way +Ġcompet ed +ig mat +Ġnational ists +Ġg room +ĠKe en +Ġdispos able +de cl +ĠT olkien +ĠSche me +Ġb iod +Ġav id +ĠEl on +ag ar +ĠT SA +R oman +Ġartific ially +Ġadvis ors +X L +ĠInf erno +36 6 +Ġted ious +ĠPhot ography +ĠCar rie +Ġtro pe +ĠSand ra +Ġdec imal +Que en +ĠGund am +ĠO M +ote ch +N BA +Ġ19 32 +Ġent renched +ĠMar ion +Ġfr aternity +Lab our +Hen ry +Ġlat itude +E ither +Ġenh ances +ĠPot ential +Ġsh ines +id ad +Ġbread th +Ġcapac ities +ĠðŁ ĻĤ +ĠBron x +Ġsex es +Ġdifferent iation +Ġheavy weight +ĠT aj +d ra +Ġmigr ate +Ġexhaust ion +ĠR UN +els ius +ĠCu omo +Ġgu itars +Ġcl ones +ĠSom ew +ĠP ry +------------ - +Ġwarr anted +cy cles +Ġsalv age +Ġdis ks +R ANT +ĠNGO s +ĠMart ian +":[ {" +Ġadd icts +oj ure +il let +Ġamazing ly +art ments +p ixel +ĠGPU s +Lay out +è £ +ĠTam il +ĠBas il +Ġimpart ial +ĠSt ructure +f ork +b ryce +Ġr idge +ĠHamb urg +ri ous +Ġbl itz +cig arettes +Ġcan ned +40 2 +Ġiron ically +Ġcompassion ate +ĠHaw kins +. # +ĠCat hedral +Ġrall ied +in ternal +Ġqu ota +st akes +T EXT +m om +Ġcomple tes +Ġ23 8 +Ġsh rug +ãĥ ij +ĠN inth +Ġrev ise +ĠProv ider +Ġtre acher +Ġqu asi +ĠPR ES +Ġdep osition +Ġconfidential ity +iss ors +Ġim balance +Ġspan ning +Ġang ular +ĠC ul +commun ication +ĠNor a +ĠGen ius +op ter +Ġs acked +Sp ot +Ġfine ly +ĠCH R +28 2 +w aves +Pal est +ĠRo hing +N L +è ¿ +Ġsh itty +ĠSc alia +4 75 +Pro gress +Ġreferen cing +Ġclass rooms +ab ee +Ġs od +hes ion +70 8 +ĠZucker berg +ĠFin ish +ĠScot ia +ĠSav ior +ĠInstall ation +an tha +( - +Ġ30 2 +ĠP unk +Ġcr ater +yout u +Ġro ast +Ġinflu encing +Ġd up +ĠJ R +ĠG rav +Ġstat ure +Ġbath rooms +A side +W iki +me an +ĠZ ak +ĠOn es +ĠN ath +Ġhyper t +Ġcommence ment +C ivil +Ġmoder ately +Ġdistribut ors +Ġbreast feeding +Ġ9 80 +ĠS ik +ĠC ig +ĠAM ER +R IP +ĠCare er +ust ing +Ġmess ed +Ġe h +ĠJ ensen +/ $ +Ġblack mail +Ġconvers ions +Ġscientific ally +Ġmant ra +p aying +Ġiv ory +ĠCour ts +OU GH +aunt let +Ser ial +B row +ĠH undreds +3 23 +Ġpe e +Ġlin ux +Ġsub mer +ĠPrinc ipal +48 5 +ĠD SL +ĠCous ins +Ġdoctr ines +ĠAthlet ics +Ġ3 15 +ĠK arma +Ġatt ent +ur ger +Ġpresc ribe +Ġenc aps +ĠC ame +Ġsecret ive +ĠCr imes +d n +C lean +ĠEgypt ians +ĠCar penter +Ġ ll +H um +ĠMil o +Ġcapital ists +Ġbrief ed +T we +ĠBas in +elve t +M os +Ġplun ge +ĠKa iser +ĠFu j +ill in +Ġsafegu ards +Ġo ste +ĠOpportun ity +ĠM afia +ĠCall ing +ap a +ur ban +br ush +ill ard +c é +int elligence +ĠL ob +ĠDru id +Ġsm oother +Ġfoot ing +Ġmotor ists +arc ity +Ġmascul inity +Ġm ism +Ġabdom inal +ĠTa vern +ĠR oh +Ġesc apes +s igned +Anth ony +Ġsacrific ing +Ġintim acy +Ġan terior +ĠK od +Ġmot if +Ġg raz +Ġvisual ization +Ġguitar ist +ĠTro tsky +m agic +D ar +ĠMor i +Ġw ards +Ġtoile ts +l est +Ġtele port +ĠSund ays +ĠPl at +ET S +Ġe Sports +Pat rick +ĠK atherine +en ko +Ġhas sle +ĠM ick +gg les +Ġh ob +aint ain +Ġair borne +Ġsp ans +Ġch ili +Ġa perture +Ġvolunte ered +ĠInc ident +ĠF res +ĠVeter an +augh tered +ing o +Ġun insured +CL OSE +Ġf use +Ġer otic +Ġadvert ise +ra ising +Text ure +Ġatt ends +ĠRE AL +udd led +Ġsm oot +Ġ30 5 +ĠWill is +Ġbl ond +An alysis +ĠV T +on ica +Ġstrongh old +R F +N M +. >> +Ġprosper ous +Ġbo asted +29 2 +ĠManufact uring +PR ESS +g ren +Ġpharm acy +ĠRoc kefeller +k ai +Ġth umbs +ĠH ut +Ġmother board +Ġguard ians +ĠAl ter +ll ular +Ġsh ack +Ġwise ly +Ġback bone +erv a +Ġsu icides +ĠMcG regor +ij ah +E mer +ĠB rav +Ġdesign ate +P OST +produ ced +Ġcleans ing +irl wind +ex istent +ĠHum ph +ĠPay ne +Ġv ested +Å ¡ +Ġstring ent +ion a +Ġuns ub +Ġsum med +ĠHer cules +sub ject +ĠR agnar +ĠN os +Ġcharacter ization +Ġsav vy +ĠDaw son +ĠCas ino +Ġf ri +ĠBar rier +Ġmis information +Ġins ulation +Ġcorrid ors +Ġair planes +ĠNo ct +ah i +Ġ19 16 +k b +arm ac +Ġsh un +Ġsche ma +Ġhorr ified +Ġ23 9 +aund ers +N B +i ates +er ity +ĠSh ard +Ġr arity +Ġgroup ed +ĠGh ana +again st +ĠBi ological +ĠA ware +ow ell +Ï Ħ +ĠBe au +sh aw +H ack +ĠJul ius +US S +ol son +aun a +c ru +ĠMaur ice +ĠI k +Ġsequ encing +Ġradical s +Ġ( ?, +v irtual +Ġany ways +Ġreper c +Ġhand lers +Ġhes itant +é ĥ +ĠM F +ple mentation +ass ociated +Ġcampaign ed +ĠY ue +ut ations +ĠY oga +Ġsim mer +Ġro ds +Ġmel ody +Ġconv oy +v ideos +Ġscreen ed +N eg +ochem ical +Ġ( )) +Ġultr as +Ġant ip +ĠIsland ers +70 4 +Ġfet ish +Ġridic ulously +ĠK art +Ġmitochond rial +Ġinterf ering +Build er +Ġover fl +Ġac ne +ĠM ud +ĠK err +f lex +ĠPost al +ĠBalt ic +47 7 +ĠPers ons +our age +H B +ĠM use +ĠImm ortal +ĠDri ving +Ġpet itions +Ġsubsc ript +Ġs orce +ĠProcess or +ut on +S ony +Ġph on +Ġr aced +ĠAnth rop +Ġday time +ĠEx ercise +Add ing +Ġeng ages +ĠQual comm +Ġmir acles +Ġmem es +ĠDr ink +ĠOri oles +Ġhair s +ĠPol ar +ath om +Ġsl ippery +ĠR emy +Ġcar amel +ĠY EAR +Ġal k +I gn +a ution +ĠMer lin +ĠC ran +Ġap ologies +Ġ4 10 +Ġout ing +ĠMem ories +app ointed +Ġcount ered +u ld +pos ing +Ġfire wall +ĠW ast +ĠW et +work ed +se ller +Ġrepe aled +ere o +ass uming +BL IC +m ite +ĠCEO s +ĠChap el +ellig ent +________________ ________ +D og +Ġw art +Ġsubsc riber +s ports +Ġbe gged +ĠM V +Ġsem if +eth ical +Ġpre ach +Ġrev ital +Ġpun itive +Ġshort cuts +Ġinstit uted +ĠWars aw +Ġabdom en +ĠK ING +Ġsuper intendent +Ġf ry +ĠGe o +T OR +Ġcontrad ictions +apt ic +Ġlandsc apes +b ugs +Ġcl ust +Ġvol ley +c ribed +Ġt andem +Ġrob es +WH AT +Ġpromot er +Ġel oqu +review ed +ĠD K +ĠPl ato +Ġf ps +T ank +ĠDer rick +Ġpriorit ize +as per +ĠHond uras +ĠCom pleted +ne c +Ġm og +n ir +ĠMay o +DE F +st all +in ness +ĠVolks wagen +Ġprec aution +ĠM ell +i ak +ist ries +Ġ24 8 +Ġoverl apping +Sen ate +ĠEnh ance +res y +rac ial +OR TS +ĠM ormons +Str ong +ĠCo ch +Mex ico +ĠMad uro +Ġj ars +Ġcan e +W ik +oll a +iff erence +Ġphysic ist +ĠMag gie +Ġ28 5 +Ġdep iction +ĠMcL aren +J u +Ġsl ows +Ġcommission ers +ĠWill ow +ĠExpl os +hov ah +Ġtechn ician +Ġhom icides +ĠFl av +ĠTr uman +Ġ100 00 +u ctor +Ġsh ader +News letter +45 7 +Ġre ver +Ġhard ened +Ġwhere abouts +Ġrede velop +Ġcar bs +Ġtra vers +Ġsqu irrel +Ġfoll ower +Ġs ings +50 8 +Ġrabb its +emon ium +Ġdocument ing +Ġmisunder stood +) ' +R ick +gg ies +Ġprem ie +Ġsk ating +Ġpass ports +Ġf ists +aged don +H aw +AC P +0 80 +ĠThough ts +ĠCarl son +Ġpriest hood +h ua +Ġdun geons +ĠLo ans +Ġant is +Ġfamiliar ity +ĠS abb +op al +ĠIn k +st rike +Ġc ram +Ġlegal ized +Ġcu isine +Ġfib re +Tra vel +ĠMon ument +OD Y +eth y +Ġinter state +ĠP UR +em porary +ĠArab ian +develop ed +Ġsadd le +Ġg ithub +ĠOff er +ĠIS P +ro let +ĠSUP ER +ĠDen is +Ġmultipl ier +Ġstir red +Interest ingly +Ġcustom ary +Ġbill ed +he x +Ġmultipl ied +Ġfl ipping +ĠCros by +Ġfundament als +ia e +ĠPlay ed +ĠAt om +am azon +ĠFl am +ee z +activ ated +Ġtables poon +Ġliberal ism +ĠPal in +ĠP atel +N um +ĠT AM +Ġs urn +ĠRel oaded +Ġco ined +" ], +ĠCl ash +ĠAg u +Ġprag matic +ĠActiv ate +Ġ8 02 +Ġtrail ers +Ġsil hou +Ġprob es +Ġcirc us +ĠB ain +ĠLind say +ĠAb bey +Del ivery +Ġconcess ion +Ġgast ro +ĠSpr ite +Ä Ł +and el +Ġg imm +Ġaut obi +ĠT urtle +Ġwonder fully +ĠHar am +ĠWorld wide +ĠHand le +Ġtheor ists +Ġsle ek +ĠZh u +ograph ically +EG A +ĠOwn ers +ath s +ĠAntar ctic +n atal +=" " +fl ags +`` `` +Ġs ul +K h +Ġpot assium +Ġlinem an +Ġcere al +ĠSe asons +Ġ20 22 +Ġmat hematic +Ġastron omers +prof essional +Ġf ares +cknow led +Ġch i +Ġyoung sters +Ġmistaken ly +Ġhem isphere +ĠDiv inity +r one +Ġ" , +r ings +Ġattract s +v ana +å ¹ +C AP +Ġplay list +Ġpor ch +ãģ £ +Ġincorpor ates +Ġso ak +Ġassert ing +ĠTerror ism +ĠP ablo +J a +ces ter +Ġfear ing +ĠPr ayer +Ġescal ated +G W +Ġro be +ĠBright on +ac ists +ĠSym phony +ĠDwar f +ĠPar ade +ĠLe go +Ġinex pl +Ġl ords +le af +RA G +l iber +Ġcig ars +ĠJe hovah +60 6 +WIND OWS +ĠLiber ia +eb us +He avy +Ġl ubric +ĠR W +angu ages +Ġnarrow ed +com puter +ĠE mber +Ġmurder ing +Ġdown stream +ĠT uls +ĠT ables +Top ic +ĠAcc uracy += / +l ost +ĠRe i +Ġprogress es +b ear +Ġestablish ments +Just in +ĠPe ach +ĠG omez +å ¿ +ĠTri angle +Id ent +ĠH ive +Res ources +Ġmix es +ĠAss uming +M u +Ġhyp oc +Ġs ane +ĠW an +id ious +Su ccess +Ġ io +Ang el +Ġdanger ously +ĠCreat ure +W ORK +: [ +ĠKat rina +List ener +M iller +ĠId lib +h ang +Ġcircum vent +h ref +Ġcel estial +ĠWe eks +ĠP ug +ĠDal ton +Ġsubpoen a +uk u +Ġpers isted +pe i +old ing +ĠDoc uments +ĠH ast +ĠC ENT +Ġprim er +Ġsyn onymous +Ġn ib +om bs +Ġnot ation +ĠD ish +ĠAt mosp +Ġforb id +ĠAN G +pat tern +l os +Ġproject iles +b rown +." , +ĠVen om +Ġfierce ly +ub lished +ĠU ran +ĠNic arag +4 10 +ĠC AL +OT OS +ĠMir acle +ĠEn chant +Ġguard ing +app end +Att ach +Ġlevel ed +Ġcond oms +ih ilation +64 9 +Ġnight mares +ĠTHE Y +ĠST ART +ĠK inn +Ġroomm ate +Ġhy giene +o pping +J ob +Ġl vl +ĠV ER +ĠKe eping +ab etic +Ġformat ting +eral a +Ġrev isions +Ġres urg +T el +ĠGood man +35 3 +p od +Ġind isp +ĠTrans lation +Ġg own +ĠM und +Ġc is +Ġby stand +col lect +ĠPun jab +act ively +ĠG amb +te ll +Ġimport ing +g encies +Ġloc om +ĠBr ill +H oly +ĠBer ger +Ġshow down +Ġrespond ers +IL Y +Ġt akedown +le ted +Ġmat tered +Ġpredict ive +Ġover lay +G PU +ĠV ick +Ġconvey ed +T ab +pe er +Sc an +Ġdefensive ly +v ae +Ġappro ving +Ġt iers +ĠV ia +quer ade +ĠSaud is +Ġdemol ished +ĠProp he +Ġmon o +Ġhospital ity +H AM +ĠAri el +M OD +ĠTor ah +Ġbl ah +ĠBel arus +erent ial +ĠT uc +Ġbank er +39 7 +Ġmosqu it +ĠScient ist +ĠMus ical +Ġh ust +Sh ift +Ġtor ment +Ġstand off +E duc +ĠF og +Ġampl ifier +Sh ape +Inst ance +ĠCrit ics +Ġda emon +H ouston +Ġmatt ress +ĠID F +Ġobsc ene +ĠA mer +hett i +Ġcomp iling +35 2 +vere tt +ĠRed uction +ist ration +ĠBl essed +ĠB achelor +3 16 +Ġpr ank +ĠVul can +dd ing +Ġm ourning +ĠQu int +ĠBl aster +test ing +Ġsed iment +>> > +ĠE ternity +ĠWH ERE +ĠM aze +Ġreact ing +ĠAl v +oms day +ĠC RA +Ġtransl ator +Ġbog us +at u +We bsite +oll s +Ġbapt ism +Ġs ibling +ĠAut umn +ve z +ãģ® é +gu ards +Ge org +assad ors +ĠFre ud +Ġcontin ents +ĠReg istry +Bern ie +ĸļ 士 +Ġtoler ant +ĠU W +Ġhor ribly +99 5 +ĠMID I +Ġimpat ient +oc ado +er i +ĠWor st +ĠNor ris +ĠTalk ing +Ġdef ends +ens able +Ġ20 21 +Ġanat omy +L ew +Ġdraw er +ĠCan berra +Ġpatri otic +é¾įå ĸļ士 +ĠAv g +AR M +Ġundis closed +Ġfare well +45 9 +b able +ĠAll ison +OL OG +Ġcon co +t ight +ĠAC PI +ĠM ines +l ich +ĠâĶ ľ +represent ed +200 000 +Ġenthusi ast +OT S +b il +ĠIng redients +Ġinvent or +ĠMy SQL +³³ Âł +ĠAB OUT +with in +Ġm k +B ul +ĠF ake +Ġdracon ian +W a +hel m +ĠTer ran +erv ille +Ġcommon place +SI ZE +Ġ" < +re place +ograph s +ĠSE LECT +inc ible +ĠMost ly +ĠShe ffield +ĠID E +ugg le +Ġcit ations +h urst +ĠUn ix +Ġunle ash +ĠP iper +ĠN ano +Ġsucc umb +Ġreluct ance +Ġ25 00 +ĠMer chant +Ġwire t +Ġcomb os +ĠBirth day +Ġchar coal +ĠU PS +ĠFair fax +Ġdrive way +ĠT ek +ĠP itch +ove re +Ġtechn icians +ĠAct ual +fl ation +ĠF iscal +ĠEm pty +an amo +Ġmag nesium +Ġsl ut +Ġgrow ers +Invest igators +( ): +ĠS atellite +ĠKe ynes +miss ive +l ane +Ġb orough +3 44 +ĠTE AM +ĠBet hesda +C V +h ower +ĠR AD +Ġch ant +ĠR iy +Ġcompos itions +Ġmild ly +Ġmedd ling +Ġag ility +ane ers +5 01 +Ġsyn th +ling er +29 1 +Ġex claimed +Part y +Ġcont amin +ĠMan or +ĠResp ond +Ġpra ising +Ġman ners +fle et +Sum mer +ĠLy nd +ĠDef initely +gr im +Ġbow ling +st ri +ç Ľ +y nt +Ġmand ates +D IV +Ġreconc ile +view s +ĠDam on +vet te +F lo +ĠGreat est +il on +ic ia +Ġportray al +Ġcush ion +50 4 +19 79 +oss al +App lic +sc ription +Ġmit igation +AT S +p ac +Ġer ased +Ġdefic iencies +ĠHolland e +ĠX u +Ġb red +Ġpregn ancies +f emin +Ġem ph +Ġpl anners +Ġout per +utter ing +Ġperpet rator +Ġm otto +ĠEll ison +ĠNE VER +Ġadmitted ly +AR I +ĠAzerbai jan +Ġmill isec +Ġcombust ion +ĠBott le +ĠL und +ĠP s +ĠD ress +Ġfabric ated +Ġbat tered +Ġs idel +ĠNot ting +Fore ign +ĠJer ome +0 20 +ĠAr bit +Ġkn ots +ĠR IGHT +M oving +ãģ Ļ +Ġsur geries +Ġcour thouse +Ġm astered +Ġhover ing +ĠBr an +ĠAl ison +Ġsaf est +m ilitary +Ġbull ied +Ġbar rage +Read er +ES E +ĠGe ographic +T ools +3 14 +ĠGe ek +ro th +gl ers +ĠF IN +Ï ģ +ĠA ston +al tern +48 8 +Ġveter in +G amer +Ġint el +ren ches +Sh ield +Ġam nesty +ĠB har +Ġp iled +Ġhonor able +ĠInst itutes +Ġso aked +Ġcom a +ĠE FF +34 1 +by tes +ĠG mail +le in +ĠCanad iens +m aterial +I l +Ġinstruct ors +ĠK Y +Ġconce ive +ub b +ĠP ossible +Ġeas ing +ĠChrist ina +Ġcar ic +ĠHD R +R OM +Ġsho vel +de lete +Ġp uff +ĠCh anging +Ġseam lessly +Att ribute +Ġacqu isitions +ak ery +ĠE F +Ġaut istic +ĠT akes +ĠPow der +ĠSt ir +5 10 +ĠBub ble +sett ings +ĠF owler +Ġmust ard +Ġmore over +Ġcopyright ed +ĠLED s +15 00 +æ ī +ĠH IS +en f +Ġcust od +ĠH uck +G i +Ġim g +An swer +C t +j ay +ĠInf rastructure +Ġfeder ally +L oc +Ġmicro bes +Ġover run +dd s +ot ent +adi ator +>>>> >>>> +Ġtorn ado +Ġadj ud +Ġintrig ued +Ġs i +ĠRevel ation +pro gress +Ġburgl ary +ĠSai yan +ĠK athy +Ġser pent +ĠAndre as +Ġcomp el +ess ler +ĠPl astic +ĠAd vent +ĠPos itive +ĠQ t +ĠHind us +reg istered +ular ity +Ġrighteous ness +Ġdemon ic +u itive +ĠB DS +ĠGre gg +c ia +ĠCrus ade +ĠSina i +W ARE ++ ( +Ġme ll +Ġder ail +y ards +A st +Ġnotice ably +ĠO ber +R am +Ġun noticed +Ġse q +av age +T s +Ġ6 40 +Ġconced e +Ġ] ) +F ill +Ġcapt ivity +ĠImprove ment +ĠCrus ader +ara oh +M AP +æ Ĺ +Ġstr ide +al ways +F ly +N it +Ġal gae +ĠCook ing +ĠDo ors +Mal ley +Ġpolic emen +ãģ į +Ġastron aut +access ible +49 5 +ĠR AW +cl iffe +udic rous +Ġdep ended +al ach +Ġvent ures +ra ke +Ġt its +ĠH ou +Ġcond om +ormon al +Ġind ent +Ġupload ing +Foot note +Import ant +Ġ27 1 +Ġmind ful +Ġcont ends +C ra +Ġcal ibr +ĠO ECD +plug in +F at +ĠIS S +ĠDynam ics +ans en +68 6 +' ), +Ġsp rite +Ġhand held +ĠH ipp +=~ =~ +Tr ust +Ġsem antics +ĠBund es +ĠRen o +ĠLiter ature +s ense +G ary +ĠA eg +ĠTr in +EE K +Ġcler ic +ĠSS H +Ġch rist +Ġinv ading +ib u +Ġen um +aur a +Ġal lege +ĠInc redible +B BC +Ġth ru +Ġsa iled +Ġem ulate +Ġin security +Ġc rou +Ġaccommod ations +Ġincompet ent +Ġsl ips +ĠEarth qu +s ama +IL LE +Ġi Phones +as aki +Ġby e +Ġar d +Ġext ras +Ġsl aughtered +Ġcrowd funding +res so +Ġfil ib +ĠER ROR +ĠT LS +e gg +ĠIt al +Ġen list +ĠCatal onia +ĠSc ots +Ġser geant +Ġdiss olve +N H +Ġstand ings +ri que +I Q +Ġbenef iciary +Ġaqu arium +You Tube +ĠPower Shell +Ġbright est +ĠWar rant +S old +Writ ing +Ġbegin nings +ĠRes erved +ĠLatin os +head ing +Ġ4 40 +Ġrooft op +AT ING +Ġ3 90 +VP N +G s +k ernel +turn ed +Ġprefer able +Ġturn overs +ĠH els +S a +ĠShin ji +ve h +ĠMOD ULE +V iol +Ġex iting +Ġj ab +ĠVan illa +Ġac ron +ĠG ap +ber n +A k +ĠMc Gu +Ġend lessly +ĠFar age +ĠNo el +V a +M K +Ġbr ute +ĠK ru +ĠES V +ĠOl ivia +âĢ ł +ĠK af +Ġtrust ing +Ġh ots +3 24 +Ġmal aria +Ġj son +Ġp ounding +ort ment +Count ry +Ġpostp oned +Ġunequ iv +? ), +ĠRo oney +udd ing +ĠLe ap +ur rence +sh apeshifter +ĠH AS +os ate +Ġca vern +Ġconserv atism +ĠB AD +Ġmile age +Ġarrest ing +V aults +Ġmix er +Dem ocratic +ĠB enson +Ġauth ored +8 000 +Ġpro active +ĠSpirit ual +t re +Ġincarcer ated +ĠS ort +Ġpe aked +Ġwield ing +re ciation +×Ļ × +P atch +ĠEm my +Ġex qu +tt o +ĠRat io +ĠP icks +ĠG ry +ph ant +Ġf ret +Ġeth n +Ġarch ived +% - +c ases +ĠBl aze +Ġim b +c v +y ss +im ony +Ġcount down +Ġaw akening +ĠTunis ia +ĠRe fer +ĠM J +Ġun natural +ĠCar negie +iz en +ĠN uggets +he ss +Ġev ils +64 7 +Ġintrodu ctory +l oving +ĠMcM ahon +Ġambig uity +L abel +ĠAlm ighty +Ġcolor ing +ĠCl aus +set ting +N ULL +ĠF avorite +ĠS IG +> ( +ĠSh iva +ĠMay er +Ġstorm ed +ĠCo verage +we apons +igh am +Ġun answered +Ġle ve +Ġc oy +c as +b ags +as ured +Se attle +ĠSant orum +ser ious +Ġcourage ous +ĠS oup +Ġconfisc ated +Ġ// / +Ġuncon ventional +Ġmom s +ĠRohing ya +ĠOrche stra +ĠPot ion +Ġdisc redit +ĠF IL +f ixed +ĠDe er +do i +ĠDim ension +Ġbureaucr ats +et een +Ġaction Group +oh m +Ġb umps +ĠUt ility +Ġsubmar ines +ren heit +re search +ĠShap iro +Ġsket ches +Ġde ceptive +ĠV il +es ame +ĠEss entially +Ġramp age +isk y +Ġmut tered +th ritis +Ġ23 6 +f et +b ars +Ġpup il +ĠTh ou +o S +s ong +Ġfract ured +Ġre vert +pict ure +Ġcrit erion +us her +Ġreperc ussions +ĠV intage +ĠSuper intendent +Offic ers +Ġflag ged +Ġbl ames +Ġin verse +ograp hers +Ġmakes hift +Ġdev oid +Ġfoss ils +ĠArist otle +ĠFund s +Ġde pleted +ĠFl u +ĠY uan +Ġw oes +Ġlip id +Ġsit u +requ isites +Ġfurn ish +ĠSam ar +Ġshame ful +Ġadverse ly +Ġad ept +Ġrem orse +Ġmurder ous +uck les +ĠE SL +Ġ3 14 +s ent +Ġred ef +ĠC ache +ĠP urs +ig ans +Ġ4 60 +Ġpres criptions +Ġf res +F uck +ocr ates +Tw enty +ĠWe ird +ĠT oggle +ĠC alled +itiz ens +Ġp oultry +Ġharvest ing +ãĤ¦ ãĤ¹ +Bott om +Ġcaution ed +t n +39 6 +ĠNik ki +Ġeval uations +Ġharass ing +Ġbind ings +ĠMon etary +Ġhit ters +Ġadvers ary +un ts +Ġset back +Ġenc rypt +ĠC ait +Ġl ows +eng es +ĠN orn +Ġbul bs +Ġbott led +ĠVoy ager +3 17 +Ġsp heres +p olitics +Ġsubt ract +Ġsens ations +Ġapp alling +Ġ3 16 +Ġenvironment ally +ĠST EM +Ġpub lishes +5 60 +Ġdilig ence +48 4 +Ġadv ises +Ġpet rol +Ġimag ining +Ġpatrol s +ĠInt eger +ĠAs hes +act us +ĠRad iant +ĠL T +it ability +ht aking +Set ting +Ġnu anced +ĠRe ef +ĠDevelop ers +N i +pie ces +99 0 +Lic ense +Ġlow ers +ĠOtt oman +3 27 +oo o +Ġqu itting +mark ets +Beh ind +Ġbas in +Ġdoc s +an ie +fl ash +ct l +Ġcivil ized +ĠFuk ushima +"] ," +ĠK S +ĠHonest ly +ar at +Ġconstruct s +ĠL ans +ĠD ire +ĠLI KE +ĠTrou ble +Ġwith holding +ĠOb livion +Ġsan ity +any a +Con st +Ġgro cer +ĠC elsius +Ġrecount ed +ĠW ife +B order +ate red +h appy +Ġspo iler +Ġlog ically +H all +Ġsucceed ing +Ġpoly morph +Ġax es +ĠShot gun +ĠS lim +ĠPrin ciples +ĠL eth +art a +Ġsc or +Sc reenshot +Ġrelax ation +#$ #$ +Ġdeter rent +idd y +Ġpower less +Ġles bians +Ġch ords +ĠEd ited +se lected +Ġseparat ists +000 2 +Ġair space +Ġturn around +Ġc unning +P ATH +P oly +Ġbomb ed +Ġt ion +x s +Ġwith hold +Ġw aged +ĠLiber ties +Fl ag +Ġcomfort ing +45 4 +ĠI ris +are rs +Ġr ag +Ġrel ocated +ĠGu arant +Ġstrateg ically +Ġgam ma +uber ty +ĠLock heed +g res +Ġgr illed +ĠLow e +st ats +ĠR ocks +Ġsens ing +Ġrent ing +ĠGe ological +ا Ø +ot rop +Ġse w +Ġimproper ly +48 6 +Ġâĸ ł +Ġstar ving +ĠB j +Disc ussion +3 28 +ĠCom bo +ĠFix es +N AT +Ġstri ving +th ora +Ġharvest ed +ĠP ing +Ġplay ful +Ġaven ues +Ġoccup ational +Ġw akes +ĠCou rier +Ġdrum mer +ĠBrow ser +ĠH outh +it u +Ġapp arel +p aste +Ġhun ted +ĠSecond ly +l ain +X Y +ĠP IN +ic ons +Ġcock tails +Ġs izable +Ġhurd les +est inal +ĠRecre ation +Ġe co +64 8 +ĠD ied +m int +Ġfinger prints +Ġdis pose +ĠBos nia +ts y +22 00 +Ġins pected +ĠF ou +Ġf uss +Ġamb ush +ĠR ak +Ġmanif ested +Pro secut +Ġsuff ice +ren ces +Ġcompens ated +ĠC yrus +Ġgen us +ĠWolver ine +ĠTrend s +Ġh ikes +ĠSe en +Ġen rol +C old +Ġpol itely +ĠSl av +ĠRu pert +Ġey ewitness +ĠAl to +Ġun comp +Ġposter ior +M ust +ĠHer z +Ġprogress ively +Ġ23 4 +Ġind ifference +ĠCunning ham +Ġacadem ia +Ġse wer +Ġast ounding +ĠA ES +r ather +Ġeld est +Ġclim bs +ĠAdd s +Ġout cry +Ġcont ag +ĠH ouses +Ġpe pt +ĠMel ania +interest ed +ĠU CH +ĠR oots +ĠHub bard +ĠT BD +ĠRoman ian +fil ename +St one +ĠIm pl +Ġchromos ome +C le +d x +Ġscram bled +ĠP t +Ġ24 2 +OP LE +Ġtremend ously +St reet +Ġcra ving +Ġbund led +ĠR G +p ipe +Ġinj uring +Ġarc ane +Part icip +ĠHero ic +st y +Ġto pping +ĠTemp est +rent ices +b h +Ġpar anoia +ĠUnic ode +Ġegreg ious +Ġ\ ' +ĠOsw ald +Ġgra vel +ĠSim psons +Ġbl and +ĠGuant anamo +Writ er +lin ers +ĠD ice +J C +Ġpar ity +Ġs ided +Ġ23 7 +ĠPyr rha +at ters +d k +F ine +comp an +Ġform ulated +ĠId ol +il ers +hem oth +ĠF av +Ġintr usion +Ġcar rots +ĠL ayer +ĠH acker +Ġ ---------------- +Ġmoder ation +é ģ +oc oc +Ġcharacter ize +ĠTe resa +Ġsocio economic +Ġper k +ĠParticip ation +tr aining +ĠPaul o +ph ys +Ġtrust worthy +Ġembod ied +ĠMer ch +c urrency +ĠPrior ity +Ġte asing +Ġabsor bing +Ġunf inished +ĠCompar ison +Ġdis ple +writ ers +Ġprofess ions +ĠPengu in +Ġang rily +ĠL INK +68 8 +ĠCor respond +Ġprev ailed +Ġcart el +l p +as ms +ĠRed emption +ĠIslam ists +effect s +d ose +ĠL atter +ĠHal ifax +Ġv as +ĠTop ics +ĠN amed +advert ising +zz a +IC ES +Ġret arded +ach able +ĠPupp et +ĠItem Level +Ġret ract +Ġident ifiable +A aron +ĠB uster +s ol +hel le +as semb +H ope +r anged +B a +ĠP urch +é Ģ +ĠSir i +Ġarri vals +Ġ19 12 +Ġshort ened +Ġ3 12 +Ġdiscrep ancy +ĠTem perature +ĠWal ton +Ġkind erg +p olit +Ġrem ix +Ġconnect ors +ãĥĺ ãĥ© +ĠKazakh stan +dom inated +Ġsu gars +im ble +ĠPan ic +ĠDem and +ĠCol ony +on en +ĠM ER +7 75 +ur ia +aza ar +ĠDeg ree +P ri +Ġsun shine +Ġ25 1 +Ġpsychedel ic +Ġdigit ally +ĠBra un +Ġsh immer +Ġsh ave +ĠTel esc +ĠAst ral +ĠVenezuel an +ĠO G +Ġc rawling +Int eg +ĠFe ather +Ġunfold ing +Ġappropri ation +Ġè£ı è +ĠMob ility +ĠN ey +- . +b ilt +L IN +ĠT ube +ĠCon versely +Ġkey boards +ĠC ao +Ġover th +Ġla ure +>> \ +ĠV iper +ach a +Off set +ĠR aleigh +ĠJ ae +J ordan +j p +Ġtotal itarian +Connect or +Ġobserv es +ĠSpart an +ĠIm mediately +ĠSc al +C ool +Ġt aps +Ġro ar +P ast +Ġch ars +ĠB ender +ĠShe ldon +Ġpain ter +Ġbe acon +ĠCreat ures +Ġdownt urn +Ġh inder +ĠAnd romeda +à Ľ +cc oli +ĠF itness +et rical +Ġutil izes +Ġsen ate +Ġen semble +Ġche ers +T W +Ġaff luent +k il +ry lic +ord ering +Com puter +Ġgru esome +ost ics +ĠUb isoft +ĠKel ley +Ġw rench +Ġbourgeois ie +IB LE +ĠPrest on +w orn +ar ist +reat ing +Ġst ained +ar ine +Ġsl ime +EN N +Ġche sts +Ġground water +ann ot +ĠTr ay +ĠLoc ke +ĠC TR +Ġd udes +ĠEx ternal +ĠDec oder +Ġpar amed +ĠMed line +80 9 +ĠD inner +rup al +g z +ĠG um +ĠDem o +j ee +Ġd h +ber man +arch s +Ġen qu +ĠEp stein +Ġdevast ation +Ġfriends hips +ĠAr d +Ġ23 1 +ĠRub in +ĠDist ance +Ġsp urred +Ġd ossier +Ġover looking +\\\\\\\\ \\\\\\\\ +Fore st +ĠCom es +\ ", +ĠIran ians +Ġf ixtures +L aughs +Ġcur ry +ĠKing ston +Ġsqu ash +Ġcat alogue +Ġabnormal ities +Ġdigest ive +.... ..... +Ġsubord inate +og ly +Ġ24 9 +M iddle +Ġmass ac +Ġburg ers +Ġdown stairs +Ġ19 31 +39 4 +ĠV G +Ġl asers +ĠS ikh +ĠAlex a +der ived +Ġcycl ist +ãģ® éŃĶ +onel iness +!!!! !!!! +Ġbuff s +leg ate +Ġrap ing +Ġrecomm ending +ro red +Ġmult icultural +un ique +Ġbusiness men +Ġune asy +ĠM AP +Ġdisp ersed +cipl ine +J ess +ĠK erala +å § +Ġabst raction +Sur v +U h +Ġprin ters +ij a +ow der +Ġanalog ous +ĠA SP +af er +Ġunfold ed +Ġlevel ing +Ġbre ached +ĠH earing +Ġn at +Ġtransl ating +crit ical +Ġant agonist +ĠYes terday +Ġfuzz y +w ash +m ere +Ġbe wild +ĠM ae +V irgin +ph rase +Ġsign aled +ĠH IGH +Ġprot ester +Ġgar ner +unk nown +Ġk ay +Ġabduct ed +Ġst alking +am n +Ġdes erving +ĠR iv +ĠJ orge +Ġscratch ing +ĠS aving +ip ing +Ġte ase +Ġmission ary +ĠMor row +T IME +P resent +Ġchem otherapy +tern ess +ĠH omes +ĠP urdue +Ġst aunch +ĠWhit ney +ĠTH ERE +Î ¼ +iat us +ĠErn est +ĠDe ploy +Ġcove ted +F ML +ĠDial ogue +Ġex ited +f ruit +Ġner d +":" "," +Ġv ivo +ru ly +4 60 +ĠAm en +rehens ible +Ġâ ĺ +D IR +Ġad herence +Ġche w +ĠCo ke +ĠSerge i +dig ital +ĠNe ck +g ently +enth al +/ ) +Ġwe ary +Ġgu ise +ĠConc ord +ĠOn ion +at cher +Ġb inge +ĠDirect ive +Ġman ned +ans k +Ġill usions +Ġbillion aires +38 3 +oly n +odynam ic +ĠWhe at +ĠA lic +Ġcol oured +ĠN AFTA +ab o +Ġmac ros +ind ependent +s weet +Ġsp ac +ĠK abul +Ġ Ä +em e +Ġdict ated +Ġsh outs += { +Ġr ipping +ĠSh ay +ĠCr icket +direct ed +Ġanalys ed +ĠWAR RANT +ag ons +ĠBlaz ers +Ġche ered +Ġar ithmetic +ĠTan z +37 3 +ĠFl ags +Ġ29 5 +Ġw itches +ĠIn cluded +ĠG ained +ĠBl ades +G am +ĠSam antha +ĠAtl antis +ĠPr att +Ġspo iled +ĠI B +ĠRam irez +Pro bably +re ro +ĠN g +ĠWar lock +t p +Ġover he +Ġadministr ations +Ġt int +Ġreg iment +Ġpist ols +Ġblank ets +Ġep ist +Ġbowl s +Ġhydra ulic +Ġde an +Ġj ung +Ġasc end +70 5 +ĠSant iago +à ® +Ġun avoid +ĠSh aman +re b +Ġstem ming +99 8 +ĠM G +st icks +esthes ia +ER O +Ġmor bid +ĠGr ill +ĠP oe +any l +Ġdele ting +ĠSurve illance +Ġdirect ives +Ġiter ations +ĠR ox +ĠMil ky +F ather +Ġpat ented +44 7 +Ġprec ursor +Ġm aiden +ĠP hen +ĠVe gan +ĠPat ent +K elly +Redd itor +Ġn ods +Ġvent ilation +ĠSchwar z +Ġw izards +Ġomin ous +ĠHe ads +ĠB G +Ġl umber +ĠSp iel +Ġis Enabled +Ġancest ral +ĠSh ips +Ġwrest ler +ph i +Ġy uan +ĠRebell ion +Ġice berg +Ġmag ically +Ġdivers ion +ar ro +yth m +ĠR iders +ĠRob bie +ĠK ara +ĠMain tenance +ĠHer b +Ġhar ms +p acked +ĠFe instein +Ġmarry ing +Ġbl ending +ĠR ates +Ġ18 80 +Ġwr ink +ĠUn ch +ĠTor ch +desc ribed +Ġhuman oid +ilit ating +ĠCon v +ĠFe ld +IGH TS +Ġwhistlebl ower +ort mund +ets y +arre tt +ĠMon o +ĠI ke +ĠC NBC +ĠW AY +ĠMD MA +ĠIndividual s +Ġsupplement al +Ġpower house +ĠSt ru +F ocus +aph ael +ĠCol leg +att i +Z A +Ġp erenn +ĠSign ature +ĠRod ney +Ġcub es +idd led +ĠD ante +ĠIN V +iling ual +ĠC th +Ġso fa +Ġintimid ate +ĠR oe +ĠDi plom +ĠCount ries +ays on +Ġextrad ition +Ġdis abling +ĠCard iff +Ġmemor andum +ĠTr ace +Ġ?? ? +se ctor +ĠRou hani +ĠY ates +ĠFree ze +Ġbl adder +M otor +ĠProm ise +ant asy +Ġforesee able +ĠC ologne +cont ainer +ĠTre es +ĠG ors +ĠSin clair +Ġbar ring +key e +Ġsl ashed +ĠStat istical +é ĩ +Ġâĸ º +All ows +Ġhum ility +Ġdr illed +ĠF urn +44 3 +Ġse wage +Ġhome page +Ġcour tyard +Ġv ile +Ġsubsid iaries +aj o +direct ory +Ġam mon +V ers +charg es +Ġ} } +ĠCh ains +Ġ24 6 +n ob +Ġper cept +Ġg rit +Ġfisher men +ĠIraq is +ĠDIS TR +ĠF ULL +ĠEval uation +g raph +at ial +Ġcooper ating +Ġmel an +Ġenlight ened +Ġal i +t ailed +Ġsal ute +Ġweak est +ĠBull dogs +U A +ĠAll oy +Ġsem en +oc ene +ĠWilliam son +s pr +, âĢĶ +ĠG F +itt ens +Be at +ĠJ unk +iph ate +ĠFarm ers +ĠBit coins +ig ers +d h +ĠL oyal +p ayer +Ġentert ained +Ġpenn ed +Ġcoup on +Que ue +Ġweaken ing +c arry +Ġunderest imate +Ġshoot out +Ġcharism atic +ĠProced ure +Ġprud ent +in ances +Ġric hes +Ġcort ical +Ġstr ides +Ġd rib +ĠOil ers +5 40 +ĠPer form +ĠBang kok +Ġe uth +S ER +Ġsimpl istic +t ops +camp aign +Q uality +Ġimpover ished +ĠEisen hower +Ġaug ment +ĠH arden +Ġinterven ed +Ġlist ens +ĠK ok +Ġs age +Ġrub bish +ĠD ed +Ġm ull +pe lling +Ġvide ot +Produ ction +D J +m iah +Ġadapt ations +Ġmed ically +Ġboard ed +Ġarrog ance +Ġscra pped +Ġopp ress +FORM ATION +Ġj unction +4 15 +EE EE +S kill +Ġsub du +ĠSug gest +ĠP ett +Ġle tt +ĠMan ip +ĠC af +ĠCooper ation +T her +Ġreg ained +¶ æ +ref lect +Ġth ugs +ĠShel by +Ġdict ates +ĠWe iner +ĠH ale +Ġbatt leground +s child +Ġcond ol +h unt +osit ories +Ġacc uses +Fil ename +Ġsh ri +Ġmotiv ate +Ġreflect ions +N ull +ĠL obby +¥ µ +ĠS ATA +ĠBack up +Ñ ĥ +n in +ĠCor rection +Ġju icy +ut ra +ĠP ric +Ġrest raining +ĠAir bnb +ĠAr rest +Ġappropri ations +Ġsl opes +Ġmans laughter +Ġwork ings +ĠH uss +ĠF rey +Le ave +ĠHarm ony +ĠF eder +Ġ4 30 +Ġt rench +Ġglad ly +Ġbull pen +ĠG au +b ones +Ġgro ove +Ġpre text +ã ħĭ +Ġtransm itter +ĠComp onent +Ġunder age +ĠEm pires +T ile +Ġo y +ĠMar vin +ĠC AS +Ġbl oss +Ġrepl icated +ĠMar iners +Marc us +ĠBl ocks +Ġliber ated +Ġbutter fly +Fe el +Ġfer mentation +Ġyou tube +Ġoff end +ĠTer m +res ist +Ġcess ation +Ġinsurg ency +Ġb ir +ĠRa ise +59 5 +Ġhypothes es +50 2 +Ġpl aque +ocr at +Ġjack ets +ĠHuff Post +am ong +Ġconf er +48 7 +ĠL illy +Ġadapt ing +ĠF ay +Ġsh oved +ve c +Ġref ine +Ġg on +Ġgun men +z ai +ĠShut tle +ĠI zan +Ġ19 13 +Ġple thora +· · +Ġ5 10 +Ġp uberty +Ġ24 1 +ĠWe alth +ĠAl ma +ĠM EM +ĠAd ults +C as +pr ison +R ace +Ġwater proof +Ġathlet icism +Ġcapital ize +ĠJu ice +Ġillum inated +ĠP ascal +Ġirrit ation +ĠWitness es +ad le +ĠAst ro +Ġf ax +ĠEl vis +Prim ary +ĠL ich +ĠEl ves +Ġres iding +Ġst umble +3 19 +ĠP KK +Ġadvers aries +D OS +ĠR itual +Ġsm ear +Ġar son +ident al +Ġsc ant +Ġmon archy +Ġhal ftime +Ġresid ue +Ġind ign +ĠSh aun +ĠEl m +aur i +A ff +W ATCH +ĠLy on +hel ps +36 1 +Ġlobby ist +Ġdimin ishing +Ġout breaks +Ġgo ats +f avorite +ĠN ah +son ian +ĠBo oster +Ġsand box +ĠF are +ĠMalt a +Ġatt Rot +ĠM OR +ld e +Ġnavig ating +T ouch +Ġunt rue +ĠDis aster +Ġl udicrous +Pass word +ĠJ FK +blog spot +4 16 +ĠUN DER +ern al +Ġdelay ing +T OP +Ġimpl ants +ĠAV G +ĠH uge +att r +Ġjournal istic +ĠPe yton +ĠI A +R ap +go al +ĠProgram me +Ġsm ashing +w ives +print ln +ĠPl ague +in us +EE P +Ġcru iser +ĠPar ish +umin ium +Ġoccup ants +ĠJ ihad +m op +Ġp int +Ġhe ct +ĠMe cca +direct or +ĠFund ing +ĠM ixed +Ġst ag +T ier +Ġg ust +Ġbright ly +ors i +Ġup hill +R D +Ġles ions +ĠBund y +liv ious +Ġbi ologist +ĠFac ulty +ĠAuthor ization +Ġ24 4 +All ow +ï ¸ +ĠGi ul +Ġpert inent +ot aur +es se +ĠRo of +Ġunman ned +35 1 +ĠSh ak +ĠO rient +Ġend anger +D ir +Ġrepl en +ed ient +Ġtail or +Ġgad gets +Ġaud ible +âĺ Ĩ +N ice +Ġbomb ard +ĠR ape +Ġdef iance +ĠTW O +ĠFilip ino +Ġunaff ected +erv atives +Ġso ared +ĠBol ton +Ġcomprom ising +ĠBrew ers +R AL +ĠA HL +icy cle +Ġv ampires +Ġdi pped +oy er +ĠX III +Ġsidew ays +ĠW aste +ĠD iss +ĠâĶľ âĶĢâĶĢ +$ . +Ġhabit ats +ĠBe ef +tr uth +tr ained +spl it +R us +And y +ĠB ram +RE P +p id +è£ ħ +ĠMut ant +An im +ĠMar ina +Ġfut ile +hig hest +f requency +Ġepile psy +Ġcop ing +Ġconc ise +Ġtr acing +ĠS UN +pan el +ĠSoph ie +ĠCrow ley +ĠAd olf +ĠShoot er +Ġsh aky +ĠI G +ĠL ies +ĠBar ber +p kg +Ġupt ake +Ġpred atory +UL TS +/ ** +Ġintox icated +ĠWest brook +od der +he ment +Ġbas eman +AP D +st orage +ĠFif ty +ed itor +G EN +UT ION +ir ting +Ġse wing +r ift +Ġag ony +ĠS ands +Ġ25 4 +C ash +Ġl odge +Ġp unt +N atural +ĠIde as +Ġerrone ous +ĠSens or +ĠHann ity +Ġ19 21 +Ġm ould +ĠG on +kay a +Ġanonym ously +ĠK EY +Ġsim ulator +W inter +Ġstream ed +50 7 +? ", +Ġte ased +Ġco efficient +Ġwart ime +ĠTH R +' '. +ĠBank ing +mp ire +Ġf andom +Ġl ia +G a +Ġdown hill +Ġinterpre ting +Ind ividual +N orm +Ġjealous y +bit coin +Ġple asures +ĠToy s +ĠChev rolet +ĠAd visor +IZ E +Ġrecept ions +70 6 +C ro +Ġ26 2 +Ġcit rus +ir u +Review er +ject ed +U ES +an z +19 81 +ĠWork er +Ġcompl ied +ores cent +contin ental +T on +ĠPr ism +ĠShe ep +Ġ28 8 +n ox +ĠV og +O rd +Ġreal ms +te k +Ġirrig ation +Ġbicy cles +Ġelectron ically +p oly +t all +() ); +Ġaest hetics +ĠInteg rated +Expl ore +Ġd unk +47 6 +p ain +ĠJac ques +ĠD mit +Fram es +Ġreun ited +Ġhum id +D ro +P olitical +Ġyouth ful +Ġent ails +Ġmosqu ito +36 3 +spe cies +Ġcoord inating +ĠMay hem +ĠMagn us +M ount +Impro ved +ĠST ATE +ATT LE +Ġflow ed +Ġtack led +Ġfashion ed +Ġre organ +iv ari +f inger +Ġreluct antly +et ting +ĠV and +you ng +ĠGar land +Ġpresum ption +Ġamen ities +ĠPle asant +on ential +ĠO xy +Ġmor als +ĠY ah +Read y +Sim on +En h +D emon +Ġcl ich +Mon itor +ĠD U +Ġwel comes +Ġstand out +Ġdread ful +Ġban anas +Ġball oons +h ooting +bas ic +Ġsuff ix +Ġd uly +can o +Ch ain +at os +Ġgeop olitical +Ġ( & +ĠGem ini +ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ +Ġacqu itted +L uck +prot ect +10 24 +Ġsc arcity +Ġmind fulness +ec ided +D N +pr ime +ĠPres idents +ĠVID EO +Ġ( âĪĴ +add ock +N OR +ĠP ru +p un +ĠL OL +)) )) +ĠL iqu +ĠS AS +Ġsty ling +Ġpunish ments +Ġnum b +Ġasc ertain +ĠRock ies +f lu +Th umbnail +Ġperpet rated +ĠSem i +Ġdis arm +ĠOld er +ĠEx ception +Ġexponent ially +ĠCommun ities +Ġabol ish +ĠPart ner +pt oms +Ġ7 77 +ĠFo ley +ĠC ases +Ġgre ase +ĠReb irth +G round +Ġ; ) +ĠDoct rine +ik ini +Y e +ĠBl ossom +Ġpers ists +b ill +Ġinf usion +Ġbud dies +9 11 +ĠPat ient +Ġdem os +Ġacquaint ance +ĠP aw +at ari +Ġx ml +Ġfasc ination +ĠSer ve +Ï Ĥ +br anded +Ġa z +Return s +Ġover shadow +Ġro am +Ġspeed y +n umbered +hel ial +Ġdisc iple +Ġass urances +g iven +pect ing +ĠN atalie +çĶ ° +Ġmosquit oes +rote in +Ġnumer ic +Ġindepend ents +Ġtrans itional +Ġreaction ary +ĠMech dragon +do ctor +Ġshort est +Ġsequ ential +ĠB ac +ĠAccount s +ãģ Į +ach y +ract ive +ĠReg iment +Ġbreat htaking +ffic iency +ĠB ates +Ġ3 11 +Ġward robe +ft s +ĠBer k +Sim ply +ĠRivers ide +iver ing +ident ial +lu cent +Ġen riched +ĠCon ver +ĠG iving +ãĥ Ļ +Ġlegal ize +ĠF TC +Ġfre aking +M ix +Ġter restrial +es ian +ci ents +W ing +LO AD +Ġled ge +ĠViol ent +ĠMet all +Ġ30 8 +Ġs outheastern +hett o +M eat +Ġslow down +Ġret reated +Jere my +end as +**** * +er ic +Ġre ins +opp able +ĠHuman ity +ear ances +rig an +C amera +Ġwa ivers +s oc +Ġalter ation +trans form +ĠC emetery +50 6 +Ġindef inite +Ġstim ulating +y g +60 3 +ĠS op +Ġdescript ive +Ph ase +ĠEd mund +Ġpneum onia +vent us +A mb +Ġlabor atories +ĠEx clusive +ug ar +W ere +Ġmalf unction +Ġhomosexual s +Ġ---- --- +un i +Ġturb ines +ĠEqu ity +D u +Ġmind ed +ĠR H +ĠBlack hawks +Ġfe ats +Ġ17 00 +re pl +36 2 +lad en +Ġindisp ensable +ly ss +tt i +Ġre el +Ġdiver ted +Ġlik eness +Ġsubscript ions +Ġfing ert +Ġfil thy +dest ruct +d raft +ĠBernard ino +l aunch +Ġper plex +ĠS UM +car b +Ġswe ater +ĠVent ure +ĠJ ag +ĠCele b +ĠV oters +Ġstead fast +Ġathlet ics +ĠHans on +ĠDr ac +Tr acker +Ġcomm end +ĠPres idency +ĠD ID +in formed +Ġweb page +P retty +Ġforce fully +ãĥĥ ãĤ¯ +Ġrel ocation +Ġsat ire +â ī +ĠSunder land +æ Ħ +V oice +???? ???? +Ġinform ant +Ġbow el +ĠUn iform +Ġ ..." +Ġpur ge +Ġpic nic +ĠU mb +ĠU PDATE +ĠSapp hire +ĠSt all +le arn +Ġobject ively +Ġob liter +Ġlooph ole +Ġjour neys +Ġo mission +Pro s +ĠSid ney +pl oma +Ġspray ed +Ġg uru +Ġtra itor +Ġtim et +Ġsn apping +ĠSe vent +urn al +ĠUk ip +Ġb owed +por al +l iberal +R os +Quest ions +i OS +Ġsummar ize +ST AT +Ġ18 50 +ap est +Ġl ender +ĠVari able +br inging +ĠL ORD +, ) +Ġcollaps es +x iety +ĠN ed +Y D +ĠSch a +Ġantib ody +Ġdis band +y re +ill usion +Ġro ver +s hed +ĠHiro sh +cc i +Ġcal am +ĠMort on +P interest +Ġ19 28 +ĠE uras +ord es +Ġf ences +ĠIn ventory +ĠVal encia +ĠU d +ĠT iff +Ġsqu e +Ġqu otation +Ġtroubles ome +er ker +QU EST +ĠKing doms +s outh +Ġle vy +Pr ince +ĠSt ing +Ġnick named +Ġapp e +Ġphot ographic +Ġcorp us +re ference +ĠT rog +U nt +) =( +ĠLat via +Ġactiv ating +Ġlicense e +Ġdispar ities +ĠNews letter +ãĥĥ ãĥĪ +Ġfree ing +ĠJe ep +ĠPer ception +ins k +Ġsil icone +ĠHay den +Le an +ĠSuz uki +ibr arian +66 8 +Ġsp or +Ġcorrel ations +ag hetti +Ġtu ber +ĠIP CC +il us +ĠV u +Ġwealth iest +ĠCarb uncle +an za +Ġfool ed +ĠZ ur +Ġd addy +ran o +il ian +Ġknock out +f man +requ ired +ĠWik ileaks +ĠD uffy +ON T +Ġins ol +ĠObject s +Ġb ou +ĠNord ic +ĠIns ert +sc an +Ġd ancers +Ġid iots +major ity +ĠNev ille +ĠFree BSD +Ġt art +pan ic +69 0 +Ġcoc oa +Ġsam pled +Ġlook up +Ind ust +Ġinject ions +gen re +Ġa u +Ġroad way +Ġgen itals +K ind +ĠEx aminer +ĠY az +F resh +Ġpar alysis +ĠAl uminum +Ġre ap +ok é +Ġsl oppy +ĠTun nel +pos ium +ner y +en ic +Ġher bal +ĠOut er +ĠBuild er +Ġinc ur +Ġide ologies +Ġback ups +cons uming +ĠDet ect +de ck +ĠKN OW +ĠG ret +ĠM IC +Ġtough ness +ĠEx hibit +Ġh ive +L es +ĠSCH OOL +ĠAt ari +ald e +ĠN ull +and estine +m ouse +Ġbrig ade +48 9 +Ġrev ol +ĠLaw son +ĠW ah +op oly +eb ted +ĠS aunders +Ġ3 13 +ĠW inc +Ġtab oo +ĠHel met +Ġw edge +ch ip +ĠT ina +b g +Ġinf uri +r n +Ġanomal ies +ĠSy nc +ĠEx am +ĠComm it +ĠDi ary +ĠALS O +ĠDe bor +omed ical +Ġcomprehens ion +6 55 +Ġempower ing +Ġ ire +Ġju ices +ĠE TH +ĠBox ing +=" / +Ġfacilit ated +p oke +ĠPars ons +ĠMod er +tra vel +Ġcivil izations +Ġliber tarians +Ġrun e +ĠCl arks +at hed +Ġcampaign ers +ĠDis patch +ĠFah renheit +ĠCap com +-------- -- +Ġl ace +Ġdr aining +Ġl iner +ĠArt ificial +é n +t ask +] ). +ĠGM O +ĠOper ator +ord inary +ĠInf luence +ĠU ps +Ġpot ency +uss en +osp ons +ĠSw im +ĠDead line +Un ity +Ġcul inary +Ġenlight enment +Ġwe arer +Ġmin ed +Ġp ly +Ġinc est +ĠDVD s +W alk +B TC +Tr ade +Ġdev al +ib and +ĠOvers ight +Palest inian +Ġd art +Ġm ul +L R +Ġrem ovable +ĠReal ms +ì Ŀ +Ġmisc ar +ĠV ulkan +68 5 +è re +ĠS ap +Ġmer ging +ĠCar ly +che ster +Ġbr isk +Ġlux urious +ĠGener ator +Ġbit terness +Ġed ible +Ġ24 3 +T G +Ġrect angle +With No +bel ow +J enn +Ġdark est +Ġh itch +Ġdos age +Ġsc aven +ĠK eller +ĠIllust rated +Certain ly +ĠMaver icks +Marg inal +Ġdiarr hea +Ġenorm ously +Ġ9 99 +sh r +qu art +Ġadam ant +ĠM ew +Ġren ovation +Ġcerv ical +ĠPercent age +en ers +ĠKim ber +Ġflo ats +Ġde x +ĠW itcher +ĠSwan sea +d m +Ġsal ty +y ellow +Ġca pe +ĠDr ain +ĠPaul a +ĠTol edo +les i +Mag azine +ĠW ick +ĠM n +ĠA ck +ĠR iding +AS ON +Ġhom ophobic +AR P +Ġwand ered +C PU +ood oo +ĠP ipe +Ġtight ening +ĠBut t +3 18 +Ġdesert ed +S ession +Ġfacilit ating +J ump +Ġemer gencies +OW ER +Ġexhaust ive +ĠAF TER +Ġheart beat +ĠLab el +ack y +ĠCert ified +ilt ration +Z e +ĠU tt +Ġ13 00 +Ġpres ume +ĠDis p +Ġsur ged +Ġdoll s +Col umb +Ġchim pan +ĠR azor +Ġt icks +Ġcouncill or +Ġpilgr image +ĠReb els +ĠQ C +ĠA uction +x ia +ik k +b red +Ġinsert ion +Ġco arse +d B +SE E +ĠZ ap +ĠF oo +Ġcontem por +ĠQuarter ly +ot ions +ĠAl chemist +ĠT rey +ĠDu o +S weet +80 4 +ĠGi ov +Ġfun n +N in +h off +Ġram ifications +Ġ19 22 +ĠExper ts +az es +Ġgar ments +ar ial +ĠN ab +Ġ25 7 +ĠV ed +Ġhum orous +ĠPom pe +Ġn ylon +Ġlur king +ĠSerge y +ĠMatt is +Ġmisogyn y +ĠComp onents +ĠWatch ing +ĠF olk +ract ical +B ush +Ġt aped +Ġgroup ing +Ġbe ads +Ġ20 48 +Ġcon du +quer que +Read ing +Ġgriev ances +Ult ra +Ġend point +H ig +ĠSt atic +ĠScar borough +L ua +ĠMess i +a qu +ĠPsy Net +ĠR udd +Ġa venue +v p +J er +Ġsh ady +ĠRes ist +ĠArt emis +Ġcare less +Ġbro kers +Ġtemper ament +Ġ5 20 +T ags +ĠTurn ing +Ġut tered +Ġp edd +Ġimpro vised +Ġ: ( +Ġtab l +Ġpl ains +16 00 +press ure +ĠEss ence +marg in +friend s +ĠRest oration +Ġpoll ut +ĠPok er +ĠAugust ine +ĠC IS +ĠSE AL +or ama +Ġth wart +se ek +Ġp agan + º +cp u +Ġg arn +Ġass ortment +ĠI LCS +t ower +Recomm ended +Ġun born +ĠRandom Redditor +ĠRandomRedditor WithNo +Ġparaly zed +Ġeru ption +Ġinter sect +ĠSt oke +ĠS co +B ind +å ¾ +ĠP NG +ĠNeg ative +ĠNO AA +Le on +Ġall oy +ĠL ama +ĠD iversity +5 75 +Ġunderest imated +ĠSc or +Ġm ural +Ġb usted +so on +l if +Ġnone x +Ġall ergy +ĠUnder world +ĠR ays +ĠBl asio +Ġh rs +ĠD ir +Ġ3 27 +by ter +Ġrepl acements +Ġactiv ates +ri ved +M H +Ġp ans +ĠH I +Ġlong itudinal +Ġnu isance +al er +Ġsw ell +ĠS igned +s ci +ĠIs les +ĠA GA +Ġdef iant +Ġson ic +oc on +K C +ĠA im +t ie +ah ah +Ġm L +D X +Ġb isc +ĠBill board +ĠSY STEM +NE Y +ga ard +Ġdist ressed +former ly +Al an +Ġche fs +Ġopt ics +ĠC omet +ĠAM C +Ġredes igned +irm ation +Ġsight ings +38 2 +3 11 +ĠW B +Ġcont raction +ĠT OTAL +D ual +Ġstart led +Ġunderstand ably +Ġsung lasses +ETH OD +Ġd ocker +Ġsurf ing +ĠH EL +ĠSl ack +ton es +Ġsh alt +Vis ual +49 8 +Dep artment +c ussion +Ġunrest ricted +Ġt ad +Ġre name +employ ed +Ġeduc ating +Ġgrin ned +bed room +ĠActiv ities +ĠV elvet +ĠSW AT +Ġsh uffle +ig or +Ġsatur ation +F inding +c ream +ic ter +Ġv odka +tr acking +te c +Ġfore ground +iest a +Ġve hement +ĠEC B +ĠT ie +E y +Ġt urtles +ĠRail road +ĠKat z +ĠFram es +Ġmen ace +ĠFell owship +ĠEss ential +ugg ish +Ġdri p +ch witz +ĠKy oto +s b +ĠN ina +Param eter +Ġal arms +ĠCl aud +Ġpione ering +Ġchief ly +ĠSc ream +Col lection +Ġthank fully +ĠRonald o +åŃ IJ +st rip +ĠDisney land +com mercial +See ing +S oul +Ġevac uate +Ġc iv +ĠAs he +Ġdiv ides +ĠD agger +rehens ive +Ġber ries +ĠD F +Ġs ushi +Ġplur ality +W I +Ġdisadvant aged +Ġbatt alion +ob iles +45 1 +Ġcl ing +Ġunden iable +ĠL ounge +Ġha unt +p he +Ġquant ify +Ġdiff ered +Ġ[* ] +ĠV iz +c um +sl ave +Ġvide og +Ġqu ar +Ġbund les +ĠAl onso +t ackle +Ġneur onal +Ġlandsl ide +conf irmed +ĠDep th +Ġrenew ables +B ear +ĠMaced onia +Ġjer seys +Ġb unk +ĠSp awn +ĠControl s +ĠBuch anan +Ġrobot ics +Ġemphas izing +ĠTut orial +h yp +ist on +Ġmonument al +æ ° +ĠCar ry +Ġt bsp +en ance +H ill +art hed +Ġro tten +De an +Ġtw isting +Ġgood will +Ġimm ersion +L iving +Ġbr ushes +ĠC GI +ĠAt k +tr aditional +Ġph antom +ĠSt amina +Ġexpans ions +ĠMar in +Ġembark ed +ĠE g +int estinal +ĠPE OPLE +ĠBo oth +ĠApp alach +Ġreleg ated +V T +M IT +Ġmust er +Ġwithdraw ing +Ġmicrosc ope +ĠG athering +ĠC rescent +ĠArgent ine +ĠDec re +ĠDomin ic +Ġbud s +ant age +ĠI on +Ġwid ened +ONS ORED +ĠGl oves +iann opoulos +raz en +fe el +Ġrepay ment +Ġhind sight +ĠRE ALLY +ĠPist ol +ĠBra h +Ġwat ts +Ġsurv ives +Ġfl urry +iss y +Al ert +ĠUrug uay +Ph oenix +S low +ĠG rave +ĠF ir +Ġmanage able +Ġtar iff +ĠU DP +ĠPist ons +ĠNiger ian +Ġstrike outs +Ġcos metics +whel ming +f ab +c ape +pro xy +Ġre think +Ġover coming +sim ple +Ġw oo +Ġdistract ing +ĠSt anton +ĠTuls a +ĠD ock +65 9 +Ġdisc ord +ĠEm acs +ĠV es +ĠR OB +Ġreass uring +Ġcons ortium +Muslim s +3 21 +Ġprompt s +se i +ĠH itch +imp osed +ĠF ool +Ġindisc rim +wr ong +bu querque +D avis +! ] +Ġtim eless +ĠNE ED +Ġpestic ide +Ġrally ing +ĠCal der +Ġå ¤ +Ġx p +ĠUn le +ĠEx port +lu aj +B uff +) [ +Ġsq or +S audi +Ġis tg +Ġindul ge +pro c +Ġdisg usted +Ġcomp ounded +Ġn em +Ġschool ing +ĠC ure +process ing +S ol +Ġpro verb +it ized +ĠAlv arez +Ġscar f +Ġrect angular +re ve +Ġh ormonal +ĠSt ress +itiz en +Ġ4 25 +girl s +ĠNo ir +ĠR app +Ġmar ches +ch urch +ĠUs es +Ġ40 5 +ĠBer m +Ġord inances +ĠJud gment +Charg es +ĠZ in +Ġdust y +Ġstraw berries +Ġper ce +ĠTh ur +ĠDebor ah +net flix +ĠLam bert +Ġam used +ĠGu ang +Y OU +R GB +ĠC CTV +Ġf iat +r ang +Ġf ederation +ĠM ant +ĠB ust +ĠM are +respect ive +ĠM igration +ĠB IT +59 0 +Ġpatriot ism +Ġout lining +reg ion +ĠJos é +Ġbl asting +ĠEz ra +B s +Ġundermin es +ĠSm ooth +Ġcl ashed +rad io +Ġtransition ing +ĠBucc aneers +ĠOw l +Ġplug s +Ġh iatus +ĠPin ball +Ġm ig +ĠNut r +ĠWolf e +Ġinteg ers +Ġor bits +ĠEd win +ĠDirect X +b ite +Ġbl azing +v r +Ed ge +ĠP ID +ex it +ĠCom ed +ĠPath finder +ĠGu id +ĠSign s +ĠZ er +ĠAg enda +Ġreimburse ment +M esh +i Phone +ĠMar cos +ĠS ites +h ate +en burg +Ġs ockets +p end +Bat man +v ir +ĠSH OW +Ġprovision al +con n +ĠDeath s +AT IVE +Pro file +sy m +J A +Ġnin ja +inst alled +id ates +eb ra +ĠOm aha +Ġse izing +ĠBe asts +Ġsal ts +M ission +Gener ally +ĠTr ilogy +he on +leg ates +Ġd ime +Ġf aire +par able +G raph +Ġtotal ing +Ġdiagram s +ĠYan uk +ple t +ĠMe h +Ġmyth ical +ĠStep hens +aut ical +ochem istry +Ġkil ograms +Ġel bows +anc ock +ĠB CE +ĠPr ague +Ġimpro v +ĠDev in +Ġ" \ +par alle +Ġsuprem acists +ĠB illion +Ġreg imen +inn acle +Ġrequ isite +ang an +ĠBur lington +ain ment +ĠObject ive +oms ky +G V +Ġun ilateral +Ġt c +Ġh ires +ment al +Ġinvol untary +Ġtrans pl +ĠASC II + ¨ +Ev ents +Ġdoub ted +ĠKa plan +ĠCour age +ig on +ĠMan aging +ĠT art +Ġfalse hood +ĠV iolet +Ġair s +Ġfertil izer +Brit ain +Ġaqu atic +ou f +W ords +ĠHart ford +Ġeven ings +ĠV engeance +qu ite +G all +ĠP ret +Ġp df +ĠL M +ĠSo chi +ĠInter cept +9 20 +Ġprofit ability +ĠId le +ĠMac Donald +ĠEst ablishment +um sy +Ġgather ings +ĠN aj +Charl ie +Ġas cent +ĠProt ector +Ġal gebra +Ġbi os +for ums +EL S +Introdu ced +Ġ3 35 +Ġastron omy +Cont ribut +ĠPol ic +Pl atform +Ġcontain ment +w rap +Ġcoron ary +ĠJ elly +man ager +Ġheart breaking +c air +ĠChe ro +c gi +Med ical +ĠAccount ability +! !" +oph ile +Ġpsych otic +ĠRest rict +Ġequ itable +iss ues +Ġ19 05 +ĠN ek +c ised +ĠTr acking +Ġo zone +Ġcook er +ros is +Ġre open +Ġinf inity +ĠPharm aceutical +ens ional +Att empt +ĠR ory +Mar co +Ġawa its +H OW +t reated +Ġbol st +Ġreve red +Ġp ods +opp ers +00 10 +Ġampl itude +ric an +SP ONSORED +Ġtrou sers +Ġhal ves +ĠK aine +ĠCut ler +ĠA UTH +Ġsplend id +Ġprevent ive +ĠDud ley +if acts +umin ati +ĠY in +Ġad mon +ĠV ag +Ġin verted +Ġhast ily +ĠH ague +L yn +Ġled ger +Ġastron omical +get ting +Ġcirc a +ĠC ic +ĠTenn is +Lim ited +Ġd ru +ĠBY U +Ġtrave llers +Ġp ane +ĠInt ro +Ġpatient ly +Ġa iding +Ġlo os +ĠT ough +Ġ29 3 +Ġconsum es +Source File +Ġ"" " +Ġbond ing +Ġtil ted +Ġmenstru al +ĠCel estial +UL AR +Plug in +Ġrisk ing +N az +ĠRiy adh +Ġacc redited +Ġsk irm +é Ľ +Ġexam iner +Ġmess ing +Ġnear ing +ĠC hern +ĠBeck ham +Ġsw apped +Ġgo ose +K ay +Ġlo fty +ĠWal let +Ġ[ ' +Ġap ocalypse +Ġb amboo +ĠSP ACE +ĠEl ena +Ġ30 6 +ac ons +Ġtight ened +Ġadolesc ence +Ġrain y +Ġvandal ism +ĠNew town +Ġcon ject +c akes +Ġche ated +Ġmoder ators +par ams +E FF +Ġdece it +ĠST L +ĠTanz ania +ĠR I +Ġ19 23 +ĠEx ile +the l +Ġthe olog +Ġquir ky +ĠIr vine +Ġneed y +or is +U m +K a +Ġmail box +3 22 +Ġb os +ĠPet ra +K ING +Ġenlarg ed +O ften +Ġbad ass +Ġ3 43 +ĠPl aces +ĠC AD +Ġpr istine +Ġinterven ing +d irection +Ġl az +ĠD SM +Ġproject ing +ĠF unk +ag og +pay ment +n ov +Ġch atter +AR B +Ġexam inations +ĠHouse hold +ĠG us +F ord +4 14 +B oss +Ġmy stic +Ġle aps +ĠB av +ul z +b udget +Foot ball +Ġsubsid ized +Ġfirst hand +Ġcoinc ide +oc ular +Con n +ĠColl abor +Ġfool s +am ura +ah ar +r ists +Ġsw ollen +Ġexp ended +ĠP au +s up +Ġsp ar +Ġkey note +s uff +Ġunequ al +Ġprogress ing +str ings +ĠGamer gate +Dis ney +ĠEle ven +om nia +Ġscript ed +Ġear ners +bro ther +ĠEn abled +æ ³ +Ġlar vae +ĠL OC +m ess +Wil son +ĠTem plate +success fully +Ġparam ount +Ġcamoufl age +Ġbind s +ĠQu iet +ĠSh utterstock +r ush +Ġmasc ot +fort une +ĠCol t +ĠBe yon +hab i +Ġha irc +Ġ26 7 +ĠDe us +Ġtw itch +Ġconcent rating +Ġn ipples +c ible +Ġg ir +N Z +M ath +n ih +Requ ired +Ġp onder +ĠS AN +Ġwedd ings +Ġl oneliness +N ES +ĠMah jong +69 5 +add le +ĠGar ner +ĠC OUR +Br idge +Ġsp ree +ĠCald well +Ġbri bery +Ġ���� ���� +plug ins +Ġr acket +Ġchamp agne +vers ible +V ote +Ġmod ifiers +May or +6 80 +Ġassemb lies +ĠS ultan +ĠN ing +ĠLad ies +Ġsulf ur +Ġor bs +Ġ---- - +____ ___ +ĠJournal ism +Ġes ports +Ġl ush +Ġh ue +Ġspect ral +H onest +ãĥ ı +Ġbus hes +Ġrein forcement +Ġre opened +ĠWhe els +ĠM org +rie ving +Ġaux iliary +Ġj Query +ĠB AT +tes que +Ġver tex +p ure +f rey +ãĤ º +d os +Ġty ph +Ġc ull +Ġe q +Ġdec on +Ġtoss ing +Ġdispar ate +ĠBr igham +print f +led ged +Ġsu nd +Ġco zy +Ġhepat itis +per forming +Ġav al +ĠG G +f uture +Ġpet ertodd +ĠKos ovo +Ġmagn ets +Al ready +ĠEd ison +ĠCe res +ĠRA ID +Ġbrill iance +57 6 +Ġder ives +Ġhypert ension +ĠÎ Ķ +Ġlamb da +Ġfl air +Ġmission aries +Ġrap es +ĠSt arter +ĠMon ths +Ġdef y +Ġseism ic +ĠR aphael +Ġeuro zone +65 6 +z sche +Ġscr atched +Ġb ows +ĠLenn on +ĠGa ia +Ġdri pping +f acts +A le +Ġfrog s +ĠBre ast +ogene ity +ĠProsecut or +Ġampl ified +ĠHod g +ĠF n +Th ousands +ĠNI H +ĠMonitor ing +FT WARE +ĠPri ebus +ĠG rowing +hun ter +Ġdiagn ose +ĠM ald +ĠL R +Ġcrown ed +Ġburst ing +Ġdiss olution +j avascript +Ġuseful ness +ĠExec ution +: ( +ĠIv ory +a ah +Ġpersecut ed +viol ence +ist as +ĠCr ate +Ġimpuls es +ĠSp ani +ed es +Hand le +ĠZ erg +think able +Last ly +Ġspont aneously +Ġinconven ient +Ġdismiss ing +Ġpl otted +Ġeight y +Ġ7 37 +r ish +ĠThor nton +ath am +Ġsit com +V en +Rec ipe +t el +l und +Ġcle ars +ĠSas uke +Ġ25 8 +Ġopt ing +Ġen raged +est hetic +ĠA e +uch s +Pre p +Fl ow +Ġrun off +ĠE ating +ĠG iles +ĠAct ing +res ources +ib aba +Ġr pm +Ġske wed +ĠBl anc +ĠS akuya +Ġhot ter +Ġ19 24 +op ian +ck o +Ġcr umbling +Ġcapt ains +ĠAppropri ations +le aders +dro pping +an uts +Ġrevers ing +ĠP ose +ĠS ek +Sc ot +ĠIde a +c ise +ĠSloven ia +Ġ3 17 +Do ctor +Ġcro cod +ald i +Se a +ĠFar rell +Ġmerc enaries +ĠR NC +ĠGu ess +Ġp acing +M achine +Streamer Bot +ĠChar ity +Ġ29 8 +Ġcann ons +ĠTob y +TPP StreamerBot +ĠPass ion +cf g +Th om +Ġbad ges +ĠBern stein +. âĢĵ +ĠP OP +ĠCon j +Ġinitial ization +Ġbiod iversity +D ub +Ġfeud al +Ġdisclaim er +Ġc row +Ġign ition +ar f +S HA +Ġk Hz +h azard +ĠArt ists +oe uv +67 9 +ĠRud y +N ine +ĠRam adan +å ½ +itt o +Ġadren aline +C ert +Ġsmell ed +Ġimp unity +Ġag endas +ĠRe born +ĠCon cent +ĠSe ems +Ġo mega +ĠDust in +Ġback er +ĠSau ce +ĠBoy le +W IN +Ġsp ins +Ġpa uses +u pt +Ġshred ded +Ġstra pped +ĠCor ruption +Ġscr atches +Ġn i +Ġatt ire +ĠS AF +Factory Reloaded +ĠI PS +Ġ( % +Ġsem inar +f ocus +c ivil +Ġ18 60 +int osh +Ġcontin ual +Ġabbre vi +ĠS ok +oc obo +X M +Ġfr antic +Ġunavoid able +Ġar tery +Ġannot ations +b ath +Cl imate +Ġd ors +ĠSl ide +co ord +ĠRel oad +ĠL DL +ĠLove craft +Ġunim agin +Ġresemb led +Ġbarr acks +n p +Ġsurrog ate +Ġcategor ized +ãĤ © +Ġvacc inated +Ġdrain age +Ġind ist +ĠWhats App +Ġ18 70 +oler ance +inv oke +am orph +Ġrecon nect +Ġem anc +Ġblind ness +Ġ12 80 +intern et +c ollar +Ġalt ru +Ġab yss +ĠT RI +65 7 +Ġinf used +HE AD +Ġforest ry +ĠWood y +ĠC i +w i +s am +78 4 +hol iday +Ġmog ul +ĠF ees +ĠD EN +In ternal +ur bed +f usc +at om +ĠIll usion +Ġpoll ed +Ġfl ap +Ġco ax +L GBT +An aly +ĠSect ions +ĠCalif orn +em n +Ġh ither +ĠN IGHT +Ġn ailed +ĠPip eline +39 1 +o of +ĠPr imal +vere nd +Ġsl ashing +Ġret ri +avi our +Ġdepart ing +g il +IS C +Ġmid way +Ġultras ound +Ġbeh aving +ĠT ara +class es +V irtual +ĠColon ial +Ġstri pping +Ġorchestr ated +ĠGra ves +45 2 +ĠIron ically +ĠWrit ers +Ġl ends +ĠMan z +Ġra ven +Ġoxid ative +Ġ26 6 +EL F +act ually +asc ar +D raft +Ġfavour able +Ġhumili ating +Ġf idelity +ĠH of +ĠX uan +49 6 +Ġlay ered +at is +79 0 +Ġpay check +it on +K ar +ĠVM ware +ĠFar mer +Ġserv ic +gl omer +Ġsl ump +ĠFab ric +ĠD OC +est ing +Ġreass ure +Ġph yl +v olt +it ory +R ules +Ġoxid ation +Ġpri zed +Ġmist ress +ĠDj ango +WAR N +å ij +Ġenc ode +ĠFeed back +Ġstupid ity +I an +ĠYugoslav ia +× ¨ +ac l +UT E +19 77 +Ġqual ifies +Ġpuls es +pret ty +Ġfro ze +Ġs s +Iter ator +Ġur gently +Ġm ailed +ĠCh am +Ġsust aining +Ġbas il +Ġpupp ies +il ant +ĠP LEASE +l ap +ace ous +F ear +ĠMaster y +aut omatic +ĠT AG +Ġant im +ag les +47 3 +fram es +Ġwh ispers +ĠWho ever +Ġbra very +ĠUK IP +ract ions +"" " +Ġt ame +Ġpart ed +every thing +CON T +Ġind ebted +Ġadd r +re k +IR ED +Ġem inent +cl inton +Ġo usted +Ġreview er +Ġmelt down +Ġre arr +ĠY ao +the real +aby te +Ġst umbling +Ġbat ches +Ġ25 9 +Ġcontrace ptive +Ġprost itute +ens is +De cl +ĠSt rikes +M ilitary +ĠO ath +v acc +pp ings +05 2 +Ġpart Name +amp ing +Rep orts +K I +CH R +Ġsubt ly +sw ers +Bl ake +us ual +Ġcontest ants +Ġcart ridges +ĠGRE AT +Ġbl ush +ĠâĢ º +47 2 +Ġreason ed +ãĥ ¤ +paralle led +Ġd yn +ag ate +Ġnight ly +å Ĩ +55 6 +Ġsem antic +ĠAdv oc +Ġ !! +Ġdisag rees +ĠB W +V eh +Ġharm ing +Ġembr aces +Ġstri ves +Ġin land +ĠK ard +Ġhe ats +ĠGin ny +ut an +ern aut +yl ene +ĠE lev +J D +Ġh ars +ĠStar r +Ġsk ysc +Ġcollabor ators +Us ually +Ġrev olutions +ĠSTAT S +Ġdism antle +Ġconfident ly +Ġkin etic +Al i +Ġpercent ile +Ġextract ing +ill ian +est ead +Ġphysic ists +ĠMarsh al +Ġfell owship +Ġd ashed +ĠU R +ĠSi oux +ĠComp act +am ide +P ython +ĠLe igh +ĠPharm ac +ist rates +her ical +Ġf ue +ĠE min +Ġ( { +ĠNeighbor hood +Ġdisrupt ing +ĠD up +Ġg land +ĠSe v +ĠMar ian +arg on +ĠD und +Ġ< !-- +Ġstr and +Ġstadium s +z os +Ġpsych osis +ĠR ack +Ġbrilliant ly +ï¸ ı +Ġsubmer ged +ĠInst it +ĠCh ow +Ġc ages +ĠH ats +ĠU rs +Ġdil uted +us at +ien ne +ĠMembers hip +ĠBur k +Ġ ie +Ġarche type +D rug +ult on +ĠSp ock +ĠMcK ay +ĠDep end +F eatured +S oc +19 78 +ĠB ere +Ġrelent lessly +Ġcripp ling +Ġar thritis +çĶ Ł +ĠTrop ical +ĠBul g +ĠCher yl +Ġadm irable +Ġsub title +Over ride +Ġorig inating +ĠC CP +Ġsw ore +ĠSo le +ĠDis orders +3 29 +Ġprocess ion +Ġref urb +Ġimm ersed +requ ently +Ġskept ics +Ġcer amic +m itter +en stein +b elt +ĠT IT +b idden +Ġf ir +m ist +> ] +Ġwe ave +ĠParad ox +Ġentr usted +ĠBarcl ays +Ġnovel ist +og ie +80 6 +Ġnin ety +Ġdisag reements +@@@@ @@@@ +ĠAus chwitz +c ars +ĠL ET +t ub +arant ine +P OS +Ġback story +Ġcheer ful +ĠR ag +ek a +bi ased +Ġinexper ienced +ak ra +ĠW itt +t an +Ġrap ist +Ġplate au +ch al +ĠInqu is +exp ression +Ġc ipher +Ġsh aving +add en +re ly +( \ +ism a +ĠReg ulatory +CH AR +ily n +N VIDIA +G U +Ġmur m +la us +Christ opher +Ġcontract ual +ĠPro xy +ĠJa ime +ĠMethod ist +Ġstew ards +st a +per ia +Ġphys iology +Ġbump ed +Ġf ructose +Austral ian +ĠMet allic +ĠMas querade +ar b +Ġprom ul +Ġdown fall +Ġbut cher +Ġb our +ĠIN FORMATION +ĠB is +pect s +ad ena +Ġcontempl ating +ar oo +cent ered +ĠPe aks +Us ed +Ġmod em +Ġg enders +Ġ8 000 +37 1 +Ġm aternity +ĠR az +Ġrock ing +Ġhandgun s +ĠD ACA +Aut om +ĠN ile +Ġtum ult +ĠBenef it +ĠAppro ach +works hop +ĠLe aving +G er +inst ead +Ġvibr ations +Ġrep ositories +49 7 +ĠA unt +ĠJ ub +ĠExp edition +Al pha +Ġs ans +Ġoverd ue +Ġoverc rowd +Ġlegisl atures +Ġp aternal +ĠLeon ardo +Ġexp ressive +Ġdistract ions +Ġsil enced +tr ust +Ġb iking +Ġ5 60 +Ġpropri et +Ġimp osition +Ġcon glomer +Ġ= ================================================================ +ĠTe aching +ĠY ose +int ensive +T own +Ġtroll ing +ĠGr ac +ĠAS US +Y o +Ġspecial s +ĠNep h +ĠGod zilla +Dat abase +ĠHe gel +Ġ27 2 +19 76 +ĠGl oria +Ġdis emb +ĠInvestig ations +ĠB ane +ag ements +St range +Ġtre asury +ĠPl ays +Ġundes irable +Ġwid ening +Ġverb ally +Ġinf ancy +Ġcut ter +f ml +Ġ21 00 +prot otype +f ine +Ġdec riminal +Ġdysfunction al +Ġbes ie +ĠErn st +z eb +Ġnort heastern +Ġa ust +por ate +ĠMar lins +Ġsegreg ated +ew orld +ĠMa her +Ġtra verse +Ġmon astery +ur gy +G ear +s and +Com pl +ĠE MP +Ġpl ent +ĠMer cer +Ġ27 6 +TA BLE +Config uration +H undreds +Ġpr ic +Ġcollabor ating +ĠPar amount +ĠCumm ings +Ġ( < +Ġrecord er +Ġfl ats +Ġ4 16 +wh ose +Font Size +ĠOr bit +Y R +Ġwr ists +Ġb akery +) } +ĠB ounty +ĠLanc aster +Ġend ings +acc ording +ĠSal am +e asy +75 5 +ĠBur r +ĠBarn ett +onom ous +Un ion +Ġpreced ence +ĠScholars hip +ĠU X +Ġroll out +Ġbo on +al m +ĠCan ter +æ µ +Ġround ing +Ġcl ad +Ġv ap +ĠF eatured +is ations +Ġ5 40 +pol ice +Ġunsett ling +Ġdr ifting +ĠLum ia +ĠObama Care +ĠF avor +Hy per +ĠRoth schild +ĠMil iband +an aly +ĠJul iet +H u +Ġrec alling +a head +69 6 +Ġunf avorable +Ġd ances +O x +Ġleg ality +Ġ40 3 +rom ancer +Ġinqu ire +ĠM oves +\ "> +ĠVari ant +ĠMess iah +ĠL CS +ĠBah á +75 6 +Ġeyeb row +Ġ ¥ +ĠMc F +ĠFort y +M as +Ġpan icked +Ġtransform ations +q q +Ġrev olves +ring e +ĠA i +ax e +Ġon ward +ĠC FR +ĠB are +log in +Ġliqu ids +Ġde comp +second ary +il an +ĠCon vert +ami ya +Ġprosecut ing +Ġâī ¡ +ĠYork ers +ĠByr ne +sl ow +aw ei +J ean +Ġ26 9 +ĠSky dragon +Ġ é +ĠNicarag ua +ĠHuck abee +ĠHigh ly +Ġamph ib +ĠPast or +ĠL ets +Ġbl urred +Ġvisc eral +ĠC BO +Ġcollabor ated +z ig +Leg al +Ġapart heid +Ġbr id +Ġpres et +ĠD ET +ĠAM A +× Ķ +arch ing +auc uses +build er +Ġpo etic +Ġem ulator +ĠMole cular +Ġhon oring +ise um +Ġtract or +ĠCl uster +ĠCal m +ared evil +Ġsidew alks +Ġviol in +Ġgeneral ized +ĠAle c +Ġemb argo +Ġfast ball +ĠHT TPS +ĠL ack +ĠCh ill +ri ver +C hel +ĠSw arm +ĠLev ine +ro ying +L aunch +Ġkick er +Ġadd itive +ĠDe als +W idget +cont aining +Ġescal ate +ĠOP EN +Ġtwe aked +Ġst ash +Ġsp arks +ĠEs sex +ĠE cc +Ġconv ict +Ġblog ging +I ER +ĠH L +Ġmurd erers +75 9 +ĠH ib +Ġde pl +ĠJ ord +S ac +Ġdis sect +ĠHow e +os her +Ġcustom izable +ĠFran z +Ġat ro +Ä ĩ +Ġ000 4 +Ġout post +R oss +Ġglyph osate +ĠHast ings +ĠBE FORE +Ġsh ove +o pped +ĠSc ala +Ġam ulet +an ian +Ġexacerb ated +Ġe ater +47 1 +UM E +Ġpul p +izont al +ĠZ am +ĠAT I +imm une +aby tes +Ġunnecess arily +ĠC AT +ĠAx is +Ġvisual ize +à ī +ĠRad ical +f m +Doc uments +ĠFor rest +Ġcontext ual +ĠSy mbol +Ġtent ative +ĠDO ES +ĠGood s +Ġintermitt ent +} : +medi ated +Ġridic ule +Ġathe ism +Ġpath ogens +ĠM um +Ġre introdu +Ġ30 7 +i HUD +Ġflash light +Ġsw earing +Ġp engu +B u +Ġrot ated +ĠCr ane +Ġ() ); +Ġfashion able +Ġendors ing +46 3 +) [ +Ġingest ion +Ġcook s +Ġ9 50 +ot omy +ĠIm am +Ġk a +Ġte aser +ĠGhost s +ĠãĤ µ +19 69 +Ï ĥ +ub by +Ġconver ter +zan ne +end e +ĠPre par +ĠNic kel +ĠChim era +h im +ĠTyr ann +ĠSabb ath +ĠNich ols +Ġra pt +ih ar +Ġshe lling +Ġillum inate +Ġdent ist +ut or +ĠInteg ration +Ġwh ims +ĠLiter ary +Be aut +Ġp archment +ag ara +Br and +Ġder og +â̦ ) +ĠNor se +Ġunw itting +Ġc uc +Ġborder line +Ġupset ting +Ġrec ourse +Ġd raped +ĠRad ar +Ġcold er +ĠPep si +im inary +], [ +65 8 +V i +ĠF rem +ĠP es +Ġveter inary +ĠT ED +ĠEp idem +n ova +k id +Ġdev out +o ct +j ad +M oh +ĠP AY +Ġge ometric +Ġ3 23 +Ġcircum ference +ich ick +19 75 +ĠY uri +ĠSh all +ĠH over +un in +S pr +Ġg raft +ĠHapp iness +Ġdisadvant ages +att acks +Ġhub s +ĠStar Craft +é ĸ +Ġgall eries +ĠKor ra +Ġgrocer ies +ĠGors uch +Ġrap ists +Ġfun gi +ĠTyph oon +V ector +ĠEm press +b attle +4 68 +Ġparas ite +ĠBom ber +S G +ex ist +ĠP f +Ġun se +Ġsurge ons +B irth +ĠUn sure +ĠPrint ed +ĠBehavior al +ĠA ster +Pak istan +Ġun ethical +Ġs v +ĠIo T +Ġlay outs +P ain +Ġconst ants +ĠL W +ĠB ake +Ġtow els +Ġdeterior ation +ĠBol ivia +Ġblind ed +ĠW arden +ĠMist ress +Ġon stage +Ġcl ans +ĠB EST +19 60 +Ġant ique +Ġrhet orical +ĠPer cy +ĠRw anda +, . +B ruce +Ġtra umat +ĠParliament ary +Ġfoot note +id ia +ĠLear ned +se eking +gen ic +Ġdim ensional +H ide +èĢ ħ +Ġintrig ue +in se +Ġle ases +Ġapp rentices +w ashing +Ġ19 26 +V ILLE +Ġsw oop +s cl +Ġbed rooms +on ics +ĠCr unch +comp atible +Ġincap ac +ĠYemen i +ash tra +z hou +d anger +Ġmanifest ations +ĠDem ons +AA F +Secret ary +ACT ED +L OD +Ġam y +ra per +eth nic +4 17 +Ġpos itives +Ġ27 3 +ĠRefuge es +Ġus b +ĠV ald +odd y +ĠMahm oud +As ia +Ġskull s +ĠEx odus +ĠComp et +ĠL IC +ĠM ansion +ĠA me +Ġconsolid ate +storm s +ont ent +99 6 +Ġcl en +Ġm ummy +fl at +75 8 +ĠV OL +oter ic +n en +ĠMin ute +S ov +Ġfin er +R h +ly cer +Ġreinforce ments +ĠJohann es +ĠGall agher +Ġgym n +S uddenly +Ġext ortion +k r +i ator +T a +Ġhippocamp us +N PR +ĠComput ing +Ġsquare ly +Ġmod elling +ĠFor ums +ĠL isp +ĠKrish na +Ġ3 24 +Ġr ushes +Ġens ued +Ġcre eping +on te +n ai +il ater +ĠHorn ets +Ġob livious +IN ST +55 9 +Ġjeopard y +Ġdistingu ishing +j ured +Ġbeg s +sim ilar +ph ot +5 30 +ĠPark way +Ġs inks +ĠHearth stone +ib ur +ĠBat on +Av oid +Ġd ancer +Ġmag istrate +ary n +Ġdisturb ances +ĠRom ero +Ġpar aph +Ġmis chief +âĸ ĵ +ĠSh aria +Ġur inary +r oute +iv as +f itted +Ġeject ed +ĠAl buquerque +Ġ4 70 +Ġirrit ated +ĠZ ip +ĠB iol +à į +Ġden ounce +Ġbin aries +ĠVer se +Ġopp os +ĠKend rick +ĠG PL +Ġsp ew +ĠEl ijah +ĠE as +Ġdr ifted +so far +Ġannoy ance +ĠB ET +47 4 +ĠSt rongh +it ates +ĠCogn itive +oph one +ĠIdent ification +ocr ine +connect ion +Ġbox er +ĠAS D +ĠAre as +Y ang +t ch +ull ah +Ġdece ive +Comb at +ep isode +cre te +W itness +Ġcondol ences +ht ar +Ġhe als +Ġbuck ets +ĠLA W +B lu +Ġsl ab +ĠOR DER +oc l +att on +ĠSteven son +ĠG inger +ĠFriend ly +ĠVander bilt +sp irit +ig l +ĠReg arding +ĠPR OG +Ġse aling +start ing +Ġcard inal +ĠV ec +ĠBe ir +Ġmillisec onds +we ak +per se +Ġster ile +ĠCont emporary +ĠPh ant +ĠCl o +Ġout p +Ġex iled +Ġ27 7 +Ġself ie +Ġman ic +Ġn ano +ter ms +Alex ander +Ġres olves +Ġmillenn ia +Ġexpl odes +Ġconst ellation +Ġadul tery +m otion +D OC +Ġbroad casters +Ġkinderg arten +ĠMay weather +ĠE co +ich o +Ġ28 7 +l aun +Ġm ute +Ġdisc reet +Ġpres chool +Ġpre empt +De lete +ĠFre ed +P i +H K +Ġblock er +ĠC umber +Ġw rought +d ating +Ġins urer +Ġquot as +Ġpre ached +Ġev iction +ĠReg ina +ĠP ens +Ġsevent een +ĠN ass +D ick +Ġfold s +Ġd otted +ĠA ad +Un iversal +Ġp izz +ĠG uru +Ġso ils +Ġno vice +ĠNe ander +Ġst ool +Ġdeton ated +ĠPik achu +ĠMass ive +IV ER +ĠAb del +Ġsubdu ed +Ġtall est +Ġprec arious +Ġa y +r ification +ĠOb j +c ale +Ġun question +cul osis +ad as +igr ated +D ays +Ġque ens +ĠGaz ette +ĠCol our +ĠBow man +ĠJ J +ï ve +Ġdomin ates +Stud ent +Ġm u +Ġback log +ĠElect ro +Tr uth +48 3 +Ġcond ensed +r ules +ĠCons piracy +Ġacron ym +hand led +ĠMat te +j ri +ĠImp ossible +l ude +cre ation +Ġwar med +ĠSl ave +Ġmis led +Ġfer ment +ĠK ah +ink i +ke leton +cy l +ĠKar in +Hun ter +Reg ister +ĠSur rey +Ġst ares +ĠW idth +ĠN ay +ĠSk i +Ġblack list +uck et +Ġexp ulsion +im et +Ġret weet +vant age +Fe ature +Ġtro opers +Ġhom ers +9 69 +Ġconting ency +ĠW TC +ĠBrew er +fore ign +W are +S olar +Ġund ue +RE C +ulner able +path ic +ĠBo ise +Ġ3 22 +Ġarous ed +ĠY ing +ä¸ į +uel ess +Ġp as +Ġmor p +Ġfl oral +Ex press +ud ging +k B +ĠGr anted +Ø ¯ +ĠMich a +ĠGoth ic +ĠSPEC IAL +ĠRic ardo +F ran +Ġadminister ing +6 20 +por a +Ġ ® +Ġcomprom ises +Ġb itten +Ac cept +Th irty +Ð ² +Ġmater ially +ĠTer r +ig matic +ch ains +Ġdo ve +stad t +Mar vel +FA ULT +Ġwind shield +Ġ3 36 +ad ier +Ġsw apping +Ġflaw less +ĠPred ator +ĠMiche le +Ġprop ulsion +ĠPsych ic +Ġassign ing +Ġfabric ation +Ġbar ley +l ust +Ġtow ering +Ġalter cation +ĠBent ley +Sp here +Ġtun a +ĠClass es +Fre edom +un er +L ady +v oice +Ġcool est +or r +Ġpal p +$ { +Ġhyster ia +ĠMet atron +p ants +Ġspawn ing +Exper ts +ĠInvest ors +ĠAn archy +Ġshr unk +ĠVict im +Ġ28 9 +Ġec stasy +ĠB inding +58 5 +ĠMel ody +57 8 +ot ally +ĠE tsy +lig a +Ġapplaud ed +Ġswe ating +Ġredist ributed +Ġpop corn +Ġsem inal +f ur +ĠNeuro science +R and +ĠO st +ĠMadd en +ĠIncre asing +ĠDaw kins +ĠSub way +Ġar sen +cons erv +B UR +Ġsp iked +ĠLy ft +ĠImper ium +ĠDrop box +Ġfav oured +Ġencomp asses +gh ost +Ġins pires +Ġbur geoning +ĠY oshi +ĠVert ical +ĠAud itor +Ġint ending +Ġfilib uster +Bl oom +f ac +ĠCav s +ign ing +Ġcowork ers +ĠBarb arian +rem ember +FL AG +Ġaudit ory +ason ry +Col lege +Ġmut ed +gem ony +ob in +ĠPsych o +9 68 +Ġlav ish +Ġhierarch ical +ĠDr one +ou k +Ġcripp led +ĠMax im +Sl ot +Ġqu iz +ĠV id +if ling +Ġarchae ologists +Ġabandon ment +d ial +le on +ĠF as +T ed +Ġr aspberry +Ġmaneu vers +Ġbehavi ours +Ġins ure +Ġrem od +Sw itch +h oe +Ġsp aced +Ġafford ability +ĠF ern +not ation +ĠBal anced +Ġoccup ies +en vironment +Ġneck lace +Ġsed an +F U +ĠBrav o +Ġab users +ĠAn ita +met adata +ĠG ithub +ait o +ĠF aster +ĠWass erman +ĠF lesh +Ġth orn +r arily +ĠMer ry +w ine +Ġpopul ace +ĠL ann +Ġrepair ing +Ġpsy che +Ġmod ulation +aw aru +âĢĭ âĢĭ +ari j +Ġdecor ations +Ġapolog ise +ĠG arg +app ly +Ġgive away +ĠFl an +ĠWy att +U ber +Ġauthor ised +ĠMor al +HAHA HAHA +activ ate +Ġtorped o +ĠF AR +Ġam assed +ĠA ram +ark in +ĠVict ims +st ab +Ġo m +ĠE CO +Ġopio ids +Ġpurpose ly +ĠV est +Ġer g +at an +ĠSur gery +Ġcorrect ing +ĠOrt iz +ĠBe et +Ġrev oke +Ġfre eway +ĠH iggins +F ail +ĠFar ms +ĠAT P +h ound +Ġp oking +ĠCommun ists +mon ster +iment ary +Ġunlock ing +Ġunf it +we ed +en ario +at ical +ĠEnlight enment +ĠN G +ĠComp ensation +de en +ĠWid ow +ĠCind y +ĠAfter wards +Ġ6 000 +ikh ail +ag ically +Ġrat ified +Ġcasual ty +H OME +p sey +f ee +Ġspark ling +Ġd é +Ġconcert ed +C atal +Ġcomp lying +ĠA res +ĠD ent +Sh ut +Ġsk im +ad minist +Ġhost ilities +ĠG ins +Ġ6 08 +Ġm uddy +ĠMc Int +ĠDec ay +5 25 +Ġconspic uous +ĠEx posure +Ġresc ind +Ġwear able +Ġ3 28 +our met +ah s +ĠRob ots +Ġe clips +inst ance +ĠRE PORT +ĠApp l +0 30 +ĠSk ies +01 00 +Ġfall acy +S ocket +ĠRece iver +Ġsol ves +ĠButter fly +ĠSho pping +ĠFI RE +65 4 +Med ic +Ġsing ers +ĠNeed less +'' '' +isher s +ĠD ive +58 8 +Ġselect ively +Ġcl umsy +88 9 +Ġpurch aser +ear ned +ard y +Ġbenef iting +eng lish +Ġyield ing +ĠP our +Ġspin ach +Ġdel ve +ĠC rom +6 10 +Ġexport ing +ĠMA KE +Ġ26 3 +Ġg rop +Ġenv oy +ĠInqu iry +ĠLu igi +d ry +ĠT uring +Thumbnail Image +ĠVar iety +Ġfac et +Ġfl uffy +Ġexcerpt s +Ġsh orth +ĠOl sen +CL UD +Ġrel iant +ĠUN C +T our +Ġbat hing +Comp any +Ġglobal ization +P red +ĠMalf oy +Ġh oc +j am +craft ed +ĠBond s +ĠKiss inger +Eng land +Ġorder ly +cat entry +Ġ26 1 +Ġexch anging +ĠInt ent +ĠAmend ments +D OM +Ġst out +³³³³³³³³ ³³³³³³³³ +ĠAir bus +Ġ27 8 +hy de +P oll +Item ThumbnailImage +Ġlooph oles +ĠPill ar +Ġexpl or +St retch +A part +Ġun married +Lim it +ĠTransform ers +Ġintellect ually +unct ure +18 00 +Ġd arn +B razil +Ġleft over +ber us +f red +Mine craft +3 26 +ĠForm s +Ġproof s +ĠDes igned +Ġindex es +ĠSupp ose +EM S +ĠL oving +ĠBon nie +im ating +OT US +Ġconduct or +Ġbehav ed +ĠF ren +Ġsy nerg +Ġmillenn ium +Ġcater ing +ĠL auder +W r +ĠY iannopoulos +ĠAT F +Ġensl aved +Ġawaken ed +D VD +ĠED ITION +ĠConc ert +ĠChall enger +ĠH aku +umer ic +Ġdep recated +ĠSH AR +4 12 +Ġdy stop +Ġtremb ling +Ġdread ed +ĠSp ac +p adding +Re pl +ĠG arrison +M ini +Ġun paralleled +am ar +URR ENT +w reck +c ertain +t al +ĠC LS +app ings +Ġsens ed +Ġf encing +ĠPas o +ĠDes k +Ġsc off +Ġcontem plate +ĠL iga +l iquid +75 7 +Ġapp rentice +ĠUCH IJ +5 70 +ĠTh ousand +ĠIll um +Ġchampion ed +ãĤ Į +Ġelect ors +Ġ3 98 +ĠH ancock +round ed +ĠJ OHN +Ġuns atisf +Ġqual ifier +ĠGad get +EN E +Ġdead liest +ĠPl ants +Ġ ions +Ġacc ents +Ġtwe aking +Ġsh aved +F REE +ĠCh aser +Again st +9 60 +Ġmeth amphetamine +Ġnormal ized +Ġ$ \ +ĠPre cision +ĠGu am +Ġch oked +ĠX II +ĠCast ing +Tor rent +Ġscal p +ĠJagu ar +w it +Ġsem ic +ix ie +ĠG ould +Ġconf ines +N usra +ĠL on +ĠJ ugg +y cle +ĠCod ec +E gypt +Ġrest rain +ĠAl iens +Ġch oking +ĠD unk +ĠBell a +ab c +Ġsl ang +Ġneuro trans +s av +Ġempower ment +â ĨĴ +Ġclim bers +ĠM im +ĠF ra +ros se +Cap ital +ĠCth ulhu +Inter face +Ġprof icient +ĠIN TO +Ġ3 18 +ront al +5 80 +ĠDes pair +K enn +Ġscrim mage +ĠCo at +as ions +Ġwall paper +ĠJ ol +Ġresurg ence +Ġant iv +ĠB alls +² ¾ +Ġbuff ers +Ġsub system +ĠSt ellar +ĠL ung +A IDS +Ġerad icate +Ġblat antly +Ġbehav es +ĠN un +Ġant ics +ex port +DE V +w b +Ġph p +ĠInteg rity +Ġexplore r +Ġrev olving +auth ored +g ans +Ġbas k +Ġas ynchronous +å į +TH ING +69 8 +G ene +ĠR acer +ĠN ico +iss ued +Ġser mon +p ossibly +Ġsize of +Ġentrepreneur ial +ox in +ĠMin erva +Ġpl atoon +n os +ri ks +A UT +ĠAval anche +ĠDes c +ij 士 +ĠP oc +Ġconf erred +Î » +Ġpat ched +F BI +66 2 +Ġfract ures +Ġdetect s +Ġded icate +Ġconstitu ent +Ġcos mos +W T +Ġswe ats +Ġspr ung +b ara +s olid +Ġuns us +Ġbul ky +ĠPhilipp e +ĠFen rir +Ġtherap ists +ore al +^^ ^^ +Ġtotal ed +Ġboo ze +ĠR PC +Prosecut ors +Ġdis eng +ĠSh ared +Ġmotor cycles +Ġinvent ions +Ġlett uce +ĠMer ge +ĠJ C +Ġspiritual ity +ĠWAR NING +Ġunl ucky +ĠT ess +Ġtong ues +ĠD UI +T umblr +Ġle ans +Ġinv aders +Ġcan opy +ĠHur ricanes +ĠB ret +ĠAP PLIC +id ine +ick le +Reg arding +Ġve ggies +Ġe jac +ju ven +F ish +D EM +ĠD ino +Th row +ĠCheck ing +be ard +( & +Ġj ails +Ġh r +trans fer +iv ating +Ġfle ets +ĠIm ag +ĠMc Donnell +Ġsnipp et +Is a +ĠCh att +ĠSt ain +ĠSet FontSize +ĠO y +ĠMathemat ics +49 4 +Ġelectro ly +ĠG ott +ĠBr as +B OOK +ĠF inger +d ump +Ġmut ants +Ġrent als +Ġinter tw +Ġc reek +ail a +Bro ther +ĠDisc ord +pe e +raw ler +Ġcar p +Ġ27 9 +ãĤ· ãĥ£ +rel ations +Ġcontr asts +Col umn +Ġrec onnaissance +Ġun know +Ġl ooting +Ġregul ates +Ġopt imum +ĠChero kee +ĠA ry +Lat est +Ġroad side +Ġd anced +ĠUnic orn +A cknowled +Ġuncont roll +ĠM US +at io +ch ance +ha ven +VAL UE +Ġfavour ites +Ġceremon ial +b inary +pe ed +wood s +EM P +Ġv ascular +Ġcontempl ated +Ġbar ren +ĠL IST +Y ellow +ospons ors +Ġwhisk y +ĠM amm +ĠDeV os +min imum +H ung +44 2 +P ic +ĠSnap dragon +77 6 +Ġcar ving +Ġund ecided +Ġadvantage ous +Ġpal ms +ĠA Q +Ġst arch +L oop +Ġpadd le +Ġfl aming +ĠHor izons +An imation +bo ost +Ġprob abilities +ĠM ish +Ġex odus +ĠEditor ial +Ġfung us +Ġdissent ing +ĠDel icious +rog ram +ĠD yn +d isk +t om +Ġfab rics +ĠC ove +ĠB ans +Ġsoft en +ĠCON S +Ġin eligible +Ġestim ating +ĠLex ington +pract ice +of i +Ġshe dding +ĠN ope +Ġbreat hed +ĠCorinth ians +y ne +ek i +B ull +Ġatt aching +reens hots +Ġanaly se +ĠK appa +Ġuns ustainable +Ġinter pol +ank y +he mer +Ġprot agonists +Ġform atted +ĠBry ce +ĠAch illes +ĠAb edin +sh ock +Ġb um +b os +qu a +ĠW arn +q t +ĠDi abetes +8 64 +ĠIn visible +Ġvan ish +Ġtrans mitting +Ġmur ky +ĠFe i +Ġawa ited +ĠJur assic +umm ies +Ġmen acing +g all +C ath +B uilt +ild o +ĠV otes +Ġon t +Ġmun itions +ĠFre em +ÃŃ n +Ġdec ency +lo pp +ie ved +ĠG ord +Ġun thinkable +ĠNews week +Ġ3 21 +He at +Ġpresent er +ji ang +Ġpl ank +ĠAval on +Ġben z +ĠR out +Ġslam ming +ĠD ai +ou ter +ĠCook ie +ĠAlic ia +ge y +Ġvan ity +Ġow l +á µ +t ested +ĠAw akens +Ġcan v +Ġblind ly +ĠRid ley +ĠEm ails +Requ ires +ĠSer bian +ograp hed +if rame +eter ia +Ġaltern ating +qu iet +Ġsoc iology +ĠUn lock +ĠCommun ism +Ġo ps +Ġatt ribution +Ġab duction +ĠAb ram +Ġsidel ined +ĠB OOK +Ġref ining +ĠFe eling +ĠOs lo +ĠPru itt +r ack +ang ible +Ġcaut iously +ĠM ARK +eed s +M ouse +ĠStep h +ĠP air +S ab +99 7 +ĠBa al +B ec +Ġcomm a +ĠP all +ĠG ael +Ġmisunder stand +ĠP esh +Order able +Ġdis mal +ĠSh iny +% " +Ġreal istically +Ġpat io +ĠG w +ĠVirt ue +Ġexhaust ing +wh atever +oph ys +y ip +4 18 +Ad just +ĠWa iting +ess on +ĠMaz da +ĠDo zens +Ġstream lined +Ġincompet ence +ĠM eth +Ġeth os +ON ES +Ġincent iv +Ġgr itty +ĠBut cher +Head er +Ġexp onential +Ã Ł +Ġcorrel ate +Ġcons ensual +s ounding +R ing +Orig in +Ġcon clusive +fe et +ac ly +ĠF ernandez +Buy able +Ġd ucks +aunt lets +Ġel ong +Ġ28 6 +Ġsim ul +G as +ĠK irst +Ġprot r +ĠRob o +ĠAo E +op ol +Ġpsych ologically +sp in +ilater ally +ĠCon rad +W ave +44 1 +ĠAd vertisement +ĠHarm on +ĠOri ental +is Special +Ġpresum ptive +Ġw il +ĠK ier +ne a +Ġp pm +Ġhar bour +ĠW ired +comp any +Ġcor oner +atur days +ĠP roud +ĠN EXT +ĠFl ake +val ued +ce iver +Ġfra ught +Ġc asing +Ġrun away +Ġg in +ĠLaure nt +ĠHar lem +ĠCur iosity +qu ished +Ġneuro science +ĠH ulu +Ġborrow er +Ġpetition er +ĠCo oldown +W ARD +Ġinv oking +conf idence +For ward +Ġst s +pop ulation +Delivery Date +Fil m +ĠC ov +quick Ship +quickShip Available +prim ary +isSpecial Orderable +inventory Quantity +channel Availability +BO X +ĠMulti player +ĠJen ner +77 8 +ĠM d +Ġ~ /. +M N +Ġchild ish +Ġantioxid ant +ĠChrom ebook +Ġ27 4 +Ġscreen play +Ġadvent urous +ĠRelations hip +respons ive +ming ton +Ġcorner stone +ĠF ey +F IR +Ġrook ies +ĠF eaturing +Ġorig inate +Ġelectro des +ant es +Ġscript ures +Ġgl ued +Ġdiscont ent +Ġaff licted +lay out +B rave +Ġm osa +ĠQuant ity +ĠH ik +w inner +H ours +Ġent ail +ĠCell s +olog ue +Ġv il +Ġpre acher +Ġdecor ative +d ifferent +Ġprejud ices +ĠSm oking +ĠNotting ham +so Type +Ġrhyth ms +ĠAl ph +bl ast +Ste el +ĠDaniel le +Ġstr ife +Ġrem atch +so DeliveryDate +ĠF ork +t rip +ol ulu +hes es +C G +ĠPOLIT ICO +ost a +ĠDr ift +é¾įå ¥ +é¾įå¥ ij士 +Ġvet ting +ĠJin ping +ĠRec ession +Min or +ĠF raud +enf ranch +Ġconven ed +ĠNA ACP +ĠMill ions +ĠFarm ing +ĠW oo +ĠFl are +rit o +imm igrant +Ġvac ancy +ĠHE AD +ĠV aj +eg al +ĠV igil +Stud y +Ġru ining +Ġr acks +Ġhe ater +ĠRand olph +ĠBr ush +ĠT ir +Ø ¨ +Ġc ov +% ] +Ġrecount s +ĠO PT +ĠM elt +Ġtr uce +Ġcas inos +Ġcrus ade +Ġcarn age +Ġstri pe +ĠK yl +Text ures +Ġ6 98 +Ġpro clamation +Ġgood ies +Ġ........ .. +pro claimed +P olit +Ġtop ical +Ġspecial ize +ĠA min +g m +Ġanch ored +Ġbear ings +s ample +ĠHigh land +ĠAut ism +Ġmerc enary +Ġinterview er +L ER +ĠSom ers +Ġembry o +ĠAss y +Ġ28 1 +ĠEd iting +ĠCh osen +6 60 +Ġp ci +ĠThunder bolt +BI LL +Ġchuck led +jri wal +h of +Ġearth ly +() { +ind ependence +Ġdisp ers +ĠV endor +ĠG areth +Ġp als +P enn +ĠSub mit +ic um +Th u +Ġcl andestine +Ġcann ibal +ĠCl erk +E Stream +gal itarian +âĻ ¥ +g ew +Ġhor rend +ĠL ov +ĠRe action +ocr in +Class ic +Ġecho ing +Ġdiscl osing +ĠIns ight +og un +ĠInc arn +upload s +pp erc +guy en +Ġ19 01 +ĠB ars +68 7 +Ġb ribes +ĠFres no +ur at +ĠRe ese +Ġintr usive +Ġgri pping +ĠBlue print +ĠR asm +un ia +man aged +ĠHeb do +Ġ3 45 +Ġdec oding +Ġpo ets +Ġj aws +ĠF IGHT +am eless +ĠMead ows +ĠHar baugh +Inter view +ĠH osp +ĠB RA +Ġdelet ion +m ob +W alker +ĠMoon light +ĠJ ed +ĠSoph ia +Ġus ur +Ġfortun ately +ĠPut ting +ĠF old +Ġsan itation +Ġpart isans +IS ON +B ow +ĠCON C +ĠRed uced +ĠS utton +Ġtouch screen +Ġembry os +âĢ¢âĢ¢ âĢ¢âĢ¢ +ĠK rug +com bat +ĠPet roleum +Ġam d +ĠCos mos +Ġpresc ribing +Ġconform ity +ours es +Ġplent iful +Ġdis illusion +ĠEc ology +itt al +Ġf anc +Ġassass inated +regn ancy +Ġperenn ial +ĠBul lets +Ġst ale +Ġc ached +ĠJud ith +ĠDise ases +All en +Ġl as +Ġsh ards +ĠSu arez +ĠFriend ship +inter face +ĠSupp orters +add ons +46 2 +ĠIm ran +ĠW im +Ġnew found +ĠM b +An imal +Ġd arling +and e +Ġrh y +ĠTw isted +pos al +yn ski +Var ious +× ľ +ĠK iw +uy omi +Ġwell being +ĠL au +an os +Ġunm ist +Ġmac OS +Ġrest room +ĠOl iv +ĠAir ways +Ġtimet able +9 80 +Ġrad ios +v oy +ias co +Ġcloud y +ĠDraw ing +Any thing +Sy ria +ĠH ert +st aking +Ġun checked +Ġb razen +ĠN RS +69 7 +onom ic +est ablish +Ġl eng +Ġdi agonal +ĠF ior +L air +ĠSt ard +Ġdef icient +jo ining +be am +Ġomn ip +Ġbl ender +Ġsun rise +Mo ore +ĠF ault +ĠCost ume +ĠM ub +Fl ags +an se +Ġpay out +ĠGovern ors +ĠD illon +ĠBan ana +N ar +Ġtra iled +Ġimperial ist +um ann +ats uki +4 35 +ĠRoad s +Ġsl ur +ĠIde ally +Ġt renches +C trl +Ġmir rored +ĠZ el +ĠC rest +Comp at +ĠRoll s +sc rib +ĠTra ils +omet ers +w inter +Ġimm ortality +il ated +Ġcontrad icts +un iversal +ill ions +ĠM ama +opt im +AT URE +Ġge o +et ter +ĠCar lo +4 24 +Ġcanon ical +ĠStrongh old +n ear +Ġperf ume +Ġorche stra +od iac +Ġup he +Ġreign ing +vers ive +Ġc aucuses +ĠD EM +Ġinsult ed +Ġ---- -- +ĠCr ush +Ġroot ing +ĠWra ith +Ġwh ore +Ġto fu +C md +ĠB ree +Ġ$ _ +Ġr ive +ĠAd vertising +Ġw att +ĠH O +Ġpersu asive +ĠParam eters +Ġobserv ational +ĠN CT +ĠMo j +ĠSal on +Ġtr unc +Ġexqu isite +ĠMar a +Ġpo op +ĠAN N +Ex c +ĠWonder ful +ĠT aco +Ġhome owner +ĠSmith sonian +orpor ated +mm mm +Ġlo af +ĠYam ato +ĠInd o +Ġcl inging +á s +Ġimm utable +h ub +Or ange +Ġfingert ips +ĠWood en +ĠK idd +ĠJ PM +ĠDam n +C ow +c odes +48 2 +Ġiniti ating +ĠEl k +ĠCut ting +Ġabsent ee +ĠV ance +ĠLil ith +G UI +Ġobsc ured +Ġdwar ves +ĠCh op +ĠB oko +Val ues +Ġmult imedia +Ġbrew ed +Reg ular +CRIP TION +ĠMort al +Ġa pex +Ġtravel er +Ġbo ils +Ġspray ing +Rep resent +ĠStars hip +4 28 +Ġdisappro val +Ġshadow y +Ġlament ed +ĠRe place +ĠFran ç +67 7 +d or +Ġunst oppable +Ġcoh orts +gy n +ĠClass ics +ĠAm ph +Ġsl uggish +ĠAdd iction +ĠPad res +Ġins cription +Ġin human +min us +ĠJere miah +at ars +Ter ror +ĠT os +ĠSh arma +ast a +c atch +Ġpl umbing +ĠTim bers +Sh ar +H al +ĠO sc +Ġcou pling +hum ans +Ġsp onge +Ġid ols +ĠSp a +ĠAdv ocate +ĠBe ats +lu a +Ġtick ing +Ġload er +ĠG ron +8 10 +Ġstim ulated +Ġside bar +ĠManufact urer +ore And +19 73 +Ġpra ises +ĠFl ores +dis able +ĠElect rical +ra ise +E th +Ġmigr ated +Ġlect urer +K ids +ĠCa vern +Ġk ettle +Ġgly c +ĠMand ela +ĠF ully +å§ « +FIN EST +Ġsquee zing +ĠRy der +amp oo +oreAnd Online +Inst oreAndOnline +Buyable InstoreAndOnline +Ġcommem orate +ĠRamp age +Aust in +ĠSh roud +ĠRu ins +9 15 +ĠK H +Ġwater front +ĠE SC +b aby +ĠC out +ĠEm blem +Ġequival ents +49 2 +Un ique +ĠNiet zsche +brow ser +Ġim itation +ĠWere wolf +ĠKir in +ac as +' ," +Ġà ¾ +Review ed +Ġc unt +Ġvo ic +ĠLen ovo +Ġbond ed +48 1 +Ġinhib itors +Ġendeav ors +ĠHav ana +ĠSt out +ĠJ olly +A ctor +*/ ( +Ġoccur rences +ĠT ens +Incre ased +ĠACT ION +Ġ ãĢĮ +ĠRank ings +ĠB reat +Ġ30 9 +D ou +Ġimpact ing +ĠDuc hess +pre fix +Q B +Ġsummon ing +Ġbest owed +ĠKe pler +ĠPOW ER +c ube +ĠK its +ĠG rip +Ġop ium +Ġrep utable +t oc +ich ael +ĠR ipple +Ġcaf é +ĠZ oom +ĠBur ma +Ġwa ive +Ġst alls +Ġdem eanor +inc erity +Ġfluor ide +ĠSH OULD +Par is +Ġlong ing +Ġpl at +Ġgross ly +Ġbull s +Ġshowc asing +ex pected +ĠG addafi +engine ering +Re peat +ĠK ut +Ġconce ivable +Ġtrim med +osc ope +ĠCand idate +ĠT ears +rol og +Lew is +S UP +Ġroad map +Ġsal iva +Ġtrump et +Jim my +Ġmirac ulous +Ġcolon ization +Ġam put +ĠGN OME +ate ch +D ifferent +ĠE LE +ĠGovern ments +ĠA head +ãħĭ ãħĭ +word press +L IB +ĠIn clude +ĠDor othy +0 45 +ĠColomb ian +Ġle ased +88 4 +Ġde grading +ĠDa isy +i ations +Ġbapt ized +Ġsurn ame +co x +Ġblink ed +ãĥ ¢ +Ġpoll en +Ġder mat +Ġre gex +ĠNich olson +ĠE ater +ç ľ +rad or +Ġnarrow er +Ġhur ricanes +Ġhalluc inations +r idden +ISS ION +ĠFire fly +Ġattain ment +Ġnom inate +Ġav ocado +ĠM eredith +Ġt s +Ġreve rence +Ġe uph +Ġcr ates +ĠT EXT +Ġ4 43 +Ġ3 19 +J SON +iqu ette +Ġshort stop +ic key +Ġpro pelled +Ġap i +ĠTh ieves +77 9 +Ġovers aw +Ġcol i +ĠNic ola +Ġover cl +ik awa +ĠC yr +Ġ38 4 +78 9 +ĠAll ows +10 27 +Det roit +TR Y +set up +ĠSocial ism +Sov iet +s usp +ĠAP R +ĠShut down +Ġal uminium +zb ek +ĠL over +GGGG GGGG +Ġdemocr acies +Ġ19 08 +ĠMer rill +ĠFranco is +gd ala +Ġtraff ickers +ĠT il +ĠGo at +Ġsp ed +ĠRes erv +Ġpro d +55 2 +Ġc ac +ĠUn iv +ĠSch we +Ġsw irling +ĠWild erness +ĠEgg s +Ġsadd ened +Ġarch aic +H yd +Ġexcess ively +B RE +Ġaer ospace +ĠVo ices +Cra ig +Ġign ited +In itially +ĠMc A +Ġhand set +Ġreform ing +Ġfrust rations +ĠDead pool +ĠBel ichick +ract or +ĠRagnar ok +ĠD rupal +ĠApp roximately +19 20 +ĠHub ble +arm or +ĠSar as +ĠJon as +Ġnostalg ic +Ġfeas ibility +Sah aran +Ġorb iting +Ġ9 70 +R u +Ġsh in +ĠInvestig ators +Ġinconsist encies +ĠP AN +B G +Ġgraz ing +Ġdetect ors +ĠStart up +ĠFun ny +ĠNa omi +Consider ing +Ġh og +ut f +ce mic +Ġfort ified +ĠFun ctions +Ġcod ec +nut rition +H at +" ! +micro soft +55 8 +ĠTh in +ĠA CE +Al ias +ĠO PS +p apers +P K +ãĢ İ +Ġimpro bable +N orthern +equ al +Ġlook out +Ġty res +ĠMod ified +ĠK op +Abs olutely +Ġbuild up +sil ver +Ġaud i +Ġgro tesque +ĠSab er +ĠPres byter +ON Y +Ġglac iers +ĠSho als +ĠK ass +ĠH RC +ĠNic ol +ĠL unch +ĠF oss +âĸ Ĵ +AD RA +ĠOne Plus +o ing +ground s +Ġincident al +Ġdatas ets +68 9 +ĠClarks on +Ġassemb ling +ĠCorrect ions +Ġdrink ers +Ġqual ifiers +Ġle ash +Ġunf ounded +ĠH undred +Ġkick off +T i +Ġrecon cil +ĠGr ants +ĠCompl iance +ĠDexter ity +Ġ19 06 +w arn +D allas +Max imum +n ard +av ia +be aut +ens itivity +tr ace +Ġpione ers +ĠF ract +ãĢ ı +Ġpre cept +Ġgloss y +ĠI EEE +Ac ross +Ġ6 80 +S leep +che on +Ġsatir ical +ĠMin otaur +ĠCla ude +Ġr é +ape go +Ġcar rot +ĠSem in +ino a +Ġz o +Ind ependent +Ġdiagn oses +ĠC ue +M AR +Ġrend ition +ĠK ik +Ġpath ology +Ġselect s +Link edIn +Ġass ay +ĠD res +Ġtext ual +post ed +IT AL +ĠM aul +N eal +Ġinter connected +Ġerr atic +ĠVir us +Ġ5 30 +Ġenvironmental ists +ĠP helps +Ġeng agements +ĠIN ST +Ġeconom ical +nox ious +Ġg earing +izz y +Ġfavor ably +ĠMcG ill +T erm +Ġh anged +Ġball park +ĠRe yes +Ġbe ware +ĠP sal +ĠMass acre +q i +Ġin accessible +acly sm +Ġfr ay +ill ac +Ġbitter ly +ĠCert ification +Mich igan +Ġir respective +al ore +Em pty +Ġendorse ments +Ġund et +f g +equ ipped +Ġmerc iless +ĠC ust +Ġimm ature +Ġvou cher +ĠBlack well +Ñ ı +h awk +dis ciplinary +ile e +ĠMak oto +ĠD ude +ãĥĩ ãĤ£ +Y ears +Ġin ver +Ġsh aman +ĠY ong +ip el +ell en +ĠCath y +br ids +Ġs arc +65 1 +N ear +Ġground work +Ġam az +Ġ4 15 +ĠHunting ton +hew s +ĠB ung +Ġarbit rarily +ĠW it +ĠAl berto +Ġdis qualified +best os +46 1 +Ġp c +Ġ28 4 +ro bat +Rob in +Ġh ugs +ĠTrans ition +ĠOcc asionally +Ġ3 26 +ĠWh ilst +ĠLe y +Ġspaces hip +cs v +Ġun successfully +ĠA u +le ck +ĠWing ed +ĠGrizz lies +. � +Ġne arer +ĠSorce ress +ĠInd igo +El se +8 40 +let es +Co ach +Ġup bringing +ĠK es +Ġseparat ist +Ġrac ists +Ġch ained +Ġabst inence +lear ning +Ġrein stated +Ġsymm etry +Ġremind ers +ĠChe vy +Ġm ont +Ġexempl ary +ĠT OR +Z X +Ġqual itative +ĠSt amp +ĠSav annah +ĠRoss i +Ġp aed +Ġdispens aries +ĠWall s +ĠCh ronic +Ġcompliment ary +ĠBeir ut +Ġ+ --- +igs list +Ġcrypt ographic +mas ters +ĠCap itals +Ġmax imal +Ġent ropy +Point s +Ġcombat ants +l ip +ĠGl ob +ĠB MC +ph ase +th ank +HT TP +Ġcomm uter +Ġ\( \ +.. / +ĠReg ener +ĠDO I +ĠActiv ision +Ġsl it +os al +RE M +Ġch ants +Y u +Ke ys +Bre xit +ĠFor ced +Ari zona +Ġsquad ron +IS O +ĠMal one +Ġ3 38 +Ġcontrast ing +Ġt idal +Ġlib el +Ġimpl anted +Ġupro ar +ĠC ater +Ġpropos itions +M anchester +ĠEuro s +it amin +G il +ĠEl ven +ĠSe ek +ĠB ai +Ġredevelop ment +ĠTown s +ĠL ub +! ", +al on +K rist +Ġmeas urable +Ġimagin able +Ġapost les +Y N +7 60 +Ġster oid +Ġspecific ity +ĠL ocated +ĠBeck er +ĠE du +ĠDiet ary +uts ch +ĠMar ilyn +Ġbl ister +ĠM EP +ĠK oz +ĠC MS +y ahoo +ĠCar ney +Ġbo asting +ĠC aleb +By te +read s +ad en +Pro blem +ĠWood ward +S we +S up +ĠK GB +Set up +Ġtac it +Ġret ribution +Ġd ues +ĠM ü +. ? +ä¸ Ń +p ots +Ġcame o +ĠP AL +educ ation +A my +like ly +g ling +Ġconstitution ally +ĠHam m +ĠSpe ak +Ġwid gets +br ate +Ġcra ppy +ĠI ter +Ġanticip ating +ĠB out +P ixel +ĠY ep +ĠLaur ie +Ġh ut +Ġbullet in +ĠSal vation +Ġch ats +ear able +Honest ly +AL TH +onse qu +c ult +isco very +ovy ch +Ġse lves +ĠSat oshi +S ounds +Ġconver gence +ĠRosen berg +19 74 +Ġnas al +Ġfull est +Ġfer ocious +x us +ist e +AM S +Ġlobb ied +Ġso othing +ĠGun n +t oday +0 24 +Ġinspir ational +ĠN BN +p b +g ewater +or ah +all owed +ĠCol iseum +Ġspecial izing +Ġinsane ly +ĠT ape +del ay +Ġt arn +ĠP ound +Ġmel anch +Ġdeploy ments +il and +Ġless en +Ġfur ry +ĠUE FA +Ġblood shed +ĠMe ier +ither ing +Ġhe irs +ĠJ aw +ax ter +ĠPublic ations +Ġal ters +int ention +ĠWinc hester +d etermination +ĠLif etime +th in +Mon ster +7 80 +Ġapprox imation +Ġsuper markets +ĠSecond s +or os +h uge +Ġb ribe +ĠLIM ITED +un ed +Ġmis interpret +ĠIn jury +Ġ3 67 +Ġthreshold s +ĠCarn ival +Ġgastro intestinal +Ġguid eline +Ġde ceived +f eatures +Ġpurported ly +ĠRon nie +ĠNew t +Ġsp acious +as us +Ġsuperhero es +ĠCyn thia +le gged +k amp +ch io +Ġth umbnail +ĠShir ley +ill ation +Ġshe ds +ĠZ y +E PA +Ġdam s +Ġy awn +n ah +ĠPe ggy +ĠE rie +ĠJu ventus +ĠF ountain +r x +don ald +al bum +ĠComp rehensive +Ġc aching +ĠU z +ulner ability +ĠPrinc iple +ĠJ ian +ing ers +cast s +ĠOs iris +ch art +t ile +ĠTiff any +ĠPatt on +ĠWh ip +Ġovers ized +J e +ĠCind erella +ĠB orders +ĠDa esh +M ah +Ġdog ma +Ġcommun ists +v u +Coun cil +Ġfresh water +Ġw ounding +Ġdeb acle +Ġyoung ster +Ġthread ed +ĠB ots +ĠSav ings +ãģ Ĥ +ol ing +oh o +Ġillum ination +M RI +Ġlo osen +tr ump +ag ency +ur ion +Ġmoment arily +ĠCh un +ĠBud apest +ĠAl ley +D isk +Ġaston ished +ĠCon quer +ĠAccount ing +h aving +ĠWe in +ĠAl right +Ġrev olver +Ġdel usion +Ġrelic s +Ġad herent +qu ant +Ġhand made +or io +Ġcomb ating +c oded +Ġquad ru +re th +N ik +ĠTrib al +ĠMyster ious +Ġin hal +ĠWin ning +ĠClass ification +ch anged +Ġun ab +Ġsc orn +icip ated +w l +ond uctor +Ġrein forcing +ĠChild hood +an ova +Ġadventure r +Ġdoctor al +ĠStrateg ies +Ġengulf ed +ĠEnc ounter +Ġl ashes +Crit ical +ric ular +ĠU TF +oci ation +check ing +ĠConsult ing +Run time +per iod +ĠAs gard +Ġdist illed +ĠPas adena +ĠD ying +ĠCOUN TY +Ġgran ite +Ġsm ack +Ġparach ute +ĠS UR +Virgin ia +ĠF urious +78 7 +ĠO kin +Ġcam el +ĠM bps +19 72 +ĠCh ao +ĠC yan +j oice +ef er +ĠW rap +ĠDeb ate +S eg +Ġfore arm +ĠIgn ore +Ġtim estamp +Ġprob ing +ĠNo on +ĠGra il +f en +Ġdorm ant +ĠFirst ly +ĠE ighth +ĠH UN +ĠDes ire +or as +Girl s +ĠDes mond +z ar +am ines +O AD +exec ute +Ġbo obs +ĠAT L +_ ( +Chel sea +Ġmasturb ation +ĠCo C +Ġdestroy er +ĠCh omsky +Ġsc atter +ĠAss ets +79 6 +ĠC argo +Ġrecept ive +ĠSc ope +Ġmarket ers +Ġlaun chers +Ġax le +ĠSE A +se q +ĠM off +f inding +ĠGib bs +Georg ia +extreme ly +N J +Ġlab orers +st als +Ġmed iation +ĠH edge +at own +Ġi od +des pite +v ill +J ane +ex istence +Ġcoinc ided +ĠUt ilities +ĠChe ap +Ġlog istical +Ġcul mination +ĠNic otine +p ak +F older +Ġrod ents +st uff +Ġlaw fully +Ġreper to +io ch +j j +Dial ogue +HH HH +lic tion +Look s +Ġ29 7 +Ġtur rets +ĠAb andon +Ġinc ess +ĠTraff ord +Ġcur led +Ġprefer ring +Ġprivat ization +Ġir resist +ĠP anda +ĠSh ake +ĠMc Gr +ãĥ Ħ +und ers +Ġdiscrim inated +Ġbart ender +I LE +Atl antic +Ġprop ensity +ĠW iz +ĠG im +con ference +Ġrein forces +G h +w agon +Ġe erie +F al +Ġhug ged +rac ist +R IC +F u +Ġf iller +ĠSt ub +Ġeng raved +ĠWrest le +Ġimagin ative +ĠPe er +ĠFact ors +an us +ĠDrac ula +mon itor +Ġrou ters +ib ia +ĠBoo lean +end ale +ĠSl aughter +ĠSh ack +R FC +ĠSpiel berg +S ax +ĠPH OTO +ĠCl over +ĠR ae +Dep ending +ĠMem or +ar am +Ġpier ced +Ġcur tains +v ale +ĠInqu isition +ĠP oke +Ġforecast ing +Ġcompl ains +S ense +ĠHer mes +isc overed +Ġb ible +ĠMor ph +Ġg erm +78 5 +D ON +Ġcon gen +Ġcr ane +ĠD PR +Ġrespect fully +R oom +ĠN aw +ĠDal ai +re ason +ĠAng us +Educ ation +ĠTitan ic +Ë ľ +Ġo val +un ited +Ġthird s +Ġmoist ur +ĠC PC +M iami +Ġtent acles +ĠPol aris +ex c +ex clusive +ĠPra irie +Ġcol ossal +ĠBl end +sur prisingly +ÃŃ s +Ġindo ctr +Ġbas al +ĠMP EG +und o +Spl it +Develop ment +Ġlan tern +19 71 +Ġprov ocation +Ġang uish +ĠB ind +ĠLe ia +duc ers +ipp y +conserv ancy +Ġinitial ize +ĠTw ice +ĠSu k +Ġpred ic +Ġdi ploma +Ġsoc iop +Ing redients +Ġhamm ered +ĠIr ma +Q aida +Ġglim ps +ĠB ian +Ġst acking +Ġf end +gov track +Ġun n +dem ocratic +ig ree +Ġ5 80 +Ġ29 4 +Ġstraw berry +ID ER +Ġcher ished +ĠH ots +Ġinfer red +Ġ8 08 +ĠS ocrates +O regon +ĠR oses +ĠFO IA +Ġins ensitive +Ġ40 8 +Recomm end +ĠSh ine +Ġpain staking +UG E +ĠHell er +ĠEnter prises +I OR +ad j +N RS +L G +Ġalien ated +Ġacknowled gement +ĠA UD +ĠRen eg +Ġvou chers +Ġ9 60 +Ġm oot +ĠDim ensions +Ġc abbage +B right +g at +ĠK lu +Ġlat ent +Ġz e +ĠM eng +Ġdis perse +Ġpand emonium +H Q +Ġvirt uous +ĠLoc ations +ee per +prov ided +Ġse ams +ĠW T +iz o +PR OV +Ġtit anium +Ġrecol lection +Ġcr an +Ġ7 80 +ĠN F +49 1 +64 2 +p acking +59 8 +text ure +Sp ider +fre edom +cipl ed +ĠTAM ADRA +âĻ ¦ +aut hent +ĠW ANT +r ified +Ġr ites +Ġuter us +k iss +Ġâī ¤ +Ġsk illet +Ġdis enfranch +ĠGa al +Comp an +Ġage ing +gu ide +B alt +Ġiter ator +Ġdiscretion ary +t ips +Ġprim ates +ĠTechn ique +ĠPay ments +az el +ĠR OCK +stant ial +0 60 +Ġd mg +ĠJack ets +ĠPlay off +Ġnurs ery +ĠSy mb +art on +Ġannex ation +Color ado +Ġco ils +ĠSh oes +âĦ¢ : +ĠRo z +COM PLE +ĠEve rest +ĠTri umph +J oy +G rid +à ¼ +process or +ĠPros per +ĠSever us +ĠSelect ed +r g +ĠTay yip +St ra +Ġski ing +Ġ? ) +Ġpe g +Tes la +Ġtime frame +Ġmaster mind +ĠN B +scient ific +ĠSh it +gener ic +IN TER +N UM +Ġst roll +ĠEn ix +ĠM MR +ĠE MS +m ovie +Ĥ ª +Ġminim izing +idd ling +Ġilleg itimate +Ġprot otyp +Ġpremature ly +Ġmanual s +obb ies +ĠCass idy +D EC +des ktop +Ġaer os +Ġscreen ings +Ġdeb ilitating +ĠGr ind +nature conservancy +Ġf ades +ter mination +assets adobe +F actor +Ġdefinitive ly +P oké +ap ult +ĠLaf ayette +C orn +ĠCor al +Ġstagn ant +T ue +Ġdissatisf action +G ender +Ġkid neys +ĠG ow +ĠDef eat +ĠAsh ton +Ġcart els +Ġfore closure +ĠExpl ore +stre ngth +ot in +Ġveterin arian +Ġf umble +Ġpar ap +ĠSt rait +r ils +Ġpr ick +ĠBerm uda +ĠAm munition +skin ned +Ġab ound +ĠB raz +Ġshar per +ĠAsc ension +Ġ9 78 +Ġpreview s +Ġcommun ion +ĠX Y +Ġph ony +Ġnewcom er +Ġ3 32 +." ," +Ġredist ribution +Prot ect +ĠSo f +K al +Ġlip stick +w orst +Ġtang led +Ġretrospect ive +int eger +Ġvolunte ering +Ġ19 07 +Ġ -------------------- +ic hen +Ġunve iling +Ġsen seless +Ġfisher ies +\ - +Ġh inges +Ġcalcul us +My th +Ġund efeated +Ġoptim izations +Ġdep ress +Ġbill board +ĠY ad +ĠPy ramid +Is n +I de +Ġleg ion +ĠK ramer +ent anyl +Ġpenet rating +ĠHaw th +ĠPR ODUCT +ĠGer ard +ĠP act +ĠIn cluding +ĠEl ias +ĠEl aine +vis ual +Ġhum ming +Ġcond esc +ĠF asc +ä¸ Ĭ +Ġe galitarian +Ġdev s +ĠD ahl +O ps +D H +ĠB ounce +id ated +ald o +Ġrepublic an +Ġh amb +ĠS ett +ograph ies +CH APTER +Ġtrans sexual +Ġsky rocket +ans wer +Ġmark up +Ø ª +Ġhero ine +Comp are +ĠT av +Be ast +Ġsuccess ors +Ġna ïve +ĠBuck ley +st ress +me at +Ġdownload able +Ġindex ed +Ġsc aff +ĠL ump +ĠHom o +Stud io +In sp +Ġr acked +far ious +ĠPet ty +Ex ternal +Ġ19 09 +W ars +com mit +put ers +Ġun ob +ĠEr r +ĠE G +ĠAl am +ĠSiber ia +ĠAtmosp heric +IS TER +ĠSatan ic +trans lation +ĠL oud +tra umatic +l ique +Ġreson ate +ĠWel ch +Ġspark ing +ĠT OM +t one +Ġout l +Ġhandc uffed +ĠSer ie +8 01 +Ġland marks +ĠRee ves +Ġsoft ened +Ġdazz ling +ĠW anted +month s +Mag ikarp +Ġunt reated +ĠBed ford +M i +ĠDynam o +O re +79 5 +Ġwrong ful +Ġl ured +Ġcort isol +Ġve x +d rawn +ile t +Download ha +ĠF action +Ġlab yrinth +Ġhij acked +w aters +er ick +Ġsuper iors +ĠRow ling +ĠGu inness +Ġt d +99 2 +Ġune arthed +Ġcentr if +Ġsham eless +P od +ĠF ib +Ġ icing +Ġpredict or +Ġ29 2 +fore station +con struct +C and +@ # +Ġag itated +Ġre pr +OV A +Ġkn itting +ĠLim a +Ġf odder +68 4 +ĠPerson a +k l +7 01 +Ġbreak up +á ¸ +Ġapp alled +Ġantidepress ants +ĠSus sex +Har ris +ĠTher mal +ee ee +U pload +Ġg ulf +Ġdoor step +ĠSh ank +L U +ĠM EN +ĠP ond +s orry +Ġmis fortune +n ance +Ġb ona +M ut +Ġde graded +ĠL OG +ĠN ess +an imal +Ġa version +und own +Ġsupplement ed +ĠC ups +Ġ50 4 +Ġdep rive +ĠSpark le +Å Ĥ +ĠMed itation +auth ors +ĠSab an +ĠN aked +air d +ĠMand arin +ĠScript ures +ĠPerson nel +ĠMahar ashtra +Ġ19 03 +ĠP ai +ĠMir age +omb at +Access ory +Ġfrag mented +T ogether +Ġbelie vable +ĠGl adiator +al igned +ĠSl ug +M AT +Ġconvert ible +ĠBour bon +amer on +ĠRe hab +nt ax +Ġpowd ered +pill ar +Ġsm oker +ĠMans on +ĠB F +5 11 +ĠGood ell +ĠD AR +m ud +g art +Ġob edient +ĠTrans mission +ĠDon ation +8 80 +Ġbother ing +Material s +ãĤ ± +dest roy +Ġfore going +Ġanarch ism +ĠK ry +ice ps +Ġl ittered +ĠSch iff +Ġanecd otal +un its +Ġf ian +ĠSt im +ĠS OME +ĠInv aders +Ġbehaviour al +ĠVent ures +Ġsub lime +Ġfru ition +ĠPen alty +Ġcorros ion +¶ ħ +Ġlik ened +Ġbesie ged +ween ey +ĠCre ep +Ġlinem en +mult i +ic ably +ud der +Ġvital ity +Ġshort fall +ĠP ants +ap ist +H idden +ĠDro ps +med ical +Ġpron unciation +ĠN RL +Ġinsight ful +J V +ĠBe ard +ĠCh ou +Ġchar ms +Ġb ins +Ġamb assadors +ĠS aturdays +Ġinhib itor +ĠFr anch +6 01 +', ' +ĠCon or +art ney +ĠX peria +g rave +be es +ĠProtest ants +Ġso aking +ĠM andal +Ġph ased +Ġ6 60 +Ġsc ams +Ġbuzz ing +ĠItal ians +ĠLoren zo +ĠJ A +Ġhes itated +Ġcl iffs +ĠG OT +ingu ishable +Ġk o +Ġinter ruption +Z ip +Lear ning +Ġundersc ores +ĠBl ink +K u +57 9 +ĠAut ob +I RE +Ġwater ing +Ġpast ry +8 20 +Ġvision ary +ĠTempl ar +awa ited +Ġpist on +Ġant id +current ly +Ġp ard +Ġw aging +Ġnob ility +ĠY us +Ġinject ing +f aith +ĠP ASS +å º +Ġret ake +ĠPR OC +Ġcat hedral +b ash +Ġwrest lers +Ġpartner ing +Ġn oses +Ġ3 58 +Trans form +am en +Ġb outs +ĠId eal +ĠConstant in +Ġse p +ĠMon arch +att en +ĠPe oples +mod ified +Ġmor atorium +Ġpen chant +Ġoffensive ly +Ġprox ies +ok ane +ĠTaiwan ese +ĠP oo +ĠH OME +us ional +Ġver bs +ĠO man +vis ory +Ġpersu asion +Ġmult it +Ġsc issors +G ay +ow ay +oph ysical +l us +gn u +Ġap ocalyptic +Ġabsurd ity +Ġplay book +Ġautobi ography +I UM +Ġsne aking +ĠSim ulation +pp s +ell ery +Plan et +Ġright fully +Ġn iece +ĠN EC +ĠIP O +ĠDis closure +lean or +ous y +ST ER +Ġ28 2 +Cru z +Ch all +64 3 +ĠSurv ive +ĠF atal +ĠAm id +ap o +We apons +D EN +7 70 +ĠGreen wald +Ġlin en +al os +Ġpollut ants +ĠPCI e +k at +Ġp aw +ĠK raft +C hem +ĠTermin ator +Ġre incarn +Ġ] [ +ĠSe eds +Ġsilhou ette +ĠSt ores +Ġgro oming +ĠD irection +ĠIs abel +ĠBr idges +ðŁ ij +E ED +ĠM orsi +Ġval ves +ĠRank ed +ĠPh arma +ĠOrgan izations +Ġpenet rated +ĠRod ham +ĠProt oss +Ġove rest +Ġex asper +ĠT J +Ġ 000000 +Ġtrick le +Ġbour bon +WH O +Ġw retched +Ġmicrosc opic +Ġcheck list +Ġad orned +R oyal +Ad minist +ĠRet irement +ĠHig hest +We ather +ile ge +Ġincre ments +ĠC osponsors +Ġmas se +ĠS inn +r f +Ġh ordes +as sembly +75 4 +ĠNat asha +ĠTY PE +ĠGEN ERAL +Ġarr anging +Ġ40 7 +l ator +Ġg lean +Ġdisc redited +Ġclin icians +UN E +Ġachie ves +ĠEm erson +com plex += [ +Ġprincip ally +Ġfra il +p icked +Ġthan king +Ġre cl +ĠL AST +Ġsupp ressing +il ic +Ġantidepress ant +ĠLis bon +Ġth or +Ġsp a +Ġking doms +ĠPear ce +em o +Ġpl ung +Ġdiv est +Ġ ******************************** +b is +osp els +ad r +Sp irit +hall a +P ink +end ez +Ġresurrect ed +esc ape +ĠRosen stein +Ġge ological +Ġnecess ities +Ġcarn iv +ĠE lys +ĠBar ney +Ġ29 6 +dig y +ST ON +D OWN +Ġmil estones +Ġk er +Ġdismant ling +Ġre prim +Ġcross ings +19 45 +Ġpatri archy +Ġblasp hemy +Ġ3 59 +met ry +ĠOb esity +ĠDiff erences +bl ocking +ãĥķ ãĤ¡ +ich ita +ĠSab ha +ph alt +ĠCol o +ual a +effic ients +ĠMed ina +con sole +55 7 +ĠHann ibal +ĠHab it +ĠF ever +Ġthen ce +Ġsyn agogue +Ġessential s +Ġw ink +ĠTr ader +ID A +ĠSp oiler +ĠIceland ic +ĠHay ward +Ġpe ac +Ġmal ice +Ġflash back +Ġth w +Ġlay offs +L iquid +Ġtro oper +Ġh inge +ĠRead ers +Ph ill +ĠB auer +Cre ated +Ġaud its +ac compan +Ġunsus pecting +ier a +6666 6666 +Ġbro ch +Ġapprehend ed +ĠM alk +cer ning +ĠCod ex +O VER +M arsh +ĠD eng +ĠExp ression +Ġdisrespect ful +Ġasc ending +t ests +ĠPlaint iff +ster y +ĠAl ibaba +din and +ĠDem psey +Applic ations +mor al +Ġthrough put +Ġquar rel +Ġm ills +Ġhe mor +ĠC ASE +terror ist +st im +ifest yle +ro zen +CE PT +Ar k +u ci +lect ic +Ġirrit ating +she ets +A y +Ġrede emed +Ġhorn y +ĠTe ach +ĠS ear +dem ocracy +4 65 +ĠRest ore +Ġstand by +ĠP is +iff in +Ġsleep y +Ġextr ater +Ġcompl iments +Fram eworks +Ġinstall s +Ġb anging +sur face +found land +Ġmetaph ysical +Ġ28 3 +oul s +dev ices +Ar gs +ĠSac rifice +ĠMcC orm +es on +Cons ervative +ĠM ikhail +see ing +is ively +ĠRo oms +ĠGener ic +Ġenthusi astically +Ġgri pped +Ġcomed ic +ĠElectric ity +Ġgu errilla +Ġdec oration +ĠPerspect ive +Ġconsult ations +Ġun amb +Ġplag iar +Ġmagic ian +Ġe rection +ĠTour ism +or ied +ro xy +11 00 +T am +Ī è +Î ³ +× ª +ĠPred ators +Nit rome +Ġtelesc opes +project s +Ġun protected +Ġst ocked +ĠEnt reprene +nex pected +Ġwast ewater +V ill +Ġint imately +Ġi Cloud +ĠConst able +Ġspo of +Ġne farious +Ġfin s +Ġcens or +ĠMod es +ĠEs per +ar bon +Ġinter sections +Ġlaud ed +Ġphys i +Ġgener ously +ĠThe Nitrome +ĠTheNitrome Fan +Ġar isen +ĠÙ Ī +Ġg lands +ĠPav ilion +ĠGu pta +Ġuniform ly +Ġr amps +ri et +ĠWH EN +ĠVan essa +Ġrout ed +Ġlim p +ĠC PI +p ter +int uitive +Ġv aping +Ġexperiment ed +ĠOlymp us +ĠAm on +Ġsight ing +Ġinfiltr ate +ĠGentle man +Ġsign ings +ĠMe ow +ĠNav igation +che cks +4 33 +Ġel apsed +ĠBulg arian +esp ie +ĠS OM +d uring +Ġsp ills +anc a +ĠPly mouth +M AL +Ġdomest ically +ĠWater gate +ĠF AM +k illed +ed ited +ĠYour self +Ġsynchron ization +ĠPract ices +ST EP +Ġgen omes +ĠQ R +not ice +Ġloc ating +z in +Ġ3 29 +al cohol +Ġk itten +V o +Ġr inse +Ġgrapp le +ĠSc rew +ĠD ul +A IR +Ġle asing +ĠCaf é +Ġro ses +ĠRes pect +Ġmis lead +Ġperfect ed +Ġnud ity +Ġnon partisan +ĠCons umption +Report ing +Ġnu ances +Ġdeduct ible +ĠSh ots +Ġ3 77 +Ġæ ľ +ano oga +Ben ef +ĠB am +ĠS amp +if ix +Ġgal van +ĠMed als +rad ius +Ġno bles +Ġe aves +igr ate +K T +ĠHar bour +u ers +Ġrisk ed +re q +Ġneuro t +get table +ain a +Rom ney +Ġunder pin +Ġlo ft +ĠSub committee +ĠMong ol +b iz +Ġmanif ests +ass isted +ĠG aga +Ġsy nergy +Ġreligious ly +ĠPre f +ĠG erry +T AG +ĠCho i +4 66 +beh ind +ĠO u +Gold Magikarp +Ġhemor rh +R iver +Ġtend on +Ġinj ure +ĠF iona +Ġp ag +Ġag itation +|| || +ur an +ĠE SA +Ġest eem +Ġdod ging +Ġ4 12 +r ss +Ġce ases +ex cluding +Ġint akes +Ġinsert s +Ġemb old +ĠO ral +up uncture +4 11 +ĠUn ified +ĠDe le +Ġfurn ace +ĠCoy otes +ĠBr ach +L abor +Ġhand shake +Ġbru ises +Gr ade +éĹ ĺ +ĠGram my +ile en +St ates +ĠScandinav ian +ĠKard ash +8 66 +Ġeffort lessly +ĠDI RECT +ĠTH EN +ĠMe i +ert ation +19 68 +Ġgro in +w itch +Requ irements +98 5 +Ġroof s +Ġest ates +ĠH F +Ġha ha +Ġdense ly +ĠO CT +Ġpl astics +Ġincident ally +ĠTr acks +ĠTax es +Ġch anted +Ġforce ful +ĠBie ber +ĠK ahn +K ent +ĠC ot +lic ts +F ed +Ġhide ous +ĠVer d +ĠSynd icate +ĠIl legal +J et +ĠD AV +re asonable +c rew +Ġfundamental ist +Ġtruth ful +ĠJ ing +Ġl il +Ġdown ed +Ġen chanted +ĠPolic ies +ĠMcM aster +ĠH are +ides how +Ġpar ams +en cers +gorith m +Ġallow ances +Ġturb ulent +Ġcomplex ities +ĠK T +Ġ3 37 +ĠGen etic +F UN +D oug +t ick +Ġg igs +ument hal +Ġpatriarch al +Ġcal c +, ... +Ġc out +ĠGu an +Ġpath ological +ĠR ivals +Ġunder rated +Ġflu orescent +ĠJ iu +arna ev +ĠQu an +Ġ4 29 +Ġ ਠ+M ario +Con struct +ĠC itation +ĠR acial +ĠR SA +ĠF idel +Ġ3 95 +Person ally +C ause +à » +rad ical +in en +Ġvehement ly +ĠPap a +Ġintern ship +Ġfl akes +ĠRe ck +Luck ily +B ra +20 20 +rav ings +R N +W onder +Ser iously +Ġre usable +Ġpoll uted +ĠP eng +le igh +ind le +Ġcircuit ry +ĠMad onna +ĠB ART +Res idents +att ribute +Phil adelphia +Cl ub +Ġplan ner +Ġfr antically +Ġfaith fully +ĠTerrit ories +ĠL AT +ĠAnders en +an u +ĠP ARK +ĠS ora +i age +ĠPlay offs +ĠG CC +4 27 +Ġab norm +ĠL ever +Ġdisob edience +As ync +ĠShe a +V ert +Ġsk irts +ĠSaw yer +x p +Ġwors ening +Ġsc apego +ĠAng le +oth al +Ġtro ve +ĠSt y +ĠN guyen +mar ine +ide on +Dep ths +Bl og +ĠIll uminati +Ġtract s +Ġorgan ise +Ġo str +F s +Ġlever aging +ĠD aredevil +as ar +Ġl ang +Ġex termin +urs ions +ĠRom o +ãĤ¤ ãĥĪ +Ġcont ended +Ġencounter ing +ĠTable t +ĠAltern ate +sk ill +Ġswe ets +Ġco hesive +cap acity +Ġrep ud +Ġl izard +ro o +Ġpilgr ims +ĠR uff +ĠInstr ument +ĠLog o +uit ous +E H +Ġsales man +Ġank les +L ed +ĠPat ty +ud os +Own er +Ġdiscrep ancies +k j +M U +Ġuncond itional +Dragon Magazine +i ard +O ak +ĠConvers ation +be er +ĠOs aka +D elta +us ky +Ġsecret ion +Ġpl aza +Ġm ing +Ġde pletion +ĠM ous +ĠI TS +ĠH imal +ĠFle ming +Ġcyt ok +ĠH ick +Ġbat ters +ĠInt ellectual +6 75 +é r +IS ION +ĠQu entin +ĠCh apters +ih adi +Ġco aster +WAY S +ĠL izard +ĠY or +and ering +S kin +ha ust +ab by +Ġportray ing +Ġwield ed +d ash +Ġprop onent +Ġr ipple +Ġgrap hene +Ġfly er +Ġrec urrent +Ġdev ils +Ġwater fall +æĺ ¯ +go o +Text Color +Ġtam pering +IV ES +TR UMP +ĠAb el +ĠS AL +ĠHend ricks +ĠLu cius +b ots +Ġ40 96 +IST ORY +Gu est +ĠN X +in ant +Ben z +ĠLoad ed +ĠCle ver +t reatment +Ġta vern +Ġ3 39 +ĠT NT +ific antly +Tem perature +F el +Ġunder world +ĠJud ges +Ġ< + +Ġst ump +Ġoccup ancy +Ġab er +ĠF inder +) ", +ĠN unes +res et +in et +ect omy +Ġwell ness +ĠP eb +quart ered +and an +Ġneg atives +ĠTh iel +ĠCl ip +ĠL TD +Ġbl ight +Ġreperto ire +K yle +Ġqu er +ĠC es +Ġha pl +98 9 +ĠTh ames +isc opal +Des k +ivari ate +ĠEx cellence +found ation +Ġâ ĩ +X i +Ġmyster iously +esty les +Ġper ish +ĠEng els +ĠDE AD +09 0 +}} } +ĠUn real +Ġrest less +ID ES +orth odox +ĠInter mediate +Ġdin ners +ĠTr out +ĠSe ym +ĠHall s +og ged +Ġtraged ies +Ġdid nt +67 6 +Ġail ments +Ġobserv able +ĠV ide +ad apt +ĠD usk +Ġprofessional ism +ĠPres cott +ĠInd ies +p ox +ĠMe hran +W ide +Ġend emic +ĠPar an +B ird +Ġped als +ĠI U +ĠAdam ant +ĠH urt +Ġcorrel ates +urd en +Ġspons oring +cl imate +ĠUnivers ities +ĠK not +enn es +ĠDam ian +ĠAx el +S port +Ġbar b +ĠS no +sh own +ste en +ud ence +Ġnon violent +Ġhom ophobia +Ġbiom ass +ĠDet ail +Ġsrf N +ĠT une +accompan ied +I ENCE +Al bert +ĠMong o +z x +ĠCer berus +or bit +c ens +Ġsl ay +SH ARE +H Y +Ġb rawl +ĠPro be +Ġnonex istent +ĠClare nce +ĠBlack burn +Ġport als +ĠR ita +ĠRem ain +ĠLe vant +Ġtrick ed +ĠF erry +aver ing +ĠStraw berry +ĠAn swers +Ġhorrend ous +ĠA man +Supp lement +ĠT oad +Ġpe eled +Ġman oeuv +ĠU zbek +mond s +ĠH ector +Ġ40 2 +pe es +fix es +Ġd j +Ġres umes +Ġaccount ant +Ġadvers ity +Ġham pered +ĠL arson +Ġd oping +part s +H ur +Ġbe arded +Ġy r +ĠPlug in +å¥ ³ +Ġ/ ** +rol ley +Ġwaters hed +ĠSub mission +if lower +AS C +Ġcho ir +Ġsculpt ures +m A +incre asing +ai i +Ġsne akers +Ġconfront s +ĠEle phant +ĠEl ixir +Ġrec al +ĠT TL +w idget +ĠW ax +ĠGr ayson +Ġha irst +Ġhumili ated +ĠWAR N +app iness +ĠT TC +F uel +Ġpol io +Ġcomplex es +Ġbab e +ĠX IV +P F +). [ +P arts +Ġ4 35 +M eg +ĠY ards +ĠAL P +Ġy ells +Ġprin ces +Ġbull ies +ĠCapital ism +ex empt +FA Q +ĠSp onge +ĠAl a +Ġpleas antly +Ġbu f +Ġden ote +Ġunp ublished +Ġkne eling +asc a +Ġl apse +al ien +99 4 +Ġrefere es +ĠLaw yers +S anta +Ġpuzz ling +ĠProm etheus +ĠPh araoh +ĠDel ay +Ġfacilit ates +ĠC ES +Ġjew els +Ġbook let +ond ing +Ġpolar ization +ĠMor an +ĠSal ad +ĠS OS +ĠAdv ice +PH OTOS +IC AN +iat ures +ex press +ĠWonder land +ĠC ODE +ĠCL ASS +9 75 +Ġg rep +ĠD iesel +ĠGl ac +! ?" +Ġr m +o ine +disc rimination +ĠN urse +m allow +Ġv ortex +ĠCons ortium +Ġlarge Download +stra ight +augh lin +G rad +Ġpublic ized +ĠW aves +ĠRed d +Ġfest ivities +ĠM ane +ar ov +Ġfleet ing +ĠDr unk +ug en +C ele +Ġchromos omes +ĠD OT +-+-+ -+-+ +Ġbus iest +ĠBe aver +Sy rian +ĠK yr +k as +ĠCross Ref +19 50 +76 01 +Ġrepe aling +ĠWin ners +ĠMac ro +ĠD OD +bl ance +S ort +64 1 +Ġmet re +ĠD irk +Ġgo ggles +Ġdraw backs +Ġcomplain ant +Ġauthor izing +Ġantit rust +oper ated +Ġm ah +Ġexagger ation +Am azing +ĠSer aph +Ġha ze +w ow +Ġextingu ished +Ġcan yon +ĠB osh +Ġv ents +Ġsc rape +Cor rect +4 26 +Ġav g +Dem and +ĠâĪ ¼ +Ġmicrobi ota +"} ]," +ĠSt ev +B io +ĠPlan es +Ġsuggest ive +Ġdec ipher +ĠRefuge e +ĠKe jriwal +ĠGreen peace +Ġdecl ass +ĠSound ers +Ġth o +Ġdec rypt +Ġbr ushing +ĠJane iro +ip op +S i +8 77 +ĠGeoff rey +Ġc pu +ĠHaz el +Ġview points +Ġcris py +ĠNot ification +Ġsold er +ĠMod est +ĠHem isphere +Ġcass ette +in cludes +Ġident ifiers +ĠC ALL +in cent +T odd +ĠSwe ep +Ġ3 34 +b oss +Ġsm ir +gin x +Ġtown ship +Ġg rieving +ĠMos que +Net flix +AS ED +ĠMillenn ials +oc om +19 67 +Ġbold ly +s leep +Ġes che +arij uana +Ġsw irl +ĠPen al +Ġneglig ent +ĠStephen son +K ER +ĠZ oro +ris is +Ġlocal ization +ĠSeym our +ĠAng lic +red itation +prot ection +ĠPa ige +Ġo mit +ĠR ousse +ĠT ub +Ġinv itations +t ty +Ġm oss +ph ysical +C redits +Ġan archy +Ġchild care +Ġl ull +ĠM ek +ĠL anguages +lat est +ĠSan ford +Ġus ability +Ġdiff use +ĠD ATA +Ġsp rites +ĠVeget a +ĠProm otion +ãĥ¼ ãĤ¯ +rict ing +z ee +Tur kish +ĠTD s +pro ven +57 1 +Ġsmug glers +707 10 +Ġreform ed +ĠLo is +Ġun fl +ĠWITH OUT +ĠReturn ing +ann ie +ĠTom as +Fr anc +ĠProf it +ĠSER V +ĠR umble +ik uman +es an +Ġt esters +Ġgad get +Ġbrace let +ĠF SA +comp onent +Ġparamed ics +Ġj an +ĠRem em +ĠSk inner +Ġl ov +ĠQu ake +rom a +Ġfl ask +Pr inc +Ġover power +Ġlod ging +ĠK KK +ret te +Ġabsor bs +w rote +Ġ ," +K ings +ĠH ail +ĠFall ing +xt ap +ĠHel ena +ire ns +L arry +Ġpamph let +ĠC PR +G ro +ĠHirosh ima +Ġhol istic +". [ +Ġdet achment +Ġas pire +Ġcompl icit +ĠGreen wood +Ġresp awn +ĠSt upid +ĠFin ished +f al +b ass +Ġab hor +Ġmock ery +ĠFe ast +VID EO +Ġcon sec +ĠHung ry +P ull +ĠH ust +it ance +? ãĢį +) -- +ĠPar allel +con v +4 69 +ha ar +w ant +P aper +m ins +ĠTor o +ĠTR UMP +ĠR ai +D W +ĠW icked +ĠL ep +Ġfun ky +Ġdetrim ent +ios is +ache v +Ġde grade +im ilation +Ġret ard +Ġfrag mentation +Ġcow boy +ĠY PG +ĠH AL +Parent s +ĠS ieg +ĠStra uss +ĠRub ber +× IJ +Fr ag +Ġp t +Ġoption ally +ĠZ IP +ĠTrans cript +ĠD well +88 2 +M erc +ĠM OT +ãĥ¯ ãĥ³ +Ġhun ts +Ġexec utes +In cludes +Ġacid ic +ĠRespons ibility +ĠD umb +we i +And erson +ĠJas per +ight on +abs olutely +Ad ult +Ġpl under +Mor ning +ĠT ours +ĠD ane +Î º +ĠT EST +ĠG ina +Ġcan ine +aw an +Ġsocial ists +ĠS oda +Ġimp etus +ĠSupplement ary +oli ath +ĠKinn ikuman +mitted ly +second s +Ġorganis ers +Ġdocument aries +Vari able +GRE EN +Ġres orts +Ġbr agging +Ġ3 68 +Art ist +w k +bl ers +Un common +ĠRet rieved +Ġhect ares +Ġtox in +r ank +Ġfaith s +ĠG raphic +Ġve c +ĠL IA +Af rican +Ġard ent +end iary +L ake +ĠD OS +cient ious +ĠOk awaru +ĠAll y +ĠTim eline +D ash +ĠI c +contin ue +Ġt idy +Ġinstinct ively +ĠP ossibly +ĠOut door +ĠWould n +Ġl ich +ĠBr ay +ĠA X +Ġà ī +Ġ+ # +\ ' +Direct ory +ab iding +Ġf eral +ic ative +but t +Ġper verse +S alt +Ġwar ped +Ġnin eteen +Ġcabin ets +Ġsrf Attach +ĠSl oan +Ġpower ing +reg ation +F light +se vere +Ġst ren +Ġc og +ap ache +Ġâ Ŀ +Ġcaf eteria +p aces +ĠGrim oire +uton ium +Ġr aining +Ġcir cling +Ġlineback ers +c redit +Ġrep atri +ĠCam den +lic ense +Ġly ric +Ġdescript or +Ġval leys +Ġre q +Ġback stage +ĠPro hibition +ĠK et +Op ening +S ym +æĸ ¹ +Ġserv ings +Ġoverse en +Ġaster oids +ĠMod s +ĠSpr inger +ĠCont ainer +è » +ĠM ens +Ġmult im +Ġfire fighter +pe c +Ġchlor ine +Ð ¼ +end i +Ġsp aring +Ġpolyg amy +ĠR N +ĠP ell +Ġt igers +Ġflash y +ĠMad ame +S word +Ġpref rontal +Ġpre requisite +uc a +Ġw ifi +Ġmiscon ception +Ġharsh ly +ĠStream ing +ot om +ĠGiul iani +foot ed +Ġtub ing +ind ividual +z ek +n uclear +m ol +Ġright ful +49 3 +Ġspecial ization +Ġpassion ately +ĠVel ocity +ĠAv ailability +T enn +Ġl atch +ĠSome body +Ġhel ium +cl aw +Ġdi pping +XX X +Ġinter personal +7 10 +Ġsub ter +Ġbi ologists +ĠLight ing +Ġopt ic +Ġden im +end on +ĠC orm +Ġ3 41 +ĠC oup +Ġfear less +Ġal ot +ĠCliff ord +ĠRun time +ĠProv ision +up dated +lene ck +Ġneur on +Ġgrad ing +ĠC t +sequ ence +in ia +con cept +Ġro aring +ri val +ĠCaucas ian +Ġmon og +key es +Ġappell ate +Ġlia ison +EStream Frame +ĠPl um +! . +Ġsp herical +Ġper ished +Ġbl ot +Ġben ches +Ġ4 11 +Ġpione ered +Ġhur led +Jenn ifer +ĠYose mite +Ch air +Ġreef s +Ġelect or +ĠAnt hem +65 2 +Ġun install +Ġimp ede +Ġbl inking +Ġgot o +Dec re +A ren +Ġstabil ization +ĠDis abled +ĠYanuk ovych +Ġoutlaw ed +ĠVent ura +ten ess +Ġplant ation +Ġy acht +ĠHu awei +Ġsol vent +Ġgr acious +Ġcur iously +Ġcapac itor +Ġc x +ĠRef lex +Ph ys +ĠC f +pt in +cons ervative +Ġinv ocation +c our +F N +ĠNew ly +H our +As ian +ĠLe ading +ĠAer ospace +An ne +Ġpre natal +Ġdeterior ating +H CR +ĠNorm andy +ol ini +ĠAm bro +9 10 +Ġset backs +ĠT RE +Ġs ig +ĠSc ourge +59 7 +79 8 +Game play +Ġm sec +M X +Ġprice y +ĠL LP +aker u +Ġover arching +ĠB ale +Ġworld ly +Cl ark +Ġscen ic +Ġdisl iked +ĠCont rolled +T ickets +ĠE W +ab ies +ĠPl enty +Non etheless +Ġart isan +Trans fer +ĠF amous +Ġinf ield +ble y +Ġunres olved +ĠML A +ãĤ Ĥ +Cor rection +Ġdemocr at +ĠMore no +ro cal +il ings +Ġsail or +Ġr ife +h ung +Ġtrop es +Ġsn atched +ĠL IN +ĠB ib +ES A +ĠPre v +ĠCam el +run time +Ġob noxious +4 37 +Ġsum mers +Ġunexpl ained +ĠWal ters +cal iber +Ġg ull +ĠEnd urance +ä½ ľ +Ġ3 47 +Ir ish +Ġaer obic +Ġcr amped +ĠHon olulu +à © +us erc +ec ast +AC Y +ĠQu ery +ãĤ¹ ãĥĪ +Bet a +Ġsuscept ibility +ĠSh iv +ĠLim baugh +Ġà ĸ +ĠN XT +ĠM uss +ĠBrit ons +ES CO +EG IN +Ġ% % +Ġsec ession +ĠPat ron +ĠLu a +n aires +ĠJPM organ +us b +ocy te +Ġcouncill ors +ĠLi ang +f arm +Ġnerv ously +Ġattract iveness +ĠK ov +j ump +Pl ot +Ġst ains +ĠStat ue +ĠApost les +he ter +ĠSUP PORT +Ġoverwhel m +Y ES +Ġ29 1 +d ensity +Ġtra pping +M it +Ġf ide +ĠPam ela +atl antic +Dam n +Ġp ts +OP A +Ġserv icing +Ġoverfl owing +ul o +ĠE rit +t icket +light ing +ĠH mm +ãĥ¼ ãĥ« +im oto +Ġchuck le +4 23 +ãģ ķ +sh ape +Ġque ues +Ġanch ors +ãĤ¼ ãĤ¦ãĤ¹ +F er +Ġaw oke +Ġ6 66 +h ands +Ġdiver gence +Ġ50 5 +T ips +Ġdep ot +Ġske w +ĠDel iver +op ot +Ġdiv ul +ĠE B +uns igned +ĠUn i +X box +Ġfor ks +Ġ7 02 +å ¯ +Ġpromot ers +ĠV apor +Ġlev ied +sl ot +Ġpig ment +Ġcyl inders +C RE +Ġsn atch +Ġperpet ually +Ġl icking +ĠFe et +ĠKra ken +ĠHold en +ĠCLS ID +m r +Ġproject or +Ġden otes +Ġchap el +ĠTor rent +b ler +R oute +ĠDef endant +ĠPublisher s +ĠM ales +ĠInn ov +ĠAg ility +rit er +ty mology +st ores +L ind +Ġf olly +ĠZur ich +B le +Ġnurt ure +Ġcoast line +uch in +D omin +Ġfri vol +ĠCons olid +res ults +M J +Ġphyl ogen +Ġha uled +ĠW iley +ĠJess ie +ĠPrep are +ĠE ps +Ġtreasure r +I AS +Ġcolon ists +Ġin und +ĠWW F +ĠCon verted +6 000 +out side +ĠApp earance +ĠRel ic +ĠM ister +s aw +Ġresult ant +Ġadject ive +ĠLaure l +ĠHind i +b da +Pe ace +Ġreb irth +Ġmembr anes +Ġforward ing +Ġcoll ided +ĠCar olyn +K ansas +5 99 +ĠSolid GoldMagikarp +Be ck +Ġstress ing +ĠGo o +ĠCooper ative +Ġf s +ĠAr chie +L iter +ĠK lopp +J erry +Ġfoot wear +War ren +Ġsc ree +h are +Under standing +P ed +Ġanth ology +ĠAnn ounce +M ega +Ġflu ent +Ġbond age +ĠDisc ount +il ial +C art +ĠNight mares +Sh am +ĠB oll +uss ie +H ttp +Atl anta +Ġun recogn +ĠB id +Ġunder grad +Ġforg iving +ĠGl over +AAAA AAAA +4 45 +V G +pa io +kill ers +Ġrespons ibly +Ġmobil ize +Ġeffect ed +ĠL umin +Ġk ale +Ġinfring ing +ann ounced +Ġf itt +b atch +ĠT ackle +ĠL ime +ĠAP P +uke mia +Ġrub y +Ġex oner +ĠCas ual +0 70 +Ġpel vic +Ġautom ate +ĠK ear +ĠCoast al +Ġcre ed +Ġbored om +ĠSt un +ri ott +Ĥ İ +Ġregener ate +Ġcomed ians +ĠOP ER +Sp ons +id ium +on is +L ocated +05 7 +Ġsusp ense +ĠD ating +C ass +Ġneoc ons +ĠShin zo +Ġaw oken +ch rist +ĠMess ages +att led +ĠSpr ay +ĠSp ice +C W +Ġshield ing +ĠG aul +Am id +Ġparam ilitary +Ġmult if +ĠTan ner +il k +Ġgodd amn +g ements +Ġbe friend +m obi +Ġ3 88 +fold er +acc a +Ġins in +g ap +N ev +fif th +Ġpsychiat ry +b anks +TH IS +Ġhar b +ac qu +Ġfac ade +ĠPower Point +80 3 +Ġbl uff +Sh ares +Ġfavor ing +El izabeth +Ãį Ãį +Ġr anger +77 2 +ĠAr che +h ak +ĠGen etics +ĠF EMA +Ġev olves +Ġest e +ĠP ets +ĠM é +ĠInterest ing +ĠCanter bury +ch apter +ĠStar fleet +Sp anish +Ġdraw back +ĠNor wich +9 70 +n orth +ag anda +Ġtransform ative +ram ids +bi ology +ad ay +Ġpropag ation +ĠGam ma +ĠDen ise +ĠCalcul ator +ent imes +ĠB ett +Ġapp endix +ĠHD D +AK ING +Ġst igmat +Ġhol ster +Ġord inarily +Ch ance +ĠCont rary +Ġad hesive +Ġgather s +6 12 +re au +ony ms +ew ays +Ġindu ces +Ġinterchange able +se m +Wh it +Ġtr ance +Ġincorpor ation +ĠExt ras +Fin ancial +Ġawkward ly +ĠStur geon +ĠH Y +Norm ally +ĠEnd ing +ĠAss ist +enc rypted +Ġsub jug +Ġn os +Ġfan atic +C ub +C U +?" . +Ġirre versible +å Ĥ +03 1 +ĠH AR +sp read +ul ia += $ +Sc ope +L ots +Ġlif estyles +ol on +Ġf eds +Ġcongrat ulate +web kit +Ġindist inguishable +ĠSw ing +Ġcommand ments +qu ila +ab ella +m ethyl +ann abin +Ġo vere +Ġlob ster +ĠQU EST +ĠCONT IN +bern atorial +:::: :::: +ĠTra ve +ĠSam oa +AN I +75 2 +Ð ´ +userc ontent +ĠMod erate +y eah +ĠK itt +Ġwe e +Ġstuff ing +ĠInter vention +ĠD ign +Ġware houses +ĠF iji +Ġpel lets +Ġtake away +ĠT ABLE +ĠClass ical +col lection +Ġland fall +ĠMus cle +Ġsett les +ĠAD V +Ġ3 44 +L aura +Ġf ared +ĠPart ial +4 36 +oss ibility +ĠD aly +ĠT arant +ĠFu ji +am l +c ence +55 1 +ĠProced ures +ĠO CD +ĠU D +t in +Q UI +ach o +4 38 +Ġgl itches +Ġenchant ment +Ġcalcul ates +IR O +ĠH ua +alys es +ĠL ift +um o +Ġle apt +Ġhypothes ized +ĠGust av +it ans +VERS ION +æ ł +Rog er +Ġr and +ĠAd apter +Ġ3 31 +ĠPet ition +k ies +M ars +Ġunder cut +ze es +ĠLy ons +ĠDH CP +Miss ing +Ġretire es +Ġins idious +el i +> ) +. ãĢį +Ġfinal ists +ĠA ure +Ġacc user +Ġwas tes +ĠY s +ĠL ori +Ġconstitu encies +Ġsupp er +Ġmay hem +or ange +Ġmis placed +Ġmanager ial +Ġex ce +ĠCL I +Ġprim al +ĠL ent +Cry stal +h over +ĠN TS +end um +Ġd w +ĠAl c +n ostic +Ġpres erves +ĠTs arnaev +Ġtri pled +rel ative +Arc ade +k illing +ĠW EEK +ĠH anna +D ust +Com pleted +ģ « +Ġappro ves +ĠSur f +ĠLuther an +ven ants +Ġrobber ies +we ights +soft ware +at ana +ug al +Ġgrav y +ĠC ance +OLOG Y +ly ak +Ton ight +Ġunve il +Ġ19 04 +ĠMin ion +ent ious +st ice +pack ages +ĠG EAR +Ġg ol +ĠHutch inson +ĠProf ession +ĠG UN +ĠDiff erence +ĠTsuk uyomi +ĠLes bian +6 70 +Ġfug itive +ĠPlan etary +-------------------------------- ------------------------ +Ġacc rued +Ġch icks +Ġsto pp +Ġblock ers +C od +Ġcomment ers +ĠSomew here +ĠPhot ographer +the me +Ġmay oral +w u +Ġanten nas +Ġrev amped +ĠSubject s +it é +im ura +Ġentr ances +liter ally +Ġten ets +ĠO MG +ĠMP H +ĠDon key +ĠOff ense +Ġ" + +Sn ap +ĠAF B +Ġan imate +ĠS od +His panic +Ġinconsist ency +D b +F Y +Ex port +Ġa pe +Ġpear l +ib el +ĠPAC s +Ġ{ \ +Ġact u +ĠHS BC +camp us +Ġpay off +Ġde ities +ĠN ato +ou ple +Ġcens ored +ĠCl ojure +Ġconf ounding +en i +Ġreck on +op he +Ġspot ting +Ġsign ifies +Ġprop el +Ġfest ive +S uggest +Ġpled ging +ĠB erman +Ġrebell ious +Ġovershadow ed +Ġinfiltr ated +j obs +67 2 +Ġscal able +Ġdomin ion +ĠNew foundland +ĠMead ow +Ġpart itions +AM I +Ġsupplement ary +str ument +Ġhair y +Ġperpet uate +Ġnuts hell +ĠPot ato +ĠHob bit +Ġcur ses +Flo at +Ġquiet er +Ġfuel ing +Ġcaps ules +ĠL ust +ĠH aunted +Exec utive +Ġchild birth +G re +Ġrad iant +å İ +Ġm alls +Ġin ept +ĠWarrant y +Ġspect ator +E h +t hens +Ġculmin ating +æ © +ary a +ãĤ ® +ilit arian +ĠOR IG +ĠSp ending +pt ives +ĠS iren +ĠRec ording +ay ne +Ġv im +Ġspr ang +T ang +ĠM FT +mor ning +ĠWe ed +m peg +cess ion +ĠCh ung +7 30 +w arning +56 2 +handed ly +P oor +P olitics +: # +Ġp ian +Ġfec es +ĠDocument ation +Ġban ished +Ġ3 99 +ĠAR C +Ġhe inous +J ake +ĠAm ir +way ne +v re +os henko +Ġnotebook s +Ġfound ational +Ġmarvel ous +ixt ape +Ġwithdraw als +Ġh orde +ĠD habi +is able +ĠK D +Ġcontag ious +ĠD ip +ĠAr rows +Ġpronoun s +Ġmorph ine +ĠB US +68 2 +Ġk osher +fin ished +ĠInstr uments +Ġf used +yd en +ĠSal mon +F ab +aff ected +K EN +C ENT +Dom ain +Ġpoke mon +ĠDr inking +G rowing +ĠInvestig ative +ĠA ether +em i +Ġtabl oid +Ġrep ro +ĠNot withstanding +ĠBers erker +Ġdram as +Ġclich é +Ġb ung +ĠU RI +ĠD os +0 44 +Ġpast ors +Ġl s +Ġac rylic +aun ts +Ed ward +Ġmajor ities +B ang +Ġfield ing +ĠRepl acement +ĠAl chemy +pp ard +ĠRome o +ĠSan ct +ĠLav rov +ib ble +Inst ruct +Ġimp ractical +ĠPlay boy +ce phal +Ġsw aps +Ġk an +ĠThe o +Ġillust rating +Ġdismant led +ĠTrans gender +ĠG uth +UG H +Ġtriumph ant +Ġencomp ass +Ġbook mark +udd in +j er +Ġpred icate +ES H +Ġwhen ce +ĠAB E +Ġnon profits +Se qu +Ġdi abetic +Ġp end +Ġheart felt +sh i +Ġinter acts +ĠTele com +Ġbombard ment +dep ending +ĠLow ry +ĠAd mission +ĠBl ooming +ust ration +ene gger +B rew +Ġmol ten +ĠNer d +P IN +âĸ Ģ +ave ment +Ġtou red +Ġco efficients +ĠTray von +ans son +Ġsand y +t old +fl ows +Ġpop ulous +ĠT inder +ĠBl iss +R achel +Min imum +Ġcontest ant +ĠRed uce +ĠMor se +ĠGrass ley +ĠClick er +Ġexp r +Ġs incerity +Ġmar qu +Ġelic it +ĠPro position +ĠDemon ic +Ġtac os +G reek +Ġpost war +Ġin sofar +ĠP ork +Ġ35 2 +doctor al +walk ing +Ġmid term +ĠSam my +sight ed +ĠTR ANS +ic i +AL D +ĠUS L +ĠF ISA +ĠAm pl +ĠAlex andra +ine lli +Tr ain +Ġsign ify +ĠVers us +Ġob fusc +Ġk h +Ġagg ro +ĠRen ault +Ġ3 48 +5 18 +ox icity +0 22 +ĠTw ist +Ġgoof y +D ynamic +Ġbrief ings +m ight +8 99 +Ġderog atory +T ro +Ġfor ging +ĠKor an +ĠMar ried +ĠBuc s +Ġpal ate +ĠCon version +m able +4 13 +Ġ( _ +Ġs iph +ĠN EO +col lege +Ġmarg inally +Ġfl irt +ĠTra ps +ĠP ace +é »Ĵ +Ġgoalt ender +Ġforb ids +Ġcler ks +ĠT ant +ĠRobb ins +ĠPrint ing +Ġpremie red +Ġmagn ification +ĠT G +ĠR ouse +ĠM ock +odynam ics +Ġpre clude +ism o +ĠPul itzer +Ġaval anche +ĠK odi +rib une +ĠL ena +Elect ric +Ġref inery +Ġend owed +Ġcounsel ors +Ġd olphin +ĠM ith +Ġarm oured +hib ited +Beg in +ĠP W +O il +ĠV or +ĠShar if +ĠFraz ier +est ate +Ġj ams +Pro xy +Ġband its +ĠPresbyter ian +ĠPrem iere +t iny +ĠCru el +Test ing +Ġhom er +ĠV ERS +ĠPro l +ĠDep osit +ĠCoff in +Ġsemin ars +Ġs ql +ĠDef endants +Altern atively +ĠR ats +ç « +ethy st +' > +Ġiss uer +58 9 +Ġch aired +ĠAccess ories +man ent +Ġmar row +ĠPrim ordial +C N +Ġlimit less +ĠCarn age +Ġund rafted +q v +IN ESS +on ew +Ġco hesion +98 7 +Ġne cks +Ġfootball er +ĠG ER +Ġdetect able +ĠSupport ing +ĠCS V +oc ally +k Hz +Ġund e +Ġsh one +Ġbud ding +tra k +Stand ing +ĠStar craft +ĠKem p +Ben ch +Ġthw arted +ĠGround s +ath i +L isa +Dial og +ĠS X +V ision +Ġingen ious +Ù IJ +Ġfost ering +ĠZ a +ĠIn gram +Ġ" @ +N aturally +6 16 +0 35 +ĠF AC +H mm +55 4 +Ġacceler ator +ĠV end +Ġsun screen +Ġtuber culosis +rav iolet +ĠFunction al +ĠEr rors +ed ar +19 66 +ĠSpect re +ĠRec ipes +88 5 +ĠM ankind +L iverpool +Ġ| -- +Ġsubst itutes +ĠX T +w ired +Ġinc o +ĠAf gh +E va +ic c +S ong +K night +Ġdilig ently +ĠBroad cast +A id +Ġaf ar +ĠH MS +aton in +ĠGr ateful +Ġfire place +ĠOm ni +e uro +ĠF RE +ĠSh ib +ĠDig est +t oggle +Ġheads ets +Ġdiff usion +ĠSqu irrel +ĠF N +Ġdark ened +out her +Ġsleep s +ĠX er +gun s +Ġset ups +Ġpars ed +Ġmamm oth +ĠCur ious +g ob +ĠFitz patrick +ĠEm il +im ov +........ ..... +ĠB enny +Second ly +Ġheart y +Ġcons on +st ained +Ġgal actic +cl ave +Ġplummet ed +Ġp ests +Ġsw at +Ġrefer rals +ĠLion el +h oly +Ġunder dog +ĠSl ater +ĠProv ide +ĠAm ar +ress or +å Į +ong a +Ġtim id +Ġp iety +ĠD ek +Ġsur ging +az o +Ġ6 10 +Ġdes ks +ĠSp okane +ĠAn field +Ġwars hips +ĠCob ra +Ġar ming +clus ively +ĠBad ge +ag ascar +ĠPR ESS +ĠMcK enzie +ĠFer dinand +burn ing +Af ee +Ġtyr ann +ĠI w +ĠBo one +100 7 +ĠRe pt +Ċ Âł +Ġcar avan +ĠD ill +ĠBundes liga +Ch uck +Ġheal er +ãĥ¼ãĥ Ĩ +ĠH obby +Ġneg ate +Ġcrit iques +section al +mop olitan +Ġd x +Ġouts ourcing +ĠC ipher +t ap +Sh arp +Ġup beat +Ġhang ar +Ġcru ising +ĠNi agara +Ġ3 42 +ill us +ĠS v +Ġsubt itles +Ġsqu ared +Ġbook store +Ġrevolution aries +ĠCarl ton +ab al +Ut ah +Ġdesp ise +ĠU M +cons ider +aid o +Ġc arts +ĠT urtles +Tr aining +Ġhonor ary + ¢ +Ġtri angles +4 22 +Ġreprint ed +Ġgrace ful +ĠMong olia +Ġdisrupt ions +ĠB oh +Ġ3 49 +Ġdr ains +Ġcons ulate +Ġb ends +Ġm afia +ur on +ĠF ulton +m isc +Ġren al +Ġin action +ck ing +Ġphot ons +Ġbru ised +ĠC odes +og i +Ġn ests +ĠLove ly +ĠLib re +ĠD aryl +Ġ# ## +S ys +. ," +Ġfree zes +est ablishment +and owski +Ġcum bers +ĠSt arg +ĠBom bs +Ġleg ions +Ġhand writing +Ġgr un +ĠC ah +sequ ent +Ġm oth +ĠMS M +Ins ert +F if +Ġmot el +Ġdex ter +ĠB ild +hearted ly +Ġpro pe +ĠText ure +ĠJ unction +ynt hesis +oc ard +ĠVer a +ĠBar th +Ġμ g +Ġl ashed +Ġ35 1 +ĠZ amb +ĠSt aples +ĠCort ex +ĠCork er +Ġcontinu um +ĠWR ITE +unt a +rid or +Ġde ems +0 33 +ĠG OLD +p as +Ġrep ressive +ãĥĨ ãĤ£ +Ġbaff led +Sc ar +Ġc rave +Ġ ______ +Ġentrepreneurs hip +ĠDirector ate +Ġ' [ +Ġv ines +Ġasc ended +ĠGR OUP +ĠGood bye +Ġdo gged +ãĥ´ ãĤ¡ +Man ufact +Ġunimagin able +ri ots +ier rez +Ġrel ativity +ĠCraft ing +ra ught +ud en +c ookie +Ġassass ins +Ġdissatisf ied +ac ci +Ġcondu it +Sp read +ĠR ican +n ice +izz le +Ġsc ares +ĠWH Y +ph ans +5 35 +Ġprot racted +ĠKrist en +5 36 +ĠSc rib +ĠNe h +Ġtwent ies +Ġpredic ament +Ġhandc uffs +Ġfruit ful +ĠU L +ĠLud wig +Ġatt est +ĠBre aker +Ġbi ologically +ĠDeal er +Ġrenov ations +f w +ess en +Al ice +ĠHen ri +Ġun ilaterally +ĠS idd +h ai +ĠSt retch +S ales +Ġcumbers ome +ĠJ avier +Ġtrend y +Ġrot ting +ĠChall enges +Ġscra ps +Ġfac ets +ĠVer onica +ĠVer ge +ĠS ana +Al ien +ĠR ih +Ġrad ial +ect ar +Ġ6 30 +cl i +Mar ie +Ġwild fire +ĠCat o +h ander +Ġwait ress +Ġch ops +ĠS ECTION +Ġblunt ly +ĠCat alog +n ian +stud y +Ġpat rolling +ĠT enth +nex us +ĠN ON +op sy +Ġsc athing +s ie +Ġdeterior ated +V B +Naz is +Ġdep ictions +Ġauthent icated +ĠCon ce +k rit +Ġpromul g +ĠL ONG +U FC +ĠVis itors +ĠRec all +Ġrehab ilit +ĠSL I +Ġglac ier +ĠB ite +Ġ50 3 +Ġvom it +Ġfer mented +ĠKh alid +Ġgrad ed +ĠMag icka +ĠIch igo +power ful +ic ators +75 3 +Ġsh rew +Ġ35 6 +Ġlegal izing +Ġall otted +ĠArch demon +ith ing +igg urat +V OL +Le od +Ġo ily +Ġindu cing +Ġamy gdala +Ġadm ins +ĠAcqu isition +C AN +Ġsche matic +Ġmo an +ĠCamer oon +Ġt ink +Ġmer ry +Ġbutter flies +ĠGo ff +Ġworks pace +ĠCor ona +Ġj avascript +ĠD olphin +ĠCant or +4 64 +to e +AP S +ĠAg ing +Ġpadd ed +ĠZ heng +ĠHe ld +Ġest ranged +Ġ7 70 +. } +ĠDun ham +Ġsm okes +Ġcap itals +und ai +Sh in +ĠFound ing +Ġent itle +Ġcenter piece +D iscover +Ġthere to +al ert +ĠN ou +ĠAnaly st +l c +F H +FI ELD +ĠP OV +gr ay +Ġar cs +ĠH OT +Ġr s +Ġoblig atory +ĠArchitect s +ĠS ven +ĠF EC +0 200 +Christ mas +ĠAlban ia +rat om +58 7 +Ġhard ships +Ġaut os +ĠCharg es +Ġap es +Ġ3 76 +wal let +Ġintox ication +Ġgobl in +Ġ5 70 +++++++++ ++++++++ +ĠYel p +ĠMag netic +ĠBr iggs +R ail +Ġspawn s +ĠW iggins +Ġshowc ased +Ġres orted +ub en +Ġwh ipping +Ġim itate +Ġdigest ion +ĠUS PS +ĠG est +Ġye a +ĠT ight +ind al +ic as +` . +C AST +'' ; +ĠF et +opath ic +In valid +Ġregrett ed +Ġbro ccoli +ĠSc ores +e ve +Ġpost ings +Ġaccum ulating +Ġneed less +elf th +Ġmay ors +Ġsc rib +Ġanecd otes +Ġbot ched +ĠRib bon +ĠConstant ine +i uses +ess es +Ġdev ise +Comp ared +Ġp udding +Ġg arg +Ġev oke +79 7 +Ġdet ox +9 09 +ĠPie ces +ĠMcC artney +Ġmet ast +ĠK rypt +P OR +Ġt ending +ĠMerch ants +Pro of +ĠV arg +ĠPort able +ãĥ¼ãĥĨ ãĤ£ +B rain +25 00 +Ġfol iage +Ø ¹ +Ġment ors +ĠA ires +Ġminimal ist +Ġing ested +ĠTro jan +ĠQ ian +inv olved +0 27 +Ġer oded +RA FT +Ġbl urry +M ob +Ġbuff et +ĠFn atic +ae a +KN OWN +ĠIn it +s afety +en um +ACT ION +ĠCrus her +ĠD ates +Ġ ................ +c alling +ak ov +Ġvent ured +Ġ5 55 +au ga +H art +ĠA ero +M AC +Ġthin ly +Ġar ra +ST ATE +ild e +ĠJac qu +ĠFem ales +Ġthe orem +Ġ3 46 +Ġsmart est +ĠPU BLIC +ĠK ron +ĠB its +ĠV essel +ĠTele phone +Ġdec ap +Ġadj unct +ĠS EN +mer ga +Ġred acted +Ġpre historic +Ġexplan atory +ĠRun s +ĠUtt ar +ĠM anny +ĠAUTH OR +ĠUnle ashed +ĠBow ling +be ans +79 3 +Ġunivers es +Ġsens it +ĠK ung +re peat +ctr l +Ġp aced +Ġfull er +Cl ock +Ġrec omb +ĠF aul +ĠB unker +Ġpool ed +Ġan a +ĠM outh +LL OW +hum ane +Ġbull do +ĠMicha els +f am +Ġwreck ed +Ġport rays +ĠWh ale +ĠH es +Ġguess es +ĠBrow se +ĠL APD +Ġconsequ ential +ĠInn ocent +ĠD RAG +Ġtrans gress +ĠO aks +Ġtri via +ĠRes on +ĠA DS +-- + +ĠT oll +Ġgrasp ing +ĠTHE M +ĠT ags +ĠCon clusion +Ġpract icable +Ġho op +Ġunintention ally +Ġign ite +ĠM ov +ur ized +le hem +Ter min +Ġcolour ful +ĠLin ear +ĠEll ie +G y +Ġman power +Ġj s +Ġem oji +ĠSHAR ES +_ . +0000 7 +Ġsophistic ation +Ġunders core +Ġpract ise +Ġbl ob +op ens +Uk raine +Ke eping +Y C +J R +ult imate +Cl aim +Ġautom obiles +99 3 +ste el +Ġpart ing +ĠL ank +... ? +Ġ38 5 +Ġremem brance +Ġe ased +Ġcov ari +ĠS ind +Effect ive +Ġdisse mination +ĠMo ose +ĠCl apper +br ates +App ly +Ġinv is +Ġwors ened +âĢĶ - +Ġlegisl ator +ĠL ol +ĠRow e +Ġdealers hip +um ar +id ences +Ġinvestig ates +Ġc ascade +Ġbid der +ĠB EN +Iron ically +Ġpres iding +Ġd ing +Ġcontrad icted +Ġshut s +ĠF IX +Ġ3 66 +Dist rict +Ġsin ful +ĠChar isma +o ops +Ġtot ality +Ġrest itution +ĠOpt imus +ĠD ah +Ġcl ueless +urn ed +Ġnut rit +Ġland owners +Ġfl ushed +Ġbroad en +m ie +Ġprint ln +Ġn ig +ĠCorp us +J en +Ġprot o +ĠWik imedia +ĠPal o +C OR +Ġstory lines +Ġevangel icals +ĠDar rell +Ġrot or +ĠH W +sk illed +ery l +Ġbe gg +ĠBl umenthal +Ġwe aving +Ġdown wards +ĠJack et +ĠANG EL +Te chnology +Ġes oteric +alde hyde +Ġfur iously +Ġforeign er +We ak +CH O +ĠH ound +Exper ience +ĠPlay station +ĠM IA +ĠU ng +cl oth +ag all +Ġcal ming +iz ens +St ruct +ĠW itches +ĠCeleb ration +Ġ........ ...... +pt roller +ĠTC U +Ġb unny +ãĥ į +ut orial +Ġup scale +ĠSt a +ĠCol ossus +Ġchlor ide +ĠZ ac +ĠRe asons +ĠBrook ings +ĠWH ITE +][ / +ĠL ose +9 05 +Ġunders ide +ern els +Ġv ape +do zen +upp et +ĠST OP +mat ical +ĠStat ements +hed dar +P AC +Custom er +Ġmem os +ĠP J +end ars +ĠLim its +l augh +Ġstabil ized +ĠALE C +Y A +Up grade +al am +Ġtechn o +Ġan ew +fore seen +Ġcolleg iate +ĠPy ro +ĠD ism +Ġfront line +Ġammon ia +I U +Qu ite +John ny +ass in +G OP +ĠSt yles +ĠSovere ign +acter ial +5 49 +ĠR IP +ĠL ists +Ġ3 64 +ĠRece p +s ocket +ĠByr d +ĠCand le +An cient +Ġappell ant +en forcement +ace a +ans ki +Ġold s +88 6 +Ġsl urs +Ġem pires +Ġbuck le +Ġalien ation +ĠAber deen +Ġunic orn +Ġoverr iding +ĠL X +pp a +Ġdesp ised +ĠB ugs +ĠB ST +S outhern +5 33 +Ġhall mark +ĠPost er +Ġstem med +Ġprincip als +ĠT ECH +ĠSand wich +It aly +Ġche esy +ĠSet TextColor +ĠProt ective +ĠC ohn +J O +apt op +Re ason +Lead er +ĠUnder stand +ĠFr idays +ĠContin uous +Ġcl ipping +ĠR ye +Ġber th +tim er +ann is +re act +Ġbuff alo +ĠPar as +Ġ6 55 +Ġpres ided +ĠSun rise +Ġve ts +Ġcl oves +ĠMcC ull +Stre ngth +G AN +Ġill iter +ĠPric ing +l é +Ġresist or +Ġbr un +ĠSuff olk +Ñ ĭ +ĠL iver +Re leased +Ġwhat s +8 60 +ĠMe asures +Ġden ouncing +ĠRy zen +Ġsou ven +Ġcareg ivers +ch ini +ĠScar lett +Ġt rough +Cong ratulations +Ġtax is +ĠTrad ition +j it +Ġtable top +Ġhither to +Ġdis information +off ensive +h ra +ĠDISTR ICT +Ġcompl icate +chen ko +ĠRecon struction +Ġpalp able +Ġa usp +Ġ4 28 +Ġshowc ases +ĠPublic ation +know ledge +inn on +4 19 +Ġretri eval +and ers +Ġref ute +Ġinqu ired +g ur +Ġneg ativity +Ġcons erve +Ġafter life +Ġpres upp +ĠGill espie +Ġm t +ĠD N +T ap +Ġper pend +ĠS my +does n +Ġsp illing +Ġhyp ers +K ate +® , +ke pt +ĠP owered +Ġj a +ĠK lux +ard e +ab an +Ġ4 44 +Ġflatt ened +ĠImprove ments +urg a +ĠK und +Ġins cribed +Ġfac ult +Ġunpre pared +ĠCons umers +Ġsatisf ies +Ġpul monary +Ġinf iltration +Ġex ternally +Ġcongrat ulations +ag han +Ġair liner +Ġfl ung +Ġfly ers +G D +Ġsnipp ets +Ġrec ursive +Ġmaster ing +L ex +Ġovert ly +v g +Ġluck ily +Ġenc ro +ĠLanc et +ĠAbyss al +function al +Ġs ow +Ġsqu id +Ġnar ration +Ġn aughty +ĠHon our +ĠSpart ans +Ġsh atter +ĠTac oma +ĠCal ories +ĠR aces +Sub mit +Ġpurpose fully +w av +ĠY ok +F est +ĠG err +Met ro +Ġit iner +f amous +Ġ" { +in line +was her +Iss ue +ĠCL IENT +oz o +Vers ions +7 25 +ĠGl ock +Ġshield ed +ĠPC R +ENC Y +ĠWe ld +ĠSim pl +Ġredirect ed +ĠK ham +Ġ( > +Ġlab ou +Ġdi apers +ss l +Ġcell ar +organ isms +ore sc +ĠBer ks +did n +Sh ipping +C hest +Ġund one +Ġmillion aire +Ġc ords +ĠYoung er +appropri ately +Ġsequ els +u ve +ant icipated +Ġle wd +ĠSh irt +ĠDmit ry +V eter +Ġsl aying +ĠY ar +Ġcompl ication +I owa +ĠEric a +ĠBL M +g irlfriend +b odied +6 26 +19 63 +Ġintermedi ary +Ġcons olation +M ask +ĠSi em +ow an +Beg inning +Ġfix me +Ġculmin ated +Ġcon duc +ĠVolunte er +Ġpos itional +Ġgre ets +ĠDefin itions +Ġthink er +Ġingen uity +Ġfresh men +ĠMom ents +Ġ35 7 +ate urs +ĠFed Ex +s g +69 4 +Ġdwind ling +ĠBO X +sel age +Ġt mp +Ġst en +ĠS ut +Ġneighbourhood s +Ġclass mate +f ledged +Ġleft ists +Ġclim ates +ATH ER +ĠScy the +ul iffe +Ġs ag +Ġho pped +ĠF t +ĠE ck +ĠC K +ĠDo omsday +k ids +Ġgas ped +Ġmon iker +ĠL od +ĠC FL +t ions +r ums +fol ios +Ġm d +Ġunc anny +Ġtrans ports +ĠLab rador +Ġrail ways +Ġappl iance +ĠCTR L +æ Ģ +Pop ulation +ĠConfeder acy +Ġunb earable +Ġdors al +ĠIn form +op ted +ĠK ILL +Mar x +Ġhypoc ritical +q us +ĠN umerous +ĠGeorg ian +ĠAmbro se +ĠL och +Ġgu bernatorial +ĠX eon +ĠSupp orts +ens er +ee ly +ĠAven ger +19 65 +Ar my +Ġju xtap +Ġcho pping +ĠSpl ash +ĠS ustainable +ĠFin ch +Ġ18 61 +ict ive +at meal +ĠG ohan +Ġlights aber +ĠG PA +ug u +ĠRE PL +vari able +Ġher pes +Ġdesert s +ac iously +Ġsitu ational +week ly +ob l +Ġtext ile +ĠCorn wall +Ġcontrace ptives +ĠA ke +] - +ä¹ ĭ +: , +ĠW em +ĠB ihar +Ġ' . +Ġbe re +Ġanal ogue +ĠCook ies +Ġtake off +Whe el +Ġmaj estic +Ġcomm uting +0 23 +ĠCor pse +ass ment +min i +Ġgor illa +ĠAl as +ere e +Ġacquaint ances +ĠAd vantage +Ġspirit ually +Ġey ed +pm wiki +ĠE nder +Ġtrans lucent +Ġnight time +ĠIM AGES +5 45 +ĠK amp +ĠFre ak +Ġ ig +Port land +4 32 +ĠM ata +Ġmar ines +Ġh ors +ater asu +ĠAtt ribution +Ġ-------- - +Ġk ins +ĠBEL OW +++ + +Ġre eling +ol ed +Ġcl utter +ĠRel ative +Ġ4 27 +B US +Ġa vert +ĠChe ong +ĠA ble +ĠPry or +Develop er +Ġen cyclopedia +ĠUSA F +ĠG arry +Sp ain +Bl ocks +Ġexp osition +ĠGamer Gate +W OR +Ġstockp ile +Ġclot hed +ĠT one +ĠR ue +t umblr +Ġtreacher ous +Ġf rying +Ñ Į +ĠS ph +Ġrest raints +Ġemb odies +ĠG es +S afety +Ġnegoti ators +min ing +ĠAppalach ian +L OS +ĠJenn a +Ġpass ers +ç ĭ +sn ap +Ġshort en +creat or +Ġinn umerable +uther land +67 4 +ĠW OM +ĠAs cend +ĠArm ory +ĠTrans action +K ick +Ġsuit case +day Name +Ġwaste ful +mar riage +ĠMcC abe +ite ch +ĠO ss +Cl osure +ĠTreasure r +Ġindec ent +ĠD ull +Ġresid ences +19 59 +ĠS ettlement +Ham ilton +Ġself ies +ĠRank ing +ĠBark ley +ĠB ore +ĠW CS +ĠMar itime +ĠH uh +ĠForest ry +Ġcultiv ating +ĠBall ard +Ġg arrison +ĠSD L +9 30 +Ġnas cent +Ġirresist ible +Ġaw fully +\/ \/ +Ġequ ate +Ġanthrop ology +ĠSylv ia +Ġintest ine +Ġinnoc uous +cess ive +ag ra +ĠMet roid +G rant +8 55 +ģ ĸ +Ġ" _ +ãĥĥ ãĥī +Ġappra isal +ĠFred dy +04 6 +Ġ40 6 +Ġ18 30 +Ġd ocking +St atic +Ġp ont +ĠVolt age +ĠSt ead +ĠMort gage +ĠJon ah +Y L +CLASS IFIED +Ġas bestos +nik ov +Ġcoll agen +ĠOrb ital +P ocket +7 99 +Ġhy brids +inc hes +Ġinv oice +und y +Ġinequ alities +T rend +w ashed +B ALL +Ġluc id +ĠComment ary +Ġw itty +Br andon +Ġbru ising +Ġ6 20 +es cent +box ing +P OL +Ġ3 78 +R ect +Ġlic ences +ĠMcG ee +p ressed +D anny +Ġj ammed +ord inate +Ġle th +Ġdistingu ishes +ĠYam aha +IL S +ĠH ume +ĠC ategories +Rober ts +Ch art +Ġbeet le +ĠGra veyard +Ġ($ ) +o ÄŁ +Ġtw ilight +are lla +á ½ +Ġbooth s +ĠH HS +ĠFeld man +Ġexcav ation +Ġphilosoph ies +at ography +ĠGar age +te chnology +Ġunfor gettable +Ġver ifying +Ġsubord inates +E ls +Ġne b +G aming +EN A +ĠAchieve ment +it ters +ĠG abe +Ġd umps +for cer +Ġpo ignant +ĠM BA +ĠHe idi +ime i +Ġm ages +Ġliber ate +Ġcircum cised +ĠMer maid +ĠMat th +t ogether +ĠW ichita +Ġstore front +ĠAd in +V II +Four th +Ġexplore rs +W ER +Not able +Bro ok +m ens +F aith +-------- - +ĠJ ou +¬ ¼ +Ġpine apple +Ġam alg +el n +ark able +ĠãĤµ ãĥ¼ãĥĨãĤ£ +ĠãĤµãĥ¼ãĥĨãĤ£ ãĥ¯ãĥ³ +Ġov arian +ĠE choes +Ġhairc ut +Ġp av +Ġch illed +anas ia +Ġsty led +Ġd ab +ni per +Ġminister ial +ĠD UP +T an +Ġsul ph +ĠD eter +ĠBo hem +od an +Ġeduc ator +â ĵĺ +sp ir +Ch icken +ĠE leanor +Ġqu i +Ġheav iest +Ġgrasp ed +U RA +Ġcro oked +Jess ica +pro blem +Ġpred etermined +Ġman iac +Ġbreath s +ĠLauder dale +Ġh obbies +y z +Cr ime +Ġcharism a +d L +Ġle aping +Ġk ittens +Ang elo +ĠJ ACK +ĠSu zanne +Ġhal ting +ENT ION +Ġswall owing +ĠEarthqu ake +Ġeight eenth +ĠN IC +ĠIN F +ĠCons cious +Ġparticular s +circ le +7 40 +Ġbene volent +Ġ7 47 +Ġ4 90 +Ġr undown +ĠVal erie +ĠB UR +Ġcivil isation +ĠS chn +W B +ot ide +intern ational +Ġj ohn +Ġ19 02 +Ġpe anuts +Ġflav ored +k us +Ġro ared +Ġcut off +é £ +Ġorn ament +Ġarchitect ures +Ġ3 69 +ol or +ĠWild e +ĠC RC +ĠAdjust ed +Ġprov oking +land ish +Ġrational ity +Ġjust ifies +Ġdisp el +Ġa meric +ĠPol es +Ø © +Ġen vis +ĠD oodle +ä½ ¿ +igs aw +auld ron +Techn ical +T een +up hem +ĠX iang +Ġdetract ors +ĠZ i +ĠJournal ists +Ġconduc ive +ĠVolunte ers +Ġs d +Know ing +Ġtrans missions +ĠPL AN +ĠL IB +Ġall uded +Ġob e +Ġd ope +ĠGold stein +Ġwavelength s +ĠDest ination +nd a +ug i +Ġattent ive +ĠLe an +ral tar +Ġman g +mb uds +ak ings +b ender +Ġacc ol +Ġcraw led +N OW +Min nesota +Ġflour ished +ĠZ up +ĠSuper visor +ĠOliv ier +Ex cellent +Ġwid en +D one +Ġw ig +Ġmiscon ceptions +Cor p +W an +Ġvener able +ĠNot ably +ĠKling on +an imate +Bo ost +ĠS AY +miss ing +ibli ography +mel on +Ġpay day +Ø ³ +bo le +Ġve iled +ĠAl phabet +It alian +Ġever lasting +ĠR IS +ĠC ree +rom pt +Ġh ating +Ġgrin ning +Ġge ographically +OS H +Ġwe eping +ĠÂłĠÂłĠÂłĠÂł ĠÂłĠÂłĠÂłĠÂł +Ġimpe cc +Let ter +Ġblo ated +PL A +ĠFe in +Ġper sever +Th under +Ġa ur +ĠR L +Ġpit falls +âĸ º +Ġpredomin ant +Ġ5 25 +7 18 +AP E +7 14 +Ġfarm land +ĠQ iao +Ġv iolet +ĠBah amas +Ġinflic ting +ĠE fficiency +Ġhome brew +Ġundert ook +Ġcur ly +ĠHard ing +man ia +59 6 +Ġtem pered +Ġhar rowing +ĠP ledge +ĠFranken stein +è ª +M otion +Ġpredict ably +ĠExpl osion +oc using +er d +col o +FF ER +Ġback field +ĠV IDE +ue bl +N arr +ĠArg ument +Ġgen omic +Ġbout ique +Ġbatt ed +ĠB inary +Ġg amb +ĠRh ythm +67 3 +Ġa float +ĠOlymp ia +Y ING +Ġend if +is in +Ġwin ters +Ġsc attering +I v +D istance +Ġtr u +ĠCom fort +Ġne xus +Ġair flow +ĠByz antine +p ayers +con i +ĠB etsy +D eal +ĠN ug +ĠContin ent +red ibly +Ġoptim izing +al beit +Ġec static +ĠPro to +ç · +iv ot +âĸ Ħ +em p +rou nder +Ġcl out +ĠI ST +66 3 +ĠDoll ars +ĠD AC +Ġsubsc ribed +Ġrehears al +Ġam ps +ĠSh ang +es m +Ġspr inkle +Ġassail ant +ĠO o +ĠCoin base +T act +Ġret ina +Ġn uns +R ON +att o +Ġj ug +ĠSV G +Ġb ikini +ĠFI LE +ĠFound ers +ep ort +ĠK P +Ġrest ores +ĠTh ick +Ġash ore +Ġappro vals +R ender +M AG +G raham +ĠCort ana +ãĥ³ ãĤ¸ +ss h +or ians +ars ity +ĠInsp ired +u pper +Ġsign alling +Ġreb uke +Ġfl ares +Ġdownt ime +Stud ies +Ġstagn ation +ĠSequ ence +Ġgr unt +Ġass ures +ĠPL A +59 2 +Ġintra ven +d epend +Sus an +ĠManz iel +Man ia +Cont ract +Ġsl ams +Ġcult ured +Ġcred itor +L IST +ĠH UM +ĠChatt anooga +serv ed +Ġclo aked +ĠF TP +p owder +ĠSt ella +uct ive +Ġcheap ly +ĠMU CH +ĠGalile o +Ġsu ites +spe ech +Ġdeliber ations +ĠCh ips +« ĺ +Bal ance +ĠWyn ne +ĠAk ron +Ass et +Ġhon oured +Ġed ged +Like wise +anim ous +ĠW age +ĠEz ek +ad vertisement +ĠRT X +ĠM AD +Ġmigr ating +ĠS QU +Ġ4 75 +Ed ited +Ġshorth and +ĠBas ics +Ġcro tch +ĠEV EN +Ġv m +effic iency +Ġcal ves +ĠF rie +ĠBrill iant +Ġstri kers +Ġrepent ance +Ġarter ies +r l +B ed +h ap +Ġcrypt ography +ĠSab res +Ġ4 14 +vi ks +ih ara +aps es +T alking +Ġintertw ined +Ġdoc ks +Ġalle le +ĠArt ifact +ĠH IM +t orn +ç ķ +Ġop acity +ĠE ly +os uke +Ġn ipple +Ġhand written +ĠV K +ĠChamber lain +ĠLa os +ig raph +g row +Ġtr illions +Ġdescend ant +ĠSail or +as uring +Ġce ilings +ĠWare house +f lying +ĠGl ow +Ġn ont +Ġmiscar riage +Ġrig s +Ġmin istries +Ġelabor ated +Ġdel usional +ĠHum ane +Ġ3 79 +n ets +Ġblack out +add ers +Ġn p +ĠT ire +ro sc +Ġsub div +Ġlink age +Ġchron ological +ĠHER O +Ġres ettlement +ĠVin yl +Ġpast oral +ĠMob il +ĠBar bar +Co oldown +ĠF ritz +c riminal +re pe +Ġbell ig +ĠBre ed +Ġ4 18 +Ġsem blance +ij k +Ġcur tail +Ġclin ch +cont ained +ĠProm pt +ast on +Ġw i +Ġpursu its +5 15 +ĠGl oss +Ġfl ips +Ġcoup ons +Ġcl oning +ĠLike ly +Rem oved +ĠQu artz +r ices +ĠSpe ars +Ġp ious +Ġdep reciation +ĠD are +oun ces +am az +O nt +Ġp innacle +d ocker +0 26 +ĠW yr +ĠPro per +Ë Ī +n il +By tes +Ġseek er +t rial +Ġunf olds +ĠMar se +Ġextravag ant +ĠSurviv ors +RED ACTED +ĠSpeed way +ĠCra igslist +sub mit +ĠGener ations +Ġup holding +Ġblood stream +ĠMiss ions +ĠL awn +Ġlim bo +ene i +H uh +ĠWild cats +pre p +ĠMark us +ĠFor bidden +rit ic +IN O +Ġexhib iting +requ ent +ch uk +Ġhabit ual +ĠComp atibility +Dr ag +RIP T +uj ah +GR OUND +Ġdelinqu ent +Ġburn er +Ġcontempor aries +Ġgimm ick +load s +Ġno zzle +p odcast +ĠW ak +ĠStat en +ĠK uh +ãģ ĵ +inter rupted +Ġinv incible +ĠBurn ett +cig arette +ĠPeb ble +ĠTem porary +ĠMar ino +58 2 +Ġwast eland +ident ly +T x +Ġr ite +ĠPan asonic +ĠM iddles +ĠHort on +ae us +Ġc uring +Ġm ats +Ġadj ourn +Ġfears ome +pe z +bo ats +Ġpro pell +Ġconflic ted +ĠAng er +Ġinsurg ent +K arl +Ġco ales +Ġsouth western +Ġdis su +ĠO vert +******** **** +Ġbox ed +ĠBr une +aa a +Ġgard ening +ĠEng el +tr acks +Ġpur ified +Ġplace holder +ĠL ikes +Ġd an +G ab +Ġe ct +ĠF aw +ĠEl iot +Ġ' , +otrop ic +ĠRu in +hed on +Ġca ul +Ġa ft +ĠCad illac +gh a +ass ian +ud eb +ĠT ick +Ġadjust s +AR GET +5 37 +isc he +ant y +ĠFried rich +ĠBl izz +ĠA OL +Camp aign +Ġmamm al +ĠVe il +ĠK ev +ĠMaur it +ĠDam ien +N ation +E astern +Ġ{ : +Ġ= ================================ +Ġstereotyp ical +Ġatt ic +ĠCy borg +requ ire +Ġaward ing +ĠPap ua +bt n +b ent +B oo +Ġ( = +ĠX ander +ĠSomers et +Ġcatch y +Ġcert ify +STR UCT +Ġit al +Ġt ides +ĠBr ands +G ray +comp etitive +Ġcur ator +ĠD G +omin ium +ĠGM Os +ci ating +ĠCarm en +ow ard +Balt imore +Ġr gb +C u +Ġwip es +spe ll +IT NESS +Ġsummar izes +ĠRe vis +Ġwhistlebl owers +ĠBre ach +Ġcro chet +k os +ews ki +Ġrep et +Ġcrim son +ĠKar achi +read able +dim ension +ĠI gor +ild ed +ĠZ ed +ĠKe ane +ĠCos metic +DE P +Ġretreat ing +ĠU A +ens ical +Ġd usk +ĠDick ens +Ġaren as +ĠPass age +level s +Ġcur v +P ope +Ġch ores +ĠEl ise +ĠComp ass +b ub +Ġmamm alian +ĠSans krit +ĠAN C +ĠCr ack +Q ual +L aun +amp unk +Ġlearn ers +Ġglam orous +Ġfur the +erm ott +c and +Gener ic +Ġnarr ated +Ġdisorder ly +ĠTrans actions +ĠDet ention +ĠR oku +Ä į +Ġunder statement +ĠS aur +ĠRodrig o +ĠAS AP +S in +Ġre joice +Method s +Ġelectro de +Ġworsh ipped +Ġid i +ĠPhys icians +Ġpop up +Ġde ft +ĠRem oval +ĠBu enos +ver bs +Ġfun k +ush a +rict ion +ore a +ĠBang alore +ĠKen obi +zz i +Ġnorm ative +Ġgobl ins +Ġcaf es +ĠUN CLASSIFIED +ĠF ired +S IGN +Ġs clerosis +ĠV oter +ĠSon ny +ĠExt end +ĠEV s +Ar senal +Ġp si +Ġwid est +ĠT us +Ġlo oms +Ġjust ifying +ĠGr anger +è ¯ +Ref er +58 3 +Ġflour ishing +ab re +Ġr ave +ĠCont ra +Ġ18 98 +Add s +Ġf ul +ĠCo oke +some one += # +67 1 +Ġy ak +Ġar te +ĠMis cellaneous +ĠDet ection +ĠCl ancy +â ģ +ass ies +Ġval iant +ĠFemin ist +cor ruption +V el +P ear +Ġsucc inct +Ġquick est +k w +Ġsp itting +ĠL ibraries +åħ ī +ant z +D ad +ĠSpec ifications +rup ulous +and r +RES ULTS +Ġsnow ball +Ġpred is +ĠB axter +ĠNurs ing +ĠCh aff +s we +Ġout age +Ġnest ing +Ġnotor iety +tr igger +on ite +j on +Ġf ou +ook ed +ĠCelebr ity +re ality +Ġfat ig +Ġhug ging +Ġbother s +ĠPan zer +ĠCh andra +fig ured +Ġvol ts +ĠCloud s +Ġfee ble +ĠCur ve +ĠAs us +78 6 +abs or +ĠV ICE +ĠH ess +Ġmanufact ures +Ġgri zz +ĠPower ful +ac id +Ġsub sections +ĠKrug man +ĠAl ps +is u +Ġsequ est +ĠUlt ron +ĠT inker +ĠGo ose +Ġmism atch +Att orney +Ġmorph ology +ĠSix ers +ut tered +ĠE LECT +gr an +Rus sell +ĠG SL +Ġfort night +Ġ. ) +Ġapost le +pr one +el ist +Unt itled +ĠIm plementation +ist ors +Ġtank er +Ġpl ush +Ġattend ants +ĠT ik +ĠGreen wich +ĠY on +ĠSP L +cell s +unt led +S olution +ĠQu é +Ġvac ated +Ġupt ick +ĠMer idian +æ ĥ +ĠDr ill +9 25 +58 4 +Ġrenov ated +ĠKub rick +zy k +Ġl ousy +pp el +ohyd rate +ĠI zzy +lesi astical +CC C +ĠAj ax +Ġad apters +ĠPetra eus +Ġaffirm ation +ĠST OR +le ms +ad oes +ĠConstantin ople +Ġp onies +Ġl ighthouse +Ġadherent s +ĠBre es +omorph ic +Fight ing +Ġpl aster +ĠP VC +ĠOb st +Ġdear ly +ĠTo oth +icks on +Ġsh aming +P lex +A gg +Ġâ̦ " +Ġsub reddits +Ġpige on +ĠResident ial +ĠPass ing +Ġl um +ĠP ension +Ġpessim istic +Ġ4 32 +z inski +c ade +0 75 +Ġapolog ised +iy ah +Put ting +Ġgloom y +ĠLy me +=-=-=-=- =-=-=-=- +ĠT ome +ĠPsych iatric +ĠH IT +c ms +ap olog +Ġbreak er +Ġdeep en +Ġtheor ist +ĠHigh lands +Ġb aker +Ġst aples +Ġinterf ered +ĠAb ortion +jo ined +ch u +Ġform ulate +Ġvacc inations +Ġban ter +phe us +Ġoutfield er +ĠM eter +Ġ# #### +Ġ18 95 +Ġnarrow ing +ĠST ORY +f p +ĠC ST +ign ore +Ġproclaim ing +ĠR U +ĠB ALL +yn a +65 3 +Ġpos it +P RE +59 4 +ĠRegist rar +ĠPil grim +ic io +Ġpre tt +Ġlif eless +Ġ__ _ +Ne igh +ĠCh urches +orn o +Ġor cs +Ġkind red +ĠAud it +Ġmillenn ial +ĠPers ia +g ravity +ĠDis ability +ĠD ARK +W s +od on +Ġgrand daughter +ĠBro oke +ĠA DA +ER A +Ġpick ups +ĠWil kinson +ĠSh ards +ĠN K +Ġexp el +ĠKis lyak +Ġj argon +Ġpolar ized +ian e +Pub lisher +Ġreb utt +Ġapprehens ion +ĠK essler +Ġpr ism +F UL +19 64 +ĠL oll +ä ¿ +le thal +Å Ł +Ġg hetto +Ġb oulder +ĠSlow ly +ĠOsc ars +ĠInst ruction +ĠUl tr +ĠM oe +N ich +ĠP ATH +( * +ĠRE LEASE +un ing +rou se +en eg +Ġre imb +ĠDet ected +Do S +Ġster ling +Ġaggreg ation +ĠLone ly +ĠAtt end +hig her +Ġairst rike +ks on +SE LECT +Ġdef lation +ĠHer rera +C ole +rit ch +Ġadvis able +F ax +Ġwork around +Ġp id +mort em +ers en +Ġtyp o +Ġal um +78 2 +ĠJam al +script s +Ġcapt ives +ĠPres ence +ĠLie berman +angel o +Ġalcohol ism +ass i +Ġrec ite +Ġgap ing +Ġbask ets +ĠG ou +Brow ser +ne au +Ġcorrect ive +und a +sc oring +ĠX D +Ġfil ament +Ġdeep ening +ĠStain less +Int eger +Ġbu ggy +Ġten ancy +ĠMub arak +Ġt uple +ĠD roid +ĠS itting +Ġforfe it +ĠRasm ussen +ixt ies +es i +ĠKim mel +Ġmetic ulously +Ġap opt +ĠS eller +08 8 +ec ake +hem atically +T N +Ġmind less +Ġdig s +ĠAcc ord +ons ense +em ing +br ace +Ġe Book +ĠDist ribut +ĠInvest ments +w t +] ), +beh avior +56 3 +Ġbl inding +ĠPro testers +top ia +Ġreb orn +ĠKel vin +ĠDo ver +ĠD airy +ĠOut s +Ġ[ / +Ï Ģ +b p +ĠVan ity +ĠRec ap +ĠHOU SE +ĠF ACE +Ġ4 22 +69 2 +ĠAnt ioch +cook ed +Ġcoll ide +Ġa pr +Ġsle eper +ĠJar vis +Ġalternative ly +ĠLe aves +ĠM aw +Ġantiqu ity +ĠAdin ida +Ġab user +Poké mon +Ġass orted +ĠRev ision +ĠP iano +ĠG ideon +O cean +Ġsal on +Ġbust ling +ogn itive +ĠRah man +Ġwa iter +Ġpres ets +ĠO sh +ĠG HC +oper ator +Ġrept iles +Ġ4 13 +ĠG arr +ĠCh ak +Ġhas hes +Ġfail ings +Ġfolk lore +Ġab l +ĠC ena +ĠMac Arthur +ĠCOUR T +Ġperipher y +app ers +Ġreck oned +ĠInf lu +ĠC ET +Ġ3 72 +ĠDefin itive +ass ault +4 21 +Ġreservoir s +Ġd ives +ĠCo il +DA Q +Ġvivid ly +ĠR J +ĠBel lev +Ġec lectic +ĠShow down +ĠK M +ip ed +reet ings +ĠAs uka +L iberal +ĠÏ Ħ +Ġbystand ers +ĠGood win +uk ong +S it +ĠT rem +Ġcrim inally +ĠCirc us +ch rome +88 7 +Ġnan op +ĠOb i +ĠL OW +o gh +ĠAuth ors +ob yl +Ur ban +Ġt i +ĠWe ir +t rap +ag y +Ġparent heses +Ġout numbered +Ġcounter productive +ĠTob ias +ub is +P arser +ST AR +Ġsyn aptic +ĠG ears +Ġh iber +Ġdebunk ed +Ġex alted +aw atts +H OU +Ch urch +ĠPix ie +ĠU ri +ĠForm ation +ĠPred iction +C EO +Ġthro tt +ĠBrit ann +ĠMad agascar +ë ĭ +Ġbill boards +ĠRPG s +ĠBe es +complete ly +F IL +Ġdoes nt +ĠGreen berg +re ys +Ġsl ing +Ġempt ied +ĠPix ar +ĠDh arma +l uck +ingu ished +Ġend ot +Ġbab ys +05 9 +che st +r ats +Ġr idden +Ġbeet les +Ġillum inating +Ġfict itious +ĠProv incial +Ġ7 68 +Ġshe pherd +ĠR ender +Ġ18 96 +C rew +Ġmold ed +ĠXia omi +ĠSp iral +Ġdel im +Ġorgan ising +Ġho ops +ĠBe i +z hen +Ġfuck in +Ġdec ad +Ġun biased +am my +sw ing +Ġsmugg led +Ġk ios +ĠP ERSON +ĠInquis itor +Ġsnow y +Ġscrap ing +ĠBurg ess +P tr +ag ame +R W +Ġdro id +ĠL ys +ĠCass andra +Jac ob +Ġ35 4 +Ġpast ure +Ġfr anc +ĠScot ch +ĠEnd s +ĠI GF +def inition +Ġhyster ical +ĠBrown e +77 1 +Ġmobil ization +æ ķ +iqu eness +Th or +Ġspear headed +Ġembro iled +Ġconject ure +jud icial +Ch oice +Ġpaper back +P ir +Ġrec overs +ĠSur ge +ĠSh ogun +ĠPed iatrics +ãģ ł +Ġsweep s +ĠLabor atories +ĠP acks +al us +add in +Ġhead lights +g ra +Ev idence +COL OR +Ad min +Ĭ ± +Ġconco ct +s ufficient +Ġun marked +Ġrich ness +Ġdiss ertation +Ġseason ing +Ġg ib +ĠM ages +un ctions +ĠN id +che at +ĠTM Z +c itizens +ĠCatholic ism +n b +Ġdisemb ark +ĠPROG RAM +a ques +Ty ler +Or g +ĠSl ay +ĠN ero +ĠTown send +IN TON +te le +Ġmes mer +9 01 +Ġfire ball +ev idence +aff iliated +ĠFrench man +ĠAugust a +0 21 +Ġs led +Ġre used +ĠImmun ity +Ġwrest le +assemb led +Mar ia +Ġgun shots +ĠBarb ie +Ġcannabin oids +ĠTo ast +ĠK inder +IR D +Ġre juven +Ġg ore +Ġrupt ure +Ġbre aching +ĠCart oon +Ġ4 55 +ĠPale o +6 14 +Ġspe ars +ĠAm es +ab us +Mad ison +GR OUP +Ġab orted +y ah +Ġfel on +Ġcaus ation +Ġprep aid +Ġp itted +op lan +ĠShel ley +ĠRus so +ĠP agan +Ġwill fully +ĠCan aver +und rum +ĠSal ary +ĠAr paio +read er +ĠR ational +ĠOver se +ĠCa uses +Ġ* . +Ġw ob +Ke ith +ĠCons ent +man ac +77 3 +6 23 +Ġfate ful +et imes +Ġspir ited +ĠD ys +Ġhe gemony +Ġboy cot +ĠEn rique +em outh +Ġtim elines +ĠSah ara +ĠRel ax +ĠQuin cy +ĠLess ons +ĠE QU +SE A +N K +ĠCost co +Incre ase +Ġmotiv ating +ĠCh ong +am aru +ĠDiv ide +Ġped igree +ĠTasman ia +ĠPrel ude +L as +9 40 +57 4 +Ġch au +ĠSp iegel +un ic +-- > +ĠPhil ips +ĠKaf ka +Ġuphe aval +Ġsent imental +Ġsa x +ĠAk ira +ser ial +Mat rix +Ġelect ing +Ġcomment er +ĠNeb ula +ple ts +ĠNad u +ĠAd ren +Ġen shr +ĠR AND +fin ancial +ĠCly de +uther ford +Ġsign age +Ġde line +Ġphosph ate +rovers ial +f ascist +ĠV all +ĠBeth lehem +Ġfor s +Ġeng lish +S olid +N ature +Ġv a +ĠGu ests +Ġtant al +Ġauto immune +;;;;;;;; ;;;; +ĠTot ally +ĠO v +Ġdef ences +ĠCoc onut +Ġtranqu il +Ġpl oy +Ġflav ours +ĠFl ask +ãĤ¨ ãĥ« +ĠWest on +ĠVol vo +8 70 +Ġmicro phones +ver bal +R PG +Ġi ii +; } +0 28 +Ġhead lined +Ġprim ed +Ġho ard +ĠSh ad +ĠEN TER +Ġtri angular +Ġcap it +l ik +ĠAn cients +Ġl ash +Ġconv ol +Ġcolon el +en emy +G ra +Ġpub s +ut ters +Ġassign s +ĠPen et +ĠMon strous +ĠBow en +il ver +H aunted +ĠD ing +start ed +pl in +Ġcontamin ants +ĠDO E +ff en +ĠTechn ician +R y +Ġrob bers +Ġhot line +ĠGuard iola +ĠKau fman +row er +ĠDres den +ĠAl pine +E lf +Ġf mt +ĠS ard +urs es +g pu +Un ix +Ġunequiv ocally +ĠCitizens hip +qu ad +m ire +ĠS weeney +B attery +6 15 +Ġpanc akes +Ġo ats +M aps +ĠCont rast +mbuds man +ĠE PS +Ġsub committee +Ġsour cing +Ġs izing +ĠBuff er +ĠMand atory +Ġmoder ates +ĠPattern s +ĠCh ocobo +ĠZ an +ĠSTAT ES +ĠJud ging +ĠIn her +* : +Ġb il +ĠY en +Ġexh ilar +oll ower +z ers +Ġsn ug +max imum +Ġdesp icable +ĠP ACK +ĠAn nex +Ġsarcast ic +Ġlate x +Ġt amp +ĠS ao +b ah +ĠRe verend +ĠChin atown +ĠA UT +d ocumented +ĠGA BA +ĠCan aan +ĠÙ ħ +Ġgovern s +pre v +E sc +ĠEst imates +OS P +Ġendeav our +ĠCl osing +omet ime +every one +Ġwor sen +Ġsc anners +Ġdev iations +ĠRobot ics +ĠCom pton +Ġsorce rer +Ġend ogenous +Ġem ulation +ĠPier cing +ĠA ph +ĠS ocket +Ġb ould +ĠO U +ĠBorder lands +Ġ18 63 +G ordon +ĠW TO +Ġrestrict s +Ġmosa ic +Ġmel odies +ç Ħ +T ar +Ġdis son +ĠProv ides +Ġ ...... +b ek +F IX +Ġbro om +ans hip +Do ctors +Ġner ds +ĠReg ions +na issance +Ġmet e +Ġcre pt +pl ings +Ġgirlfriend s +kn it +ig ent +ow e +Ġus hered +ĠB az +M obil +4 34 +ĠPres ents +orig in +Ġins omnia +ĠA ux +4 39 +ĠCh ili +irs ch +G AME +Ġgest ation +alg ia +rom ising +$ , +c row +ĠIn spection +at omic +Rel ations +J OHN +rom an +ĠClock work +ĠBak r +m one +M ET +Ġthirst y +Ġb c +Ġfacult ies +R um +Ġnu ance +ĠD arius +ple ting +fter s +etch up +Reg istration +ĠK E +R ah +Ġpref erential +ĠL ash +ĠH H +Val id +ĠN AV +Ġstar ve +ĠG ong +z ynski +ĠAct ress +Ġw ik +Ġun accompanied +lv l +Br ide +AD S +ĠCommand o +ĠVaugh n +Wal let +Ġho pping +ĠV ie +Ġcave ats +Ġal as +if led +ab use +66 1 +Ġib n +Ġg ul +Ġrob bing +t il +IL A +Ġmit igating +Ġapt ly +Ġty rant +Ġmid day +ĠGil more +ĠDe cker +Ġ§ § +part ial +Ex actly +Ġphen otype +Ġ[+ ] +ĠP lex +ĠI ps +vers ions +Ġe book +Ġch ic +g ross +":" "},{" +ĠSur prisingly +M organ +Ġresid ues +ĠConf ederation +in feld +Ġl yr +mod erate +Ġperpend icular +V K +Ġsynchron ized +Ġrefres hed +Ġad ore +ĠTor ment +ol ina +Ġ26 00 +Item Tracker +Ġp ies +ĠF AT +ĠR HP +0 48 +ĠRES P +ĠB J +all ows +P and +Ġunw elcome +ĠV oc +ĠBast ard +ĠO W +ĠL AR +ĠHeal er +Environment al +ĠKen yan +ĠTr ance +ĠP ats +Ġali ases +ĠGar field +Ġcampaign er +Ġadvance ments +ĠOkin awa +ĠC oh +ows ky +Ġstar ved +Ġsize able +Ġ: -) +Ġm RNA +Ġsusp ensions +ist ar +Scot land +Pr in +-------------------------------- ---------------- +Ġ50 2 +Ġteasp oons +Ġ10 50 +Ġcoerc ive +ĠMason ic +edd ed +ĠPass enger +Ġl att +Ġbr aces +ĠSt eal +ĠNY T +ĠK ats +ĠCel est +ae z +T u +ĠCoul ter +ðŁ ĺ +Fl ickr +ĠWil mington +ith s +++ ; +Ġv ending +Ġneg ro +ĠPh i +ĠYellow stone +Call back +Ġsh ampoo +ĠSh ades +w at +Ġsuper human +Ġridic uled +Ġhol iest +om bo +Ġintern s +Ġh one +ĠPar agu +UR I +Ġd angling +ãĤ » +so v +ict ional +av ailability +Ġrev ocation +Ġd ow +in ic +ĠTHE IR +Ġis o +Ġout ings +ĠLeth al +Ġ) )) +Ġinacc ur +Ġout landish +Ġan us +let ico +id on +l ol +Ġun regulated +Ġsuccumb ed +Ġc uff +ĠWast eland +let al +Ġsub str +Ġcoff ers +Ġautom akers +ov i +ĠX ue +ĠDayton a +Ġjar ring +Ġf umes +Ġdisband ed +z ik +itt on +Ġstriking ly +Ġsp ores +Ad apter +.) : +ĠLynd on +ival ry +Ġor ally +Ġtumult uous +Ġdisple asure +Ġcon es +or rect +Ġappe ase +Ġder by +ĠTrip oli +ĠAl ess +Ġp oked +ĠGu ilty +v P +En ough +Ġorig inals +6 99 +Ġrabb i +Ġproverb ial +Ġpostp one +el ope +ĠMist y +Ġstaff ed +ĠUn employment +redit ary +Ġdilig ent +re comm +me asures +as in +8 25 +Ġpond s +Ġmm ol +ĠS AR +ĠC ARE +Ġ3 71 +Ġclen ched +ĠCors air +Ġcaric ature +z n +att ach +ĠSch ro +spe ak +p ainted +ĠS uc +ĠE NT +Ġcell ul +ĠP aid +di agn +WH ERE +Ġtext ed +B arn +Ġret racted +ĠRe ferred +S av +Ġup keep +Ġwork places +ĠTok ens +Ġampl ify +cl inical +Ġmult ic +mber g +Ġconvol uted +Reg ion +5 65 +ĠTop ic +Ġsn ail +Ġsal ine +Ġins urrection +ĠPet r +f orts +B AT +ĠNav ajo +Ġrud imentary +ĠLak sh +OND ON +Me asure +Ġtransform er +ĠGodd ard +Ġcoinc ides +ir in +R ex +ĠB ok +qu it +Ġshotgun s +Ġprolet arian +Ġsc orp +ĠAd a +5 14 +Ġsl ander +record ed +Ġemb ell +ris ome +Ġapolog izing +ĠMul cair +ĠGib raltar +Cl a +Ġall ot +ĠAtt ention +Ġ4 33 +le ave +Ġwh ine +ĠIss a +ĠFa ust +ĠBar ron +hen y +Ġvictim ized +J ews +Ġnurt uring +ett el +W inged +ĠSub tle +Ġflavor ful +ĠRep s +eng ed +call back +Ġdirection al +Ġcl asp +ĠDirect ions +plan et +icult ure +Hel per +ic ion +ac ia +Ġç ¥ŀ +Ġsur ges +Ġcan oe +ĠPrem iership +be en +Ġdef ied +ĠTro oper +Ġtrip od +Ġgas p +ĠE uph +ĠAd s +vern ight +high ly +R ole +Ġent angled +ĠZe it +6 18 +ĠRust y +Ġhaven s +ĠVaugh an +HA EL +ĠSER VICE +/ , +Ġstr icken +Ġdel usions +Ġb is +ĠH af +Ġgrat ification +Ġent icing +UN CH +Ad ams +ĠOL ED +ĠBeet le +Ġ18 99 +ĠSO FTWARE +ateg or +V L +ĠTot em +ĠG ators +AT URES +Ġimped ance +Reg istered +ĠC ary +ĠAer ial +on ne +en ium +Ġd red +ĠBe g +Ġconcurrent ly +Ġsuper power +ĠX an +j ew +imes ter +ĠDick inson +âĶ ģ +F la +Ġp ree +ĠRoll ins +© ¶æ +Ġden omination +ĠL ana +5 16 +Ġinc iting +sc ribed +j uries +ĠWond ers +app roximately +Ġsusp ending +Ġmountain ous +ĠL augh +oid al +N s +Det ect +) = +ĠL uthor +ĠSchwarz enegger +ĠMull er +ĠDev i +ec ycle +J ar +6 13 +ĠL ongh +B ah +ĠSP ORTS +n w +Ġref inement +Ġwater ways +Ġd iner +Bl ade +68 3 +F ac +Ġinitial s +Ġro g +Ġparan ormal +B UT +Ġ[ ( +ĠSw anson +ĠM esh +âĸ ¬ +Impro ve +ĠRad iation +ĠEst her +ĠE sk +ĠA ly +ik y +Ġir rad +ĠBuck ingham +Ġref ill +Ġ. _ +Re pe +CON CLUS +Ġdifferent iated +Ġchi rop +ĠAt kins +Pat tern +Ġexc ise +Ġcab al +N SA +ĠST A +ĠS IL +ĠPar aly +Ġr ye +ĠHow ell +ĠCount down +ness es +alys ed +Ġres ize +ãĤ ½ +Ġbudget ary +ĠStr as +w ang +Ġap iece +Ġprecinct s +Ġpe ach +Ġsky line +Ġ35 3 +pop ular +App earances +ĠMechan ics +ĠDev Online +S ullivan +Z en +Ġp u +op olis +5 44 +Ġde form +Ġcounter act +ĠL ange +Ġ4 17 +Con sole +77 4 +Ġnodd ing +Ġpopul ism +Ġhe p +Ġcoun selling +compl iance +U FF +Ġunden iably +Ġrail ing +ĠHor owitz +ĠSim one +ĠBung ie +Ġa k +ĠTal ks +x ff +fl ake +Cr ash +Ġsweat y +Ġban quet +ĠOFF IC +Ġinvent ive +Ġastron omer +ĠStam ford +ĠSc are +ĠGRE EN +olic ited +Ġr usher +Ġcent rist +ight ing +Ġsub class +Ġdis av +Ġdef und +ĠN anto +oci ate +m ast +Ġpac if +Ġm end +e ers +imm igration +ESS ION +Ġnumber ing +Ġlaugh able +ĠEnd ed +v iation +em ark +P itt +Ġmetic ulous +ĠL F +Ġcongrat ulated +ĠBir ch +Ġsway ed +Ġsemif inals +Ġhum ankind +m atter +ĠEqu ip +opa usal +S aid +ĠLay out +Ġvo icing +Ġth ug +Ġporn ographic +I PS +Ġmo aning +Ġgriev ance +Ġconf essions +esc al +TEXT URE +Aut hent +os aurus +P urchase +Ġreleg ation +al ter +ĠÂł Âł +Ġr iddled +Ġo gre +ĠLow ell +Occ up +E at +ĠHy der +ĠAdvis er +Com merce +H unt +ĠOr th +ĠComp etitive +ĠCL A +CD C +Ġsal ads +F le +Ġindustrial ized +` , +ĠO WN +Ġbec k +ĠPart icularly +oub t +Ġm M +ĠHuss ain +ĠChen nai +Ġ9 20 +Ġappoint ing +ĠCull en +,,,, ,,,, +Ġp ores +ver ified +Ġbi ochemical +em ate +Ġcoward ly +ĠHels inki +ĠEthiop ian +S OURCE +ER C +est ro +Ġbi otech +ĠS our +Ġbrew er +Bloom berg +Ġintens ify +Gl ass +an co +ĠF DR +gre SQL +ĠF ires +©¶æ ¥µ +ec o +100 1 +ĠHom eless +Ġinstant aneous +ĠH aste +ig el +D iamond +Ġp aving +Ġland fill +Ġd ads +h oun +: ] +Ġinc endiary +ĠLiving ston +ĠHil bert +ĠChe cks +st yles +in ators +ĠCl ive +ph rine +Ġchimpan zees +Ġp all +ĠJ M +ĠAad haar +ð Ŀ +Ġachie vable +dis abled +P ET +OOOO OOOO +M ot +Ġint angible +Ġbal let +ĠWe bs +ĠEst imated +Effect s +Ġb ailed +Josh ua +Ġturb ulence +Ġoccup ant +ĠDay light +Ġ36 1 +me et +Ġstat ically +Ġon look +Ġk i +il legal +Ġvel vet +Ġdehyd ration +Ġacqu ies +ĠRe z +ak ura +ĠU pton +at ro +Ġincomp rehensible +Ġback door +ĠRh ino +7 27 +Ġmath s +) + +Ġhe resy +Ġd f +ĠRoc he +ĠL ydia +Ġpanc reat +re ply +arre ll +Ġsolicit ation +Ġcirc adian +BI P +Ġfor ay +Ġcrypt ic +iz u +ime o +ĠTom ato +ĠH oms +ex amination +Ġqu arry +ĠVal iant +ĠJer icho +ĠIN CLUD +Ġ18 40 +5 19 +Ġres ists +Ġsnap shots +ĠSp ur +ĠAnt iqu +Log in +Ġbest selling +Ġant ic +ĠS utherland +ãĤ¢ ãĥ« +Ġ~ / +ĠP arm +è ĥ +P ages +int ensity +Ġimm obil +Ġ18 65 +zz o +Ġn ifty +Ġf entanyl +ĠPres ervation +op hen +Ġd arts +ĠD inosaur +po inters +ĠR ite +s uggest +aware ness +ĠSher idan +Ġst ances +Ġsor cery +Ġper jury +ĠNik ola +ie ver +Ġf iance +ĠJordan ian +ĠBall oon +Ġn ab +Ġk b +Ġhuman ities +ĠTan aka +hill ary +Ġconsult ancy +ĠZ ub +Ġrem ission +Ġconf id +CH Q +ĠF ug +Ġimpro vis +Y ep +/ _ +Ġunwilling ness +Ġport folios +05 5 +ĠInstruct or +aim an +Ġclaim ants +M bps +ĠBy e +re ceived +T weet +Ġind emn +ri z +am ara +N at +Ġeval uates +ĠL ur +ep ad +FO X +ĠTh ro +Ġrust y +Ġbed rock +ĠOp rah +J B +Ġmanip ulative +Ġwill ful +Ġrel apse +Ġext ant +The me +S ensor +ĠSt ability +go vern +Ġpo ppy +Ġkn ack +Ġins ulated +ĠT ile +ĠExt rem +Ġunt old +Ġconver ge +Ġref uel +ig roup +Ġdistort ions +Ġrav aged +Ġmechan ically +ĠRe illy +ĠN ose +ĠIncarn ation +ĠBeck y +abb ling +Ġt aco +Ġr ake +Ġmelanch oly +Ġillust rious +ĠDart mouth +Gu ide +ĠR azer +ĠBen z +Ult imate +ĠSur prise +Ġpage ant +off er +Who ever +Ġw iser +Ġchem ist +ĠHE LL +ĠBul k +Ġpl utonium +ĠCO VER +Ö ¼ +f ailed +Ġtire lessly +Ġinf ertility +ĠTr ident +ĠShow time +ĠC iv +V ice +requ ires +itt ance +Ġun controlled +interest ing +56 1 +Ġinnov ate +ateg ic +L ie +ĠS elling +U l +Ġsav ior +ĠT osh +Ġsw ast +P ASS +Ġr ink +Ġcard io +ĠI ro +ud i +Ġv antage +Ġv ans +ĠNi ño ++ = +Ġpropag ate +< ? +Ġmethod ological +204 39 +Ġtrig lycer +Ġing rained +ĠAn notations +arr anted +6 17 +ĠS odium +ĠA AC +techn ical +mult ipl +Ġ3 73 +å ĭ +Ġdec isively +Ġboost ers +Ġdessert s +ĠGren ade +Ġtest ifying +ĠSc ully +ID s +Ġlock down +ĠSc her +ĠR é +ĠWhit man +ĠRams ay +rem ote +Ġh ikers +ĠHy undai +Ġcons cientious +Ġcler ics +ĠSiber ian +ut i +is bury +Ġrel ayed +Ġqu artz +ĠC BI +seek ers +ull a +Ġweld ing +ĠSh al +ble acher +T ai +ĠSam son +Ġt umble +ĠInvest or +Ġsub contract +ĠShin ra +ow icz +j andro +d ad +Ġtermin ating +ĠNe ural +ä» £ +Ġleak age +ĠMid lands +ĠCaucas us +í ķ +c it +ll an +iv ably +ĠAlb ion +Ġ4 57 +Ġregist rations +Ġcomr ade +Ġclip board +0 47 +Ġdiscour aging +ĠO ops +Ad apt +Ġem path +n v +ĠPR OT +ĠDon n +ĠP ax +ĠB ayer +t is +Squ are +Ġfoot prints +part icip +ĠChile an +B rend +ind ucing +M agn +Ġclub house +ĠMagn um +Ġenc amp +ĠEth nic +uch a +ere y +Ġw atered +ĠCal ais +Ġcomplex ion +Ġsect s +Ġren ters +Ġbr as +oÄŁ an +Time out +Man agement +Ġinf ographic +P okemon +Cl ar +Ġloc ality +Ġfl ora +as el +P ont +Ġpop ulate +ĠO ng +Ġsubs istence +Ġa uctions +ĠMcA uliffe +ĠL OOK +br inger +Ġtit an +Ġmanif old +ĠâĹ ı +Ġcalibr ated +Ġcal iphate +ĠSH E +ĠCommission ers +ce ivable +j c +W inner +5 24 +Ġcond one +Other wise +Ġp iling +Ġem body +ĠCrime an +ut ics +ĠEx hibition +Ġ4 26 +e ering +Ġv ying +ĠH UGE +* =- +Ġprin cipled +à ¦ +Ġquir ks +ĠEdit ors +put ing +G ES +ĠF TA +ठ¾ +add on +ĠH AM +ĠFrie za +W oman +. $ +Ġc rib +ĠHer od +Ġtim ers +ĠSp aces +ĠMac intosh +at aka +Ġgl ide +Ġsmell ing +ĠB AL +Ġun su +Ġcond os +Ġbicy cl +ĠRev ival +55 3 +Ġjugg ling +H ug +ĠKardash ian +ĠBalk ans +mult iple +Ġnutrit ious +oc ry +19 00 +Ġinteg rates +Ġad joining +ĠF older +roll ment +ven ient +Ġu ber +y i +Ġwh iff +ĠJu ven +ĠB orough +net te +Ġb ilingual +ĠSp arks +ph thal +man ufact +Ġt outing +ĠPH I +Ke efe +Rew ard +Ġinf all +ĠTem per +typ ically +ĠNik ol +Ġregular s +Ġpseud onym +Ġexhib itions +Ġbl aster +Ġ40 9 +w arming +Ġrever ber +Ġrecip rocal +Ġ6 70 +ip ient +b ett +ĠBe gins +Ġit ching +ĠPh ar +Ass uming +Ġem itting +ĠML G +Ġbirth place +Ġt aunt +ĠL uffy +ĠAm it +Ġcir cled +ĠN ost +enn ett +Ġde forestation +ĠHist orically +ĠEvery day +Ġovert ake +79 2 +Ġn un +ĠLuc ia +Ġaccompan ies +ĠSe eking +ĠTr ash +an ism +R ogue +Ġnorth western +ĠSupplement al +ĠNY U +ĠF RI +ĠSat isf +x es +5 17 +Ġreass ured +Ġspor adic +Ġ7 01 +Ġmed ial +Ġcannabin oid +Ġbarbar ic +Ġep is +ĠExplos ive +ĠD ough +Ġuns olved +Support ed +Ġacknowled gment +sp awn +Ġkit chens +Ġ- = +talk ing +ic ist +ĠPeg asus +ĠPS U +Ġphot on +ĠAuthent ication +R G +@# & +76 2 +ĠCl air +Ġdi aper +Ġbr ist +ĠProsecut ors +ĠJ em +6 28 +ĠEvery where +ĠJean ne +equ ality +ãĥ© ãĥ³ +object s +ĠPel icans +Ġ39 2 +Ġbl u +b ys +ĠA go +Ġinstruction al +Ġdiscrim inating +ĠTR AN +ĠCorn el +ag os +Ġty re +Ġas piration +ĠBrid gewater +": - +! ". +ĠEn s +ĠCoc o +P ie +Ġdet ach +ĠC ouch +Ġphys ique +ĠOccup ations +osc opic +en ough +B uzz +App earance +Y P +Ġrac er +Ġcompl icity +r pm +T oy +Ġinterrupt s +ĠCat alyst +Ġut ilitarian +imp act +Ġsp aghetti +Ġp orous +Ġeste emed +Ġinc iner +ĠI OC +7 48 +Ġesp resso +ĠSm ile +abil ia +6 35 +Ġmathematic ian +Ġ4 24 +ĠK L +ĠH IP +Ġover heard +ĠT ud +ĠT ec +Ġqu izz +Ġfl attering +Ġcon n +âĢ İ +Ġatt aches +ĠR OS +ĠAC S +Ġt cp +ĠSh ame +sk ip +res pected +ĠTrin idad +gr ain +Ġfooth old +ĠUnch arted +ĠJul io +z l +av ored +ĠAn xiety +er rors +ĠCent auri +its ch +D addy +Ġclutch ing +ĠIm plement +ĠGut ierrez +Ġ7 60 +Ġtele portation +end ra +Ġrevers ible +st ros +Ad venture +08 3 +Ġliber ating +Ġas phalt +ĠSp end +AR DS +im sy +PR ES +ĠEmer ging +Ġwild fires +Ġtechn ologically +Ġem its +ĠART ICLE +Ġirregular ities +Ġcher ish +çī Ī +Ġst ink +ĠR ost +Econom ic +Ġcough ing +ĠMcC ann +pro perties +ilant ro +Ġreneg oti +Trans lation +Ġin quest +ĠGra pe +oot ers +gu i +ĠSwords man +ace ae +h itting +Ġr c +Ġexert ed +ĠS AP +it ent +Ġperil ous +Ġobsc urity +Ġassass inate +Ġab original +Ġresc uing +ĠSh attered +lock ing +all ion +Ch anging +ĠHar rington +ĠB ord +ĠAfgh ans +Jam ie +aret z +ĠAugust us +Ġ38 6 +8 30 +Ġj og +ok ingly +Tr igger +ĠH OR +Stat istics +Ġviewers hip +Ġadd itives +h ur +Ġmaxim izing +ĠR ove +ĠLou ie +ĠBuck et +ĠCHR IST +ou sel +Ġstre aks +ir ted +Ġt ert +Ġcolonial ism +Ġbur ying +y k +Cond ition +ĠDPR K +By Id +75 1 +âĹ ¼ +Ġwor risome +Ġvoc ational +sl ice +Ġsa ils +ĠCorrection al +95 4 +Ġt ul +K id +l uster +Ġfam ilial +ĠSp it +ĠEp iscopal +Specific ally +ĠVol cano +run s +q s +Ġve tted +Ġcram med +t rop +here r +Thank fully +Ġper cussion +Ġor anges +Ġround up +Ġ4 99 +x ious +Char acters +ĠZion ism +ĠR ao +ÃĽ ÃĽ +W F +Ġunintention al +ONE Y +Gr ab +Com mercial +Ġglut amate +ĠMcK enna +ru ciating +ning ton +ih u +Ch an +ĠSw ap +Ġleaf lets +Ġfunction ally +er ous +F arm +Ġcal oric +ĠLiter ally +con cert +Ġshe nan +Ġrep aid +ey es +Ġbas hing +ĠG orge +Ġcollabor ations +Ġun account +itch ie +Ġteam work +pp elin +Ġpip ing +Ġmin ced +Ġd iam +ri eg +Ġmasc ara +Ġsuck er +ĠMo ons +App s +ĠPe ck +Ġper v +ĠFl oat +o ley +ĠN ish +im ize +Ġarom atic +u in +end ish +! / +ĠB icycle +ĠAS IC +ile ged +ĠQuad ro +ios yn +Ġlock out +ĠW ink +SP EC +Attempt s +Ġseed ed +red o +ias is +Ġsn ag +ãĥķ ãĤ© +ãĤ ¶ +Ġground ing +Ġrelie ver +Ġfrivol ous +ĠG ifts +ĠF aces +Es pecially +Ġmicrobi ome +im ag +ĠSch l +ĠP les +ĠBle ach +ĠIr win +ĠE aton +ĠDisc iple +Ġmultipl ication +Ġcoer ced +Ġ4 19 +st h +E vil +B omb +Ġex orc +Ġstag gered +L ESS +Ġinert ia +ĠED IT +Ġgo b +Tr aditional +Ġclass y +Lear y +ĠP AGE +yr s +Ġtrans porter +Ġmat ured +Ġhij ab +Ġbi ome +Where as +Ġex termination +ĠT ues +ĠT akeru +ĠAud rey +er ial +ĠAd en +aff les +Ġnarciss istic +ĠB aird +UT F +I re +ĠCon nie +Ch amp +Ġwhis pering +ĠH att +D K +Ġdis infect +Ġdeduct ed +Ġpart ake +Ġdown grade +ĠEs ports +ĠContin uing +Ġdemocr atically +icro bial +itt a +Ġlim estone +Ġexempt ed +ĠFren zy +H erm +7 28 +Ġfled gling +Met a +765 61 +69 3 +% : +w ake +5 26 +ĠDis cipline +Ġvirgin ity +ĠLeg ions +ĠFrank ie +int ent +Ġrest rooms +ĠRou ter +da q +Ġobjection able +âĨ ij +w ark +ĠRah ul +g ain +activ ation +abs olute +ĠAccess ed +Ġ24 00 +ogg les +Ġsecond ly +ĠDEF ENSE +Ġpost age +wra pper +sh arp +7 29 +Ġcommun icates +Ġadd on +ĠMil itia +H ong +Ġsl umped +ĠJP EG +ĠI car +ad ish +68 1 +Ġmaj esty +ĠWolf gang +ĠEl astic +u per +Ġv iz +Ġunconscious ly +ĠST D +ĠS ass +Ġflower ing +ĠHel ic +ĠDra per +ĠAm ateur +Ġman ure +Ġdis ingen +ĠLe i +br ing +9 49 +Ġinhib ited +Ġhead quartered +Ġen igmatic +�� � +Ġred ress +R H +Ġratt led +Ġd iction +l io +ĠT BA +ĠSN AP +C alling +Ġfasc ists +ĠD ove +iew icz +0 36 +Ġco asts +ĠR ect +Ġ) ] +L ot +6 29 +ĠS EM +ĠPeters en +ĠExpl ain +ĠBo ards +ĠBe zos +ĠJ ournals +Ġ20 24 +p arser +Ġmist rust +Ġgr ate +ĠL ocked +bo a +S aint +g aming +Ġvow el +in ately +bl ow +All ah +Ġun matched +Ġb ordering +ĠExp end +n r +Or acle +rou ch +Ġcont iguous +ac us +Ġdist raught +58 1 +Ġanat omical +O X +ap ixel +8 33 +ĠPL US +Ġres usc +Ġab iding +57 3 +Ġvac ancies +Em ily +Ġhyp othal +ĠWer ner +ĠWe e +ĠDJ s +5 13 +Ġwitch craft +Ġac upuncture +ent ary +benef it +Product s +ĠP SP +ĠMP G +ĠJ inn +ĠJ arrett +Ġ4 45 +ĠIm aging +ĠP yth +Fin ish +Ġte x +Ġjuven iles +Ġhero ism +Ġdoubt less +ĠA ki +ĠT end +ĠPatri arch +Ġbit ters +ĠTele communications +it atively +ag na +Ġr g +ĠS OLD +Ġcomp ulsion +ĠN asa +ĠKath ryn +Ġmillion aires +Ġintrins ically +Ġbolst ered +time out +fl o +Ġtut or +p our +Stat ement +Ġ{ * +ĠRud olph +ĠKimber ly +rog ens +adi q +] + +Ġindign ation +Ġfract uring +ĠRe leases +ĠGr ain +pro tein +L ago +Ġvac ations +Ġboot ed +ĠTH REE +ĠH G +oresc ence +Ġt f +Ġso ar +iosyn cr +Ġgl ances +ĠSp oon +ĠJ ury +ĠCow boy +Ġcreat ively +Hig her +Ġsolic itor +Ġhaw k +ac io +89 6 +Ġsuperf lu +Ġbombs hell +ct ure +Ġbroker age +Ġraid ing +Ġf rench +Ġang led +Trans action +ĠGen ocide +u pe +ĠHait ian +57 2 +! : +Ġunwitting ly +iter ator +sc roll +Ġtall ied +Ġbi omedical +ĠC ARD +Ġe uphem +Ġbrain storm +a quin +K o +Mic helle +ĠR unes +ĠBall istic +ud ers +Ġmod esty +ĠiP ads +ĠEzek iel +Y E +Ġstars hip +Ġpower fully +Ġper l +ĠSh ade +ĠQu art +ĠE EG +Ġfisher man +OS ED +ĠTyp ical +df x +Ġmes hes +Ġet ched +worth iness +Ġtopp led +Ġ3 96 +or ius +We iss +Ġmy sql +ĠVal halla +Ù Ĵ +le asing +Ġrec omp +rap nel +S el +04 3 +Ġder ailed +ĠGu ides +IR T +Ġde human +ĠBritt any +" )) +Ġex claim +Ġb alk +Ġ8 40 +CLA IM +int el +L AB +Ġpe gged +Ġast roph +sm oking +Ġrig ging +Ġfix ation +Ġcat apult +ins ide +ĠC ascade +ĠBolshe vik +G aza +Dep th +Ġloud spe +Ġalmond s +me yer +l eness +j en +f resh +Ġunbeat en +ĠSqu id +ĠPres umably +Tim er +B W +Ġro sters +Ġell ipt +ĠHar riet +dat abase +ĠMut ual +ĠComm odore +uk ed +kn ife +ĠCOMM UN +h ya +Ġmel ts +arch ives +Ġrat ification +Ġmultip lying +Ġinter oper +Ġasc ert +w ings +ver ting +ĠScorp ion +ay e +ĠPorts mouth +ĠM TA +n it +iaz ep +Ġqu arantine +Ġslides how +Ġcent imeters +Ġsyn opsis +Ġsp ate +th irst +Ġnom inating +ĠMel vin +Pre view +Ġthro b +Ġgener ational +ĠRad ius +rest ling +put able +aw ar +N ECT +Ġunlaw fully +ĠRevel ations +Wik ipedia +sur v +Ġeye ing +ij n +ĠF W +Ġbr unt +Ġinter stellar +Ġcl itor +ĠCroat ian +ĠCh ic +ev a +ĠDis app +ĠA kin +iner ies +d ust +Interest ed +Ġgen esis +ĠE ucl +ö n +p icking +Ġmut ated +Ġdisappro ve +ĠHD L +Ġ6 25 +Ì ¶ +c ancer +Ġsqu ats +Ġle vers +Disc uss += ] +D ex +ĠVIDE OS +A UD +Ġtrans act +ĠKin ect +ĠK uala +ĠC yp +7 47 +Ġsh attering +Ġarsen ic +ĠInt ake +ĠAngel o +ĠQu it +ĠK he +Ġ18 93 +M aker +0 29 +ĠPain ting +Dis able +9 16 +Ġanal ges +Ġtact ile +Ġprop hes +Ġd iced +ĠTravel s +ĠHe ader +ĠClub s +Ass istant +Ġinc rim +Ġd ips +Ġcruc ifix +ĠShan ahan +ĠInter pret +Ġ40 90 +al ogy +abb a +Ġsimul ac +hus band +S IM +Ġrecy cle +uc er +ed ged +Ġre naissance +ĠBomb ay +Cath olic +ĠL INE +ĠCl othing +re ports +Ġpl aus +Ġd ag +ĠM ace +Z I +Ġintr uder +ĠVeter inary +g ru +Ġsne aky +ĠS ie +ĠC innamon +P OSE +Ġcou rier +ĠC NS +Ġemanc ipation +s it +Ġplay through +ĠFac ilities +v irt +ĠG auntlet +Thom pson +Ġunbeliev ably +Param eters +Ġst itching +ign e +ĠTH ESE +Priv acy +Ġshenan igans +Ġvit ri +ĠVal id +59 1 +Ń · +ĠProt otype +ink a +SC P +ĠT id +è Ī +old ed +Ġindividual ity +Ġbark ing +Ġm ars +ĠW D +Ġ8 20 +Ġt ir +Ġsl apping +Ġdisgr untled +ĠAng ola +ri us +ĠTorn ado +ĠTh urs +Ġcapt cha +Ġang st +ĠP og +ĠAssass ins +ĠAd idas +Ġjoy ful +Ġwh ining +Emer gency +Ġphosph orus +Ġatt rition +oph on +ĠTimber wolves +ĠJ ah +ĠBr inging +ĠW ad +ĠEn sure +oh l +ĠX ie +omm el +c mp +Ġz ipper +Ġrel at +ĠCor ridor +m ilo +T ING +Av g +Ġcro pped +] } +Ġr aged +ĠLump ur +ĠGuer rero +our ke +N ut +Ġoff sets +og lu +dr m +Ġmort als +lat able +Ġdismiss ive +ä¸ ī +Ġthro ats +Ġchips et +ĠSpot light +Catal og +art ist +G b +Ġch illy +Ġst oked +Ġ3 74 +W ard +L atin +Ġf iasco +Ġble ach +Ġb rav +Enh anced +Ġin oc +ĠFior ina +_ > +Ġle ukemia +Ġel uc +Ġannoun cer +ĠLith uan +ĠArm ageddon +å ĩ +Len in +ĠR uk +Ġpe pp +ĠRom antic +ĠP IT +ĠInter stellar +ĠAt kinson +R aid +J s +Go al +C ourse +Ġvan ishing +es ley +ĠR ounds +Els a +59 3 +Ġredund ancy +ĠST AND +Ġprop hetic +Ġhabit able +ry u +Ġfaint ly +M ODE +Ġfl anked +IR C +Aw esome +Ġsp urious +ĠZ ah +ĠMS G +Ġsh ading +Ġmotiv ational +ĠSant ana +ĠS PR +Ġexc ruciating +om ial +ĠM iko +ĠLe opard +A byss +Ġ[ | +d irty +Ġbath s +Ġdem oral +and re +P B +Ġun ification +Ġsac rament +Ġ[ & +Ġpric eless +Ġgel atin +Ġeman ating +ĠAll aah +98 6 +Ġout burst +Ġer as +ĠX VI +ĠSP I +O tt +ĠLaz arus +PL IED +F lying +blog s +W isconsin +R aven +Ġreb ate +Ġcreep s +ĠSp an +ĠPain ter +ĠKir a +ĠAm os +ĠCor vette +Cons umer +ĠRec over +ck i +Ġpes ky +ĠIn vention +Compan ies +Ġchalleng ers +ad emic +ĠUkrain ians +ĠNeuro log +ĠFors aken +Ġent rants +Ġemb attled +Ġdef unct +ĠGlac ier +Ġpo isons +ĠH orses +m akes +ĠD irt +Ġ4 23 +hh h +ĠTrans formation +QUI RE +................ .. +Ġtrave ller +ĠSe xy +ĠK ern +ip olar +Ġransom ware +oooooooo oooooooo +E c +rub y +Prof essional +ĠOut break +arg ument +G rey +ĠFif a +ĠCH O +ĠFOR M +ĠAm trak +- [ +Ġcr adle +Ġantioxid ants +ãģ®å ® +7 36 +ĠNAS L +ĠContribut ions +Ind iana +ĠST EP +C SS +Ġsal ient +Ġall ocations +yr ights +Ġm ashed +ĠCut ter +Sex ual +Ġp ounded +Ġfan base +Ġc asc +ĠTrans parency +Ġanaly tic +ĠSummon er +× ŀ +ĠAD C +det ail +Ġvan quished +Ġcr abs +ar ie +Dest roy +ĠS ack +Ġtrans istor +Al abama +ĠK oen +ĠFisher ies +c one +Ġannex ed +ĠM GM +es a +Ġf aked +ĠCong ratulations +Ġhind ered +Ġcorrection al +ĠI TV +lee ve +Ġin appropriately +lic ks +Ġtresp ass +Ġp aws +Ġnegoti ator +ĠChrist ensen +lim its +ĠDian ne +Ġeleg ance +ĠContract s +an ke +Ob j +Ġvigil ance +Ġcast les +ĠN AD +ĠHol o +Ġemph atically +ĠTit us +ĠServ ing +ĠRich ie +ĠP igs +5 68 +Ġanim osity +ĠAtt ributes +ĠU riel +M Q +my ra +ĠApplic ant +Ġpsychiat rists +ĠV ij +ĠAb by +ag ree +P ush +Ġk Wh +hib a +Ġinc ite +ĠWe asley +ĠTax i +minist ic +hy per +ĠF arn +Ġ6 01 +ĠNation wide +F ake +95 2 +Ġma ize +Ġinteract ed +Ġtransition ed +Ġparas itic +Ġharm onic +Ġdec aying +Ġbas eless +ns ics +Ġtrans pired +Ġabund antly +ĠFore nsic +Ġtread mill +ĠJ av +ab and +Ġssh d +Ġfront man +ĠJak arta +oll er +dro ps +ĠSERV ICES +rompt u +oph ical +h ospital +bled on +6 45 +Ġmid range +ĠEV ENT +cul ated +raw led +Ġper ched +Ġover board +ĠPe el +ĠP wr +ĠCar th +ĠCOM PLE +co e +sh all +Ġdeter rence +M ETHOD +ĠAbs ent +M EN +Ġs ill +ĠLE VEL +Y ork +Ġsin ners +ĠOP EC +ĠN ur +ĠDesign s +se lection +Ġunw orthy +CH A +Ġstreng thens +88 3 +ed ly +Ġslic ing +Ġmal nutrition +Ġfilm making +ĠPol k +ur ated +Ġ4 21 +bre akers +!' " +Ġwet lands +ĠDisc rimination +Ġallow able +Ġste ered +ĠSic ily +S AM +Ġmust ache +Ġm ids +Ġcl ipped +Ġcirc ulate +Ġbr ittle +ĠBuild ings +ra ised +ĠRound up +Ġwealth ier +Ġoverw rite +Ġover powered +ĠGerr ard +s ites +PD ATED +Ġacute ly +ĠGam ble +Ġp im +ĠK us +Typ ically +De ploy +ĠMoroc can +p otion +com be +Ġvigil ante +Ġ36 3 +St ew +ĠB agg +Ġres ided +ĠSp o +Ġrem nant +Ġempt iness +br ainer +Ġout patient +pri ority +Ġle ptin +ĠPay ton +ĠGle aming +ĠS hed +ĠPol o +ĠMormon ism +rest ricted +arl ane +w x +Ġcreat ine +ĠAn on +ĠST UD +ĠJ UL +ĠT ee +5 28 +08 9 +Ġhat ched +Dis patch +ĠCompos ite +Ġ45 1 +p uff +ĠX COM +ĠOr n +ĠTH ANK +END ED +ĠAshe ville +Ġà ľ +Ġman go +ĠS lightly +world ly +ĠW ander +ĠExp and +ĠCh r +M ist +Ġorthodox y +ĠUN ESCO +reg ate +Else where +k ie +ir led +Ġtopp le +Ġadopt ive +ĠLeg s +d ress +ĠS agan +b are +ĠGl ou +Cr unch +Ġhelp ers +Ġchron ically +ĠH uma +1 0000 +Ġaccommod ating +äº Ķ +Ġwrink les +Ġdod ged +four th +Ġpre con +Ġcompress or +ĠK are +Ġev ict +ĠWar wick +im ar +Ġmodern ization +Ġband wagon +Ġref uted +Ġnet ted +ĠNa ples +ĠGen ie +per ors +Ġfield ed +Ġde re +ĠPar ables +le es +Ġtr out +asp ers +Ġn ihil +Ġhapp iest +Ġflo ppy +ĠLo ft +ĠHe ard +Ġun ison +Ġl ug +ĠRed mond +class ic +Supp orters +SH IP +G MT +Ġfue lled +ç IJ +Ġd d +ĠEmin em +Ġ18 97 +NY SE +Ġsecret aries +ĠF IA +ĠCanaver al +F avorite +Ġp omp +Ġdetain ee +ers hip +aim on +i our +ĠA pex +Ġplant ations +am ia +ac ion +R ust +Ġtow ed +ĠTru ly +5 77 +Ġshel tered +r ider +W o +Ġl air +ĠInt elligent +impro ve +m atically +Ġet iquette +ad ra +all o +ĠJun o +any thing +ĠStru ggle +ĠPred ict +ĠGr imes +ĠAMER ICA +ct x +ĠSit uation +W OOD +Ġsol uble +me ier +Ġintoler able +ang ering +Ġun interrupted +Ġtool tip +Ġinterrog ated +Ġgun ned +ĠSne ak +æŃ ¦ +Ġt ether +Ġcr umble +L ens +Ġclust ered +ĠSy l +ĠHas an +Ġdystop ian +w ana +Ġjoy stick +ĠTh ib +amm u +Tom orrow +5 46 +Ġoverc ame +Ġminim ized +cept or +Run ner +ENG TH +ĠBrend a +ĠAchieve ments +Ġtor ches +Ġrapp ort +ĠInvestig ator +ĠHand ling +rel ation +g rey +8 15 +Ġk cal +ĠComm ands +d q +Ġcur ls +Ġbe arer +Ġcyn icism +it ri +ĠUse ful +B ee +D CS +Ġab ras +P ract +BIL ITIES +7 12 +Ġdebug ger +Ġdebt or +ĠL ia +ĠK ers +Ġexacerb ate +ĠSt acy +ĠB land +ĠSc enes +Ġbranch ing +âĸĪâĸĪâĸĪâĸĪ âĸĪâĸĪâĸĪâĸĪ +ape ake +Ġs alsa +Ġmish and +ĠKon ami +ĠN ib +Ġanecd ote +Ġagree able +Ï ī +ĠNath aniel +ĠHe isman +ĠB eware +Ġ18 86 +spect ive +69 1 +5 22 +Ġinhib its +Ġhas hing +Ġ18 89 +å° Ĩ +v ich +P ure +Ġsolid ly +Ġaspir in +im aru +Ġstreet car +ĠU CS +ĠJ udd +Ġflash backs +p ins +Ġ14 40 +ĠUN HCR +ĠSym ptoms +T IT +5 38 +F ra +% ); +Ġo oz +Ġcur few +Ġcal med +Ġparticip ates +Te X +Ġnons ensical +Ġfull back +ĠDe L +mon key +h ari +Ġmetabol ites +Ġloot ed +ĠAL WAYS +ĠB CC +L t +oc het +B one +Ġveto ed +Ġg cc +ĠCL ICK +Ġ18 88 +s af +Ġstiff ness +Ġlow ly +ĠGe h +vers on +ors et +Ġun foreseen +Ġan esthesia +ĠOpt ical +Ġrecon structed +ĠT up +sh ows +NEW S +ĠNewsp aper +ĠA SA +ter a +N umbers +Ġinexpl icable +× ij +Ġhard ness +unt arily +ĠA cer +grad ient +ARD IS +Ġwood land +Ġmetaph ors +ĠWem bley +ĠPa vel +phil is +Ġre writing +Ġpercept ual +Ġ10 70 +worm s +ĠDown s +Ġunsur prisingly +Ġtag ging +fl ame +Ġlit res +Ġboun ces +ĠB abe +sh ut +Ġoverd oses +ĠShe ila +ĠCh au +ĠBl ess +Capt ure +ĠSign ificant +ĠSc ion +Ġ38 9 +ĠMc H +ĠTitan ium +ĠMe al +amed a +ag ents +agg ressive +B illy +76 3 +ĠS aying +DER R +it one +Coll ins +B ound +Ġbol ted +ĠDM CA +95 3 +Ġun iqueness +Ġep igen +un ci +ant am +Ġreck oning +ch airs +OG R +ĠSen egal +Ġ18 62 +re levant +Ġ ¯ +Ġpharm acies +ĠG eral +v ier +Y an +OR PG +Ġrab id +b ending +ĠUN ITED +Ġ4 65 +As sembly +Ġwe ep +Ġbe hest +ĠMother s +ĠJ ace +h id +Ġwh irlwind +ĠUN IVERS +Ġut opian +Ġkidn ap +Ph ilipp +K in +89 3 +Ġlivest ream +ĠM ISS +Ġsub versive +ĠTechn iques +ĠJUST ICE +ĠB ASE +Ġ38 7 +Ġassail ants +ĠHard core +Ġsprink led +ĠP se +é ļ +print ed +ĠH au +OR GE +ĠT OUR +Ġl aced +Ġit ch +G iving +Ġport ed +78 1 +//////////////// //////////////// +bre eding +Ġlog ger +ĠH OL +inn ie +First ly +Ġembry onic +Ġdeleg ated +p ai +O IL +Ġcentr ally +ĠR x +ĠSc outing +D utch +Ġhe reditary +ĠCru iser +s at +5 29 +ĠMar riott +other mal +Ġprohib itions +E arn +ĠSt ab +ĠColleg es +ĠBel ief +st retched +ĠL H +ĠEntity Item +C IA +Ġun rem +Ġlaure ate +Ġdenomin ations +sum mary +h ler +S pect +ĠK laus +ĠBe ans +Ġins ur +ĠPA X +Ġfield er +ĠV et +ĠSp arrow +z ie +ĠS Q +ĠMond ays +ĠOff line +ĠLer ner +ĠExt ensions +Ire land +Ġpatron age +Ġcontrast ed +ĠMan ia +h irt +Mos cow +Ġcondem ns +ĠAn ge +Ġcomp osing +ĠPe pe +ĠP addock +Ġheter ogeneity +Ġide ologically +Ġf ishes +Ġcur sing +ĠR utherford +ĠFlo ating +ĠAm elia +Te a +Syn opsis +Ġstun ts +Ġbe ad +Ġstock ing +ĠM ILL +ob ook +mass ive +\ < +Ġh ump +ĠPref erences +Engine Debug +ge ist +ĠNiet o +ome ver +ish y +eval uate +col onial +Altern ative +ĠGo Pro +ĠV ortex +ĠNET WORK +ans ky +Sec ure +ĠTh rust +Sn ake +Ġparcel s +Ġsam urai +Ġactress es +N ap +M F +ifer ation +Be er +5 23 +ĠI ly +oint ment +P ing +Ġstri ped +ĠMell on +oss ession +Ġneut ron +end ium +Ġa ph +ĠFlav oring +Ġ38 3 +Ġrespons iveness +ĠJ indal +ĠHitch cock +Den ver +ĠDRAG ON +sm anship +ĠDu pl +Ġs ly +Ġweb cam +ĠTw ain +ĠDar ling +ili ate +cons umer +D IT +Ġnames ake +Ġun orthodox +Ġfun er +ĠPL oS +ĠCONTR OL +ozy g +ogl obin +F ACE +ER G +ĠD ia +ĠF iesta +ce le +0 34 +Ġencl ave +âĸ¬ âĸ¬ +on ement +al ist +M and +Ġhome grown +ĠF ancy +Ġconcept ions +ĠCont ains +ure en +Ġreiter ate +Ġme ager +Ġinstall ments +Sp awn +6 27 +Ġphot oc +ĠCab rera +ĠRos enthal +ĠLans ing +is ner +Ġinvest s +ĠUFO s +EX P +Hard ware +Ġtr agically +Ġconced es +ie ft +ch am +bor gh +ĠSch r +ĠMel anie +ĠH oy +Ġvisit ation +Ġid iosyncr +Ġfract ions +Ġfore skin +ob os +Ġpo aching +ĠVI EW +Ġstimul ates +ĠG ork +can on +M IC +ĠNem esis +ĠInd ra +ĠDM V +Ġ5 29 +Ġinspect ing +Ġgrand ma +ĠW hedon +ĠSh ant +ĠP urg +ik an +ĠT eg +ĠCL R +z ac +Vict oria +ĠVer ify +ion ics +Ġpart ying +ĠM ou +col our +Ġtestim onies +l ations +Ġpress uring +hi ro +ac ers +Ġf id +ang ler +ĠCS I +Ġhere after +Ġdiss idents +report ing +iph any +che v +Ġsol itude +Ġl obe +Ġind is +Ġcred ential +re cent +ad ult +ĠNir vana +ĠFranch ise +L ayer +H yp +ĠBerks hire +Ġwill s +t if +Ġtot em +ĠJud ah +rep air +Inst ant +5 48 +Ġemb assies +Ġbott leneck +Ġb ount +Ġtyp ew +ĠAl vin +j ing +im ilar +R ush +Ġbr im +ĠHEL P +A im +] ' +Ġpass ively +Ġbound ed +ĠR ated +Ġcriminal ity +Ġbiom ark +Ġdisp atcher +ĠTow ards +Ġ+ ++ +right eous +f rog +ĠP anc +C arter +0 32 +æ© Ł +Ġult raviolet +ĠLic ensed +ĠT ata +ĠBl essing +ĠG AM +Ġchem ically +ĠSe af +ĠRE LE +ĠMerc enary +capital ist +Ġform ulations +Ġann ihilation +ĠVer b +ĠAr gon +Ġun loaded +Ġmorp hed +Ġconqu ering +back er +I ELD +Ġtheft s +Ġfront runner +ĠRoy ale +ĠFund amental +el ight +C hip +necess ary +ay n +ĠSl ip +Ġ4 48 +cern ed +P ause +Ġshock ingly +ĠAB V +Ġcomp osure +7 33 +ĠMotors port +ah ime +Mur ray +M ach +Ġgr ids +Ġdeb ian +Ġfurther more +Ġdexter ity +ĠCollect ions +os lov +il age +b j +ĠMont eneg +Ġstrut Connector +Ġmassac res +Ġbrief s +fet ched +uv ian +ol ition +Fail ure +emon ic +Ġfl ared +Ġclaim ant +Ġc ures +Ġgive aways +ĠSubst ance +al ions +Ġcr inge +ĠK ul +Ġarist ocracy +ĠUl ster +ol ated +h ousing +ĠM IS +Ġgl ared +ĠWil helm +ne eds +lam bda +build ers +ĠV IS +Ġradi ator +ĠGhost busters +Ġ4 36 +act ual +Ġher ds +ç a +watch ing +Ġcounter ing +Ch arge +Ġchar red +Ġwar heads +Ġiod ine +ĠM acy +04 1 +Ġdepart ures +ĠS ins +Ġdy ed +ĠConcept s +g ado +7 13 +Ġquot ations +Ġg ist +ĠChrist y +Ġant igen +ĠHem p +ĠD rawn +ĠB arg +ez vous +Ġp aternity +Ġar du +ĠAnch orage +ĠR ik +Ġover loaded +ĠUs ername +ĠTam my +ĠN au +ĠCell ular +Ġw aning +Ġrod ent +ĠWor cester +il ts +ĠT ad +Ġdwell ings +Ġbull ish +4 31 +Ġretali ate +Ġmig raine +ĠChev ron +CH ECK +Ġdon key +c rim +SP A +ĠAn alog +Ġmarqu ee +ĠHa as +B ir +ĠGD DR +ĠDownload s +Ġwill power +ĠFor th +ĠRecord ed +Ġimp ossibility +ĠLog ged +ĠFr anks +ĠR att +in itions +Ġclean ers +Ġsore ly +Ġflick ering +ĠEx amination +c atching +allow een +Ms g +Ġdun no +F a +Ġdys ph +c razy +.' '. +Ġmain line +Ġc s +Ġp tr +ĠW ally +ig un +95 1 +ĠBig foot +f ights +Ġretrie ving +J r +Ġdupl ication +ĠExpl an +Ġrel ational +Ġqu aint +Ġbisc uits +Ġad o +Ġsh udder +Ġantid ote +blood ed +ks h +Ġsa uces +Ġrein vest +Ġdispens ary +ĠD iver +Ġ9 000 +stud ent +Ġin separ +esc ap +Ġtodd lers +ĠGP IO +ĠAss ignment +head ers +Ġlack luster +Ġab ack +95 6 +Ġtool bar +7 45 +Ġo ust +Ġcontempl ation +ĠPRES IDENT +Ġ4 58 +==== == +Ġguarantee ing +ĠHe ist +ĠCann es +Ļ ½ +Ġcollabor ator +ĠAm p +Ġg ou +ĠSH ALL +st ories +78 3 +Ġmobil ized +Ġbro od +ĠL U +ĠðŁ ij +Ġref in +ĠAnthrop ology +v ind +ill i +Ġwarrant ies +ĠB abel +Ġsw ath +Ġc aches +Ġantagon ists +art ifacts +Ġhot ly +ĠSt arts +ĠG ö +z ag +!! !!! +Ġsc ourge +Ġcons piring +ru its +re verse +ĠShe en +ĠJes uit +ĠGiov anni +ad ies +Ġbutt ocks +ear cher +ac an +Ġvolley ball +Ġshroud ed +Ġscore board +b ats +ĠI PM +Ġass es +Ġde regulation +ĠTe legram +ĠReb oot +Ġ7 000 +ĠCan ary +Ġk ernels +ĠFranç ois +ĠD uff +ĠP on +ĠLe ica +ĠGar min +Ġor phans +ĠClaud ia +Ġcal endars +ĠLe ilan +ent o +R ocket +Ġbr unch +ĠHaw king +ain ers +Ġsens ibilities +Ġk W +ĠK and +Ġre claimed +Ġinteresting ly +× © +rom y +J M +ĠEnhance ment +b ush +Sk ip +Ġrapp ers +Ġg azing +p edia +ath lon +Rev olution +Ġsn ipers +Ġre verted +Ġconglomer ate +T erry +79 4 +Ġhars her +Ġdes olate +ĠHit man +Comm ission +Ġ( / +â̦ ." +Com par +Ġampl ification +om inated +Ġreg ress +ĠColl ider +Ġinform ants +Ġg azed diff --git a/models/detoxify/tokenizer.json b/models/detoxify/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..ad0bcbeb288f0d1373d88e0762e66357f55b8311 --- /dev/null +++ b/models/detoxify/tokenizer.json @@ -0,0 +1 @@ +{"version":"1.0","truncation":null,"padding":null,"added_tokens":[{"id":0,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":true},{"id":1,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":true},{"id":2,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":true},{"id":3,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":true},{"id":50264,"special":true,"content":"","single_word":false,"lstrip":true,"rstrip":false,"normalized":true}],"normalizer":null,"pre_tokenizer":{"type":"ByteLevel","add_prefix_space":false,"trim_offsets":true},"post_processor":{"type":"RobertaProcessing","sep":["",2],"cls":["",0],"trim_offsets":true,"add_prefix_space":false},"decoder":{"type":"ByteLevel","add_prefix_space":true,"trim_offsets":true},"model":{"dropout":null,"unk_token":null,"continuing_subword_prefix":"","end_of_word_suffix":"","fuse_unk":false,"vocab":{"":0,"":1,"":2,"":3,".":4,"Ġthe":5,",":6,"Ġto":7,"Ġand":8,"Ġof":9,"Ġa":10,"Ġin":11,"-":12,"Ġfor":13,"Ġthat":14,"Ġon":15,"Ġis":16,"âĢ":17,"'s":18,"Ġwith":19,"ĠThe":20,"Ġwas":21,"Ġ\"":22,"Ġat":23,"Ġit":24,"Ġas":25,"Ġsaid":26,"Ļ":27,"Ġbe":28,"s":29,"Ġby":30,"Ġfrom":31,"Ġare":32,"Ġhave":33,"Ġhas":34,":":35,"Ġ(":36,"Ġhe":37,"ĠI":38,"Ġhis":39,"Ġwill":40,"Ġan":41,"Ġthis":42,")":43,"ĠâĢ":44,"Ġnot":45,"Ŀ":46,"Ġyou":47,"ľ":48,"Ġtheir":49,"Ġor":50,"Ġthey":51,"Ġwe":52,"Ġbut":53,"Ġwho":54,"Ġmore":55,"Ġhad":56,"Ġbeen":57,"Ġwere":58,"Ġabout":59,",\"":60,"Ġwhich":61,"Ġup":62,"Ġits":63,"Ġcan":64,"Ġone":65,"Ġout":66,"Ġalso":67,"Ġ$":68,"Ġher":69,"Ġall":70,"Ġafter":71,".\"":72,"/":73,"Ġwould":74,"'t":75,"Ġyear":76,"Ġwhen":77,"Ġfirst":78,"Ġshe":79,"Ġtwo":80,"Ġover":81,"Ġpeople":82,"ĠA":83,"Ġour":84,"ĠIt":85,"Ġtime":86,"Ġthan":87,"Ġinto":88,"Ġthere":89,"t":90,"ĠHe":91,"Ġnew":92,"ĠâĢĶ":93,"Ġlast":94,"Ġjust":95,"ĠIn":96,"Ġother":97,"Ġso":98,"Ġwhat":99,"I":100,"Ġlike":101,"a":102,"Ġsome":103,"S":104,"ë":105,"Ġthem":106,"Ġyears":107,"'":108,"Ġdo":109,"Ġyour":110,"Ġ-":111,"Ġ1":112,"\"":113,"Ġif":114,"Ġcould":115,"?":116,"Ġno":117,"i":118,"m":119,"Ġget":120,"ĠU":121,"Ġnow":122,"Ġhim":123,"Ġback":124,"ĠBut":125,"ĠâĢĵ":126,"Ġmy":127,"Ġ'":128,"Ġonly":129,"Ġthree":130,";":131,"Ġ2":132,"The":133,"1":134,"Ġpercent":135,"Ġagainst":136,"Ġbefore":137,"Ġcompany":138,"o":139,"ĠTrump":140,"Ġhow":141,"Ġbecause":142,"Ġany":143,"Ġmost":144,"Ġbeing":145,"Ġmake":146,"Ġwhere":147,"Ġduring":148,"Ġthrough":149,"Ġwhile":150,"000":151,"ĠThis":152,"Ġmillion":153,"ing":154,"Ġ3":155,"Ġmade":156,"Ġwell":157,"Ġ10":158,"Ġdown":159,"Ġoff":160,"Ġsays":161,"Ġme":162,"ĠB":163,"Ġgoing":164,"Ġteam":165,"ĠWe":166,"Ġthose":167,"Ġgovernment":168,"Ġway":169,"We":170,"Ġmany":171,"Ġthen":172,"Ġwork":173,"Ġtold":174,"com":175,"2":176,"Ġgame":177,"ĠAnd":178,"in":179,"year":180,"Ġp":181,"Ġvery":182,"Ġday":183,"Ġhome":184,"Ġtake":185,"Ġweek":186,"Ġsince":187,"ĠNew":188,"Ġmay":189,"Ġeven":190,"Ġseason":191,"Ġsee":192,"Ġ2017":193,"Ġstate":194,"Ġ5":195,"ed":196,"Ġshould":197,"Ġaround":198,"Ġ2018":199,"Ġsecond":200,"Ġus":201,"Ġstill":202,"Ġmuch":203,"Ġ4":204,"Ġgood":205,"Ġthink":206,"%":207,"ĠS":208,"Ġthese":209,"Ġmarket":210,"ĠD":211,"th":212,"Ġgo":213,"'re":214,"Ġsuch":215,"Ġknow":216,"Ġincluding":217,"Ġdon":218,"y":219,"Ġnext":220,"ĠP":221,"Ġdid":222,"Ġunder":223,"Ġsay":224,"en":225,"ĠL":226,"Ġbetween":227,"Ġper":228,"ĠK":229,"ĠC":230,"Ġ6":231,"Ġworld":232,"Ġpart":233,"ĠN":234,"Ġright":235,"Ġwant":236,"Ġfour":237,"),":238,"Ġhigh":239,"Ġneed":240,"re":241,"e":242,"It":243,"Ġhelp":244,"5":245,"3":246,"Ġcountry":247,"ĠR":248,"Ġpolice":249,"A":250,"Ġlong":251,"ĠThey":252,"Ġend":253,"er":254,"ĠT":255,"ĠM":256,"u":257,"Ġboth":258,"Ġhere":259,"an":260,"on":261,"Ġ7":262,"Ġde":263,"ĠShe":264,"Ġbusiness":265,"Ġreport":266,"j":267,"ers":268,"Ġreally":269,"ĠPresident":270,"ar":271,"ĠG":272,"ĠFriday":273,"ĠF":274,"Ġbest":275,"Ġsame":276,"Ġanother":277,"Ġset":278,"old":279,"ĠThat":280,"as":281,"n":282,"Ġcome":283,"Ġfamily":284,"Ġpublic":285,"ĠFor":286,"ĠAs":287,"0":288,"ĠH":289,"Ġ8":290,"Ġ20":291,"Ġfive":292,"es":293,"ĠTuesday":294,"Ġn":295,"ĠThursday":296,"Ġquarter":297,"h":298,"Ġtop":299,"Ġgot":300,"Ġlife":301,"ĠMonday":302,"Ġfound":303,"Ġuse":304,"ĠW":305,"4":306,"ĠWednesday":307,"Ġown":308,"Ġaccording":309,"Ġplay":310,"Ġshow":311,"ĠSt":312,"Ġman":313,"Ġleft":314,"ĠUnited":315,"Ġ12":316,"Ġplace":317,"ĠIf":318,"Ġlot":319,"Ġformer":320,"Ġ0":321,").":322,"Ġsupport":323,"ie":324,"Ġbillion":325,"Ġt":326,"Ġshares":327,"!":328,"z":329,"k":330,"ĠState":331,"Ġpoints":332,"Ġgroup":333,"Ġschool":334,"Ġinformation":335,"Ġ2016":336,"al":337,"r":338,"Ġwin":339,"Ġnews":340,"Ġused":341,"Ġput":342,"Ġcity":343,"ĠJ":344,"ĠThere":345,"Ġnumber":346,"C":347,"'ve":348,"Ġeach":349,"Ġtoo":350,"Ġwon":351,"ly":352,"Ġmonth":353,"is":354,"Ġadded":355,"Ġlook":356,"Ġbetter":357,"Ġevery":358,"Ġ&":359,"Ġdays":360,"Ġ9":361,"Ġtook":362,"Ġnight":363,"Ġe":364,"Ġ11":365,"os":366,"Ġfew":367,"or":368,"ĠNorth":369,"ĠYou":370,"Ġthird":371,"Ġgreat":372,"Ġcalled":373,"ĠOn":374,"Ġpast":375,"Ġcame":376,"Ġmonths":377,"ĠSaturday":378,"Ġ15":379,"Ġbig":380,"ĠE":381,"ĠUS":382,"Ġthings":383,"ĠO":384,"Ġd":385,"Ġstart":386,"B":387,"Ġstock":388,"Ġ30":389,"Ġwomen":390,"ĠSouth":391,"ĠMay":392,"Ġnever":393,"Ġpresident":394,"ĠSunday":395,"Ġwithout":396,"man":397,"8":398,"Ġdidn":399,"Ġlocal":400,"6":401,"Ġsomething":402,"Ġcase":403,"ĠAll":404,"it":405,"7":406,"ĠSo":407,"Ġchildren":408,"Ġaway":409,"Ġlittle":410,"Ġsix":411,"ĠCity":412,"ĠCounty":413,"Ġdata":414,"at":415,"Ġalready":416,"d":417,"Ġmoney":418,"Ġearly":419,"Ġacross":420,"Ġexpected":421,"Ġrun":422,"Ġlater":423,"am":424,"Ġprice":425,"Ġgames":426,"ĠMr":427,"b":428,"Ġmight":429,"Ġdifferent":430,"Ġreported":431,"Ġdeal":432,"Ġmedia":433,"Ġgrowth":434,"Ġcommunity":435,"ĠChina":436,"'m":437,"c":438,"Ġwent":439,"ĠNo":440,"Ġable":441,"Ġmaking":442,"Ġarea":443,"Ġfar":444,"Ġstatement":445,"ĠHouse":446,"Ġworking":447,"M":448,"Ġk":449,"Ġseen":450,"Ġcompanies":451,"Ġtoday":452,"Ġmembers":453,"Ġuntil":454,"Ġfull":455,"Ġagain":456,"Ġhalf":457,"Ġshare":458,"le":459,"Ġalways":460,"Ġcourt":461,"l":462,"and":463,"Ġchange":464,"Ġfind":465,"9":466,"Ġsystem":467,"ĠV":468,"ĠYork":469,"ĠAmerican":470,"Ġhead":471,"Ġplayers":472,"Ġdoes":473,"Ġhealth":474,"Ġm":475,"Ġpower":476,"Ġpoint":477,"Ġhit":478,"Ġ.":479,"Ġ--":480,"Ġfree":481,".,":482,"Ġlead":483,"Ġseveral":484,"Ġrecent":485,"Ġcall":486,"N":487,"Ġlaw":488,"Ġkeep":489,"Ġopen":490,"ĠNews":491,"Ġgive":492,"ia":493,"ĠMarch":494,"D":495,"ĠNational":496,"ĠAt":497,"Ġtimes":498,"Ġfuture":499,"R":500,"Ġ14":501,"ĠJune":502,"Ġofficials":503,"Ġ18":504,"Ġimportant":505,"f":506,"Ġfinal":507,"Ġ13":508,"ĠOne":509,"P":510,"Ġfollowing":511,"Ġcar":512,"Ġleast":513,"Ġwater":514,"Ġevent":515,"Ġline":516,"Ġmove":517,"Ġservices":518,"Ġhaving":519,"ĠWhen":520,"Ġstudents":521,"ĠPolice":522,"el":523,"Ġam":524,"ĠZ":525,"Ġside":526,"Ġstory":527,"Ġdue":528,"Ġmeeting":529,"K":530,"Ġmust":531,"ĠStates":532,"Ġlikely":533,"G":534,"Ġcontinue":535,"Ġago":536,"Ġparty":537,"Ġmajor":538,"Ġindustry":539,"Ġless":540,"30":541,"Ġun":542,"Ġhard":543,"Ġservice":544,"Ġ16":545,"Ġlooking":546,"Ġheld":547,"ve":548,"Ġwhether":549,"ĠJuly":550,"Ġtaken":551,"Ġalong":552,"Ġasked":553,"Ġstarted":554,"Ġbecome":555,"Ġforward":556,"Ġresearch":557,"Ġoffice":558,"Ġpolitical":559,"to":560,"Ġtogether":561,"Ġgetting":562,"Ġplan":563,"Ġ25":564,"T":565,"Ġamong":566,"Ġcoming":567,"Ġdecision":568,"Ġvideo":569,"Ġ2015":570,"g":571,"ĠAfter":572,"Ġsecurity":573,"L":574,"Ġcare":575,"Ġgiven":576,"Ġavailable":577,"âĢĶ":578,"Ġs":579,"ĠWest":580,"'ll":581,"Ġpay":582,"Ġnear":583,"Ġsaying":584,"Ġannounced":585,"Ġprogram":586,"ĠApril":587,"Ġreal":588,"ĠUniversity":589,"ĠWith":590,"AP":591,"Ġsocial":592,"Ġclose":593,"et":594,"Ġcurrent":595,"Ġwhy":596,"F":597,"ĠTo":598,"ĠTwitter":599,"Ġthough":600,"Ġ17":601,"Ġtaking":602,"ĠInc":603,"Ġmen":604,"w":605,"Ġcomes":606,"ley":607,"Ġdoing":608,"Ġprocess":609,"ĠJohn":610,"ch":611,"00":612,"Ġfinancial":613,"Ġlow":614,"Ġenough":615,"ĠWhile":616,"Ġfurther":617,"Ġpost":618,"Ġfeel":619,"st":620,"Ġperson":621,"ĠFacebook":622,"ĠWorld":623,"Ġwithin":624,"ad":625,"Ġdone":626,"the":627,"Ġlate":628,"Ġtax":629,"Ġdoesn":630,"Ġthing":631,"Ġnational":632,"Ġjob":633,"Ġusing":634,"ĠHowever":635,"ic":636,"Ġcampaign":637,"Ġrecord":638,"Ġbehind":639,"://":640,"ĠDepartment":641,"p":642,"Ġothers":643,"ĠJanuary":644,"Ġorder":645,"Ġ[":646,"Ġsales":647,"Ġyet":648,"Ä":649,"Ġsmall":650,"Ġseries":651,"Ġface":652,"ĠWhat":653,"Ġ50":654,"Ġever":655,"Ġearlier":656,"Ġlove":657,"up":658,"Ġrights":659,"ĠAn":660,"ist":661,"Ġmorning":662,"ĠWashington":663,"Ġyoung":664,"Ġlatest":665,"ĠIndia":666,"Ġtrying":667,"Ġfire":668,"Ġled":669,"Ġstrong":670,"Ġreturn":671,"Ġlevel":672,"O":673,"Ġaverage":674,"Ġperiod":675,"Ġexperience":676,"ak":677,"Ġpossible":678,"Ġbelieve":679,"Ġinclude":680,"Ġoil":681,"Ġrecently":682,"Ġonce":683,"Ġknown":684,"Ġlost":685,"Ġsure":686,"us":687,"Ġweeks":688,"Ġfood":689,"Ġreports":690,"Ġrating":691,"ĠMinister":692,"Ġwoman":693,"Ġprovide":694,"Ġproject":695,"Ġissue":696,"Ġlive":697,"10":698,"Ġclear":699,"he":700,"Ġcost":701,"Ġplayed":702,"Ġreleased":703,"Ġcoach":704,"v":705,"Ġ24":706,"Ġseven":707,"Ġplans":708,"Ġdevelopment":709,"ur":710,"ĺ":711,"Ġincrease":712,"This":713,"Ġpolicy":714,"Ġcent":715,"Ġbased":716,"E":717,"il":718,"ĠDecember":719,"Ġglobal":720,"Ġtrade":721,"Ġhours":722,"Ġhigher":723,"Ġgoal":724,"H":725,"ĠAl":726,"Ġ100":727,"Ġminutes":728,"Ġelection":729,"ĠAmerica":730,"Ġrate":731,"ĠCh":732,"Ġ21":733,"...":734,"ĠWhite":735,"Ġdirector":736,"Ġposition":737,"Ġshot":738,"Ġlarge":739,"Ġc":740,"Ġb":741,"]":742,"Ġissues":743,"Ġdeath":744,"Ġbuilding":745,"Ġtotal":746,"Ġoften":747,"Ġv":748,"Ġcountries":749,"Ġhistory":750,"Ġoutside":751,"Ġfederal":752,"Ġ19":753,"Ġfact":754,"ĠHigh":755,"Ġcareer":756,"im":757,"Ġinternational":758,"ĠNovember":759,"Ġfront":760,"Ġkind":761,"Ġkey":762,"ra":763,"ĠSan":764,"Ġshort":765,"Ġname":766,"ĠAccording":767,"Ġcourse":768,"Ġre":769,"Ġwanted":770,"W":771,"ĠSeptember":772,"Ġinterest":773,"Ġrole":774,"Ġresults":775,"Ġeconomic":776,"Ġ2014":777,"Ġchance":778,"ĠOctober":779,"Ġspecial":780,"Ġofficial":781,"Ġneeds":782,"um":783,"Ġl":784,"Ġproducts":785,"Ġnon":786,"Ġ@":787,"ĠBank":788,"Ġahead":789,"Ġhouse":790,"U":791,"Ġboard":792,"Ġold":793,"Ġsaw":794,"Ġlower":795,"ĠEuropean":796,"Ġcontrol":797,"ĠRussia":798,"Ġeight":799,"Ġrelease":800,"Ġpotential":801,"Ġthought":802,"Ġinvestigation":803,"Ġonline":804,"based":805,"Ġtechnology":806,"ĠDonald":807,"id":808,"Ġbody":809,"Ġrisk":810,"ian":811,"Ġcapital":812,"Ġstaff":813,"Ġaction":814,"ĠLeague":815,"Ġplaying":816,"Ġmakes":817,"Ġalmost":818,"Ġperformance":819,"Ġ22":820,"Ġg":821,"Ġfilm":822,"Ġnearly":823,"ĠCenter":824,"Ġvisit":825,"ĠGroup":826,"Ġbank":827,"Ġbit":828,"Ġreceived":829,"ĠAugust":830,"Ġmilitary":831,"ĠHis":832,"ine":833,"Ġchief":834,"ĠSchool":835,"Ġbring":836,"ĠCourt":837,"Ġ(@":838,"Ġmeans":839,"ĠSh":840,"Ġfans":841,"Ġse":842,"Ġ40":843,"20":844,"\".":845,"V":846,"Ġcut":847,"Ġkilled":848,"Ġ#":849,"Ġprices":850,"Ġgave":851,"ĠStreet":852,"ir":853,"ĠY":854,"Ġcurrently":855,"Ġf":856,"ay":857,"ne":858,"te":859,"Ġtry":860,"ĠPark":861,"ĥ":862,"J":863,"Ġquestion":864,"Ġhand":865,"Ġeconomy":866,"Ġinvestors":867,"able":868,"Ġplayer":869,"ĠBy":870,"ĠDavid":871,"Ġloss":872,"ab":873,"Ġbelow":874,"Ġwrote":875,"co":876,"ate":877,"Ġrunning":878,"un":879,"Ġbegan":880,"Ġsingle":881,"Ġfield":882,"Ġ23":883,"Ġleader":884,"Ġw":885,"ĠCalifornia":886,"Ġfourth":887,"Ġactually":888,"Ġlist":889,"ll":890,"Ġcouple":891,"Ġstudy":892,"Ġteams":893,"He":894,"ah":895,"ĠCanada":896,"Ġla":897,"Ġresult":898,"Ġaccess":899,"Ġvote":900,"ĠMore":901,"ĠFebruary":902,"Ġrevenue":903,"Ġoffer":904,"Ġlet":905,"ier":906,"Ġbuy":907,"Ġattack":908,"Ġblack":909,"Ġr":910,"Ġareas":911,"Ġstop":912,"Ġimpact":913,"Ġmatch":914,"Ġinvestment":915,"Ġcustomers":916,"Ġleaders":917,"ies":918,"Ġmember":919,"Ġchild":920,"Ġroad":921,"ul":922,"Ġvalue":923,"Ġshows":924,"ĠDr":925,"ĠDe":926,"ant":927,"ĠLondon":928,"Ġroom":929,"Ġmusic":930,"Ġproduction":931,"Ġanything":932,"Ġfirm":933,"Ġbiggest":934,"Ġair":935,"Ġproblem":936,"Ġgeneral":937,"Ġwasn":938,"Ġi":939,"Ġprivate":940,"Ġespecially":941,"Ġadministration":942,"Ġadditional":943,"ĠCo":944,"Ġopportunity":945,"Ġhold":946,"&":947,"Ġmatter":948,"Ġsenior":949,"Ġclub":950,"Ġsomeone":951,"ĠÃ":952,"ĠEast":953,"Ġ2019":954,".'":955,"Ġneeded":956,"ĠJames":957,"time":958,"Ġhowever":959,"Ġeverything":960,"Ġeveryone":961,"Ġdied":962,"Ġinvolved":963,"Ġfriends":964,"Ġisn":965,"Ġworth":966,"ik":967,"ĠCup":968,"Ġshowed":969,"There":970,"Ġ28":971,"Ġmeet":972,"Ġ26":973,"Ġ27":974,"Y":975,"Ġregion":976,"ĠPress":977,"ĠNow":978,"Ġson":979,"Ġspace":980,"Ġleading":981,"Ġstates":982,"Ġweekend":983,"Ġ£":984,"Ġmother":985,"Ġprevious":986,"ĠUK":987,"ĠMichael":988,"Ġleave":989,"est":990,"em":991,"Ġz":992,"ĠSome":993,"ors":994,"out":995,"15":996,"Ġwar":997,"Ġwebsite":998,"Ġstar":999,"X":1000,"ro":1001,"Ġtarget":1002,"Ġhimself":1003,"Ġturn":1004,"ĠEurope":1005,"Ġworked":1006,"Ġenergy":1007,"Ġscored":1008,"Ġ*":1009,"Ġsoon":1010,"Ġball":1011,"ĠTV":1012,"Ġannual":1013,"Ġ2013":1014,"Ġrace":1015,"ĠInternational":1016,"'d":1017,"ĠMarket":1018,"Ġconference":1019,"io":1020,"Ġo":1021,"Ġchanges":1022,"ig":1023,"Ġofficers":1024,"Ġinside":1025,"Ġform":1026,"Ġpublished":1027,"Ġphone":1028,"Ġco":1029,"Ġlegal":1030,"Ġexecutive":1031,"Ġfight":1032,"ings":1033,"Ġhope":1034,"Ġsummer":1035,"Ġofficer":1036,"Ġfootball":1037,"Ġproperty":1038,"@":1039,"Ġbook":1040,"Ġparents":1041,"Ġcosts":1042,"ac":1043,"Ġmanager":1044,"Ġcreate":1045,"Ġage":1046,"Ġemail":1047,"Ġmarkets":1048,"Ġmain":1049,"Ġhuman":1050,"Ġsent":1051,"Ġmanagement":1052,"ĠDay":1053,"ton":1054,"Ġcash":1055,"Ġfocus":1056,"Ġexpect":1057,"Ġtraining":1058,"Ġbecame":1059,"Ġwhose":1060,"Ġevents":1061,"Ġround":1062,"ĠLe":1063,"Ġfell":1064,"Ġabove":1065,"Ġanalysts":1066,"Ġtalk":1067,"Ġsituation":1068,"ri":1069,"ated":1070,"ke":1071,"Ġwants":1072,"ag":1073,"Ġlives":1074,"om":1075,"Ġal":1076,"Ġdemand":1077,"Ġsafety":1078,"Ġrest":1079,"ĠCouncil":1080,"Ġpersonal":1081,"Ġsite":1082,"ĠRussian":1083,"Ġmid":1084,"Ġnothing":1085,"Ġwhole":1086,"Ġbill":1087,"Ġsold":1088,"ĠBritish":1089,"se":1090,"Ġremain":1091,"12":1092,"Ġforeign":1093,"Ġshooting":1094,"Ġstay":1095,"50":1096,"ang":1097,"Ġhospital":1098,"Ġbad":1099,"Ġaddress":1100,"ĠKorea":1101,"Ġhappened":1102,"Ġcharges":1103,"Ġwhite":1104,"Ġ31":1105,"If":1106,"Ġearnings":1107,"Ġbreak":1108,"Ġlight":1109,"Ġterms":1110,"ĠChinese":1111,"ĠSenate":1112,"ana":1113,"Ġidea":1114,"ap":1115,"of":1116,"Ġnine":1117,"Ġcompared":1118,"Ġbuild":1119,"ard":1120,"In":1121,"Ġsimilar":1122,"Ġgas":1123,"Ġvictory":1124,"Ġ2012":1125,"Ġdebt":1126,"ĠMar":1127,"Ġarrested":1128,"Ġcomment":1129,"Ġincreased":1130,"Ġmedical":1131,"Ġ29":1132,"ĠJan":1133,"Ġgroups":1134,"Ġdespite":1135,"Ġfall":1136,"Ġtell":1137,"Ġworkers":1138,"Ġtown":1139,"é":1140,"Ġwife":1141,"Ġquestions":1142,"Ġcontinued":1143,"Ġheart":1144,"Ġmet":1145,"Ġbrought":1146,"Ġhelped":1147,"ĠCongress":1148,"Ġstep":1149,"Ġfather":1150,"Ġmoment":1151,"Ġproduct":1152,"Ġprobably":1153,"Ġlargest":1154,"Ġvehicle":1155,"ĠEngland":1156,"Ġallow":1157,"Ġstarting":1158,"Ġkids":1159,"Ġincident":1160,"Ġnet":1161,"Ġrates":1162,"ĠRead":1163,"Ġpressure":1164,"Ġincluded":1165,"Ġread":1166,"Ġissued":1167,"ol":1168,"Ġeither":1169,"Ġefforts":1170,"Ġincludes":1171,"ĠRepublican":1172,"ish":1173,"â̦":1174,"Ġgoals":1175,"aj":1176,"Ġen":1177,"x":1178,"Ġraised":1179,"au":1180,"Ġlonger":1181,"ut":1182,"Ġwatch":1183,"ĠTexas":1184,"You":1185,"Ġrange":1186,"nd":1187,"Ġfunds":1188,"Ġremains":1189,"ĠMark":1190,"Ġ60":1191,"Ġque":1192,"sh":1193,"Ġinterview":1194,"Ġrather":1195,"Ġresidents":1196,"Ġgrowing":1197,"Ġpre":1198,"Ġpaid":1199,"Ġcases":1200,"ĠReuters":1201,"Ġdifficult":1202,"Ġsign":1203,"ĠGoogle":1204,"Ġhttps":1205,"ĠPaul":1206,"Ġliving":1207,"day":1208,"ĠQ":1209,"iz":1210,"ĠRed":1211,"Ġland":1212,"They":1213,"ĠRoad":1214,"_":1215,"ĠThese":1216,"Ġview":1217,"Ġagency":1218,"Ġreason":1219,"Ġallowed":1220,"ĠAustralia":1221,"az":1222,"ĠRe":1223,"Ġturned":1224,"11":1225,"Ġnation":1226,"Ġready":1227,"Ġpress":1228,"Ġbudget":1229,"Ġdaily":1230,"ĠChief":1231,"Ġfamilies":1232,"Ġsignificant":1233,"ĠFirst":1234,"Ġthemselves":1235,"Ġj":1236,"Ġruns":1237,"Ġaccused":1238,"Ġtakes":1239,"Ġspent":1240,"Ġvia":1241,"ot":1242,"ina":1243,"25":1244,"land":1245,"Ġexample":1246,"Ġauthorities":1247,"Ġdate":1248,"Ġended":1249,"all":1250,"Reuters":1251,"Ġbusinesses":1252,"ans":1253,"Ġdetails":1254,"Ġground":1255,"Ġpretty":1256,"ĠApple":1257,"ation":1258,"ĠSmith":1259,"ĠCompany":1260,"ĠFlorida":1261,"Ġdrug":1262,"Ġresponse":1263,"one":1264,"Ġeducation":1265,"Ġmean":1266,"Ġleague":1267,"Ġanyone":1268,"Ġminister":1269,"Ġtitle":1270,"Ġadding":1271,"Ġproblems":1272,"Ġopening":1273,"Ġconditions":1274,"Ġred":1275,"Ġdecided":1276,"Å":1277,"Ġposted":1278,"term":1279,"Ġamount":1280,"ĠEU":1281,"Ġsuccess":1282,"Ġevidence":1283,"ĠObama":1284,"Ġaddition":1285,"Ġprovided":1286,"ĠLos":1287,"Ġagreement":1288,"Ġstage":1289,"ens":1290,"Ġrelationship":1291,"ĠGeneral":1292,"Ġsector":1293,"Ġstudent":1294,"ating":1295,"Ġtest":1296,"\",":1297,"Ġwinning":1298,"Ġfelt":1299,"Ġsource":1300,"Z":1301,"Ġseems":1302,"Ġcause":1303,"Ġschools":1304,"Ġdrive":1305,"Ġensure":1306,"Ġhuge":1307,"ĠMy":1308,"ĠHealth":1309,"Ġscene":1310,"Ġgiving":1311,"Ġcenter":1312,"Ġpositive":1313,"Ġyards":1314,"Ġjobs":1315,"Ġaccount":1316,"Ġheard":1317,"Ġquality":1318,"Ġways":1319,"Ġimmediately":1320,"Ġemployees":1321,"are":1322,"Ġpass":1323,"ĠCEO":1324,"Ġreceive":1325,"Ġlooks":1326,"ĠAfrica":1327,"Ġthroughout":1328,"led":1329,"Ġrelated":1330,"Ġsell":1331,"ĠUnion":1332,"ĠPhoto":1333,"ter":1334,"Ġquickly":1335,"ĠHow":1336,"Ġvarious":1337,"Ġreach":1338,"Ġpick":1339,"Ġcharged":1340,"Ġquite":1341,"ent":1342,"q":1343,"ins":1344,"Ġphoto":1345,"Ġunderstand":1346,"ĠâĢ¢":1347,"Ġreached":1348,"Ġtrack":1349,"uk":1350,"Ġeffort":1351,"ville":1352,"Ġcentral":1353,"Ġdaughter":1354,"Ġcontract":1355,"Ġinjury":1356,"Ġopened":1357,"Ġ($":1358,"Ġstraight":1359,"17":1360,"Ġcredit":1361,"ĠIndian":1362,"Ġsexual":1363,"Ġworks":1364,"Ġeasy":1365,"18":1366,"Ġclosed":1367,"Ġh":1368,"Ġhappen":1369,"Ġforce":1370,"ler":1371,"Ġhappy":1372,"Ġshared":1373,"Ġoverall":1374,"Ġmoving":1375,"á":1376,"Ġprojects":1377,"ĠBlack":1378,"Ġconcerns":1379,"Ġclass":1380,"Ġtried":1381,"Ġappeared":1382,"Ġcontent":1383,"ĠDistrict":1384,"Ġterm":1385,"Ġinstead":1386,"ĠOffice":1387,"Ġcontinues":1388,"Ġlevels":1389,"Ġafternoon":1390,"Ġfund":1391,"Ġsale":1392,"Ġdriver":1393,"Ġask":1394,"Ġcannot":1395,"ner":1396,"end":1397,"ĠHere":1398,"field":1399,"Ġstore":1400,"www":1401,"Ġcertain":1402,"Ġself":1403,"Ġdollar":1404,"ĠHer":1405,"Ġpopular":1406,"Ġfollow":1407,"Ġspending":1408,"by":1409,"Ġmoved":1410,"Ġgoes":1411,"Ġcreated":1412,"Ġstand":1413,"Ġoperations":1414,"Ġlooked":1415,"Ġtreatment":1416,"ov":1417,"Ġdistrict":1418,"Ġsigned":1419,"Ġhands":1420,"Ġmodel":1421,"ĠAngeles":1422,"Ġy":1423,"Ġborder":1424,"Ġincome":1425,"ĠLast":1426,"Ġcharge":1427,"Ġdriving":1428,"ĠJapan":1429,"Ġrise":1430,"Ġtalks":1431,"Ġfollowed":1432,"Ġpreviously":1433,"Ġusers":1434,"Ġfunding":1435,"ĠJohnson":1436,"Ġ":1437,"ou":1438,"ai":1439,"Ġnamed":1440,"Ġfriend":1441,"ĠNov":1442,"Ġdefense":1443,"ĠBritain":1444,"Ġentire":1445,"Ġtrading":1446,"Ġfailed":1447,"ĠEl":1448,"Ġclaims":1449,"Ġcomments":1450,"Ġbeat":1451,"ib":1452,"Ġbasis":1453,"ĠJones":1454,"Ġpresent":1455,"ĠBe":1456,"Ġdouble":1457,"Ġrose":1458,"ite":1459,"Ġability":1460,"Ġoriginal":1461,"Ġdead":1462,"ĠCommission":1463,"ĠMe":1464,"Ġcompetition":1465,"Ġ2011":1466,"Ġknew":1467,"Ġmaterial":1468,"av":1469,"ĠFrance":1470,"Ġscore":1471,"Ġsense":1472,"Ġserious":1473,"Ġconfirmed":1474,"Ġanti":1475,"Ġviolence":1476,"Ġimprove":1477,"son":1478,"ó":1479,"ĠAP":1480,"Ġsh":1481,"Ġhost":1482,"ĠMike":1483,"Ġpatients":1484,"ĠNFL":1485,"Ġcrisis":1486,"Ġrevealed":1487,"ach":1488,"ĠPrime":1489,"Ġbuilt":1490,"ĠNot":1491,"Ġrules":1492,"Ġelse":1493,"Ġdepartment":1494,"Ġitself":1495,"ise":1496,"500":1497,"Ġcomplete":1498,"ion":1499,"Ġtrial":1500,"ĠBay":1501,"ĠDec":1502,"Ġattention":1503,"Ġtravel":1504,"ĠCentral":1505,"ry":1506,"Ġagreed":1507,"Ġmind":1508,"ĠMc":1509,"Ġ70":1510,"Ġcontact":1511,"ari":1512,"ĠTimes":1513,"Ġspot":1514,"ĠFrench":1515,"Ġgets":1516,"op":1517,"Ġbrand":1518,"Ġcalls":1519,"Ġbanks":1520,"Ġdesign":1521,"Ġsafe":1522,"Ġoffers":1523,"Ġpractice":1524,"ĠOf":1525,"á":1526,"ling":1527,"Ġtrue":1528,"off":1529,"Ġnumbers":1530,"Ġfun":1531,"Ġlearn":1532,"Ġmultiple":1533,"ĠIs":1534,"res":1535,"als":1536,"Ġcommon":1537,"ized":1538,"Ġchallenge":1539,"Ġcommittee":1540,"ĠOur":1541,"Ġbase":1542,"ani":1543,"ĠAssociation":1544,"ung":1545,"Ġnetwork":1546,"ĠBrown":1547,"Ġapproach":1548,"16":1549,"Ġfinished":1550,"Ġreview":1551,"Ġrequired":1552,"Ġapp":1553,"ĠMan":1554,"Ġâ̦":1555,"twitter":1556,"ĠDemocratic":1557,"13":1558,"Ġevening":1559,"ĠTom":1560,"ä":1561,"ĠAssociated":1562,"ĠCanadian":1563,"Ġcollege":1564,"Ġspokesman":1565,"Ġarticle":1566,"Ġtowards":1567,"ĠChicago":1568,"Ġmovie":1569,"14":1570,"ity":1571,"Ġforces":1572,"ĠChris":1573,"ĠDemocrats":1574,"Ġfeatures":1575,"Ġhearing":1576,"ĠX":1577,"ĠAlso":1578,"Ġmessage":1579,"age":1580,"Ġnoted":1581,"ĠSuper":1582,"Ġthousands":1583,"aw":1584,"ĠBill":1585,"ĠAr":1586,"ĠLa":1587,"ip":1588,"Ġ/":1589,"ĠDuring":1590,"Ġnote":1591,".)":1592,"Ġwrong":1593,"if":1594,"Ġpassed":1595,"ĠTwo":1596,"Ġdie":1597,",'":1598,"ĠDon":1599,"ĠGermany":1600,"Ġletter":1601,"Ġdescribed":1602,"ĠIran":1603,"ĠWilliams":1604,"Ġparticularly":1605,"Ġadd":1606,"Ġconversation":1607,"ĠSe":1608,"Ġhighest":1609,"be":1610,"Ġhomes":1611,"Ġsports":1612,"Ġgone":1613,"ĠAd":1614,"Ġel":1615,"Ġopportunities":1616,"Ġwords":1617,"Ġleaving":1618,"ĠChristmas":1619,"As":1620,"ĠGovernment":1621,"Ġsimply":1622,"Ġhusband":1623,"ĠResearch":1624,"ĠMexico":1625,"ates":1626,"ale":1627,"ĠGreen":1628,"$":1629,"od":1630,"ĠHall":1631,"Ġnatural":1632,"Ġoperating":1633,"les":1634,"ations":1635,"ĠKim":1636,"Ġgold":1637,"ok":1638,"Ġprovides":1639,"(":1640,"ell":1641,"Ġbegin":1642,"ĠParty":1643,"back":1644,"ĠAmazon":1645,"19":1646,"Ġmajority":1647,"ĠEven":1648,"Ġcheck":1649,"Ġweather":1650,"Ġorganization":1651,"Ġstories":1652,"ĠCar":1653,"Ġforced":1654,"ĠGeorge":1655,"Ġwalk":1656,"ong":1657,"Ġfiled":1658,"ĠJustice":1659,"Ġlaunched":1660,"Ġoffered":1661,"Ġwww":1662,"Ġconstruction":1663,"ĠBen":1664,"Ġserved":1665,"Ġ...":1666,"Ġparts":1667,"Ġcancer":1668,"Ġguys":1669,"Reporting":1670,"ash":1671,"less":1672,"Ġleadership":1673,"ĠCommittee":1674,"Ġregular":1675,"Ġcouncil":1676,"Ġcars":1677,"ĠDirector":1678,"Ġjudge":1679,"Ġvictims":1680,"ĠDaily":1681,"Ġkept":1682,"Ġeffect":1683,"Ġbeyond":1684,"pm":1685,"Ġtalking":1686,"Ġconsidered":1687,"ore":1688,"ĠAdvertisement":1689,"Ġst":1690,"ED":1691,"Ġmiddle":1692,"Ġraise":1693,"we":1694,"Ġclaimed":1695,"ino":1696,"Ġalleged":1697,"ĠPro":1698,"ĠScott":1699,"ĠOct":1700,"Ġconsider":1701,"ĠShare":1702,"Ġtraffic":1703,"ĠAfrican":1704,"Ġcouldn":1705,"Ġtoward":1706,"Ġsearch":1707,"But":1708,"Ġlaunch":1709,"Ġinjured":1710,"That":1711,"Ġalthough":1712,"Ġactivities":1713,"Ġchanged":1714,"Ġsources":1715,"Ġmissing":1716,"Ġu":1717,"Ġ35":1718,"Ġcover":1719,"ised":1720,"Ġ|":1721,"ow":1722,"ES":1723,"Ġdecades":1724,"ich":1725,"Ġcaused":1726,"Ġelections":1727,"ane":1728,"IS":1729,"Ġfeet":1730,"ĠBar":1731,"Ġversion":1732,"Ġgrow":1733,"Ġvehicles":1734,"Ġoptions":1735,"Ġindividual":1736,"Ġenvironment":1737,"ĠRobert":1738,"ĠValley":1739,"ĠFrom":1740,"per":1741,"ara":1742,"Ġsystems":1743,"Ġprotect":1744,"ĠKing":1745,"Ġinjuries":1746,"Ġfinally":1747,"Ġnuclear":1748,"40":1749,"Ġratio":1750,"Ġgun":1751,"ĠPakistan":1752,"ĠManagement":1753,"ĠAir":1754,"ce":1755,"Ġopposition":1756,"ment":1757,"ick":1758,"Ġpro":1759,"Ġact":1760,"Ġplatform":1761,"Ġlack":1762,"Ġpair":1763,"Ġ500":1764,"Ġcalling":1765,"ary":1766,"Ġprograms":1767,"Ġscheduled":1768,"Ġfast":1769,"Ġjoined":1770,"ĠWar":1771,"ĠEditing":1772,"ĠSince":1773,"ĠRyan":1774,"ĠMac":1775,"ĠBig":1776,"ĠLake":1777,"Ġdigital":1778,"When":1779,"ue":1780,"Ġassets":1781,"Ġseeing":1782,"ĠAct":1783,"Ġpartner":1784,"ĠBoard":1785,"Ġbeginning":1786,"Ġsupply":1787,"Ġmiles":1788,"Ġprison":1789,"ons":1790,"ĠAmericans":1791,"ub":1792,"ĠOr":1793,"me":1794,"Ġbenefits":1795,"Ġbenefit":1796,"Ġmeasures":1797,"Ġhear":1798,"Ġparties":1799,"Ġsuccessful":1800,"ĠJust":1801,"Ġvictim":1802,"Ġblock":1803,"Ġlimited":1804,"Ġtrip":1805,"ĠPeople":1806,"Ġserve":1807,"Ġart":1808,"ism":1809,"Ġwide":1810,"ĠSch":1811,"Ġ80":1812,"ĠThomas":1813,"Ġ90":1814,"Ġstocks":1815,"Ġgirl":1816,"ĠAsia":1817,"Ġseeking":1818,"Ġcertainly":1819,"ĠServices":1820,"ĠCollege":1821,"Ġcommunities":1822,"Ġextra":1823,"Ġ2010":1824,"ness":1825,"Ġholding":1826,"ous":1827,"Ġtough":1828,"ade":1829,"Ġmobile":1830,"Ġowns":1831,"ĠDo":1832,"ĠFire":1833,"Ġspoke":1834,"Ġreturned":1835,"Ġsize":1836,"Ġcriminal":1837,"ĠInstagram":1838,"Ġoffering":1839,"ĠGod":1840,"ĠService":1841,"Ġpage":1842,"her":1843,"Ġdeep":1844,"wood":1845,"Ġcrime":1846,"ĠSports":1847,"ile":1848,"ĠGlobal":1849,"Ġproposed":1850,"ain":1851,"Ġsession":1852,"ĠFederal":1853,"ĠSyria":1854,"Ġch":1855,"Ġthreat":1856,"Ġallegations":1857,"ĠRepublicans":1858,"ĠGerman":1859,"Ġstrategy":1860,"Ġcommercial":1861,"ING":1862,"ĠSecretary":1863,"Q":1864,"Ġreporters":1865,"100":1866,"ĠCapital":1867,"ĠBoth":1868,"ĠPost":1869,"ĠIsrael":1870,"Ġsave":1871,"ts":1872,"ill":1873,"Ġdrop":1874,"Ġreserved":1875,"ĠMany":1876,"Ġavoid":1877,"Ġ200":1878,"iv":1879,"Ġdamage":1880,"Ġcondition":1881,"Ġdropped":1882,"Ġdoor":1883,"Ġplanning":1884,"ire":1885,"Ġcard":1886,"Ġdesigned":1887,"Ġreduce":1888,"AN":1889,"ĠUn":1890,"ford":1891,"ĠThen":1892,"Ġpic":1893,"ĠCopyright":1894,"Ġrain":1895,"ĠMartin":1896,"Ġdomestic":1897,"45":1898,"ge":1899,"Ġmurder":1900,"Ġspeech":1901,"line":1902,"Ġhelping":1903,"Ġplanned":1904,"Ġfeature":1905,"ud":1906,"Ġtype":1907,"ham":1908,"ĠPublic":1909,"ja":1910,"Ġinsurance":1911,"Ġattacks":1912,"ĠCorp":1913,"Ġforecast":1914,"Ġresources":1915,"ma":1916,"?\"":1917,"ĠAm":1918,"ĠSept":1919,"Ġpush":1920,"Ġattorney":1921,"23":1922,"Ġemergency":1923,"Ġwinner":1924,"Ġblood":1925,"Ġnorth":1926,"ĠFeb":1927,"Ġbaby":1928,"Ġfloor":1929,"Ġspend":1930,"Ġex":1931,"Ġdollars":1932,"Ġunit":1933,"ĠHill":1934,"Ġder":1935,"ĠAbout":1936,"Ġalone":1937,"ization":1938,"Ġpresidential":1939,"Ġactivity":1940,"ĠTHE":1941,"ee":1942,"ber":1943,"ĠOther":1944,"Ġowner":1945,"Ġhour":1946,"Ġcities":1947,"Ġanswer":1948,"ide":1949,"Ġfully":1950,"ek":1951,"ists":1952,"Ġcoverage":1953,"Ġvs":1954,"Ġfigure":1955,"Ġpopulation":1956,"org":1957,"Ġsnow":1958,"Ġbecoming":1959,"ĠSam":1960,"ĠCarolina":1961,"Ġjoin":1962,"Ġprofit":1963,"Ġitems":1964,"Ġindex":1965,"Ġanalysis":1966,"Ġtournament":1967,"Ġstake":1968,"Ġperfect":1969,"way":1970,"Ġband":1971,"Ġgirls":1972,"Ġoption":1973,"Ġplays":1974,"oc":1975,"Ġproviding":1976,"ÃŃ":1977,"24":1978,"Ġwouldn":1979,"Ġones":1980,"Ġdeclined":1981,"Ġwritten":1982,"Ġvoters":1983,"Ġcandidate":1984,"Ġsuspect":1985,"Ġpolicies":1986,"Ġpeace":1987,"ast":1988,"Ġparticular":1989,"for":1990,"Ġhopes":1991,"Ġstation":1992,"ĠMost":1993,"Ġspeak":1994,"ĠRiver":1995,"Ġasking":1996,"Ġstatements":1997,"Ġfifth":1998,"ha":1999,"ĠNigeria":2000,"af":2001,"Ġexplained":2002,"Ġbar":2003,"Ġhousing":2004,"ĠSanta":2005,"Ġidentified":2006,"Ġsimple":2007,"Ġcritical":2008,"ĠClub":2009,"ĠSecurity":2010,"ĠLike":2011,"Ġstarts":2012,"art":2013,"Ġstreet":2014,"Ġreality":2015,"Ġheavy":2016,"Ġprogress":2017,"Ġshowing":2018,"Ġchallenges":2019,"Ġban":2020,"Ġcommitted":2021,"35":2022,"»":2023,"Ġdirectly":2024,"Ġaren":2025,"Ġclaim":2026,"ĠWestern":2027,"ind":2028,"Ġgives":2029,"ĠSaudi":2030,"Ġchoice":2031,"ĠTh":2032,"Ġapproved":2033,"Ġlocated":2034,"Ġarrived":2035,"22":2036,"Ġcaught":2037,"Ġprofessional":2038,"Ġmissed":2039,"Ġculture":2040,"ĠYear":2041,"ĠOhio":2042,"ĠLtd":2043,"ĠAnother":2044,"Ġseem":2045,"Ġbelieves":2046,"Ġbelieved":2047,"Ġcharacter":2048,"ĠAug":2049,"red":2050,"Ġfine":2051,"Ġprior":2052,"Ġthinking":2053,"Ġhttp":2054,"Ġ+":2055,"Ġzone":2056,"Ġputting":2057,"Ġcrash":2058,"ĠAustralian":2059,"ĠAb":2060,"Ġfocused":2061,"ĠREUTERS":2062,"ĠFox":2063,"ĠSp":2064,"Ġtraditional":2065,"Ġanalyst":2066,"Ġwait":2067,"IT":2068,"Ġrequest":2069,"ru":2070,"ians":2071,"ize":2072,"Ġfinish":2073,"Ġlaws":2074,"Ġran":2075,"ER":2076,"Ġsouth":2077,"Ġspeed":2078,"Ġmovement":2079,"Ġassault":2080,"Ġexchange":2081,"Ġappear":2082,"ĠSun":2083,"Ġle":2084,"Ġmaybe":2085,"Ġlosing":2086,"Ġsubject":2087,"ive":2088,"mer":2089,"ĠBusiness":2090,"ĠBl":2091,"Ġappears":2092,"Ġadvantage":2093,"ĠLee":2094,"ada":2095,"ĠUnder":2096,"Ġprevent":2097,"Ġrespect":2098,"Ġsex":2099,"Ġcentre":2100,"ĠJoe":2101,"ado":2102,"Ġtable":2103,"Ġequipment":2104,"Ġfair":2105,"Ġtour":2106,"Ġ32":2107,"ĠFinancial":2108,"Ġcounty":2109,"Ġdevices":2110,"Ġcustomer":2111,"Ġinfrastructure":2112,"Ġexpectations":2113,"Ġfacing":2114,"Ġupon":2115,"Ġcross":2116,"ĠOpen":2117,"AL":2118,"Ġquick":2119,"Ġattempt":2120,"Ġcompleted":2121,"Ġfacility":2122,"Ġconfidence":2123,"ĠSupreme":2124,"Ġpiece":2125,"our":2126,"Ġplaces":2127,"Ġsometimes":2128,"Ġpoor":2129,"Ġstorm":2130,"Ġhot":2131,"Ġaffected":2132,"na":2133,"Ġabuse":2134,"ĠMs":2135,"Ġword":2136,"over":2137,"Ġbrother":2138,"Ġnecessary":2139,"Ġeventually":2140,"ĠStar":2141,"Ġsend":2142,"Ġboy":2143,"ĠRs":2144,"Ġremember":2145,"21":2146,"Ġclimate":2147,"Ġcapacity":2148,"Ġresponsible":2149,"ĠMatt":2150,"month":2151,"Ġsuffered":2152,"%.":2153,"og":2154,"ĠPeter":2155,"Ġ,":2156,"Ġfeeling":2157,"ze":2158,"Ġbuying":2159,"oy":2160,"ij":2161,"Ġbought":2162,"Ġactions":2163,"Ġowned":2164,"Ġ___":2165,"Ġphysical":2166,"Ġspecific":2167,"Ġbattle":2168,"ĠEnergy":2169,"Ġpicture":2170,"Ġactive":2171,"Ġindividuals":2172,"Ġguy":2173,"Ġregional":2174,"Ġbond":2175,"ows":2176,"ĠToronto":2177,"Ġrule":2178,"Ġdevelop":2179,"Ġcrowd":2180,"Ġguilty":2181,"Ġfemale":2182,"Ġselling":2183,"ĠFollow":2184,"Ġmyself":2185,"ata":2186,"Ġdevice":2187,"Ġreasons":2188,"Ġrecords":2189,"Ġfighting":2190,"ON":2191,"ities":2192,"ĠHome":2193,"Ġstatus":2194,"Ġplant":2195,"Ġdrugs":2196,"ĠChurch":2197,"Ġcompletely":2198,"Ġdisease":2199,"Ġhighly":2200,"ĠParis":2201,"Ġdecade":2202,"Ġowners":2203,"Ġwall":2204,"Ġcamp":2205,"ĠSteve":2206,"Ġreporting":2207,"Ġearned":2208,"ĠImages":2209,"Ġexisting":2210,"ĠSen":2211,"Ġconcern":2212,"Ġhundreds":2213,"Ġsong":2214,"Ġknows":2215,"Ġunique":2216,"Ġlose":2217,"ĠKh":2218,"Ġapproximately":2219,"Ġhaven":2220,"Ġpark":2221,"Ġindependent":2222,"ĠAlthough":2223,"ĠAndrew":2224,"Ġpaper":2225,"Ġdeveloped":2226,"Ġrising":2227,"Ġdirect":2228,"Ġpurchase":2229,"Ġexactly":2230,"Ġq":2231,"Ġmassive":2232,"Ġbox":2233,"Ġchampion":2234,"ĠClinton":2235,"Ġvoice":2236,"Ġarrest":2237,"ĠKorean":2238,"Ġlearning":2239,"ĠVirginia":2240,"Ġsa":2241,"Ġpar":2242,"Ġchairman":2243,"Ġagencies":2244,"Ġhealthy":2245,"ĠThose":2246,"Ġpowerful":2247,"Ġ45":2248,"Ġdifference":2249,"ĠJackson":2250,"Ġenforcement":2251,"Ġdividend":2252,"qu":2253,"Ġenjoy":2254,"Ġruling":2255,"Ġongoing":2256,"Ġsoftware":2257,"ks":2258,"Ġlocation":2259,"Ġmostly":2260,"Ġcandidates":2261,"men":2262,"Ġbroke":2263,"What":2264,"ĠBr":2265,"Ġ2008":2266,"Ġconsumer":2267,"Ġdiscuss":2268,"Ġdi":2269,"Ġprimary":2270,"ĠEn":2271,"Ġgreen":2272,"Ġconcerned":2273,"Ġimage":2274,"ĠPremier":2275,"ĠMeanwhile":2276,"Ġfired":2277,"ĠBoston":2278,"ann":2279,"Ġcamera":2280,"Ġtraded":2281,"Ġhasn":2282,"Ġexcited":2283,"Ġincreasing":2284,"ĠDespite":2285,"Ġcitizens":2286,"Ġeuro":2287,"Ġreportedly":2288,"Ġminute":2289,"ĠWill":2290,"ĠLLC":2291,"Ġsp":2292,"ĠMichigan":2293,"Ġstopped":2294,"Ġeye":2295,"Ġdenied":2296,"Ġmodern":2297,"ĠWall":2298,"Ġdefinitely":2299,"point":2300,"Ġlines":2301,"Ġpolitics":2302,"Ġhotel":2303,"Ġretail":2304,"Ġstated":2305,"ĠOver":2306,"Ġgrew":2307,"Ġbroadcast":2308,"Ġlegislation":2309,"Ġfresh":2310,"Ġbid":2311,"Ġmanaged":2312,"Ġsociety":2313,"Ġscoring":2314,"ĠGet":2315,"Ġintelligence":2316,"Ġholiday":2317,"Ġgovernor":2318,"Ġestimated":2319,"Ġexperts":2320,"ĠJeff":2321,"Ġstruck":2322,"Ġhits":2323,"Ġcarry":2324,"Ġplaced":2325,"Ġstores":2326,"Ġexpressed":2327,"Ġvalued":2328,"Ġad":2329,"Ġtwice":2330,"ala":2331,"Ġdisplay":2332,"Ġusually":2333,"Ġresponded":2334,"Ġdog":2335,"AS":2336,"ĠFed":2337,"Ġ2009":2338,"Ġdocuments":2339,"Ġnormal":2340,"Ġtrain":2341,"Ġfl":2342,"Ġshown":2343,"ĠEd":2344,"Ġsort":2345,"Ġallegedly":2346,"Ġshots":2347,"ka":2348,"Ġaccounts":2349,"Ġyesterday":2350,"Ġcreating":2351,"Ġchurch":2352,"Ġbus":2353,"Ġaward":2354,"Ġequity":2355,"Ġphotos":2356,"Ġ33":2357,"Ġfiscal":2358,"je":2359,"Ġconsumers":2360,"ĠManchester":2361,"no":2362,"ĠKevin":2363,"Ġgain":2364,"Ġcorporate":2365,"Ġcivil":2366,"ĠMiddle":2367,"ally":2368,"Ġsound":2369,"ĠEnglish":2370,"IC":2371,"Ġwinds":2372,"Ġworst":2373,"ĠGrand":2374,"Ġeffective":2375,"ĠIsland":2376,"Ġdrivers":2377,"Ġfan":2378,"pe":2379,"Ġsides":2380,"ĠGo":2381,"Ġclean":2382,"âĢĵ":2383,"Ġtelevision":2384,"ĠJr":2385,"Ġallows":2386,"My":2387,"Ġgreater":2388,"ance":2389,"Ġdecisions":2390,"Ġrestaurant":2391,"ĠHospital":2392,"ĠTr":2393,"Ġbalance":2394,"Ġmph":2395,"Ġkeeping":2396,"Ġseconds":2397,"Ġweapons":2398,"ert":2399,"Ġpain":2400,"ass":2401,"Ġsteps":2402,"ger":2403,"ĠBrexit":2404,"Ġremaining":2405,"Ġbringing":2406,"ure":2407,"Ġweight":2408,"And":2409,"Ġwriting":2410,"Photo":2411,"ĠChristian":2412,"ob":2413,"Ġsport":2414,"Ġfigures":2415,"Ġtrust":2416,"Ġskills":2417,"Ġseat":2418,"Ġfaces":2419,"ck":2420,"Ġborn":2421,"Ġsuper":2422,"Ġfuel":2423,"Ġdel":2424,"Ġmeant":2425,"ica":2426,"Ġjustice":2427,"Ġspring":2428,"Ġkilling":2429,"Ġnegative":2430,"ĠRichard":2431,"Ġund":2432,"Ġfactors":2433,"Ġsigns":2434,"Ġlearned":2435,"ĠGame":2436,"Ġaudience":2437,"Ġdeliver":2438,"Ġillegal":2439,"Ġblue":2440,"Ġscreen":2441,"Ġremained":2442,"Ġannouncement":2443,"IN":2444,"Ġwaiting":2445,"Ġthanks":2446,"Ġimmigration":2447,"ĠFBI":2448,"Ġwarned":2449,"Ġmeasure":2450,"Ġdraw":2451,"Ġpositions":2452,"Ġdebut":2453,"ĠMedia":2454,"Ġallowing":2455,"air":2456,"hen":2457,"Ġmark":2458,"ys":2459,"Ġprepared":2460,"ĠVegas":2461,"ep":2462,"ice":2463,"2018":2464,"Ġdefensive":2465,"60":2466,"ĠBeach":2467,"Ġpulled":2468,"£":2469,"Ġlawyer":2470,"Ġcast":2471,"Ġsolution":2472,"Ġeyes":2473,"Ġmarketing":2474,"ĠFoundation":2475,"Ġrisks":2476,"ĠToday":2477,"za":2478,"Ġdraft":2479,"Ġice":2480,"26":2481,"ĠHar":2482,"ĠExecutive":2483,"Ġtruck":2484,"ions":2485,"ĠYour":2486,"ĠIreland":2487,"ĠJim":2488,"Ġha":2489,"Ġfear":2490,"Ġ36":2491,"UR":2492,"ĠFord":2493,"Ġwatching":2494,"ien":2495,"Ġstyle":2496,"ĠGood":2497,"Ġwearing":2498,"ĠHouston":2499,"Ġonto":2500,"Ġboost":2501,"Ġapplication":2502,"ĠDan":2503,"Ġspread":2504,"ĠDavis":2505,"Ġstrike":2506,"els":2507,"Ġwind":2508,"Ġinterested":2509,"Ġguard":2510,"Ġmission":2511,"Ġyourself":2512,"Ġoperation":2513,"Ġlarger":2514,"She":2515,"Ġseasons":2516,"28":2517,"27":2518,"Ġrespond":2519,"ci":2520,"ĠCentre":2521,"Our":2522,"Ġnames":2523,"Ġflight":2524,"Ġquarterback":2525,"Ġstandard":2526,"so":2527,"Ġsuggested":2528,"ĠMal":2529,"Ġolder":2530,"ini":2531,"Ġperhaps":2532,"ont":2533,"ĠInstitute":2534,"Ġmillions":2535,"Ġmental":2536,"ÃĤ":2537,"ga":2538,"Ġclients":2539,"Ġplease":2540,"Ġloan":2541,"Ġaware":2542,"ft":2543,"int":2544,"75":2545,"05":2546,"AY":2547,"ĠOut":2548,"Ġhair":2549,"ied":2550,"Ġseemed":2551,"ene":2552,"ty":2553,"NYSE":2554,"Ġoffensive":2555,"Ġtaxes":2556,"Ġinitial":2557,"ren":2558,"Ġseparate":2559,"la":2560,"ĠMiami":2561,"AC":2562,"Ġclearly":2563,"Ġfit":2564,"ĠCoast":2565,"Ġfirms":2566,"Ġpartners":2567,"Ġupcoming":2568,"Ġcold":2569,"Ġproposal":2570,"AT":2571,"Ġshut":2572,"ĠCommunity":2573,"Ġnature":2574,"ĠSal":2575,"Ġbottom":2576,"ting":2577,"ĠClick":2578,"Ġnice":2579,"ets":2580,"Ġhurt":2581,"itt":2582,"ama":2583,"Ġcarried":2584,"ĠCon":2585,"rd":2586,"Ġestate":2587,"ĠLas":2588,"ĠLaw":2589,"ng":2590,"Ġprotection":2591,"Ġproduce":2592,"Ġcurrency":2593,"Ġhappens":2594,"ĠPer":2595,"ney":2596,"ĠLong":2597,"Ġfellow":2598,"Ġcuts":2599,"Ġreading":2600,"ano":2601,"Ġproud":2602,"ost":2603,"ĠUN":2604,"ĠArizona":2605,"AD":2606,"Ġhelps":2607,"Ġwinter":2608,"Ġfinding":2609,"ĠGold":2610,"att":2611,"ĠWhy":2612,"Ġbasketball":2613,"lin":2614,"ĠCan":2615,"ĠBowl":2616,"ial":2617,"ĠAlex":2618,"200":2619,"AM":2620,"Ġpresence":2621,"Ġproduced":2622,"Ġdeveloping":2623,"Ġregarding":2624,"Ġdebate":2625,"Ġvice":2626,"ĠItaly":2627,"Ġsu":2628,"its":2629,"ator":2630,"Ġ34":2631,"Ġcomplex":2632,"Ġpresented":2633,"Ġresearchers":2634,"Ġslow":2635,"ya":2636,"Ġsanctions":2637,"Ġloved":2638,"Ġseek":2639,"Ġresponsibility":2640,"Ġadmitted":2641,"Ġalbum":2642,"Ġsolutions":2643,"Ġfacilities":2644,"ett":2645,"ĠGu":2646,"ĠWell":2647,"Ġlawmakers":2648,"Ġmiss":2649,"ful":2650,"ĠNick":2651,"'.":2652,"Ġfeels":2653,"Ġprime":2654,"Ġknowledge":2655,"Ġdeals":2656,"ĠTaylor":2657,"Ġsurvey":2658,"ĠFrancisco":2659,"Ġjoint":2660,"Ġwhom":2661,"Ġsit":2662,"01":2663,"Ġtr":2664,"Ġorganizations":2665,"ĠAvenue":2666,"ĠTheir":2667,"ĠTim":2668,"Ġrally":2669,"game":2670,"Ġbigger":2671,"Ġlawsuit":2672,"Ġrecorded":2673,"Ġfavorite":2674,"yard":2675,"Ġtransaction":2676,"Ġqu":2677,"oh":2678,"Ġinteresting":2679,"Ġinflation":2680,"ath":2681,"Ġstuff":2682,"Ġindustrial":2683,"ico":2684,"TS":2685,"Ġspeaking":2686,"Ġlosses":2687,"ID":2688,"ĠStadium":2689,"Ġstars":2690,"ĠWomen":2691,"ĠBlue":2692,"Ġwins":2693,"Ġdes":2694,"Ġcompetitive":2695,"ters":2696,"Ġpounds":2697,"Ġdirection":2698,"Ġinnings":2699,"ĠBest":2700,"Ġactor":2701,"Ġdangerous":2702,"Ġrequire":2703,"Ġplus":2704,"Ġsolid":2705,"Ġgeneration":2706,"Ġstrength":2707,"ĠMary":2708,"For":2709,"Ġplenty":2710,"ĠTeam":2711,"Ġinfluence":2712,"Ġfaced":2713,"Ġes":2714,"ĠIslamic":2715,"let":2716,"ĠDevelopment":2717,"Ġpath":2718,"Ġyouth":2719,"Ġcommitment":2720,"Ġbeautiful":2721,"ĠJack":2722,"ort":2723,"Ġten":2724,"Ġattend":2725,"ars":2726,"ón":2727,"Ġviews":2728,"Ġeuros":2729,"Ġauthor":2730,"Ġcore":2731,"Ġsupporters":2732,"ĠiPhone":2733,"Ġfashion":2734,"Ġsmaller":2735,"Ġelected":2736,"Ġuniversity":2737,"Ġpicked":2738,"wa":2739,"Ġordered":2740,"ĠSc":2741,"ĠÅ":2742,"Ġlargely":2743,"+":2744,"ĠAttorney":2745,"Ġpaying":2746,"AR":2747,"Ġconnection":2748,"Ġsetting":2749,"Ġna":2750,"ĠRock":2751,"Ġrecovery":2752,"ew":2753,"Ġserving":2754,"Ġsurprise":2755,"Ġoccurred":2756,"Ġdivision":2757,"Ġtelling":2758,"Ġmargin":2759,"Ġ2020":2760,"Ġsister":2761,"ĠNBA":2762,"Ġvoted":2763,"Ġcon":2764,"By":2765,"Ġ49":2766,"Ġfoot":2767,"ü":2768,"ĠTurkey":2769,"Ġamazing":2770,"Ġcombined":2771,"Ġappearance":2772,"Ġeasily":2773,"DAY":2774,"Ġnotes":2775,"ĠStart":2776,"Ġlanguage":2777,"Ġextremely":2778,"Ġcloudy":2779,"ĠLet":2780,"Ġdelivered":2781,"Ġimproved":2782,"Ġcollection":2783,"ĠPM":2784,"Ġestimates":2785,"Ġboys":2786,"izing":2787,"Ġtext":2788,"Ġcloser":2789,"Ġprotest":2790,"Ġprovince":2791,"Ġshop":2792,"Ġsmart":2793,"de":2794,"ĠSheriff":2795,"EN":2796,"Ġcorner":2797,"Ġpanel":2798,"Ġbooks":2799,"Ġsupported":2800,"Ġmentioned":2801,"ver":2802,"ĠMinistry":2803,"ĠPrince":2804,"ĠUSA":2805,"Ġreceiving":2806,"Ġchoose":2807,"ĠIN":2808,"ĠSpain":2809,"Ġsection":2810,"Ġconsidering":2811,"ĠCor":2812,"Ġwish":2813,"Ġwelcome":2814,"ĠConference":2815,"ere":2816,"ĠOfficer":2817,"Ġhoping":2818,"Ġportfolio":2819,"Ġstandards":2820,"Ġgrand":2821,"ĠReal":2822,"Ġsecure":2823,"ĠCorporation":2824,"ĠRep":2825,"ĠKelly":2826,"Ġstreets":2827,"Ġsitting":2828,"Ġslightly":2829,"ĠInvestment":2830,"99":2831,"ond":2832,"Ġunits":2833,"Ġvotes":2834,"Ġsegment":2835,"Ġchampionship":2836,"Ġsquad":2837,"iting":2838,"ron":2839,"®":2840,"Ġem":2841,"Ġtouch":2842,"Ġ38":2843,"Ġceremony":2844,"Ġdecide":2845,"Ġapproval":2846,"So":2847,"ĠPort":2848,"Ġsub":2849,"Ġsc":2850,"Ġrep":2851,"ĠWeek":2852,"Ġupper":2853,"Ġagree":2854,"ny":2855,"Ġmatches":2856,"ics":2857,"Ġtweeted":2858,"Ġheat":2859,"ĠGreat":2860,"Ġpenalty":2861,"Ġmass":2862,"Ġalongside":2863,"Ġherself":2864,"berg":2865,"Ġscience":2866,"Ġentered":2867,"Ġappeal":2868,"ĠPr":2869,"Ġfile":2870,"che":2871,"ĠReport":2872,"ĠThree":2873,"ĠNorthern":2874,"ĠJordan":2875,"Ġamid":2876,"Ġpace":2877,"Ġjail":2878,"Ġfinance":2879,"ĠYoung":2880,"32":2881,"Ġwilling":2882,"Ġconduct":2883,"ĠPar":2884,"Ġestablished":2885,"Ġreturns":2886,"Ġaid":2887,"Ġinternet":2888,"IA":2889,"29":2890,"Ġmeetings":2891,"Ġwarning":2892,"ĠCl":2893,"Ġcampus":2894,"Most":2895,"ĠFund":2896,"ĠWilliam":2897,"ĠJapanese":2898,"Ġconsensus":2899,"Ġbrain":2900,"!\"":2901,"Ġpoll":2902,"Ġtech":2903,"Ġtrend":2904,"Ġpotentially":2905,"Ġreduced":2906,"ĠShow":2907,"Ġ37":2908,"Ġhappening":2909,"ĠBrazil":2910,"pl":2911,"ĠCal":2912,"Ġcovered":2913,"Ġenter":2914,"TV":2915,"Ġcatch":2916,"foot":2917,"Ġunion":2918,"Ġexpansion":2919,"ĠSingapore":2920,"ĠDetroit":2921,"Ġattended":2922,"ats":2923,"Ġnewspaper":2924,"ĠDivision":2925,"news":2926,"Ġcap":2927,"Ġremoved":2928,"Ġ48":2929,"ĠRoyal":2930,"Ġwindow":2931,"Ġparking":2932,"Ġdark":2933,"Ġstanding":2934,"Ġupdate":2935,"Ġagent":2936,"Ġtransfer":2937,"ĠArmy":2938,"Ġuses":2939,"80":2940,"ĠTe":2941,"Ġintroduced":2942,"Ġmale":2943,"ĠSouthern":2944,"Ġratings":2945,"Ġisland":2946,"ĠMiller":2947,"Ġteachers":2948,"Ġadvice":2949,"Ġfamiliar":2950,"uf":2951,"Ġsought":2952,"Ġpor":2953,"ĠEric":2954,"Ġda":2955,"Ġideas":2956,"uh":2957,"Ġsixth":2958,"Ġtalent":2959,"ĠImage":2960,"ering":2961,"run":2962,"ments":2963,"Ġconducted":2964,"300":2965,"Ġurged":2966,"Ġdiscovered":2967,"Ġpl":2968,"Ġunderstanding":2969,"Ġoffense":2970,"Ġsecretary":2971,"Ġsk":2972,"Ġloans":2973,"ĠGr":2974,"Ġapplications":2975,"Ġcrude":2976,"go":2977,"ĠInstead":2978,"Ġopinion":2979,"Ġdoubt":2980,"ey":2981,"Ġdis":2982,"31":2983,"Ġexperienced":2984,"Ġleg":2985,"ĠCleveland":2986,"ven":2987,"Ġfailure":2988,"market":2989,"ack":2990,"Ġdecline":2991,"Ġchanging":2992,"Ġ300":2993,"Ġdefence":2994,"ĠBrian":2995,"Ġdelivery":2996,"Ġmarried":2997,"Ġdeclared":2998,"Ġpull":2999,"Ġlimit":3000,"ĠMORE":3001,"Ġdefeat":3002,"Ġexpand":3003,"ĠColorado":3004,"ĠRob":3005,"iss":3006,"Ġworse":3007,"Ġperform":3008,"ising":3009,"Ġ2007":3010,"ĠDel":3011,"Ġsurgery":3012,"Ġeasier":3013,"Ġmaintain":3014,"ĠEx":3015,"Ġtied":3016,"Ġeast":3017,"Ġuser":3018,"ola":3019,"Ġprogramme":3020,"Ġmanufacturing":3021,"Ġhitting":3022,"Ġx":3023,"Ġskin":3024,"Ġartist":3025,"Ġtells":3026,"Ġnearby":3027,"ĠDaniel":3028,"ĠPower":3029,"Ġdetermined":3030,"Ġactual":3031,"Ġtreated":3032,"Ġlived":3033,"Ġcomputer":3034,"Ġcool":3035,"oo":3036,"ĠPl":3037,"Ġeffects":3038,"Ġenvironmental":3039,"ĠMorgan":3040,"Ġflow":3041,"Ġachieve":3042,"ĠBell":3043,"Ġtesting":3044,"ĠBob":3045,"Ġwhatever":3046,"ĠBecause":3047,"US":3048,"ĠHollywood":3049,"Ġconflict":3050,"Ġwalking":3051,"ĠJudge":3052,"ĠAlabama":3053,"Ġaircraft":3054,"Ġte":3055,"well":3056,"Ġgoods":3057,"Ġidentify":3058,"Ġassociated":3059,"ĠVer":3060,"ĠEducation":3061,"Ġairport":3062,"IL":3063,"Ġfalling":3064,"Ġgiant":3065,"ĠMa":3066,"ĠMedical":3067,"Ġride":3068,"Ġden":3069,"º":3070,"ĠJose":3071,"Ġwest":3072,"ĠPacific":3073,"Ġvisitors":3074,"ĠWatch":3075,"ĠNations":3076,"Ġgains":3077,"Ġschedule":3078,"34":3079,"ĠExchange":3080,"Ġpayments":3081,"ĠII":3082,"70":3083,"No":3084,"ĠSyrian":3085,"ĠAdam":3086,"Ġne":3087,"Ġpartnership":3088,"Ġbl":3089,"ĠGeorgia":3090,"Ġsites":3091,"Ġmodels":3092,"Ġdegree":3093,"Ġdetermine":3094,"ĠWilson":3095,"Ġcontest":3096,"Ġprofessor":3097,"ĠChelsea":3098,"Ġmeaning":3099,"ĠGames":3100,"ĠTrust":3101,"ĠAsian":3102,"33":3103,"Ġlink":3104,"ĠUp":3105,"Ġholds":3106,"ĠTop":3107,"ĠItalian":3108,"ord":3109,"ĠKansas":3110,"Ġfarmers":3111,"Ġextended":3112,"Ġbirth":3113,"Ġreform":3114,"Ġrelations":3115,"Ġwrite":3116,"Ġsupporting":3117,"55":3118,"ita":3119,"Ġnotice":3120,"ster":3121,"Ġanimals":3122,"ĠJersey":3123,"Ġarm":3124,"ĠForeign":3125,"ĠLife":3126,"Ġtruly":3127,"ĠOnce":3128,"ĠMayor":3129,"ĠFree":3130,"ĠAgency":3131,"ĠWood":3132,"Ġpassing":3133,"DA":3134,"Ġ52":3135,"Ġmoves":3136,"Ġcom":3137,"house":3138,"ĠIts":3139,"Ġmarijuana":3140,"ines":3141,"Ġveteran":3142,"Ġvariety":3143,"ki":3144,"ff":3145,"amb":3146,"Ġlisted":3147,"Ġpushed":3148,"Ġvolume":3149,"Ġincreasingly":3150,"Ġkick":3151,"Ġrock":3152,"ank":3153,"Ġfees":3154,"Ġenable":3155,"Ġimages":3156,"Ġtruth":3157,"Ġministry":3158,"Ġrare":3159,"ĠDallas":3160,"ĠMinnesota":3161,"Ġcontributed":3162,"ĠCharles":3163,"Ġpercentage":3164,"Ġtechnical":3165,"ĠApp":3166,"Ġassistant":3167,"Ġinterests":3168,"Ġimmediate":3169,"38":3170,"ĠTown":3171,"Ġclosing":3172,"ĠAnthony":3173,"Ġsouthern":3174,"ase":3175,"ĠPutin":3176,"ĠForce":3177,"ba":3178,"Ġrefused":3179,"ĠStill":3180,"ix":3181,"ĠCol":3182,"Ġmaterials":3183,"Ġstructure":3184,"Ġdriven":3185,"Ġpatient":3186,"Ġbroken":3187,"Ġradio":3188,"Ġscale":3189,"Ġreplace":3190,"Ġ39":3191,"ĠLand":3192,"Ġdeputy":3193,"und":3194,"Ġcolor":3195,"OS":3196,"Ġroads":3197,"Ġcorruption":3198,"ĠRose":3199,"Ġemployee":3200,"ĠWater":3201,"Ġseats":3202,"Ġwalked":3203,"ec":3204,"Ġcents":3205,"Ġchain":3206,"Ġpayment":3207,"ĠAndroid":3208,"eb":3209,"Ġcommission":3210,"Ġthrow":3211,"Ġcount":3212,"Ġaccident":3213,"Ġexpensive":3214,"ered":3215,"ĠYes":3216,"ĠLouis":3217,"Ġstudies":3218,"Ġinvestigating":3219,"Ġcentury":3220,"Ġdiscussion":3221,"Ġinter":3222,"DAQ":3223,"ĠBefore":3224,"Ġinitially":3225,"*":3226,"Ġinvestments":3227,"Ġmulti":3228,"Ġtight":3229,"Ġconfident":3230,"Ġcounter":3231,"ĠQu":3232,"Ġgovernments":3233,"Ġarmed":3234,"Ġsuit":3235,"Ġrow":3236,"Ġlocations":3237,"Ġepisode":3238,"itch":3239,"Ġyounger":3240,"Ġfestival":3241,"Ġpitch":3242,"ĠOF":3243,"Ġtalked":3244,"ca":3245,"Ġprotests":3246,"Ġtargets":3247,"90":3248,"Ġoriginally":3249,"Ġsinger":3250,"Ġjourney":3251,"ug":3252,"Ġapply":3253,"Ġteacher":3254,"Ġchances":3255,"):":3256,"Ġdeaths":3257,"isation":3258,"ĠStephen":3259,"Ġcode":3260,"ĠChampionship":3261,"ĠJason":3262,"ĠAT":3263,"Ġaccept":3264,"ĠSeries":3265,"Ġvalues":3266,"Ġbed":3267,"ĠHarry":3268,"Ġflat":3269,"Ġtools":3270,"Ġpublicly":3271,"37":3272,"Ġpointed":3273,"ĠGolden":3274,"ps":3275,"Ġunable":3276,"ants":3277,"Ġestimate":3278,"Ġwarm":3279,"Ġbasic":3280,"ern":3281,"Ġraising":3282,"ĠRelated":3283,"Ġultimately":3284,"Ġnorthern":3285,"Ġplane":3286,"ĠVice":3287,"ĠRaj":3288,"ĠJustin":3289,"anc":3290,"Ġbrings":3291,"ĠArt":3292,"OT":3293,"Ġshift":3294,"ĠBBC":3295,"ĠSu":3296,"BS":3297,"Ġbag":3298,"Ġdoctor":3299,"Ġfill":3300,"Ġdowntown":3301,"Ġpossibility":3302,"ĠAg":3303,"Ġest":3304,"44":3305,"Ġstruggling":3306,"Ġlinked":3307,"Ġtickets":3308,"ĠJay":3309,"ĠCall":3310,"Ġstands":3311,"Ġwedding":3312,"Ġresident":3313,"eng":3314,"Ġleads":3315,"Ġadvance":3316,"ĠAtlanta":3317,"Ġtie":3318,"Ġadvanced":3319,"pt":3320,"burg":3321,"ĠEarlier":3322,"ĠSw":3323,"ĠZealand":3324,"Ġexercise":3325,"ĠAM":3326,"Ġaffect":3327,"Ġpossession":3328,"Ġinvolving":3329,"Ġ42":3330,"Ġwriter":3331,"ĠBeijing":3332,"Ġdoctors":3333,"Ġobviously":3334,"Ġer":3335,"ĠOlympic":3336,"Ġ75":3337,"ĠKhan":3338,"ĠFort":3339,"app":3340,"like":3341,"Ġsea":3342,"ock":3343,"Ġmix":3344,"ĠIraq":3345,"ĠMuslim":3346,"ĠFinally":3347,"Ġcontinuing":3348,"Ġpr":3349,"ĠKe":3350,"ĠJoseph":3351,"Ġexpects":3352,"Ġinstitutions":3353,"Ġconservative":3354,"own":3355,"ĠChairman":3356,"Ġreturning":3357,".-":3358,"Ġstood":3359,"Ġvision":3360,"ess":3361,"Ġadults":3362,"Ġyield":3363,"Ġprove":3364,"Ġorders":3365,"Ġdream":3366,"36":3367,"related":3368,"Ġsl":3369,"Ġeverybody":3370,"ui":3371,"Ġrepresents":3372,"Ġdiscussed":3373,"Ġbecomes":3374,"Ġvillage":3375,"CC":3376,"Ġnegotiations":3377,"ĠPhiladelphia":3378,"Ġcelebrate":3379,"Ġfarm":3380,"ç":3381,"Ġregistered":3382,"ĠGovernor":3383,"OL":3384,"ĠMon":3385,"Ġfiling":3386,"04":3387,"SE":3388,"ĠAssembly":3389,"Ġactress":3390,"Ġsi":3391,"Ġthank":3392,"Ġheading":3393,"ĠWho":3394,"Ġfamous":3395,"Ġconsecutive":3396,"Ġmarriage":3397,"ette":3398,"NAS":3399,"acks":3400,"ĠPlease":3401,"ĠDiego":3402,"Ġbaseball":3403,"ĠMoore":3404,"Ġties":3405,"Ġcarrying":3406,"que":3407,"Ġturning":3408,"ĠMcC":3409,"ĠKen":3410,"OR":3411,"ĠStock":3412,"Ġbuildings":3413,"49":3414,"ĠVan":3415,"39":3416,"ĠSeattle":3417,"Ġwild":3418,"Ġcrew":3419,"Ġroute":3420,"ĠTime":3421,"Ġtonight":3422,"Ġmoments":3423,"Ġvideos":3424,"Ġinternal":3425,"ĠLiverpool":3426,"port":3427,"Ġchair":3428,"Ġrival":3429,"ĠScotland":3430,"round":3431,"ith":3432,"Ġbreaking":3433,"Ġvoting":3434,"ically":3435,"Ġproducer":3436,"ĠLove":3437,"Ġremove":3438,"PA":3439,"Ġasset":3440,"Ġrequires":3441,"Ġsigning":3442,"ages":3443,"Ġimpressive":3444,"ĠIrish":3445,"Ġauthority":3446,"Ġruled":3447,"Ġaimed":3448,"Ġcaptain":3449,"AG":3450,"Ġplants":3451,"ĠAnderson":3452,"ĠSpanish":3453,"Ġbanking":3454,"Ġthreats":3455,"Ġsuspended":3456,"Ġtests":3457,"Ġreligious":3458,"Ġelectric":3459,"ĠREAD":3460,"Ġstrategic":3461,"Ġsplit":3462,"ex":3463,"Ġpractices":3464,"ĠIsraeli":3465,"ĠArabia":3466,"ĠMoscow":3467,"Ġfranchise":3468,"Ġcustody":3469,"ĠOld":3470,"Ġrequirements":3471,"Ġquarterly":3472,"Ġcomfortable":3473,"Ġcrimes":3474,"Ġheaded":3475,"Ġnewsletter":3476,"Ġanimal":3477,"Ġregulations":3478,"long":3479,"ĠCNN":3480,"Ġassists":3481,"Ġshopping":3482,"ĠGov":3483,"ĠSecurities":3484,"Ġassistance":3485,"Ġnor":3486,"Ġrelatively":3487,"Ġincreases":3488,"Ġgenerally":3489,"Ġ55":3490,"Ġgained":3491,"Ġ41":3492,"Ġpictures":3493,"gan":3494,"Ġpop":3495,"Ġupdates":3496,"ĠRepublic":3497,"Ġrebounds":3498,"ĠPatrick":3499,"Ġrelief":3500,"Ġacting":3501,"ĠFestival":3502,"Ġ2006":3503,"Ġboss":3504,"Ġtypes":3505,"65":3506,"ĠYet":3507,"Ġpurpose":3508,"ning":3509,"Ġmatters":3510,"Ġcompete":3511,"ball":3512,"ĠRam":3513,"Ġsw":3514,"ĠFollowing":3515,"ĠBush":3516,"Ġtroops":3517,"Ġsupposed":3518,"Ġfreedom":3519,"Ġfeatured":3520,"Ġstorage":3521,"ĠInformation":3522,"ĠHong":3523,"Ġgolf":3524,"Ġagents":3525,"Ġfraud":3526,"Ġminimum":3527,"Ġartists":3528,"Ġeat":3529,"high":3530,"ĠFormer":3531,"ĠKong":3532,"ĠJosh":3533,"ĠDelhi":3534,"Ġshowers":3535,"ĠAcademy":3536,"Ġapartment":3537,"Ġvan":3538,"Ġfish":3539,"oe":3540,"Ġfilms":3541,"ĠBo":3542,"Ġedge":3543,"Ġpossibly":3544,"Ġtweet":3545,"09":3546,"Ġresolution":3547,"jo":3548,"Ġkill":3549,"Ġ44":3550,"Ġcell":3551,"Ġscheme":3552,"Ġth":3553,"Ġbonds":3554,"Ġentry":3555,"Ġsecret":3556,"Ġ43":3557,"Ġending":3558,"Ġweren":3559,"ĠCredit":3560,"ĠLive":3561,"Ġretired":3562,"Ġmachine":3563,"Ġsummit":3564,"Ġsharing":3565,"Ġacquired":3566,"Ġera":3567,"Ġwear":3568,"ical":3569,"07":3570,"Ġexciting":3571,"li":3572,"BC":3573,"ĠSocial":3574,"Ġhistoric":3575,"ĠChe":3576,"ĠLewis":3577,"ira":3578,"Ġstolen":3579,"ĠSpeaking":3580,"Ġsleep":3581,"Ġspokeswoman":3582,"week":3583,"Ġpurchased":3584,"Ġimportance":3585,"EC":3586,"Ġends":3587,"Ġdress":3588,"Ġparliament":3589,"ĠCruz":3590,"Ġcards":3591,"hi":3592,"ĠEmail":3593,"Ġrepresent":3594,"Ġbrands":3595,"ĠSenior":3596,"Ġparticipants":3597,"Ġfly":3598,"Ġidentity":3599,"ĠHam":3600,"ĠSky":3601,"ij":3602,"SA":3603,"Ġpromised":3604,"Ġtrouble":3605,"Ġsuffering":3606,"Ġleaves":3607,"Ġsuggest":3608,"Sh":3609,"Ġbusy":3610,"Ġproperties":3611,"Ġworldwide":3612,"Ġcloud":3613,"ĠSEC":3614,"Ġclosely":3615,"Ġmanage":3616,"Ġnumerous":3617,"Ġbackground":3618,"ĠExpress":3619,"Ġ65":3620,"ĠTony":3621,"ĠMadrid":3622,"ev":3623,"der":3624,"Ġsignificantly":3625,"Ġalternative":3626,"Ġship":3627,"head":3628,"ators":3629,"Ġdinner":3630,"ax":3631,"SC":3632,"Ġcriticism":3633,"ĠMah":3634,"ĠMin":3635,"rie":3636,"ĠTour":3637,"Ġbench":3638,"Ġadds":3639,"Ġseriously":3640,"star":3641,"ĠJournal":3642,"ĠDi":3643,"ali":3644,"Ġsentence":3645,"ĠSeveral":3646,"Ġmayor":3647,"ati":3648,"Ġsuggests":3649,"Ġbehavior":3650,"Ġstronger":3651,"ĠFood":3652,"Ġclient":3653,"not":3654,"ĠPrice":3655,"Ġtargeted":3656,"ĠSingh":3657,"ĠNetwork":3658,"Ġprosecutors":3659,"Ġdirected":3660,"ĠDemocrat":3661,"bl":3662,"ues":3663,"ĠFamily":3664,"Ġconnected":3665,"ĠChampions":3666,"Ġroughly":3667,"Ġabsolutely":3668,"08":3669,"Ġpassengers":3670,"ö":3671,"ĠSpecial":3672,"Ġcoast":3673,"Ġcomplaint":3674,"Ġ400":3675,"ĠEm":3676,"ves":3677,"Ġdogs":3678,"Ġhandle":3679,"Ġotherwise":3680,"Ġsees":3681,"Ġticket":3682,"ĠAward":3683,"All":3684,"Ġtask":3685,"Ġsongs":3686,"ĠAmong":3687,"Ġdedicated":3688,"Ġsteel":3689,"looking":3690,"Ġshortly":3691,"Ġtackle":3692,"ative":3693,"Ġminor":3694,"â":3695,"Ġprovider":3696,"vers":3697,"use":3698,"ives":3699,"Ġtypically":3700,"Ġarms":3701,"ĠAnt":3702,"ĠIS":3703,"Ġjump":3704,"Ġ©":3705,"47":3706,"aff":3707,"Ġmonthly":3708,"ĠMicrosoft":3709,"ĠCBS":3710,"Ġthreatened":3711,"Ġhonor":3712,"ĠMo":3713,"42":3714,"Ġinning":3715,"Ġpool":3716,"Ġhealthcare":3717,"ĠStory":3718,"ĠTennessee":3719,"Ġpromote":3720,"EL":3721,"Ġemotional":3722,"Ġpe":3723,"Ġfactor":3724,"Ġinvestigators":3725,"Ľ":3726,"ĠBack":3727,"ĠProject":3728,"Ġcu":3729,"side":3730,"Ġmessages":3731,"TH":3732,"eg":3733,"Ġexperiences":3734,"Ġcausing":3735,"Ġjoining":3736,"Ġpackage":3737,"Ġbodies":3738,"Ġlots":3739,"ĠHarris":3740,"Ġcl":3741,"ĠInternet":3742,"free":3743,"Ġperformed":3744,"Ġpieces":3745,"buy":3746,"Ġcaption":3747,"Ġweb":3748,"Ġcontracts":3749,"At":3750,"Ġattempted":3751,"Ġunlikely":3752,"Ġclick":3753,"Ġinvest":3754,"IM":3755,"ĠView":3756,"Ġneighborhood":3757,"Ġring":3758,"ĠFour":3759,"ail":3760,"46":3761,"One":3762,"Ġnative":3763,"CH":3764,"OM":3765,"Ġalcohol":3766,"ĠVal":3767,"Ġcharacters":3768,"ĠPat":3769,"Ġpoliticians":3770,"ĠMag":3771,"Ġbegins":3772,"ĠAk":3773,"Ġlos":3774,"Ġpersonnel":3775,"Ġenjoyed":3776,"ĠTechnology":3777,"Ġsun":3778,"ĠIT":3779,"Ġdocument":3780,"Ġdeficit":3781,"Ġcoalition":3782,"Ġmemory":3783,"Ġpushing":3784,"any":3785,"ified":3786,"Ġfounder":3787,"Ġ2000":3788,"2017":3789,"Ġvisited":3790,"ĠThough":3791,"ph":3792,"Ġsoft":3793,"Ġflag":3794,"Ġmom":3795,"inch":3796,"ĠSamsung":3797,"Ġapps":3798,"Ġtouchdown":3799,"ĠCare":3800,"ĠMrs":3801,"Ġredistributed":3802,"Ġencourage":3803,"ched":3804,"Ġtend":3805,"Ġregions":3806,"pp":3807,"IP":3808,"br":3809,"ush":3810,"Ġargued":3811,"Ġjunior":3812,"BA":3813,"Ġsevere":3814,"ĠNIGHT":3815,"Ġdef":3816,"Ġsurrounding":3817,"48":3818,"Ġengine":3819,"Ġfilled":3820,"Ġseventh":3821,"Ġbattery":3822,"ĠAllen":3823,"Ġguidance":3824,"Ġroll":3825,"Ġrural":3826,"Ġexpert":3827,"Ġconvicted":3828,"Ġlikes":3829,"ĠRo":3830,"Ġgrown":3831,"Ġretirement":3832,"Ġintended":3833,"Ġmis":3834,"Ġarmy":3835,"Ġdance":3836,"ĠThank":3837,"Ġent":3838,"Ġoutlook":3839,"Ġpara":3840,"Ġdry":3841,"ĠTO":3842,"era":3843,"Ġwaste":3844,"Ġfaster":3845,"ĠEagles":3846,"TA":3847,"ĠFrank":3848,"Ã":3849,"LE":3850,"ura":3851,"ko":3852,"ao":3853,"Ġdistribution":3854,"Ġimprovement":3855,"Ġplayoff":3856,"Ġacquisition":3857,"ĠCH":3858,"Ġtomorrow":3859,"Ġstruggle":3860,"ĠHuman":3861,"Ġnewly":3862,"oon":3863,"ĠNe":3864,"con":3865,"sc":3866,"Ġunless":3867,"Ġtransition":3868,"ten":3869,"ĠInter":3870,"Ġequal":3871,"Ġrec":3872,"Ġappointed":3873,"Ġwake":3874,"ĠEarth":3875,"ose":3876,"ĠEastern":3877,"Ġsoldiers":3878,"ĠParliament":3879,"Ġsets":3880,"Ġattempts":3881,"ĠIllinois":3882,"Ġrevenues":3883,"ĠWil":3884,"Ġheads":3885,"Ġprepare":3886,"Ġpriority":3887,"PS":3888,"ĠJo":3889,"ĠNBC":3890,"Ġtherefore":3891,"yn":3892,"Ġinitiative":3893,"ct":3894,"Ġcoffee":3895,"ĠFair":3896,"43":3897,"den":3898,"form":3899,"ova":3900,"Ġappropriate":3901,"ĠPlay":3902,"Ġaccepted":3903,"Ġcreative":3904,"Ġfollows":3905,"Ġrescue":3906,"Ġtree":3907,"With":3908,"ĠNetflix":3909,"ĠFootball":3910,"Ġsurprised":3911,"Ġlowest":3912,"800":3913,"amp":3914,"Ġworried":3915,"mar":3916,"ran":3917,"Ġvisiting":3918,"Ġselected":3919,"ĠMusic":3920,"ĠAnn":3921,"Ġexplain":3922,"ging":3923,"Ġwidely":3924,"Ġsquare":3925,"Ġtrends":3926,"Ġimproving":3927,"ĠHead":3928,"ĠQueen":3929,"ĠSociety":3930,"Ġcutting":3931,"ĠGOP":3932,"03":3933,"',":3934,"ET":3935,"ĠDrive":3936,"oll":3937,"ato":3938,"ĠSea":3939,"Ġjury":3940,"ĠRights":3941,"Ġinvestor":3942,"ĠABC":3943,"Ġtool":3944,"ĠAre":3945,"Ġrejected":3946,"Ġemerging":3947,"Ġcounts":3948,"Ġnations":3949,"Ġfalse":3950,"Ġtreat":3951,"va":3952,"Ġweak":3953,"ĠHighway":3954,"down":3955,"Ġstruggled":3956,"ĠMP":3957,"Ġguests":3958,"Ġgender":3959,"Ġhouses":3960,"rit":3961,"ĠWild":3962,"Ġstreak":3963,"uc":3964,"ĠReserve":3965,"ĠRatings":3966,"alt":3967,"Ġgreatest":3968,"Ġlawyers":3969,"Ġreaching":3970,"Ġtemperatures":3971,"To":3972,"Ġoutstanding":3973,"Ġpasses":3974,"Ġfaith":3975,"inc":3976,"Ġcr":3977,"Ġinformed":3978,"oz":3979,"Ġtrees":3980,"Ġsending":3981,"Ġ150":3982,"bo":3983,"Ġwine":3984,"ros":3985,"Ġsuspected":3986,"Ġrepeatedly":3987,"Ġhat":3988,"Ġshape":3989,"ĠWh":3990,"Ġassist":3991,"Ġstress":3992,"Ġfeed":3993,"ark":3994,"ored":3995,"Ġwatched":3996,"Ġincredible":3997,"cl":3998,"nt":3999,"Ġentertainment":4000,"ih":4001,"Ġbeauty":4002,"Ġbi":4003,"ĠLocal":4004,"Ġsat":4005,"41":4006,"Ġbroad":4007,"Ġheavily":4008,"Ġengaged":4009,"Ġspecifically":4010,"ĠMen":4011,"ĠRoss":4012,"Ġ2005":4013,"ST":4014,"95":4015,"Ġdownload":4016,"400":4017,"Ġsentenced":4018,"ĠCatholic":4019,"ĠOklahoma":4020,"Ġthrew":4021,"Ġworry":4022,"Ġimp":4023,"Ġdrove":4024,"Ġcolleagues":4025,"Ġagenda":4026,"64":4027,"ĠEach":4028,"Ġfee":4029,"New":4030,"ium":4031,"Ġspokesperson":4032,"Ġbills":4033,"Ġ47":4034,"ĠAfghanistan":4035,"Ġinvited":4036,"ĠYouTube":4037,"Ġanniversary":4038,"Ġdozen":4039,"ram":4040,"ĠOnly":4041,"Ġemployment":4042,"Getty":4043,"Ġgap":4044,"Ġsweet":4045,"ĠLittle":4046,"Ġinf":4047,"ying":4048,"Ġglass":4049,"Ġclasses":4050,"Ġcoal":4051,"ĠSub":4052,"Ġduty":4053,"CA":4054,"Ġcoaches":4055,"Â":4056,"anna":4057,"ĠSk":4058,"Ġ46":4059,"ison":4060,"ille":4061,"ĠST":4062,"ric":4063,"Ġparticipate":4064,"Ġequ":4065,"Ġrich":4066,"Ġrespectively":4067,"Ġexpenses":4068,"Ġcombination":4069,"right":4070,"Ġshareholders":4071,"Ġturns":4072,"Ġearn":4073,"Ġ51":4074,"ured":4075,"Ġdrink":4076,"ĠKar":4077,"ĠShares":4078,"ĠMid":4079,"ĠGetty":4080,"Ġbridge":4081,"lo":4082,"Ġinspired":4083,"Ġsurface":4084,"Ġgift":4085,"ence":4086,"Ġchallenging":4087,"Ġoffices":4088,"Ġsuspects":4089,"ĠFinance":4090,"Ġab":4091,"bound":4092,"Ġmomentum":4093,"Ġbacked":4094,"Ġparent":4095,"Ġcrucial":4096,"ave":4097,"Ġdealing":4098,"Ġregulatory":4099,"Ġapparently":4100,"ĠMat":4101,"Ġapart":4102,"Ġport":4103,"ole":4104,"Ġbeach":4105,"Ġcultural":4106,"Ġinstitutional":4107,"Ġbeating":4108,"ĠIowa":4109,"ĠAli":4110,"67":4111,"Ġje":4112,"ays":4113,"Ġweekly":4114,"Ġbirthday":4115,"Ġpipeline":4116,"Ġknee":4117,"Ġsolar":4118,"ĠPe":4119,"Ġcategory":4120,"ĠArea":4121,"ky":4122,"ures":4123,"06":4124,"ĠBall":4125,"Ġsemi":4126,"ĠHamilton":4127,"hip":4128,"ĠPh":4129,"ĠNext":4130,"Ġathletes":4131,"ii":4132,"Ġmovies":4133,"han":4134,"net":4135,"Ġplastic":4136,"Ġbehalf":4137,"gen":4138,"Ġfindings":4139,"Ġstretch":4140,"ĠSa":4141,"Ġofficially":4142,"ĠSarah":4143,"Ġprivacy":4144,"ĠMad":4145,"Ġnone":4146,"gh":4147,"On":4148,"Ġdrama":4149,"ĠFl":4150,"ika":4151,"ĠArsenal":4152,"Ġviolent":4153,"UN":4154,"called":4155,"59":4156,"Ġhate":4157,"Ġrelationships":4158,"Ġgranted":4159,"ĠJon":4160,"Ġlisten":4161,"season":4162,"Ġfewer":4163,"GA":4164,"ĠLabour":4165,"Ġremarks":4166,"ĠJonathan":4167,"ĠRos":4168,"sey":4169,"ĠOntario":4170,"ĠThompson":4171,"ĠNight":4172,"Ġranked":4173,"ĠUkraine":4174,"Ġimmigrants":4175,"Ġdegrees":4176,"ĠGe":4177,"Ġlabor":4178,"umb":4179,"ĠYORK":4180,"Ġallies":4181,"sp":4182,"hed":4183,"sw":4184,"Ġtariffs":4185,"SP":4186,"Ġclassic":4187,"Ġawards":4188,"ents":4189,"Ġfix":4190,"Ġsoccer":4191,"Ġconcert":4192,"ust":4193,"Ġadult":4194,"Ġoutput":4195,"Ġmanaging":4196,"02":4197,"Ġpromise":4198,"Ġawareness":4199,"Ġgross":4200,"Ġentering":4201,"Ġpo":4202,"oj":4203,"Ġmetal":4204,"Ġexit":4205,"Ġexcellent":4206,"Ġclubs":4207,"hold":4208,"Ġreplaced":4209,"ĠClass":4210,"Ġscientists":4211,"Ġprimarily":4212,"ĠMer":4213,"ão":4214,"Ġcircumstances":4215,"ades":4216,"Ġsupplies":4217,"aker":4218,"ĠSand":4219,"Ġscandal":4220,"Ġsettlement":4221,"ĠWisconsin":4222,"ĠWarriors":4223,"ĠAustin":4224,"Ġjournalists":4225,"ening":4226,"Ġreflect":4227,"ĠBuy":4228,"ĠAwards":4229,"Ġselection":4230,"ĠBel":4231,"bury":4232,"Ġtechnologies":4233,"%,":4234,"ime":4235,"ĠÄ":4236,"ĠAdministration":4237,"Ġchannel":4238,"Star":4239,"Ġtransport":4240,"Ġawarded":4241,"ena":4242,"Ġmotor":4243,"orn":4244,"kin":4245,"Ġfeaturing":4246,"Ġphones":4247,"ĠAND":4248,"Ġrelevant":4249,"ĠSee":4250,"Ġwinners":4251,"Ġdad":4252,"ĠSource":4253,"ĠCheck":4254,"aut":4255,"ĠFar":4256,"Ġopponents":4257,"Ġoutcome":4258,"Ġdoors":4259,"Ġsuicide":4260,"ima":4261,"Ġjumped":4262,"Ġperspective":4263,"Ġtransportation":4264,"Ġthinks":4265,"ĠMor":4266,"Ġdeadline":4267,"Ġ53":4268,"ĠDeputy":4269,"ery":4270,"Ġdetailed":4271,"uch":4272,"ĠBur":4273,"Ġtrades":4274,"ĠGreg":4275,"Ġzero":4276,"erson":4277,"ĠChildren":4278,"Ġdu":4279,"66":4280,"Ġmixed":4281,"ĠBarack":4282,"54":4283,"Ġterritory":4284,"Ġac":4285,"Ġconcept":4286,"ĠAdd":4287,"Ġourselves":4288,"Ġreaction":4289,"ĠSydney":4290,"ink":4291,"Ġconsistent":4292,"Ġboat":4293,"room":4294,"Ġdozens":4295,"Ġeffectively":4296,"but":4297,"Ġmotion":4298,"Ġalive":4299,"ĠKey":4300,"weight":4301,"Ġexports":4302,"Ġoperate":4303,"Ġregime":4304,"ĠAuthority":4305,"och":4306,"ĠCR":4307,"leg":4308,"Ġforget":4309,"American":4310,"bs":4311,"Ġthoughts":4312,"ĠSign":4313,"ĠPatriots":4314,"Ġbrief":4315,"ĠOregon":4316,"ĠBal":4317,"Ġmine":4318,"Ġciting":4319,"Ġmagazine":4320,"more":4321,"ERS":4322,"ĠBer":4323,"ua":4324,"ox":4325,"ĠMain":4326,"Ġinstance":4327,"tr":4328,"Ġrestaurants":4329,"ora":4330,"Ġharassment":4331,"\",\"":4332,"Ł":4333,"Ġsilver":4334,"ĠMueller":4335,"ĠSenator":4336,"ĠEvery":4337,"Ġfootage":4338,"ms":4339,"Ġopposed":4340,"ĠLink":4341,"Ġver":4342,"Ġpleased":4343,"ame":4344,"ending":4345,"Ġrivals":4346,"ida":4347,"ike":4348,"ta":4349,"ĠCook":4350,"Ġheadquarters":4351,"ear":4352,"Ġaggressive":4353,"Ġcourts":4354,"ĠMuseum":4355,"Ġim":4356,"ĠHoldings":4357,"Ġcommunication":4358,"Ġphase":4359,"yl":4360,"Ġpowers":4361,"Ġproved":4362,"Ġcarbon":4363,"Ġaside":4364,"ĠOlympics":4365,"Ġgathered":4366,"ĠPennsylvania":4367,"Ġsmartphone":4368,"ĠMet":4369,"ĠHurricane":4370,"Ġprotected":4371,"Ġcommunications":4372,"Ġemerged":4373,"Ġaim":4374,"Ġstable":4375,"ides":4376,"GB":4377,"Ġentirely":4378,"Ġmissile":4379,"ĠGen":4380,"Ġunclear":4381,"Ġelectricity":4382,"ology":4383,"away":4384,"Ġlicense":4385,"ĠPittsburgh":4386,"Ġcameras":4387,"Ġmusical":4388,"Ġmanagers":4389,"57":4390,"Ġscores":4391,"Ġprofile":4392,"hel":4393,"¼":4394,"Ġshouldn":4395,"RA":4396,");":4397,"Ġpermanent":4398,"ome":4399,"Ġet":4400,"Ġmar":4401,"Ġfavor":4402,"Ġmaker":4403,"Ġdiscussions":4404,"ory":4405,"Ġsharp":4406,"Ġpleaded":4407,"Ġpassenger":4408,"quarter":4409,"Ġdem":4410,"Ġversus":4411,"Ġmainly":4412,"Ġeighth":4413,"ĠAirport":4414,"ĠCross":4415,"million":4416,"ĠNas":4417,"Ġcited":4418,"56":4419,"Ġyes":4420,"ĠBelow":4421,"arn":4422,"ĠTurkish":4423,"ĠSl":4424,"Ġstepped":4425,"Ġproducers":4426,"Ġovernight":4427,"Ġsounds":4428,"52":4429,"Ġ64":4430,"Ġ54":4431,"58":4432,"ĠClark":4433,"ĠRick":4434,"Ġgr":4435,"ĠMont":4436,"Ġbeer":4437,"une":4438,"Ġreporter":4439,"Ġcharity":4440,"Ġeating":4441,"Ġextend":4442,"Ġguess":4443,"NA":4444,"Ġhedge":4445,"Ġencouraged":4446,"owned":4447,"ĠMel":4448,"ĠKentucky":4449,"ace":4450,"Ġlineup":4451,"Ġhosts":4452,"Ġcapable":4453,"PR":4454,"ĠArts":4455,"Ġcontroversial":4456,"Ġhosted":4457,"ries":4458,"Ġroster":4459,"Ġfixed":4460,"ĠWalker":4461,"ged":4462,"Ġdisaster":4463,"Ġdispute":4464,"ĠDenver":4465,"ĠTrade":4466,"ute":4467,"ese":4468,"cy":4469,"Ġgrant":4470,"ĠMax":4471,"Ġdistance":4472,"isc":4473,"Ġeditor":4474,"ĠDave":4475,"Ġperformances":4476,"Ġlay":4477,"Ġvulnerable":4478,"ĠMurray":4479,"ĠâĤ¬":4480,"Ġmining":4481,"Ġ2004":4482,"level":4483,"ability":4484,"Ġauto":4485,"Ġfake":4486,"Ġattacked":4487,"ona":4488,"ups":4489,"ened":4490,"Ġfallen":4491,"Ġstations":4492,"ĠContact":4493,"itz":4494,"Ġincidents":4495,"Ġcomplaints":4496,"Ġoperates":4497,"Ġrefugees":4498,"Ġessential":4499,"ĠTest":4500,"Ġdemands":4501,"Ġroles":4502,"yr":4503,"Ġacts":4504,"Ġusual":4505,"ring":4506,"Ġhanded":4507,"ĠMatthew":4508,"hour":4509,"Ġindustries":4510,"Ġshoot":4511,"ĠAuthorities":4512,"Ġprobe":4513,"ĠUtah":4514,"ĠRBI":4515,"ĠAD":4516,"Ġprospect":4517,"outs":4518,"ĠUber":4519,"Ġbright":4520,"Ġmention":4521,"Ġsavings":4522,"ĠMiss":4523,"ONDON":4524,"Ġ1990":4525,"arm":4526,"ĠTen":4527,"These":4528,"Ġexplains":4529,"minute":4530,"85":4531,"Ġmaximum":4532,"Ġro":4533,"Ġrookie":4534,"Ġstudio":4535,"ĠCam":4536,"ĠGal":4537,"Ġdefend":4538,"hand":4539,"53":4540,"ĠOil":4541,"Ġserves":4542,"Ġsn":4543,"ios":4544,"ĠDefense":4545,"AB":4546,"Ġhired":4547,"Ġsupports":4548,"Ġpremium":4549,"ef":4550,"Ġfailing":4551,"ĠIndiana":4552,"Ġexp":4553,"Ġobjective":4554,"Ġaffordable":4555,"ĠCom":4556,"ĠThanks":4557,"Ġanywhere":4558,"Ġconfirm":4559,"ited":4560,"Ġrepresenting":4561,"Ġwitness":4562,"69":4563,"Ġclaiming":4564,"Ġviolation":4565,"Ġhistorical":4566,"med":4567,"Ġpreparing":4568,"ĠTech":4569,"Ġposts":4570,"OC":4571,"ĠGraham":4572,"ĠGl":4573,"ĠLions":4574,"ales":4575,"ĠID":4576,"Ġcorrect":4577,"ĠAntonio":4578,"Ġadvertising":4579,"Ġeastern":4580,"OW":4581,"Ġholdings":4582,"Ġpolls":4583,"ĠSH":4584,"Ġexecutives":4585,"ĠJewish":4586,"ĠGary":4587,"Ġprize":4588,"ĠCommissioner":4589,"Ġcells":4590,"ify":4591,"Ġlunch":4592,"Ġdemocracy":4593,"ĠEr":4594,"Ġregularly":4595,"Ġresulted":4596,"ĠAve":4597,"ĠPartners":4598,"Ġrewritten":4599,"Ġlo":4600,"Ġcooperation":4601,"ĠGulf":4602,"Ġsmoke":4603,"ĠMemorial":4604,"Ġwave":4605,"Ġfears":4606,"Ġkid":4607,"ĠGiants":4608,"Ġrecovered":4609,"row":4610,"ĠRadio":4611,"ĠBarcelona":4612,"Ġwonderful":4613,"ĠDow":4614,"Ġstream":4615,"ĠSimon":4616,"Ġdetail":4617,"Ġvolunteers":4618,"ĠInd":4619,"Ġforms":4620,"mann":4621,"ĠRay":4622,"oor":4623,"ĠTake":4624,"Ġrepresented":4625,"het":4626,"Ġblow":4627,"aged":4628,"RE":4629,"ĠMissouri":4630,"Ġcovering":4631,"Ġprofits":4632,"Ġconcluded":4633,"Ġthus":4634,"ĠColumbia":4635,"ode":4636,"ĠZimbabwe":4637,"Ġdisclosed":4638,"Ġlifted":4639,"ĠSean":4640,"ĠHarvey":4641,"ĠPlus":4642,"ces":4643,"ĠGreece":4644,"ĠLady":4645,"Ġdelay":4646,"Ġkitchen":4647,"ĠIndex":4648,"Ġbear":4649,"Ġputs":4650,"new":4651,"88":4652,"ĠAsh":4653,"Å¡":4654,"Ġperforming":4655,"law":4656,"ĠPart":4657,"Ġindicated":4658,"Ġannounce":4659,"Ġcompensation":4660,"Ġka":4661,"ĠScience":4662,"ris":4663,"Ġrecommendations":4664,"ĠSecond":4665,"Ġlights":4666,"Ġtemporary":4667,"urs":4668,"Ġwestern":4669,"stone":4670,"68":4671,"ĠDisney":4672,"Ġplayoffs":4673,"Ġjudges":4674,"Ġengineering":4675,"ĠPen":4676,"ĠPal":4677,"Ġobvious":4678,"ĠBridge":4679,"ĠEnd":4680,"ĠArab":4681,"Ġexcept":4682,"Ġhole":4683,"class":4684,"Ġcauses":4685,"Ġconnect":4686,"ĠAI":4687,"An":4688,"Ġchose":4689,"ĠElizabeth":4690,"min":4691,"Ġproper":4692,"ĠNHL":4693,"Ġraces":4694,"Ġinnovation":4695,"Ġsugar":4696,"600":4697,"ĠModi":4698,"illa":4699,"Ġtrillion":4700,"ĠSar":4701,"ĠAffairs":4702,"Ġimpossible":4703,"Ġguide":4704,"Ġcaptured":4705,"ĠSales":4706,"Ġspecies":4707,"51":4708,"Ġar":4709,"Ġmaster":4710,"Ġstayed":4711,"iro":4712,"ĠEconomic":4713,"Ġvast":4714,"ili":4715,"Ġpet":4716,"ye":4717,"77":4718,"Ġkeeps":4719,"ĠPhil":4720,"ĠEPS":4721,"ĠRegional":4722,"Ġsectors":4723,"Ġdesire":4724,"ĠStanley":4725,"¾":4726,"Ġunknown":4727,"Ġpot":4728,"ĠPR":4729,"Ġknowing":4730,"Ġflying":4731,"ĠTreasury":4732,"iers":4733,"enn":4734,"ably":4735,"Ġsick":4736,"Ġmanner":4737,"Ġmanufacturers":4738,"Ġchampions":4739,"gy":4740,"Part":4741,"ister":4742,"ĠMountain":4743,"Ġimagine":4744,"Ġportion":4745,"ĠCamp":4746,"Ġchemical":4747,"ible":4748,"ĠAnaly":4749,"ĠBureau":4750,"Ġpm":4751,"Ġupdated":4752,"Ġetc":4753,"ĠField":4754,"iles":4755,"Ġobtained":4756,"Ġstick":4757,"Ġcat":4758,"har":4759,"Ġmarked":4760,"Ġmedium":4761,"ĠDes":4762,"People":4763,"Ġwealth":4764,"ores":4765,"ĠBaltimore":4766,"Ġtip":4767,"Ġdismissed":4768,"ĠVictoria":4769,"ĠBrad":4770,"Ch":4771,"Ġ56":4772,"Ġstadium":4773,"eth":4774,"Ġthunder":4775,"Ġtested":4776,"Ġdrawn":4777,"Ġcounsel":4778,"ld":4779,"Ġspirit":4780,"uss":4781,"Ġtheme":4782,"my":4783,"Ġnecessarily":4784,"Ġelements":4785,"Ġcollected":4786,"ĠRes":4787,"ĠMaryland":4788,"ĠEnter":4789,"Ġfounded":4790,"ae":4791,"Ġpilot":4792,"Ġshoulder":4793,"PC":4794,"Ġargument":4795,"Ġyen":4796,"Ġreceiver":4797,"Ġharm":4798,"ĠET":4799,"Ġprotesters":4800,"Ġ72":4801,"ĠAaron":4802,"Ġed":4803,"Ġexpecting":4804,"\":\"":4805,"Ġbike":4806,"Äĩ":4807,"Ġluxury":4808,"half":4809,"ĠBarbara":4810,"Ġfoundation":4811,"Ġill":4812,"Ġsubmitted":4813,"Ġdeeply":4814,"Ġhospitals":4815,"ĠBJP":4816,"Ġshock":4817,"Ġplatforms":4818,"Ġsummary":4819,"ĠWhere":4820,"Ġcelebration":4821,"iff":4822,"Ġveterans":4823,"Ġachieved":4824,"fl":4825,"Ġactivists":4826,"ĠManager":4827,"Ġformal":4828,"Ġformed":4829,"Ġinvestigate":4830,"ĠKyle":4831,"Ġ:":4832,"ĠRa":4833,"ovic":4834,"Ġdrinking":4835,"Ġnetworks":4836,"ĠAlexander":4837,"ĠOs":4838,"Ġ)":4839,"Ġbomb":4840,"Ġrecalled":4841,"ito":4842,"ient":4843,"Ġrepresentatives":4844,"ĠChrist":4845,"ĠWay":4846,"Ġdeadly":4847,"Ġinvesting":4848,"ĠRussell":4849,"Ġconsumption":4850,"Ġharder":4851,"Ġbail":4852,"Ġcritics":4853,"Ġdanger":4854,"Ġdrew":4855,"ĠSol":4856,"Ġcopyright":4857,"ĠHenry":4858,"Ġbuyers":4859,"Ġresidential":4860,"Ġmaintenance":4861,"pr":4862,"Ġmarks":4863,"Ġages":4864,"Ġcovers":4865,"Ġton":4866,"Ġtitles":4867,"ĠPS":4868,"ĠEvans":4869,"Ġmigrants":4870,"Ġflights":4871,"Ġmonitoring":4872,"Ġaddressed":4873,"Ġvital":4874,"Ġcontrolled":4875,"Ġweapon":4876,"Ġinches":4877,"Ġreduction":4878,"Ġurban":4879,"Ġcoaching":4880,"Ġreducing":4881,"ila":4882,"Ġrealize":4883,"Ġmeat":4884,"Ġref":4885,"Ġoverseas":4886,"Ġblame":4887,"Ġterrorist":4888,"Ġstuck":4889,"ĠUs":4890,"esh":4891,"pro":4892,"Ġ58":4893,"ough":4894,"Ġexposure":4895,"ĠAbu":4896,"state":4897,"Ġproviders":4898,"Ġfore":4899,"Ġjet":4900,"bar":4901,"Ġownership":4902,"ret":4903,"Ġupset":4904,"Ġfacts":4905,"Ġpurchasing":4906,"Ġreforms":4907,"Ġriver":4908,"Ġsomebody":4909,"Ġguest":4910,"iy":4911,"Ġauction":4912,"ĠReading":4913,"Ġconsequences":4914,"Ġrepresentative":4915,"Ġappointment":4916,"add":4917,"Ġcollaboration":4918,"ĠTesla":4919,"ĠCohen":4920,"Ġengagement":4921,"Ġspeaks":4922,"EST":4923,"Ġexposed":4924,"Ġmaintained":4925,"rs":4926,"Ġdating":4927,"ĠProgram":4928,"board":4929,"Ġracing":4930,"Ġpension":4931,"ign":4932,"iti":4933,"ĠFive":4934,"Ġextensive":4935,"ĠHa":4936,"ĠPoint":4937,"ĠMexican":4938,"Ġexpanded":4939,"Ġtotally":4940,"Ġinvestigations":4941,"ĠOrleans":4942,"Ġcycle":4943,"ĠESPN":4944,"ifying":4945,"Ġcup":4946,"ĠAz":4947,"ĠInvestors":4948,"Ġengage":4949,"reg":4950,"Ġfought":4951,"Ġterrorism":4952,"Ġblocked":4953,"ĠOK":4954,"Äį":4955,"72":4956,"Ġdestroyed":4957,"«":4958,"Ġstaying":4959,"Ġafford":4960,"Ġappearances":4961,"ĠHills":4962,"Ġcrore":4963,"Ġstrategies":4964,"Ġtips":4965,"ĠSm":4966,"ĠFr":4967,"Ġbanned":4968,"ĠSon":4969,"ask":4970,"Ġlimits":4971,"Ġrecognition":4972,"Ġeligible":4973,"ĠGar":4974,"Ġvolatility":4975,"Ġlaid":4976,"nes":4977,"Ġgrade":4978,"ĠRE":4979,"ĠHart":4980,"Ġ57":4981,"oma":4982,"Ġuncertainty":4983,"Ġrecognized":4984,"ĠPC":4985,"Ġchosen":4986,"uz":4987,"Ġadviser":4988,"una":4989,"Ġassessment":4990,"Ġreveal":4991,"mo":4992,"After":4993,"ĠBro":4994,"ĠOff":4995,"Ġpeak":4996,"Ġreferred":4997,"ĠSC":4998,"Ġ2003":4999,"ification":5000,"Ġshutdown":5001,"ĠOfficials":5002,"ias":5003,"Ġextreme":5004,"Ġflood":5005,"Ġhockey":5006,"Ġwage":5007,"ĠNet":5008,"Ġdamaged":5009,"Ġreplacement":5010,"ĠMaria":5011,"Ġcreation":5012,"Ġguns":5013,"aci":5014,"Ġworker":5015,"do":5016,"Ġviewers":5017,"Ġseed":5018,"sts":5019,"Ġtouchdowns":5020,"Ġmistake":5021,"ray":5022,"ull":5023,"Ġpricing":5024,"Ġstrongly":5025,"Ġaims":5026,"ĠNavy":5027,"ĠEgypt":5028,"ker":5029,"Ġve":5030,"ĠSteven":5031,"Ġres":5032,"ational":5033,"Ġrequests":5034,"Ġemissions":5035,"ĠArena":5036,"uma":5037,"ĠAtlantic":5038,"hr":5039,"ĠAFP":5040,"ĠSquare":5041,"Ġcontribute":5042,"Ġfunction":5043,"Ġdec":5044,"ĠNelson":5045,"89":5046,"Ġreferendum":5047,"ĠPre":5048,"Ġapplied":5049,"ĠGMT":5050,"ĠIranian":5051,"ĠNigerian":5052,"ĠAny":5053,"NG":5054,"Ġacknowledged":5055,"Ġreferring":5056,"Ġventure":5057,"Ġimports":5058,"Ġblog":5059,"Ġfutures":5060,"OU":5061,"ĠUFC":5062,"Ġneither":5063,"Ġextension":5064,"hes":5065,"ĠMed":5066,"76":5067,"Ġsustainable":5068,"ains":5069,"Ġreputation":5070,"ĠVancouver":5071,"Ġbasically":5072,"acy":5073,"Ġsad":5074,"ĠFrancis":5075,"ĠKennedy":5076,"ĠNevada":5077,"ĠLu":5078,"ras":5079,"ĠAv":5080,"Ġrear":5081,"ĠHo":5082,"Ġproperly":5083,"abe":5084,"ĠHotel":5085,"Ġopinions":5086,"under":5087,"ĠStation":5088,"ĠFOR":5089,"ops":5090,"Ġadopted":5091,"ĠSwiss":5092,"ĠCountry":5093,"ĠTer":5094,"ĠAndy":5095,"Me":5096,"ĠCooper":5097,"ĠTigers":5098,"ĠCreek":5099,"Ġgay":5100,"iner":5101,"ĠAN":5102,"Ġbird":5103,"lla":5104,"ĠKate":5105,"ĠPet":5106,"ni":5107,"Ġprospects":5108,"ater":5109,"ites":5110,"Ġescape":5111,"lam":5112,"ake":5113,"Ġ1980":5114,"ĠLag":5115,"Ġsuccessfully":5116,"Ġdistricts":5117,"Ġministers":5118,"aries":5119,"Ġframe":5120,"ĠON":5121,"ĠEuro":5122,"ĠMarkets":5123,"Ġregister":5124,"Ġdefeated":5125,"Ġdevelopments":5126,"Ġninth":5127,"Ġquiet":5128,"Ġgenerated":5129,"Ġvaluable":5130,"Ġrecommended":5131,"ĠTheatre":5132,"ĠCap":5133,"bed":5134,"Ġreference":5135,"Ġease":5136,"oring":5137,"Ġ66":5138,"Ġimprovements":5139,"Ġelsewhere":5140,"ĠHillary":5141,"Ġdefender":5142,"ĠRight":5143,"zy":5144,"Ġcomprehensive":5145,"Ġspotted":5146,"ĠOakland":5147,"ĠOk":5148,"ĠSystem":5149,"ique":5150,"Ġpersons":5151,"Ġexist":5152,"Ġbroader":5153,"Ġclinical":5154,"Ġ2001":5155,"oul":5156,"Ġsecurities":5157,"ghan":5158,"Ġshelter":5159,"ero":5160,"ATED":5161,"Ġhosting":5162,"Ġselect":5163,"ĠKavanaugh":5164,"Ġrestrictions":5165,"osa":5166,"Ġyields":5167,"ĠLA":5168,"Ġ59":5169,"Ġwonder":5170,"Ġabsence":5171,"ür":5172,"ÅĤ":5173,"DP":5174,"Ġelectronic":5175,"Ġillegally":5176,"Ġmicro":5177,"ĠNEW":5178,"Ġhall":5179,"Ġaged":5180,"Ġtemperature":5181,"cast":5182,"atic":5183,"Ġlegacy":5184,"Ġaffairs":5185,"ji":5186,"ĠResources":5187,"Ġgang":5188,"winning":5189,"Ġattending":5190,"aro":5191,"Ġfriendly":5192,"aine":5193,"Ġcannabis":5194,"Ġairline":5195,"Ġnoting":5196,"Ġprofessionals":5197,"ĠFREE":5198,"RC":5199,"Ġfinancing":5200,"Ġindependence":5201,"ved":5202,"Ġresulting":5203,"Ġsteady":5204,"ĠWinter":5205,"uring":5206,"Ġhoped":5207,"98":5208,"Ġpresentation":5209,"aya":5210,"Ġrated":5211,"osh":5212,"ĠAnalysis":5213,"=":5214,"Ġdonations":5215,"IR":5216,"Ġcombat":5217,"ĠHoward":5218,"anda":5219,"79":5220,"Ġinvested":5221,"Ġexpanding":5222,"omb":5223,"ress":5224,"ble":5225,"Ġjournalist":5226,"ĠWoods":5227,"Ġcenters":5228,"ott":5229,"Ġstreaming":5230,"Ġterror":5231,"Ġsustained":5232,"ĠWWE":5233,"pre":5234,"ÅŁ":5235,"ait":5236,"Ġarrival":5237,"Ġresidence":5238,"Ġextent":5239,"Ġarrive":5240,"Ġ2002":5241,"Ġestablish":5242,"74":5243,"ĠArgentina":5244,"ĠDem":5245,"inn":5246,"aud":5247,"ĠNCAA":5248,"Ġquestioned":5249,"Ġballot":5250,"Ġmin":5251,"Ġlandscape":5252,"Ġhorse":5253,"Ġopponent":5254,"iel":5255,"Ġprompted":5256,"atory":5257,"Ġlift":5258,"Ġassociation":5259,"cher":5260,"Ġdefending":5261,"Ġtiny":5262,"Ġpoverty":5263,"ĠSafety":5264,"Ġpetition":5265,"ĠLimited":5266,"ĠCA":5267,"FC":5268,"Ãł":5269,"oni":5270,"Ġmonitor":5271,"ÃŃa":5272,"MA":5273,"Ġanswers":5274,"ĠMitchell":5275,"Ġbo":5276,"ĠShah":5277,"Ġsm":5278,"Ġmedal":5279,"ĠCivil":5280,"Ġrecognize":5281,"key":5282,"Ġpregnant":5283,"Ġspots":5284,"ante":5285,"Ġacademic":5286,"Ġinitiatives":5287,"Ġsecured":5288,"ĠCL":5289,"ils":5290,"Ġanticipated":5291,"Ġinvolvement":5292,"ĠMake":5293,"Ġinsisted":5294,"ĠWales":5295,"Ġclothing":5296,"Ġtracks":5297,"Ġsymptoms":5298,"Ġplate":5299,"ĠNY":5300,"Ġretailers":5301,"ĠPan":5302,"Ġfled":5303,"Ġquoted":5304,"Ġsaved":5305,"ĠCarter":5306,"Ġteaching":5307,"ĠTokyo":5308,"ĠCr":5309,"ĠSix":5310,"ĠPicture":5311,"Ġrecover":5312,"Ġcomedy":5313,"ree":5314,"Ġstrikes":5315,"ĠSanders":5316,"sel":5317,"Ġgraduate":5318,"Ġpending":5319,"St":5320,"Ġwarrant":5321,"Ġhonest":5322,"ĠGM":5323,"Ġnoticed":5324,"ĠGalaxy":5325,"ider":5326,"Ġproposals":5327,"Ġwore":5328,"Ġindeed":5329,"EM":5330,"ĠChannel":5331,"ances":5332,"ĠBrady":5333,"86":5334,"Ġgotten":5335,"Ġthrowing":5336,"ĠLeader":5337,"ĠVideo":5338,"71":5339,"Ġwelcomed":5340,"NEW":5341,"Ġfairly":5342,"Ġpromises":5343,"ĠSilver":5344,"Ġrape":5345,"Ġopener":5346,"ares":5347,"ĠSir":5348,"making":5349,"Ġcur":5350,"Ġrooms":5351,"73":5352,"Ġamounts":5353,"ĠIndustry":5354,"ĠDar":5355,"Ġ62":5356,"ted":5357,"Ġabroad":5358,"ĠMaybe":5359,"Ġreaders":5360,"oke":5361,"Ġpublication":5362,"ĠJean":5363,"Ġoperator":5364,"ĠHaving":5365,"ĠMil":5366,"life":5367,"Ġgenerate":5368,"ĠCraig":5369,"ĠMass":5370,"ĠBh":5371,"Ġrequested":5372,"Ġcrazy":5373,"ĠSpace":5374,"Ġcopy":5375,"Ġexport":5376,"Ġcontext":5377,"Ġbr":5378,"62":5379,"ĠRobinson":5380,"Ġcyber":5381,"ENT":5382,"BI":5383,"arg":5384,"Ġspeaker":5385,"Ġdramatic":5386,"ĠOl":5387,"ĠMill":5388,"Ġtrained":5389,"Ġediting":5390,"Ġsalary":5391,"Ġdirectors":5392,"Ġexplore":5393,"Ġlucky":5394,"Ġprominent":5395,"Ġbrothers":5396,"Ġneck":5397,"icht":5398,"ĠWatson":5399,"born":5400,"Ġproven":5401,"Ġprincipal":5402,"Ġedition":5403,"Ed":5404,"Ġswitch":5405,"maker":5406,"Ġrelative":5407,"mi":5408,"ĠBruce":5409,"ho":5410,"ĠScottish":5411,"water":5412,"ĠSport":5413,"ĠKings":5414,"ĠCollins":5415,"adi":5416,"Ġcelebrated":5417,"Ġclothes":5418,"Ġsunny":5419,"ĠCharlotte":5420,"ees":5421,"Ġscenes":5422,"ĠData":5423,"Ġwounded":5424,"Ġunusual":5425,"Ġrealized":5426,"ĠPlan":5427,"ĠTrans":5428,"ĠFC":5429,"Ġletters":5430,"Ġalerts":5431,"ĠWarren":5432,"DS":5433,"oss":5434,"pping":5435,"Ġsuspension":5436,"Ġbenchmark":5437,"ĠAcc":5438,"Ġalert":5439,"Ġpassion":5440,"ĠEst":5441,"Ġlatter":5442,"Ġstability":5443,"Ġarts":5444,"Ġpursue":5445,"ĠSeason":5446,"Ġfields":5447,"Ġmethod":5448,"63":5449,"Ġfolks":5450,"Ġexclusive":5451,"Ġcrews":5452,"Ġsessions":5453,"ĠMajor":5454,"ĠMount":5455,"Ġmap":5456,"Ġ=":5457,"Ġsituations":5458,"ĠBerlin":5459,"rey":5460,"Ġdates":5461,"Ġsheet":5462,"ĠLo":5463,"Ġfighters":5464,"ĠMart":5465,"Ġatmosphere":5466,"Ġillness":5467,"Ġcompeting":5468,"ĠChristopher":5469,"ĠRoy":5470,"mm":5471,"iano":5472,"Ġge":5473,"ĠRams":5474,"Ġconversations":5475,"ĠPa":5476,"ĠTel":5477,"Ġappreciate":5478,"78":5479,"ĠTotal":5480,"low":5481,"ĠStone":5482,"Ġopposite":5483,"Ġbarrel":5484,"Ġdevelopers":5485,"Ġexpress":5486,"Ġhighs":5487,"which":5488,"par":5489,"ĠVietnam":5490,"Ġblocks":5491,"Ġrecording":5492,"Ġadjusted":5493,"Ġret":5494,"ĠAR":5495,"Ġmilitants":5496,"Ġinnovative":5497,"ĠGhana":5498,"FR":5499,"Ġfantastic":5500,"Ġmortgage":5501,"ando":5502,"ĠLane":5503,"ises":5504,"ĠÂ":5505,"Ġhomeless":5506,"ĠKal":5507,"Ġapproached":5508,"Ġrounds":5509,"Ġmargins":5510,"ament":5511,"ĠMotor":5512,"Ġencouraging":5513,"ÂŃ":5514,"uru":5515,"Ġhandling":5516,"ĠMassachusetts":5517,"Ġplanet":5518,"ĠSpring":5519,"ĠBon":5520,"gu":5521,"Beat":5522,"Ġdrawing":5523,"ĠPhoenix":5524,"very":5525,"aid":5526,"ĠSte":5527,"ĠEntertainment":5528,"ĠRon":5529,"Ġassigned":5530,"ĠSA":5531,"News":5532,"Ġinterviews":5533,"ĠOh":5534,"media":5535,"vel":5536,"Ġpermission":5537,"Ġtransactions":5538,"Ġtraders":5539,"Ġsolo":5540,"Ġprovincial":5541,"Ġsuggesting":5542,"¡":5543,"Ġdiverse":5544,"Ġ67":5545,"Ġranks":5546,"ĠFre":5547,"Ġfavourite":5548,"Ġ63":5549,"Ġdifferences":5550,"Ġtargeting":5551,"Ġactors":5552,"Ġ76":5553,"icated":5554,"Ġcollect":5555,"akes":5556,"war":5557,"Ġcontained":5558,"ches":5559,"Ġlibrary":5560,"Ġsegments":5561,"ĠLine":5562,"ê":5563,"ual":5564,"Ġbags":5565,"Ġfactory":5566,"Ġear":5567,"Ġsomewhat":5568,"Ġrail":5569,"ĠUP":5570,"ula":5571,"ĠNiger":5572,"Ġlas":5573,"Ġimplementation":5574,"Ġemails":5575,"kel":5576,"wing":5577,"Ġadvised":5578,"--":5579,"istic":5580,"Ġdepth":5581,"Ġshoes":5582,"ĠJennifer":5583,"Ġvenue":5584,"Ġcontain":5585,"Ġhighlights":5586,"Ġcapabilities":5587,"Ġprocesses":5588,"Ġtradition":5589,"Ġcontacted":5590,"Ġproducing":5591,"Ġtrail":5592,"rem":5593,"Ġ600":5594,"Ġ68":5595,"AA":5596,"ĠBa":5597,"ĠSuch":5598,"ĠTyler":5599,"ipp":5600,"Ġsurvived":5601,"ami":5602,"ĠContinue":5603,"Ġcapture":5604,"bi":5605,"61":5606,"96":5607,"Ġthreatening":5608,"Ġkeen":5609,"dale":5610,"Ġtrailer":5611,"Ġstages":5612,"ĠGordon":5613,"Ġfinishing":5614,"Ġlegislative":5615,"Ġuseful":5616,"ĠGreek":5617,"ald":5618,"Ġgrounds":5619,"ĠDu":5620,"storms":5621,"ills":5622,"Ġexpense":5623,"Ġdetained":5624,"Today":5625,"Ġdiet":5626,"Ġwood":5627,"ĠCameron":5628,"Ġthrown":5629,"Ġcricket":5630,"Ġideal":5631,"with":5632,"Ġteammates":5633,"ours":5634,"Ġprojected":5635,"Ġpersonally":5636,"ĠBoy":5637,"rom":5638,"ĠPhilippines":5639,"win":5640,"ges":5641,"Ġcounties":5642,"ĠBaker":5643,"Ġprosecutor":5644,"Ġroof":5645,"met":5646,"Ġpartly":5647,"ĠMoon":5648,"eman":5649,"Ġfocusing":5650,"Ġfishing":5651,"than":5652,"ĠJeremy":5653,"ĠBad":5654,"ais":5655,"Ġcontrols":5656,"Ġtonnes":5657,"Ġshall":5658,"Ġ61":5659,"Ġgathering":5660,"ĠERA":5661,"Ġpresidency":5662,"Ġ85":5663,"ĠGas":5664,"Ġscenario":5665,"Ġquarters":5666,"Ġang":5667,"Ġsettled":5668,"ĠCommerce":5669,"Ġanybody":5670,"Ġgarden":5671,"ĠLibrary":5672,"Ġbet":5673,"Ġtopic":5674,"olo":5675,"Ġintense":5676,"87":5677,"Ġlinks":5678,"Ġmed":5679,"ĠAG":5680,"Ġflooding":5681,"ĠMurphy":5682,"PM":5683,"Ġfinds":5684,"Ġsensitive":5685,"pped":5686,"Ġcompletion":5687,"Ġminority":5688,"Ġvon":5689,"Ġstriking":5690,"rich":5691,"Ġbars":5692,"Ġefficient":5693,"Ġcontributions":5694,"Ġvisits":5695,"Ġattract":5696,"ĠMalaysia":5697,"ĠREL":5698,"Ġopens":5699,"Ġessentially":5700,"Ġreasonable":5701,"Ġsentiment":5702,"ĠMelbourne":5703,"Ġfitness":5704,"Ġfrequently":5705,"ĠRangers":5706,"Ġmuseum":5707,"ĠDNA":5708,"Ġcontrast":5709,"ĠAdams":5710,"ĠWin":5711,"Ġfalls":5712,"Ġimposed":5713,"250":5714,"ood":5715,"ĠRio":5716,"Ġchoices":5717,"Ġyellow":5718,"rin":5719,"ben":5720,"ĠStaff":5721,"ĠIndonesia":5722,"Ġcarries":5723,"Ġtourism":5724,"UM":5725,"ĠOrange":5726,"sell":5727,"Ġresolve":5728,"ĠMumbai":5729,"Ġpan":5730,"Ġimplement":5731,"Ġmidfielder":5732,"OP":5733,"Ġtensions":5734,"Ġ800":5735,"ĠLord":5736,"ĠLight":5737,"Ġlies":5738,"és":5739,"Ġparticipation":5740,"Ġtries":5741,"Ġsheriff":5742,"degree":5743,"Ġcongressional":5744,"Ġmode":5745,"Ġregulation":5746,"ĠJacob":5747,"ĠCrown":5748,"Ġbowl":5749,"ĠMississippi":5750,"Ġtheft":5751,"ĠKingdom":5752,"Ġresort":5753,"Ġroyal":5754,"Ġunemployment":5755,"PP":5756,"Ġnomination":5757,"ĠTR":5758,"Ġbehaviour":5759,"bank":5760,"ĠForest":5761,"WASHINGTON":5762,"ĠOthers":5763,"Ġslowly":5764,"Ġmenu":5765,"vo":5766,"ĠSy":5767,"ĠMetro":5768,"ĠLisa":5769,"Ġregistration":5770,"While":5771,"ĠJesus":5772,"Ġ250":5773,"Ġprocessing":5774,"Ġmonetary":5775,"ape":5776,"ener":5777,"ĠSystems":5778,"Ġdisappointed":5779,"Ġprint":5780,"uy":5781,"ħ":5782,"Ġdemanding":5783,"Ġincredibly":5784,"play":5785,"Ġsurveillance":5786,"ĠStandard":5787,"Ġperiods":5788,"Ġwrites":5789,"ĠLuke":5790,"ĠPalestinian":5791,"Ġwalks":5792,"Ġriding":5793,"Ġwaters":5794,"ĠSox":5795,"Ġtraveling":5796,"Ġtap":5797,"Ġorganized":5798,"Ġresource":5799,"Ġangry":5800,"Ġtiming":5801,"Ġempty":5802,"Ġmilk":5803,"Ġtherapy":5804,"ĠBrandon":5805,"mon":5806,"Ġnationwide":5807,"Ġnovel":5808,"ĠStorm":5809,"iet":5810,"ĠBre":5811,"Ġbegun":5812,"Ġdiplomatic":5813,"Ġads":5814,"ĠDC":5815,"ĠOb":5816,"ĠMontreal":5817,"ĠDown":5818,"ĠMilwaukee":5819,"Ġmeal":5820,"ĠPuerto":5821,"ĠMas":5822,"Ġjoy":5823,"Ġdeparture":5824,"ĠWright":5825,"Ġspoken":5826,"style":5827,"ĠAction":5828,"ĠComey":5829,"Ġdelivering":5830,"Ġtoll":5831,"Ġmidnight":5832,"ĠRevenue":5833,"Ġfiring":5834,"Ġstunning":5835,"Ġkicked":5836,"ĠOttawa":5837,"Ġefficiency":5838,"ĠLincoln":5839,"Ġtaste":5840,"ez":5841,"ĠWeather":5842,"ĠMorning":5843,"Ġhadn":5844,"Ġdiversity":5845,"ily":5846,"ĠAy":5847,"Ġargue":5848,"Ġerror":5849,"Ġtaught":5850,"Ġche":5851,"Ġoccasion":5852,"Ġinc":5853,"ĠOrlando":5854,"ĠOnline":5855,"Ġlegs":5856,"ĠNation":5857,"uck":5858,"Ġwidespread":5859,"ĠOcean":5860,"Ġconstantly":5861,"ĠLatin":5862,"Ġcomfort":5863,"Ġrely":5864,"uff":5865,"ĠCard":5866,"aring":5867,"Ġhumans":5868,"ĠThomson":5869,"aka":5870,"BIT":5871,"ĠReview":5872,"po":5873,"ú":5874,"Ġtrucks":5875,"Ġforecasts":5876,"view":5877,"Ġlongtime":5878,"ĠConstitution":5879,"Ġreserves":5880,"bit":5881,"Ġstressed":5882,"Ġcontribution":5883,"Ġchicken":5884,"ĠDE":5885,"Ġfat":5886,"ĠOscar":5887,"Ġcriticized":5888,"Ġtestimony":5889,"Ġapparent":5890,"Ġconstant":5891,"Ġcabinet":5892,"ĠDuke":5893,"Ġaspects":5894,"lic":5895,"ĠVol":5896,"Ġwing":5897,"Ġreb":5898,"ĠSessions":5899,"ĠSmart":5900,"car":5901,"ĠIm":5902,"Ġoperational":5903,"Ġregulators":5904,"ĠJimmy":5905,"eter":5906,"Ġnobody":5907,"ĠMarc":5908,"Ġliterally":5909,"Ġresistance":5910,"ĠKam":5911,"Ġsexually":5912,"Ġ69":5913,"uth":5914,"Ġviewed":5915,"Ġpicks":5916,"Ġdin":5917,"Ġtalented":5918,"Ġtennis":5919,"Ġstrengthen":5920,"Ġgl":5921,"ĠProtection":5922,"Ġinstalled":5923,"ways":5924,"ĠCampbell":5925,"ĠPortland":5926,"Ġintent":5927,"ĠPalace":5928,"Ġsecondary":5929,"Ġlocked":5930,"ĠPA":5931,"Ġlanded":5932,"Ġlength":5933,"Ġboosted":5934,"Ġpurchases":5935,"Ġcommand":5936,"ĠAsked":5937,"Ġspaces":5938,"Ġiconic":5939,"Ġrecommend":5940,"Ġduties":5941,"Ġseized":5942,"Ġdelayed":5943,"FA":5944,"AND":5945,"daq":5946,"Ġhiring":5947,"Ġoccur":5948,"DC":5949,"ĠMus":5950,"Ġag":5951,"Ġhopefully":5952,"ĠPenn":5953,"ards":5954,"Ġstriker":5955,"Ġrent":5956,"ĠTy":5957,"ĠBuffalo":5958,"ĠKy":5959,"Ġhike":5960,"pper":5961,"Ġ120":5962,"Ġop":5963,"Ġwheel":5964,"ĠIan":5965,"Ġchart":5966,"tt":5967,"Ġvolunteer":5968,"IG":5969,"person":5970,"ight":5971,"ĠBook":5972,"unt":5973,"ĠTechnologies":5974,"Now":5975,"Ġfavour":5976,"ĠGh":5977,"ĠQatar":5978,"ĠDutch":5979,"ĠGrant":5980,"ĠBan":5981,"rel":5982,"Ġagreements":5983,"Ġeducational":5984,"worth":5985,"ĠWard":5986,"700":5987,"Ġanymore":5988,"Ġrepair":5989,"Ġoperators":5990,"ĠLi":5991,"ots":5992,"ĠLouisiana":5993,"ĠWhether":5994,"Ġodds":5995,"Ġnoon":5996,"ĠStr":5997,"Ġfail":5998,"iser":5999,"Ġforever":6000,"Ġrecall":6001,"ĠPo":6002,"ĠHot":6003,"Ġdesigner":6004,"ido":6005,"LL":6006,"ĠControl":6007,"Ġsurvive":6008,"iam":6009,"Ġorganisation":6010,"ĠWork":6011,"Ġwider":6012,"Ġtank":6013,"work":6014,"ĠAS":6015,"Ġposting":6016,"Ġsuddenly":6017,"MC":6018,"ĠAL":6019,"ĠProfessor":6020,"ĠCoach":6021,"Ġrushed":6022,"Ġafraid":6023,"Ġactivist":6024,"that":6025,"ĠFilm":6026,"Ġbacking":6027,"Ġhousehold":6028,"Ġsignal":6029,"Ġaccurate":6030,"str":6031,"ĠThread":6032,"ĠBears":6033,"ATION":6034,"ĠAlliance":6035,"ĠMcDonald":6036,"ĠVenezuela":6037,"ogg":6038,"ĠWindows":6039,"makers":6040,"Ġutility":6041,"Ġrapidly":6042,"Ġattractive":6043,"Ġpa":6044,"ĠLarry":6045,"Ġmisconduct":6046,"Ġfreshman":6047,"Ġqualified":6048,"Ġcleared":6049,"Ġcrashed":6050,"Ġparticipating":6051,"Ġpages":6052,"Ġhighlight":6053,"Ġdialogue":6054,"ĠAlberta":6055,"Ġca":6056,"Ġwitnesses":6057,"ables":6058,"Ġfollowers":6059,"Ġensuring":6060,"Ġpromoting":6061,"Ġsearching":6062,"Ġremote":6063,"Ġclash":6064,"Ġfirefighters":6065,"Ġteen":6066,"ĠPlace":6067,"ĠNote":6068,"Ġregardless":6069,"ult":6070,"oney":6071,"ander":6072,"ional":6073,"ining":6074,"Ġdemanded":6075,"ĠCommunications":6076,"Ġconsideration":6077,"TC":6078,"ĠSoutheast":6079,"aga":6080,"ĠGarden":6081,"inger":6082,"ht":6083,"Ġbranch":6084,"Ġmouth":6085,"Ġaudio":6086,"Ġraw":6087,"Ġcoordinator":6088,"Ġexact":6089,"ĠHan":6090,"Ġdelays":6091,"ĠWal":6092,"ĠWells":6093,"Ġng":6094,"Ġhandful":6095,"Ġgirlfriend":6096,"Ġtypical":6097,"ĠWayne":6098,"ĠFranklin":6099,"Ġconstitutional":6100,"ĠChance":6101,"Ġblamed":6102,"rim":6103,"Ġpreliminary":6104,"Ġlie":6105,"da":6106,"ĠCapitol":6107,"Ġroutine":6108,"ĠNASA":6109,"Ġtre":6110,"ĠGolf":6111,"Ġsight":6112,"ĠDer":6113,"Ġreserve":6114,"150":6115,"Ġspeculation":6116,"Ġcompetitors":6117,"ĠMacron":6118,"ony":6119,"Ġovertime":6120,"Ġ71":6121,"Ġdepending":6122,"ĠWarner":6123,"Ġaccusations":6124,"ius":6125,"Ġpredicted":6126,"ĠCharlie":6127,"Ġeverywhere":6128,"Ġcable":6129,"ĠSaint":6130,"ĠRegion":6131,"Ġhero":6132,"ĠEmb":6133,"Ġkinds":6134,"Ġstarter":6135,"Ġsolve":6136,"ĠGuard":6137,"Ġloves":6138,"ĠDouglas":6139,"Ġfunded":6140,"ĠBrent":6141,"ĠAnyone":6142,"Ġsubstantial":6143,"ĠMarine":6144,"ĠMichelle":6145,"Ġcelebrating":6146,"Ġoffset":6147,"Ġbutton":6148,"gg":6149,"Ġmedicine":6150,"uri":6151,"Ġsomewhere":6152,"PD":6153,"Ġmon":6154,"Ġfires":6155,"final":6156,"oth":6157,"ined":6158,"Ġunderway":6159,"Ġmistakes":6160,"Ġgrateful":6161,"Ġcheap":6162,"È":6163,"Ġ95":6164,"Ġviolations":6165,"arr":6166,"Ġsurprising":6167,"Ġob":6168,"ĠNATO":6169,"Ġcontroversy":6170,"ĠSweden":6171,"Ġfuneral":6172,"Ġreviews":6173,"Ġpromotion":6174,"TY":6175,"Ġliberal":6176,"Ġpromising":6177,"ĠSP":6178,"How":6179,"Ġmemories":6180,"Ġbreast":6181,"zi":6182,"ights":6183,"Ġpattern":6184,"Ġoutdoor":6185,"ĠMu":6186,"Ġrush":6187,"ĠTheresa":6188,"ĠPol":6189,"Ġdescribe":6190,"ĠBand":6191,"ĠStewart":6192,"Ġ1999":6193,"ĠRaiders":6194,"mp":6195,"Ġprocedures":6196,"Ġplot":6197,"Ġhire":6198,"used":6199,"Ġ1970":6200,"Ġpicking":6201,"ĠSim":6202,"Ġregard":6203,"inal":6204,"backs":6205,"ĠHard":6206,"ĠLow":6207,"ĠAc":6208,"Is":6209,"Ġguarantee":6210,"ĠGiven":6211,"Ġbeta":6212,"ĠTre":6213,"Ġtrans":6214,"Ġretailer":6215,"Ġpurposes":6216,"ĠHol":6217,"Ġenjoying":6218,"Ġbrown":6219,"ĠPerry":6220,"Ġplea":6221,"MS":6222,"ĠDakota":6223,"ĠParker":6224,"Ġcommit":6225,"ĠLawrence":6226,"ĠMorris":6227,"ended":6228,"Ġvirtual":6229,"ÃĹ":6230,"Ġfruit":6231,"84":6232,"ĠHas":6233,"ishing":6234,"Ġdominated":6235,"ĠFA":6236,"Ġchannels":6237,"Ġunderstood":6238,"Ġcitizen":6239,"Ġchecks":6240,"ĠKenya":6241,"Ġdisabled":6242,"SD":6243,"Ġprotecting":6244,"Ġtweets":6245,"Ġsparked":6246,"ĠCO":6247,"§":6248,"ori":6249,"ĠGDP":6250,"ĠSer":6251,"ĠVisit":6252,"ĠMS":6253,"Ġbarely":6254,"Ġsand":6255,"Ġap":6256,"aging":6257,"Ġrel":6258,"ĠPerhaps":6259,"ĠMourinho":6260,"ĠJets":6261,"Ġdisclosure":6262,"Ġhighlighted":6263,"Ġimplemented":6264,"Ġcompliance":6265,"ĠAB":6266,"ĠAssistant":6267,"ĠCape":6268,"Ġfunny":6269,"Ġleverage":6270,"Ġmachines":6271,"Ġranging":6272,"Ġfastest":6273,"ĠRoberts":6274,"ĠPolicy":6275,"gar":6276,"Ġcollapse":6277,"ĠThrough":6278,"Ġrobbery":6279,"ĠHay":6280,"Ġelite":6281,"ĠDigital":6282,"ĠFun":6283,"ĠAlan":6284,"ement":6285,"Ġmit":6286,"Ġspin":6287,"Ġlistening":6288,"ĠDoug":6289,"ĠSaints":6290,"Ġinterior":6291,"Ġenhance":6292,"ĠCardinals":6293,"ever":6294,"Ġrobust":6295,"Ġinform":6296,"Ġsuffer":6297,"book":6298,"ĠMuslims":6299,"Ġagriculture":6300,"Ġkm":6301,"Ġdivers":6302,"ñ":6303,"ĠReg":6304,"Ġequivalent":6305,"Ġcraft":6306,"Ġsettle":6307,"Ġcontains":6308,"ĠMack":6309,"ĠDis":6310,"ĠFore":6311,"ĠSudan":6312,"ĠMail":6313,"ĠBrooklyn":6314,"izer":6315,"bn":6316,"Ġhundred":6317,"Ġexhibition":6318,"ĠHave":6319,"vin":6320,"Ġcivilians":6321,"ĠCincinnati":6322,"Some":6323,"ĠSE":6324,"Ġbat":6325,"ĠIns":6326,"Ġcalm":6327,"Ġtone":6328,"Ġnormally":6329,"Ġseeks":6330,"ĠAss":6331,"Ġmembership":6332,"Ġannually":6333,"Ġemployers":6334,"CO":6335,"Ġcomplicated":6336,"Ġheadlines":6337,"ĠLabor":6338,"Ġlifestyle":6339,"ĠRen":6340,"ĠRich":6341,"cent":6342,"ude":6343,"Ġawesome":6344,"Ġpaint":6345,"Ġrolling":6346,"Ġwalls":6347,"Ġlab":6348,"Ġtourists":6349,"care":6350,"Ġgear":6351,"izz":6352,"Ġcream":6353,"ĠTro":6354,"ices":6355,"Ġpack":6356,"Ġdiseases":6357,"ĠSpeaker":6358,"ĠOfficers":6359,"Ġsky":6360,"83":6361,"ĠBE":6362,"Ġcategories":6363,"Ġindicate":6364,"Ġru":6365,"ĠSony":6366,"ĠDun":6367,"ocks":6368,"Ġconcrete":6369,"ĠMadison":6370,"ĠSab":6371,"IV":6372,"Ġobserved":6373,"ria":6374,"Ġinterim":6375,"Ġencounter":6376,"ista":6377,"Ġanger":6378,"Ġrapid":6379,"mail":6380,"Ġdestination":6381,"ĩ":6382,"Ġbreaks":6383,"rell":6384,"ĠChase":6385,"Ġattorneys":6386,"Ġrolled":6387,"ĠSprings":6388,"ĠVillage":6389,"TO":6390,"HS":6391,"Ġcampaigns":6392,"ologist":6393,"ĠTax":6394,"ĠIII":6395,"Ġteach":6396,"Ġprovision":6397,"Ġrem":6398,"Ġshirt":6399,"Ġdeployed":6400,"Ġguidelines":6401,"Ġav":6402,"zer":6403,"Ġrushing":6404,"94":6405,"place":6406,"Man":6407,"Ġdivided":6408,"ĠGun":6409,"Ġwindows":6410,"Ġcomponents":6411,"aba":6412,"ĠSwitzerland":6413,"election":6414,"ĠTampa":6415,"ĠAri":6416,"ás":6417,"Ġhighway":6418,"Ġacres":6419,"Ġcrown":6420,"known":6421,"Ġinquiry":6422,"url":6423,"Ġexpertise":6424,"Ġpraised":6425,"yer":6426,"Ġconclusion":6427,"Ġabortion":6428,"Ġlady":6429,"Ġtribute":6430,"Ġunveiled":6431,"Ġbeaten":6432,"TE":6433,"ĠMot":6434,"unk":6435,"Ġtriple":6436,"Ġforcing":6437,"ĠTickets":6438,"uit":6439,"Ġiron":6440,"Ġscientific":6441,"ĠIP":6442,"Ġdiagnosed":6443,"Ġocean":6444,"wide":6445,"ĠCowboys":6446,"LC":6447,"Ġmethods":6448,"ĠFind":6449,"ĠDean":6450,"Ġfundamental":6451,"ĠGill":6452,"Ġfeelings":6453,"IO":6454,"hu":6455,"Ġfeedback":6456,"ote":6457,"Ġduo":6458,"fully":6459,"get":6460,"Ġproof":6461,"story":6462,"Ġlongest":6463,"Ġshops":6464,"ĠJong":6465,"ĠCro":6466,"ĠHawaii":6467,"91":6468,"ĠJake":6469,"ĠSusan":6470,"Ġsubmit":6471,"rav":6472,"Ġmodest":6473,"Ġlit":6474,"Ġattempting":6475,"Ġsits":6476,"Ġaddressing":6477,"93":6478,"ĠBi":6479,"Ġlying":6480,"ĠOrganization":6481,"ĠOak":6482,"oli":6483,"Ġfatal":6484,"Ġmountain":6485,"val":6486,"lu":6487,"ĠMaine":6488,"Ġcharging":6489,"Ġresigned":6490,"illo":6491,"Ġrecommendation":6492,"party":6493,"ĠWeb":6494,"ĠPanthers":6495,"Ġnoise":6496,"ĠBrussels":6497,"awa":6498,"Ġambassador":6499,"Ġaccessible":6500,"ĠCalgary":6501,"idd":6502,"ĠAirlines":6503,"gr":6504,"Ġnu":6505,"roy":6506,"ĠMars":6507,"ĠPoland":6508,"ĠJerry":6509,"ados":6510,"ĠRico":6511,"ĠMir":6512,"ĠFin":6513,"ious":6514,"Ġpacked":6515,"Ġinsider":6516,"President":6517,"ĠBull":6518,"ĠYemen":6519,"ĠConnecticut":6520,"Ġ73":6521,"Ġdepartments":6522,"Ġorganic":6523,"ĠSummer":6524,"ĠBet":6525,"ste":6526,"zo":6527,"rat":6528,"Ġalliance":6529,"Ġintervention":6530,"wan":6531,"ĠOR":6532,"Ġdefined":6533,"ĠÃł":6534,"ĠChiefs":6535,"Ġknocked":6536,"ared":6537,"Ġholes":6538,"Ġpulling":6539,"ĠTodd":6540,"ĠJamie":6541,"ĠSher":6542,"Ġsignature":6543,"ĠSur":6544,"Ġgym":6545,"ĠVladimir":6546,"ĠThailand":6547,"Ġgaming":6548,"Ġsaving":6549,"ceive":6550,"82":6551,"ĠBern":6552,"ĠDid":6553,"Ġhardware":6554,"ished":6555,"Ġconspiracy":6556,"ANS":6557,"ĠIntelligence":6558,"Ġassembly":6559,"Ġ101":6560,"Ġconcise":6561,"ĠManhattan":6562,"Ġbelief":6563,"Ġsurge":6564,"Ġdeserve":6565,"Ġconsistently":6566,"ĠNor":6567,"okes":6568,"ðŁ":6569,"ME":6570,"ĠAsset":6571,"Ġsubstance":6572,"Ġprefer":6573,"Ġburning":6574,"ĠNik":6575,"ook":6576,"ĠPinterest":6577,"Ġboyfriend":6578,"ĠHal":6579,"ĠMerkel":6580,"Ġintroduce":6581,"ĠLinkedIn":6582,"ĠFull":6583,"ĠFarm":6584,"Ġchildhood":6585,"ĠTransportation":6586,"Ġterrible":6587,"du":6588,"Ġintention":6589,"Ġseemingly":6590,"elle":6591,"Ġfoods":6592,"Ġtitled":6593,"Ġdual":6594,"Ġimport":6595,"Ġdeveloper":6596,"UL":6597,"ington":6598,"ĠDelta":6599,"?'":6600,"iness":6601,"Ġquit":6602,"ĠGarcia":6603,"ĠSri":6604,"Ġhip":6605,"ĠBrazilian":6606,"elt":6607,"ively":6608,"Ġstructures":6609,"Ġlabour":6610,"Ġneighbors":6611,"Ġtill":6612,"Ġsoil":6613,"Ġdropping":6614,"Ġnominee":6615,"Ġmeets":6616,"92":6617,"rant":6618,"isa":6619,"Ġluck":6620,"aa":6621,"jet":6622,"ĠTor":6623,"ĠCrime":6624,"Ġlane":6625,"Ġflu":6626,"Ġlaunching":6627,"ĠAutom":6628,"aks":6629,"Ġuniversities":6630,"Ġpollution":6631,"ĠAdvis":6632,"ĠMall":6633,"ls":6634,"Ġdeeper":6635,"Ġrepeated":6636,"Ġmeanwhile":6637,"Ġchip":6638,"Ġoutlets":6639,"Ġliked":6640,"Ġsal":6641,"Ġwelfare":6642,"ago":6643,"Ġmakers":6644,"ving":6645,"fer":6646,"Ġovercome":6647,"mb":6648,"Ġshocked":6649,"akers":6650,"Ġnonprofit":6651,"Ġdonated":6652,"eral":6653,"Ġresume":6654,"Ġlogo":6655,"Ġsubscription":6656,"Ġ74":6657,"ela":6658,"Ġaspect":6659,"html":6660,"Ġsorry":6661,"Ġupgrade":6662,"Ġstance":6663,"Ġfr":6664,"Ġpapers":6665,"Ġattacking":6666,"Ġmeaningful":6667,"81":6668,"ĠWeinstein":6669,"Ġcreates":6670,"Ġhonour":6671,"ĠReply":6672,"oph":6673,"Ġmarch":6674,"Ġsmile":6675,"Ġcomparison":6676,"will":6677,"ĠSanchez":6678,"Ġvoter":6679,"Ġtheory":6680,"Ġequally":6681,"ĠRoger":6682,"Ġperfectly":6683,"Ġlanding":6684,"Ġbillions":6685,"ĠBloomberg":6686,"Ġpermit":6687,"Ġfinals":6688,"Ġracial":6689,"Ġpregnancy":6690,"iled":6691,"ĠFederation":6692,"Ġforest":6693,"Ġtag":6694,"aul":6695,"Ġdrinks":6696,"Ġ(\"":6697,"ĠMobile":6698,"Ġtouched":6699,"Ġclock":6700,"Ġreg":6701,"Ġasylum":6702,"igan":6703,"Ġsenator":6704,"Ġ99":6705,"ĠKumar":6706,"Ġskill":6707,"Ġ1998":6708,"pa":6709,"ĠAf":6710,"Ġmood":6711,"ston":6712,"Ġhang":6713,"ĠMPs":6714,"Please":6715,"ĠEve":6716,"Ġdocumentary":6717,"Ġpersonality":6718,"ĠCast":6719,"Ġdiscount":6720,"bing":6721,"ĠBoeing":6722,"Ġdepend":6723,"Ġcrossing":6724,"EX":6725,"Ġsucceed":6726,"Ġhumanitarian":6727,"ĠMuhammad":6728,"Ġwages":6729,"Ġcolumn":6730,"Ġexternal":6731,"Ġstatistics":6732,"ĠTODAY":6733,"Ġtrips":6734,"Ġta":6735,"Ġpenalties":6736,"Ġwriters":6737,"Ġshipping":6738,"ĠIndians":6739,"Ġsalt":6740,"ĠIndustrial":6741,"ĠYankees":6742,"ĠDen":6743,"Ġrough":6744,"Ġbarrels":6745,"ĠHor":6746,"bert":6747,"ĠDep":6748,"Ġresign":6749,"97":6750,"Ġballs":6751,"ĠJun":6752,"ĠBab":6753,"Ġassociate":6754,"Ġstring":6755,"Ġhub":6756,"Ġorgan":6757,"ĠMarshall":6758,"ĠFIFA":6759,"ĠMun":6760,"ency":6761,"research":6762,"Ġpeers":6763,"Ġtall":6764,"ĠGoldman":6765,"Don":6766,"Ġparade":6767,"Ġparks":6768,"Ġdet":6769,"Ġdisappointing":6770,"Ġreflects":6771,"ĠLakers":6772,"Ġfiles":6773,"Ġrelatives":6774,"ĠUSD":6775,"ĠArticle":6776,"Ġcustom":6777,"ĠCarlos":6778,"Ġtracking":6779,"Ġmaintaining":6780,"ĠCur":6781,"ardo":6782,"ĠSkip":6783,"Ġattitude":6784,"Just":6785,"Ġinstitution":6786,"Ġnarrow":6787,"Ġsnap":6788,"Ġenterprise":6789,"Ġdrives":6790,"Ġ77":6791,"Ġcrop":6792,"Ġvirus":6793,"Ġcelebrity":6794,"Ġeconomies":6795,"ued":6796,"Ġsum":6797,"ĠDubai":6798,"ĠInsurance":6799,"Ĺ":6800,"ury":6801,"ĠUnfortunately":6802,"Ġclosure":6803,"ota":6804,"ĠPhilip":6805,"oms":6806,"Ġinvestigated":6807,"Ġgenerations":6808,"ĠETF":6809,"ĠKeith":6810,"ĠLater":6811,"isk":6812,"Ġpreferred":6813,"Ġdefault":6814,"Ġtowns":6815,"ĠRod":6816,"ĠDie":6817,"Ġintegrated":6818,"Ġacquiring":6819,"Ġvoices":6820,"Ġser":6821,"Ġpresents":6822,"ĠBR":6823,"ĠEmergency":6824,"Ġreligion":6825,"HA":6826,"Ġresponding":6827,"ĠThings":6828,"Ġbeef":6829,"ĠWithout":6830,"urd":6831,"ĠCarl":6832,"Ġadministrative":6833,"ĠWhich":6834,"Ġchallenged":6835,"Ġcooking":6836,"ivid":6837,"ĠFer":6838,"Ġtremendous":6839,"ĠTerry":6840,"iri":6841,"CS":6842,"ĠJunior":6843,"ĠReddit":6844,"Ġtea":6845,"Ġaccounting":6846,"lan":6847,"Ġdetention":6848,"Ġreplied":6849,"SI":6850,"ĠHel":6851,"ns":6852,"ĠProf":6853,"Ġramp":6854,"ĠConservative":6855,"Ġattendance":6856,"Ġspecialist":6857,"ĠFinal":6858,"Ġadvertisement":6859,"Ġacquire":6860,"ĠWhatsApp":6861,"Ġworkforce":6862,"ĠCalif":6863,"Ġspeakers":6864,"ĠEPA":6865,"Ġconviction":6866,"hire":6867,"ĠFisher":6868,"ĠIntel":6869,"Ġbin":6870,"ĠWas":6871,"Ġearth":6872,"vi":6873,"Ġhurricane":6874,"Ġholidays":6875,"Ġassume":6876,"Ġinvolve":6877,"Ġdynamic":6878,"ĠGre":6879,"Ġitem":6880,"Ġpound":6881,"Ġanxiety":6882,"ĠPrint":6883,"rop":6884,"Ġautomatically":6885,"Ġdiscrimination":6886,"ĠLam":6887,"ĠColl":6888,"Ġimpressed":6889,"Ġinvolves":6890,"ĠLes":6891,"ĠTri":6892,"ĠLook":6893,"ĠiOS":6894,"Ġgrab":6895,"ĠAngel":6896,"Ġstops":6897,"ĠPay":6898,"ĠECB":6899,"Ġbunch":6900,"Ġletting":6901,"ele":6902,"ĠAdditionally":6903,"Ġboards":6904,"NC":6905,"Ġtragedy":6906,"Ġpink":6907,"Ġgonna":6908,"ones":6909,"Ġrev":6910,"ĠIndependent":6911,"ĠCambridge":6912,"ĠPence":6913,"Ġprosecution":6914,"Ġdeputies":6915,"ĠAhmed":6916,"Ġlows":6917,"ĠAmy":6918,"ĠBuilding":6919,"mark":6920,"Ġsmooth":6921,"Ġsole":6922,"Ġwanting":6923,"ĠHeart":6924,"Ġobtain":6925,"ĠBus":6926,"Ġexchanges":6927,"friendly":6928,"Ġlabel":6929,"elect":6930,"ĠCompanies":6931,"owing":6932,"ĠCB":6933,"RI":6934,"ĠMaster":6935,"Ġliquid":6936,"ĠDanny":6937,"Ġproceeds":6938,"ĠLaura":6939,"card":6940,"Ġtears":6941,"Ġexploration":6942,"Ġdepression":6943,"ken":6944,"ĠFe":6945,"Ġlending":6946,"ĠYouth":6947,"ality":6948,"NS":6949,"Ġmoon":6950,"ĠTaiwan":6951,"Ġstruggles":6952,"Ġdiscovery":6953,"Ġqualify":6954,"Ġwireless":6955,"alia":6956,"Ġwitnessed":6957,"Ġheight":6958,"ĠGuy":6959,"left":6960,"KE":6961,"Ġfoul":6962,"ĠMohammed":6963,"Ġgrass":6964,"ĠNon":6965,"Ġswim":6966,"Ġbrilliant":6967,"you":6968,"ĠFlynn":6969,"Ġsinging":6970,"eria":6971,"UT":6972,"ĠMcCain":6973,"ĠSep":6974,"ĠWars":6975,"Ġburden":6976,"Ġpas":6977,"Ġabandoned":6978,"Ġint":6979,"ĠTurner":6980,"Ġcollective":6981,"ĠEnvironmental":6982,"ĠStudents":6983,"Ġofferings":6984,"Ġresignation":6985,"Ġexplosion":6986,"ĠKoh":6987,"ager":6988,"Ġthrows":6989,"Ġasks":6990,"light":6991,"Ġanyway":6992,"Ġyard":6993,"Ġcarrier":6994,"Ġwaves":6995,"backed":6996,"TR":6997,"oud":6998,"Ġbreach":6999,"Ġdated":7000,"Ġdressed":7001,"ĠDodgers":7002,"oles":7003,"Ġ78":7004,"Ġreads":7005,"Ġpredict":7006,"ĠJerusalem":7007,"ĠPT":7008,"Ġcrack":7009,"yan":7010,"Ġnights":7011,"eline":7012,"Ġconvinced":7013,"Ġlock":7014,"Ġcarefully":7015,"ĠMercedes":7016,"Ġultimate":7017,"Ġdist":7018,"Ġslight":7019,"ĠEdwards":7020,"Ġswing":7021,"iling":7022,"Ġknife":7023,"ĠNashville":7024,"IF":7025,"inder":7026,"udd":7027,"Ġsenators":7028,"ĠFurther":7029,"ĠXi":7030,"Ġstr":7031,"ĠOd":7032,"days":7033,"Ġcomm":7034,"Ġverdict":7035,"Ġconfirmation":7036,"king":7037,"ĠCS":7038,"Ġadvocates":7039,"Ġpride":7040,"Ġmemorial":7041,"ams":7042,"erman":7043,"Ġteenager":7044,"ĠNeil":7045,"uts":7046,"Ġsoul":7047,"see":7048,"post":7049,"Ġchest":7050,"fire":7051,"ĠLynch":7052,"Ġpeaceful":7053,"OND":7054,"ĠIndustries":7055,"ĠJuan":7056,"Ġrestore":7057,"Ġreliable":7058,"ming":7059,"agan":7060,"Source":7061,"ĠCabinet":7062,"Ġremarkable":7063,"ĠTrudeau":7064,"ĠEs":7065,"Ġintegrity":7066,"ove":7067,"fe":7068,"Ġproceedings":7069,"Ġconnections":7070,"Ġunprecedented":7071,"ĠGlen":7072,"ux":7073,"Ġearning":7074,"Ġingredients":7075,"Ġnominated":7076,"ĠBangladesh":7077,"made":7078,"Ġlessons":7079,"Ġbreakfast":7080,"ĠRelations":7081,"Ġloose":7082,"Al":7083,"Ġupgraded":7084,"ral":7085,"ĠPage":7086,"oto":7087,"ĠQueensland":7088,"Ġprocedure":7089,"ĠSmall":7090,"Ġrespective":7091,"Ġpictured":7092,"ĠBas":7093,"Ġpreparation":7094,"ĠMyanmar":7095,"Ġdonation":7096,"Ġvisible":7097,"iest":7098,"ĠBroadway":7099,"rick":7100,"ĠSchools":7101,"Ġarrests":7102,"ĠJessica":7103,"ĠBengal":7104,"Ġhell":7105,"Ġannouncing":7106,"Ġmail":7107,"ĠMcG":7108,"two":7109,"rest":7110,"OD":7111,"ĠBradley":7112,"Ġdoubled":7113,"Ġpledged":7114,"Ġcomeback":7115,"Ġextraordinary":7116,"Ġslide":7117,"Ġassess":7118,"Ġagricultural":7119,"ĠKay":7120,"Ġvendors":7121,"Ġnarrative":7122,"Ġreviewed":7123,"ĠPass":7124,"Ġinspiration":7125,"ĠHunter":7126,"Ġcalendar":7127,"ĠDiamond":7128,"Ġremoval":7129,"ners":7130,"ĠKap":7131,"Ġconsent":7132,"Ġvisual":7133,"Ġcheese":7134,"ĠTher":7135,"ĠFR":7136,"ĠShanghai":7137,"iah":7138,"ĠCole":7139,"AK":7140,"Ġranking":7141,"Ġcook":7142,"Ġhalftime":7143,"ĠStars":7144,"Ġroutes":7145,"aim":7146,"Ġestablishment":7147,"ĠMug":7148,"Ġsurvivors":7149,"urg":7150,"ĠBrett":7151,"Ġunexpected":7152,"ained":7153,"Ġrarely":7154,"ĠGall":7155,"Ġadvocate":7156,"ĠNad":7157,"Ġ911":7158,"Ġracist":7159,"erer":7160,"ĠRev":7161,"ĠSection":7162,"Ġhelpful":7163,"CT":7164,"agg":7165,"Ġgovernance":7166,"Ġfelony":7167,"Ġoptimistic":7168,"Ġelectoral":7169,"EG":7170,"town":7171,"Ġdaughters":7172,"Ġanswered":7173,"Ġthin":7174,"ĠClassic":7175,"Ġshareholder":7176,"ĠBlake":7177,"ĠFla":7178,"Ġparliamentary":7179,"dy":7180,"Ġcommented":7181,"Ġtri":7182,"Ġglobe":7183,"Ġmandate":7184,"Ġslipped":7185,"ĠTower":7186,"Ġoperated":7187,"gers":7188,"Ġassured":7189,"ĠMartinez":7190,"Ġdesigns":7191,"ĠModel":7192,"Ġstakeholders":7193,"Ġdefended":7194,"Ġseniors":7195,"Ġvacation":7196,"Ġglobally":7197,"ump":7198,"Not":7199,"Ġclip":7200,"Ġarticles":7201,"BR":7202,"km":7203,"ĠFront":7204,"PL":7205,"Ġadoption":7206,"Ġsudden":7207,"Ġframework":7208,"Ġhanging":7209,"gl":7210,"ĠSel":7211,"Ġmoderate":7212,"Ġreverse":7213,"income":7214,"cor":7215,"ĠGB":7216,"Ġphysically":7217,"Ġtransparency":7218,"ĠElectric":7219,"Ġrefugee":7220,"profile":7221,"iva":7222,"ately":7223,"ĠAC":7224,"Ġtransferred":7225,"Ġaffair":7226,"ĠAlaska":7227,"oria":7228,"ĠChange":7229,"Ġrepeat":7230,"Ġscreening":7231,"ender":7232,"ĠCas":7233,"ĠDav":7234,"Ġfocuses":7235,"Ġcommissioner":7236,"Ġupside":7237,"ĠKeep":7238,"ĠBlues":7239,"ently":7240,"Ġaut":7241,"Ġexperiencing":7242,"aman":7243,"Ġapprove":7244,"Ġmile":7245,"Ġcheaper":7246,"ĠWind":7247,"ĠStore":7248,"Ġgrabbed":7249,"Ġsons":7250,"Ġfighter":7251,"Ġum":7252,"ĠBased":7253,"don":7254,"Ġconstitution":7255,"finals":7256,"act":7257,"¢":7258,"Ġmill":7259,"Ġorganisations":7260,"ĠToyota":7261,"Ġyuan":7262,"Ġterrorists":7263,"Ġforth":7264,"Ġavailability":7265,"Ġentrance":7266,"Ġvolumes":7267,"Ġmult":7268,"plus":7269,"ĠColumbus":7270,"ĠSummit":7271,"Ġbabies":7272,"ĠMur":7273,"ĠGray":7274,"ĠChar":7275,"ĠButler":7276,"Ġpose":7277,"ĠNatural":7278,"ĠAtt":7279,"Ġdecrease":7280,"Ġtens":7281,"kt":7282,"Ġminds":7283,"Ġimpacted":7284,"Ġchapter":7285,"ĠOp":7286,"ĠHarrison":7287,"ĠRodriguez":7288,"Ġethnic":7289,"Ġtravelling":7290,"ĠBond":7291,"ader":7292,"core":7293,"Ġgallery":7294,"founder":7295,"ĠVill":7296,"Ġdecent":7297,"ĠHistory":7298,"ĠInt":7299,"ĠNa":7300,"ĠHad":7301,"Ġmainstream":7302,"ĠTs":7303,"Ġbottle":7304,"sen":7305,"Ġrecession":7306,"Ġsophomore":7307,"Ġsilence":7308,"cc":7309,"Ġqualifying":7310,"Ġcomplained":7311,"ĠRad":7312,"Ġactively":7313,"Ġbacks":7314,"ĠMusk":7315,"Ġcareful":7316,"Ġmeals":7317,"ĠDor":7318,"Ġmess":7319,"ĠBelgium":7320,"Ġke":7321,"ĠLopez":7322,"Ġbow":7323,"Ġhelicopter":7324,"was":7325,"Ġstone":7326,"kins":7327,"Ġunlike":7328,"Ġcollision":7329,"ĠAlt":7330,"HP":7331,"ĠMason":7332,"has":7333,"Ġclimbed":7334,"Ġindication":7335,"Ġhotels":7336,"Ġloud":7337,"ĠMilan":7338,"kes":7339,"Ġbadly":7340,"Ġtrials":7341,"Ġimpacts":7342,"ĠJane":7343,"Ġcrossed":7344,"Ġdiscussing":7345,"ĠSM":7346,"Ġpopularity":7347,"ĠWant":7348,"fall":7349,"Ġartificial":7350,"ĠBu":7351,"akh":7352,"Ġdominant":7353,"gov":7354,"Ġpremier":7355,"Ġexecution":7356,"gate":7357,"Ġswimming":7358,"Ġchat":7359,"Ġdevastating":7360,"acking":7361,"Ġreception":7362,"urt":7363,"Ġtheater":7364,"Ġgather":7365,"Ġtear":7366,"uro":7367,"Ġdemocratic":7368,"Ġrebels":7369,"Ġlifetime":7370,"Ġradical":7371,"uan":7372,"Ġtechniques":7373,"ache":7374,"ior":7375,"Ġcamps":7376,"Ġtelephone":7377,"ĠDublin":7378,"ĠBrand":7379,"ĠMarcus":7380,"aun":7381,"ĠRec":7382,"Ġ82":7383,"ban":7384,"Ġsafely":7385,"aku":7386,"aki":7387,"Ġbankruptcy":7388,"FF":7389,"Ġformat":7390,"Ġattached":7391,"ĠFame":7392,"ĠEdward":7393,"Ġmerger":7394,"ĠRepresentatives":7395,"izes":7396,"Ġhidden":7397,"Ġval":7398,"zz":7399,"Ġexcess":7400,"Ġscope":7401,"Ġdivorce":7402,"Ġburn":7403,"Ġrequirement":7404,"BB":7405,"ĠHand":7406,"Ġcons":7407,"Ġrisen":7408,"Ġtwitter":7409,"Ġoffseason":7410,"ĠSometimes":7411,"ĠInf":7412,"ĠAng":7413,"uer":7414,"report":7415,"Ġdreams":7416,"Ġ700":7417,"ips":7418,"ĠDream":7419,"Ġgifts":7420,"Ġsomehow":7421,"ĠTur":7422,"ĠRachel":7423,"can":7424,"Ġlog":7425,"ĠMedicaid":7426,"Ġles":7427,"Ġtired":7428,"ĠArkansas":7429,"Ġliquidity":7430,"ĠPhillips":7431,"ĠBTC":7432,"Ġhide":7433,"Ġpun":7434,"ĠRun":7435,"lyn":7436,"ĠUC":7437,"ĠDesign":7438,"ĠDev":7439,"Ġvaluation":7440,"Ġreveals":7441,"ĠChild":7442,"other":7443,"Ġposed":7444,"lee":7445,"Ġships":7446,"ĠTrue":7447,"Ġdescribes":7448,"Ġrunner":7449,"bro":7450,"Ġankle":7451,"Ġod":7452,"ĠAnnual":7453,"CL":7454,"Ġoverhaul":7455,"ned":7456,"Ġbold":7457,"Ġmo":7458,"ĠFalls":7459,"Ġemployed":7460,"ĠGro":7461,"Ġflash":7462,"ĠTD":7463,"Ġnervous":7464,"Ġintegration":7465,"Ġsmartphones":7466,"Ġmovements":7467,"nie":7468,"ition":7469,"ĠThird":7470,"Ģ":7471,"Ġmetres":7472,"Ġeconomist":7473,"omp":7474,"Ġteens":7475,"Ġeveryday":7476,"Ġinterviewed":7477,"Ġbriefly":7478,"],":7479,"uke":7480,"ĠFOX":7481,"Ġunderlying":7482,"ĠLuc":7483,"Ġcourses":7484,"ss":7485,"amed":7486,"°":7487,"ju":7488,"ĠBanks":7489,"Ġoutfit":7490,"illing":7491,"Ġtrafficking":7492,"Ġurging":7493,"Ġbelt":7494,"Ġrid":7495,"CP":7496,"Ġelderly":7497,"ĠGrowth":7498,"án":7499,"ĠSn":7500,"Ġsurrounded":7501,"Ġsisters":7502,"ĠIslam":7503,"Ġsynd":7504,"ĠCosta":7505,"di":7506,"ĠKl":7507,"Ġmanufacturer":7508,"holders":7509,"Ġelement":7510,"Ġload":7511,"Ġbooked":7512,"Ġaccompanied":7513,"ĠChamber":7514,"Ġbriefing":7515,"Oh":7516,"imi":7517,"ĠDefence":7518,"ĠCurrently":7519,"aking":7520,"Ġhandled":7521,"ĠCD":7522,"ĠBenjamin":7523,"Ġpocket":7524,"ĠKashmir":7525,"Ġlighting":7526,"aps":7527,"Ġ1997":7528,"ech":7529,"Ġaddiction":7530,"Ġbases":7531,"Ġpriorities":7532,"Ġhardly":7533,"ĠQuebec":7534,"ĠEarn":7535,"IES":7536,"ĠZach":7537,"ĠAlong":7538,"MI":7539,"Ġins":7540,"ĠRogers":7541,"ĠKan":7542,"ĠFuture":7543,"Ġtriggered":7544,"ĠUnit":7545,"Ġweighed":7546,"Ġpointing":7547,"Ġchocolate":7548,"ĠBrowns":7549,"ĠISIS":7550,"Ġgoalkeeper":7551,"Ġsaves":7552,"ĠAndre":7553,"burn":7554,"ĠCont":7555,"ĠNetherlands":7556,"Ġpolitically":7557,"ĠAshley":7558,"ĠWhit":7559,"aded":7560,"PH":7561,"Ġborders":7562,"ORE":7563,"Ġally":7564,"Trump":7565,"istan":7566,"ĠHunt":7567,"ĠCancer":7568,"ĠGrace":7569,"ĠTottenham":7570,"Ġ1960":7571,"ĠMarg":7572,"ĠBryan":7573,"ĠAgain":7574,"acing":7575,"Ġarguments":7576,"ĠSouthwest":7577,"Ġvocal":7578,"Ġjudgment":7579,"Ġengaging":7580,"Ġadopt":7581,"Ġrental":7582,"Ġlinebacker":7583,"ĠKardashian":7584,"Ġepisodes":7585,"..":7586,"Ġunt":7587,"Ġvowed":7588,"Ġ79":7589,"ule":7590,"Ġtransit":7591,"Ġoffshore":7592,"Ġsuppliers":7593,"Ġarguing":7594,"Ġsatellite":7595,"ĠLind":7596,"ĠTaliban":7597,"Buy":7598,"ĠCaribbean":7599,"ĠBarry":7600,"Ġauthors":7601,"ĠWolf":7602,"Ġviewing":7603,"ĠCubs":7604,"From":7605,"Ġ%":7606,"Ġcurrencies":7607,"Why":7608,"ĠBroncos":7609,"Ġtrick":7610,"Ġdiesel":7611,"ĠLiberal":7612,"FL":7613,"Ġtopics":7614,"Ġretain":7615,"ĠLiberty":7616,"Ġacquisitions":7617,"ced":7618,"Ġfre":7619,"Ġfleet":7620,"Ġcopper":7621,"ĠPot":7622,"jen":7623,"ĠElliott":7624,"ĠPyongyang":7625,"Ġobject":7626,"ĠUse":7627,"Ġmutual":7628,"MP":7629,"Ġev":7630,"Ġdeny":7631,"ĠEveryone":7632,"lling":7633,"Ġpays":7634,"Ġdrought":7635,"Ġcorn":7636,"Ġworkplace":7637,"rig":7638,"ĠMn":7639,"Ġadvisory":7640,"ĠCat":7641,"Ġchronic":7642,"ĠSteelers":7643,"Ġboxes":7644,"ĠNap":7645,"Ġdemonstrated":7646,"ĠTournament":7647,"Ġsymbol":7648,"ĠAfghan":7649,"ĠTan":7650,"ired":7651,"ĠEv":7652,"ĠConsumer":7653,"Ġmoral":7654,"ĠAdditional":7655,"Ġwebsites":7656,"Ġoccasions":7657,"Ġfate":7658,"Ġpitcher":7659,"Ġtaxpayers":7660,"Ġdeemed":7661,"ĠLibya":7662,"Ġpriced":7663,"Ġdistributed":7664,"ĠForum":7665,"Ġrice":7666,"Ġbloc":7667,"Ġprovisions":7668,"agh":7669,"Ġpen":7670,"Ġattracted":7671,"ĠEdmonton":7672,"Ġthousand":7673,"Ġpainting":7674,"Ġil":7675,"Ġcourtesy":7676,"Ġeliminate":7677,"Ġacc":7678,"Ġmeters":7679,"Ġreflected":7680,"Ġcomponent":7681,"Every":7682,"Ġsells":7683,"Ġfault":7684,"Ġburned":7685,"ĠKirk":7686,"ĠAnna":7687,"Ġappeals":7688,"Ġeggs":7689,"Ġfrequent":7690,"Ġtrigger":7691,"Ġrevised":7692,"ĠAngela":7693,"Ġ81":7694,"Ġsingles":7695,"Ġviral":7696,"Ġworries":7697,"ĠShould":7698,"profit":7699,"Ġraises":7700,"ĠBryant":7701,"ĠProduct":7702,"Ġtenure":7703,"Ġdiabetes":7704,"Ġcolour":7705,"azz":7706,"ĠGirls":7707,"Ġpractical":7708,"Ġblind":7709,"ancing":7710,"pictured":7711,"Ġfinale":7712,"ĠElection":7713,"Ġathletic":7714,"Ġpromoted":7715,"Ġflowers":7716,"Ġtrains":7717,"ario":7718,"Ġsufficient":7719,"IE":7720,"Ġexamples":7721,"Ġshed":7722,"Ġbirds":7723,"Ġchaos":7724,"Ġwound":7725,"Ġrocket":7726,"Ġwet":7727,"Ġsample":7728,"ĠNag":7729,"ĠOliver":7730,"Ġscrutiny":7731,"ĠSeven":7732,"ĠRoman":7733,"ĠFred":7734,"Ġweird":7735,"ĠTam":7736,"ĠSupport":7737,"ĠNathan":7738,"Ġstudying":7739,"Ġintroduction":7740,"Ġtons":7741,"cer":7742,"aus":7743,"ION":7744,"Ġcritic":7745,"ĠAh":7746,"alo":7747,"pur":7748,"Ġstorms":7749,"ĠMission":7750,"Ġcredits":7751,"Ġgrants":7752,"Ġcomp":7753,"Ġhearts":7754,"part":7755,"Ġpin":7756,"Ġsubsequent":7757,"Ġmad":7758,"ĠSacramento":7759,"woman":7760,"from":7761,"Ġoutcomes":7762,"Ġoldest":7763,"Ġdesperate":7764,"ĠTal":7765,"ĠDJ":7766,"ward":7767,"Ġaudiences":7768,"Ġimportantly":7769,"ĠEmily":7770,"sk":7771,"ĠHeat":7772,"ĠType":7773,"ĠPeace":7774,"Ġsuspicious":7775,"aly":7776,"ĠGET":7777,"ĠCAP":7778,"dis":7779,"ĠIraqi":7780,"ĠReed":7781,"Ġstrange":7782,"ĠParent":7783,"900":7784,"Ġglad":7785,"ĠTroy":7786,"ĠShort":7787,"Ġheritage":7788,"Ġarriving":7789,"ingly":7790,"Ġtransformation":7791,"Ġlease":7792,"Ġcollapsed":7793,"cha":7794,"ĠPatrol":7795,"Ġcomputers":7796,"Ġprinciples":7797,"Ġsporting":7798,"ĠHughes":7799,"mile":7800,"ĠCit":7801,"Ġdrilling":7802,"ĠBox":7803,"ÃŁ":7804,"bre":7805,"ĠOverall":7806,"Ġopioid":7807,"Ġdelighted":7808,"Ġhonored":7809,"ĠCold":7810,"Ġunions":7811,"ĠCou":7812,"ĠCircuit":7813,"Ġblast":7814,"sson":7815,"ĠHernandez":7816,"ĠLooking":7817,"Ġlegally":7818,"ĠWalmart":7819,"bridge":7820,"Ġmat":7821,"rad":7822,"ids":7823,"Ġdining":7824,"Ġrebound":7825,"abad":7826,"ĠRom":7827,"Ġimpose":7828,"ĠAlpha":7829,"ĠWeekly":7830,"TER":7831,"ĠJam":7832,"Ġabsolute":7833,"Ġinventory":7834,"ĠBilly":7835,"ĠKaren":7836,"ĠFriends":7837,"ĠCent":7838,"ĠVikings":7839,"ĠMuch":7840,"cell":7841,"ads":7842,"Ġph":7843,"Ġkiller":7844,"ĠMembers":7845,"Ġshooter":7846,"ĠInvestigators":7847,"ĠJoshua":7848,"Ġparticipated":7849,"Ġinnocent":7850,"ĠRichmond":7851,"itor":7852,"ĠDal":7853,"ĠOperator":7854,"Ġmakeup":7855,"Ġconf":7856,"ĠNEWS":7857,"ĠDef":7858,"Ġchase":7859,"ĠCost":7860,"mont":7861,"\":":7862,"Ġarrangements":7863,"stein":7864,"Ġretire":7865,"ĠLuis":7866,"Ġrenewed":7867,"ĠTownship":7868,"Ġchecked":7869,"arts":7870,"ĠCash":7871,"Ġcentres":7872,"chers":7873,"ĠSolutions":7874,"Ġlegend":7875,"ige":7876,"most":7877,"osed":7878,"ĠPor":7879,"Ġpremiere":7880,"FS":7881,"Ġmissiles":7882,"ĠLang":7883,"Ġsing":7884,"best":7885,"Ġtail":7886,"Ġriders":7887,"Picture":7888,"zen":7889,"ĠKent":7890,"Ġtransform":7891,"Ġwildlife":7892,"Ġsmoking":7893,"Ġpreseason":7894,"ĠLucas":7895,"ĠAnne":7896,"owski":7897,"Ġtape":7898,"Ġdisplayed":7899,"Ġforum":7900,"Ġanonymity":7901,"ĠIndianapolis":7902,"hips":7903,"acc":7904,"ĠMoreover":7905,"lers":7906,"area":7907,"ĠIndeed":7908,"Ġconducting":7909,"Ġinfection":7910,"Ġdealt":7911,"OB":7912,"asing":7913,"ĠGaza":7914,"itter":7915,"ĠKa":7916,"Ġhopeful":7917,"ĠSnow":7918,"Ġentitled":7919,"Ġaffecting":7920,"Ġeager":7921,"Ġcircle":7922,"Ġlaugh":7923,"ĠProsecutors":7924,"ĠDur":7925,"Ġbarriers":7926,"ĠPoll":7927,"oun":7928,"ĠPalm":7929,"chi":7930,"Ġsamples":7931,"Ġcompromise":7932,"atter":7933,"Ġenormous":7934,"Ġé":7935,"coming":7936,"ĠPharmaceutical":7937,"Ġrank":7938,"Let":7939,"Ġtransgender":7940,"ĠCloud":7941,"FO":7942,"ĠBor":7943,"Ġbonus":7944,"Ġordinary":7945,"ĠPres":7946,"ĠHIV":7947,"ires":7948,"OSE":7949,"Ġdancing":7950,"ĠHD":7951,"Ġversions":7952,"Ġ88":7953,"rate":7954,"Ġtackles":7955,"Ġknock":7956,"ĠEmma":7957,"Ġmotivated":7958,"ĠBennett":7959,"ĠBurn":7960,"Ġgrid":7961,"Ġembrace":7962,"ĠSpurs":7963,"Ġflows":7964,"ĠGer":7965,"Ġsponsored":7966,"Ġsurvival":7967,"ching":7968,"Ġ1995":7969,"Ġreward":7970,"Ġdepends":7971,"Ġpostseason":7972,"Ġloaded":7973,"Ġneutral":7974,"ĠPop":7975,"BL":7976,"Ġrevolution":7977,"ĠFreedom":7978,"Ġrecovering":7979,"Ġrequiring":7980,"ALL":7981,"ARE":7982,"Ġmini":7983,"lt":7984,"ĠFDA":7985,"Ġcarpet":7986,"ĠPrior":7987,"Ġadmission":7988,"ĠEver":7989,"ĠTribune":7990,"ĠRonaldo":7991,"Ġthick":7992,"Ġlanes":7993,"Ġ84":7994,"ĠMemphis":7995,"Ġopt":7996,"BO":7997,"Ġfaculty":7998,"ĠChad":7999,"ĠSUV":8000,"ĠHen":8001,"Ġeste":8002,"ĠHu":8003,"ĠAgriculture":8004,"store":8005,"ĠDrug":8006,"inter":8007,"Ġ1996":8008,"ident":8009,"Ġbackup":8010,"ĠHonda":8011,"ĠHope":8012,"oes":8013,"ums":8014,"amer":8015,"Ġbreath":8016,"Ġ110":8017,"Ġjoke":8018,"ĠAld":8019,"Ġwondering":8020,"ĠAssad":8021,"ĠRem":8022,"Ġfundraising":8023,"pot":8024,"è":8025,"Ġquestioning":8026,"Ġpent":8027,"ĠMoney":8028,"ĠMedicine":8029,"wick":8030,"ĠKnights":8031,"Ġbatting":8032,"ĠMos":8033,"Ġdesignated":8034,"isse":8035,"Ġspotlight":8036,"Ġlake":8037,"Ġcaution":8038,"Ġinmates":8039,"Ġlap":8040,"CE":8041,"ĠJavascript":8042,"ĠDeutsche":8043,"ĠFargo":8044,"Ġguaranteed":8045,"borough":8046,"Ġfunctions":8047,"ĠElementary":8048,"ĠChuck":8049,"Ġpitched":8050,"ĠKrist":8051,"Ġsteal":8052,"Ġchips":8053,"Ġalarm":8054,"Ġbeloved":8055,"scale":8056,"Ġassaulted":8057,"ĠPentagon":8058,"Ġtemporarily":8059,"Ġ93":8060,"Ġ>":8061,"ĠPortugal":8062,"ti":8063,"HL":8064,"Ġdecreased":8065,"Ġexistence":8066,"Ġisolated":8067,"Ġdeposit":8068,"Ġstudied":8069,"\")":8070,"Ġtrophy":8071,"ĠBrooks":8072,"Ġbattling":8073,"Ġweaker":8074,"ĠPrivate":8075,"ĠAccess":8076,"Ġvirtually":8077,"Ġshortage":8078,"Ġgaining":8079,"Ġbathroom":8080,"TON":8081,"Ġconcerning":8082,"Ġengineer":8083,"Ġbread":8084,"Ġdemonstrate":8085,"ĠDh":8086,"Ġhorses":8087,"Ġintersection":8088,"Ġcolors":8089,"Ġdelegation":8090,"Ġnotable":8091,"Ġwithdrawal":8092,"ĠDennis":8093,"Ġlocally":8094,"Ġcoastal":8095,"Ġcomply":8096,"ĠMoh":8097,"ĠAlbert":8098,"Ġclosest":8099,"ĠCITY":8100,"Ġ83":8101,"Ġcancelled":8102,"ĠðŁ":8103,"Ġsharply":8104,"RS":8105,"Ġproductivity":8106,"Ġbasket":8107,"SS":8108,"Ġadmit":8109,"ool":8110,"ination":8111,"ĠBB":8112,"Ġsur":8113,"ĠSteel":8114,"ĠTed":8115,"ĠPac":8116,"Ġpatterns":8117,"Ġlisting":8118,"Ġreplacing":8119,"ĠPradesh":8120,"Ġroots":8121,"Ġbroker":8122,"ĠWriting":8123,"Ġsued":8124,"Ġorganised":8125,"ĠThanksgiving":8126,"ĠNOT":8127,"Ġjournalism":8128,"uel":8129,"Ġkilometers":8130,"Ġhunt":8131,"berry":8132,"ĠMother":8133,"Ġlegitimate":8134,"Ġinput":8135,"ĠRel":8136,"ĠGuardian":8137,"Ar":8138,"Ġtransported":8139,"Ġbedroom":8140,"ashing":8141,"Ġbats":8142,"Ġcleaning":8143,"Ġwrapped":8144,"Pacific":8145,"Ġfence":8146,"Ġtestified":8147,"Ġ1994":8148,"Ġinterference":8149,"Ġmatching":8150,"Ġexpression":8151,"eta":8152,"ĠSpencer":8153,"Ġstrategist":8154,"who":8155,"Ġvictories":8156,"Ġ2022":8157,"Ġstakes":8158,"Ġbuses":8159,"ĠHousing":8160,"Ġeditorial":8161,"Ġ86":8162,"ĠBishop":8163,"Ġfrustrated":8164,"Ġappearing":8165,"http":8166,"IGHT":8167,"Ġmemo":8168,"Ġinsiders":8169,"Even":8170,"Ġclassroom":8171,"Ġchef":8172,"aining":8173,"].":8174,"ĠMcD":8175,"Ġ87":8176,"ĠPunjab":8177,"Ġancient":8178,"Ġresolved":8179,"Ġdying":8180,"Ġdestruction":8181,"Ġgoverning":8182,"Ġrestructuring":8183,"ĠPick":8184,"Ġmunicipal":8185,"Ġengines":8186,"ĠHudson":8187,"Æ":8188,"Ġrepeal":8189,"standing":8190,"Ġbound":8191,"ĠOS":8192,"ĠCommonwealth":8193,"Ġdescription":8194,"Ġhouseholds":8195,"Ġmal":8196,"Ġstopping":8197,"equ":8198,"Ġregulator":8199,"Ġcontaining":8200,"Ġremoving":8201,"Ġwithdraw":8202,"Ġburied":8203,"Ġlists":8204,"ĠGil":8205,"Ġlowered":8206,"Ġformally":8207,"ĠRound":8208,"asi":8209,"¥":8210,"lett":8211,"Ġprogressive":8212,"ĠFalcons":8213,"ĠRaw":8214,"gun":8215,"Ġcontributing":8216,"Ġhunting":8217,"Ġvalid":8218,"Ġexception":8219,"ĠPlayers":8220,"ĠTra":8221,"Ġracism":8222,"hing":8223,"chen":8224,"Ġdifferently":8225,"Ġchampionships":8226,"ĠEng":8227,"ĠNO":8228,"ĠAuto":8229,"ĠErdogan":8230,"iding":8231,"Ġwarming":8232,"Ġcivilian":8233,"ĠDam":8234,"Ġfantasy":8235,"ĠNav":8236,"itions":8237,"ĠDrew":8238,"ĠNancy":8239,"Ġtrapped":8240,"ĠRussians":8241,"ĠIC":8242,"Ġflexibility":8243,"ular":8244,"Ġviolated":8245,"ipped":8246,"Ġgarage":8247,"ĠDeep":8248,"Ġpraise":8249,"ĠLab":8250,"ĠPlayer":8251,"Ġjudicial":8252,"Ġdonate":8253,"Ġseparated":8254,"Ġreleases":8255,"nik":8256,"Ġexplanation":8257,"aph":8258,"Ġloyal":8259,"Ġstrongest":8260,"ĠShar":8261,"Ġrescued":8262,"Ġambitious":8263,"Ġclimb":8264,"Ġscared":8265,"Ġignored":8266,"cut":8267,"Ġstole":8268,"Ġweakness":8269,"ĠRidge":8270,"oa":8271,"LA":8272,"Ġdep":8273,"ĠPowell":8274,"Do":8275,"Ġprotein":8276,"Ġreiterated":8277,"ĠCox":8278,"aling":8279,"ĠUnlike":8280,"ĠKane":8281,"ĠMcConnell":8282,"Ġshowcase":8283,"Ġuniform":8284,"ower":8285,"Ġdiscover":8286,"stop":8287,"ipper":8288,"Ġtreatments":8289,"Ġgrocery":8290,"Ġsubscribers":8291,"lock":8292,"ple":8293,"Ġflew":8294,"ania":8295,"Ġstepping":8296,"ĠSoviet":8297,"Ġconsultant":8298,"ags":8299,"ĠLim":8300,"Ġ91":8301,"ĠCode":8302,"ports":8303,"box":8304,"Ġlakh":8305,"Ġreminder":8306,"ym":8307,"ĠTravis":8308,"Ġpure":8309,"now":8310,"ĠVR":8311,"Ġachievement":8312,"ĠEmirates":8313,"ĠThunder":8314,"Ġmerely":8315,"ĠCa":8316,"ĠAverage":8317,"ĠDa":8318,"Ġtopped":8319,"ĠCurry":8320,"Ġchemicals":8321,"Ġamendment":8322,"ĠBorder":8323,"ĠBat":8324,"Ġ130":8325,"Ġprogramming":8326,"Ġtele":8327,"ĠKarl":8328,"Ġaveraged":8329,"ĠSpe":8330,"world":8331,"PG":8332,"Ġfights":8333,"ĠPrincess":8334,"ĠCIA":8335,"ĠAbe":8336,"Ġacted":8337,"only":8338,"Ġinsight":8339,"Ġathlete":8340,"ĠTar":8341,"commerce":8342,"Ġaveraging":8343,"cr":8344,"ĠPalestinians":8345,"Well":8346,"Ġbull":8347,"Ġchoosing":8348,"Ġsurely":8349,"ĠSecret":8350,"Ġteammate":8351,"ĠAmendment":8352,"ĠBirmingham":8353,"Ġexcitement":8354,"strong":8355,"ĠSin":8356,"Ġdamages":8357,"rated":8358,"Ġrankings":8359,"Ġconservation":8360,"home":8361,"erm":8362,"ield":8363,"Ġdisorder":8364,"acher":8365,"Ġnaturally":8366,"atur":8367,"Ġpackages":8368,"Ġapproaches":8369,"icks":8370,"ourn":8371,"Ġodd":8372,"Ġshore":8373,"ĠBeing":8374,"Ġmagic":8375,"Ġtourist":8376,"largest":8377,"Ġwhenever":8378,"Ġlenders":8379,"Ġegg":8380,"ĠChair":8381,"Ġlets":8382,"Ġwarnings":8383,"į":8384,"Ġpol":8385,"Ġdrag":8386,"ĠAmb":8387,"ĠCle":8388,"ĠLouisville":8389,"ĠShaw":8390,"lands":8391,"Ġanthem":8392,"ĠTrail":8393,"Ġaccepting":8394,"anger":8395,"good":8396,"ĠBroad":8397,"ĠLebanon":8398,"ĠMillion":8399,"ĠHenderson":8400,"Ġwh":8401,"Ġdust":8402,"Ġ92":8403,"ĠMend":8404,"Ġchecking":8405,"ĠCow":8406,"sized":8407,"Ġautomatic":8408,"Ġcelebrates":8409,"Ġarena":8410,"Ġfinger":8411,"ĠHarvard":8412,"Ġfrustration":8413,"Ġstrict":8414,"Ġpreserve":8415,"Ġsleeping":8416,"Ġconverted":8417,"Ġinsights":8418,"Ġtra":8419,"Ġjailed":8420,"Ġchamber":8421,"Ġtoxic":8422,"ading":8423,"ĠTriple":8424,"grade":8425,"ĠRest":8426,"ĠHoly":8427,"oper":8428,"Ġdesk":8429,"Ġmatchup":8430,"Ġsteep":8431,"ĠGot":8432,"lay":8433,"ĠCab":8434,"aked":8435,"ĠFoster":8436,"Ġrunners":8437,"ĠNA":8438,"Ġdestroy":8439,"Ġsupportive":8440,"ĠRacing":8441,"Ġtrademark":8442,"Ġjacket":8443,"Ġhorror":8444,"ĠAle":8445,"Ġass":8446,"Ġsch":8447,"abb":8448,"Ġplanes":8449,"Ġimpression":8450,"ĠEarly":8451,"ĠPompe":8452,"Ġking":8453,"Ġsilent":8454,"ĠCuba":8455,"Ġmedication":8456,"ences":8457,"list":8458,"ailing":8459,"WA":8460,"ella":8461,"Ġprop":8462,"Ġhalt":8463,"Ġslowing":8464,"ĠFoods":8465,"Ġanonymous":8466,"kh":8467,"Ġtraveled":8468,"Ġcommunicate":8469,"Ġter":8470,"ĠHockey":8471,"ĠRobin":8472,"Ġswept":8473,"Ġclinic":8474,"ration":8475,"len":8476,"Ġau":8477,"Ġcareers":8478,"ĠSound":8479,"Ġaddresses":8480,"China":8481,"ĠSr":8482,"Ġexhibit":8483,"ĠMotors":8484,"ĠIl":8485,"Ġinstall":8486,"ĠOkay":8487,"Ġ>>":8488,"hood":8489,"stand":8490,"Ġaudit":8491,"Ġcake":8492,"Ġflames":8493,"bel":8494,"ĠMust":8495,"ĠManafort":8496,"Ġcommodity":8497,"night":8498,"ĠRoom":8499,"ĠLanka":8500,"Ġcommander":8501,"ln":8502,"Ġdatabase":8503,"ĠSet":8504,"Ġgraduated":8505,"ĠTarget":8506,"Ġoutbreak":8507,"rou":8508,"ĠPope":8509,"ĠEqu":8510,"Ġpolling":8511,"Ġdig":8512,"Ġbrutal":8513,"ĠBarn":8514,"Ġdefinition":8515,"Ġpit":8516,"Ġpickup":8517,"ĠBitcoin":8518,"ĠReid":8519,"Ġloving":8520,"ĠHerald":8521,"ĠCanadians":8522,"Ġneighbor":8523,"Ġdies":8524,"ione":8525,"ĠRef":8526,"big":8527,"Ġguards":8528,"including":8529,"ente":8530,"Ġpartially":8531,"Image":8532,"Ġbulk":8533,"Ġslot":8534,"ĠNorthwest":8535,"ĠBarclays":8536,"Ġairlines":8537,"iver":8538,"isi":8539,"Ġsubsidiary":8540,"Ġcont":8541,"ĠDaniels":8542,"Ġscript":8543,"Ġunfair":8544,"Ġscreens":8545,"Ġprof":8546,"ĠIrma":8547,"Ġ1992":8548,"Ġmandatory":8549,"ĠSant":8550,"Ġsuspicion":8551,"NES":8552,"ĠLauren":8553,"igen":8554,"Ġprevention":8555,"Ġtension":8556,"ema":8557,"Ġtasks":8558,"Ġshake":8559,"Ġexplosive":8560,"Ġaffects":8561,"Ġmum":8562,"ĠDog":8563,"rer":8564,"Ġopted":8565,"Ġtrio":8566,"Ġlesson":8567,"Ġautomotive":8568,"where":8569,"ĠMontgomery":8570,"Ġcouples":8571,"Ġ89":8572,"AF":8573,"Ġinfo":8574,"ĠForm":8575,"Ġspectrum":8576,"Ġbands":8577,"Ġokay":8578,"Ġstroke":8579,"ĠNetanyahu":8580,"Ġwealthy":8581,"ĠAround":8582,"ĠGlenn":8583,"sec":8584,"there":8585,"ickets":8586,"ĠBudget":8587,"ĠBMW":8588,"Ġflagship":8589,"rier":8590,"Ġpodcast":8591,"Ġpursuing":8592,"Ġpos":8593,"ĠIslands":8594,"ĠUrban":8595,"page":8596,"Ġemotions":8597,"ided":8598,"Ġdividends":8599,"Ġboom":8600,"Ġaccusing":8601,"ird":8602,"ĠNam":8603,"ava":8604,"Ġwishes":8605,"ĠNy":8606,"ĠStanford":8607,"Ġcriteria":8608,"ĠJews":8609,"Ġengineers":8610,"Ġaccuracy":8611,"Ġdisplays":8612,"Ġdeserves":8613,"ridge":8614,"omm":8615,"aur":8616,"Ġdramatically":8617,"Ġunity":8618,"speed":8619,"Ġdeclining":8620,"Ġpermits":8621,"ĠKn":8622,"Ġconsulting":8623,"aux":8624,"ATE":8625,"ĠWat":8626,"ĠEditor":8627,"sy":8628,"urn":8629,"ĠUsing":8630,"asc":8631,"ital":8632,"Ġcre":8633,"quality":8634,"Ġce":8635,"Ġenemy":8636,"Ġoffence":8637,"icket":8638,"ĠDick":8639,"ĠTH":8640,"ĠChampionships":8641,"Ġoverwhelming":8642,"rib":8643,"ku":8644,"rap":8645,"Ġhomer":8646,"acion":8647,"member":8648,"erv":8649,"aney":8650,"MB":8651,"eded":8652,"Ġpunishment":8653,"Ġnegotiate":8654,"ĠFile":8655,"stream":8656,"ĠHur":8657,"Ġnose":8658,"ĠFab":8659,"iter":8660,"Ġpainful":8661,"ITY":8662,"eren":8663,"Ġcollecting":8664,"Additional":8665,"Ġentrepreneurs":8666,"bal":8667,"Ġexploring":8668,"Ġguitar":8669,"Ġpartnerships":8670,"Ġfurniture":8671,"Ġauthorized":8672,"Ġeasing":8673,"shirt":8674,"ĠGross":8675,"Ġpolitician":8676,"ĠSimpson":8677,"Ġdrone":8678,"ĠKatie":8679,"Ġprofitability":8680,"ĠNHS":8681,"ĠSierra":8682,"ĠNorway":8683,"ASHINGTON":8684,"ific":8685,"Ġcondemned":8686,"team":8687,"ĠNebraska":8688,"Ġthrilled":8689,"iller":8690,"Ġpatrol":8691,"ĠWR":8692,"orm":8693,"Ġspectacular":8694,"ĠKnight":8695,"ĠTravel":8696,"nam":8697,"Ġmuscle":8698,"ĠRain":8699,"ĠColombia":8700,"Ġnursing":8701,"Ġmigration":8702,"ĠMitch":8703,"Ġreleasing":8704,"ĠBesides":8705,"ĠMul":8706,"Ġheadline":8707,"Ġcontemporary":8708,"Ġdev":8709,"ĠChan":8710,"Ġindicates":8711,"ĠAp":8712,"ĠLt":8713,"ĠMarvel":8714,"Ġremembered":8715,"®":8716,"ĠForces":8717,"ĠColin":8718,"ĠGabriel":8719,"Ġobjects":8720,"ĠRHP":8721,"kar":8722,"ĠKo":8723,"Ġsignals":8724,"Ġinner":8725,"real":8726,"RO":8727,"Ġromantic":8728,"cat":8729,"ĠKel":8730,"Ġgut":8731,"ĠBoys":8732,"Ġyoungest":8733,"ĠCeltics":8734,"Ġslated":8735,"Ġremind":8736,"Ġproductive":8737,"set":8738,"Co":8739,"ĠBailey":8740,"Ġrenewable":8741,"ĠCarson":8742,"ĠDj":8743,"ĠKos":8744,"Ġurge":8745,"Ġfin":8746,"Ġpursuit":8747,"ĠCON":8748,"ĠChapter":8749,"Ġpal":8750,"Ġgate":8751,"ĠPackers":8752,"ĠReports":8753,"ĠRugby":8754,"ĠMasters":8755,"MO":8756,"Ġ98":8757,"Ġcatches":8758,"ĠAgreement":8759,"ĠTillerson":8760,"ĠIce":8761,"Ġrumors":8762,"ĠLeonard":8763,"ĠDolphins":8764,"ĠLP":8765,"top":8766,"ĠCrist":8767,"ĠHon":8768,"Ġblaze":8769,"Ġrhetoric":8770,"ands":8771,"ady":8772,"David":8773,"igh":8774,"Ġbuzz":8775,"ĠStrong":8776,"Ġshocking":8777,"ĠRh":8778,"Ġnegotiating":8779,"Ġtender":8780,"ĠJohnny":8781,"ĠMario":8782,"Ġ97":8783,"ĠHeritage":8784,"Ġexists":8785,"Ġprayers":8786,"Ġlengthy":8787,"Ġsafer":8788,"ĠHalloween":8789,"ĠJared":8790,"ĠConnect":8791,"Ġbump":8792,"Ġstrain":8793,"Ġfilling":8794,"Ġtrauma":8795,"Ġcompleting":8796,"cht":8797,"Ġkillings":8798,"anne":8799,"GE":8800,"ĠRescue":8801,"Ġdealers":8802,"Ġlocals":8803,"ĠVictor":8804,"Ġtragic":8805,"Ġdelivers":8806,"orts":8807,"Ġrugby":8808,"Ġinstallation":8809,"asa":8810,"ĠBart":8811,"Ġjournal":8812,"school":8813,"ĠCome":8814,"ĠVeterans":8815,"Sun":8816,"Ġcrowds":8817,"Ġtransparent":8818,"Ġimplications":8819,"ĠHuawei":8820,"sex":8821,"Ġrallied":8822,"Ġresponses":8823,"Ġdebris":8824,"Ġconvention":8825,"Ġmothers":8826,"BE":8827,"ĠRoute":8828,"Ġrebel":8829,"ĠEmmanuel":8830,"aster":8831,"Ġunderstands":8832,"pound":8833,"ĠCastle":8834,"Ġ2021":8835,"rik":8836,"ĠGR":8837,"Ġconvince":8838,"ault":8839,"Ġpassionate":8840,"ĠSciences":8841,"Ġarrives":8842,"idad":8843,"Ġcelebrities":8844,"ends":8845,"ĠFans":8846,"Ġdish":8847,"ĠCorps":8848,"hat":8849,"Ġemployer":8850,"ĠHy":8851,"Ġpowered":8852,"Ġgrandmother":8853,"ĠFL":8854,"oured":8855,"VE":8856,"ĠInst":8857,"ĠPerez":8858,"Ġtune":8859,"Ġcitizenship":8860,"Ġignore":8861,"Ġdoubles":8862,"IB":8863,"Ġprogrammes":8864,"inda":8865,"Ġentities":8866,"ĠInterior":8867,"Ġprompting":8868,"Ġwire":8869,"Ġtheatre":8870,"%)":8871,"Ġheels":8872,"ĠJu":8873,"Ġdeposits":8874,"Ġtrash":8875,"mond":8876,"she":8877,"iana":8878,"Ġislands":8879,"ĠTommy":8880,"Ġpub":8881,"Ġdiscipline":8882,"ĠSW":8883,"Ġmusicians":8884,"Ġembassy":8885,"ĠQB":8886,"hander":8887,"UES":8888,"ĠFerguson":8889,"Ġblocking":8890,"ahn":8891,"Ġfines":8892,"Ġtactics":8893,"Ġbullet":8894,"Ġequipped":8895,"Ġescaped":8896,"ĠSil":8897,"ĠPack":8898,"ĠAthletic":8899,"ĠMic":8900,"ĠDoes":8901,"ĠCarr":8902,"ĠChargers":8903,"ĠKyl":8904,"Ġzones":8905,"µ":8906,"iki":8907,"Ġgreatly":8908,"ĠMD":8909,"Ġimmigrant":8910,"ĠConstruction":8911,"ĠBorn":8912,"iment":8913,"ĠWade":8914,"Ġvisa":8915,"Ġgenuine":8916,"Ġelectronics":8917,"ĠSat":8918,"Ġsponsors":8919,"ĠMontana":8920,"Ġspell":8921,"ĠSachs":8922,"ĠEt":8923,"Ġfoster":8924,"Ġlocker":8925,"Ġexplaining":8926,"ĠAge":8927,"Ġgunman":8928,"Ġsauce":8929,"Ġcry":8930,"Ġstimulus":8931,"Ġarray":8932,"Ġcompare":8933,"Ġboats":8934,"Ġext":8935,"iders":8936,"ĠAst":8937,"ĠParks":8938,"ester":8939,"Ġ94":8940,"Ġrelating":8941,"Ġvegetables":8942,"Ġaccountable":8943,"Ġhyper":8944,"ĠWim":8945,"Ġnewest":8946,"ĠRome":8947,"ĠChancellor":8948,"CBS":8949,"Ġbusinessman":8950,"ĠDelaware":8951,"Ġlands":8952,"court":8953,"aria":8954,"Ġapproaching":8955,"cker":8956,"ĠSalt":8957,"ĠMak":8958,"Ġtreating":8959,"Ġsubsequently":8960,"ĠEll":8961,"xton":8962,"Ġ180":8963,"Ġdetermination":8964,"ĠSalman":8965,"ĠJoel":8966,"Ġclassified":8967,"Ġspan":8968,"Ġearthquake":8969,"ranked":8970,"Ġ96":8971,"ĠTiger":8972,"Ġadvocacy":8973,"mit":8974,"Ġcolleges":8975,"ĠYeah":8976,"ĠCaptain":8977,"Ġorange":8978,"Ġprojections":8979,"Ġelectrical":8980,"ĠMA":8981,"olog":8982,"ĠNewcastle":8983,"oppers":8984,"Ġrepresentation":8985,"Ġlawsuits":8986,"just":8987,"aced":8988,"ĠRace":8989,"ĠAqu":8990,"ĠBills":8991,"Ġexclusively":8992,"ĠProfile":8993,"Ġhometown":8994,"ĠStan":8995,"Ġstarring":8996,"Ġdeciding":8997,"ĠRating":8998,"ĠMedicare":8999,"ĠTransport":9000,"Ġmystery":9001,"ĠTa":9002,"ĠPad":9003,"ĠSwedish":9004,"ĠCarroll":9005,"about":9006,"Ġtorn":9007,"Ġnurse":9008,"NE":9009,"Ġwaited":9010,"ĠJeffrey":9011,"ĠUntil":9012,"Ġbone":9013,"ĠBobby":9014,"Ġpronounced":9015,"Ġpharmaceutical":9016,"ĠGallery":9017,"ĠMatch":9018,"Ġeconomists":9019,"ĠMarketing":9020,"face":9021,"ĠPetroleum":9022,"ories":9023,"ĠMets":9024,"ĠCore":9025,"billion":9026,"Ġexamination":9027,"ĠPorter":9028,"2016":9029,"Ġgolden":9030,"Ġsem":9031,"ĠDuterte":9032,"ĠJefferson":9033,"ĠTehran":9034,"ĠLeicester":9035,"ĠDA":9036,"Ġadapt":9037,"ĠDame":9038,"ĠRic":9039,"Ġunchanged":9040,"ect":9041,"Ġsections":9042,"kg":9043,"igned":9044,"Ġfilings":9045,"Ġreact":9046,"Ġurgent":9047,"Ġvessels":9048,"Ġspark":9049,"Ġbutter":9050,"ĠCons":9051,"Ġstating":9052,"Ġcorporations":9053,"ĠHus":9054,"Ġdamaging":9055,"raw":9056,"Ġequality":9057,"Two":9058,"ĠMills":9059,"iu":9060,"Ġobligation":9061,"ĠBrook":9062,"arian":9063,"Re":9064,"Ġphotographs":9065,"Ġepic":9066,"ĠStudent":9067,"ĠTherefore":9068,"Ġgod":9069,"ĠFILE":9070,"iqu":9071,"Ġdescribing":9072,"Ġproceed":9073,"Ġcas":9074,"ĠKat":9075,"ĠBra":9076,"Ġadequate":9077,"Ġpassage":9078,"Ġthanked":9079,"USA":9080,"ĠNeither":9081,"ĠLegislature":9082,"Ġfinances":9083,"Ġinst":9084,"ĵ":9085,"ĠAngels":9086,"Ġvet":9087,"ĠDead":9088,"Ex":9089,"Ġkicks":9090,"force":9091,"Ġsoy":9092,"ĠWindsor":9093,"Ġenhanced":9094,"Ġ1993":9095,"ĠCzech":9096,"Ġgradually":9097,"ĠMagic":9098,"Ġshadow":9099,"Ġneighborhoods":9100,"ĠRivers":9101,"Ġrapper":9102,"ĠGirl":9103,"ĠRot":9104,"Ġcrackdown":9105,"fish":9106,"Ġpreventing":9107,"Ġproduces":9108,"ĠMi":9109,"Ġnotified":9110,"Ġunderground":9111,"WE":9112,"Ġadmits":9113,"Ġboxing":9114,"Ġrefer":9115,"Ġcommitments":9116,"ĠWoman":9117,"Ġdenies":9118,"col":9119,"ĠSide":9120,"Ġambulance":9121,"ĠRodgers":9122,"Ġaftermath":9123,"Ġdeck":9124,"irmed":9125,"Ġerrors":9126,"ĠConvention":9127,"Ġcurb":9128,"ĠShop":9129,"ĠThai":9130,"Ġma":9131,"Ġrespected":9132,"ĠMVP":9133,"Ġborrowing":9134,"Ġcruise":9135,"ĠSure":9136,"Ġsentencing":9137,"ĠObamacare":9138,"ĠIr":9139,"ĠSale":9140,"ĠPete":9141,"Ġopenly":9142,"Ġstartup":9143,"rock":9144,"Ġcargo":9145,"Ġtelecom":9146,"ĠDownload":9147,"Ġextending":9148,"ĠCurrent":9149,"Ġcompetitions":9150,"ĠKids":9151,"Ġshy":9152,"ĠKerry":9153,"ĠNever":9154,"ĠDevils":9155,"Ġprim":9156,"Con":9157,"Ġcurve":9158,"Ġassumed":9159,"Ġadjust":9160,"Ġimmune":9161,"UE":9162,"ĠUr":9163,"Ġconventional":9164,"Ġgrandchildren":9165,"ĠBol":9166,"Ad":9167,"ĠMaduro":9168,"fi":9169,"ĠUAE":9170,"ĠOrgan":9171,"Ġindicating":9172,"iem":9173,"ĠAgainst":9174,"ĠAmbassador":9175,"ĠSeoul":9176,"Ġcriminals":9177,"how":9178,"put":9179,"Ġreminded":9180,"Ġparked":9181,"lich":9182,"Ġcontinent":9183,"Ġmatched":9184,"ĠNicole":9185,"Ġgenetic":9186,"Ġhumanity":9187,"ĠTem":9188,"Ġindicator":9189,"Ġvessel":9190,"Ġdefendant":9191,"ĠGriffin":9192,"jan":9193,"Ġvend":9194,"boro":9195,"Ġbrokerage":9196,"ĠFall":9197,"Ġmere":9198,"VILLE":9199,"Ġlasted":9200,"ĠMind":9201,"Ġpatch":9202,"ĠInsider":9203,"ĠComm":9204,"Ġtechnique":9205,"ĠIM":9206,"ĠCavaliers":9207,"Ġshame":9208,"Ġmil":9209,"oot":9210,"irt":9211,"Ġcop":9212,"ĠLeon":9213,"Ġfrozen":9214,"Ġslip":9215,"pton":9216,"Ġpanels":9217,"Ġpitching":9218,"Ġleather":9219,"ĠLogan":9220,"ĠNearly":9221,"urch":9222,"Ġinstructions":9223,"ĠRow":9224,"ĠKurdish":9225,"this":9226,"Ġlegendary":9227,"su":9228,"Ġstabbed":9229,"sters":9230,"Ġteenage":9231,"def":9232,"Ġoversight":9233,"Ġvolatile":9234,"Ġtransmission":9235,"ĠSgt":9236,"ĠIndigenous":9237,"ĠOxford":9238,"ĠCasey":9239,"Ġcor":9240,"Ġsalaries":9241,"Ġsponsor":9242,"Ġprescription":9243,"mat":9244,"ĠLeeds":9245,"ĠPakistani":9246,"Ġevil":9247,"Ġtables":9248,"ĠAbdul":9249,"Ġexpectation":9250,"Ġlegislature":9251,"ĠLin":9252,"¹":9253,"Ġcontractor":9254,"Ġshifting":9255,"Ġgenerous":9256,"ĠEddie":9257,"Ġpuck":9258,"utt":9259,"Ġdubbed":9260,"Ġnowhere":9261,"Ġbetting":9262,"Ġdisclose":9263,"Ĥ":9264,"ĠFashion":9265,"ĠHarper":9266,"handed":9267,"isha":9268,"ĠReds":9269,"Ġachievements":9270,"ume":9271,"Ġshootings":9272,"Ġadvisers":9273,"ĠEaster":9274,"Ġinternationally":9275,"ĠWi":9276,"ĠGandhi":9277,"ĠChristians":9278,"Ġrecruiting":9279,"Ġexperiment":9280,"Ġsol":9281,"Ġdifficulties":9282,"Ġinfluential":9283,"Ġhybrid":9284,"Ġformation":9285,"ĠBoulevard":9286,"Ġflags":9287,"Ġformula":9288,"front":9289,"Ġinclusion":9290,"ĠNone":9291,"ICE":9292,"Ġfilming":9293,"ĠLou":9294,"ĠReynolds":9295,"Ġpump":9296,"Ġexceptional":9297,"ANG":9298,"ĠCorporate":9299,"SAN":9300,"ĠHealthcare":9301,"ĠUkrainian":9302,"aron":9303,"Ġpants":9304,"Ġdrops":9305,"ete":9306,"ĠStudies":9307,"Ġwounds":9308,"END":9309,"Ġshower":9310,"Ġreviewing":9311,"ĠGreater":9312,"Ġ»":9313,"itors":9314,"alled":9315,"Ġsqu":9316,"ĠRonald":9317,"ĠInv":9318,"Ġtougher":9319,"Ġbalanced":9320,"Ġlined":9321,"Ġprinciple":9322,"Ġ1950":9323,"Ġleak":9324,"Be":9325,"Ġcircuit":9326,"Ġunfortunate":9327,"ĠGran":9328,"ĠFish":9329,"Ġfriendship":9330,"asp":9331,"OO":9332,"Ġobligations":9333,"Ġcoup":9334,"OK":9335,"Ġbreakdown":9336,"Ġhook":9337,"Ġresearcher":9338,"inated":9339,"ĠMarie":9340,"ĠGab":9341,"ĠWA":9342,"quez":9343,"General":9344,"ĠSwift":9345,"Ġgust":9346,"ĠCarol":9347,"ĠCentury":9348,"ĠOPEC":9349,"ĠRd":9350,"ĠCop":9351,"Ġsubjects":9352,"ĠComments":9353,"ases":9354,"Ġrelation":9355,"ĠEnvironment":9356,"ı":9357,"Ġgasoline":9358,"ĠLog":9359,"Ġicon":9360,"Ġprofitable":9361,"ĠRetail":9362,"ANC":9363,"Ġappealing":9364,"Ġvillages":9365,"Ġpizza":9366,"Ġmall":9367,"Ġtower":9368,"ĠLinda":9369,"Ġaccomplished":9370,"Ġpod":9371,"Ġleaked":9372,"ĠWed":9373,"Ġmer":9374,"Ġopposing":9375,"!'":9376,"Ġstomach":9377,"Ġrevealing":9378,"Ġho":9379,"DF":9380,"ĠSterling":9381,"Ġsolely":9382,"Ġpres":9383,"ĠCy":9384,"ĠLatest":9385,"ĠPitt":9386,"ĠThink":9387,"Ġcapability":9388,"aled":9389,"Ġexecuted":9390,"alling":9391,"ĠSilva":9392,"Ġrestricted":9393,"Ġdeclaration":9394,"Ġkilometres":9395,"rol":9396,"Ġidentifying":9397,"Ġdonors":9398,"vent":9399,"Ġcostly":9400,"ense":9401,"ĠSeeking":9402,"OURCE":9403,"iving":9404,"Ġplacing":9405,"tech":9406,"Ġbottles":9407,"writer":9408,"ĠSeahawks":9409,"oming":9410,"ĠArthur":9411,"ously":9412,"bin":9413,"ĠVa":9414,"Ġbias":9415,"Ġliability":9416,"ift":9417,"rak":9418,"aves":9419,"Ġcautious":9420,"ĠPrize":9421,"iley":9422,"ĠSharma":9423,"global":9424,"Ġwars":9425,"sm":9426,"ĠRemember":9427,"wind":9428,"ĠRichardson":9429,"ĠSum":9430,"ĠVincent":9431,"ĠRice":9432,"inf":9433,"Ġconsultation":9434,"range":9435,"Ġbacteria":9436,"Ġarchitecture":9437,"Ġpole":9438,"ĠMach":9439,"Ġcattle":9440,"Ġabused":9441,"being":9442,"ĠHERE":9443,"Ġfame":9444,"Ġhearings":9445,"ĠBrit":9446,"Ġjoins":9447,"ĠMcGregor":9448,"Ġoppose":9449,"Ġcheer":9450,"itting":9451,"imes":9452,"Ġusage":9453,"Ġstint":9454,"Ġoutlet":9455,"Ġshoppers":9456,"ĠBaptist":9457,"Ġinappropriate":9458,"ĠALSO":9459,"Ġstealing":9460,"Ġpledge":9461,"ĠRan":9462,"Ġphotographer":9463,"Ġprevented":9464,"Ġ01":9465,"ĠEngineering":9466,"ĠProducts":9467,"Ġuniverse":9468,"ĠMcCarthy":9469,"¿":9470,"graded":9471,"Ġinspection":9472,"Ġind":9473,"Fi":9474,"aren":9475,"Ġprotections":9476,"Ġsorts":9477,"ĠWorks":9478,"Ġbillionaire":9479,"ĠGay":9480,"ĠiPad":9481,"IX":9482,"Ġdefendants":9483,"band":9484,"Ġfarms":9485,"Ġhom":9486,"gal":9487,"iant":9488,"Ġnortheast":9489,"ĠJoint":9490,"Ġcanceled":9491,"Ġtoys":9492,"Ġrein":9493,"ĠTumblr":9494,"pees":9495,"ĠAut":9496,"Police":9497,"Ġaide":9498,"Ġachieving":9499,"Ġmund":9500,"ĠCommercial":9501,"first":9502,"Ġanticipate":9503,"iac":9504,"Ġprobation":9505,"hem":9506,"Ġports":9507,"ĠKer":9508,"Ġsupplier":9509,"ĠFather":9510,"ĠAnti":9511,"ashed":9512,"ĠTable":9513,"bledon":9514,"Ġunf":9515,"ĠRash":9516,"ĠLeBron":9517,"Car":9518,"bu":9519,"ĠDerek":9520,"Ġaccounted":9521,"ĠPri":9522,"nings":9523,"Ġreceives":9524,"lev":9525,"Ġbilateral":9526,"ĠList":9527,"ĠLG":9528,"ĠJazz":9529,"Ġrestored":9530,"Ġbattles":9531,"ials":9532,"Ġoccupied":9533,"Ġrepairs":9534,"Ġradar":9535,"ĠMLB":9536,"ĠNC":9537,"Ġflexible":9538,"ĠCommand":9539,"Ġcoat":9540,"ĠVir":9541,"ĠColts":9542,"ĠBC":9543,"Ġtwin":9544,"Ġprisoners":9545,"Ġslowed":9546,"hop":9547,"ĠInn":9548,"Ġconflicts":9549,"Ġmeasured":9550,"Ġautonomous":9551,"ĠBow":9552,"Ġdisc":9553,"inson":9554,"ĠSche":9555,"aire":9556,"ĠSU":9557,"ĠPeterson":9558,"Ġdrafted":9559,"ĠPelosi":9560,"ĠSoon":9561,"Ġmechanism":9562,"Ġaccountability":9563,"ĠNortheast":9564,"Ġfo":9565,"Ġanalytics":9566,"ĠEverything":9567,"Ġperceived":9568,"bers":9569,"Ġcelebrations":9570,"Ġinstruments":9571,"Ġstrip":9572,"ĠJuventus":9573,"Ġunfortunately":9574,"ĠGA":9575,"Ġwrestling":9576,"Ġstatue":9577,"vis":9578,"five":9579,"Ġmarine":9580,"ĠSamuel":9581,"Ġresponsibilities":9582,"hill":9583,"Ġrecruit":9584,"Ġreferee":9585,"ĠRail":9586,"ĠEagle":9587,"ĠCongressional":9588,"Ġbreathing":9589,"Ġbass":9590,"hit":9591,"Ġspreading":9592,"Ġevacuated":9593,"Ġintellectual":9594,"Ġsovereign":9595,"ocked":9596,"Ġslammed":9597,"Ġformerly":9598,"Ġarch":9599,"Ġdifficulty":9600,"ĠAFC":9601,"ĠFresh":9602,"Ġinvite":9603,"oner":9604,"ĠMich":9605,"Ġpitches":9606,"stock":9607,"Ġinitiated":9608,"ĠKu":9609,"ĠFlorence":9610,"yd":9611,"ĠFast":9612,"Ġmusician":9613,"ĠChile":9614,"anga":9615,"Ġdairy":9616,"Ġcontractors":9617,"ador":9618,"ĠPlanning":9619,"Ġultra":9620,"Ġprayer":9621,"Ġsuggestions":9622,"ĠEk":9623,"Ġrandom":9624,"ĠSullivan":9625,"Ġsensor":9626,"Ġhomicide":9627,"ĠIncome":9628,"Ġsettings":9629,"Ġacknowledge":9630,"ĠStay":9631,"Ġterminal":9632,"Ġ1991":9633,"West":9634,"hard":9635,"arc":9636,"Ġcombine":9637,"Ġprivately":9638,"Ġbarrier":9639,"Ġmedian":9640,"Ġwhereas":9641,"ĠTitans":9642,"Ġincentives":9643,"Ġhistorically":9644,"Ġindictment":9645,"Ġhiding":9646,"ĠPDT":9647,"Ġrebuild":9648,"hol":9649,"Ġpour":9650,"Ġairports":9651,"ĠEdinburgh":9652,"Ġappoint":9653,"ĠJul":9654,"Ġconfusion":9655,"Ġdam":9656,"ork":9657,"Ġcalculated":9658,"Ġhood":9659,"ĠTemple":9660,"ĠYorkshire":9661,"EP":9662,"ented":9663,"Ġapology":9664,"awi":9665,"Ġfacilitate":9666,"ĠSheffield":9667,"Ġrides":9668,"Ġcompelling":9669,"ĠGonzalez":9670,"roll":9671,"ONG":9672,"UP":9673,"ĠAj":9674,"pen":9675,"ĠVar":9676,"ĠIPO":9677,"ĠAnimal":9678,"Ġshifted":9679,"Ġ140":9680,"Ġtobacco":9681,"El":9682,"ild":9683,"Ġuncertain":9684,"Un":9685,"Ġcaps":9686,"Ġrecreational":9687,"ĠTu":9688,"Ġenc":9689,"More":9690,"iko":9691,"ĠEverton":9692,"ĠWalk":9693,"Ġmurdered":9694,"Ġpur":9695,"Ġdivisions":9696,"ivo":9697,"Ġfarming":9698,"Ġcourage":9699,"ped":9700,"Ġcrying":9701,"Ġattributed":9702,"ée":9703,"Ġimplementing":9704,"ĠWang":9705,"Ġspeeds":9706,"alk":9707,"aming":9708,"eries":9709,"Ġavoided":9710,"ĠMessi":9711,"Ġconsiderable":9712,"rt":9713,"Ġinauguration":9714,"ĠPH":9715,"Ġsoldier":9716,"Ġore":9717,"ollywood":9718,"otive":9719,"ĠAuburn":9720,"ĠSav":9721,"ĠPut":9722,"Ġemphasis":9723,"Ġaf":9724,"owed":9725,"Ġdiagnosis":9726,"Ġcart":9727,"Ġassisted":9728,"ĠOrder":9729,"ĠEstate":9730,"Ġintends":9731,"ĠCommon":9732,"Ġadventure":9733,"Ġbeliefs":9734,"Ġlasting":9735,"cel":9736,"Ġdeployment":9737,"tra":9738,"ĠStories":9739,"Ġquote":9740,"Ġfeared":9741,"Ġconvenience":9742,"Ġoptimism":9743,"Ġscientist":9744,"ĠEnterprise":9745,"ĠRex":9746,"ĠFel":9747,"Ġposes":9748,"Ġroot":9749,"Ġevacuation":9750,"Ġpresidents":9751,"ĠRather":9752,"Ġgrave":9753,"ĠHeights":9754,"Ġjumping":9755,"driven":9756,"Ġaluminum":9757,"Ġholders":9758,"Ġboot":9759,"iber":9760,"Ġprecious":9761,"uation":9762,"FP":9763,"uses":9764,"Ġcommentary":9765,"Ġadvances":9766,"ĠNissan":9767,"Ġbronze":9768,"Ġinspire":9769,"Ġstarters":9770,"ĠEvan":9771,"rah":9772,"body":9773,"Ġcrops":9774,"Ġseeds":9775,"Ġharsh":9776,"ĠHomeland":9777,"Ġenabled":9778,"ological":9779,"Ġworkshop":9780,"Ġchains":9781,"amps":9782,"Ġamongst":9783,"ĠBear":9784,"Ġcertified":9785,"ĠJulie":9786,"Ġmountains":9787,"VA":9788,"Ġfed":9789,"Ġbuyer":9790,"ahl":9791,"ĠBos":9792,"ĠCrystal":9793,"Ġquest":9794,"ĠStein":9795,"Ġacceptable":9796,"Ġunbeaten":9797,"iring":9798,"ural":9799,"Ġuncomfortable":9800,"Ġpartial":9801,"Ġsacrifice":9802,"ĠGrande":9803,"Ġarrangement":9804,"Ġpackaging":9805,"screen":9806,"Ġmirror":9807,"Ġsweep":9808,"Ġconnecting":9809,"Ġpanic":9810,"ĠJacksonville":9811,"ĠKremlin":9812,"Ġorigin":9813,"Brien":9814,"Ġnorthwest":9815,"Ġcarriers":9816,"ĠRiley":9817,"Ġaud":9818,"Ġappreciation":9819,"Ġeliminated":9820,"ĠAnalyst":9821,"CR":9822,"Ġfirearm":9823,"Ġaccommodate":9824,"Ġstructural":9825,"Ġappealed":9826,"Ġcharter":9827,"ressing":9828,"Ġalike":9829,"white":9830,"Ġslowdown":9831,"Ġweigh":9832,"ĠPalmer":9833,"ound":9834,"ĠConn":9835,"Ġbranches":9836,"Ġace":9837,"Ġinsists":9838,"yo":9839,"ĠLynn":9840,"ĠCC":9841,"ĠWithin":9842,"Ġcoll":9843,"Ġsustain":9844,"Ġemerge":9845,"ĠBattle":9846,"VER":9847,"Ġaviation":9848,"Ġenables":9849,"ĠProduction":9850,"ĠGrove":9851,"Ġnationally":9852,"ĠBaldwin":9853,"rent":9854,"Ġfirearms":9855,"irm":9856,"Ġconsiders":9857,"ĠCosby":9858,"ĠMcK":9859,"ĠEnt":9860,"Ġincumbent":9861,"iance":9862,"Ġgiants":9863,"Ġkan":9864,"Ġminimal":9865,"ivity":9866,"ĠSay":9867,"ĠNass":9868,"Ġlovely":9869,"ĠFurthermore":9870,"Ġdisplaced":9871,"Ġcontacts":9872,"NY":9873,"Ġtechnological":9874,"ancy":9875,"Ġant":9876,"ope":9877,"ĠFY":9878,"Ġfavorable":9879,"ĠVirgin":9880,"Ġcasual":9881,"ĠLat":9882,"Ġpopulations":9883,"Ġromance":9884,"Ġforgotten":9885,"Ġfleeing":9886,"Ġspecialty":9887,"Ġdrill":9888,"Ġapplying":9889,"Ġcocaine":9890,"rea":9891,"Ġheroin":9892,"Ġsweeping":9893,"ĠMaj":9894,"Ġtroubled":9895,"Ġcolleague":9896,"Ġedged":9897,"omes":9898,"ĠHappy":9899,"´":9900,"Ġmilitant":9901,"boy":9902,"aver":9903,"Yes":9904,"llo":9905,"Ġsupporter":9906,"ĠSubscribe":9907,"ĠBird":9908,"ĠGibson":9909,"Ġhill":9910,"Ġnewspapers":9911,"ĠPHOTO":9912,"Ġouting":9913,"Ġdefine":9914,"Ġann":9915,"Ġrobot":9916,"Ġregret":9917,"ĠCould":9918,"raz":9919,"Ġceiling":9920,"Ġorganizers":9921,"ĠTw":9922,"Ġcriticised":9923,"ĠJoh":9924,"ĠJe":9925,"ĠBulls":9926,"Ġteeth":9927,"ĠRanch":9928,"ĠAndrea":9929,"Ġconservatives":9930,"Ġmag":9931,"vey":9932,"Ġpredecessor":9933,"ĠJPMorgan":9934,"Ġdraws":9935,"umber":9936,"Ġvaccine":9937,"ĠDas":9938,"Ġdisappeared":9939,"ĠIron":9940,"Ġlitigation":9941,"vert":9942,"Ġbelong":9943,"ĠRet":9944,"owers":9945,"rain":9946,"controlled":9947,"ĠKil":9948,"Ġrehab":9949,"ĠAustria":9950,"Ġprivilege":9951,"Ġbounce":9952,"Ġbout":9953,"ĠIslamist":9954,"Ġtaxi":9955,"ody":9956,".'\"":9957,"Ġdos":9958,"shire":9959,"Ġaccidents":9960,"Ġdemonstration":9961,"His":9962,"ĠBO":9963,"ĠICE":9964,"van":9965,"File":9966,"ĠManning":9967,"ounded":9968,"Ġdirections":9969,"lled":9970,"Ġoffences":9971,"Ġlaptop":9972,"ĠUniversal":9973,"Ġmilestone":9974,"ĠNarendra":9975,"Ġnotion":9976,"Ġuns":9977,"ĠLower":9978,"Ġmidfield":9979,"Ġoutper":9980,"trans":9981,"ĠJa":9982,"three":9983,"Adds":9984,"Ġpressures":9985,"Ġprohibited":9986,"Ġutilities":9987,"Ġbes":9988,"ĠReporter":9989,"Ġcommodities":9990,"leton":9991,"Ġslower":9992,"EE":9993,"auer":9994,"Ġtablet":9995,"sl":9996,"iously":9997,"Ġaiming":9998,"eland":9999,"ĠNEXT":10000,"tered":10001,"IVE":10002,"onic":10003,"May":10004,"ĠMilitary":10005,"Mark":10006,"Ġlender":10007,"mate":10008,"Ġaboard":10009,"they":10010,"Ġrespondents":10011,"Ġconversion":10012,"Ġsecuring":10013,"Ġentity":10014,"ĠHarbor":10015,"ĠCu":10016,"Ġcats":10017,"ĠACC":10018,"ĠIbrahim":10019,"GL":10020,"Ġinvitation":10021,"Ġcond":10022,"ĠRecords":10023,"ĠAdrian":10024,"Ġbrave":10025,"Ġmineral":10026,"Ġsooner":10027,"Ġsatisfied":10028,"Ġpets":10029,"Ġnotably":10030,"ı":10031,"Ġmarking":10032,"ĠRO":10033,"ĠHaw":10034,"ĠVis":10035,"Ġmarketplace":10036,"ĠNat":10037,"ĠForward":10038,"ĠLeft":10039,"Ġaggravated":10040,"ĠClose":10041,"acey":10042,"Ġlandmark":10043,"Ġdisruption":10044,"ĠChallenge":10045,"ĠDays":10046,"ĠCoun":10047,"ahan":10048,"Ġaides":10049,"South":10050,"ĠDylan":10051,"ĠRavens":10052,"ĠNature":10053,"lli":10054,"Ġdiplomats":10055,"350":10056,"ĠDrake":10057,"tag":10058,"Ġlicensed":10059,"ĠDenmark":10060,"Ġcancel":10061,"Ġinstant":10062,"DI":10063,"Ġpunch":10064,"ĠJenkins":10065,"Ġstrengthening":10066,"des":10067,"-$":10068,"Ġallegation":10069,"Ġsizes":10070,"iza":10071,"Ġmentally":10072,"ĠResidents":10073,"acked":10074,"Ġsensors":10075,",'\"":10076,"illion":10077,"ĠChampion":10078,"Ġexcessive":10079,"Ġhum":10080,"ĠComp":10081,"rend":10082,"ĠLakes":10083,"Ġburst":10084,"Ġtrainer":10085,"Ġclearing":10086,"ĠSilicon":10087,"Ġ350":10088,"DE":10089,"ĠGates":10090,"ĠHorn":10091,"ests":10092,"ĠCourtesy":10093,"Ġbipartisan":10094,"Ġhabits":10095,"ĠAlexa":10096,"walk":10097,"Ġsnapped":10098,"ĠEight":10099,"itis":10100,"zel":10101,"Ġcustoms":10102,"Ġsouthwest":10103,"Ġvary":10104,"Because":10105,"Ġpayout":10106,"Ġaccelerate":10107,"ĠBarr":10108,"tu":10109,"Ġfined":10110,"cost":10111,"ĠTheater":10112,"ĠCorbyn":10113,"Ġstem":10114,"Ġundermine":10115,".;":10116,"Ġstays":10117,"Ġbreakthrough":10118,"Ġturnover":10119,"hot":10120,"Ġtriumph":10121,"Ġpainted":10122,"ĠWinnipeg":10123,"ĠKas":10124,"ĠStuart":10125,"irk":10126,"Am":10127,"Ġtrusted":10128,"aze":10129,"ĠLate":10130,"Ġaccessories":10131,"Ġmemorable":10132,"ĠFool":10133,"Ġrotation":10134,"ĠBulldogs":10135,"ĠChen":10136,"Ġpoised":10137,"ĠMonte":10138,"ĠClarke":10139,"leading":10140,"Ġvenues":10141,"Ġbeneficial":10142,"ĠLiam":10143,"ĠBrothers":10144,"ĠNeed":10145,"Ġconc":10146,"olly":10147,"ĠJulian":10148,"ogue":10149,"Ġfounding":10150,"Ġsidelines":10151,"Ġdeclare":10152,"ĠMember":10153,"Ġexamine":10154,"abs":10155,"Ġboundaries":10156,"ĠBrisbane":10157,"Ġlaunches":10158,"lor":10159,"ĠGa":10160,"Ġthr":10161,"expected":10162,"wal":10163,"ĠBarnes":10164,"Ġclashes":10165,"content":10166,"ĠClemson":10167,"iger":10168,"Mar":10169,"Ġaccord":10170,"Ġsoutheast":10171,"ģ":10172,"ĠStarbucks":10173,"osing":10174,"Ġseasonal":10175,"icking":10176,"Ġloyalty":10177,"Ġtent":10178,"ĠDy":10179,"Ġevident":10180,"Ġlobby":10181,"Ġtours":10182,"Ġbombing":10183,"uations":10184,"Ġrises":10185,"Ġdemonstrations":10186,"ĠWATCH":10187,"pin":10188,"Ġdeb":10189,"ĠDraft":10190,"rog":10191,"Ġseal":10192,"ĠPerformance":10193,"ĠLGBT":10194,"Ġsed":10195,"Ġgig":10196,"nan":10197,"Ġrainfall":10198,"Ġfabric":10199,"Ġmanages":10200,"Ġlifting":10201,"ĠMagazine":10202,"ĠCriminal":10203,"Ġhikes":10204,"Ġcatching":10205,"Ġ1989":10206,"OG":10207,"Ġdisappointment":10208,"Ġir":10209,"ĠEV":10210,"stown":10211,"pass":10212,"120":10213,"Ġmedals":10214,"ĠSimmons":10215,"Ġinaugural":10216,"ĠCorn":10217,"Ġmotorcycle":10218,"lets":10219,"ĠSkype":10220,"ét":10221,"Ġscary":10222,"opp":10223,"thirds":10224,"ĠMohamed":10225,"Ġteenagers":10226,"ANK":10227,"Ġserver":10228,"Ġouts":10229,"Ġdishes":10230,"four":10231,"dr":10232,"ĠOt":10233,"ĠSandy":10234,"ĠShane":10235,"orters":10236,"SH":10237,"Ġtouching":10238,"ĠNike":10239,"ĠHBO":10240,"driving":10241,"Ġplug":10242,"ĠBaseball":10243,"eling":10244,"hn":10245,"ulate":10246,"eed":10247,"ĠChristine":10248,"ĠGlobe":10249,"Ġethics":10250,"ĠTrevor":10251,"iya":10252,"Ġ360":10253,"Ġawaiting":10254,"Ġcounterpart":10255,"Ġsubsidies":10256,"pointers":10257,"Ġspy":10258,"ILL":10259,"Ġtakeover":10260,"ĠBeyond":10261,"Ġsurprisingly":10262,"TION":10263,"ĠSong":10264,"Ġni":10265,"Ġcommonly":10266,"Ġjack":10267,"Ġsubstitute":10268,"ews":10269,"Ġrecalls":10270,"ĠCommons":10271,"Ġsin":10272,"del":10273,"ĠMod":10274,"Ġpressing":10275,"ĠTelevision":10276,"ĠInside":10277,"ª":10278,"Ġbacklash":10279,"Ġcredible":10280,"ĠJenner":10281,"ĠPu":10282,"ĠStevens":10283,"ĠWE":10284,"Last":10285,"Ġinsurers":10286,"ĠJoin":10287,"bled":10288,"digit":10289,"Ġflooded":10290,"ĠShore":10291,"ĠTrophy":10292,"zing":10293,"ĠImmigration":10294,"Ġsuperior":10295,"IAN":10296,"Ġcasino":10297,"Ġenabling":10298,"Ġmeantime":10299,"Ġperformers":10300,"Ġproportion":10301,"Ġlawmaker":10302,"ĠConf":10303,"Ġconvert":10304,"Ġfarmer":10305,"Ġbu":10306,"ĠGE":10307,"ĠRepresentative":10308,"ĠBannon":10309,"ĠHelp":10310,"PT":10311,"formed":10312,"ĠSuperintendent":10313,"Ġfrustrating":10314,"ĠRegister":10315,"ĠPolitical":10316,"Ġboots":10317,"ĠRu":10318,"ĠSha":10319,"Ġinstrument":10320,"tor":10321,"ĠBelt":10322,"ĠWalsh":10323,"Ġrecipe":10324,"ilt":10325,"ĠClean":10326,"iors":10327,"Ġtwenty":10328,"iler":10329,"nder":10330,"Ġwinger":10331,"Ġwheat":10332,"ĠAviation":10333,"Ġcorrupt":10334,"Ġconnectivity":10335,"ĠVen":10336,"order":10337,"esc":10338,"break":10339,"Ġmetals":10340,"Ġtraditionally":10341,"Ġbell":10342,"Ġviolating":10343,"rough":10344,"Ġintroducing":10345,"Ġguided":10346,"ĠMol":10347,"Ġdesert":10348,"ĠBree":10349,"Le":10350,"ĠZone":10351,"ĠGlass":10352,"ĠEUR":10353,"ĠYahoo":10354,"Ġlaps":10355,"Ġdiffer":10356,"ĠHold":10357,"Ġtimely":10358,"Ġsuccessor":10359,"Ġcomic":10360,"Ġbears":10361,"Ġlicence":10362,"Ġreject":10363,"Ġsophisticated":10364,"Too":10365,"Ġobjectives":10366,"ĠId":10367,"urers":10368,"Ġraid":10369,"COM":10370,"Ġelect":10371,"ĠHampshire":10372,"Ġlens":10373,"Ġdesigners":10374,"Ġpresently":10375,"ĠRCMP":10376,"ĠEgyptian":10377,"ĠWalter":10378,"ĠWallace":10379,"Ġ2025":10380,"utics":10381,"ried":10382,"Ġrefuse":10383,"Ġsiblings":10384,"ĠNothing":10385,"Ġdressing":10386,"Ġnerve":10387,"AST":10388,"Ġuncertainties":10389,"Ġtale":10390,"ĠTalk":10391,"Ġissuing":10392,"shot":10393,"ĠTak":10394,"Ġacid":10395,"ĠNintendo":10396,"Ġwash":10397,"pd":10398,"ĠClaire":10399,"ĠScot":10400,"Ġsuits":10401,"ĠBayern":10402,"gest":10403,"Ġapplicable":10404,"Ġinteraction":10405,"ĠEnforcement":10406,"ĠRohingya":10407,"Ġjan":10408,"Ġunited":10409,"ĠCoalition":10410,"Ġlegislators":10411,"Ġdetectives":10412,"ĠSing":10413,"ĠBetween":10414,"ĠPoly":10415,"pool":10416,"mal":10417,"Ġreply":10418,"Ġschemes":10419,"ĠHolmes":10420,"ĠSenators":10421,"ĠVerizon":10422,"Ġwelcoming":10423,"ĠCricket":10424,"ĠMarco":10425,"ĠYears":10426,"ĠLiving":10427,"Ġcounterparts":10428,"ĠParadise":10429,"ĠTrad":10430,"#":10431,"iw":10432,"ĠSoccer":10433,"umbled":10434,"Ġdeceased":10435,"heim":10436,"Ġevaluation":10437,"Ġwrap":10438,"Ġmild":10439,"aji":10440,"ĠUCLA":10441,"ĠNative":10442,"president":10443,"ĠXbox":10444,"Ġenterprises":10445,"ĠSlam":10446,"oga":10447,"Rock":10448,"piece":10449,"ĠColeman":10450,"Ġcomparable":10451,"uba":10452,"Ġprovinces":10453,"ĠFormula":10454,"ipt":10455,"ô":10456,"Ġtick":10457,"ĠIMF":10458,"anch":10459,"atta":10460,"rew":10461,"However":10462,"LS":10463,"etta":10464,"ĠCustoms":10465,"SU":10466,"Ġpublishing":10467,"Ġinch":10468,"Ġkills":10469,"¤":10470,"ĠSus":10471,"ĠBeth":10472,"Ġsteam":10473,"jpg":10474,"pointer":10475,"Ġturnovers":10476,"Ġpowder":10477,"ĠUSB":10478,"ĠWildlife":10479,"ĠDirect":10480,"atively":10481,"ĠFerrari":10482,"Ġpleasure":10483,"ĠMatthews":10484,"Ġski":10485,"ography":10486,"ĠVermont":10487,"ĠMargaret":10488,"ĠMunich":10489,"Ġlayer":10490,"ĠProperty":10491,"Ġeconomics":10492,"ĠCrew":10493,"UK":10494,"Ġunnecessary":10495,"ĠGlasgow":10496,"Ġsealed":10497,"Ġclarity":10498,"Ġsurplus":10499,"ĠCanyon":10500,"ĠApart":10501,"Ġacceptance":10502,"ĠEllis":10503,"uster":10504,"rid":10505,"ĠHawks":10506,"Ġstatewide":10507,"Ġthreaten":10508,"ĠJail":10509,"Ġinclusive":10510,"Ġmud":10511,"Ġpat":10512,"Ġbitter":10513,"Ġalternatives":10514,"Ġaffiliate":10515,"Ġevaluate":10516,"ĠBaby":10517,"Ġperception":10518,"tim":10519,"Ġrefusing":10520,"Ġgrey":10521,"Ġarguably":10522,"Ġfirmly":10523,"ĠDark":10524,"Ġexcuse":10525,"ĠRaymond":10526,"Ġballots":10527,"inton":10528,"Ġ125":10529,"ĠCatherine":10530,"Ġsacks":10531,"ĠDeb":10532,"Ġworkout":10533,"web":10534,"Ġbatteries":10535,"breaking":10536,"ML":10537,"Ġunacceptable":10538,"ĠValentine":10539,"ĠYOU":10540,"ĠRT":10541,"Ġjurisdiction":10542,"Ġexamined":10543,"strom":10544,"ĠPocket":10545,"Ġcement":10546,"Ġuniversal":10547,"ĠOz":10548,"Ġkit":10549,"Ġchurches":10550,"Ġsuburban":10551,"ĠKushner":10552,"ĠDavidson":10553,"Sports":10554,"email":10555,"Ġrealistic":10556,"Ġintend":10557,"ĠGrey":10558,",''":10559,"Ġscholarship":10560,"Ġphilosophy":10561,"Ġwheels":10562,"Ġmotivation":10563,"eway":10564,"match":10565,"ĠDate":10566,"John":10567,"Ġcontrolling":10568,"750":10569,"aven":10570,"Ġfilmed":10571,"Ġ160":10572,"ĠBrock":10573,"ĠDetails":10574,"Ġlogistics":10575,"Ġassumptions":10576,"ĠStep":10577,"Ġfails":10578,"ĠNotre":10579,"Ġjuice":10580,"Ġcounting":10581,"Ġphotograph":10582,"Ġfortunate":10583,"Ġestablishing":10584,"ĠNJ":10585,"ĠWorkers":10586,"ĠQuinn":10587,"ĠHeather":10588,"Ġtimeline":10589,"Ġimported":10590,"ĠNASCAR":10591,"Ġexercises":10592,"Ġsearched":10593,"ĠRalph":10594,"alf":10595,"Ġgene":10596,"Ġdependent":10597,"én":10598,"iate":10599,"ĠBristol":10600,"Ġhung":10601,"Ġtropical":10602,"Ġintensity":10603,"ĠIdaho":10604,"ĠMull":10605,"Ġsuite":10606,"Ġblockchain":10607,"cz":10608,"ovich":10609,"Ġworn":10610,"ĠLE":10611,"AV":10612,"emi":10613,"Ġidentification":10614,"Ġtunnel":10615,"ĠARE":10616,"ĠArm":10617,"Ġoutrage":10618,"Ġtwist":10619,"uka":10620,"ĠGra":10621,"Ġjets":10622,"ĠThus":10623,"Ġcompound":10624,"Ġfinancially":10625,"2019":10626,"asse":10627,"Ġspare":10628,"ĠNoah":10629,"ĠMade":10630,"ĠMom":10631,"Ġphenomenon":10632,"Ġnurses":10633,"Ġoutlined":10634,"Ġpolit":10635,"ĠCarm":10636,"Ġleagues":10637,"Ġmath":10638,"Ġmodified":10639,"Ġwillingness":10640,"ĠAmanda":10641,"Ġgrandfather":10642,"Of":10643,"DR":10644,"Ġdip":10645,"ĠRAM":10646,"ĠChristie":10647,"Ġargues":10648,"ĠEX":10649,"ĠNine":10650,"ĠScroll":10651,"ĠTHIS":10652,"Pro":10653,"Ġkeys":10654,"Ġprocessor":10655,"Ġscam":10656,"ĠTraining":10657,"Ġhoney":10658,"Ĵ":10659,"Ġfacebook":10660,"ĠLegal":10661,"Ġaging":10662,"Ġspiritual":10663,"ĠHost":10664,"Ġlung":10665,"ĠUSC":10666,"Ġdirt":10667,"Ġfe":10668,"after":10669,"ĠDiana":10670,"Ġounce":10671,"date":10672,"ĠFinals":10673,"Ķ":10674,"Ġthorough":10675,"Ġviable":10676,"Ġanytime":10677,"Ġfost":10678,"orter":10679,"ware":10680,"ĠHolland":10681,"ĠMand":10682,"ĠSend":10683,"2013":10684,"ĠVolkswagen":10685,"Ġsuitable":10686,"ifies":10687,"Ġcomedian":10688,"Ġneighbours":10689,"ĠKnow":10690,"Ġcurious":10691,"ĠTwenty":10692,"ĠPrevention":10693,"ĠStephanie":10694,"Ġpilots":10695,"Ġstored":10696,"Ġdire":10697,"Ġfits":10698,"ision":10699,"ĠShell":10700,"Ġshifts":10701,"Ġpepper":10702,"Ġattendees":10703,"ĠName":10704,"hers":10705,"rip":10706,"Ġwatchdog":10707,"andy":10708,"Ġbio":10709,"Ġpublisher":10710,"powered":10711,"ĠCM":10712,"rian":10713,"ĠRand":10714,"wise":10715,"ĠJesse":10716,"Ġladies":10717,"ĠMetropolitan":10718,"ĠMicro":10719,"Ġkicking":10720,"Ġmeg":10721,"Ġclouds":10722,"Ġtrim":10723,"wear":10724,"ĠML":10725,"Ġconsists":10726,"Ġrig":10727,"Ġhonestly":10728,"GS":10729,"ĠNicholas":10730,"Ġcope":10731,"Ġpublish":10732,"working":10733,"bur":10734,"ĠNar":10735,"olds":10736,"aja":10737,"ĠSad":10738,"Ġclicking":10739,"Ġbids":10740,"ĠZuckerberg":10741,"Ġ900":10742,"Ġexam":10743,"ivers":10744,"Ġpray":10745,"Ġreader":10746,"ĠSeth":10747,"inem":10748,"Ġconfront":10749,"stra":10750,"AW":10751,"ĠGian":10752,"Ġaccordance":10753,"Ġinteract":10754,"ĠSharks":10755,"Ġfireworks":10756,"gment":10757,"illy":10758,"Ġconst":10759,"ARY":10760,"Ġprizes":10761,"Ġshoulders":10762,"Ġaccessed":10763,"Ġecosystem":10764,"Ġlicensing":10765,"La":10766,"Ġdedication":10767,"Ġdé":10768,"Ġyouths":10769,"lem":10770,"Ġtoy":10771,"ĠProm":10772,"ounding":10773,"rod":10774,"Ġ1000":10775,"ishes":10776,"Over":10777,"Ġgaps":10778,"Ġmissions":10779,"Ġrailway":10780,"Day":10781,"orp":10782,"ĠSchumer":10783,"Ġeclipse":10784,"Ġshell":10785,"ĠBY":10786,"Many":10787,"ĠRecord":10788,"Ġdrunk":10789,"ayan":10790,"Ġsuggestion":10791,"Ġdefenders":10792,"ĠNewton":10793,"Ġdisputes":10794,"Ġevolution":10795,"Ġcredibility":10796,"ĠTenn":10797,"Ġplain":10798,"size":10799,"cont":10800,"Ġlone":10801,"Ġfingers":10802,"BUR":10803,"ĠInvestigation":10804,"ĠQualcomm":10805,"var":10806,"Ġcountless":10807,"ĠRebecca":10808,"½":10809,"abi":10810,"Ġreflecting":10811,"ĠTurn":10812,"Ġinteractive":10813,"Ġincentive":10814,"second":10815,"offs":10816,"ĠBerkeley":10817,"ĠTexans":10818,"Ġheated":10819,"Ġscorer":10820,"ĠSharif":10821,"Ġmigrant":10822,"west":10823,"ĠHoliday":10824,"Ġwrist":10825,"Ġchairs":10826,"Ġrecommends":10827,"ĠWildcats":10828,"ĠPed":10829,"ĠQuarter":10830,"ĠIV":10831,"ĠArch":10832,"Ġstandings":10833,"Ġbombs":10834,"Ġcapped":10835,"Can":10836,"Ġcaring":10837,"ĠLah":10838,"lim":10839,"Ġdragged":10840,"ĠBeat":10841,"DB":10842,"Ġaired":10843,"Ġjeans":10844,"action":10845,"Ġgenerating":10846,"ĠGir":10847,"risk":10848,"lon":10849,"stage":10850,"âĤ¬":10851,"earing":10852,"ĠTogether":10853,"Ġreun":10854,"ĠCorey":10855,"ĠBak":10856,"Ġprestigious":10857,"Ġapplicants":10858,"here":10859,"ĠMattis":10860,"Ġridiculous":10861,"ĠLess":10862,"Ġrains":10863,"Ġpresenting":10864,"anti":10865,"Ġdisabilities":10866,"Ġapartments":10867,"storm":10868,"ĠHem":10869,"Ġhabit":10870,"ĠRuth":10871,"ĠNPR":10872,"nut":10873,"Ġappreciated":10874,"Ġseparation":10875,"uda":10876,"Ġminus":10877,"ĠPhotos":10878,"Ġblew":10879,"ĠVoice":10880,"Ġrallies":10881,"Ġfond":10882,"ĠTaking":10883,"yt":10884,"FE":10885,"ĠTory":10886,"ressed":10887,"ĠLy":10888,"Ġrocks":10889,"ĠRah":10890,"Ġelementary":10891,"nis":10892,"ĠPresidential":10893,"Ġnutrition":10894,"Ġbaseman":10895,"Ġsuperstar":10896,"ĠWa":10897,"lar":10898,"Ġstaged":10899,"ĠLearn":10900,"Ġbroadcaster":10901,"Ġboasts":10902,"Ġdoubts":10903,"rum":10904,"Ġbare":10905,"cap":10906,"Ġclimbing":10907,"ĠSelect":10908,"ĠCant":10909,"ĠNord":10910,"ĠBeck":10911,"ĠKad":10912,"ello":10913,"Ġenforce":10914,"ĠZe":10915,"ked":10916,"elly":10917,"ĠLED":10918,"ĠOperations":10919,"ĠLuk":10920,"Ġcertificate":10921,"Ġdeter":10922,"Ġspill":10923,"Ġgrain":10924,"league":10925,"Up":10926,"ĠKid":10927,"using":10928,"ĠJays":10929,"Ġoccasionally":10930,"ĠMI":10931,"yes":10932,"Ġdetect":10933,"Ġpropaganda":10934,"Ġneighboring":10935,"sub":10936,"avan":10937,"ĠAstros":10938,"oti":10939,"threatening":10940,"Ġshorter":10941,"INGS":10942,"Ġfeeding":10943,"Ġelevated":10944,"ĠWenger":10945,"Ġundergo":10946,"Ġpsychological":10947,"Ġautom":10948,"NP":10949,"anks":10950,"ĠNokia":10951,"Ġdrones":10952,"Ġrecognised":10953,"Ġheroes":10954,"agen":10955,"Ġparole":10956,"ĠBah":10957,"Ġhomeowners":10958,"ĠSweet":10959,"Ġinstances":10960,"ĠParish":10961,"ĠSL":10962,"Ġunw":10963,"Ġdelicious":10964,"¯":10965,"ĠInvestments":10966,"ĠPhilippine":10967,"inos":10968,"Ġmes":10969,"Ġbite":10970,"Ġcornerback":10971,"ĠHat":10972,"Ġdeserved":10973,"ologists":10974,"[":10975,"Ġwrongdoing":10976,"ĠTrent":10977,"ĠVe":10978,"ĠDeal":10979,"Mr":10980,"Ġovers":10981,"Ġhonors":10982,"ĠITV":10983,"Ġpayroll":10984,"Ġconfused":10985,"Ġelaborate":10986,"ange":10987,"World":10988,"ĠResort":10989,"ilia":10990,"ĠKr":10991,"Ġconclude":10992,"First":10993,"ĠDR":10994,"Ġpeer":10995,"Ġrunway":10996,"ĠPotter":10997,"cons":10998,"bad":10999,"si":11000,"ĠClimate":11001,"ĠHoll":11002,"Ġweighing":11003,"Ġepidemic":11004,"ĠBible":11005,"Ġhon":11006,"Ġrenew":11007,"Ġgambling":11008,"ĠNationals":11009,"itable":11010,"ĠOutlook":11011,"Ġreactions":11012,"ĠCos":11013,"ĠDana":11014,"India":11015,"ĠAirbus":11016,"power":11017,"watch":11018,"Ġstyles":11019,"Ġordinance":11020,"Ġcam":11021,"Ġinvent":11022,"ĠDurant":11023,"Ġexchanged":11024,"Ġyoga":11025,"ĠMichel":11026,"ĠWyoming":11027,"ĠPhase":11028,"ĠHannah":11029,"Ġtem":11030,"Ġfare":11031,"omer":11032,"Ġtrails":11033,"Ġquietly":11034,"ĠFourth":11035,"Ġwise":11036,"Ġappetite":11037,"Ġpedestrian":11038,"Ġfierce":11039,"hin":11040,"ako":11041,"Ġvacant":11042,"Ġdynamics":11043,"Ġbust":11044,"ĠGT":11045,"century":11046,"Ġpermitted":11047,"Ġfog":11048,"Ġrecruitment":11049,"ĠDue":11050,"Ġbro":11051,"Ġsil":11052,"ĠOpp":11053,"Ġphrase":11054,"ĠChip":11055,"ĠBase":11056,"Ġjazz":11057,"Ġenemies":11058,"Ġremainder":11059,"bles":11060,"Ġ105":11061,"ĠGur":11062,"Ġretiring":11063,"ĠCour":11064,"ĠSi":11065,"Ġinevitable":11066,"ĠAdvisory":11067,"ĠCampaign":11068,"ĠPeninsula":11069,"base":11070,"Ġjustify":11071,"inen":11072,"North":11073,"Ġfreezing":11074,"Ġphotography":11075,"Ġappointments":11076,"ĠTree":11077,"Os":11078,"Ġdivide":11079,"ĠMMA":11080,"Ġdeclines":11081,"ĠAbbott":11082,"ACH":11083,"ĠJah":11084,"Ġspr":11085,"Ġskilled":11086,"ĠTry":11087,"ANT":11088,"ael":11089,"ĠMcN":11090,"Ġtariff":11091,"generation":11092,"ĠMans":11093,"Or":11094,"Ġraped":11095,"Ġdisability":11096,"Ġnominations":11097,"Ġhappiness":11098,"ĠLSU":11099,"ĠInterstate":11100,"ĠDance":11101,"ĠMaking":11102,"Ġbailout":11103,"oro":11104,"ĠObviously":11105,"Ġinbox":11106,"football":11107,"hy":11108,"ĠCase":11109,"Ġentertaining":11110,"Ġhardest":11111,"ĠOpposition":11112,"Ġflip":11113,"ĠPirates":11114,"anu":11115,"ĠKlopp":11116,"Ġballistic":11117,"Ġprinted":11118,"ĠNFC":11119,"UST":11120,"Ġglasses":11121,"Ġrum":11122,"ĠDuncan":11123,"hal":11124,"Ġpreview":11125,"BER":11126,"dec":11127,"Ġsustainability":11128,"Ġaff":11129,"Ġhungry":11130,"service":11131,"avi":11132,"Ġsometime":11133,"Ġmod":11134,"ĠLib":11135,"oko":11136,"Ġfundraiser":11137,"Ġcrowded":11138,"mates":11139,"Ġcreativity":11140,"ĠHell":11141,"Ġtreaty":11142,"ĠSoftware":11143,"ĠRandy":11144,"ĠPolish":11145,"sa":11146,"ardi":11147,"Ġcab":11148,"ĠCamera":11149,"Ġlicenses":11150,"Ġ1988":11151,"Ġcontinuous":11152,"Ġpaired":11153,"Ġtally":11154,"Ġgrip":11155,"cho":11156,"Ġsurged":11157,"Ġpodium":11158,"Ġcontrary":11159,"SL":11160,"ĠResearchers":11161,"cing":11162,"Ġmi":11163,"Ġdisputed":11164,"Ġgrades":11165,"Ġseverely":11166,"ĠMcL":11167,"ondo":11168,"Ġshelters":11169,"Ġdomain":11170,"ĠSwitch":11171,"Ġtestify":11172,"case":11173,"omet":11174,"atch":11175,"ĠAff":11176,"Ġcasting":11177,"berger":11178,"Ġintimate":11179,"erc":11180,"plan":11181,"ĠPast":11182,"ĠUt":11183,"Ġapologized":11184,"ĠDet":11185,"alle":11186,"Ġwhilst":11187,"Ġpel":11188,"Ġexecute":11189,"Ġharmful":11190,"ĠRB":11191,"onda":11192,"ĠFul":11193,"II":11194,"Those":11195,"Ġcryptocurrency":11196,"Ġrealise":11197,"ĠAthens":11198,"ĠApplication":11199,"ORD":11200,"Ġmidst":11201,"ĠSem":11202,"Ġmessaging":11203,"Ġcousin":11204,"ĠMarsh":11205,"ĠAlmost":11206,"uto":11207,"wire":11208,"ĠManaging":11209,"Ġsends":11210,"ĠDerby":11211,"Ġpad":11212,"Ġdevoted":11213,"ĠWorking":11214,"ĠWestminster":11215,"Ġdirty":11216,"ements":11217,"ĠLew":11218,"door":11219,"Ġadvisor":11220,"ival":11221,"Ġsubscribe":11222,"Ġcredited":11223,"Ġpressed":11224,"Ġbrick":11225,"Ġrehabilitation":11226,"Ġ\"[":11227,"erry":11228,"Ġtransformed":11229,"arp":11230,"Ġreceivers":11231,"ĠFan":11232,"ĠKris":11233,"ĠCharlottesville":11234,"Ġste":11235,"Ġconstructed":11236,"Ġbroadly":11237,"ĠBetter":11238,"ĠJanet":11239,"Ġenthusiasm":11240,"ĠIrving":11241,"ĠConst":11242,"Everyone":11243,"agn":11244,"ĠCrawford":11245,"Ġregards":11246,"ĠBurns":11247,"Ġjokes":11248,"erg":11249,"ARD":11250,"apped":11251,"Ġtravelled":11252,"ĠPoor":11253,"ĠHolly":11254,"Ġcontainer":11255,"Ġinfected":11256,"Ġlean":11257,"ĠWould":11258,"Ġmagnitude":11259,"ĠDou":11260,"minded":11261,"Ġpastor":11262,"Ġwherever":11263,"ulation":11264,"Ġ1986":11265,"ĠMegan":11266,"Ġgraphic":11267,"Ġtalents":11268,"Ġkn":11269,"ĠEC":11270,"ĠMcM":11271,"ĠKon":11272,"eni":11273,"ĠEsc":11274,"inas":11275,"ĠNom":11276,"Ġchasing":11277,"arl":11278,"ĠHungary":11279,"Ġmainland":11280,"ĠDist":11281,"utes":11282,"Ġrubber":11283,"iat":11284,"ĠMorrison":11285,"ushing":11286,"iny":11287,"Ġcopies":11288,"ĠFat":11289,"agged":11290,"Ġfloating":11291,"ĠCurtis":11292,"Ġfatally":11293,"ĠManuel":11294,"Ġgraduates":11295,"nar":11296,"ĠKenny":11297,"Ġretreat":11298,"Ġretro":11299,"ĠPierre":11300,"listed":11301,"ĠDale":11302,"ding":11303,"Ġintentions":11304,"Ġsentences":11305,"ĠSere":11306,"Ġinvasion":11307,"Ġpremiums":11308,"ĠGardner":11309,"Ġshipments":11310,"Ġcol":11311,"bell":11312,"ilo":11313,"Ġworthy":11314,"Ġinterceptions":11315,"Ġcomplain":11316,"icle":11317,"ĠTah":11318,"ĠMt":11319,"ĠSyracuse":11320,"Since":11321,"aches":11322,"ĠCand":11323,"Ġinteractions":11324,"ĠShawn":11325,"nc":11326,"Ġtheaters":11327,"ART":11328,"Th":11329,"Ġalter":11330,"aley":11331,"imo":11332,"Ġresponders":11333,"kan":11334,"ĠDarren":11335,"Ġdeliveries":11336,"PI":11337,"125":11338,"Ġlaughing":11339,"ĠPatterson":11340,"Ġinfections":11341,"Ġtur":11342,"130":11343,"Ġhackers":11344,"Ġwarn":11345,"Ġfreeze":11346,"Ġscreaming":11347,"ĠEcho":11348,"ĠDom":11349,"MAN":11350,"ĠJoy":11351,"Ġbeneath":11352,"ĠHalf":11353,"Ġpatent":11354,"Ġugly":11355,"Ġlip":11356,"Ġnominees":11357,"ĠGrade":11358,"Ġinfluenced":11359,"Ġabilities":11360,"Ġlimiting":11361,"Ġsmell":11362,"Ġesc":11363,"ĠBernard":11364,"cs":11365,"ĠMyers":11366,"oted":11367,"Black":11368,"Ġlim":11369,"Ġsworn":11370,"ĠBlair":11371,"anes":11372,"ĠEvent":11373,"Ġmature":11374,"Ġpositioned":11375,"Ġerupted":11376,"grand":11377,"ĠTell":11378,"Ġbackdrop":11379,"Ġyeah":11380,"ĠClear":11381,"Ġsignificance":11382,"Ġpatience":11383,"ĠWing":11384,"Ġhorrible":11385,"Ġdeploy":11386,"ipe":11387,"Ġbitcoin":11388,"Ġcommitting":11389,"Ġdismiss":11390,"ĠBlood":11391,"ĠMeyer":11392,"selling":11393,"Ġregarded":11394,"Ġlottery":11395,"ĠLuther":11396,"Ġpipe":11397,"Ġcro":11398,"ĠANC":11399,"ĠSolar":11400,"Ġsimilarly":11401,"Ġham":11402,"ĠHonor":11403,"tar":11404,"gin":11405,"ĠArmstrong":11406,"Ġbrowser":11407,"agon":11408,"via":11409,"Ġentries":11410,"Ġinfl":11411,"Ġgraduation":11412,"Ġalleges":11413,"ĠLoading":11414,"Ġsuperb":11415,"ially":11416,"Ġadministrator":11417,"uls":11418,"Ġartistic":11419,"ĠANGEL":11420,"ĠBang":11421,"Ġfossil":11422,"¨":11423,"Ġpoly":11424,"ĠGuardiola":11425,"ĠPerth":11426,"Ġeducate":11427,"Cl":11428,"Ġcommittees":11429,"Ġforthcoming":11430,"Ġadjustments":11431,"count":11432,"Ġincoming":11433,"brook":11434,"ĠMinneapolis":11435,"Ġgown":11436,"ĠCroatia":11437,"host":11438,"Ġcompetitor":11439,"Ġlyrics":11440,"Ġbelonging":11441,"ĠFrances":11442,"ĠHaley":11443,"ĠBruins":11444,"Ġmask":11445,"ĠPv":11446,"dollar":11447,"Ġbowling":11448,"Ġjewelry":11449,"ĠJulia":11450,"Ġbroadband":11451,"ĠBhar":11452,"ĠArmed":11453,"vy":11454,"government":11455,"kov":11456,"Ġpremises":11457,"Ġjersey":11458,"Ġapplies":11459,"ĠFreeman":11460,"Ġgrows":11461,"ĠEquity":11462,"Ġmaterially":11463,"Ġfigured":11464,"ience":11465,"Ġmajors":11466,"ĠYe":11467,"ĠHey":11468,"oned":11469,"aping":11470,"Ġtoilet":11471,"ĠConnor":11472,"Ġavoiding":11473,"pos":11474,"Once":11475,"ĠRockets":11476,"ĠSnapchat":11477,"Go":11478,"Ġsolidarity":11479,"ĠAffordable":11480,"Ġdial":11481,"ĠOmar":11482,"xt":11483,"ĠVatican":11484,"anta":11485,"ĠSuperior":11486,"Ġbeaches":11487,"ĠKi":11488,"Ã¥":11489,"KY":11490,"Ġgro":11491,"ĠEmpire":11492,"Ġoccurs":11493,"Ġjoked":11494,"Ġquotes":11495,"ĠSaskatchewan":11496,"pert":11497,"Ġmaintains":11498,"olt":11499,"Ġupgrades":11500,"ĠCho":11501,"ĠAlexis":11502,"ĠHundreds":11503,"ĠBud":11504,"Ġcenturies":11505,"ĠInvestor":11506,"ĠGomez":11507,"Ġconceded":11508,"Ġexpressing":11509,"ĠIBM":11510,"Ġadvancing":11511,"ĠDollar":11512,"jer":11513,"Ġexceed":11514,"author":11515,"rist":11516,"seat":11517,"ĠPrimary":11518,"ĠForbes":11519,"ĠAlzheimer":11520,"Ġdevastated":11521,"Ġawful":11522,"ĠStudio":11523,"Ġbullpen":11524,"Ġmobility":11525,"Ġanalyze":11526,"lie":11527,"AFP":11528,"iche":11529,"ĠRoyals":11530,"Ġcoupled":11531,"Ġdug":11532,"ĠRing":11533,"Ġenvironments":11534,"national":11535,"ĠCongo":11536,"Ġalleging":11537,"wn":11538,"ulating":11539,"Ġur":11540,"Ġreaches":11541,"ĠPine":11542,"Ġthreshold":11543,"Ġtournaments":11544,"Ġheating":11545,"ĠGard":11546,"ĠHamas":11547,"Ġ«":11548,"ĠHolding":11549,"Ġpossibilities":11550,"ĠHassan":11551,"ĠMohammad":11552,"Ġoffenders":11553,"Ġautomated":11554,"Ġrealised":11555,"ouse":11556,"building":11557,"ĠDub":11558,"ĠGeneva":11559,"Ġfacial":11560,"ĠRestaurant":11561,"ĠNg":11562,"Ġtot":11563,"Ġgrace":11564,"ĠCP":11565,"Ġposter":11566,"hart":11567,"ĠNi":11568,"Ġreaff":11569,"Ġprov":11570,"Ġ111":11571,"ĠAid":11572,"Ġscrap":11573,"izers":11574,"ogen":11575,"Ġtissue":11576,"Ġvibrant":11577,"Ġrider":11578,"CD":11579,"ĠKitchen":11580,"Ġgenre":11581,"¬":11582,"depth":11583,"kind":11584,"Ġendorsed":11585,"Ġsimultaneously":11586,"Ġintern":11587,"ĠDrag":11588,"Ġembraced":11589,"Ġcounted":11590,"uj":11591,"ĠOg":11592,"Ġphysician":11593,"ĠIR":11594,"IST":11595,"ĠKir":11596,"Ġhacking":11597,"ĠSources":11598,"astic":11599,"growing":11600,"ĠWake":11601,"Ġhint":11602,"Ġcompiled":11603,"Ġreign":11604,"Ġcinema":11605,"Ġboosting":11606,"Ġaccommodation":11607,"ĠEuropa":11608,"Ġsubsidiaries":11609,"Ġclosures":11610,"ĠBil":11611,"ĠBou":11612,"wh":11613,"ĠAw":11614,"FT":11615,"hole":11616,"ĠNova":11617,"ĠNSW":11618,"Ġrap":11619,"Ġencourages":11620,"GR":11621,"ds":11622,"ĠMuk":11623,"ĠSurvey":11624,"ĠReagan":11625,"oning":11626,"Ġneighbouring":11627,"ĠMcCl":11628,"acht":11629,"Ġfinishes":11630,"ĠEsp":11631,"pat":11632,"Ġdestinations":11633,"ĠWagner":11634,"Ġconfronted":11635,"square":11636,"Ġpie":11637,"brand":11638,"hl":11639,"Ġabsent":11640,"Ġsurf":11641,"Ġrifle":11642,"ĠSS":11643,"ĠDeath":11644,"wich":11645,"Ġbeds":11646,"ĠLock":11647,"ĠAgu":11648,"atives":11649,"jee":11650,"Ġoral":11651,"Ġbudgets":11652,"Ġinspiring":11653,"IONS":11654,"works":11655,"Ġspirits":11656,"Ġcabin":11657,"Ġsatisfaction":11658,"Ġvoluntary":11659,"ĠMunicipal":11660,"Ġdeportation":11661,"ĠWriter":11662,"ĠVI":11663,"VERTISEMENT":11664,"/.":11665,"ĠSouthampton":11666,"aces":11667,"ĠHelen":11668,"ĠHum":11669,"110":11670,"Ġgarbage":11671,"through":11672,"Ġkingdom":11673,"MT":11674,"augh":11675,"Ġbizarre":11676,"ĠStarting":11677,"Ġwooden":11678,"ĠProgress":11679,"iron":11680,"sten":11681,"ĠSergio":11682,"ĠHR":11683,"Ġturnout":11684,"ĠAmericas":11685,"ĠSara":11686,"Ġagrees":11687,"apper":11688,"Ġbra":11689,"Ġrecycling":11690,"oom":11691,"Ġflee":11692,"Ġdistinct":11693,"IAL":11694,"aha":11695,"Ġfever":11696,"ĠPartnership":11697,"ĠYu":11698,"ĠPixel":11699,"ĠBlock":11700,"ĠMelissa":11701,"igg":11702,"Ġdecides":11703,"ĠNorman":11704,"Ġmas":11705,"held":11706,"ĠPD":11707,"Ġsheer":11708,"ĠDim":11709,"ĠCass":11710,"Ġcolumnist":11711,"ĠBros":11712,"Ġturnaround":11713,"ĠValue":11714,"ĠBachelor":11715,"awn":11716,"Ġassignment":11717,"ested":11718,"ĠJudiciary":11719,"Ġdiamond":11720,"Ġmus":11721,"Ġindigenous":11722,"lines":11723,"Ġ1984":11724,"igroup":11725,"ict":11726,"ĠJaguars":11727,"Ġlun":11728,"Ġprofiles":11729,"Ġcomputing":11730,"ĠBelgian":11731,"ĠLloyd":11732,"ĠGoing":11733,"Ġdisp":11734,"Ġ1987":11735,"eder":11736,"ĠVin":11737,"Ġgovern":11738,"Ġblend":11739,"ĠSebastian":11740,"ĠMidwest":11741,"iga":11742,"Ġspl":11743,"Ġtopping":11744,"Ġnetworking":11745,"ĠEmer":11746,"Ġoxygen":11747,"ĠInterest":11748,"ĠMoy":11749,"Ġtrader":11750,"Ġbay":11751,"Ġsticking":11752,"ĠMovement":11753,"Ġbidding":11754,"tax":11755,"Ġacademy":11756,"ĠMO":11757,"ĠSpirit":11758,"Ġhealing":11759,"wen":11760,"ĠPrix":11761,"cal":11762,"ĠOperating":11763,"Ġinstantly":11764,"ĠTonight":11765,"Ġsacked":11766,"Ġautomation":11767,"umps":11768,"ĠNey":11769,"March":11770,"ĠBuck":11771,"Ġconcentration":11772,"Here":11773,"Ġtravelers":11774,"Ġprotective":11775,"ĠMoody":11776,"Ġentrepreneur":11777,"Ġfac":11778,"kowski":11779,"Ġpreparations":11780,"Ġdominate":11781,"Ġspray":11782,"Ġdisturbing":11783,"ĠFraser":11784,"ĠCody":11785,"ashi":11786,"ĠPel":11787,"Ġrisky":11788,"Ġawkward":11789,"ĠVA":11790,"ails":11791,"Ġangle":11792,"Ġundergoing":11793,"Ġalbums":11794,"Ġafterwards":11795,"ĠNaw":11796,"uge":11797,"enter":11798,"ĠSussex":11799,"ĠRecently":11800,"Ġlikelihood":11801,"large":11802,"Ġsnaps":11803,"ibr":11804,"ĠMalcolm":11805,"Ġcru":11806,"Ġaltogether":11807,"Ġsetup":11808,"Ġtorture":11809,"Ġfiber":11810,"Ġquarterbacks":11811,"ĠGetting":11812,"ipping":11813,"ĠNorwegian":11814,"ĠMiles":11815,"ĠArnold":11816,"ĠDisease":11817,"Ġtends":11818,"ife":11819,"ĠCaroline":11820,"Ġnavigate":11821,"Ġbrush":11822,"ĠAssociates":11823,"Ġbath":11824,"ĠCenters":11825,"ĠMC":11826,"Ġtaxpayer":11827,"comp":11828,"Ġaccomplish":11829,"ĠTraffic":11830,"ĠBru":11831,"Ġgreenhouse":11832,"ĠMalaysian":11833,"ĠPur":11834,"ased":11835,"ĠKnicks":11836,"aters":11837,"Ġalt":11838,"ICK":11839,"Ġcalculations":11840,"Ġmindset":11841,"unch":11842,"Ġgu":11843,"Ġsteadily":11844,"Ġfiction":11845,"ĠPap":11846,"forming":11847,"ĠActor":11848,"ĠBerry":11849,"imp":11850,"ĠUpper":11851,"Ġassessed":11852,"Ġlawn":11853,"ĠRoh":11854,"Ġclearance":11855,"funded":11856,"Ġpret":11857,"ĠHom":11858,"VS":11859,"ĠTourism":11860,"ĠRy":11861,"ĠGonz":11862,"ĠStudios":11863,"Ġanchor":11864,"Ġrecognise":11865,"Ġcooperate":11866,"enny":11867,"aza":11868,"ĠMeet":11869,"Ġeventual":11870,"SW":11871,"ĠCounsel":11872,"ĠSave":11873,"Ġlucrative":11874,"Ġslim":11875,"ĠGreens":11876,"Ġchemistry":11877,"ĠSheikh":11878,"Ġbridges":11879,"business":11880,"ĠSaf":11881,"ĠGy":11882,"Ġprotocol":11883,"Ġnephew":11884,"ĠBrands":11885,"ĠCulture":11886,"orship":11887,"Ġ(£":11888,"ĠDell":11889,"astics":11890,"Ġproving":11891,"ĠMann":11892,"aca":11893,"Ġindoor":11894,"ĠUganda":11895,"ĠRomney":11896,"ĠStage":11897,"Ġward":11898,"ĠAmber":11899,"haw":11900,"Ġtw":11901,"Ġbullying":11902,"ĠCAR":11903,"Ġassociates":11904,"ĠHopkins":11905,"Ġsuburb":11906,"Ġaggressively":11907,"Ġpostponed":11908,"Ġbas":11909,"Ġburglary":11910,"ĠFound":11911,"Ġfloors":11912,"Any":11913,"Ġjam":11914,"Ġvisibility":11915,"Ġbenefited":11916,"ĠAud":11917,"aying":11918,"iku":11919,"ĠPas":11920,"ĠGPS":11921,"ĠOwens":11922,"Ġreluctant":11923,"ĠOlivia":11924,"ols":11925,"Ġemotion":11926,"ĠHeavy":11927,"Ġhostile":11928,"Ġfavorites":11929,"Ġfeat":11930,"ĠCord":11931,"ĠGO":11932,"Ġindicted":11933,"idal":11934,"ĠIL":11935,"Ħ":11936,"acer":11937,"ICH":11938,"oda":11939,"Ġrecipients":11940,"Ġtribal":11941,"Ġresist":11942,"ĠCritics":11943,"Ġsang":11944,"ĠMath":11945,"ĠBrighton":11946,"ĠKw":11947,"Ġlimitations":11948,"Ġinterception":11949,"onde":11950,"ĠRobertson":11951,"Ġenjoys":11952,"site":11953,"Ġwings":11954,"ĠCeltic":11955,"Ġrelaxed":11956,"Share":11957,"Ġwarrants":11958,"oco":11959,"Ġcritically":11960,"GC":11961,"Ġcute":11962,"Ġlaying":11963,"itude":11964,"ĠMediterranean":11965,"Ġwatches":11966,"Ġdisagree":11967,"ĠReturn":11968,"ARC":11969,"people":11970,"Ġtwelve":11971,"Ġoverdose":11972,"ĠLot":11973,"ĠFROM":11974,"ĠPeters":11975,"Ġadministrators":11976,"Ġslam":11977,"jar":11978,"OH":11979,"ĠInitiative":11980,"Ġteamed":11981,"ĠMajority":11982,"June":11983,"ĠPlaza":11984,"lake":11985,"Ġglimpse":11986,"Ġrings":11987,"Ġos":11988,"Ġmentor":11989,"have":11990,"Ġlanguages":11991,"Ġuncle":11992,"agu":11993,"ĠWine":11994,"ĠCategory":11995,"ĠIng":11996,"Ġcontests":11997,"ĠRosen":11998,"ĠWhatever":11999,"Ġdenying":12000,"ean":12001,"Ġspec":12002,"Ġgrad":12003,"Ġtenants":12004,"show":12005,"ĠGregory":12006,"Ġcontention":12007,"Ġunanimously":12008,"ĠPin":12009,"fa":12010,"ĠPink":12011,"Ġswitched":12012,"acre":12013,"ĠTrading":12014,"VP":12015,"ĠMaple":12016,"Neill":12017,"Ġdiscounts":12018,"alls":12019,"Ġsounded":12020,"Ġrumours":12021,"ĠCre":12022,"hall":12023,"ĠTele":12024,"Ġthankful":12025,"Ġsurveyed":12026,"UB":12027,"Ġdignity":12028,"Ġnod":12029,"Ġmisleading":12030,"ĠTX":12031,"ĠBurke":12032,"Ġmounting":12033,"Ġskies":12034,"Ġbesides":12035,"ĠGarrett":12036,"tha":12037,"Ġintelligent":12038,"Ġtanks":12039,"apping":12040,"ĠRat":12041,"aint":12042,"Ġentertain":12043,"ĠAbdullah":12044,"Ġsink":12045,"ĠLan":12046,"ĠManufacturing":12047,"NFL":12048,"Ġthemes":12049,"ĠHaven":12050,"ĠDavies":12051,"ĠKerr":12052,"ĠLen":12053,"Ġcourtroom":12054,"Ġfailures":12055,"Ġlately":12056,"ĠElectronics":12057,"Ġgorgeous":12058,"Ġnotification":12059,"Ġ2030":12060,"aved":12061,"Ġdeer":12062,"economic":12063,"ĠStatistics":12064,"Ġconfrontation":12065,"Ġgovernors":12066,"ĠHaram":12067,"ĠLGBTQ":12068,"Ġprocessed":12069,"ĠDuchess":12070,"Ġdowns":12071,"Ġpork":12072,"Ġhumor":12073,"ocese":12074,"Ġneeding":12075,"Ġmidterm":12076,"ĠOval":12077,"Ġcorners":12078,"Ġtablets":12079,"eds":12080,"vere":12081,"Ġattacker":12082,"Paul":12083,"pee":12084,"ĠAlice":12085,"Ġrenowned":12086,"Ġ09":12087,"ocking":12088,"Ġcreditors":12089,"ĠPedro":12090,"ĠPhone":12091,"Ġsurveys":12092,"ĠWelsh":12093,"Ġcow":12094,"Ġbuilds":12095,"Ġ000":12096,"ĠAzerbaijan":12097,"ĠYad":12098,"Ġinfant":12099,"Ġmotorists":12100,"Ġpoorly":12101,"Ġmedications":12102,"Ġstupid":12103,"ĠCastro":12104,"user":12105,"antly":12106,"alty":12107,"ĠCond":12108,"issa":12109,"ĠIvan":12110,"Ġcostume":12111,"Ġ08":12112,"Ġhence":12113,"Ġdangers":12114,"Ġbullish":12115,"Life":12116,"Ġflavor":12117,"ĠCharleston":12118,"Ġbikes":12119,"Ġworkshops":12120,"Ġarranged":12121,"Ġcontender":12122,"Ġsequel":12123,"ĠPlant":12124,"Ġdonor":12125,"Ġfactories":12126,"rict":12127,"ellen":12128,"Ġrobots":12129,"ĠWor":12130,"ĠDirectors":12131,"ĠPeru":12132,"Ġqueen":12133,"ĠTimothy":12134,"ĠToo":12135,"Ġobservers":12136,"Ġears":12137,"Ġbel":12138,"link":12139,"uns":12140,"Ġhomers":12141,"Ġadjacent":12142,"Ġconfidential":12143,"Ġstunned":12144,"iden":12145,"illed":12146,"ESS":12147,"Ġconvenient":12148,"ĠLindsey":12149,"por":12150,"upp":12151,"Ġborrow":12152,"ĠAhmad":12153,"ORT":12154,"Ġrelate":12155,"ĠSelf":12156,"ĠVanguard":12157,"utter":12158,"ĠBranch":12159,"ĠBolton":12160,"bat":12161,"Ġoutright":12162,"fighters":12163,"ĠBed":12164,"Ġpes":12165,"inski":12166,"Ġgunshot":12167,"Ġprinting":12168,"ĠSent":12169,"vern":12170,"Ġharvest":12171,"Ġbubble":12172,"Ġrefund":12173,"Ġfuels":12174,"Ġdive":12175,"Ġdiplomat":12176,"Ġpile":12177,"ĠVery":12178,"rot":12179,"ĠSearch":12180,"ĠJoyce":12181,"ĠPruitt":12182,"ĠLevel":12183,"ĠBP":12184,"ĠLac":12185,"had":12186,"Ġexpenditure":12187,"ĠMadd":12188,"Ġpockets":12189,"ĠClippers":12190,"ĠDear":12191,"ĠGive":12192,"Ġhal":12193,"Ġvertical":12194,"Ġwholesale":12195,"what":12196,"ĠSpringfield":12197,"ayed":12198,"ĠSom":12199,"Ġsecrets":12200,"Ġcharts":12201,"iar":12202,"ibility":12203,"LAND":12204,"Ġbearing":12205,"Ġprom":12206,"Ġtab":12207,"Ġsheets":12208,"ĠGL":12209,"Ġendless":12210,"opening":12211,"ĠOwen":12212,"Ġunderneath":12213,"ĠErik":12214,"ĠDACA":12215,"Ġsteering":12216,"Ġfootprint":12217,"ĠRoma":12218,"ĠDucks":12219,"ĠEllen":12220,"ĠProfessional":12221,"ĠGardens":12222,"Ġgoalie":12223,"Ġshine":12224,"Ġturmoil":12225,"Ġhunger":12226,"ĠâĢĭ":12227,"active":12228,"hey":12229,"Ġblessed":12230,"ason":12231,"oping":12232,"ĠThousands":12233,"Ġdose":12234,"ĠLor":12235,"Ġevolved":12236,"Ġcharities":12237,"ĠPE":12238,"ĠRub":12239,"ws":12240,"Ġmist":12241,"ĠShen":12242,"Ġbiological":12243,"ĠTweet":12244,"Ġcollections":12245,"Ġsubstantially":12246,"inner":12247,"Ġbattled":12248,"ĠCong":12249,"Hold":12250,"wp":12251,"Ġwells":12252,"Ġsake":12253,"Ġunrest":12254,"ĠKurt":12255,"Ġripped":12256,"itation":12257,"Ġneighbourhood":12258,"Ġinv":12259,"Ġcad":12260,"ĠCuban":12261,"ĠWealth":12262,"Ġtuition":12263,"Ġdeclaring":12264,"sch":12265,"orne":12266,"Ġwondered":12267,"ĠChaff":12268,"Ġdealer":12269,"ĠNumber":12270,"Mobile":12271,"Ġscratch":12272,"Ġprepares":12273,"ĠSens":12274,"ĠIstanbul":12275,"ĠPanama":12276,"ĠCay":12277,"Ġallocation":12278,"itutional":12279,"Ġhar":12280,"ĠNazi":12281,"ĠSund":12282,"Ġwarehouse":12283,"Ġbackyard":12284,"ĠIll":12285,"Ġunlawful":12286,"ĠReform":12287,"Ġbasement":12288,"ĠHi":12289,"ĠPictures":12290,"Ġtransfers":12291,"ĠSell":12292,"Ġfluid":12293,"Ġambitions":12294,"wife":12295,"Ġintensive":12296,"Ġsteals":12297,"Ġfestive":12298,"ĠHayes":12299,"Ġrestoration":12300,"Ġbranded":12301,"Journal":12302,"Ġmacro":12303,"Ġconsole":12304,"ĠMelania":12305,"ĠRahul":12306,"Ġdisposal":12307,"Ġcult":12308,"Ġpetrol":12309,"Ġtires":12310,"Ġkidnapping":12311,"Ġ115":12312,"Ġswap":12313,"ĠSud":12314,"Ġblown":12315,"ĠHindu":12316,"ĠBeckham":12317,"ĠGul":12318,"Ġfixture":12319,"Ġwisdom":12320,"Ġmines":12321,"fort":12322,"Ġrivers":12323,"ĠCyber":12324,"Ġtouches":12325,"race":12326,"Ġrelax":12327,"Ġcrashes":12328,"Ġconstituency":12329,"Ġ1979":12330,"Ġbureau":12331,"Ġinterface":12332,"Ġdetected":12333,"ĠBio":12334,"Ġhighlighting":12335,"ames":12336,"Ġcorresponding":12337,"great":12338,"Ġgray":12339,"Ġadvantages":12340,"ĠME":12341,"ĠAbbas":12342,"Ġnaked":12343,"rington":12344,".),":12345,"ĠFace":12346,"third":12347,"Ġtranscript":12348,"ples":12349,"Good":12350,"ĠArctic":12351,"Ġtolerance":12352,"reat":12353,"green":12354,"ĠMik":12355,"Ġoutreach":12356,"Ġrolls":12357,"Ġgen":12358,"Ġsupplied":12359,"Ġguarantees":12360,"aug":12361,"Ġsemif":12362,"ounds":12363,"running":12364,"Ġfitting":12365,"ĠRisk":12366,"iveness":12367,"family":12368,"Ġti":12369,"ĠIsaac":12370,"Ġdump":12371,"ĠPatricia":12372,"Ġpassport":12373,"ĠRhode":12374,"Who":12375,"log":12376,"Ġstat":12377,"Ġrat":12378,"ango":12379,"SB":12380,"ĠMaur":12381,"Ġsmiling":12382,"Ġstrikeouts":12383,"Ġpupils":12384,"Ġcomplications":12385,"ĠAdvanced":12386,"ĠMonetary":12387,"ĠTall":12388,"ĠALL":12389,"Ġcontributor":12390,"ĠAdvertising":12391,"Ġhorrific":12392,"Ġcompeted":12393,"ĠKenneth":12394,"Ġhailed":12395,"Ġbones":12396,"Ġbolster":12397,"ĠBoss":12398,"Ġhospitalized":12399,"ĠTelegraph":12400,"ĠIndependence":12401,"Ġdr":12402,"ĠHang":12403,"Ġdocumented":12404,"Ġsubtle":12405,"invest":12406,"Ġbounced":12407,"ĠMAN":12408,"Ġprofession":12409,"Ń":12410,"Ġexcellence":12411,"ĠInspector":12412,"ĠBL":12413,"Ġdisrupt":12414,"ĠWinston":12415,"ĠCommunist":12416,"ĠSharon":12417,"Ġmechanical":12418,"Ġtreats":12419,"Ġdesperately":12420,"ĠIndy":12421,"ĠGi":12422,"ĠComposite":12423,"ĠHeath":12424,"aser":12425,"ĠCardiff":12426,"ilit":12427,"Ġeased":12428,"Ġprospective":12429,"Ġcommissioned":12430,"Ġtire":12431,"Ġalign":12432,"Ġgesture":12433,"Ġweakened":12434,"URE":12435,"SN":12436,"Ġnationals":12437,"Ġrelies":12438,"ĠIRS":12439,"ĠCount":12440,"Ġmedicines":12441,"Ġcongress":12442,"Ġstranger":12443,"Qu":12444,"lessly":12445,"ĠQueens":12446,"ĠAlleg":12447,"uing":12448,"ĠWy":12449,"ĠMiguel":12450,"idi":12451,"Ġcivic":12452,"ĠPetro":12453,"endo":12454,"Obviously":12455,"Ġreflection":12456,"ĠStop":12457,"ĠFitzgerald":12458,"placed":12459,"shore":12460,"Ġcorrectly":12461,"ĠNE":12462,"amy":12463,"ĠCT":12464,"some":12465,"ĠMb":12466,"oi":12467,"ĠHogan":12468,"ĠInnovation":12469,"ĠVilla":12470,"ĠCAN":12471,"ĠCemetery":12472,"into":12473,"Ġquestionable":12474,"Ġcreator":12475,"rug":12476,"Ġsemifinals":12477,"mission":12478,"Ġcle":12479,"ĠWaters":12480,"ĠNixon":12481,"ĠBT":12482,"Ġassuming":12483,"ĠJer":12484,"ĠClay":12485,"pack":12486,"ĠCool":12487,"may":12488,"Ġdecor":12489,"Ġspike":12490,"ĠSomalia":12491,"ĠKarn":12492,"ĠDamascus":12493,"Shares":12494,"Ġsus":12495,"ĠMoss":12496,"Ġ1985":12497,"Ġsuperintendent":12498,"ĠResults":12499,"Ġspends":12500,"prom":12501,"Ġshipped":12502,"Ġlaundering":12503,"ĠLeslie":12504,"Ġmeteor":12505,"Ġabandon":12506,"Ġdeliberately":12507,"ĠSentinel":12508,"Ġfascinating":12509,"Ġenrollment":12510,"ĠExperts":12511,"ĠSimilarly":12512,"ĠCuomo":12513,"bor":12514,"Ġune":12515,"neutral":12516,"Ġhamstring":12517,"Ġnegotiated":12518,"zes":12519,"ĠLeo":12520,"ĠDoctor":12521,"Ġcurriculum":12522,"ĠFocus":12523,"Ġtravels":12524,"Ġbeverage":12525,"ĠIncluding":12526,"tz":12527,"type":12528,"ĠRange":12529,"Ġfloods":12530,"Ġcoached":12531,"Ġdominance":12532,"letico":12533,"ĠRafael":12534,"Ġpredictions":12535,"Ġprosperity":12536,"ĠCav":12537,"Ġclinics":12538,"ĠBanking":12539,"ĠComing":12540,"ears":12541,"ĠKaepernick":12542,"ĠBlvd":12543,"Ġretained":12544,"isions":12545,"Ġko":12546,"Ġensemble":12547,"Ġprecise":12548,"Ġcompact":12549,"MD":12550,"ĠJet":12551,"ached":12552,"ĠTru":12553,"ĠBass":12554,"ĠIcon":12555,"Ġexcluding":12556,"sur":12557,"Ġconstruct":12558,"Ġvoiced":12559,"pan":12560,"Ġinability":12561,"Ġexc":12562,"Ġmate":12563,"Ġtrailing":12564,"Ġsuccessive":12565,"Ġbets":12566,"Ġgauge":12567,"Ġminorities":12568,"ĠIND":12569,"ĠVel":12570,"ĠGP":12571,"oid":12572,"bon":12573,"Ġpred":12574,"Ġdash":12575,"Ġperformer":12576,"Ġoccasional":12577,"aken":12578,"mes":12579,"America":12580,"Ġliver":12581,"Sp":12582,"Big":12583,"Ġwildfires":12584,"ĠJackie":12585,"ĠLed":12586,"ĠFinland":12587,"Ġjurors":12588,"olic":12589,"urance":12590,"ĠEdge":12591,"open":12592,"Ġscenarios":12593,"Ġglory":12594,"entry":12595,"ĠCoffee":12596,"rep":12597,"ĠChand":12598,"ĠVas":12599,"ĠIslamabad":12600,"Ġbur":12601,"ĠFle":12602,"ĠEdition":12603,"Ġshoe":12604,"ï¸ı":12605,"**":12606,"tle":12607,"ĠEb":12608,"keeping":12609,"ĠBasketball":12610,"ĠVon":12611,"ĠCF":12612,"MENT":12613,"amm":12614,"ĠFernando":12615,"Ġcompares":12616,"ĠDouble":12617,"Ġconvictions":12618,"Ġatop":12619,"Ġcops":12620,"Ġremembers":12621,"Ġlacking":12622,"dom":12623,"itate":12624,"ĠBeauty":12625,"Ġdevelops":12626,"ĠGor":12627,"Ġfunctional":12628,"ĠCOUNTY":12629,"ĠUpon":12630,"Ġsprint":12631,"Ġinjection":12632,"Ġminors":12633,"ĠTamil":12634,"ĠGat":12635,"101":12636,"ety":12637,"Ġdrum":12638,"Ġtasked":12639,"Ġpact":12640,"Ġ170":12641,"MR":12642,"ĠRamos":12643,"Ġcandy":12644,"Sc":12645,"iced":12646,"Ġsupermarket":12647,"Ġworrying":12648,"Ġsellers":12649,"ĠTag":12650,".:":12651,"Ġmixture":12652,"oting":12653,"Bl":12654,"ĠLl":12655,"ĠJal":12656,"ican":12657,"ĠBid":12658,"country":12659,"ĠStrategy":12660,"Ġadverse":12661,"Ġplunged":12662,"ĠMit":12663,"Ġstark":12664,"aton":12665,"Ġbooking":12666,"Tr":12667,"Ġcontainers":12668,"Ġvintage":12669,"ĠPit":12670,"Ġsurfaced":12671,"Ġindependently":12672,"Ġdetection":12673,"ĠBeyon":12674,"Ġcasualties":12675,"Ġstabbing":12676,"oved":12677,"Ġbarred":12678,"Ġthereby":12679,"Ġpartnered":12680,"Ġposing":12681,"ĠShannon":12682,"ĠChapel":12683,"Ġtechnically":12684,"uous":12685,"»":12686,"ometer":12687,"Ġwildfire":12688,"share":12689,"heart":12690,"Ġammunition":12691,"Ġthrive":12692,"ĠStre":12693,"GP":12694,"cé":12695,"ĠMonaco":12696,"goal":12697,"ĠUm":12698,"ĠHSBC":12699,"ĠHilton":12700,"ĠViv":12701,"ĠKell":12702,"Ġdecisive":12703,"Ġmotive":12704,"amo":12705,"feld":12706,"ĠWH":12707,"iry":12708,"ulu":12709,"ĠSchneider":12710,"Ġcampaigning":12711,"Ġseparately":12712,"igo":12713,"ĠED":12714,"ĠRamirez":12715,"Ġmetro":12716,"ĠPatel":12717,"ĠChi":12718,"ĠAudi":12719,"Ġcharacteristics":12720,"Ġrestart":12721,"Ġkeyboard":12722,"ĠSD":12723,"his":12724,"biz":12725,"ĠSoft":12726,"ĠGrammy":12727,"Ġcontested":12728,"Ġweekends":12729,"Ġ112":12730,"Ġcycling":12731,"Ġhealthier":12732,"ija":12733,"Ġheader":12734,"Ġemploy":12735,"İ":12736,"Ġshortages":12737,"ĠAsk":12738,"ĠIvanka":12739,"Ġpartisan":12740,"Ġflowing":12741,"Ġcave":12742,"ENS":12743,"Ġups":12744,"read":12745,"ouch":12746,"Ġ102":12747,"Ġforming":12748,"bot":12749,"bie":12750,"Ġenrolled":12751,"Ġconcussion":12752,"Ġaffidavit":12753,"Ġmysterious":12754,"uries":12755,"ĠMang":12756,"Ġauthentic":12757,"Ġmetrics":12758,"ĠTwins":12759,"Ġprep":12760,"IJ":12761,"Ġdesired":12762,"ĠDiv":12763,"wall":12764,"ĠTab":12765,"Ġcompet":12766,"Ġrelied":12767,"Ġinequality":12768,"Ġmanual":12769,"ĠBucks":12770,"agging":12771,"Ġcorporation":12772,"Ġbanner":12773,"Ġgraphics":12774,"Ġaccurately":12775,"ĠMeeting":12776,"Ġconsult":12777,"ser":12778,"Ġprotesting":12779,"Ġhurting":12780,"omed":12781,"tes":12782,"Ġrode":12783,"Ġstartups":12784,"Ġhanding":12785,"ĠNest":12786,"Ġconsistency":12787,"anned":12788,"dem":12789,"ĠLyon":12790,"ĠCompetition":12791,"Ġtricky":12792,"Ġcos":12793,"ĠBengals":12794,"arry":12795,"Ġunderwent":12796,"ĠKit":12797,"à":12798,"uploads":12799,"Ġskate":12800,"Ġ''":12801,"Ġjun":12802,"ĠContent":12803,"focused":12804,"lat":12805,"ĠExp":12806,"ought":12807,"Ġnightmare":12808,"ĠExpect":12809,"Ġprecisely":12810,"ĠMonica":12811,"Ġlobbying":12812,"ĠChester":12813,"ĠInvest":12814,"Former":12815,"Ġimminent":12816,"ĠNL":12817,"Ġcomparing":12818,"ĠChes":12819,"ede":12820,"ĠNobel":12821,"mers":12822,"ĠKin":12823,"ĠBoko":12824,"ount":12825,"Ġthoroughly":12826,"Ġscattered":12827,"sharing":12828,"markets":12829,"ĠMis":12830,"Ġambition":12831,"Ġpreference":12832,"Ġeffectiveness":12833,"rio":12834,"Ġheavyweight":12835,"Ġovert":12836,"anya":12837,"ĠKanye":12838,"ishi":12839,"Ġrewards":12840,"uled":12841,"bach":12842,"Ġemphasized":12843,"Ġapologize":12844,"ĠRecent":12845,"!!":12846,"Ġanimated":12847,"ĠExxon":12848,"Ġfruits":12849,"Ġstripped":12850,"fold":12851,"ĠIndonesian":12852,"ller":12853,"Ġdementia":12854,"Ġkidney":12855,"Ġhalted":12856,"years":12857,"Ġconcerts":12858,"Ġrefers":12859,"ĠFri":12860,"Your":12861,"irl":12862,"Ġleap":12863,"jud":12864,"ĠHugh":12865,"ĠFO":12866,"Ġsore":12867,"Ġkil":12868,"ĠMate":12869,"cci":12870,"Ġsetback":12871,"Ġtightening":12872,"keeper":12873,"ĠAlbany":12874,"Ġpolicymakers":12875,"Ġdisorders":12876,"ĠCBC":12877,"ĠDiaz":12878,"Ġmaps":12879,"Ġroutinely":12880,"Ġverify":12881,"Ġbash":12882,"ĠJinping":12883,"Ġdisasters":12884,"ĠMonroe":12885,"ĠLouise":12886,"JP":12887,"ĠNevertheless":12888,"Ġconcessions":12889,"ĠPog":12890,"going":12891,"ĠFifth":12892,"ĠJill":12893,"ICT":12894,"ĠFM":12895,"ĠSugar":12896,"ĠBarb":12897,"Ġmidway":12898,"Ġtin":12899,"ĠPic":12900,"ĠPL":12901,"Ġleaks":12902,"Ġgrief":12903,"Ġtattoo":12904,"`":12905,"Ġment":12906,"ĠNu":12907,"Ġmarry":12908,"Ġdiving":12909,"Ġ1982":12910,"Ġcoin":12911,"ĠPoc":12912,"Ġstarred":12913,"ĠRiverside":12914,"Ġsidelined":12915,"Ġminers":12916,"STON":12917,"Ġbelongs":12918,"ĠSantos":12919,"ĠTechnical":12920,"aco":12921,"Ġadvise":12922,"Ġstreams":12923,"Ġcooler":12924,"ĠHE":12925,"Ġordering":12926,"ĠTask":12927,"ĠACT":12928,"ĠAnton":12929,"Ġcertification":12930,"ĠLeafs":12931,"ĠTS":12932,"ĠSerbia":12933,"azi":12934,"inks":12935,"ĠEST":12936,"Ġrelay":12937,"°":12938,"Ġdisappearance":12939,"ĠRomania":12940,"Ġoven":12941,"Ġowed":12942,"ĠStrip":12943,"ulated":12944,"UC":12945,"ITE":12946,"bling":12947,"Then":12948,"ppy":12949,"Ġunlimited":12950,"Ġcalories":12951,"Ġmerchandise":12952,"Ġblonde":12953,"ĠSpicer":12954,"performing":12955,"Ġimpl":12956,"Ġplates":12957,"Ġmosque":12958,"Ġdemon":12959,"Ġought":12960,"Ġdumped":12961,"Ġtracked":12962,"even":12963,"Ġstabil":12964,"imet":12965,"ĠLiga":12966,"ugh":12967,"ther":12968,"agar":12969,"Ġarchitect":12970,"Ġallocated":12971,"ĠJoey":12972,"Ġmarathon":12973,"master":12974,"ĠBert":12975,"Ġast":12976,"ĠEbola":12977,"ĠConservation":12978,"nic":12979,"Ġparallel":12980,"Ġinmate":12981,"Ġlocate":12982,"Ġdistribute":12983,"guard":12984,"Ġtackling":12985,"ential":12986,"Ġvi":12987,"Ġcups":12988,"Ġrhythm":12989,"Ġendured":12990,"ĠHub":12991,"ois":12992,"ĠLiberals":12993,"ĠRedskins":12994,"ĠEP":12995,"ĠKnox":12996,"fr":12997,"Ġmassacre":12998,"oka":12999,"Ġcompl":13000,"raft":13001,"ĠPublished":13002,"Ġattraction":13003,"ĠStephens":13004,"ility":13005,"ĠPul":13006,"ĠCapt":13007,"Ġexploded":13008,"Ġexceeded":13009,"lying":13010,"Ġcal":13011,"Mart":13012,"Ġpaintings":13013,"inate":13014,"ĠBrendan":13015,"Ġfortune":13016,"onductor":13017,"Ġphysicians":13018,"ĠStudy":13019,"ĠBul":13020,"ĠModern":13021,"HD":13022,"ĠBour":13023,"Ġtying":13024,"Ġ1967":13025,"Ġlighter":13026,"Ġtoss":13027,"inspired":13028,"Ġgreeted":13029,"Ġcycl":13030,"Ġverified":13031,"Ġmerit":13032,"sign":13033,"lder":13034,"Ġdebts":13035,"ĠSnyder":13036,"Ġamendments":13037,"Ġindicators":13038,"ĠDortmund":13039,"then":13040,"ĠListen":13041,"ĠFB":13042,"ref":13043,"ĠIoT":13044,"ĠBrewers":13045,"ĠLeadership":13046,"ĠNicolas":13047,"ĠBody":13048,"Ġsam":13049,"ĠAdvisor":13050,"Ġcord":13051,"Ġabuses":13052,"ĠPortuguese":13053,"Ġflown":13054,"VR":13055,"Ġconsumed":13056,"Ġreass":13057,"Ġalien":13058,"Ġrivalry":13059,"ĠREPORT":13060,"ĠRush":13061,"Ġdirecting":13062,"Ġsearches":13063,"ĠHP":13064,"ĠRoll":13065,"ĠFay":13066,"ĠClare":13067,"Ġhaul":13068,"Ġriot":13069,"Ġsettlements":13070,"Ġnorm":13071,"Ġaccelerated":13072,"ĠLok":13073,"Ġclever":13074,"Ġhyd":13075,"Ġstats":13076,"ĠHull":13077,"kers":13078,"Ġbuys":13079,"uter":13080,"Ġfue":13081,"https":13082,"UD":13083,"Ġisolation":13084,"Ġsuspend":13085,"ĠRules":13086,"ĠCircle":13087,"ĠHopefully":13088,"played":13089,"â̳":13090,"ĠPRE":13091,"sim":13092,"edd":13093,"ĠProperties":13094,"Ġbeans":13095,"Ġrevive":13096,"ĠBir":13097,"oug":13098,"Ġmob":13099,"Ġshowdown":13100,"iman":13101,"Ġpap":13102,"Ġvol":13103,"wu":13104,"Ġdiver":13105,"Ġpill":13106,"ĠMarlins":13107,"ĠLamar":13108,"Ġpersistent":13109,"Ġcondolences":13110,"ĠThor":13111,"Ab":13112,"Ġimpress":13113,"ĠRaptors":13114,"Ġreferences":13115,"Ġstiff":13116,"ĠBash":13117,"eding":13118,"Ġmurders":13119,"ĠGene":13120,"ĠManila":13121,"Ġbrokers":13122,"Ms":13123,"start":13124,"ĠDhabi":13125,"etz":13126,"Ġsubmission":13127,"ĠSchmidt":13128,"ĠPersonal":13129,"ĠBeverly":13130,"ĠMovie":13131,"ĠLamb":13132,"Ġplacement":13133,"Ġfolk":13134,"Ġfrequency":13135,"Ġplanted":13136,"Ġtwins":13137,"prov":13138,"rec":13139,"Ġpermanently":13140,"Ġcoordination":13141,"ĠCart":13142,"Ġobstacles":13143,"Ġliterature":13144,"Ġtu":13145,"Ġchill":13146,"ĠReserved":13147,"Ġlovers":13148,"ĠOutside":13149,"Ġslideshow":13150,"ĠGru":13151,"Ġty":13152,"Ġsalad":13153,"Ġlaboratory":13154,"ĠHolt":13155,"Ġ103":13156,"urb":13157,"ĠOrganisation":13158,"ĠAndrews":13159,"Ġrecipient":13160,"arch":13161,"Ġbleeding":13162,"ĠPand":13163,"Ġoverturned":13164,"Ġlistened":13165,"Ġclause":13166,"Ġnationalist":13167,"Ġresumed":13168,"ĠCout":13169,"ĠPride":13170,"Ġlayers":13171,"ĠBella":13172,"Ġreversed":13173,"Ġpriest":13174,"ĠFX":13175,"Ġalbeit":13176,"Ġhalfway":13177,"Ġcotton":13178,"ĠCarey":13179,"ĠTE":13180,"OCK":13181,"Ġbuck":13182,"ributes":13183,"ea":13184,"Ġfancy":13185,"ĠBuc":13186,"Ġbans":13187,"uters":13188,"Ġliabilities":13189,"ĠSou":13190,"ĠBernie":13191,"Ġintervene":13192,"food":13193,"ĠNDP":13194,"Ġinsist":13195,"Ġcontracted":13196,"hawk":13197,"),\"":13198,"ĠDawn":13199,"Ġmol":13200,"Ġcommissioners":13201,"Ġstranded":13202,"Ġoverwhelmed":13203,"Ġrecipes":13204,"Ġva":13205,"Ġrad":13206,"Ġscare":13207,"rez":13208,"Ġeliminating":13209,"Ġresc":13210,"ĠBreak":13211,"chn":13212,"Ġdelight":13213,"iot":13214,"Ġfreely":13215,"TI":13216,"ĠBluetooth":13217,"ĠMonth":13218,"ĠFlor":13219,"ĠFreddie":13220,"Ġtrailed":13221,"Ġinvestigative":13222,"Ġimposing":13223,"Ġattracting":13224,"awk":13225,"ĠSherman":13226,"Ġsucceeded":13227,"Ġvent":13228,"Ġreconciliation":13229,"ĠCel":13230,"ĠThroughout":13231,"ĠDowntown":13232,"ĠBrother":13233,"Ġtraditions":13234,"Ġmir":13235,"Ġstamp":13236,"tery":13237,"etti":13238,"isch":13239,"tic":13240,"Ġbanning":13241,"loss":13242,"ĠSpeedway":13243,"Ġstalled":13244,"ĠEN":13245,"ASH":13246,"thing":13247,"ĠAppeals":13248,"rac":13249,"Ġdistress":13250,"ĠConservatives":13251,"ĠPremium":13252,"usa":13253,"Ġslump":13254,"imm":13255,"ĠSupp":13256,"ĠWong":13257,"Ġdistant":13258,"Ġ104":13259,"Ġtide":13260,"ĠNorfolk":13261,"ĠYang":13262,"Ġsmashed":13263,"ĠBarrett":13264,"inho":13265,"Ġrobbed":13266,"ĠFarmers":13267,"filled":13268,"BT":13269,"Ġautumn":13270,"Ġtemple":13271,"ĠJacobs":13272,"Ġprecipitation":13273,"ĠHours":13274,"ĠFlight":13275,"Ġbeside":13276,"ĠOre":13277,"!)":13278,"ĠTurnbull":13279,"Ġpig":13280,"Ġcooling":13281,"Ġservers":13282,"oriented":13283,"Ġlocks":13284,"ĠSears":13285,"aving":13286,"ĠQuick":13287,"ĠGlob":13288,"ĠMining":13289,"Ġhorizon":13290,"arians":13291,"ĠOm":13292,"writing":13293,"Ġbelieving":13294,"Ġbon":13295,"Ġmounted":13296,"Ġpunt":13297,"ucci":13298,"uzz":13299,"cul":13300,"Ġkiss":13301,"ĠOnt":13302,"ĠCyprus":13303,"Ġrelying":13304,"Ġpiano":13305,"Ġcure":13306,"Ġcontinuously":13307,"ĠNobody":13308,"ĠBund":13309,"osis":13310,"ĠAurora":13311,"ĠBach":13312,"ĠKendall":13313,"Ġechoed":13314,"iable":13315,"Ġconscious":13316,"Ġmonster":13317,"omo":13318,"proof":13319,"ĠNate":13320,"Ġfilmmaker":13321,"ĠNaj":13322,"Ġvendor":13323,"ĠFoot":13324,"ĠChang":13325,"ĠFest":13326,"Ġselfie":13327,"Ġenters":13328,"ĠConor":13329,"ĠMosul":13330,"ĠWHAT":13331,"Ġwa":13332,"ĠGamb":13333,"osta":13334,"Ġcautioned":13335,"ĠTucker":13336,"ĠAirways":13337,"Ġvisitor":13338,"Ġ·":13339,"ĠRevolution":13340,"aching":13341,"Ġearliest":13342,"ĠQuality":13343,"Ġshorts":13344,"ube":13345,"ĠOperation":13346,"ĠSabha":13347,"Ġstrengths":13348,"ikes":13349,"Ġsexy":13350,"Ġrot":13351,"ibles":13352,"Ġcolours":13353,"THE":13354,"ailed":13355,"Ġwoke":13356,"ĠEmbassy":13357,"Ġinfamous":13358,"rov":13359,"State":13360,"â̦.":13361,"Ġpond":13362,"Ġcapt":13363,"fore":13364,"De":13365,"Ġedited":13366,"self":13367,"Hey":13368,"Ġportrait":13369,"ĠManufact":13370,"ĠStand":13371,"Ġcontenders":13372,"':":13373,"acker":13374,"Ġwithdrawn":13375,"ĠBraves":13376,"ĠHosp":13377,"changing":13378,"ĠBag":13379,"Ġadjustment":13380,"ĠCousins":13381,"ĠAAP":13382,"Ġfi":13383,"Ġoutdoors":13384,"Ġlacked":13385,"BM":13386,"ĠWHO":13387,"ĠPST":13388,"ĠLuck":13389,"Ġassisting":13390,"ĠGround":13391,"ĠTeen":13392,"ĠOle":13393,"Ġembarrassing":13394,"ĠWalt":13395,"ĠVision":13396,"ĠFal":13397,"ĠZoo":13398,"ĠWorth":13399,"ĠFloyd":13400,"ĠGujarat":13401,"Ġtipped":13402,"Ġfam":13403,"ĠDad":13404,"Ġworship":13405,"Ġtyre":13406,"Ġrebuilding":13407,"Ġqualities":13408,"ĠLives":13409,"Ġbeats":13410,"Ġ450":13411,"Ġexisted":13412,"ĠGeorg":13413,"Ġpoured":13414,"rows":13415,"ĠOx":13416,"ĠSid":13417,"Ġmac":13418,"Ġteaches":13419,"ĠEli":13420,"alla":13421,"Ġdownside":13422,"ĠBend":13423,"non":13424,"ĠArmenia":13425,"Ġcultures":13426,"ĠMae":13427,"Ġduration":13428,"ĠAthletics":13429,"Ġjuvenile":13430,"Ġlid":13431,"Ġbankers":13432,"Ġoverview":13433,"wy":13434,"Ġorbit":13435,"Vs":13436,"because":13437,"Ps":13438,"ĠFran":13439,"Ġtouring":13440,"Ġwary":13441,"Ġ106":13442,"Ġlaser":13443,"ĠVij":13444,"âĦ¢":13445,"Ġsurrender":13446,"press":13447,"rees":13448,"NO":13449,"ĠShortly":13450,"ĠKor":13451,"edu":13452,"Ġhatred":13453,"Ġtee":13454,"Ġfamously":13455,"Ġkeeper":13456,"ND":13457,"Ġreduces":13458,"HC":13459,"Ġhay":13460,"Ġunnamed":13461,"ĠTes":13462,"Ġattackers":13463,"ĠFew":13464,"ĠRichards":13465,"Ġ1968":13466,"Ġspeeches":13467,"Ġcybersecurity":13468,"ĠInfrastructure":13469,"Ġ07":13470,"ENCE":13471,"uties":13472,"Ġanxious":13473,"ĠGang":13474,"Ġannouncements":13475,"lette":13476,"oret":13477,"ĠRockies":13478,"ĠEmployees":13479,"ĠThrones":13480,"Ġhugely":13481,"Ġclin":13482,"ĠHob":13483,"Ġfraction":13484,"ĠOfficial":13485,"ĠMariners":13486,"ĠElse":13487,"Ġsanctuary":13488,"ĠPhotograph":13489,"Ġreopen":13490,"lf":13491,"hm":13492,"vest":13493,"Ġspeeding":13494,"Ġtooth":13495,"ĠShi":13496,"ĠTitle":13497,"ĠMes":13498,"ĠJobs":13499,"fair":13500,"ĠDanish":13501,"ĠMalik":13502,"Ġlaughed":13503,"Ġnavy":13504,"ĠActress":13505,"ĠWilliamson":13506,"overs":13507,"Ġreckless":13508,"Ġjo":13509,"otic":13510,"Ġassaulting":13511,"Ġpri":13512,"ĠPi":13513,"Ġlesser":13514,"Ġtit":13515,"Ġdat":13516,"Ġnail":13517,"ĠMarathon":13518,"ĠGren":13519,"ĠDol":13520,"Ġjointly":13521,"Ġamended":13522,"mine":13523,"ĠBashar":13524,"ĠHyundai":13525,"Ġuncovered":13526,"Ġeducated":13527,"atti":13528,"pres":13529,"ĠBRE":13530,"Ġya":13531,"Bank":13532,"odd":13533,"lit":13534,"ĠLinks":13535,"Ġswitching":13536,"itte":13537,"ĠSind":13538,"erved":13539,"Ġ**":13540,"Ġpositively":13541,"Ġfrankly":13542,"Ġrevenge":13543,"ĠTrinity":13544,"ĠCDC":13545,"Ġthreatens":13546,"Ġhammer":13547,"NET":13548,"ĠMut":13549,"Ġsy":13550,"Ġunidentified":13551,"icken":13552,"Ġdrills":13553,"Ġtense":13554,"Ġforeigners":13555,"OST":13556,"Ġethical":13557,"ĠDurham":13558,"ĠQual":13559,"Ġterritories":13560,"Ġid":13561,"hor":13562,"enders":13563,"Mc":13564,"OV":13565,"percent":13566,"Ġdom":13567,"Ġupward":13568,"Ġamb":13569,"Ġvisas":13570,"zan":13571,"Ãĥ":13572,"Ġundocumented":13573,"Ġsuburbs":13574,"Ġhydro":13575,"ĠJob":13576,"ĠAdelaide":13577,"oya":13578,"ĠSR":13579,"ĠMick":13580,"Ġconsolidation":13581,"Ġemotionally":13582,"ĠHop":13583,"Her":13584,"Ġloses":13585,"ĠMoto":13586,"eled":13587,"Ġregulated":13588,"ental":13589,"Ġencountered":13590,"Ġhop":13591,"ĠTrafford":13592,"Ġsticks":13593,"Ġveto":13594,"Ġexpose":13595,"Ġstretched":13596,"fin":13597,"inance":13598,"chair":13599,"ĠGareth":13600,"ĠPil":13601,"ĠHammond":13602,"Ġserial":13603,"omy":13604,"Ġcellphone":13605,"ĠClara":13606,"Ġreacted":13607,"ĠNic":13608,"ĠHomes":13609,"ĠBroadcasting":13610,"ĠFut":13611,"ĠSupply":13612,"assing":13613,"ĠNewman":13614,"Ġcharitable":13615,"ĠClayton":13616,"Ġsovereignty":13617,"Ġconvincing":13618,"ĠPrincipal":13619,"ĠHigher":13620,"ĠCut":13621,"ĠCarrie":13622,"ĠSpot":13623,"Sometimes":13624,"ĠJar":13625,"ĠConsider":13626,"ieu":13627,"Ġrefinery":13628,"Ġbloody":13629,"wheel":13630,"Ġcryptocurrencies":13631,"Fund":13632,"ĠSunderland":13633,"ĠEvents":13634,"âĢĭ":13635,"Ġaccidentally":13636,"deep":13637,"Ġfranc":13638,"bec":13639,"ĠHartford":13640,"Ġstellar":13641,"wright":13642,"kick":13643,"UG":13644,"ĠBeast":13645,"Ġrefusal":13646,"ĠRoberto":13647,"ĠDixon":13648,"ĠDiane":13649,"name":13650,"asts":13651,"ĠCharter":13652,"Ġfueled":13653,"Ġcontents":13654,"Ġaccessing":13655,"Ġtroubles":13656,"Ġtops":13657,"Ġdebuted":13658,"icating":13659,"Ġinvestigator":13660,"Ġsubscribing":13661,"Ġcoordinated":13662,"ĠFil":13663,"six":13664,"teen":13665,"Ġwithdrew":13666,"ĠGilbert":13667,"Ġ1983":13668,"arsity":13669,"Ġimagination":13670,"Ġhandgun":13671,"ĠAlibaba":13672,"Ġbug":13673,"Ġ107":13674,"ĠCOMP":13675,"ĠSomething":13676,"Ġreliability":13677,"ĠFCC":13678,"ĠFowler":13679,"Ġsingled":13680,"nom":13681,"Ġknocking":13682,"Ġmeddling":13683,"Ġdetermining":13684,"reports":13685,"Ġshade":13686,"ĠSN":13687,"anto":13688,"Ġcomplaining":13689,"ĠNan":13690,"WS":13691,"Ġyoungsters":13692,"Il":13693,"ĠKaw":13694,"ĠProp":13695,"ĠCell":13696,"ĠHurricanes":13697,"Ġpublicity":13698,"ĠXin":13699,"rial":13700,"ICO":13701,"Ġsupervision":13702,"ĠSpotify":13703,"ĠNewport":13704,"Ġprince":13705,"anche":13706,"Ġsubscriber":13707,"ĠVic":13708,"ACT":13709,"ĠRaf":13710,"ĠActing":13711,"Ġcollusion":13712,"pet":13713,"isl":13714,"Ġcommerce":13715,"Health":13716,"ĠAbraham":13717,"pri":13718,"Ġlightweight":13719,"Ġinsurer":13720,"Like":13721,"Ġhelmet":13722,"Ġevac":13723,"look":13724,"ĠNaval":13725,"160":13726,"ĠFleet":13727,"vol":13728,"Ġexpired":13729,"ĠKlein":13730,"ĠEmmy":13731,"ABLE":13732,"ĠMorocco":13733,"ĠTrip":13734,"uted":13735,"Ġnos":13736,"ĠVista":13737,"mas":13738,"ĠRocky":13739,"ĠFlint":13740,"enberg":13741,"ĠBrow":13742,"Ġsignatures":13743,"Ġpolar":13744,"ajo":13745,"Ġendorsement":13746,"Ġreservations":13747,"LIN":13748,"anny":13749,"elli":13750,"last":13751,"Ġoversee":13752,"cm":13753,"ĠOilers":13754,"Are":13755,"Ġjudiciary":13756,"onte":13757,"ĠTrack":13758,"Ġsupervisor":13759,"erk":13760,"isher":13761,"Ġintact":13762,"Ġslid":13763,"icals":13764,"paid":13765,"ĠMAR":13766,"lement":13767,"ĠLiu":13768,"ĠLarge":13769,"ĠWings":13770,"pect":13771,"ĠRum":13772,"Ġanalyzed":13773,"Ġemploys":13774,"arte":13775,"ims":13776,"ĠEventually":13777,"Ġaffiliated":13778,"Ġhospitality":13779,"ĠSprint":13780,"Ġresolutions":13781,"Ġliquor":13782,"ĠNAFTA":13783,"ANY":13784,"Ġradiation":13785,"ĠProv":13786,"Ġpause":13787,"ĠTMZ":13788,"Ġelbow":13789,"Ġresilience":13790,"ĠParents":13791,"mus":13792,"ĠSafe":13793,"Ġinterpretation":13794,"Ġraced":13795,"IND":13796,"KR":13797,"Ġhinted":13798,"ĠErin":13799,"ĠBahrain":13800,"Ġcredentials":13801,"eless":13802,"Ġprocurement":13803,"ĠWebb":13804,"ĠLowe":13805,"ĠNak":13806,"ĠLearning":13807,"zh":13808,"Ġdipped":13809,"ĠSuite":13810,"Ġmisdemeanor":13811,"ALE":13812,"Ġstrengthened":13813,"ĠSophie":13814,"Ġconfirms":13815,"Ġrac":13816,"gey":13817,"Ġshootout":13818,"Ġble":13819,"Ġcircles":13820,"ĠChef":13821,"Ġcomprised":13822,"ĠSantiago":13823,"Ġfeud":13824,"beat":13825,"Ġstaffers":13826,"Ġacute":13827,"ski":13828,"Ġpolled":13829,"ĠKur":13830,"ĠJen":13831,"ĠUltimately":13832,"anded":13833,"ĠHoney":13834,"Ġannounces":13835,"Ġamateur":13836,"around":13837,"Ġfunctioning":13838,"group":13839,"ĠSqu":13840,"Where":13841,"Ġvoid":13842,"ĠSandra":13843,"isers":13844,"Ġhelicopters":13845,"ĠGym":13846,"ĠWol":13847,"mouth":13848,"Ġsubjected":13849,"ici":13850,"ually":13851,"ĠWash":13852,"ĠLindsay":13853,"ĠVers":13854,"Ġjumps":13855,"Ġneglect":13856,"ĠKuwait":13857,"fund":13858,"ĭ":13859,"ather":13860,"lly":13861,"ei":13862,"Although":13863,".''":13864,"Ġunhappy":13865,"Ġpills":13866,"Ġmagical":13867,"Ġdro":13868,"Ġinviting":13869,"ĠJohnston":13870,"oving":13871,"450":13872,"ĠMerc":13873,"Ġadmitting":13874,"Ġinsisting":13875,"ĠCru":13876,"ĠResource":13877,"oir":13878,"Ġcomplexity":13879,"ĠRoth":13880,"ĠCher":13881,"July":13882,"raf":13883,"Ġaggregate":13884,"Ġhelm":13885,"uclear":13886,"olan":13887,"Ġoffenses":13888,"ĠWolves":13889,"ĠFu":13890,"ĠPierce":13891,"Ġemailed":13892,"ĠStra":13893,"Ġpedestrians":13894,"ĠER":13895,"ĠConway":13896,"Ġblowing":13897,"CLOSE":13898,"hab":13899,"ĠGreene":13900,"Ġconfessed":13901,"ĠTorres":13902,"ĠHolocaust":13903,"Ġrepay":13904,"Ġdemonstrates":13905,"ĠPool":13906,"gent":13907,"Ġdeleted":13908,"Ġ$$":13909,"ĠSO":13910,"Ġdri":13911,"ĠNeg":13912,"ĠVP":13913,"ĠPF":13914,"ĠPrep":13915,"Ġorganizing":13916,"icker":13917,"Ġmanufactured":13918,"enson":13919,"adas":13920,"Ġwines":13921,"Ġmachinery":13922,"Ġspecialists":13923,"ĠDetective":13924,"ĠDL":13925,"Op":13926,"Ġquicker":13927,"ĠPenguins":13928,"Engine":13929,"zone":13930,"Ġsequence":13931,"ĠLost":13932,"Ġwarmer":13933,"ĠEthiopia":13934,"Ġaffirmed":13935,"fest":13936,"resses":13937,"Ġsoap":13938,"Ġbooth":13939,"Ġnotorious":13940,"amin":13941,"Ġpursued":13942,"ĠCer":13943,"ĠSB":13944,"Ġlivestock":13945,"Ġtrace":13946,"Ġrespects":13947,"arden":13948,"April":13949,"Ġ128":13950,"ĠSaid":13951,"ennial":13952,"Ġnamely":13953,"ĠBot":13954,"Ġ108":13955,"ĠLem":13956,"nell":13957,"Ġconfirming":13958,"Ġlogged":13959,"Ġprofound":13960,"elo":13961,"ĠChambers":13962,"RT":13963,"Ġnewer":13964,"Ġsideline":13965,"ĠCardinal":13966,"este":13967,"Ġnarrowly":13968,"Ġcompromised":13969,"Ġpolicing":13970,"Ġporn":13971,"Ġarc":13972,"Ġlearnt":13973,"INE":13974,"step":13975,"ĠDomin":13976,"Ġwaist":13977,"Ġboycott":13978,"mitted":13979,"iffs":13980,"ground":13981,"ĠMaterials":13982,"Ġceasefire":13983,"Right":13984,"ĠZen":13985,"estyle":13986,"Thank":13987,"ĠOnePlus":13988,"ĠMLS":13989,"Ġconstituents":13990,"oster":13991,"ĠProsecutor":13992,"Ġpriorit":13993,"ĠDebbie":13994,"ĠExpand":13995,"uv":13996,"Ġintegrate":13997,"Ġimmun":13998,"Ġdisciplinary":13999,"ĠImm":14000,"Ġja":14001,"Ġgardens":14002,"ĠHim":14003,"obe":14004,"Ġhitter":14005,"Ġbullets":14006,"Ġevolving":14007,"ĠScientists":14008,"Michael":14009,"ĠDO":14010,"Ġunbelievable":14011,"Ġlooming":14012,"Ġdownturn":14013,"Ġmentality":14014,"Ġreopened":14015,"Ġash":14016,"ĠChapman":14017,"Ġloop":14018,"ĠUT":14019,"ĠTier":14020,"Ġunaware":14021,"Ġgratitude":14022,"Ġperforms":14023,"olk":14024,"Ġ\"(":14025,"Ġlacks":14026,"Ġinstructed":14027,"ĠRecreation":14028,"sample":14029,"Ġrequesting":14030,"Canada":14031,"Ġsupposedly":14032,"ĠHardy":14033,"Ġholder":14034,"change":14035,"ĠDominic":14036,"ĠXavier":14037,"Ġlig":14038,"Ġcandid":14039,"ĠRab":14040,"Ġconferences":14041,"ĠBurton":14042,"Dr":14043,"Ġmunicipalities":14044,"Ġcrushed":14045,"Ġseekers":14046,"ĠCitizens":14047,"Ġheightened":14048,"ĠCasino":14049,"Ġdesktop":14050,"Ġwhoever":14051,"ĠImpact":14052,"Ġcocktail":14053,"Ġphilanthrop":14054,"ĠSAN":14055,"ĠPreston":14056,"Ġobesity":14057,"Ġrestrict":14058,"ĠKab":14059,"ĠProvidence":14060,"Ġscar":14061,"ĠChart":14062,"Ġbosses":14063,"ĠRate":14064,"Ġsav":14065,"pay":14066,"Ġtransplant":14067,"ĠNoble":14068,"child":14069,"Ġconclusions":14070,"FI":14071,"Ġsack":14072,"Ġexperimental":14073,"holder":14074,"oca":14075,"herty":14076,"ĠMT":14077,"Ġcatcher":14078,"LY":14079,"Ġgrams":14080,"reet":14081,"Ġadaptation":14082,"Ġhumble":14083,"Ġbot":14084,"Ġidentical":14085,"ication":14086,"ifer":14087,"ĠCrow":14088,"Ġregain":14089,"ĠLightning":14090,"Ġkg":14091,"Ġcomposed":14092,"Ġcorrespondent":14093,"Ġreunion":14094,"Ġobserve":14095,"Ġcomprising":14096,"Ġimpeachment":14097,"Ġresh":14098,"Ġlemon":14099,"ĠSnap":14100,"Ġproprietary":14101,"een":14102,"ourt":14103,"Ġdetective":14104,"Ġlabels":14105,"Ġcorridor":14106,"ĠClinic":14107,"Ġarra":14108,"ĠPearl":14109,"Ġinformal":14110,"ĠUnd":14111,"ĠVenezuelan":14112,"Ġpeninsula":14113,"Ġdefeating":14114,"Ġsyndrome":14115,"iere":14116,"Ġspite":14117,"bag":14118,"aran":14119,"Ġspecialized":14120,"ĠAA":14121,"ĠLyn":14122,"Ġinstrumental":14123,"Smith":14124,"Ġpivotal":14125,"Ġnightclub":14126,"ĠCob":14127,"Ġcolorful":14128,"Ġartwork":14129,"Ġ1981":14130,"Ġdawn":14131,"erville":14132,"uated":14133,"ief":14134,"Ġlinking":14135,"ĠOw":14136,"Ġappreci":14137,"Ġreductions":14138,"elling":14139,"Ġsalmon":14140,"bb":14141,"ĠPhillip":14142,"yle":14143,"Ġassure":14144,"Ġdiscretion":14145,"Ġefficiently":14146,"ĠMau":14147,"abil":14148,"Ġintentionally":14149,"Ġactivated":14150,"Ġimmense":14151,"ĠStrategic":14152,"Ġcheating":14153,"ĠTrend":14154,"ĠSamantha":14155,"Ġcomple":14156,"Ġhack":14157,"ĠSerie":14158,"ĠText":14159,"Ġstylish":14160,"ĠFaith":14161,"ĠGST":14162,"Ġexterior":14163,"Ġblessing":14164,"Ġblanket":14165,"Ġcooked":14166,"Ġretaliation":14167,"Ġtro":14168,"Ġshelves":14169,"rose":14170,"ĠGram":14171,"Ġsho":14172,"ĠArgentine":14173,"Ġclerk":14174,"specific":14175,"Ġagreeing":14176,"Ġstandout":14177,"black":14178,"Ġtrending":14179,"Ġviolate":14180,"Get":14181,"ño":14182,"ĠOpt":14183,"ĠFrankfurt":14184,"ĠFranco":14185,"eness":14186,"Ġlining":14187,"Ġzoo":14188,"oil":14189,"lia":14190,"rab":14191,"Ġorganize":14192,"Ġwoods":14193,"Ġscan":14194,"Ġurgency":14195,"Ġoccurring":14196,"Ġreliance":14197,"Ġconcepts":14198,"Ġeligibility":14199,"0000":14200,"ĠBrief":14201,"Ġabusive":14202,"ĠBench":14203,"Ġrub":14204,"ĠDil":14205,"Ġmount":14206,"Ġmaturity":14207,"ĠNut":14208,"nee":14209,"enc":14210,"Ġgunfire":14211,"ĠKill":14212,"Ġgates":14213,"Ġflower":14214,"iol":14215,"Ġshaped":14216,"Ġundoubtedly":14217,"Ġbackgrounds":14218,"ĠComplex":14219,"\":{\"":14220,"Ġnaming":14221,"Ġmonument":14222,"Ġoh":14223,"Ġembedded":14224,"Ġbang":14225,"ĠKro":14226,"Ġaggression":14227,"ĠMits":14228,"During":14229,"ĠEp":14230,"iners":14231,"ĠAnaheim":14232,"Ġrom":14233,"Ġoutgoing":14234,"Ġfulfill":14235,"Ġreminds":14236,"Ġren":14237,"à¤":14238,"ĠSue":14239,"Ġrefresh":14240,"Ġlif":14241,"Ġfil":14242,"ĠLead":14243,"Ġregulate":14244,"ĠTeachers":14245,"Ġclarify":14246,"obs":14247,"Ġblasted":14248,"ĠAx":14249,"Ġflavors":14250,"Ġmega":14251,"Ġhurdles":14252,"Ġinspector":14253,"ĠSalvador":14254,"Ġprescribed":14255,"Ġrenovation":14256,"OUR":14257,"Ġutil":14258,"ĠBradford":14259,"Ġwasted":14260,"Ġlineman":14261,"Ġpalm":14262,"icate":14263,"Ġoverseeing":14264,"otted":14265,"ĠRapids":14266,"Ġjustified":14267,"aby":14268,"Ġextends":14269,"Ġoath":14270,"bow":14271,"ĠRivera":14272,"Jan":14273,"ĠImran":14274,"Ġforests":14275,"ĠShel":14276,"ĠBrun":14277,"Ġaerial":14278,"ĠNOW":14279,"PAR":14280,"Ġbeverages":14281,"ettel":14282,"Ġfragile":14283,"Ġcodes":14284,"Į":14285,"abel":14286,"Watch":14287,"road":14288,"Ġdismissal":14289,"ĠRosa":14290,"Ġcrunch":14291,"²":14292,"Ġinnovations":14293,"Ġhabitat":14294,"Ġforefront":14295,"ĠKoch":14296,"ĠChevrolet":14297,"Ġwheelchair":14298,"Ġconsiderably":14299,"Ġexpenditures":14300,"Ġtexts":14301,"Ġprompt":14302,"Ġskating":14303,"Ġpetroleum":14304,"ĠICC":14305,"Ġvit":14306,"fit":14307,"Ġprolonged":14308,"ĠLucy":14309,"Ġcho":14310,"Ġrocked":14311,"ĠBrom":14312,"Ġfreed":14313,"Ġyours":14314,"ĠEden":14315,"Ġmonitored":14316,"asted":14317,"Ġoversees":14318,"ieri":14319,"Ġideology":14320,"ĠFine":14321,"tering":14322,"Top":14323,"Ġdamp":14324,"uta":14325,"Ġlethal":14326,"Ġpurple":14327,"udge":14328,"ĠChemical":14329,"ĠPetersburg":14330,"Ġwarns":14331,"Ġcollectively":14332,"Ġâ":14333,"Ġplaintiffs":14334,"ĠBoris":14335,"Ġsheep":14336,"oves":14337,"ĠAuthor":14338,"Ġcampuses":14339,"Ġdestroying":14340,"Ġgloves":14341,"Ġcease":14342,"Ġdelegates":14343,"Ġpreceded":14344,"realDonaldTrump":14345,"Ġforwards":14346,"erton":14347,"ĠBuzzFeed":14348,"Ġoccupation":14349,"ĠLegion":14350,"Ġstir":14351,"Ġshale":14352,"Ġterrific":14353,"Ġnewborn":14354,"Ġstandoff":14355,"OWN":14356,"Ġmuscles":14357,"ĠHerman":14358,"ĠLiz":14359,"ĠExperience":14360,"ĠSuccess":14361,"ĠHispanic":14362,"ĠCCTV":14363,"Ġcomplement":14364,"ĠBing":14365,"Ġprem":14366,"ĠJohannes":14367,"Ġdent":14368,"itar":14369,"ĠHein":14370,"ĠNicola":14371,"Ġconcludes":14372,"ĠKhal":14373,"Ġparish":14374,"Ġshaking":14375,"ĠSchw":14376,"mod":14377,"ĠLil":14378,"ña":14379,"ĠBog":14380,"ĠFight":14381,"Ġgre":14382,"Ġfel":14383,"Ġheal":14384,"err":14385,"TM":14386,"airo":14387,"health":14388,"Ġswings":14389,"Ġtier":14390,"anka":14391,"ribune":14392,"emouth":14393,"ĠBloom":14394,"Ġowing":14395,"Tech":14396,"Ġdough":14397,"Ġbatch":14398,"ĠLion":14399,"ĠZamb":14400,"Ġcrashing":14401,"ĠXL":14402,"ppers":14403,"ĠDoctors":14404,"ĠSor":14405,"video":14406,"Ġcigarettes":14407,"ĠBoxing":14408,"Ġconstitute":14409,"Ġconcentrate":14410,"ĠArmenian":14411,"Ġsemester":14412,"position":14413,"emic":14414,"ĠNYC":14415,"ĠCampus":14416,"Ġalternate":14417,"Ġexped":14418,"Ġpublishers":14419,"2015":14420,"Ġunanimous":14421,"ĠPrevious":14422,"Ġwellness":14423,"ĠCreative":14424,"edy":14425,"AGE":14426,"ĠCavs":14427,"Ġ1978":14428,"Ġfu":14429,"ĠTata":14430,"ĠChoice":14431,"Ġwoes":14432,"ĠCable":14433,"Ġ~":14434,"ĠGem":14435,"Ġconsolidated":14436,"ĠManitoba":14437,"Cloud":14438,"Ġrounded":14439,"ĠVentura":14440,"Ġshark":14441,"Ġdresses":14442,"Ġtraction":14443,"eda":14444,"Ġdiv":14445,"Ġdental":14446,"Wh":14447,"ĠGig":14448,"ĠBoyd":14449,"ĠTransit":14450,"Ġtelevised":14451,"SON":14452,"ĠVince":14453,"Ġcloses":14454,"apt":14455,"ĠWheeler":14456,"ĠTyson":14457,"Ġforensic":14458,"Ġpunished":14459,"Ġseas":14460,"Ġnavigation":14461,"Ġprecedent":14462,"Ġextremist":14463,"Ġcomposite":14464,"PO":14465,"Ġsurvivor":14466,"ĠVale":14467,"gars":14468,"HT":14469,"ĠRiyadh":14470,"Ġrevival":14471,"ĠPayne":14472,"Ġcollaborative":14473,"ĠCustomers":14474,"ĠPf":14475,"Ġproves":14476,"erve":14477,"Ġelev":14478,"ĠPaper":14479,"Ġchore":14480,"Ġthriller":14481,"Ġstraw":14482,"cock":14483,"Gu":14484,"Ġaligned":14485,"ĠChronicle":14486,"Ġshouting":14487,"Ġ1976":14488,"Ġlightning":14489,"Ġworlds":14490,"ĠOpening":14491,"enton":14492,"ĠAna":14493,"ĠGol":14494,"ĠTechn":14495,"lis":14496,"Ġorientation":14497,"ĠArri":14498,"ĠPG":14499,"ross":14500,"Ġsank":14501,"LOS":14502,"ĠAllison":14503,"Ġsmiles":14504,"USD":14505,"Ġkits":14506,"Bar":14507,"ĠBri":14508,"Ġounces":14509,"ĠNielsen":14510,"eno":14511,"Ġ109":14512,"Ġnorms":14513,"Ġskip":14514,"180":14515,"Ġmonitors":14516,"2012":14517,"Ġincorporate":14518,"Ġmechanisms":14519,"ĠHack":14520,"ĠBomb":14521,"ĠGavin":14522,"ĠNatalie":14523,"Ġdiscusses":14524,"Ġassembled":14525,"Ġcognitive":14526,"owner":14527,"Ġgenuinely":14528,"Ġdisappear":14529,"ĠAK":14530,"Ġstal":14531,"Ġsoup":14532,"ĠFinn":14533,"Ġcares":14534,"Ġfinest":14535,"Ġtuned":14536,"ende":14537,"ĠStefan":14538,"Ġaccompanying":14539,"î":14540,"Maybe":14541,"Ġoffender":14542,"TT":14543,"Ġ212":14544,"Ġvolleyball":14545,"needed":14546,"Ġquo":14547,"Ġdim":14548,"ĠHistorical":14549,"ĠLance":14550,"gmail":14551,"ĠGate":14552,"Ġdemonstrators":14553,"Ġdy":14554,"cia":14555,"ĠSteele":14556,"ĠJoan":14557,"ĠKerala":14558,"KA":14559,"ĠElectoral":14560,"Ġpaths":14561,"ø":14562,"Ne":14563,"Ġaccepts":14564,"Ġlowering":14565,"Ġportions":14566,"ĠValencia":14567,"Ġfestivals":14568,"Ġgeneric":14569,"usk":14570,"ĠVernon":14571,"ĠOrioles":14572,"Ġrenewal":14573,"Ġbelonged":14574,"Ġbreathe":14575,"Ġ220":14576,"Ġrecruited":14577,"Ġlogic":14578,"Ġrecreation":14579,"Ġverbal":14580,"ĠHaz":14581,"double":14582,"Ġfavourites":14583,"Ġfundamentals":14584,"ĠSoc":14585,"360":14586,"SO":14587,"Ġalerted":14588,"Ġbriefed":14589,"ĠBruno":14590,"Ġseating":14591,"Ġfreight":14592,"ĠAmer":14593,"Ġwished":14594,"table":14595,"growth":14596,"ĠWent":14597,"Ġhilarious":14598,"Ġthroat":14599,"bet":14600,"gon":14601,"Ġample":14602,"hee":14603,"ĠHood":14604,"ĠIceland":14605,"ĠAnkara":14606,"iang":14607,"Ġpracticing":14608,"azer":14609,"Ġleaf":14610,"Ġhottest":14611,"Ġmarginal":14612,"Ġrevelations":14613,"ĠPrices":14614,"ĠLar":14615,"times":14616,"Ġhandles":14617,"ĠNaz":14618,"Ġinstitute":14619,"Ġtranslate":14620,"ĠJP":14621,"Ġsoared":14622,"Ġconsume":14623,"ĠTap":14624,"ĠCelebrity":14625,"ĠMayweather":14626,"ĠOracle":14627,"Ġmor":14628,"ANA":14629,"Ġpaperwork":14630,"aste":14631,"Ġdil":14632,"Ġdecorated":14633,"Ġpromotional":14634,"ĠMerrill":14635,"Ġappliances":14636,"ĠCOP":14637,"Ġlips":14638,"ĠBrennan":14639,"ĠMile":14640,"ĠNetworks":14641,"ĠComment":14642,"ĠIb":14643,"ĠAgg":14644,"IDE":14645,"Ġinitiate":14646,"Ġknockout":14647,"Ġbargain":14648,"Ġaccordingly":14649,"bee":14650,"ĠGerald":14651,"Ġproblematic":14652,"Ġtrap":14653,"Ġfinalists":14654,"addy":14655,"would":14656,"Ġstrictly":14657,"ĠRamsey":14658,"Ġdownward":14659,"Ġextract":14660,"Ġfamed":14661,"ĠOUT":14662,"Ġinduct":14663,"ĠAuckland":14664,"Ġpoetry":14665,"mos":14666,"ĠGuinea":14667,"management":14668,"ohan":14669,"ĠGuide":14670,"aily":14671,"umping":14672,"Ġenacted":14673,"ĠEye":14674,"vision":14675,"umi":14676,"aped":14677,"Ġbicycle":14678,"ĠHouth":14679,"ĠNAS":14680,"Ġtapped":14681,"wer":14682,"otti":14683,"EA":14684,"Ġsurprises":14685,"ĠUpdate":14686,"ĠPun":14687,"ĠMiz":14688,"ĠOro":14689,"Ġcostumes":14690,"title":14691,"Ġsurviving":14692,"According":14693,"themed":14694,"ĠPeoples":14695,"Se":14696,"Ġassociations":14697,"hett":14698,"Time":14699,"Ġessay":14700,"Ġmu":14701,"ĠScore":14702,"ĠSpani":14703,"ĠSEE":14704,"Ġmales":14705,"Ġrage":14706,"EU":14707,"ĠYellow":14708,"rupt":14709,"Ġapparel":14710,"Ġsweat":14711,"Ġnearest":14712,"zman":14713,"Ġanticipation":14714,"Ġinjuring":14715,"Ġousted":14716,"chan":14717,"ĠAlert":14718,"Ġber":14719,"atal":14720,"Com":14721,"Ġ04":14722,"Ġafterward":14723,"edge":14724,"ĠBooker":14725,"lex":14726,"ĠWhole":14727,"Ġtoughest":14728,"ĠMaharashtra":14729,"lier":14730,"ĠTennis":14731,"Ġhandy":14732,"ĠMetal":14733,"ĠiTunes":14734,"ĠDiscovery":14735,"Ġcompassion":14736,"ĠLIVE":14737,"Ġeconomically":14738,"Ġendangered":14739,"GO":14740,"Ġmound":14741,"word":14742,"ĠTouch":14743,"ogo":14744,"Ġincomes":14745,"when":14746,"ĠAside":14747,"Ġscandals":14748,"Ġfunctionality":14749,"ĠAer":14750,"Ġcouncils":14751,"Ġdenial":14752,"140":14753,"Ġimplied":14754,"Ġoutfits":14755,"Ġsuited":14756,"Ġ1973":14757,"ĠPizza":14758,"Ġdebates":14759,"record":14760,"Ġhype":14761,"ĠRus":14762,"ĠRobbie":14763,"Ġtouted":14764,"ĠSharp":14765,"Ġbeings":14766,"Ġslavery":14767,"encies":14768,"ĠRooney":14769,"Ġnan":14770,"Ġraids":14771,"Ġinstructor":14772,"Market":14773,"Ġshook":14774,"Ġdeliberate":14775,"ĠNorthwestern":14776,"ĠEss":14777,"Ġwhatsoever":14778,"ĠConfederate":14779,"YS":14780,"ĠCameroon":14781,"ĠFlip":14782,"Yeah":14783,"Ġwashing":14784,"mand":14785,"ĠLex":14786,"Ġissuance":14787,"Ġniche":14788,"Ġfold":14789,"ĠWendy":14790,"Ġhy":14791,"Ġbucket":14792,"ĠVW":14793,"ĠCairo":14794,"ĠSK":14795,"ĠKang":14796,"Ġintake":14797,"Ġhills":14798,"anz":14799,"©":14800,"ugu":14801,"ĠFortunately":14802,"ĠMarqu":14803,"Ġimprisonment":14804,"oking":14805,"Ġdistributors":14806,"zie":14807,"Ġstip":14808,"ĠWire":14809,"Ġcouncillors":14810,"Ġsue":14811,"ĠRegardless":14812,"ĠEnc":14813,"Ġbaking":14814,"ĠVenture":14815,"Ġintriguing":14816,"Ġupheld":14817,"ĠActive":14818,"Ġgenes":14819,"ĠDawson":14820,"ĠPreviously":14821,"ĠRac":14822,"Ġmetric":14823,"Files":14824,"ĠiPhones":14825,"ĠWelcome":14826,"Ġburns":14827,"ĠScreen":14828,"ashes":14829,"ĠApr":14830,"Ġtheories":14831,"san":14832,"ĠRenault":14833,"ĠSinger":14834,"Ġfounders":14835,"Russian":14836,"ĠBelfast":14837,"Ġimagined":14838,"ĠPlanet":14839,"ĠCatalan":14840,"ĠRochester":14841,"Ġevolve":14842,"ĠOT":14843,"Ġpassword":14844,"Ġhomelessness":14845,"Ġbacklog":14846,"Ġpresenter":14847,"Ġfal":14848,"ISH":14849,"ĠEM":14850,"icked":14851,"Ġunlock":14852,"city":14853,"Ġnegotiation":14854,"Ġdancers":14855,"dan":14856,"ĠCOL":14857,"VC":14858,"boat":14859,"Ġoverly":14860,"deal":14861,"lander":14862,"Ġdiss":14863,"ICS":14864,"Ġfifty":14865,"Ġowe":14866,"Ġprisons":14867,"ifications":14868,"wo":14869,"ĠAu":14870,"Ġapiece":14871,"ĠCourtney":14872,"Ġ1975":14873,"Ġsurpass":14874,"Ġidentities":14875,"Ġintegral":14876,"Ġdocumentation":14877,"Ġelegant":14878,"ĠIg":14879,"Ġdear":14880,"Ġ113":14881,"ĠGupta":14882,"Ġcontentious":14883,"rish":14884,"Ġclues":14885,"Ġadditions":14886,"Ġep":14887,"rus":14888,"Ġcentered":14889,"ĠPhillies":14890,"father":14891,"Ġborough":14892,"Ġbuttons":14893,"Ġdeported":14894,"ĠREC":14895,"ĠAlready":14896,"eh":14897,"hur":14898,"Ġupbeat":14899,"omen":14900,"Ġdetailing":14901,"Ġwr":14902,"Ġvaried":14903,"ĠEconomics":14904,"Ġensures":14905,"ĠCivic":14906,"Ġunpaid":14907,"sold":14908,"ĠHil":14909,"ĠMult":14910,"ĠRising":14911,"ĠMini":14912,"Ġneuro":14913,"Ġpenal":14914,"Ġneighbour":14915,"ĠChavez":14916,"Ġjew":14917,"ĠVIP":14918,"Connor":14919,"ĠTalking":14920,"Ġcorrection":14921,"Ġstandpoint":14922,"roads":14923,"ĠWool":14924,"Ġverification":14925,"Ġmic":14926,"olf":14927,"Ġexemption":14928,"Ġfilter":14929,"Ġballoon":14930,"leases":14931,"ician":14932,"ĠSpr":14933,"Ġtoe":14934,"Ġunconstitutional":14935,"Ġmanslaughter":14936,"Ġtossed":14937,"ĠMeg":14938,"ATIONS":14939,"ACK":14940,"ĠRouge":14941,"ĠHansen":14942,"ĠHook":14943,"Out":14944,"ĠHorse":14945,"ĠBath":14946,"ĠAlways":14947,"Ġincorporated":14948,"Ġconjunction":14949,"ĠFit":14950,"Ġexamining":14951,"Ġwallet":14952,"Ġensured":14953,"Ġacclaimed":14954,"ippers":14955,"Ġbeneficiaries":14956,"Ġunexpectedly":14957,"Ġexploit":14958,"ĠWillie":14959,"Ġcomb":14960,"ĠWalton":14961,"rica":14962,"icky":14963,"Ġate":14964,"ĠPadres":14965,"Ġrib":14966,"Ġsnacks":14967,"ĠFernandez":14968,"ĠMachine":14969,"ction":14970,"Ġillnesses":14971,"ĠHoffman":14972,"ĠSpaceX":14973,"Ġju":14974,"Ġswift":14975,"Ġembark":14976,"ĠRailway":14977,"Ġmeasuring":14978,"agers":14979,"arsh":14980,"Ġessence":14981,"angle":14982,"Ġolive":14983,"ĠCommander":14984,"iggs":14985,"Ġrewarded":14986,"Ġdispatched":14987,"Ġplayground":14988,"½":14989,"ĠProgramme":14990,"Ġstudios":14991,"Ġskeptical":14992,"ĠOlymp":14993,"ĠKeys":14994,"ĠSunshine":14995,"amba":14996,"ĠDonna":14997,"Ġlightly":14998,"Ġobtaining":14999,"Ġpoisoning":15000,"Ġaz":15001,"Ġ1972":15002,"Ġunconscious":15003,"ECT":15004,"Ġlied":15005,"ĠKaz":15006,"Ġ06":15007,"ĠMoving":15008,"Ġnum":15009,"oral":15010,"Ġassessments":15011,"Ġscholarships":15012,"Ġevacuate":15013,"ĠSunni":15014,"Ġquake":15015,"Ġfort":15016,"ques":15017,"ĠAlonso":15018,"Ġthread":15019,"Ġsqueeze":15020,"arat":15021,"oly":15022,"ĠAlphabet":15023,"uting":15024,"icio":15025,"ĠRetirement":15026,"ither":15027,"Ġasleep":15028,"Ġpairs":15029,"Ġmanufacture":15030,"ĠHazard":15031,"Ġsidewalk":15032,"Ġwears":15033,"ĠCraft":15034,"emen":15035,"ieth":15036,"Ġbypass":15037,"ĠLancaster":15038,"Ġflour":15039,"charge":15040,"ĠCLICK":15041,"Ġpotatoes":15042,"ĠKarachi":15043,"Ġvalley":15044,"Ġsights":15045,"Ġfallout":15046,"ords":15047,"BN":15048,"Ġsunshine":15049,"Ġundertaken":15050,"Ġcontestants":15051,"Ġaccomplishments":15052,"Ġconditioning":15053,"Ġcel":15054,"ĠHalifax":15055,"Ġaccent":15056,"***":15057,"Ġpitchers":15058,"Ġadopting":15059,"Ġjustices":15060,"Ġrip":15061,"ince":15062,"Ġelimination":15063,"Ġaerospace":15064,"ĠBeer":15065,"ĠBasin":15066,"Ġunwanted":15067,"goers":15068,"isco":15069,"ĠTwin":15070,"ĠDesert":15071,"rix":15072,"Ġdarkness":15073,"ĠDunn":15074,"City":15075,"pop":15076,"Ġ1969":15077,"ataka":15078,"Ġtal":15079,"Ġautism":15080,"ĠMcLaren":15081,"ĠUEFA":15082,"Ġclassrooms":15083,"ĠLeave":15084,"Americans":15085,"las":15086,"Ġqui":15087,"Ġundefeated":15088,"otto":15089,"ĠNRA":15090,"ĠPorsche":15091,"Ġnuts":15092,"oys":15093,"ĠMethodist":15094,"Ġatt":15095,"Ġtweeting":15096,"children":15097,"eller":15098,"Ġinquiries":15099,"Ġmillennials":15100,"ĠWembley":15101,"INS":15102,"Ġautopsy":15103,"ĠElon":15104,"ĠHicks":15105,"ugg":15106,"Ġwreck":15107,"ĠComcast":15108,"Ġstones":15109,"public":15110,"ĠKem":15111,"bedroom":15112,"ļ":15113,"itated":15114,"Ġsemic":15115,"uman":15116,"Cal":15117,"ANN":15118,"ĠGaz":15119,"Ġundisclosed":15120,"ĠPlanned":15121,"ĠYale":15122,"ĠIST":15123,"lies":15124,"ĠStanding":15125,"Ġrelieved":15126,"EO":15127,"Ġgraduating":15128,"park":15129,"ĠâĢķ":15130,"Ġpensions":15131,"rave":15132,"ĠWonder":15133,"AZ":15134,"Ġcosting":15135,"Ġeditors":15136,"Ġtotaled":15137,"Ġspacecraft":15138,"meter":15139,"Ġ02":15140,"ĠNikki":15141,"sworth":15142,"ĠCrit":15143,"asha":15144,"Ġknees":15145,"Ġhats":15146,"uity":15147,"ĠPanther":15148,"Ġtan":15149,"ĠBuzz":15150,"ĠGlad":15151,"ĠPleasant":15152,"SM":15153,"Ġtricks":15154,"Ġplac":15155,"ĠDanielle":15156,"Ġours":15157,"Ġwashed":15158,"haven":15159,"Ġdrain":15160,"ĠUttar":15161,"Ġapple":15162,"Ġjunk":15163,"Ġturkey":15164,"ĠDug":15165,"Ġdiplomacy":15166,"Ġempire":15167,"Ġpinch":15168,"Ġferry":15169,"ĠDustin":15170,"Ġ03":15171,"Ġelder":15172,"Everything":15173,"ĠProgressive":15174,"ution":15175,"VI":15176,"dam":15177,"Ġlever":15178,"ĠAustralians":15179,"Ġconsequence":15180,"itan":15181,"Ġcondemn":15182,"Ġneg":15183,"ĠOverview":15184,"Ġsuccesses":15185,"Ġprobable":15186,"ĠMirror":15187,"mor":15188,"verse":15189,"Ġevaluating":15190,"ĠBes":15191,"Ġimm":15192,"Ġharness":15193,"Ġresilient":15194,"ĠBuild":15195,"Ġstraightforward":15196,"ADE":15197,"Ġgrandparents":15198,"Ġmarched":15199,"ĠKiev":15200,"Ġchiefs":15201,"oha":15202,"Ġvest":15203,"kn":15204,"enda":15205,"ĠSev":15206,"Ġbatters":15207,"ĠJos":15208,"ĠQue":15209,"ĠCourse":15210,"ĠCorner":15211,"ĠMess":15212,"Ġmourn":15213,"keepers":15214,"ĠRegina":15215,"Everybody":15216,"Ġtrajectory":15217,"Ġdefenseman":15218,"ĠArticles":15219,"Ġspur":15220,"ĠPhD":15221,"Ġpipes":15222,"Ġduck":15223,"Ġcombining":15224,"ĠHit":15225,"ĠGeorgetown":15226,"ĠBee":15227,"Cor":15228,"Ġcomposition":15229,"Ġconnects":15230,"ĠMARK":15231,"taker":15232,"Ġcertainty":15233,"Ġhefty":15234,"ĠHezbollah":15235,"ĠShip":15236,"Ġmalicious":15237,"AI":15238,"Ġbits":15239,"Ġstyl":15240,"Ġimpaired":15241,"ĠCBI":15242,"Despite":15243,"othe":15244,"ĠRyder":15245,"ĠAlf":15246,"ifa":15247,"Ind":15248,"Ġblaming":15249,"ĠToledo":15250,"EW":15251,"ĠEssex":15252,"iated":15253,"ĠAberdeen":15254,"ANCE":15255,"Ġpossess":15256,"Ġsuperhero":15257,"Ġoverhead":15258,"quet":15259,"ĠRicky":15260,"Ġdock":15261,"ĠTelecom":15262,"Ġshelf":15263,"³":15264,"Ġmaritime":15265,"Ġportrayed":15266,"ĠYesterday":15267,"Ġcollided":15268,"Ġcookies":15269,"ĠCul":15270,"Ġindexes":15271,"Ġnaval":15272,"oval":15273,"105":15274,"ĠWeber":15275,"chief":15276,"arma":15277,"ĠRey":15278,"Ġauditor":15279,"ĠMarion":15280,"ĠMartha":15281,"ĠSally":15282,"Ġsedan":15283,"ĠAlison":15284,"nce":15285,"Es":15286,"ĠParade":15287,"Ġpharmacy":15288,"ĠKre":15289,"loe":15290,"cks":15291,"Ġmitigate":15292,"Ġdesigning":15293,"Ġ2024":15294,"Ġportable":15295,"Ġimproves":15296,"ĠAMD":15297,"Ġexcluded":15298,"CON":15299,"ĠOscars":15300,"Ġfixtures":15301,"comb":15302,"ĠBerg":15303,"Ġbother":15304,"Ġboring":15305,"Ġobservation":15306,"ĠCad":15307,"Ġrecordings":15308,"ĠCultural":15309,"Ġweaken":15310,"Ġaccuse":15311,"ĠAbd":15312,"abor":15313,"115":15314,"uffle":15315,"Ġhighways":15316,"atham":15317,"empt":15318,"ĠDeer":15319,"ĠEDT":15320,"ĠWait":15321,"athan":15322,"Ġaccumulated":15323,"Ġguilt":15324,"Ġexempt":15325,"Ġdiluted":15326,"ĠJamal":15327,"Ġshit":15328,"cross":15329,"Ġeve":15330,"Ġshirts":15331,"Ġsatisfy":15332,"ĠPaulo":15333,"AH":15334,"sic":15335,"ĠChloe":15336,"ĠCities":15337,"ĠSwansea":15338,"Ġprecision":15339,"ĠTracy":15340,"ping":15341,"Ġcontinually":15342,"Ġdemographic":15343,"Ġcliff":15344,"Ġjaw":15345,"isted":15346,"ĠDevelop":15347,"ĠAJ":15348,"Ġaisle":15349,"ĠLionel":15350,"Ġpredominantly":15351,"Ġmel":15352,"Ġlifelong":15353,"hs":15354,"Ġshouted":15355,"lad":15356,"Ġdest":15357,"Ġpacks":15358,"ĠKath":15359,"ĠCruise":15360,"fired":15361,"oder":15362,"hua":15363,"Ġgoodbye":15364,"Ġinterfere":15365,"eca":15366,"Ġré":15367,"atum":15368,"itas":15369,"ĠLodge":15370,"ĠWald":15371,"Ġmidday":15372,"umble":15373,"asting":15374,"©":15375,"ĠLeg":15376,"ĠNepal":15377,"Ġchased":15378,"idge":15379,"Ġconv":15380,"Ġfraudulent":15381,"Ġopera":15382,"Ġshr":15383,"ĠUniverse":15384,"ĠJerome":15385,"Ġ1977":15386,"ĠDancing":15387,"ĠRS":15388,"±":15389,"eks":15390,"Ġchic":15391,"Ġpunish":15392,"Ġpropose":15393,"arin":15394,"ĠChop":15395,"ĠAhead":15396,"ĠGallagher":15397,"ĠBangkok":15398,"ĠShelby":15399,"ĠNS":15400,"Ġcheek":15401,"onia":15402,"Ġrelegation":15403,"ĠHind":15404,"ĠCory":15405,"Ġfingerprint":15406,"Ġstrive":15407,"Ġmm":15408,"igs":15409,"Ġholy":15410,"Ġfavored":15411,"ĠSomeone":15412,"ĠLatino":15413,"ĠPatt":15414,"Ġchallenger":15415,"ĠCotton":15416,"Sw":15417,"itten":15418,"ĠXI":15419,"ĠStat":15420,"ĠDIS":15421,"Ġautomakers":15422,"Ġevaluated":15423,"ĠArc":15424,"Ġpersuade":15425,"Af":15426,"Ġreunited":15427,"Ġabs":15428,"Ġbride":15429,"Ġpurely":15430,"uce":15431,"uded":15432,"Ġsettling":15433,"Ġlodged":15434,"Ġfixing":15435,"Ġsuccession":15436,"ĠAlfred":15437,"ĠAlvarez":15438,"mac":15439,"ĠFont":15440,"Ġcontra":15441,"affle":15442,"Ġcopied":15443,"Ġmasses":15444,"ĠElections":15445,"ĠThan":15446,"Ġsoaring":15447,"jay":15448,"Ġsuing":15449,"Ġconcentrated":15450,"Ġconvey":15451,"Ġ240":15452,"gs":15453,"ĠNeal":15454,"Ġnasty":15455,"ĠLB":15456,"odi":15457,"ĠSergei":15458,"Ġthumb":15459,"Ġservants":15460,"Ġrevelation":15461,"Ġdischarge":15462,"ĠBright":15463,"ĠBent":15464,"ĠChrysler":15465,"mill":15466,"ĠImagine":15467,"Ġreceptions":15468,"Ġpersonalities":15469,"Ġsilly":15470,"ĠLoc":15471,"ĠZero":15472,"HI":15473,"rice":15474,"Ġgar":15475,"far":15476,"enh":15477,"ĠBiden":15478,"ĠEntreprene":15479,"Ġassumption":15480,"Ġnicely":15481,"ĠEither":15482,"|":15483,"ĠNW":15484,"ĠKens":15485,"ĠNolan":15486,"Ġowning":15487,"atures":15488,"ĠPastor":15489,"ĠRegistration":15490,"Ġexperiments":15491,"Ġassurance":15492,"Ġhashtag":15493,"oint":15494,"ĠBin":15495,"Ġqualification":15496,"center":15497,"Ġausterity":15498,"ĠPers":15499,"Ġscoop":15500,"Ġpros":15501,"ĠFields":15502,"Ġfur":15503,"ĠJas":15504,"Ġplanting":15505,"security":15506,"ĠTrain":15507,"ĠKathy":15508,"demand":15509,"ĠLev":15510,"Ġtut":15511,"tier":15512,"QU":15513,"Ġexploitation":15514,"Ġignoring":15515,"ĠSex":15516,"Ġadapted":15517,"Ġdisastrous":15518,"Ġempower":15519,"Ġcreators":15520,"ĠLay":15521,"ĠDragon":15522,"ĠWyn":15523,"Ġ1974":15524,"acious":15525,"performance":15526,"ĠTiffany":15527,"isting":15528,"Ġindividually":15529,"ĠLeading":15530,"ĠSask":15531,"Ġcatastrophic":15532,"Ġpunched":15533,"ĠVienna":15534,"Ġsurgical":15535,"Gr":15536,"odo":15537,"Ġgem":15538,"ĠMinority":15539,"Ġmice":15540,"ĠHistoric":15541,"ĠKot":15542,"caster":15543,"Ġsuff":15544,"journal":15545,"Ġpresumably":15546,"ĠBit":15547,"inary":15548,"Ġbre":15549,"Ġenhancing":15550,"Ġgru":15551,"ĠRunning":15552,"hardt":15553,"Ġtroubling":15554,"Ġpumps":15555,"ĠProspect":15556,"etic":15557,"Ġmartial":15558,"Ġcouncillor":15559,"atra":15560,"ths":15561,"ĠSark":15562,"ĠChamp":15563,"scoring":15564,"ĠWel":15565,"rup":15566,"Ġterrifying":15567,"ĠCatch":15568,"Ġinspections":15569,"Ġpornography":15570,"bra":15571,"ĠKeeping":15572,"Ġbanker":15573,"angers":15574,"ĠCrimea":15575,"ĠDisclosure":15576,"iba":15577,"Ġturf":15578,"Ġschedules":15579,"ĠJorge":15580,"ĠAcross":15581,"Ġsolving":15582,"Ġsensation":15583,"ĠWW":15584,"cial":15585,"atz":15586,"Ġlion":15587,"Ġcertificates":15588,"itive":15589,"ĠWes":15590,"ĠPrison":15591,"ĠPlayStation":15592,"duty":15593,"Ġvariable":15594,"Ġstrangers":15595,"istrates":15596,"vs":15597,"Ġreigning":15598,"Ġsliding":15599,"ĠShin":15600,"Ġtelecommunications":15601,"Ġinstalling":15602,"Ġrecogn":15603,"Ġsubway":15604,"too":15605,"ĠMcKin":15606,"ĠStoke":15607,"Ġsensitivity":15608,"bas":15609,"Ġsan":15610,"Ġ(-":15611,"ĠSuarez":15612,"Ġaverages":15613,"ammu":15614,"ĠFen":15615,"Ġrefined":15616,"outh":15617,"Ġcob":15618,"ĠLaz":15619,"essa":15620,"Ġpositioning":15621,"Three":15622,"Ġoils":15623,"Ġassaults":15624,"Ġcompanion":15625,"ĠFlash":15626,"ĠMam":15627,"ĠTill":15628,"Ġblues":15629,"ĠJae":15630,"ĠPier":15631,"Ġbedrooms":15632,"ĠHawkins":15633,"ĠCornell":15634,"Ġanswering":15635,"Ġsec":15636,"Ġrecognizes":15637,"Red":15638,"ĠJamaica":15639,"Ġinsurgents":15640,"Ġbrace":15641,"Ġra":15642,"ĠTai":15643,"ocation":15644,"ignment":15645,"Ġreasonably":15646,"inating":15647,"Ġbonuses":15648,"Ġsandwich":15649,"Ġinadequate":15650,"Ġdelicate":15651,"Ġadorable":15652,"Ġpalace":15653,"Ġsmallest":15654,"Ġpractically":15655,"ĠCrosby":15656,"Ġlevy":15657,"Ġlend":15658,"boards":15659,"shaped":15660,"Ġvulnerability":15661,"ĠKelley":15662,"Ġsponsorship":15663,"ract":15664,"Ġslew":15665,"Ġfederation":15666,"ĠLal":15667,"acies":15668,"ĠFamilies":15669,"Ġproposing":15670,"Ġhyp":15671,"elected":15672,"inkle":15673,"ĠSays":15674,"ĠApollo":15675,"ĠWis":15676,"imer":15677,"Ġcombines":15678,"Ġtim":15679,"ĠQuestion":15680,"Ġborrowers":15681,"Ġswiftly":15682,"ĠMagn":15683,"Ġheadphones":15684,"Russia":15685,"Ġtongue":15686,"Ġbye":15687,"nn":15688,"Ġseller":15689,"ĠWord":15690,"Tom":15691,"ĠDevin":15692,"ĠSurrey":15693,"Ġquad":15694,"Ġcourthouse":15695,"gi":15696,"ĠGrill":15697,">":15698,"Ġrational":15699,"ĠFlames":15700,"ĠCham":15701,"Ġvacuum":15702,"ĠRays":15703,"Ġescalating":15704,"Ġouter":15705,"Ġstretches":15706,"ĠSpeed":15707,"Ġnegatively":15708,"Ġabsorb":15709,"ĠAustrian":15710,"Ġslice":15711,"ĠDiet":15712,"Ġbun":15713,"Ġtactical":15714,"ĠCBD":15715,"Ġedges":15716,"Ġnest":15717,"Ġstrained":15718,"ulates":15719,"ĠTina":15720,"Net":15721,"ķ":15722,"ĠGos":15723,"God":15724,"White":15725,"Ġproudly":15726,"usion":15727,"ĠArlington":15728,"ĠNear":15729,"ĠMaxwell":15730,"Ġbomber":15731,"Ġcared":15732,"Ġapprovals":15733,"Ġexams":15734,"ĠEconomy":15735,"Ġposters":15736,"ĠHampton":15737,"ĠPere":15738,"ĠContract":15739,"Ġhoused":15740,"Ġinstruction":15741,"ĠJess":15742,"Ġacre":15743,"Ġcongestion":15744,"ĠGener":15745,"Ġdioxide":15746,"Ġvar":15747,"ĠAlexandria":15748,"ĠSpider":15749,"Ġcoins":15750,"Ġ225":15751,"Ġterritorial":15752,"ĠSPD":15753,"Ġfloat":15754,"null":15755,"Ġcalculate":15756,"ĠDin":15757,"eto":15758,"Ġcows":15759,"Ġpunct":15760,"Ġexpire":15761,"Ġkidnapped":15762,"Ġcou":15763,"Ġattitudes":15764,"ĠLeh":15765,"ĠHero":15766,"ĠKabul":15767,"Ġcubic":15768,"Ġdigits":15769,"ĠRES":15770,"Ġpipelines":15771,"icide":15772,"ĠSingle":15773,"Ġhurts":15774,"ĠMaz":15775,"ĠPak":15776,"Ġslate":15777,"Ġmultimedia":15778,"ADA":15779,"Mexico":15780,"ĠRelease":15781,"chard":15782,"Ġgarlic":15783,"ĠFletcher":15784,"Ġaforementioned":15785,"Ġ05":15786,"ĠParkway":15787,"Ġfirefighter":15788,"Ġcounseling":15789,"utions":15790,"Cap":15791,"Ġconsultants":15792,"ĠMeh":15793,"ouring":15794,"ĠDI":15795,"mic":15796,"phones":15797,"Ġencounters":15798,"ĠHapp":15799,"Ġcartoon":15800,"flight":15801,"Ġundertake":15802,"ĠHans":15803,"Ġplunge":15804,"ĠParenthood":15805,"Ġkickoff":15806,"ĠCelsius":15807,"ĠRas":15808,"ĠDund":15809,"ounce":15810,"Ġpurse":15811,"Ġmortality":15812,"Ġbrains":15813,"Ġconglomerate":15814,"ĠObserver":15815,"ĠSector":15816,"ĠApparently":15817,"Ġblank":15818,"iston":15819,"Ġweighs":15820,"gro":15821,"ĠPaw":15822,"ĠCOM":15823,"ĠPurdue":15824,"Ġnetted":15825,"ĠLinux":15826,"Mike":15827,"Ġfaithful":15828,"Ġmagazines":15829,"Ġheadquartered":15830,"ĠIps":15831,"Ġindications":15832,"Look":15833,"ĠElite":15834,"Ġsupreme":15835,"Ġchunk":15836,"ĠSz":15837,"ĠVine":15838,"rise":15839,"ĠYas":15840,"general":15841,"ĠOpera":15842,"Ġpriests":15843,"Assad":15844,"Ġaunt":15845,"Ġwhopping":15846,"enzie":15847,"Ġvegan":15848,"Ġinflux":15849,"ĠConsult":15850,"Ġwaiver":15851,"Having":15852,"inning":15853,"Ġproximity":15854,"Ġclassical":15855,"ĠIslanders":15856,"Ġadvertisers":15857,"ĠCe":15858,"ĠSochi":15859,"Ġmemoir":15860,"ĠPlaying":15861,"yers":15862,"Ġstud":15863,"Ġobservations":15864,"Ġadmire":15865,"Ġhiking":15866,"Ġbatter":15867,"Ġconfusing":15868,"Ġprecaution":15869,"kil":15870,"clusive":15871,"opoulos":15872,"ĠWestbrook":15873,"ĠTanzania":15874,"ĠCedar":15875,"usted":15876,"Ġdestructive":15877,"ĠIndies":15878,"osi":15879,"ĠAmid":15880,"Ġintercepted":15881,"Ġpartnering":15882,"Ġsubstances":15883,"ĠSuns":15884,"Ġpromotes":15885,"bird":15886,"Gen":15887,"aper":15888,"ĠEy":15889,"Ġterrain":15890,"Ġ1930":15891,"zon":15892,"Ġbreed":15893,"broken":15894,"uchin":15895,"ĠPrim":15896,"ĠRoland":15897,"Ġfitted":15898,"Ġprotects":15899,"Ġ114":15900,"RP":15901,"Ġdisrupted":15902,"ĠBaylor":15903,"oren":15904,"ĠKeen":15905,"Ġmansion":15906,"Ġgrassroots":15907,"ĠVictory":15908,"Ġbarn":15909,"Ġdepreciation":15910,"oped":15911,"immer":15912,"Ġgarnered":15913,"ĠLip":15914,"ĠTob":15915,"Ġcreatures":15916,"ooter":15917,"Ġconsortium":15918,"obi":15919,"ĠMonster":15920,"arks":15921,"turn":15922,"Ġsketch":15923,"Ġpredicting":15924,"Ġminimize":15925,"ĠEthan":15926,"anson":15927,"ĠAdjusted":15928,"ĠHornets":15929,"ĠNZ":15930,"ĠKathleen":15931,"ĠKier":15932,"ĠMercury":15933,"Ġghost":15934,"Ġhaw":15935,"ĠDemand":15936,"ĠCollection":15937,"ĠFortune":15938,"Ġcruel":15939,"Ġfurious":15940,"ĠKun":15941,"ĠSalem":15942,"Ġunsuccessful":15943,"ĠLomb":15944,"ĠFury":15945,"ahi":15946,"Ġenthusiastic":15947,"Ġsurgeries":15948,"ACE":15949,"Ġroller":15950,"ĠStamford":15951,"Being":15952,"Dec":15953,"check":15954,"Ġaffection":15955,"Ġgifted":15956,"Ġenerg":15957,"Ġvarying":15958,"ĠCharl":15959,"Ġsolved":15960,"ĠNV":15961,"Ġlaptops":15962,"Ġkindness":15963,"mart":15964,"ĠPenny":15965,"Ġ116":15966,"ĠFeder":15967,"ĠCisco":15968,"Ġeducators":15969,"Ġminim":15970,"Ġgangs":15971,"Ġfestivities":15972,"ĠOriginal":15973,"yre":15974,"rying":15975,"Ġtighter":15976,"ĠMalta":15977,"Ġshield":15978,"interest":15979,"Ġbuoy":15980,"Ġsupplement":15981,"ĠSof":15982,"Ġok":15983,"Ġprosecuted":15984,"Ġinterventions":15985,"Ġseize":15986,"Ġcaravan":15987,"ĠCarlson":15988,"ĠEnterprises":15989,"ĠChristina":15990,"ĠWellington":15991,"Ġaltered":15992,"TP":15993,"Ġexpresses":15994,"Ġcomfortably":15995,"Ġstaffing":15996,"afa":15997,"itu":15998,"saving":15999,"Ġinflammation":16000,"hatt":16001,"ĠMiranda":16002,"icious":16003,"Ġgrabbing":16004,"ĠANY":16005,"Ġobjections":16006,"Ġdot":16007,"cle":16008,"Ġrelates":16009,"Ġtribe":16010,"Ġboarding":16011,"ĠEpisode":16012,"ĠEnjoy":16013,"arding":16014,"Ġathletics":16015,"Ġflies":16016,"Ġmortgages":16017,"ruct":16018,"Ġink":16019,"ĠKC":16020,"ĠSecondary":16021,"Ġfer":16022,"ĠQaeda":16023,"OA":16024,"Frank":16025,"track":16026,"ĠChandler":16027,"Ġenv":16028,"ĠLeaders":16029,"ĠKemp":16030,"Ġunsafe":16031,"sponsored":16032,"San":16033,"ĠUsers":16034,"PE":16035,"ĠAccount":16036,"otta":16037,"ĠMix":16038,"ĠCindy":16039,"En":16040,"Ġ175":16041,"Ġoverlooked":16042,"Ġpublications":16043,"Ġrewarding":16044,"Ġexplicit":16045,"Ġnotch":16046,"Ġspecifics":16047,"Ġdesignation":16048,"ĠAppeal":16049,"Ġcontingent":16050,"Ġcage":16051,"ĠKol":16052,"ĠJohns":16053,"ĠReach":16054,"ĠTin":16055,"ĠAfricans":16056,"Ġprec":16057,"ĠRural":16058,"ĠDw":16059,"Ġuphold":16060,"Ġsuffers":16061,"Ġweed":16062,"inst":16063,"Ġcancellation":16064,"ĠShaun":16065,"Ġleve":16066,"Ġdivisive":16067,"Ġhel":16068,"Ġfatigue":16069,"ĠSchwartz":16070,"ĠKirst":16071,"Ġarise":16072,"Ġgrandson":16073,"ĠLawson":16074,"Ġcollaborate":16075,"Ġparticipant":16076,"ĠBryce":16077,"Ġinfield":16078,"mid":16079,"Ġut":16080,"Ġnotices":16081,"Ġsneak":16082,"ĠPAR":16083,"Chris":16084,"Ġutilize":16085,"ĠByron":16086,"ĠZhang":16087,"PF":16088,"Ġoverwhelmingly":16089,"Ġvegetable":16090,"Ġabsurd":16091,"ĠChem":16092,"etime":16093,"Ġenvoy":16094,"Ġlover":16095,"length":16096,"Ġrevolutionary":16097,"ĠYam":16098,"Ġshutting":16099,"mt":16100,"super":16101,"ĠToby":16102,"ĠCoca":16103,"Ġproposition":16104,"Ġembracing":16105,"Ġversatile":16106,"ĠWalking":16107,"Ġillicit":16108,"Ġnude":16109,"Ġunpredictable":16110,"take":16111,"Ġgotta":16112,"ĠXiaomi":16113,"Ġinstit":16114,"ĠPep":16115,"ĠPearson":16116,"Ġrejection":16117,"stead":16118,"Ġmut":16119,"Ġoutspoken":16120,"ĠBaghdad":16121,"ĠFly":16122,"Ġwholly":16123,"ĠRM":16124,"ĠFa":16125,"Ġcleaner":16126,"frey":16127,"ĠHab":16128,"ĠLiber":16129,"Ġwhereabouts":16130,"Ġchefs":16131,"Ġalumni":16132,"Ġstopp":16133,"dd":16134,"forward":16135,"rast":16136,"ĠNash":16137,"ĠCort":16138,"Ġpotent":16139,"Ġmold":16140,"Ġdistinctive":16141,"chip":16142,"ĠBrunswick":16143,"Ġpopulist":16144,"Ġplagued":16145,"eka":16146,"ĠIOC":16147,"ugs":16148,"ĠDob":16149,"Ġmagn":16150,"asser":16151,"hew":16152,"Ġcapturing":16153,"oos":16154,"Ġcrystal":16155,"Ġalarming":16156,"Ġ135":16157,"iating":16158,"Ġnap":16159,"umar":16160,"ĠExpl":16161,"Ġupgrading":16162,"Ġdecl":16163,"Ġoverturn":16164,"ARK":16165,"linked":16166,"ĠContinued":16167,"Ġslumped":16168,"ĠGaga":16169,"iful":16170,"ĠPosted":16171,"ĠRecommended":16172,"Ġsnake":16173,"Ġexplosives":16174,"Ġhind":16175,"Ġcontempt":16176,"Ġmock":16177,"NBA":16178,"Ġstall":16179,"Ġorganisers":16180,"Ġingredient":16181,"Ġblockbuster":16182,"ĠStream":16183,"ĠLeah":16184,"Pic":16185,"Ġventures":16186,"oman":16187,"Ġweakening":16188,"Ġmaximize":16189,"Ġdigging":16190,"uez":16191,"Ġdistinction":16192,"ĠMali":16193,"Ġcontaminated":16194,"Ġhij":16195,"Ġcrafts":16196,"Fl":16197,"Ġcloset":16198,"ĠRapp":16199,"Ġtowers":16200,"Ġamenities":16201,"Ġopioids":16202,"Ġcontend":16203,"load":16204,"ĠJol":16205,"ĠBooks":16206,"Ġsim":16207,"Ġthrilling":16208,"Ġmeter":16209,"ĠMultiple":16210,"Ġarbitration":16211,"Ġcracked":16212,"Pl":16213,"Ġphotographers":16214,"Te":16215,"ĠSidd":16216,"Ġexplored":16217,"170":16218,"Ġpleasant":16219,"ĠCapitals":16220,"ĠRi":16221,"ĠRandall":16222,"overed":16223,"Ġchar":16224,"ĠEverybody":16225,"ĠPolitics":16226,"Ġmoisture":16227,"Ġthriving":16228,"ĠScotia":16229,"arded":16230,"imb":16231,"ĠFantasy":16232,"Ġcemetery":16233,"ĠPath":16234,"eur":16235,"ĠSec":16236,"ĠPlatform":16237,"Ġdeparted":16238,"ĠVIDEO":16239,"ĠPant":16240,"ĠSyn":16241,"Ġ230":16242,"bleacher":16243,"live":16244,"Ġprob":16245,"Ġgymn":16246,"Ġjudged":16247,"orns":16248,"Ġstemming":16249,"umbling":16250,"ĠHew":16251,"ĠCheryl":16252,"Ġconsciousness":16253,"cos":16254,"ĠTate":16255,"CNN":16256,"Ġrecognizing":16257,"meg":16258,"Ġpant":16259,"ulk":16260,"MM":16261,"ĠPrescott":16262,"ĠMarcel":16263,"anas":16264,"Ġhappier":16265,"mag":16266,"ĠLov":16267,"Ġspreads":16268,"ĠSample":16269,"Ġpopped":16270,"HR":16271,"ĠMitt":16272,"Ġ00":16273,"Ġlabeled":16274,"Ġaspirations":16275,"?)":16276,"Ġloads":16277,"ĠBritt":16278,"hurst":16279,"ĠTeams":16280,"Ġextremists":16281,"ĠClement":16282,"lings":16283,"shirts":16284,"cheon":16285,"ĠDEL":16286,"ĠLocation":16287,"Ġpresentations":16288,"ĠFalcon":16289,"Ġtoddler":16290,"kl":16291,"Ġprone":16292,"Ġcommemor":16293,"ĠStanton":16294,"201":16295,"Ġranges":16296,"Ġfielder":16297,"Ġattends":16298,"rade":16299,"Ġproactive":16300,"Ġhostage":16301,"ĠGriffith":16302,"ockey":16303,"ĠAdding":16304,"ĠAFL":16305,"gas":16306,"istics":16307,"Ġsurgeon":16308,"Ġtsunami":16309,"2014":16310,"Ġconstraints":16311,"cu":16312,"Ġsurrendered":16313,"azed":16314,"ĠAirbnb":16315,"650":16316,"zed":16317,"Ġinjustice":16318,"dog":16319,"full":16320,"ĠHear":16321,"Ġsprawling":16322,"Ġhomeland":16323,"ĠSG":16324,"anced":16325,"Ġpools":16326,"ĠCE":16327,"Ġbeers":16328,"AE":16329,"ĠJac":16330,"Ġrecurring":16331,"Writing":16332,"Ġgenius":16333,"ĠFrost":16334,"Ġgrounded":16335,"Ġallege":16336,"lessness":16337,"Ġjumper":16338,"Ġvicious":16339,"Ġsecretly":16340,"Ġhacked":16341,"ĠAmsterdam":16342,"ibu":16343,"Ġ1971":16344,"ĠRosenstein":16345,"nick":16346,"arge":16347,"Ġladder":16348,"elled":16349,"Ġsatellites":16350,"Ġassassination":16351,"ĠDepot":16352,"built":16353,"Ġunrelated":16354,"maid":16355,"ĠDod":16356,"ĠVanderbilt":16357,"Ġboundary":16358,"ĠStafford":16359,"ĠBry":16360,"Ġtribunal":16361,"Ġoutings":16362,"Ġquantity":16363,"imming":16364,"ĠBlacks":16365,"Br":16366,"eri":16367,"uffed":16368,"Ġexplicitly":16369,"ĠBieber":16370,"AKING":16371,"Ġphotographed":16372,"ĠPolit":16373,"Ġpremature":16374,"hered":16375,"ĠVi":16376,"Ġmarsh":16377,"casters":16378,"ĠKra":16379,"Ġdried":16380,"Ġcafe":16381,"eting":16382,"Ġshaping":16383,"aram":16384,"orf":16385,"Ġrichest":16386,"Ġhurricanes":16387,"Ġcommands":16388,"Gl":16389,"anth":16390,"Ġstunt":16391,"Ġyearly":16392,"Ġdefeats":16393,"Ġconsultancy":16394,"call":16395,"Ġlag":16396,"adh":16397,"ĠPalestine":16398,"Ġcustomized":16399,"ĠScar":16400,"ĠWesley":16401,"ready":16402,"Ġpersist":16403,"Ġpacking":16404,"ono":16405,"Ġdischarged":16406,"Ġpouring":16407,"sburg":16408,"Ġreconsider":16409,"ĠMethod":16410,"enez":16411,"cill":16412,"Ġsecular":16413,"pers":16414,"Ġple":16415,"ELS":16416,"ĠMine":16417,"Ġpushes":16418,"Us":16419,"Ġframes":16420,"ĠNets":16421,"ĠSiem":16422,"ĠHitler":16423,"kill":16424,"Ġrented":16425,"Ġcharm":16426,"Ġpulls":16427,"ĠTide":16428,"Ġinsufficient":16429,"itted":16430,"Care":16431,"iera":16432,"Ġcouch":16433,"aders":16434,"ext":16435,"ĠCitizen":16436,"Ġlogical":16437,"ĠMeadows":16438,"ĠDenis":16439,"ĠDrivers":16440,"Ġrepublic":16441,"Ġadvising":16442,"Ġparamedics":16443,"insky":16444,"illard":16445,"encia":16446,"Ġkh":16447,"Ġrh":16448,"Ġfinalized":16449,"Ġreins":16450,"ĠFarrell":16451,"Ġsteer":16452,"Ġproxy":16453,"unes":16454,"ĠSoul":16455,"ĠCopper":16456,"ĠKenyan":16457,"amped":16458,"conference":16459,"sted":16460,"ĠLon":16461,"Ġreplay":16462,"ĠBle":16463,"Ġvibe":16464,"Ġportfolios":16465,"sea":16466,"Ġbeautifully":16467,"Ġairs":16468,"ĠRap":16469,"ĠKatrina":16470,"Ġberth":16471,"gold":16472,"ĠIsaiah":16473,"iques":16474,"elson":16475,"Ġrelentless":16476,"ĠHighland":16477,"ĠPhilippe":16478,"ĠFol":16479,"Ġenduring":16480,"enz":16481,"Ġaer":16482,"icing":16483,"ĠHTC":16484,"Ġdoping":16485,"ĠAlb":16486,"Ġsom":16487,"icia":16488,"Ġcoroner":16489,"Ġdamn":16490,"Ġ119":16491,"Ġwiped":16492,"ĠAuditor":16493,"hern":16494,"ĠJew":16495,"endra":16496,"osp":16497,"ĠRory":16498,"Ġshapes":16499,"ĠPablo":16500,"Ġforemost":16501,"ĠHos":16502,"ĠCunningham":16503,"145":16504,"ĠRecovery":16505,"!!!":16506,"western":16507,"Ġimaging":16508,"ĠRookie":16509,"ĠMTV":16510,"Ġunc":16511,"ĠSporting":16512,"Ġpatrons":16513,"ĠCoverage":16514,"ĠObservatory":16515,"Ġfishermen":16516,"ĠProvince":16517,"ĠAston":16518,"ĠOsh":16519,"ĠWeekend":16520,"Ġrecruits":16521,"Ġdensity":16522,"FM":16523,"ĠGorsuch":16524,"ĠErie":16525,"lining":16526,"Ġshowcased":16527,"ĠRubio":16528,"Ġchaotic":16529,"Ġattractions":16530,"Ġhug":16531,"ĠHerbert":16532,"ĠRespond":16533,"Ġhappily":16534,"Ġtor":16535,"ĠOTHER":16536,"runner":16537,"ĠShakespeare":16538,"Ġstretching":16539,"ĠJudy":16540,"wyn":16541,"ĠCafe":16542,"Ġgreens":16543,"ĠHend":16544,"Ġglam":16545,"iation":16546,"ĠKingston":16547,"Ġincremental":16548,"Live":16549,"ĠBraun":16550,"USS":16551,"reb":16552,"Ġimperative":16553,"Ġsympathy":16554,"Ġrefuge":16555,"Ġadministered":16556,"rance":16557,"ĠLiberia":16558,"Ġmobil":16559,"heads":16560,"Ġinevitably":16561,"ĠEugene":16562,"ĠBerkshire":16563,"ĠHarbour":16564,"ĠTrends":16565,"TB":16566,"Ġdeficits":16567,"Ġlistings":16568,"Ġreadings":16569,"Ġtumor":16570,"Ġoffic":16571,"opy":16572,"Ġdistracted":16573,"Ġappropriately":16574,"ĠWillis":16575,"Ġskirt":16576,"ĠTea":16577,"Ġshades":16578,"Ġbargaining":16579,"Ġretention":16580,"ĠConcert":16581,"ĠMeteor":16582,"ĠCustom":16583,"Ġinputs":16584,"ĠSah":16585,"enta":16586,"Love":16587,"ĠBurg":16588,"ĠCynthia":16589,"ĠMoses":16590,"ubb":16591,"Ġpeoples":16592,"dh":16593,"ĠFro":16594,"bean":16595,"Ġcigarette":16596,"tta":16597,"umm":16598,"Ġphenomenal":16599,"Ġyelling":16600,"Ġinaug":16601,"Ġconven":16602,"ĠGore":16603,"request":16604,"Ġcolonial":16605,"ĠAleppo":16606,"Ġdemolition":16607,"Ġamounted":16608,"Ġstaggering":16609,"Ġclips":16610,"Ġinconsistent":16611,"ĠMilton":16612,"ĠWireless":16613,"ĠReno":16614,"ĠPerkins":16615,"Ġunusually":16616,"Ġmemor":16617,"Ġhectares":16618,"Ġlat":16619,"central":16620,"ĠDig":16621,"ĠMarina":16622,"ĠPartner":16623,"daily":16624,"your":16625,"Reilly":16626,"Ġpope":16627,"phy":16628,"Ġassessing":16629,"ĠRodrigo":16630,"wi":16631,"Ġcompatible":16632,"imate":16633,"Ġgentle":16634,"ĠRhodes":16635,"Brexit":16636,"ieve":16637,"Ġbreaches":16638,"Ġchopped":16639,"Ġcancers":16640,"VEL":16641,"Ġsluggish":16642,"ĠUltra":16643,"ĠUl":16644,"Ġcrises":16645,"ONE":16646,"ĠEquipment":16647,"Ġcater":16648,"Ġadjourn":16649,"Ġreadily":16650,"ĠRolling":16651,"ĠBott":16652,"inel":16653,"ĠRule":16654,"Ġgrind":16655,"ĠHussain":16656,"ussie":16657,"Ġdepressed":16658,"ĠImperial":16659,"ongo":16660,"Ġuniforms":16661,"Ġ117":16662,"Ġchambers":16663,"ĠDum":16664,"ifi":16665,"ĠBetty":16666,"ĠTA":16667,"Ġpromotions":16668,"itary":16669,"Ġcried":16670,"Ġbranding":16671,"ĠBahamas":16672,"ĠDat":16673,"Ġantibiotics":16674,"ĠAus":16675,"Ġumbrella":16676,"Ġgradual":16677,"Ġaltercation":16678,"Ġlure":16679,"ĠJakarta":16680,"Ġunified":16681,"chin":16682,"ettes":16683,"ĠRwanda":16684,"ulations":16685,"Ġbrink":16686,"Ġbroadcasting":16687,"ĠArtist":16688,"Ġrecon":16689,"Ġaqu":16690,"ĠServ":16691,"999":16692,"ĠParticipants":16693,"ĠVentures":16694,"fight":16695,"Ġactivism":16696,"Ġstructured":16697,"Ġportal":16698,"Ġtendency":16699,"ĠAssociate":16700,"Ġcalf":16701,"ĠOrd":16702,"ĠTi":16703,"ĠFrancois":16704,"uary":16705,"ĠVik":16706,"urchase":16707,"Ġfried":16708,"Ġbooming":16709,"Ġparticles":16710,"amas":16711,"INA":16712,"Super":16713,"supp":16714,"urring":16715,"ĠWatts":16716,"affer":16717,"ĠDEC":16718,"Ġroadway":16719,"border":16720,"Ġsequ":16721,"entially":16722,"ieg":16723,"Ġcamping":16724,"Ġ750":16725,"Ġcycles":16726,"ĠReese":16727,"ĠFellow":16728,"isters":16729,"ĠVehicle":16730,"kies":16731,"ĠJonas":16732,"Ġfoundations":16733,"ĠNigel":16734,"Ġstab":16735,"Ġcongressman":16736,"ĠWichita":16737,"antes":16738,"Ġprogression":16739,"Ġditch":16740,"lik":16741,"Ġsid":16742,"Ġele":16743,"ĠMund":16744,"Ġstairs":16745,"lete":16746,"Ġlingering":16747,"Ġsadly":16748,"Ġay":16749,"Em":16750,"Ġdeadliest":16751,"soon":16752,"Ġtangible":16753,"Ġabusing":16754,"Ġcomprises":16755,"vil":16756,"ĠBun":16757,"Ġdoubling":16758,"Ġcommun":16759,"Ġslogan":16760,"Ġloading":16761,"Ġshallow":16762,"Ġattributes":16763,"Che":16764,"Ġcheering":16765,"Ġrefuses":16766,"cam":16767,"bes":16768,"hon":16769,"ĠSpartans":16770,"cept":16771,"ĠComputer":16772,"ĠCanberra":16773,"ĠWARNING":16774,"Ġstuffed":16775,"block":16776,"ĠJennings":16777,"ĠAU":16778,"atin":16779,"Ġom":16780,"Ġbachelor":16781,"Ġprediction":16782,"ĠWinner":16783,"agne":16784,"Ġrob":16785,"ĠKatherine":16786,"Ġli":16787,"ĠHumph":16788,"ĠPEOPLE":16789,"IRO":16790,"Cola":16791,"Ġguitarist":16792,"isen":16793,"ĠHighlights":16794,"Ġwelcomes":16795,"Ġprisoner":16796,"Ġpsychology":16797,"Ġextradition":16798,"Ġrou":16799,"ĠLund":16800,"Ġthoughtful":16801,"RY":16802,"orman":16803,"Alex":16804,"Ġlaughter":16805,"Ġfumble":16806,"Ġsynthetic":16807,"Ġdigit":16808,"ĠRoc":16809,"ĠFactory":16810,"ellery":16811,"ishment":16812,"ilar":16813,"ĠEarl":16814,"ĠSutton":16815,"ĠJur":16816,"ĠAllan":16817,"ĠKoreans":16818,"uki":16819,"Ġculinary":16820,"PU":16821,"Stock":16822,"stars":16823,"ĠDayton":16824,"beck":16825,"Ġinstability":16826,"ĠBring":16827,"Ġbreeding":16828,"Ġmiracle":16829,"bons":16830,"Ġdonating":16831,"ĠKick":16832,"ĠSag":16833,"afi":16834,"Ġharassed":16835,"asm":16836,"Their":16837,"inity":16838,"Ġacademics":16839,"Ġstatute":16840,"ĠAmit":16841,"Ġpressured":16842,"east":16843,"\"),":16844,"iso":16845,"220":16846,"Ġairplane":16847,"ĠMcCabe":16848,"ctions":16849,"ĠMesa":16850,"Ġsensational":16851,"ĠFE":16852,"ĠNeigh":16853,"Ġbribery":16854,"Ġflaws":16855,"Ġfemales":16856,"Ġmisses":16857,"ĠColor":16858,"ĠVietnamese":16859,"ĠMental":16860,"Unfortunately":16861,"ĠPont":16862,"Ġ1940":16863,"dry":16864,"ĠGazette":16865,"ĠAns":16866,"Ġwhistle":16867,"Ġsymbolic":16868,"Ġpossessions":16869,"ĠDriver":16870,"Ġbracket":16871,"ĠReign":16872,"oji":16873,"Ġoct":16874,"Ġtube":16875,"ĠFelix":16876,"Ġtranslated":16877,"Ġpromptly":16878,"ĠErnest":16879,"arth":16880,"Ġdumb":16881,"Ġinfluences":16882,"taking":16883,"Ġprivat":16884,"erers":16885,"Ġmalware":16886,"Ġpredictable":16887,"Ġtighten":16888,"Ġheights":16889,"Ġfairness":16890,"facing":16891,"Ġrematch":16892,"Ġpoet":16893,"Ġfundamentally":16894,"Ġcoveted":16895,"Ġlivelihood":16896,"ĠABOUT":16897,"Ġsourced":16898,"Ġdeferred":16899,"Ġslashed":16900,"ĠSchultz":16901,"Ġtriggering":16902,"ĠShiv":16903,"Ġlithium":16904,"ahead":16905,"Ġleisure":16906,"Ġbackpack":16907,"ilateral":16908,"ĠNuclear":16909,"ĠLeone":16910,"ĠNice":16911,"Ġenthusiasts":16912,"September":16913,"Ġenroll":16914,"ĠWear":16915,"erey":16916,"angs":16917,"such":16918,"Ġunpopular":16919,"Ġdisciplined":16920,"Ġshrinking":16921,"ĠBrewing":16922,"ĠReally":16923,"Ġdirective":16924,"175":16925,"Ġnotifications":16926,"Ġfortunes":16927,"ĠHour":16928,"ĠGan":16929,"ĠChurchill":16930,"ĠDodge":16931,"ĠJeep":16932,"Ġsour":16933,"Ġderived":16934,"Ġft":16935,"riv":16936,"Ġlaundry":16937,"Ġfentanyl":16938,"ĠSioux":16939,"achi":16940,"workers":16941,"Ġworkload":16942,"rooms":16943,"ĠQU":16944,"ĠTruth":16945,"Ġdefenses":16946,"Ġdunk":16947,"IJ":16948,"Ġderby":16949,"ĠMotion":16950,"ĠMayo":16951,"ĠIke":16952,"Ġpreferences":16953,"Ġped":16954,"elman":16955,"moon":16956,"Ġshoots":16957,"ĠNoel":16958,"Ġmilit":16959,"ĠCambodia":16960,"ĠMLA":16961,"Ġhonoured":16962,"fast":16963,"Ġalgorithms":16964,"Ġstormed":16965,"NT":16966,"Benz":16967,"Ġvaccines":16968,"Ġmarching":16969,"Ġ118":16970,"ĠWilmington":16971,"GM":16972,"coin":16973,"Ġunderwater":16974,"ĠClearly":16975,"Ġorgans":16976,"mir":16977,"Ġdenounced":16978,"pless":16979,"imal":16980,"ĠKom":16981,"Ġfatalities":16982,"Ġyoungster":16983,"Ġthirty":16984,"Ġinternally":16985,"222":16986,"Ġdemonstrating":16987,"Ġbusiest":16988,"Ġperpetrators":16989,"Ġstun":16990,"Both":16991,"ĠMcCoy":16992,"gn":16993,"ĠDalton":16994,"ĠDAY":16995,"Ġsacred":16996,"Ġconsuming":16997,"Ġ(+":16998,"ĠPioneer":16999,"ĠApplications":17000,"ĠBolt":17001,"ĠBarkley":17002,"ĠExpo":17003,"ĠLore":17004,"ĠPrivacy":17005,"ĠHarley":17006,"Ġtractor":17007,"Ġtenth":17008,"ĠHaiti":17009,"ÃŃn":17010,"ĠTVs":17011,"ĠCathedral":17012,"Ġunite":17013,"Ġbinding":17014,"oks":17015,"ĠJenny":17016,"Ġcaller":17017,"ĠIngram":17018,"ĠPrairie":17019,"Ġrunoff":17020,"Ġasserted":17021,"icit":17022,"ĠSie":17023,"102":17024,"ĠMB":17025,"Ġobstruction":17026,"Ġgroom":17027,"Ġtolerate":17028,"Ġcans":17029,"forth":17030,"Ġvillain":17031,"Ġdefining":17032,"ĠFrenchman":17033,"otte":17034,"Ġcontr":17035,"clock":17036,"onder":17037,"Ġprolific":17038,"ĠElectronic":17039,"ĠSak":17040,"annie":17041,"ASS":17042,"Ġmultinational":17043,"Associated":17044,"IZ":17045,"ĠBelle":17046,"Ġmand":17047,"asis":17048,"Mac":17049,"Ġpretend":17050,"ĠCommunication":17051,"Ġheartbreaking":17052,"ĠShepherd":17053,"ĠBIG":17054,"mph":17055,"ĠShield":17056,"ĠLiv":17057,"ĠStatus":17058,"Ġbikini":17059,"Ġranch":17060,"Ġpeacefully":17061,"ITCH":17062,"bourne":17063,"ĠVariety":17064,"Ġstationed":17065,"Ġhed":17066,"Ġexhausted":17067,"Ġsurpassed":17068,"Ġcatalyst":17069,"Ġsmuggling":17070,"uating":17071,"Ġ123":17072,"Ġdup":17073,"ĠSul":17074,"conf":17075,"jit":17076,"Ġmaiden":17077,"asta":17078,"ĠCalvin":17079,"borne":17080,"Ġgrim":17081,"Ġtort":17082,"cott":17083,"olas":17084,"NR":17085,"Ġbreakout":17086,"ĠHun":17087,"ĠGuatemala":17088,"Ġhistorian":17089,"ĠLawyers":17090,"ĠDisplay":17091,"Ġobstruct":17092,"ĠOsborne":17093,"Ġtherapies":17094,"ĠAub":17095,"Ġinjunction":17096,"stroke":17097,"Ġseafood":17098,"Ġhazardous":17099,"ĠWolver":17100,"ĠViolence":17101,"ĠBillion":17102,"ĠLetter":17103,"ĠWorldwide":17104,"Real":17105,"Ġexpires":17106,"Ġflawed":17107,"European":17108,"Ġrigorous":17109,"ĠSimilar":17110,"ĠSurface":17111,"ĠEF":17112,"mys":17113,"ĠFunds":17114,"ographer":17115,"Ġtribes":17116,"Ġspouse":17117,"Ġunsure":17118,"aways":17119,"Ġtrainers":17120,"arie":17121,"ĠZar":17122,"ĠComedy":17123,"ĠLit":17124,"ĠNoon":17125,"Ġgallon":17126,"Ġconsulate":17127,"ĠBras":17128,"iology":17129,"onies":17130,"ĠBelichick":17131,"ĠRoot":17132,"ĠLux":17133,"ĠSed":17134,"ĠTos":17135,"Ġinherited":17136,"tw":17137,"Ġdeaf":17138,"Ġdriveway":17139,"jah":17140,"ĠScientific":17141,"ĠNottingham":17142,"both":17143,"awan":17144,"Ġnut":17145,"ĠLebanese":17146,"ĠAAA":17147,"ĠSuzuki":17148,"ĠBU":17149,"ells":17150,"Ġspecify":17151,"ĠNotes":17152,"Ġvoluntarily":17153,"ĠMolly":17154,"Ġoutskirts":17155,"Ġbehaviors":17156,"Ġmilitia":17157,"Ġsplash":17158,"Ġpersonalized":17159,"ĠFiat":17160,"ĠKind":17161,"ĠTruck":17162,"py":17163,"ĠWIN":17164,"dist":17165,"itational":17166,"APP":17167,"ĠPelicans":17168,"ĠGam":17169,"mel":17170,"Ġmandated":17171,"Ġbalances":17172,"ĠWizards":17173,"iary":17174,"ĠAvailable":17175,"Ġkay":17176,"jin":17177,"eyed":17178,"Ġsterling":17179,"Ġconcealed":17180,"ĠFedEx":17181,"ĠPO":17182,"ĠJacqu":17183,"anted":17184,"eme":17185,"ĠDefensive":17186,"manship":17187,"Ġreliever":17188,"Ġshortstop":17189,"Ġphot":17190,"ĠGain":17191,"ĠConcern":17192,"due":17193,"Ġalgorithm":17194,"fell":17195,"ĠMountains":17196,"icians":17197,"Ġhonoring":17198,"Ġuploaded":17199,"Ġtore":17200,"GH":17201,"orde":17202,"ĠCoin":17203,"ĠAven":17204,"Ġliterary":17205,"Before":17206,"Ġtactic":17207,"Ġsocially":17208,"ĠSik":17209,"Ġthermal":17210,"Ġhor":17211,"price":17212,"Ġrooted":17213,"arrow":17214,"Ġcirculating":17215,"Ġlaughs":17216,"ĠLines":17217,"lig":17218,"Ġjudgement":17219,"....":17220,"Ġsewer":17221,"Ġdancer":17222,"ĠPens":17223,"Ġsig":17224,"ische":17225,"wives":17226,"Ġgran":17227,"ĠBron":17228,"ĠHyde":17229,"yards":17230,"Ġcandidacy":17231,"Ġhey":17232,"Ġcontributors":17233,"ĠUpdated":17234,"Ġ190":17235,"Ġhalls":17236,"Ġemphas":17237,"ĠCherry":17238,"Ġrim":17239,"Ġbilled":17240,"Ġbaked":17241,"ĠPopular":17242,"lb":17243,"Ġgravity":17244,"Under":17245,"Ġreservation":17246,"organ":17247,"ĠPict":17248,"ĠWhitney":17249,"Ġonboard":17250,"NEY":17251,"ĠBreaking":17252,"Ġflagged":17253,"rar":17254,"ĠBasic":17255,"ĠDomestic":17256,"ĠPent":17257,"Ġvigilant":17258,"Ġzoning":17259,"Fire":17260,"Ġcorrected":17261,"isbury":17262,"ĠLaure":17263,"ĠDevon":17264,"print":17265,"ĠTopics":17266,"ĠFuel":17267,"Ġcirculation":17268,"ĠPratt":17269,"Ġskiing":17270,"Ġtornado":17271,"dep":17272,"ĠUnless":17273,"ifting":17274,"Ġfool":17275,"should":17276,"Ġinspectors":17277,"Ġprotested":17278,"Ġba":17279,"ussia":17280,"Ġspun":17281,"grass":17282,"phone":17283,"Ġpotato":17284,"ĠBehind":17285,"cil":17286,"Ġconcession":17287,"Ġapplause":17288,"ĠChin":17289,"Ġceremonies":17290,"pit":17291,"Ġtraumatic":17292,"Ġbasics":17293,"Ġparameters":17294,"ĠMoz":17295,"ĠAIDS":17296,"Ph":17297,"Ġjudging":17298,"Ġlecture":17299,"Ġmunicipality":17300,"Ġcardiac":17301,"ogan":17302,"pir":17303,"could":17304,"Channel":17305,"Ġshattered":17306,"ĠAV":17307,"continental":17308,"chie":17309,"ibi":17310,"ĠOy":17311,"Mon":17312,"ĠCN":17313,"WC":17314,"Ġdistributor":17315,"ĠSavannah":17316,"Ġcleaned":17317,"ĠFlores":17318,"Ġembarrassed":17319,"Ġclay":17320,"Ġvolcano":17321,"Ġstressful":17322,"Ġsummoned":17323,"ĠSeg":17324,"Ġstatistical":17325,"ĠShak":17326,"Ġadequately":17327,"worthy":17328,"fighting":17329,"alan":17330,"Ġnecessity":17331,"Ġresidency":17332,"Ġsober":17333,"arius":17334,"ĠTaj":17335,"mount":17336,"wards":17337,"Ġaesthetic":17338,"Coin":17339,"ĠDew":17340,"were":17341,"SK":17342,"Ġpowerhouse":17343,"Ġcleanup":17344,"ĠWITH":17345,"ĠHers":17346,"ĠRao":17347,"ĠFlyers":17348,"Ġdominating":17349,"issued":17350,"ĠMcGr":17351,"Ġinsurgency":17352,"Ġburial":17353,"ĠPlains":17354,"ensive":17355,"ĠPresent":17356,"Mo":17357,"Ġnerves":17358,"Ġsmoothly":17359,"staff":17360,"Ġrestoring":17361,"ĠGeneration":17362,"Ġcommuters":17363,"ĠLegend":17364,"ĠGad":17365,"lied":17366,"Ġissuer":17367,"ĠDozens":17368,"Ġphases":17369,"ĠWu":17370,"ĠTunisia":17371,"ĠPacers":17372,"Ġdur":17373,"ĠIG":17374,"annon":17375,"sided":17376,"Ġvo":17377,"ĠNI":17378,"Ġvitamin":17379,"Ġsoc":17380,"Ġimmunity":17381,"Ġgenerates":17382,"ĠMcGu":17383,"Ġexplores":17384,"Ġassistants":17385,"Ġstems":17386,"ushed":17387,"ĠZak":17388,"ĠOwners":17389,"Ġvariant":17390,"ardy":17391,"ĠNewark":17392,"ĠCatalonia":17393,"Ġautonomy":17394,"Ġgreet":17395,"Ġawait":17396,"ĠLuckily":17397,"ĠTicket":17398,"ĠSTOR":17399,"asy":17400,"Ġincorrect":17401,"Ġconsisting":17402,"Ġperspectives":17403,"ĠQuint":17404,"Ġtotaling":17405,"Ġnortheastern":17406,"Ġcharacterized":17407,"Ġsurfaces":17408,"nation":17409,"Ġprevents":17410,"ĠSho":17411,"Ġelectorate":17412,"Ġshortfall":17413,"chy":17414,"aws":17415,"ĠAddress":17416,"Ġdefensively":17417,"quel":17418,"chester":17419,"Ġterr":17420,"ahu":17421,"lined":17422,"ĠNev":17423,"unn":17424,"Def":17425,"pc":17426,"ĠSig":17427,"Ġnonetheless":17428,"ĠSundays":17429,"ĠBAS":17430,"Ġpolicemen":17431,"ĠGoal":17432,"apa":17433,"Ġrope":17434,"Ġoutage":17435,"ĠPaso":17436,"Ġsadness":17437,"ĠGrowing":17438,"ĠKyr":17439,"Ġale":17440,"ĠBreitbart":17441,"ĠVia":17442,"ĠBrig":17443,"idence":17444,"Ġ145":17445,"quire":17446,"Ġdistraction":17447,"ĠOdd":17448,"ĠSimply":17449,"ĠNin":17450,"Ġcompetent":17451,"ded":17452,"iper":17453,"ĠKaty":17454,"ĠSolomon":17455,"Ġfeeds":17456,"ĠMort":17457,"ĠRica":17458,"affe":17459,"Ġcooperating":17460,"Ġarrivals":17461,"Ġdelete":17462,"ĠAth":17463,"Ġtrustees":17464,"Ġtub":17465,"Ġsaga":17466,"otes":17467,"ĠCJ":17468,"Ġexited":17469,"stakes":17470,"Ġinflu":17471,"2000":17472,"ĠDonovan":17473,"ĠNur":17474,"Ġoutline":17475,"Ġaudition":17476,"oked":17477,"ĠJag":17478,"money":17479,"Ġcardiovascular":17480,"song":17481,"ĠOften":17482,"ĠGoff":17483,"ĠOaks":17484,"Will":17485,"acon":17486,"Ġ?":17487,"Har":17488,"ĠLambert":17489,"atoon":17490,"ĠAF":17491,"ĠMavericks":17492,"nia":17493,"ĠChennai":17494,"\"},\"":17495,"Ġpairing":17496,"mad":17497,"ause":17498,"ĠRide":17499,"111":17500,"ĠFallon":17501,"ĠHyder":17502,"ĠPiper":17503,"Ġfilmmakers":17504,"icon":17505,"ĠBeau":17506,"Ġbutt":17507,"lot":17508,"Ġrifles":17509,"Ġsunglasses":17510,"ĠTRA":17511,"Ġmagnetic":17512,"arty":17513,"ĠYo":17514,"ĠWeight":17515,"?!":17516,"ether":17517,"Ġaspir":17518,"Ġhunters":17519,"Ġcontamination":17520,"Ben":17521,"political":17522,"],\"":17523,"ĠBever":17524,"Ġmonuments":17525,"won":17526,"auc":17527,"Ġexpressions":17528,"Ġlakes":17529,"iao":17530,"abin":17531,"Ġpleading":17532,"Ġdiscounted":17533,"Ġdisappoint":17534,"ĠTW":17535,"craft":17536,"Ġsocieties":17537,"ĠAugusta":17538,"Ġbott":17539,"Ġmarker":17540,"ĠWrestling":17541,"CBC":17542,"athy":17543,"ĠAZ":17544,"Ġfabulous":17545,"valued":17546,"Ġoptical":17547,"Ġshaken":17548,"OSS":17549,"ĠImp":17550,"ĠAUD":17551,"inals":17552,"Ġrevital":17553,"Ġcontroller":17554,"Ġgrasp":17555,"uling":17556,"ĠFrederick":17557,"ague":17558,"bull":17559,"ĠLadies":17560,"Ġdisruptive":17561,"Ġbenefiting":17562,"Ġverge":17563,"ĠDak":17564,"Ġgrabs":17565,"ĠPAC":17566,"GN":17567,"ĠMcMahon":17568,"rob":17569,"ĠEspecially":17570,"ĠChrome":17571,"ĠBundesliga":17572,"104":17573,"Ġliberty":17574,"ĠSF":17575,"Ġvarieties":17576,"East":17577,"Ġgrowers":17578,"Ġsocialist":17579,"Ġunemployed":17580,"AMI":17581,"Ġtotals":17582,"ĠGib":17583,"Ġdefect":17584,"ĠOrtiz":17585,"ĠPerfect":17586,"Ġpraying":17587,"ISS":17588,"Ġul":17589,"Ġthrust":17590,"osc":17591,"ĠOtherwise":17592,"Ġobsessed":17593,"Ġ650":17594,"ĠWebsite":17595,"Ġspectators":17596,"ĠScout":17597,"ĠBoone":17598,"ĠDillon":17599,"Ġabortions":17600,"lect":17601,"utz":17602,"Ġvillagers":17603,"Ġaccelerating":17604,"Ġslap":17605,"Ġvague":17606,"Ġjurisdictions":17607,"League":17608,"ĠUruguay":17609,"Ġobstacle":17610,"Ġmanufactures":17611,"Ġcampaigned":17612,"ĠAdvance":17613,"ĠNort":17614,"emer":17615,"Ġ1964":17616,"Ġirre":17617,"Ġprog":17618,"ĠFeatured":17619,"Ġcommute":17620,"Ġhandset":17621,"akis":17622,"ĠArs":17623,"tail":17624,"iker":17625,"Ġcrafted":17626,"Ġupl":17627,"ĠMarcos":17628,"Looking":17629,"Ġseated":17630,"ĠBoat":17631,"Ġreadiness":17632,"ĠLLP":17633,"otechnology":17634,"facebook":17635,"ĠScouts":17636,"ĠEar":17637,"ĠAdv":17638,"ĠDemocracy":17639,"NI":17640,"oci":17641,"ĠSnapdragon":17642,"Saturday":17643,"ĠPra":17644,"ĠCoastal":17645,"ĠVoters":17646,"ĠLeigh":17647,"ohn":17648,"orry":17649,"Ġtechnicians":17650,"armed":17651,"Ġshrink":17652,"Ġspinning":17653,"agram":17654,"320":17655,"liner":17656,"ĠContest":17657,"ĠCountries":17658,"Ġfarewell":17659,"ĠCW":17660,"aris":17661,"Ġstorytelling":17662,"Ġpasser":17663,"Ġsailing":17664,"control":17665,"Ġdissent":17666,"ĠRih":17667,"Ġedit":17668,"Ġspoilers":17669,"itched":17670,"ĠBentley":17671,"Ġcant":17672,"mn":17673,"ĠMacy":17674,"Ġindefinitely":17675,"Ġvill":17676,"Ġmeth":17677,"ĠEL":17678,"Ġoptional":17679,"Ġremark":17680,"ĠVanessa":17681,"ã":17682,"Ġmasks":17683,"ĠProvincial":17684,"Ġculprit":17685,"ĠTol":17686,"Ġsnack":17687,"ĠInfinity":17688,"ĠPub":17689,"Ġbrakes":17690,"Ġclar":17691,"Ġinception":17692,"love":17693,"Ġwonders":17694,"Ġforged":17695,"ĠCEOs":17696,"Ġspecifications":17697,"irst":17698,"ension":17699,"ĠMarin":17700,"det":17701,"Ġordeal":17702,"ĠFeed":17703,"December":17704,"Ġstrokes":17705,"fect":17706,"orial":17707,"Ġshowcasing":17708,"Ġstack":17709,"UAL":17710,"ĠAlexandra":17711,"Ġpoison":17712,"ĠFry":17713,"ĠCars":17714,"Ġprototype":17715,"ĠUSDA":17716,"ĠIF":17717,"flows":17718,"Ġtailored":17719,"ĠGear":17720,"Ġmyth":17721,"Ġplatinum":17722,"seven":17723,"founded":17724,"encing":17725,"ĠTip":17726,"ĠMald":17727,"Ġgeopolitical":17728,"112":17729,"Ġenqu":17730,"ĠNR":17731,"ĠNadu":17732,"leen":17733,"ĠTat":17734,"Ġcolon":17735,"ĠSize":17736,"Ġvis":17737,"Ġbere":17738,"ĠAnnie":17739,"ĠWatkins":17740,"Ġpumping":17741,"cur":17742,"ĠBates":17743,"Ġslug":17744,"miss":17745,"Ġforecasting":17746,"source":17747,"Ġacknowledges":17748,"Ġprosecute":17749,"Ġtestament":17750,"Ġcum":17751,"ems":17752,"Ġsocks":17753,"ĠSame":17754,"Ġcompetitiveness":17755,"Ġdefinitive":17756,"Ġintensified":17757,"Ġsatisfying":17758,"Ġphysics":17759,"ĠHarden":17760,"Ġsubsidy":17761,"Men":17762,"ĠPaddock":17763,"Ġworkouts":17764,"ĠSaw":17765,"Ġcrisp":17766,"ĠBezos":17767,"ĠVote":17768,"Ġguiding":17769,"anged":17770,"Ġstaple":17771,"ŀ":17772,"ules":17773,"ĠAvengers":17774,"Ġoptim":17775,"ĠBuffett":17776,"Ġtimetable":17777,"oust":17778,"HE":17779,"ĠGrab":17780,"Have":17781,"cca":17782,"Ġwaived":17783,"Ġretaining":17784,"Ġaber":17785,"Ġoffline":17786,"Ġvigil":17787,"books":17788,"ĠRein":17789,"Ġacknowledging":17790,"ĠDoyle":17791,"Ġproteins":17792,"Ġmixing":17793,"ĠAlcohol":17794,"ĠJD":17795,"Ġsyn":17796,"Ġthieves":17797,"Ġhomemade":17798,"Ġfeminist":17799,"ĠRoosevelt":17800,"ĠCoal":17801,"Ġwishing":17802,"ĠSIGN":17803,"ĠLad":17804,"Ġempathy":17805,"ĠBrooke":17806,"ĠMash":17807,"inations":17808,"''":17809,"ulators":17810,"Ġdrastically":17811,"Ġfloral":17812,"ĠGuild":17813,"Ġundercover":17814,"ĠLaboratory":17815,"ĠRank":17816,"Ġrestraining":17817,"Ġparagraph":17818,"Ġpersona":17819,"ĠEmployment":17820,"ogs":17821,"ĠGw":17822,"ĠMedal":17823,"Ġwildly":17824,"fare":17825,"ĠCNBC":17826,"photo":17827,"Ġtransforming":17828,"Ġtermination":17829,"still":17830,"INT":17831,"Ġbal":17832,"ĠEconom":17833,"ĠLarson":17834,"Ġheck":17835,"Ġquantitative":17836,"Ġemergence":17837,"esta":17838,"Ġknot":17839,"Ġwhale":17840,"ĠðŁĺ":17841,"Ġperimeter":17842,"Ġempowerment":17843,"Ġmg":17844,"Ġrents":17845,"Ġrefreshing":17846,"Ġleasing":17847,"Ġpatents":17848,"andi":17849,"Ġfathers":17850,"Ġunse":17851,"Ġprocessors":17852,"Down":17853,"Ġreversal":17854,"veh":17855,"andal":17856,"ĠKov":17857,"Blue":17858,"Ġspecializes":17859,"Link":17860,"ĠConsidering":17861,"ĠEdmund":17862,"Ġneo":17863,"agger":17864,"rg":17865,"Ġseverity":17866,"Ġcour":17867,"RL":17868,"ĠTeresa":17869,"Ġgallons":17870,"Ġacquitted":17871,"Ġaccompl":17872,"Ġcracks":17873,"Ġsciences":17874,"Club":17875,"Ġpredicts":17876,"ĠVu":17877,"Ġhints":17878,"ĠZack":17879,"Ġrefurb":17880,"Ġdestabil":17881,"ĠSamar":17882,"ĠInfo":17883,"fs":17884,"Ġratios":17885,"Ġinherent":17886,"ĠContinental":17887,"Ġtreasure":17888,"Ġcaucus":17889,"Ġenact":17890,"orporated":17891,"ineries":17892,"Ġtastes":17893,"main":17894,"Ġsq":17895,"ickson":17896,"corruption":17897,"ulture":17898,"ĠGoodman":17899,"ĠLing":17900,"ĠSup":17901,"Ġexposing":17902,"immers":17903,"Ġresponds":17904,"heimer":17905,"Air":17906,"ĠFigures":17907,"Ġlongstanding":17908,"ĠAnalytics":17909,"Ġenforced":17910,"Ġnickname":17911,"Ġclinch":17912,"ĠCarpenter":17913,"ĠPharma":17914,"Ġconstructive":17915,"Ġgel":17916,"ĠSham":17917,"ĠTOP":17918,"ĠDerrick":17919,"ör":17920,"birds":17921,"ĠTong":17922,"ĠBatman":17923,"ĠRouhani":17924,"ĠOlive":17925,"ĠRiv":17926,"Ġdessert":17927,"Ġguides":17928,"Ġsag":17929,"Ġchemotherapy":17930,"Ġslept":17931,"ĠFranc":17932,"ĠDunk":17933,"writers":17934,"ĠÃĹ":17935,"Ġ401":17936,"Ġoutfielder":17937,"ĠHamburg":17938,"izu":17939,"Ġscr":17940,"Ġcomparisons":17941,"Ġwhites":17942,"Ġtraits":17943,"Ġcollateral":17944,"LEY":17945,"ideshow":17946,"Ġstatutory":17947,"Ġruin":17948,"Ġsituated":17949,"tem":17950,"Ġinject":17951,"rage":17952,"550":17953,"Ġfactions":17954,"ĠNaomi":17955,"cutting":17956,"Ġcommunicating":17957,"Ġrailroad":17958,"Ġsparking":17959,"Ġrespiratory":17960,"ĠWebster":17961,"ĠCarbon":17962,"Ġundertaking":17963,"Ġcomposer":17964,"ĠFigure":17965,"Ġspecified":17966,"Video":17967,"uber":17968,"Ġsexuality":17969,"lected":17970,"ĠBurger":17971,"ĠCards":17972,"SR":17973,"ĠLie":17974,"Ġrecount":17975,"Ġexceeding":17976,"Ġquoting":17977,"ĠJama":17978,"ĠVictorian":17979,"Ġsway":17980,"ĠGes":17981,"ĠSI":17982,"ĠKazakhstan":17983,"Ġaccusation":17984,"etr":17985,"Ah":17986,"Ġproc":17987,"Ġlamb":17988,"ĠMorales":17989,"ĠLily":17990,"Ġderail":17991,"Ġcontributes":17992,"iddle":17993,"ĠConcord":17994,"Ġelectr":17995,"Ġequip":17996,"Ġquantum":17997,"Ġthereafter":17998,"Ġarrange":17999,"Ġraided":18000,"ĠMove":18001,"ĠSang":18002,"ĠGaming":18003,"Ġbiology":18004,"ĠAmnesty":18005,"Ġdemise":18006,"ĠBarton":18007,"Ġqualifier":18008,"ANI":18009,"Ġundersc":18010,"Ġroyalty":18011,"ĠINC":18012,"Ġsne":18013,"ariat":18014,"ĠWan":18015,"Ġcluster":18016,"quin":18017,"Ġwhales":18018,"ĠFear":18019,"ĠBrew":18020,"Ġdeport":18021,"airs":18022,"Ġcensus":18023,"OUS":18024,"Ġrespectful":18025,"bone":18026,"Ġwaivers":18027,"friend":18028,"Ġsystemic":18029,"ĠDion":18030,"James":18031,"ĠAdmission":18032,"Ġstigma":18033,"ĠTIME":18034,"Ġunderpin":18035,"ĠWitnesses":18036,"Ġdigs":18037,"Ġgenocide":18038,"Ġstaging":18039,"rolled":18040,"Ġspecially":18041,"oop":18042,"Ġbaseline":18043,"ĠRF":18044,"avis":18045,"Ġvocals":18046,"COL":18047,"LD":18048,"Ġimpending":18049,"ĠCaldwell":18050,"Ġaluminium":18051,"Ġstra":18052,"ĠTayyip":18053,"Ġadmissions":18054,"falls":18055,"Ġrealizing":18056,"oen":18057,"ĠRV":18058,"ĠMog":18059,"Ġadvocating":18060,"ĠPepper":18061,"lived":18062,"ĠWick":18063,"Facebook":18064,"ĠSpect":18065,"Ġshout":18066,"Ġfractured":18067,"vet":18068,"Ġ1966":18069,"Ġcompensate":18070,"ĠVolume":18071,"Ġcategor":18072,"ĠHuntington":18073,"Free":18074,"OUGH":18075,"local":18076,"Sch":18077,"uti":18078,"Ġburger":18079,"Ġbush":18080,"Ġimpacting":18081,"Ġfrost":18082,"tti":18083,"ĠFresno":18084,"onz":18085,"shaw":18086,"ĠLibyan":18087,"Ġassert":18088,"ĠLegacy":18089,"ĠIE":18090,"ĠKinder":18091,"ĠHorizon":18092,"Ġtum":18093,"Ġsignaled":18094,"ĠFors":18095,"Ġspeedy":18096,"rang":18097,"ĠFT":18098,"Ġselecting":18099,"Ġpale":18100,"WD":18101,"Ġprobability":18102,"OUND":18103,"istrate":18104,"Ġsens":18105,"ocating":18106,"Ġinterpret":18107,"Ġpuzzle":18108,"Ġinland":18109,"Ġmanipulation":18110,"Sal":18111,"Ġfulfilling":18112,"ĠMcMaster":18113,"Make":18114,"jun":18115,"giving":18116,"ĠNiagara":18117,"Ġscholars":18118,"ALT":18119,"ĠSteam":18120,"omin":18121,"ĠSau":18122,"ĠDowning":18123,"Ġgy":18124,"ĠTit":18125,"ĠLav":18126,"ĠPepsi":18127,"Ġdumping":18128,"ĠDetect":18129,"ĠTDs":18130,"ĠKob":18131,"ĠSY":18132,"Ġpioneer":18133,"Ġ_":18134,"Ġclarified":18135,"ĠTests":18136,"opic":18137,"ĠMN":18138,"ĠBowman":18139,"umin":18140,"Ġwidow":18141,"Ġrallying":18142,"ĠPull":18143,"Ġprojection":18144,"Ġescalation":18145,"Ġlibraries":18146,"ĠFounder":18147,"ĠHugo":18148,"ĠStyle":18149,"Ġfreelance":18150,"Ġlisteners":18151,"Ġdiscovering":18152,"ĠPlans":18153,"Ġfranchises":18154,"ĠPam":18155,"Ġfarther":18156,"UI":18157,"opers":18158,"103":18159,"ublished":18160,"keys":18161,"aky":18162,"Ġinnov":18163,"¦":18164,"ĠDrum":18165,"Ġwraps":18166,"ĠCongressman":18167,"ĠVenus":18168,"fake":18169,"ĠBronx":18170,"ĠDinner":18171,"faced":18172,"Ġbackward":18173,"inge":18174,"Ġarsenal":18175,"ĠAce":18176,"uden":18177,"fre":18178,"Ġspa":18179,"ĠSaunders":18180,"ĠMatter":18181,"ĠSpons":18182,"Ġconsultations":18183,"ĠRuss":18184,"Ġsculpture":18185,"Ġuncommon":18186,"Nov":18187,"pg":18188,"otherapy":18189,"Ġgol":18190,"ĠBlazers":18191,"Ġadvises":18192,"ĠRegulatory":18193,"ĠBoyle":18194,"Äģ":18195,"Ġcuisine":18196,"Ġencouragement":18197,"yp":18198,"eny":18199,"ĠOrchestra":18200,"ĠChicken":18201,"Ġ1965":18202,"ĠPret":18203,"ĠCooperation":18204,"ĠDevices":18205,"ĠRodney":18206,"ĠHonduras":18207,"ĠEgg":18208,"Ġchurn":18209,"Ġclutch":18210,"ĠBernstein":18211,"Ġain":18212,"Ġformidable":18213,"ĠFacility":18214,"Ġpag":18215,"mons":18216,"bol":18217,"Ġliteracy":18218,"Ġsubmissions":18219,"ĠHulu":18220,"ĠConstitutional":18221,"ĠIsh":18222,"ĠPaula":18223,"olve":18224,"Ġabundance":18225,"ĠAla":18226,"ĠEcuador":18227,"Ġreconstruction":18228,"Ġcrush":18229,"reek":18230,"ĠÂŃ":18231,"ibo":18232,"Ġpracticed":18233,"Ġpac":18234,"rett":18235,"Ġpasta":18236,"Ġresp":18237,"ĠFlag":18238,"pal":18239,"Ġcommenting":18240,"Ġrecap":18241,"âĢĶâĢĶ":18242,"ĠToy":18243,"ĠMeredith":18244,"Ġreceipt":18245,"Ġseparating":18246,"ĠMap":18247,"Ġmogul":18248,"ĠBurlington":18249,"Ġger":18250,"Ġcoordinate":18251,"grad":18252,"Ġescalated":18253,"Ġproceeded":18254,"turned":18255,"Ġupt":18256,"hum":18257,"ĠWere":18258,"Whether":18259,"Ġenjoyable":18260,"energy":18261,"Ġprohibit":18262,"Ġhurdle":18263,"Ġdivorced":18264,"Ġcommentator":18265,"GT":18266,"ATH":18267,"Ġtravellers":18268,"Ġpopulated":18269,"ĠVo":18270,"ĠRebels":18271,"Ġspurred":18272,"Ġideological":18273,"Ġelephant":18274,"keyes":18275,"Pat":18276,"Ġlinger":18277,"Ġreps":18278,"Ġcocktails":18279,"ĠKristen":18280,"istically":18281,"Ġgunmen":18282,"Ġ1920":18283,"Ġquart":18284,"National":18285,"Ġexceptions":18286,"kat":18287,"priced":18288,"ĠHarold":18289,"ĠPistons":18290,"Ġcompounds":18291,"Ġmouse":18292,"Ġexhibits":18293,"ĠBurk":18294,"Ġclassmates":18295,"Ġcirculated":18296,"Ġattributable":18297,"ĠBaton":18298,"Ġorganizer":18299,"Ġdurable":18300,"Ġsingers":18301,"ĠOman":18302,"Ġhydrogen":18303,"Ġslash":18304,"Ġaccidental":18305,"ĠAbrams":18306,"KS":18307,"itty":18308,"Ġrust":18309,"Ġselections":18310,"porting":18311,"ĠEmanuel":18312,"XX":18313,"ĠThornton":18314,"Ġcolumns":18315,"Ġsentiments":18316,"fun":18317,"Ġplight":18318,"ĠSister":18319,"ĠMaggie":18320,"hya":18321,"Daniel":18322,"Ġplung":18323,"orio":18324,"ĠYorker":18325,"ĠSaturdays":18326,"Ġloc":18327,"aye":18328,"illon":18329,"ĠConsulting":18330,"pled":18331,"ĠZin":18332,"ĠFarms":18333,"ĠGiuliani":18334,"ĠMIN":18335,"ĠHanson":18336,"ĠComplete":18337,"ourke":18338,"oche":18339,"ĠJord":18340,"Ġprofessors":18341,"ĠWILL":18342,"ĠCron":18343,"Ġdorm":18344,"Ġcracking":18345,"tur":18346,"ORS":18347,"Ant":18348,"Ġdeduction":18349,"ĠSIM":18350,"igue":18351,"ĠValent":18352,"ĠEthereum":18353,"ĠSunny":18354,"ĠExtra":18355,"ivan":18356,"ĠFo":18357,"Ġleases":18358,"ibe":18359,"Ġ1800":18360,"Ġslapped":18361,"emaker":18362,"Ġfa":18363,"rien":18364,"ĠPeriod":18365,"ĠES":18366,"ĠBlu":18367,"Ġpreserving":18368,"Ġsmarter":18369,"mans":18370,"Ġgest":18371,"zu":18372,"nu":18373,"Ġdivest":18374,"roc":18375,"ĠFlood":18376,"Given":18377,"ĠNorton":18378,"Ġgranting":18379,"Ġdealings":18380,"Ġgeographic":18381,"esa":18382,"Ġcub":18383,"Ġcriticizing":18384,"ĠCub":18385,"Ġsurroundings":18386,"ĠInternal":18387,"Ġsle":18388,"Ġcrushing":18389,"ĠPP":18390,"izations":18391,"ĠAbdel":18392,"Joe":18393,"ĠVisitors":18394,"ĠCarly":18395,"INGTON":18396,"ĠGC":18397,"ĠWB":18398,"Ġgently":18399,"·":18400,"though":18401,"ĠAlto":18402,"Ġresting":18403,"ĠPerson":18404,"ĠTon":18405,"Ġbore":18406,"ĠClar":18407,"Ġmot":18408,"Ġbathrooms":18409,"ĠTypically":18410,"Ġdisconnect":18411,"Ġtightly":18412,"ĠHarvest":18413,"ĠHed":18414,"ĠGermans":18415,"atar":18416,"Ġkeynote":18417,"Ġimproper":18418,"fil":18419,"Ġintens":18420,"iev":18421,"Ġmedi":18422,"Ġtenant":18423,"Ġfootsteps":18424,"uli":18425,"Ġlegalization":18426,"106":18427,"ĠLexington":18428,"folio":18429,"Ġ½":18430,"ĠRita":18431,"Ġbattered":18432,"inka":18433,"ĠJavaScript":18434,"ĠMusical":18435,"ĠTalent":18436,"Ġlounge":18437,"Ġintimidation":18438,"ikh":18439,"ĠFam":18440,"Ġtherapeutic":18441,"Ġbalancing":18442,"Ġrocky":18443,"liners":18444,"ĠPredators":18445,"Ġregistering":18446,"Ġdiligence":18447,"ĠRover":18448,"ĠDot":18449,"Ġterminated":18450,"ĠEdu":18451,"Ġcharming":18452,"ĠPLAY":18453,"ĠFact":18454,"ĠCi":18455,").\"":18456,"ĠWrestle":18457,"hun":18458,"Ġopenings":18459,"Ġfou":18460,"Ġ126":18461,"spe":18462,"ĠAW":18463,"Ġbud":18464,"ĠTemper":18465,"ĠOrthodox":18466,"Ġprogressed":18467,"tre":18468,"Ġtasting":18469,"Ġscrutin":18470,"ĠLima":18471,"Ġlayout":18472,"Ġlitter":18473,"ijk":18474,"ĠParkinson":18475,"ĠAnfield":18476,"Ġdevelopmental":18477,"Ġheaven":18478,"ĠWoodward":18479,"index":18480,"Ġpistol":18481,"Ġreson":18482,"ĠWS":18483,"Ġemb":18484,"ĠLap":18485,"ĠPle":18486,"lington":18487,"ĠSit":18488,"Ġabruptly":18489,"ĠSenegal":18490,"ĠYates":18491,"aceutical":18492,"ĠJak":18493,"ĠHastings":18494,"iste":18495,"ĠDB":18496,"ĠAgent":18497,"Ġpreservation":18498,"ĠLank":18499,"ĠSuffolk":18500,"Ġboo":18501,"essed":18502,"Ġempowering":18503,"enne":18504,"Ġrecycled":18505,"Ġstrateg":18506,"Ġbrake":18507,"135":18508,"ĠStef":18509,"ĠFlake":18510,"ĠGregg":18511,"ĠRent":18512,"Ġinstallment":18513,"FW":18514,"ĠCran":18515,"obo":18516,"ml":18517,"ĠJade":18518,"Ġaccuses":18519,"ĠNvidia":18520,"Ġburg":18521,"High":18522,"Ġbothered":18523,"ĠBenn":18524,"Ġinterrupted":18525,"Ġtrek":18526,"Ġserv":18527,"Ġpatron":18528,"Ġdictator":18529,"owa":18530,"jad":18531,"ĠTulsa":18532,"Ġboil":18533,"Ġdisplaying":18534,"Ġcinem":18535,"awaited":18536,"¸":18537,"Ġreacts":18538,"ĠDee":18539,"ĠGron":18540,"igation":18541,"Ġservic":18542,"capt":18543,"Ġinsane":18544,"ĠVeteran":18545,"umen":18546,"End":18547,"ĠCream":18548,"Ġextremism":18549,"ĠMalone":18550,"Col":18551,"Ġsafeguard":18552,"Ġtomatoes":18553,"die":18554,"Ġchamp":18555,"zero":18556,"ĠPRES":18557,"Ġchoir":18558,"Ġpediatric":18559,"Ġprivileged":18560,"Ġdownstream":18561,"Business":18562,"ĠFighting":18563,"atable":18564,"Ġsums":18565,"Ġinsult":18566,"arten":18567,"ĠWikiLeaks":18568,"Ġpads":18569,"Ġretali":18570,"ĠHunts":18571,"Ġindie":18572,"ĠShields":18573,"ĠMortgage":18574,"oses":18575,"ampton":18576,"ĠVideos":18577,"ĠPER":18578,"itionally":18579,"ĠKimmel":18580,"sum":18581,"trade":18582,"acity":18583,"marked":18584,"ĠAngus":18585,"Ġtemper":18586,"Ġseizure":18587,"Ġfictional":18588,"utton":18589,"eva":18590,"Rs":18591,"Ġintra":18592,"ĠRequest":18593,"ppe":18594,"ĠeBay":18595,"ĠUSS":18596,"Ġ1500":18597,"Ġpossessing":18598,"Ġbacon":18599,"ĠSexual":18600,"ĠBuff":18601,"Ġslaughter":18602,"Ġjur":18603,"zhou":18604,"suit":18605,"ĠCha":18606,"ĠBuk":18607,"crime":18608,"ĠEasy":18609,"ĠChain":18610,"aq":18611,"ĠPall":18612,"flation":18613,"225":18614,"oup":18615,"109":18616,"ĠMcKenzie":18617,"Ġclearer":18618,"ĠDogs":18619,"oration":18620,"Ġsubs":18621,"Follow":18622,"ĠShirley":18623,"Ġadjusting":18624,"ĠEFF":18625,"Ġflipped":18626,"Ġconform":18627,"ĠLaurent":18628,"Ġcircular":18629,"ĠNOR":18630,"Ġmort":18631,"Ġtexture":18632,"avour":18633,"Ġflex":18634,"ĠHedge":18635,"ðŁĺ":18636,"Ġtrophies":18637,"ĠINV":18638,"Ġboast":18639,"ĠTyr":18640,"ĠNichols":18641,"ĠSpa":18642,"Ġcheered":18643,"Ġprey":18644,"reach":18645,"Ġbreached":18646,"ĠRegions":18647,"ĠLyft":18648,"ĠTul":18649,"ĠKore":18650,"Ġendure":18651,"ĠCover":18652,"\").":18653,"ĠSavage":18654,"ère":18655,"reens":18656,"Ġnic":18657,"sector":18658,"Ġweaknesses":18659,"Ġreboot":18660,"Ġ210":18661,"Ġimagery":18662,"ĠFrem":18663,"Ġclue":18664,"ĠLars":18665,"Ġfaction":18666,"hetic":18667,"Ġallied":18668,"ĠMarvin":18669,"Ġmethodology":18670,"ĠTN":18671,"Ġutter":18672,"Ġ270":18673,"ĠVolvo":18674,"oline":18675,"ĠACLU":18676,"Ġindirect":18677,"Ġminer":18678,"ĠBale":18679,"ĠStrange":18680,"ĠFuller":18681,"Ġexpelled":18682,"ĠTropical":18683,"Ġremotely":18684,"ĠTIM":18685,"Ġinnocence":18686,"Ġconfined":18687,"Ġfares":18688,"Ġprevalent":18689,"Ġdesp":18690,"House":18691,"azar":18692,"Ġgestures":18693,"ĠCES":18694,"ĠDM":18695,"eal":18696,"ĠÐ":18697,"Ġburnt":18698,"Ġframed":18699,"ĠDani":18700,"Ġhol":18701,"ĠCannes":18702,"ĠHayden":18703,"Ġwardrobe":18704,"ĠAssange":18705,"ĠSamp":18706,"bay":18707,"sky":18708,"ĠHence":18709,"ĠGrizzlies":18710,"rates":18711,"laws":18712,"ĠMandela":18713,"ĠHoover":18714,"rics":18715,"charged":18716,"Ġexclude":18717,"Ġpassive":18718,"Ġcontinuation":18719,"Ġblunt":18720,"Ġvac":18721,"ĠEmerging":18722,"rench":18723,"tv":18724,"ĠHollow":18725,"ĠOC":18726,"Ġadvisors":18727,"Ġrendered":18728,"ĠBernardino":18729,"ĠSupporters":18730,"ronic":18731,"Ġchancellor":18732,"Ġ1963":18733,"Ġuranium":18734,"Ġak":18735,"ĠOptions":18736,"ermott":18737,"ĠBerger":18738,"ibia":18739,"Ġexplosions":18740,"Ġimpairment":18741,"Ġhail":18742,"Ġalley":18743,"Ġcruelty":18744,"ĠClarence":18745,"Ġvariations":18746,"Ġrealm":18747,"Ġrenovations":18748,"ĠNorwich":18749,"Ġbelongings":18750,"Ġmerchants":18751,"ĠMinisters":18752,"ĠDodd":18753,"Ġviewer":18754,"Ġneutrality":18755,"quer":18756,"ĠPrinceton":18757,"dead":18758,"arest":18759,"GET":18760,"ĠCanadiens":18761,"ĠIgn":18762,"clear":18763,"Mal":18764,"ĠBridges":18765,"ĠHayward":18766,"Ġremarked":18767,"ingle":18768,"Ġsob":18769,"Ġdepart":18770,"beans":18771,"Ġpreserved":18772,"ĠFairfax":18773,"Ġforgot":18774,"ĠBeh":18775,"Rob":18776,"Ġcooperative":18777,"ullah":18778,"Ġmates":18779,"Ġrang":18780,"Ġthigh":18781,"Ġabducted":18782,"Ġchaired":18783,"ĠHearts":18784,"Ġidentifies":18785,"ĠBuckingham":18786,"ijn":18787,"ĠJab":18788,"Ġclashed":18789,"feed":18790,"sites":18791,"ĠCareer":18792,"exp":18793,"ĠBuccaneers":18794,"scape":18795,"Ġupdating":18796,"Ġintentional":18797,"ĠGuam":18798,"ĠBreakfast":18799,"ĠHag":18800,"Media":18801,"Ġtapping":18802,"Ġpics":18803,"Ġeaten":18804,"Ġpremise":18805,"Kim":18806,"ĠStorage":18807,"Ġextensively":18808,"Ġoutrageous":18809,"ĠSadly":18810,"Global":18811,"¢":18812,"leaning":18813,"CM":18814,"Ġeasiest":18815,"ument":18816,"Ġ122":18817,"Ġdaunting":18818,"ISE":18819,"Ġsunset":18820,"Ġreset":18821,"Ġbent":18822,"Trust":18823,"ĠCaleb":18824,"ĠRut":18825,"ĠBast":18826,"ETS":18827,"iencies":18828,"Ġpu":18829,"ature":18830,"Ġrealities":18831,"omi":18832,"Ġsoda":18833,"Ġunveil":18834,"ĠGoldberg":18835,"opes":18836,"Ġuprising":18837,"ĠMR":18838,"Ġendorse":18839,"Ġsail":18840,"Ġconverting":18841,"Ġglamorous":18842,"ĠHollande":18843,"108":18844,"isky":18845,"Ġcushion":18846,"240":18847,"Ġadventures":18848,"Ġantitrust":18849,"ĠStockholm":18850,"pace":18851,"ĠVald":18852,"ĠTransfer":18853,"ERT":18854,"ĠMcInt":18855,"Ġsurging":18856,"ogn":18857,"Ġlauded":18858,"ĠZam":18859,"ĠRough":18860,"TOR":18861,"Ġwed":18862,"Ġorigins":18863,"ĠEld":18864,"oso":18865,"Ġsupplying":18866,"ĠPetty":18867,"ĠTwe":18868,"ĠDenise":18869,"ĠBec":18870,"Ġbehave":18871,"Ġ121":18872,"estone":18873,"ĠBoulder":18874,"ĠBlackhawks":18875,"ĠWyatt":18876,"Ġfiguring":18877,"ĠDeborah":18878,"agi":18879,"significant":18880,"Ġasthma":18881,"Ġmessy":18882,"mpire":18883,"Ġax":18884,"Ġaspiring":18885,"ĠNH":18886,"ĠGina":18887,"heavy":18888,"ĠVick":18889,"ÃŃs":18890,"something":18891,"Ġbodily":18892,"Ġunauthorized":18893,"ĠActually":18894,"ĠOH":18895,"Ġmicrophone":18896,"allah":18897,"Ġrampant":18898,"Ġrelocated":18899,"Ġwidening":18900,"ĠCait":18901,"nel":18902,"ĠBlackBerry":18903,"Ġprofessionally":18904,"ĠInterestingly":18905,"Ġbarbecue":18906,"Ġresisting":18907,"ĠNunes":18908,"disc":18909,"Ġgroundbreaking":18910,"orable":18911,"ĠRegulation":18912,"Ġborrowed":18913,"Ġleaking":18914,"Ġlengths":18915,"Ġunveiling":18916,"houses":18917,"Ġ155":18918,"ĠBillboard":18919,"icion":18920,"Times":18921,"ĠZoe":18922,"ĠAbby":18923,"bus":18924,"ĠMinutes":18925,"ributed":18926,"Ġparap":18927,"Ġfertil":18928,"ABC":18929,"ĠIsle":18930,"Ġtherapist":18931,"Ġgubernatorial":18932,"ĠAust":18933,"ĠLoan":18934,"Bo":18935,"ĠNRL":18936,"rag":18937,"Clear":18938,"Ġrevision":18939,"Ġflesh":18940,"BD":18941,"iji":18942,"Ġproductions":18943,"Ġcoconut":18944,"ĠMcCorm":18945,"ĠDash":18946,"Ġgeography":18947,"hearted":18948,"Ġarson":18949,"Ġgoaltender":18950,"Ġbelly":18951,"Ġqualifications":18952,"ĠActiv":18953,"Ġhooked":18954,"ĠHungarian":18955,"Ġprotocols":18956,"inking":18957,"Ġfronts":18958,"ĠKuala":18959,"ĠToys":18960,"ĠFitness":18961,"Ġwarfare":18962,"Ġoutp":18963,"ĠQuestions":18964,"Ġwel":18965,"ĠShan":18966,"ĠMorton":18967,"ĠRomero":18968,"Ġglance":18969,"ĠTay":18970,"Ġsneakers":18971,"ĠSymphony":18972,"Ġinspect":18973,"enna":18974,"Nobody":18975,"Ġscrapped":18976,"ĠDeVos":18977,"ĠDominican":18978,"Ġplanets":18979,"anova":18980,"Ġnotify":18981,"Ġincurred":18982,"Ġunders":18983,"Ġdetainees":18984,"ĠMarriott":18985,"electric":18986,"ĠKes":18987,"union":18988,"ĠWatt":18989,"ATING":18990,"Ġslipping":18991,"Ġraft":18992,"Ġresisted":18993,"Ġcred":18994,"tern":18995,"Ġflurry":18996,"Line":18997,"Ġconsulted":18998,"Ġanalyzing":18999,"107":19000,"ĠWide":19001,"¶":19002,"human":19003,"ĠFEMA":19004,"Ġsmash":19005,"Ġcorps":19006,"Ġbarric":19007,"Ġcollar":19008,"ĠTB":19009,"without":19010,"ĠCanucks":19011,"Ġneedle":19012,"ĠSidney":19013,"ĠLauderdale":19014,"Ġglove":19015,"ilee":19016,"pic":19017,"Ġbenef":19018,"ĠHydro":19019,"ĠDisc":19020,"ĠArg":19021,"Ġtermin":19022,"Ġsympath":19023,"Ġpest":19024,"ĠCoff":19025,"Ġadvancement":19026,"social":19027,"pol":19028,"ĠEmails":19029,"Ġstacked":19030,"ibly":19031,"ĠAlbion":19032,"Ġfist":19033,"hero":19034,"ĠMarian":19035,"asia":19036,"Ġtownship":19037,"Ġslick":19038,"Ġmodeling":19039,"achers":19040,"ĠArgent":19041,"ĠSUN":19042,"arde":19043,"Ġpinned":19044,"Ġhitters":19045,"Ġdare":19046,"ictions":19047,"arily":19048,"Ġsting":19049,"Ġprimaries":19050,"appointed":19051,"Ġformats":19052,"Ġglitter":19053,"Ġpatches":19054,"Ġstrategically":19055,"Ġaka":19056,"Ġyielded":19057,"BY":19058,"Ġjeopard":19059,"ĠVand":19060,"Ġcrowned":19061,"Ġoccupants":19062,"Ġtanker":19063,"ĠVisa":19064,"Great":19065,"Ġseasoned":19066,"ĠAviv":19067,"Ġfiery":19068,"Ġderivatives":19069,"Ġdiverted":19070,"Ġacqu":19071,"Ġsandwiches":19072,"ĠLorenzo":19073,"Ġpardon":19074,"ĠBarber":19075,"ĠAgricultural":19076,"ĠPhilly":19077,"Ġregrets":19078,"ĠMillions":19079,"ĠFrazier":19080,"Ġtreasury":19081,"ĠKenn":19082,"Ġdestined":19083,"olved":19084,"Back":19085,"leader":19086,"lyss":19087,"ĠReyes":19088,"001":19089,"bags":19090,"ĠStandards":19091,"ĠExcellence":19092,"ĠMaid":19093,"ĠAnthem":19094,"FIELD":19095,"Ġrevived":19096,"ĠQuad":19097,"Ġdistinguished":19098,"Ġweighted":19099,"Ġritual":19100,"Ġinvites":19101,"wana":19102,"iture":19103,"ĠCI":19104,"ĠMAY":19105,"Ġunfairly":19106,"ĠKP":19107,"ĠMidlands":19108,"Ġmint":19109,"uers":19110,"Ġcatalog":19111,"arant":19112,"Ġlosers":19113,"Ġscheduling":19114,"esar":19115,"Ġtransferring":19116,"Ġbankrupt":19117,"Ġmethamphetamine":19118,"ĠEsk":19119,"ĠTreatment":19120,"ĠResponse":19121,"Ġhomework":19122,"ĠBald":19123,"Ġembarrassment":19124,"Ġpoorest":19125,"ĠPlatinum":19126,"ĠFac":19127,"Ġunleashed":19128,"Ġbrighter":19129,"002":19130,"Ġdisl":19131,"ĠLowry":19132,"ived":19133,"ĠDemon":19134,"ĠNonetheless":19135,"arro":19136,"ĠCONT":19137,"ifted":19138,"ĠFreder":19139,"isson":19140,"Ġrout":19141,"ARA":19142,"Ġswinging":19143,"Oct":19144,"Ġliable":19145,"Ġleaning":19146,"Ġlungs":19147,"380":19148,"ĠProcess":19149,"ĠCov":19150,"terrorism":19151,"Ġresistant":19152,"Ġpumped":19153,"Ġtripled":19154,"Semitism":19155,"ĠMia":19156,"Ġpenetration":19157,"ĠLutheran":19158,"BU":19159,"odes":19160,"Ġspanning":19161,"utch":19162,"Trans":19163,"ĠVolunteers":19164,"Ġpathway":19165,"Ġinfectious":19166,"Ġdrastic":19167,"ĠEngineers":19168,"Ġprincess":19169,"acts":19170,"usting":19171,"utive":19172,"achel":19173,"DO":19174,"Ġpave":19175,"ĠHerrera":19176,"Ġnearing":19177,"help":19178,"Ġembarked":19179,"Ġmodes":19180,"ĠDriving":19181,"Ġopting":19182,"Best":19183,"Ġbehavioral":19184,"Ġcables":19185,"App":19186,"otion":19187,"ĠExt":19188,"ĠSinclair":19189,"ĠInsp":19190,"Ġsinking":19191,"Next":19192,"ĠLumpur":19193,"ĠShadow":19194,"Donald":19195,"itals":19196,"Ġmentions":19197,"floor":19198,"Ġconsiderations":19199,"ĠSquad":19200,"ĠPlate":19201,"dos":19202,"Friday":19203,"Hopefully":19204,"arre":19205,"Ġalum":19206,"\":\"/":19207,"Ġfet":19208,"anza":19209,"Ġdign":19210,"ĠNguyen":19211,"ĠRutgers":19212,"ĠSew":19213,"Ġfilters":19214,"ofi":19215,"Ġunavailable":19216,"ranking":19217,"Ġrefining":19218,"ĠUNC":19219,"Ġmax":19220,"yll":19221,"Ġhandsome":19222,"Ġutterly":19223,"See":19224,"ĠStores":19225,"Ke":19226,"ĠAdvoc":19227,"ordon":19228,"umbles":19229,"Ġbugs":19230,"olar":19231,"ĠCork":19232,"Ġtoken":19233,"Ġauthorization":19234,"Ġconscience":19235,"Ġrepl":19236,"edi":19237,"owitz":19238,"iven":19239,"Ġlieu":19240,"Ġlifts":19241,"Lean":19242,"Ġmagnificent":19243,"ĠFilms":19244,"onents":19245,"Ġ***":19246,"Green":19247,"ĠAdvocate":19248,"ĠArrow":19249,"Ġblows":19250,"Ġexploited":19251,"fly":19252,"ĠAmar":19253,"ĠNOTICE":19254,"Ġsincere":19255,"found":19256,"ĠRud":19257,"Ġcy":19258,"ĠHeidi":19259,"Ġempowered":19260,"Ġweakest":19261,"ĠKru":19262,"Credit":19263,"aunted":19264,"Ġexotic":19265,"aning":19266,"Ġaw":19267,"ĠMulti":19268,"Ġanimation":19269,"850":19270,"ĠCounter":19271,"ĠNit":19272,"alli":19273,"Ġcapitalize":19274,"Ġexecuting":19275,"Ġdescent":19276,"ovi":19277,"ĠKimberly":19278,"headed":19279,"Ġmentioning":19280,")-":19281,"ĠSpecifically":19282,"ayette":19283,"ihad":19284,"ĠIss":19285,"Ġdisagreed":19286,"ĠKum":19287,"Ġurges":19288,"Ġpermitting":19289,"Ġpy":19290,"isp":19291,"Ġhygiene":19292,"Ġmourning":19293,"Ġcyclists":19294,"cats":19295,"FER":19296,"cycl":19297,"Ġnewcomers":19298,"Ġplead":19299,"Ġmend":19300,"secret":19301,"fan":19302,"Ġtranslates":19303,"unit":19304,"ĠTank":19305,"drive":19306,"ĠSite":19307,"Ġacceleration":19308,"ĠEnrique":19309,"ĠElaine":19310,"Ġstaring":19311,"Ġbackwards":19312,"Ġot":19313,"Ġvot":19314,"ĠHK":19315,"Ġfian":19316,"ĠLockheed":19317,"Ġmanifest":19318,"ĠZurich":19319,"pad":19320,"ĠRav":19321,"flow":19322,"Ġmoms":19323,"ĠSolid":19324,"ĠReady":19325,"aughlin":19326,"Ġreminding":19327,"ĠCOR":19328,"Ġoptimal":19329,"ĠCrisis":19330,"Ġcholesterol":19331,"ĠGerard":19332,"Ġfest":19333,"Ġsanction":19334,"Ġdragging":19335,"inent":19336,"ĠBravo":19337,"Ġamend":19338,"aval":19339,"Ġpoem":19340,"Ġinvasive":19341,"Ġlandsc":19342,"leigh":19343,"Ġheadache":19344,"ĠMuse":19345,"ĠTurning":19346,"girl":19347,"cess":19348,"Ġfalsely":19349,"Ġplaintiff":19350,"Ġheavier":19351,"Ġrumored":19352,"Ġeleven":19353,"ĠConsumers":19354,"ĠOriginally":19355,"ĠStatement":19356,"bors":19357,"Ġrevoked":19358,"ĠOmaha":19359,"Fox":19360,"ĠKle":19361,"Ġvault":19362,"Ġoutdated":19363,"umes":19364,"ĠArk":19365,"Ġapologised":19366,"Ġrockets":19367,"ĠMarines":19368,"Ġcaptures":19369,"ĠMW":19370,"ĠWalters":19371,"ĠFactor":19372,"Ġensuing":19373,"ĠSession":19374,"oons":19375,"Ġ132":19376,"gt":19377,"ĠPoints":19378,"Ġexhaust":19379,"ĠOsaka":19380,"heed":19381,"Ġhandic":19382,"amber":19383,"inging":19384,"Ġll":19385,"Ġescorted":19386,"Ġfloated":19387,"Ġmerge":19388,"Ġcompliment":19389,"ĠVC":19390,"Ġinsulin":19391,"ĠDebt":19392,"ça":19393,"Ġpens":19394,"Ġassertion":19395,"Ġredevelopment":19396,"moderate":19397,"Ġleftist":19398,"ĠBA":19399,"Ġherd":19400,"Ġinsecurity":19401,"liter":19402,"Ġcommence":19403,"ĠCaucus":19404,"Ġnovels":19405,"ĠChevron":19406,"Ġerosion":19407,"ĠNicholson":19408,"ĠRoof":19409,"ĠVolunteer":19410,"Ġcompelled":19411,"Ġcongratulated":19412,"ĠPanel":19413,"Ġov":19414,"idelity":19415,"Ġspect":19416,"Ġbee":19417,"ĠAssistance":19418,"Ġterrified":19419,"iew":19420,"Ġweekday":19421,"ĠHiggins":19422,"special":19423,"ubs":19424,"anton":19425,"Ġbribes":19426,"Ġneat":19427,"ĠCliff":19428,"Ġdisqualified":19429,"ĠND":19430,"Ġvers":19431,"andra":19432,"Ġgraft":19433,"value":19434,"Ġportray":19435,"Ġdaytime":19436,"ksh":19437,"Ġconsist":19438,"Ġhonesty":19439,"ĠTimber":19440,"ĠNich":19441,"Ġinvented":19442,"ĠBuch":19443,"Ġskull":19444,"Ġtags":19445,"Ġ124":19446,"ighth":19447,"Ġrelaxing":19448,"Online":19449,"Ġsanctioned":19450,"Sport":19451,"ĠCove":19452,"Ġcomics":19453,"MW":19454,"AMA":19455,"mother":19456,"Home":19457,"ĠCustomer":19458,"Ġstrides":19459,"ĠWins":19460,"Ġrollout":19461,"ĠWeaver":19462,"Ġshuttle":19463,"Ġsteak":19464,"Ġglorious":19465,"ĠToll":19466,"Ġtrustee":19467,"Ġinstallations":19468,"ĠOpportunity":19469,"Ġoper":19470,"horse":19471,"Ġaided":19472,"irus":19473,"Ġsleek":19474,"Ġyelled":19475,"ĠSocialist":19476,"Ġapplaud":19477,"ĠWah":19478,"Ġdevote":19479,"Ġdh":19480,"Ġarchitectural":19481,"ĠMAC":19482,"centric":19483,"ĠSense":19484,"illas":19485,"ĠArchbishop":19486,"glass":19487,"Ġallowance":19488,"Ġbundle":19489,"andon":19490,"eight":19491,"ĠKare":19492,"haus":19493,"ĠAndreas":19494,"Ġdoll":19495,"RAM":19496,"Ġvolunteering":19497,"ĠRaleigh":19498,"Ġbees":19499,"Ġnickel":19500,"Ġgenerosity":19501,"Ġhomeowner":19502,"ĠLieutenant":19503,"Ġlandfall":19504,"ĠRenew":19505,"ĠGiving":19506,"ĠContribut":19507,"aret":19508,"ulf":19509,"Ġreinforce":19510,"ĠSalv":19511,"ĠVenice":19512,"Ġfreedoms":19513,"ĠTools":19514,"Ġ1962":19515,"ĠWarm":19516,"majority":19517,"Ġpleas":19518,"oding":19519,"plant":19520,"Ġtow":19521,"ĠBlanc":19522,"ĠPipeline":19523,"ĠMoor":19524,"Ġrefrain":19525,"ĠExplore":19526,"language":19527,"cers":19528,"ĠWT":19529,"sent":19530,"ĠNun":19531,"Ġplastics":19532,"acas":19533,"Ġdisruptions":19534,"Ġdiscomfort":19535,"enko":19536,"Ġimprisoned":19537,"Copyright":19538,"Ġmyriad":19539,"Ġparenting":19540,"Ġspree":19541,"NBC":19542,"Ġonion":19543,"ĠIsraelis":19544,"ĠRA":19545,"Ġrelocate":19546,"113":19547,"ĠHir":19548,"ĠDre":19549,"ĠDry":19550,"ĠONE":19551,"ĠAdministrator":19552,"Ġprints":19553,"ĠGret":19554,"Ġundergraduate":19555,"ĠLif":19556,"avers":19557,"ĠCarney":19558,"Ġapex":19559,"Ġlenses":19560,"Ġliberals":19561,"gb":19562,"ĠWhereas":19563,"Ġcountryside":19564,"amine":19565,"ĠTerminal":19566,"Ġintr":19567,"ĠTrey":19568,"ALS":19569,"Ġcontinental":19570,"Ġselfies":19571,"FILE":19572,"ĠUnity":19573,"Ġauthoritarian":19574,"Ġoriginated":19575,"ĠExcept":19576,"yna":19577,"Ġmonet":19578,"Ġundermining":19579,"ĠGS":19580,"pi":19581,"iq":19582,"Ġslides":19583,"ĠSummary":19584,"Ġpains":19585,"cluding":19586,"Ġequation":19587,"locked":19588,"Ġfraternity":19589,"Ġwithstand":19590,"Ġdevastation":19591,"Ġdemo":19592,"late":19593,"Ġpunches":19594,"Ġgeared":19595,"nen":19596,"ĠBowie":19597,"attle":19598,"Ġpolitic":19599,"ĠGle":19600,"mented":19601,"ĠCoordinator":19602,"Ġupwards":19603,"ĠMega":19604,"angled":19605,"Ġengineered":19606,"Ġluggage":19607,"ĠWen":19608,"ĠSergeant":19609,"Ġkindergarten":19610,"ĠPortsmouth":19611,"uddin":19612,"ket":19613,"oba":19614,"Ġoscill":19615,"esse":19616,"ĠOlson":19617,"ĠBorough":19618,"Ġsupplements":19619,"ĠEvening":19620,"ANE":19621,"Ġlava":19622,"Ġgearing":19623,"setting":19624,"urgical":19625,"asty":19626,"ĠDaytona":19627,"Ġbrewery":19628,"Ġpledges":19629,"rounder":19630,"ulous":19631,"ĠHancock":19632,"rex":19633,"Ġram":19634,"Ġproceeding":19635,"ĠMurdoch":19636,"Ġdowngrade":19637,"Ġstatues":19638,"Ġdebated":19639,"ĠSleep":19640,"Ġ144":19641,"ĠRuby":19642,"ĠFi":19643,"123":19644,"ĠArabic":19645,"Ġlasts":19646,"ĠIvy":19647,"ĠWid":19648,"rown":19649,"stick":19650,"?'\"":19651,"ĠSTEM":19652,"Ġsensible":19653,"htar":19654,"Ġharbor":19655,"Ġcra":19656,"ĠAlbum":19657,"ĠCarnival":19658,"Ġimplies":19659,"agement":19660,"ĠInitially":19661,"Ġchooses":19662,"Jeff":19663,"ĠHig":19664,"Ġtam":19665,"Ġlump":19666,"ucks":19667,"Ġrepatri":19668,"ĠMercy":19669,"zza":19670,"Ġ365":19671,"ĠRicardo":19672,"ogram":19673,"Ġundergone":19674,"system":19675,"Ġtel":19676,"ĠKee":19677,"ully":19678,"istas":19679,"Ġgrains":19680,"ĠTomorrow":19681,"ĠRC":19682,"ĠTurk":19683,"Ġfreshmen":19684,"ĠAway":19685,"ĠSach":19686,"ĠUltimate":19687,"Ġoffensively":19688,"ismo":19689,"Ġteaser":19690,"ĠJud":19691,"Ġlegitimacy":19692,"opt":19693,"ĠCobb":19694,"Ġrejecting":19695,"ĠSolo":19696,"ĠArcher":19697,"Ġsoutheastern":19698,"ĠPlain":19699,"ĠLoss":19700,"Ġminerals":19701,"ĠMari":19702,"Ġscrambling":19703,"ĠPeak":19704,"Ġhavoc":19705,"rings":19706,"Ġunofficial":19707,"ĠHaj":19708,"director":19709,"ĠCanal":19710,"ĠNSA":19711,"ĠEaton":19712,"ĠPART":19713,"ĠCommissioners":19714,"Ġwellbeing":19715,"resa":19716,"Ġunderstandable":19717,"dates":19718,"ĠSorry":19719,"Ġastonishing":19720,"Ġrevise":19721,"ĠEc":19722,"ĠLack":19723,"endi":19724,"endale":19725,"also":19726,"Ġcolder":19727,"Ġheel":19728,"Ġcellular":19729,"Conn":19730,"ĠThur":19731,"Ġmassage":19732,"olla":19733,"clus":19734,"Ġtoilets":19735,"ĠCelebr":19736,"Ġtackled":19737,"Ġchorus":19738,"ETA":19739,"anca":19740,"ĠOLED":19741,"Ġpunk":19742,"ĠBrain":19743,"ĠNuggets":19744,"Ġseamless":19745,"make":19746,"atted":19747,"ĠRog":19748,"ĠPatch":19749,"Ġruined":19750,"Ins":19751,"Ġconsolidate":19752,"Ġgospel":19753,"ĠCaption":19754,"Ġoverweight":19755,"Ġscreened":19756,"ĠKraft":19757,"ĠBain":19758,"breaker":19759,"ĠFeinstein":19760,"ĠDoc":19761,"Ġdeepest":19762,"ĠOL":19763,"Ġtunes":19764,"Ġrightly":19765,"ĠLanc":19766,"ĠBrotherhood":19767,"Ġpoultry":19768,"ĠPure":19769,"Ġstimulate":19770,"Ġdiscourse":19771,"ĠStark":19772,"Ġmuseums":19773,"ention":19774,"Ġtaxation":19775,"ĠAkron":19776,"ayer":19777,"ĠKirby":19778,"farm":19779,"oser":19780,"Ġcommend":19781,"Ġunarmed":19782,"ensions":19783,"Ġsuperst":19784,"Ġoceans":19785,"Ġmisuse":19786,"LO":19787,"ĠByrne":19788,"ĠMaritime":19789,"Ġdense":19790,"Ġexcuses":19791,"Ġsuppose":19792,"ĠMarks":19793,"Ġrainy":19794,"Ġreplicate":19795,"Ġboutique":19796,"ĠRenaissance":19797,"jas":19798,"icted":19799,"Ġreferenced":19800,"ĠTir":19801,"ĠHatch":19802,"ĠCry":19803,"ĠPayPal":19804,"Ġfulfil":19805,"ĠHawaiian":19806,"come":19807,"ĠThirty":19808,"Ġ260":19809,"ĠYak":19810,"Ġangles":19811,"Ġlandlord":19812,"Ġlavish":19813,"Women":19814,"ĠNT":19815,"Ġreinforced":19816,"Ġprevail":19817,"ĠCommunities":19818,"Ġfootwear":19819,"Ġassurances":19820,"Ġlb":19821,"Ġairing":19822,"Ġresorts":19823,"ĠFiji":19824,"ĠShay":19825,"Ġprevailing":19826,"many":19827,"Ġimpe":19828,"ĠDul":19829,"Ġsymbols":19830,"zb":19831,"ĠCere":19832,"Ġapplauded":19833,"Ġsoundtrack":19834,"Ġdrunken":19835,"ĠEuropeans":19836,"Ġherds":19837,"moving":19838,"WR":19839,"ĠHindi":19840,"Ġwaking":19841,"Jo":19842,"Andrew":19843,"rosse":19844,"ĠLegislative":19845,"Ġdisgrace":19846,"Nothing":19847,"ĠBulgaria":19848,"Ġhumidity":19849,"Ġtranslation":19850,"Ġmeasurements":19851,"Ġvying":19852,"ĠBrid":19853,"Max":19854,"Ġdir":19855,"unci":19856,"Ġdefines":19857,"Ġperfection":19858,"ancers":19859,"Matt":19860,"ĠShinzo":19861,"ĠPresidents":19862,"Ġginger":19863,"onna":19864,"existing":19865,"rika":19866,"enced":19867,"ĠBray":19868,"Ġgall":19869,"Ġdisrespect":19870,"ĠCumber":19871,"Ġcontestant":19872,"ucky":19873,"anticipated":19874,"abled":19875,"LLOW":19876,"Bel":19877,"ĠKear":19878,"Ġstoryline":19879,"Ġrigs":19880,"ĠScots":19881,"ĠChap":19882,"ĠThankfully":19883,"Ġcommunist":19884,"ĠAdviser":19885,"Ġregist":19886,"Ġannoying":19887,"ĠDVD":19888,"Ġethic":19889,"ĠFilipino":19890,"ĠAdidas":19891,"Ġbilling":19892,"Ġalleviate":19893,"Ġsmoked":19894,"Ġhazard":19895,"EV":19896,"Ag":19897,"baum":19898,"Ġdoses":19899,"Ġoutcry":19900,"Ġinclined":19901,"Ġpsychologist":19902,"itzer":19903,"January":19904,"Ġmornings":19905,"aught":19906,"Ġsurreal":19907,"ĠCannon":19908,"avy":19909,"ĠCris":19910,"cf":19911,"Ġinterpreted":19912,"Ġpersecution":19913,"vation":19914,"Ġupfront":19915,"ĠWaste":19916,"Ġmills":19917,"Ġbombings":19918,"ĠHeaven":19919,"ĠFlat":19920,"Ġboxer":19921,"Ġavenues":19922,"Invest":19923,"ĠZika":19924,"Ġbackstage":19925,"idas":19926,"eston":19927,"ead":19928,"Ġbishops":19929,"Ġrender":19930,"Ġfootballer":19931,"Ġspilled":19932,"Only":19933,"Ġsaddened":19934,"ĠAbove":19935,"inator":19936,"tro":19937,"onen":19938,"ĠAMC":19939,"Ġstringent":19940,"Ġfooting":19941,"ĠGhost":19942,"Ġtexting":19943,"ĠCPI":19944,"ĠUW":19945,"Ġaccol":19946,"iries":19947,"ĠFlex":19948,"ĠCarolyn":19949,"Andre":19950,"Ġsiege":19951,"Muslim":19952,"Ġautomobile":19953,"reci":19954,"Ġdean":19955,"atre":19956,"Ġwax":19957,"Ġwo":19958,"ĠDuffy":19959,"Ġfiance":19960,"Ġfib":19961,"Ġeagle":19962,"ĠCatal":19963,"Ġinfants":19964,"Ġsubmitting":19965,"Ġdownhill":19966,"Ġstaffer":19967,"ĠLights":19968,"Ġeater":19969,"ĠCaliforn":19970,"Ġsupervisors":19971,"ĠPy":19972,"Ġcondemnation":19973,"Ġsci":19974,"Ġhated":19975,"Ġtil":19976,"ĠLavrov":19977,"Ġsab":19978,"Ġmotors":19979,"Ġlogging":19980,"ĠOwn":19981,"Ġpi":19982,"Ġrepeating":19983,"ĠDOJ":19984,"enary":19985,"ĠChow":19986,"fat":19987,"Ġbalcony":19988,"orie":19989,"NING":19990,"ĠUnified":19991,"Neil":19992,"Bill":19993,"ĠSims":19994,"uten":19995,"LV":19996,"ĠEMS":19997,"Ġsip":19998,"Ġreplaces":19999,"ichi":20000,"ĠFig":20001,"ĠCharity":20002,"Ġpeek":20003,"Ġrack":20004,"Ġcousins":20005,"Ġresolving":20006,"Ġthrone":20007,"ĠEngine":20008,"ĠChak":20009,"Ġlamented":20010,"Ġwipe":20011,"Ġnutrients":20012,"ĠChat":20013,"AMP":20014,"ĠOprah":20015,"uming":20016,"serving":20017,"Ġfir":20018,"Ġlandlords":20019,"neck":20020,"Ġupload":20021,"Ġunspecified":20022,"Ġicy":20023,"´":20024,"Ġze":20025,"Ġprohibits":20026,"ĠFI":20027,"Res":20028,"ĠEff":20029,"hell":20030,"umbo":20031,"Ġreceipts":20032,"Ġoperatives":20033,"stant":20034,"Ġwives":20035,"ĠCinema":20036,"Ġnegligence":20037,"Ġgases":20038,"ĠLau":20039,"Ġbrew":20040,"August":20041,"never":20042,"Ġpenned":20043,"Ġincomplete":20044,"ĠZh":20045,"esi":20046,"Ġranged":20047,"apolis":20048,"Ġwithdrawing":20049,"ĠLevi":20050,"ĠLevy":20051,"ĠDaly":20052,"Ġdelaying":20053,"ĠMSNBC":20054,"ĠCyrus":20055,"ĠNutrition":20056,"NN":20057,"Ġwinding":20058,"Ġglow":20059,"ĠMY":20060,"Ġgoodwill":20061,"ĠMON":20062,"Ġslots":20063,"ĠNina":20064,"ĠFIR":20065,"ĠLTE":20066,"ĠInnov":20067,"dev":20068,"ctic":20069,"Ġanalyses":20070,"ĠBangalore":20071,"Ġtales":20072,"Ġovercame":20073,"ĠThurs":20074,"Ġcherry":20075,"ĠNou":20076,"ĠFlowers":20077,"1000":20078,"updated":20079,"rieve":20080,"ĠBeautiful":20081,"iak":20082,"Ġplayback":20083,"Ġheadset":20084,"Ġashamed":20085,"Min":20086,"Ġadm":20087,"ĠLucky":20088,"ĠTucson":20089,"Ġentirety":20090,"ranging":20091,"ĠVance":20092,"kered":20093,"image":20094,"ĠGord":20095,"War":20096,"Ġsimilarities":20097,"dig":20098,"ĠJude":20099,"Ġlonely":20100,"hra":20101,"ĠStaples":20102,"ĠACA":20103,"Ġmeasurement":20104,"Ġcooper":20105,"ATER":20106,"ĠMeng":20107,"Ġbarring":20108,"190":20109,"ĠBatt":20110,"Ġreproductive":20111,"ĠRowe":20112,"Ġsubsid":20113,"Ġslogans":20114,"ugar":20115,"ĠKeller":20116,"ingham":20117,"fuel":20118,"Ġhid":20119,"afe":20120,"Ġindul":20121,"cash":20122,"Ġstressing":20123,"ĠMIT":20124,"Ġtrump":20125,"ancer":20126,"ĠPes":20127,"ĠMint":20128,"Ġcrossover":20129,"ĠWeiss":20130,"ĠElvis":20131,"ĠPermanent":20132,"ĠKhalid":20133,"Ġunjust":20134,"Ġexceptionally":20135,"Ġfut":20136,"Ġavid":20137,"ĠEthics":20138,"Ġutilized":20139,"Ġfeasibility":20140,"Ġcatering":20141,"Press":20142,"wayne":20143,"October":20144,"Ġfavors":20145,"Ġobsession":20146,"Ġmelt":20147,"Ġmug":20148,"ĠMK":20149,"Ġapples":20150,"Ġvine":20151,"cliffe":20152,"Ġgrat":20153,"Ġspells":20154,"ounced":20155,"Ġdecree":20156,"issy":20157,"Team":20158,"Ġdeploying":20159,"Feb":20160,"Ġmiserable":20161,"Ġwat":20162,"ĠBust":20163,"ĠNorris":20164,"ĠTimberwolves":20165,"Ġangered":20166,"ĠArn":20167,"oft":20168,"rome":20169,"Ġadvertisements":20170,"onal":20171,"Ġnun":20172,"Ġtorque":20173,"Ġslave":20174,"Ġnonsense":20175,"Ġcoy":20176,"Ġcites":20177,"Game":20178,"Ġarchitects":20179,"playing":20180,"Ġgener":20181,"Ġsocio":20182,"Ġmeditation":20183,"Ġforgive":20184,"Ġsmiled":20185,"%),":20186,"Ġpers":20187,"ĠSoph":20188,"Ġoccupy":20189,"atton":20190,"Ġwitnessing":20191,"Ġapologise":20192,"Ġpredecessors":20193,"ĠCassidy":20194,"Ġtallied":20195,"NER":20196,"Ġtract":20197,"ĠHolder":20198,"ĠPav":20199,"Ġjackets":20200,"Mel":20201,"raud":20202,"Ġexercising":20203,"ĠChung":20204,"ĠAmin":20205,"athi":20206,"ĠMem":20207,"Ġracked":20208,"Ġcarved":20209,"ĠMickey":20210,"ĠLafayette":20211,"Ġgrill":20212,"ĠINFORMATION":20213,"usc":20214,"ĠPromotion":20215,"yson":20216,"istry":20217,"Ġfulfilled":20218,"Ġrestraint":20219,"Ġpopping":20220,"ĠSlater":20221,"Ġmercy":20222,"aden":20223,"Ġsubmarine":20224,"ĠBowling":20225,"dogs":20226,"ĠSwe":20227,"Ġnoticeable":20228,"Ġbis":20229,"ĠPremiership":20230,"Ġspat":20231,"ĠTow":20232,"ĠWand":20233,"Ġmechanics":20234,"while":20235,"ĠBenson":20236,"Ġmolecules":20237,"Ġcrosses":20238,"Ġrecalling":20239,"ĠCertainly":20240,"HAM":20241,"Ġsever":20242,"ĠRudy":20243,"ĠDUI":20244,"OLD":20245,"ĠTobacco":20246,"Ġsubdued":20247,"Ġquota":20248,"TF":20249,"Ġflats":20250,"Ġemphasize":20251,"Ġbelts":20252,"ĠOpinion":20253,"Ġpiled":20254,"ĠSpark":20255,"ĠElias":20256,"Ġclassification":20257,"ĠHands":20258,"ĠCV":20259,"Ġtoast":20260,"Ġcandle":20261,"atching":20262,"short":20263,"ĠDup":20264,"Ġult":20265,"bats":20266,"Ġmarketers":20267,"ĠAvery":20268,"ĠColbert":20269,"ĠIk":20270,"ĠVac":20271,"ĠJackets":20272,"Ġmerits":20273,"eli":20274,"PORT":20275,"Ġelevator":20276,"irming":20277,"effective":20278,"Ġgroceries":20279,"Ġhi":20280,"ĠINTER":20281,"ĠSAP":20282,"ĠNYPD":20283,"ĠKY":20284,"Ġangel":20285,"Ġspectacle":20286,"ré":20287,"ĠRoche":20288,"Ġinsects":20289,"Ġcommenced":20290,"ĠFoley":20291,"Ġdarker":20292,"ĠUg":20293,"ĠMostly":20294,"Ġtermed":20295,"uci":20296,"ĠExec":20297,"ĠBrittany":20298,"Ġharmony":20299,"Ġadvocated":20300,"Ġparcel":20301,"ĠHots":20302,"Ġmonarch":20303,"ĠSiri":20304,"odge":20305,"ĠPag":20306,"Ġprogressing":20307,"grounds":20308,"Ġonstage":20309,"Ġwarmth":20310,"ĠWon":20311,"Ġviolates":20312,"ĠSaudis":20313,"Ġbumper":20314,"Ġpatrols":20315,"ĠBarron":20316,"Ġindoors":20317,"Ġtar":20318,"Each":20319,"Val":20320,"Ġapplicant":20321,"ĠCater":20322,"Ġclassics":20323,"ĠThreat":20324,"Ġwrapping":20325,"ĠIdlib":20326,"anking":20327,"Did":20328,"adia":20329,"ĠRig":20330,"ĠBram":20331,"ĠLaurie":20332,"ĠHair":20333,"ĠCannabis":20334,"Ġdaylight":20335,"ĠNorm":20336,"ĠRip":20337,"sin":20338,"unta":20339,"Pass":20340,"ĠAcad":20341,"ĠCummings":20342,"Ġtheirs":20343,"ĠDistribution":20344,"especially":20345,"Ġgrilled":20346,"Ġaffiliates":20347,"ĠVander":20348,"ĠCath":20349,"ĠProductions":20350,"ĠTrek":20351,"230":20352,"Ġcasinos":20353,"ĠCain":20354,"atu":20355,"idget":20356,"ĠWinds":20357,"Ġunanswered":20358,"Ġintercept":20359,"ĠMarty":20360,"Ġrefin":20361,"Ġlieutenant":20362,"cas":20363,"Chief":20364,"average":20365,"ilot":20366,"Ġscrimmage":20367,"ĠMud":20368,"speaking":20369,"ĠFranken":20370,"ĠTories":20371,"Ġabstract":20372,"awar":20373,"ĠTerms":20374,"dal":20375,"ĠFur":20376,"Ġhumour":20377,"rh":20378,"Ġsitu":20379,"aed":20380,"ĠFIN":20381,"Ġtranscripts":20382,"approved":20383,"ĠParsons":20384,"Ġpigs":20385,"Ġrepayment":20386,"ĠARM":20387,"ĠElliot":20388,"ĠLevine":20389,"Ġtagged":20390,"pun":20391,"ĠDwight":20392,"Ġconfiguration":20393,"sis":20394,"ĠAdult":20395,"Ġearthquakes":20396,"Ġcreature":20397,"ĠMRI":20398,"Ġmach":20399,"Ġprescriptions":20400,"cover":20401,"Ġministries":20402,"Ġinaccurate":20403,"ĠLabs":20404,"ĠMGM":20405,"Ġtomato":20406,"Ġeng":20407,"Ġopposes":20408,"owan":20409,"Ġmapping":20410,"Ġconsum":20411,"online":20412,"eters":20413,"code":20414,"Aug":20415,"Point":20416,"branded":20417,"pling":20418,"ĠCalder":20419,"Oper":20420,"ĠMiddles":20421,"Ġchampagne":20422,"ĠTues":20423,"Ġsampling":20424,"Ġenergetic":20425,"rano":20426,"ĠStyles":20427,"Ġneglected":20428,"ĠDamon":20429,"Ġendanger":20430,"Ġsouthwestern":20431,"ĠATM":20432,"ĠDuck":20433,"engers":20434,"Ġdan":20435,"yth":20436,"Ġbou":20437,"ĠDecl":20438,"Gold":20439,"Ġprojecting":20440,"Google":20441,"ĠHussein":20442,"Ġaccomplishment":20443,"itarian":20444,"Ġgossip":20445,"ĠRai":20446,"ril":20447,"ĠSke":20448,"Ġpsychiatric":20449,"ĠMacBook":20450,"ĠAdobe":20451,"ĠHodg":20452,"Ġaccompany":20453,"Ġadvertised":20454,"Ġreminiscent":20455,"Ġgeographical":20456,"Ġconvertible":20457,"IK":20458,"CTV":20459,"Ġcommunal":20460,"Ġchim":20461,"Ġselfish":20462,"Ġdrilled":20463,"Ġtortured":20464,"Ġblacks":20465,"noon":20466,"Ġmanifesto":20467,"ĠRichie":20468,"acco":20469,"Im":20470,"Ġdebit":20471,"ĠSNP":20472,"perfect":20473,"gard":20474,"ĠRatio":20475,"Ġstubborn":20476,"Ġaccumulation":20477,"Ġcongregation":20478,"Ġkissing":20479,"Ġkillers":20480,"ĠAbbey":20481,"von":20482,"ĠFuj":20483,"ĠIsabel":20484,"NB":20485,"ĠNish":20486,"ĠJulius":20487,"ĠZimmer":20488,"Ġuncover":20489,"dar":20490,"isle":20491,"ĠCompar":20492,"Ġcounselor":20493,"ĠSok":20494,"ĠCumm":20495,"ĠHip":20496,"Ġurgently":20497,"Ġrentals":20498,"Ġapproving":20499,"Ġirrigation":20500,"Ġprostate":20501,"ĠJudicial":20502,"ĠSubmit":20503,"ĠTanner":20504,"attack":20505,"emb":20506,"Ġreclaim":20507,"Ġec":20508,"Ġbrutality":20509,"Ġcommanding":20510,"Ġreasoning":20511,"Roy":20512,"ĠElect":20513,"ĠMobil":20514,"anding":20515,"Ġmirrors":20516,"Israel":20517,"Ġpavement":20518,"Ġoverdue":20519,"ĠMd":20520,"street":20521,"Ġthrill":20522,"pora":20523,"azon":20524,"Ġbrewing":20525,"enge":20526,"ĠDisaster":20527,"Ġbuilder":20528,"ods":20529,"utsch":20530,"Ġterminals":20531,"ĠBaird":20532,"enburg":20533,"Ġhast":20534,"Ġbrass":20535,"Ġparental":20536,"enture":20537,"ĠConduct":20538,"Ġexpands":20539,"luck":20540,"mur":20541,"ĠBj":20542,"Ġadministrations":20543,"ĠOlivier":20544,"oux":20545,"Ġnarrowed":20546,"winner":20547,"Ġmakeshift":20548,"ĠVAT":20549,"ĠJavier":20550,"-,":20551,"Ġsystematic":20552,"Ġenforcing":20553,"emin":20554,"ĠAudio":20555,"United":20556,"gener":20557,"ĠKara":20558,"ivas":20559,"ĠPretty":20560,"ĠLob":20561,"Ġpetitions":20562,"ĠMercer":20563,"ampa":20564,"product":20565,"Ġdistributing":20566,"Ġtunnels":20567,"Ġcondo":20568,"ĠRSS":20569,"ĠCarlo":20570,"Ġpumpkin":20571,"Ġsto":20572,"Ġassumes":20573,"oway":20574,"hiba":20575,"lection":20576,"Ġgam":20577,"ĠAires":20578,"Ġtransmitted":20579,"Ġtrousers":20580,"Ġcheers":20581,"ĠJensen":20582,"Ġemer":20583,"Ġsimpler":20584,"Ġcolored":20585,"ĠSustainable":20586,"Ġinstruct":20587,"Ġpoles":20588,"Ġsupervised":20589,"Ġinteg":20590,"ĠMoreno":20591,"boarding":20592,"igrant":20593,"ĠYoga":20594,"Ġenvironmentally":20595,"Ġsacrifices":20596,"Ġshores":20597,"Ġ127":20598,"Ġestranged":20599,"Ġintoxicated":20600,"Ġemergencies":20601,"ĠKosovo":20602,"yang":20603,"Ġfastball":20604,"Ġpackaged":20605,"LAN":20606,"Ġhurry":20607,"ĠManny":20608,"Ġporch":20609,"Ġcuriosity":20610,"ĠKend":20611,"thouse":20612,"ĠTou":20613,"mun":20614,"Ġwaving":20615,"Ġpasswords":20616,"ĠSwan":20617,"Ġprefers":20618,"ĠCorrections":20619,"aic":20620,"Ġejected":20621,"Ġdossier":20622,"ĠChal":20623,"Ġfacto":20624,"Ġspine":20625,"leck":20626,"Ġrestriction":20627,"Ġdisagreement":20628,"grown":20629,"ĠEdgar":20630,"Ġquantities":20631,"ĠRapid":20632,"Ġpals":20633,"Ġspared":20634,"Ġremarkably":20635,"ructure":20636,"Ġbackers":20637,"ĠGoals":20638,"cles":20639,"rolling":20640,"ĠBlasio":20641,"Ġorchestra":20642,"ologies":20643,"ĠRise":20644,"Power":20645,"Ġuptick":20646,"atha":20647,"ĠMob":20648,"Ġshotgun":20649,"downs":20650,"ĠBorg":20651,"Ġmorale":20652,"Call":20653,"wave":20654,"ĠDuc":20655,"Ġunwilling":20656,"oad":20657,"Ġbusinessmen":20658,"Ġrefriger":20659,"Ġgamers":20660,"Ġcele":20661,"Ġprecip":20662,"Ġrenegoti":20663,"OY":20664,"ĠPharm":20665,"Ġresponsive":20666,"Ġservant":20667,"eye":20668,"Ġraping":20669,"vas":20670,"Ġgroin":20671,"ĠMelvin":20672,"ĠKurds":20673,"Ġstricter":20674,"ĠMum":20675,"ients":20676,"Ġstandalone":20677,"Ġforums":20678,"Ġcommemorate":20679,"Far":20680,"ĠTelegram":20681,"Ġscreenings":20682,"ĠLeonardo":20683,"ighton":20684,"ĠDOWN":20685,"Ġmodule":20686,"Ġremedy":20687,"Ġ280":20688,"Su":20689,"ĠBecker":20690,"ĠGast":20691,"prem":20692,"ĠInto":20693,"oyle":20694,"114":20695,"Ġadhere":20696,"Report":20697,"ĠJaneiro":20698,"ĠKry":20699,"Pakistan":20700,"Ġrobotic":20701,"ande":20702,"Ġoverlooking":20703,"ĠTreaty":20704,"Ġrect":20705,"yne":20706,"Ġbattlefield":20707,"ĠGeoff":20708,"Ġearns":20709,"ĠMiner":20710,"Ġteased":20711,"Ġexemptions":20712,"Ġvacancy":20713,"oku":20714,"Ġvulnerabilities":20715,"ĠRou":20716,"Ġobserv":20717,"Ġoverlook":20718,"Ġcorrespond":20719,"Ġtheatrical":20720,"Ġrobotics":20721,"ĠCompl":20722,"ĠPasadena":20723,"laden":20724,"Ġvastly":20725,"olit":20726,"Ġjustification":20727,"Ġtampering":20728,"ĠSutherland":20729,"ĠMens":20730,"Ġinvisible":20731,"uren":20732,"ĠAshton":20733,"owl":20734,"Ġdisqual":20735,"ĠEva":20736,"Ġfriction":20737,"ĠIrvine":20738,"Ġaliens":20739,"ĠPension":20740,"ĠAssets":20741,"ĠBenedict":20742,"ittal":20743,"Ġsword":20744,"Ġunderwear":20745,"ĠFarmer":20746,"Ġtimber":20747,"Ġdependence":20748,"ĠTang":20749,"Ġ165":20750,"ĠNazis":20751,"Ġpunching":20752,"ĠGloria":20753,"usat":20754,"Ġluxurious":20755,"chuk":20756,"ĠCot":20757,"Ġregained":20758,"Ġreassure":20759,"Ġhello":20760,"Ġante":20761,"Ġnegotiators":20762,"Add":20763,"paced":20764,"ér":20765,"Ġdemolished":20766,"Ann":20767,"joy":20768,"ĠJenna":20769,"Apple":20770,"Ġdisturbance":20771,"Ġcommissions":20772,"ĠPolitico":20773,"along":20774,"Ġnem":20775,"Ġauctions":20776,"ruck":20777,"ĠOD":20778,"ofer":20779,"Play":20780,"Ġcarn":20781,"vez":20782,"Ġtents":20783,"Ġcongratulate":20784,"ĠLiquid":20785,"ĠCoyotes":20786,"uku":20787,"ĠAllah":20788,"Ġbend":20789,"Ġcanvas":20790,"ĠClifford":20791,"Ġvolunteered":20792,"Luc":20793,"bp":20794,"ĠCensus":20795,"ĠShot":20796,"Ġanonymously":20797,"ĠAnglo":20798,"ĠBayer":20799,"ĠAber":20800,"ĠCorrectional":20801,"Ġhardship":20802,"ĠBuenos":20803,"ĠDaw":20804,"Ġbaskets":20805,"Ġupstairs":20806,"Ġmindful":20807,"ĠLCD":20808,"ĠBlackburn":20809,"ĠHale":20810,"477":20811,"Ġcircus":20812,"ĠDragons":20813,"Ġrubble":20814,"rb":20815,"Ġheadaches":20816,"aunt":20817,"itus":20818,"Ġscaled":20819,"ĠComic":20820,"asio":20821,"ĠNordic":20822,"Per":20823,"Ġbombers":20824,"ilitation":20825,"Ġindirectly":20826,"ĠHod":20827,"andan":20828,"operation":20829,"Ġpuppy":20830,"ĠMats":20831,"Ġstewards":20832,"roup":20833,"Ġmemorandum":20834,"Ġpatio":20835,"const":20836,"ĠBold":20837,"ĠKaiser":20838,"Following":20839,"Ġcompat":20840,"Ġsidewalks":20841,"ĠFitzpatrick":20842,"Ġsunlight":20843,"ĠLever":20844,"ĠBecky":20845,"icles":20846,"ĠProbably":20847,"Ġgarner":20848,"ĠTomas":20849,"Ġblankets":20850,"uga":20851,"jiang":20852,"Ġrevel":20853,"ĠHutch":20854,"llers":20855,"Ġtrimmed":20856,"ĠSTR":20857,"ĠKR":20858,"ĠPike":20859,"ĠASS":20860,"Bay":20861,"Ġdiagnostic":20862,"ĠSteph":20863,"Ġtoured":20864,"ĠAvoid":20865,"vic":20866,"Without":20867,"ĠClinical":20868,"Ġblo":20869,"undo":20870,"ĠBoise":20871,"Ġspeculated":20872,"ĠProt":20873,"vention":20874,"Ġscholar":20875,"ĠSta":20876,"Featured":20877,"ĠPrev":20878,"Ġpenny":20879,"ĠHath":20880,"rawn":20881,"Ġrenovated":20882,"ĠFried":20883,"itol":20884,"uddle":20885,"Ġinquest":20886,"Ġmetropolitan":20887,"lights":20888,"Ġtempo":20889,"onom":20890,"ĠImport":20891,"Asia":20892,"Ġowes":20893,"Ġmagistrate":20894,"ĠFriedman":20895,"Ġcontacting":20896,"Ġstrains":20897,"Ġhomage":20898,"Ġlent":20899,"ception":20900,"git":20901,"Ġlively":20902,"Ġscra":20903,"WW":20904,"ön":20905,"rill":20906,"Jack":20907,"ĠShank":20908,"iani":20909,"Ġdecreasing":20910,"MON":20911,"ĠSupervisor":20912,"ĠCats":20913,"ĠFusion":20914,"Ġracially":20915,"ĠTara":20916,"ĠPurchase":20917,"ĠRally":20918,"ĠGraph":20919,"ĠHello":20920,"hest":20921,"ĠVarg":20922,"Ġdrowned":20923,"ĠThu":20924,"ĠWet":20925,"ĠEug":20926,"Ġrainbow":20927,"Ġtelev":20928,"ĠAmir":20929,"Based":20930,"Ġcookie":20931,"uding":20932,"Ġcontracting":20933,"Ġobjected":20934,"Ġfork":20935,"acent":20936,"ĠTil":20937,"ĠLilly":20938,"ĠEur":20939,"Ġhormone":20940,"Ġnails":20941,"ĠFischer":20942,"Ġpier":20943,"EMENT":20944,"Ġeruption":20945,"visory":20946,"Ġspeculate":20947,"apan":20948,"ĠJub":20949,"ĠHuckabee":20950,"string":20951,"stay":20952,"Ġsustaining":20953,"VM":20954,"Ġpriv":20955,"Ġclos":20956,"Ġdownloaded":20957,"ĠIv":20958,"Ġfinanced":20959,"ĠSao":20960,"ĠEverett":20961,"rene":20962,"ĠWo":20963,"ĠPiet":20964,"Ġengulfed":20965,"Ġexiting":20966,"uni":20967,"horn":20968,"Ġgrav":20969,"ection":20970,"Ġdrainage":20971,"Ġfuelled":20972,"Ġorganizational":20973,"bike":20974,"ĠAreas":20975,"Ġpoliceman":20976,"ĠFirm":20977,"ĠSlide":20978,"Ġrand":20979,"ĠJedi":20980,"Ge":20981,"really":20982,"Manchester":20983,"ĠWise":20984,"parent":20985,"Ġlad":20986,"Ġurine":20987,"ĠColombian":20988,"geon":20989,"Ġ1961":20990,"Mania":20991,"Ġgraph":20992,"Ġcod":20993,"fred":20994,"Ġeffic":20995,"ĠGateway":20996,"asket":20997,"Ġdiminished":20998,"Mass":20999,"Ġ205":21000,"Long":21001,"Ġgranddaughter":21002,"Ġshining":21003,"Semitic":21004,"Ġarising":21005,"Ġ330":21006,"ĠDU":21007,"ĠZah":21008,"Ġexclusion":21009,"ĠClaus":21010,"Ġven":21011,"oine":21012,"ĠAPI":21013,"reve":21014,"Ġmilitias":21015,"Ġfro":21016,"Ġwaved":21017,"ĠLuxembourg":21018,"Ġdiamonds":21019,"Ġstabilize":21020,"Ġqueue":21021,"ĠSponsor":21022,"Ġeldest":21023,"ĠLud":21024,"Ġwasting":21025,"Ġdimension":21026,"Ġmotorcycles":21027,"ucker":21028,"ĠTav":21029,"Ġsupremacy":21030,"Take":21031,"ĠCPU":21032,"cup":21033,"Ġdisregard":21034,"Ġenvelope":21035,"ĠCah":21036,"Ġproposes":21037,"ĠMaurice":21038,"Ġhobby":21039,"Ġharmon":21040,"Ġribbon":21041,"ĠOrigin":21042,"Ġbuilders":21043,"Ġconj":21044,"Ġcert":21045,"eat":21046,"ĠStern":21047,"ulia":21048,"vals":21049,"cling":21050,"Ġprovocative":21051,"Ġsofter":21052,"Ġ1948":21053,"Ġremod":21054,"ĠSob":21055,"Ġmaxim":21056,"Ġblueprint":21057,"oit":21058,"ĠGarner":21059,"Ġfibre":21060,"search":21061,"ĠWrite":21062,"270":21063,"Ġclergy":21064,"ĠPalo":21065,"obile":21066,"Mad":21067,"Ġclown":21068,"Ġtraced":21069,"280":21070,"ĠAlberto":21071,"Ġdrums":21072,"ĠFridays":21073,"ĠStrat":21074,"stated":21075,"ĠStevenson":21076,"Pr":21077,"Ġboasted":21078,"ĠBrees":21079,"ĠDonn":21080,"ĠMaya":21081,"Ġrelieve":21082,"Ġ1080":21083,"Ġcheapest":21084,"Ġuniquely":21085,"Ġjungle":21086,"Ġprevalence":21087,"Ġoutfield":21088,"ĠMaps":21089,"Ġaccustomed":21090,"pac":21091,"Ġcombinations":21092,"ĠSoros":21093,"stad":21094,"Ġket":21095,"Ġdisgusting":21096,"ĠOFF":21097,"irs":21098,"Ġbiased":21099,"Ġpaved":21100,"iked":21101,"utterstock":21102,"ocal":21103,"Ġsurround":21104,"ĠGuang":21105,"Ġspear":21106,"ĠBellev":21107,"ortun":21108,"Rec":21109,"acho":21110,"Ġfrightening":21111,"Ġtyres":21112,"normal":21113,"ĠYan":21114,"ĠWarsaw":21115,"ĠBod":21116,"ourse":21117,"199":21118,"Ver":21119,"erent":21120,"Ġsparkling":21121,"Ġchanting":21122,"Ġ1945":21123,"Ġturbo":21124,"Ġhazards":21125,"IRE":21126,"ĠRonnie":21127,"Ġsplitting":21128,"ĠMatte":21129,"roph":21130,"Ġtended":21131,"Ġvandalism":21132,"alis":21133,"SY":21134,"Ġoversaw":21135,"Happy":21136,"ĠTC":21137,"275":21138,"Ġeco":21139,"ĠKers":21140,"Ġextensions":21141,"ĠFlan":21142,"ĠCena":21143,"ĠDowns":21144,"Ġdrummer":21145,"Ġawaited":21146,"ĠACL":21147,"Ġlegends":21148,"ĠRollins":21149,"hend":21150,"Ġdeparting":21151,"Ġtha":21152,"Ġunre":21153,".(":21154,"Ġfaded":21155,"Ġretirees":21156,"vid":21157,"Ġentrants":21158,"ĠStella":21159,"arer":21160,"Ġteaspoon":21161,"ĠSheridan":21162,"irc":21163,"ĠRelief":21164,"ĠButt":21165,"Ġris":21166,"Ġundermined":21167,"Ġsunk":21168,"Sam":21169,"kamp":21170,"riot":21171,"rating":21172,"Ġclubhouse":21173,"Ġpeaked":21174,"ĠSki":21175,"Ġairstrikes":21176,"Ġconce":21177,"ĠCPR":21178,"Ġesp":21179,"ĠWave":21180,"ĠColiseum":21181,"outheastern":21182,"Ġtrou":21183,"Ġfeather":21184,"ĠSoy":21185,"ĠBihar":21186,"Ġintervened":21187,"mits":21188,"colored":21189,"330":21190,"Ġprocession":21191,"apeake":21192,"ité":21193,"riel":21194,"Ġmart":21195,"afer":21196,"ĠGuests":21197,"ĠPie":21198,"Ġshiny":21199,"ĠSixers":21200,"ĠRoads":21201,"Ġkicker":21202,"ĠCrimes":21203,"Ġfrontier":21204,"ansen":21205,"November":21206,"smith":21207,"ĠLaun":21208,"fried":21209,"weet":21210,"ĠGrass":21211,"Ġsanitation":21212,"ĠEat":21213,"ĠParts":21214,"ĠTun":21215,"amar":21216,"ĠJupiter":21217,"ĠFS":21218,"Ġunsc":21219,"ĠDone":21220,"Ġleveraging":21221,"Ġtucked":21222,"Ġineffective":21223,"Ġriots":21224,"wei":21225,"ĠAttend":21226,"Ġpertaining":21227,"amen":21228,"monds":21229,"Ġmism":21230,"serious":21231,"ĠViol":21232,"rous":21233,"Ġ129":21234,"uebl":21235,"umption":21236,"tri":21237,"ĠWedding":21238,"Ġtroopers":21239,"ĠTHR":21240,"olving":21241,"leys":21242,"Med":21243,"Ġseparatists":21244,"Ġimper":21245,"ĠFrontier":21246,"Ġwhit":21247,"ĠMutual":21248,"Ġrested":21249,"Ġunhealthy":21250,"gang":21251,"Ġresearching":21252,"ĠColonel":21253,"Ġaffordability":21254,"ĠRegarding":21255,"ĠWend":21256,"ĠMellon":21257,"Ġplots":21258,"Ġcanal":21259,"PER":21260,"ĠShopping":21261,"etry":21262,"Ġoccurrence":21263,"Ġgraves":21264,"BF":21265,"ĠKau":21266,"indust":21267,"Ġbeard":21268,"uate":21269,"ĠProdu":21270,"ĠSomali":21271,"ishers":21272,"ĠFell":21273,"ĠHutchinson":21274,"Ġhust":21275,"Ġillustration":21276,"Ġ//":21277,"Ġsharks":21278,"Ġcoincidence":21279,"Ġremake":21280,"Ġmural":21281,"course":21282,"ĠSultan":21283,"arse":21284,"Ġwhip":21285,"ĠPodcast":21286,"Ġtightened":21287,"Ġdenim":21288,"Ġlandfill":21289,"future":21290,"Ġsuperv":21291,"Hand":21292,"Ġpraising":21293,"ĠEly":21294,"ĠGust":21295,"ĠMayer":21296,"Ġorphan":21297,"Ġrepaired":21298,"ĠPir":21299,"Ġspiral":21300,"husband":21301,"ienne":21302,"iatric":21303,"Ġmarriages":21304,"Ġhorn":21305,"plain":21306,"ĠLum":21307,"ession":21308,"ĠFeatures":21309,"Ġbreakup":21310,"Ġentrepreneurship":21311,"rina":21312,"Ġembargo":21313,"Ġcapitalism":21314,"ĠMinor":21315,"Ġpromo":21316,"Ġexcel":21317,"Japan":21318,"Ġworsening":21319,"Ġstumbled":21320,"Ġpins":21321,"Ġswipe":21322,"Ġexile":21323,"Ġseparatist":21324,"ĠBian":21325,"Ġrelocation":21326,"Ġcommanders":21327,"Ġdowned":21328,"Ġblogger":21329,"packed":21330,"ĠSchn":21331,"Ġwaterfront":21332,"ĠYus":21333,"Ġnegotiator":21334,"Ġfavourable":21335,"Iran":21336,"oulder":21337,"Ġcance":21338,"Ġvind":21339,"angel":21340,"Ġauthenticity":21341,"Ġtowel":21342,"bul":21343,"ĠNeville":21344,"ĠBuddhist":21345,"fields":21346,"uly":21347,"Ġniece":21348,"Ġcorrections":21349,"Ġassignments":21350,"ĠSchl":21351,"Ġharmed":21352,"375":21353,"Ġwounding":21354,"ĠPosition":21355,"Ġsupermarkets":21356,"Ġdisclosures":21357,"Ġ185":21358,"esp":21359,"ĠMcCull":21360,"ĠMale":21361,"Ġsailors":21362,"mis":21363,"ĠSophia":21364,"Ġunfolded":21365,"owell":21366,"ĠScarborough":21367,"Ġentrepreneurial":21368,"118":21369,"ogy":21370,"ĠLikewise":21371,"Ġswung":21372,"Ġdrawings":21373,"Ġdrafting":21374,"ĠSimple":21375,"ĠFilip":21376,"arf":21377,"Ġfade":21378,"Ġmerged":21379,"ĠLeaf":21380,"sun":21381,"Ġflame":21382,"Ġindices":21383,"ĠCreate":21384,"ittle":21385,"ĠWer":21386,"ĠMond":21387,"Ġoz":21388,"ĠSmoke":21389,"Ġreplies":21390,"ĠDH":21391,"Ġjud":21392,"ĠFalk":21393,"Ġ---":21394,"Ġconstitutes":21395,"Ġtheat":21396,"119":21397,"Ġintermediate":21398,"vill":21399,"ĠGow":21400,"ĠHut":21401,"ł":21402,"155":21403,"ĠLocated":21404,"ĠDoor":21405,"Ġsliced":21406,"aru":21407,"Ġtearing":21408,"defense":21409,"oyer":21410,"Ġprodu":21411,"Ġseminar":21412,"asso":21413,"Ġpeaks":21414,"Ġconceal":21415,"Ġcrypto":21416,"Ġsetbacks":21417,"ĠAlicia":21418,"ĠFAA":21419,"Ġcontinuity":21420,"Ġcatastrophe":21421,"Ġbeg":21422,"Ġscales":21423,"apixel":21424,"Ġsalon":21425,"Ste":21426,"Ġlesbian":21427,"Ġanticip":21428,"Ġutilization":21429,"Ġchickens":21430,"Ġspinal":21431,"ĠJuliet":21432,"ĠFas":21433,"prising":21434,"ĠSalvation":21435,"Ġ138":21436,"Ġutilizing":21437,"âĢ¢":21438,"ĠMessenger":21439,"Ġrebellion":21440,"ĠAlexand":21441,"Ġinsect":21442,"Ġribs":21443,"ĠBild":21444,"Ġmonopoly":21445,"Queen":21446,"ĠNaples":21447,"Ġ133":21448,"Ġhourly":21449,"Ġego":21450,"Ġpencil":21451,"ĠPew":21452,"Ġdesirable":21453,"vant":21454,"ĠLAT":21455,"Ġperpet":21456,"lish":21457,"Ġ201":21458,"Ġdistances":21459,"Ġdistressed":21460,"Work":21461,"Ġtattoos":21462,"Ġstereotypes":21463,"istent":21464,"ĠCoral":21465,"fo":21466,"Ġpayable":21467,"Ġakin":21468,"ĠLis":21469,"ĠFinding":21470,"Ġsusceptible":21471,"ĠKiw":21472,"Ġforgiveness":21473,"ĠMoment":21474,"ĠDmitry":21475,"Ġrenov":21476,"Ġquint":21477,"ĠWaterloo":21478,"ĠReality":21479,"Ġstray":21480,"ĠBeaver":21481,"Ġbites":21482,"Ġelusive":21483,"Ġvirtue":21484,"Ġgadgets":21485,"Ġlandslide":21486,"ĠHealthy":21487,"Ġpits":21488,"Donnell":21489,"Ġirony":21490,"uct":21491,"Ġpractitioners":21492,"Ġreck":21493,"governmental":21494,"Ġatomic":21495,"Ġmotiv":21496,"Ġpolic":21497,"Ġcommunicated":21498,"ĠHS":21499,"Ġcriticize":21500,"Ġsynerg":21501,"Del":21502,"ĠRoe":21503,"Ġinspirational":21504,"ĠWarning":21505,"pel":21506,"Ġnevertheless":21507,"Ġdespair":21508,"Ġ(.":21509,"Ġfearing":21510,"Ġgrop":21511,"tree":21512,"Ġtrusts":21513,"Ġinterviewing":21514,"amic":21515,"Ġscor":21516,"ject":21517,"Another":21518,"pose":21519,"Ġdepicted":21520,"ĠPhotography":21521,"ĠLenovo":21522,"ĠEpic":21523,"ĠBoot":21524,"GI":21525,"enses":21526,"Class":21527,"arity":21528,"Ġservicing":21529,"ĠHann":21530,"Ġawe":21531,"Ġoverdoses":21532,"ĠFinnish":21533,"Ġpav":21534,"ĠPCs":21535,"SEC":21536,"ĠStro":21537,"Ġattracts":21538,"Ġapprehended":21539,"128":21540,"Ġunstable":21541,"ĠOutdoor":21542,"Ġcloth":21543,"ĠUlster":21544,"Ġvisually":21545,"Ġsculpt":21546,"Ġsufficiently":21547,"ĠKendrick":21548,"Ġengages":21549,"Ġknives":21550,"ĠGut":21551,"Ġarbit":21552,"osition":21553,"Ġemoji":21554,"Ġpinpoint":21555,"Ġremembering":21556,"rence":21557,"ĠVish":21558,"Ġimproperly":21559,"Ġranc":21560,"Ġupstream":21561,"Ġcheckpoint":21562,"Ġrash":21563,"eson":21564,"Ġtoes":21565,"260":21566,"Ġinvalid":21567,"Ġonions":21568,"Ġlashed":21569,"ĠDong":21570,"Ġprovisional":21571,"ĠFern":21572,"Ġirresponsible":21573,"actively":21574,"ĠKnown":21575,"Ġben":21576,"ĠBlank":21577,"Ġactresses":21578,"paying":21579,"Ġsyrup":21580,"isman":21581,"Ġeducating":21582,"Sunday":21583,"ifiable":21584,"Post":21585,"Ġcalculation":21586,"Ġhesitate":21587,"ĠIncreasing":21588,"Ġreeling":21589,"ĠDairy":21590,"ensing":21591,"Ġmaternity":21592,"Ø":21593,"./":21594,"ĠElm":21595,"Ġweddings":21596,"ĠYard":21597,"117":21598,"ĠRocket":21599,"OF":21600,"Ġtreasurer":21601,"Ġrattled":21602,"ĠDrop":21603,"arel":21604,"ĠFulton":21605,"ĠGiant":21606,"ĠFloor":21607,"Jet":21608,"ikk":21609,"ĠBucs":21610,"ostics":21611,"reme":21612,"ĠRouse":21613,"Ġdeliber":21614,"ĠEle":21615,"Ġconducts":21616,"ĠBlog":21617,"connected":21618,"Ġprayed":21619,"Ġcolourful":21620,"Ġaugmented":21621,"Ġbatted":21622,"Ġrelevance":21623,"ĠRomanian":21624,"acqu":21625,"ĠChel":21626,"ĠClo":21627,"ĠGraves":21628,"Ġchees":21629,"ĠGibbs":21630,"CLE":21631,"Ġfertility":21632,"Ġambul":21633,"Ġspecs":21634,"ĠIRA":21635,"ĠBooth":21636,"ithe":21637,"ĠPlayoff":21638,"ammed":21639,"Ġcollaborating":21640,"Ġlunar":21641,"Ġconfronting":21642,"Ġattribute":21643,"King":21644,"riz":21645,"Ġcasualty":21646,"acia":21647,"waters":21648,"Ġpaving":21649,"Ġcaregivers":21650,"nor":21651,"Ġreacting":21652,"ĠHash":21653,"Ġsqueezed":21654,"Ġexert":21655,"ĠMichele":21656,"ĠConc":21657,"ĠHep":21658,"Ġsewage":21659,"wart":21660,"GY":21661,"Ġdiscourage":21662,"ĠFir":21663,"Ġtextile":21664,"ĠSpice":21665,"ĠFah":21666,"Ġcomplainant":21667,"Ġinstinct":21668,"camp":21669,"ĠEdison":21670,"ĠVIDEOS":21671,"LM":21672,"ĠSands":21673,"About":21674,"Ġdisk":21675,"brid":21676,"Ġmuted":21677,"ACC":21678,"Ġwre":21679,"event":21680,"Ġicons":21681,"Express":21682,"udes":21683,"ĠBeatles":21684,"color":21685,"ĠHaas":21686,"ĠWolfe":21687,"ĠYOUR":21688,"Ġaccessibility":21689,"ĠCornwall":21690,"Ġing":21691,"Ġatrocities":21692,"weather":21693,"ĠDominion":21694,"ĠMIL":21695,"ĠLara":21696,"Ġunravel":21697,"Ġmaneuver":21698,"Ġfoam":21699,"ribe":21700,"CI":21701,"Ġcandles":21702,"acs":21703,")(":21704,"coon":21705,"ĠPurple":21706,"ĠGovernors":21707,"ĠKeystone":21708,"ĠYuk":21709,"file":21710,"Ġviol":21711,"gery":21712,"370":21713,"train":21714,"Ġgunshots":21715,"olin":21716,"Ġviruses":21717,"ĠTex":21718,"hours":21719,"Ġprev":21720,"ĠRid":21721,"ected":21722,"ĠVog":21723,"riers":21724,"Ġmurdering":21725,"ĠIz":21726,"Ġdeliberations":21727,"arming":21728,"unda":21729,"Ġrink":21730,"ĠDrugs":21731,"idered":21732,"Ġforge":21733,"Ġexpansive":21734,"VIEW":21735,"ĠBots":21736,"Ġswitches":21737,"KO":21738,"atten":21739,"Ġvariants":21740,"ĠVirtual":21741,"ĠCoch":21742,"yon":21743,"ĠKai":21744,"Ġbullied":21745,"iday":21746,"version":21747,"Ġlib":21748,"ĠCec":21749,"igated":21750,"ĠTRUMP":21751,"ĠPod":21752,"Ġtoppled":21753,"Ġeyeing":21754,"ĠPatients":21755,"techn":21756,"Ġhampered":21757,"Ġavert":21758,"ĠScheme":21759,"ĠCorm":21760,"Ġpony":21761,"Ġzoom":21762,"abo":21763,"Ġsleeves":21764,"lane":21765,"ĠLester":21766,"ĠDane":21767,"Ġcough":21768,"Ġsignings":21769,"HER":21770,"Ġsibling":21771,"Ġredemption":21772,"Ġstockp":21773,"ĠAlgeria":21774,"Ġpadd":21775,"ĠBrenda":21776,"uchi":21777,"Ġtransporting":21778,"Ġspeculative":21779,"ĠSek":21780,"abal":21781,"Ġshipment":21782,"oker":21783,"Ġwarranty":21784,"atan":21785,"Ġblister":21786,"ĠCelebration":21787,"Ġwal":21788,"Ġlac":21789,"Ġprioritize":21790,"ression":21791,"BP":21792,"Ġcollaborated":21793,"ĠNewsletter":21794,"ĠDamian":21795,"ĠResidential":21796,"Ġgra":21797,"Ġfeasible":21798,"ĠCrest":21799,"ĠBean":21800,"ĠSturgeon":21801,"ĠTale":21802,"ĠContin":21803,"ĠMush":21804,"Ġrocking":21805,"ĠMane":21806,"ĠHumane":21807,"resistant":21808,"ĠFra":21809,"highest":21810,"fts":21811,"Ġamassed":21812,"ĠPavilion":21813,"ĠSkin":21814,"Ġunfold":21815,"Ġresur":21816,"ĠPET":21817,"model":21818,"Ġemploying":21819,"Ġrude":21820,"Ġirrelevant":21821,"angu":21822,"Page":21823,"PN":21824,"igator":21825,"ĠReb":21826,"ĠArrest":21827,"ĠGund":21828,"Ġmalls":21829,"zhen":21830,"wed":21831,"Ġdaring":21832,"Ġfactual":21833,"ĠGent":21834,"Ġinforming":21835,"ĠStri":21836,"ĠLounge":21837,".]":21838,"ĠTribunal":21839,"ĠMoines":21840,"Ġshadows":21841,"generated":21842,"fulness":21843,"Ġheartfelt":21844,"ĠLivingston":21845,"ĠClerk":21846,"Ġnationalism":21847,"ĠMiche":21848,"balls":21849,"anos":21850,"agle":21851,"Ġprejudice":21852,"Ġevenly":21853,"Ġswearing":21854,"Ġexits":21855,"Ġcondemning":21856,"Ġvanilla":21857,"club":21858,"ĠFunding":21859,"ĠDover":21860,"Ġhots":21861,"Ġfres":21862,"Ġgoodness":21863,"ĠMcKay":21864,"Ġbulls":21865,"avia":21866,"129":21867,"Ġ1947":21868,"Ġdefamation":21869,"ĠMoran":21870,"irms":21871,"ĠFitz":21872,"ĠRossi":21873,"urated":21874,"Ġvariation":21875,"ĠBauer":21876,"ĠSchro":21877,"Ġcolony":21878,"ĠParliamentary":21879,"ikan":21880,"Ġstirring":21881,"ĠSheldon":21882,"Ġaccessory":21883,"ĠUtilities":21884,"Ġnab":21885,"Ġpract":21886,"Ġherein":21887,"ĠRole":21888,"ĠMant":21889,"Ġpharm":21890,"Ġ215":21891,"ĠNGO":21892,"ĠAnything":21893,"ĠMacedonia":21894,"Ġbree":21895,"ĠWTO":21896,"Chicago":21897,"ĠProtect":21898,"quarters":21899,"ĠGrassley":21900,"ĠInteractive":21901,"ĠInterview":21902,"Ġ550":21903,"Ġastronauts":21904,"Ġfreak":21905,"ĠIntegrated":21906,"Ġindict":21907,"Ġgenerators":21908,"acio":21909,"Kevin":21910,"Ġvaccination":21911,"Ġblockade":21912,"ĠSons":21913,"Ġcapita":21914,"ĠAnita":21915,"ĠExport":21916,"ĠNex":21917,"ĠAram":21918,"Ġzinc":21919,"Ġrevamped":21920,"Ġselective":21921,"Ġmanipulate":21922,"ĠBedford":21923,"ĠBattery":21924,"Ġqualifiers":21925,"lean":21926,"Ġscrew":21927,"film":21928,"ror":21929,"ĠEllison":21930,"ombo":21931,"ĠOst":21932,"165":21933,"Ġslaves":21934,"ĠPayton":21935,"Ġbarg":21936,"Ġrugged":21937,"ĠWinn":21938,"ĠHammer":21939,"ĠUPS":21940,"Euro":21941,"Ġunfamiliar":21942,"Ġdistract":21943,"Ġbuffer":21944,"ledge":21945,"Ġtrunk":21946,"Ġ320":21947,"122":21948,"Ġdilemma":21949,"Ġpra":21950,"Ġutmost":21951,"Ġcampaigners":21952,"icular":21953,"eful":21954,"�":21955,"ĠHQ":21956,"neau":21957,"Ġsir":21958,"test":21959,"Company":21960,"Ġrescind":21961,"ardon":21962,"MG":21963,"Gov":21964,"ĠRaz":21965,"Ġrod":21966,"fed":21967,"Ġpsych":21968,"Ġunin":21969,"ĠArbor":21970,"Ġnewcomer":21971,"ĠEdwin":21972,"raising":21973,"quist":21974,"Ġdiscoveries":21975,"Steve":21976,"Ġscramble":21977,"js":21978,"Ġacoustic":21979,"Ġdeterioration":21980,"Ġobserving":21981,"ĠWinning":21982,"ĠSaban":21983,"idy":21984,"Ġoverd":21985,"Ġscouting":21986,"Ġpunitive":21987,"ĠShelter":21988,"Ġmocked":21989,"Ġdreamed":21990,"Ġinvaluable":21991,"LP":21992,"standard":21993,"Ġrecounted":21994,"ĠSabres":21995,"points":21996,"Ġfringe":21997,"ĠBarker":21998,"alian":21999,"ĠPROV":22000,"Ġcartel":22001,"Ġovercrowd":22002,"tain":22003,"Year":22004,"ĠWelfare":22005,"ĠChr":22006,"Ġintroduces":22007,"ĠDoing":22008,"ĠGlover":22009,"Ġdeteriorating":22010,"Par":22011,"Ġattendant":22012,"ĠMold":22013,"ĠFlying":22014,"ovan":22015,"Ġoptimize":22016,"Ġchapters":22017,"Ġdull":22018,"gay":22019,"ĠATP":22020,"ĠKah":22021,"ainer":22022,"feet":22023,"Ġjoking":22024,"Ġdisadvantage":22025,"Rep":22026,"Ġtwisted":22027,"Ġslain":22028,"Ġcomprise":22029,"Ġrestricting":22030,"Ġdispos":22031,"Ġshaky":22032,"Ġembattled":22033,"owe":22034,"conscious":22035,"oken":22036,"Ġmistaken":22037,"ĠDra":22038,"Ġreservoir":22039,"Ġspate":22040,"Scott":22041,"avor":22042,"Ġqual":22043,"amel":22044,"hunt":22045,"ĠChevy":22046,"Ġclaw":22047,"Ġwitch":22048,"ĠZimmerman":22049,"arium":22050,"Ġrubbish":22051,"Ġstrings":22052,"Ġdoc":22053,"Ġplaque":22054,"ĠCyr":22055,"Ġflourish":22056,"Ġworthwhile":22057,"Ġbanners":22058,"ĠLemon":22059,"ĠRainbow":22060,"Ġconsisted":22061,"ĠHOW":22062,"Ñ":22063,"Ġblogs":22064,"CLUS":22065,"eely":22066,"Ġbeast":22067,"ĠMai":22068,"Ġhostility":22069,"eros":22070,"Ġforeseeable":22071,"ĠCorker":22072,"ĠWEEK":22073,"visors":22074,"ressive":22075,"ĠViktor":22076,"Ġbureaucracy":22077,"Ġ256":22078,"ĠFeel":22079,"ĠAdventure":22080,"Ġefficacy":22081,"ĠInstitution":22082,"ĠHarbaugh":22083,"ĠPractice":22084,"ĠChristianity":22085,"Thanks":22086,"Ġfridge":22087,"idel":22088,"Ġeff":22089,"Ġvein":22090,"terms":22091,"Ġignorance":22092,"Ġscream":22093,"Ġwit":22094,"ĠRousse":22095,"ĠWillow":22096,"Ġhallway":22097,"former":22098,"Ġshooters":22099,"ĠReporting":22100,"Ġgal":22101,"Ġsavvy":22102,"rand":22103,"Ġremed":22104,"ĠBaron":22105,"inar":22106,"Ġseizures":22107,"ĠThorn":22108,"ĠProtesters":22109,"ĠRevolutionary":22110,"think":22111,"ĠCabrera":22112,"Four":22113,"ĠRudd":22114,"Ġprost":22115,"ĠBottom":22116,"Port":22117,"nas":22118,"ifax":22119,"Wire":22120,"Ġtokens":22121,"antis":22122,"ĠSOU":22123,"ĠMilk":22124,"asters":22125,"Ġshrimp":22126,"Ġcakes":22127,"blue":22128,"ifty":22129,"View":22130,"adium":22131,"fen":22132,"zyk":22133,"ĠEmil":22134,"Ġdismay":22135,"Ġtilt":22136,"aska":22137,"Young":22138,"Ġpredators":22139,"Ġovershadowed":22140,"mitt":22141,"ĠSemin":22142,"ĠSchiff":22143,"ĠClarkson":22144,"212":22145,"210":22146,"Ġvanished":22147,"Ġmesh":22148,"ĠBurnett":22149,"ĠMent":22150,"ĠBlind":22151,"ĠPatriot":22152,"ĠVil":22153,"Ġflick":22154,"ĠTowns":22155,"ĠWhites":22156,"Ġspice":22157,"ĠMode":22158,"Ġnominate":22159,"Ġwrest":22160,"ĠAshes":22161,"Ġrows":22162,"ĠClint":22163,"Ġgentleman":22164,"utan":22165,"athlon":22166,"ĠIntermediate":22167,"hews":22168,"Ġoffended":22169,"ĠPaige":22170,"ĠFinch":22171,"ĠAboriginal":22172,"positive":22173,"Stop":22174,"Ġrenting":22175,"Ġ[â̦]":22176,"ĠHert":22177,"Ġvegetation":22178,"apes":22179,"ĠCanon":22180,"appa":22181,"Ġabst":22182,"ĠKatz":22183,"Ġsurfing":22184,"aghan":22185,"ĠPresidency":22186,"Ġscaling":22187,"ĠSas":22188,"Ġpeanut":22189,"Ġrecommending":22190,"cious":22191,"endez":22192,"eker":22193,"ĠKamp":22194,"Ġsitcom":22195,"Ġcrust":22196,"women":22197,"ĠJes":22198,"ĠWhe":22199,"ĠWarwick":22200,"Ġepit":22201,"ĠAlc":22202,"Ġdictate":22203,"ĠSPORTS":22204,"ĠLanguage":22205,"Ġindicative":22206,"ĠMacDonald":22207,"Ġreorgan":22208,"Ġ`":22209,"ARS":22210,"Ġliberation":22211,"Ġbless":22212,"Ġreflective":22213,"Ġà¤":22214,"Ġdesires":22215,"ĠHank":22216,"ĠLaunch":22217,"Ġrotating":22218,"ĠStones":22219,"Ġcoordinating":22220,"ĠZeit":22221,"Ġskepticism":22222,"ĠAlam":22223,"ĠTrout":22224,"ĠSMS":22225,"ĠCrescent":22226,"ĠTeacher":22227,"Ġfury":22228,"Ġeyebrows":22229,"onga":22230,"ĠPilot":22231,"ĠRutherford":22232,"Ġinterstate":22233,"established":22234,"Ġbaggage":22235,"Ġ131":22236,"riks":22237,"mil":22238,"Ġneon":22239,"Ġqueer":22240,"ourced":22241,"ĠKash":22242,"ĠEleven":22243,"illes":22244,"ĠOpportun":22245,"Ġstre":22246,"Washington":22247,"ĠDifferent":22248,"Ġexempl":22249,"Ġboarded":22250,"Ġrogue":22251,"ĠDNC":22252,"rone":22253,"Ġreversing":22254,"nine":22255,"ĠIvory":22256,"itating":22257,"uve":22258,"Ġfracture":22259,"255":22260,"ĠAssessment":22261,"Ġsubjective":22262,"Ġfluct":22263,"ĠJaguar":22264,"Ġstride":22265,"Ġreapp":22266,"ĠGrow":22267,"against":22268,"ĠMedina":22269,"scenes":22270,"ĠNieto":22271,"Ġsou":22272,"ĠFleming":22273,"Ġnarcotics":22274,"ĠBere":22275,"ĠBub":22276,"ĠAck":22277,"Ġvinyl":22278,"ĠCopy":22279,"ĠGarland":22280,"ĠDuty":22281,"Ġinn":22282,"Ġmerchant":22283,"Ġactivate":22284,"Ġglowing":22285,"ettle":22286,"ĠBran":22287,"Ġsilk":22288,"anco":22289,"TL":22290,"ĠFurn":22291,"Ġwithheld":22292,"Ġpulse":22293,"ĠGU":22294,"BUS":22295,"ĠHyper":22296,"Ġpicnic":22297,"Ġpositives":22298,"ĠParamount":22299,"Ġ737":22300,"Ġenlisted":22301,"ĠValerie":22302,"false":22303,"ĠChocolate":22304,"ĠSTAR":22305,"Ġdescended":22306,"Ġtasty":22307,"ĠDaesh":22308,"ĠNed":22309,"Ġcomplimentary":22310,"Ġdepicting":22311,"ĠHavana":22312,"college":22313,"Ġtraces":22314,"Ġundue":22315,"ĠSisters":22316,"aum":22317,"ĠCourier":22318,"ĠOng":22319,"ĠSparks":22320,"ongs":22321,"ĠYong":22322,"URR":22323,"los":22324,"Ġhorsepower":22325,"confidence":22326,"ĠPett":22327,"ĠMeasure":22328,"Ġmarches":22329,"zig":22330,"ĠTOR":22331,"Ġexported":22332,"ĠRak":22333,"ĠInvestigations":22334,"Ġterminate":22335,"ĠTian":22336,"Ġmasters":22337,"ĠDS":22338,"Ġoutraged":22339,"ĠCups":22340,"ĠWeir":22341,"exec":22342,"Ġjourneys":22343,"Ġabide":22344,"Ġavail":22345,"ĠStreets":22346,"Ġfixes":22347,"Ġcocoa":22348,"Ġabundant":22349,"Ġhubs":22350,"mort":22351,"Ġrobberies":22352,"ĠBark":22353,"Ġprecautions":22354,"Ġhammered":22355,"ometric":22356,"mith":22357,"ĠMcCann":22358,"ĠJaw":22359,"ĠQuest":22360,"ĠMcF":22361,"Ġlob":22362,"Ġlegalized":22363,"Ġquirky":22364,"Ġtrailers":22365,"ĠIndividual":22366,"Ġcumulative":22367,"Ġenlarge":22368,"Ġconvoy":22369,"olen":22370,"got":22371,"landers":22372,"Ġscanner":22373,"Ġscans":22374,"ĠEg":22375,"prof":22376,"Ġhosp":22377,"ĠColo":22378,"Ġerr":22379,"Ġdeval":22380,"ĠUsually":22381,"Ġbul":22382,"ummy":22383,"Ġtandem":22384,"occupied":22385,"Ġmandates":22386,"ĠSwim":22387,"121":22388,"ussed":22389,"EF":22390,"Ġfries":22391,"Until":22392,"rc":22393,"Ġbadge":22394,"Ġstrips":22395,"Ġmagnet":22396,"Ġarchive":22397,"stan":22398,"ĠDeadline":22399,"Ġdisposable":22400,"Ġbob":22401,"Ġnorthwestern":22402,"Jul":22403,"ĠSAL":22404,"Ġinfluencing":22405,"Ġdevil":22406,"ĠEllie":22407,"cms":22408,"ingo":22409,"888":22410,"Ġcosmetic":22411,"Also":22412,"Ġyacht":22413,"Ġlazy":22414,"Ġmerc":22415,"Ġabsorbed":22416,"harm":22417,"116":22418,"Ġsubpoena":22419,"Ġcounters":22420,"ĠLori":22421,"Ġrandomly":22422,"nea":22423,"waves":22424,"Ġrelie":22425,"ĠKiss":22426,"Ġchassis":22427,"Ġbakery":22428,"Images":22429,"ĠHolden":22430,"Ġamazed":22431,"Ġalignment":22432,"ĠPowers":22433,"Ġlabelled":22434,"Ġstaunch":22435,"Ġsignaling":22436,"Ġsenate":22437,"Ġunconventional":22438,"ĠAlternative":22439,"Ġambassadors":22440,"ĠVPN":22441,"atics":22442,"Ġmosquito":22443,"ĠScholarship":22444,"Ġhelpless":22445,"alone":22446,"ZA":22447,"chel":22448,"Ġconstituencies":22449,"ĠCafé":22450,"Ġhatch":22451,"ĠRupert":22452,"Ġrendering":22453,"Ġreinstated":22454,"Ġinterval":22455,"Texas":22456,"ĠAHL":22457,"February":22458,"review":22459,"Ġgle":22460,"Ġfals":22461,"Ġmarkers":22462,"Ġgovernmental":22463,"ĠPos":22464,"Ġarose":22465,"every":22466,"Ġrulings":22467,"obar":22468,"Govern":22469,"gren":22470,"isan":22471,"Ġmarketed":22472,"Click":22473,"Ġord":22474,"Ġballoons":22475,"asers":22476,"ĠHorton":22477,"pub":22478,"ĠAerospace":22479,"Ġflank":22480,"Ġmolecular":22481,"bour":22482,"nuts":22483,"Ġalliances":22484,"Ġbenchmarks":22485,"ocate":22486,"stadt":22487,"ĠGoodwin":22488,"lap":22489,"ĠFactors":22490,"Never":22491,"ĠNem":22492,"Ġroadside":22493,"orth":22494,"Ġexhibited":22495,"ĠPearce":22496,"ĠOlsen":22497,"Ġpostal":22498,"ĠLiberation":22499,"reen":22500,"mary":22501,"Ġropes":22502,"Ġlarg":22503,"Ġgob":22504,"boys":22505,"ĠSax":22506,"Ġreimbursement":22507,"ĠVie":22508,"ĠCatholics":22509,"ĠMartial":22510,"Ġpremiered":22511,"Ġawaits":22512,"ĠUnderstanding":22513,"ĠBelarus":22514,"ĠVor":22515,"ogi":22516,"iaz":22517,"Ġvictorious":22518,"Ġancestors":22519,"Ġwreckage":22520,"Ġoppression":22521,"ĠChildhood":22522,"Ġwidth":22523,"ĠPlymouth":22524,"ĠFifty":22525,"Ġoccupancy":22526,"etts":22527,"ĠFiscal":22528,"lifting":22529,"ĠTraditional":22530,"Ġnostalgia":22531,"Law":22532,"Ġlays":22533,"Ġarresting":22534,"Ġanticipating":22535,"Ġinsults":22536,"ĠExtension":22537,"Ġgenerator":22538,"ummer":22539,"Ġageing":22540,"Ġbouncing":22541,"ember":22542,"ĠWAR":22543,"ĠNico":22544,"ĠWow":22545,"ĠRaven":22546,"flower":22547,"ĠCrim":22548,"bh":22549,"Ġundo":22550,"Ġburgers":22551,"roud":22552,"ĠAtkinson":22553,"ĠYEAR":22554,"Ġpoorer":22555,"ICA":22556,"ĠSchedule":22557,"Ġstronghold":22558,"ĠMillennium":22559,"Ġ###":22560,"ilda":22561,"ĠGH":22562,"Ġupscale":22563,"aldi":22564,"ĠResolution":22565,"Ġswelling":22566,"Ġgrieving":22567,"ĠNile":22568,"ĠTig":22569,"ERY":22570,"ooth":22571,"BALL":22572,"Ġballet":22573,"Ġbucks":22574,"ĠUV":22575,"akin":22576,"Ġchilling":22577,"Ġdatabases":22578,"ĠGD":22579,"section":22580,"Ġhires":22581,"Ġmul":22582,"Ġsen":22583,"ĠTownsend":22584,"Ġinspected":22585,"ilic":22586,"Ġdiscriminatory":22587,"fol":22588,"Ġalcoholic":22589,"ĠHoff":22590,"Carl":22591,"Ġvicinity":22592,"lein":22593,"ĠEco":22594,"ĠGovern":22595,"Ġsecrecy":22596,"aned":22597,"ĠDUP":22598,"Ġ570":22599,"Ġsow":22600,"Ġstalls":22601,"Ġinsulting":22602,"ĠDT":22603,"Ġinforms":22604,"fitting":22605,"ĠDepending":22606,"ĠMelanie":22607,"ĠThom":22608,"path":22609,"Ġadmired":22610,"Peter":22611,"idents":22612,"ielding":22613,"ĠShanahan":22614,"TD":22615,"Things":22616,"sn":22617,"Ġconstituted":22618,"Ġ137":22619,"Ġderailed":22620,"ĠBonnie":22621,"Ġgraffiti":22622,"Ġearnest":22623,"Ġcompliant":22624,"blown":22625,"Ġalle":22626,"prise":22627,"Ġfocal":22628,"Ġgentlemen":22629,"ĠTalks":22630,"Ġpassports":22631,"Ġdeprived":22632,"Ġdude":22633,"ĠNath":22634,"Ġgoverned":22635,"Ġsac":22636,"Ġcastle":22637,"qv":22638,"Ġtolerated":22639,"ĠSci":22640,"close":22641,"ĠDynamics":22642,"Ġflashing":22643,"yk":22644,"ĠConsolid":22645,"Ġinherently":22646,"ĠForrest":22647,"Gene":22648,"Public":22649,"Ġloser":22650,"runners":22651,"Ġprudent":22652,"Ġpioneering":22653,"ĠHowe":22654,"ĠButter":22655,"ĠArabian":22656,"acha":22657,"ĠBBQ":22658,"ĠMineral":22659,"Ġdestiny":22660,"Ġretrieve":22661,"ĠBav":22662,"reth":22663,"oby":22664,"ĠGrid":22665,"Ġgrievances":22666,"ĠTips":22667,"Ġadamant":22668,"Ġdiets":22669,"Ġmilestones":22670,"Ġcollects":22671,"ĠLaboratories":22672,"ĠWC":22673,"Ġpostp":22674,"Ġdams":22675,"ĠOEM":22676,"Ġrumor":22677,"Ġlocking":22678,"Ġemission":22679,"Ġqueries":22680,"Jones":22681,"Ġlang":22682,"ĠAcqu":22683,"ĠMedium":22684,"ĠTreasurer":22685,"Sept":22686,"FB":22687,"Ġintegrating":22688,"Ġbolstered":22689,"Ġincorporating":22690,"encers":22691,"Ġirregularities":22692,"Ġnom":22693,"iod":22694,"ĠAi":22695,"Ġsor":22696,"anked":22697,"Ġrehears":22698,"fig":22699,"ĠBug":22700,"hoff":22701,"Ġtrooper":22702,"Ġgalaxy":22703,"amon":22704,"ĠAtlas":22705,"Ġsolicit":22706,"Ġsings":22707,"ĠInstructions":22708,"ĠMig":22709,"thinking":22710,"ĠCostco":22711,"Ġbreasts":22712,"Ġportraits":22713,"ĠCock":22714,"Ġsubscriptions":22715,"Ġpine":22716,"Ġhaunted":22717,"ĠMED":22718,"eer":22719,"ega":22720,"ĠZa":22721,"ENN":22722,"ĠWinners":22723,"aith":22724,"safe":22725,"Ġ143":22726,"ĠWeston":22727,"ĠLansing":22728,"ĠLaurel":22729,"ocrat":22730,"ograph":22731,"Ġmatchups":22732,"ĠFriend":22733,"Ġdigest":22734,"Ġdimensions":22735,"azing":22736,"Ġtipping":22737,"Ġenrich":22738,"gart":22739,"argo":22740,"Ġoutbreaks":22741,"Ġsalvage":22742,"ĠErica":22743,"Ġmodules":22744,"ĠPDF":22745,"ĠGoods":22746,"oots":22747,"2011":22748,"Ġinterrupt":22749,"Ġradi":22750,"ĠSimone":22751,"vell":22752,"ĠSV":22753,"extremely":22754,"Ġstadiums":22755,"ĠRox":22756,"Ġconflicting":22757,"Ġyouthful":22758,"ĠUM":22759,"series":22760,"Ġded":22761,"Ġfielding":22762,"Pre":22763,"itled":22764,"Ġstreamed":22765,"Ġapprentices":22766,"ĠAlec":22767,"ĠGap":22768,"ĠPrem":22769,"Ġleased":22770,"Ġdeepening":22771,"Ġbounds":22772,"Ġrethink":22773,"ĠVoting":22774,"ĠScha":22775,"blood":22776,"ĠReeves":22777,"Ġbells":22778,"Ġcollector":22779,"ĠCrimson":22780,"ĠWheat":22781,"207":22782,"ĠHB":22783,"ĠBCC":22784,"Ġsync":22785,"ĠAnders":22786,"Ġthanking":22787,"Ġlayoffs":22788,"Ġfoolish":22789,"Ġcustod":22790,"Ġelephants":22791,"Ġcorrelation":22792,"ĠHarding":22793,"ĠGPU":22794,"ĠBarnett":22795,"Ġol":22796,"Ġalarms":22797,"Ġfluctuations":22798,"shop":22799,"Ġcommentators":22800,"ĠAlpine":22801,"Ġmur":22802,"Ġbiotech":22803,"Ġunlocked":22804,"ouri":22805,"roe":22806,"ĠPayment":22807,"ĠPOL":22808,"ĠGuest":22809,"Ġphrases":22810,"ĠBuilt":22811,"erves":22812,"Ġnutritional":22813,"205":22814,"ourage":22815,"Related":22816,"Come":22817,"ĠSAT":22818,"Ġgatherings":22819,"Ġsquads":22820,"Ġorganising":22821,"Ġministerial":22822,"Ġkilomet":22823,"ĠJump":22824,"ĠStrength":22825,"ĠFerr":22826,"Ġillustrated":22827,"ĠOber":22828,"Ġextrad":22829,"Ġlimitation":22830,"idis":22831,"ĠMonths":22832,"ifts":22833,"Ġmotives":22834,"Ġmaternal":22835,"Ġbait":22836,"Ġadversity":22837,"Twitter":22838,"ĠUni":22839,"Ġgrappling":22840,"Ġbowls":22841,"ĠHib":22842,"ĠCopenhagen":22843,"Ġsergeant":22844,"Ġintro":22845,"Ġscrambled":22846,"ĠExc":22847,"Ġshowcases":22848,"Ġplotting":22849,"Ġsym":22850,"ĠNah":22851,"berries":22852,"itching":22853,"conn":22854,"istle":22855,"ĠBeginning":22856,"asley":22857,"ĠMeadow":22858,"ĠCra":22859,"Ġsupremacist":22860,"Ġsweats":22861,"production":22862,"innon":22863,"ovo":22864,"Ġscept":22865,"Ġdrowning":22866,"ĠEh":22867,"Ġdecorations":22868,"Ġsympathetic":22869,"raction":22870,"Ġ195":22871,"ripp":22872,"ĠNotice":22873,"charging":22874,"ĠDIY":22875,"ĠJin":22876,"Ġskinny":22877,"Ġmaj":22878,"Ġwhisk":22879,"Ġcongreg":22880,"RAL":22881,"Ġvolley":22882,"Ġestablishments":22883,"Ġcite":22884,"Miss":22885,"Int":22886,"iola":22887,"ĠBare":22888,"KING":22889,"ools":22890,"private":22891,"Ġflaw":22892,"Ġwires":22893,"Ġideals":22894,"oub":22895,"Ġ\"'":22896,"ĠCompet":22897,"ĠStatements":22898,"ĠHDR":22899,"rm":22900,"Ġbegging":22901,"uffs":22902,"Ġdispatch":22903,"Ġskipped":22904,"Ġlabs":22905,"hawks":22906,"Ġexpl":22907,"Ġpatriotic":22908,"ussions":22909,"Ġportrayal":22910,"ĠBudapest":22911,"ĠCod":22912,"Ġextingu":22913,"smart":22914,"Ġburdens":22915,"ĠDrama":22916,"Ġaltitude":22917,"Ġpursuant":22918,"à¥":22919,"atari":22920,"cot":22921,"Ġhotline":22922,"ooters":22923,"ĠRolls":22924,"Ġjeopardy":22925,"oids":22926,"Ġpageant":22927,"149":22928,"Ġdistinguish":22929,"support":22930,"ĠHighlands":22931,"ĠErnst":22932,"ĠHole":22933,"pering":22934,"ĠHasan":22935,"Ġrece":22936,"Ġirregular":22937,"Ġdisturbed":22938,"Ġcoupon":22939,"ĠElijah":22940,"oise":22941,"Ġfriendships":22942,"girlfriend":22943,"Ġrampage":22944,"arers":22945,"Ġdispens":22946,"assion":22947,"Ġtentative":22948,"ĠExploration":22949,"fashioned":22950,"ĠInstit":22951,"Ġthemed":22952,"ĠKurdistan":22953,"ĠCAL":22954,"ĠSweeney":22955,"Ġransom":22956,"Ġstamps":22957,"ĠSchwe":22958,"ĠLucia":22959,"124":22960,"omore":22961,"Ġmotivate":22962,"ĠWorcester":22963,"wald":22964,"CAR":22965,"iken":22966,"andro":22967,"ffic":22968,"ĠRehab":22969,"Ġgrou":22970,"Ġcontrollers":22971,"ĠHai":22972,"nz":22973,"Ġartillery":22974,"ĠMish":22975,"Ġregistry":22976,"Ġfrontman":22977,"ĠCharg":22978,"orneys":22979,"ĠPRESS":22980,"Ġperceptions":22981,"ĠMcGee":22982,"AU":22983,"mg":22984,"Off":22985,"ĠNGOs":22986,"chemical":22987,"Ġbrun":22988,"ĠHav":22989,"Ġlace":22990,"Ġ202":22991,"Ġdefer":22992,"Ġinjected":22993,"Ġgluten":22994,"ĠRin":22995,"ĠAvalanche":22996,"Ġcorpor":22997,"ĠPamela":22998,"Ġfills":22999,"ĠReve":23000,"ĠMonument":23001,"Ġnationalists":23002,"ĠIQ":23003,"adden":23004,"ĠLoop":23005,"Ġ134":23006,"Reg":23007,"click":23008,"bush":23009,"ĠKub":23010,"ipes":23011,"Ġtoggle":23012,"ĠRae":23013,"Ġburgl":23014,"Ġholistic":23015,"ronics":23016,"Ġprominence":23017,"jack":23018,"Ġfinan":23019,"icates":23020,"Ġvel":23021,"important":23022,"Thursday":23023,"chet":23024,"Ġrefunds":23025,"ĠElder":23026,"ĠOwner":23027,"Ġtakeaway":23028,"Pe":23029,"ĠToro":23030,"Tim":23031,"fix":23032,"before":23033,"ĠMotorola":23034,"Ġlev":23035,"Term":23036,"ĠSne":23037,"Ġmisinformation":23038,"ĠSinai":23039,"Ġnitrogen":23040,"Ġ203":23041,"Ġescaping":23042,"Ġjunction":23043,"ĠSantana":23044,"ĠYemeni":23045,"Ġwhipped":23046,"ĠStephenson":23047,"Ġattire":23048,"ĠBard":23049,"atically":23050,"ĠFaul":23051,"ĠSym":23052,"resh":23053,"ĠMG":23054,"Sub":23055,"ĠCarmen":23056,"Ġig":23057,"ĠSanford":23058,"ĠYa":23059,"cycle":23060,"Ġencryption":23061,"ĠScal":23062,"ĠChest":23063,"ĠMadonna":23064,"agin":23065,"ĠDHS":23066,"ĠCed":23067,"YR":23068,"Ġtruce":23069,"ĠBike":23070,"Ġfoes":23071,"ĠSlovakia":23072,"adal":23073,"Rain":23074,"OPE":23075,"Ġlockdown":23076,"Ġunilateral":23077,"Ġoverseen":23078,"Ġblames":23079,"Ġbarrage":23080,"aan":23081,"uds":23082,"ĠRust":23083,"ĠHC":23084,"cox":23085,"ĠAllied":23086,"ĠJosé":23087,"pected":23088,"Ġunp":23089,"Ġsomeday":23090,"Ġdeductions":23091,"icial":23092,"ĠPRO":23093,"ĠIntern":23094,"Ġhemp":23095,"Ġkilograms":23096,"Ġnets":23097,"ĠBACK":23098,"early":23099,"outed":23100,"Ġrelegated":23101,"Ġ1958":23102,"ĠMustang":23103,"Ġgamble":23104,"Ġprostitution":23105,"ĠPapa":23106,"Ġinexpensive":23107,"GHz":23108,"Ġjerseys":23109,"Ġmisery":23110,"VIS":23111,"ĠRAW":23112,"Ġthri":23113,"Ġaffiliation":23114,"small":23115,"Ġflashed":23116,"Ġcoastline":23117,"Ġgard":23118,"Ġsv":23119,"Ġwaits":23120,"itton":23121,"London":23122,"Ġaccus":23123,"ĠCharge":23124,"Ġincub":23125,"Ġwanna":23126,"ĠAwareness":23127,"abies":23128,"ĠUh":23129,"Ġpersuaded":23130,"ĠThames":23131,"Ġcurated":23132,"Ī":23133,"Ġbrutally":23134,"Ġrooftop":23135,"Ġoy":23136,"Ġ1900":23137,"bery":23138,"Ġuphill":23139,"Ġinteracting":23140,"Ġchilly":23141,"ERE":23142,"Ġcapsule":23143,"ĠSaul":23144,"ocker":23145,"Ġdeserving":23146,"ĠBowen":23147,"ĠReaders":23148,"ĠWriters":23149,"Ġartifacts":23150,"ĠRanger":23151,"reau":23152,"Ġimperson":23153,"Ġhears":23154,"ĠMaher":23155,"neg":23156,"Ġmantra":23157,"Ġmull":23158,"Ġelders":23159,"ĠAmtrak":23160,"Ġspouses":23161,"ĠHak":23162,"Ġopenness":23163,"Ġprevailed":23164,"Ġfortnight":23165,"Pal":23166,"ride":23167,"Ġillustrate":23168,"dominated":23169,"trust":23170,"ī":23171,"ĠFemale":23172,"ĠSlim":23173,"Ġdesc":23174,"ĠKathryn":23175,"Ġdeepen":23176,"TAIN":23177,"eredith":23178,"Ġchanted":23179,"ĠHector":23180,"bread":23181,"ĠIsa":23182,"Ġvolcanic":23183,"Ġah":23184,"owners":23185,"aquin":23186,"Ġmelting":23187,"Ġpreschool":23188,"ocus":23189,"ĠMast":23190,"ĠMyr":23191,"Ġsuppress":23192,"Ġversatility":23193,"ĠNEC":23194,"Ġhoax":23195,"Ġmutually":23196,"ĠNeb":23197,"ĠWheel":23198,"kit":23199,"abl":23200,"again":23201,"ĠSonny":23202,"rift":23203,"Ġsweater":23204,"Ġinund":23205,"ĠTaco":23206,"ĠBout":23207,"Ġnonprofits":23208,"Ġmodify":23209,"Ġprofessionalism":23210,"ĠGould":23211,"ĠGuerrero":23212,"Ġterribly":23213,"ĠBenz":23214,"Ġcountered":23215,"Ġbean":23216,"ĠPhelps":23217,"Ġprowess":23218,"bc":23219,"Ġfeast":23220,"Ġ5000":23221,"Ġrevisit":23222,"Ġchin":23223,"agent":23224,"Ġtones":23225,"Ġextraction":23226,"ĠPosts":23227,"oin":23228,"Ġattain":23229,"Ġgardening":23230,"earned":23231,"ĠOtto":23232,"player":23233,"Ġscams":23234,"ĠHonolulu":23235,"ĠAppro":23236,"ĠHIGH":23237,"Ġdwell":23238,"Islam":23239,"leaders":23240,"Ġlegisl":23241,"expl":23242,"ĠChoi":23243,"Ġfrenzy":23244,"Ġcommercially":23245,"Ġlbs":23246,"Ġgateway":23247,"ĠAndersen":23248,"emia":23249,"lez":23250,"Ġresidences":23251,"office":23252,"ĠHelsinki":23253,"olia":23254,"Ġwolf":23255,"Ġstyling":23256,"ĠJunction":23257,"ĠPeyton":23258,"udo":23259,"ĠDorothy":23260,"Ġfreshly":23261,"ĠJulio":23262,"ĠSunset":23263,"ĠMadden":23264,"Ġissu":23265,"Ġsounding":23266,"sports":23267,"Ġmassively":23268,"ĠRahman":23269,"Ġpresided":23270,"Instead":23271,"Ġ136":23272,"ĠHowell":23273,"beit":23274,"Ġprosperous":23275,"Ġwrongly":23276,"ĠRaqqa":23277,"ĠCes":23278,"Ġbuddy":23279,"Ġchatting":23280,"Ġfencing":23281,"Ġtant":23282,"ocated":23283,"ALK":23284,"Ġsnapping":23285,"euro":23286,"Ryan":23287,"ĠRecogn":23288,"ucked":23289,"Ġpurported":23290,"ĠCann":23291,"Ġintimidating":23292,"Ġrulers":23293,"ĠMarse":23294,"Art":23295,"ĠAadhaar":23296,"Ġvows":23297,"Ġhunter":23298,"ourmet":23299,"ĠVarious":23300,"2009":23301,"anie":23302,"Ġcompassionate":23303,"ĠParking":23304,"Ġmalaria":23305,"Ġamnesty":23306,"Ġworsened":23307,"ĠTitan":23308,"Ġcrossings":23309,"drug":23310,"Ġaddicted":23311,"Ġremorse":23312,"ĠDestiny":23313,"Dear":23314,"Ġhur":23315,"Ġimplicated":23316,"Ġplayful":23317,"Ġripe":23318,"Ġsizable":23319,"Ġcrab":23320,"Ġliqu":23321,"Ġdrib":23322,"Ġcontraction":23323,"cro":23324,"ĠGus":23325,"Ġdoomed":23326,"Ġmog":23327,"ĠMonitor":23328,"Count":23329,"Ġsadd":23330,"Ġwrestler":23331,"Ġrestraints":23332,"Ġraging":23333,"185":23334,"Ġtapes":23335,"Ġmitigation":23336,"ocratic":23337,"Ġvib":23338,"ĠSnowden":23339,"aldo":23340,"Ġweights":23341,"Ġ1959":23342,"ucc":23343,"ĠCoc":23344,"Log":23345,"ĠStev":23346,"Ġdealership":23347,"Ġtrademarks":23348,"iru":23349,"Ġbeneficiary":23350,"Ġlegislator":23351,"Ġdeadlines":23352,"Ġcosmetics":23353,"ĠTammy":23354,"ĠCombined":23355,"Ġeducator":23356,"athon":23357,"Ġcombo":23358,"fu":23359,"appropriate":23360,"nington":23361,"ĠLiberties":23362,"missions":23363,"opard":23364,"ĠMondays":23365,"Ġfetch":23366,"Ġhers":23367,"jon":23368,"ukes":23369,"zek":23370,"Ġvetting":23371,"yet":23372,"Ġfacilitating":23373,"ĠStras":23374,"character":23375,"ĠHeads":23376,"Ġclim":23377,"ĠAlbuquerque":23378,"Ġbind":23379,"Ġconcluding":23380,"ĠBasically":23381,"rail":23382,"ĠTCU":23383,"ĠDepression":23384,"Ġhem":23385,"ĠHue":23386,"Ġpand":23387,"Ġscoreboard":23388,"Av":23389,"Ġidol":23390,"compl":23391,"Ġredesign":23392,"ĠJarrett":23393,"Ġfavoured":23394,"ĠINS":23395,"Ġpropelled":23396,"Ġevasion":23397,"Ġwidened":23398,"Ġwastewater":23399,"nard":23400,"responsive":23401,"Ġdemographics":23402,"engine":23403,"ĠBrewer":23404,"ĠBaxter":23405,"ront":23406,"ĠColon":23407,"Ġpromoter":23408,"Ġgenres":23409,"ovsky":23410,"build":23411,"urate":23412,"ĠCohn":23413,"design":23414,"Ġturbulent":23415,"Ġcurtain":23416,"310":23417,"ĠLamp":23418,"ĠBonds":23419,"church":23420,"Ġdeterrent":23421,"Ġdictatorship":23422,"acement":23423,"haul":23424,"Ġspir":23425,"Ġconceived":23426,"Ġstern":23427,"sit":23428,"Ġsingular":23429,"ĠYog":23430,"Ġconditional":23431,"Ġide":23432,"lund":23433,"Ġautop":23434,"ĠBEST":23435,"ĠJed":23436,"Ġrationale":23437,"Ġalarmed":23438,"Ġshovel":23439,"ĠProb":23440,"ĠMao":23441,"ĠBurgess":23442,"Ġ1953":23443,"above":23444,"ĠManson":23445,"Ġdismal":23446,"ĠFrankie":23447,"Ġtempted":23448,"Ġunderdog":23449,"ribing":23450,"ENCY":23451,"ĠDele":23452,"Las":23453,"places":23454,"Ġnotoriously":23455,"ĠAkin":23456,"Ġglut":23457,"Ġseamlessly":23458,"Ġrecess":23459,"written":23460,"ĠTJ":23461,"occ":23462,"ĠTerritory":23463,"ĠAIR":23464,"ĠDiagn":23465,"Ġvacancies":23466,"Ġcultivation":23467,"ĠAless":23468,"Ġrenamed":23469,"ĠMahmoud":23470,"bright":23471,"Ġvisibly":23472,"Ġnas":23473,"erred":23474,"ĠCarn":23475,"Ġtriggers":23476,"Ġpunishing":23477,"Ġluc":23478,"ĠBett":23479,"Ġbeam":23480,"ĠCheng":23481,"aina":23482,"Ġdetermines":23483,"ĠGerry":23484,"Ġshocks":23485,"Ġstainless":23486,"Ġdefects":23487,"ĠCinem":23488,"Ġtorrent":23489,"Ġresurgence":23490,"Ġcoral":23491,"Ġblitz":23492,"ĠGel":23493,"Ġstemmed":23494,"gur":23495,"Ġlymph":23496,"zzo":23497,"Ġspearheaded":23498,"Ġlicences":23499,"';":23500,"Ġarbitrary":23501,"ĠUzbek":23502,"Ġthief":23503,"reaching":23504,"Ġcand":23505,"ĠEA":23506,"ĠParaly":23507,"ĠEmerson":23508,"ĠSergey":23509,"ĠScher":23510,"ĠWr":23511,"rowing":23512,"Ġ3000":23513,"Ġmighty":23514,"elight":23515,"mAh":23516,"Ġcelebr":23517,"ĠConclusion":23518,"ĠCathy":23519,"Ġpolished":23520,"uddled":23521,"ewski":23522,"Ġfucking":23523,"Ġinterfering":23524,"Ġlandscapes":23525,"Ġfearful":23526,"ĠDetention":23527,"%).":23528,"ĠTT":23529,"Ġbleak":23530,"Ġindebted":23531,"Ġcheat":23532,"Ġconsolation":23533,"ĠPace":23534,"raine":23535,"Ġhonorary":23536,"420":23537,"Ġtechnician":23538,"ĠComprehensive":23539,"Ġfences":23540,"Ġwearable":23541,"ĠMarilyn":23542,"stru":23543,"Ġdrained":23544,"ĠGibraltar":23545,"lag":23546,"Ġdisorderly":23547,"Ġproclaimed":23548,"Ġcapacities":23549,"Ġretains":23550,"ĠVid":23551,"oshi":23552,"ĠEid":23553,"Ġanalytical":23554,"ominium":23555,"ĠExaminer":23556,"ĠNAACP":23557,"ocol":23558,"rev":23559,"ĠRim":23560,"ĠWoody":23561,"ĠMcKenna":23562,"ĠLennon":23563,"ĠEmploy":23564,"Fort":23565,"psy":23566,"Ġsphere":23567,"oday":23568,"ĠChick":23569,"ĠCompared":23570,"ĠIranians":23571,"ĠAccountability":23572,"itchie":23573,"ĠDickinson":23574,"Ġflock":23575,"Ġeclips":23576,"Ġnat":23577,"anke":23578,"ĠNeighborhood":23579,"Ġ141":23580,"Ġscarce":23581,"Ġcreations":23582,"lists":23583,"Ġuseless":23584,"Ġcriticisms":23585,"Ġruler":23586,"ĠHick":23587,"arya":23588,"worker":23589,"alam":23590,"Angelo":23591,"otle":23592,"Ġnewsletters":23593,"Ġerected":23594,"Ġzip":23595,"ĠBirthday":23596,"Ġdogged":23597,"Ġdanced":23598,"Ġconfession":23599,"Ġvomiting":23600,"ickers":23601,"Ġfox":23602,"Ġdeduct":23603,"Ġstresses":23604,"poll":23605,"ĠRadar":23606,"Ġengagements":23607,"Ġexaminer":23608,"Ġopportun":23609,"Ġlongevity":23610,"Ġbanana":23611,"carbon":23612,"uo":23613,"ĠLT":23614,"Ġsynagogue":23615,"Ġblackmail":23616,"INK":23617,"Ġfle":23618,"ĠGutierrez":23619,"Ġracket":23620,"Ġevenings":23621,"Ġdietary":23622,"ĠKok":23623,"Ġfaulty":23624,"Ġabandoning":23625,"ĠFlow":23626,"quest":23627,"estead":23628,"Ġbir":23629,"Ġsuicidal":23630,"ĠGift":23631,"ĠMissing":23632,"ĠMazda":23633,"ĠRib":23634,"ĠJourney":23635,"Ġconcede":23636,"Ġbrushed":23637,"Tw":23638,"andowski":23639,"ĠYun":23640,"Bride":23641,"zai":23642,"awatts":23643,"Ġcha":23644,"Ġspans":23645,"SF":23646,"Ġshells":23647,"planned":23648,"ĠGeographic":23649,"ĠVent":23650,"Ġfav":23651,"Ġinterrogation":23652,"Ġvaries":23653,"ĠPlat":23654,"operative":23655,"avid":23656,"Ġgreatness":23657,"ĠStrait":23658,"ĠSelling":23659,"Ġlawful":23660,"Ġlyn":23661,"Ġfunnel":23662,"Ġpundits":23663,"ties":23664,"Ġpneumonia":23665,"Ġcommencement":23666,"Ġbrisk":23667,"fires":23668,"ĠHTML":23669,"ĠSevent":23670,"Ġhistor":23671,"Ġ147":23672,"olls":23673,"Ġpian":23674,"Little":23675,"Ġcommercials":23676,"Ġdeteriorated":23677,"Ġbasin":23678,"Ġprohibition":23679,"Ġrestrictive":23680,"Ġtom":23681,"ĠPulse":23682,"vale":23683,"Ġmim":23684,"ĠLyons":23685,"ĠTrinidad":23686,"data":23687,"195":23688,"ĠPain":23689,"vor":23690,"ĠDirectorate":23691,"Wow":23692,"essential":23693,"Ġemerges":23694,"ĠDoors":23695,"Ġunde":23696,"Ġarchives":23697,"ĠIX":23698,"ĠAman":23699,"oric":23700,"ĠOper":23701,"nothing":23702,"Ġ142":23703,"igr":23704,"rust":23705,"ĠBYU":23706,"ĠBom":23707,"Ġrift":23708,"ĠAbs":23709,"ĠJenn":23710,"Ġrookies":23711,"hoe":23712,"Ġunderage":23713,"eden":23714,"Ġroasted":23715,"Ġenrol":23716,"Ġerased":23717,"Ġfreeway":23718,"Sil":23719,"Ġplanner":23720,"Ġconfess":23721,"ĠDual":23722,"ĠHeadquarters":23723,"bottom":23724,"Ġstatistic":23725,"ĠPush":23726,"Ġanim":23727,"ITT":23728,"Ġexecutions":23729,"Hub":23730,"ĠStick":23731,"Ġobscure":23732,"oven":23733,"Ġcoats":23734,"unc":23735,"Morning":23736,"Ġnit":23737,"mie":23738,"Ġcurves":23739,"gew":23740,"ĠAnniversary":23741,"members":23742,"ĠAbsolutely":23743,"Ġapt":23744,"otional":23745,"ĠGin":23746,"izo":23747,"Ġpretending":23748,"arak":23749,"Ġorganise":23750,"Ġroyalties":23751,"ĠCamden":23752,"Ġsausage":23753,"Inst":23754,"Ġchalk":23755,"ĠSurf":23756,"ĠSunrise":23757,"Ġmoder":23758,"aido":23759,"loving":23760,"lus":23761,"Ġoblig":23762,"Ġmotions":23763,"Ġclarification":23764,"ĠOM":23765,"Ġbishop":23766,"Ġexhibitions":23767,"ĠRifle":23768,"ĠPhot":23769,"ĠHM":23770,"ATIONAL":23771,"Ġwid":23772,"Ġreside":23773,"ĠPV":23774,"OOK":23775,"ĠTue":23776,"Ġ1200":23777,"Ġ1957":23778,"Ġespionage":23779,"ĠAPPLIC":23780,"Ġblasts":23781,"fter":23782,"Ġimmensely":23783,"ĠLots":23784,"Ġinflammatory":23785,"anging":23786,"Ġtumultuous":23787,"identified":23788,"Ġstead":23789,"ĠAch":23790,"Ãī":23791,"Ġbub":23792,"hler":23793,"olution":23794,"Ġshun":23795,"Ġnull":23796,"Ġunused":23797,"ĠObs":23798,"Ġinsol":23799,"ĠAttack":23800,"ertain":23801,"Ġdefiant":23802,"Through":23803,"ĠArmour":23804,"Ġsimulation":23805,"UCK":23806,"Ġinfluenza":23807,"Ġonset":23808,"Ġbored":23809,"Ġsouls":23810,"Ġreferees":23811,"Ġcollaborations":23812,"ĠLer":23813,"Ġcreepy":23814,"Ġanaly":23815,"ĠEffect":23816,"orting":23817,"Card":23818,"Ġdice":23819,"Ġharvesting":23820,"235":23821,"sty":23822,"ĠMcCartney":23823,"Ġsalute":23824,"UMP":23825,"Ġherb":23826,"ĠAbuse":23827,"ĠRamadan":23828,"Ġsuck":23829,"trained":23830,"ĠPhysical":23831,"iren":23832,"anches":23833,"erie":23834,"Ġhangs":23835,"Ġcataly":23836,"Ġintuitive":23837,"assi":23838,"Ġtechn":23839,"Ġjugg":23840,"Ġgameplay":23841,"Ġapolog":23842,"Ġfifteen":23843,"Ġgalleries":23844,"Ġoutlines":23845,"patient":23846,"ĠPotential":23847,"Ġethnicity":23848,"Ġharbour":23849,"Ġoverthrow":23850,"ĠLung":23851,"Ġwarehouses":23852,"ĠMonitoring":23853,"Ġmentors":23854,"Ġsized":23855,"Ġenvisioned":23856,"Ġgin":23857,"DT":23858,"Ġpropel":23859,"ĠKul":23860,"ference":23861,"estic":23862,"ĠLego":23863,"Ġdinners":23864,"ĠMoe":23865,"designed":23866,"ĠSusp":23867,"ĠBrick":23868,"qua":23869,"IDS":23870,"ĠBam":23871,"athe":23872,"Ġslices":23873,"Ġbottled":23874,"thy":23875,"producing":23876,"ĠTerror":23877,"professional":23878,"ĠKis":23879,"erto":23880,"ĠVehicles":23881,"Ġbeforehand":23882,"Ġdetrimental":23883,"weights":23884,"Ġallowances":23885,"Williams":23886,"ĠSyrians":23887,"ĠSto":23888,"Ġcozy":23889,"reditation":23890,"ensen":23891,"ĠSard":23892,"Ġroy":23893,"ooting":23894,"ĠReserv":23895,"ominated":23896,"emate":23897,"ĠTot":23898,"ĠCarnegie":23899,"ĠThib":23900,"ĠMarshal":23901,"Ġ152":23902,"Ġmayors":23903,"inery":23904,"ĠFiona":23905,"ĠCadillac":23906,"ivated":23907,"Ġeagerly":23908,"ĠOffensive":23909,"Ġastronaut":23910,"ĠVital":23911,"Ġcane":23912,"Ġquitting":23913,"ĠLone":23914,"Ġcensorship":23915,"ĠWelch":23916,"ĠUd":23917,"Ġmarquee":23918,"ĠDip":23919,"Ġwhereby":23920,"Ġtiger":23921,"gem":23922,"Ġconserv":23923,"Ġpresumed":23924,"ĠEntry":23925,"ffer":23926,"ĠProceed":23927,"Ġbrawl":23928,"ĠJaime":23929,"Ġecho":23930,"Ġadvancements":23931,"Ġtransitional":23932,"erick":23933,"Ġbully":23934,"anan":23935,"Ġreinvent":23936,"ĠLetters":23937,"Ġbricks":23938,"ĠSmy":23939,"Ġtowering":23940,"gging":23941,"299":23942,"orian":23943,"dimensional":23944,"ĠForty":23945,"ĠSinn":23946,"ushi":23947,"ĠSurveillance":23948,"enabled":23949,"ĠMous":23950,"ĠVive":23951,"Marcus":23952,"Ġvom":23953,"Ġcreek":23954,"Ġlime":23955,"Ġseismic":23956,"ĠFork":23957,"Ġembroiled":23958,"marks":23959,"Ġherald":23960,"ĠSonia":23961,"â̦\"":23962,"wired":23963,"Ġobliged":23964,"ĠProjects":23965,"lde":23966,"ĠRiders":23967,"Ġovercoming":23968,"Mail":23969,"ĠLawn":23970,"ĠHawk":23971,"figure":23972,"ĠWritten":23973,"Ġens":23974,"Ġspacious":23975,"target":23976,"ĠRecep":23977,"ĠSAM":23978,"Ġentertained":23979,"Ġignited":23980,"ĠCENT":23981,"ogenic":23982,"Ġunatt":23983,"Ġexceeds":23984,"Ġ--------------------------------":23985,"Ġpillars":23986,"ĠBorders":23987,"ickey":23988,"Ġextinction":23989,"Ġviability":23990,"Ġtumors":23991,"ĠWilkinson":23992,"ĠKEY":23993,"Ġbins":23994,"ĠReported":23995,"Sm":23996,"ĠExclusive":23997,"ĠChilean":23998,"info":23999,"Ġwilderness":24000,"did":24001,"absolutely":24002,"pillar":24003,"Ġelites":24004,"ĠPreview":24005,"ixie":24006,"Mont":24007,"ribut":24008,"dream":24009,"Ġplanners":24010,"ĠSomerset":24011,"Ġenvis":24012,"ĠStall":24013,"Ġelevate":24014,"ographies":24015,"rama":24016,"Ha":24017,"Ġamidst":24018,"oho":24019,"Ġrejects":24020,"Jim":24021,"Ġmarginally":24022,"Ġusher":24023,"arez":24024,"ĠHawth":24025,"Ġsprink":24026,"ĠOffer":24027,"Ġanchored":24028,"ucking":24029,"ĠGarn":24030,"ĠConserv":24031,"Ġsocietal":24032,"Ġbrowsing":24033,"Ġbidder":24034,"burgh":24035,"ĠRunner":24036,"Ġtrendy":24037,"verts":24038,"imposed":24039,"ĠPatton":24040,"lements":24041,"Ġspicy":24042,"Ġswe":24043,"ĠStrike":24044,"Ġclam":24045,"ĠYankee":24046,"ĠKT":24047,"ĠGreenwood":24048,"ĠWays":24049,"Ġ2050":24050,"Ġattach":24051,"ĠShim":24052,"Ġmeltdown":24053,"Ġassemble":24054,"ĠUPDATE":24055,"Ġscout":24056,"Brown":24057,"ĠKobe":24058,"Ġpostpone":24059,"liness":24060,"allo":24061,"rief":24062,"ĠGerm":24063,"ĠFD":24064,"ĠReggie":24065,"ĠUnivers":24066,"ĠShepard":24067,"Ġcancell":24068,"ĠRomeo":24069,"ĠWarrior":24070,"ench":24071,"ifier":24072,"Ġprivileges":24073,"Ġsenses":24074,"Ġimpoverished":24075,"ĠPostal":24076,"encer":24077,"ĠConrad":24078,"Ġprinter":24079,"Ġinflicted":24080,"ĠGamble":24081,"ĠHeroes":24082,"132":24083,"Ġrevisions":24084,"Ġunsuccessfully":24085,"ĠHeisman":24086,"Ġstamped":24087,"inding":24088,"ĠLuna":24089,"Ġreinvest":24090,"ducers":24091,"ĠPassword":24092,"Leod":24093,"Ġcompounded":24094,"',\"":24095,"ogging":24096,"Ġprobing":24097,"ĠPBS":24098,"ĠMU":24099,"ĠWhenever":24100,"Ġsped":24101,"ĠCompetitive":24102,"isans":24103,"opa":24104,"Ġcleric":24105,"Ġvivid":24106,"à¸":24107,"126":24108,"Ġinconvenience":24109,"udi":24110,"Ġimmersive":24111,"Ġdiversion":24112,"Ġlogs":24113,"Ġspying":24114,"inct":24115,"Ġlitres":24116,"Ġmetallic":24117,"identally":24118,"FX":24119,"Ġloudly":24120,"Ġnursery":24121,"Ġcollectors":24122,"ĠKart":24123,"Ġescalate":24124,"Ġringing":24125,"Ġprocedural":24126,"Ġdisrupting":24127,"ĠEthiopian":24128,"ĠCFL":24129,"Ġillustrates":24130,"Ġperks":24131,"official":24132,"325":24133,"Ġmillennial":24134,"Ġbreadth":24135,"Ġmelted":24136,"Ġ850":24137,"ĠBake":24138,"donald":24139,"ĠGrac":24140,"Ġseeded":24141,"ĠDiscount":24142,"idates":24143,"Ġdrift":24144,"Ġcaptive":24145,"Ġseriousness":24146,"Ġrepercussions":24147,"Ġdisciplines":24148,"Ġthesis":24149,"Ġsleeve":24150,"ses":24151,"Monday":24152,"Ġthwart":24153,"ĠLic":24154,"Ġquadru":24155,"ĠPresbyterian":24156,"Ġreactors":24157,"ĠSuzanne":24158,"ewater":24159,"Ġlam":24160,"Ġbreastfeeding":24161,"Ġrats":24162,"ĠArtists":24163,"Ġdomestically":24164,"Ġdecom":24165,"ĠArms":24166,"basketball":24167,"Ġscrub":24168,"ĠTeddy":24169,"beh":24170,"ĠBetsy":24171,"ĠNursing":24172,"Ġdescriptions":24173,"127":24174,"gil":24175,"itional":24176,"Ġchampioned":24177,"ĠCalling":24178,"Ġrealization":24179,"ĠBuddy":24180,"hou":24181,"ĠDire":24182,"ĠHuff":24183,"Ġlipstick":24184,"Ray":24185,"Ġflare":24186,"belt":24187,"Ġbrightest":24188,"Ġmalfunction":24189,"ĠManor":24190,"Ġsaturated":24191,"rays":24192,"ĠDW":24193,"ixed":24194,"ĠSlovenia":24195,"seen":24196,"ĠCause":24197,"arios":24198,"ASE":24199,"Ġrend":24200,"ĠTBA":24201,"Ġlecturer":24202,"attering":24203,"Ġaffluent":24204,"CEO":24205,"Ġbreathtaking":24206,"ĠGiles":24207,"irth":24208,"ĠPhilips":24209,"Ġposture":24210,"ĠTSA":24211,"heit":24212,"Ġmenace":24213,"ricks":24214,"ĠAden":24215,"ĠReich":24216,"iggle":24217,"ĠShutterstock":24218,"Ġcourageous":24219,"edia":24220,"Staff":24221,"Ġdivert":24222,"ĠCir":24223,"Ġguessing":24224,"apers":24225,"ĠBritons":24226,"lé":24227,"Ġconvened":24228,"ĠSerbian":24229,"Ġricher":24230,"Ġcock":24231,"Ġdeposited":24232,"company":24233,"Ġdelic":24234,"sensitive":24235,"tank":24236,"ĠPatty":24237,"mia":24238,"onomous":24239,"cn":24240,"Ġclamp":24241,"ĠAcademic":24242,"Ġprosecuting":24243,"ĠTransparency":24244,"Ġdeflation":24245,"Ġdashboard":24246,"ĠDress":24247,"Ġlin":24248,"mu":24249,"ĠGoodell":24250,"Ġlav":24251,"ĠTwelve":24252,"Ġflavour":24253,"Ġfiercely":24254,"Ġbloom":24255,"ĠHaf":24256,"ĠGrad":24257,"LET":24258,"ĠSeeing":24259,"oxide":24260,"Ġmenus":24261,"char":24262,"adoes":24263,"combe":24264,"Street":24265,"ĠRidley":24266,"Ġdepicts":24267,"ĠPred":24268,"ÑĢ":24269,"British":24270,"Ġbumps":24271,"Ġlamp":24272,"ĠDesmond":24273,"ĠPB":24274,"Ġfrag":24275,"tin":24276,"ĠSharing":24277,"Ġdesperation":24278,"Ġcommuter":24279,"igrants":24280,"ĠShapiro":24281,"Ġkinda":24282,"Ġimpartial":24283,"ĠJewel":24284,"Ġcongratulations":24285,"Ġcompost":24286,"Ġadmiration":24287,"Ġpaycheck":24288,"ĠAnonymous":24289,"enger":24290,"Mer":24291,"ĠGospel":24292,"ĠEth":24293,"ĠMH":24294,"Ġfem":24295,"ĠTrial":24296,"Ġdepths":24297,"ĠApplied":24298,"Ġgrit":24299,"Ġerase":24300,"sid":24301,"comm":24302,"}":24303,"Ġretreated":24304,"Ġanalysed":24305,"ĠRegular":24306,"ĠPesh":24307,"ICAL":24308,"pei":24309,"ĠReilly":24310,"ĠTrib":24311,"Ġbooths":24312,"Ġdrank":24313,"Ġcoma":24314,"Ġharvested":24315,"ĠCHAR":24316,"Ġbutterfly":24317,"Ġsailed":24318,"ĠDrink":24319,"eping":24320,"ATCH":24321,"ĠLegends":24322,"Ġinsured":24323,"Ġwholes":24324,"ĠBis":24325,"ĠShea":24326,"ighter":24327,"Ġsnakes":24328,"ĠGunn":24329,"ĠPoss":24330,"Ġdispar":24331,"Ġbombshell":24332,"Ġscanning":24333,"340":24334,"choice":24335,"cool":24336,"\"âĢĶ":24337,"ĠTheo":24338,"rine":24339,"ĠJacques":24340,"Ġdisadvantaged":24341,"Ġparamount":24342,"igate":24343,"stat":24344,"anski":24345,"Ġoutsourcing":24346,"Ġpopulous":24347,"Ġbinge":24348,"ĠOrganic":24349,"urban":24350,"Ġyogurt":24351,"Ġretweet":24352,"osen":24353,"cially":24354,"215":24355,"Ġeditions":24356,"Ġburgeoning":24357,"efully":24358,"ĠThousand":24359,"Ġreplacements":24360,"ĠAmazing":24361,"rator":24362,"icy":24363,"Ġintensify":24364,"Sen":24365,"ĠQuincy":24366,"powers":24367,"ĠAur":24368,"ĠZion":24369,"stal":24370,"Ġpillar":24371,"ĠErit":24372,"ĠPerform":24373,"aston":24374,"Eric":24375,"Ġunh":24376,"IFF":24377,"950":24378,"ĠEngineer":24379,"ĠLands":24380,"Ġdubious":24381,"fy":24382,"ĠWI":24383,"ĠSv":24384,"ĠHendricks":24385,"ĠKod":24386,"Ġoutlining":24387,"ĠCorrespond":24388,"amus":24389,"worst":24390,"arter":24391,"coni":24392,"Ġhierarchy":24393,"ĠTHAT":24394,"Ġexce":24395,"Ġrailways":24396,"Ġmasked":24397,"lene":24398,"Ġoutset":24399,"Ġavalanche":24400,"Ġnicknamed":24401,"Ġ702":24402,"Lee":24403,"Ġ139":24404,"ĠSixth":24405,"365":24406,"nda":24407,"Ġaccountant":24408,"Ġobese":24409,"Ġgrape":24410,"Ġimpunity":24411,"ĠYorkers":24412,"Ġguardian":24413,"icity":24414,"Ġcentrist":24415,"Ġwaterways":24416,"ursed":24417,"Ġhopeless":24418,"header":24419,"Ġtack":24420,"Ġric":24421,"umn":24422,"Ġvalve":24423,"Ġtread":24424,"ĠCST":24425,"Ġhepatitis":24426,"ctor":24427,"ĠRED":24428,"Ġsolitary":24429,"NW":24430,"Ġceremonial":24431,"Ġfoe":24432,"Ġling":24433,"Jason":24434,"ĠLisbon":24435,"Ġ1955":24436,"ĠHeller":24437,"Ġkin":24438,"essen":24439,"Ġturbines":24440,"shi":24441,"Ġlodge":24442,"Ġveterinary":24443,"ĠBoll":24444,"ĠConfederation":24445,"ĠJournalists":24446,"Ġtug":24447,"ĠStarr":24448,"Ġpiles":24449,"Way":24450,"adel":24451,"orean":24452,"Ġoft":24453,"Ġshortcomings":24454,"ĠSheila":24455,"Ġbackbone":24456,"III":24457,"ĠDarwin":24458,"ĠTunis":24459,"Ġsuspicions":24460,"Ġdisagreements":24461,"Ġ247":24462,"illery":24463,"'\"":24464,"Ġsegregation":24465,"ohl":24466,"Ġinstincts":24467,"ĠPoo":24468,"nih":24469,"parency":24470,"uddy":24471,"esting":24472,"asses":24473,"ĠIntroduction":24474,"ĠSirius":24475,"Local":24476,"orous":24477,"Ġrehearsal":24478,"Ġdemol":24479,"Ġtraffickers":24480,"Ġupsetting":24481,"Ġheir":24482,"death":24483,"ĠMoments":24484,"Los":24485,"Ġatmospheric":24486,"aints":24487,"ĠDianne":24488,"Ġlikewise":24489,"ĠMing":24490,"auga":24491,"Ġfirsthand":24492,"Ġnarratives":24493,"ĠAstron":24494,"ĠExtreme":24495,"Ġhorns":24496,"ĠSana":24497,"Ġrecapt":24498,"ĠMist":24499,"ĠRandolph":24500,"connect":24501,"Ġindecent":24502,"Ġforty":24503,"Ġjihadists":24504,"azes":24505,"Ġdread":24506,"Ġgrapes":24507,"Ġremoves":24508,"Ġscreamed":24509,"ĠCrus":24510,"ikers":24511,"Ġsnapshot":24512,"ĠCalls":24513,"Cons":24514,"Ġlettuce":24515,"ĠPig":24516,"urable":24517,"jured":24518,"ILY":24519,"ĠJessie":24520,".).":24521,"Pay":24522,"Tra":24523,"----------------":24524,"ĠUnits":24525,"ĠPlayboy":24526,"Ġarthritis":24527,"Ġafforded":24528,"insk":24529,"ĠFake":24530,"ĠLies":24531,"ĠBaltic":24532,"oyal":24533,"ĠVest":24534,"Ġrusher":24535,"Ġincorporates":24536,"ĠMM":24537,"ĠDru":24538,"ĠWare":24539,"ĠSammy":24540,"ĠGob":24541,"ĠRuk":24542,"Ġ146":24543,"ĠCrowd":24544,"Ġduel":24545,"irts":24546,"Ġsourcing":24547,"hp":24548,"ĠJava":24549,"bred":24550,"ĠRefer":24551,"Ġuninsured":24552,"Ġslope":24553,"256":24554,"Ġregulating":24555,"Ġfundra":24556,"Ġinserted":24557,"ĠNickel":24558,"ĠConsumption":24559,"ĠRomo":24560,"Atlantic":24561,"Ġenclave":24562,"Ġpegged":24563,"Ġdirects":24564,"mbudsman":24565,"ĠDES":24566,"Ob":24567,"Ġlimbs":24568,"Ġbury":24569,"ILA":24570,"Ġstew":24571,"Ġbreeze":24572,"Ġabrupt":24573,"ĠGott":24574,"ĠClaude":24575,"Ġgenetically":24576,"Ġrigid":24577,"ĠDudley":24578,"ĠNer":24579,"registered":24580,"Ġentrenched":24581,"Ġextortion":24582,"ĠNurs":24583,"Ġcontingency":24584,"etter":24585,"Ġrejo":24586,"Ġprotagonist":24587,"Ġcounselling":24588,"ĠVit":24589,"aware":24590,"ĠMonsanto":24591,"GG":24592,"Ġincarcerated":24593,"Ġabduction":24594,"Ġreferencing":24595,"Germany":24596,"uates":24597,"reck":24598,"Ġtram":24599,"Ġchron":24600,"Ġmish":24601,"ĠVes":24602,"ĠTire":24603,"Ġvandal":24604,"ĠCrazy":24605,"ĠLifetime":24606,"ĠSpectrum":24607,"celer":24608,"Ġmotto":24609,"hang":24610,"Ġblade":24611,"gel":24612,"Ġbiography":24613,"Ġallegiance":24614,"hod":24615,"hap":24616,"ptic":24617,"acle":24618,"ĠBlade":24619,"ĠBoh":24620,"Ġ149":24621,"Ġchang":24622,"Ġcanned":24623,"Ġfacilitated":24624,"actor":24625,"iologist":24626,"Ġrebuilt":24627,"Ġawake":24628,"Ġmayoral":24629,"ĠEuros":24630,"Ġdangerously":24631,"MK":24632,"Ġreplica":24633,"Ġcoinc":24634,"blog":24635,"ĠEra":24636,"Ġrelinqu":24637,"quite":24638,"ondon":24639,"rosso":24640,"tun":24641,"Ġtouchscreen":24642,"Ġpops":24643,"ousing":24644,"efficient":24645,"Ġ148":24646,"Ġconced":24647,"although":24648,"Ġ1956":24649,"Ġmortar":24650,"ĠCave":24651,"ĠJung":24652,"urer":24653,"Ġillusion":24654,"ĠBerman":24655,"intend":24656,"Ġcoping":24657,"Dem":24658,"tion":24659,"estation":24660,"ĠSounds":24661,"Ġnavigating":24662,"Ġsperm":24663,"Ġreligions":24664,"Ġfol":24665,"Ġheroic":24666,"FD":24667,"Ġhesitant":24668,"asure":24669,"Ġredeem":24670,"Adam":24671,"Ġfireplace":24672,"vertis":24673,"ĠSung":24674,"290":24675,"iland":24676,"ĠUpdates":24677,"OTUS":24678,"ĠPTSD":24679,"Ġhelmets":24680,"\"?":24681,"Ġslashing":24682,"Ġscouts":24683,"Ġspelling":24684,"ĠInitial":24685,"draw":24686,"Ġchallengers":24687,"Ġsupremacists":24688,"Ġpilgrims":24689,"Ġasc":24690,"ĠFill":24691,"ĠPau":24692,"Ġjewel":24693,"ĠMalt":24694,"icip":24695,"Ġinhabitants":24696,"Ġmetre":24697,"ahar":24698,"Comp":24699,"atches":24700,"inv":24701,"Ġcyclist":24702,"ĠQC":24703,"Ġmanually":24704,"ĠAnchorage":24705,"Ġdiscarded":24706,"Ġconsolid":24707,"Ġnavig":24708,"ĠAnimals":24709,"ĠPole":24710,"esson":24711,"Ġ1954":24712,"Ġsorted":24713,"Ġmadness":24714,"ĠBrigade":24715,"ĠGenesis":24716,"Ġdismissing":24717,"ĠPanasonic":24718,"Ġdizz":24719,"ĠEducational":24720,"ĠKO":24721,"ĠPill":24722,"ĠGIF":24723,"Ġbol":24724,"Ġwards":24725,"Ġcontroversies":24726,"Chinese":24727,"Ġantics":24728,"Ġreliant":24729,"ĠMoff":24730,"Ġethanol":24731,"Ġtorch":24732,"rights":24733,"ĠHabit":24734,"arton":24735,"rera":24736,"ĠSasha":24737,"abella":24738,"Ġproliferation":24739,"Ġsincerely":24740,"communication":24741,"ĠNay":24742,"ĠChattanooga":24743,"ounces":24744,"ĠNXT":24745,"ĠEmir":24746,"Ġmanipulated":24747,"Ġharassing":24748,"wat":24749,"Ġbouts":24750,"Book":24751,"Ġhovering":24752,"ĠScan":24753,"ship":24754,"ĠAngola":24755,"ĠLC":24756,"Ġruins":24757,"Ġsexist":24758,"zar":24759,"Ġpledging":24760,"ober":24761,"Ġembold":24762,"Ġobjection":24763,"Ġboasting":24764,"MIN":24765,"Ġherbs":24766,"Ġgears":24767,"ĠIc":24768,"stre":24769,"him":24770,"Ġhomicides":24771,"cki":24772,"castle":24773,"counter":24774,"ĠCAS":24775,"ĠReasons":24776,"ĠDeclaration":24777,"Ġsimplify":24778,"Ġfared":24779,"Ġescort":24780,"Ġkidn":24781,"ĠHamm":24782,"Ġnailed":24783,"Ġaccommodations":24784,"Ġmodifications":24785,"rible":24786,"Ġwool":24787,"EDIT":24788,"2010":24789,"Ġauthentication":24790,"Ġgoat":24791,"hom":24792,"Ġfederally":24793,"ĠRath":24794,"Ġspiked":24795,"Ġmisrepresent":24796,"Ġavenue":24797,"Ġbroadcasts":24798,"ĠEstonia":24799,"ennes":24800,"ĠMare":24801,"ption":24802,"ĠKag":24803,"Ġcircumstance":24804,"orrow":24805,"isons":24806,"ĠCollabor":24807,"Ġstroll":24808,"ĠCPS":24809,"soft":24810,"iral":24811,"apo":24812,"usky":24813,"poke":24814,"Ġwoo":24815,"ĠElena":24816,"ĠLastly":24817,"Ġlinemen":24818,"Canadian":24819,"ĠAnyway":24820,"Ġsubstantive":24821,"ĠCurt":24822,"Ġard":24823,"ĠYosh":24824,"ĠBuchanan":24825,"Ġrevolving":24826,"Ġspecials":24827,"Ġshrine":24828,"Ġlumber":24829,"Ġorchestrated":24830,"kie":24831,"azy":24832,"Ġexpiration":24833,"ĠDaryl":24834,"ĠPatri":24835,"better":24836,"2020":24837,"ĠFav":24838,"ĠOP":24839,"OTT":24840,"Ġflush":24841,"ĠSikh":24842,"Ġecosystems":24843,"ĠBET":24844,"eared":24845,"audio":24846,"ĠFahrenheit":24847,"police":24848,"Ġincarceration":24849,"Ġerupt":24850,"ĠDamien":24851,"ĠHague":24852,"ulz":24853,"ĠAgents":24854,"ĠBanner":24855,"Ġconductor":24856,"ĠAjax":24857,"arson":24858,"Ġrests":24859,"Ġeurozone":24860,"Ġfelon":24861,"Ġcurator":24862,"morning":24863,"Ġevidenced":24864,"ĠNeh":24865,"Ġmattress":24866,"Ġtast":24867,"Ġfueling":24868,"ĠOccup":24869,"Ġbake":24870,"ĠZac":24871,"meaning":24872,"Ill":24873,"ĠHau":24874,"ĠLaden":24875,"Ġbald":24876,"Mary":24877,"oky":24878,"atri":24879,"Ġtracker":24880,"OTA":24881,"catching":24882,"ĠUnderground":24883,"ĠHuffPost":24884,"ĠAtkins":24885,"oglu":24886,"Ġauthorised":24887,"Ġroutines":24888,"ĠHof":24889,"veland":24890,"Ġlangu":24891,"Ġprot":24892,"ĠHyd":24893,"integ":24894,"Ġbravery":24895,"Ġviolin":24896,"Ġdelightful":24897,"Ġticks":24898,"iton":24899,"Ġreap":24900,"Ġoversized":24901,"ĠPitch":24902,"Ġprized":24903,"Ġfusion":24904,"fact":24905,"acting":24906,"Ġfullback":24907,"Ġpolite":24908,"Ġswear":24909,"Ġconfiscated":24910,"ĠStud":24911,"Ġfielded":24912,"rito":24913,"covered":24914,"financial":24915,"bill":24916,"HK":24917,"OTOS":24918,"loaded":24919,"Ġmarble":24920,"ĠDiplom":24921,".âĢĶ":24922,"Ġeats":24923,"Ġbackfield":24924,"Ġtimeframe":24925,"Ġvegetarian":24926,"Ġswaps":24927,"ĠMines":24928,"igor":24929,"ĠLenn":24930,"ĠDP":24931,"ordered":24932,"ĠShark":24933,"Ġquant":24934,"erence":24935,"Ġashes":24936,"ĠBuckley":24937,"ophobia":24938,"Ġwarranted":24939,"Rose":24940,"Ġunreasonable":24941,"ĠJav":24942,"Ġpalette":24943,"Ġjoints":24944,"Ġadvent":24945,"Ġnoteworthy":24946,"ĠNicol":24947,"ĠChristensen":24948,"Ġplummeted":24949,"ayers":24950,"Ġdefends":24951,"Ġcontended":24952,"ĠCongratulations":24953,"kish":24954,"ĠHannity":24955,"Ġgroundwater":24956,"ĠKramer":24957,"Ġerect":24958,"Ġappet":24959,"ĠKardash":24960,"Ġexacerbated":24961,"Ġexplanations":24962,"vious":24963,"eport":24964,"---":24965,"icism":24966,"ĠNatasha":24967,"ĠGeoffrey":24968,"estro":24969,"Article":24970,"Ġincidence":24971,"Ġprovoked":24972,"elf":24973,"Ġinsistence":24974,"ĠOUR":24975,"Ġfertilizer":24976,"Ġstickers":24977,"ĠGators":24978,"ĠLanding":24979,"ĠDON":24980,"sta":24981,"ĠRobbins":24982,"Ġpixels":24983,"ĠHoy":24984,"imated":24985,"ĠÃī":24986,"â":24987,"Ġsimpl":24988,"Other":24989,"245":24990,"Ġforcibly":24991,"'.\"":24992,"Ġsmashing":24993,"Ġmosquitoes":24994,"Ġpaints":24995,"Ġdebating":24996,"enty":24997,"ĠIB":24998,"leaf":24999,"ĠDah":25000,"Ġreferral":25001,"pired":25002,"Ġbrunch":25003,"gie":25004,"Ġvict":25005,"ribute":25006,"Ġbloggers":25007,"Ġgum":25008,"ĠAdmiral":25009,"France":25010,"ĠPK":25011,"ĠSaturn":25012,"Ġinflated":25013,"WAR":25014,"Ġscenic":25015,"usal":25016,"their":25017,"Ġcontends":25018,"Ġpathways":25019,"inis":25020,"Ġawarding":25021,"Ġmisled":25022,"Ġeternal":25023,"Ġexaminations":25024,"Ġpoker":25025,"Ġsafest":25026,"Ġchildcare":25027,"aday":25028,"Ġpreceding":25029,"ĠCollective":25030,"Ġrespectable":25031,"ographical":25032,"Ġoak":25033,"00000":25034,"ĠCorridor":25035,"oran":25036,"133":25037,"Ġmushrooms":25038,"gaard":25039,"ĠOmega":25040,"ĠNaturally":25041,"anim":25042,"Ġcaptains":25043,"Ġtang":25044,"Ġlobbyists":25045,"ĠSug":25046,"Ġsucc":25047,"249":25048,"ENG":25049,"134":25050,"Ġsolic":25051,"ĠAdded":25052,"ĠSuicide":25053,"ĠFULL":25054,"ĠStrauss":25055,"ĠDiesel":25056,"Ġtempting":25057,"acist":25058,"ĠDelivery":25059,"Ġquiz":25060,"ĠPARK":25061,"Ġcollisions":25062,"Ġrestrained":25063,"purpose":25064,"ĠChanges":25065,"Ġabsentee":25066,"Ġprobes":25067,"hib":25068,"Ġcul":25069,"Ġpetty":25070,"Ġnecess":25071,"Ġcues":25072,"OME":25073,"Ġinadvertently":25074,"urity":25075,"ĠStuff":25076,"FG":25077,"Ġwrestlers":25078,"Ġpaste":25079,"ĠRoku":25080,"Ġcardboard":25081,"aires":25082,"Ġvariables":25083,"ĠSaras":25084,"ĠFif":25085,"Ġinvests":25086,"ĠDiscover":25087,"ĠFix":25088,"Thomas":25089,"ĠLunch":25090,"lv":25091,"camera":25092,"Step":25093,"Ġresumes":25094,"ĠSacred":25095,"ĠShooting":25096,"Ġnoble":25097,"Ġslopes":25098,"Ġont":25099,"Ġtwists":25100,"Very":25101,"Ġbigotry":25102,"ĠTib":25103,"Ġmos":25104,"Ġwarrior":25105,"Ġbroadcasters":25106,"Ġubiquitous":25107,"ameda":25108,"Ġchess":25109,"Special":25110,"Ġconver":25111,"Ġdeleg":25112,"endant":25113,"Ġfoil":25114,"Ġlush":25115,"Ġtaxed":25116,"Mag":25117,"ahs":25118,"Ġtablespoons":25119,"scription":25120,"clamation":25121,"ĠCertain":25122,"ĠDiversity":25123,"Ġhairst":25124,"ĠBrewery":25125,"Ġshedding":25126,"Cla":25127,"Ġpenis":25128,"ĠMurder":25129,"Park":25130,"uner":25131,"iments":25132,"ĠOVER":25133,"hus":25134,"Ġtabloid":25135,"Chart":25136,"Ġvouchers":25137,"ĠCoord":25138,"Ġmethane":25139,"ĠFisheries":25140,"ĠKham":25141,"includes":25142,"ĠSuperman":25143,"ensed":25144,"isure":25145,"Amazon":25146,"Ġvacated":25147,"heet":25148,"Ġroast":25149,"Ġlegalize":25150,"ĠTut":25151,"Ġsignage":25152,"init":25153,"Ġthefts":25154,"202":25155,"Ġstatic":25156,"Ġchants":25157,"Bob":25158,"Ġdiscretionary":25159,"Ġendurance":25160,"Ġcollegiate":25161,"Ġcorridors":25162,"Ġslack":25163,"ĠLash":25164,"Az":25165,"Series":25166,"Ġnonpartisan":25167,"ĠMcGill":25168,"Ġuneven":25169,"ulsive":25170,"eu":25171,"Ġpil":25172,"Ġfisheries":25173,"Ġonslaught":25174,"fiction":25175,"holding":25176,"Ġcheated":25177,"Ġtraumat":25178,"lasting":25179,"Ġmultitude":25180,"ĠThr":25181,"ĠBreast":25182,"Ġ1600":25183,"ĠMatth":25184,"Ġdiminish":25185,"ĠFTC":25186,"Ġgram":25187,"ĠResident":25188,"Ġfading":25189,"Ġmarginalized":25190,"ĠLite":25191,"ĠCarlton":25192,"Ġerad":25193,"Welcome":25194,"ĠFaw":25195,"iddy":25196,"Ġparticip":25197,"Ġcz":25198,"Ġtexted":25199,"Ġsuites":25200,"ĠForever":25201,"Ġrendition":25202,"rait":25203,"ĠPrague":25204,"Ġsponsoring":25205,"Ġcompos":25206,"ĠBeacon":25207,"144":25208,"Ġpupil":25209,"Ġintricate":25210,"Ġathleticism":25211,"Ġoptimization":25212,"Ġloot":25213,"polit":25214,"ĠOtt":25215,"Whatever":25216,"uno":25217,"ĠConstable":25218,"esville":25219,"Ġlookout":25220,"ĠAircraft":25221,"Ġspo":25222,"Ġcorrobor":25223,"Ġhiatus":25224,"ĠKnowing":25225,"ĠHamp":25226,"Ġspe":25227,"Ġstoring":25228,"Ġshakes":25229,"uran":25230,"Ġsickness":25231,"Ġliber":25232,"ĠAdministrative":25233,"Ġpleasing":25234,"ĠEqual":25235,"ĠConversation":25236,"Ġalgae":25237,"Ġlobbyist":25238,"ĠHelena":25239,"ptions":25240,"Ġfaire":25241,"ĠGone":25242,"ĠWiggins":25243,"Robert":25244,"Ġlistens":25245,"ĠDaisy":25246,"Ġsticky":25247,"sale":25248,"ĠMarijuana":25249,"ĠSSD":25250,"ĠTool":25251,"once":25252,"ĠHarmon":25253,"mobile":25254,"Ġdetain":25255,"Money":25256,"Ġflawless":25257,"forced":25258,"Ġguru":25259,"Ġairspace":25260,"ĠArchie":25261,"ĠGender":25262,"ĠMeat":25263,"abilities":25264,"ĠBD":25265,"Open":25266,"Ġoutsider":25267,"issue":25268,"Ġlearns":25269,"natural":25270,"Ġvinegar":25271,"ĠSUB":25272,"ĠRecon":25273,"blers":25274,"Ġsniff":25275,"Ġsuppression":25276,"Ġsaf":25277,"urger":25278,"Ġbunker":25279,"asaki":25280,"ĠSpartan":25281,"ĠTok":25282,"Ġrav":25283,"Ġfoc":25284,"Sean":25285,"etric":25286,"Ġballpark":25287,"ĠHerb":25288,"ĠBM":25289,"ĠPublishing":25290,"Ġroadmap":25291,"pered":25292,"Ġpredator":25293,"ĠBlockchain":25294,"Ġvalidity":25295,"ĠGlou":25296,"ĠYamaha":25297,"Ġadop":25298,"Ġswamp":25299,"Ġcomplied":25300,"Ky":25301,"Greg":25302,"casts":25303,"john":25304,"ĠBosnia":25305,"Ġcinematic":25306,"ĠTavern":25307,"Ġfrustrations":25308,"eryl":25309,"Ġfairy":25310,"UNCH":25311,"ĠTus":25312,"Corp":25313,"ĠNug":25314,"closed":25315,"Ġexercised":25316,"urden":25317,"Ġdigitally":25318,"137":25319,"ĠVictims":25320,"Ġreluctance":25321,"ELL":25322,"ĠTribe":25323,"chall":25324,"Ġwhiskey":25325,"ogl":25326,"Ġmater":25327,"ĠBac":25328,"Ġapartheid":25329,"ĠMBA":25330,"mot":25331,"ĠIre":25332,"®,":25333,"ĠChic":25334,"Ġtimed":25335,"ĠDome":25336,"efer":25337,"Ġobserver":25338,"unky":25339,"ĠKant":25340,"Ġundrafted":25341,"Ġsimplicity":25342,"onds":25343,"Ġstoked":25344,"Ġ1949":25345,"Ġransomware":25346,"ĠPow":25347,"ĠAngelo":25348,"ĠAmbrose":25349,"adjusted":25350,"Guard":25351,"138":25352,"ĠKaplan":25353,"stri":25354,"Ġcries":25355,"NF":25356,"atro":25357,"Ġavocado":25358,"illian":25359,"Ġsculptures":25360,"Ġelevation":25361,"Ġinspires":25362,"Ġgenerals":25363,"arb":25364,"chell":25365,"ĠJournalism":25366,"ĠHybrid":25367,"ĠCaller":25368,"vec":25369,"Lu":25370,"Ġresemble":25371,"bys":25372,"erving":25373,"antz":25374,"Ġwiden":25375,"vised":25376,"Ev":25377,"Ġdiagn":25378,"ĠMakes":25379,"Ġcer":25380,"ĠPats":25381,"single":25382,"sche":25383,"struct":25384,"Ġdissolved":25385,"Ġtimeout":25386,"Ġenhancement":25387,"CF":25388,"Ġindust":25389,"ĠDed":25390,"ĠZo":25391,"CB":25392,"Ġpesticides":25393,"ĠRubin":25394,"George":25395,"opal":25396,"Ġmotel":25397,"critical":25398,"Ġcollapsing":25399,"ĠShal":25400,"tex":25401,"Ġcomplementary":25402,"Ġoust":25403,"ĠFlu":25404,"Ġexporting":25405,"Ġdifferential":25406,"north":25407,"ĠFG":25408,"Ġspoon":25409,"sha":25410,"Ġdismantle":25411,"elta":25412,"Ġjar":25413,"space":25414,"Smart":25415,"mere":25416,"Ð":25417,"ĠGillespie":25418,"Lo":25419,"ĠMead":25420,"capacity":25421,"ĠIssue":25422,"050":25423,"ĠVall":25424,"Ġdisgr":25425,"Ġmeme":25426,"Ġpard":25427,"Ġcompensated":25428,"ĠKet":25429,"major":25430,"ĠBren":25431,"Ġheed":25432,"131":25433,"Ġcm":25434,"Ġdazzling":25435,"ĠCheese":25436,"Ġmonumental":25437,"Ġyielding":25438,"Read":25439,"Ġgrinding":25440,"Ang":25441,"Ġdefiance":25442,"Ġintimidated":25443,"Ġ310":25444,"Ġoutsiders":25445,"houn":25446,"Ma":25447,"ĸ":25448,"ĠForget":25449,"ĠSans":25450,"Ġunfolding":25451,"ĠSap":25452,"ĠLak":25453,"Ġsectarian":25454,"ĠDaddy":25455,"oxy":25456,"hitting":25457,"Ġdetectors":25458,"ĠRee":25459,"Ġbroaden":25460,"Ġslaying":25461,"Ġsuspending":25462,"Ġinvestig":25463,"Tuesday":25464,"Ġantibiotic":25465,"ĠShiite":25466,"igi":25467,"ĠExternal":25468,"ĠPhotographer":25469,"Ġerratic":25470,"NJ":25471,"ĠDock":25472,"Ġoutweigh":25473,"rants":25474,"Ġlobster":25475,"Ġreactor":25476,"Ġunrealistic":25477,"ĠAudrey":25478,"ĠYor":25479,"Anyone":25480,"Ġfraught":25481,"е":25482,"ĠWester":25483,"fc":25484,"ĠDunham":25485,"ĠLug":25486,"allow":25487,"139":25488,"Ġparity":25489,"Ġhorizontal":25490,"ijuana":25491,"Ġcivilization":25492,"ĠGins":25493,"Ġsmokers":25494,"ĠDiabetes":25495,"Five":25496,"ĠDG":25497,"Ġunderscores":25498,"Ġelabor":25499,"ĠLub":25500,"ĠDevil":25501,"Ġ154":25502,"ĠGuarant":25503,"ĠPandora":25504,"Ġexcav":25505,"Ġaccuser":25506,"Ġrevolt":25507,"Ġinstructors":25508,"Ġire":25509,"ographic":25510,"ĠCLE":25511,"Ġexpedition":25512,"ould":25513,"Ġstriving":25514,"south":25515,"onis":25516,"ĠSwed":25517,"MY":25518,"ĠLevin":25519,"Ġcarp":25520,"ĠArchitects":25521,"Ġ{":25522,"Ġcovert":25523,"Ġcooled":25524,"ĠStaten":25525,"Ġspecializing":25526,"ĠHazel":25527,"Ġlen":25528,"ighty":25529,"Ġbrilliantly":25530,"Phil":25531,"Ġlament":25532,"Australia":25533,"203":25534,"Ġticking":25535,"Ġadjud":25536,"Ġroommate":25537,"ĠSheet":25538,"capital":25539,"167":25540,"Ġendeavor":25541,"Ġaver":25542,"Ġdues":25543,"ĠCycl":25544,"oried":25545,"Va":25546,"loading":25547,"Ġpremie":25548,"Ġregimes":25549,"ĠAly":25550,"Ġperennial":25551,"Ġconsoles":25552,"Ġironic":25553,"ichael":25554,"Ġvigorously":25555,"Ġtransmit":25556,"gary":25557,"eking":25558,"Ġjails":25559,"ĠEpiscopal":25560,"eddy":25561,"Ġidle":25562,"Ġsafeguards":25563,"Ġdwindling":25564,"NOR":25565,"torn":25566,"ĠEvangel":25567,"ĠPlastic":25568,"ĠTerm":25569,"Ġforwarded":25570,"avage":25571,"Ġrefrigerator":25572,"arna":25573,"ĠGuinness":25574,"ĠCandy":25575,"Ġbotched":25576,"seller":25577,"Ġpul":25578,"grades":25579,"oshenko":25580,"earth":25581,"nette":25582,"Ġtraps":25583,"Ġtarn":25584,"Ġmilitar":25585,"ĠAriel":25586,"Ġtubes":25587,"ulo":25588,"Water":25589,"edin":25590,"Ġmarvel":25591,"chenko":25592,"ĠElk":25593,"spect":25594,"coe":25595,"ĠIllustrated":25596,"Ġruthless":25597,"etermined":25598,"Ġdys":25599,"Ġbreaching":25600,"gee":25601,"Nick":25602,"Ġcruiser":25603,"Ġciv":25604,"Ġdou":25605,"Ġ;":25606,"deb":25607,"ĠAsheville":25608,"Ġbiting":25609,"Ġyo":25610,"Courtesy":25611,"Ġroses":25612,"ĠConsequently":25613,"Ġrevis":25614,"Ġconfinement":25615,"next":25616,"produced":25617,"Ġmoratorium":25618,"Ġkne":25619,"eties":25620,"Ġplethora":25621,"Ġceleb":25622,"FIN":25623,"Ġdepartures":25624,"ĠWynne":25625,"abilia":25626,"ĠCourts":25627,"olis":25628,"Ġcereal":25629,"Ġblended":25630,"333":25631,"ĠLun":25632,"Ġrepe":25633,"Ġmathematics":25634,"Ġpharmacies":25635,"Center":25636,"Ġwhist":25637,"pine":25638,"Ġperm":25639,"Ġcustomary":25640,"Ġhormones":25641,"Ġcleansing":25642,"Ġconfidentiality":25643,"Ġmascot":25644,"Ġslippery":25645,"Ġmediation":25646,"Ġpodcasts":25647,"Ġcoating":25648,"Ġconveyed":25649,"Ġgir":25650,"ĠNurse":25651,"DM":25652,"Ġlured":25653,"orted":25654,"Ġolig":25655,"ritz":25656,"ĠINF":25657,"Ġtirelessly":25658,"Ġdoorstep":25659,"Ġtomb":25660,"Ġwithholding":25661,"irling":25662,"Ġhog":25663,"Ġ156":25664,"Ġgau":25665,"chem":25666,"raid":25667,"Ġtrolls":25668,"Ġ182":25669,"ĠColumb":25670,"Ġtissues":25671,"Ġnaive":25672,"Ġlect":25673,"Central":25674,"Sign":25675,"168":25676,"Ġbribe":25677,"ĠDoll":25678,"ĠTripoli":25679,"Ġfunk":25680,"Ġplaza":25681,"Ġmechanic":25682,"mem":25683,"Ġmonkey":25684,"grid":25685,"Ġtainted":25686,"ĠNicaragua":25687,"pelling":25688,"ĠXia":25689,"ammers":25690,"Ġorth":25691,"ICAN":25692,"Ġrant":25693,"Ġdiary":25694,"ĠHarrington":25695,"Ġimply":25696,"Qaeda":25697,"Ġworsen":25698,"Ġcrafting":25699,"ĠShir":25700,"Ġcoincided":25701,"Ġsnatched":25702,"ileen":25703,"sei":25704,"Ġsurgeons":25705,"directed":25706,"Ġcompulsory":25707,"Ġnowadays":25708,"ĠLI":25709,"ĠRebel":25710,"Ġlions":25711,"ĠJR":25712,"scar":25713,"ĠRespons":25714,"Ġscroll":25715,"ĠErd":25716,"iety":25717,"\";":25718,"ĠBone":25719,"ĠRumble":25720,"ĠKS":25721,"ĠLaur":25722,"kell":25723,"ĠBirds":25724,"agic":25725,"Ġsimmer":25726,"Ġrunaway":25727,"Ġ162":25728,"auna":25729,"Ġdialog":25730,"Ġlouder":25731,"esque":25732,"RR":25733,"Ġbloss":25734,"Ġcaliber":25735,"nery":25736,"Ġhauled":25737,"Ġbacterial":25738,"ĠVanity":25739,"ĠPrograms":25740,"omew":25741,"ĠMama":25742,"Ġarr":25743,"Ġdod":25744,"ĠJarvis":25745,"ĠFIRST":25746,"Ġinjections":25747,"ĠBallard":25748,"Ġmedically":25749,"angan":25750,"ĠNewfoundland":25751,"Ġfracking":25752,"Ġbast":25753,"outing":25754,"Ġmercury":25755,"Ġwatershed":25756,"ĠAmateur":25757,"Ġ153":25758,"escal":25759,"Ġpainter":25760,"creat":25761,"Ġperceive":25762,"Ġgent":25763,"attacks":25764,"worked":25765,"Ġimporting":25766,"Indian":25767,"Ġconvict":25768,"clad":25769,"Ġbudding":25770,"Ġambient":25771,"ĠWitness":25772,"letes":25773,"Ġbuffet":25774,"Ġneedles":25775,"Ġcoding":25776,"Ġchoke":25777,"Ġcorrespondence":25778,"Ġgods":25779,"Ġdances":25780,"Ġsteadfast":25781,"cert":25782,"Ġroaming":25783,"between":25784,"weak":25785,"Jer":25786,"jandro":25787,"Ġdiscouraged":25788,"Ġfruition":25789,"ĠØ":25790,"ĠKop":25791,"ULL":25792,"efe":25793,"imble":25794,"obb":25795,"ulla":25796,"Ġaccredited":25797,"Ġlectures":25798,"bil":25799,"why":25800,"Ġgreeting":25801,"ĠBoost":25802,"Ġmailed":25803,"Ġtroop":25804,"Ġfrig":25805,"Ġrese":25806,"Ġscratched":25807,"Stars":25808,"ĠRailroad":25809,"ĠIdol":25810,"Ġsuccumbed":25811,"ĠWeeks":25812,"ffe":25813,"Ġjihadist":25814,"ITION":25815,"Ġthreads":25816,"ĠGenerally":25817,"Ġmedieval":25818,"Ġquotas":25819,"ĠFerry":25820,"rique":25821,"Ġprod":25822,"ĠEduc":25823,"rive":25824,"Ġensued":25825,"Cy":25826,"Ġinfring":25827,"Ġprank":25828,"Ġfrontline":25829,"Ġcompletes":25830,"upe":25831,"Ġmanageable":25832,"Ġpoems":25833,"otten":25834,"igne":25835,"threat":25836,"ĠDri":25837,"ĠLINK":25838,"Calif":25839,"ĠDos":25840,"ulent":25841,"Ġaids":25842,"Ġslips":25843,"umped":25844,"Ġstyled":25845,"Ġdisproportionately":25846,"ĠDish":25847,"ĠUncle":25848,"andel":25849,"Ġrecharge":25850,"rators":25851,"ĠSPR":25852,"Ġguarded":25853,"ĠGreatest":25854,"ĠSkills":25855,"ĠNob":25856,"ĠDesk":25857,"ĠCros":25858,"Ġwrit":25859,"Ġquery":25860,"ORTS":25861,"Ġbundled":25862,"Ġgib":25863,"Ġeth":25864,"iesta":25865,"Ġevade":25866,"dict":25867,"straight":25868,"Met":25869,"present":25870,"Ġdiff":25871,"Ġdere":25872,"ĠSpl":25873,"Ġrepr":25874,"ĠBeard":25875,"Ġvain":25876,"Ġappointing":25877,"ĠVisual":25878,"caps":25879,"gado":25880,"ĠRican":25881,"ĠPose":25882,"endor":25883,"Ġ222":25884,"ĠLear":25885,"Ġconstructing":25886,"Dan":25887,"ĠSpears":25888,"ĠTherapy":25889,"pta":25890,"Ġrehabilit":25891,"Ġrisked":25892,"ĠGuer":25893,"HF":25894,"Ġ301":25895,"Ġliking":25896,"Ġmodular":25897,"eree":25898,"ĠMAT":25899,"ĠHomeless":25900,"Ġstove":25901,"erd":25902,"hash":25903,"ĠAchilles":25904,"ĠBeta":25905,"Ġincl":25906,"Ġgunned":25907,"ĠCrab":25908,"ĠMara":25909,"Ġinvaded":25910,"ulatory":25911,"ATA":25912,"angering":25913,"onso":25914,"Ġallocate":25915,"Ġgarment":25916,"itudes":25917,"ĠHuang":25918,"Ġstaples":25919,"ĠAlban":25920,"Ġtrough":25921,"Ġupright":25922,"tie":25923,"Ġexploits":25924,"ĠVaughan":25925,"ĠDarrell":25926,"Ġassortment":25927,"ĠChill":25928,"Ġlearners":25929,"aqu":25930,"Ġexplode":25931,"ĠChong":25932,"bt":25933,"opl":25934,"Ġaltern":25935,"Ġ151":25936,"fur":25937,"ULT":25938,"HOU":25939,"ĠMemory":25940,"Ġboosts":25941,"ynes":25942,"priv":25943,"Ġtimeless":25944,"Ġcurtail":25945,"ĠCary":25946,"ĠHud":25947,"Ġexclus":25948,"Ġ275":25949,"Ġfry":25950,"ĠVera":25951,"Ġdefied":25952,"ĠDust":25953,"Ġenvision":25954,"ĠPhilipp":25955,"Ġenhancements":25956,"ĠLIB":25957,"ggy":25958,"ĠAzure":25959,"esis":25960,"Ġcharismatic":25961,"Ġcoincide":25962,"inged":25963,"ĠChoose":25964,"Ġsizeable":25965,"136":25966,"Ġpronounce":25967,"ĠPositive":25968,"Ġideally":25969,"Ġechoes":25970,"Ġcottage":25971,"Ġencrypted":25972,"Prime":25973,"Ġá":25974,"Ġflashes":25975,"Group":25976,"Ġ501":25977,"heat":25978,"atility":25979,"ĠTesting":25980,"pex":25981,"WT":25982,"154":25983,"annah":25984,"Ġcompromising":25985,"Ġinactive":25986,"Ġdisparity":25987,"Ġgruesome":25988,"ĠFeather":25989,"ĠMandal":25990,"Ġthereof":25991,"ĠProducer":25992,"Ġprofiling":25993,"Ġlogistical":25994,"Ġcornerstone":25995,"ĠClaudia":25996,"Congress":25997,"ĠDill":25998,"ophone":25999,"Ġcameo":26000,"ĠCutler":26001,"Ġcraz":26002,"throw":26003,"ĠKasich":26004,"Ġexploiting":26005,"ĠSeas":26006,"agles":26007,"ĠGeological":26008,"ĠStub":26009,"ĠUps":26010,"MER":26011,"Ġmem":26012,"itution":26013,"Ġunderstandably":26014,"Ġcontractual":26015,"warming":26016,"qi":26017,"Sky":26018,"whelming":26019,"Ġcurse":26020,"ĠAren":26021,"Ġ265":26022,"ĠGree":26023,"Ġpresiding":26024,"Works":26025,"stones":26026,"Ġappalling":26027,"plex":26028,"dj":26029,"aunting":26030,"Ġimag":26031,"Ġsexism":26032,"ĠVert":26033,"ĠRag":26034,"ĠBliss":26035,"posium":26036,"div":26037,"Ġexperimenting":26038,"Ass":26039,"Lago":26040,"worthiness":26041,"ĠBerk":26042,"ĠDisneyland":26043,"Ġexaggerated":26044,"iliation":26045,"ĠFP":26046,"Ġprincipals":26047,"Miami":26048,"ropri":26049,"PLE":26050,"iona":26051,"ĠPokemon":26052,"apse":26053,"Ġbubbles":26054,"INC":26055,"ĠCaps":26056,"ĠBrowne":26057,"sing":26058,"Ġcafé":26059,"Ġceilings":26060,"frame":26061,"ĠIrwin":26062,"ATS":26063,"dated":26064,"Ġprotester":26065,"Ġtaps":26066,"ĠOslo":26067,"Ù":26068,"Ġconcentrations":26069,"Ġdistributions":26070,"Ġglucose":26071,"ĠRudolph":26072,"Ġtowels":26073,"Ġâĸº":26074,"Ġneighbourhoods":26075,"Ġinduction":26076,"Ġglaring":26077,"Ġannexation":26078,"Ġunsustainable":26079,"ĠTend":26080,"Ġthumbs":26081,"iegel":26082,"cript":26083,"gor":26084,"closure":26085,"thought":26086,"Ġpaddle":26087,"Ġemulate":26088,"Ġdiameter":26089,"Ġtailor":26090,"ĠCorpor":26091,"icable":26092,"ĠPrin":26093,"Ġadminister":26094,"ĠJudd":26095,"ĠColleg":26096,"aund":26097,"ĠPond":26098,"ĠNOTE":26099,"Ġcombating":26100,"Ġinvention":26101,"ĠOculus":26102,"ĠRepl":26103,"iscal":26104,"Ġtrilogy":26105,"anian":26106,"ATT":26107,"ĠCoke":26108,"DL":26109,"ĠLup":26110,"living":26111,"Ġadvertise":26112,"ĠConnie":26113,"amping":26114,"Ġsung":26115,"ORY":26116,"ĠTet":26117,"Ġsplits":26118,"Ġreconnect":26119,"Ġlou":26120,"mut":26121,"ulator":26122,"Ġstrap":26123,"Ġswallow":26124,"rote":26125,"Ġexec":26126,"ffen":26127,"ĠCombine":26128,"ĠTreat":26129,"Ġsorrow":26130,"ĠNotably":26131,"ĠSever":26132,"rette":26133,"Ġwherein":26134,"Ġtransitioning":26135,"Ġtrout":26136,"Ġcockpit":26137,"Ġcrawl":26138,"Ġferv":26139,"Ġliquids":26140,"Ġtsp":26141,"atell":26142,"Ġmeasles":26143,"Ġjug":26144,"Ac":26145,"ĠKD":26146,"ĠMoose":26147,"Ġvans":26148,"chain":26149,"ĠPapua":26150,"plet":26151,"Wednesday":26152,"lynn":26153,"chery":26154,"budget":26155,"Tony":26156,"ĠBacon":26157,"Ġstirred":26158,"ĠSpecialist":26159,"Ġcounterfeit":26160,"а":26161,"Ġdifferentiate":26162,"Ġmuscular":26163,"ĠTheodore":26164,"Ġlooms":26165,"ĠXX":26166,"ottage":26167,"Ġbenches":26168,"ĠMunicip":26169,"Po":26170,"ĠHeck":26171,"Ġscars":26172,"ĠNim":26173,"ÙĬ":26174,"ĠIngredients":26175,"Ġecological":26176,"ĠAWS":26177,"Ġdispose":26178,"Ġmattered":26179,"Ġ720":26180,"Ġpatriotism":26181,"ĠGrind":26182,"Ġcurved":26183,"opia":26184,"ĠLiqu":26185,"Ġevangelical":26186,"tto":26187,"ĠMaterial":26188,"ĠShowtime":26189,"ĠBS":26190,"Ġcheckpoints":26191,"Ġcrippling":26192,"ĠBalance":26193,"stress":26194,"bearing":26195,"Ġ216":26196,"ĠGuards":26197,"Ġlinebackers":26198,"Ġoffending":26199,"Ġsands":26200,"umbnail":26201,"atorial":26202,"Ġliberties":26203,"ĠGW":26204,"ĠPulitzer":26205,"ĠAlvin":26206,"ĠFAC":26207,"ĠStrategies":26208,"Ġreiter":26209,"ĠRestaur":26210,"ĠLithuania":26211,"ĠSwanson":26212,"terror":26213,"ĠMaurit":26214,"Ġparadise":26215,"zzle":26216,"owment":26217,"ĠWP":26218,"Ġsodium":26219,"Ġfuturistic":26220,"Ġdots":26221,"Anthony":26222,"Though":26223,"Ġstripes":26224,"Ġorig":26225,"ultz":26226,"Ġ340":26227,"KK":26228,"umer":26229,"ivery":26230,"Ġplacebo":26231,"Ġdemocrat":26232,"Ġsubmerged":26233,"ĠHidden":26234,"pieces":26235,"Ġasteroid":26236,"ĠGraphic":26237,"Ġadvert":26238,"sil":26239,"Ġdreaming":26240,"Ġnationality":26241,"Ġfostering":26242,"daughter":26243,"ĠSavings":26244,"Ġmischief":26245,"ĠClair":26246,"ĠBundy":26247,"Ġblatant":26248,"Ġtabs":26249,"qa":26250,"severe":26251,"attered":26252,"Ġgreed":26253,"Ġresembles":26254,"Ġnominal":26255,"Ġineligible":26256,"wealth":26257,"fax":26258,"payers":26259,"Ġdisplacement":26260,"itute":26261,"Ġunpleasant":26262,"ĠPom":26263,"lif":26264,"edo":26265,"ĠNP":26266,"Inter":26267,"Ġcohort":26268,"ĠStacy":26269,"ĠDai":26270,"Ġhistories":26271,"alin":26272,"273":26273,"Ġdram":26274,"ĠKand":26275,"Ġexpectancy":26276,"ansson":26277,"Ġlimbo":26278,"ĠPolar":26279,"Ġdivine":26280,"oused":26281,"Ġshel":26282,"ĠProblem":26283,"achment":26284,"Ġâĸł":26285,"shoot":26286,"antam":26287,"ĠHerz":26288,"Ġ157":26289,"Ġpreventive":26290,"keye":26291,"Sing":26292,"Ġcharacteristic":26293,"Ġcasually":26294,"ĠTaiwanese":26295,"md":26296,"ĠHubbard":26297,"imon":26298,"Ġsect":26299,"148":26300,"Ġmartyr":26301,"stud":26302,"Ġcongrat":26303,"ĠSWAT":26304,"ĠTheory":26305,"INAL":26306,"opping":26307,"ply":26308,"ĠKindle":26309,"uu":26310,"ĠLith":26311,"kaya":26312,"ĠActivity":26313,"uously":26314,"ĠJeb":26315,"tell":26316,"ĠSpin":26317,"ĠExplorer":26318,"Ġfolded":26319,"ĠCanterbury":26320,"ĠStur":26321,"Ġminiature":26322,"Ġmultif":26323,"ĠPressure":26324,"angling":26325,"ĠOverse":26326,"Ġresides":26327,"Ġimpressions":26328,"Ġauthored":26329,"265":26330,"Ġallergies":26331,"143":26332,"ĠJi":26333,"Ġsticker":26334,"ĠAccord":26335,"Ġcaste":26336,"Ġseparates":26337,"ĠFein":26338,"Daily":26339,"179":26340,"ĠScores":26341,"ĠAuction":26342,"hea":26343,"Ġdisclosing":26344,"ĠTacoma":26345,"Ġverse":26346,"ĠBeg":26347,"Ġfabrics":26348,"aez":26349,"Ġattachment":26350,"isy":26351,"Christ":26352,"Ġaddictive":26353,"Ġvir":26354,"Week":26355,"ĠPlum":26356,"croft":26357,"itivity":26358,"ĠExhibition":26359,"Ġbruised":26360,"Ġmimic":26361,"rers":26362,"Ġanal":26363,"Ġunintended":26364,"Ġpall":26365,"atts":26366,"ĠWarn":26367,"Ġslows":26368,"WH":26369,"Ġembro":26370,"nec":26371,"Ġ168":26372,"285":26373,"ologic":26374,"Ġhob":26375,"ĠPeel":26376,"Mill":26377,"eps":26378,"Ġrobbers":26379,"ĠDahl":26380,"semble":26381,"omics":26382,"toe":26383,"ĠLoch":26384,"Ġreproduction":26385,"ĠCullen":26386,"Ġimplants":26387,"Ġwow":26388,"ĠSTATE":26389,"vt":26390,"Ġdepleted":26391,"Ġbreweries":26392,"Ġhateful":26393,"Ġgast":26394,"Ġhollow":26395,"Ġradically":26396,"ographed":26397,"ĠFog":26398,"onian":26399,"ĠSequ":26400,"Ġdisrespectful":26401,"Dis":26402,"ĠExper":26403,"pron":26404,"ĠAmelia":26405,"ĠSage":26406,"bath":26407,"Ġtransformative":26408,"Ġtremendously":26409,"Ġpillow":26410,"ĠNormal":26411,"Cont":26412,"ĠMedic":26413,"educated":26414,"Ġredesigned":26415,"Ġkneeling":26416,"Ġinh":26417,"Ġroofs":26418,"Ġhandmade":26419,"Ġprotracted":26420,"ĠIsn":26421,"ĠCapacity":26422,"Ġsquash":26423,"ĠVega":26424,"Ġfats":26425,"ĠCertified":26426,"ointed":26427,"Ġpricey":26428,"ĠBasil":26429,"Ġfreezer":26430,"Ġscent":26431,"Ġpizz":26432,"ĠArd":26433,"Ġdistractions":26434,"Ġviolently":26435,"ĠHess":26436,"Ġfunc":26437,"Ġundert":26438,"Ġrejuven":26439,"Ġdisbelief":26440,"cluded":26441,"named":26442,"ĠFailure":26443,"kus":26444,"Ġhostages":26445,"ĠSahara":26446,"Ġ1944":26447,"Leary":26448,"ĠPrel":26449,"enza":26450,"ĠAlly":26451,"ĠKak":26452,"Ġcounselors":26453,"ĠGale":26454,"ĠHok":26455,"ĠSold":26456,"Ġhacker":26457,"Ġhun":26458,"Ġbung":26459,"Ġdeclares":26460,"Ġinfringement":26461,"OOD":26462,"Ġdoub":26463,"jam":26464,"Ġallergy":26465,"ĠShipping":26466,"Ġmedic":26467,"Ġaccommod":26468,"Ġdocumenting":26469,"Ġcompanions":26470,"Ġmodelling":26471,"Ġcarriage":26472,"ĠCherokee":26473,"Ġtresp":26474,"Ġtaxable":26475,"ĠActivities":26476,"ĠCrane":26477,"bots":26478,"ĠRusso":26479,"Ġstocked":26480,"ervation":26481,"Ġcoffin":26482,"aign":26483,"guards":26484,"Ġonwards":26485,"Ġfrank":26486,".*":26487,"unic":26488,"Ġcens":26489,"enic":26490,"ruit":26491,"rained":26492,"Ġadapting":26493,"aments":26494,"Ġstagnant":26495,"azaar":26496,"ĠHarlem":26497,"Ġ158":26498,"ysis":26499,"Ġbraking":26500,"Ġdipping":26501,"Ġclan":26502,"ĠShu":26503,"Ġprops":26504,"qualified":26505,"Ġmistakenly":26506,"ĠStalin":26507,"Ġaddicts":26508,"ĠCALL":26509,"ropolis":26510,"aten":26511,"pec":26512,"ĠDro":26513,"ĠFellowship":26514,"ĠSupporting":26515,"loc":26516,"uben":26517,"499":26518,"Bro":26519,"Ġpots":26520,"Ġchunks":26521,"wr":26522,"ĠColonial":26523,"ĠArchitecture":26524,"Ġconstrained":26525,"Ġenvelop":26526,"ĠIronically":26527,"aban":26528,"Ġapparatus":26529,"Ġcue":26530,"Ġborne":26531,"ĠRoz":26532,"ilton":26533,"Ġtheoretical":26534,"ĠWatching":26535,"Ġfuck":26536,"ĠSilk":26537,"ĠSTE":26538,"bler":26539,"ĠPOST":26540,"ĠUpton":26541,"Ġsummons":26542,"ĠCum":26543,"ĠKL":26544,"Ġrelaxation":26545,"ĠDuff":26546,"Ġincumb":26547,"ĠRedd":26548,"Ġstature":26549,"Ġcanv":26550,"added":26551,"Ġremedies":26552,"ĠISO":26553,"ĠDecker":26554,"Ġafloat":26555,"Ġstartling":26556,"ĠBethlehem":26557,"Ġrealizes":26558,"find":26559,"ĠAra":26560,"Ġphased":26561,"arov":26562,"Ġhalting":26563,"ĠWindow":26564,"Ġdentist":26565,"Ġtumble":26566,"Ġvalidation":26567,"Ġcarve":26568,"ĠIPS":26569,"Ġirrit":26570,"ĠEssential":26571,"Ġfluids":26572,"rons":26573,"Ġimplant":26574,"Ġnuisance":26575,"ĠShelley":26576,"ĠGemini":26577,"Ġpharmac":26578,"iction":26579,"Ġtaped":26580,"ĠGovernments":26581,"ruly":26582,"Ġscant":26583,"Ġprominently":26584,"Ġreim":26585,"unning":26586,"arted":26587,"ĠMatters":26588,"Ġ1918":26589,"ĠPros":26590,"atel":26591,"ĠBattalion":26592,"onduct":26593,"talk":26594,"ĠTinder":26595,"ĠInstant":26596,"ĠKern":26597,"Ġbuckets":26598,"ĠGroups":26599,"Ġmetaphor":26600,"cloud":26601,"ĠString":26602,"Ohio":26603,"Ġcaffeine":26604,"Old":26605,"Ġdefinite":26606,"ĠNikola":26607,"ĠLords":26608,"icol":26609,")?":26610,"Ġenjoyment":26611,"Ġfamine":26612,"Ġdefinitions":26613,"ĠJem":26614,"Check":26615,"Ġaiding":26616,"ĠMé":26617,"Ġrenewables":26618,"Ġsightings":26619,"footed":26620,"Box":26621,"Ġgoats":26622,"Ġshack":26623,"AX":26624,"ĠMonk":26625,"ĠGraduate":26626,"Ġmeats":26627,"handle":26628,"147":26629,"rys":26630,"Ġunsub":26631,"Pont":26632,"uble":26633,"440":26634,"Ġeyel":26635,"thro":26636,"Ġcreep":26637,"^^^^":26638,"Ġpopcorn":26639,"Ġcompression":26640,"sal":26641,"ouf":26642,"Ġrepairing":26643,"Think":26644,"Ġdoubtful":26645,"ĠLooks":26646,"Ġtaller":26647,"Ġsul":26648,"sf":26649,"give":26650,"ĠGau":26651,"Ġrevered":26652,"EMBER":26653,"Ġsloppy":26654,"ersen":26655,"Ġvitamins":26656,"ĠImprovement":26657,"Ġprogresses":26658,"Ġdiploma":26659,"semb":26660,"ustain":26661,"Ġchant":26662,"Ġbumped":26663,"Ġsabotage":26664,"nant":26665,"Ġrabbit":26666,"Ġdividing":26667,"ĠDefender":26668,"Ġlik":26669,"Ġirrespective":26670,"cade":26671,"ĠSter":26672,"touch":26673,"EMA":26674,"Ġparted":26675,"ĠBAR":26676,"hung":26677,"Ġannoyed":26678,"Ġhinder":26679,"Ġexamines":26680,"oan":26681,"ĠBoe":26682,"Ġaggreg":26683,"ĠChu":26684,"ĠUCS":26685,"IGHTS":26686,"pez":26687,"ĠUNESCO":26688,"Ġwindshield":26689,"Martin":26690,"Ġwithhold":26691,"does":26692,"Ġbruising":26693,"Ġdeterior":26694,"bourg":26695,"ĠTowers":26696,"JD":26697,"England":26698,"Ġequivalents":26699,"Ġrazor":26700,"Ġreassuring":26701,"Ġident":26702,"Ġ208":26703,"reath":26704,"ceans":26705,"Ġpatrolling":26706,"eve":26707,"pots":26708,"itative":26709,"Ġsided":26710,"Ġsofa":26711,"Ġunborn":26712,"Ġaug":26713,"Ġperpetual":26714,"effect":26715,"represented":26716,"Ġrails":26717,"ĠSummers":26718,"ĠMOR":26719,"ĠSlow":26720,"ĠExpert":26721,"Ġshameful":26722,"Ġaudits":26723,"Sl":26724,"ĠBurr":26725,"adow":26726,"ĠWAY":26727,"anic":26728,"ĠIslamists":26729,"ĠStranger":26730,"pse":26731,"amaz":26732,"ĠPeggy":26733,"ĠSeventh":26734,"Ġscreenplay":26735,"ĠGriff":26736,"Ireland":26737,"142":26738,"Ġneural":26739,"ĠFernand":26740,"ainment":26741,"ĠMigration":26742,"ureen":26743,"ĠSCH":26744,"Sullivan":26745,"ĠWag":26746,"ĠREG":26747,"Ġ420":26748,"inky":26749,"ĠNewspaper":26750,"School":26751,"Ok":26752,"ĠKrishna":26753,"Ġ480":26754,"erald":26755,"Ġskipping":26756,"Ġharrowing":26757,"158":26758,"rogen":26759,"Ġbetrayal":26760,"Ġculmination":26761,"ĠCirc":26762,"Ġ211":26763,"stro":26764,"ĠTrace":26765,"Ġheaviest":26766,"td":26767,"ĠHenri":26768,"epend":26769,"RB":26770,"arella":26771,"umbai":26772,"Ġcrem":26773,"ĠDistribut":26774,"ruff":26775,"Ġscreams":26776,"Ġscathing":26777,"girls":26778,"Ġtiles":26779,"ĠEvil":26780,"usp":26781,"Ġknowledgeable":26782,"Ġrestitution":26783,"ĠWiFi":26784,"Ġitiner":26785,"exper":26786,"oris":26787,"ĠPokémon":26788,"iane":26789,"produ":26790,"ĠAchievement":26791,"Ġbrunt":26792,"ĠSurgery":26793,"Ġpragmatic":26794,"Ber":26795,"ĠKejriwal":26796,"cus":26797,"Ġconsensual":26798,"acet":26799,"ĠSecondly":26800,"Ġdivul":26801,"uca":26802,"Ġbusted":26803,"emies":26804,"ĠMou":26805,"Ġ217":26806,"Ġexcludes":26807,"ĠSamoa":26808,"Ġlofty":26809,"ĠSic":26810,"ĠRemem":26811,"dn":26812,"Ġeradicate":26813,"Ġpies":26814,"Ġscenery":26815,"ATTLE":26816,"ĠWAS":26817,"Ġinnovate":26818,"ĠEverest":26819,"Ġsynonymous":26820,"izen":26821,"Ġeuth":26822,"ĠFIA":26823,"ITIES":26824,"ĠSuddenly":26825,"Ġforay":26826,"pell":26827,"ÄŁ":26828,"licensed":26829,"Ġfra":26830,"Ġblasting":26831,"autical":26832,"ĠBlizzard":26833,"orer":26834,"Ġchili":26835,"ĠSylvia":26836,"except":26837,"tec":26838,"ĠResistance":26839,"young":26840,"usions":26841,"iotic":26842,"ĠDreams":26843,"ĠArchives":26844,"Ġunleash":26845,"ĠPract":26846,"Ġlikened":26847,"Ġga":26848,"Ġdisappearing":26849,"Ġunnoticed":26850,"Ġfrightened":26851,"arms":26852,"ĠCAD":26853,"Ġcoloured":26854,"ĠSigns":26855,"oing":26856,"Ġvodka":26857,"ruption":26858,"otions":26859,"isal":26860,"ĠBecome":26861,"Ġswoop":26862,"reating":26863,"Ġchoking":26864,"Ġunforgettable":26865,"258":26866,"packs":26867,"345":26868,"ĠAutumn":26869,"Ġther":26870,"399":26871,"ĠFaculty":26872,"Ġ1933":26873,"ĠNormally":26874,"orge":26875,"ĠTess":26876,"ĠChrom":26877,"Ġscripts":26878,"Ġbiking":26879,"Act":26880,"Ġgrazing":26881,"ĠLabrador":26882,"ĠLey":26883,"Ġwandering":26884,"Ġfend":26885,"ĠPolk":26886,"ĠKeane":26887,"ĠBeef":26888,"elope":26889,"ĠApproximately":26890,"Ġ1952":26891,"personal":26892,"Ġhistorians":26893,"ĠMcDonnell":26894,"must":26895,"LES":26896,"iking":26897,"Ġtherm":26898,"Ġhumane":26899,"Ġcrowdfunding":26900,"ĠBenefits":26901,"Land":26902,"Ġanalog":26903,"agency":26904,"ĠCrowley":26905,"Ġbirths":26906,"Ġobj":26907,"Ġfren":26908,"ĠSalmon":26909,"bies":26910,"Ġreve":26911,"216":26912,"Ġbetrayed":26913,"Ġinduced":26914,"acles":26915,"Ġtrad":26916,"Ġforgiven":26917,"Ġearners":26918,"208":26919,"Ġxen":26920,"Ġunle":26921,"Ġnecklace":26922,"Ġgravel":26923,"Ġsalads":26924,"Ġgrooming":26925,"California":26926,"Ġpossessed":26927,"Ġproclamation":26928,"Ġsequences":26929,"ream":26930,"FOX":26931,"arkin":26932,"ĠTRAN":26933,"Ġpurs":26934,"ĠLoans":26935,"Ġsacrificed":26936,"Ġiceberg":26937,"Phill":26938,"Ġgalvan":26939,"Ġsmugglers":26940,"formation":26941,"onson":26942,"ĠVaughn":26943,"Ġdoctrine":26944,"ĠEyes":26945,"Ġunmanned":26946,"states":26947,"Ġdetermin":26948,"almost":26949,"Ġeviction":26950,"Ġtid":26951,"ARR":26952,"Ġcooks":26953,"Bad":26954,"ĠCamb":26955,"Ġlinear":26956,"229":26957,"ĠCooke":26958,"ĠPurch":26959,"join":26960,"ĠCult":26961,"ĠRefugee":26962,"Ġslamming":26963,"ĠðŁij":26964,"Ġpedal":26965,"ĠVeronica":26966,"Ġlandowners":26967,"ĠYel":26968,"ĠWorkshop":26969,"antic":26970,"Ġdysfunction":26971,"Ġ229":26972,"Ġculturally":26973,"Ġinfuri":26974,"ĠEck":26975,"sem":26976,"Ġwired":26977,"ĠWerner":26978,"lov":26979,"ĠJasper":26980,"Ġvehemently":26981,"ĠSpy":26982,"lift":26983,"ĠNab":26984,"ĠPound":26985,"ĠHanna":26986,"Ġleveled":26987,"WOOD":26988,"tm":26989,"ĠKitt":26990,"Ġconve":26991,"nat":26992,"Ġjog":26993,"IVER":26994,"Ġmemes":26995,"Ġseaw":26996,"ector":26997,"Ġsprayed":26998,"Ġvaccinated":26999,"Europe":27000,"Ġmustard":27001,"ĠMahm":27002,"Ġ214":27003,"Research":27004,"iminary":27005,"Ġconcerted":27006,"Detroit":27007,"Ġkios":27008,"Ġplummet":27009,"Ġvisuals":27010,"247":27011,"Ġ228":27012,"development":27013,"ĠPascal":27014,"acial":27015,"ĠSeasons":27016,"ĠTL":27017,"480":27018,"ĠReader":27019,"Ġexpulsion":27020,"Ġchoked":27021,"Ġdevotion":27022,"ĠSTAT":27023,"urred":27024,"Ġfascinated":27025,"Ġstealth":27026,"NL":27027,"Ġbooster":27028,"Kat":27029,"ĠPriebus":27030,"Ġaux":27031,"ĠHate":27032,"ĠThing":27033,"Ġabnormal":27034,"Ġcalmly":27035,"Ġdedicate":27036,"cause":27037,"Ġisolate":27038,"ĠPai":27039,"Ġsuspensions":27040,"Ġpoisoned":27041,"ission":27042,"Ġprohibiting":27043,"353":27044,"banks":27045,"Ġkissed":27046,"ĠBegin":27047,"atis":27048,"LI":27049,"Ġshaft":27050,"ĠGuth":27051,"ĠBoo":27052,"Ġcinnamon":27053,"Ġverbally":27054,"ĠRabbi":27055,"Ġmonsters":27056,"done":27057,"ĠClyde":27058,"Ġspar":27059,"ĠCage":27060,"ĠPersons":27061,"305":27062,"ĠMons":27063,"Ġjealous":27064,"Ġswirling":27065,"know":27066,"Ġprote":27067,"Ġcruising":27068,"Ġduly":27069,"Ġchapel":27070,"Ġgroove":27071,"bps":27072,"ĠKelvin":27073,"iom":27074,"aer":27075,"bomb":27076,"Christian":27077,"Ġgigs":27078,"+.":27079,"ĠWei":27080,"Ġfarmland":27081,"otally":27082,"Ġequitable":27083,"ĠCBO":27084,"chool":27085,"amara":27086,"Ġwealthiest":27087,"ĠMeans":27088,"Ġ235":27089,"ĠUk":27090,"steps":27091,"raham":27092,"nerg":27093,"Ġclad":27094,"Ġsled":27095,"ĠMorrow":27096,"152":27097,"ĠRece":27098,"Ġplausible":27099,"Ġbisexual":27100,"artments":27101,"Ġveh":27102,"ĠLoft":27103,"bly":27104,"ĠCONC":27105,"automatic":27106,"Ġmasterpiece":27107,"ĠSpringer":27108,"Ġtendencies":27109,"Ro":27110,"Ġresentment":27111,"Ġadversely":27112,"Ġbandwidth":27113,"ĠDAV":27114,"Ġtun":27115,"Ġpuppies":27116,"ĠBundes":27117,"ĠHort":27118,"ĠGarfield":27119,"Ġenlist":27120,"Ġmont":27121,"gd":27122,"Ġrooting":27123,"Dream":27124,"Ġfulfillment":27125,"chal":27126,"182":27127,"prop":27128,"159":27129,"Ġcourtyard":27130,"iard":27131,"ĠSle":27132,"Ġoperative":27133,"Ġpublishes":27134,"ĠProposition":27135,"Ġcritique":27136,"Ġredist":27137,"wang":27138,"ĠNep":27139,"DD":27140,"Ġbonding":27141,"141":27142,"ĠAssault":27143,"-'":27144,"Ġlodging":27145,"itters":27146,"cigarettes":27147,"Ġ__":27148,"ĠLaf":27149,"GF":27150,"ĠAnat":27151,"ĠStephan":27152,"214":27153,"ĠKass":27154,"Ġviz":27155,"Ġpiling":27156,"Ġfugitive":27157,"ĠCurrency":27158,"ĠCrypto":27159,"Ġfaux":27160,"ĠPing":27161,"ĠLia":27162,"igl":27163,"Ġadversaries":27164,"ĠYPG":27165,"ĠComb":27166,"ĠYar":27167,"heny":27168,"Ġoverhe":27169,"Fest":27170,"emy":27171,"Ever":27172,"Ġ370":27173,"Ġsecretive":27174,"ĠSEN":27175,"ĠMEM":27176,"PRESS":27177,"ĠBirth":27178,"kos":27179,"Ġprecarious":27180,"irting":27181,"ĠUI":27182,"Ġoccupying":27183,"olute":27184,"Ġperiodic":27185,"eon":27186,"iens":27187,"ĠRH":27188,"Win":27189,"Ġplaybook":27190,"Ġexodus":27191,"ĠSkinner":27192,"Ġorderly":27193,"ĠVed":27194,"ouses":27195,"Ġescal":27196,"Ġbenign":27197,"Ġbots":27198,"ĠWhis":27199,"Ġappra":27200,"FOR":27201,"ĠChromebook":27202,"_____":27203,"990":27204,"athed":27205,"Ġspirited":27206,"illi":27207,"Ġbicycles":27208,"orse":27209,"ifestyle":27210,"orno":27211,"ĠDept":27212,"JA":27213,"Ġnausea":27214,"Ġpervasive":27215,"velop":27216,"commun":27217,"ĠUniversities":27218,"Ġremnants":27219,"Ġdisarm":27220,"ĠBoots":27221,"Ġprin":27222,"...\"":27223,"quila":27224,"Ġcautiously":27225,"uper":27226,"onto":27227,"din":27228,"Ġvelocity":27229,"Ġconspiring":27230,"ĠMX":27231,"Ġemphasizing":27232,"Ġâĸ":27233,"ĠStam":27234,"Ġspices":27235,"Ġairplanes":27236,"uty":27237,"culture":27238,"ĠPetr":27239,"Ġglor":27240,"ĠExcel":27241,"ĠSpeech":27242,"Ġharmless":27243,"ĠPend":27244,"ĠCrossing":27245,"ĠDocument":27246,"Ġramifications":27247,"ĠCroatian":27248,"ĠKiller":27249,"Ġmultim":27250,"Ġdiscontinued":27251,"Ġcherished":27252,"ĠMaker":27253,"aspers":27254,"ĠBlooming":27255,"ĠMata":27256,"offic":27257,"Ġsettlers":27258,"ĠPlenty":27259,"ĠInstitutes":27260,"ĠArpaio":27261,"Pool":27262,"ĠSubst":27263,"Ġ380":27264,"Ġdecidedly":27265,"ollah":27266,"Den":27267,"ĠJiang":27268,"ĠAmos":27269,"Grand":27270,"ĠTurns":27271,"meyer":27272,"Ġconducive":27273,"Ġpoignant":27274,"abortion":27275,"Ġnotebook":27276,"Ġshelling":27277,"common":27278,"ĠPavel":27279,"Ġhumid":27280,"Ġinappropriately":27281,"????":27282,"Ġsoar":27283,"Ġdynasty":27284,"Ġresearched":27285,"ĠYon":27286,"Ġmaple":27287,"Ġwedge":27288,"mass":27289,"ĠTM":27290,"USE":27291,"eln":27292,"Ġgloss":27293,"rigan":27294,"steen":27295,"ĠDeV":27296,"Ġdebacle":27297,"Christmas":27298,"Ġtweaks":27299,"grab":27300,"Ġprofoundly":27301,"Ġcampaigner":27302,"ĠSeal":27303,"Ġiteration":27304,"Ġsigh":27305,"Ġunfounded":27306,"Ġframing":27307,"Ġrecognizable":27308,"Ġseizing":27309,"legal":27310,"Ġproportions":27311,"omers":27312,"rek":27313,"Ġscreenshot":27314,"itsu":27315,"ĠOG":27316,"ĠYing":27317,"ĠMississ":27318,"295":27319,"Ġlandsl":27320,"Ġpsychiatrist":27321,"sov":27322,"arine":27323,"Ju":27324,"Ġflo":27325,"apple":27326,"hof":27327,"wig":27328,"ĠENT":27329,"Ġenthusiast":27330,"Such":27331,"ĠArtificial":27332,"happy":27333,"oton":27334,"ĠFram":27335,"ĠRemove":27336,"Ġsmear":27337,"Ġjer":27338,"Ġtopp":27339,"Ġimbalance":27340,"ĠWords":27341,"Ġcoffers":27342,"olina":27343,"Ġrigged":27344,"uction":27345,"idding":27346,"Ġdispensaries":27347,"Ġdermat":27348,"Ġshutter":27349,"idental":27350,"Ġcontinu":27351,"Ġhumility":27352,"Ġbulbs":27353,"Ġ207":27354,"lass":27355,"ĠBeirut":27356,"ĠUlt":27357,"urry":27358,"NEWS":27359,"Ġfeminine":27360,"Ġsimulated":27361,"Ġcharger":27362,"mom":27363,"ĠCreed":27364,"Ġwolves":27365,"essions":27366,"created":27367,"ifiers":27368,"Ġdissemin":27369,"ĠDarling":27370,"umann":27371,"Ġmarrying":27372,"Ġshred":27373,"avin":27374,"Ġbudgetary":27375,"Ġmedicinal":27376,"ulin":27377,"seys":27378,"agues":27379,"Ġextracted":27380,"ĠFlower":27381,"Ġcontinents":27382,"ĠWish":27383,"Ġdivides":27384,"ĠDing":27385,"Ġinsulation":27386,"respect":27387,"ĠABS":27388,"Ġreconcile":27389,"keep":27390,"ILD":27391,"Ġgenome":27392,"Ġ410":27393,"ĠSweep":27394,"Ġharass":27395,"Ġfrantic":27396,"ĠEE":27397,"dad":27398,"Ġaperture":27399,"rought":27400,"Ġhugs":27401,"Ġdrying":27402,"Ġoverrun":27403,"Space":27404,"Ġperiodically":27405,"Ġbrightness":27406,"atched":27407,"kee":27408,"ĠITS":27409,"ĠSpokane":27410,"ĠSeaf":27411,"Ġdesks":27412,"ĠEisen":27413,"ĠOPS":27414,"Ġcider":27415,"Ġacceler":27416,"ĠAthlet":27417,"2008":27418,"ĠGuid":27419,"ĠManip":27420,"Ġmould":27421,"Ġmisguided":27422,"Ġbrow":27423,"Ġmanagerial":27424,"Ġhugged":27425,"Ġfurnish":27426,"ĠHarmony":27427,"ĠHebrew":27428,"Ġtyph":27429,"Ġdecreases":27430,"Ġimpetus":27431,"Ġcontagious":27432,"Ġunch":27433,"209":27434,"Ġswell":27435,"ĠHuffington":27436,"Ġpubs":27437,"Ġadequ":27438,"amoto":27439,"rir":27440,"Ġpristine":27441,"Ġanx":27442,"ĠSecure":27443,"Ġenrichment":27444,"ĠVAL":27445,"Ġsummed":27446,"Ġconfidently":27447,"ĠProfit":27448,"ĠFrog":27449,"ĠLena":27450,"ĠFUN":27451,"Ġbruises":27452,"Ġuproar":27453,"coll":27454,"ĠImpro":27455,"Ġflair":27456,"146":27457,"ĠBrend":27458,"Ġ166":27459,"Ġenhances":27460,"ĠDent":27461,"Ġdegener":27462,"Ġproponents":27463,"ĠInspired":27464,"Ġramps":27465,"Ġwisely":27466,"Western":27467,"Ġtart":27468,"Ġsteered":27469,"Ġtreason":27470,"dropping":27471,"Ġtransc":27472,"ĠScarlett":27473,"ĠEzekiel":27474,"Ġpivot":27475,"esame":27476,"Show":27477,"Ġdiscontent":27478,"ĠJudith":27479,"ĠPutting":27480,"Ġblessings":27481,"Ġhardcore":27482,"Ġtray":27483,"Ġdiscern":27484,"oley":27485,"ouk":27486,"Ġwil":27487,"Ġintolerance":27488,"157":27489,"ĠRelative":27490,"ĠLynd":27491,"Ġwhistleblower":27492,"Ġincon":27493,"ĠTao":27494,"Ġindefinite":27495,"Ġguardians":27496,"Ġagon":27497,"ĠInstruments":27498,"Ġexistential":27499,"AAF":27500,"vind":27501,"Ġbrazen":27502,"condition":27503,"Ġratified":27504,"fam":27505,"ĠHin":27506,"ĠMichaels":27507,"204":27508,"ĠKats":27509,"ITS":27510,"ISON":27511,"prone":27512,"Ġboiling":27513,"Ġprolong":27514,"Ġnoticing":27515,"resident":27516,"brance":27517,"ĠFolk":27518,"Ġdesserts":27519,"uton":27520,"Web":27521,"ĠLongh":27522,"ĠReef":27523,"Going":27524,"ĠCarb":27525,"Sur":27526,"complete":27527,"ĠSloan":27528,"ĠClubs":27529,"ĠSadd":27530,"Ġshrugged":27531,"Ġedible":27532,"ĠTyp":27533,"thal":27534,"ĠRocks":27535,"ĠClive":27536,"Ġkidding":27537,"ĠCrom":27538,"ĠTurks":27539,"ĠWak":27540,"Ġeyewitness":27541,"ĠHass":27542,"collar":27543,"Ġsucceeding":27544,"Ġinsert":27545,"Ġ224":27546,"ĠBret":27547,"Ġneurological":27548,"Ġrewrite":27549,"imil":27550,"ultimate":27551,"ĠJeremiah":27552,"Ġliaison":27553,"Ġpedd":27554,"direct":27555,"ĠYi":27556,"ĠMAD":27557,"ĠOrion":27558,"oyd":27559,"ĠLOC":27560,"release":27561,"Ġinvestigates":27562,"ĠApache":27563,"û":27564,"ĠVend":27565,"Ġcynical":27566,"ĠHelm":27567,"ĠMovies":27568,"tops":27569,"Ġsinister":27570,"Ġunparalleled":27571,"Ġspikes":27572,"Ġoverlap":27573,"enstein":27574,"Ġhypocrisy":27575,"Plus":27576,"Ġexpansions":27577,"Ġvow":27578,"Ġdetonated":27579,"Ġfellowship":27580,"Ġsolicitor":27581,"ĠNewtown":27582,"mony":27583,"ĠLod":27584,"ĠDevelopers":27585,"ateg":27586,"ibus":27587,"Ġcrumbling":27588,"ĠWein":27589,"ĠKlan":27590,"gio":27591,"ĠPhys":27592,"ĠAntarctica":27593,"368":27594,"Ġseam":27595,"Ġautomobiles":27596,"ĠTEAM":27597,"bern":27598,"Ġmanic":27599,"Ġsanct":27600,"Ġequals":27601,"Est":27602,"Ġincentiv":27603,"ĠHawking":27604,"nin":27605,"Ġresonate":27606,"bid":27607,"Ġtelescope":27608,"endon":27609,"ĠVacc":27610,"Ġregretted":27611,"Ġ1300":27612,"ĠForestry":27613,"BOOK":27614,"Ġgroundwork":27615,"Ġessays":27616,"ĠIndo":27617,"Pierre":27618,"ĠChau":27619,"Ġapologies":27620,"killers":27621,"ĠMoroccan":27622,"0001":27623,"336":27624,"Ra":27625,"Ġparcels":27626,"Ġleaned":27627,"Ġthankfully":27628,"ĠSplit":27629,"Ġlobbied":27630,"ĠDegree":27631,"Ġrisking":27632,"assy":27633,"Ġsupplemental":27634,"little":27635,"Ġeclectic":27636,"Ġ206":27637,"ealing":27638,"206":27639,"Ġrepo":27640,"Ġhose":27641,"ayn":27642,"lux":27643,"Ġbeliever":27644,"')":27645,"ĠHide":27646,"vance":27647,"ĠEinstein":27648,"Ġdepos":27649,"Ġfray":27650,"Ġki":27651,"Ġinternship":27652,"ĠHou":27653,"Vis":27654,"Ġstare":27655,"ĠBreed":27656,"option":27657,"Ġvisionary":27658,"Ġmins":27659,"Ġbitten":27660,"ancies":27661,"ĠShake":27662,"Ġtemplate":27663,"Ġliner":27664,"Ġmuster":27665,"appro":27666,"ĠMubarak":27667,"esty":27668,"mong":27669,"actory":27670,"Ġheadphone":27671,"ĠPrec":27672,"Ġwaive":27673,"Ron":27674,"ĠHearing":27675,"Ġimperfect":27676,"Ġsealing":27677,"Ġlocating":27678,"Ġculminated":27679,"chio":27680,"channel":27681,"lust":27682,"ĠLowell":27683,"woods":27684,"Ġsoak":27685,"Ġforbidden":27686,"Ġdetached":27687,"unct":27688,"ĠHunger":27689,"ĠPatient":27690,"ĠPolo":27691,"Saharan":27692,"Jon":27693,"athered":27694,"ĠSignal":27695,"Six":27696,"Ġstatistically":27697,"ITH":27698,"artment":27699,"ĠCU":27700,"Ġhates":27701,"qual":27702,"Ġcapitalist":27703,"ATES":27704,"ĠDesc":27705,"Ġhandcuffed":27706,"Ġindulge":27707,"ĠReligious":27708,"German":27709,"housing":27710,"Ġdismantling":27711,"Ġconventions":27712,"dain":27713,"chairs":27714,"Ġloos":27715,"Ġknowingly":27716,"Var":27717,"Ġhusbands":27718,"eez":27719,"asion":27720,"ĠIssa":27721,"Ġswollen":27722,"Ġ1946":27723,"Ġheadlined":27724,"Chelsea":27725,"Ġignorant":27726,"Ġperipheral":27727,"Note":27728,"Ġaxe":27729,"Ġnicotine":27730,"ĠSanctuary":27731,"Ġ1917":27732,"Ġwithdrawals":27733,"uits":27734,"Hot":27735,"Ġreimburse":27736,"probably":27737,"ĠAdapt":27738,"industrial":27739,"answer":27740,"orus":27741,"ĠMell":27742,"Talk":27743,"Ġcontemplating":27744,"omas":27745,"Ġtaxis":27746,"Ġencompasses":27747,"rations":27748,"ĠLatvia":27749,"Ġhumiliating":27750,"Ġloft":27751,"tight":27752,"rium":27753,"Ġlogin":27754,"ĠBulletin":27755,"Ġturtles":27756,"EAR":27757,"349":27758,"Radio":27759,"ĠBord":27760,"151":27761,"kk":27762,"pocket":27763,"Ġdove":27764,"348":27765,"Ġtemptation":27766,"ĠCoy":27767,"those":27768,"ĠDest":27769,"ishly":27770,"rn":27771,"Ġmammals":27772,"ĠTub":27773,"arial":27774,"ĠPersian":27775,"Ġdaddy":27776,"Zen":27777,"Ġps":27778,"Ġ]":27779,"Field":27780,"adiq":27781,"Ġmeaningless":27782,"Ġprimer":27783,"Ġ1942":27784,"Ġ!":27785,"625":27786,"Ġfashionable":27787,"ĠTheft":27788,"ĠHAVE":27789,"christ":27790,"Ġperil":27791,"Ġrepealing":27792,"Ġbuff":27793,"Ġodor":27794,"Ġstalking":27795,"ĠDems":27796,"iences":27797,"Ġunilaterally":27798,"odies":27799,"ĠQuite":27800,"Ġbloodshed":27801,"Ġinfect":27802,"Ġreminders":27803,"Ġchop":27804,"Ġevapor":27805,"877":27806,"Ġhorrified":27807,"ĠFruit":27808,"rams":27809,"Ġinsecure":27810,"cester":27811,"ĠNationwide":27812,"Ġmocking":27813,"Ret":27814,"Ġcomplying":27815,"sav":27816,"Ġali":27817,"Family":27818,"Ĩ":27819,"Ġdishonest":27820,"Ġincorrectly":27821,"LOAD":27822,"ĠGand":27823,"ourcing":27824,"obby":27825,"ĠPetersen":27826,"Something":27827,"Ġravaged":27828,"limited":27829,"Ġrituals":27830,"ĠKnowledge":27831,"ĠUtility":27832,"Ġdoom":27833,"Ġsheds":27834,"ĠGael":27835,"ĠMillennials":27836,"ĠMonthly":27837,"Ġdomination":27838,"Ġrapport":27839,"spot":27840,"ĠPrest":27841,"ĠHA":27842,"ushes":27843,"Ġtact":27844,"Richard":27845,"Ġgritty":27846,"Does":27847,"ĠTNT":27848,"Ġdownfall":27849,"Wood":27850,"ĠPrediction":27851,"ĠPour":27852,"ĠFraud":27853,"ĠSyndrome":27854,"166":27855,"Ġliteral":27856,"Ġaddict":27857,"ĠLoud":27858,"hens":27859,"ĠAccounts":27860,"distance":27861,"Ġclassmate":27862,"Ġsalv":27863,"Ġunlucky":27864,"Ġpartying":27865,"ĠKou":27866,"ĠSNAP":27867,"%-":27868,"Ġdelegate":27869,"Ġstrikers":27870,"ĠSlate":27871,"Ġarticulate":27872,"390":27873,"Ġinqu":27874,"Ġdiscredit":27875,"ĠPriv":27876,"ploy":27877,"ĠMarketplace":27878,"ĠTune":27879,"visor":27880,"Ġwrestle":27881,"Ġkindly":27882,"ĠCollect":27883,"Ġcirc":27884,"ĠRemain":27885,"Ġ192":27886,"contin":27887,"Ġ325":27888,"Ġsevered":27889,"isations":27890,"Ġmuddy":27891,"Ġtaxing":27892,"ĠRepresent":27893,"ĠSty":27894,"rology":27895,"ĠJudges":27896,"ĠBronze":27897,"ĠApplic":27898,"Ġarrow":27899,"consuming":27900,"ĠFeaturing":27901,"Ġspies":27902,"Ġnoises":27903,"ĠColony":27904,"lost":27905,"Ġopp":27906,"Ġdeem":27907,"ĠGarc":27908,"icent":27909,"ptroller":27910,"liest":27911,"Ġoutward":27912,"ĠUser":27913,"Ġintimidate":27914,"156":27915,"Ġjab":27916,"ANGE":27917,"Jay":27918,"ĠPoverty":27919,"ACA":27920,"Ġrife":27921,"Ġfaint":27922,"ĠAcceler":27923,"tall":27924,"ĠUNITED":27925,"ĠFighter":27926,"ĠGilmore":27927,"Ġsod":27928,"amura":27929,"Ġpredictive":27930,"Ġpolish":27931,"ĠDD":27932,"Ġfabricated":27933,"ĠDag":27934,"Ġfatty":27935,"Ġplague":27936,"Ġexhib":27937,"ĠAdvent":27938,"Ġ1941":27939,"ERSON":27940,"initely":27941,"Ġloneliness":27942,"ĠEquality":27943,"Ġuntrue":27944,"Ġonlook":27945,"Ġfragmented":27946,"ruce":27947,"Ġdistrust":27948,"Ġscal":27949,"ĠCors":27950,"Ġrobbing":27951,"cultural":27952,"clusion":27953,"ĠObi":27954,"sels":27955,"ĠEvidence":27956,"ĠSac":27957,"Ġfragments":27958,"Ġflipping":27959,"ĠRabbit":27960,"Ġdisproportionate":27961,"ĠCreat":27962,"Ġlabeling":27963,"ĠGri":27964,"Ġ161":27965,"ĠEditors":27966,"holm":27967,"adr":27968,"Ĭ":27969,"tailed":27970,"Ġrenters":27971,"Ġnoodles":27972,"Ġcompetence":27973,"Ġpanc":27974,"uration":27975,"Ġacids":27976,"Ġconfid":27977,"rival":27978,"AAA":27979,"kson":27980,"Ġrecreate":27981,"153":27982,"Ġ164":27983,"ĠOlympia":27984,"ĠUnlimited":27985,"ĠShock":27986,"ĠTeaching":27987,"ĠHouses":27988,"resso":27989,"ĠMaw":27990,"Ġreplen":27991,"Ġprotestors":27992,"bey":27993,"Ġsurve":27994,"Ġemphasizes":27995,"223":27996,"ĠEsther":27997,"ĠNikol":27998,"Ġprosecutions":27999,"ĠFreed":28000,"Ġposs":28001,"OTE":28002,"ĠPrayer":28003,"Ġsquarely":28004,"Ġtir":28005,"adv":28006,"Ġbogus":28007,"Ġwrongful":28008,"Ġembell":28009,"Ġseldom":28010,"Ġpossesses":28011,"Er":28012,"ĠAlternatively":28013,"Ġinstituted":28014,"rr":28015,"Ġvocational":28016,"eval":28017,"ĠComics":28018,"Ġstumbling":28019,"335":28020,"Ġdragon":28021,"vine":28022,"services":28023,"Ġcrit":28024,"irens":28025,"Ġlayered":28026,"orb":28027,"Ġdominates":28028,"ĠMarx":28029,"period":28030,"avering":28031,"Ġbrigade":28032,"Ġchem":28033,"ĠEvolution":28034,"ĠSuk":28035,"Ġ209":28036,"ĠMalk":28037,"Ġtallest":28038,"recogn":28039,"ĠCraw":28040,"Ġell":28041,"ĠCaesar":28042,"php":28043,"ĠSurvivors":28044,"sd":28045,"itsch":28046,"ambo":28047,"Ġashore":28048,"acular":28049,"rost":28050,"Ġmurderer":28051,"Ġcasts":28052,"ĠEconomist":28053,"ĠWeapons":28054,"Ġnostalgic":28055,"Skip":28056,"REAM":28057,"Pa":28058,"Ġjournals":28059,"ĠSitting":28060,"Union":28061,"Att":28062,"ĠMaxim":28063,"Ġpurportedly":28064,"Ġrespecting":28065,"ĠMAX":28066,"seed":28067,"Ġjuicy":28068,"ĠGallup":28069,"Ġmileage":28070,"adier":28071,"Ġbod":28072,"DER":28073,"Ġsummers":28074,"icult":28075,"ipl":28076,"ĠDeng":28077,"Ġsmells":28078,"Ġivory":28079,"Ġ255":28080,"Id":28081,"DEN":28082,"Ġ159":28083,"Due":28084,"ĠLighting":28085,"ĠSurely":28086,"Ġsund":28087,"ĠKessler":28088,"immigrant":28089,"Ġtragedies":28090,"ĠOxy":28091,"ĠFixed":28092,"ĠBalk":28093,"Ġoriented":28094,"pher":28095,"Ġkitchens":28096,"Ġhips":28097,"Ġtweak":28098,"Ġtuna":28099,"ĠCla":28100,"Ġdislike":28101,"ussy":28102,"Ġoutnumbered":28103,"Ġplumbing":28104,"Ġcogn":28105,"ĠThrow":28106,"ĠTER":28107,"urally":28108,"ĠMurd":28109,"Ġcreamy":28110,"Ġresiding":28111,"otics":28112,"Ġfingerprints":28113,"!,":28114,"Ġpaused":28115,"ĠMilo":28116,"Ġhomosexuality":28117,"Ġresponsibly":28118,"iop":28119,"UCT":28120,"Ġsucceeds":28121,"ĠCRE":28122,"ĠThatcher":28123,"Ġcurrents":28124,"Ġarises":28125,"Ġwaterproof":28126,"Ġamp":28127,"ĠClaims":28128,"177":28129,"Ġsubpoen":28130,"Ġvig":28131,"ĠNeuro":28132,"Ġblur":28133,"ĠPaint":28134,"campus":28135,"Ġtoughness":28136,"ĠButton":28137,"Neal":28138,"ĠDEN":28139,"ĠNir":28140,"ĠAxel":28141,"EEP":28142,"Ġpint":28143,"Ġagile":28144,"odor":28145,"Ġessentials":28146,"ĠMov":28147,"ĠVenezuel":28148,"Ġexchanging":28149,"ĠNegative":28150,"Mil":28151,"Key":28152,"Ġbuzzing":28153,"ĠStew":28154,"Ġrebuke":28155,"Ġdepl":28156,"ĠKoz":28157,"Ġ163":28158,"Ġshines":28159,"NZ":28160,"Ġcarnage":28161,"cases":28162,"Ġwarmed":28163,"ĠGreenwich":28164,"College":28165,"Ġneedy":28166,"301":28167,"ĠMü":28168,"culation":28169,"Ġ440":28170,"425":28171,"atories":28172,"Ġsatisfactory":28173,"ĠFib":28174,"ĠElim":28175,"developed":28176,"Ġvacations":28177,"Ġpeculiar":28178,"Ġvets":28179,"onest":28180,"ĠPug":28181,"Ġlifestyles":28182,"zzi":28183,"Ġprovoke":28184,"bah":28185,"arger":28186,"ĠVirt":28187,"Sales":28188,"annel":28189,"ĠMeth":28190,"ivating":28191,"Ġrevoke":28192,"ĠAgenda":28193,"ĠIch":28194,"Ġsensit":28195,"ĠAzerbai":28196,"ĠBombay":28197,"Ġuncon":28198,"river":28199,"Ġapr":28200,"actic":28201,"ĠSubaru":28202,"Ġbanquet":28203,"Ġcontradict":28204,"tek":28205,"Football":28206,"igent":28207,"Ġreintrodu":28208,"ĠInsight":28209,"Ġsystematically":28210,"Ġboun":28211,"ĠFishing":28212,"Ġstri":28213,"ĠOB":28214,"Ġstair":28215,"Wall":28216,"ĠAllow":28217,"Ġcaramel":28218,"169":28219,"Ġcafes":28220,"Ġcalcium":28221,"Ġ169":28222,"Ġportraying":28223,"Ġdiscriminate":28224,"Ġunrestricted":28225,"Ġmant":28226,"Ġscarcity":28227,"Ġfeminism":28228,"ĠJJ":28229,"ĠOversight":28230,"ĠCue":28231,"Ġinexperienced":28232,"Ġdrafts":28233,"Ġ1939":28234,"nm":28235,"forest":28236,"ĠHonour":28237,"Ġceramic":28238,"Ġdownstairs":28239,"Ġboon":28240,"Ġmorality":28241,"Ġhorrifying":28242,"Rad":28243,"justice":28244,"Ġmosques":28245,"Ġcurfew":28246,"Ġsurrogate":28247,"Ġreimb":28248,"enth":28249,"pressure":28250,"beam":28251,"Ġwhirlwind":28252,"ĠRecession":28253,"ĠTours":28254,"Ġclusters":28255,"ĠQuant":28256,"Jonathan":28257,"project":28258,"Ġ777":28259,"ĠNOAA":28260,"abis":28261,"Ġdeficiencies":28262,"Ġsuicides":28263,"Ġfoothold":28264,"ĠYah":28265,"imeter":28266,"URN":28267,"Ġcultivate":28268,"Ġnoisy":28269,"Ġ1951":28270,"Ġpressuring":28271,"ĠDeals":28272,"ĠProphet":28273,"ĠWikipedia":28274,"INESS":28275,"ĠShine":28276,"ĠCalled":28277,"ĠSole":28278,"ĠZhou":28279,"Ġasphalt":28280,"armac":28281,"ĠScorp":28282,"ĠUnknown":28283,"ĠPAT":28284,"Heart":28285,"Ġguessed":28286,"Ġsushi":28287,"Ġheartbeat":28288,"Ġconcent":28289,"eret":28290,"plin":28291,"Ġweeds":28292,"Ġbombed":28293,"ĠTerrorism":28294,"Rich":28295,"Ġblades":28296,"Ġhaunt":28297,"Ġstorefront":28298,"Ġthwarted":28299,"access":28300,"ĠLydia":28301,"LINE":28302,"Ġpregnancies":28303,"Ġripping":28304,"ĠBelieve":28305,"spoken":28306,"inian":28307,"sed":28308,"ĠBrass":28309,"econom":28310,"current":28311,"Ġvoc":28312,"Ġmodeled":28313,"Ġpeppers":28314,"otech":28315,"ĠOption":28316,"Connell":28317,"isel":28318,"Ġcompel":28319,"Ġjuveniles":28320,"ĠNET":28321,"ĠEXP":28322,"Ġparadigm":28323,"Des":28324,"Ġ204":28325,"employed":28326,"Ġdurability":28327,"Ġ245":28328,"Ġbillionaires":28329,"violent":28330,"ĠCooperative":28331,"TOP":28332,"ĠGarry":28333,"ĠSoldiers":28334,"Ġdared":28335,"Ġvoucher":28336,"Ġblends":28337,"gue":28338,"Ġadventurous":28339,"Ġorganisms":28340,"Ġgaze":28341,"Ġcrap":28342,"Coach":28343,"omon":28344,"ĠWheels":28345,"ĠGrayson":28346,"Ġrecy":28347,"grave":28348,"Ġallergic":28349,"Ġreef":28350,"Ġbeginnings":28351,"ĠRuff":28352,"Ġclout":28353,"structed":28354,"315":28355,"ĠGeorgian":28356,"say":28357,"Ġsprings":28358,"ĠAsus":28359,"Ġrepaid":28360,"ĠGuys":28361,"ticket":28362,"Ġunb":28363,"ĠCertificate":28364,"ĠSTORY":28365,"cin":28366,"Ġpassions":28367,"Ġmediocre":28368,"Ġlackluster":28369,"vernight":28370,"kids":28371,"ĠWife":28372,"politics":28373,"ĠHimal":28374,"oddy":28375,"ensus":28376,"ĠGustav":28377,"binding":28378,"ĠIndividuals":28379,"Ġmaize":28380,"Ġhoop":28381,"ĠChanging":28382,"Ġlessen":28383,"Ġarranging":28384,"ĠFukushima":28385,"ĠTrying":28386,"ĠMage":28387,"Ġskeleton":28388,"ĠTec":28389,"289":28390,"Ġrecl":28391,"ĠFIL":28392,"Gs":28393,"ĠOdyssey":28394,"ĠProcessing":28395,"ilion":28396,"Ġsubsidized":28397,"Ġabdomen":28398,"Ġanalyse":28399,"music":28400,"clean":28401,"Ġunfinished":28402,"Ġdownloads":28403,"Ġmorally":28404,"Ġ218":28405,"Ġtrib":28406,"Keep":28407,"ĠSER":28408,"FY":28409,"Ġaust":28410,"Ġdiscovers":28411,"ĠGROUP":28412,"ĠMachines":28413,"Ġeroded":28414,"Ġominous":28415,"Ġbrightly":28416,"IME":28417,"Ġwicked":28418,"ĠTrou":28419,"Ġvisions":28420,"Kay":28421,"reported":28422,"Ġbog":28423,"ĠQuin":28424,"ĠSigma":28425,"urned":28426,"ixon":28427,"Ġharming":28428,"Ġcheckout":28429,"inet":28430,"much":28431,"Ġcherish":28432,"ĠByrd":28433,"ĠSamson":28434,"WP":28435,"orders":28436,"boa":28437,"Ġbron":28438,"oki":28439,"ĠRR":28440,"Ġsuitcase":28441,"Ġfeathers":28442,"ĠChristy":28443,"Islamic":28444,"Ġamusement":28445,"ĠISS":28446,"intensive":28447,"Qaida":28448,"Ġneurons":28449,"Ġwagon":28450,"ĠTek":28451,"Ġdolls":28452,"ĠShoot":28453,"Ġunderestimate":28454,"Ġstreamlined":28455,"Ġfractures":28456,"Ġcathedral":28457,"Ġeliminates":28458,"helle":28459,"Ġcitrus":28460,"risis":28461,"Ġimpecc":28462,"istries":28463,"ĠHog":28464,"vote":28465,"pas":28466,"Ġassign":28467,"ĠSongs":28468,"ĠMiracle":28469,"kas":28470,"zynski":28471,"Ġcrane":28472,"Ġadulthood":28473,"ĠBenefit":28474,"ĠGrimes":28475,"Ġpayday":28476,"ablished":28477,"Ġcenterpiece":28478,"Ġhassle":28479,"ĠAppalachian":28480,"follow":28481,"Ġ290":28482,"ĠRL":28483,"ĠDoe":28484,"Ġacclaim":28485,"Ġlevied":28486,"Ġtossing":28487,"Ġcarrots":28488,"ĠDarius":28489,"161":28490,"Ġoffspring":28491,"ĠJury":28492,"ĠTPP":28493,"CAP":28494,"Ġenvironmentalists":28495,"Ġrays":28496,"267":28497,"Ser":28498,"Ġcaptivity":28499,"Ġappellate":28500,"ĠElectricity":28501,"ĠEnough":28502,"232":28503,"Ġfisher":28504,"Ġbrilliance":28505,"Ġpraises":28506,"aunch":28507,"Ġsolicitation":28508,"Ġadolescent":28509,"Ġinferior":28510,"checks":28511,"Set":28512,"Ġmutations":28513,"ĠLatinos":28514,"ĠLicense":28515,"ĠAme":28516,"hirt":28517,"ĠChun":28518,"Ġdeeds":28519,"ldon":28520,"Ġmammoth":28521,"Ġturtle":28522,"rule":28523,"Ken":28524,"Ġvoyage":28525,"gram":28526,"Ġconquer":28527,"Ġretaliate":28528,"ĠPJ":28529,"ĠViking":28530,"Ġsafegu":28531,"ordinary":28532,"ĠArbit":28533,"ĠDigest":28534,"Die":28535,"Ġbureaucratic":28536,"Ġhonorable":28537,"Ġcafeteria":28538,"ĠRAF":28539,"ĠPlaces":28540,"ĠKlu":28541,"Cam":28542,"ĠBiology":28543,"ĠCycling":28544,"imore":28545,"Ġstripping":28546,"Ġwarriors":28547,"Ġbursting":28548,"Ġlapse":28549,"Ġversa":28550,"Ġclicked":28551,"ogh":28552,"Ġ\"â̦":28553,"Ġdiligently":28554,"ĠMiy":28555,"ĠCorpus":28556,"Ġredef":28557,"Ġ176":28558,"ĠInstrument":28559,"ĠOECD":28560,"Ġstro":28561,"Ġmicrowave":28562,"Santa":28563,"Ġpars":28564,"Social":28565,"iffe":28566,"itability":28567,"Equ":28568,"Ġnud":28569,"legged":28570,"ĠTud":28571,"lav":28572,"Ġinterpreter":28573,"alcohol":28574,"Ġimposition":28575,"Ġdwelling":28576,"Ġ1400":28577,"].\"":28578,"ĠIw":28579,"RM":28580,"Ġ555":28581,"Ġparalyzed":28582,"mind":28583,"rans":28584,"adin":28585,"French":28586,"Ġliar":28587,"Represent":28588,"Ġstrapped":28589,"orate":28590,"Ġrigging":28591,"Ġinterrog":28592,"Ġsparse":28593,"ento":28594,"ĠThem":28595,"Ġbaseless":28596,"Ġbuildup":28597,"Ġundecided":28598,"isms":28599,"Ġabduct":28600,"Ġflowed":28601,"Ġprestige":28602,"Ġhacks":28603,"Ġpanicked":28604,"Cast":28605,"ĠKrish":28606,"umat":28607,"Ġantique":28608,"Ġbitters":28609,"Ġentitlement":28610,"Ġstandby":28611,"Ten":28612,"said":28613,"ĠConditions":28614,"events":28615,"Ġobey":28616,"Ġshortest":28617,"etting":28618,"Ġconcentrating":28619,"ĠNeeds":28620,"234":28621,"Ġintrigued":28622,"enting":28623,"ĠXen":28624,"ĠAlger":28625,"seekers":28626,"anish":28627,"Ġ172":28628,"âĢij":28629,"Ġsilicon":28630,"Ġstandardized":28631,"ĠFountain":28632,"essel":28633,"Ġapproves":28634,"Ġsucked":28635,"gone":28636,"ĠBriggs":28637,"brother":28638,"Ġartisan":28639,"ĠContinuing":28640,"vir":28641,"Ġsubmarines":28642,"ĠInk":28643,"program":28644,"ĠNexus":28645,"ĠCoco":28646,"Ġconceptual":28647,"Ġmatt":28648,"aughters":28649,"Ġbaths":28650,"Ġbeaut":28651,"ĠEmerald":28652,"ĠParties":28653,"248":28654,"completely":28655,"esan":28656,"Ġdiarrhea":28657,"Ġ1100":28658,"borg":28659,"ĠBroken":28660,"Ġreiterate":28661,"Ġsorting":28662,"ONS":28663,"Ġ177":28664,"Ġadmin":28665,"ĠMandatory":28666,"Ġsymptom":28667,"Ġpaced":28668,"Remember":28669,"Ġabdominal":28670,"Ġswapped":28671,"Ġtransitions":28672,"IFA":28673,"pretty":28674,"ĠJC":28675,"Ġallotted":28676,"ĠShows":28677,"Arthur":28678,"Ġsoften":28679,"dozen":28680,"Mah":28681,"Ġextinguished":28682,"Ġreelection":28683,"Ġdeployments":28684,"Ġsturdy":28685,"Ġdownright":28686,"Ġjams":28687,"ĠOptim":28688,"Ġhumiliation":28689,"cd":28690,"Ġbunk":28691,"sie":28692,"NAT":28693,"ilies":28694,"Ġimplying":28695,"Ġ<":28696,"Ġhomepage":28697,"242":28698,"Ġey":28699,"Ġdict":28700,"Ġslender":28701,"Ġforehead":28702,"ĠCecil":28703,"Ġshrunk":28704,"ĠExit":28705,"Ġexpressly":28706,"Ġseals":28707,"ĠThiel":28708,"umni":28709,"Ġdamning":28710,"ĠVS":28711,"ulum":28712,"BBC":28713,"URES":28714,"Ġinhal":28715,"Ġfont":28716,"Ġworkplaces":28717,"ĠPUBLIC":28718,"ĠHorror":28719,"Bs":28720,"arta":28721,"ĠBread":28722,"Ġstret":28723,"Ġethos":28724,"Ġstabilized":28725,"Ġconvers":28726,"ĠInqu":28727,"Ġjudgments":28728,"ĠContemporary":28729,"221":28730,"Ġzombie":28731,"VD":28732,"Ġmisunderstanding":28733,"Ġspam":28734,"ĠPapers":28735,"Ġcrocod":28736,"ENA":28737,"ĠJuven":28738,"ĠAbram":28739,"Ġbursts":28740,"atto":28741,"Ġturbulence":28742,"tty":28743,"sexual":28744,"Ġwaning":28745,"community":28746,"Government":28747,"Ġtranspl":28748,"??":28749,"Getting":28750,"ĠRare":28751,"prime":28752,"Ġlooting":28753,"Ġvalidate":28754,"ĠCreating":28755,"ĠCorruption":28756,"Ġspit":28757,"ĠFavorite":28758,"Kar":28759,"Ġadaptive":28760,"ĠART":28761,"Ġtorso":28762,"ĠIdent":28763,"Ġsubdivision":28764,"azo":28765,"Ġconsequently":28766,"Ġrotate":28767,"ĠWit":28768,"Ġestab":28769,"managed":28770,"ĠBound":28771,"Ġskim":28772,"198":28773,"ĠCorona":28774,"ĠâĿ":28775,"Ġwording":28776,"buck":28777,"iph":28778,"patrick":28779,"Help":28780,"flying":28781,"Ġracer":28782,"Ġfisherman":28783,"____":28784,"ackers":28785,"Ġpersisted":28786,"Ġmyths":28787,"Ġgarn":28788,"ologue":28789,"ĠApprentice":28790,"Ġhereby":28791,"Ġvulgar":28792,"ĠGinger":28793,"Ġtrait":28794,"ĠIdea":28795,"Ġfigur":28796,"ĠSchwarzenegger":28797,"ĠSafari":28798,"178":28799,"ĠAsians":28800,"775":28801,"ĠTriangle":28802,"Ġdemons":28803,"ĠOv":28804,"Ġanime":28805,"Broad":28806,"Ġmolecule":28807,"Ġdeposition":28808,"Ġbiodiversity":28809,"modern":28810,"Ġwallets":28811,"NH":28812,"planes":28813,"rats":28814,"ĠSeed":28815,"Ġ174":28816,"umed":28817,"Ġtouting":28818,"gre":28819,"ĠSEAL":28820,"Ġperpetrator":28821,"ĠGerrard":28822,"Ġallocations":28823,"Ġworsh":28824,"payment":28825,"bett":28826,"ĠIssues":28827,"ennis":28828,"eering":28829,"ĠMV":28830,"yi":28831,"hak":28832,"Ġ167":28833,"Ġorchestr":28834,"224":28835,"Ġsup":28836,"Ġleukemia":28837,"osures":28838,"575":28839,"Ġnoticeably":28840,"Ġparamilitary":28841,"ĠTHERE":28842,"Ġwaged":28843,"igrated":28844,"Ġdocumentaries":28845,"Ġsenseless":28846,"Ġbark":28847,"Ġgenetics":28848,"ĠAlbania":28849,"ĠCrypt":28850,"ĠSEO":28851,"Ġnightly":28852,"Ġfaults":28853,"279":28854,"ĠFerdinand":28855,"ĠSylv":28856,"Ġcalam":28857,"ĠMuller":28858,"ĠSpielberg":28859,"Boy":28860,"ĠUrs":28861,"Ġrug":28862,"Ġcolonies":28863,"ĠFunk":28864,"Ġlyric":28865,"ĠATT":28866,"anni":28867,"ĠNB":28868,"Ġthorn":28869,"Ġpertinent":28870,"188":28871,"Ġpartic":28872,"Head":28873,"Pad":28874,"Palestinian":28875,"ĠBarg":28876,"anical":28877,"beaut":28878,"onge":28879,"Ġgigantic":28880,"travel":28881,"Ġdownloading":28882,"Contin":28883,"whe":28884,"plane":28885,"Wil":28886,"IDA":28887,"Ele":28888,"ĠPAL":28889,"Ġbeams":28890,"ĠProud":28891,"ramer":28892,"Ġindependents":28893,"Ġtranslator":28894,"ĠBrah":28895,"ĠTrooper":28896,"aylor":28897,"pson":28898,"Ġguise":28899,"Ġdiffering":28900,"Ġtopple":28901,"ichen":28902,"ĠSeymour":28903,"deg":28904,"ĠMixed":28905,"Ġinvoluntary":28906,"Ġcountdown":28907,"ĠNarc":28908,"ĠAdults":28909,"Ġcoaster":28910,"Ġ342":28911,"ĠAcquisition":28912,"mone":28913,"Ġpenchant":28914,"Brian":28915,"Gh":28916,"Pres":28917,"enei":28918,"Ġreefs":28919,"ĠMaver":28920,"Ġdevised":28921,"ĠIMP":28922,"vict":28923,"Ġagility":28924,"ĠPayments":28925,"respected":28926,"Ġtuning":28927,"ĠFACE":28928,"actions":28929,"Ġyell":28930,"ĠLeaving":28931,"Ġsnowy":28932,"Saudi":28933,"Ġformations":28934,"Ġairborne":28935,"Ġdeed":28936,"ooks":28937,"Ġnamesake":28938,"Ġpunishable":28939,"Ġagg":28940,"oths":28941,"ĠFamous":28942,"ĠDeposit":28943,"Ġinduce":28944,"189":28945,"Ġhesitation":28946,"ĠBrowse":28947,"ople":28948,"reys":28949,"henko":28950,"Ġsecretaries":28951,"Ġintersections":28952,"Ġdiminishing":28953,"ints":28954,"Ġ1934":28955,"ĠInvestigative":28956,"ĠMexicans":28957,"ĠMahar":28958,"ibur":28959,"Ġstocking":28960,"gross":28961,"Ġasbestos":28962,"Ġagitation":28963,"ĠBST":28964,"Overall":28965,"Ġheats":28966,"ĠSpan":28967,"Ġimped":28968,"Ġtrusting":28969,"Pet":28970,"Ġegregious":28971,"Ġcomedians":28972,"zin":28973,"WIN":28974,"Ġchats":28975,"Ġexploding":28976,"ĠTort":28977,"Ġembraces":28978,"Ġneut":28979,"verson":28980,"ouncing":28981,"ĠFiber":28982,"Ġbaker":28983,"Ġunstoppable":28984,"ĠDial":28985,"cars":28986,"Marc":28987,"164":28988,"volt":28989,"Ġceased":28990,"EFF":28991,"Ġpromoters":28992,"Ġcircuits":28993,"Ġexcise":28994,"Ġseminars":28995,"ĠTiny":28996,"ĠImportant":28997,"ĠTup":28998,"Ġoutburst":28999,"ĠSOC":29000,"ĠWWII":29001,"Ġmerging":29002,"highly":29003,"ĠGmail":29004,"ozy":29005,"ĠKB":29006,"Ġlaboratories":29007,"knit":29008,"ĠClosed":29009,"Ġsurrounds":29010,"ĠVet":29011,"Ġcere":29012,"vard":29013,"ĠDeadpool":29014,"text":29015,"Ġinfusion":29016,"Ġcuc":29017,"ĠAtl":29018,"Ġbustling":29019,"ĠSettings":29020,"Ġ193":29021,"ryan":29022,"184":29023,"186":29024,"Ġswat":29025,"rane":29026,"Ġepidem":29027,"lando":29028,"Ġtestifying":29029,"Ġmoistur":29030,"ĠTens":29031,"Ġexemplary":29032,"ĠPump":29033,"Ġforcefully":29034,"ĠFare":29035,"Ġcomplicate":29036,"Fe":29037,"Di":29038,"ĠThy":29039,"Ġcompartment":29040,"ĠFiesta":29041,"Would":29042,"fitted":29043,"Ġcull":29044,"Ġcomedic":29045,"cyl":29046,"Ġwhichever":29047,"stic":29048,"Ġ213":29049,"Ġspills":29050,"Ġplasma":29051,"Ġdisguise":29052,"ĠCompass":29053,"ĠImmun":29054,"Ġscarf":29055,"Ġdisperse":29056,"Ġreckon":29057,"ĠTaste":29058,"root":29059,"ĠGAME":29060,"xx":29061,"Ġhomophobic":29062,"Ġdimin":29063,"/#":29064,"Ġ178":29065,"Ġgems":29066,"lio":29067,"informed":29068,"ample":29069,"XT":29070,"Ġrepression":29071,"ĠTakes":29072,"Ġhabitats":29073,"Ġmountainous":29074,"ĠMcH":29075,"ENC":29076,"Mobil":29077,"Ġreel":29078,"ĠTI":29079,"Ġauthorize":29080,"ĠAccept":29081,"ĠMetall":29082,"CCC":29083,"Ġwetlands":29084,"ĠWitch":29085,"heading":29086,"Ġintervals":29087,"ĠWitt":29088,"hene":29089,"Ġcomforting":29090,"ollen":29091,"ERN":29092,"ooky":29093,"etch":29094,"Ġassailant":29095,"announced":29096,"elin":29097,"plate":29098,"920":29099,"eating":29100,"induced":29101,"ĠIgor":29102,"ĠAmph":29103,"Ġpatented":29104,"posing":29105,"Ġextraordinarily":29106,"Ġfearless":29107,"mortem":29108,"ĠDraw":29109,"ĠRend":29110,"Son":29111,"ridden":29112,"ĠAdvantage":29113,"Ġ305":29114,"Ġroared":29115,"Str":29116,"Ġradioactive":29117,"Ġslur":29118,"ĠRear":29119,"affles":29120,"ĠPon":29121,"Ġost":29122,"umbs":29123,"ĠSlack":29124,"athom":29125,"baby":29126,"213":29127,"ĠSpending":29128,"ĠAccordingly":29129,"Ġclocks":29130,"archs":29131,"Ġsmugg":29132,"Ġmastermind":29133,"ĠKlaus":29134,"alpha":29135,"Ġspoiled":29136,"264":29137,"Pod":29138,"Ġflared":29139,"Ġcomposure":29140,"ĠCAM":29141,"Ġrestruct":29142,"Ġtasted":29143,"ĠKimber":29144,"Ġupheaval":29145,"CHAR":29146,"ĠGeo":29147,"itations":29148,"Ġbegged":29149,"UX":29150,"Authorities":29151,"ĠEngel":29152,"ĠHOME":29153,"Ġratt":29154,"Ġquickest":29155,"475":29156,"ĠSting":29157,"ĠICO":29158,"yu":29159,"Ġdefy":29160,"Prince":29161,"cards":29162,"Ġovertake":29163,"Ġretrieved":29164,"ĠNavajo":29165,"Ġpastry":29166,"ĠLange":29167,"Ġentrusted":29168,"ĠCull":29169,"aler":29170,"Ġdinosaurs":29171,"Ġbragging":29172,"ĠAlley":29173,"meier":29174,"ĠAssuming":29175,"Ġana":29176,"omatic":29177,"Brend":29178,"acted":29179,"Ġexhaustive":29180,"Ġunfit":29181,"Several":29182,"gap":29183,"Ġtet":29184,"228":29185,"Sk":29186,"302":29187,"Ġdeflect":29188,"Ġ179":29189,"226":29190,"Ġadorned":29191,"ĠSpread":29192,"Ġthirds":29193,"ĠSemi":29194,"Ġdescend":29195,"Ġaccumulate":29196,"Ġflavours":29197,"Ġinvoked":29198,"ĠAnge":29199,"Ġprofess":29200,"unks":29201,"ĠKickstarter":29202,"ENTS":29203,"ĠRw":29204,"Ġchatter":29205,"ĠPOS":29206,"Ġcollaborators":29207,"ĠEW":29208,"ĠMarkus":29209,"Ġimpair":29210,"Ġbolt":29211,"Ġglue":29212,"Ġloosely":29213,"ĠSUM":29214,"Ġhydraulic":29215,"Ġpredatory":29216,"Charles":29217,"cond":29218,"Ġspawned":29219,"Fr":29220,"174":29221,"Ġtame":29222,"Ġaggrav":29223,"Ġchrist":29224,"true":29225,"ivable":29226,"Ġhen":29227,"ĠKut":29228,"Ġskyrocket":29229,"Ġeg":29230,"Ġveterinarian":29231,"ĠStats":29232,"Kit":29233,"Ġbiologist":29234,"Spe":29235,"Ġantenna":29236,"Ġsust":29237,"fill":29238,"Ġpayload":29239,"227":29240,"Ġlivestream":29241,"ORN":29242,"ĠAbel":29243,"Ġdeception":29244,"ussen":29245,"Britain":29246,"partisan":29247,"Ġbrowse":29248,"Ġmelan":29249,"172":29250,"ĠNumerous":29251,"ĠMansion":29252,"Ġassailants":29253,"£":29254,"olerance":29255,"Ġdirectives":29256,"ĠInteg":29257,"zers":29258,"Ġduct":29259,"ĠHonestly":29260,"ĠImmediately":29261,"ixty":29262,"Ġdiagnose":29263,"Ġimplication":29264,"ĠiPads":29265,"testers":29266,"riots":29267,"Ġrespons":29268,"XP":29269,"pes":29270,"875":29271,"Ġ199":29272,"ĠPoe":29273,"303":29274,"Ġailments":29275,"ĠCarrier":29276,"Ġeject":29277,"Ġrestroom":29278,"Drive":29279,"manufact":29280,"Ġcompens":29281,"Ġglossy":29282,"Ġrecovers":29283,"Ġthinner":29284,"Ġdescendants":29285,"antle":29286,"Beaut":29287,"competitive":29288,"ĠRobotics":29289,"Ġpretext":29290,"233":29291,"Ġflanked":29292,"ĠâĻ":29293,"Ġguts":29294,"Ġwee":29295,"Ġaccents":29296,"mc":29297,"Ġgrapp":29298,"ĠNathaniel":29299,"ĠMikhail":29300,"Ġobligated":29301,"Ġmanoeuv":29302,"Ġechoing":29303,"Ġ189":29304,"ĠDevice":29305,"isd":29306,"Ġloopholes":29307,"Ġbehold":29308,"ĠMerry":29309,"Ġfunn":29310,"Ġnuanced":29311,"667":29312,"ELY":29313,"ĠTasmania":29314,"ĠSaddam":29315,"Ġquizz":29316,"military":29317,"cient":29318,"Ġoutlaw":29319,"ĠAudit":29320,"ĠBoom":29321,"Ġcrim":29322,"asured":29323,"ĠApps":29324,"ĠKush":29325,"onica":29326,"Ġamput":29327,"signed":29328,"ĠMEN":29329,"ĠRosenberg":29330,"Ġvide":29331,"ĠDirection":29332,"Ġfountain":29333,"TW":29334,"ĠCARE":29335,"Ġreassured":29336,"Food":29337,"Ġdepressing":29338,"ĠWhilst":29339,"reatment":29340,"Ġspelled":29341,"Ġhipp":29342,"ĠPeach":29343,"hound":29344,"Harry":29345,"Ġcatalogue":29346,"ĠCommun":29347,"Ġnurture":29348,"rush":29349,"ĠPopulation":29350,"ĠNTS":29351,"ĠElectrical":29352,"rounded":29353,"Ġblending":29354,"Ġ223":29355,"alities":29356,"ilation":29357,"eas":29358,"estate":29359,"Ġnarrowing":29360,"ĠTreasure":29361,"192":29362,"Ġwhims":29363,"Ġrobber":29364,"Ġsoaked":29365,"nian":29366,"Ġcongest":29367,"ĠYosemite":29368,"notes":29369,"icer":29370,"ĠGuardians":29371,"ĠFrozen":29372,"Ġ187":29373,"Ġhandcuffs":29374,"Someone":29375,"Ġenshr":29376,"gency":29377,"ĠCube":29378,"Ġprinters":29379,"Ġundercut":29380,"ĠSolution":29381,"rosis":29382,"ĠHumanity":29383,"Ġsucks":29384,"ĠSick":29385,"Tax":29386,"Ġtablespoon":29387,"ĠTrin":29388,"ĠArchive":29389,"Mom":29390,"ĠSAY":29391,"Ġdrifting":29392,"ĠFarage":29393,"Ġforging":29394,"WM":29395,"ĠEleanor":29396,"USH":29397,"Ġemph":29398,"Ġcareless":29399,"Ġspew":29400,"Ġinsensitive":29401,"Ġawhile":29402,"Ġcit":29403,"opened":29404,"ĠFem":29405,"Ġvapor":29406,"Ġdownt":29407,"ylene":29408,"Ġclut":29409,"Ġculp":29410,"1990":29411,"Ġdisgruntled":29412,"Students":29413,"uttering":29414,"gyn":29415,"vre":29416,"Ġrapes":29417,"division":29418,"ĠCalendar":29419,"tal":29420,"icts":29421,"caliber":29422,"ĠFighters":29423,"ĠUnc":29424,"163":29425,"ĠRogue":29426,"Ġregistrations":29427,"Ġundermines":29428,"ĠPunch":29429,"Ġdramas":29430,"176":29431,"Ġslider":29432,"ĠFlore":29433,"ر":29434,"Ġbru":29435,"inelli":29436,"Ġdisparities":29437,"ا":29438,"Ġreferrals":29439,"ĠCharges":29440,"Ġbreeds":29441,"ĠMEP":29442,"288":29443,"Ġmouths":29444,"Ġsideways":29445,"Ġbelievers":29446,"ppard":29447,"Ġhotter":29448,"Ġunderestimated":29449,"Ġjelly":29450,"525":29451,"ĠCMS":29452,"ĠWeiner":29453,"Ġguarding":29454,"Ġampl":29455,"ĠKidd":29456,"UF":29457,"orient":29458,"max":29459,"Ash":29460,"Ġwander":29461,"Ġ..........":29462,"ĠDempsey":29463,"ĠToken":29464,"chat":29465,"Justin":29466,"equipped":29467,"ĠBI":29468,"Ġsins":29469,"Ġnond":29470,"ursion":29471,"Ġcoc":29472,"Ġmailing":29473,"ĠArchitect":29474,"Ġhaunting":29475,"Ġpont":29476,"Ġascertain":29477,"Ġwig":29478,"Ġskysc":29479,"Ġarg":29480,"ĠItalians":29481,"/?":29482,"Ġ----------------------------------------------------------------":29483,"ĠPrecision":29484,"EPA":29485,"Ġhotly":29486,"Ġcircumvent":29487,"ĠEcc":29488,"Ġmerch":29489,"akov":29490,"Ġunab":29491,"heres":29492,"Ġsubcommittee":29493,"ĠDiscuss":29494,"ĠChallenger":29495,"crafted":29496,"Ġcanine":29497,"osphere":29498,"Ġspider":29499,"Ġteachings":29500,"atos":29501,"Ġuniversally":29502,"Ġturbine":29503,"ĠLO":29504,"ĠMAG":29505,"Ġpassers":29506,"Ġroundup":29507,"Ġdenounce":29508,"ĠSpiegel":29509,"until":29510,"Ġshaved":29511,"Ġdisdain":29512,"Nazi":29513,"Ġnewfound":29514,"Ġspontaneous":29515,"Ġmash":29516,"ĠDispatch":29517,"Ġsunrise":29518,"ogged":29519,"Ġfuss":29520,"Ġeas":29521,"acci":29522,"ĠTarg":29523,"Ġhash":29524,"lict":29525,"Ġmisc":29526,"ĠSched":29527,"guy":29528,"linger":29529,"warm":29530,"ipel":29531,"ĠGork":29532,"Ġdispatcher":29533,"Ġ315":29534,"Ġfinely":29535,"Ġreliably":29536,"Ġrupt":29537,"Ġnegligent":29538,"Ġendorsements":29539,"ĠOrient":29540,"Ġelectro":29541,"haired":29542,"Ġphysique":29543,"wine":29544,"Ġadolescents":29545,"Ġ184":29546,"alth":29547,"Ġvalidated":29548,"izzard":29549,"ĠPeck":29550,"Ġemblem":29551,"status":29552,"ĠJungle":29553,"orius":29554,"Ġeccentric":29555,"Ġfolding":29556,"poor":29557,"ĠTHC":29558,"appers":29559,"Ġscripted":29560,"239":29561,"ĠPreferred":29562,"digital":29563,"Ġsharper":29564,"Ġportrays":29565,"rative":29566,"238":29567,"Ġ183":29568,"Ġuneasy":29569,"ĠRI":29570,"Ġvil":29571,"171":29572,"Ġspoil":29573,"ĠPricing":29574,"ĠHardware":29575,"Ġ188":29576,"Ġhorrendous":29577,"Ġostensibly":29578,"nah":29579,"Ġgadget":29580,"ADS":29581,"coat":29582,"Ġexhausting":29583,"Ġdraining":29584,"arate":29585,"ĠBulgarian":29586,"emo":29587,"Ġhier":29588,"Ġguitars":29589,"ieties":29590,"assed":29591,"ĠYaz":29592,"Ġaggress":29593,"ĠBG":29594,"vik":29595,"Ġneatly":29596,"Ġpixel":29597,"Ġintimacy":29598,"ĠRug":29599,"Ġ512":29600,"Ġnarrated":29601,"Ġmast":29602,"ĠNos":29603,"ĠHung":29604,"reciation":29605,"ĠChandra":29606,"Ġbios":29607,"ĠEnded":29608,"lique":29609,"ĠCambod":29610,"Ġworrisome":29611,"ĠEQ":29612,"Ġnovelist":29613,"ĠDynamic":29614,"ĠMIC":29615,"Ġdisposed":29616,"Ġbrackets":29617,"Ġhaircut":29618,"ĠLana":29619,"Ġlull":29620,"Ġbillboard":29621,"ĠReverend":29622,"ĠNAV":29623,"borgh":29624,"Ġadrenaline":29625,"Ġseeming":29626,"ĠPCB":29627,"ĠBridgewater":29628,"Ġsquirrel":29629,"262":29630,"write":29631,"Ġstabilization":29632,"wild":29633,"Ġsecession":29634,"Ġpacket":29635,"AMES":29636,"licted":29637,"Ġmalnutrition":29638,"claimed":29639,"Ġcharred":29640,"Ġtragically":29641,"Published":29642,"Ġrepealed":29643,"ĠSawyer":29644,"ĠMormon":29645,"resolution":29646,"ĠSaud":29647,"Henry":29648,"Ġdiscontin":29649,"Ġsnag":29650,"danger":29651,"Ġmixes":29652,"Ġupbringing":29653,"Ġlimb":29654,"ĠFantastic":29655,"Sim":29656,"ĠAugustine":29657,"ĠGreeks":29658,"cod":29659,"ĠHistorically":29660,"mire":29661,"register":29662,"ĠKund":29663,"Ġdebilitating":29664,"Chat":29665,"ĠTau":29666,"ï":29667,"lower":29668,"pie":29669,"Ġ430":29670,"Ġnascent":29671,"Ġ375":29672,"Ġbum":29673,"WI":29674,"Netflix":29675,"whether":29676,"Ġdearly":29677,"eff":29678,"PRES":29679,"Ġlandmarks":29680,"Ġculminating":29681,"Ġmigrate":29682,"balanced":29683,"Ġregulars":29684,"Ġmodification":29685,"Ġdips":29686,"ĠRedmond":29687,"ationally":29688,"atsu":29689,"Ġphilosophical":29690,"Ġtyping":29691,"Ġunreal":29692,"Ġboiled":29693,"Ġblight":29694,"Ġdru":29695,"ĠGaddafi":29696,"Ġnour":29697,"Ġsequential":29698,"Ġaugment":29699,"ĠEuras":29700,"ĠWiley":29701,"endar":29702,"Ġacronym":29703,"esteem":29704,"ĠMajesty":29705,"Ġgrips":29706,"Ġobsolete":29707,"nos":29708,"Made":29709,"ogie":29710,"ĠLiver":29711,"ĠDonetsk":29712,"Ġdynam":29713,"tel":29714,"bring":29715,"Ġknit":29716,"Ġfirepower":29717,"Ġprepaid":29718,"ĠRaphael":29719,"Ġsensing":29720,"720":29721,"WN":29722,"Nor":29723,"puted":29724,"Ġbureaucrats":29725,"ĠAdjust":29726,"Ġintensely":29727,"Ġsunscreen":29728,"Ho":29729,"ĠYelp":29730,"ĠPU":29731,"ĠSerge":29732,"ĠCyp":29733,"ELF":29734,"ĠGuns":29735,"Ġteamwork":29736,"ĠBib":29737,"ĠMaintenance":29738,"perate":29739,"Ġwiping":29740,"Ġcharcoal":29741,"ordan":29742,"International":29743,"Ġbehaving":29744,"Ġsoftened":29745,"ĠIncreased":29746,"Ġunfl":29747,"470":29748,"Ġinformative":29749,"Ġnovelty":29750,"Ġavoidance":29751,"Ġteasing":29752,"matic":29753,"Ġmaid":29754,"ĠPell":29755,"Ġcounterterrorism":29756,"ĠGabe":29757,"ications":29758,"ĠConnection":29759,"ĠInquiry":29760,"isin":29761,"orama":29762,"Ġcorpse":29763,"Ġpractitioner":29764,"itto":29765,"UA":29766,"Ġforestry":29767,"Ġlic":29768,"Ġrevolves":29769,"Ġcalculating":29770,"Ġpuppet":29771,"ulously":29772,"ĠPebble":29773,"Dep":29774,"Ġupholding":29775,"Ġcarving":29776,"Ġwartime":29777,"Ġenvy":29778,"Ġencro":29779,"ĠPunk":29780,"ĠAdminist":29781,"ucha":29782,"Ġbattleground":29783,"Ġlol":29784,"uable":29785,"Ġunheard":29786,"ĠSpur":29787,"phony":29788,"Ġcarc":29789,"ĠSut":29790,"Ġpollutants":29791,"Cr":29792,"Ġvigorous":29793,"355":29794,"ĠMarriage":29795,"Ġstaffed":29796,"fecture":29797,"ĠArabs":29798,"supported":29799,"Ġmanpower":29800,"ĠSatellite":29801,"None":29802,"Ġqueues":29803,"Ġinsightful":29804,"Ġinterchange":29805,"Rel":29806,"Ġsolemn":29807,"Ġsmuggled":29808,"upt":29809,"Ġ171":29810,"Ġparallels":29811,"intelligence":29812,"punk":29813,"Ġrecycle":29814,"Ġdecorative":29815,"Ġshar":29816,"arrell":29817,"iances":29818,"ĠBolivia":29819,"Ġstrengthens":29820,"430":29821,"Ġhardships":29822,"Ġsignalling":29823,"Ġunthinkable":29824,"READ":29825,"Ġtad":29826,"picked":29827,"Ġarmor":29828,"Ġcores":29829,"ĠMatrix":29830,"Ġdj":29831,"Ġevolutionary":29832,"ĠBermuda":29833,"OE":29834,"organized":29835,"Ġrelentlessly":29836,"sol":29837,"ĠMamm":29838,"Ġpounding":29839,"Weather":29840,"Ġrab":29841,"Ġsweets":29842,"funding":29843,"ĠHUD":29844,"ĠSoldier":29845,"reed":29846,"released":29847,"Ġcontainment":29848,"alid":29849,"ĠNikon":29850,"Ġcervical":29851,"Ġign":29852,"Ġalias":29853,"Ġoptimized":29854,"Ġasserting":29855,"ĠAFTER":29856,"Ġflatt":29857,"Ġdinosaur":29858,"ĠRefugees":29859,"ĠAnch":29860,"Ġadjustable":29861,"Ġroaring":29862,"Ġpilgrimage":29863,"Ġcowboy":29864,"Ġentails":29865,"ractions":29866,"EY":29867,"undy":29868,"ĠKuh":29869,"inges":29870,"ĠTerra":29871,"ĠEscape":29872,"Ġrundown":29873,"Ġstriped":29874,"KN":29875,"ocations":29876,"IDENT":29877,"IGH":29878,"Ġavoids":29879,"Moh":29880,"ĠLS":29881,"lbs":29882,"ĠAttempt":29883,"Ġtriangle":29884,"Ġclimax":29885,"Ġhp":29886,"Ġallot":29887,"learning":29888,"ĠJFK":29889,"Justice":29890,"OUT":29891,"ĠHER":29892,"ĠLect":29893,"Ġtrench":29894,"edar":29895,"Ġreservoirs":29896,"uid":29897,"rf":29898,"162":29899,"Ġinterfered":29900,"Ġemit":29901,"these":29902,"444":29903,"ĠLeather":29904,"essing":29905,"ĠEighth":29906,"uckle":29907,"Breaking":29908,"Ġunresolved":29909,"Ġgoose":29910,"252":29911,"platform":29912,"atus":29913,"Ġcomplexion":29914,"ĠBUS":29915,"Ġstruct":29916,"middle":29917,"Sat":29918,"ĠWHERE":29919,"LB":29920,"redible":29921,"vered":29922,"Louis":29923,"ĠBaz":29924,"Eye":29925,"safety":29926,"Ġhypothetical":29927,"Ġbowel":29928,"Ġuntouched":29929,"312":29930,"ĠPric":29931,"Ġastounding":29932,"meet":29933,"Aaron":29934,"ĠWoo":29935,"236":29936,"ĠShape":29937,"Ġdrifted":29938,"Ġtile":29939,"ĠGrim":29940,"Ġundeniable":29941,"Ġ..":29942,"Ġradius":29943,"Ġovarian":29944,"ĠSeriously":29945,"verning":29946,"Ġassertions":29947,"oxic":29948,"231":29949,"ĠViz":29950,"Jackson":29951,"ĠSno":29952,"Ġboycot":29953,"okingly":29954,"ousse":29955,"proclaimed":29956,"Ġblazing":29957,"Ġinefficient":29958,"Ġfig":29959,"Ġbooze":29960,"259":29961,"agus":29962,"statement":29963,"Ġlocom":29964,"Ġtacos":29965,"Ġmemos":29966,"gender":29967,"ĠOrt":29968,"263":29969,"Ġintervening":29970,"Soc":29971,"University":29972,"ĠPis":29973,"ĠReturns":29974,"ĠPAN":29975,"Ġultrasound":29976,"Ġcoherent":29977,"tracking":29978,"rieved":29979,"383":29980,"Ġqualitative":29981,"uld":29982,"ĠGiovanni":29983,"Ġstorylines":29984,"Ġdarkest":29985,"Ġvelvet":29986,"RIP":29987,"Ġcompatibility":29988,"Ġtroll":29989,"CN":29990,"Found":29991,"ĠOu":29992,"Ġtease":29993,"Ġvested":29994,"Ġprovocation":29995,"Ġimprovised":29996,"Ġactivation":29997,"unte":29998,"ĠMonteneg":29999,"ĠJOHN":30000,"ĠReact":30001,"Ġpolluted":30002,"217":30003,"Ġmushroom":30004,"Ġdisconnected":30005,"ĠVoices":30006,"asu":30007,"Ġsensory":30008,"REE":30009,"Ġmonarchy":30010,"Ġ173":30011,"doing":30012,"involved":30013,"ĠJonah":30014,"Ġtoxins":30015,"Ġtv":30016,"Ġacademia":30017,"IQ":30018,"Mor":30019,"ĠStraight":30020,"ĠRN":30021,"ĠâĹı":30022,"Ġpear":30023,"187":30024,"Ġendeavors":30025,"ĠTurbo":30026,"Ġducks":30027,"ĠRamsay":30028,"Ġoutpatient":30029,"Ġcomprehend":30030,"UNE":30031,"Ġbriefings":30032,"total":30033,"Ġmigr":30034,"always":30035,"Ġmoot":30036,"ĠRider":30037,"Ġbiblical":30038,"Form":30039,"Ġcurry":30040,"Ġexquisite":30041,"385":30042,"244":30043,"Ġattendants":30044,"Ġcabinets":30045,"nton":30046,"Baby":30047,"Honestly":30048,"ĠFIRE":30049,"211":30050,"itech":30051,"ĠProsper":30052,"Ġchops":30053,"odic":30054,"Rod":30055,"job":30056,"orset":30057,"ĠAry":30058,"obic":30059,"ĠNil":30060,"isable":30061,"Ġorche":30062,"Ġtrivial":30063,"ĠZy":30064,"ĠXP":30065,"Ġendorsing":30066,"ĠLIM":30067,"adish":30068,"237":30069,"ĠLaws":30070,"heid":30071,"ĠSignature":30072,"ĠVern":30073,"ĠBland":30074,"ansk":30075,"Ġrepository":30076,"ĠPetra":30077,"Enter":30078,"Ġtruths":30079,"Ġbordering":30080,"Ġpenn":30081,"Ġsimplified":30082,"zn":30083,"ĠCree":30084,"Ġ181":30085,"Hi":30086,"ĠGreenberg":30087,"Ġprematurely":30088,"ĠSass":30089,"Ġwrecked":30090,"Ġheinous":30091,"415":30092,"Turn":30093,"zl":30094,"amental":30095,"ĠBraz":30096,"fing":30097,"ĠAngle":30098,"ĠPhantom":30099,"agra":30100,"ĠShack":30101,"Ġhomegrown":30102,"Ġalright":30103,"AME":30104,"ĠKN":30105,"Ġclicks":30106,"Ġmanned":30107,"ĠScope":30108,"Ġextras":30109,"Ġclinicians":30110,"321":30111,"African":30112,"Ġjuices":30113,"Ġrefere":30114,"****":30115,"ambling":30116,"since":30117,"Ġvoic":30118,"QB":30119,"ĠAtmospheric":30120,"Mat":30121,"Ġperpetrated":30122,"ĠSteps":30123,"Fit":30124,"Ġsilenced":30125,"Ġbonded":30126,"Ġquantify":30127,"Houston":30128,"ocracy":30129,"Ġfreeing":30130,"pipe":30131,"corn":30132,"rones":30133,"ooked":30134,"ĠSuz":30135,"Ġunaccount":30136,"196":30137,"Ġlogos":30138,"ĠFurious":30139,"ĠSpart":30140,"urst":30141,"itri":30142,"ĠZub":30143,"ĠActual":30144,"Ġslee":30145,"Ġgag":30146,"Ġmetabolism":30147,"ĠDesigned":30148,"Ġpedigree":30149,"Ġcoolest":30150,"âĿ":30151,"iuses":30152,"ĠYellowstone":30153,"Ġinformant":30154,"Ġushered":30155,"ĠGarg":30156,"thel":30157,"Hop":30158,"Ġrepetitive":30159,"flag":30160,"Ġunmarked":30161,"ĠBrave":30162,"Ġincur":30163,"reading":30164,"ppel":30165,"lah":30166,"ateurs":30167,"286":30168,"ĠAtomic":30169,"Ġappliance":30170,")'":30171,"traditional":30172,"Ġdads":30173,"Ġregimen":30174,"Ġinfrared":30175,"Ġdotted":30176,"Ġtails":30177,"Ġhorrors":30178,"uments":30179,"Ġdub":30180,"lighting":30181,"Ġunearthed":30182,"assisted":30183,"ĠSpiel":30184,"trial":30185,"Ġpersever":30186,"MAX":30187,"Ġicing":30188,"Energy":30189,"Ġ1943":30190,"move":30191,"Error":30192,"Ġliter":30193,"ĠCly":30194,"Ari":30195,"Ġgranite":30196,"Ġcropped":30197,"ĠRD":30198,"ĠREM":30199,"TX":30200,"Ġdispleasure":30201,"ĠComfort":30202,"Ġunsettling":30203,"Ġscratching":30204,"866":30205,"eton":30206,"560":30207,"Ġcommonplace":30208,"Ġreproduced":30209,"ggie":30210,"Ġschooling":30211,"Ġreprim":30212,"Ġdarling":30213,"huge":30214,"ĠDante":30215,"cp":30216,"heastern":30217,"Ġeduc":30218,"Digital":30219,"Ġwrath":30220,"Ġwatering":30221,"ĠTail":30222,"Ġdegradation":30223,"530":30224,"usive":30225,"ĠXu":30226,"ĠAH":30227,"Ġclassy":30228,"ĠSET":30229,"Ġcriminally":30230,"dependent":30231,"ĠAlps":30232,"Ġnotwithstanding":30233,"Ġfamiliarity":30234,"ĠAPP":30235,"aurus":30236,"gments":30237,"Mid":30238,"Ġepilepsy":30239,"Ġresemblance":30240,"brush":30241,"Ġ333":30242,"Ġliberated":30243,"ĠBeng":30244,"ĠLans":30245,"Ġtraff":30246,"ihu":30247,"establish":30248,"Ġcort":30249,"Rick":30250,"Ġplugged":30251,"onement":30252,"ĠAccounting":30253,"Ġreconstruct":30254,"Pop":30255,"Ġincapable":30256,"aho":30257,"ĠDexter":30258,"Ġpitted":30259,"Ġbathing":30260,"Ġdun":30261,"Ġexplor":30262,"ĠMidnight":30263,"Ġactiv":30264,"iann":30265,"likely":30266,"acons":30267,"owicz":30268,"Ġnegativity":30269,"Ġfreel":30270,"ewitness":30271,"Ġinj":30272,"Stephen":30273,"Ġshredded":30274,"Ġprepar":30275,"Script":30276,"Ġcorrectional":30277,"Ġcommits":30278,"hai":30279,"activity":30280,"Imp":30281,"Ġstumble":30282,"Ġcache":30283,"ĠPromise":30284,"Ġprecinct":30285,"Ġmulticultural":30286,"Ġsubstitutes":30287,"Ġshortened":30288,"ovable":30289,"Ġfasting":30290,"Ġinfused":30291,"Ġbulldo":30292,"alm":30293,"Ġadjoining":30294,"Ġmultiplayer":30295,"ĠAlien":30296,"Ġpund":30297,"ethyl":30298,"Ġbliss":30299,"ĠDecision":30300,"Ġbab":30301,"Ġangrily":30302,"another":30303,"oled":30304,"ainted":30305,"ĠPriest":30306,"Ġdraped":30307,"ĠPersonally":30308,"Ġstomp":30309,"ĠWolfgang":30310,"Ġoste":30311,"itches":30312,"Ġhoops":30313,"ĠJO":30314,"Ġsche":30315,"ĠZan":30316,"Ġcleans":30317,"Ġclimbs":30318,"Ġelectronically":30319,"243":30320,"ocy":30321,"gall":30322,"ĠREAL":30323,"Ġmurky":30324,"Ġmodernization":30325,"tub":30326,"Really":30327,"Ġlax":30328,"Ġdoubted":30329,"yden":30330,"ĠPrevent":30331,"UTERS":30332,"Ġoverride":30333,"ĠSAF":30334,"Ġcoun":30335,"Ġexcerpts":30336,"Ġmotivations":30337,"Ġdecency":30338,"Ġastronomers":30339,"orical":30340,"Ġaltering":30341,"Ġ232":30342,"described":30343,"omic":30344,"Ġexh":30345,"Ġknocks":30346,"ĠRiot":30347,"ĠPurs":30348,"equal":30349,"pleting":30350,"llan":30351,"ĠSOL":30352,"iator":30353,"ILE":30354,"ĠWM":30355,"Ġdefences":30356,"Ġforearm":30357,"Toronto":30358,"526":30359,"Ġacne":30360,"Ġthirteen":30361,"itiz":30362,"akable":30363,"charges":30364,"Ġinaction":30365,"Ġbred":30366,"Ġdeficiency":30367,"Ġintrigue":30368,"opoly":30369,"ĠCamer":30370,"ĠMelt":30371,"Ġunlawfully":30372,"Ġpenetrate":30373,"ĠUsed":30374,"ĠDirty":30375,"Ġexcerpt":30376,"ĠYen":30377,"ĠCARD":30378,"Ġcher":30379,"ĠChallenges":30380,"ieves":30381,"Ġambush":30382,"Data":30383,"eeks":30384,"Ġgiveaway":30385,"Ġpawn":30386,"Ġtransf":30387,"renched":30388,"Ġmoderately":30389,"Ġnumbered":30390,"ĠIntegrity":30391,"ĠHOU":30392,"ĠHDMI":30393,"Royal":30394,"LT":30395,"ĠDirk":30396,"izon":30397,"Ġ227":30398,"Ġdisagrees":30399,"ĠNinth":30400,"Ġincrement":30401,"ĠGlory":30402,"suff":30403,"Ġartery":30404,"ĠEmployee":30405,"bum":30406,"ĠEditorial":30407,"Kh":30408,"ĠPremiere":30409,"ĠWeld":30410,"ĠIncluded":30411,"Ġmathematical":30412,"Ġexponentially":30413,"Ġhandwritten":30414,"ĠMAS":30415,"Ġindiscrim":30416,"Ġnutrient":30417,"ĠSelection":30418,"Ġ219":30419,"hyd":30420,"Ġdeton":30421,"æ":30422,"dark":30423,"ĠFidel":30424,"Ġmonkeys":30425,"Ġnutritious":30426,"Ġheadlights":30427,"oller":30428,"piring":30429,"ĠDefenders":30430,"Ġdrown":30431,"elong":30432,"Ġfloats":30433,"graduate":30434,"Ġprosper":30435,"ĠNamed":30436,"ĠEating":30437,"ECK":30438,"establishment":30439,"XM":30440,"Ġsoaking":30441,"278":30442,"Ġlistener":30443,"Ġsimultaneous":30444,"olutions":30445,"payer":30446,"Ġcustomize":30447,"ĠROCK":30448,"Ġaltar":30449,"ĠExercise":30450,"anky":30451,"ĠProfession":30452,"sever":30453,"ĠMerchant":30454,"RF":30455,"ĠCombat":30456,"Ġlegality":30457,"fledged":30458,"Ġdiapers":30459,"lves":30460,"Ġlur":30461,"Ġignores":30462,"ĠProtocol":30463,"Ġrepresentations":30464,"ĠBlumenthal":30465,"ĠLime":30466,"romptu":30467,"Ġbesieged":30468,"dl":30469,"Ġsighting":30470,"ĠParm":30471,"ĠServer":30472,"ĠBenghazi":30473,"estival":30474,"Ġplaylist":30475,"ĠUng":30476,"ĠQuantum":30477,"Ġcompromises":30478,"ĠSurvivor":30479,"ĠMobility":30480,"Ġbounty":30481,"ophers":30482,"ISA":30483,"need":30484,"uese":30485,"Ġorn":30486,"218":30487,"Ġ530":30488,"Ġbuddies":30489,"Ġagendas":30490,"ĠFeldman":30491,"ĠÃĸ":30492,"ĠBMC":30493,"ĠServe":30494,"Ent":30495,"ĠKH":30496,"ĠINT":30497,"Ġlittered":30498,"Ġvisitation":30499,"mist":30500,"Ġdupl":30501,"Ġrouted":30502,"ĠAmount":30503,"Dev":30504,"ĠConv":30505,"Ġslams":30506,"ĠVeterinary":30507,"bold":30508,"Ġ186":30509,"ĠDOT":30510,"builder":30511,"Ġdecay":30512,"ĠHemp":30513,"pelled":30514,"Ġmankind":30515,"Tonight":30516,"Ġeffortlessly":30517,"ĠBUT":30518,"Ġhostilities":30519,"formerly":30520,"alon":30521,"ĠCrash":30522,"humane":30523,"Ġmayhem":30524,"ĠBudd":30525,"Ġdisinformation":30526,"Ġ226":30527,"Ġprototypes":30528,"__":30529,"IVERS":30530,"izzy":30531,"ĠMight":30532,"ĠPip":30533,"pour":30534,"INO":30535,"ĠLL":30536,"Ġwiret":30537,"Ġresorted":30538,"ĠTanaka":30539,"ĠDOES":30540,"Earlier":30541,"HO":30542,"Ġmoniker":30543,"ĠFang":30544,"ĠHua":30545,"bered":30546,"adding":30547,"194":30548,"STR":30549,".\")":30550,"cop":30551,"ĠFlags":30552,"ĠColleges":30553,"ĠUz":30554,"Ġsparks":30555,"Ġparadox":30556,"Marie":30557,"Strong":30558,"Ġstrawberry":30559,"Ġnurturing":30560,"Ġfax":30561,"Tor":30562,"killer":30563,"burse":30564,"Ġattachments":30565,"Ġpup":30566,"Ġexhaustion":30567,"Ġwhisky":30568,"isu":30569,"ologically":30570,"iership":30571,"Ġlamps":30572,"Ġshuff":30573,"Ġcentralized":30574,"ĠNeedless":30575,"Ġgrenade":30576,"Ġrouter":30577,"Ġoptics":30578,"ivering":30579,"Ġpioneers":30580,"ĠHug":30581,"Ġhandguns":30582,"010":30583,"Ġbailed":30584,"uana":30585,"197":30586,"Ġdistorted":30587,"ĠEssentially":30588,"ĠSilent":30589,"Ġcomparative":30590,"Music":30591,"ĠMUS":30592,"Bur":30593,"ĠComet":30594,"ĠWinchester":30595,"IGN":30596,"Mod":30597,"ĠCandidate":30598,"Ġdysfunctional":30599,"ĠCeleb":30600,"Ġhitch":30601,"api":30602,"Ġidiot":30603,"Ġunsupported":30604,"gat":30605,"inker":30606,"Ġredevelop":30607,"Ġdwind":30608,"Ġforgetting":30609,"ĠRost":30610,"Ġremembrance":30611,"Na":30612,"mopolitan":30613,"Ġberries":30614,"Ġmarital":30615,"Vol":30616,"ĠClosing":30617,"ĠHindus":30618,"itism":30619,"Ġrover":30620,"Ġmysteries":30621,"ĠNig":30622,"ucing":30623,"Ġfabrication":30624,"Ġgarments":30625,"Ġwield":30626,"ĠCompton":30627,"357":30628,"Ġoxide":30629,"chron":30630,"ĠThought":30631,"Ġcomed":30632,"ĠEpstein":30633,"ĠBART":30634,"orative":30635,"ĠKahn":30636,"adan":30637,"APH":30638,"cum":30639,"Ġloophole":30640,"ĠGoPro":30641,"osit":30642,"Ġspecification":30643,"ĠAPR":30644,"Ġdrains":30645,"Ġconserve":30646,"ĠMorse":30647,"Ġcalorie":30648,"ĠCheney":30649,"station":30650,"Ġevangel":30651,"Ġspraying":30652,"lections":30653,"Ġenclosure":30654,"Ġcommanded":30655,"ĠOrganizations":30656,"Ġimb":30657,"mins":30658,"ĠTobias":30659,"Ve":30660,"ĠNau":30661,"183":30662,"ĠGuantanamo":30663,"173":30664,"Ġrequisite":30665,"Ġderivative":30666,"Ġpopulism":30667,"Ġcultivated":30668,"lord":30669,"uler":30670,"ĠDEA":30671,"inally":30672,"Ġdemonstr":30673,"trip":30674,"ĠFirefox":30675,"246":30676,"confirmed":30677,"Anne":30678,"Ġtamp":30679,"ĠHousehold":30680,"amous":30681,"Meet":30682,"Ġdashed":30683,"pire":30684,"Ġinex":30685,"Ġloosen":30686,"272":30687,"famous":30688,"ĠHeard":30689,"Ġhindsight":30690,"Ġdepot":30691,"ĠCutting":30692,"ĠMouse":30693,"Ġgeological":30694,"number":30695,"OUN":30696,".,\"":30697,"Ġmoderation":30698,"ĠUNHCR":30699,"Ġdomains":30700,"eco":30701,"Ġcrater":30702,"Ġ510":30703,"kid":30704,"Ġcylinders":30705,"ĠClasses":30706,"Kn":30707,"Ġcarcin":30708,"ĠHunting":30709,"irit":30710,"ARP":30711,"anting":30712,"ĠMarino":30713,"ĠRESP":30714,"ifle":30715,"Ġ239":30716,"fman":30717,"Ġtheoretically":30718,"Ġdistraught":30719,"Ġstaircase":30720,"Ġexpel":30721,"Ġlord":30722,"Ġbehaviours":30723,"Ġprescribing":30724,"ographs":30725,"ĠNewly":30726,"Ġpatiently":30727,"Ġskyline":30728,"udos":30729,"Ġrepertoire":30730,"Ġhover":30731,"mint":30732,"Ġclears":30733,"Ġkale":30734,"ĠSco":30735,"ĠCoulter":30736,"Ġpancreat":30737,"pu":30738,"995":30739,"Ġincompetent":30740,"2007":30741,"Ġgripping":30742,"enable":30743,"Ġreinforcing":30744,"ĠFee":30745,"education":30746,"ĠKuro":30747,"Ġbowed":30748,"Ġshave":30749,"ĠMean":30750,"xi":30751,"Ġinciting":30752,"atters":30753,"Ġecstatic":30754,"hog":30755,"Ġclauses":30756,"Ġsubt":30757,"Ġbehaved":30758,"tains":30759,"Liverpool":30760,"Ġstrives":30761,"ĠKev":30762,"ĠFramework":30763,"defined":30764,"Ġrecounts":30765,"array":30766,"tips":30767,"Ġartificially":30768,"fits":30769,"Clearly":30770,"mediate":30771,"Ġunseen":30772,"Ġthugs":30773,"ĠLent":30774,"Ġ1938":30775,"Ġgenital":30776,"ĠSonic":30777,"ĠWarehouse":30778,"pler":30779,"Ġunm":30780,"Ġpackets":30781,"ĠMET":30782,"ealous":30783,"ographers":30784,"Ġlabou":30785,"Core":30786,"+,":30787,"parable":30788,"Ġstrat":30789,"Ġinvitations":30790,"Ġsouven":30791,"Ġbillboards":30792,"ĠRegulations":30793,"Ġdwarf":30794,"Ġtoler":30795,"Ġprose":30796,"Ġestates":30797,"Ġmetabolic":30798,"ĠSuff":30799,"ĠFirstly":30800,"Ġpolio":30801,"Ġchick":30802,"ĠDaughter":30803,"Ġsubstant":30804,"ĠIdentity":30805,"umbers":30806,"ĠFacts":30807,"Ġfrust":30808,"Ġdissip":30809,"ĠDeck":30810,"Hy":30811,"ĠBirch":30812,"Ġhurled":30813,"democracy":30814,"nered":30815,"eper":30816,"Ġcerebral":30817,"181":30818,"Ġhalves":30819,"abit":30820,"balance":30821,"ĠTibet":30822,"Ġhandheld":30823,"ĠDough":30824,"Ġprogrammed":30825,"hw":30826,"Ġoutlawed":30827,"ĠSerious":30828,"Ġironically":30829,"Ġmanipulating":30830,")\"":30831,"juries":30832,"Ġfragrance":30833,"crete":30834,"ĠHHS":30835,"cience":30836,"Ġcosmic":30837,"Ġforeclosure":30838,"Ġpercentages":30839,"Bus":30840,"Ġenticing":30841,"extra":30842,"ĠShy":30843,"ĠÂ¥":30844,"Ġheadsets":30845,"imensional":30846,"Ġlux":30847,"Ġresidual":30848,"Ġmantle":30849,"ĠSJ":30850,"ĠPeaks":30851,"ĠFinger":30852,"Ġunfolds":30853,"anity":30854,"Ġresettlement":30855,"ĠWeak":30856,"ĠBeen":30857,"Ġ198":30858,"Ġangels":30859,"ĠFarn":30860,"peace":30861,"Ġcapac":30862,"Ġhue":30863,"Ġlust":30864,"traumatic":30865,"laun":30866,"Ġstrawberries":30867,"Ġherbal":30868,"Ġconversions":30869,"ĠHeld":30870,"Ġprescribe":30871,"Its":30872,"ĠDartmouth":30873,"Ġfashioned":30874,"460":30875,"BLE":30876,"international":30877,"Ġlumin":30878,"Ġplantation":30879,"ilde":30880,"490":30881,"Ġeuph":30882,"Ġdisgust":30883,"Ġaspire":30884,"medical":30885,"Ġsocialism":30886,"Ġdissolve":30887,"Wal":30888,"Ġadmittedly":30889,"Ġsewing":30890,"ĠAcer":30891,"Ġtul":30892,"Ġfacilit":30893,"Ġgrandma":30894,"ĠFeeling":30895,"Ġobst":30896,"ĠFranz":30897,"ĠPalin":30898,"ĠIncrease":30899,"gets":30900,"ĠImam":30901,"âĢİ":30902,"Ġcoincides":30903,"urrence":30904,"Ġlifes":30905,"Lab":30906,"Ham":30907,"angelo":30908,"Wild":30909,"Ġvetoed":30910,"Ġventilation":30911,"olid":30912,"Summer":30913,"Ġfacade":30914,"neys":30915,"ĠWOM":30916,"ĠBenny":30917,"ĠMarried":30918,"squ":30919,"ĠReflect":30920,"return":30921,"elia":30922,"olding":30923,"Ġrefine":30924,"ĠMadness":30925,"innacle":30926,"posts":30927,"287":30928,"fruit":30929,"274":30930,"icator":30931,"ĠVoy":30932,"Ġunsett":30933,"Ġfant":30934,"Ġtreaties":30935,"Ġcrystals":30936,"Ġhijacked":30937,"words":30938,"ĠReleased":30939,"Save":30940,"Ġcannon":30941,"Ġanomaly":30942,"Ġbeacon":30943,"Ġcrippled":30944,"Ġbundles":30945,"Ġuntreated":30946,"Ġhappiest":30947,"Ġgalaxies":30948,"Ġoccupational":30949,"416":30950,"Dar":30951,"Ġcrank":30952,"Ġappropriation":30953,"asking":30954,"mens":30955,"Ġdetector":30956,"Ġskewed":30957,"Ġpoke":30958,"254":30959,"Ġhypertension":30960,"apolog":30961,"Ġevaluations":30962,"blocks":30963,"Ġpow":30964,"GEN":30965,"Ġscalp":30966,"Ġarrogant":30967,"AIDS":30968,"ority":30969,"Ġredirect":30970,"Ġderogatory":30971,"Ġlateral":30972,"495":30973,"rolley":30974,"brew":30975,"Ġbabys":30976,"Ġmuff":30977,"ĠRequ":30978,"Ġdime":30979,"Ġwonderfully":30980,"Ġtreasures":30981,"ĠNES":30982,"Ġponds":30983,"Ġimpulse":30984,"Ġdetecting":30985,"Ġgrin":30986,"Ġbrid":30987,"Ġshoved":30988,"Ġpurge":30989,"irteen":30990,"OTHER":30991,"ÙĦ":30992,"irsch":30993,"ĠOcc":30994,"193":30995,"Ġfodder":30996,"wrote":30997,"meric":30998,"posal":30999,"Ġwinters":31000,"ĠJuice":31001,"hub":31002,"Ġcontrasting":31003,"Brazil":31004,"Ġflashy":31005,"uffer":31006,"technology":31007,"Children":31008,"Ġcatapult":31009,"owsky":31010,"ĠEclipse":31011,"abeth":31012,"ĠParticip":31013,"Ġlaud":31014,"ĠQuiet":31015,"Ġsimulations":31016,"Ġsacrificing":31017,"Ġpreaching":31018,"Ġvoicing":31019,"itizen":31020,"Ġgn":31021,"Ġsans":31022,"Ġ285":31023,"ĠRobot":31024,"Ġ1936":31025,"Ġsham":31026,"ĠKislyak":31027,"ĠGCC":31028,"tale":31029,"ĠShades":31030,"Ġsediment":31031,"Ġconveniently":31032,"Give":31033,"mounted":31034,"Ġpeel":31035,"Jun":31036,"ĠEisenhower":31037,"Ġdiplom":31038,"ĠPreservation":31039,"Ġaffirm":31040,"Ġtaboo":31041,"ĠGarr":31042,"ĠApply":31043,"prim":31044,"Ġausp":31045,"Ġtextbook":31046,"Ġforfeit":31047,"icides":31048,"Ġundis":31049,"DJ":31050,"Ġ\"...":31051,"ĠXperia":31052,"Ġfurry":31053,"Australian":31054,"Ġpreach":31055,"Ġparamed":31056,"Ġ196":31057,"agos":31058,"ĠRIP":31059,"Ġ408":31060,"ĠQuarterly":31061,"ĠQuentin":31062,"Ġdeft":31063,"ĠVlad":31064,"massive":31065,"apore":31066,"Ġquestionnaire":31067,"secution":31068,"ĠTunnel":31069,"ĠAssist":31070,"BILITY":31071,"everything":31072,"vich":31073,"Ġcomparatively":31074,"heng":31075,"ETH":31076,"ĠiPod":31077,"Ġinsurgent":31078,"Ġtestosterone":31079,"191":31080,"Ġmoons":31081,"Ġgripped":31082,"Ġstrang":31083,"pects":31084,"ĠSERVICE":31085,"Ġnumb":31086,"Ġmeasurable":31087,"Ġdismantled":31088,"Ġdepict":31089,"Ġretake":31090,"Light":31091,"Ġaquatic":31092,"useum":31093,"judicial":31094,"Ġ****":31095,"Ġrosters":31096,"certain":31097,"Ġhypothesis":31098,"2002":31099,"Snow":31100,"Ġpounded":31101,"ĠZel":31102,"ĠTrem":31103,"iversity":31104,"219":31105,"Jen":31106,"ĠAdventures":31107,"Ġcylinder":31108,"Ġbanging":31109,"Ġbalk":31110,"analy":31111,"ĠHust":31112,"ookie":31113,"ĠReturning":31114,"Ġpods":31115,"analysis":31116,"ĠTruman":31117,"Ġorg":31118,"Ġsar":31119,"Ġdred":31120,"ĠTelecommunications":31121,"ĠSven":31122,"carry":31123,"ĠLOVE":31124,"Ġparting":31125,"asar":31126,"utations":31127,"itic":31128,"Ġactu":31129,"Ġbananas":31130,"ĠNights":31131,"410":31132,"Still":31133,"Ġtweaked":31134,"went":31135,"Ġtoddlers":31136,"irted":31137,"Ġpaed":31138,"ĠWink":31139,"Ġviewpoint":31140,"ĠHelic":31141,"Ġhandshake":31142,"Ġpoaching":31143,"Ġrounding":31144,"268":31145,"ĠNVIDIA":31146,"Ġsquat":31147,"Ġtowed":31148,"Ġhandler":31149,"Ġconspir":31150,"Ġadditionally":31151,"CENT":31152,"ĠÃľ":31153,"article":31154,"ĠTough":31155,"NM":31156,"Rem":31157,"Ġstunts":31158,"ILS":31159,"ĠLM":31160,"Connect":31161,"ĠParagu":31162,"Ġcomplexities":31163,"Ġhugging":31164,"Ġabolish":31165,"ricting":31166,"ĠItems":31167,"Ġtemples":31168,"ĠSeat":31169,"ĠRubber":31170,"Ġindic":31171,"ĠVitamin":31172,"Ġcitations":31173,"Ġarmored":31174,"---------------":31175,"ĠNeo":31176,"ippy":31177,"Que":31178,"Ġrag":31179,"Ġlov":31180,"630":31181,"Ġadept":31182,"orbit":31183,"253":31184,"412":31185,"Ġbutterflies":31186,"Ġoutl":31187,"ĠCycle":31188,"Ġaesthetics":31189,"ĠTwitch":31190,"405":31191,"factor":31192,"ðŁij":31193,"ĠCircus":31194,"Posted":31195,"Ġintroductory":31196,"ĠStack":31197,"atoes":31198,"Ġfurn":31199,"ĠHond":31200,"Ġbipolar":31201,"ĠAging":31202,"inches":31203,"Ġincompetence":31204,"Ġaloud":31205,"Imagine":31206,"Ġsepar":31207,"Ġmanip":31208,"ophobic":31209,"inion":31210,"bek":31211,"Ġquer":31212,"ĠArmen":31213,"Ġhumorous":31214,"Ġmundane":31215,"Ġapologizing":31216,"Ġpioneered":31217,"Ġ303":31218,"282":31219,"Ġcalming":31220,"orious":31221,"760":31222,"Ġstitches":31223,"Ġthrottle":31224,"Ġspinach":31225,"urities":31226,"ĠCologne":31227,"Ġripple":31228,"Cs":31229,"Cent":31230,"Should":31231,"Ġaffinity":31232,"amount":31233,"ĠMISS":31234,"Ġsage":31235,"Ġamusing":31236,"Ġsnatch":31237,"clair":31238,"ĠGuess":31239,"bench":31240,"ĠMoj":31241,"nuclear":31242,"Ġfid":31243,"ĠVM":31244,"ĠGN":31245,"brainer":31246,"Ġcurled":31247,"Ġbushes":31248,"icably":31249,"Ġcreeping":31250,"Ġveil":31251,"ĠALS":31252,"ESPN":31253,"ulsion":31254,"ĠGTX":31255,"ĠANN":31256,"Ġcomplicit":31257,"assault":31258,"IOR":31259,"Ġpolymer":31260,"Ġestimating":31261,"277":31262,"alog":31263,"Ġglimps":31264,"Ġreinforces":31265,"Ġtextbooks":31266,"Ġdictated":31267,"ĠReyn":31268,"latable":31269,"ĠOrth":31270,"520":31271,"Ġtrickle":31272,"ĠWrong":31273,".[":31274,"ĠDesigner":31275,"304":31276,"ĠInner":31277,"Ġrave":31278,"ppa":31279,"ĠGim":31280,"Ġswath":31281,"Ġcarts":31282,"atlantic":31283,"Ġpersists":31284,"ĠDeveloper":31285,"Ġgoodies":31286,"isive":31287,"Inf":31288,"ĠSaving":31289,"loop":31290,"tions":31291,"Ġabusers":31292,"Ġclot":31293,"Ġmesmer":31294,"Ġdeg":31295,"Ġskirts":31296,"257":31297,"Ġunreliable":31298,"ĠCOMM":31299,"Ġ194":31300,"Ġfledgling":31301,"administ":31302,"Israeli":31303,"ĠBarbie":31304,"ĠJeanne":31305,"Ġgenerously":31306,"ĠStruct":31307,"ĠZap":31308,"Ġvetted":31309,"ĠViolet":31310,"Ġ),":31311,"Ġembarrass":31312,"bang":31313,"ĠProvider":31314,"getting":31315,"alg":31316,"Ġunconditional":31317,"ĠHulk":31318,"ĠWad":31319,"utation":31320,"Ġpointless":31321,"Ġdeprivation":31322,"Ġstarving":31323,"ĠImpossible":31324,"ĠStir":31325,"Ġknack":31326,"anse":31327,"Ġsecurely":31328,"Ġply":31329,"395":31330,"Pack":31331,"liv":31332,"Ġridden":31333,"alks":31334,"308":31335,"male":31336,"Ġbitterly":31337,"Ġirrational":31338,"Members":31339,"ported":31340,"qq":31341,"ractor":31342,"Ġinflict":31343,"ĠBoehner":31344,"Ġthickness":31345,"Ġdome":31346,"ĠInflu":31347,"Ġheap":31348,"Ġmirrored":31349,"Ġconstituent":31350,"Ġfertile":31351,"Ġvaping":31352,"266":31353,"riages":31354,"Ġembassies":31355,"Ġpersu":31356,"ĠMacArthur":31357,"issions":31358,"Main":31359,"aths":31360,"onne":31361,"circ":31362,"Ġsweating":31363,"quartered":31364,"Ġsax":31365,"Ġ540":31366,"Ġreputable":31367,"Ġsatire":31368,"Ġpastors":31369,"ventional":31370,"Mic":31371,"female":31372,"Ġpity":31373,"appropri":31374,"voc":31375,"hei":31376,"Ġimperial":31377,"Ġcorrective":31378,"Ġresent":31379,"Ġtempered":31380,"Ġdiffers":31381,"Hamilton":31382,"Ġsaddle":31383,"Ġgrenades":31384,"ĠQuart":31385,"onymous":31386,"til":31387,"Ġdepiction":31388,"Ġdisreg":31389,"Ġpetitioner":31390,"Ġfret":31391,"ĠEns":31392,"Emer":31393,"540":31394,"opathy":31395,"vertisements":31396,"Ġsketches":31397,"venth":31398,"Ġautomate":31399,"Ġjihad":31400,"iping":31401,"Ġtert":31402,"ĠSop":31403,"ships":31404,"Ġdeceptive":31405,"ĠPryor":31406,"ĠGorge":31407,"ĠMeridian":31408,"rero":31409,"affected":31410,"Ġlame":31411,"660":31412,"rub":31413,"Hello":31414,"ĠNumbers":31415,"269":31416,"Ġmarg":31417,"Fran":31418,"640":31419,"Ġcath":31420,"winter":31421,"ĠMosque":31422,"Ġreckoning":31423,"ĠImaging":31424,"Ġmutation":31425,"ĠMild":31426,"Ġkidnap":31427,"Ġnav":31428,"Ġferocious":31429,"Ġdusty":31430,"Cele":31431,"ĠFoss":31432,"Ġregrett":31433,"lymp":31434,"Ġcoli":31435,"Ġstereo":31436,"Ġforesee":31437,"alties":31438,"Ġresusc":31439,"Full":31440,"wash":31441,"ĠINST":31442,"ĠPars":31443,"Ġcoated":31444,"ĠHT":31445,"Ġdiscord":31446,"Ġreforming":31447,"CAN":31448,"Ġblink":31449,"Ġlubric":31450,"Ġmishand":31451,"ensible":31452,"existent":31453,"secondary":31454,"ĠDoesn":31455,"terrorist":31456,"Ġriff":31457,"custom":31458,"ĠDET":31459,"Ġreusable":31460,"ĠCRA":31461,"ĠScalia":31462,"Ġaccelerator":31463,"Ġpropag":31464,"ĠMID":31465,"ework":31466,"Ġlooted":31467,"oscope":31468,"eners":31469,"ruction":31470,"Ġbarr":31471,"Ġviewership":31472,"Ġlends":31473,"obil":31474,"ĠRoots":31475,"ĠCame":31476,"ibel":31477,"Ġglobalization":31478,"lab":31479,"information":31480,"Ġcoordin":31481,"Ġglitch":31482,"Ġworms":31483,"Ġslurs":31484,"Ġcontemplated":31485,"ĠPenal":31486,"Ġ191":31487,"Ġ221":31488,"Ġexposes":31489,"Ġ248":31490,"ĠASP":31491,"Ġdependency":31492,"urga":31493,"pdf":31494,"Ġvibr":31495,"clone":31496,"ossible":31497,"ĠUtt":31498,"serv":31499,"ĠLevant":31500,"maybe":31501,"MU":31502,"ĠLunar":31503,"Ġbystanders":31504,"Ġcapitals":31505,"Ġpreacher":31506,"thin":31507,"Ġunderscore":31508,"Ġ('":31509,"Ġmedd":31510,"Ġautobiography":31511,"Ġpersistence":31512,"Ġarming":31513,"Ġappalled":31514,"Ġcontradictory":31515,"Ġreciproc":31516,"Ġtakedown":31517,"tan":31518,"Ġnecessities":31519,"itans":31520,"ĠAlas":31521,"Ġsegregated":31522,"ĠResponsibility":31523,"ĠSHOW":31524,"ISIS":31525,"Ġpengu":31526,"Ġumb":31527,"ĠHO":31528,"HB":31529,"ĠChou":31530,"Ġalluded":31531,"Ġharms":31532,"bara":31533,"ĠWOR":31534,"Sorry":31535,"Ġstarvation":31536,"Ġspilling":31537,"Ġcarb":31538,"annis":31539,"ĠGarrison":31540,"Ġmillionaire":31541,"ifling":31542,"ĠCancel":31543,"Ġimprint":31544,"Ġborrower":31545,"455":31546,"ĠCic":31547,"Ġexposures":31548,"dest":31549,"Ġunn":31550,"Ġ802":31551,"Ġadherence":31552,"prints":31553,"Ġweary":31554,"Ġwaging":31555,"Ġ1937":31556,"ĠKepler":31557,"%;":31558,"Ġdefective":31559,"ĠReps":31560,"ĠGranted":31561,"Ġdisco":31562,"ĠRanking":31563,"erno":31564,"Ġarchaeological":31565,"sq":31566,"Ġcapit":31567,"Ġfleets":31568,"Ġinventor":31569,"iffin":31570,"Ġspotting":31571,"ĠSHARES":31572,"309":31573,"Hard":31574,"save":31575,"241":31576,"ĠThinking":31577,"XY":31578,"Ġhavens":31579,"Ġmessed":31580,"crop":31581,"Ġperme":31582,"Ġtimelines":31583,"ĠGarage":31584,"Ġplateau":31585,"together":31586,"fox":31587,"Ġfailings":31588,"ĠTight":31589,"ĠPhysics":31590,"ĠScholars":31591,"Ġpans":31592,"Fall":31593,"Ġhull":31594,"GER":31595,"Ġbourbon":31596,"ceived":31597,"Ġsteroids":31598,"Ġhamb":31599,"Ġinterpretations":31600,"Ġcush":31601,"Chair":31602,"Ġinformational":31603,"aryn":31604,"Ġwoven":31605,"Ġamen":31606,"Bre":31607,"Ġrefreshed":31608,"York":31609,"ĠBlast":31610,"Editor":31611,"Ġmotivating":31612,"ĠReason":31613,"Florida":31614,"Ġdreaded":31615,"Ġstationary":31616,"Ġbil":31617,"doors":31618,"Ġslightest":31619,"Ġcombustion":31620,"Ġfascination":31621,"Ġstraps":31622,"scribed":31623,"Ġexhibiting":31624,"Ġsimplest":31625,"Gar":31626,"Ġprogressives":31627,"claim":31628,"ocket":31629,"Ġexoner":31630,"ĠNETWORK":31631,"Brad":31632,"Ġ197":31633,"Ġnightmares":31634,"Ġillust":31635,"among":31636,"ĠGreenpeace":31637,"Ġoval":31638,"Ġblocker":31639,"3000":31640,"ĠMemor":31641,"Ġmids":31642,"Ġconfuse":31643,"YN":31644,"cow":31645,"Ġdispensary":31646,"telling":31647,"Ġentail":31648,"Ġneurolog":31649,"Ġbroth":31650,"Ġpron":31651,"ĠAnswer":31652,"thank":31653,"Ġintersect":31654,"Ġclinging":31655,"ĠKilling":31656,"Ġcohesion":31657,"Ġcategorized":31658,"Ġtangled":31659,"ĠASC":31660,"Arsenal":31661,"ĠAutomatic":31662,"580":31663,"sac":31664,"Ġshady":31665,"consumer":31666,"hetically":31667,"NV":31668,"Ġoverl":31669,"holes":31670,"ĠDonation":31671,"tera":31672,"score":31673,"library":31674,"Ġsmoother":31675,"Ġcoasts":31676,"Ġintercourse":31677,"Ġunfavorable":31678,"erb":31679,"Hel":31680,"Ġbiases":31681,"Ġinheritance":31682,"Ġsuppressed":31683,"ĠRecommend":31684,"iculture":31685,"ighting":31686,"inguished":31687,"idences":31688,"operated":31689,"Ġhors":31690,"Ġshrug":31691,"aila":31692,"ĠConsortium":31693,"Ġveins":31694,"uria":31695,"ĠSmithsonian":31696,"ĠAX":31697,")âĢĶ":31698,"given":31699,"JC":31700,"Ġreneg":31701,"Ġprincip":31702,"Ġextinct":31703,"Golden":31704,"ASON":31705,"Ġstatutes":31706,"292":31707,"ĠGOOD":31708,"ĠGreenland":31709,"ĠRasmussen":31710,"ATHER":31711,"Ġdeserted":31712,"ĠHitchcock":31713,"Ġqualifies":31714,"Ġdreadful":31715,"Ġsupers":31716,"Ġtendon":31717,"oter":31718,"ĠFate":31719,"Ġrestrooms":31720,"igating":31721,"Sher":31722,"Name":31723,"orph":31724,"ĠCritical":31725,"rox":31726,"Ġdefunct":31727,"Ġcanoe":31728,"Ġbiscuits":31729,"Ġwomb":31730,"808":31731,"istar":31732,"Ġroar":31733,"aundering":31734,"iewicz":31735,"ĠNM":31736,"ĠChamberlain":31737,"Ġ233":31738,"ĠCoat":31739,"Ġ999":31740,"aft":31741,"Ġlurking":31742,"ĠPist":31743,"Ġfollower":31744,"Ġcareg":31745,"ÙĨ":31746,"ĠThin":31747,"ZZ":31748,"ĠGI":31749,"ĠVintage":31750,"Ġpainstaking":31751,"Ġgloom":31752,"Ġtbsp":31753,"Ġwhim":31754,"ĠMask":31755,"rugged":31756,"Ġwritings":31757,"stantial":31758,"luence":31759,"ordable":31760,"akia":31761,"Ġassassinated":31762,"Wind":31763,"Ġdemeanor":31764,"Night":31765,"rape":31766,"ĠBringing":31767,"Ġshields":31768,"ĠAntarctic":31769,"Ġfruitful":31770,"ĠBuster":31771,"ĠLois":31772,"Ġ302":31773,"Style":31774,"ĠRIS":31775,"Ġdissatisfaction":31776,"ulp":31777,"ĠLaser":31778,"Ġdisposition":31779,"ĠAnk":31780,"Ġabsorbing":31781,"276":31782,"Ġvolcan":31783,"Ġleftover":31784,"yah":31785,"ĠVaj":31786,"Ġunsolved":31787,"oland":31788,"Ġstained":31789,"Ġpathetic":31790,"ylan":31791,"Ġknots":31792,"immigration":31793,"ieving":31794,"Coming":31795,"Commerce":31796,"ĠHurt":31797,"drawn":31798,"Ġaxis":31799,"Ġdye":31800,"ĠNora":31801,"ĠPortal":31802,"Ġsuspense":31803,"ĠExactly":31804,"Ġpowering":31805,"ĠClock":31806,"Ġdrawer":31807,"ĠSpike":31808,"Ġhallmark":31809,"aber":31810,"ĠTrainer":31811,"UV":31812,"Ġredundant":31813,"Tour":31814,"Ġdesignate":31815,"Ġredress":31816,"ĠUb":31817,"cake":31818,"oded":31819,"Ġkings":31820,"iates":31821,"Ġcoupons":31822,"Ġextremes":31823,"Elect":31824,"Ġcitation":31825,"Ġdirectory":31826,"Ġtranspired":31827,"cele":31828,"gence":31829,"5000":31830,"ostic":31831,"Ġraining":31832,"ĠSight":31833,"videos":31834,"phthal":31835,"llor":31836,"Ġappraisal":31837,"Ġdetox":31838,"Ġelecting":31839,"Ġordinances":31840,"Ġlifespan":31841,"Ref":31842,"Ġilluminated":31843,"Ġforfe":31844,"Making":31845,"ĠWorst":31846,"ĠTP":31847,"Ġfullest":31848,"ĠISIL":31849,"ĠRates":31850,"Ġyeast":31851,"sett":31852,"ĠYok":31853,"innie":31854,"edition":31855,"ĠGoldstein":31856,"Ġunaff":31857,"god":31858,"Ġzo":31859,"rums":31860,"Ġopaque":31861,"ĠHist":31862,"Yesterday":31863,"AMS":31864,"aband":31865,"005":31866,"illary":31867,"ĠSplash":31868,"Ġaccrued":31869,"Ell":31870,"Ġnominating":31871,"ĠBroadcast":31872,"ĠWhip":31873,"ARM":31874,"Ġunnecessarily":31875,"brown":31876,"429":31877,"ansky":31878,"Ġextravagant":31879,"Malley":31880,"wage":31881,"Ġexempted":31882,"Ġtypo":31883,"Ġesports":31884,"ĠStru":31885,"ĠPython":31886,"Ġsaint":31887,"ĠCSI":31888,"ĠPowder":31889,"Ġdisguised":31890,"ĠSubway":31891,"Ġprecursor":31892,"ĠWizard":31893,"Johnson":31894,"icas":31895,"Ġdefaults":31896,"!).":31897,"ebra":31898,"jected":31899,"Ġunaccompanied":31900,"HH":31901,"Ġproced":31902,"clinical":31903,"Ġmitigating":31904,"ĠSoup":31905,"ĠFunny":31906,"344":31907,"Hall":31908,"Ġscalable":31909,"Ġshimmer":31910,"Ġunderstatement":31911,"zeb":31912,"icus":31913,"Ġretract":31914,"IDER":31915,"ieft":31916,"iii":31917,"ĠEmperor":31918,"Ġvoltage":31919,"343":31920,"Rest":31921,"ĠButcher":31922,"Ġlaced":31923,"Ġsalty":31924,"Ġfourteen":31925,"Ġoxy":31926,"Ġraged":31927,"Ġforg":31928,"Ġcaveat":31929,"Ġponder":31930,"process":31931,"Ġghosts":31932,"ĠGoose":31933,"didn":31934,"stood":31935,"amation":31936,"Ġvillains":31937,"contract":31938,"Ġbooted":31939,"ĠDidn":31940,"ĠSalon":31941,"Ġlewd":31942,"ĠFritz":31943,"Ġorganis":31944,"Ġpuzzles":31945,"ĠRX":31946,"Ġcurtains":31947,"ĠPackage":31948,"Ġrebate":31949,"Ġspokes":31950,"Ġoccupant":31951,"Ġfooled":31952,"appy":31953,"Ġyourselves":31954,"Ġmaths":31955,"Ġ630":31956,"bos":31957,"ĠHeb":31958,"APS":31959,"Ġbulletin":31960,"Ġpests":31961,"Ġlum":31962,"ĠHAS":31963,"users":31964,"idated":31965,"Ġpalpable":31966,"ĠFeature":31967,"ĠPKK":31968,"Ġdetriment":31969,"Ġbamboo":31970,"Ġimmersed":31971,"ĠDud":31972,"Ġion":31973,"icc":31974,"ĠIris":31975,"ĠBeats":31976,"Ġimprobable":31977,"Ġfuner":31978,"Ġsprung":31979,"ĠLieberman":31980,"ĠSTA":31981,"venge":31982,"Ġtreacherous":31983,"Ġpreced":31984,"Ġsniper":31985,"ĠGOLD":31986,"ĠSUR":31987,"Nic":31988,"ĠROB":31989,"Camp":31990,"Ġhooks":31991,"oling":31992,"Ġbolst":31993,"339":31994,"heter":31995,"Ġbracelet":31996,"Ġbreat":31997,"307":31998,"ĠTrader":31999,"ĠPixar":32000,"hist":32001,"Ġmenacing":32002,"Ġgrizz":32003,"294":32004,"Ġillustrious":32005,"Ġtransact":32006,"Ġspoiler":32007,"ĠWORK":32008,"Road":32009,"Ġblackout":32010,"Ġencomp":32011,"proven":32012,"ĠFriendship":32013,"Ġentrances":32014,"Ġprofessions":32015,"Ġinsin":32016,"Ġrecorder":32017,"Ġformulation":32018,"govern":32019,"Ġpainfully":32020,"ĠRepe":32021,"eeds":32022,"cru":32023,"ĠDir":32024,"Ġtriumphant":32025,"Ġignition":32026,"xy":32027,"Ġintrusion":32028,"ĠEAR":32029,"RES":32030,"Ġration":32031,"ĠTaken":32032,"Ġcages":32033,"Ġpeg":32034,"Ġcommem":32035,"680":32036,"ĠRite":32037,"Ġfolder":32038,"Ġvertically":32039,"Ġcheeks":32040,"pick":32041,"Ġcrispy":32042,"Ġsqueezing":32043,"ĠBene":32044,"ĠTrailer":32045,"ĠKM":32046,"acceptable":32047,"ĠSetting":32048,"Ġsupernatural":32049,"ĠEz":32050,"Ġvenom":32051,"ĠFrey":32052,"Ġpulp":32053,"Had":32054,"centered":32055,"metics":32056,"Kent":32057,"ĠDOI":32058,"kr":32059,"ĠWHEN":32060,"Ġtakeoff":32061,"isf":32062,"uko":32063,"Ġquasi":32064,"Ġveggies":32065,"Ġpesticide":32066,"Ġstimulating":32067,"Ġacknowledgement":32068,"Ġattained":32069,"ĠBackground":32070,"281":32071,"317":32072,"ĠTrees":32073,"Ġdetractors":32074,"Ġannouncer":32075,"Ġjoyful":32076,"ĠElf":32077,"istration":32078,"phi":32079,"Ġprogressively":32080,"mini":32081,"Ġcontraception":32082,"asca":32083,"ishops":32084,"Ġmisunderstood":32085,"Ġinitiating":32086,"ĠConversely":32087,"338":32088,"080":32089,"idation":32090,"ĠGoes":32091,"Ġimprov":32092,"Ġswapping":32093,"Vict":32094,"Ġdevoid":32095,"fighter":32096,"ĠMori":32097,"Ġvoy":32098,"ĠElev":32099,"ĠAim":32100,"Ġtrustworthy":32101,"Leg":32102,"675":32103,"ĠPossible":32104,"Crunch":32105,"ĠRings":32106,"Ġphony":32107,"Ġbladder":32108,"ĠChall":32109,"Spot":32110,"oak":32111,"Was":32112,"ĠFAM":32113,"ĠAGA":32114,"ĠFifa":32115,"Ġenclosed":32116,"Ġanthrop":32117,"faith":32118,"ĠAux":32119,"Ġgracious":32120,"roller":32121,"Ġdowntime":32122,"swing":32123,"Ġcamouflage":32124,"ĠCosts":32125,"Ġliv":32126,"ricular":32127,"ĠUran":32128,"Ġdisapproval":32129,"Ġpropriet":32130,"bits":32131,"Ġmafia":32132,"ĠSCHOOL":32133,"ĠPrepar":32134,"button":32135,"Almost":32136,"Ġpastoral":32137,"ĠDove":32138,"Hol":32139,"Ġimposes":32140,"ĠDram":32141,"lys":32142,"ĠSAS":32143,"Ġwiring":32144,"271":32145,"ĠModels":32146,"Ġoutpost":32147,"etics":32148,"Ġinsulted":32149,"ĠMongolia":32150,"Ġoverth":32151,"Haw":32152,"ĠHomer":32153,"itta":32154,"raining":32155,"Ġevidently":32156,"raphic":32157,"impact":32158,"Ġfranch":32159,"Ġ2100":32160,"Ġapproximate":32161,"Ġcartoons":32162,"Ġbackups":32163,"umbing":32164,"Ġforceful":32165,"ĠShad":32166,"Ġsurges":32167,"Ġperf":32168,"Ġdele":32169,"Ġquieter":32170,"ĠHorowitz":32171,"ĠDX":32172,"anners":32173,"ĠNinja":32174,"ĠScript":32175,"ĠElise":32176,"collect":32177,"Ġgrading":32178,"ĠBethesda":32179,"Kids":32180,"ĠTelephone":32181,"Ġpreferring":32182,"Ġreconcil":32183,"Ġmango":32184,"ĠHail":32185,"ĠCitizenship":32186,"Master":32187,"cular":32188,"Ġstuffing":32189,"ĠAlive":32190,"ALLY":32191,"Ġchi":32192,"ĠDynam":32193,"ĠRosenthal":32194,"Ġpurity":32195,"Ġtemp":32196,"ĠHAL":32197,"employ":32198,"Ġplentiful":32199,"ĠComed":32200,"Ġstacks":32201,"ĠHuge":32202,"ĠOlder":32203,"Ġsclerosis":32204,"ONY":32205,"Ġfilmmaking":32206,"chance":32207,"Cry":32208,"Ġworkflow":32209,"ĠPersonnel":32210,"awed":32211,"ĠColumn":32212,"Ġuncomp":32213,"Ġdiscriminated":32214,"Ġpts":32215,"Ġallev":32216,"ĠKinn":32217,"meal":32218,"Ġnovice":32219,"Ġcrest":32220,"Ġhearty":32221,"Ġlowers":32222,"inqu":32223,"ĠPlayoffs":32224,"ĠHyp":32225,"Ġautos":32226,"Ġindec":32227,"Ġnighttime":32228,"Ġreflex":32229,"306":32230,"disciplinary":32231,"ophe":32232,"contact":32233,"Ġachievable":32234,"Ġslab":32235,"ĠMessage":32236,"ĠVMware":32237,"ĠDia":32238,"REG":32239,"Ġconfisc":32240,"ĠMechan":32241,"Ġphenomena":32242,"Ġsequencing":32243,"Ġshaming":32244,"Ġcompilation":32245,"ĠAges":32246,"Ġmastered":32247,"Ġagony":32248,"Ġrestrain":32249,"ĠLyme":32250,"Which":32251,"ĠBarney":32252,"ĠConcept":32253,"Ġsuperheroes":32254,"ĠPsychology":32255,"Ġreminis":32256,"violence":32257,"Lead":32258,"Da":32259,"VEN":32260,"ERC":32261,"ĠVoter":32262,"Ġbetray":32263,"Ġsavage":32264,"driver":32265,"IFT":32266,"Chain":32267,"angler":32268,"'-":32269,"lain":32270,"ĠRatt":32271,"bis":32272,"iverse":32273,"Ġdensely":32274,"Ġuncom":32275,"Ġunsuspecting":32276,"Ġstimulation":32277,"diff":32278,"Ġskins":32279,"ĠRiding":32280,"ategic":32281,"ĠUnderstand":32282,"occup":32283,"ĠCooking":32284,"Ġschizophrenia":32285,"ĠKoen":32286,"Ġcomrades":32287,"HY":32288,"Ġfab":32289,"ĠRowling":32290,"Allen":32291,"ĠJUL":32292,"Ġembryos":32293,"UU":32294,"ĠCAT":32295,"Ġtidy":32296,"finger":32297,"ĠCake":32298,"Ġrightfully":32299,"religious":32300,"Ġ407":32301,"Gal":32302,"408":32303,"Ġgrievance":32304,"Ġswallowed":32305,"251":32306,"283":32307,"ĠBarcl":32308,"opter":32309,"Ġpedoph":32310,"Ġcured":32311,"Ġestablishes":32312,"increasing":32313,"tics":32314,"articles":32315,"Ġunethical":32316,"authored":32317,"Ġanchors":32318,"ĠContra":32319,"Ġventured":32320,"ĠCoh":32321,"Ġpuff":32322,"heddar":32323,"Ġomission":32324,"Ġdich":32325,"ceed":32326,"Ġscares":32327,"Ġdoctoral":32328,"293":32329,"ĠUnt":32330,"Ġdop":32331,"ĠInjury":32332,"ificantly":32333,"ĠRift":32334,"ĠOrders":32335,"Ġmobilize":32336,"particularly":32337,"Ġchilled":32338,"Reports":32339,"redibly":32340,"ĠGuru":32341,"Ġvalleys":32342,"Ġtextures":32343,"Ġreuse":32344,"roit":32345,"unts":32346,"Ġirreversible":32347,"Ġwarships":32348,"Ġpus":32349,"Ġpeeled":32350,"Ġthirst":32351,"Ġgrapple":32352,"busters":32353,"Ġnort":32354,"ĠDates":32355,"Safe":32356,"Ġbirthplace":32357,"hemoth":32358,"Ġvile":32359,"Ġ306":32360,"Ram":32361,"activated":32362,"ĠAero":32363,"Ġbutcher":32364,"ĠKnock":32365,"Ġdisturb":32366,"Ġtotality":32367,"tted":32368,"Ġlegit":32369,"cking":32370,"nikov":32371,"Ġfavoring":32372,"lang":32373,"Ġrightful":32374,"orum":32375,"!!!!":32376,"ĠMinute":32377,"Ġpostings":32378,"Java":32379,"510":32380,"Ġmicrobes":32381,"Ġsixteen":32382,"entimes":32383,"Ġbulb":32384,"Ġgoalt":32385,"Ġhumiliated":32386,"ansom":32387,"roach":32388,"Ġgrouping":32389,"hari":32390,"Ġcler":32391,"Ġstared":32392,"ĠSymptoms":32393,"Ġbasil":32394,"Whenever":32395,"ĠWhoever":32396,"Oil":32397,"ĠJericho":32398,"ĠAlm":32399,"Pol":32400,"Hur":32401,"Ġupro":32402,"ĠSpo":32403,"hammer":32404,"Mur":32405,"ĠTorch":32406,"Ġfrequencies":32407,"ĠExpansion":32408,"Ġparalysis":32409,"igon":32410,"ĠSail":32411,"Ġsilently":32412,"Ġrevolver":32413,"Ġstockpile":32414,"Ġpessimistic":32415,"ESA":32416,"Ġdisclaim":32417,"Ġdemocracies":32418,"ĠTales":32419,"ĠAngry":32420,"ĠWhitman":32421,"ĠOri":32422,"Ġtransitioned":32423,"behind":32424,"ĠLAN":32425,"Ġcav":32426,"ĠJazeera":32427,"KC":32428,"ĠInspect":32429,"irty":32430,"ĠAin":32431,"ĠOrig":32432,"Ġobscene":32433,"Ġdormant":32434,"Ġharb":32435,"ĠWiz":32436,"ĠAdolf":32437,"Ġvic":32438,"Ġdenouncing":32439,"Ġye":32440,"aques":32441,"Ġomn":32442,"Ġassemblies":32443,"nosis":32444,"Ġadmon":32445,"Ġanguish":32446,"Ġvag":32447,"YE":32448,"ĠMacro":32449,"Ġrubbing":32450,"Ġreplicated":32451,"Moon":32452,"ĠGuitar":32453,"Ġcentimeters":32454,"amily":32455,"ĠAmes":32456,"Ġchlorine":32457,"Perhaps":32458,"Ġpartisans":32459,"soc":32460,"Ġvagina":32461,"Ġtrove":32462,"ĠYES":32463,"Ġtherapists":32464,"Ġnods":32465,"Ġhanged":32466,"Ġridge":32467,"Ġhaz":32468,"ĠmacOS":32469,"Ġske":32470,"ĠShia":32471,"Ġsteril":32472,"Ġalmond":32473,"ĠRockefeller":32474,"Ġintrinsic":32475,"Certainly":32476,"Ġsublime":32477,"Earn":32478,"abet":32479,"Ġframeworks":32480,"ogical":32481,"ilst":32482,"ipal":32483,"Ġrescuing":32484,"ĠWatergate":32485,"Ġ231":32486,"ĠNano":32487,"ighthouse":32488,"olph":32489,"Ġ312":32490,"Ġhealed":32491,"ĠTomb":32492,"Ġsubst":32493,"Ġsulph":32494,"ĠNewsp":32495,"ĠLama":32496,"venue":32497,"387":32498,"productive":32499,"ĠNEED":32500,"minus":32501,"ĠPages":32502,"cand":32503,"ĠClover":32504,"ĠForensic":32505,"ryn":32506,"ogle":32507,"ocr":32508,"Ġvaccinations":32509,"cies":32510,"ĠMek":32511,"Ġunaffected":32512,"Ġfetal":32513,"ĠDino":32514,"Ġhemisphere":32515,"Ġfroze":32516,"ĠPeg":32517,"Ġmicroscope":32518,"Ġmoderates":32519,"ĠGEN":32520,"ĠHawai":32521,"Ġstagn":32522,"Absolutely":32523,"practice":32524,"IBLE":32525,"cture":32526,"ĠAshe":32527,"Ġcondoms":32528,"Ġpoked":32529,"training":32530,"Ġintermedi":32531,"347":32532,"Ġcardinal":32533,"ĠSpoon":32534,"Ġsupp":32535,"Ġpreviews":32536,"Service":32537,"ĠBeam":32538,"Ġtranscend":32539,"Fresh":32540,"Sure":32541,"Ġ4000":32542,"idential":32543,"ĠCoinbase":32544,"Ġworkings":32545,"ĠPI":32546,"Ġpassionately":32547,"Ġdecisively":32548,"ĠInspection":32549,"Ġinvoke":32550,"Ġstain":32551,"Ġcleaners":32552,"Ġregulates":32553,"Ġshone":32554,"ĠEVERY":32555,"istance":32556,"map":32557,"Ġredu":32558,"Ġoccupies":32559,"Ġprocure":32560,"acket":32561,"roman":32562,"Ġilleg":32563,"Ġleaps":32564,"yond":32565,"Ġyarn":32566,"ĠLTD":32567,"ĠCONTR":32568,"ĠRestoration":32569,"ĠCDs":32570,"Ġdrinkers":32571,"ĠJordanian":32572,"Ġabl":32573,"Ġdisparate":32574,"Ġprimed":32575,"ĠFirearms":32576,"artz":32577,"Ġindispensable":32578,"Ter":32579,"Ġfright":32580,"Ġmarkedly":32581,"Ġroam":32582,"ĠJurassic":32583,"Ġfeder":32584,"Ġpepp":32585,"ĠDV":32586,"Ġpancakes":32587,"sweet":32588,"Ġunmatched":32589,"Ġassembling":32590,"Ultimately":32591,"Ġendeavour":32592,"Ġluckily":32593,"Ġbitch":32594,"Ġelegance":32595,"eers":32596,"drop":32597,"credit":32598,"Ġscourge":32599,"ĠMinimum":32600,"Ġimpatient":32601,"Ġhunted":32602,"ĠGoddard":32603,"Kal":32604,"Ġmined":32605,"Ġcalves":32606,"Ġ234":32607,"Ġplank":32608,"Ġinjecting":32609,"ĠKaufman":32610,"ĠCompliance":32611,"tone":32612,"Ġ345":32613,"Ġdazz":32614,"ĠClarks":32615,"Ġcomprehens":32616,"Ġpist":32617,"Ġrhythms":32618,"Ġreserv":32619,"337":32620,"ĠIDF":32621,"Ġshouts":32622,"midt":32623,"323":32624,"Ġsoothing":32625,"Ġadministr":32626,"Ġgloomy":32627,"Ġfutile":32628,"ĠProhibition":32629,"upon":32630,"ĠAnglic":32631,"seeking":32632,"Ġdodge":32633,"Ds":32634,"ĠGrants":32635,"editor":32636,"ĠInquis":32637,"Ġ1929":32638,"decl":32639,"ĠPorts":32640,"ĠCure":32641,"ĠDPRK":32642,"oct":32643,"Ġvocabulary":32644,"Ġcling":32645,"298":32646,"Ġpeac":32647,"Ġantibodies":32648,"dor":32649,"ĠWorse":32650,"Ġsmelled":32651,"Ġleash":32652,"MED":32653,"Ġdisinteg":32654,"Ġtruthful":32655,"Ġsalesman":32656,"Ġsquares":32657,"susp":32658,"Ġcraving":32659,"Ġwizard":32660,"moral":32661,"ĠQué":32662,"Anything":32663,"Ġfalsehood":32664,"ARI":32665,"Ġcoworkers":32666,"Ġthy":32667,"outher":32668,"Ġbrushing":32669,"ĠProtest":32670,"ĠMF":32671,"abba":32672,"lead":32673,"ĠExhibit":32674,"Ga":32675,"ĠFranks":32676,"Ġdictates":32677,"illegal":32678,"Ġrelayed":32679,"Ġploy":32680,"ĠاÙĦ":32681,"ĠDocuments":32682,"Ġtint":32683,"ĠYuan":32684,"Ġdepended":32685,"Mir":32686,"ĠIntrodu":32687,"Ġrecourse":32688,"oqu":32689,"ĠTED":32690,"Ġdifferentiated":32691,"ĠWalls":32692,"Ġsentimental":32693,"Ġantis":32694,"retion":32695,"comes":32696,"ĠWORLD":32697,"Ġcoax":32698,"ĠTatt":32699,"ĠGingrich":32700,"2006":32701,"ĠBrut":32702,"Second":32703,"posed":32704,"shots":32705,"Ġ313":32706,"idian":32707,"alking":32708,"Ġdens":32709,"Ġgif":32710,"akings":32711,"Ġkeywords":32712,"Ġchast":32713,"Ġadversary":32714,"Ġnick":32715,"iasis":32716,"ĠLegisl":32717,"Ġcoff":32718,"ĠOriental":32719,"ĠMorg":32720,"ĠHAR":32721,"Ġlegalizing":32722,"Ġbanter":32723,"ĠTart":32724,"ĠTRI":32725,"Ġantagon":32726,"ĠGF":32727,"oler":32728,"ĠUFO":32729,"Therefore":32730,"ĠOsama":32731,"ĠStructure":32732,"apps":32733,"Ġpee":32734,"ĠSomehow":32735,"ĠOverwatch":32736,"ĠCasual":32737,"Ġdishon":32738,"SEE":32739,"ctive":32740,"andering":32741,"ĠTransformation":32742,"Andy":32743,"ĠFever":32744,"Ġspectator":32745,"Ġlash":32746,"Ġprotector":32747,"apy":32748,"Ġexhilar":32749,"aroo":32750,"Ġmamm":32751,"Ġbystand":32752,"acky":32753,"Ġdigestive":32754,"Ġamplified":32755,"Ġalpha":32756,"continue":32757,"Low":32758,"Ġdisgusted":32759,"356":32760,"script":32761,"Ġgenerational":32762,"ĠPassenger":32763,"sight":32764,"Ġcout":32765,"Ġhone":32766,"ulse":32767,"Ġignite":32768,"284":32769,"gow":32770,"Ġbinary":32771,"Ġincess":32772,"Review":32773,"607":32774,"ĠSurprise":32775,"Ġirritation":32776,"ĠBarth":32777,"ĠGum":32778,"Ġvideot":32779,"ĠFres":32780,"asons":32781,"Ġcollaborator":32782,"fal":32783,"ĠGon":32784,"Ġsettles":32785,"regular":32786,"Ġmiscarriage":32787,"cube":32788,"Ġsubord":32789,"ĠRegistered":32790,"Ġnotions":32791,"zzy":32792,"Ġrevert":32793,"OFF":32794,"Ġhasht":32795,"ĠPNG":32796,"Ġunimaginable":32797,"builders":32798,"Taylor":32799,"ĠPAY":32800,"Ġ).":32801,"Ġ238":32802,"ĠLAST":32803,"MAS":32804,"Ġillustrations":32805,"Ġparody":32806,"Ġdispersed":32807,"ĠRoses":32808,"Ġestimation":32809,"ĠGets":32810,"Patrick":32811,"CHA":32812,"Ġmisdem":32813,"agate":32814,"alter":32815,"Ġgeo":32816,"Ġenormously":32817,"Ġarrogance":32818,"Ġpert":32819,"Ġmeta":32820,"ĠJuno":32821,"iov":32822,"imov":32823,"Ġchores":32824,"acan":32825,"Paris":32826,"313":32827,"Lewis":32828,"Ġwillingly":32829,"ERA":32830,"Ġencaps":32831,"ilk":32832,"Ġnodes":32833,"Ġenzyme":32834,"want":32835,"Ġtolerant":32836,"Ġcondos":32837,"Ġasserts":32838,"Ġcanon":32839,"Ġscanned":32840,"bishop":32841,"Ġperched":32842,"util":32843,"ĠBonus":32844,"create":32845,"ĠFuk":32846,"Ġmotif":32847,"Ġcontemplate":32848,"ĠBEN":32849,"imir":32850,"Ġacadem":32851,"uvian":32852,"ĠIdeas":32853,"ĠCY":32854,"Ġants":32855,"Ġprostitutes":32856,"2005":32857,"Spring":32858,"ĠBarrel":32859,"ĠAunt":32860,"ĠLudwig":32861,"ĠHerm":32862,"PRO":32863,"obiles":32864,"rack":32865,"STER":32866,"ucket":32867,"Ġmun":32868,"Ġ419":32869,"ICES":32870,"Ġcardio":32871,"Ġtrenches":32872,"Nation":32873,"yahoo":32874,"Ġburd":32875,"Ġnost":32876,"Ġappropriations":32877,"ĠChili":32878,"Josh":32879,"GW":32880,"Ġoppressed":32881,"ĠBEFORE":32882,"Ġmurderous":32883,"Pen":32884,"achable":32885,"Ġrive":32886,"Ġculmin":32887,"Ġdefin":32888,"ĠMord":32889,"idate":32890,"ĠChim":32891,"ource":32892,"ĠElectro":32893,"orthy":32894,"Ġcalendars":32895,"regation":32896,"Ġretrospect":32897,"ĠTribal":32898,"ĠHes":32899,"Ġcran":32900,"Ġcreditor":32901,"Ġfibers":32902,"note":32903,"idays":32904,"ĠSebast":32905,"ĠKitty":32906,"Ġplainly":32907,"ĠLAPD":32908,"Ġtrumpet":32909,"ĠAppropriations":32910,"Hill":32911,"ĠVeget":32912,"296":32913,"lated":32914,"othes":32915,"ibrarian":32916,"Listen":32917,"nex":32918,"WHO":32919,"Ġshampoo":32920,"Ġclaimants":32921,"Ġisol":32922,"Ġunchecked":32923,"Ġmov":32924,"umo":32925,"ĠLens":32926,"Ġdiscreet":32927,"Ġrespectfully":32928,"Ġreclaimed":32929,"ĠHatt":32930,"thus":32931,"ĠFlo":32932,"Ġsumm":32933,"phas":32934,"ĠHaitian":32935,"Ġstrife":32936,"Ġabound":32937,"verted":32938,"Ġpatronage":32939,"449":32940,"Ġprelim":32941,"ĠZhu":32942,"ĠRevel":32943,"adic":32944,"Ġminded":32945,"ĠStability":32946,"Ġresembling":32947,"Ġvending":32948,"ischer":32949,"Ġkisses":32950,"Ġsuperiority":32951,"Ġinfinite":32952,"ISC":32953,"880":32954,"Ġappease":32955,"VO":32956,"404":32957,"ECH":32958,"gam":32959,"River":32960,"metal":32961,"determination":32962,"Cook":32963,"Ġbuds":32964,"Ġ(%)":32965,"ĠCreated":32966,"Ġstrut":32967,"Ġ425":32968,"Ġverte":32969,"ĠOrb":32970,"Ġweaving":32971,"261":32972,"Ġflyers":32973,"spons":32974,"ĠCovenant":32975,"570":32976,"Ġintangible":32977,"ĠBJ":32978,"ĠStead":32979,"ĠBrune":32980,"pain":32981,"independent":32982,"Ball":32983,"witch":32984,"ĠIon":32985,"Ġpupp":32986,"Cash":32987,"ĠConvert":32988,"Ġimpede":32989,"broad":32990,"onew":32991,"Ġsynergy":32992,"Ġcoined":32993,"620":32994,"ivalent":32995,"ĠInfect":32996,"ĠAqua":32997,"Together":32998,"ĠChemistry":32999,"ĠURL":33000,"ampion":33001,"Ġdeclarations":33002,"Ġaffirmative":33003,"umper":33004,"ĠTarant":33005,"Ġstereotype":33006,"Ġbookstore":33007,"incre":33008,"Ġchipset":33009,"Ġangst":33010,"Jose":33011,"laus":33012,"Ġheater":33013,"ipers":33014,"Ġeminent":33015,"hook":33016,"sticks":33017,"ĠCoul":33018,"Ġmildly":33019,"SG":33020,"Ġworm":33021,"Ġdisable":33022,"Ġperfume":33023,"ISTER":33024,"Ġgathers":33025,"ĠLotus":33026,"hyp":33027,"actus":33028,"Ġdistinctly":33029,"fifth":33030,"!),":33031,"ĠCrunch":33032,"Ġcohesive":33033,"Ġfortunately":33034,"Ġninety":33035,"Ġcartels":33036,"empl":33037,"Direct":33038,"Ġcommuting":33039,"ĠSX":33040,"ractive":33041,"Ġtranslating":33042,"ĠAQ":33043,"Ġslay":33044,"abuse":33045,"ĠProc":33046,"ĠCantor":33047,"ĠTas":33048,"Sir":33049,"Thom":33050,"ĠCHRIST":33051,"Ġreceptive":33052,"ĠCornel":33053,"Arab":33054,"Ġgrammar":33055,"Ġhandlers":33056,"Ġalloy":33057,"Ġthinly":33058,"adem":33059,"Ġproponent":33060,"ĠPVC":33061,"Ġstump":33062,"tom":33063,"rets":33064,"iciency":33065,"780":33066,"Ġ311":33067,"ĠClapper":33068,"ITAL":33069,"Ùħ":33070,"Ġnarrator":33071,"Ġblond":33072,"Ġintermittent":33073,"Ġcollabor":33074,"646":33075,"Ġmetast":33076,"Ġregeneration":33077,"ĠLegendary":33078,"Ġgenitals":33079,"Ġbartender":33080,"atson":33081,"Okay":33082,"Ġpassages":33083,"Ġsubstituted":33084,"orr":33085,"ALTH":33086,"Ġartic":33087,"Ġascent":33088,"Ġmatured":33089,"Ġterminology":33090,"served":33091,"ĠDeliver":33092,"Ġattic":33093,"anges":33094,"Ġrenaissance":33095,"Ġbleed":33096,"claimer":33097,"onse":33098,"Sec":33099,"Ġparticle":33100,"aneous":33101,"ateur":33102,"Ġzeal":33103,"ĠPets":33104,"Working":33105,"ĠRespect":33106,"Ġsermon":33107,"ĠProvided":33108,"Ġfilibuster":33109,"Ġabolished":33110,"reviewed":33111,"cription":33112,"Ġrevers":33113,"atered":33114,"435":33115,"Ġwhe":33116,"ometown":33117,"UFC":33118,"products":33119,"Winter":33120,"Ġ304":33121,"Ġsporadic":33122,"orough":33123,"EB":33124,"ĠAgric":33125,"ĠMTA":33126,"wic":33127,"Ġpowerless":33128,"Ġcarrot":33129,"ww":33130,"Ġabsorption":33131,"ĠTyphoon":33132,"Turkey":33133,"Ġproclaim":33134,"Ġhikers":33135,"Ġpractise":33136,"/$":33137,"Ġfingertips":33138,"Ġbaff":33139,"vu":33140,"Ġans":33141,"plug":33142,"Ġacquaintance":33143,"itement":33144,"ihar":33145,"Ġreluctantly":33146,"Ġforc":33147,"Ġguarant":33148,"ĠWanted":33149,"Walk":33150,"addle":33151,"unders":33152,"Fred":33153,"Ġtides":33154,"ĠBai":33155,"Ġcountering":33156,"raper":33157,"ursions":33158,"ĠFlav":33159,"pared":33160,"raised":33161,"Ñı":33162,"ĠDiff":33163,"Ġreload":33164,"ourses":33165,"ĠBurning":33166,"Ġwand":33167,"Ġledger":33168,"Ġcoughing":33169,"ĠLoren":33170,"Nazis":33171,"Ġcompile":33172,"Eight":33173,"icultural":33174,"yy":33175,"Ġ1932":33176,"Run":33177,"AIN":33178,"Ġattractiveness":33179,"ĠOmn":33180,"Ġconfer":33181,"compliance":33182,"Ġembed":33183,"Steven":33184,"2001":33185,"Ġdecre":33186,"Ġprompts":33187,"ĠHare":33188,"Ġleaping":33189,"Ġslaughtered":33190,"Ġforfeiture":33191,"342":33192,"Charl":33193,"CDC":33194,"ographically":33195,"Ġduplicate":33196,"Ġdistracting":33197,"examination":33198,"Ġpeas":33199,"Ġcatchy":33200,"Ġdives":33201,"ĠAda":33202,"Hay":33203,"Ġenthusiastically":33204,"Ġfunky":33205,"kay":33206,"EVA":33207,"Ġpsychologists":33208,"Ġancestry":33209,"iyah":33210,"ifter":33211,"nob":33212,"518":33213,"rouse":33214,"Ġchord":33215,"Ġcone":33216,"Ġbarracks":33217,"ĠRoyale":33218,"ĠIntegration":33219,"Ġtrolling":33220,"ĠSynt":33221,"andals":33222,"ĠGrain":33223,"ĠNeck":33224,"618":33225,"Ġrapist":33226,"pins":33227,"Ġwitty":33228,"Ġdehydration":33229,"arlane":33230,"Ġimmoral":33231,"Ġaccum":33232,"ĠMcAuliffe":33233,"slow":33234,"Ġinjust":33235,"Ġ1700":33236,"Ġcarbs":33237,"Ġintel":33238,"Non":33239,"isks":33240,"Tre":33241,"Ġinterviewer":33242,"sam":33243,"Ġdelve":33244,"Ġadmirable":33245,"ĠROM":33246,"ĠHispanics":33247,"Ġimpart":33248,"Ġunderrated":33249,"Ġvictimized":33250,"ĠPsych":33251,"ppings":33252,"Ġ610":33253,"pole":33254,"Ġdiner":33255,"ĠScale":33256,"Ġunforeseen":33257,"surprisingly":33258,"opus":33259,"ĠCOURT":33260,"Ġjuggling":33261,"ĠFacilities":33262,"Aid":33263,"ĠHPV":33264,"Ġcrawling":33265,"flu":33266,"etary":33267,"ĠHarriet":33268,"329":33269,"ĠSod":33270,"ĠBiological":33271,"birth":33272,"ribed":33273,"Ġpulses":33274,"396":33275,"eways":33276,"ĠAlma":33277,"nov":33278,"015":33279,"ricane":33280,"agna":33281,"Ak":33282,"ĠClaim":33283,"Ġpref":33284,"Ġinterfaces":33285,"ĠADHD":33286,"604":33287,"ZE":33288,"venture":33289,"Ġascend":33290,"ĠGou":33291,"Ġpriceless":33292,"redo":33293,"kw":33294,"Conf":33295,"Ġmah":33296,"Ġpoets":33297,"Ġstalk":33298,"Ġencamp":33299,"Ġhopped":33300,"Ġmelody":33301,"JECT":33302,"eming":33303,"Ġbewild":33304,"aternal":33305,"uchs":33306,"dit":33307,"ĠTransmission":33308,"Lake":33309,"Ġatoms":33310,"ĠThoughts":33311,"ilts":33312,"volume":33313,"Ġsocioeconomic":33314,"atisf":33315,"Ġnarr":33316,"zinski":33317,"ymes":33318,"episode":33319,"Ġinherit":33320,"Ġintending":33321,"Ġarenas":33322,"uras":33323,"burning":33324,"334":33325,"teenth":33326,"Ġsophistication":33327,"Ġscreenshots":33328,"Ġautistic":33329,"lip":33330,"paper":33331,"Ġmonopol":33332,"799":33333,"forms":33334,"ocrats":33335,"Ġpineapple":33336,"Ġbegs":33337,"Ġpersecuted":33338,"Ġsubscribed":33339,"Ġelic":33340,"ĠPRESIDENT":33341,"297":33342,"Ġpreferential":33343,"Ġpyramid":33344,"Ġconvergence":33345,"Ġwob":33346,"Project":33347,"ĠAluminum":33348,"ĠJPM":33349,"ĠBAT":33350,"Ġdolphins":33351,"018":33352,"healthy":33353,"ĠCG":33354,"ĠEffective":33355,"worm":33356,"ĠEas":33357,"olicited":33358,"ĠUSE":33359,"ĠCaval":33360,"Ġswirl":33361,"Ġspaghetti":33362,"Ġinward":33363,"Republican":33364,"Ġpublicized":33365,"Ġeconomical":33366,"Ġsalsa":33367,"ĠTitanic":33368,"dot":33369,"Ġcontro":33370,"ĠBangl":33371,"iban":33372,"ĠKlux":33373,"Ġhinges":33374,"610":33375,"Ġvalves":33376,"profits":33377,"Wonder":33378,"Ġorient":33379,"Ġsque":33380,"Ġprivatization":33381,"Obama":33382,"Thousands":33383,"ĠTasman":33384,"Ġmaze":33385,"eem":33386,"Ġsurvives":33387,"istant":33388,"Ġenriched":33389,"Ġencl":33390,"Ġcompliments":33391,"ĠShoes":33392,"Ġinsanity":33393,"consider":33394,"agog":33395,"Ġbaffled":33396,"Ġ°":33397,"ĠWordPress":33398,"qus":33399,"usual":33400,"stall":33401,"Deb":33402,"ĠRothschild":33403,"Ġesche":33404,"Ġsoph":33405,"Ġambiguous":33406,"negative":33407,"Ġdiscouraging":33408,"Alexander":33409,"319":33410,"Ġsummon":33411,"ipation":33412,"000000":33413,"Ġminimalist":33414,"Ġenraged":33415,"777":33416,"Ġplanetary":33417,"Ġthroughput":33418,"Ġtemperament":33419,"ĠNIC":33420,"ileged":33421,"minster":33422,"ĠPLEASE":33423,"Ġexagger":33424,"ĠDescription":33425,"Ġagitated":33426,"Ġimmortal":33427,"Ġrenders":33428,"Ġcharisma":33429,"sequ":33430,"Ġmajorities":33431,"Ġfreaking":33432,"ĠAdvice":33433,"Ġembodies":33434,"stable":33435,"Ġcustomization":33436,"started":33437,"ĠAutism":33438,"Ġparticipates":33439,"ĠUTC":33440,"Marco":33441,"Ġoddly":33442,"Ġantiqu":33443,"ĠPear":33444,"ĠFey":33445,"Ġcertify":33446,"Ġdisillusion":33447,"ĠPhysicians":33448,"obl":33449,"855":33450,"Ġelim":33451,"Ġ335":33452,"Ol":33453,"ĠSear":33454,"Ġnuances":33455,"past":33456,"Sa":33457,"ĠSlov":33458,"Ġfiltered":33459,"Ġanalogy":33460,"Ġformulate":33461,"Ġarmies":33462,"Ġpuls":33463,"fters":33464,"ilipp":33465,"ĠHOT":33466,"485":33467,"ĠAfghans":33468,"Ġtopical":33469,"ĠBunny":33470,"seeing":33471,"Ġeloqu":33472,"Ġkidneys":33473,"ĠDEM":33474,"pent":33475,"Ġhus":33476,"stores":33477,"ĠProtestant":33478,"Comm":33479,"label":33480,"Kings":33481,"ĠPurpose":33482,"â̦..":33483,"Ġaccumulating":33484,"calling":33485,"Ġgiveaways":33486,"Ġpredicament":33487,"Ġtyp":33488,"Ġtraveler":33489,"003":33490,"impro":33491,"fac":33492,"Ġmapped":33493,"itious":33494,"Ġmasculinity":33495,"Ġtantal":33496,"ĠDJs":33497,"Ġviewpoints":33498,"Burn":33499,"ĠWii":33500,"pak":33501,"ĠEB":33502,"Ġhinge":33503,"Ġfacets":33504,"Ġphotographic":33505,"Ġcompiling":33506,"Ġdecks":33507,"Ġarticulated":33508,"Federal":33509,"crim":33510,"llah":33511,"Ġfiasco":33512,"ĠLIST":33513,"oute":33514,"ĠDraper":33515,"ĠLaos":33516,"Ġclimbers":33517,"raph":33518,"ĠDek":33519,"WAY":33520,"Ġgreets":33521,"Ġoppressive":33522,"otor":33523,"otiation":33524,"\":[":33525,"Record":33526,"mining":33527,"Town":33528,"Ġfavorably":33529,"ĠYoutube":33530,"William":33531,"Ġlan":33532,"â̲":33533,"ĠSpec":33534,"Ġtranquil":33535,"ĠClient":33536,"oln":33537,"celona":33538,"Ġrealistically":33539,"Ġmisplaced":33540,"ĠBie":33541,"bye":33542,"Yo":33543,"465":33544,"ĠMadagascar":33545,"oplan":33546,"arist":33547,"Ġconfines":33548,"Ġï":33549,"awks":33550,"Ġpiracy":33551,"Ġunwelcome":33552,"Intel":33553,"Ġparanoid":33554,"CLAIM":33555,"Ġblush":33556,"united":33557,"Ġmotivational":33558,"ĠVII":33559,"Ġdiabetic":33560,"Ġantiv":33561,"Ġdissect":33562,"Ġbestselling":33563,"Ġfluffy":33564,"ĠRemote":33565,"Ġvert":33566,"Correct":33567,"Ġcolossal":33568,"Ġcontrasts":33569,"Ġcirca":33570,"ĠDamage":33571,"Ġunrel":33572,"Ġdiscrepancy":33573,"ĠCIS":33574,"ĠCLASS":33575,"ilty":33576,"Ġsynopsis":33577,"emed":33578,"cakes":33579,"ibal":33580,"inea":33581,"ienced":33582,"Ġimplicit":33583,"ĠLOOK":33584,"Ġsilhouette":33585,"affiliated":33586,"ĠHalo":33587,"377":33588,"Ġlyr":33589,"ĠVide":33590,"herent":33591,"Ġbadges":33592,"plays":33593,"orea":33594,"Ġjammed":33595,"cancer":33596,"ĠYep":33597,"racted":33598,"ĠDisability":33599,"Ġfooth":33600,"friends":33601,"Ġbloated":33602,"Bet":33603,"ĠAntioch":33604,"Ġintrodu":33605,"Ġannexed":33606,"ivism":33607,"ĠFlickr":33608,"pants":33609,"Ġinterruption":33610,"645":33611,"ĠIly":33612,"ĠOss":33613,"ĠAMA":33614,"Ġpolitely":33615,"Ġnatives":33616,"Ġrushes":33617,"enges":33618,"ĠHarm":33619,"Ġdestroyer":33620,"ĠEstimates":33621,"Ġtransforms":33622,"Ġinvariably":33623,"Ġcac":33624,"iency":33625,"599":33626,"Ġconstitutionally":33627,"Ġrappers":33628,"ĠSettlement":33629,"icz":33630,"Ġhardened":33631,"citizens":33632,"Ġcircling":33633,"Ġtrapping":33634,"Ġguaranteeing":33635,"690":33636,"agher":33637,"Ġarcade":33638,"Ġfanc":33639,"Ġslapping":33640,"OPS":33641,"Ġmasse":33642,"Ġpudding":33643,"Jac":33644,"ĠGraphics":33645,"Ġuptake":33646,"?,":33647,"Fair":33648,"ĠSatan":33649,"uffy":33650,"ĠGuatem":33651,"ĠTransaction":33652,"Ġunlocking":33653,"ĠLINE":33654,"Ġapprehens":33655,"Ġglean":33656,"291":33657,"Ġexacerbate":33658,"ĠTrave":33659,"ĠTrop":33660,"Supp":33661,"Ġqueens":33662,"cart":33663,"Ġscrolling":33664,"Ġox":33665,"cone":33666,"Matthew":33667,"ĠDIRECT":33668,"Ġbacker":33669,"Ġthyroid":33670,"Sarah":33671,"ĠEDIT":33672,"ĠActivision":33673,"352":33674,"Ġreinforcements":33675,"Ġding":33676,"Ġplush":33677,"Ġpeanuts":33678,"ĠFant":33679,"ĠPediatrics":33680,"Ġaccommodating":33681,"ĠPractices":33682,"Answer":33683,"racial":33684,"ĠConstant":33685,"740":33686,"strength":33687,"apist":33688,"Ġsynthes":33689,"ĠLeap":33690,"ĠFabric":33691,"Ġbrainstorm":33692,"obia":33693,"Ġconception":33694,"Ġtuberculosis":33695,"Ġmajestic":33696,"ĠTitus":33697,"ĠTee":33698,"Ġlikeness":33699,"ĠSEA":33700,"lite":33701,"Ġ950":33702,"sufficient":33703,"Ġtrem":33704,"Ġharshly":33705,"Ġredacted":33706,"Ġwelding":33707,"Ġperplex":33708,"Ġpoetic":33709,"Ġinsignificant":33710,"Ġware":33711,"Ġwandered":33712,"Ġmete":33713,"ĠSTART":33714,"Ġweaponry":33715,"opsy":33716,"shadow":33717,"Ġobsc":33718,"hare":33719,"ĠOPEN":33720,"Ġdiligent":33721,"Girls":33722,"Ġinitials":33723,"Start":33724,"ĠBrookings":33725,"ombs":33726,"Ġlashes":33727,"essor":33728,"Ġgravy":33729,"ĠUbuntu":33730,"Tree":33731,"Ġ435":33732,"Ġcellar":33733,"Ġaquarium":33734,"ĠPodesta":33735,"361":33736,"ĠController":33737,"Ġeru":33738,"reasonable":33739,"Ġpermissions":33740,"725":33741,"Ġadministering":33742,"Ġflirt":33743,"Ġfleeting":33744,"asive":33745,"Ġsubcontract":33746,"Ġfascist":33747,"Ġcabbage":33748,"science":33749,"Ġboiler":33750,"ioned":33751,"Ġintegrates":33752,"Ġresidue":33753,"KEY":33754,"Ġwi":33755,"Ġsquared":33756,"Unless":33757,"Ġmute":33758,"ĠTuc":33759,"Ġverb":33760,"Gary":33761,"Ġexperimentation":33762,"fee":33763,"chini":33764,"Ġmarrow":33765,"ĠBalt":33766,"Ġnodded":33767,"tn":33768,"Ġmissionary":33769,"OTO":33770,"Ġoptimum":33771,"555":33772,"Ġwhipping":33773,"aunts":33774,"ĠScene":33775,"Ġcharacterize":33776,"Ġretrospective":33777,"Ġutilizes":33778,"Ġhastily":33779,"older":33780,"ĠPW":33781,"Ġsleepy":33782,"020":33783,"ĠAcid":33784,"Ġridiculously":33785,"Ġgigg":33786,"649":33787,"Ġcrus":33788,"ĠShame":33789,"ĠTorn":33790,"finding":33791,"IPS":33792,"Ġplat":33793,"ometers":33794,"Ġamphib":33795,"ellow":33796,"ĠSpecies":33797,"commercial":33798,"Ġvirgin":33799,"Ġdarn":33800,"Ġsorely":33801,"Ġrespondent":33802,"Ġray":33803,"ĠCONS":33804,"Ġunequivocally":33805,"server":33806,"Ġdrip":33807,"ĠRazor":33808,"Ban":33809,"ĠHMS":33810,"Ġhijab":33811,"ĠMuss":33812,"Ġsandy":33813,"Ġaversion":33814,"Ġoverarching":33815,"Ġultr":33816,"ĠIraqis":33817,"Ġuninterrupted":33818,"Ġrouting":33819,"Ġundone":33820,"independence":33821,"gra":33822,"ysics":33823,"inflammatory":33824,"cussion":33825,"ĠDefinitely":33826,"Ġelastic":33827,"peer":33828,"ĠGiov":33829,"ĠMandarin":33830,"Ġscratches":33831,"Ġphysicist":33832,"Ġbestowed":33833,"usually":33834,"OULD":33835,"igration":33836,"Human":33837,"Dead":33838,"osph":33839,"bott":33840,"doctoral":33841,"Ġbending":33842,"Ġconfigurations":33843,"psych":33844,"db":33845,"ĠUD":33846,"Ġarteries":33847,"orically":33848,"Ġblasphemy":33849,"jj":33850,"checking":33851,"adian":33852,"IRD":33853,"ĠDialogue":33854,"Ġshielded":33855,"ĠVox":33856,"Dave":33857,"Ġturb":33858,"ĠMassive":33859,"ĠBMI":33860,"ĠNF":33861,"uced":33862,"ickle":33863,"ishable":33864,"Ġembody":33865,"ÙĪ":33866,"Senior":33867,"ĠResult":33868,"try":33869,"egu":33870,"401":33871,"ĠLoyal":33872,"Ġperilous":33873,"Ġdissu":33874,"Ġmythology":33875,"ĠWax":33876,"Jesus":33877,"ĠMotorsport":33878,"Ġadvis":33879,"ĠAki":33880,"ISM":33881,"tested":33882,"Ġplag":33883,"Ġriches":33884,"ĠOCT":33885,"ĠLocke":33886,"BG":33887,"Ġ460":33888,"rawl":33889,"ĠTermin":33890,"Ġ295":33891,"Ġchopping":33892,"KT":33893,"Ġconverts":33894,"Ask":33895,"alse":33896,"ĠKeynes":33897,"Ġrefuted":33898,"Ġrabbits":33899,"Ġbilingual":33900,"urse":33901,"ĠSalad":33902,"odiac":33903,"Ġsolidly":33904,"Dam":33905,"Ġpp":33906,"rities":33907,"Rah":33908,"itness":33909,"Ġsixty":33910,"332":33911,"cold":33912,"Ġhindered":33913,"Ġclipped":33914,"Ġreceptor":33915,"ĠHoms":33916,"Ġdusk":33917,"Ġarchae":33918,"LR":33919,"Ġrods":33920,"Ġ257":33921,"ĠSith":33922,"ĠPumpkin":33923,"ellation":33924,"ĠWD":33925,"Ġdecriminal":33926,"Ġusable":33927,"Ġcheerful":33928,"ĠInform":33929,"Ġbrushes":33930,"vier":33931,"ĠBrush":33932,"590":33933,"boost":33934,"guided":33935,"ĠMJ":33936,"Ġsatirical":33937,"ortion":33938,"efficiency":33939,"Ġstrands":33940,"ĠWilde":33941,"Ġreproduce":33942,"verage":33943,"Ġlug":33944,"Ġhist":33945,"offer":33946,"Ġcollapses":33947,"Ġclerks":33948,"Ġairstrike":33949,"IPP":33950,"iscover":33951,"Ġnefarious":33952,"Ġstripe":33953,"Ġbona":33954,"ocon":33955,"Ġpunishments":33956,"ITED":33957,"ĠAltern":33958,"testing":33959,"Ġeerie":33960,"erous":33961,"Ġcaves":33962,"Ġcondemns":33963,"ĠDropbox":33964,"inese":33965,"axis":33966,"ĠRegistry":33967,"ĠMong":33968,"Ġbullies":33969,"Ġdocks":33970,"ĠAlter":33971,"rella":33972,"446":33973,"ĠDare":33974,"Ġvirtues":33975,"Ġdont":33976,"Value":33977,"ENE":33978,"received":33979,"Ġseaf":33980,"476":33981,"ilon":33982,"ĠKits":33983,"Ġrarity":33984,"Ġnurt":33985,"skin":33986,"ĠUL":33987,"ĠRegiment":33988,"terior":33989,"hate":33990,"ĠEstimated":33991,"ĠSilence":33992,"Ġorganism":33993,"ĠSigned":33994,"ĠIA":33995,"bite":33996,"Ġthicker":33997,"Ġeyeb":33998,"Ġjournalistic":33999,"ĠDisp":34000,"margin":34001,"Dri":34002,"Ġcomplexes":34003,"Ġimaginary":34004,"Ġrefuel":34005,"Ġmeticulous":34006,"Dub":34007,"Ġhaze":34008,"860":34009,"Ġproverbial":34010,"Ġozone":34011,"cale":34012,"resent":34013,"Ġdiscrete":34014,"boats":34015,"Ġ343":34016,"ĠRET":34017,"Ġsailor":34018,"hair":34019,"gear":34020,"Ġmalt":34021,"Ġpeach":34022,"ĠRabb":34023,"699":34024,"318":34025,"ĠVerge":34026,"Fin":34027,"ĠMighty":34028,"ierce":34029,"403":34030,"Ġdisenfranch":34031,"bass":34032,"nice":34033,"Ġsinks":34034,"ĠLaugh":34035,"367":34036,"ĠZur":34037,"Ġtravers":34038,"ĠMystery":34039,"onsense":34040,"ĠMonarch":34041,"Ġleapt":34042,"ergy":34043,"porate":34044,"display":34045,"ilet":34046,"Ġendemic":34047,"Bern":34048,"Ġpulmonary":34049,"Ġbroch":34050,"ĠManziel":34051,"Lyn":34052,"Repe":34053,"lda":34054,"hands":34055,"Ġtroublesome":34056,"Jordan":34057,"UTION":34058,"ĠALP":34059,"ĠLEG":34060,"Ġreconnaissance":34061,"ĠRNA":34062,"letters":34063,"ĠYounger":34064,"ĠLW":34065,"ĠSensor":34066,"388":34067,"Ġwielding":34068,"spr":34069,"Ġancestral":34070,"331":34071,"OTH":34072,"ĠAxis":34073,"irement":34074,"ĠCompact":34075,"voice":34076,"Ġpercussion":34077,"Ġendeav":34078,"Kate":34079,"ĠJACK":34080,"ĠMagnus":34081,"Ġinterconnected":34082,"ĠTraff":34083,"demon":34084,"Ġardent":34085,"ĠSomers":34086,"andum":34087,"346":34088,"heartedly":34089,"ayne":34090,"Design":34091,"melon":34092,"ĠCarib":34093,"Ġ1935":34094,"intention":34095,"cape":34096,"cend":34097,"organic":34098,"373":34099,"ĠRevival":34100,"ĠBLACK":34101,"Ġaspiration":34102,"yellow":34103,"bodied":34104,"Ġcrave":34105,"ĠIntelligent":34106,"ĠUnique":34107,"tab":34108,"386":34109,"ĠNess":34110,"Official":34111,"Stay":34112,"Ġcreat":34113,"iliary":34114,"rified":34115,"ĠPok":34116,"Ġabolition":34117,"Ka":34118,"ĠCourage":34119,"ĠDickens":34120,"rophic":34121,"ĠFAR":34122,"Ġfurnished":34123,".âĢĵ":34124,"rete":34125,"Ġvaginal":34126,"hner":34127,"ĠLONG":34128,"imates":34129,"ĠLiter":34130,"ĠMeasures":34131,"ĠBelg":34132,"\"-":34133,"ĠRaider":34134,"enario":34135,"rification":34136,"ĠFISA":34137,"ĠStab":34138,"Ġnar":34139,"mund":34140,"Tenn":34141,"Ġwakes":34142,"Ġcharg":34143,"okers":34144,"assment":34145,"Ġsiph":34146,"Ġludicrous":34147,"670":34148,"Ġcompositions":34149,"Ġpinnacle":34150,"ĠRankings":34151,"ĠTelescope":34152,"secure":34153,"Ġib":34154,"Ġaptly":34155,"paste":34156,"ĠJUST":34157,"RD":34158,"herry":34159,"sung":34160,"Ġmig":34161,"naires":34162,"Ġmigrated":34163,"Base":34164,"Ġamazingly":34165,"Ġunregulated":34166,"published":34167,"ĠPIT":34168,"ĠMissile":34169,"extreme":34170,"ĠAlone":34171,"skilled":34172,"ĠRamp":34173,"Ġcamer":34174,"Ġflyer":34175,"Ġbrewers":34176,"ĠReference":34177,"ĠMOV":34178,"ĠLep":34179,"Ġentitle":34180,"ivals":34181,"ĠPIN":34182,"Ġbatches":34183,"Ġunexplained":34184,"Ġenergies":34185,"Ġblurred":34186,"enged":34187,"orig":34188,"WF":34189,"olves":34190,"ĠPicks":34191,"ĠTwice":34192,"arranted":34193,"Ġmembrane":34194,"ĠMoonlight":34195,"Ġsulfur":34196,"Ġpurposely":34197,"Ġfumes":34198,"Ġ(#":34199,"onics":34200,"ivities":34201,"rollers":34202,"Ġflattering":34203,"felt":34204,"Ġintoxication":34205,"Bridge":34206,"ĠFallout":34207,"Ġcreatively":34208,"Ġpsychologically":34209,"Ġdespicable":34210,"gae":34211,"820":34212,"VERS":34213,"Ġtidal":34214,"Ġcarbohydrates":34215,"strip":34216,"Ġgravitational":34217,"Ġfeds":34218,"ĠZhao":34219,"legates":34220,"Ġ307":34221,"String":34222,"ĠRepair":34223,"Ġ1928":34224,"orses":34225,"atography":34226,"Boston":34227,"Ġasymm":34228,"ĠSomebody":34229,"Van":34230,"ĠSovereign":34231,"Ġnotoriety":34232,"Ġsimulate":34233,"ĠDiscussion":34234,"ĠTransition":34235,"Ġcopying":34236,"antage":34237,"ĠRodrig":34238,"Ġindifference":34239,"Ġ580":34240,"Ġastronomical":34241,"Ġscrews":34242,"840":34243,"inates":34244,"ĠStreaming":34245,"Ġentit":34246,"ĠLiterature":34247,"369":34248,"805":34249,"OTS":34250,"о":34251,"img":34252,"inness":34253,"Ġreverber":34254,"Ġpartition":34255,"Short":34256,"Ġmoist":34257,"Ġspoof":34258,"ĠDesire":34259,"orce":34260,"Ġcrammed":34261,"Ġunfor":34262,"Pan":34263,"ingen":34264,"Ġrelat":34265,"Mother":34266,"ĠGn":34267,"altern":34268,"Ġresurg":34269,"Ġcramped":34270,"ĠCitadel":34271,"Ġlaureate":34272,"Ġanalys":34273,"Ġnuns":34274,"ĠTie":34275,"activ":34276,"ĠSurprisingly":34277,"ĠProtective":34278,"ĠRedemption":34279,"Ġendlessly":34280,"Ġfists":34281,"spl":34282,"ĠKron":34283,"ĠExamples":34284,"Especially":34285,"Ġprejud":34286,"ĠSchwar":34287,"Ġ237":34288,"ĠPlants":34289,"ĠUNDER":34290,"Ġlasers":34291,"Ġsher":34292,"Ġgoddess":34293,"Ġwipes":34294,"409":34295,"ĠGTA":34296,"Ġhybrids":34297,"rowd":34298,"ĠMILL":34299,"ĠNUM":34300,"ĠGeek":34301,"ĠTWO":34302,"ĠTimbers":34303,"Ġresembled":34304,"ĠGRE":34305,"Bring":34306,"Ġcompressed":34307,"ĠOral":34308,"379":34309,"Ġwrench":34310,"LCS":34311,"Ġhomosexual":34312,"Kelly":34313,"Ġhump":34314,"ĠSicily":34315,"Ġperished":34316,"aos":34317,"doesn":34318,"scrib":34319,"Charlie":34320,"Ġshuffle":34321,"372":34322,"cedented":34323,"402":34324,"Ġtiers":34325,"Ġinteracted":34326,"ĠHG":34327,"ĠJere":34328,"ĠBRA":34329,"ĠDOC":34330,"things":34331,"Ġfaiths":34332,"Ġgirlfriends":34333,"Ġfortified":34334,"develop":34335,"ĠKus":34336,"iability":34337,"rase":34338,"iotics":34339,"ĠChern":34340,"boxes":34341,"abol":34342,"idan":34343,"emon":34344,"ĠJudaism":34345,"ĠSituation":34346,"ĠGrimm":34347,"Ġgou":34348,"ĠVictim":34349,"backer":34350,"Ġanimosity":34351,"ĠHorizons":34352,"ĠKazakh":34353,"Ġgrossly":34354,"ĠTac":34355,"yg":34356,"366":34357,"Ġcheaply":34358,"Ġformulated":34359,"ĠDangerous":34360,"offensive":34361,"Ġsauces":34362,"Ġkeyboards":34363,"666":34364,"Ġcanopy":34365,"Inc":34366,"astered":34367,"iesel":34368,"Ġadv":34369,"currency":34370,"Ġscapego":34371,"plings":34372,"ĠBDS":34373,"Ġstrangely":34374,"today":34375,"ĠEgyptians":34376,"Ġcoron":34377,"often":34378,"ĠTransformers":34379,"ĠAfterwards":34380,"reated":34381,"Ġpoisonous":34382,"Ġgeographically":34383,"Ġmell":34384,"Cross":34385,"Ġdeductible":34386,"ĠZionist":34387,"Ġcutter":34388,"ĠRP":34389,"ĠImag":34390,"Ġoverflow":34391,"358":34392,"ĠADD":34393,"bones":34394,"Ġflattened":34395,"ĠGREEN":34396,"Ġlaure":34397,"haps":34398,"ĠCellular":34399,"kens":34400,"363":34401,"ĠSmash":34402,"ĠSpeak":34403,"ĠMaiden":34404,"Ġgreedy":34405,"ĠManit":34406,"Ġfacet":34407,"ĠGPA":34408,"Ġracks":34409,"popular":34410,"322":34411,"ĠBars":34412,"avement":34413,"359":34414,"Ġpomp":34415,"Ġregisters":34416,"Fs":34417,"ĠLoving":34418,"ĠTaxi":34419,"concert":34420,"ĠArchae":34421,"Ġcurls":34422,"ĠSpit":34423,"ĠLIFE":34424,"Ġinvade":34425,"rolog":34426,"wreck":34427,"Ġconflicted":34428,"Ġ970":34429,"Ġexiled":34430,"Ġchew":34431,"udging":34432,"Ġexper":34433,"ĠFt":34434,"rius":34435,"ĠXer":34436,"~":34437,"Ġbandwagon":34438,"Fore":34439,"Cat":34440,"Ġoverflowing":34441,"Ġradios":34442,"Much":34443,"Ġfacilitates":34444,"ĠCaf":34445,"ĠQing":34446,"Use":34447,"Ġmang":34448,"Ġpissed":34449,"ĠOuter":34450,"within":34451,"ĠSchr":34452,"ĠSherlock":34453,"Ġ336":34454,"Ġcasc":34455,"chens":34456,"incent":34457,"Ġcultivating":34458,"ampions":34459,"Ġwasteful":34460,"adays":34461,"sets":34462,"ĠLF":34463,"watching":34464,"Ġabandonment":34465,"ĠJesuit":34466,"Ġlegislatures":34467,"regnancy":34468,"ĠColt":34469,"Ġinterns":34470,"Ġundertook":34471,"ĠIPA":34472,"ĠInstall":34473,"nsics":34474,"washer":34475,"Ġbeginners":34476,"ĠDiseases":34477,"Ġlimp":34478,"ĠESA":34479,"Basically":34480,"Ġprud":34481,"LED":34482,"Ġgrease":34483,"ousel":34484,"Ġrotten":34485,"ĠCele":34486,"facts":34487,"ĠLouie":34488,"ĠISI":34489,"481":34490,"Ġsett":34491,"Ġtoug":34492,"ĠReck":34493,"OUNT":34494,"ĠFou":34495,"Ġinhibitor":34496,"gru":34497,"bane":34498,"1980":34499,"ĠPanc":34500,"Ġsuperficial":34501,"Ġauthoritative":34502,"ĠVOL":34503,"790":34504,"Ġcrusade":34505,"airy":34506,"Ġemphatically":34507,"Ġflourishing":34508,"Ġ416":34509,"Ġheroine":34510,"inx":34511,"Ġanch":34512,"stretched":34513,"ĠRegener":34514,"ĠAncient":34515,"evaluate":34516,"Ġantibody":34517,"ĠEston":34518,"ĠAeg":34519,"Ġboldly":34520,"TN":34521,"ĠPercentage":34522,"Ġ747":34523,"Ġrapt":34524,"ĠEdited":34525,"Earth":34526,"phal":34527,"ĠXXX":34528,"arling":34529,"ĠReligion":34530,"Ġ503":34531,"forces":34532,"Ġendpoint":34533,"Miller":34534,"Ba":34535,"Ġdisappears":34536,"andre":34537,"Ġconnector":34538,"407":34539,"ĠTOUR":34540,"aura":34541,"ĠRazer":34542,"UPDATE":34543,"Ġcalib":34544,"original":34545,"ĠMonkey":34546,"Ir":34547,"Ġexacerb":34548,"killing":34549,"Ġforb":34550,"native":34551,"Ġpoking":34552,"Ġveiled":34553,"mails":34554,"Ġalphabet":34555,"Ġawkwardly":34556,"ĠNames":34557,"Ġspiders":34558,"ĠParam":34559,"ĠColour":34560,"Ġunification":34561,"ĠPione":34562,"Ġoffend":34563,"Ġscoff":34564,"ĠSAR":34565,"ĠBuildings":34566,"edes":34567,"ĠAke":34568,"Ġfirmware":34569,"Madison":34570,"policy":34571,"ĠComputing":34572,"ĠRW":34573,"Ġfluent":34574,"Ġdece":34575,"Ġswore":34576,"Ġrestaur":34577,"Ġpresses":34578,"ophon":34579,"Ġphilosopher":34580,"ften":34581,"Ġintruder":34582,"Ġleng":34583,"ĠCowboy":34584,"cled":34585,"Ġmeticulously":34586,"ĠPair":34587,"ĠEND":34588,"Ġcapsules":34589,"Ġauxiliary":34590,"Ġverses":34591,"Ġsheltered":34592,"Ġexplorer":34593,"ĠWolverine":34594,"auts":34595,"Ġinhibitors":34596,"ĠPeng":34597,"ĠValve":34598,"imar":34599,"Ġchuck":34600,"ĠRecording":34601,"Ġardu":34602,"Test":34603,"Ġinterven":34604,"Ġchrome":34605,"months":34606,"tap":34607,"ĠManz":34608,"format":34609,"ĠBalkans":34610,"Ġannex":34611,"uder":34612,"ĠAAC":34613,"Ġdisturbances":34614,"354":34615,"asms":34616,"ĠTad":34617,"puting":34618,"Ġfateful":34619,"imen":34620,"Ġaudi":34621,"ĠNewsweek":34622,"Around":34623,"Ġretribution":34624,"Ġsugars":34625,"Ġescapes":34626,"Ġlegitim":34627,"ĠProof":34628,"Ġmisogyn":34629,"cit":34630,"Ġclutching":34631,"exist":34632,"Ġrevol":34633,"Ġdiscs":34634,"discrimination":34635,"Ġstout":34636,"aline":34637,"ĠRandom":34638,"364":34639,"Ġapprehension":34640,"Ġmockery":34641,"Ġfossils":34642,"ĠStress":34643,"Ġbenefic":34644,"exc":34645,"lude":34646,"Small":34647,"Ġgh":34648,"Ġobserves":34649,"ĠSUP":34650,"Ġbrewer":34651,"ĠESP":34652,"Ġomitted":34653,"multiple":34654,"Ġminimizing":34655,"Ġtaco":34656,"Ġindifferent":34657,"medi":34658,"available":34659,"Ġ252":34660,"Ġsanity":34661,"ĠCookie":34662,"mostly":34663,"near":34664,"NASA":34665,"Ġlowly":34666,"seless":34667,"Ġobsess":34668,"itous":34669,"Dispatch":34670,"Ġcanyon":34671,"Ġbriefs":34672,"Say":34673,"ĠNato":34674,"ĠSpend":34675,"Ġ242":34676,"ĠEthernet":34677,"Ġmatte":34678,"ĠStim":34679,"hetics":34680,"Ġflourished":34681,"389":34682,"ĠMcA":34683,"695":34684,"Ġoverr":34685,"Ġtorment":34686,"Ġpirate":34687,"ĠJohann":34688,"roversial":34689,"ĠUnemployment":34690,"breakers":34691,"ĠMessages":34692,"tones":34693,"Ġtagging":34694,"Ġfrog":34695,"Jewish":34696,"Ġmessenger":34697,"Ġexasper":34698,"ernaut":34699,"Ġnarrower":34700,"ĠCatalyst":34701,"ĠSecrets":34702,"Ġadj":34703,"ĠFug":34704,"Ġaura":34705,"Ġtherape":34706,"mber":34707,"Ġcaliphate":34708,"Ġretreating":34709,"ĠComput":34710,"Ġburying":34711,"Ġail":34712,"Ġgriev":34713,"lins":34714,"825":34715,"tten":34716,"ifully":34717,"ĠTrials":34718,"igma":34719,"Ġ1914":34720,"Ġcoordinates":34721,"ocusing":34722,"ĠFeng":34723,"ĠWhale":34724,"Ġshorten":34725,"Ġcorrectness":34726,"evil":34727,"network":34728,"Ġreactive":34729,"assuming":34730,"ĠLaksh":34731,"games":34732,"Ġruining":34733,"excluding":34734,"annels":34735,"º":34736,"Ġrubbed":34737,"aleb":34738,"flex":34739,"iped":34740,"ĠLimit":34741,"allowed":34742,"ĠDMV":34743,"ĠLD":34744,"Ġstamina":34745,"conduct":34746,"Ġmislead":34747,"lib":34748,"ĠEminem":34749,"Ġpayoff":34750,"Ġkernel":34751,"Ġsweeps":34752,"Ġsonic":34753,"ĠKodi":34754,"unique":34755,"Ġsurrog":34756,"Michigan":34757,"Ġattest":34758,"Ġdummy":34759,"ĠStellar":34760,"ĠSquadron":34761,"ĠHait":34762,"ĠSpirits":34763,"605":34764,"ĠHemisphere":34765,"legram":34766,"ĠRack":34767,"opol":34768,"Ġfreshwater":34769,"cession":34770,"Ġabort":34771,"ĠLOG":34772,"Ġfuzzy":34773,"Ġcrystall":34774,"illation":34775,"ĠFreddy":34776,"Ġsalvation":34777,"Ġjuxtap":34778,"weekly":34779,"usha":34780,"456":34781,"Ġ660":34782,"ĠGlacier":34783,"Ġnegatives":34784,"Ġillegitimate":34785,"ĠProtein":34786,"Moore":34787,"Der":34788,"Ġinfancy":34789,"Again":34790,"ALD":34791,"Leon":34792,"ĠIdeally":34793,"fresh":34794,"730":34795,"Ġgamb":34796,"Ġscrewed":34797,"wow":34798,"Ġembodied":34799,"ĠCinderella":34800,"341":34801,"ĠPiano":34802,"Ġbroccoli":34803,"Ġmats":34804,"ĠZheng":34805,"cream":34806,"anut":34807,"ĠZig":34808,"Columb":34809,"ĠTibetan":34810,"Death":34811,"Ġstren":34812,"ĠVertical":34813,"Ġratification":34814,"Ġprincipally":34815,"ELD":34816,"Ġforbid":34817,"Ġamalg":34818,"blind":34819,"auri":34820,"stery":34821,"Ġbarley":34822,"FBI":34823,"ĠHex":34824,"925":34825,"Domin":34826,"oat":34827,"Ġswayed":34828,"ĠKKK":34829,"ĠTaxes":34830,"Ġker":34831,"eeper":34832,"ĠAwakens":34833,"ĠPix":34834,"ĠKING":34835,"dc":34836,"Ren":34837,"Ġlegitimately":34838,"ĠTriumph":34839,"ĠSites":34840,"ĠSai":34841,"tl":34842,"painted":34843,"ĠWaiting":34844,"starting":34845,"parents":34846,"ĠDuo":34847,"eele":34848,"upper":34849,"ĠInvestig":34850,"Ġeighteen":34851,"Ġcorrelated":34852,"ĠCascade":34853,"acca":34854,"ĠAlph":34855,"ĠPolic":34856,"ĠEVs":34857,"Ġworthless":34858,"ĠIndust":34859,"auld":34860,"ĠYiannopoulos":34861,"ĠEzra":34862,"Ġmorphed":34863,"Ġoriginating":34864,"mania":34865,"Ġsparing":34866,"Ġextrem":34867,"cre":34868,"ults":34869,"mare":34870,"classified":34871,"Ġparachute":34872,"Ġmistrust":34873,"ONT":34874,"Mind":34875,"Ġthru":34876,"707":34877,"ĠTwain":34878,"Ġmelodies":34879,"ĠDanger":34880,"ĠDPS":34881,"Ġderive":34882,"Ġdissolution":34883,"Ġchildbirth":34884,"Ġ415":34885,"fork":34886,"solid":34887,"loads":34888,"ĠCGI":34889,"378":34890,"ĠShed":34891,"Face":34892,"Ġcomet":34893,"iceps":34894,"ĠReduction":34895,"Fly":34896,"jp":34897,"ĠAnimation":34898,"Luke":34899,"Ġabiding":34900,"Ġdevise":34901,"ĠAe":34902,"Ġflux":34903,"Ġbras":34904,"Ġfracturing":34905,"Ġinventive":34906,"ĠGranger":34907,"Ġsap":34908,"inducing":34909,"Ġreviewers":34910,"Officers":34911,"ĠWHY":34912,"Ġamplify":34913,"Ġentr":34914,"Ġslit":34915,"457":34916,"Ġreformed":34917,"ĠPhi":34918,"Ġtempt":34919,"Ġcontradiction":34920,"585":34921,"ĠMaced":34922,"371":34923,"kinson":34924,"robe":34925,"ĠHunters":34926,"astern":34927,"criminal":34928,"jew":34929,"Ġdecentralized":34930,"bands":34931,"Ġavatar":34932,"ĠBarrier":34933,"Ġcharacterization":34934,"student":34935,"Ġgays":34936,"Ġspecialize":34937,"ĠJudging":34938,"Ġinitiation":34939,"Ġshove":34940,"Ġpirates":34941,"Ġfictitious":34942,"ĠPoker":34943,"ĠElsa":34944,"ĠTECH":34945,"handedly":34946,"Ġglued":34947,"Ġclinically":34948,"Ġinaccessible":34949,"Ġderegulation":34950,"Ġprohib":34951,"Ġdangling":34952,"Ġnoses":34953,"Ġstash":34954,"اØ":34955,"ESH":34956,"Ġmonstrous":34957,"Ġcrept":34958,"ĠCharm":34959,"Ġbeh":34960,"Ġshuts":34961,"Ġ236":34962,"imedia":34963,"445":34964,"Du":34965,"Ġafar":34966,"ĠRout":34967,"Ġflares":34968,"Utah":34969,"Ġ808":34970,"Ġjewels":34971,"2004":34972,"Ġrecal":34973,"Gas":34974,"ĠExcellent":34975,"Ġpitfalls":34976,"ĠDrawing":34977,"viously":34978,"angered":34979,"changes":34980,"Ġpasture":34981,"talking":34982,"Ġinequ":34983,"Ġbicycl":34984,"Cost":34985,"423":34986,"bard":34987,"Ġanterior":34988,"ecast":34989,"CHR":34990,"397":34991,"masters":34992,"706":34993,"ĠFinish":34994,"Yet":34995,"study":34996,"ĠCogn":34997,"Ġloaf":34998,"Ġspatial":34999,"ĠParad":35000,"batch":35001,"Ġvents":35002,"Ġspins":35003,"ĠAddiction":35004,"Ġcondone":35005,"Ġproble":35006,"English":35007,"ĠRomans":35008,"ĠSaying":35009,"ĠKling":35010,"Universal":35011,"ivist":35012,"Ġskirm":35013,"Ġ2500":35014,"Ġ263":35015,"aired":35016,"ĠMartian":35017,"ĠCompensation":35018,"lation":35019,"ĠSalam":35020,"LGBT":35021,"ĠDart":35022,"strike":35023,"vasive":35024,"ILLE":35025,"Ġimaginative":35026,"ĠEuph":35027,"Financial":35028,"Ġholog":35029,"orah":35030,"crit":35031,"ĠOswald":35032,"512":35033,"ĠUri":35034,"Ġdiscrepancies":35035,"Ġbeads":35036,"ĠShots":35037,"Mem":35038,"Ġhunts":35039,"Ġsubtly":35040,"Ġ470":35041,"ĠVigil":35042,"Ġsew":35043,"ĠBurma":35044,"igm":35045,"ighed":35046,"swe":35047,"Ġ251":35048,"Ġdeceit":35049,"Ġphysi":35050,"iflower":35051,"ĠCert":35052,"Ġchewing":35053,"rax":35054,"ĠMER":35055,"icient":35056,"Les":35057,"Ġ390":35058,"Ġperjury":35059,"Ġfiltering":35060,"770":35061,"Ġpoppy":35062,"Ġbland":35063,"ĠNasa":35064,"Ġorbiting":35065,"ĠRipple":35066,"otal":35067,"ĠRyu":35068,"ĠShap":35069,"ĠJian":35070,"Ġpiv":35071,"ĠNeptune":35072,"rary":35073,"Ġunavoidable":35074,"Ġguideline":35075,"Ġwaterfall":35076,"inators":35077,"ĠLogic":35078,"ĠPlug":35079,"role":35080,"Ġalterations":35081,"ĠSett":35082,"ĠFeld":35083,"Ġfreezes":35084,"Ġbedrock":35085,"ĠVIEW":35086,"ovation":35087,"Ġneedless":35088,"ĠIU":35089,"ignant":35090,"ĠConfeder":35091,"316":35092,"fine":35093,"Ġjars":35094,"gotten":35095,"Bron":35096,"Ġmindfulness":35097,"imating":35098,"Ġhysteria":35099,"Ġhurried":35100,"Ġinfantry":35101,"ĠNYU":35102,"tags":35103,"Penn":35104,"Ġtracing":35105,"ĠSwing":35106,"ĠIo":35107,"Ġreckoned":35108,"ĠRecall":35109,"ĠVersion":35110,"314":35111,"Ġecology":35112,"Ġarmoured":35113,"Ġresonance":35114,"970":35115,"Ġvigilance":35116,"Ġrede":35117,"ĠBohem":35118,"Ġchau":35119,"ĠDevi":35120,"Ġtru":35121,"))":35122,"Put":35123,"Ġflavored":35124,"ĠClown":35125,"Senate":35126,"ĠScandinavian":35127,"mable":35128,"Residents":35129,"ĠFranchise":35130,"Ġprecincts":35131,"Prem":35132,"ĠNeutral":35133,"coal":35134,"Ġdelinqu":35135,"Mus":35136,"UME":35137,"Ġtedious":35138,"roots":35139,"ĠCondition":35140,"ĠIntercept":35141,"017":35142,"itives":35143,"Ġdefinitively":35144,"Ġobliter":35145,"Ġclandestine":35146,"Ġstagnation":35147,"Ġblindness":35148,"abiding":35149,"Ġremix":35150,"feeding":35151,"Ġunrecogn":35152,"2003":35153,"960":35154,"381":35155,"Ġbulky":35156,"xia":35157,"ivered":35158,"inic":35159,"ĠSoci":35160,"ĠYards":35161,"Ġhides":35162,"Film":35163,"Ġtestim":35164,"Ġblacklist":35165,"Deep":35166,"Standard":35167,"ĠClash":35168,"Ġriddled":35169,"Ġdiseng":35170,"ĠTRE":35171,"ĠIDs":35172,"Ġmigrating":35173,"protect":35174,"Ġgraded":35175,"Ġvaguely":35176,"ĠCharacter":35177,"382":35178,"ĠMOD":35179,"Eng":35180,"Ġmobilized":35181,"Ġsincerity":35182,"Ġ317":35183,"sighted":35184,"ownt":35185,"ĠâĢİ":35186,"umpy":35187,"Ġitching":35188,"ĠVerd":35189,"cook":35190,"Ġsimulator":35191,"players":35192,"Early":35193,"infeld":35194,"Ġmaximizing":35195,"Philipp":35196,"ĠPhotoshop":35197,"Ġdestroys":35198,"Ġbefriend":35199,"Ġfilthy":35200,"ĠIncident":35201,"gha":35202,"Ġcomplicity":35203,"Ġmessing":35204,"YA":35205,"ĠNegro":35206,"adows":35207,"374":35208,"Ġpip":35209,"cean":35210,"Ġ1924":35211,"Sent":35212,"represent":35213,"Ġdeems":35214,"ĠRue":35215,"Ġtitanium":35216,"Ġmanners":35217,"â̦â̦":35218,"bare":35219,"Ġusur":35220,"mma":35221,"ĠPanda":35222,"ulus":35223,"ĠSlav":35224,"324":35225,"ĠMole":35226,"^":35227,"micro":35228,"foreign":35229,"lest":35230,"ocular":35231,"ĠUniv":35232,"ĠFrag":35233,"Ġshepherd":35234,"Ġelectron":35235,"ĠFSA":35236,"Ġunl":35237,"dose":35238,"Ġimmersion":35239,"ĠDeL":35240,"Ġbiomedical":35241,"Anna":35242,"Ġskillet":35243,"Ġrecre":35244,"Ġtrillions":35245,"voy":35246,"Ġnormalized":35247,"radio":35248,"cue":35249,"urbed":35250,"Ġthinkers":35251,"328":35252,"327":35253,"ĠForge":35254,"505":35255,"Ġunbearable":35256,"olini":35257,"Ġdisinfect":35258,"Ġshaving":35259,"Ġtoxicity":35260,"453":35261,"Ġheterosexual":35262,"Baltimore":35263,"Ġstool":35264,"lr":35265,"ĠMk":35266,"Ġantidote":35267,"Dark":35268,"810":35269,"Ġirritated":35270,"ĠSUPPORT":35271,"Chance":35272,"bent":35273,"ĠZelda":35274,"ĠPenguin":35275,"ifled":35276,"Ġarte":35277,"705":35278,"Ġcondol":35279,"izza":35280,"ĠCK":35281,"Ġprojector":35282,"ravings":35283,"Ġ1919":35284,"Ġburner":35285,"ĠSchwarz":35286,"Oregon":35287,"Ġridicule":35288,"Ġinstructional":35289,"Ġ\"#":35290,"ĠDign":35291,"Ġkitten":35292,"Ġconstit":35293,"iration":35294,"Speed":35295,"ecycle":35296,"ĠFalse":35297,"ĠDealer":35298,"Could":35299,"655":35300,"outside":35301,"Ġworldview":35302,"Ġ246":35303,"Ġspitting":35304,"595":35305,"MN":35306,"ĠComes":35307,"ingu":35308,"Ġenzymes":35309,"Ġcompass":35310,"Ġexclaimed":35311,"ĠMalays":35312,"Ġ1916":35313,"Ġcoloring":35314,"Ġrepeats":35315,"Ġsoils":35316,"Ġtrivia":35317,"ĠIsles":35318,"Const":35319,"ĠFiction":35320,"665":35321,"Ġcriminality":35322,"ĠZi":35323,"384":35324,"ĠWilderness":35325,"ĠCanary":35326,"ĠVs":35327,"и":35328,"ĠAPIs":35329,"Ġbehest":35330,"Ġeb":35331,"ĠHipp":35332,"Ġpreempt":35333,"Ġevoke":35334,"Ġinept":35335,"tele":35336,"447":35337,"ĠGarmin":35338,"Ġpursuits":35339,"351":35340,"Ġcliché":35341,"ĠJihad":35342,"Ġ308":35343,"ĠSnake":35344,"ĠAnnounce":35345,"Nearly":35346,"!'\"":35347,"Ġ1927":35348,"saw":35349,"Ġabhor":35350,"Plan":35351,"rawled":35352,"ĠRiy":35353,"ensor":35354,"Fal":35355,"quick":35356,"odynamic":35357,"Ġsubstitution":35358,"Ġprovoking":35359,"Operation":35360,"rupulous":35361,"Ġsweetness":35362,"folk":35363,"ĠDefault":35364,"Ġstarved":35365,"ĠPrinting":35366,"urious":35367,"ĠTracker":35368,"them":35369,"Ġleth":35370,"Ġemptied":35371,"Ġfootprints":35372,"ilian":35373,"Ġbattalion":35374,"Ġprophet":35375,"Ġrailing":35376,"Ġhect":35377,"rouch":35378,"lees":35379,"Ġideologies":35380,"Ġ254":35381,"ĠGods":35382,"ĠAvalon":35383,"Ġfrontrunner":35384,"ĠPork":35385,"ĠPipe":35386,"Ġscaven":35387,"Ġming":35388,"Ġerg":35389,"Ġ520":35390,"Ġhatched":35391,"asant":35392,"ĠHI":35393,"Ġpend":35394,"Ġ288":35395,"Prom":35396,"achev":35397,"ĠEcology":35398,"enforcement":35399,"467":35400,"dule":35401,"Ġrealism":35402,"ĠTypes":35403,"USB":35404,"utra":35405,"ĠHiroshima":35406,"Ġcontradicted":35407,"393":35408,"ĠDSL":35409,"Ġtherein":35410,"ĠReconstruction":35411,"Ġ243":35412,"irled":35413,"479":35414,"ĠWhats":35415,"Currently":35416,"ĠPOWER":35417,"ĠHiro":35418,"ĠBreath":35419,"ĠYourself":35420,"Ġlantern":35421,"376":35422,"É":35423,"ĠHumans":35424,"Lady":35425,"Ġdissemination":35426,"ecake":35427,"ĠChao":35428,"flat":35429,"Ġinspecting":35430,"stration":35431,"Ġidentifiable":35432,"CV":35433,"ĠLobby":35434,"function":35435,"Roll":35436,"DIV":35437,"Tell":35438,"Ġfasc":35439,"ĠAOL":35440,"HM":35441,"Keefe":35442,"Ġporous":35443,"Ġsmoot":35444,"existence":35445,"ĠDeg":35446,"Ġdivor":35447,"isner":35448,"allas":35449,"Bloomberg":35450,"Ġdictators":35451,"ĠGeh":35452,"Ġsilicone":35453,"Ġdab":35454,"Ġmashed":35455,"Ġpric":35456,"might":35457,"ĠBLM":35458,"Ġpatriarch":35459,"Microsoft":35460,"ĠAds":35461,"Ġcoronary":35462,"ĠContrary":35463,"Ġdra":35464,"ĠStarted":35465,"Ġbuckle":35466,"lear":35467,"accept":35468,"Within":35469,"bd":35470,"interested":35471,"bia":35472,"POR":35473,"motion":35474,"ĠFounders":35475,"ĠCassandra":35476,"ĠPassion":35477,"Ġbehavioural":35478,"ĠHealing":35479,"Ġmarkings":35480,"Ġsnowball":35481,"Ġridiculed":35482,"phase":35483,"Ġunto":35484,"aque":35485,"uggets":35486,"Ġfrantically":35487,"Ġcoward":35488,"Ġinconvenient":35489,"Taking":35490,"Afee":35491,"Ġtwisting":35492,"930":35493,"ĠSieg":35494,"ĠGit":35495,"Ġcurs":35496,"ĠGlas":35497,"ĠSignificant":35498,"Ġachieves":35499,"Ġpreferably":35500,"Ġcondensed":35501,"Ġfetus":35502,"Ġunivers":35503,"Ġpse":35504,"Access":35505,"Ġintertwined":35506,"been":35507,"quit":35508,"ĠLEGO":35509,"Ġimagining":35510,"454":35511,"Ġplains":35512,"sequently":35513,"pull":35514,"Fast":35515,"Pot":35516,"yles":35517,"AIR":35518,"Ġblatantly":35519,"eki":35520,"ilated":35521,"ĠMembership":35522,"Ġ262":35523,"Ġ}":35524,"Ġexcavation":35525,"Ġethn":35526,"addin":35527,"Ġfoundational":35528,"ceptions":35529,"ĠViet":35530,"exempt":35531,"Ġmicrophones":35532,"Ġ244":35533,"778":35534,"Ġdwar":35535,"attery":35536,"502":35537,"ĠKik":35538,"Ġinspir":35539,"ĠMaximum":35540,"Ġvengeance":35541,"Ġetched":35542,"outine":35543,"552":35544,"Ġunicorn":35545,"gged":35546,".�":35547,"ĠBlackwell":35548,"ĠStatue":35549,"Ġdissidents":35550,"ĠKaine":35551,"Ġdeforestation":35552,"ĠScholar":35553,"Ġpleasantly":35554,"ÑĤ":35555,"398":35556,"ĠRUN":35557,"arent":35558,"Ġundeniably":35559,"Ġtechnologically":35560,"Ġconsciously":35561,"ĠEther":35562,"Ġproportional":35563,"Ġlaund":35564,"ĠRye":35565,"Ġambiguity":35566,"Ġunmist":35567,"Terror":35568,"ciplinary":35569,"ĠImproved":35570,"hesis":35571,"Ġcooker":35572,"elsen":35573,"Ġguerrilla":35574,"opped":35575,"ATURE":35576,"Ġrequ":35577,"Ġunprepared":35578,"Ġcamel":35579,"Ġfitt":35580,"Sex":35581,"edged":35582,"Ġrecurrent":35583,"ctuary":35584,"ĠCompare":35585,"ĠServing":35586,"Tri":35587,"Ġtransient":35588,"ĠBees":35589,"Ġcovenant":35590,"Ġfantasies":35591,"Ġespresso":35592,"draft":35593,"baugh":35594,"Ġdemocratically":35595,"ĠBans":35596,"ĠManual":35597,"ĠTurtle":35598,"ennett":35599,"achy":35600,"ĠClim":35601,"Ġdescending":35602,"Ġprow":35603,"Ġinconsistencies":35604,"Player":35605,"Ġoblivious":35606,"ĠWonderland":35607,"nav":35608,"aughter":35609,"Ġlod":35610,"Ġ403":35611,"ĠPolaris":35612,"ĠLeia":35613,"ĠInfantry":35614,"Sy":35615,"ĠMeter":35616,"Ġautoimmune":35617,"Ġdiagnoses":35618,"Ġtrespass":35619,"011":35620,"wrong":35621,"ĠGREAT":35622,"Ġtelescopes":35623,"shows":35624,"Pac":35625,"olation":35626,"Ġclerics":35627,"Ġdissenting":35628,"406":35629,"Ġetiquette":35630,"Ġdeterrence":35631,"765":35632,"Ġove":35633,"Has":35634,"Pak":35635,"ा":35636,"ĠNec":35637,"Ġsociology":35638,"witz":35639,"Ġkittens":35640,"Ġcontinual":35641,"Ġoverlapping":35642,"Ġmonks":35643,"ĠMechanical":35644,"Captain":35645,"ocial":35646,"ĠFalling":35647,"ĠCorrection":35648,"ĠTrouble":35649,"Ġslog":35650,"Ġ253":35651,"Ġemanating":35652,"Ġwidest":35653,"PROV":35654,"Japanese":35655,"urat":35656,"Ġboxed":35657,"ĠCases":35658,"Ġjarring":35659,"Fix":35660,"'?":35661,"ĠStrateg":35662,"Republic":35663,"ovy":35664,"362":35665,"ĠMothers":35666,"Ġstreaks":35667,"Ġlocalized":35668,"ĠONLY":35669,"Ġeh":35670,"ĠObject":35671,"Ġstub":35672,"Fre":35673,"ĠScarlet":35674,"Ġmultip":35675,"ĠMaul":35676,"ĠProblems":35677,"cest":35678,"Ġmortal":35679,"Ġarche":35680,"ulet":35681,"Ġfuller":35682,"ĠGER":35683,"Si":35684,"mr":35685,"ĠPowerful":35686,"boxing":35687,"ĠPeer":35688,"Jean":35689,"ĠTF":35690,"Ġplural":35691,"optim":35692,"Jimmy":35693,"ĠFriendly":35694,"Mex":35695,"Ġdepri":35696,"PK":35697,"Ġwaitress":35698,"eph":35699,"arrass":35700,"ikawa":35701,"feel":35702,"Finally":35703,"fourth":35704,"394":35705,"conom":35706,"VT":35707,"Ġeleg":35708,"ivot":35709,"Ġharsher":35710,"ĠPepe":35711,"ĠImpl":35712,"Ġankles":35713,"idity":35714,"ĠPrepare":35715,"Rather":35716,"Ġconservatism":35717,"Ġunquestion":35718,"ribution":35719,"ĠPatent":35720,"ĠDeluxe":35721,"ĠAE":35722,"007":35723,"Ġprag":35724,"bg":35725,"Ġpalate":35726,"Ġintric":35727,"ossom":35728,"Ġspac":35729,"ĠSpotlight":35730,"Seven":35731,"amacare":35732,"ĠGotham":35733,"Ġencompass":35734,"Ġnicer":35735,"ĠLauder":35736,"Ġscaff":35737,"worn":35738,"442":35739,"Ġpropri":35740,"443":35741,"ĠCompos":35742,"ĠIniti":35743,"inth":35744,"Ġrehe":35745,"Prov":35746,"Ġgri":35747,"ossip":35748,"ĠModest":35749,"quiet":35750,"Ġwealthier":35751,"Ġ241":35752,"icum":35753,"Ġcommunism":35754,"Ġhelpers":35755,"Ġbellig":35756,"Ġ405":35757,"uttered":35758,"Ġbitterness":35759,"nl":35760,"474":35761,"Ġvitality":35762,"blank":35763,"ĠLeth":35764,"PAC":35765,"326":35766,"ĠNapoleon":35767,"Ġ299":35768,"ĠReviews":35769,"ĠSect":35770,"Ġstrongh":35771,"ĠTube":35772,"Ġwoodland":35773,"Ġhumming":35774,"411":35775,"Alpha":35776,"Ġundet":35777,"Ġmounts":35778,"Officials":35779,"igning":35780,"830":35781,"ĠStamp":35782,"ubby":35783,"424":35784,"Ġoutlandish":35785,"Ġjerk":35786,"Ġradiant":35787,"Ġcubes":35788,"Director":35789,"Ġatro":35790,"vous":35791,"Sab":35792,"Ġpretended":35793,"Ġ620":35794,"975":35795,"Sham":35796,"Ġpotassium":35797,"ĠAttention":35798,"gly":35799,"opens":35800,"ĠWorker":35801,"porter":35802,"Ġsplendid":35803,"embed":35804,"Je":35805,"ĠMeal":35806,"Ġsurname":35807,"Usually":35808,"Ġtimer":35809,"Ġweave":35810,"irin":35811,"ĠGenetics":35812,"ensual":35813,"Ġmerry":35814,"Ġapprehend":35815,"utsche":35816,"strate":35817,"Ġsupplementary":35818,"ĠRoundup":35819,"upid":35820,"Ġmiraculous":35821,"ĠHUN":35822,"Ġglaciers":35823,"weed":35824,"ĠSuggest":35825,"XL":35826,"authors":35827,"Ġbarking":35828,"ĠUKIP":35829,"leased":35830,"ĠRAD":35831,"Ġfide":35832,"Ġphen":35833,"Ġscanners":35834,"Parents":35835,"ĠBlaze":35836,"Ġtweaking":35837,"Ġelaborated":35838,"Ġsusp":35839,"iscovered":35840,"Ġthighs":35841,"Ġradicals":35842,"ULTS":35843,"aggressive":35844,"endants":35845,"Hon":35846,"Ġcorrecting":35847,"391":35848,"pps":35849,"ĠTerritories":35850,"Ġconferred":35851,"crazy":35852,"utor":35853,"ĠSurvival":35854,"Ġbrowsers":35855,"ĠConflict":35856,"pn":35857,"Ġdeprive":35858,"riage":35859,"ilan":35860,"à¦":35861,"949":35862,"Congratulations":35863,"radical":35864,"ĠHits":35865,"powerful":35866,"Ġcrypt":35867,"745":35868,"ĠRegistrar":35869,"ophile":35870,"ĠElement":35871,"cooked":35872,"ĠTwilight":35873,"Ġdemos":35874,"IER":35875,"Ġstricken":35876,"Magic":35877,"abby":35878,"ĠSack":35879,"ĠShrine":35880,"Nev":35881,"Probably":35882,"ĠWisdom":35883,"ulpt":35884,"opher":35885,"Ġcolonel":35886,"atl":35887,"Tem":35888,"kun":35889,"ĠIndie":35890,"Putin":35891,"jection":35892,"areth":35893,"ĠBullet":35894,"Ġsmartest":35895,"ĠEsper":35896,"Ġproficiency":35897,"Ġcessation":35898,"Ġmars":35899,"ĠDATA":35900,"sup":35901,"Ġostr":35902,"Jane":35903,"Ġpathogens":35904,"hd":35905,"ĠNK":35906,"Ġhorribly":35907,"regulated":35908,"Ġesteemed":35909,"ĠChinatown":35910,"Ġvibration":35911,"Ġoverboard":35912,"ĠRhod":35913,"Ġfeces":35914,"otation":35915,"Ġcryptic":35916,"Bal":35917,"OPER":35918,"Ġaffirmation":35919,"Ġmenstrual":35920,"Ġuntold":35921,"Ġanecdotes":35922,"ĠHOUSE":35923,"Ġcape":35924,"311":35925,"ittance":35926,"ĠRemy":35927,"ĠWaves":35928,"ĠCOVER":35929,"ordinate":35930,"Ġrestricts":35931,"Samsung":35932,"Ġplantations":35933,"olver":35934,"Better":35935,"ĠExplos":35936,"Ġnasal":35937,"ĠSyri":35938,"ĠPerl":35939,"Ġlatency":35940,"othermal":35941,"Sweet":35942,"ĠRyzen":35943,"ĠYuri":35944,"Ġsmack":35945,"Ġcrow":35946,"aniel":35947,"iological":35948,"Ġmonk":35949,"Ġtutorial":35950,"ĠAure":35951,"Ġcliffs":35952,"ameron":35953,"umers":35954,"ĠMour":35955,"Ġunorthodox":35956,"Ġgulf":35957,"Ġintrusive":35958,"ĠVIII":35959,"ĠFF":35960,"Ġenlarged":35961,"Ġspheres":35962,"ĠCheap":35963,"ĠAmend":35964,"Ġ::":35965,"Ġpacing":35966,"ĠStartup":35967,"ĠDating":35968,"racist":35969,"ĠDivine":35970,"Ġpollen":35971,"ĠMeaning":35972,"ĠLei":35973,"ĠMOT":35974,"ĠARC":35975,"legate":35976,"Ġbrav":35977,"Ross":35978,"redit":35979,"414":35980,"ringe":35981,"perhaps":35982,"SPA":35983,"Southern":35984,"Front":35985,"undrum":35986,"Ġassorted":35987,"ĠDawkins":35988,"ĠWrap":35989,"Ġconsequential":35990,"ĠFuji":35991,"458":35992,"Ġunst":35993,"Bon":35994,"acter":35995,"Trade":35996,"ingers":35997,"ĠClin":35998,"Ġstimul":35999,"arah":36000,"inois":36001,"urdy":36002,"Ġobsessive":36003,"Zone":36004,"Ġprimitive":36005,"unctions":36006,"Ġadapter":36007,"Ġassures":36008,"Daddy":36009,"Ġunsatisf":36010,"441":36011,"Ġ1910":36012,"Ġsecondly":36013,"truth":36014,"RED":36015,"040":36016,"Pope":36017,"venants":36018,"Ġestim":36019,"Ġhemorrh":36020,"Ġexcruciating":36021,"459":36022,"Ġboils":36023,"ieved":36024,"Storm":36025,"Ġmanifestation":36026,"Ġinsulated":36027,"fb":36028,"Ġclassify":36029,"Mbps":36030,"Ġinclination":36031,"Ġaur":36032,"Ġpolarized":36033,"Ġoccupations":36034,"Secretary":36035,"Ġcustomizable":36036,"scribe":36037,"Ġadjunct":36038,"Ġ1922":36039,"rived":36040,"ocative":36041,"Friends":36042,"Oak":36043,"Ġpsyche":36044,"Ġwrinkles":36045,"anthrop":36046,"Ġcoercion":36047,"enos":36048,"Ġvariability":36049,"hma":36050,"phot":36051,"ĠXander":36052,"ĠDiss":36053,"Ġtigers":36054,"ahoo":36055,"focus":36056,"rical":36057,"grow":36058,"Ġseminal":36059,"Ġdisciples":36060,"Cas":36061,"Hundreds":36062,"Ġscissors":36063,"correct":36064,"Ġfascism":36065,"imoto":36066,"Ġnudity":36067,"charg":36068,"Ġrusty":36069,"ĠLyndon":36070,"Ġanomalies":36071,"onial":36072,"ĠiCloud":36073,"Ġannoy":36074,"Ġdistortion":36075,"Lou":36076,"ĠGiul":36077,"eyes":36078,"870":36079,"uum":36080,"ĠUltr":36081,"Action":36082,"cigarette":36083,"igators":36084,"kj":36085,"Ġ323":36086,"uine":36087,"Score":36088,"Ġmans":36089,"Security":36090,"Ġarom":36091,"ĠBoards":36092,"Ġwrists":36093,"602":36094,"Ġastronomy":36095,"Ġresin":36096,"width":36097,")/":36098,"Ġconcurrent":36099,"unless":36100,"606":36101,"ĠMagnet":36102,"Ġauthorizing":36103,"ĠJunk":36104,"atical":36105,"Ġauthent":36106,"zac":36107,"413":36108,"ĠGrape":36109,"Ġcircled":36110,"Ġooz":36111,"Ġvisceral":36112,"ointment":36113,"Ġincendiary":36114,"ĠBourbon":36115,"Ġgimmick":36116,"vette":36117,"Stan":36118,"Ġdetachment":36119,"488":36120,"Ġmisogyny":36121,"Ġenlight":36122,"utic":36123,"Ġinquire":36124,"ĠBEL":36125,"ascular":36126,"ĠWasserman":36127,"Dallas":36128,"Ġconstellation":36129,"Ġdystopian":36130,"504":36131,"ĠOptical":36132,"Ġsilhou":36133,"Girl":36134,"ĠGong":36135,"ĠHighest":36136,"????????":36137,"Sav":36138,"ocity":36139,"leted":36140,"Ġattrition":36141,"ĠExpedition":36142,"ĠKilled":36143,"501":36144,"ONES":36145,"dat":36146,"Ġglyphosate":36147,"Ġplugs":36148,"Ġlact":36149,"Fla":36150,"fps":36151,"riger":36152,"Ġparagraphs":36153,"Ġinnate":36154,"ĠFoo":36155,"aternity":36156,"ĠGry":36157,"Ġoneself":36158,"642":36159,"Iowa":36160,"oodle":36161,"ĠCoconut":36162,"ĠChess":36163,"ommel":36164,"Ġmagnesium":36165,"Ġairliner":36166,"Ġexceedingly":36167,"ĠCreator":36168,"YouTube":36169,"Ġsleeper":36170,"Ġlonging":36171,"ĠPercy":36172,"Ġmatrix":36173,"Ġâľ":36174,"Ġbarren":36175,"Mrs":36176,"Ġinvading":36177,"Ġincom":36178,"Ġemperor":36179,"Ġip":36180,"irie":36181,"Ġpredictably":36182,"ĠBless":36183,"Ġsuperpower":36184,":-":36185,"Ġpropensity":36186,"easy":36187,"educ":36188,"ĠPolly":36189,"Ġcumbersome":36190,"Ġcollide":36191,"016":36192,"Ġtransports":36193,"Ġscraps":36194,"below":36195,"Ġhairs":36196,"mentation":36197,"Ġevolves":36198,"ĠFallen":36199,"Ġunsurprisingly":36200,"Ġcuff":36201,"Ġ249":36202,"mental":36203,"ĠCamel":36204,"Ġ337":36205,"Clinton":36206,"Ġdecad":36207,"ĠSTEP":36208,"ĠTestament":36209,"Ġirresistible":36210,"ĠACE":36211,"Ġhamm":36212,"ĠTerr":36213,"Ġcaul":36214,"iggins":36215,"Ġproficient":36216,"resp":36217,"Ġheirs":36218,"Ġ321":36219,"dress":36220,"ĠClothing":36221,"Ġ560":36222,"Ġ264":36223,"ĠRobb":36224,"Ġfrail":36225,"Ġoptimizing":36226,"615":36227,"ĠRefuge":36228,"rowth":36229,"washing":36230,"Ġgenders":36231,"indu":36232,"ĠNAT":36233,"Ġleans":36234,"Ġeyed":36235,"Ġhilar":36236,"vice":36237,"wolf":36238,"Ġfatig":36239,"ococ":36240,"ĠCarry":36241,"Community":36242,"Clark":36243,"itably":36244,"sv":36245,"448":36246,"Ġnumer":36247,"Ġ1925":36248,"ĠBehavioral":36249,"ĠScream":36250,"Ġgeek":36251,"rake":36252,"ĠTTC":36253,"Ġadditives":36254,"ĠBye":36255,"ylon":36256,"Ġfoliage":36257,"ateral":36258,"rapnel":36259,"Science":36260,"Ġrecollection":36261,"thening":36262,"ĠUbisoft":36263,"ĠLur":36264,"ĠOkinawa":36265,"ĠProvision":36266,"ferred":36267,"ĠGrounds":36268,"Ġhops":36269,"aterial":36270,"Ġacad":36271,"Ġengulf":36272,"ĠApex":36273,"frequency":36274,"relations":36275,"ĠCorvette":36276,"ĠRepeat":36277,"Ġanew":36278,"Ġhes":36279,"ĠLair":36280,"ĠPSP":36281,"foundation":36282,"Band":36283,"ĠPublisher":36284,"Ġreciprocal":36285,"Ġ287":36286,"Ġpir":36287,"Adams":36288,"Ġprostitute":36289,"ĠMecca":36290,"ectomy":36291,"Ġskew":36292,"ĠLol":36293,"Voice":36294,"ĠCalais":36295,"ISION":36296,"rue":36297,"Ġgaping":36298,"prot":36299,"Ġ6000":36300,"Ġtilted":36301,"Ġgoofy":36302,"Stand":36303,"Ġfellows":36304,"Ġcurly":36305,"ĠPOW":36306,"Ġlore":36307,"Ġinhabited":36308,"ĠIdentification":36309,"Metro":36310,"Ġdispel":36311,"Ġinvoking":36312,"Ġdeleting":36313,"Ġstigmat":36314,"ĠDalai":36315,"Ġequate":36316,"Ġmascara":36317,"endered":36318,"ĠNYT":36319,"ĠCommittees":36320,"rians":36321,"ĠOlympus":36322,"ĠQR":36323,"ĠDrinking":36324,"Ġbatt":36325,"andr":36326,"computer":36327,"Senator":36328,"ĠTwist":36329,"ĠNoise":36330,"Ġcheesy":36331,"Ġ1931":36332,"Ġtyranny":36333,"Ġnegligible":36334,"ĠBok":36335,"Ġwebpage":36336,"ĠHEAD":36337,"ĠNovel":36338,"Ġquarry":36339,"Ġexpressive":36340,"Ġforgiving":36341,"Among":36342,"asin":36343,"ĠSuc":36344,"Democrats":36345,"795":36346,"Ġaback":36347,"¨":36348,"ĠNeon":36349,"392":36350,"ĠRNC":36351,"ĠPROC":36352,"sein":36353,"Ros":36354,"Ġemot":36355,"ĠASA":36356,"ĠSeb":36357,"ĠExtended":36358,"atern":36359,"Ġpsychedelic":36360,"Fil":36361,"ĠOrwell":36362,"ĠSOS":36363,"Ġconceive":36364,"Ġhobbies":36365,"Ġspecimens":36366,"ĠTEXT":36367,"sometimes":36368,"Mario":36369,"orpor":36370,"ĠTemporary":36371,"Ġapocalypse":36372,"Ġcounterproductive":36373,"ĠQUEST":36374,"ĠCargo":36375,"Amb":36376,"Ġoptic":36377,"groups":36378,"Ġparanoia":36379,".?":36380,"sounding":36381,"mediately":36382,"System":36383,"ubi":36384,"Ġuttered":36385,"Ġgraphs":36386,"âĢĭâĢĭ":36387,"Ġscientifically":36388,"Ġbluntly":36389,"Ġhopping":36390,"Fun":36391,"ĠSUPER":36392,"Ġrobe":36393,"VB":36394,"ĠQuote":36395,"Ġincarnation":36396,"Ġtreadmill":36397,"Ġ1915":36398,"Ġbart":36399,"669":36400,"Ġhoc":36401,"Ġ309":36402,"Ġimprovis":36403,"Ġhut":36404,"Ġmixer":36405,"ĠCt":36406,"span":36407,"Ġwatered":36408,"Ġpatriot":36409,"Ġdehyd":36410,"laughs":36411,"ĠFancy":36412,"ĠVoc":36413,"Ġintellect":36414,"ĠTid":36415,"Ġnesting":36416,"Tel":36417,"Ġ()":36418,"letter":36419,"ĠSeems":36420,"Ops":36421,"ĠContents":36422,"ript":36423,"hani":36424,"Ġrecru":36425,"Ġpickups":36426,"repair":36427,"Throughout":36428,"bear":36429,"Ġconquered":36430,"656":36431,"Ġmalf":36432,"Ġordained":36433,"755":36434,"ĠReprodu":36435,"brain":36436,"ĠOuts":36437,"ĠWage":36438,"Ru":36439,"________":36440,"ĠLAW":36441,"ĠWass":36442,"Ġcomplication":36443,"Fri":36444,"Ġregener":36445,"Wait":36446,"577":36447,"Ġmisconception":36448,"Ġbombardment":36449,"Ġunloaded":36450,"Ġdictionary":36451,"IU":36452,"025":36453,"etically":36454,"ĠNarr":36455,"repe":36456,"Ġassigning":36457,"Rail":36458,"Ġnotebooks":36459,"Ġingest":36460,"Ġrpm":36461,"Ġalienated":36462,"ĠCredits":36463,"Ġindis":36464,"ĠGathering":36465,"aration":36466,"-+-+-+-+":36467,"Ġori":36468,"Ġsr":36469,"ndra":36470,"Ġlibertarian":36471,"Ġcoerced":36472,"ording":36473,"Ġtranqu":36474,"Ġelbows":36475,"549":36476,"Ġping":36477,"ĠRELE":36478,"ĠYanuk":36479,"Ġmaneuvers":36480,"ĠTrojan":36481,"IFIED":36482,"ĠViolent":36483,"è":36484,"Ġlest":36485,"Ġarrows":36486,"frog":36487,"anty":36488,"WB":36489,"ĠSeen":36490,"648":36491,"Ġclutter":36492,"ĠBender":36493,"Ġpessim":36494,"ĠTeg":36495,"Asian":36496,"IFIC":36497,"Ġexponential":36498,"Ġsponge":36499,"rite":36500,"ĠDAM":36501,"Ġtacit":36502,"ĠZoom":36503,"Ġolds":36504,"Ġonward":36505,"ĠSandwich":36506,"missible":36507,"isol":36508,"940":36509,"Ġinciner":36510,"ĠTrick":36511,"Ġawakening":36512,"Ġdart":36513,"ĠCouch":36514,"respons":36515,"ĠElephant":36516,"ĠPluto":36517,"ĠTags":36518,"itcher":36519,"644":36520,"702":36521,"Ġelectrons":36522,"ĠMyth":36523,"ĠAad":36524,"Danny":36525,"Ġcraw":36526,"ĠCertification":36527,"Ġtending":36528,"Ġpellets":36529,"Ġamused":36530,"ĠAuschwitz":36531,"ĠAppl":36532,"iris":36533,"ashion":36534,"walking":36535,"Ġabnorm":36536,"Cro":36537,"?:":36538,"ĠIcelandic":36539,"ĠAvailability":36540,"Ġcann":36541,"Opt":36542,"buster":36543,"ĠQuartz":36544,"Executive":36545,"tracks":36546,"igel":36547,"MIT":36548,"ĠTracking":36549,"Ġconditioned":36550,"Ġsampled":36551,"ĠGenius":36552,"Ġsubstit":36553,"ĠSiberia":36554,"Ġfrequ":36555,"historic":36556,"okin":36557,"OWS":36558,"1500":36559,"warts":36560,"ĠEtsy":36561,"licks":36562,"ĠSmooth":36563,"unity":36564,"515":36565,"Ġperk":36566,"aida":36567,"forts":36568,"ĠUA":36569,"RIC":36570,"Spain":36571,"ĠWired":36572,"cuts":36573,"Ġfurnace":36574,"ĠTOTAL":36575,"ĠTables":36576,"662":36577,"Fab":36578,"Ġquaint":36579,"ĠWorlds":36580,"ĠCabin":36581,"atche":36582,"List":36583,"ĠVO":36584,"Ġkeyword":36585,"Ġ258":36586,"Farm":36587,"timer":36588,"ĠVolt":36589,"Build":36590,"pressed":36591,"*,":36592,"Ġ324":36593,"aiman":36594,"TING":36595,"Ġsneaking":36596,"cery":36597,"Ġcrib":36598,"ĠIllust":36599,"later":36600,"Ġcompar":36601,"Ġpropulsion":36602,"647":36603,"ĠTrails":36604,"Ġperiphery":36605,"steel":36606,"Ġvividly":36607,"ĠConver":36608,"eatured":36609,"427":36610,"463":36611,"Ġapprox":36612,"spin":36613,"Ġconfigured":36614,"inside":36615,"razy":36616,"account":36617,"anye":36618,"riend":36619,"Ġbows":36620,"809":36621,"ĠDEF":36622,"ĠRez":36623,"Fans":36624,"ĠDF":36625,"Ġstains":36626,"ĠAtom":36627,"ĠConce":36628,"ĠTOM":36629,"ĠELECT":36630,"Ġdisappro":36631,"019":36632,"afia":36633,"ĠTemperature":36634,"Ġextracts":36635,"fab":36636,"Ġunsur":36637,"Ġseasoning":36638,"Ty":36639,"KB":36640,"Ġposit":36641,"Ġlocality":36642,"1200":36643,"cour":36644,"izons":36645,"hh":36646,"506":36647,"ĠDLC":36648,"iago":36649,"Ġcorpses":36650,"iddling":36651,"Mayor":36652,"Ġsimplistic":36653,"Ġlibel":36654,"Ġalmonds":36655,"Ġswast":36656,"Change":36657,"ĠJoker":36658,"MAR":36659,"ĠScully":36660,"Ġmailbox":36661,"VIDEO":36662,"ĠKyoto":36663,"esley":36664,"ĠIncredible":36665,"youtube":36666,"Ġinequalities":36667,"Ġbolts":36668,"Ġbothering":36669,"Ġattentive":36670,"ĠSparrow":36671,"Ġdiaper":36672,"Ġfanbase":36673,"Ġuncont":36674,"Ap":36675,"ĠQi":36676,"Price":36677,"471":36678,"Ġpearl":36679,"wid":36680,"899":36681,"ĠPony":36682,"casting":36683,"Ġinhabit":36684,"Ġunve":36685,"Ġinsur":36686,"ĠWee":36687,"658":36688,"Ġeffected":36689,"gger":36690,"Ġinstallments":36691,"imilar":36692,"FU":36693,"Ġinfertility":36694,"climate":36695,"HEAD":36696,"fashion":36697,"ĠTHEY":36698,"jc":36699,"Ġsatisf":36700,"ĠGuidelines":36701,"Ġinsure":36702,"ĠRSA":36703,"Ġvirt":36704,"Ġinterpre":36705,"Joshua":36706,"ĠShut":36707,"Ġtestimonies":36708,"Ñģ":36709,"untary":36710,"417":36711,"Ġbeck":36712,"ĠMilky":36713,"ç":36714,"Ġsequels":36715,"Ġ281":36716,"ĠRibbon":36717,"Ġroomm":36718,"Ġsynchron":36719,"452":36720,"Ġ1926":36721,"Ġhawk":36722,"ĠDisorder":36723,"Ġbackstory":36724,"ĠNum":36725,"Ġoverheard":36726,"technical":36727,"Jud":36728,"aii":36729,"Ġdecon":36730,"ĠRape":36731,"ĠWarrant":36732,"Ġpoop":36733,"spir":36734,"Country":36735,"Ġweld":36736,"Ġabuser":36737,"Ġ------":36738,"material":36739,"Ġpreserves":36740,"spring":36741,"Ġpuzzled":36742,"ĠDebate":36743,"Joseph":36744,"Ġ272":36745,"Blood":36746,"antry":36747,"Ġconverge":36748,"Ġimaginable":36749,"oward":36750,"545":36751,"Ġfug":36752,"Vision":36753,"075":36754,"Ġadoptive":36755,"Ġunknow":36756,"Stream":36757,"Ġaffili":36758,"ĠPUR":36759,"ĠWally":36760,"Ġgamer":36761,"Ġfart":36762,"stice":36763,"Ġcongen":36764,"н":36765,"685":36766,"orst":36767,"ĠATF":36768,"Ġml":36769,"ĠMozilla":36770,"Ġcalmed":36771,"bage":36772,"ĠVault":36773,"arkable":36774,"ĠGuan":36775,"Ġclueless":36776,"umatic":36777,"Ġshameless":36778,"Ġpreached":36779,"Ġmisconceptions":36780,"Ġanthology":36781,"Ġbiomass":36782,"ĠPs":36783,"tails":36784,"Ġexcessively":36785,"Ġextr":36786,"Davis":36787,"Ġgrounding":36788,"Ġshortcuts":36789,"ĠShift":36790,"ĠRew":36791,"ĠIllum":36792,"Ġincite":36793,"sense":36794,"ĠScouting":36795,"otos":36796,"respond":36797,"Ġbeware":36798,"gran":36799,"ĠXV":36800,"JM":36801,"ĠSounders":36802,"Ġ276":36803,"Ġshockingly":36804,"Ġgastrointestinal":36805,"erences":36806,"df":36807,"ĠNG":36808,"Ġdiscredited":36809,"Ġdemoral":36810,"Ġgladly":36811,"Tal":36812,"ĠPredator":36813,"708":36814,"Ġdoi":36815,"Ġdecentral":36816,"illin":36817,"printed":36818,"Ġinflicting":36819,"ribes":36820,"Ġsupper":36821,"abc":36822,"Ġgraz":36823,"980":36824,"Bull":36825,"Ġmillionaires":36826,"Ġvanity":36827,"imony":36828,"Ġbiologists":36829,"Ġalternating":36830,"Ġsleeps":36831,"Force":36832,"ĠPrinc":36833,"ĠTransgender":36834,"Ġ314":36835,"ĠProvide":36836,"enthal":36837,"Ġplum":36838,"Ġresurrect":36839,"CW":36840,"Ġinjure":36841,"ĠPerspective":36842,"ĠBei":36843,"Ġrestless":36844,"aciously":36845,"Ġchlor":36846,"catch":36847,"ĠLuigi":36848,"Ġinconsistency":36849,"Ġwhiff":36850,"Arizona":36851,"ustration":36852,"ĠRaid":36853,"ĠDemons":36854,"ĠVita":36855,":\"":36856,"Ġmigraine":36857,"ĠHamb":36858,"Ġwidget":36859,"451":36860,"Ġrandomized":36861,"etchup":36862,"ĠParticularly":36863,"Ġdiced":36864,"Ġperfected":36865,"roid":36866,"710":36867,"Ġreflections":36868,"Ġantioxidants":36869,"ĠLabel":36870,"Ġ326":36871,"igious":36872,"ĠEucl":36873,"608":36874,"Ġstrand":36875,"ĠDirt":36876,"ĠLift":36877,"suits":36878,"ĠControls":36879,"RAW":36880,"Ġcowardly":36881,"ĠUmb":36882,"Growing":36883,"mington":36884,"Ġ339":36885,"ĠCommit":36886,"Ġnonviolent":36887,"Ġcontaminants":36888,"Ġacrylic":36889,"ĠMAP":36890,"Ġ269":36891,"Ġdegrading":36892,"Ġmiracles":36893,"ĠEstablishment":36894,"despite":36895,"cry":36896,"Ġpauses":36897,"Ġmythical":36898,"Ġtwenties":36899,"Actually":36900,"phan":36901,"recorded":36902,"Ġunwillingness":36903,"engineering":36904,"avored":36905,"Ġdevout":36906,"item":36907,"Ġbunny":36908,"ĠMerchants":36909,"Ġconsumes":36910,"508":36911,"Ġlex":36912,"ĠClause":36913,"Ġchecklist":36914,"Sus":36915,"uther":36916,".#":36917,"Bit":36918,"uay":36919,"bf":36920,"Ġpopulace":36921,"Ġ316":36922,"Ġcombust":36923,"Ġnano":36924,"Ġpopul":36925,"Indust":36926,"Ġcapitalists":36927,"ĠFiles":36928,"Bang":36929,"Ġkosher":36930,"atile":36931,"Ġincrim":36932,"OVER":36933,"Ġmelee":36934,"ymph":36935,"ĠPupp":36936,"evin":36937,"ĠMolecular":36938,"Ġmisinterpret":36939,"vc":36940,"olithic":36941,"ĠSimpsons":36942,"Ġshrew":36943,"Ġselectively":36944,"ĠDrain":36945,"mittedly":36946,"conservative":36947,"True":36948,"Using":36949,"562":36950,"apon":36951,"Ġapprentice":36952,"Mas":36953,"ĠBattlefield":36954,"Ġfing":36955,"Ġconcoct":36956,"ĠVIS":36957,"ĠHuss":36958,"Ġdetects":36959,"ĠFriedrich":36960,"Ġlatitude":36961,"Custom":36962,"ĠÙ":36963,"ĠBones":36964,"whose":36965,"Ġredirected":36966,"aligned":36967,"ĠNeighbor":36968,"ĠAmen":36969,"ĠMarble":36970,"Beyond":36971,"Ġbiomark":36972,"Ġerroneous":36973,"Atlanta":36974,"Ġmasturb":36975,"ĠAssoci":36976,"Albert":36977,"Ġcigar":36978,"ĠFraz":36979,"ethe":36980,"skinned":36981,"Ford":36982,"throp":36983,"Acc":36984,"Ġtricked":36985,"Ġoverwhelm":36986,"Ġimplements":36987,"ĠGeForce":36988,"Ġbounces":36989,"Ġmoderator":36990,"910":36991,"ĠButterfly":36992,"ĠIllegal":36993,"ĠSubject":36994,"RET":36995,"ĠFreeze":36996,"ĠNewt":36997,"Ġuterus":36998,"696":36999,"Ġ267":37000,"tk":37001,"Ġdodged":37002,"liam":37003,"Ġparasite":37004,"obal":37005,"ĠHubble":37006,"Ġtheology":37007,"âĢĶ\"":37008,"height":37009,"Ale":37010,"employment":37011,"ĠWallet":37012,"cessive":37013,"Ġ404":37014,"Ġsimilarity":37015,"zens":37016,"Ġdumps":37017,"Ġdepress":37018,"Ġlifeless":37019,"535":37020,"oard":37021,"Scotland":37022,"Ġbelievable":37023,"Ġcalculator":37024,"ĠNaked":37025,"Ġremission":37026,"Ġoranges":37027,"ĠSections":37028,"Ġentangled":37029,"Ġuncanny":37030,"Ġteaspoons":37031,"vr":37032,"ĠPorn":37033,"Organ":37034,"Ġbund":37035,"Doug":37036,"ĠGHz":37037,"Major":37038,"abus":37039,"Bell":37040,"avier":37041,"Ġimplanted":37042,"RON":37043,"Fle":37044,"462":37045,"509":37046,"Ġgoggles":37047,"Ġmanuscript":37048,"NOT":37049,"ĠCanaveral":37050,"ĠDID":37051,"Season":37052,"HAEL":37053,"Edge":37054,"appiness":37055,"DIS":37056,"Ġplotted":37057,"Ġwrought":37058,"Ġquarantine":37059,"Ġrearr":37060,"itage":37061,"Ġsocket":37062,"Ġbrig":37063,"Ġunbelievably":37064,"abytes":37065,"TG":37066,"Ġ444":37067,"ĠOffic":37068,"Ġacquaintances":37069,"ĠComparison":37070,"Nine":37071,"ĠFeast":37072,"758":37073,"YC":37074,"Ġfiner":37075,"ĠStrawberry":37076,"Ġeternity":37077,"liament":37078,"urrency":37079,"ĠCortana":37080,"ĠSabbath":37081,"Ġsprinkle":37082,"unker":37083,"ĠUE":37084,"flies":37085,"Ġblender":37086,"Ġacutely":37087,"emark":37088,"ĠAffect":37089,"Politics":37090,"Ġsane":37091,"Ġcorrosion":37092,"Ġspirituality":37093,"Ġredeemed":37094,"Ġingrained":37095,"manager":37096,"joined":37097,"ĠDumb":37098,"ĠHeight":37099,"Ġseventeen":37100,"Ġ640":37101,"Ġreviewer":37102,"Ġwallpaper":37103,"Ġnurs":37104,"Ġsubset":37105,"703":37106,"Ġsymbolism":37107,"Ġdudes":37108,"Ġmismatch":37109,"gans":37110,"please":37111,"ĠKE":37112,"Ġatom":37113,"004":37114,"ionic":37115,"Ġservings":37116,"Ġproxies":37117,"Ġtranscription":37118,"yx":37119,"bowl":37120,"iscovery":37121,"ĠScotch":37122,"brace":37123,"riter":37124,"ĠDesktop":37125,"Ġlimestone":37126,"æ":37127,"Neg":37128,"013":37129,"Ġformulas":37130,"Ġeval":37131,"Ġzombies":37132,"GU":37133,"ĠHermes":37134,"Ġbrist":37135,"Mand":37136,"Ġmastery":37137,"Ġgoverns":37138,"Ġconstrued":37139,"region":37140,"Ġemitted":37141,"Vice":37142,"060":37143,"Jennifer":37144,"mol":37145,"Ġjealousy":37146,"Ġingenuity":37147,"bug":37148,"olitical":37149,"Ġperce":37150,"ĠSapp":37151,"dim":37152,"utral":37153,"Ġinterrogated":37154,"Gate":37155,"Ġamber":37156,"911":37157,"ĠEveryday":37158,"ĠDDR":37159,"ĠBlades":37160,"Ġnifty":37161,"Ġmurderers":37162,"Ġpresumption":37163,"Pitt":37164,"Div":37165,"ĠDestination":37166,"having":37167,"Ġprolifer":37168,"Ġbreaker":37169,"ĠBW":37170,"Ġcourier":37171,"Try":37172,"ĠBUR":37173,"itized":37174,"Ġcompress":37175,"Ġrepetition":37176,"ĠTik":37177,"Ġdivergence":37178,"Ġcube":37179,"everyone":37180,"ĠPoles":37181,"418":37182,"ĠHighly":37183,"468":37184,"Jeremy":37185,"Ġcontradictions":37186,"Ġmanure":37187,"Sad":37188,"pletion":37189,"626":37190,"Ġ279":37191,"Ġfrivolous":37192,"ĠCanaan":37193,"olor":37194,"Ġincapac":37195,"ĠGentle":37196,"Ġinsomnia":37197,"ĠJing":37198,"688":37199,"ĠViews":37200,"Ġsyll":37201,"486":37202,"antom":37203,"Ġcog":37204,"aintain":37205,"ĠDVDs":37206,"Ġ318":37207,"archy":37208,"Ġreprodu":37209,"Ġconcedes":37210,"Brook":37211,"Ġinterpreting":37212,"Ġextracting":37213,"Ġess":37214,"uning":37215,"ĠMathematics":37216,"iably":37217,"Ġmultit":37218,"ĠActs":37219,"iliated":37220,"Foreign":37221,"Ġflaming":37222,"ĠCoup":37223,"Ġglitches":37224,"Ġdifferentiation":37225,"ihadi":37226,"ĠDrone":37227,"Ġincompatible":37228,"asher":37229,"documented":37230,"agons":37231,"wark":37232,"Ġshielding":37233,"ĠCorrect":37234,"romising":37235,"uned":37236,"Ġconduit":37237,"ĠDiablo":37238,"Ġbeginner":37239,"Ġarchived":37240,"smanship":37241,"ĠTBD":37242,"digy":37243,"Ġ322":37244,"Ġ268":37245,"ĠTears":37246,"ĠPriority":37247,"Italy":37248,"Ġ^":37249,"annot":37250,"different":37251,"Joy":37252,"Ġbreathed":37253,"heon":37254,"Ġracists":37255,"Ġvascular":37256,"Between":37257,"etition":37258,"ĠLikely":37259,"icans":37260,"529":37261,"ĠMonsters":37262,"agy":37263,"Orange":37264,"hide":37265,"SIM":37266,"Ġdeceive":37267,"ĠDAR":37268,"Ġshattering":37269,"Ġow":37270,"peak":37271,"Ġpreferable":37272,"Ġpiping":37273,"ĠLEDs":37274,"ĠCOMMUN":37275,"ĠConstruct":37276,"008":37277,"Ġdissatisfied":37278,"ĠKNOW":37279,"ĠFrame":37280,"ĠToast":37281,"Ġadore":37282,"history":37283,"Soviet":37284,"reporting":37285,"Ġ266":37286,"pract":37287,"ĠSauce":37288,"686":37289,"ievers":37290,"ĠDomain":37291,"ousand":37292,"768":37293,"Cos":37294,"609":37295,"432":37296,"Ġtransl":37297,"oof":37298,"Ġ292":37299,"Turkish":37300,"ĠPOLIT":37301,"Harris":37302,"bj":37303,"Ġrodents":37304,"556":37305,"Ġintellectuals":37306,"Ġinteroper":37307,"ixt":37308,"Ġunbiased":37309,"itia":37310,"Ġ504":37311,"Ġbuttocks":37312,"ĠFlam":37313,"Ġchrom":37314,"Ġ259":37315,"shock":37316,"ĠRJ":37317,"ĠLich":37318,"422":37319,"Ġcondom":37320,"phen":37321,"Ġvigilante":37322,"Ġowl":37323,"Ġdwellings":37324,"Ġarchaeologists":37325,"Ġ680":37326,"RAY":37327,"Ġ1921":37328,"Ġ625":37329,"ĠPLAN":37330,"alde":37331,"030":37332,"abbling":37333,"Wave":37334,"Ni":37335,"Ġfurthe":37336,"JS":37337,"Ġpsycho":37338,"ĠFrançois":37339,"Ġundergrad":37340,"Ġsuccessors":37341,"Ġpadded":37342,"introdu":37343,"Ġreasoned":37344,"Ġvas":37345,"creen":37346,"onsequ":37347,"starter":37348,"Court":37349,"ĠHIS":37350,"Ġplaster":37351,"Ġranger":37352,"Ġ298":37353,"esters":37354,"Ġglare":37355,"ype":37356,"Ġcompute":37357,"Ali":37358,"mallow":37359,"Ġmasculine":37360,"ĠExamination":37361,"improve":37362,"Ġdeclass":37363,"Ġdecoration":37364,"ĠFIG":37365,"abre":37366,"Ġstale":37367,"abling":37368,"ĠRusty":37369,"ĠASAP":37370,"Ġadjusts":37371,"Ġbluff":37372,"density":37373,"Ġdisse":37374,"Ġcensor":37375,"ervatives":37376,"Ġkettle":37377,"Ġskeptics":37378,"fd":37379,"Imm":37380,"461":37381,"Ġadvantageous":37382,"419":37383,"ĠPresents":37384,"482":37385,"ĠRewards":37386,"Ġovershadow":37387,"Alabama":37388,"ĠCPC":37389,"Ġsock":37390,"ĠChurches":37391,"hidden":37392,"Ġcringe":37393,"ĠHOR":37394,"PB":37395,"Pretty":37396,"Hong":37397,"?),":37398,"687":37399,"Ġgrocer":37400,"472":37401,"565":37402,"itent":37403,"Ġpartake":37404,"wait":37405,"usters":37406,"Ġcones":37407,"Ġconcurrently":37408,"Ġlevers":37409,"Ġaroma":37410,"ĠDrill":37411,"498":37412,"804":37413,"ithering":37414,"Ġ355":37415,"Ġlegion":37416,"Ġvitri":37417,"Ġcondu":37418,"Angel":37419,"OWER":37420,"Ġ{*":37421,"Simon":37422,"Ġsynthesis":37423,"ĠContainer":37424,"sheet":37425,"Bi":37426,"ĠRaspberry":37427,"Ġ328":37428,"anders":37429,"ĠBlossom":37430,"ĠFINAL":37431,"acid":37432,"Ġborderline":37433,"Aut":37434,"Ġoriginate":37435,"Ġtransm":37436,"Ġbuffalo":37437,"atial":37438,"ĠCraigslist":37439,"Ġcredential":37440,"Ġdisbanded":37441,"Ġunprotected":37442,"ĠZer":37443,"waukee":37444,"diagn":37445,"1999":37446,"doc":37447,"ellig":37448,"Ġwarheads":37449,"ĠADS":37450,"verified":37451,"ĠHAM":37452,"785":37453,"Cu":37454,"Ġenorm":37455,"ĠSkill":37456,"\\":37457,"Ġbashing":37458,"Ġloudspe":37459,"during":37460,"Ġdebunked":37461,"adequ":37462,"Ġuh":37463,"Feed":37464,"ificial":37465,"pred":37466,"ĠPassing":37467,"Kyle":37468,"enance":37469,"ĠMex":37470,"itect":37471,"Ġcavern":37472,"Ġtrop":37473,"ĠEliot":37474,"753":37475,"Ġencountering":37476,"Ġsulf":37477,"Always":37478,"ĠGest":37479,"Ġadditive":37480,"Ġ278":37481,"Ġloops":37482,"liberal":37483,"urion":37484,"ĠRefresh":37485,"ĠDynasty":37486,"Ġsweaty":37487,"Ġsails":37488,"protection":37489,"ĠRooms":37490,"ĠEXT":37491,"few":37492,"ĠPaid":37493,"Ġ377":37494,"Ġcolonialism":37495,"Ġchuckle":37496,"Ġarmour":37497,"Ġsoftly":37498,"661":37499,"Building":37500,"ĠAMER":37501,"Ġbabe":37502,"Ġshif":37503,"Sem":37504,"Ġdisembark":37505,"ĠSubstance":37506,"Stone":37507,"Ġdialect":37508,"ĠAph":37509,"Ġspreadsheet":37510,"ierra":37511,"Ġlineage":37512,"ĠCust":37513,"ĠBabe":37514,"Ġwra":37515,"ĠMafia":37516,"Ġflakes":37517,"ĠEVER":37518,"cong":37519,"ĠCreation":37520,"loo":37521,"ĠAmpl":37522,"ĠSpectre":37523,"012":37524,"geons":37525,"Ġswarm":37526,"ĠPale":37527,"ĠSeek":37528,"itures":37529,"Ġarri":37530,"Ġredistribution":37531,"campaign":37532,"ĠAbility":37533,"579":37534,"ournament":37535,"locks":37536,"Ġnests":37537,"ĠConstantine":37538,"Ġwhisper":37539,"Ġshrouded":37540,"changed":37541,"ĠEnhanced":37542,"Ġ920":37543,"Ġglob":37544,"Tam":37545,"Ġoutwe":37546,"Ġilliter":37547,"Ġsurg":37548,"Nap":37549,"ĠAerial":37550,"iferation":37551,"Egypt":37552,"ERO":37553,"Ġantip":37554,"environment":37555,"machine":37556,"Ġrupture":37557,"treatment":37558,"internal":37559,"Ġinfiltrate":37560,"Ġgratification":37561,"Uber":37562,"Ġunequal":37563,"Ġflav":37564,"Lord":37565,"tein":37566,"ĠLOT":37567,"Ġbullshit":37568,"Ġoriginals":37569,"Ġminced":37570,"Ġmultiply":37571,"ayson":37572,"Ġrecomm":37573,"Ġreceptors":37574,"Ġflashlight":37575,"Ġinhuman":37576,"Future":37577,"Ġpuzzling":37578,"Ġrouters":37579,"Ġuncontroll":37580,"responsible":37581,"Ġcellul":37582,"ĠTablet":37583,"Ġbolted":37584,"Ġpermissible":37585,"adra":37586,"picture":37587,"ODY":37588,"BRE":37589,"Iraq":37590,"Total":37591,"rising":37592,"Ġ273":37593,"nv":37594,"Ġ327":37595,"alysed":37596,"infect":37597,"Ġ1912":37598,"ĠVT":37599,"ĠLazarus":37600,"ictive":37601,"Bu":37602,"ĠNEVER":37603,"ĠCODE":37604,"ĠModified":37605,"fetched":37606,"ĠTrap":37607,"mob":37608,"Ġupkeep":37609,"WARD":37610,"Ġbrewed":37611,"Ġsaliva":37612,"Ġ1923":37613,"Ġsteroid":37614,"rather":37615,"ĠVER":37616,"Ġcontextual":37617,"Ont":37618,"ĠLSD":37619,"agine":37620,"Ġaudible":37621,"ĠMeta":37622,"erek":37623,"aults":37624,"ĠOttoman":37625,"ĠIncludes":37626,"Ġocc":37627,"678":37628,"ipple":37629,"Ġcontrasted":37630,"014":37631,"ĠLenin":37632,"Ġomega":37633,"885":37634,"civil":37635,"Ġoverload":37636,"},\"":37637,"Ġprogrammers":37638,"Ġgeometry":37639,"?).":37640,"shift":37641,"ĠClancy":37642,"nr":37643,"verb":37644,"Ġ760":37645,"Ġstaggered":37646,"Playing":37647,"ĠSmile":37648,"Ġcomplains":37649,"ĠSloven":37650,"Ġdisobedience":37651,"creator":37652,"Ġly":37653,"incoln":37654,"emp":37655,"Ġcrate":37656,"ĠPledge":37657,"ĠGPUs":37658,"protected":37659,"Vo":37660,"medium":37661,"Ġacet":37662,"603":37663,"478":37664,"469":37665,"Further":37666,"Ġsensed":37667,"Lock":37668,"Ġcrabs":37669,"ĠChains":37670,"ĠNEO":37671,"Ġexperimented":37672,"ĠRhythm":37673,"802":37674,"Ġhormonal":37675,"491":37676,"ĠMedian":37677,"Ġevaluates":37678,"ippi":37679,"Ġremovable":37680,"Ġvector":37681,"ilant":37682,"TERN":37683,"Ġpurch":37684,"ĠBind":37685,"athering":37686,"Ġcords":37687,"Lib":37688,"Ġdamned":37689,"orc":37690,"ĠEverywhere":37691,"Ġgorilla":37692,"ystem":37693,"fail":37694,"Ġecstasy":37695,"allion":37696,"Sea":37697,"Ġuploading":37698,"ĠSpecific":37699,"Ġreinforcement":37700,"cerned":37701,"ĠDollars":37702,"Twenty":37703,"OX":37704,"ADD":37705,"Ġbraces":37706,"Ġraven":37707,"Ġ1890":37708,"Ġcirculate":37709,"udden":37710,"Disney":37711,"ĠNope":37712,"ĠBagg":37713,"ĠBuddha":37714,"rael":37715,"urus":37716,"ĠKarma":37717,"Ġcurl":37718,"Ġflips":37719,"Ġbearer":37720,"Ġmisunderstand":37721,"Ġabras":37722,"ĠAssassin":37723,"Fact":37724,"Ġinterf":37725,"Ġvantage":37726,"ĠGenocide":37727,"Ġdeducted":37728,"Sep":37729,"McC":37730,"Jessica":37731,"ĠBackup":37732,"Ian":37733,"urnal":37734,"Ġlaborers":37735,"438":37736,"ĠContinuous":37737,"ĠNBN":37738,"Cool":37739,"mitting":37740,"ĠNormandy":37741,"Ġpurchaser":37742,"Ġacquainted":37743,"Ġblogging":37744,"route":37745,"marine":37746,"Ġstartled":37747,"6000":37748,"ĠRadical":37749,"kiss":37750,"ĠBlitz":37751,"express":37752,"Ġ601":37753,"hent":37754,"Ġtink":37755,"pires":37756,"launch":37757,"sg":37758,"ĠEffects":37759,"Ġstiffness":37760,"ĠAllies":37761,"Ġthirsty":37762,"Ġmyst":37763,"Ġlogger":37764,"Ġstances":37765,"ĠEvaluation":37766,"090":37767,"Ġproclaiming":37768,"Ġhypocritical":37769,"496":37770,"Ġcaus":37771,"ĠKappa":37772,"ĠLann":37773,"ĠScientist":37774,"Ġempath":37775,"etrical":37776,"lege":37777,"Hom":37778,"Aud":37779,"ĠColors":37780,"ĠStraw":37781,"each":37782,"ĠPatron":37783,"Ġnuance":37784,"send":37785,"ourney":37786,"ĠPhen":37787,"Ġamino":37788,"ĠSeconds":37789,"Sn":37790,"ĠCiv":37791,"Ġconglomer":37792,"Ġ411":37793,"versely":37794,"487":37795,"prises":37796,"Ġ277":37797,"necessary":37798,"Ġdope":37799,"Late":37800,"Ġrake":37801,"ĠBrigham":37802,"ogun":37803,"ĠSTATES":37804,"ĠGaal":37805,"Ġintellig":37806,"Ġglacier":37807,"destruct":37808,"ĠZucker":37809,"484":37810,"Ġ332":37811,"ĠArist":37812,"Ġprotagonists":37813,"Ġgraveyard":37814,"names":37815,"ĠPax":37816,"Ġthresholds":37817,"Seeing":37818,"Ġmunitions":37819,"Ġcontradicts":37820,"684":37821,"Ġ529":37822,"ĠConcent":37823,"ĠBlessed":37824,"Hz":37825,"Ġinhibit":37826,"Ġshenanigans":37827,"ĠSpear":37828,"Ġoverlay":37829,"ritis":37830,"ilus":37831,"Ġvariance":37832,"Ġoverpower":37833,"viol":37834,"erning":37835,"Ġpolarization":37836,"aito":37837,"GV":37838,"493":37839,"Keeping":37840,"Ġpaternity":37841,"ĠHappiness":37842,"oops":37843,"sb":37844,"xit":37845,"ophysical":37846,"Ġconclusive":37847,"Arch":37848,"Ġmiser":37849,"Ġsuffice":37850,"ĠStout":37851,"Ġhrs":37852,"643":37853,"Ġprincipled":37854,"azine":37855,"atorium":37856,"ĠFairy":37857,"Ġinfiltrated":37858,"ĠHier":37859,"ĠMIA":37860,"inders":37861,"Ġrebutt":37862,"Ġxx":37863,"Ġfeats":37864,"izzle":37865,"Ġ780":37866,"668":37867,"Ġrepressive":37868,"ĠYugoslavia":37869,"sole":37870,"704":37871,"ĠRPG":37872,"ĠTroll":37873,"packing":37874,"ĠDatabase":37875,"ĠVelvet":37876,"ĠRELEASE":37877,"ablish":37878,"smoking":37879,"ĠBottle":37880,"ĠFully":37881,"ĠLean":37882,"Ġobjectively":37883,"ĠFounding":37884,"ĠClassics":37885,"Ġmosaic":37886,"473":37887,"Ġrooft":37888,"Ġcentrally":37889,"Ġdismissive":37890,"Ġparasites":37891,"009":37892,"Ġcursed":37893,"Ġvex":37894,"Ġeconom":37895,"ĠBore":37896,"enery":37897,"ĠFundamental":37898,"ĠOmni":37899,"489":37900,"714":37901,"Ġforegoing":37902,"Ġfragment":37903,"oros":37904,"070":37905,"ĠFaust":37906,"Ġsucking":37907,"Ġnode":37908,"Ġrighteous":37909,"ĠPowered":37910,"426":37911,"HQ":37912,"Ġchronically":37913,"ĠBAL":37914,"Ġprest":37915,"Ġrapists":37916,"ĠRelationship":37917,"ĠCHR":37918,"Ġlinen":37919,"Ġnumerical":37920,"oters":37921,"Ġiterations":37922,"ttes":37923,"ĠENTER":37924,"Ġrabbi":37925,"Ġhoard":37926,"Ġmerciless":37927,"Ġrobes":37928,"ĠSpray":37929,"Ġadvers":37930,"ilantro":37931,"483":37932,"Ġfungus":37933,"Ġalcoholism":37934,"anasia":37935,"ĠCruiser":37936,"Ġmorals":37937,"cision":37938,"measures":37939,"Ġsabot":37940,"Ġrecol":37941,"ĠSaur":37942,"ĠError":37943,"Ġmysteriously":37944,"sle":37945,"Ġfeminists":37946,"д":37947,"ackle":37948,"ĠMarxist":37949,"Ġselves":37950,"Ġdoorway":37951,"Ġdiscard":37952,"Ġbandits":37953,"ĠDive":37954,"ameless":37955,"TRY":37956,"Ġgull":37957,"Ġrepublican":37958,"sr":37959,"ĠDynamo":37960,"Ġembryo":37961,"MENTS":37962,"ĠLOW":37963,"Ġ319":37964,"Ġgly":37965,"Ġcowork":37966,"Coll":37967,"Ġcris":37968,"ĠBanana":37969,"reality":37970,"Ġmobilization":37971,"unal":37972,"Updated":37973,"Crew":37974,"ĠGideon":37975,"Ġvines":37976,"Ġknitting":37977,"Ġdag":37978,"ĠSurv":37979,"Ġvacc":37980,"Ġimpulses":37981,"Northern":37982,"Ġnanop":37983,"allows":37984,"UTH":37985,"Ġflashbacks":37986,"alsa":37987,"Ġ282":37988,"Ġtransmissions":37989,"ĠAlmighty":37990,"Office":37991,"ĠBride":37992,"ĠBeasts":37993,"othy":37994,"ĠClouds":37995,"ĠDyn":37996,"ĠJolly":37997,"District":37998,"Ġveget":37999,"Ġantit":38000,"ĠSmoking":38001,"hess":38002,"Ġcompose":38003,"Ġreligiously":38004,"ĠHY":38005,"Ġfluorescent":38006,"rame":38007,"ĠMeier":38008,"ĠSQ":38009,"benefit":38010,"Thirty":38011,"559":38012,"ĠCance":38013,"586":38014,"Ġgrouped":38015,"Ġphys":38016,"Ġrebellious":38017,"ĠBASE":38018,"chid":38019,"582":38020,"ĠLessons":38021,"ĠWonderful":38022,"ODE":38023,"uctions":38024,"Ġbarbaric":38025,"rahim":38026,"635":38027,"Ġcloves":38028,"ĠNIH":38029,"ossession":38030,"Employ":38031,"Ġliberate":38032,"Gro":38033,"Ġmagician":38034,"ountain":38035,"FORM":38036,"533":38037,"Ġunpredict":38038,"rity":38039,"Ġfaked":38040,"plets":38041,"ppelin":38042,"Living":38043,"Ġnearer":38044,"Ġsuperiors":38045,"Ur":38046,"Ġheroism":38047,"Ġbearded":38048,"006":38049,"Cole":38050,"1970":38051,"Ġsill":38052,"ĠReduce":38053,"OLOG":38054,"onel":38055,"Billy":38056,"ĠPainter":38057,"ansas":38058,"Ġintermediary":38059,"trump":38060,"ĠMith":38061,"otom":38062,"434":38063,"Ġterrit":38064,"Wa":38065,"Ġsuprem":38066,"Rh":38067,"liction":38068,"ĠDEAD":38069,"Ġbothers":38070,"503":38071,"Ġfrogs":38072,"Ġsprinkled":38073,"Ġnil":38074,"628":38075,"Private":38076,"ĠKGB":38077,"Ġoverriding":38078,"Ġdeceived":38079,"698":38080,"idium":38081,"Ġseeker":38082,"Final":38083,"Ġsubconscious":38084,"Ġwom":38085,"Ġcass":38086,"Ġchicks":38087,"Ġverifying":38088,"ective":38089,"inia":38090,"ĠDetection":38091,"MH":38092,"fortable":38093,"ĠISPs":38094,"Ġcrumble":38095,"ĠRecap":38096,"598":38097,"ummies":38098,"export":38099,"Irish":38100,"Ġlil":38101,"ĠRapt":38102,"ĠRIGHT":38103,"Ġanecdotal":38104,"Ġpiercing":38105,"deck":38106,"Liber":38107,"Books":38108,"Ġassassin":38109,"Tur":38110,"revolution":38111,"ĠSheep":38112,"ĠPublishers":38113,"EMS":38114,"iosis":38115,"finder":38116,"ĠCuriosity":38117,"ARB":38118,"ĠConvers":38119,"IVES":38120,"clave":38121,"ĠChaos":38122,"ĠMim":38123,"ĠCostume":38124,"Ġtwe":38125,"Ġintim":38126,"757":38127,"berto":38128,"Ġ261":38129,"VPN":38130,"cribed":38131,"ĠVerb":38132,"cb":38133,"Ġaxle":38134,"Ġsandwic":38135,"Ice":38136,"ĠThermal":38137,"654":38138,"709":38139,"ĠPact":38140,"ĠEnsure":38141,"izable":38142,"497":38143,"Ġbloodstream":38144,"Aw":38145,"Ġleakage":38146,"Ġalleg":38147,"ĠMelody":38148,"681":38149,"Austin":38150,"428":38151,"Ġsummarized":38152,"ĠDefendants":38153,"ĠVader":38154,"Ê":38155,"Ġ1880":38156,"Ġassemb":38157,"YOU":38158,"GREEN":38159,"jury":38160,"4000":38161,"Ġvenerable":38162,"Ġcomputational":38163,"Ġperpetuate":38164,"Ġtorpedo":38165,"Ġaborted":38166,"Ġrhetorical":38167,"ĠOvert":38168,"Ġacknowledgment":38169,"essment":38170,"ĠIGN":38171,"ĠSheen":38172,"571":38173,"Ġcontag":38174,"Ġcultiv":38175,"Ġspawn":38176,"mess":38177,"Dur":38178,"Ġvortex":38179,"ixties":38180,"ĠBlow":38181,"Sum":38182,"Åį":38183,"Rom":38184,"ĠRadeon":38185,"Fed":38186,"Ġameric":38187,"ĠAnth":38188,"Ġantic":38189,"Ġfortress":38190,"Cold":38191,"ĠPredict":38192,"Fake":38193,"Ġilluminate":38194,"Find":38195,"Ġintellectually":38196,"Ġgon":38197,"alker":38198,"Ġinvoice":38199,"IELD":38200,"Ġfools":38201,"ĠEnding":38202,"-(":38203,"Ġalk":38204,"ĠControlled":38205,"Ġpurposefully":38206,"ĠChronic":38207,"Ġrele":38208,"ĠOps":38209,"Party":38210,"ethnic":38211,"ĠSpecifications":38212,"ffee":38213,"ĠTeach":38214,"ulas":38215,"Ġenslaved":38216,"onomy":38217,"Ġtenets":38218,"Ġammonia":38219,"Ġ1913":38220,"Ġdripping":38221,"612":38222,"659":38223,"ĠSagan":38224,"Ġinaccur":38225,"Ġabol":38226,"ĠLIKE":38227,"Ġvisualization":38228,"learn":38229,"anon":38230,"cipline":38231,"Ġadaptations":38232,"Ġwaiter":38233,"nergy":38234,"507":38235,"ĠDK":38236,"YD":38237,"Ġpedest":38238,"Sense":38239,"ĠObst":38240,"Ġresurrection":38241,"ĠSPECIAL":38242,"Unlike":38243,"Ġlia":38244,"Ġpersuasive":38245,"iatrics":38246,"ONEY":38247,"esthetic":38248,"494":38249,"zik":38250,"Ġfract":38251,"ĠOutput":38252,"ĠBers":38253,"rozen":38254,"ĠRevis":38255,"Ġdraconian":38256,"Words":38257,"asions":38258,"ĠClintons":38259,"CU":38260,"History":38261,"Ġtwilight":38262,"iform":38263,"Ġdispl":38264,"progress":38265,"ĠIO":38266,"Ġcannibal":38267,"Michelle":38268,"Ġnerv":38269,"Ġcontexts":38270,"ĠHorses":38271,"Ġanatomy":38272,"ĠLegislation":38273,"ĠBloody":38274,"Ġunwittingly":38275,"Ġinquired":38276,"ĠZip":38277,"ĠDesigns":38278,"Ġirritating":38279,"Ġunison":38280,"ĠRG":38281,"aviour":38282,"Ġpseudo":38283,"ĠVenom":38284,"Ġobscured":38285,"Ġner":38286,"uked":38287,"ORGE":38288,"Ġmomentarily":38289,"olyn":38290,"Syrian":38291,"Ġmicroscopic":38292,"Ġmistress":38293,"Less":38294,"Ġawoke":38295,"Ġtutor":38296,"esome":38297,"ollar":38298,"egg":38299,"UTE":38300,"Buzz":38301,"Ġattainment":38302,"Ġdiscriminating":38303,"::":38304,"Ġ525":38305,"azard":38306,"ĠBrist":38307,"oras":38308,"Ġveterin":38309,"jing":38310,"idon":38311,"ĠAustral":38312,"arious":38313,"ĠGrav":38314,"anol":38315,"ĠQuran":38316,"Ġbleach":38317,"588":38318,"ĠOsw":38319,"Ġdiffered":38320,"typ":38321,"ĠSIL":38322,"failed":38323,"436":38324,"Ġpalms":38325,"ĠFail":38326,"idespread":38327,"Ġchap":38328,"ĠIMAGES":38329,"ACP":38330,"matched":38331,"Ġjaws":38332,"MHz":38333,"Nik":38334,"ĠHume":38335,"OSH":38336,"Ġpresume":38337,"secut":38338,"ĠDied":38339,"ĠBreat":38340,"gins":38341,"prison":38342,"ĠUR":38343,"ĠROS":38344,"isitions":38345,"Ġpelvic":38346,"exclusive":38347,"522":38348,"689":38349,"FN":38350,"Ġener":38351,"Ġdispers":38352,"Ġcohorts":38353,"shut":38354,"ĠLoad":38355,"needs":38356,"azaki":38357,"inoa":38358,"Inside":38359,"usra":38360,"ighters":38361,"Ġ271":38362,"Ġsubordinate":38363,"ĠHOL":38364,"ĠGlow":38365,"Ġincred":38366,"ĠMadame":38367,"Ġoats":38368,"Ġdeviation":38369,"ĠApproach":38370,"Ġnarc":38371,"bart":38372,"bole":38373,"ĠSHE":38374,"effects":38375,"ĠADA":38376,"Ġmuse":38377,"Squ":38378,"Ġneuroscience":38379,"ĠValues":38380,"engu":38381,"Ġdosage":38382,"Ġwhispers":38383,"Ġnaughty":38384,"ĠFarming":38385,"Recently":38386,"Ġrelapse":38387,"rentice":38388,"UGH":38389,"Ġdarkened":38390,"appings":38391,"ĠSlaughter":38392,"ĠAnim":38393,"Ġovertly":38394,"poses":38395,"Ġdeficient":38396,"Ġnecks":38397,"Iron":38398,"Ġphysiological":38399,"ĠLiang":38400,"Ġlear":38401,"Ġcelestial":38402,"Ġpistols":38403,"Ġeyebrow":38404,"915":38405,"ratch":38406,"cephal":38407,"ĠPSU":38408,"Ġphotograp":38409,"ĠGaul":38410,"Ġuncontrolled":38411,"ĠJoined":38412,"652":38413,"itory":38414,"Ġ274":38415,"GAN":38416,"imester":38417,"essional":38418,"Ø©":38419,"Ġuncons":38420,"THER":38421,"Ġpaternal":38422,"Zero":38423,"ugen":38424,"538":38425,"Ġende":38426,"Ġ505":38427,"movie":38428,"Lind":38429,"Ġscorn":38430,"ulty":38431,"Ġpesky":38432,"Ġ8000":38433,"677":38434,"Ġhomophobia":38435,"ranch":38436,"Ġnarciss":38437,"ĠVoyager":38438,"ĠHELP":38439,"528":38440,"edly":38441,"Ġdetract":38442,"Hope":38443,"787":38444,"ĠMerlin":38445,"Ġgrids":38446,"KI":38447,"Mu":38448,"ĠSelected":38449,"select":38450,"ĠModer":38451,"ĠFeet":38452,"Ġrename":38453,"intensity":38454,"Wilson":38455,"Ġ414":38456,"leave":38457,"Ready":38458,"intuitive":38459,"Ġmeager":38460,"Franc":38461,"DH":38462,"Ġrhy":38463,"ĠPillar":38464,"ĠDOE":38465,"minist":38466,"ĠGrave":38467,"isible":38468,"Ess":38469,"Ġempt":38470,"Ġpatched":38471,"ĠAbortion":38472,"rals":38473,"Ġdow":38474,"Ġcrawled":38475,"igrate":38476,"Virginia":38477,"Ġconting":38478,"Ġorphans":38479,"ĠCrimean":38480,"Ġdyn":38481,"Ġshadowy":38482,"sound":38483,"ailable":38484,"Ġ293":38485,"vm":38486,"Ġaccompanies":38487,"Meanwhile":38488,"JR":38489,"ĠDirections":38490,"Ġadolescence":38491,"Ġpenetrated":38492,"bars":38493,"Rev":38494,"Ta":38495,"ĠSkywalker":38496,"ĠFires":38497,"concept":38498,"ĠSIG":38499,"554":38500,"currently":38501,"Ġ----------------":38502,"ĠWHITE":38503,"767":38504,"rors":38505,"PDF":38506,"Ġcasing":38507,"673":38508,"Ġdisapprove":38509,"1800":38510,"ĠWeed":38511,"Ġinhib":38512,"Ġmorbid":38513,"433":38514,"Ġawfully":38515,"Ts":38516,"Maria":38517,"Ġillusions":38518,"Ġtotalitarian":38519,"ollo":38520,"Ġsuppl":38521,"Ġsarc":38522,"ĠRGB":38523,"Ġlauncher":38524,"Ġbadass":38525,"ĠSyd":38526,"Ġscrape":38527,"ĠCLA":38528,"Ġcircum":38529,"657":38530,"Ġnucleus":38531,"ĠUkip":38532,"Ġmodem":38533,"ĠJou":38534,"adders":38535,"Ġwiser":38536,"thereal":38537,"Ġdemocr":38538,"ĠInvalid":38539,"Mine":38540,"Ġmanifested":38541,"meat":38542,"MORE":38543,"Larry":38544,"acements":38545,"Ġspecimen":38546,"results":38547,"Ġswallowing":38548,"Ġpigeon":38549,"tons":38550,"ĠLose":38551,"Ġquartz":38552,"Ġintraven":38553,"Ġ412":38554,"alyst":38555,"Ġengraved":38556,"client":38557,"ĠADV":38558,"ĠShared":38559,"Ġrites":38560,"Ġhysterical":38561,"ĠHUM":38562,"Cow":38563,"orously":38564,"Ġpleasures":38565,"democratic":38566,"Ġamph":38567,"Ġnib":38568,"rieg":38569,"Ġcalculates":38570,"Ġfrying":38571,"favorite":38572,"Ġantim":38573,"ĠDoom":38574,"monitor":38575,"Want":38576,"Ġtemplates":38577,"558":38578,"iever":38579,"Photos":38580,",,":38581,"ĠSync":38582,"Ġconfronts":38583,"kept":38584,"dt":38585,"ĠERROR":38586,"ETF":38587,"578":38588,"Ġspor":38589,"718":38590,"ivation":38591,"ĠHaskell":38592,"Ca":38593,"Ġdick":38594,"Ġcivilized":38595,"Ġblah":38596,"enough":38597,"Ġoccup":38598,"Ġ334":38599,"antically":38600,"584":38601,"ĠDolphin":38602,"ĠStarts":38603,"Ġfanatic":38604,"ت":38605,"imag":38606,"Ġmicrobial":38607,"freedom":38608,"cult":38609,"wra":38610,"Ġ423":38611,"RIPT":38612,"601":38613,"BTC":38614,"atmeal":38615,"653":38616,"agogue":38617,"Ġderives":38618,"Wolf":38619,"466":38620,"Susan":38621,"ĠPassage":38622,"ARDS":38623,"Guy":38624,"Council":38625,"Ġerotic":38626,"pure":38627,"ĠMemories":38628,"ĠWikileaks":38629,"elines":38630,"Ġanth":38631,"Capital":38632,"807":38633,"ĠEggs":38634,"cv":38635,"ctors":38636,"Ġshatter":38637,"Ġesteem":38638,"vity":38639,"ĠVulcan":38640,"effic":38641,"ĠBELOW":38642,"Ġplatoon":38643,"Commun":38644,"oustic":38645,"Amy":38646,"Freedom":38647,"ppo":38648,"Ja":38649,"ĠConan":38650,"Ġinsepar":38651,"scene":38652,"Ġurinary":38653,"gain":38654,"Hillary":38655,"ĠTAM":38656,"Hist":38657,"Ġmechan":38658,"ĠRobots":38659,"Leader":38660,"Ġcartridges":38661,"Ġwhistleblowers":38662,"ĠSPL":38663,"Labour":38664,"unction":38665,"Ġfaithfully":38666,"Ġcoarse":38667,"Ġsynth":38668,"ĠLV":38669,"Ġjustifying":38670,"439":38671,"Victoria":38672,"ĠProceedings":38673,"alogy":38674,"Ġmorph":38675,"Ġcove":38676,"Ġlaughable":38677,"ECA":38678,"Ġ670":38679,"aturated":38680,"ĠSouls":38681,"ĠSleeping":38682,"Ly":38683,"ĠRetro":38684,"Ġastroph":38685,"Ġseism":38686,"atherine":38687,"ĠHercules":38688,"Ġfuse":38689,"ĠHL":38690,"Ġunintentionally":38691,"ĠRé":38692,"iery":38693,"Ġconco":38694,"Ġeras":38695,"recent":38696,"Ġlaunchers":38697,"ĠVolcano":38698,"ĠJace":38699,"Ġterminating":38700,"ĠIde":38701,"zee":38702,"asonic":38703,"itone":38704,"Ġnutshell":38705,"Ġbip":38706,"dies":38707,"Ġ286":38708,"Ġnood":38709,"ĠFathers":38710,"alys":38711,"Ġtheor":38712,"???":38713,"548":38714,"674":38715,"efined":38716,"806":38717,"âĻ":38718,"697":38719,"Ġdecap":38720,"ĠFN":38721,"Ġbureaucr":38722,"ĠGoat":38723,"ĠShang":38724,"Ġsemin":38725,"Ġthroats":38726,"Ġmoth":38727,"herer":38728,"Democratic":38729,"ixtures":38730,"impl":38731,"ĠLogo":38732,"ortunate":38733,"Ġclumsy":38734,"Ġinnocuous":38735,"ĠBlend":38736,"abulary":38737,"ĠFaces":38738,"Ġpornographic":38739,"px":38740,"Information":38741,"Ġfluoride":38742,"Ġatroc":38743,"Ġdelta":38744,"whatever":38745,"ossier":38746,"ĠNoir":38747,"ĠYao":38748,"551":38749,"undred":38750,"Ġmillennium":38751,"Ġferal":38752,"Ġconvinc":38753,"cano":38754,"imsy":38755,"angles":38756,"Ġsterile":38757,"ĠMenu":38758,"779":38759,"ĠCrack":38760,"Ġabundantly":38761,"ĠmL":38762,"Ġinfiltration":38763,"ĠDefinition":38764,"733":38765,"oubt":38766,"Ġorbital":38767,"Ġpiss":38768,"Ġbeet":38769,"679":38770,"Ġcounteract":38771,"ĠALE":38772,"ulative":38773,"crew":38774,"Ġliberating":38775,"ĠDull":38776,"Speaking":38777,"Sadly":38778,"Ġmisfortune":38779,"Ġdolphin":38780,"557":38781,"Ġbould":38782,"ĠTorah":38783,"ĠConfederacy":38784,"421":38785,"Ġorbits":38786,"ocused":38787,"beer":38788,"Rand":38789,"ĠORIG":38790,"Ġmuc":38791,"LER":38792,"ĠMisty":38793,"Ġinexpl":38794,"Ġreptiles":38795,"Ġaven":38796,"blocking":38797,"ĠPASS":38798,"Ġarisen":38799,"ĠMock":38800,"Ġops":38801,"Ġshin":38802,"524":38803,"Ġdigestion":38804,"Soft":38805,"irect":38806,"POL":38807,"ĠSpell":38808,"Level":38809,"Ġhex":38810,"Ġbitcoins":38811,"ĠHungry":38812,"VL":38813,"ĠRealm":38814,"RELATED":38815,"Delta":38816,"Pri":38817,"Ġrejoice":38818,"ĠLatter":38819,"LG":38820,"Ġstupidity":38821,"Ġdonkey":38822,"nova":38823,"Vill":38824,"Ġdecomp":38825,"Ġexternally":38826,"Ġsequest":38827,"815":38828,"Ġshortcut":38829,"riminal":38830,"Hun":38831,"EH":38832,"Ġregiment":38833,"Case":38834,"definition":38835,"Ġappendix":38836,"ĠPlayed":38837,"associated":38838,"izens":38839,"ĠVag":38840,"Ġflung":38841,"Ġfru":38842,"Ġcoil":38843,"________________________":38844,"Ġselects":38845,"Ġsolves":38846,"aea":38847,"985":38848,"Tomorrow":38849,"Ġsear":38850,"APE":38851,"492":38852,"Ġenlightened":38853,"Ġnonexistent":38854,"ĠPotato":38855,"Ghost":38856,"Ġrichness":38857,"ĠKarin":38858,"Ġfamilial":38859,"ĠJA":38860,"Regardless":38861,"Ġepis":38862,"GD":38863,"Ġinsanely":38864,"ĠPhill":38865,"Block":38866,"Finding":38867,"omal":38868,"Ġdecipher":38869,"ĠSwap":38870,"derived":38871,"ĠOFFIC":38872,"Support":38873,"Ġnylon":38874,"Ġexaggeration":38875,"Ġevangelicals":38876,"Ġbearings":38877,"587":38878,"Ġlocale":38879,"Ġpowerfully":38880,"Ġappropriated":38881,"itates":38882,"irlfriend":38883,"cule":38884,"ĠSomewhere":38885,"747":38886,"ĠInteresting":38887,"464":38888,"Ġelong":38889,"Ġdegrade":38890,"rafted":38891,"Ġtutorials":38892,"905":38893,"ĠIntervention":38894,"Ġuniqueness":38895,"Ġ284":38896,"Ġexplorers":38897,"Ġnucle":38898,"ĠMillenn":38899,"511":38900,"ĠReneg":38901,"Ġexecut":38902,"urai":38903,"leon":38904,"Ġdeserts":38905,"ĠCig":38906,"Ġsuggestive":38907,"instead":38908,"Ġlousy":38909,"Ġenigmatic":38910,"594":38911,"Know":38912,"rollment":38913,"ipher":38914,"Ġhumanities":38915,"Ġmodifying":38916,".....":38917,"Ġdegraded":38918,"Ġsuppressing":38919,"Ġeman":38920,"abouts":38921,"functional":38922,"ĠOU":38923,"ĠRelax":38924,"786":38925,"esses":38926,"ĠLogin":38927,"spec":38928,"ĠWWF":38929,"Ġ364":38930,"ĠIsis":38931,"Wisconsin":38932,"Ġequival":38933,"ĠCollector":38934,"ibilities":38935,"malink":38936,"acea":38937,"Ġchained":38938,"Ġarist":38939,"Ġdisadvantages":38940,"ĠBrus":38941,"limits":38942,"ĠDmit":38943,"544":38944,"ĠRecipe":38945,"Ġhabitual":38946,".):":38947,"ĠPRODUCT":38948,"772":38949,"Ġrept":38950,"Ġpathology":38951,"Ġresurrected":38952,"uders":38953,"Ġlingu":38954,"Ġdenomination":38955,"Ġfirewall":38956,"scient":38957,"Ġvaliant":38958,"Kansas":38959,"516":38960,"Ġcontemporaries":38961,"Roman":38962,"Ġaccompan":38963,"Ġantennas":38964,"ĠXan":38965,"Ġelectromagnetic":38966,"ĠNek":38967,"alien":38968,"indle":38969,"Ġgraphene":38970,"Ġgraceful":38971,"syn":38972,"ĠBosh":38973,"Ġ1908":38974,"Ġsuccumb":38975,"Technology":38976,"Ġtoxin":38977,"myra":38978,"essert":38979,"Hell":38980,"Gil":38981,"Ġdiarr":38982,"imeters":38983,"Ġexplo":38984,"Ġgeometric":38985,"ĠNavigation":38986,"cern":38987,"Ġprogrammer":38988,"oÄŁan":38989,"Ġdodging":38990,"ĠLU":38991,"573":38992,"inters":38993,"Ġserum":38994,"Ġuber":38995,"Ġmanga":38996,"762":38997,"ĠOccasionally":38998,"437":38999,"ĠTheme":39000,"Ġimmature":39001,"Ġactivating":39002,"ĠTruly":39003,"د":39004,"osion":39005,"Age":39006,"TIME":39007,"Silver":39008,"sand":39009,"ulnerable":39010,"Ġcram":39011,"Large":39012,"ĠAnger":39013,"icators":39014,"431":39015,"ĠHonest":39016,"zip":39017,"Ġdism":39018,"Ġfades":39019,"ĠPik":39020,"Ast":39021,"sequent":39022,"Ġunsigned":39023,"xious":39024,"creation":39025,"Ġ395":39026,"ottenham":39027,"Ġundesirable":39028,"ugal":39029,"ĠDivide":39030,"lp":39031,"563":39032,"ĠPOP":39033,"ĠCET":39034,"session":39035,"Ġoccurrences":39036,"chu":39037,"ĠACS":39038,"ĠProsecut":39039,"Ġhypnot":39040,"rely":39041,"ERG":39042,"Ven":39043,"Republicans":39044,"inez":39045,"ĠImplementation":39046,"Ġsprang":39047,"Ġobs":39048,"Defense":39049,"Ġunexpl":39050,"ĠPAGE":39051,"ĠTent":39052,"ĠNeurolog":39053,"Ġintuition":39054,"759":39055,"Ġterrestrial":39056,"Ġmorphine":39057,"Ġ.\"":39058,"ĠHydra":39059,"651":39060,"Ġneoliberal":39061,"683":39062,"Ġabnormalities":39063,"quant":39064,"Ġmonastery":39065,"jac":39066,"ĠReaction":39067,"Ġcontraceptive":39068,"ĠBalls":39069,"Ġapost":39070,"676":39071,"ĠHELL":39072,"approximately":39073,"Ġvibrations":39074,"COR":39075,"ĠCPUs":39076,"Ġcontin":39077,"Ġsemblance":39078,"Ġshorth":39079,"tip":39080,"ĠChips":39081,"makes":39082,"Ġprett":39083,"Ġconspicuous":39084,"ĠAmp":39085,"Ġvisualize":39086,"Hu":39087,"sorry":39088,"nai":39089,"ĠArcade":39090,"rimination":39091,"obin":39092,"Ġvampire":39093,"773":39094,"ĠCaucasus":39095,"Medic":39096,"ĠGitHub":39097,"ĠWicked":39098,"ĠFet":39099,"Krist":39100,"998":39101,"Ġfrontal":39102,"Ġ283":39103,"ndum":39104,"Ġidols":39105,"ĠMSG":39106,"ĠShuttle":39107,"ĠTowards":39108,"Ġsaturation":39109,"Ġ®":39110,"Ġcradle":39111,"eteen":39112,"Ġprejudices":39113,"separ":39114,"ĠSoda":39115,"ynam":39116,"Ġnause":39117,"Ġpenetrating":39118,"ĠVampire":39119,"Ġmole":39120,"Ġgoogle":39121,"earance":39122,"583":39123,"Ġdomin":39124,"727":39125,"Kind":39126,"Ġcust":39127,"manuel":39128,"ĠAstro":39129,"Roger":39130,"JO":39131,"killed":39132,"ĠDisapp":39133,"833":39134,"ĠEQU":39135,"Ġprecedence":39136,"mberg":39137,"641":39138,"ĠRoller":39139,"Ġspecifying":39140,"035":39141,"phil":39142,"Ġpowdered":39143,"Ġblot":39144,"Ġdeline":39145,"Bruce":39146,"536":39147,"Ġpim":39148,"leasing":39149,"vacc":39150,"RN":39151,"Ġspacing":39152,"Ġhangar":39153,"ĠPlot":39154,"537":39155,"legraph":39156,"596":39157,"Ġpolyg":39158,"doi":39159,"ĠNerd":39160,"installed":39161,"ĠSeeds":39162,"ĠPlays":39163,"ĠRomance":39164,"layer":39165,"Ġunsu":39166,"Ġcurric":39167,"Mi":39168,"restrial":39169,"ĠNiño":39170,"ĠProper":39171,"Ġpores":39172,"Giving":39173,"aeus":39174,"Middle":39175,"liber":39176,"Ġcombatants":39177,"ĠBulk":39178,"Ġ502":39179,"Ġstru":39180,"ĠLonely":39181,"Companies":39182,"inence":39183,"Autom":39184,"Ġfearsome":39185,"Ġsummar":39186,"Ġrotated":39187,"ĠPLA":39188,"ĠFAT":39189,"572":39190,"ĠSkies":39191,"iour":39192,"Ġintimately":39193,"amera":39194,"Ġ475":39195,"623":39196,"Ġirrig":39197,"Ġboosters":39198,"Ġtransmitting":39199,"DOWN":39200,"ĠAble":39201,"Ġfuriously":39202,"spirit":39203,"Ġgrun":39204,"Ġbible":39205,"ĠAdmir":39206,"Ġ§":39207,"ĠRaise":39208,"Ġflowering":39209,"uxe":39210,"ravis":39211,"urther":39212,"ĠScientology":39213,"pathy":39214,"Ġruth":39215,"Ġtempor":39216,"Ġwhispered":39217,"ogly":39218,"coord":39219,"chlor":39220,"processing":39221,"iott":39222,"ĠTY":39223,"wik":39224,"abolic":39225,"ĠUnable":39226,"ĠLiterary":39227,"ĠpH":39228,"Eastern":39229,"Craig":39230,"Fear":39231,"Ġinventions":39232,"ĠNost":39233,"Ġafflicted":39234,"ĠSwamp":39235,"INST":39236,"Jerry":39237,"Ġprope":39238,"ĠLancet":39239,"Ġrefres":39240,"ĠPrinciples":39241,"ĠLys":39242,"ERAL":39243,"addock":39244,"Ġcynicism":39245,"Ġmassacres":39246,"roo":39247,"Ġcollagen":39248,"Johnny":39249,"Keith":39250,"Italian":39251,"553":39252,"Dad":39253,"Neither":39254,"cler":39255,"ilers":39256,"Ġassass":39257,"Travel":39258,"672":39259,"Ġeaves":39260,"ATOR":39261,"Ġoily":39262,"581":39263,"ateful":39264,"728":39265,"Ġchiefly":39266,"tical":39267,"enes":39268,"ĠWouldn":39269,"ĠJacket":39270,"ĠSuit":39271,"Ġindustrialized":39272,"ĠNose":39273,"ĠSECTION":39274,"Ġredd":39275,"Ġcavity":39276,"Ġconn":39277,"Shield":39278,"Ġtongues":39279,"Ġsuccinct":39280,"views":39281,"ĠMUST":39282,"oliath":39283,"Ġlimitless":39284,"Ġapocalyptic":39285,"ĠAtlantis":39286,"DNA":39287,"ilded":39288,"ĠDresden":39289,"nit":39290,"Ġsubdiv":39291,"gressive":39292,"701":39293,"hops":39294,"alist":39295,"Ġunintentional":39296,"Ġpsychic":39297,"Ġcontrovers":39298,"Ġforeground":39299,"Ġnaïve":39300,"Ġfolders":39301,"icist":39302,"Ġdrawbacks":39303,"ĠToxic":39304,"ophy":39305,"ĠMasonic":39306,"Ġcis":39307,"olated":39308,"Ġdepletion":39309,"Rap":39310,"692":39311,"Ġinver":39312,"ĠFAQ":39313,"Ġmeanings":39314,"Ġbisc":39315,"ĠRage":39316,"Ġresear":39317,"Ep":39318,"Ġunbeat":39319,"ĠComponents":39320,"bub":39321,"ĠInterface":39322,"Isa":39323,"ĠArgon":39324,"Ġdenomin":39325,"Ġmammal":39326,"519":39327,"Ġsizing":39328,"imbabwe":39329,"ĠReplacement":39330,"Georgia":39331,"ĠParticipation":39332,"Ġmelts":39333,"Ġfemin":39334,"514":39335,"Ġseams":39336,"513":39337,"ĠGaw":39338,"Ġbrood":39339,"Mit":39340,"Ġannoyance":39341,"Ġequilibrium":39342,"Ġpatri":39343,"Ġ338":39344,"561":39345,"mentioned":39346,"ĠVotes":39347,"Ġintoler":39348,"Ġstrikingly":39349,"Ġ352":39350,"Ġskeletal":39351,"616":39352,"isition":39353,"Ġfluor":39354,"provided":39355,"517":39356,"Ġclimates":39357,"Ġsensibilities":39358,"ĠFrequ":39359,"onite":39360,"Kenn":39361,"Ġmagnets":39362,"assis":39363,"Ġprerequisite":39364,"Ġ>>>":39365,"Ġscree":39366,"google":39367,"ĠMirage":39368,"Ġevict":39369,"Peace":39370,"Ġmissionaries":39371,"617":39372,"748":39373,"rient":39374,"ĠSTATS":39375,"Bird":39376,"ĠShiva":39377,"ĠBlessing":39378,"Ġredundancy":39379,"Ġphotoc":39380,"ĠOnes":39381,"754":39382,"alert":39383,"urous":39384,"Ġfolklore":39385,"ĠIdeal":39386,"sheets":39387,"according":39388,"Hor":39389,"Cle":39390,"ĠEdit":39391,"671":39392,"olitics":39393,"ĠESC":39394,"Ġparaly":39395,"Ġorgasm":39396,"speak":39397,"ð":39398,"Ġsneaky":39399,"Ġswords":39400,"Ġfandom":39401,"776":39402,"ĠScandinav":39403,"Ġdarts":39404,"546":39405,"cerpt":39406,"ĠGifts":39407,"Ġmagically":39408,"phys":39409,"Laughs":39410,"ĠSour":39411,"ources":39412,"789":39413,"ĠEps":39414,"ository":39415,"uality":39416,"literally":39417,"Ġheavens":39418,"FUL":39419,"Ġie":39420,"ĠISP":39421,"Ġwink":39422,"Ġweeping":39423,"Ġdocking":39424,"ACY":39425,"iece":39426,"Ġsignifies":39427,"guns":39428,"Sac":39429,"Leave":39430,"imation":39431,"Ġunex":39432,"uctive":39433,"ĠFees":39434,"ĠPortable":39435,"ĠInvestigator":39436,"pill":39437,"rehensible":39438,"Ġpotency":39439,"803":39440,"Ġembodiment":39441,"overty":39442,"shine":39443,"REL":39444,"ĠMPH":39445,"ĠPatriarch":39446,"Ġaspirin":39447,"Ġrinse":39448,"Ġinher":39449,"ograms":39450,"ĠTHREE":39451,"qt":39452,"ipples":39453,"Ġdehuman":39454,"Ġslander":39455,"Ġflora":39456,"brow":39457,"Ġblindly":39458,"ectar":39459,"endish":39460,"Ġpigment":39461,"cellent":39462,"Ġyells":39463,"ĠLust":39464,"ĠAttacks":39465,"ĠSyndicate":39466,"otin":39467,"gress":39468,"reenshot":39469,"picking":39470,"Ġacupuncture":39471,"images":39472,"glas":39473,"ĠPolicies":39474,"Ġintestinal":39475,"1998":39476,"ULE":39477,"runs":39478,"ĠNing":39479,"ĠAsuka":39480,"ĠSkull":39481,"Motor":39482,"Ġdefund":39483,"Ġattaching":39484,"ĠBAD":39485,"Ġquarrel":39486,"Child":39487,"Dog":39488,"issan":39489,"irmation":39490,"Ġinline":39491,"ĠLover":39492,"Ġcyan":39493,"entary":39494,"awareness":39495,"Ġtraveller":39496,"âĢIJ":39497,"Ġbeasts":39498,"Ġboobs":39499,"ĠDeadly":39500,"Ġplutonium":39501,"ĠIntellectual":39502,"Jam":39503,"Ġconsec":39504,"663":39505,"ĠVegan":39506,"Ġ331":39507,"uron":39508,"ĠHEL":39509,"reements":39510,"Ġclone":39511,"Ġoutputs":39512,"oult":39513,"ĠDOM":39514,"ĠNX":39515,"Ze":39516,"909":39517,"brate":39518,"arations":39519,"ĠJindal":39520,"Ġbooklet":39521,"amide":39522,"Ġscraping":39523,"Sol":39524,"Date":39525,"796":39526,"Ġfulf":39527,"Ġskeletons":39528,"Ġsaints":39529,"ĠCurious":39530,"Han":39531,"Ġrepud":39532,"osity":39533,"ĠGravity":39534,"Ġmetadata":39535,"Focus":39536,"Ġthrott":39537,"ĠProgramming":39538,"Break":39539,"erver":39540,"Ġknight":39541,"yrs":39542,"Ġ376":39543,"sat":39544,"auto":39545,"Ġbroom":39546,"Ġnerd":39547,"Political":39548,"022":39549,"-------------":39550,"oulos":39551,"Ġrelic":39552,"Ġenactment":39553,"rious":39554,"ĠUniform":39555,"Teen":39556,"Colorado":39557,"055":39558,"Ġangled":39559,"bolt":39560,"ĠNeander":39561,"ĠDism":39562,"thanks":39563,"Polit":39564,"ersion":39565,"dro":39566,"install":39567,"Jake":39568,"hz":39569,"Ġ770":39570,"ĠCommodore":39571,"lahoma":39572,"Ġshri":39573,"Ġ....":39574,"Ġ7000":39575,"scope":39576,"Ġgenesis":39577,"Ġresided":39578,"ĠRivals":39579,"Ġsarcastic":39580,"Ġelicit":39581,"Ġmultiplied":39582,"uitous":39583,"Ġoppress":39584,"ĠPROT":39585,"Ġperpetually":39586,"ĠAdds":39587,"Ġbuffers":39588,"Ġmush":39589,"Ġ354":39590,"Ġpresc":39591,"ĠKung":39592,"682":39593,"Education":39594,"Ġpled":39595,"bsp":39596,"Ġconfessions":39597,"Ġrevocation":39598,"Micro":39599,"ĠHobby":39600,"ĠFatal":39601,"STAR":39602,"Ġworkspace":39603,"Ġtransformations":39604,"Ġportals":39605,"orned":39606,"figured":39607,"Ġlinguistic":39608,"pperc":39609,"ergus":39610,"Fel":39611,"ĠIntent":39612,"Ġ289":39613,"Ġdelinquent":39614,"Ġhandwriting":39615,"Ġvap":39616,"576":39617,"redited":39618,"736":39619,"Ġpsychiatry":39620,"GMT":39621,"Ġdisingen":39622,"Ġcrou":39623,"801":39624,"Ġmalice":39625,"itutes":39626,"ĠTiff":39627,"Ġstink":39628,"574":39629,"Story":39630,"Modern":39631,"ĠGly":39632,"Jamie":39633,"Ġadvertis":39634,"Ġhiber":39635,"Ġinfiltr":39636,"Ġelector":39637,"rovers":39638,"ĠFist":39639,"peed":39640,"ĠClassical":39641,"592":39642,"Ġconscientious":39643,"Surv":39644,"Text":39645,"ĠDrunk":39646,"Ġsupplemented":39647,"THIS":39648,"Ġtimid":39649,"Ġstacking":39650,"rites":39651,"Ġrebirth":39652,"Ġbalcon":39653,"Ġyawn":39654,"rosc":39655,"axy":39656,"Hart":39657,"ĠOPER":39658,"996":39659,"Ġrabid":39660,"ĠTick":39661,"Ġgrinning":39662,"elfth":39663,"045":39664,"Ġjustifies":39665,"ĠPirate":39666,"ĠSalary":39667,"Ġmirac":39668,"613":39669,"inately":39670,"ĠLIN":39671,"Ġinadequ":39672,"NPR":39673,"iddled":39674,"storage":39675,"Ġseventy":39676,"onet":39677,"Ġgastro":39678,"FIR":39679,"Ġrodent":39680,"629":39681,"ĠInclude":39682,"ĠCategories":39683,"ĠLiterally":39684,"Ġpree":39685,"aunder":39686,"ĠLOL":39687,"694":39688,"Ġindef":39689,"Ped":39690,"Ġmenstru":39691,"Ġcensored":39692,"Ġconfigure":39693,"Ġoverest":39694,"igenous":39695,"Ġrectangular":39696,"ĠMIS":39697,"ĠMub":39698,"Ġwitches":39699,"izards":39700,"Ġobnoxious":39701,"ĠLoll":39702,"ĠSEM":39703,"Ġspiritually":39704,"Ġcoer":39705,"Ġmodesty":39706,"butt":39707,"Ġedits":39708,"ĠShall":39709,"sburgh":39710,"Ġ1911":39711,"Rex":39712,"manent":39713,"ĠLithuan":39714,"Ġpointers":39715,"ativity":39716,"retch":39717,"Ġcascade":39718,"ĠRagnarok":39719,"ĠPainting":39720,"ĠATL":39721,"Born":39722,"Ġpadding":39723,"whel":39724,"Ġgrotesque":39725,"Ġtheorists":39726,"forcer":39727,"ĠJinn":39728,"Ġrenal":39729,"jamin":39730,"ĠFEC":39731,".\"\"":39732,"redict":39733,"Ġoppos":39734,"opted":39735,"Sel":39736,"ipment":39737,"752":39738,"792":39739,"Pur":39740,"Ġvolt":39741,"Ġflap":39742,"ĠCASE":39743,"Ġdyed":39744,"orers":39745,"becca":39746,",.":39747,"ifice":39748,"ubes":39749,"Ġyr":39750,"DW":39751,"Ġalteration":39752,"ĠSimpl":39753,"Ġunequiv":39754,"756":39755,"Dou":39756,"Ġplunder":39757,"Ġcommons":39758,"Ġstag":39759,"ĠZeal":39760,"avanaugh":39761,"Self":39762,"none":39763,"EGIN":39764,"Ġflashback":39765,"VAL":39766,"Gab":39767,"ĠCapture":39768,"ĠBrilliant":39769,"ĠDisk":39770,"ĠMood":39771,"Ġhaun":39772,"Ġrotting":39773,"ĠCobra":39774,"Ġpsychopath":39775,"Ġhelper":39776,"Starting":39777,"ĠOrbit":39778,"Ġcaf":39779,"Half":39780,"Volume":39781,"aptop":39782,"ĠSaga":39783,"azor":39784,"593":39785,"774":39786,"ĠCaucasian":39787,"compan":39788,"ĠVERY":39789,"GES":39790,"Ġvomit":39791,"Ġdispro":39792,"ĠMechanics":39793,"Ġ385":39794,"Ġmystical":39795,"AFTA":39796,"Ġbacter":39797,"availability":39798,"Ġhairc":39799,"ĠVec":39800,"rypt":39801,"Ġmanipulative":39802,"shell":39803,"ĠWeird":39804,"jab":39805,"ĠByr":39806,"Bow":39807,"uin":39808,"Ġquot":39809,"MX":39810,"Ġ960":39811,"ĠSharia":39812,"ĠWeapon":39813,"ĠPowerPoint":39814,"Ġstitching":39815,"Ġconstraint":39816,"âľ":39817,"ulic":39818,"597":39819,"omedical":39820,"ĠSupplemental":39821,"ĠSurve":39822,"ĠSubcommittee":39823,"ĠDarkness":39824,"Ġpython":39825,"LU":39826,"Ġ402":39827,"ĠQuan":39828,"ĠModerate":39829,"clusively":39830,"Ġextrap":39831,"Ġlatt":39832,"ĠSTUD":39833,"oslav":39834,"Ġsymb":39835,"battle":39836,"flash":39837,"ĠDeploy":39838,"Ġmicrobiome":39839,"Ġingested":39840,"Ġdistort":39841,"Ġassimil":39842,"Ġmobs":39843,"illet":39844,"Gre":39845,"Ġ294":39846,"Ġforbids":39847,"ĠEfficiency":39848,"ĠClan":39849,"763":39850,"Ġdragons":39851,"States":39852,"ĠMAKE":39853,"ĠBOOK":39854,"ĠRuns":39855,"ĠUX":39856,"EED":39857,"Whoever":39858,"ionics":39859,"worldly":39860,"ĠMermaid":39861,"Ġbenz":39862,"Info":39863,"523":39864,"Ġbiod":39865,"ĠPoison":39866,"ceivable":39867,"Services":39868,"ATIVE":39869,"ĠItem":39870,"Ġdisav":39871,"Ġheter":39872,"Ġasteroids":39873,"ĠWooden":39874,"Ġelectroly":39875,"assadors":39876,"nance":39877,"reflect":39878,"Ġattent":39879,"iphany":39880,"Ġspaceship":39881,"Ġbegg":39882,"algia":39883,"Ax":39884,"Ġidiosyncr":39885,"Ġinserting":39886,"ĠCSS":39887,"ĠLET":39888,"ĠStrikes":39889,"ossibly":39890,"Exp":39891,"Opp":39892,"dden":39893,"Ġplayable":39894,"ĠJM":39895,"Ġlawfully":39896,"ĠBlink":39897,"Ġ413":39898,"Ġoverpowered":39899,"Ġcommenter":39900,"Track":39901,"Ġmethyl":39902,"Ġfermented":39903,"Ġinvaders":39904,"ĠMoves":39905,"Ġcommunicates":39906,"rint":39907,"ĠTray":39908,"jug":39909,"Ġsuperf":39910,"ochet":39911,"ĠJelly":39912,"Ġestrogen":39913,"Dom":39914,"mix":39915,"Gun":39916,"ochemistry":39917,"952":39918,"Ġovere":39919,"ĠPlaintiff":39920,"ĠPilgrim":39921,"ĠSERVICES":39922,"ĠExpend":39923,"ĠFRE":39924,"Ġsmelling":39925,"ĠSpaces":39926,"bris":39927,"Mission":39928,"Ġarter":39929,"Ġautonom":39930,"Lisa":39931,"ĠPercent":39932,"NK":39933,"ĠLimits":39934,"Ġ356":39935,"Recent":39936,"ĠSiberian":39937,"etermin":39938,"nets":39939,"ĠSword":39940,"essee":39941,"Ùĩ":39942,"icycle":39943,"Ġparas":39944,"Ġrud":39945,"Ġscrib":39946,"Ġ1860":39947,"Shop":39948,"orld":39949,"Ġpept":39950,"ENSE":39951,"Ġanimations":39952,"ership":39953,"Search":39954,"ĠUSSR":39955,"washed":39956,"Ġpromulg":39957,"Ġdetainee":39958,"Ġunderest":39959,"ĠAppropri":39960,"Left":39961,"Update":39962,"Wallet":39963,"idently":39964,"ĠBicycle":39965,"Ġgorge":39966,"abyte":39967,"ĠMinecraft":39968,"rike":39969,"997":39970,"Tesla":39971,"Often":39972,"ĠTHESE":39973,"Ġregression":39974,"Hen":39975,"Ġsnippets":39976,"irds":39977,"Ġprinces":39978,"Ġwastes":39979,"ĠWond":39980,"itimate":39981,"ĠMongol":39982,"ĠkW":39983,"Ġidiots":39984,"Ġforeigner":39985,"Upon":39986,"Ġbackdoor":39987,"umph":39988,"ĠSquirrel":39989,"Ġtyped":39990,"Ġblockers":39991,"Vote":39992,"ĠPossibly":39993,"geist":39994,"ĠTRANS":39995,"Ġtitan":39996,"VG":39997,"Ġmicrobi":39998,"Ġinteracts":39999,"Ġmasc":40000,"Ġfinite":40001,"Ġcutoff":40002,"ornings":40003,"Ġprototyp":40004,"Ġcompan":40005,"mology":40006,"ĠBOX":40007,"Cre":40008,"Bot":40009,"grading":40010,"PET":40011,"Ġinsidious":40012,"ĠFranch":40013,"orians":40014,"ĠAUT":40015,"ĠCrush":40016,"589":40017,"question":40018,"anguard":40019,"Ġabsurdity":40020,"?\",":40021,"Hum":40022,"Ġliberalism":40023,"Ġpostwar":40024,"Gener":40025,"Personally":40026,"889":40027,"Bul":40028,"Ġlighthouse":40029,"Ġ291":40030,"VK":40031,"ĠExposure":40032,"Ġsubtract":40033,"ometime":40034,"arbon":40035,"ĠThieves":40036,"anus":40037,"ĠLibertarian":40038,"Raw":40039,"Ġsolvent":40040,"Ġcorros":40041,"Ġsignific":40042,"Ġscholarly":40043,"024":40044,"Ġfetish":40045,"Ġlarvae":40046,"Ġcatast":40047,"Ġtraitor":40048,"ijing":40049,"Demand":40050,"math":40051,"Ġconceivable":40052,"either":40053,"acl":40054,"ĠArrows":40055,"627":40056,"ĠFrankenstein":40057,"entious":40058,"Ġimitation":40059,"amn":40060,"ĠSTOP":40061,"Ġcripp":40062,"zag":40063,"ĠZed":40064,"797":40065,"Along":40066,"Ġwont":40067,"Ġfolds":40068,"Shar":40069,"ĠCommentary":40070,"ĠLibraries":40071,"ĠThunderbolt":40072,"itud":40073,"Toy":40074,"Ġincidentally":40075,"ĠResp":40076,"Ġordinarily":40077,"Ġvanish":40078,"acterial":40079,"Minnesota":40080,"rank":40081,"614":40082,"ĠExam":40083,"Got":40084,"Ġsnipers":40085,"ETHOD":40086,"dirty":40087,"igsaw":40088,"Obs":40089,"ĠAuthors":40090,"Ġillustrating":40091,"782":40092,"864":40093,"Ġblinded":40094,"transfer":40095,"Ġspawning":40096,"ĠDiary":40097,"ĠDNS":40098,"CG":40099,"someone":40100,"Ġcruc":40101,"Morgan":40102,"Learn":40103,"API":40104,"toc":40105,"STAT":40106,"ĠFlame":40107,"aganda":40108,"ĠBenef":40109,"stuff":40110,"SEA":40111,"Ġincest":40112,"Normally":40113,"ĠRU":40114,"Ġarsenic":40115,"isine":40116,"ĠTG":40117,"Type":40118,"regn":40119,"Cass":40120,"Touch":40121,"Site":40122,"Ġpict":40123,"Ġcorrupted":40124,"729":40125,"Ġnineteen":40126,"Ġparaph":40127,"Ġtavern":40128,"Ġretard":40129,"ĠKaf":40130,"Ġcolleg":40131,"bucks":40132,"imum":40133,"ĠCandle":40134,"ĠMisc":40135,"ĠAwesome":40136,"edited":40137,"ĠDN":40138,"otomy":40139,"Ġdisclaimer":40140,"798":40141,"ĠGoodbye":40142,"ucle":40143,"atom":40144,"Judge":40145,"cipl":40146,"Ġinexplicable":40147,"iddler":40148,"781":40149,"Ġempirical":40150,"Veter":40151,"Ġascert":40152,"Ġaest":40153,"Ġlaz":40154,"binary":40155,"Ġ358":40156,"contained":40157,"Ġmultipl":40158,"ocado":40159,"Ġdelusional":40160,"Ġaeros":40161,"udence":40162,"Ġjargon":40163,"estine":40164,"Ġarbitrarily":40165,"Ġprick":40166,"BACK":40167,"amines":40168,"Mess":40169,"Knowing":40170,"ublic":40171,"ĠWarfare":40172,"Ġsignify":40173,"Ġfragmentation":40174,"Tex":40175,"Ġnin":40176,"Ġdise":40177,"882":40178,"hospital":40179,"volent":40180,"Need":40181,"Ġinfer":40182,"Sony":40183,"783":40184,"YING":40185,"Ġinfinity":40186,"ĠFortress":40187,"Ġmustache":40188,"Ġcorresponds":40189,"DX":40190,"Ġunmarried":40191,"ĠCruel":40192,"Ġ1901":40193,"Ġappropri":40194,"ZI":40195,"Ġphosph":40196,"901":40197,"IFE":40198,"Ġ347":40199,"Ġconvoluted":40200,"ĠApost":40201,"htm":40202,"Ġilluminating":40203,"568":40204,"Ġassassinate":40205,"Ġparam":40206,"Ġimpractical":40207,"cedes":40208,"ĠProcedure":40209,"ĠMouth":40210,"Battle":40211,"Ġ451":40212,"Sand":40213,"Ġcontamin":40214,"Hour":40215,"Cell":40216,"BIL":40217,"Ġprecon":40218,"ĠScor":40219,"Ġconfig":40220,"ĠMuscle":40221,"Ġhive":40222,"Ġunderworld":40223,"plement":40224,"Ġpostage":40225,"Ġinterpersonal":40226,"Ġpierced":40227,"Ġcharms":40228,"oscopic":40229,"ASC":40230,"ĠDex":40231,"render":40232,"png":40233,"Ġcritiques":40234,"992":40235,"ĠVinyl":40236,"Bear":40237,"idia":40238,"ĠTemp":40239,"Ġcyn":40240,"ĠBCE":40241,"Ġpatriarchal":40242,"Ġantagonist":40243,"ĠGMO":40244,"Ġunnatural":40245,"Race":40246,"imeo":40247,"ĠUkrainians":40248,"Train":40249,"Ġ329":40250,"ritten":40251,"igil":40252,"Lin":40253,"alus":40254,"*****":40255,"olded":40256,"ĠPegasus":40257,"Bas":40258,"photos":40259,"Ġ820":40260,"Ġsquadron":40261,"ESE":40262,"Ġ373":40263,"Uk":40264,"Lost":40265,"Store":40266,"ĠScenes":40267,"JJ":40268,"Ġlick":40269,"Tyler":40270,"cius":40271,"lishing":40272,"ocl":40273,"Ġassoci":40274,"ensitivity":40275,"entanyl":40276,"Rum":40277,"Ġ443":40278,"onding":40279,"Ġpedals":40280,"ĠPsychological":40281,"Ġthro":40282,"Network":40283,"591":40284,"Pick":40285,"Ġchords":40286,"ĠHound":40287,"entials":40288,"faces":40289,"ĠYin":40290,"ugi":40291,"bows":40292,"ĠForms":40293,"886":40294,"Ox":40295,"Ġ351":40296,"Ġmating":40297,"Ġchirop":40298,"916":40299,"Ġexpend":40300,"Ġusefulness":40301,"Marvel":40302,"ĠStretch":40303,"omez":40304,"ĠJS":40305,"Hal":40306,"fle":40307,"ĠCountdown":40308,"ĠLH":40309,"assian":40310,"vd":40311,"ĠTranscript":40312,"ĠExtrem":40313,"idine":40314,"ustainable":40315,"ederal":40316,"ĠOwl":40317,"Ġcreed":40318,"ĠGrateful":40319,"Ġprenatal":40320,"________________________________":40321,"ĠElements":40322,"â̦)":40323,"nesia":40324,"ARGET":40325,"Ġboredom":40326,"Ġdepictions":40327,"verbal":40328,"ĠeSports":40329,"Laura":40330,"ilage":40331,"ĠGalactic":40332,"Investigators":40333,"Ġscattering":40334,"instein":40335,"ĠExperiment":40336,"ĠRecre":40337,"Ġregul":40338,"Ġrelent":40339,"STE":40340,"Ġslicing":40341,"igans":40342,"raped":40343,"ĠDeter":40344,"Ġsmoker":40345,"ĠWikimedia":40346,"pages":40347,"Ted":40348,"713":40349,"Ġpuberty":40350,"Ġhars":40351,"ĠStarter":40352,"patch":40353,"leeve":40354,"Ġ346":40355,"ĠAccessories":40356,"ventions":40357,"ĠSTAND":40358,"ĠUrug":40359,"ĠOccupy":40360,"Ġbinds":40361,"ĠBubble":40362,"Ġincorporation":40363,"Ġstereotypical":40364,"Ġgor":40365,"987":40366,"Ġevils":40367,"tower":40368,"Ġastronomer":40369,"Ble":40370,"ĠNid":40371,"ĠWidow":40372,"Ġpaw":40373,"Ġinnoc":40374,"ĠOWN":40375,"Ġtofu":40376,"drops":40377,"ĠEval":40378,"693":40379,"Collins":40380,"penter":40381,"ĠNib":40382,"Ġsmokes":40383,"Ġ1850":40384,"Ġtechno":40385,"oooo":40386,"ĠUnic":40387,"ĠKirin":40388,"\":[\"":40389,"Ġincrements":40390,"989":40391,"oodoo":40392,"ĠCyborg":40393,"Ġcures":40394,"ĠOW":40395,"ĠAnnex":40396,"behavior":40397,"/-":40398,"Ġbuggy":40399,"onent":40400,"Bey":40401,"Ġsummarize":40402,"putable":40403,"Ġfri":40404,"Gi":40405,"urances":40406,"ĠAppalach":40407,"Ġhegemony":40408,"ĠOrigins":40409,"Ġconnectors":40410,"ĠAST":40411,"object":40412,"ĠSlay":40413,"Arm":40414,"oston":40415,"ĠEVEN":40416,"Ġprophecy":40417,"Bright":40418,"ĠVector":40419,"Marg":40420,"omical":40421,"Holy":40422,"ĠRPM":40423,"ĠReceiver":40424,"Ġtracts":40425,"boss":40426,"Ġblurry":40427,"aspx":40428,"DES":40429,"Ġcess":40430,"ĠAster":40431,"anything":40432,"levard":40433,"unciation":40434,"jong":40435,"Ġiv":40436,"Common":40437,"ĠDistance":40438,"imus":40439,"outheast":40440,"Ġcir":40441,"ĠCato":40442,"Ġinscribed":40443,"ersed":40444,"Ġanarchy":40445,"Ġplagiar":40446,"Ġthug":40447,"Actor":40448,"ĠTant":40449,"Researchers":40450,"remember":40451,"Ġitch":40452,"Ġrefill":40453,"Ġsucker":40454,"ĠWANT":40455,"RAG":40456,"rencies":40457,"ĠTape":40458,"Ġattaches":40459,"nb":40460,"Tan":40461,"Ġappend":40462,"Ġalas":40463,"951":40464,"panel":40465,"Climate":40466,"icrobial":40467,"Brandon":40468,"ĠFreud":40469,"Ġfungi":40470,"Ġcommenters":40471,"ĠDelicious":40472,"Ġhitherto":40473,"conv":40474,"Ġchemist":40475,"Ġdenominations":40476,"ĠBehavior":40477,"comed":40478,"ĠLantern":40479,"ĠFloating":40480,"magic":40481,"ĠBarbar":40482,"bender":40483,"iliar":40484,"unny":40485,"Ġretracted":40486,"atars":40487,"ĠLovely":40488,"Ġinfinitely":40489,"Ġhumili":40490,"Ġinterestingly":40491,"Ġmunicip":40492,"ĠPanic":40493,"Ġcomprehension":40494,"ĠMassacre":40495,"Ġpersuasion":40496,"enf":40497,"Ġcoded":40498,"higher":40499,"chart":40500,"umbered":40501,"ĠIndigo":40502,"Ġthinker":40503,"Ġgoof":40504,"ĠPetition":40505,"fascist":40506,"absor":40507,"Ġassay":40508,"ĠClassification":40509,"Ġhalluc":40510,"speech":40511,"issues":40512,"Ġinexper":40513,"ĠLibre":40514,"Ġsling":40515,"zech":40516,"Ġpouch":40517,"ĠOffense":40518,"ĠHF":40519,"Fight":40520,"026":40521,"ĠTrident":40522,"fm":40523,"Ġintox":40524,"Ġ465":40525,"colonial":40526,"ovies":40527,"794":40528,"Techn":40529,"undreds":40530,"Ġchildish":40531,"arenthood":40532,"ĠShade":40533,"Host":40534,"Ġdirectional":40535,"reader":40536,"rimp":40537,"ĠEater":40538,"prep":40539,"Ġmeas":40540,"Ġlatch":40541,"inant":40542,"nels":40543,"finished":40544,"application":40545,"Board":40546,"Ġfiller":40547,"ivably":40548,"CAST":40549,"Ġstereotyp":40550,"Ġwarranties":40551,"ĠProbe":40552,"Ġspontaneously":40553,"Ġtropes":40554,"Meg":40555,"ĠHandling":40556,"hemer":40557,"986":40558,"ĠSly":40559,"plates":40560,"Ġmolten":40561,"ĠHIT":40562,"strings":40563,"Ġcentrif":40564,"ĠENG":40565,"Indeed":40566,"Ġ429":40567,"Ġsly":40568,"Ġ490":40569,"Ġhordes":40570,"boot":40571,"691":40572,"ihara":40573,"Ġsubversive":40574,"Russell":40575,"aceous":40576,"wk":40577,"Ġreverence":40578,"Ġingenious":40579,"holiday":40580,"eligible":40581,"ĠTactical":40582,"978":40583,"herence":40584,"Ġgimm":40585,"Ġarchaic":40586,"Ġadam":40587,"Ġ297":40588,"Father":40589,"ĠLerner":40590,"Ġhesitated":40591,"Safety":40592,"Ġawakened":40593,"ueller":40594,"Ġextrater":40595,"Ġmummy":40596,"ĠBuddhism":40597,"Ġ359":40598,"Ġlegions":40599,"Ġprehistoric":40600,"ancouver":40601,"Ġmelancholy":40602,"ĠEnemy":40603,"ĠSyl":40604,"ĠRobo":40605,"verting":40606,"ĠBullets":40607,"essler":40608,"Ġmarvelous":40609,"ĠBened":40610,"Ġsavior":40611,"omever":40612,"Bee":40613,"Ġrapp":40614,"Ġpredomin":40615,"ĠScripture":40616,"Ġsnapshots":40617,"Ġunrem":40618,"Ġsquid":40619,"ĠBuddh":40620,"ĠSantorum":40621,"Internet":40622,"avoid":40623,"Ġunamb":40624,"Ġ296":40625,"Ġnexus":40626,"Ġinterchangeable":40627,"ockets":40628,"Ġfoll":40629,"ĠOPT":40630,"023":40631,"²":40632,"Ġhereditary":40633,"Ġvape":40634,"=\"":40635,"1996":40636,"س":40637,"Emergency":40638,"Ġneb":40639,"Ġisot":40640,"Ġdiam":40641,"stairs":40642,"ĠAppendix":40643,"venient":40644,"Ġinvol":40645,"Ġtheorist":40646,"Ġconqu":40647,"Mich":40648,"ĠSort":40649,"antasy":40650,"dating":40651,"771":40652,"Ġape":40653,"Ġindemn":40654,"ween":40655,"Games":40656,"ascal":40657,"Muslims":40658,"Ġleaflets":40659,"Ġtraverse":40660,"Ġtransgress":40661,"Ġflushed":40662,"893":40663,"lasses":40664,"obos":40665,"ooming":40666,"Ġtou":40667,"mast":40668,"âģ":40669,"751":40670,"Either":40671,"Ġgrate":40672,"urgy":40673,"Ġendowed":40674,"ĠRasm":40675,"Nat":40676,"odka":40677,"olon":40678,"iants":40679,"Ġsensations":40680,"Ġsituational":40681,"pox":40682,"Figure":40683,"Ġslime":40684,"Ġ421":40685,"ollow":40686,"Ġanesthesia":40687,"adult":40688,"ĠPiece":40689,"994":40690,"ĠAnalog":40691,"Iv":40692,"flo":40693,"Ġdomest":40694,"Ġcabal":40695,"Ġgarg":40696,"Ġrabb":40697,"REC":40698,"ISTORY":40699,"Friend":40700,"Ġancestor":40701,"ĠLets":40702,"Ġelf":40703,"Ġlobb":40704,"ĠAdren":40705,"silver":40706,"astical":40707,"Ġstitch":40708,"028":40709,"Hug":40710,"Ġmoss":40711,"ompl":40712,"Ġunob":40713,"883":40714,"Ġcortex":40715,"olutely":40716,"052":40717,"Seattle":40718,"restling":40719,"endment":40720,"Ġ366":40721,"ventus":40722,"ĠRated":40723,"ĠClever":40724,"Ġcloak":40725,"phrase":40726,"flake":40727,"Ġphilosophies":40728,"784":40729,"Ġskulls":40730,"wake":40731,"oru":40732,"ĠACTION":40733,"Ġcomprom":40734,"ĠManufacturer":40735,"ĠImprove":40736,"Ns":40737,"ĠRevenge":40738,"lords":40739,"Ġ417":40740,"iddles":40741,"Ġcondesc":40742,"tiny":40743,"Ġchloride":40744,"greg":40745,"ĠREST":40746,"subject":40747,"Ġundes":40748,"ftime":40749,"Ġbottleneck":40750,"ĠZombie":40751,"Ġhabitable":40752,"Ġcigars":40753,"Ġenlarg":40754,"icester":40755,"ðĿ":40756,"regulation":40757,"arters":40758,"Ġformulations":40759,"Ġadhesive":40760,"Ġ344":40761,"pod":40762,"etitive":40763,"Ġcontinuum":40764,"aghd":40765,"Ġ701":40766,"Ġdisband":40767,"Tu":40768,"Ġcivilisation":40769,"ĠPCI":40770,"Ġcrooked":40771,"ammy":40772,"Ġbrim":40773,"Jr":40774,"ĠBunker":40775,"plot":40776,"Ġwielded":40777,"Ġcaricature":40778,"ĠInfinite":40779,"piracy":40780,"aretz":40781,"Ġstares":40782,"incinnati":40783,"agents":40784,"ĠObamaCare":40785,"asuring":40786,"ansion":40787,"Ġastonished":40788,"iovascular":40789,"Bio":40790,"Ġadvisable":40791,"Ġsender":40792,"887":40793,"Led":40794,"DN":40795,"Ġaggregation":40796,"ĠInnocent":40797,"ĠTransactions":40798,"worms":40799,"ĠWorm":40800,"Ġ363":40801,"ĠBiblical":40802,"rared":40803,"Ġgazing":40804,"chant":40805,"Ġsubordinates":40806,"1600":40807,"actually":40808,"olition":40809,"ĠRTX":40810,"ĠPyramid":40811,"alph":40812,"ĠFPS":40813,"Ġerrone":40814,"ĠLR":40815,"Scientists":40816,"Ġincons":40817,"Ġbrittle":40818,"027":40819,"ĠBowser":40820,"Rub":40821,"links":40822,"ĠWik":40823,"ussion":40824,"Marsh":40825,"resents":40826,"Clean":40827,"Ġbrute":40828,"ĠInventory":40829,"1100":40830,"ĠATK":40831,"793":40832,"Ġcaveats":40833,"ĠKnot":40834,"IRT":40835,"ĠCanad":40836,"isma":40837,"entin":40838,"Own":40839,"Ġ455":40840,"Ġlesions":40841,"ĠAres":40842,"ĠKali":40843,"Ġpaws":40844,"Auto":40845,"Ġdiscrim":40846,"044":40847,"ĠCOUN":40848,"Ġ1905":40849,"Ġexperien":40850,"Ġ406":40851,"achelor":40852,"Ġscarcely":40853,"Ġsynchronized":40854,"Rat":40855,"Blake":40856,"Ġrewriting":40857,"Ġcannons":40858,"stem":40859,"Apparently":40860,"Ġleveling":40861,"?]":40862,"Ġfins":40863,"ĠTone":40864,"ogether":40865,"Sound":40866,"Ġmicrosc":40867,"ĠAsylum":40868,"Ġindividuality":40869,"Ġ432":40870,"lease":40871,"Chuck":40872,"Ġhating":40873,"Ġleftists":40874,"ĠPersonality":40875,"ĠBundle":40876,"Dutch":40877,"Ġtransformer":40878,"iami":40879,"ĠTradition":40880,"ĠRecipes":40881,"Ġdiscour":40882,"Viol":40883,"Ext":40884,"ĠOliv":40885,"ashington":40886,"Ġmillennia":40887,"Ġpsychiatrists":40888,"ĠTrilogy":40889,"inction":40890,"Ġdisliked":40891,"088":40892,"954":40893,"Ġoverloaded":40894,"Ġopium":40895,"acus":40896,"resources":40897,"mud":40898,"ometry":40899,"Hit":40900,"Ġguild":40901,"Ġabyss":40902,"884":40903,"ensity":40904,"ĠDifference":40905,"Electric":40906,"authent":40907,"Ġdownloadable":40908,"ellar":40909,"ĠSavior":40910,"ĠFRI":40911,"Ġ445":40912,"Ġincidental":40913,"Ġanalogue":40914,"ounters":40915,"ĠBuilder":40916,"Ġnarration":40917,"ategor":40918,"raise":40919,"Ġindoctr":40920,"Aren":40921,"Ġbaptism":40922,"Ġobe":40923,"Ġtubing":40924,"apsed":40925,"Fortunately":40926,"gered":40927,"Pict":40928,"Ġmastering":40929,"ĠHIM":40930,"ĠObesity":40931,"Ġornament":40932,"advant":40933,"ĠCous":40934,"032":40935,"cells":40936,"Ġpreclude":40937,"Ġanecdote":40938,"Ġpatriarchy":40939,"ĠSending":40940,"Pie":40941,"Ġdepressive":40942,"ĠEnds":40943,"712":40944,"zos":40945,"icka":40946,"Ġ1906":40947,"Anti":40948,"vana":40949,"ĠRestrict":40950,"Ġprotr":40951,"Ġusername":40952,"Ġparach":40953,"1997":40954,"imental":40955,"rower":40956,"carb":40957,"033":40958,"Ġobligatory":40959,"Ġwillful":40960,"Ġsnail":40961,"json":40962,"izarre":40963,"Ġmiscar":40964,"Ġdopamine":40965,"л":40966,"Ġapplic":40967,"Ġnervously":40968,"YY":40969,"alez":40970,"ĠSoviets":40971,"ĠMister":40972,"Ġcrates":40973,"Ġheavenly":40974,"Ġdoct":40975,"048":40976,"Ġ2400":40977,"ivia":40978,"adies":40979,"Phone":40980,"asks":40981,"Ġperenn":40982,"Ġcomposing":40983,"Ġraiding":40984,"requent":40985,"ibli":40986,"ĠFeedback":40987,"cellaneous":40988,"ĠContracts":40989,"ĠCasting":40990,"vim":40991,"Cut":40992,"Ġabbrevi":40993,"Ġintest":40994,"ricted":40995,"969":40996,"nostic":40997,"Ġinverted":40998,"ĠEG":40999,"aiden":41000,"ĠClaud":41001,"ĠiP":41002,"urized":41003,"Emily":41004,"Ġ353":41005,"Ġ((":41006,"ammad":41007,"Reb":41008,"plom":41009,"YES":41010,"connection":41011,"ĠWra":41012,"ĠMerch":41013,"Ġether":41014,"Elizabeth":41015,"Chip":41016,"relevant":41017,"URA":41018,"Ġantioxidant":41019,"ĠChron":41020,"Ġtheological":41021,"HCR":41022,"ruits":41023,"Body":41024,"enezuel":41025,"Few":41026,"adder":41027,"Ġinducing":41028,"ĠDarth":41029,"Ġimplicitly":41030,"Ġoverfl":41031,"Ġrelics":41032,"Must":41033,"ĠAnswers":41034,"Ġretina":41035,"ĠSlowly":41036,"ĠShib":41037,"software":41038,"Ġ\"\"":41039,"hack":41040,"Apart":41041,"told":41042,"Ger":41043,"Civil":41044,"problem":41045,"Ġslang":41046,"Ġtactile":41047,"Ġtabl":41048,"ĠAscension":41049,"Ġhumankind":41050,"Howard":41051,"rescent":41052,"ĠReleases":41053,"arijuana":41054,"Christopher":41055,"ĠWarden":41056,"blogspot":41057,"ĠVari":41058,"idency":41059,"ĠHandler":41060,"Round":41061,"MJ":41062,"Ġrhyth":41063,"Tai":41064,"terson":41065,"Ġ,\"":41066,"portation":41067,"ĠOrbital":41068,"Ġfantas":41069,"Ġattribut":41070,"Ġdiagram":41071,"atech":41072,"1992":41073,"ibl":41074,"Woman":41075,"ternally":41076,"Days":41077,"Ġdebunk":41078,"ĠPhant":41079,"ĠOath":41080,"sharp":41081,"Ġclaws":41082,"Lots":41083,"Incre":41084,"Aff":41085,"hooting":41086,"rect":41087,"Ġaltru":41088,"Ġwors":41089,"Ġtho":41090,"Ġ349":41091,"clusions":41092,"Ġpseudonym":41093,"Bec":41094,"Ġphosphorus":41095,"ivic":41096,"Ġ348":41097,"otent":41098,"Ġub":41099,"Ġcoales":41100,"regate":41101,"Ġ1870":41102,"Ġglide":41103,"treated":41104,"ĠSymb":41105,"Ġenchant":41106,"Besides":41107,"stocks":41108,"Ġ388":41109,"--------------":41110,"interpret":41111,"ouple":41112,"Ġdrawback":41113,"ĠRevised":41114,"Ġanat":41115,"Ġpsychosis":41116,"ب":41117,"Ġdiffuse":41118,"Ġaffidav":41119,"elve":41120,"amination":41121,"ĠTackle":41122,"hunter":41123,"env":41124,"Ġchests":41125,"Ġsubter":41126,"Ġconquest":41127,"Ġfidelity":41128,"Ġinfringing":41129,"opathic":41130,"ĠGrip":41131,"ĠKeyboard":41132,"Ġobjectionable":41133,"Ġmetabol":41134,"ĠGö":41135,"Room":41136,"...)":41137,"KEN":41138,"assic":41139,"Ġgeop":41140,"Tro":41141,"Ġcursing":41142,"Ġdile":41143,"Ġultraviolet":41144,"inarily":41145,"Ġdistilled":41146,"sect":41147,"ĠShooter":41148,"uckles":41149,"Ġdistortions":41150,"Map":41151,"Doctor":41152,"Ġinstalls":41153,"oire":41154,"Ġstarch":41155,"ociation":41156,"Lev":41157,"Ġscripture":41158,"Ġsalient":41159,"ilitating":41160,"wb":41161,"ĠSov":41162,"ĠDamn":41163,"Grey":41164,"Ġ980":41165,"Ġjung":41166,"Ġlicking":41167,"029":41168,"ĠDian":41169,"ĠBabylon":41170,"к":41171,"ĠRomantic":41172,"Ġguesses":41173,"ĠFren":41174,"Generally":41175,"ultural":41176,"istence":41177,"Ġiniti":41178,"Ġ341":41179,"ĠSlave":41180,"ultan":41181,"ĠTrash":41182,"ĠEmpty":41183,"ĠHundred":41184,"ĠDirective":41185,"Anderson":41186,"Advertisement":41187,"RH":41188,"ĠOo":41189,"ĠHik":41190,"peg":41191,"Sup":41192,"ĠXT":41193,"Ġencrypt":41194,"selage":41195,"ĠThrone":41196,"Ġconsecut":41197,"Li":41198,"ĠVirus":41199,"ĠCookies":41200,"SHIP":41201,"Ġflavorful":41202,"odynamics":41203,"animal":41204,"spread":41205,"ĠIPCC":41206,"jobs":41207,"ernand":41208,"ĠHaunted":41209,"Ġintolerable":41210,"ĠLAR":41211,"ixtape":41212,"Ġneur":41213,"Ġcausal":41214,"ĠPsychiatry":41215,"ĠVim":41216,"Ġgenomic":41217,"duration":41218,"ĠUsername":41219,"ategy":41220,"Ġunic":41221,"ĠKILL":41222,"blooded":41223,"Ġcaucuses":41224,"ĠPOLITICO":41225,"Spanish":41226,"Ġobedience":41227,"Ġinconven":41228,"MAT":41229,"Ġbends":41230,"ĠImprovements":41231,"Ġrelig":41232,"ĠForth":41233,"ĠLumia":41234,"uces":41235,"Ġunim":41236,"ĠStatistical":41237,"kb":41238,"auntlet":41239,"ĠDisco":41240,"ĠInstruction":41241,"ooo":41242,"ĠDictionary":41243,"culated":41244,"Adv":41245,"ĠAvatar":41246,"ictional":41247,"Ġcentr":41248,"ifles":41249,"orks":41250,"skill":41251,"Ġlatex":41252,"ĠPagan":41253,"Ġdevast":41254,"Ġprol":41255,"896":41256,"Product":41257,"968":41258,"Ġfrench":41259,"083":41260,"ĠCluster":41261,"cloth":41262,"ĠFilter":41263,"ĠDisorders":41264,"etimes":41265,"Ġinstinctively":41266,"ĠBritann":41267,"Ġaft":41268,"ĠVict":41269,"Ġâĺħ":41270,"Ġperverse":41271,"Ġcontraceptives":41272,"ĠHannibal":41273,"escap":41274,"ĠApostle":41275,"ĠXiao":41276,"ĠMagnum":41277,"Ġphosphate":41278,"Ġ399":41279,"utable":41280,"Ġsten":41281,"Ġwearer":41282,"Ġsmug":41283,"ĠInfluence":41284,"Ġ384":41285,"Truth":41286,"struction":41287,"Ġmaniac":41288,"ĠMagnetic":41289,"ousands":41290,"Ġsemen":41291,"dir":41292,"ĠTornado":41293,"Ġexplos":41294,"1995":41295,"Xi":41296,"Steel":41297,"057":41298,"Barn":41299,"Fan":41300,"ĠChatt":41301,"Chem":41302,"ĠFold":41303,"bees":41304,"1080":41305,"ĠMaze":41306,"ierre":41307,"oeuv":41308,"Cand":41309,"odium":41310,"mmm":41311,"ereo":41312,"Ġreactionary":41313,"Ġacidic":41314,"ĠRemoval":41315,"Ġnont":41316,"031":41317,"ĠTerminator":41318,"ĠVendor":41319,"enemy":41320,"Ġreconstructed":41321,"ĠGalileo":41322,"Ġtesters":41323,"albeit":41324,"uminium":41325,"Ġrite":41326,"ĠInput":41327,"committee":41328,"Ġjour":41329,"gements":41330,"Ġgerm":41331,"Dick":41332,"ĠRequirements":41333,"omsday":41334,"Î":41335,"ISSION":41336,"Ġmolded":41337,"Ġrye":41338,"Attorney":41339,"population":41340,"Ġrepet":41341,"Sync":41342,"breaks":41343,"Ġbanished":41344,"Ġraspberry":41345,"Ġammo":41346,"Ġorthodox":41347,"Ġwebcam":41348,"ĠAsc":41349,"vl":41350,"1989":41351,"Ġdiscipl":41352,"Ġmoreover":41353,"Ġexplodes":41354,"1960":41355,"Ġpropositions":41356,"Protect":41357,"Ġsexes":41358,"physical":41359,"ĠAthena":41360,"ocent":41361,"ĠGothic":41362,"ĠRacial":41363,"istani":41364,"Ġhelium":41365,"ĠPresumably":41366,"Ġperman":41367,"becue":41368,"ĠHW":41369,"rued":41370,"ĠCNS":41371,"DEP":41372,"ĠManifest":41373,"2500":41374,"ĠMyst":41375,"Economic":41376,"Prot":41377,"Ġledge":41378,"Ġimitate":41379,"ĠTotally":41380,"ĠBeaut":41381,"OIL":41382,"Ġ1440":41383,"Moscow":41384,"ĠSets":41385,"merga":41386,"Ġlesbians":41387,"Walker":41388,"Move":41389,"ĠSOM":41390,"ĠPsy":41391,"strument":41392,"Ġiter":41393,"ĠTosh":41394,"oola":41395,"ĠAntiqu":41396,"ĠShining":41397,"Ġobservational":41398,"VW":41399,"rophe":41400,"034":41401,"Ġcontiguous":41402,"Ġstarve":41403,"sure":41404,"Ġnegate":41405,"Ġmindless":41406,"tf":41407,"Ġdownwards":41408,"046":41409,"riors":41410,"Ġreverted":41411,"ĠAthe":41412,"Bra":41413,"eah":41414,"Rachel":41415,"Hung":41416,"Join":41417,"ĠRaces":41418,"Ġmutant":41419,"Ġuncond":41420,"Ġusability":41421,"NESS":41422,"haust":41423,"036":41424,"Ġobscurity":41425,"Ġimperialism":41426,"Ġemitting":41427,"Ġideologically":41428,"ĠIro":41429,"erva":41430,"ĠIzzy":41431,"ĠLevels":41432,"onym":41433,"ĠConspiracy":41434,"ĠSapphire":41435,"Ul":41436,"Ġhuh":41437,"ochem":41438,"Ġbehaves":41439,"ĠMesh":41440,"Ark":41441,"Ġvec":41442,"ĠActions":41443,"Ġdistinguishing":41444,"ĠTsarnaev":41445,"ĠEndurance":41446,"ederation":41447,"itant":41448,"Ġstreetcar":41449,"041":41450,"ĠAval":41451,"ĠCompanion":41452,"ĠCartoon":41453,"Ġcalculus":41454,"993":41455,"eq":41456,"ĠVanilla":41457,"MAC":41458,"wolves":41459,"fg":41460,"Ġfermentation":41461,"Ġinformants":41462,"Ġsudo":41463,"Ġperipher":41464,"Ġindign":41465,"parts":41466,"detail":41467,"femin":41468,"blade":41469,"Ġinserts":41470,"Ġoffsets":41471,"Ġantidepressants":41472,"Ġphr":41473,"Ġresultant":41474,"biology":41475,"Ġacquies":41476,"UFF":41477,"****************":41478,"ĠPenalty":41479,"Ġrever":41480,"heric":41481,"ĠShadows":41482,"command":41483,"Ġreprint":41484,"089":41485,"empty":41486,"ĠTAG":41487,"stim":41488,"FK":41489,"Ġkins":41490,"uggle":41491,"imura":41492,"wit":41493,"Kill":41494,"Beck":41495,"Ocean":41496,"Ġlabyrinth":41497,"ĠNorse":41498,"IENCE":41499,"Ġ+++":41500,"DoS":41501,"gm":41502,"Ġbarbar":41503,"ĠCeres":41504,"Ġhashing":41505,"eworthy":41506,"Ġrecite":41507,"Ġelectrodes":41508,"Ġconformity":41509,"response":41510,"olate":41511,"Ġ357":41512,"Snap":41513,"Crime":41514,"Ġpointer":41515,"ĠTIT":41516,"Ġdistinctions":41517,"Ġ427":41518,"ĠÙĪ":41519,"abases":41520,"Mars":41521,"ĠSpiritual":41522,"Ġimpuls":41523,"Philadelphia":41524,"1994":41525,"Ġcunning":41526,"Ġfram":41527,"Ġinco":41528,"Ġomnip":41529,"imize":41530,"ervative":41531,"Gy":41532,"Drug":41533,"Ġcarniv":41534,"ĠSailor":41535,"download":41536,"ĠBeetle":41537,"ĠEarthqu":41538,"izontal":41539,"Alan":41540,"Nice":41541,"Prior":41542,"MAG":41543,"Ġautobi":41544,"ĠBrill":41545,"Ġpredominant":41546,"ĠMessiah":41547,"REM":41548,"ĠSlip":41549,"ĠWebs":41550,"ademic":41551,"<":41552,"ĠVessel":41553,"vari":41554,"Code":41555,"Ġbeetle":41556,"projects":41557,"BAT":41558,"Ġpsychotic":41559,"Ġunderside":41560,"Ġrefute":41561,"Considering":41562,"kees":41563,"wd":41564,"priority":41565,"Ġtwentieth":41566,"Ġatheist":41567,"amina":41568,"Ġeuphem":41569,"Ġtripod":41570,"ĠTrayvon":41571,"ĠNON":41572,"2200":41573,"ĠNPC":41574,"ependence":41575,"ĠMHz":41576,"ĠBung":41577,"Ġpane":41578,"Ġaboriginal":41579,"ĠPLUS":41580,"igers":41581,"ĠSexy":41582,"MF":41583,"Chall":41584,"Ay":41585,"ilingual":41586,"adj":41587,"Ġfrown":41588,"successful":41589,"stack":41590,"Ġic":41591,"ĠSeah":41592,"Ġconsequ":41593,"bugs":41594,"ĠScand":41595,"ĠCurve":41596,"Nob":41597,"ĠHoo":41598,"ĠKissinger":41599,"ĠTimeline":41600,"Ġmt":41601,"Description":41602,"YP":41603,"ĠInstallation":41604,"levision":41605,"Ġanthropology":41606,"itzerland":41607,"iaries":41608,"kward":41609,"robat":41610,"Ġcarbohydrate":41611,"Phot":41612,"оÐ":41613,"ĠSQL":41614,"Disc":41615,"Ġdataset":41616,"ynski":41617,"Ġfiat":41618,"ĠDres":41619,"ĠFavor":41620,"ĠHalls":41621,"Alt":41622,"PART":41623,"Spider":41624,"Ġdisabling":41625,"RG":41626,"Ward":41627,"aturation":41628,"Ġwillfully":41629,"Ġlockout":41630,"ĠShutdown":41631,"956":41632,"Ġcommunists":41633,"Against":41634,"Ore":41635,"ĠRik":41636,"ĠASD":41637,"ĠOnion":41638,"Ġparticulars":41639,"Analy":41640,"checked":41641,"selected":41642,"romy":41643,"ĠAkira":41644,"Ġcongr":41645,"Choice":41646,"Ġbos":41647,"organisms":41648,"Ġfrowned":41649,"Tok":41650,"Bir":41651,"ĠScrib":41652,"Ġrealms":41653,"Ġcoercive":41654,"1993":41655,"021":41656,"âĢĵâĢĵ":41657,"athetic":41658,"rior":41659,"Ġfolly":41660,"ĠAMERICA":41661,"Ġcassette":41662,"953":41663,"Ġabsorbs":41664,"043":41665,"quad":41666,"''.":41667,"ĠExtract":41668,"Ġ424":41669,"Whit":41670,"Dun":41671,"Ġexerted":41672,"Ġbrethren":41673,"ĠChronicles":41674,"eric":41675,"Mot":41676,"Ġendings":41677,"piration":41678,"Ġpredetermined":41679,"ĠAirl":41680,"Ġgasp":41681,"Ġ367":41682,"Ġexclaim":41683,"cation":41684,"sort":41685,"idden":41686,"missive":41687,"ع":41688,"oice":41689,"same":41690,"Ott":41691,"Ġscatter":41692,"Flight":41693,"ĠTOD":41694,"Stra":41695,"amia":41696,"IZE":41697,"Ġcompressor":41698,"ixels":41699,"lethal":41700,"ĠExperimental":41701,"Ing":41702,"knife":41703,"Ġvanishing":41704,"ĠRequired":41705,"Stat":41706,"ĠPlex":41707,"spection":41708,"ĠBakr":41709,"Amazing":41710,"Ġbreaths":41711,"rots":41712,"OSP":41713,"Ġ840":41714,"Wars":41715,"OGR":41716,"Ġ372":41717,"ĠKhe":41718,"inous":41719,"lightly":41720,"ĠRounds":41721,"Ġrefinement":41722,"property":41723,"Ġmetaph":41724,"oultry":41725,"istor":41726,"Ġintestine":41727,"eus":41728,"ĠWilhelm":41729,"ĠBane":41730,"emption":41731,"oubtedly":41732,"ĠVirtue":41733,"'),":41734,"Ħ¢":41735,"Ġappar":41736,"ĠTranslation":41737,"Quite":41738,"Ġphysicists":41739,"Ġpriesthood":41740,"Ġallowable":41741,"Saint":41742,"OSED":41743,"bind":41744,"Ġtorches":41745,"osexual":41746,"Cruz":41747,"ertility":41748,"ĠAES":41749,"Ġascended":41750,"Ġmuzzle":41751,"Ġelectors":41752,"ĠKrug":41753,"Ġcc":41754,"classic":41755,"ĠMace":41756,"Å«":41757,"Ġâ̦\"":41758,"ĠTEST":41759,"gomery":41760,"Person":41761,"Ġtranslations":41762,"ĠDys":41763,"ĠConsent":41764,"Ġ361":41765,"alos":41766,"Ġallerg":41767,"ĠWast":41768,"ĠChecks":41769,"cerning":41770,"Ġlizard":41771,"Ġrevolutions":41772,"Ġtether":41773,"Ġminimized":41774,"ĠReverse":41775,"itely":41776,"iguous":41777,"athing":41778,"Flow":41779,"Moving":41780,"Ġ409":41781,"047":41782,"Ġsnug":41783,"Nich":41784,"Ġcartridge":41785,"YL":41786,"Ġforwarding":41787,"umerous":41788,"ĠAbedin":41789,"iolet":41790,"tick":41791,"ĠTransform":41792,"Grant":41793,"Ġsubtitles":41794,"ĠEmin":41795,"ghost":41796,"ĠKurd":41797,"Ġfireball":41798,"compatible":41799,"Ġprojectiles":41800,"amorph":41801,"ĠSatisf":41802,"Ġquirks":41803,"Ġrecept":41804,"spective":41805,"Ġgraphical":41806,"ĠPicard":41807,"ĠAuthent":41808,"ĠSponge":41809,"Army":41810,"ĠLumin":41811,"ĠSOME":41812,"Ġsolitude":41813,"ĠSHOULD":41814,"ĠFasc":41815,"opez":41816,"types":41817,"gallery":41818,"OLOGY":41819,"shake":41820,"Ġ369":41821,"Ġreused":41822,"Ġ378":41823,"Ġexorc":41824,"Ġdocs":41825,"Yu":41826,"ĠGOD":41827,"ocrine":41828,"location":41829,"fif":41830,"Grid":41831,"Ġpowd":41832,"Ġ'[":41833,"Ġposterior":41834,"Thompson":41835,"Table":41836,"oslov":41837,"ĠGoddess":41838,"odon":41839,"ĠSTD":41840,"Ġresponsiveness":41841,"stab":41842,"absolute":41843,"Enough":41844,"ĠEssence":41845,"ĠUpgrade":41846,"hematically":41847,"Subscribe":41848,"alsh":41849,"repl":41850,"Ġselector":41851,"ĠLength":41852,"Ġtemporal":41853,"Tele":41854,"ocalyptic":41855,"ĠDeaths":41856,"rl":41857,"Target":41858,"ĠOrn":41859,"ongh":41860,"Ġ1909":41861,"Quest":41862,"Place":41863,"ĠDisabled":41864,"Ġascending":41865,"giene":41866,"ĠMSI":41867,"ivil":41868,"Ġcaval":41869,"Ġintermitt":41870,"Ġsalts":41871,"Apr":41872,"059":41873,"ĠKeeper":41874,"emis":41875,"ĠEternal":41876,"SER":41877,"estones":41878,"Ġrudimentary":41879,"Ġpooled":41880,"ĠAlright":41881,"Ġdiagrams":41882,"ydia":41883,"Jacob":41884,"Ġarchitectures":41885,"ĠUSPS":41886,"Ġfootnote":41887,"ĠBrav":41888,"ĠLeopard":41889,"Ġvirtuous":41890,"ploma":41891,"ĠHIP":41892,"Ġhorizontally":41893,"olith":41894,"Prop":41895,"ĠApocalypse":41896,"Syria":41897,"ĠShowdown":41898,"constitutional":41899,"Independent":41900,"ĠMiliband":41901,"ĠTracks":41902,"adle":41903,"ĠESL":41904,"ĠFIGHT":41905,"Ġjohn":41906,"é":41907,"benef":41908,"eware":41909,"ĠTABLE":41910,"ĠVeg":41911,"ainers":41912,"Ġresolves":41913,"Warren":41914,"ĠRanked":41915,"possibly":41916,"bian":41917,"simple":41918,"Ġuniformly":41919,"ĠSlash":41920,"otton":41921,"ĠAbsent":41922,"agically":41923,"ĠPieces":41924,"Station":41925,"ĠBeware":41926,"ĠDiscrimination":41927,"Ġponies":41928,"Import":41929,"utory":41930,"ĠParas":41931,"Phoenix":41932,"Lat":41933,"UTC":41934,"push":41935,"astically":41936,"urrent":41937,"untarily":41938,"Ġparanormal":41939,"Ġglanced":41940,"Ġmanifestations":41941,"ĠNeuroscience":41942,"irgin":41943,"ROM":41944,"Ġ($)":41945,"Ġ379":41946,"missing":41947,"Ġmercenaries":41948,"Ġenumer":41949,"ĠShant":41950,"Ws":41951,"wered":41952,"Ġbuffs":41953,"ultane":41954,"ĠRohing":41955,"igger":41956,"Ring":41957,"Ġmanifests":41958,"Fat":41959,"ĠReduced":41960,"ĠMinerva":41961,"uart":41962,"ĠArmory":41963,"orange":41964,"igible":41965,"Ġphysiology":41966,"Ut":41967,"Ġparchment":41968,"ĠFired":41969,"trap":41970,"oggle":41971,"mson":41972,"ĠPoster":41973,"Ġbount":41974,"import":41975,"maximum":41976,"Ġ422":41977,"ĠFemin":41978,"Ġnodding":41979,"Ġinscription":41980,"Results":41981,"GRE":41982,"icative":41983,"Ġcognition":41984,"Ġions":41985,"ĠBite":41986,"Ġneutron":41987,"Ġduplication":41988,"ĠZIP":41989,"ĠQuit":41990,"Ġgrasping":41991,"ĠDaylight":41992,"Ġlayouts":41993,"CLA":41994,"reason":41995,"ĠHuh":41996,"Ġpige":41997,"ĠBomber":41998,"Produ":41999,"Ġgland":42000,"ĠAbsolute":42001,"writ":42002,"Ġmassac":42003,"Ġfixation":42004,"device":42005,"yz":42006,"ĠGOT":42007,"ĠDying":42008,"adjust":42009,"grain":42010,"Ġdeform":42011,"Ġtypew":42012,"Ġdagger":42013,"ĠTuring":42014,"ĠBucc":42015,"Heavy":42016,"Ġcommod":42017,"files":42018,"ogeneous":42019,"roth":42020,"Buff":42021,"Ġbookmark":42022,"porary":42023,"Medical":42024,"Um":42025,"Ġtranslucent":42026,"ĠAnxiety":42027,"ĠCorinthians":42028,"optional":42029,"PUT":42030,"Ġcrucifix":42031,"alloween":42032,"ĠVK":42033,"Ġblu":42034,"ĠCorinth":42035,"Mount":42036,"Ġmembranes":42037,"particip":42038,"Ġextraord":42039,"Ġstimulated":42040,"leneck":42041,"Ġspecifies":42042,"Sin":42043,"lash":42044,"Edited":42045,"Ġfused":42046,"Nin":42047,"ĠBungie":42048,"ĠTooth":42049,"WATCH":42050,"Nav":42051,"Initially":42052,"+)":42053,"ĠAncest":42054,"Ġtransmitter":42055,"ĠVolks":42056,"ezvous":42057,"ĠNirvana":42058,"ĠCald":42059,"font":42060,"Und":42061,"remlin":42062,"ichever":42063,"ĠHeal":42064,"shall":42065,"Ġattribution":42066,"authorized":42067,"ĠINTO":42068,"acteria":42069,"ĠTsu":42070,"ĠPlane":42071,"iphate":42072,"igraph":42073,"chev":42074,"Ġinverse":42075,"ifest":42076,"Players":42077,"!!\"":42078,"ĠContrast":42079,"1984":42080,"Ġsevent":42081,"colour":42082,"ĠRational":42083,"virtual":42084,"Ġfec":42085,"ĠETH":42086,"ĠPru":42087,"Õ":42088,"asma":42089,"Cur":42090,"Ġassigns":42091,"Ġridic":42092,"Todd":42093,"ulton":42094,"ĠDefendant":42095,"opsis":42096,"Ġpercentile":42097,"shr":42098,"wagen":42099,"Ġ368":42100,"SIGN":42101,"Screen":42102,"reprene":42103,"Ġerection":42104,"ĠFreak":42105,"ĠStard":42106,"stained":42107,"Ġcla":42108,"fet":42109,"ramids":42110,"QL":42111,"avorable":42112,"ĠTCP":42113,"nown":42114,"ulence":42115,"similar":42116,"Ġlinkage":42117,"ercise":42118,"Path":42119,"LECT":42120,"ĠCollections":42121,"ĠModule":42122,"Ġcs":42123,"Current":42124,"Ġmono":42125,"ĠAlv":42126,"ĠDude":42127,"Ġhypers":42128,"Ġ2600":42129,"surface":42130,"Ġpredictor":42131,"ĠColomb":42132,"Prof":42133,"anqu":42134,"natal":42135,"Ġadultery":42136,"ĠGenerations":42137,"clerosis":42138,"Ġ371":42139,"Ġenlightenment":42140,"onomic":42141,"Ġsatir":42142,"ĠBasics":42143,"Graham":42144,"ĠRove":42145,"Ġadul":42146,"Shut":42147,"ocious":42148,"Ġhandc":42149,"BW":42150,"ĠCognitive":42151,"visible":42152,"Ġinev":42153,"Ġ978":42154,"ĠSupported":42155,"Ġarrays":42156,"Ġalienation":42157,"Weight":42158,"ĠkWh":42159,"Ġwarped":42160,"Ġ386":42161,"lance":42162,"Ġherpes":42163,"ĠPHP":42164,"Ġclaimant":42165,"uitive":42166,"Ġpussy":42167,"Ġcorpus":42168,"ĠAo":42169,"Qual":42170,"ĠXVI":42171,"requ":42172,"Ġsympt":42173,"mination":42174,"Ġhairy":42175,"ĠBattles":42176,"owntown":42177,"Roberts":42178,"Ġnec":42179,"ablo":42180,"AMD":42181,"internet":42182,"Tar":42183,"direction":42184,"ouston":42185,"ĠGlock":42186,"ĠYanukovych":42187,"ogens":42188,"rogram":42189,"otype":42190,"ĠPt":42191,"tenance":42192,"Ġaromatic":42193,"oxin":42194,"Vert":42195,"Ġsociop":42196,"cible":42197,"Db":42198,"________________":42199,"Third":42200,"ĠShips":42201,"!.":42202,"expensive":42203,"WOR":42204,"primary":42205,"Ġ666":42206,"Ġdecaying":42207,"Ġclustered":42208,"Ġbeetles":42209,"ĠHogwarts":42210,"Ġheaders":42211,"ĠJudah":42212,"Ġscen":42213,"Ġcosmos":42214,"ĠGenetic":42215,"blems":42216,"Ġfeeble":42217,"NOW":42218,"NSA":42219,"Ġadminist":42220,"ĠDocker":42221,"portion":42222,"gression":42223,"Ġ1904":42224,"heard":42225,"Ġinhab":42226,"ĠLeaves":42227,"Ġcortisol":42228,"atinum":42229,"unknown":42230,"ĠObserv":42231,"ĠPhilosophy":42232,"Ide":42233,"Ġcopyrighted":42234,"surv":42235,"ĠLocations":42236,"Ġglands":42237,"ĠKnife":42238,"ĠEmber":42239,"ĠUnicorn":42240,"Ġhaste":42241,"Ġkinderg":42242,"ĠTerrit":42243,"ĠKoran":42244,"Ġaval":42245,"addon":42246,"ĠNero":42247,"\"]":42248,"Ġ392":42249,"comfort":42250,"Ġclothed":42251,"ashtra":42252,"mode":42253,"Ġ??":42254,"!\",":42255,"Ġknob":42256,"EMP":42257,"norm":42258,"ĠAgo":42259,"RECT":42260,"Denver":42261,"Ġ1907":42262,"ĠBombs":42263,"Sche":42264,"Ġtriangular":42265,"Ġperv":42266,"rises":42267,"Jes":42268,"Ġcalibration":42269,"Ġts":42270,"Same":42271,"ĠAxe":42272,"ĠMei":42273,"multi":42274,"Ġexerc":42275,"orney":42276,"Ware":42277,"abul":42278,"ĠFior":42279,"Eventually":42280,"ĠGrizz":42281,"Past":42282,"married":42283,"Ġscram":42284,"ĠCache":42285,"posure":42286,"Ġheav":42287,"ĠShirt":42288,"powder":42289,"complex":42290,"Doc":42291,"arus":42292,"Pi":42293,"Ġcurv":42294,"ĠTopic":42295,"Ġ.)":42296,"Ġwills":42297,"philis":42298,"gui":42299,"leground":42300,"Eth":42301,"Strike":42302,"Kid":42303,"Ġdelegated":42304,"Soon":42305,"Ġwast":42306,"gage":42307,"Ġprosecut":42308,"Ġ374":42309,"opolis":42310,"chest":42311,"ensation":42312,"Ġredes":42313,"Ġpresum":42314,"Portland":42315,"Ġannihil":42316,"yssey":42317,"Ġforks":42318,"Ġvitro":42319,"walker":42320,"ĠPsal":42321,"ĠStealth":42322,"Quick":42323,"ĠBaghd":42324,"ĠDrift":42325,"//":42326,"Ġinvincible":42327,"ĠGAM":42328,"Ġcastles":42329,"Ġbondage":42330,"ĠBalloon":42331,"Amid":42332,"individual":42333,"tis":42334,"ĠGuides":42335,"xe":42336,"Cong":42337,"URI":42338,"ĠHH":42339,"PHOTOS":42340,"ĠASIC":42341,"burst":42342,"ahon":42343,"ĠFIX":42344,"ilib":42345,"Ġ457":42346,"ĠLogged":42347,"à¹":42348,"Creat":42349,"inatory":42350,"column":42351,"ĠAugustus":42352,"suggest":42353,"pret":42354,"ĠParan":42355,"Ġsubsistence":42356,"wx":42357,"×":42358,"aleigh":42359,"dash":42360,"ĠMana":42361,"Ko":42362,"opausal":42363,"Ġbene":42364,"ĠSabb":42365,"ĠGhosts":42366,"Ġ1830":42367,"ĠHats":42368,"ĠHive":42369,"Perfect":42370,"Ġsocialists":42371,"Ġtumult":42372,"EGA":42373,"ĠNAME":42374,"Android":42375,"assembled":42376,"phis":42377,"Stage":42378,"Char":42379,"Double":42380,"Ġinsign":42381,"IED":42382,"perial":42383,"ĠEMP":42384,"mx":42385,"Ġskept":42386,"Ġwifi":42387,"Ġparad":42388,"ĠFrequency":42389,"Dist":42390,"nil":42391,"iots":42392,"å":42393,"Message":42394,"Furthermore":42395,"Ġhideous":42396,"ĠLDL":42397,"ĠFault":42398,"ĠDimensions":42399,"ĠImplement":42400,"fram":42401,"Ġamaz":42402,"ĠIndones":42403,"ĠTile":42404,"Ġlar":42405,"gc":42406,"Ġcorrelate":42407,"Ġensl":42408,"mite":42409,"Ġhomosexuals":42410,"Ġagric":42411,"8000":42412,"Ġcuring":42413,"rament":42414,"Ġrecons":42415,"ocene":42416,"ENTION":42417,"Ġcommunion":42418,"ĠFunction":42419,"iple":42420,"Ġredund":42421,"Ġcalibrated":42422,"Ġcontribut":42423,"ĠHuck":42424,"limit":42425,"ĠFedora":42426,"ĠTsuk":42427,"brates":42428,"Ġ1903":42429,"ozo":42430,"visual":42431,"ĠDiscipline":42432,"chains":42433,"ĠOCD":42434,"Ġexpended":42435,"0002":42436,"Ġsty":42437,"ĠNightmare":42438,"ĠReplace":42439,"ounty":42440,"fn":42441,"1900":42442,"ĠEpidem":42443,"ĠFW":42444,"Ġgul":42445,"ĠTomato":42446,"ĠPerse":42447,"wl":42448,"ĠFormation":42449,"Scan":42450,"cosystem":42451,"Brand":42452,"Ġ398":42453,"Ġcaptives":42454,"Ġ×":42455,"ESCO":42456,"ĠEnder":42457,"lesh":42458,"ĠAscend":42459,"poly":42460,"eous":42461,"Ġhyster":42462,"Murray":42463,"phe":42464,"Ġradiator":42465,"esthes":42466,"Ġopin":42467,"Ġconspic":42468,"intosh":42469,"Ġwitchcraft":42470,"ĠCFR":42471,"ussian":42472,"escent":42473,"locking":42474,"Ġnonsensical":42475,"uala":42476,"ĠSerial":42477,"1991":42478,"ĠCalm":42479,"containing":42480,"Ġstimulates":42481,"Ġ448":42482,"Pir":42483,"ĠâĨĴ":42484,"ĠDiver":42485,"Ġmanuscripts":42486,"ĠGaia":42487,"Ñĥ":42488,"Learning":42489,"Ġnipple":42490,"reads":42491,"Ġandroid":42492,"ĠMeditation":42493,"Ġincomprehensible":42494,"edded":42495,"Ġdescendant":42496,"ĠMorty":42497,"Luckily":42498,"ARCH":42499,"ausible":42500,"Dig":42501,"shared":42502,"ĠClip":42503,"Ġtrope":42504,"Ġnarcissistic":42505,"ventures":42506,"Ġcuriously":42507,"ĠCosmos":42508,"Aust":42509,"Lay":42510,"ĠShard":42511,"ĠRecorded":42512,"Ġ458":42513,"........":42514,"Ġperish":42515,"ĠExample":42516,"luent":42517,"Ġapes":42518,"ĠHitch":42519,"Ġholiest":42520,"Ġamplifier":42521,"minent":42522,"xxxxxxxx":42523,"inite":42524,"Ġgenomes":42525,"ĠGuilty":42526,"mult":42527,"Ġorc":42528,"Ġnipples":42529,"Side":42530,"Ġlogically":42531,"Ġdatasets":42532,"ĠTitanium":42533,"Ġrotor":42534,"undle":42535,"handled":42536,"nexpected":42537,"Ġdw":42538,"Ġdiagonal":42539,"ĠAnimated":42540,"Ġnumbering":42541,"Forest":42542,"ĠâĨ":42543,"Prin":42544,"Ġchemically":42545,"ĠGithub":42546,"Ġaph":42547,"ĠFaster":42548,"ĠTinker":42549,"ikini":42550,"Dest":42551,"dri":42552,"Manufact":42553,"isance":42554,"Return":42555,"Alert":42556,"elcome":42557,"ĠMMR":42558,"Ġresid":42559,"ĠLIC":42560,"Ġspecificity":42561,"zanne":42562,"Ġanyways":42563,"Ġ426":42564,"Scot":42565,"astery":42566,"Via":42567,"ĠBlocks":42568,"Ġactivates":42569,"Ġabstinence":42570,"Ġchronological":42571,"Soul":42572,"ĠSchne":42573,"Ġwatts":42574,"AUT":42575,"Ġcalcul":42576,"Simply":42577,"Emb":42578,"ceptive":42579,"ĠCatholicism":42580,"obook":42581,"ĠBits":42582,"ĠMbps":42583,"Ġindignation":42584,"Ġshorthand":42585,"Active":42586,"ĠLimbaugh":42587,"ĠCapcom":42588,"adesh":42589,"Ġclipping":42590,"ĠInstructor":42591,"Secret":42592,"___":42593,"Fer":42594,"rawling":42595,"ĠReward":42596,"Ġweep":42597,"Ġmotherboard":42598,"Above":42599,"metry":42600,"ĠPTS":42601,"Ġbombard":42602,"abetes":42603,".--":42604,"Lens":42605,"Comb":42606,"basic":42607,"ĠREALLY":42608,"Later":42609,"Ġ383":42610,"Ġpositional":42611,"olesc":42612,"Ġcrotch":42613,"ĠMDMA":42614,"requently":42615,"ĠPants":42616,"Ġ433":42617,"uctor":42618,"Ġillumination":42619,"ĠÙħ":42620,"ocrin":42621,"Ġpamph":42622,"atio":42623,"etc":42624,"Ġrestores":42625,"ĠProtector":42626,"Develop":42627,"ĠMew":42628,"trop":42629,"ĠSlayer":42630,"Ti":42631,"ĠNotwithstanding":42632,"Match":42633,"LIST":42634,"IDES":42635,"ĠThick":42636,"Ġdisks":42637,"Kin":42638,"Ġghetto":42639,"ĠObjects":42640,"Ġprism":42641,"ĠNether":42642,"Ġvul":42643,"iky":42644,"]:":42645,"ĠDetail":42646,"Ġfucked":42647,"!?":42648,"anium":42649,"Ġlords":42650,"ilities":42651,"ĠEthnic":42652,"static":42653,"$$":42654,"evidence":42655,"Ġmainline":42656,"Ġpeasant":42657,"ĠEnhance":42658,"ĠForced":42659,"virt":42660,"Ġii":42661,"Ġsymm":42662,"Ġconverter":42663,"ularity":42664,"Ġrepent":42665,"num":42666,"ĠScrew":42667,"ĠFTA":42668,"Ġmarines":42669,"hetto":42670,"blow":42671,"Ġado":42672,"ĠTypical":42673,"Ġoverw":42674,"ĠBerm":42675,"keley":42676,"Song":42677,"hao":42678,"valid":42679,"EXT":42680,"ĠProvides":42681,"âĺħâĺħ":42682,"ĠOdin":42683,"Shot":42684,"Ġgamma":42685,"Princ":42686,"asonry":42687,"ĠAccuracy":42688,"Ġcriterion":42689,"Ġdescriptive":42690,"Gall":42691,"gray":42692,"ĠCalcul":42693,"Ġaxes":42694,"ĠCommunists":42695,"ĠRebellion":42696,"Success":42697,"tg":42698,"Ġâĺ":42699,"Ġmultiplier":42700,"ravity":42701,"Thus":42702,"URL":42703,"Ġalternatively":42704,"duction":42705,"Ġsarcast":42706,"ĠCarth":42707,"ĠUSL":42708,"ĠInvisible":42709,"larg":42710,"pleted":42711,"pathic":42712,"Additionally":42713,"ĠCao":42714,"Ġlatent":42715,"ĠSurge":42716,"MEN":42717,"communications":42718,"ĠArray":42719,"Pink":42720,"commit":42721,"isodes":42722,"earcher":42723,"Ukraine":42724,"ĠAnthrop":42725,"incial":42726,"Ġquotations":42727,"adena":42728,"Ġwhining":42729,"Ġretri":42730,"ĠAssass":42731,"elligent":42732,"ĠPERSON":42733,"Py":42734,"Send":42735,"ĠâĪĴ":42736,"DON":42737,"Ġwatt":42738,"description":42739,"POS":42740,"Ġrepro":42741,"destroy":42742,"icidal":42743,"Ġmidrange":42744,"Ġinfographic":42745,"interesting":42746,"category":42747,"Flash":42748,"ĠInvasion":42749,"ĠExodus":42750,"restricted":42751,"Ġinference":42752,"dding":42753,"mingham":42754,"Ġcircumst":42755,"Wi":42756,"ĠHast":42757,"Ġsubjug":42758,"Ġwhispering":42759,"-.":42760,"Ġadren":42761,"ĠPattern":42762,"BOX":42763,"ĠEnhancement":42764,"Exc":42765,"ĠBucket":42766,"ĠGUN":42767,"deen":42768,"ĠHomo":42769,"1985":42770,"Ġclo":42771,"Ġsnippet":42772,"Ġ1896":42773,"TPP":42774,"Seg":42775,"success":42776,";\"":42777,"ĠMUCH":42778,"Author":42779,"Ġreplication":42780,"Ġhallucinations":42781,"Inv":42782,"ĠAware":42783,"ĠViper":42784,"kai":42785,"frames":42786,"ĠTHANK":42787,"ĠSHA":42788,"wordpress":42789,"Ġbc":42790,"CIA":42791,"arrison":42792,"Ġalloc":42793,"ĠAlz":42794,"letcher":42795,"ĠDaredevil":42796,"iversary":42797,"Ġmanuals":42798,"Catholic":42799,"feat":42800,"Ġkinetic":42801,"JB":42802,"yeah":42803,"ĠLDS":42804,"Ġppm":42805,"ĠADC":42806,"pring":42807,"cence":42808,"Ġclasp":42809,"Ġsetups":42810,"Ġdeity":42811,"ĠIndra":42812,"ĠWander":42813,"Ġantib":42814,"Otherwise":42815,"ombie":42816,"Bitcoin":42817,"ipop":42818,"expression":42819,"Animal":42820,"ĠResurrection":42821,"ĠMoral":42822,"ĠSDK":42823,"Ġwretched":42824,"ogenous":42825,"species":42826,"Ġchuckled":42827,"Thor":42828,"Ġ428":42829,"avery":42830,"ĠPry":42831,"asures":42832,"ĠErn":42833,"apor":42834,"Ġinnumerable":42835,"Ġbaptized":42836,"ĠExplosive":42837,"Ġelves":42838,"idges":42839,"ĠParadox":42840,"Close":42841,"aldehyde":42842,"construct":42843,"Ġvirginity":42844,"Poll":42845,"assin":42846,"Doctors":42847,"Pos":42848,"NECT":42849,"Moreover":42850,"Commercial":42851,"cknowled":42852,"1988":42853,"Ġquotation":42854,"marriage":42855,"ĠBapt":42856,"ĠSina":42857,"ĠGloves":42858,"gian":42859,"Ġconfounding":42860,"URRENT":42861,"Dean":42862,"Brew":42863,"thur":42864,"pty":42865,"immune":42866,"ĠSQU":42867,"Ġcounterfe":42868,"rider":42869,"Ġinferred":42870,"ĠDimension":42871,"ĠToad":42872,"Ġafterlife":42873,"ĠHERO":42874,"Indiana":42875,"seek":42876,"Ġdistinguishes":42877,"ĠQur":42878,"ĠMethods":42879,"combat":42880,"Ġcateg":42881,"ĠStruggle":42882,"teness":42883,"liquid":42884,"Ġblinking":42885,"ĠCONTIN":42886,"iae":42887,"Ġaerobic":42888,"Ġstrugg":42889,"Ġegalitarian":42890,"hello":42891,"orrect":42892,"ĠAbandon":42893,"Ġferment":42894,"Area":42895,"idem":42896,"ĠMania":42897,"Ġjs":42898,"ĠBALL":42899,"Running":42900,"Ġregenerate":42901,"iquid":42902,"Uh":42903,"Crystal":42904,"ĠItal":42905,"ĠHeavenly":42906,"в":42907,"CRIPTION":42908,"Consumer":42909,"dust":42910,"amiliar":42911,"ĠRhino":42912,"Rocket":42913,"Ġreversible":42914,"kok":42915,"ĠSketch":42916,"Ġshotguns":42917,"apses":42918,"Ġdetach":42919,"ĠCells":42920,"artist":42921,"rily":42922,"ĠRestore":42923,"Scar":42924,"Ġevid":42925,"Ġspaced":42926,"ĠContributions":42927,"Ġ418":42928,"ĠMystic":42929,"Ġobfusc":42930,"Russ":42931,"wings":42932,"Pear":42933,"osite":42934,"Nusra":42935,"urations":42936,"ovie":42937,"icago":42938,"ĠConcepts":42939,"Ġstimuli":42940,"Ġaroused":42941,"aughty":42942,"Talking":42943,"ĠPrompt":42944,"Across":42945,"ĠPlaint":42946,"Ġbranching":42947,"Thankfully":42948,"Original":42949,"Esc":42950,"ĠTechnician":42951,"fleet":42952,"usher":42953,"Mos":42954,"livion":42955,"oenix":42956,"Ġhr":42957,"ibble":42958,"Ġindent":42959,"ĠFinished":42960,"Department":42961,"ĠINFO":42962,"Movie":42963,"++":42964,"THING":42965,"Ġtimers":42966,"rocket":42967,"Natural":42968,"lime":42969,"Ġangular":42970,"osure":42971,"Ġdynamically":42972,"Ġpacif":42973,"ĠProcessor":42974,"Ġdisgu":42975,"Ġmoderators":42976,"Ġceases":42977,"Ġinertia":42978,"Ġpaperback":42979,"yton":42980,"ĠHuma":42981,"Ġprohibitions":42982,"Ġgestation":42983,"Bomb":42984,"termin":42985,"Ġcaric":42986,"oS":42987,"tc":42988,"Cop":42989,"raved":42990,"Ġeighty":42991,"ĠEnable":42992,"Ġimplementations":42993,"Ġconquering":42994,"ĠFinder":42995,"window":42996,"Gra":42997,"Ġfonts":42998,"laughter":42999,"Ġcolonization":43000,"ĠDOD":43001,")!":43002,",)":43003,"ĠGeral":43004,"ĠSpoiler":43005,"ĠComponent":43006,"Ġgist":43007,"hiro":43008,"Ġlicens":43009,"nesses":43010,"Ġkarma":43011,"?\".":43012,"OPA":43013,"Ġsquats":43014,"ĠRAND":43015,"Ġorally":43016,"document":43017,"olars":43018,"Ġpresumptive":43019,"Pers":43020,"OAD":43021,"ufficient":43022,"LESS":43023,"Hidden":43024,"ORK":43025,"xs":43026,"Ġmathematician":43027,"ĠGloss":43028,"Ġannihilation":43029,"Ġmanifold":43030,"Ry":43031,"Thunder":43032,"Yan":43033,"Activ":43034,"Ġworldly":43035,"TED":43036,"marg":43037,"ĠStun":43038,"ryce":43039,"ĠVG":43040,"Isn":43041,"ĠCyn":43042,"Expl":43043,"IRED":43044,"Ġcompr":43045,"Ġindisc":43046,"Boss":43047,"()":43048,"berman":43049,"ĠBegins":43050,"ujah":43051,"ornia":43052,"hetical":43053,"Ġcivilizations":43054,"Ġfundamentalist":43055,"strap":43056,"Forward":43057,"ettlement":43058,"Ġprophetic":43059,"glers":43060,"bending":43061,"Terry":43062,"Ġidi":43063,"Ġtrunc":43064,"Ġcreeps":43065,"intel":43066,"switch":43067,"ailand":43068,"Ġinstaller":43069,"GOP":43070,"Ġ499":43071,"ĠParallel":43072,"Cru":43073,"Ġ\"@":43074,"Ġ396":43075,"ĠUnlock":43076,"Raven":43077,"Corn":43078,"Ġcircadian":43079,"Ġ********************************":43080,"iliate":43081,"ĠFunctional":43082,"Ġpronouns":43083,"ĠSatoshi":43084,"Ġstim":43085,"Gay":43086,"Iss":43087,"ĠThief":43088,"atellite":43089,"Ġshards":43090,"Ġphil":43091,"protein":43092,"Ġalters":43093,"Poor":43094,"Typically":43095,"KER":43096,"ociate":43097,"Ġemits":43098,"recy":43099,"Ġmechanically":43100,"Ġ...\"":43101,"nature":43102,"sys":43103,"ysc":43104,"Ġwavelengths":43105,"pattern":43106,"insured":43107,"Ġparasitic":43108,"ĠLCS":43109,"ĠPACs":43110,"Ġheals":43111,"ĠCCP":43112,"ĠHacker":43113,"Ġpsy":43114,"ĠBeans":43115,"Ġdemonic":43116,"JV":43117,"Ġatmosp":43118,"equality":43119,"Ġairst":43120,"Ġincarn":43121,"ynthesis":43122,"Ġequations":43123,"tch":43124,"ĠHUGE":43125,"ĠChanged":43126,"itatively":43127,"Job":43128,"gaming":43129,"Ġ1899":43130,"ĠMorsi":43131,"Ġconjecture":43132,"riad":43133,"Ġprimates":43134,"ĠArtemis":43135,"ĠThro":43136,"Ġbiologically":43137,"Church":43138,"topia":43139,"recomm":43140,"Ġgradient":43141,"Ġful":43142,"Ġbastard":43143,"CHO":43144,"IUM":43145,"sleep":43146,"Construction":43147,"raints":43148,"vable":43149,"ionage":43150,"Ġcomrade":43151,"Ġpopulate":43152,"Ġnerds":43153,"ĠXie":43154,"result":43155,"ĠImper":43156,"Ġpamphlet":43157,"Ku":43158,"Ġbackend":43159,"ificent":43160,"etus":43161,"Ġdisson":43162,"config":43163,"Ġsuc":43164,"Ġwavelength":43165,"external":43166,"owder":43167,"Ġpredis":43168,"eenth":43169,"Det":43170,"andem":43171,"Ġ1865":43172,"ĠDefeat":43173,"Individual":43174,"Ġretrieving":43175,"stories":43176,"Ġdesolate":43177,"Ġlett":43178,"Ġunpublished":43179,"Ġpassively":43180,"Ġdissertation":43181,"raits":43182,"abee":43183,"ĠResist":43184,"Robin":43185,"Ġbenevolent":43186,"blast":43187,"Offic":43188,"snap":43189,"vernment":43190,"Ġextermin":43191,"wt":43192,"bitious":43193,"hibited":43194,"Insp":43195,"posted":43196,"ĠYugoslav":43197,"rational":43198,"adapt":43199,"ĠAtari":43200,"Ġplugin":43201,"oglobin":43202,"efeated":43203,"ĠHRC":43204,"cko":43205,"ilver":43206,"ĠDestruction":43207,"gewater":43208,"ĠRadiation":43209,"Ġimprison":43210,"origin":43211,"antine":43212,"ĠPublication":43213,"Ġhealer":43214,"istered":43215,"ĠTHEIR":43216,"hazard":43217,"Contract":43218,"Ġmediated":43219,"Ġindexed":43220,"ĠSYSTEM":43221,"Labor":43222,"Blade":43223,"Ġyog":43224,"Champ":43225,"Gordon":43226,"IAS":43227,"Ġnineteenth":43228,"animous":43229,"begin":43230,"ĠHolo":43231,"Planet":43232,"udding":43233,"default":43234,"ĠOMG":43235,"Ġwond":43236,"wm":43237,"pend":43238,"Extreme":43239,"Ġinterstellar":43240,"ASED":43241,"ĠBerks":43242,"Ġprimal":43243,"Foot":43244,"Ġinadvert":43245,"amboo":43246,"ĠLeica":43247,"Events":43248,"ĠPigs":43249,"RAFT":43250,"ï":43251,"ĠGentleman":43252,"Multiple":43253,"ĠPsychiatric":43254,"Ġdespise":43255,"ĠZionism":43256,"ĠSSL":43257,"shit":43258,"Ġthreaded":43259,"Ġartifact":43260,"Ġmitochondrial":43261,"ĠLayer":43262,"inus":43263,"podcast":43264,"Ġawaken":43265,"Management":43266,"Ġdelusions":43267,"grey":43268,"Ġpseud":43269,"agonal":43270,"ĠHirosh":43271,"Georg":43272,"Dragon":43273,"Stack":43274,"ohm":43275,"Ġvener":43276,"Row":43277,"Ġsandbox":43278,"Ġblinding":43279,"razen":43280,"Ġ389":43281,"Ġcrappy":43282,"Ġlith":43283,"antha":43284,"Ġplurality":43285,"ĠDAC":43286,"inently":43287,"intage":43288,"Ġ1902":43289,"ĠDepend":43290,"Ġelapsed":43291,"==":43292,"ĠGenie":43293,"Bush":43294,"ĠPlanetary":43295,"Bah":43296,"ĠKira":43297,"emn":43298,"Month":43299,"allic":43300,"coded":43301,"VOL":43302,"Ġ[...]":43303,"ĠRampage":43304,"Ġ(*":43305,"Production":43306,"licts":43307,"Ġinoc":43308,"Cour":43309,"Ġspurious":43310,"Ġultras":43311,"ggles":43312,"Ġdelusion":43313,"ĠRacer":43314,"ĠPrism":43315,"FH":43316,"uppet":43317,"Ġcultured":43318,"Ġ436":43319,"aneously":43320,"اÙĦ":43321,"ĠMissions":43322,"monton":43323,"criptions":43324,"ificate":43325,"Cause":43326,"Ġ1898":43327,"ocaust":43328,"Ġbri":43329,"ĠShoals":43330,"ommod":43331,"alted":43332,"ogenesis":43333,"warn":43334,"illus":43335,"vv":43336,"Ġcontam":43337,"ĠLesbian":43338,"Ġcavalry":43339,"ĠPresence":43340,"rehens":43341,"tool":43342,"accessible":43343,"Ġ(~":43344,"ĠLicensed":43345,"Ġprophets":43346,"Ġboulder":43347,"mean":43348,"akura":43349,"Ġunres":43350,"ĠCinnamon":43351,"Leaks":43352,"........................":43353,"Contact":43354,"Ġassassins":43355,"ĠGreenwald":43356,"dk":43357,"amazon":43358,"Ġagreeable":43359,"ernandez":43360,"Easy":43361,"PLA":43362,"ĠBigfoot":43363,"Ġconvent":43364,"Ġempires":43365,"Ġ387":43366,"Ġgrasped":43367,"Ġruby":43368,"Ġreconc":43369,"Warning":43370,"atem":43371,"Ġretrieval":43372,"ĠFDR":43373,"ĠReaper":43374,"orem":43375,"ĠLuo":43376,"hig":43377,"ĠArmor":43378,"tp":43379,"ĠInterpret":43380,"Conservative":43381,"ĠSodium":43382,"Ġbead":43383,"Ġpropagate":43384,"claw":43385,"href":43386,"ĠPaste":43387,"Ġomit":43388,"Boost":43389,"Diamond":43390,"goo":43391,"Ġanomal":43392,"ĠDISTRICT":43393,"Greek":43394,"warning":43395,"Ġdespised":43396,"Karl":43397,"AGES":43398,"Ġserotonin":43399,"ESSION":43400,"_______":43401,"ĠCollider":43402,"auldron":43403,"Ġsquee":43404,"Control":43405,"ffield":43406,"cycles":43407,"Legal":43408,"xa":43409,"minimum":43410,"ĠGeneric":43411,"Circ":43412,"·":43413,"Behind":43414,"guide":43415,"Ground":43416,"roying":43417,"ĠGrail":43418,"Ġthee":43419,"Ġ9000":43420,"Batman":43421,"Brother":43422,"Ġnons":43423,"RW":43424,"saf":43425,"ĠCroat":43426,"tainment":43427,"sci":43428,"Ye":43429,"Range":43430,"Ey":43431,"perature":43432,"ĠDracula":43433,"oreal":43434,"Fighting":43435,"Ġreleg":43436,"Ġcoupling":43437,"Tracker":43438,"tyard":43439,"Mut":43440,"Military":43441,"lamm":43442,"ittens":43443,"ĠCRC":43444,"ĠXiang":43445,"Ġorthodoxy":43446,"ĠGoth":43447,"Ġalgorith":43448,"ĠAthen":43449,"Ġtyrann":43450,"ĠTorrent":43451,"IDs":43452,"ĠGENERAL":43453,"ĠASUS":43454,"rastructure":43455,"Faith":43456,"models":43457,"rentices":43458,"ĠCurse":43459,"Ġcalibr":43460,"attled":43461,"monary":43462,"Ġpenet":43463,"aclysm":43464,"album":43465,"Ġremnant":43466,"Ġfung":43467,"itiveness":43468,"thodox":43469,"Ġunlocks":43470,"Ġprobabilities":43471,"Ġster":43472,"Ġscrim":43473,"Ġanalytic":43474,"Urban":43475,"âĢĶâĢĶâĢĶâĢĶ":43476,"Craft":43477,"Ġbrut":43478,"1986":43479,"Section":43480,"raged":43481,"arij":43482,"Hero":43483,"ĠHebdo":43484,"ĠEmpress":43485,"Ġvivo":43486,"ĠPublications":43487,"Ġcannabinoids":43488,"arrett":43489,"Ġbounded":43490,"Ġquests":43491,"Ġomin":43492,"ĠRuler":43493,"ĠYue":43494,"ridges":43495,"Ġpeasants":43496,"ĠAlloy":43497,"Desk":43498,"ULAR":43499,"Ġthor":43500,"ĠOvers":43501,"ĠTome":43502,"mk":43503,"Ġ1050":43504,"Ġshroud":43505,"Ġdistribut":43506,"weapons":43507,"ĠAuthorization":43508,"ĠPoke":43509,"ĠAlternate":43510,"scan":43511,"artisan":43512,"ĠGems":43513,"ĠForums":43514,"atonin":43515,"viron":43516,"Rog":43517,"duct":43518,"Ġtabletop":43519,"crow":43520,"/)":43521,"ĠStainless":43522,"ottest":43523,"Ġreborn":43524,"anchez":43525,"cium":43526,"ĠNicarag":43527,"elfare":43528,"Ġupd":43529,"ritic":43530,"bm":43531,"Ġ608":43532,"ĠSlightly":43533,"ĠDrops":43534,"ISO":43535,"ĠiT":43536,"xiety":43537,"ĠGawker":43538,"omination":43539,"ĠReached":43540,"Student":43541,"Drop":43542,"MET":43543,"ĠKubrick":43544,"1950":43545,"ĠTuls":43546,"Ġcomputed":43547,"depending":43548,"ĠCosmetic":43549,"udget":43550,"Lex":43551,"icut":43552,"ĠDepth":43553,"Ġ1893":43554,"ahah":43555,"Ġath":43556,"fights":43557,"thia":43558,"Ġoccult":43559,"Wheel":43560,"ĠSega":43561,"Ġtheolog":43562,"reement":43563,")--":43564,"Ġunus":43565,"ĠGamma":43566,"Looks":43567,"Ġellipt":43568,"Ġairflow":43569,"ĠHimself":43570,"Ġpagan":43571,"ĠRei":43572,"Ġpilgr":43573,"ĠSubmission":43574,"Region":43575,"Ġinsertion":43576,"Ġsket":43577,"Ġsatisfies":43578,"ĠPixie":43579,"Ġcontempl":43580,"abbit":43581,"ĠReplay":43582,"ĠGalile":43583,"ĠGodzilla":43584,"Ġarithmetic":43585,"iasm":43586,"1987":43587,"ĠFeminist":43588,"Liter":43589,"ĠDisable":43590,"ouble":43591,"essors":43592,"Ġfors":43593,"Ġensu":43594,"Putting":43595,"ĠMSM":43596,"Cond":43597,"emade":43598,"Ġindistinguishable":43599,"Magn":43600,"Ġms":43601,"MAL":43602,"ĠBF":43603,"dm":43604,"iltration":43605,"irection":43606,"ĠSpir":43607,"Gb":43608,"ĠIbn":43609,"Abs":43610,"imens":43611,"RNA":43612,"============":43613,"Ġ655":43614,"ĠConversion":43615,"imilation":43616,"igion":43617,"ĠSomew":43618,"mL":43619,"Border":43620,"Ë":43621,"Factor":43622,"Number":43623,"Ġejac":43624,"Cho":43625,"Ġrighteousness":43626,"ĠPATH":43627,"ĠElys":43628,"ouched":43629,"Ġmultic":43630,"Ġfaculties":43631,"ĠEarthquake":43632,"ĠReferences":43633,"ensitive":43634,"Ġimpat":43635,"Ġ................":43636,"buff":43637,"Ġ1895":43638,"colo":43639,"Vi":43640,"Ġubiqu":43641,"ĠChev":43642,"Fish":43643,"ĠBlueprint":43644,"CHQ":43645,"Ġlinem":43646,"ĠFlavor":43647,"Ġcrimson":43648,"ĠAbstract":43649,"arette":43650,"plete":43651,"ranean":43652,"Dash":43653,"Ġdimensional":43654,"Cub":43655,"ttle":43656,"ĠDSM":43657,"Ġinstantaneous":43658,"esy":43659,"Ġepoch":43660,"Brit":43661,"ĠÎ":43662,"ECD":43663,"Ġwarp":43664,"obyl":43665,"ubric":43666,"Ġutilitarian":43667,"Ġsummarizes":43668,"letal":43669,"Ord":43670,"opath":43671,"tained":43672,"ghai":43673,"Ġwhis":43674,"insert":43675,"Ġphon":43676,"rils":43677,"Ġearthly":43678,"ĠAlic":43679,"ĠPCIe":43680,"Ġfurthermore":43681,"ocard":43682,"Ġuter":43683,"ĠAdmin":43684,"ographics":43685,"ĠConstantin":43686,"gravity":43687,"iPhone":43688,"Ġwasteland":43689,"Ġfps":43690,"Tip":43691,"Ġmurm":43692,"paces":43693,"ĠSamurai":43694,"ĠFOIA":43695,"ĠRadiant":43696,"ĠUnreal":43697,"Ġmicrow":43698,"usterity":43699,"zyme":43700,"itbart":43701,"metadata":43702,"Dat":43703,"ĠMoons":43704,"ĠProtestants":43705,"ungle":43706,"Ġvideog":43707,"pid":43708,"Ġdisple":43709,"aucus":43710,"Ġcoils":43711,"ĠDwar":43712,"fixed":43713,"Alice":43714,"Ġgarrison":43715,"ĠVelocity":43716,"ĠJehovah":43717,"Ġfascists":43718,"ĠCHO":43719,"jl":43720,"Ġmetaphors":43721,"ĠSiege":43722,"scientific":43723,"Ä«":43724,"Slow":43725,"hex":43726,"ĠBlaz":43727,"mediated":43728,"esthesia":43729,"ĠAvg":43730,"Ġbelie":43731,"Carter":43732,"Ġexposition":43733,"azeera":43734,"dial":43735,"Ġbask":43736,"Scale":43737,"Ġdisob":43738,"Ġgore":43739,"Ġhypocr":43740,"Ġphantom":43741,"ĠSynd":43742,"BLIC":43743,"pter":43744,"ĠScorpion":43745,"eor":43746,"ĠRecover":43747,"Ġsummoning":43748,"Ġorb":43749,"jump":43750,"Ġ768":43751,"ĠEnix":43752,"Spons":43753,",...":43754,"Wide":43755,"Ġparse":43756,"Ġdebtor":43757,"Ġpathological":43758,"Ġserpent":43759,"ĠFranç":43760,"reetings":43761,"Ġdeletion":43762,"Ġvolunt":43763,"ĠNotification":43764,"liga":43765,"Disk":43766,"Account":43767,"1979":43768,"Ġsymmetry":43769,"ĠBearing":43770,"ĠABV":43771,"ĠORDER":43772,"rpm":43773,"ĠFuck":43774,"?!\"":43775,"mask":43776,"Grade":43777,"neath":43778,"ocom":43779,"Detect":43780,"ryption":43781,"ĠAura":43782,"Ġinert":43783,"PLAY":43784,"gres":43785,"INTON":43786,"Deal":43787,"fficient":43788,"ĠVoid":43789,"gement":43790,"Ġscorp":43791,"Ġreincarn":43792,"ĠVapor":43793,"Ġ1840":43794,"Yellow":43795,"......":43796,"Ġparameter":43797,"ĠDISTR":43798,"ĠForgotten":43799,"Eat":43800,"izational":43801,"Witness":43802,"ĠDupl":43803,"Ġdogma":43804,"Ġzipper":43805,"ĠZeus":43806,"mage":43807,"ormal":43808,"Ġ\".":43809,"Ġecc":43810,"ĠSlot":43811,"ĠRegist":43812,"Others":43813,"VID":43814,"Windows":43815,"Ġshitty":43816,"ĠLethal":43817,"Monster":43818,"ĠExpression":43819,"tx":43820,"ythm":43821,"Were":43822,"ivalry":43823,"atcher":43824,"ĠFormat":43825,"ĠPlasma":43826,"Phys":43827,"laugh":43828,"Fu":43829,"java":43830,"roma":43831,"ĠIncreases":43832,"Ġlicensee":43833,"Ġmystic":43834,"Ġproto":43835,"ĠLoki":43836,"forcing":43837,"hots":43838,"Ġ->":43839,"Outside":43840,"ĠEndless":43841,"Ġachie":43842,"ĠTurtles":43843,"Ġconvin":43844,"JUST":43845,"Ġimmobil":43846,"ĠCauses":43847,"Ġclich":43848,"xes":43849,"ffiti":43850,"Ġhypot":43851,"Bat":43852,"Ġbigot":43853,"Personal":43854,"ĠPharmac":43855,"Lot":43856,"VERT":43857,"Ġbapt":43858,"idelines":43859,"Ġprox":43860,"MAP":43861,"Spirit":43862,"ĠSlug":43863,"Ġebook":43864,"eches":43865,"ĠAndromeda":43866,"Ġceremon":43867,"1975":43868,"PRE":43869,"Ġasshole":43870,"linear":43871,"Nevertheless":43872,"Ġwillpower":43873,"azel":43874,"Fif":43875,"andise":43876,"Ġextravag":43877,"ĠBuffy":43878,"Ġcorrelations":43879,"ptr":43880,"Progress":43881,"shape":43882,"ĠSymbol":43883,"arag":43884,"ĠContext":43885,"ucer":43886,"1983":43887,"ĠMyster":43888,"Pain":43889,"Login":43890,"mbol":43891,"codes":43892,"RANT":43893,"Ġoverse":43894,"opot":43895,"STEM":43896,"enser":43897,"ĠCosmic":43898,"Spl":43899,"ritional":43900,"ĠPharaoh":43901,"ĠRemix":43902,"xon":43903,"ĠXII":43904,"Ġunman":43905,"Ġimmedi":43906,"Ġmonog":43907,"ĠLX":43908,"Ġabstraction":43909,"ocolate":43910,"ĠDonkey":43911,"Ġ!!":43912,"ĠLIA":43913,"shed":43914,"rules":43915,"Ġcalc":43916,"ĠAutob":43917,"anmar":43918,"eworks":43919,"notations":43920,"Ġtenancy":43921,"ĠPetraeus":43922,"dp":43923,"amphetamine":43924,"ĠCortex":43925,"rw":43926,"Ġprojectile":43927,"Ġintrinsically":43928,"Route":43929,"Ġnegoti":43930,"anuts":43931,"Analysis":43932,"redits":43933,"ĠGG":43934,"thread":43935,"ĠChosen":43936,"Years":43937,"otyp":43938,"ĠNCT":43939,"udic":43940,"ochemical":43941,"Neigh":43942,"Ġfishes":43943,"ĠFloat":43944,"Print":43945,"okia":43946,"Ġbarb":43947,"quote":43948,"Lew":43949,"Ġannoun":43950,"istors":43951,"Reading":43952,"ACTION":43953,"Ġintakes":43954,"ĠBeet":43955,"matter":43956,"Swe":43957,"Ther":43958,"Ġtyrant":43959,"ĠPsycho":43960,"ĠDestroy":43961,"Ġesoteric":43962,"Ġbiom":43963,"idious":43964,"Merc":43965,"hran":43966,"ĠBaal":43967,"seconds":43968,"Ġsuperhuman":43969,"ancel":43970,"Ġworshipped":43971,"Ġwebs":43972,"Ġviolet":43973,"ĠMetallic":43974,"eday":43975,"ordering":43976,"Nut":43977,"Ġconstructs":43978,"olescent":43979,"Unit":43980,"otypes":43981,"Ġembryonic":43982,"perm":43983,"Nature":43984,"ĠDecre":43985,"levant":43986,"Ġss":43987,"+(":43988,"ĠDoctrine":43989,"puters":43990,"Ġsaline":43991,"orsche":43992,"1111":43993,"values":43994,"Ġutopian":43995,"ĠBooster":43996,"Technical":43997,"ì":43998,"ĠLIMITED":43999,"nir":44000,"Ġclones":44001,"Performance":44002,"aple":44003,"Ġshudder":44004,"Ġcontempor":44005,"lator":44006,"ĠOops":44007,"Ġammon":44008,"Ġdavid":44009,"Ġbom":44010,"bish":44011,"Ġdetectable":44012,"Ġmultiplying":44013,"Ġreddit":44014,"Prim":44015,"Ġmedial":44016,"Ġsubstrate":44017,"ĠSanskrit":44018,"Spect":44019,"ĠMagical":44020,"Ġarcane":44021,"align":44022,"Ġ1861":44023,"Ġneocons":44024,"Ì":44025,"ĠBounty":44026,"ĠContinent":44027,"Ġhurd":44028,"alions":44029,"Ġgeneralized":44030,"ĠInsect":44031,"Ġsimul":44032,"actual":44033,"advert":44034,"ukong":44035,"Resp":44036,"ĠWarcraft":44037,"Hunter":44038,"hyper":44039,"ĠBreach":44040,"ught":44041,"Ġcomputation":44042,"react":44043,"Feel":44044,"ĠCheong":44045,"Ġslut":44046,"Ġgalactic":44047,"Ġtaunt":44048,"Enjoy":44049,"Ġreprinted":44050,"Word":44051,"ĠHandbook":44052,"amins":44053,"exit":44054,"Wo":44055,"Ġadherents":44056,"Counter":44057,"ĠNode":44058,"ĠTwisted":44059,"Ġgrinned":44060,"universal":44061,"ĠAmon":44062,"Ġaster":44063,"ĠEquip":44064,"!\".":44065,"Ġanalogous":44066,"rients":44067,"alky":44068,"ĠQian":44069,"Ġspont":44070,"docs":44071,"Ġcontemplation":44072,"Ġrevolutionaries":44073,"Ġpreset":44074,"ĠAmendments":44075,"Ġexecutes":44076,"ĠDuration":44077,"Ġcompulsion":44078,"Ġstagger":44079,"ynamic":44080,"blem":44081,"];":44082,"Higher":44083,"Balt":44084,"heast":44085,"Ġcorp":44086,"awei":44087,"Motion":44088,"Mis":44089,"Ġadventurer":44090,"eger":44091,"Ġarsen":44092,"ĠVoltage":44093,"ĠEVENTS":44094,"Salt":44095,"issance":44096,"DK":44097,"Ship":44098,"Ġunwitting":44099,"Ton":44100,"ĠPROGRAM":44101,"Ġtentacles":44102,"erness":44103,"thirst":44104,"Fig":44105,"fty":44106,"ĠTolkien":44107,"Sleep":44108,"ĠExplain":44109,"Pub":44110,"ĠBounce":44111,"ĠDemo":44112,"Ġ1897":44113,"ĠSPI":44114,"intern":44115,"********":44116,"ĠKills":44117,"ĠZombies":44118,"Single":44119,"ratom":44120,"ĠClaw":44121,"hid":44122,"asel":44123,"Shock":44124,"erential":44125,"Ġupgr":44126,"holy":44127,"Ġ\\":44128,"aghetti":44129,"Ġthence":44130,"genic":44131,"papers":44132,"1982":44133,"ravel":44134,"ĠUNIVERS":44135,"Charge":44136,"ĠDelay":44137,"ibrary":44138,"ĠHDD":44139,"olson":44140,"Ġenchanted":44141,"Wr":44142,"graph":44143,"Ġcorro":44144,"ept":44145,"etsu":44146,"ĠQin":44147,"Û":44148,"Ġantidepressant":44149,"ĠCerberus":44150,"Ġappe":44151,"ĠDEFENSE":44152,"Ġdysph":44153,"split":44154,"zilla":44155,"attr":44156,"Clar":44157,"Äĵ":44158,"hov":44159,"IRC":44160,"hibition":44161,"'/":44162,"ĠURLs":44163,"Draft":44164,"Prep":44165,"ĠLanguages":44166,"ĠTravels":44167,"ceiver":44168,"aturally":44169,"pair":44170,"ĠALWAYS":44171,"aaaa":44172,"ĠTenth":44173,"ĠNAD":44174,"Serv":44175,"ĠUID":44176,"cens":44177,"ĠLearned":44178,"Ġtraject":44179,"Ġmoaning":44180,"ĠNare":44181,"Ġingen":44182,"Ġsurn":44183,"Ġfloppy":44184,"breeding":44185,"uph":44186,"rossover":44187,"Understanding":44188,"Glass":44189,"Ġruntime":44190,"gp":44191,"Ġâľĵ":44192,"Ġcyt":44193,"bley":44194,"agall":44195,"Ġunworthy":44196,"otine":44197,"Ġchromosome":44198,"utters":44199,"Ġµ":44200,"Ġexpans":44201,"Ġdement":44202,"Ġinsurrection":44203,"Ġsurviv":44204,"genre":44205,"ospital":44206,"ĠPlato":44207,"ĠTrigger":44208,"selection":44209,"ilege":44210,"Ġsegreg":44211,"itizens":44212,"ĠRAID":44213,"Pure":44214,"hetti":44215,"ĠFailed":44216,"ĠCharacters":44217,"ĠCreep":44218,"akra":44219,"Ec":44220,"ĠAristotle":44221,"Lim":44222,"error":44223,"yrus":44224,"umably":44225,">>":44226,"Ġtsun":44227,"knowledge":44228,"Cert":44229,"bable":44230,"hesion":44231,"ĠProcedures":44232,"Ġmarkup":44233,"ideo":44234,"Ġrhet":44235,"ĠChapters":44236,"ĠChecking":44237,"mega":44238,"Ġphotons":44239,"required":44240,"Unknown":44241,"ĠDrawn":44242,"Ġvari":44243,"EEK":44244,"Ġcompuls":44245,"Ġcloning":44246,"ccoli":44247,"Ġ1070":44248,"Ġkindred":44249,"Ġdiscl":44250,"ĠCind":44251,"Collect":44252,"Ġchromosomes":44253,"phant":44254,"ĠKafka":44255,"Ġeverlasting":44256,"Ġmercenary":44257,"ĠHmm":44258,"----":44259,"riber":44260,"Ġdoubtless":44261,"Ġsusceptibility":44262,"beta":44263,"notice":44264,"Ġcrochet":44265,"Ġrespir":44266,"Ġphilosophers":44267,"ĠExtras":44268,"Ġseparat":44269,"shown":44270,"iblings":44271,"Hispanic":44272,"copy":44273,"Tang":44274,"Knight":44275,"Ġpursu":44276,"ĠAnime":44277,"Ġlipid":44278,"ggies":44279,"levels":44280,"phalt":44281,"ĠCompleted":44282,"bral":44283,"Ġcerv":44284,"ĠAfric":44285,"ĠPhar":44286,"Color":44287,"ogene":44288,"ĠCompan":44289,"memory":44290,"Dust":44291,"ĠXIV":44292,"ĠConsole":44293,"').":44294,"Ġ1888":44295,"byn":44296,"Ġpolygamy":44297,"Auth":44298,"BUT":44299,"istine":44300,"Ġsacr":44301,"Ġabsor":44302,"ijah":44303,"ĠNeural":44304,"olester":44305,"ql":44306,"Already":44307,"Creating":44308,"ĠStarg":44309,"ĠPhilos":44310,"Consider":44311,"Ġrepositories":44312,"cludes":44313,"ĠBuffer":44314,"ĠPerspect":44315,"Ġcomput":44316,"Stew":44317,"iamond":44318,"ĠJudgment":44319,"OVA":44320,"angible":44321,"Ġoxid":44322,"Ġepigen":44323,"Ġsidel":44324,"ĠEag":44325,"devices":44326,"icone":44327,"1920":44328,"atism":44329,"beard":44330,"ĠGujar":44331,"ĠPlaystation":44332,"Ġglances":44333,"ĠCOMPLE":44334,"VERTIS":44335,"ukemia":44336,"Edit":44337,"Tickets":44338,"Square":44339,"ĠSerpent":44340,"Ġtransporter":44341,"MQ":44342,"ĠMongo":44343,"1967":44344,"ibaba":44345,"Ġtimet":44346,"sylvania":44347,"Latin":44348,"osaurs":44349,"Ġhumanoid":44350,"Ġcannabinoid":44351,"Ġdisciple":44352,"Psych":44353,"Ġimpro":44354,"Ġmc":44355,"Raid":44356,"Letter":44357,"ificant":44358,"ĠPortug":44359,"ĠFreem":44360,"Ġappell":44361,"ĠMushroom":44362,"Ġclans":44363,"Ġsinful":44364,"Ġingestion":44365,"ĠDirectory":44366,"abetic":44367,"Ġantigen":44368,"Ġimagin":44369,"mitter":44370,"!!!!!":44371,"ĠDPR":44372,"leness":44373,"\":\"\",\"":44374,"ĠAUTHOR":44375,"Ġgrunt":44376,"Ġflickering":44377,"Cath":44378,"asury":44379,"Ġnozzle":44380,"Secure":44381,"Stre":44382,"ĠBIT":44383,"Ġdeviations":44384,"Professor":44385,"bilt":44386,"ĠConscious":44387,"Ġinterrupts":44388,"ĠMormons":44389,"ĠCutter":44390,"Bed":44391,"ipient":44392,"ĠGhostbusters":44393,"Cart":44394,"endas":44395,"ĠExecution":44396,"ycle":44397,"Ġwedd":44398,"Sold":44399,"Ġvanquished":44400,"Regarding":44401,"Depending":44402,"']":44403,"atron":44404,"oidal":44405,"Cube":44406,"Studio":44407,":/":44408,"ĠExplosion":44409,"activate":44410,"pport":44411,"fuck":44412,"Whe":44413,"Ġsmir":44414,"Ġwidgets":44415,"urses":44416,"izard":44417,")*":44418,"icho":44419,"ĠVersus":44420,"ĠIntroduced":44421,"osaurus":44422,"1977":44423,"forum":44424,"Gray":44425,"Program":44426,"righteous":44427,"endum":44428,"ĠScare":44429,"Ġresists":44430,"*)":44431,"ĠCombo":44432,"Ġsockets":44433,"Ġaston":44434,"LAB":44435,"Ġmutated":44436,"eworld":44437,"DEF":44438,"Trend":44439,"âĢĶ-":44440,"Ġpropagation":44441,"Ġemancipation":44442,"collection":44443,"ĠDifferences":44444,"Tweet":44445,"Ġmajesty":44446,")...":44447,"sylv":44448,"Ġadapters":44449,"Ġmilliseconds":44450,"Jews":44451,"ĠPatreon":44452,"phasis":44453,"ĠHTTP":44454,"onnaissance":44455,"ENDED":44456,"ĠIntro":44457,"qs":44458,"Ġsuperflu":44459,"*.":44460,"Ġminions":44461,"ĠStupid":44462,"Ġspecialization":44463,"ĠPikachu":44464,"Ġappellant":44465,"Training":44466,"circle":44467,"Interest":44468,"Ġfallacy":44469,"ĠDinosaur":44470,"ĠTHEM":44471,"Ġdirectories":44472,"Ġmasturbation":44473,"ĠStain":44474,"1978":44475,"odied":44476,"Ġexqu":44477,"ĠRats":44478,"swick":44479,"Ġemptiness":44480,"ĠXeon":44481,"Ġthereto":44482,"ĠEngels":44483,"ĠSupplement":44484,"Chan":44485,"Ġundead":44486,"ĠNoct":44487,"erest":44488,"ĠQuery":44489,"ĠSOLD":44490,"thritis":44491,"ĠEncounter":44492,"Ġvectors":44493,"Econom":44494,"Rogue":44495,"Ġgelatin":44496,"Rot":44497,"Flickr":44498,"Ġcaching":44499,"Ġloader":44500,"ĠELE":44501,"Ġcamoufl":44502,"Commission":44503,"Ġ1886":44504,"Ġcombos":44505,"ĠAwakening":44506,"Ġfeudal":44507,"Ġasses":44508,"ASY":44509,"atalie":44510,"Ġpanties":44511,"ĠMono":44512,"selves":44513,"Download":44514,"Ġvampires":44515,"------":44516,"ishop":44517,"User":44518,"Ġimperialist":44519,"ĠGOODMAN":44520,"1973":44521,"Vel":44522,"Struct":44523,"ĠUFOs":44524,"drivers":44525,"ĠOptional":44526,"uably":44527,"ĠPrinciple":44528,"verett":44529,"taining":44530,"Ġ1889":44531,"ĠCommunism":44532,"auder":44533,"Keys":44534,"lore":44535,"ĠMedieval":44536,"Hyd":44537,"weapon":44538,"Register":44539,"ĠHighlander":44540,"ĠRFC":44541,"Demon":44542,"ardless":44543,"ĠOrche":44544,"Kick":44545,"pixel":44546,"address":44547,"OUP":44548,"Brain":44549,"ĠMorph":44550,"bash":44551,"ĠANG":44552,"ĠIdle":44553,"ĠLucifer":44554,"Ġcorrelates":44555,"Ġgazed":44556,"colm":44557,"ĠKard":44558,"Solar":44559,"ĠVariable":44560,"ĠPACK":44561,"Ġfuzz":44562,"Ġanonym":44563,"ĠECO":44564,"feature":44565,"ĠEsports":44566,"ĠAnthropology":44567,"cise":44568,"manac":44569,"ĠSupports":44570,"rists":44571,"Quant":44572,"istical":44573,"çļĦ":44574,"Ġdexterity":44575,"monster":44576,"ordial":44577,"Mob":44578,"DEC":44579,"ĠConj":44580,"entric":44581,"1981":44582,"ECTION":44583,"ietal":44584,"ĠUses":44585,"ĠArmageddon":44586,"ĠCapitalism":44587,"Ub":44588,"iazep":44589,"helps":44590,"ouls":44591,"grim":44592,"ĠEthiop":44593,"tesy":44594,"Ġclipboard":44595,"Ġchimpanzees":44596,"PLIC":44597,"Sexual":44598,"wallet":44599,"ĠRect":44600,"ocytes":44601,"ĠHels":44602,"lace":44603,"Damn":44604,"Ġblasp":44605,"ildo":44606,"ĠRober":44607,"APD":44608,"ĠWCS":44609,"ippery":44610,"ellectual":44611,"Ġ$(":44612,"Ġuniverses":44613,"Ġholster":44614,"Ġshading":44615,"Ġinflic":44616,"else":44617,"ĠShiny":44618,"ĠAVG":44619,"Lower":44620,"ĠMayhem":44621,"Originally":44622,"Crypt":44623,"SHARE":44624,"ĠBeir":44625,"!:":44626,"Ġrepentance":44627,"WHAT":44628,".......":44629,"Ġauditory":44630,"aaa":44631,"ĠLoot":44632,"ciples":44633,"Ġcontem":44634,"Ġphoton":44635,"æľ":44636,"omach":44637,"ĠWhedon":44638,"ĠValid":44639,"asonable":44640,"pha":44641,"assad":44642,"ĠPse":44643,"Heat":44644,"Ġplugins":44645,"Ġclenched":44646,"ĠAmeric":44647,"transform":44648,"ĠEnh":44649,"agnetic":44650,"usalem":44651,"sych":44652,"Wed":44653,"replace":44654,"ĠKinect":44655,"shield":44656,"Sax":44657,"ividually":44658,"Ġfunctionally":44659,"Ġ:)":44660,"typically":44661,"Opening":44662,"Fa":44663,"ĠSELECT":44664,"Ġsamurai":44665,"Ġhorde":44666,"entle":44667,"sth":44668,"Changes":44669,"Pin":44670,"ithing":44671,"illance":44672,"ĠEmblem":44673,"ĠMicha":44674,"crypt":44675,"ĠObjective":44676,"ophys":44677,"Ġavg":44678,"poon":44679,"Ġreadable":44680,"ĠRx":44681,"allel":44682,"Sit":44683,"gom":44684,"ureau":44685,"ĠDoodle":44686,"Ġdungeon":44687,"($":44688,"Nintendo":44689,"\"],\"":44690,"Notes":44691,"Grab":44692,"Prosecutors":44693,"Advanced":44694,"Ġ1862":44695,"ĠVeter":44696,"Ġjurisd":44697,"ĠLauncher":44698,"Catal":44699,"udder":44700,"Ġresidues":44701,"Ġregress":44702,"ĠConquer":44703,"osal":44704,"ĠDice":44705,"************":44706,"braska":44707,"ipolar":44708,"Ġathe":44709,"bringing":44710,"Suddenly":44711,"ĠIEEE":44712,"verbs":44713,"Ġdelet":44714,"ipeg":44715,"Previous":44716,"]\"":44717,"Ġsidebar":44718,"illac":44719,"Property":44720,"α":44721,"REP":44722,"Ġauthenticated":44723,"gypt":44724,"uilding":44725,"ĠGing":44726,"Ġwart":44727,"Birth":44728,"Ġobedient":44729,"ĠXuan":44730,"ĠTYPE":44731,"Ġinhibits":44732,"1972":44733,"humans":44734,"IENT":44735,"Ġyoutube":44736,"Shortly":44737,"ophen":44738,"ĠWinc":44739,"ĠWrit":44740,"AUD":44741,"ĠHobbit":44742,"emphasis":44743,"ĠWonders":44744,"Ġtwitch":44745,"ĠProphe":44746,"Berry":44747,"ĠGinny":44748,"ĠBurst":44749,"ĠGenerator":44750,"Ġepile":44751,"ĠBalanced":44752,"GPU":44753,"maps":44754,"Ġneurotrans":44755,"ĠIRC":44756,"Ġ\"$":44757,"Create":44758,"Particip":44759,"ĠMarxism":44760,"Ġthou":44761,"ĠMortal":44762,"Ġ�":44763,"Ġninja":44764,"inburgh":44765,"Ġappro":44766,"ĠPistol":44767,"Jar":44768,"Ġprophes":44769,"classes":44770,"Ġanarchist":44771,"Ġextant":44772,"message":44773,"itaire":44774,"Ġ1863":44775,"ĠProl":44776,"Ġpropell":44777,"Ġimpossibility":44778,"Ġpropos":44779,"itamin":44780,"Rating":44781,"olphin":44782,"Ġmitochond":44783,"versions":44784,"Liberal":44785,"ishy":44786,"Ġspherical":44787,"ĠSurvive":44788,"FREE":44789,"rawler":44790,"Metal":44791,"ĠStarship":44792,"Ġ=================================================================":44793,"ĠDharma":44794,"ĠSeller":44795,"Ġwrapper":44796,"Experience":44797,"Integ":44798,"Customer":44799,"hammad":44800,"Ġunanim":44801,"Jenn":44802,"Ġschizophren":44803,"agree":44804,"ĠEVENT":44805,"Shell":44806,"Ġfractions":44807,"1968":44808,"Ġextermination":44809,"ĠSniper":44810,"Ġpronoun":44811,"ĠHitman":44812,"xp":44813,"resource":44814,"WIND":44815,"Ġhierarchical":44816,"Ġted":44817,"Changing":44818,"Ġplaus":44819,"Transform":44820,"Ġbicy":44821,"imentary":44822,"Fuck":44823,"Mini":44824,"Ġoverc":44825,"ĠOptimus":44826,"outer":44827,"helial":44828,"akening":44829,"fx":44830,"Ġnig":44831,"Ġ+/-":44832,"ĠVICE":44833,"Ġnm":44834,"1976":44835,"ĠRitual":44836,"ĠTyrann":44837,"Ġscriptures":44838,"inical":44839,"ĠNull":44840,"ourgeois":44841,"dra":44842,"Ġpious":44843,"Ġneuron":44844,"Ġcolonists":44845,"ĠNebula":44846,"apply":44847,"Sah":44848,"Marx":44849,"Ġhypotheses":44850,"notation":44851,"acists":44852,"Math":44853,"Manager":44854,"Library":44855,"audi":44856,"Ġmp":44857,"ergic":44858,"Ġwizards":44859,"fw":44860,"DVD":44861,"ĠScala":44862,"Different":44863,"ampoo":44864,"ĠDread":44865,"abbage":44866,"Rus":44867,"ĠDumbledore":44868,"keleton":44869,"elsh":44870,"esian":44871,"ĠCorsair":44872,"Tier":44873,"ĠCelest":44874,"Ġnoun":44875,"Ġlucid":44876,"requisites":44877,"Ġgenus":44878,"Event":44879,"1974":44880,"ĠSatanic":44881,"iox":44882,"ĠHandle":44883,"ĠDestroyer":44884,"Ġinvocation":44885,"ĠXD":44886,"modified":44887,"Gam":44888,"ĠRPC":44889,"Ġsubsystem":44890,"Compared":44891,"odan":44892,"ĠPassive":44893,"ĠHelmet":44894,"nutrition":44895,"riction":44896,"HOW":44897,"Jess":44898,"Ġpiston":44899,"imately":44900,"Ġhypoc":44901,"ĠCelestial":44902,"MRI":44903,"Ġcompiler":44904,"ĠBadge":44905,"ĠRevelation":44906,"Ġintrig":44907,"Grad":44908,"ĠSPACE":44909,"Poly":44910,"ĠVul":44911,"Ġtrembling":44912,"Ġindepend":44913,"doctor":44914,"Certain":44915,"emet":44916,"Password":44917,"Ġgasped":44918,"Ġpronunciation":44919,"Fuel":44920,"ĠSPEC":44921,"assets":44922,"Extra":44923,"Ġformatting":44924,"Ġmods":44925,"\"!":44926,"akedown":44927,"Ġcircuitry":44928,"ĠTRUE":44929,"ĠVeil":44930,"Ġsighed":44931,"Charg":44932,"eals":44933,"Ġworkaround":44934,"Ġank":44935,"ĠScrolls":44936,"Ġdiffusion":44937,"Ġamps":44938,"ĠTempest":44939,"adata":44940,"Ġphenomen":44941,"Ġ???":44942,"Ġpopup":44943,"Ġinhibition":44944,"Ġaliases":44945,"erity":44946,"agraph":44947,"Jew":44948,"Ġbec":44949,"Classic":44950,"comment":44951,"usable":44952,"rodu":44953,"ĠEnlightenment":44954,"Ġinvis":44955,"Ġbiochemical":44956,"latest":44957,"ĠGMOs":44958,"ĠSocialism":44959,"Ġpollut":44960,"Ġeluc":44961,"Js":44962,"orthern":44963,"PDATED":44964,"alyses":44965,"Experts":44966,"Blog":44967,"ĠDemocr":44968,"etooth":44969,"pause":44970,"âĢ¢âĢ¢":44971,"ĠShinji":44972,"Ġdystop":44973,"Sources":44974,"ĠBrach":44975,"np":44976,"ĠXY":44977,"Ġneurot":44978,"assembly":44979,"Ġbourgeois":44980,"ĠReson":44981,"ĠIDE":44982,"Ġrecoil":44983,"raq":44984,"ĠAvenger":44985,"Paper":44986,"UTF":44987,"ĠWrest":44988,"ĠSimulation":44989,"elaide":44990,"ĠDMCA":44991,"utm":44992,"1963":44993,"Ġarcs":44994,"Ġmaximal":44995,"Ġcyl":44996,"Ġphilosoph":44997,"enium":44998,"Ġrelativity":44999,"ĠMacintosh":45000,"Ġpneum":45001,"LOC":45002,"Ġgoddamn":45003,"SHA":45004,"Ġlocalization":45005,"ĠPHI":45006,"Ġhierarch":45007,"Ġatheists":45008,"±":45009,"Luck":45010,"ĠJugg":45011,"options":45012,"alore":45013,"Edward":45014,"Monitor":45015,"Ġneoc":45016,"numbered":45017,"Arc":45018,"ĠCodes":45019,"ĠHallow":45020,"olitan":45021,"sections":45022,"ĠEzek":45023,"Ġamy":45024,"task":45025,"ĠCLS":45026,"ĠValkyrie":45027,"Ġcircumference":45028,"amac":45029,"ĠNotting":45030,"Ġproverb":45031,"Spec":45032,"Ġelemental":45033,"ĠBitcoins":45034,"Except":45035,"Release":45036,"ADVERTISEMENT":45037,"Complete":45038,"phrine":45039,"Ġspores":45040,"random":45041,"neum":45042,"trigger":45043,"ocide":45044,"Ġlongitudinal":45045,"isec":45046,"peat":45047,"Ġprecept":45048,"Wing":45049,"ĠâĹ":45050,"otropic":45051,"mouse":45052,"ĠWitcher":45053,"ĠAppearance":45054,"ROR":45055,"Ġ||":45056,"aird":45057,"Blu":45058,"Ġincomp":45059,"ĠFirefly":45060,"update":45061,"Loc":45062,"Ġnihil":45063,"hesive":45064,"Quality":45065,"youtu":45066,"Seriously":45067,"Ġannot":45068,"ĠCoins":45069,"Visit":45070,"lc":45071,"----------":45072,"Ġdiction":45073,"Ġafore":45074,"Ġimmortality":45075,"ĠForbidden":45076,"Allah":45077,"ĠPartial":45078,"ĠGears":45079,"Ġtrance":45080,"Hat":45081,"irez":45082,"ĠSATA":45083,"Ġelectrode":45084,"ĠLinear":45085,"rikes":45086,"Ġderiv":45087,"ĠXue":45088,"Fine":45089,"ĠIgnore":45090,"desc":45091,"DOM":45092,"Simple":45093,"orescence":45094,"Previously":45095,"Ġcircumcision":45096,"Sphere":45097,"Ġrenown":45098,"SET":45099,"ilight":45100,"ĠByzantine":45101,"EXP":45102,"Ġwhine":45103,"Missing":45104,"Lt":45105,"Guide":45106,"Ġhippocampus":45107,"Ġwip":45108,"yrights":45109,"Ġsubmer":45110,"Maker":45111,"Switch":45112,"Ġspectral":45113,"nect":45114,"Ãį":45115,"Ġreven":45116,"WER":45117,"Adding":45118,"ĠCONTROL":45119,"asper":45120,"0000000":45121,"ynt":45122,"annabin":45123,"ĠAliens":45124,"ĠPCR":45125,"asketball":45126,"ricia":45127,"ĠUnch":45128,"Tap":45129,"Ġpracticable":45130,"ĠUsage":45131,"Ġsoluble":45132,"Scroll":45133,"Random":45134,"Ġmoan":45135,"ĠPuppet":45136,"Dim":45137,"Attack":45138,"Ġspears":45139,"Ġrectangle":45140,"Ġamuse":45141,"ĠDoct":45142,"reon":45143,"ĠReset":45144,"vag":45145,"unin":45146,"ĠBris":45147,"ĠSwarm":45148,"Model":45149,"Standing":45150,"Ġdenotes":45151,"{":45152,"ĠLizard":45153,"nesty":45154,"Ġwor":45155,"Ġamplification":45156,"ĠInferno":45157,"Cover":45158,"SAM":45159,"respective":45160,"Shift":45161,"Ġlibertarians":45162,"Runner":45163,"ĠRevelations":45164,"Spr":45165,"ĠCrusader":45166,"Ġcaffe":45167,"Patch":45168,"stros":45169,"ĠImmortal":45170,"Ġinsofar":45171,"itance":45172,"ĠValhalla":45173,"Ġradial":45174,"Beast":45175,"sync":45176,"Ġ--------":45177,"ĠPathfinder":45178,"iless":45179,"operator":45180,"Choose":45181,"Ġdecode":45182,"Ġvou":45183,"ĠMutant":45184,"ĠCVE":45185,"Female":45186,"Ġoxidation":45187,"inational":45188,"dB":45189,"Scope":45190,"Wan":45191,"ĠBought":45192,"ĠDietary":45193,"rotein":45194,"Present":45195,"aukee":45196,"Ġtotem":45197,"Ġsatur":45198,"wagon":45199,"Builder":45200,"ĠBulg":45201,"Ġsects":45202,"Flo":45203,"ombat":45204,"ĠHermione":45205,"aughs":45206,"Ġhydra":45207,"paren":45208,"ë":45209,"Whereas":45210,"tsky":45211,"Ġchall":45212,"WORK":45213,"opian":45214,"rican":45215,"vati":45216,"ĠHTTPS":45217,"Ġwrink":45218,"Ġthrob":45219,"habi":45220,"Ġiodine":45221,"omorph":45222,"ĠScion":45223,"Hunt":45224,"Written":45225,"iosity":45226,"ĠBrowser":45227,"Ġsinners":45228,"culosis":45229,"Ġunconsciously":45230,"0100":45231,"Ġanarchists":45232,"Pull":45233,"FFER":45234,"Ġpandemonium":45235,"matically":45236,"Rush":45237,"Ġpurified":45238,"ĠCyan":45239,"ĠDifficulty":45240,"«":45241,"Aside":45242,"oggles":45243,"untu":45244,"iege":45245,"iberal":45246,"ĠCOUR":45247,"eteenth":45248,"weeney":45249,"biased":45250,"ĠDecay":45251,"quart":45252,"alysis":45253,"Ġstere":45254,"ellect":45255,"Ġkernels":45256,"juven":45257,"ĠJPEG":45258,"indal":45259,"topic":45260,"Ġidentifier":45261,"åı":45262,"Ġepid":45263,"1969":45264,"Ġpoisons":45265,"sym":45266,"mop":45267,"LOCK":45268,"axe":45269,"cohol":45270,"ctory":45271,"Ġadject":45272,"Skin":45273,"ĠFract":45274,"ĠSHAR":45275,"echo":45276,"thood":45277,"Ġencoding":45278,"Ġrelational":45279,"Len":45280,"Bone":45281,"agara":45282,"uggish":45283,"ĠTanks":45284,"Stats":45285,"lihood":45286,"Mult":45287,"Graph":45288,"ĠCannot":45289,"ĠSpac":45290,"handler":45291,"ĠShit":45292,"Ġmorp":45293,"controller":45294,"udeau":45295,"Screenshot":45296,"Development":45297,"Gear":45298,"Ġtong":45299,"ĠColossus":45300,"rylic":45301,"STRUCT":45302,"capitalist":45303,"Ġsupplementation":45304,"Parts":45305,"pb":45306,"oppy":45307,"pite":45308,"processor":45309,"Ġexplanatory":45310,"Environmental":45311,"Compl":45312,"Gaming":45313,"arently":45314,"Ġconcess":45315,"Ġathlet":45316,"forestation":45317,"orsi":45318,"igmat":45319,"Ġencoded":45320,"misc":45321,"Ġproofs":45322,"ĠRevision":45323,"Ġmathematic":45324,"Ġconstitu":45325,"fficiency":45326,"Ġlightsaber":45327,"gz":45328,"erate":45329,"ournals":45330,"Comment":45331,"Ġpercept":45332,".\"[":45333,"ĠTechniques":45334,"coins":45335,"Shape":45336,"venant":45337,"ĠPrinted":45338,"Native":45339,"ĠGors":45340,"pecting":45341,"ĠDuel":45342,"Ġadmins":45343,"Flor":45344,"ĠDeus":45345,"cham":45346,"ĠRails":45347,"ceptor":45348,"naire":45349,"ĠSquid":45350,"ĠWarranty":45351,"SPEC":45352,"ensis":45353,"FUN":45354,"stellar":45355,"Select":45356,"llular":45357,"arget":45358,"ĠUncharted":45359,"Details":45360,"rison":45361,"Ġsyntax":45362,"chanted":45363,"Ġ-----":45364,"Ġthats":45365,"Registration":45366,"ĠSaber":45367,"ethical":45368,"Ġcryptography":45369,"atown":45370,"Ġdependencies":45371,"nw":45372,"Ġvehement":45373,"Ġrationality":45374,"ĠThou":45375,"Ġ----":45376,"rador":45377,"Ġenh":45378,"ĠCrate":45379,"STATE":45380,"/(":45381,"Ġdelim":45382,"CEPT":45383,"monkey":45384,"pai":45385,"uracy":45386,"Ġmortals":45387,"Sanders":45388,"ĠSeraph":45389,"-\"":45390,"1945":45391,"endix":45392,":'":45393,"ĠLegs":45394,"Exper":45395,"ĠKrypt":45396,"clinton":45397,"Ġuphe":45398,"Vers":45399,"Similarly":45400,"ressor":45401,"leans":45402,"LOG":45403,"cific":45404,"Ġ].":45405,"-)":45406,"resist":45407,"Pred":45408,"Latest":45409,"ilyn":45410,"Ġblob":45411,"Ġdevils":45412,"ĠIllusion":45413,"erella":45414,"Ġyak":45415,"method":45416,"Ġ698":45417,"Shadow":45418,"velt":45419,"Ġsomet":45420,"xc":45421,"Ġtriangles":45422,"netic":45423,"Calling":45424,"ĠDRM":45425,"Ġtriglycer":45426,"Ġinhibited":45427,"Ġnep":45428,"Ġalgebra":45429,"ascar":45430,"laim":45431,"Ġappl":45432,"1971":45433,"Bernie":45434,"Eh":45435,"Ġundefined":45436,"âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ":45437,"Sys":45438,"ournaments":45439,"Solid":45440,"Ġhep":45441,"ĠMales":45442,"Agent":45443,"Ġpsychedel":45444,"Wik":45445,"Ġdoctrines":45446,"rection":45447,"Compare":45448,"âĺ":45449,"Ġcertific":45450,"Ġsubstr":45451,"ĠCitation":45452,"ĠAFB":45453,"ĠBecame":45454,"Ġaristocracy":45455,"aryl":45456,"Ġanatomical":45457,"ocumented":45458,"ĠAssy":45459,"ĠFORM":45460,"Traditional":45461,"azines":45462,"Content":45463,"furt":45464,"Ġscripting":45465,"Ġcloaked":45466,"Ġunint":45467,"ĠCivilization":45468,"Desktop":45469,"ĠRagnar":45470,"Ġcurses":45471,"Ġobservable":45472,"ĠSpock":45473,"ĠPyr":45474,"Ġelectrom":45475,"ĠLump":45476,"oresc":45477,"ĠAttribution":45478,"egal":45479,"achusetts":45480,"Ġmarqu":45481,"âϦ":45482,"Ġcursor":45483,"ascist":45484,"1966":45485,"edit":45486,"lisher":45487,"ocyte":45488,"Writer":45489,"BILITIES":45490,"ĠUpload":45491,"Ġtreacher":45492,"Ġrecomb":45493,"Ġknights":45494,"Ġimmutable":45495,"ĠPly":45496,"Ġatten":45497,"ĠPassed":45498,"Flying":45499,"icipated":45500,"querade":45501,"ĠZot":45502,"CRE":45503,"ĠCursed":45504,"ickr":45505,"ĠDroid":45506,"thereum":45507,"Ġadjective":45508,"DIT":45509,"Ġtob":45510,"Ġinit":45511,"ĠPenet":45512,"Ġignor":45513,"Ġexalted":45514,"ĠDwell":45515,"assemb":45516,"Ġsentient":45517,"Ġ``":45518,"ĠGoo":45519,"Professional":45520,"othing":45521,"rupted":45522,"olics":45523,"ĠSetup":45524,"Thu":45525,"Campaign":45526,"Secondly":45527,"clipse":45528,"hibit":45529,"amate":45530,"SUP":45531,"ĠSuppose":45532,"submit":45533,"ĠDebian":45534,"Ġantid":45535,"Ġentert":45536,"ysical":45537,"ĠGladiator":45538,"ĠSTL":45539,"ĠBugs":45540,"ĠMech":45541,"ĠCoffin":45542,"itored":45543,"ICLE":45544,"Mist":45545,"Ġinfall":45546,"votes":45547,"actly":45548,"Occ":45549,"ĠConquest":45550,"alach":45551,"Ġintertw":45552,"reverse":45553,"amiya":45554,"icularly":45555,"edom":45556,"ĠLuxem":45557,"Fra":45558,"urrencies":45559,"Ġnobility":45560,"Tab":45561,"Beer":45562,"Ġ10000":45563,"Ġincor":45564,"Ġmelanch":45565,"Depth":45566,"Firstly":45567,"usr":45568,"ĠWiki":45569,"hhhh":45570,"ĠProxy":45571,"Ġantagonists":45572,"Ġtransistor":45573,"ĠRelic":45574,"ĠPrometheus":45575,"Ġ1280":45576,"Coun":45577,"ĠMedals":45578,"stats":45579,"Assembly":45580,"inished":45581,"cemic":45582,"Ġadventurers":45583,"Ġcd":45584,"Supporters":45585,"ĠYs":45586,"])":45587,"Ġneglig":45588,"Request":45589,"Ġwhore":45590,"Ġovercl":45591,"_-":45592,"partial":45593,"amd":45594,"Ġfructose":45595,"Ġdivid":45596,"Administ":45597,"amples":45598,"Boo":45599,"akery":45600,"owered":45601,"hester":45602,"Links":45603,"GROUND":45604,"ethy":45605,"Ġincarcer":45606,"Ġincap":45607,"Drag":45608,"ĠElastic":45609,"âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ":45610,"Ultra":45611,"AAAA":45612,"Order":45613,"ĠMysteries":45614,"Ġcanonical":45615,"Ign":45616,"Ġanimate":45617,"wegian":45618,"ggle":45619,"Hash":45620,"Arg":45621,"verty":45622,"Ġanalges":45623,"ouver":45624,"ittees":45625,"ĠAsgard":45626,"______":45627,"Mix":45628,"1964":45629,"Rate":45630,"Ġarousal":45631,"pheus":45632,"undai":45633,"hetamine":45634,"ĠMysterious":45635,"Alright":45636,"ĠHerod":45637,"riott":45638,"ĠAnarchy":45639,"ĠArche":45640,"Question":45641,"Chapter":45642,"Token":45643,"ĠSphere":45644,"Ġinduces":45645,"Audio":45646,"Normal":45647,"Ġprophe":45648,"ĠValiant":45649,"Tag":45650,"Relations":45651,"Ġblinked":45652,"onyms":45653,"ĠVortex":45654,"Ġdb":45655,"emonic":45656,"Phase":45657,"Ġkingdoms":45658,"Twe":45659,"ĠLORD":45660,"plementation":45661,"ĠConstantinople":45662,"helm":45663,"ĠFlesh":45664,"Ġthumbnail":45665,"ledged":45666,"ĠPROG":45667,"Ġdisbel":45668,"ĠLikes":45669,"ĠGamer":45670,"renches":45671,"hattan":45672,"Index":45673,"pecially":45674,"ĠJiu":45675,"Ġwhats":45676,"erion":45677,"xf":45678,"ĠPerception":45679,"Alien":45680,"Capt":45681,"ãĢĤ":45682,"joining":45683,"nesium":45684,"ĠSocrates":45685,"Icon":45686,"animate":45687,"ocalypse":45688,"ĠTactics":45689,"assador":45690,"Veh":45691,"src":45692,",-":45693,"Ġvisc":45694,"ĠDiscord":45695,"initial":45696,"atana":45697,"Size":45698,"Claim":45699,"ffect":45700,"iciary":45701,"Ġturret":45702,"reset":45703,"Ï":45704,"wrap":45705,"ulnerability":45706,"ĠInsert":45707,"Ġirrad":45708,"ognitive":45709,"clips":45710,"uncle":45711,"chemy":45712,"ottesville":45713,"Write":45714,"earances":45715,"1965":45716,"MIC":45717,"Ġmanag":45718,"Ġtelesc":45719,"Termin":45720,"Guest":45721,"Ġdenote":45722,"Failure":45723,"ograp":45724,"âĢķ":45725,"Ġscrolls":45726,"ĠArmored":45727,"Ġrecomp":45728,"Ġplaceholder":45729,"ĠISBN":45730,"ĠBelief":45731,"emporary":45732,"Asset":45733,"arcer":45734,"haar":45735,"assium":45736,"%:":45737,"ernal":45738,"ĠLv":45739,"atible":45740,"Pand":45741,"oubted":45742,"Lie":45743,"bial":45744,"STEP":45745,"Ġpresets":45746,"Ġstatist":45747,"Sund":45748,"reshold":45749,"endium":45750,"\");":45751,"Software":45752,"Ġbasal":45753,"ĠYose":45754,"Ġmortg":45755,"ocry":45756,"Ġsubreddit":45757,"omorphic":45758,"ĠLoaded":45759,"berra":45760,"vg":45761,"orkshire":45762,"ĠChrys":45763,"Repeat":45764,"ĠSimulator":45765,"rx":45766,"gex":45767,"Linux":45768,"ĠInstruct":45769,"irable":45770,"Ġmosquit":45771,"ĠManga":45772,"iOS":45773,"Ġsynt":45774,"Ġclitor":45775,"Ġlobe":45776,"ĠDelete":45777,"CVE":45778,"fortunately":45779,"Enc":45780,"vertising":45781,"Ġanten":45782,"Ġfif":45783,"Study":45784,"prev":45785,"ossus":45786,"Nar":45787,"Decl":45788,"erala":45789,"ĠPrototype":45790,"UGE":45791,"1001":45792,"Ġ---------":45793,"deals":45794,"odcast":45795,"TPS":45796,"Ġcodec":45797,"ittee":45798,"isexual":45799,"ĠBreaker":45800,"menu":45801,"ĠURI":45802,"('":45803,"ĠFiorina":45804,"ĠApostles":45805,"ĠWitches":45806,"raint":45807,"addafi":45808,"ersive":45809,"yrim":45810,"Ġmosa":45811,"Ġrog":45812,"Ear":45813,"âĺħ":45814,"Ġcaloric":45815,"matical":45816,"yrics":45817,"ĠKrugman":45818,"axter":45819,"1016":45820,"Ġsep":45821,"ĠExtend":45822,"ropolitan":45823,"thren":45824,"ologne":45825,"atomic":45826,"Naturally":45827,"Pros":45828,"gencies":45829,"akens":45830,"Male":45831,"Ġcausation":45832,"omnia":45833,"Comments":45834,"eeee":45835,"iquette":45836,"Ġcytok":45837,"ename":45838,"details":45839,"Ġdestruct":45840,"leep":45841,"ĠCavern":45842,"ĠInvention":45843,"ueless":45844,"Ġsubsection":45845,"outhern":45846,"metic":45847,"blogs":45848,"ĠPacks":45849,"ĠArduino":45850,"hhh":45851,"elligence":45852,"imity":45853,"ĠUltron":45854,"astrous":45855,"Ġbiome":45856,"ĠHover":45857,"Ġprivile":45858,"igham":45859,"apest":45860,"ĠYoshi":45861,"Artist":45862,".\",":45863,"gamer":45864,"Virgin":45865,"Tea":45866,"ĠDoomsday":45867,"ĠðŁĻĤ":45868,"terday":45869,"ĠCommando":45870,"ĠAchieve":45871,"chrom":45872,"Ġcryptographic":45873,"Ġrebell":45874,"Specifically":45875,"â̦â̦â̦â̦":45876,"ĠEternity":45877,"Ġemulation":45878,"ĠSERV":45879,"ĠMiscellaneous":45880,"ĠParticipant":45881,"duc":45882,"vp":45883,"ĠSparkle":45884,"ategories":45885,"Ġdecrypt":45886,"ĠGNOME":45887,"activation":45888,"Ġanarch":45889,"owler":45890,"adiator":45891,"itars":45892,"ĠTHEN":45893,")\",":45894,"åħ":45895,"Ġembod":45896,"vae":45897,"âĺĨ":45898,"Member":45899,"Ġrm":45900,"nyder":45901,"ĠLeviathan":45902,"Gaza":45903,"erenn":45904,"Chicken":45905,"ĠDefinitive":45906,"ĠBolshe":45907,"ĠJagu":45908,"gorith":45909,"loader":45910,"exe":45911,".........":45912,"ĠReceived":45913,"ĠProto":45914,"ĠLocked":45915,"Posts":45916,"ankind":45917,"Clock":45918,"ĠCLI":45919,"Throw":45920,"dL":45921,"epad":45922,"ĠAtmosp":45923,"Ġmk":45924,"ĠSteal":45925,"uple":45926,"reference":45927,"ĠGNU":45928,"adelphia":45929,"scripts":45930,"ilaterally":45931,"ĠMods":45932,"odus":45933,"ignty":45934,"REF":45935,"Ġhypothesized":45936,"issors":45937,"Ġanus":45938,"HUD":45939,"rices":45940,"Draw":45941,"Computer":45942,"Below":45943,"uthor":45944,"ĠTact":45945,"=$":45946,"00000000":45947,"Ġcaut":45948,"Sharp":45949,"depend":45950,"Ġtatt":45951,"Goal":45952,"Sounds":45953,"zona":45954,"anyon":45955,"ricanes":45956,"ĠUSAF":45957,"Jump":45958,"Bottom":45959,"etermination":45960,"ĠPles":45961,"Ġhypothes":45962,"Reference":45963,"Ġswall":45964,"Ġmaneu":45965,"rifice":45966,"ĠVeh":45967,"Ġtex":45968,"geoning":45969,"ĠâľĶ":45970,"Mach":45971,"eanor":45972,"%);":45973,"archives":45974,"Ġencyclopedia":45975,"ĠPreferences":45976,"damage":45977,"Done":45978,"Ġcoefficient":45979,"ĠCreatures":45980,"Ġital":45981,"ivari":45982,"Revolution":45983,"Ġnob":45984,"Diff":45985,"Ġabbre":45986,"Writ":45987,"ĠDOS":45988,"redd":45989,"Ġsplend":45990,"orest":45991,"flame":45992,"Ġdevs":45993,"Ġ==":45994,"ĠPuzzle":45995,"Ġgit":45996,"MOD":45997,"ĠArgument":45998,"ĠAbyss":45999,"Studies":46000,"ophob":46001,"uild":46002,"scill":46003,"fp":46004,"Ġplur":46005,"Delete":46006,"ĠFALSE":46007,"FIL":46008,"Ġmicrobiota":46009,"ĠIPv":46010,"Stud":46011,"ortal":46012,"ĠDivinity":46013,"ounter":46014,"ä¸":46015,"Naz":46016,"stals":46017,"ihilation":46018,"Ġpersecut":46019,"ĠPlanes":46020,"viation":46021,"Driver":46022,"ĠEEG":46023,"Unity":46024,"Premium":46025,"ĠSiren":46026,"ĠPaleo":46027,"earchers":46028,"Pract":46029,"Ö":46030,"VII":46031,"mosp":46032,"Ġidentifiers":46033,"Near":46034,"achu":46035,"Apps":46036,"tackle":46037,"COLOR":46038,"Ġperpendicular":46039,"viks":46040,"ecided":46041,"ĠDota":46042,"icons":46043,"Ġpsi":46044,"Brave":46045,"Ġunimagin":46046,"ĠATI":46047,"OOL":46048,"Gender":46049,"ĠSwords":46050,"oples":46051,"Rank":46052,"olphins":46053,"Ġdeities":46054,"ĠXIII":46055,"м":46056,"ĠKraken":46057,"ĠLEVEL":46058,"stasy":46059,"ĠBabel":46060,"Hours":46061,"Avoid":46062,"Mech":46063,"Multi":46064,"Ġect":46065,"Occup":46066,"panic":46067,"Ġmutants":46068,"Evidence":46069,"Tips":46070,"Ġvolts":46071,"Exit":46072,"xb":46073,"planet":46074,"avez":46075,"features":46076,")]":46077,"lol":46078,"ĠNeph":46079,"ĠSanct":46080,"Ġimpover":46081,"................................":46082,"Sty":46083,"Email":46084,"Torrent":46085,"Ġgluc":46086,"ĠSins":46087,"ĠIncarn":46088,"ĠWITHOUT":46089,"ĠPanzer":46090,"ĠAssignment":46091,"versible":46092,"Strange":46093,"ITNESS":46094,"incible":46095,"ZX":46096,"ĠMySQL":46097,"Ġconson":46098,"Ġoxidative":46099,"Machine":46100,"Impro":46101,"Parent":46102,"ĠMetroid":46103,"Educ":46104,"Ġdismant":46105,"dx":46106,"ĠPersona":46107,"ĠHDL":46108,"Americ":46109,"Users":46110,"Ġeighteenth":46111,"WARNING":46112,"ĠLists":46113,"ĠCanter":46114,"ĠTrotsky":46115,"Ġhaha":46116,"]'":46117,"ĠEncyclopedia":46118,"admin":46119,"ĠACTIONS":46120,"idav":46121,"ο":46122,"ĠFTP":46123,"Ġquar":46124,"ongyang":46125,"â̦â̦â̦â̦â̦â̦â̦â̦":46126,"Ġsynchronization":46127,"DEM":46128,"riched":46129,"Ġnegro":46130,"Bench":46131,"Ġfilament":46132,"Ġdecoding":46133,"obj":46134,"Ġjoystick":46135,"Decre":46136,"ĠBolshevik":46137,"Virtual":46138,"ĠSacrament":46139,"xd":46140,"BILL":46141,"-+-+":46142,"¶":46143,"anchester":46144,"Pokemon":46145,"Ġslic":46146,"iameter":46147,"errilla":46148,"Exactly":46149,"\"'":46150,"getic":46151,"3333":46152,"solete":46153,"Ġincorpor":46154,"Ġio":46155,"------------":46156,"Ġantiquity":46157,"ATURES":46158,"Policy":46159,"oppable":46160,"Ġ=>":46161,"ODUCT":46162,"otide":46163,"Ú":46164,"Ġnormative":46165,"Fac":46166,"Ġshaman":46167,"element":46168,"Plex":46169,"INTER":46170,"etsk":46171,"ĠGauntlet":46172,"ĠBIOS":46173,"×ķ":46174,"riet":46175,"Rew":46176,"uristic":46177,"urches":46178,"ĠChomsky":46179,"ixir":46180,"package":46181,"Owner":46182,"Ġschematic":46183,"Assistant":46184,"Ġemanc":46185,"Ġarchetype":46186,"Initial":46187,"intent":46188,"Ġfilib":46189,"ispers":46190,"Flag":46191,"Tank":46192,"Ġinsurg":46193,"Ġapproximation":46194,"Ġsemantic":46195,"Ġsubtitle":46196,"Font":46197,"Ġintimid":46198,"Ġhath":46199,"tools":46200,"gob":46201,"Process":46202,"slave":46203,"ĠJUSTICE":46204,"âĻ¥":46205,"ĠHardcore":46206,"Discover":46207,"Ġexch":46208,"ptive":46209,"units":46210,"ĠDjango":46211,"itudinal":46212,"Ġpc":46213,"akespeare":46214,"ospace":46215,"Ġhorny":46216,"auth":46217,"ĠSkyrim":46218,"ENGTH":46219,"perors":46220,"ĠVulkan":46221,"Ġchimpan":46222,"Ġremem":46223,"Ġopacity":46224,"Ġ:(":46225,"ushima":46226,"Ġawoken":46227,"Ġsacrament":46228,"Beginning":46229,"escape":46230,"Anim":46231,"Ġadvant":46232,"ĠRequires":46233,"output":46234,"Ġdroid":46235,"Yep":46236,"rieving":46237,"Ġpt":46238,"ĠShotgun":46239,"ĠOsiris":46240,"disabled":46241,"ĠRadius":46242,"Medium":46243,"ĠScient":46244,"ĠRept":46245,"ymm":46246,"Ġcp":46247,"ĠLabyrinth":46248,"poral":46249,"Ġ'(":46250,"Hack":46251,"ĠTechnique":46252,"/,":46253,"Ġambig":46254,"Basic":46255,"Ġretrie":46256,"VICE":46257,"BIP":46258,"ragon":46259,"phies":46260,"uminum":46261,"ĠFei":46262,"lesi":46263,"Ġsemantics":46264,"ĠHz":46265,"ĠUnderworld":46266,"Ġendot":46267,"olesterol":46268,"ourning":46269,"Ġcaches":46270,"ĠYug":46271,"Legendary":46272,"ĠDocumentation":46273,"ĠSpiral":46274,"ĠClone":46275,"bnb":46276,"ĠâĶ":46277,"ustom":46278,"Mp":46279,"gettable":46280,"agonist":46281,"Ġneuronal":46282,"culus":46283,"enum":46284,"cules":46285,"Ġmuttered":46286,"ctica":46287,"necess":46288,"ĠSubtle":46289,"Ġsolder":46290,"Environment":46291,"oneliness":46292,"orage":46293,"â̦.\"":46294,"nesota":46295,"agements":46296,"Ùİ":46297,"WHERE":46298,"ĠGDDR":46299,"Scient":46300,"ĠMulcair":46301,"ĠRena":46302,"________________________________________________________________":46303,"antics":46304,"Ġtorped":46305,"Brow":46306,"ossal":46307,"Category":46308,"Regular":46309,"remote":46310,"ãģ":46311,"ĠCoil":46312,"ritch":46313,"specified":46314,"Average":46315,"Ġfingert":46316,"entity":46317,"atibility":46318,"ampunk":46319,"ĠScriptures":46320,"Ġunequ":46321,"arettes":46322,"arching":46323,"Ġastron":46324,"Ġnumeric":46325,"ĠeBook":46326,"remove":46327,"onday":46328,"Ġmetaphysical":46329,"ĠGoku":46330,"Element":46331,"ĠRuin":46332,"Norm":46333,"Ġtox":46334,"puff":46335,"Ġharmonic":46336,"ĠAgility":46337,"ĠHearthstone":46338,"Ġmana":46339,"Points":46340,"Ġconduc":46341,"ĠPersia":46342,"-----":46343,"license":46344,"Application":46345,"assert":46346,"Reader":46347,"ĠSacrifice":46348,"float":46349,"inctions":46350,"byter":46351,"Ġfundament":46352,"\"â̦":46353,"Fourth":46354,"Effective":46355,"ĠMeow":46356,"ĠErrors":46357,"ĠIcar":46358,"ĠMMO":46359,"Ġapostles":46360,"Ġfaintly":46361,"component":46362,"bably":46363,"uggage":46364,"ĠMPG":46365,"krit":46366,"container":46367,"ixture":46368,"ĠPOV":46369,"izabeth":46370,"onut":46371,"isdom":46372,"trace":46373,"ĠSDL":46374,"Interestingly":46375,"ĠExplan":46376,"lesiastical":46377,"ternal":46378,"Bug":46379,"Ġmetabolites":46380,"geries":46381,"Ġsupra":46382,"ĠMakoto":46383,"orget":46384,"racuse":46385,"][":46386,"ĠPrelude":46387,"peria":46388,"tube":46389,"ĠCatalog":46390,"ĠGoblin":46391,"QUEST":46392,"ĠINCLUD":46393,"ĠVERS":46394,"erguson":46395,"Ġcommandments":46396,"ĠUDP":46397,"itle":46398,"ι":46399,"domain":46400,"roximately":46401,"ĠTLS":46402,"ongevity":46403,"Ġmodulation":46404,"Ġdidnt":46405,"ĠCalories":46406,"Applications":46407,"ormon":46408,"Ġsd":46409,"dullah":46410,"Ġcous":46411,"ĠDARK":46412,"clip":46413,"ĠPsychiat":46414,"ĠTanz":46415,"ĠCharisma":46416,"ĠMerge":46417,"ĠKDE":46418,"requires":46419,"urdue":46420,"Ġdecimal":46421,"Ġâī¥":46422,"ĠAuth":46423,"ebted":46424,"ĠTempl":46425,"ĠâĢº":46426,"Ultimate":46427,"Ġmammalian":46428,"advertising":46429,"Ġdominion":46430,"Ġacron":46431,"ĠWem":46432,"ĠHeist":46433,"oiler":46434,"FLAG":46435,"ovember":46436,"Syn":46437,"Ġgodd":46438,"ĠPyth":46439,"Ġglyc":46440,"ĠHelpful":46441,"Ġgad":46442,"chedel":46443,"Similar":46444,"Ġ¶":46445,"Ġnp":46446,"ĠREPL":46447,"Fill":46448,"ĠSunder":46449,"etsy":46450,"ĠPAX":46451,"ĠFemales":46452,"ĠKingdoms":46453,"Ġwhistlebl":46454,"Hide":46455,"serial":46456,"ĠEnemies":46457,"ĠPeb":46458,"Ġpiety":46459,"ifact":46460,"esity":46461,"bsite":46462,"esides":46463,"Ġported":46464,"Ġamygdala":46465,"ĠGerr":46466,"afety":46467,"Ġadip":46468,"(\"":46469,"Ġcf":46470,"Ġurl":46471,"unia":46472,"icro":46473,"Austral":46474,"ĠConfig":46475,"accompanied":46476,"isite":46477,"Ġtextual":46478,"\">":46479,"Ġanecd":46480,"Ġ\",":46481,"angular":46482,"ĠUnicode":46483,"Proof":46484,"Ġmultiplication":46485,"Address":46486,"Ġbytes":46487,"lems":46488,"uterte":46489,"Episode":46490,"oshop":46491,"ritical":46492,"Adjust":46493,"argument":46494,"\\'":46495,"Rober":46496,"pection":46497,"Agg":46498,"äº":46499,"interrupted":46500,"ĠDebor":46501,"Ġlair":46502,"Various":46503,"isively":46504,"ĠStatic":46505,"ohyd":46506,"ĠEchoes":46507,"UID":46508,"raught":46509,"Bott":46510,"Ġapostle":46511,"ĠCentauri":46512,"oxicity":46513,"ibling":46514,"Ġparalle":46515,"inav":46516,"Crit":46517,"ĠTyph":46518,"Ġhig":46519,"ĠEDITION":46520,"Ġcoord":46521,"uish":46522,"sectional":46523,"inki":46524,"Title":46525,"anyahu":46526,"osterone":46527,"Ġdesper":46528,"ribly":46529,"Legend":46530,"afort":46531,"Org":46532,"Ġempir":46533,"ĠQuake":46534,"SSL":46535,"ioxide":46536,"åľ":46537,"Ġenz":46538,"urtle":46539,"BSD":46540,"Rust":46541,"ospels":46542,"Rare":46543,"Ġpartitions":46544,"Ġheresy":46545,"overy":46546,"Ġmonop":46547,"Pixel":46548,"odder":46549,"Option":46550,"withstanding":46551,"Transfer":46552,"Ġarrog":46553,"skip":46554,"ĠSSH":46555,"ĠSph":46556,"Ġcallback":46557,"PIN":46558,"Ġpdf":46559,"Ġplaint":46560,"cipled":46561,"reenshots":46562,"Ġparsing":46563,"::::::::":46564,"ioxid":46565,"Ġhereafter":46566,"ĠFunctions":46567,"ĠBulgar":46568,"Ġintu":46569,"DOC":46570,"Location":46571,"Hyper":46572,"ageddon":46573,"Evil":46574,"illions":46575,"Introduction":46576,"Physical":46577,"ĠLayout":46578,"âķ":46579,"------------------------":46580,"ĠRodham":46581,"ĠPatterns":46582,"Delivery":46583,"Ġdistur":46584,"ĠVolunte":46585,"ĠGUI":46586,"Ġclen":46587,"Ġinacc":46588,"ĠBallistic":46589,"ĠSprite":46590,"Privacy":46591,"theme":46592,"dump":46593,"ĠByte":46594,"ĠIncre":46595,"apult":46596,"ĠWrath":46597,"ensibly":46598,"NOTE":46599,"ounge":46600,"ustomed":46601,"ochond":46602,"ĠQt":46603,"Primary":46604,"Ġsidew":46605,"Root":46606,"gregation":46607,"SQL":46608,"ĠSOFTWARE":46609,"Gallery":46610,"ĠDungeon":46611,"ĠVengeance":46612,"->":46613,"steam":46614,"Ġfrivol":46615,"Ġpid":46616,"filter":46617,"Ġfacult":46618,"doms":46619,"Tool":46620,"1959":46621,"Ġprefix":46622,"Ġcomma":46623,"relative":46624,"Ġformatted":46625,"appropriately":46626,"Ġmd":46627,"xxx":46628,"ĠAuthentication":46629,"ĠWTC":46630,"Ġvulner":46631,"reditary":46632,"Steam":46633,"Tx":46634,"ĠGHC":46635,"Increased":46636,"forcement":46637,"ĠGuant":46638,"bernatorial":46639,"Entry":46640,"ĠWarp":46641,"ĠCreature":46642,"ĠAmmunition":46643,"Ġclust":46644,"ĠInher":46645,"Ġunbel":46646,"RGB":46647,"ĠMankind":46648,"ĠPlague":46649,"Ġ=================================":46650,"psc":46651,"Intern":46652,"tml":46653,"ĠCrusade":46654,"inflamm":46655,"Storage":46656,"token":46657,"inse":46658,"False":46659,"Adult":46660,"Pokémon":46661,"PLIED":46662,"Ġglac":46663,"ĠDwarf":46664,"sequence":46665,"Ġmagnification":46666,"ĠIlluminati":46667,"hedral":46668,"param":46669,"regon":46670,".\",\"":46671,"Eva":46672,"igree":46673,"Object":46674,"Ġoptimizations":46675,"uador":46676,"mmmm":46677,"ullivan":46678,"Ġ[\"":46679,"ĠDusk":46680,"Ġtrig":46681,"Ġiss":46682,"Ġhypert":46683,"Ġperspect":46684,"Ġassum":46685,":,":46686,"Ġinterpol":46687,"Asked":46688,"Boot":46689,"LIB":46690,"Loading":46691,"Ident":46692,"upuncture":46693,"ioch":46694,"Ġprefrontal":46695,"delay":46696,"ĠPoké":46697,"bestos":46698,"overe":46699,"Elf":46700,"eteria":46701,"ĠSneak":46702,"bians":46703,"ĠARTICLE":46704,"Xbox":46705,"encrypted":46706,"ync":46707,"ĠNietzsche":46708,"Nonetheless":46709,"Ġ±":46710,"ĠPrimal":46711,"ĠFlare":46712,"Ġconflic":46713,"ĠRune":46714,"Tes":46715,"cellence":46716,"Mega":46717,"ĠEntity":46718,"chrome":46719,"iatures":46720,"Ġuninstall":46721,"Winner":46722,"aimon":46723,"Ġhomebrew":46724,"Ruby":46725,"araoh":46726,"itime":46727,"Ġpotion":46728,"ĠAllows":46729,"ogyn":46730,"osuke":46731,"Limited":46732,"Ġmacros":46733,"ERROR":46734,"gling":46735,"Ġtodd":46736,"repre":46737,"ĠSakura":46738,"erker":46739,"items":46740,"FIG":46741,"ĠUnle":46742,"Ġhardness":46743,"Split":46744,"Ġarous":46745,"ocally":46746,"Ġì":46747,"ĠEVE":46748,"pleasant":46749,"ihil":46750,"ĠRouter":46751,"ĠLucius":46752,"readable":46753,"Ġtremb":46754,"Dro":46755,"Ġblaster":46756,"Ġbourgeoisie":46757,"NUM":46758,"Alternative":46759,"flags":46760,"GAME":46761,"ebook":46762,"ĠIPM":46763,"Ġcorrel":46764,"Setting":46765,"Frame":46766,"Ġatheism":46767,"Interested":46768,"Liquid":46769,"stanbul":46770,"Lv":46771,"Ġtits":46772,"Ġdc":46773,"×Ļ×":46774,"Ġdoctr":46775,"background":46776,"tsy":46777,"ĠCtrl":46778,"ĠCompatibility":46779,"idae":46780,"example":46781,"perture":46782,"Ġguid":46783,"ĠWinged":46784,"Command":46785,"ridor":46786,"bool":46787,"comments":46788,"ĠImmunity":46789,"Nit":46790,"Statement":46791,"Ġmanif":46792,"ĠIntake":46793,"Bloom":46794,"txt":46795,"context":46796,"input":46797,"achus":46798,"proc":46799,"Ñĭ":46800,"Ġdisemb":46801,"ospons":46802,"utical":46803,"ĠRender":46804,"Ironically":46805,"ursday":46806,"ĠExile":46807,"lishes":46808,"iets":46809,"orescent":46810,"cair":46811,"ĠSubjects":46812,"ĠDungeons":46813,"Ġiii":46814,"neapolis":46815,"ĠBlaster":46816,"Ġphp":46817,"ORED":46818,"ĠSLI":46819,"Ġelig":46820,"ĠIdentified":46821,"ĠBrawl":46822,"bytes":46823,"ĠCTR":46824,"Ġsched":46825,"Assuming":46826,"Bound":46827,"ĠMathemat":46828,"razil":46829,"ĠAstral":46830,"mble":46831,"untled":46832,"Ġmech":46833,"ĠDagger":46834,"ĠUseful":46835,"nesday":46836,"tarians":46837,"AMY":46838,"Camera":46839,"node":46840,"pict":46841,"ginx":46842,"Ġyea":46843,">>>>>>>>":46844,"paragraph":46845,"ĠSupplementary":46846,"9999":46847,"ĠAlchemist":46848,"uzzle":46849,"igun":46850,"ĠCalculator":46851,"ĠApplicant":46852,"hift":46853,"ĠGPL":46854,"Ġencode":46855,"Crash":46856,"ĠNutr":46857,"kHz":46858,"TABLE":46859,"intestinal":46860,"andom":46861,"archive":46862,"Ëľ":46863,"Registered":46864,"Questions":46865,"Remote":46866,"ethyst":46867,"Ġgren":46868,"ĠTexture":46869,"Ġseiz":46870,"Anyway":46871,"ĠVariant":46872,"ê":46873,"Adapt":46874,"ittered":46875,"meta":46876,"ambers":46877,"ĠRuins":46878,"ĠChimera":46879,"password":46880,"ĠReboot":46881,"Ġcaster":46882,"Ġamplitude":46883,"Position":46884,"Ġnotation":46885,"Ġsecretion":46886,"Excellent":46887,"delete":46888,"aminer":46889,"ä»":46890,"Exec":46891,"ĠKenobi":46892,"Interview":46893,"ontent":46894,"ospel":46895,"Ġtuber":46896,"CONT":46897,"roups":46898,"Ġemulator":46899,"Ġjava":46900,"0200":46901,"Ġnested":46902,"Ġfert":46903,")).":46904,"Dex":46905,"ĠSora":46906,"Ġpotions":46907,"ĠAnon":46908,"aah":46909,"Ġdunno":46910,"Ġμ":46911,"Ġmethodological":46912,"itles":46913,"phia":46914,"Beg":46915,"Rules":46916,"ĠXML":46917,"Ġflask":46918,"ĠShogun":46919,"Ġ2048":46920,"atchewan":46921,"Ġfuckin":46922,"Built":46923,"Ġbour":46924,"Ġdisag":46925,"yss":46926,"ĠÏ":46927,"Spoiler":46928,"Wiki":46929,"Ġmorphology":46930,"Ġendors":46931,"Ġdungeons":46932,"dragon":46933,")),":46934,"Ġhous":46935,"Ġoverwhel":46936,"SAY":46937,"abwe":46938,"--------------------------------":46939,"Ġepist":46940,"Ġpalp":46941,"ĠExtensions":46942,"ĠMistress":46943,"ĠUkrain":46944,"================":46945,"edience":46946,"abama":46947,"ĠLua":46948,"ĠOffline":46949,"ĠKonami":46950,"unicip":46951,"ĠMachina":46952,"Specific":46953,"Ġpresupp":46954,"ĠGEAR":46955,"rition":46956,"rences":46957,"successfully":46958,"Ġ1024":46959,"Platform":46960,"}}":46961,"clude":46962,"roxy":46963,"Ġpromot":46964,"ĠAdapter":46965,"rocal":46966,"ĠMasquerade":46967,"Panel":46968,"Language":46969,"elsius":46970,"Push":46971,"abase":46972,"ĠdB":46973,"argon":46974,"ĠRemoved":46975,"amph":46976,"ĠWyr":46977,"Ġindisp":46978,"ĠOkin":46979,"aepernick":46980,"moil":46981,"Continue":46982,"00007":46983,"ĠJournals":46984,"TAG":46985,"ĠRemastered":46986,"Ġsymp":46987,"methyl":46988,"Overview":46989,"umeric":46990,"ĠCodex":46991,".$":46992,"ranged":46993,"Sym":46994,"ĠVerse":46995,"ĠEnabled":46996,"ĠFUCK":46997,"ĠHearth":46998,"Ġbrill":46999,"ĠChaser":47000,"Beh":47001,"ĠAlchemy":47002,"Oracle":47003,"roleum":47004,"ĠVoldemort":47005,"();":47006,"Ġcollaps":47007,"Visual":47008,"ĠAngular":47009,"ĠOsc":47010,"ichita":47011,"Ġcig":47012,"Ġtoolbar":47013,"ĠEnlight":47014,"ÑĮ":47015,"ε":47016,"aliation":47017,"ĠLovecraft":47018,"jri":47019,"ĠInterstellar":47020,"Ġdebugging":47021,"Ġparentheses":47022,"ĠInit":47023,"Located":47024,"Weak":47025,"ĠPvP":47026,"ĠCloak":47027,"uture":47028,"iths":47029,"asionally":47030,"FACE":47031,"Introdu":47032,"');":47033,"slot":47034,"aturday":47035,"ĠNiet":47036,"Ġpuzz":47037,"!!!!!!!!":47038,"folios":47039,"Ç":47040,"Ġverbs":47041,"ĠFrames":47042,"ĠAmbro":47043,"Ġmillisec":47044,"ĠRebell":47045,"ylum":47046,"PASS":47047,"ĠConfiguration":47048,"μ":47049,"brids":47050,"vantage":47051,"Ġ['":47052,"ĠScy":47053,"Benef":47054,"gradation":47055,"ĠOrc":47056,"Resources":47057,"Awesome":47058,"ĠMilitia":47059,"POST":47060,"Ġbinaries":47061,"Mode":47062,"Ġkb":47063,"ĠWARRANT":47064,"hemy":47065,"Desc":47066,"alion":47067,"Ġwiki":47068,"Ġcommer":47069,"Serial":47070,"ĠUncommon":47071,"ignore":47072,"Ġconstructor":47073,"ctl":47074,"Ġ):":47075,"ĠVerify":47076,"Notice":47077,"ĠRPGs":47078,"uckland":47079,"Ġincre":47080,"Pinterest":47081,"ĠDefinitions":47082,"iband":47083,"Ġtd":47084,"Ġsubscrib":47085,"Shin":47086,"ĠGadget":47087,"Document":47088,"å®":47089,"Requ":47090,"QUIRE":47091,"ĠQuadro":47092,"ĠUnix":47093,"Enlarge":47094,"thens":47095,"\"...":47096,"gebra":47097,"pload":47098,"alogue":47099,"vironments":47100,"Strength":47101,"ĠPID":47102,"ĠInvaders":47103,"HOME":47104,"Atl":47105,"ĠBlizz":47106,"ĠWidth":47107,"ĠOpenGL":47108,"zx":47109,"$,":47110,"Ġå":47111,"cig":47112,"lectic":47113,"relation":47114,"Ġfeas":47115,"undown":47116,"Said":47117,"ν":47118,"��":47119,"english":47120,"ĠTokens":47121,"ĠALEC":47122,"OOOO":47123,"isconsin":47124,"Ġconstants":47125,"ĠTemplar":47126,"Accept":47127,"Ġmascul":47128,"enegger":47129,"ampires":47130,"Rated":47131,"lua":47132,"ucl":47133,"ĠSequence":47134,"ĠNRS":47135,"STD":47136,"Cra":47137,"autions":47138,"ĠKernel":47139,"oleon":47140,"htaking":47141,"ancial":47142,"Pages":47143,"orthodox":47144,"ropy":47145,"EEE":47146,"Ġtranssexual":47147,"?????":47148,"Ġsurpr":47149,"arthy":47150,"ĠPsychic":47151,"Ġdorsal":47152,"cember":47153,"joice":47154,"/+":47155,"verend":47156,"uint":47157,"Ġderog":47158,"Subject":47159,"hemat":47160,"!]":47161,"Ġ);":47162,"Ġmeshes":47163,"Ġreperc":47164,"ĠTerran":47165,"åĪ":47166,"Load":47167,"å¹":47168,"ikarp":47169,"rompt":47170,"Ġgoblins":47171,"ĠShattered":47172,"tests":47173,"Spread":47174,"ĠNaruto":47175,"Ġpredic":47176,"Hyp":47177,"ĠArkham":47178,"ĠNASL":47179,"Material":47180,"Rule":47181,"raviolet":47182,"ĠKlingon":47183,"Memory":47184,"acers":47185,"Known":47186,"Important":47187,"Ġα":47188,"Ġtraged":47189,"Ġshalt":47190,"Ġiso":47191,"ĠJSON":47192,"Instant":47193,"Ġpg":47194,"Ġexponent":47195,"formance":47196,"bitcoin":47197,"DOS":47198,"cheat":47199,"Ġrook":47200,"ĠBiol":47201,"noticed":47202,"Ġtwent":47203,"ĠRedux":47204,"ĠBorderlands":47205,"Supported":47206,"TRUMP":47207,"Ġturrets":47208,"include":47209,"Effect":47210,"Ġdisg":47211,"ophical":47212,"ĠFaction":47213,"wiki":47214,"Ġsrc":47215,"Laun":47216,"TIT":47217,"Ġorbs":47218,"Ġincompet":47219,"Ġdescriptor":47220,"ĠTrog":47221,"Contribut":47222,"ĠGodd":47223,"inances":47224,"Ult":47225,"lyak":47226,"âĢ¢âĢ¢âĢ¢âĢ¢":47227,"stitial":47228,"essim":47229,"Graphics":47230,"ubis":47231,"Ġegreg":47232,"DEV":47233,"Ġannotations":47234,"Yang":47235,"ĠDruid":47236,"ĠInquisition":47237,"ohydrate":47238,"Critical":47239,"æĸ":47240,"Sample":47241,"ĠPref":47242,"ĠUnleashed":47243,"ĠAccessed":47244,"Ġconceptions":47245,"Minor":47246,"pard":47247,"prus":47248,"Factory":47249,"thinkable":47250,"Ġexecutable":47251,"chapter":47252,"inyl":47253,"Display":47254,"ilater":47255,"Released":47256,"ĠDirectX":47257,"aneers":47258,"Ġ______":47259,"ĠHilbert":47260,"Options":47261,"Ġsorcery":47262,"esm":47263,"ÏĦ":47264,"Ġdescript":47265,"ĠTycoon":47266,"psons":47267,"Ġcov":47268,"Launch":47269,"ogeneity":47270,"Ġsacrific":47271,"ADRA":47272,"netflix":47273,"flix":47274,"usage":47275,"properties":47276,"attach":47277,"req":47278,"Resource":47279,"requisite":47280,"1007":47281,"ĠMIDI":47282,"ĠZoro":47283,"Tue":47284,"hower":47285,"dds":47286,"ynasty":47287,"headers":47288,"Ġdisproportion":47289,"omaly":47290,"Ġvim":47291,"inces":47292,"edient":47293,"ĠWraith":47294,"ilibrium":47295,"Hig":47296,"ĠFrie":47297,"Meat":47298,"ldom":47299,"KNOWN":47300,"orgetown":47301,"Improve":47302,"10000":47303,"Ġretarded":47304,"Disclaimer":47305,"Ġunfocused":47306,"ĠUnsure":47307,"ĠElixir":47308,"idth":47309,"atural":47310,"ĠErr":47311,"Critics":47312,"ĠBows":47313,"ifferent":47314,"proxy":47315,"Lic":47316,"aucas":47317,"rolet":47318,"ĠCoC":47319,"Ġdoesnt":47320,"phabet":47321,"Version":47322,"Ġhepat":47323,"gif":47324,"izophren":47325,"ãĥ»":47326,"ĠGutenberg":47327,"β":47328,"phans":47329,"Scene":47330,"Ġaccomp":47331,"ilings":47332,"rypted":47333,"aceae":47334,"arantine":47335,"heses":47336,"iasco":47337,"lopp":47338,"ĠGSL":47339,"disk":47340,"ãĢģ":47341,"0010":47342,"ĠOutbreak":47343,"Column":47344,"odox":47345,"atform":47346,"ĠThrust":47347,"ĠSVG":47348,"Enhanced":47349,"¯":47350,"Tools":47351,"rogens":47352,"xus":47353,"Available":47354,"zbollah":47355,"è¡":47356,"osate":47357,"usb":47358,"ordes":47359,"Matrix":47360,"ĠBlazing":47361,"ascus":47362,"ĠSovere":47363,"hement":47364,"*:":47365,"amaru":47366,"Ġparsed":47367,"Bonus":47368,"otrop":47369,"spell":47370,"ancock":47371,"ĠEnchant":47372,"vP":47373,"ĠReferred":47374,"Ġalot":47375,"ĠRuntime":47376,"ĠFn":47377,"CPU":47378,"ĠNicotine":47379,"External":47380,"ĠNightmares":47381,"Ġentropy":47382,"kB":47383,"ĠRealms":47384,"Ġ##":47385,"Ġsubmar":47386,"ĠSlime":47387,"itual":47388,"ĠBastard":47389,"Ġacknowled":47390,"Magazine":47391,"rendered":47392,"ircraft":47393,"CSS":47394,"Numbers":47395,"Pg":47396,"utenant":47397,"ĠPalest":47398,"ĠRoose":47399,"udicrous":47400,"anooga":47401,"Unt":47402,"Ġcapacitor":47403,"Ġschema":47404,"hematic":47405,"ĠPinball":47406,"endars":47407,"Ġ===":47408,"nsic":47409,"ipedia":47410,"Ġchromos":47411,"ĠmRNA":47412,"Ct":47413,"ĠPaladin":47414,"sonian":47415,"Ġæ":47416,"ajor":47417,"repeat":47418,"ortex":47419,"ĠHeroic":47420,"ĠHera":47421,"ociated":47422,"Ġdebug":47423,"osher":47424,"upiter":47425,"_.":47426,"Ġsys":47427,"ĠDownloads":47428,"','":47429,"Adventure":47430,"FORE":47431,"ocument":47432,"arning":47433,"Ġmiscon":47434,"vidia":47435,"Cod":47436,"ibraries":47437,"buffer":47438,"cdn":47439,"ĠModes":47440,"tarian":47441,"ĠPyro":47442,"ĠFixes":47443,"ĠâĪ":47444,"ĠCf":47445,"Testing":47446,"Byte":47447,"nants":47448,"oufl":47449,"ĠCipher":47450,"Aim":47451,"ĠAfgh":47452,"ĠStarCraft":47453,"intendent":47454,"akespe":47455,"Apply":47456,">>>":47457,"Lenin":47458,"ĠShaman":47459,"%\"":47460,"ĠFrenzy":47461,"illusion":47462,"===":47463,"Website":47464,"Allow":47465,"ĠBinary":47466,"ensable":47467,"ĠEmpires":47468,"Ġpromul":47469,"ormonal":47470,"ileaks":47471,"ĠAmmo":47472,"assies":47473,"atican":47474,"avior":47475,"ĠIter":47476,"1024":47477,"uesday":47478,"ĠAppears":47479,"achine":47480,"Problem":47481,"ousy":47482,"ramid":47483,"nox":47484,"··":47485,"omething":47486,"ĠPurg":47487,"artney":47488,"Ġ0000":47489,"psey":47490,"Ġglutamate":47491,"ĠActivate":47492,"Repl":47493,"Priv":47494,"cyclop":47495,"ĠHispan":47496,"atsuki":47497,"Likewise":47498,"JOHN":47499,"POSE":47500,"pherd":47501,"schild":47502,"Ġsuffix":47503,"åIJ":47504,"Ġoptionally":47505,"ĠRecomm":47506,"ĠSpawn":47507,"ARDIS":47508,"Ġinconsist":47509,"Ġenglish":47510,"Beta":47511,"ĠContains":47512,"uddenly":47513,"Ġls":47514,"Dynamic":47515,"åĽ":47516,"Ġ{{":47517,"dq":47518,"Hmm":47519,"oliberal":47520,"ĠCarnage":47521,"ĠRebirth":47522,"incerity":47523,"Ġproletariat":47524,"ĠCrafting":47525,"Explore":47526,"Ġeld":47527,"ĠAnarch":47528,"Ġ(>":47529,"ĠClockwork":47530,"ĠProced":47531,"APTER":47532,"ĠSorcerer":47533,"âĶ":47534,"ĠSnape":47535,"elist":47536,"Balance":47537,"Tube":47538,"Ġ--------------------":47539,"Ġnostalg":47540,"ACTED":47541,"ĠVID":47542,"soever":47543,"ignt":47544,"Ġhypothal":47545,"ĠObj":47546,"igure":47547,"ĠElves":47548,"gorithm":47549,"Romney":47550,"idable":47551,"renheit":47552,"aptic":47553,"Ġnonex":47554,"Profile":47555,"Ġscient":47556,"ĠAchievements":47557,"ĠReload":47558,"Products":47559,"ampire":47560,"pread":47561,"ĠYamato":47562,"Thread":47563,"ĠFML":47564,"ĠForsaken":47565,"Statistics":47566,"Ġ([":47567,"utsu":47568,"nces":47569,"...?":47570,"upload":47571,"Typ":47572,"ĠReflex":47573,"Dial":47574,"Ġspawns":47575,"Server":47576,"Ġacquaint":47577,"iterranean":47578,"='":47579,"Device":47580,"ר":47581,"ocaly":47582,"Remove":47583,"Ġ=====":47584,"Ġabdom":47585,"ideos":47586,"Dual":47587,"Fax":47588,"Ġbesie":47589,"ĠAdin":47590,"Ġdescrib":47591,"Ġiod":47592,"Limit":47593,"aunders":47594,"ĠAssassins":47595,"xxxx":47596,"ulner":47597,"Shipping":47598,"Item":47599,"fortune":47600,"Ġcipher":47601,"mA":47602,"acerb":47603,"ebus":47604,"Ġmodifiers":47605,"Added":47606,"prisingly":47607,"Dir":47608,"ĠArchangel":47609,"umbnails":47610,"Huh":47611,"ĠWARN":47612,"Role":47613,"usional":47614,"Ġcortical":47615,"ĠSCP":47616,"ĠException":47617,"ĠWarhammer":47618,")))":47619,"](":47620,"Ġsynaptic":47621,"Ġcached":47622,"archment":47623,"Ġtarg":47624,"Filter":47625,"ĠHades":47626,"Ġprinc":47627,"halla":47628,"ptoms":47629,"Ïģ":47630,"ructose":47631,"termination":47632,"Ġcompe":47633,"define":47634,"Ġprosec":47635,"require":47636,"ĠCorpse":47637,"Abstract":47638,"********************************":47639,"Used":47640,"ĠIbid":47641,"trak":47642,"ä¸Ń":47643,"ĠGABA":47644,"åĬ":47645,"ĠHegel":47646,"Jere":47647,"odore":47648,"í":47649,"namese":47650,"Origin":47651,"ĠMastery":47652,"gerald":47653,"Charges":47654,"--------------------":47655,"Forge":47656,"comings":47657,"åį":47658,"Ġ(&":47659,"Ġgrap":47660,"Mask":47661,"ĠGundam":47662,"generic":47663,"ĠMalf":47664,"raphics":47665,"Internal":47666,"ourge":47667,"Ġirresist":47668,"sterdam":47669,"Ġendogenous":47670,"Export":47671,"Ġë":47672,"poons":47673,"Ġabund":47674,"ĠQuantity":47675,"Issue":47676,"âĪĴ":47677,"cknow":47678,"Anonymous":47679,"ĠDRAG":47680,"Wikipedia":47681,"Ġsubdu":47682,"iverpool":47683,"apesh":47684,"Ability":47685,"ĠCentOS":47686,"iseum":47687,"lycer":47688,"Untitled":47689,"Ġlineback":47690,"Ġtomat":47691,"byte":47692,"tile":47693,"linux":47694,"Palest":47695,"canon":47696,"FAULT":47697,"ĠkHz":47698,"Ġhelic":47699,"ĠIGF":47700,"WARE":47701,"Feature":47702,"ĠGraveyard":47703,"ĠNemesis":47704,"akuya":47705,"inement":47706,"Ġwhence":47707,"ractical":47708,"Ping":47709,"tesque":47710,"scroll":47711,"espie":47712,"Ġasynchronous":47713,"ocre":47714,"Measure":47715,"morph":47716,"std":47717,"Settings":47718,"Course":47719,"Ġ],":47720,"Ïĥ":47721,"Documents":47722,"estern":47723,"Ġtf":47724,"Ġcircumcised":47725,"geant":47726,"Ġconject":47727,"ĠFolder":47728,"outube":47729,"ĠMedline":47730,"Status":47731,"ctr":47732,"anoia":47733,"ĠPowerShell":47734,"Chel":47735,"Loop":47736,"Ġresize":47737,"aphael":47738,"workshop":47739,"velength":47740,"hover":47741,"flush":47742,"Ġβ":47743,"Task":47744,"pedia":47745,"ptin":47746,"bidden":47747,"windows":47748,"ĠCaucas":47749,"aml":47750,"isoft":47751,"Ġrs":47752,"cgi":47753,"urrection":47754,"miah":47755,"ÏĤ":47756,"Ġplaythrough":47757,"Reddit":47758,"׾":47759,"Ġannotation":47760,"Ġnobles":47761,"seq":47762,"mares":47763,"Ġwik":47764,"foreseen":47765,"RPG":47766,"Ġreper":47767,"aredevil":47768,"arcity":47769,"/\"":47770,"Ġ});":47771,"Ġdiscont":47772,"ĠBinding":47773,"answered":47774,"Mesh":47775,"ĠMPEG":47776,"Ġperceptual":47777,"OTAL":47778,"ursive":47779,"ãģĦ":47780,"Ġplun":47781,"onential":47782,"ãĤ":47783,"ĠReloaded":47784,"iscopal":47785,"ĠDespair":47786,"FIX":47787,"Ġheterogeneity":47788,",[":47789,"ichick":47790,"DCS":47791,"Ġcooldown":47792,"................":47793,"Ġsomew":47794,"Battery":47795,"stract":47796,"Attempt":47797,"allery":47798,"ĠNept":47799,"Ġtac":47800,"ĠElemental":47801,"Function":47802,"Ġbindings":47803,"versive":47804,"ĠWarlock":47805,"Response":47806,"ĠNPCs":47807,"ollower":47808,"ĠReborn":47809,"Ġphenotype":47810,"uscript":47811,"Ġpecul":47812,"!/":47813,"Unique":47814,"ĠFreeBSD":47815,"ĠChero":47816,"Ġcolle":47817,"gently":47818,"Empty":47819,"rss":47820,"Ġdd":47821,"forge":47822,"ĠTraps":47823,"×Ķ":47824,"iblical":47825,"---------":47826,"uminati":47827,"login":47828,"asus":47829,"xual":47830,"ĠMiko":47831,"ĠDrac":47832,"ssh":47833,"Submit":47834,"ĠMultiplayer":47835,"leanor":47836,"Orig":47837,"anism":47838,"peror":47839,"ĠESV":47840,"Ġencour":47841,"å°":47842,"ĠPLoS":47843,"ĠCrusher":47844,"ocrates":47845,"ynchronous":47846,"§":47847,"ĠLuffy":47848,"Lastly":47849,"Ġdiffere":47850,"okane":47851,"Enh":47852,"ursor":47853,"Ġapopt":47854,"ĠTotem":47855,"ä½":47856,"Honest":47857,"xml":47858,"Created":47859,"Ġteleport":47860,"NRS":47861,"ccess":47862,"ilitary":47863,"ackets":47864,"Ġenchantment":47865,"ĠCunning":47866,"ortmund":47867,"Altern":47868,"Alternatively":47869,"ĠLuthor":47870,"Publisher":47871,"GBT":47872,"çĶ":47873,"Activity":47874,"Ġleptin":47875,"æĪ":47876,"ĠStarfleet":47877,"å¸":47878,"oooooooo":47879,"Ġlawy":47880,"Frag":47881,"ת":47882,"yright":47883,"cookie":47884,"Finish":47885,"wikipedia":47886,"ĠAbilities":47887,"interface":47888,"Ġglared":47889,"Engineers":47890,"ĠAtk":47891,"oteric":47892,"Ġbyte":47893,"ossibility":47894,"Label":47895,"ĠCSV":47896,"Ġè":47897,"ĠOblivion":47898,"android":47899,"rehensive":47900,"ĠCommands":47901,"clud":47902,"ĠTutorial":47903,"retched":47904,"irlwind":47905,"conserv":47906,"ministic":47907,"void":47908,"ernels":47909,"alias":47910,"ĠDraco":47911,"desktop":47912,"ĠMormonism":47913,"oÄŁ":47914,"kef":47915,"Ġtimestamp":47916,"WAYS":47917,"ãģĹ":47918,"\"(":47919,"eneg":47920,"CHAT":47921,"Ġnpm":47922,"ĠGrenade":47923,"rongh":47924,"dinand":47925,"Definition":47926,"ĠInteger":47927,"Ġmodifier":47928,"Ġdex":47929,"ĠParameters":47930,"andestine":47931,"ĠSHALL":47932,"Purchase":47933,"enaries":47934,"Ġstarship":47935,"Armor":47936,"Skill":47937,"Ġlookup":47938,"verages":47939,"Minimum":47940,"ĠBleach":47941,"Ġdf":47942,"inosaur":47943,"ixel":47944,"Zip":47945,"temp":47946,"ruby":47947,"Fram":47948,"sword":47949,"Minecraft":47950,"strous":47951,"Client":47952,"ĠBarbarian":47953,"æĹ":47954,"USER":47955,"ĠMehran":47956,"axies":47957,"ermanent":47958,"ĠHeader":47959,"ablishment":47960,"hyde":47961,"Snake":47962,"ĠTelesc":47963,"Pocket":47964,"Ġ........":47965,"Destroy":47966,"Method":47967,"ĠZup":47968,"olulu":47969,"Ġunemploy":47970,"Temp":47971,"ĠExplicit":47972,"人":47973,"cache":47974,"innamon":47975,"Ġunavoid":47976,"Summary":47977,"Ġappre":47978,"Ġtaxp":47979,"XXX":47980,"ieval":47981,"ĠSummon":47982,"å¤":47983,"Lear":47984,"ibliography":47985,"CLASS":47986,"dimension":47987,"ĠHorde":47988,"Ġfilesystem":47989,"ĠQiao":47990,"obbies":47991,"DIR":47992,"Ġimpedance":47993,"éĩ":47994,"Names":47995,"ĠDrupal":47996,"Applic":47997,"imei":47998,"ynchron":47999,"Ire":48000,"ĠMinion":48001,"ĠHaste":48002,"ä¿":48003,"Ġ(=":48004,"LinkedIn":48005,"Maps":48006,"ifacts":48007,"Damage":48008,"odynam":48009,"ĠShroud":48010,"Ancient":48011,"enhagen":48012,"Tact":48013,"anship":48014,"aturdays":48015,"ãģ«":48016,"ikhail":48017,"ãģ®":48018,"framework":48019,"lication":48020,"â̦]":48021,"Plug":48022,"ĠLilith":48023,"browser":48024,"offset":48025,"ĠJuda":48026,"ciating":48027,"console":48028,"Ġ=================":48029,"._":48030,"ĠPuzz":48031,"OPLE":48032,"erial":48033,"OHN":48034,"ĠGolem":48035,"ierrez":48036,"Ġ},":48037,"inition":48038,"insula":48039,"ĠEntered":48040,"greSQL":48041,"ĠFlask":48042,"ĠXCOM":48043,"fixes":48044,"ĠWeasley":48045,"arser":48046,"Ġrc":48047,"microsoft":48048,"HHHH":48049,"INFO":48050,"rehend":48051,"Ġpolymorph":48052,"Button":48053,"âī":48054,"QUI":48055,"twitch":48056,"jriwal":48057,"ĠSaiyan":48058,"Ġadherent":48059,"acters":48060,"arthed":48061,"âĢł":48062,"Ġfoss":48063,"ã":48064,"Quote":48065,"ependent":48066,"Ġhorr":48067,"UGC":48068,"Weiss":48069,"styles":48070,"advertisement":48071,"Credits":48072,"Lua":48073,"ĠUCH":48074,"Ġhorrend":48075,"Ġminion":48076,">,":48077,"ãĥ³":48078,"Ġinclud":48079,"Compar":48080,"Ġ[]":48081,"Ġ(<":48082,"Phones":48083,"paralleled":48084,"HTML":48085,"Ġ(%":48086,"raltar":48087,"Ġamd":48088,"Maximum":48089,"ĠSolitaire":48090,"SCP":48091,"ĠVaugh":48092,"ĠCLR":48093,"database":48094,"module":48095,"̶":48096,"Capture":48097,"Window":48098,"ubuntu":48099,"Includes":48100,"ĠUriel":48101,"ORPG":48102,"κ":48103,"âĪ":48104,"ä¸Ģ":48105,"Ġdexter":48106,"ĠGlac":48107,"slice":48108,"HAHAHAHA":48109,"\\\"":48110,"lations":48111,"ÙIJ":48112,"ĠAUTH":48113,"earch":48114,"ĠSocket":48115,"Character":48116,"Sort":48117,"Ġindist":48118,"/_":48119,"ĠAntar":48120,"ifix":48121,"Ġlich":48122,"variable":48123,"_(":48124,"Ġgui":48125,"Herm":48126,"elvet":48127,"è¯":48128,"Developer":48129,"Ġkcal":48130,"ciation":48131,"Transaction":48132,"Ġdocker":48133,"###":48134,"ĠVegeta":48135,"Result":48136,"ocamp":48137,"aughtered":48138,"Increase":48139,"aples":48140,"iannopoulos":48141,"zbek":48142,"estyles":48143,"emonium":48144,"è¿":48145,"ĠFANT":48146,"Reason":48147,"Elsewhere":48148,"\"\"":48149,"ĠArtifact":48150,"Authent":48151,"herical":48152,"Ġmembr":48153,"socket":48154,"Elsa":48155,"Condition":48156,"Ġlapt":48157,"Ġsorcerer":48158,"Layer":48159,"apters":48160,"Ġveter":48161,"Myth":48162,"ensical":48163,"ÏĢ":48164,"noxious":48165,"Ġunpre":48166,"Flags":48167,"OOOOOOOO":48168,"Ġincent":48169,"Combat":48170,"Session":48171,"Ġteleportation":48172,"éĢ":48173,"ortment":48174,"Admin":48175,"Fixed":48176,"×Ļ":48177,"Ġconfir":48178,"ãģŁ":48179,"morrow":48180,"osponsors":48181,"\\/":48182,"ictionary":48183,"Num":48184,"Ġquir":48185,"åº":48186,"à¨":48187,"Ġ<<":48188,"Attempts":48189,"ãģ§":48190,"λ":48191,"Features":48192,"XXXX":48193,"Ġinflamm":48194,"VERSION":48195,"ortality":48196,"spawn":48197,"ratulations":48198,"Ġcharism":48199,"Ġ&&":48200,"Dialogue":48201,"luster":48202,"<<":48203,"args":48204,"redients":48205,"Ġpredicate":48206,"qqa":48207,"etheus":48208,"Ġ(!":48209,"Ġshowc":48210,"cmd":48211,"bringer":48212,"Ġcoh":48213,"Input":48214,"ĠFANTASY":48215,"Ġfict":48216,"Blocks":48217,"Install":48218,"vector":48219,"umblr":48220,"agnar":48221,"Array":48222,"Ġembry":48223,"Ġtheoret":48224,"Ġhref":48225,"irrel":48226,"irements":48227,"iations":48228,"Ġ(/":48229,"Thumbnail":48230,"Ġhashes":48231,"^^":48232,"Copy":48233,"Ġeq":48234,"translation":48235,"Favorite":48236,"Fail":48237,"Ġogre":48238,"isites":48239,"Merit":48240,"ãģ¦":48241,"DATA":48242,"rarily":48243,"igmatic":48244,"Sequ":48245,"Els":48246,"ãģª":48247,"lehem":48248,"requency":48249,"aughed":48250,"Ġdistingu":48251,"Ġartific":48252,"Ġdwarves":48253,"Í":48254,"resy":48255,"~~":48256,"sofar":48257,"ideon":48258,"ozyg":48259,"EEEE":48260,"ĠMelee":48261,"大":48262,"tumblr":48263,"ssl":48264,"Wra":48265,"ONSORED":48266,"Ġvowel":48267,"},":48268,"Vari":48269,"cientious":48270,"Node":48271,"Ġsorce":48272,"========":48273,"perse":48274,"Detailed":48275,"isphere":48276,"Background":48277,"ĺħ":48278,"Redd":48279,"ìĿ":48280,"ãģ¨":48281,"ĠCTRL":48282,"Ġç":48283,"iculty":48284,"ername":48285,"Ġns":48286,"Deploy":48287,"Ġhapp":48288,"Ġ///":48289,"Begin":48290,"Ġgp":48291,"$.":48292,"Output":48293,"Suggest":48294,"×IJ":48295,"ĠToggle":48296,"Ġnutrit":48297,"Ġ\\\"":48298,"Ġpreval":48299,"Ġsubreddits":48300,"Menu":48301,"Amount":48302,"ĠWasteland":48303,"Ġsprites":48304,"Ġshader":48305,"Ġ;)":48306,"NAME":48307,"CLUD":48308,"Ġgoblin":48309,"Refer":48310,"ÙĴ":48311,"á¹":48312,"Improved":48313,"endiary":48314,"Ġassail":48315,"chieve":48316,"reply":48317,"Ġcontrad":48318,"cients":48319,"GROUP":48320,"Controller":48321,"omsky":48322,"chemist":48323,"packages":48324,"ombies":48325,"scl":48326,"Ġibn":48327,"çĽ":48328,":(":48329,"ĠMinotaur":48330,"niper":48331,"====":48332,"Ġsubsc":48333,"è¦":48334,"Ġinteger":48335,"Ġ\"-":48336,"Ġtheorem":48337,"utenberg":48338,"Trigger":48339,"github":48340,"ä¼":48341,"##":48342,"xtap":48343,"oké":48344,"ilial":48345,"idepress":48346,":\\":48347,"Param":48348,"Correction":48349,"ïve":48350,"Chest":48351,"ש":48352,"ĠÏĦ":48353,"Ġrespawn":48354,"Ġrall":48355,"Ġcreatine":48356,"umsy":48357,"ĠTemplate":48358,"foo":48359,"query":48360,"Ġmanufact":48361,"Hardware":48362,"iframe":48363,"Ġ-------":48364,"Ġrecip":48365,"ĠAttributes":48366,"Ġforeskin":48367,"ãĤĭ":48368,"ãĥĦ":48369,"uania":48370,"................................................................":48371,"Ġphylogen":48372,"eaturing":48373,"Ġsprite":48374,"Ġinvari":48375,"DonaldTrump":48376,"({":48377,"ĠMalfoy":48378,"Gamer":48379,"ĠPlugin":48380,"γ":48381,"Query":48382,"ĠPuzzles":48383,"inventory":48384,"trl":48385,"Insert":48386,"Ġawa":48387,"ĠWerewolf":48388,"Ġhorizont":48389,"×ŀ":48390,"Ġcunt":48391,"]]":48392,"ĠByz":48393,"Mouse":48394,"Ġ[[":48395,"ĠCthulhu":48396,"ĠDRAGON":48397,"Default":48398,"ĠPresbyter":48399,"Ġff":48400,"Ġorcs":48401,"Construct":48402,"ĠDebug":48403,"Ġ*/":48404,"×ij":48405,"Ġembr":48406,"License":48407,"css":48408,"incinn":48409,"Prosecut":48410,"Ġsugg":48411,"å¾":48412,"ĠUndead":48413,"æĿ":48414,"Ġfs":48415,"Ġthw":48416,"Vector":48417,"åĮ":48418,"settings":48419,"å¯":48420,"Ġssh":48421,"ĠConverted":48422,"ãĤĴ":48423,"risome":48424,"Ġagre":48425,"Collection":48426,"cmp":48427,"puter":48428,"alloc":48429,"Ġé":48430,"ascade":48431,"ĠSpells":48432,"Ġ:-)":48433,"Haunted":48434,"Ġadolesc":48435,"FORMATION":48436,"ĠImperium":48437,"ãĥ¼":48438,"Supplement":48439,"Render":48440,"Theme":48441,"ĠTorment":48442,"([":48443,"ëĭ":48444,"Ġhtml":48445,"Ġjuven":48446,"ĠSiber":48447,"Ġdaemon":48448,"ivariate":48449,"objects":48450,"negie":48451,"Ġindu":48452,"landish":48453,"Meta":48454,"Impl":48455,"Ġglyph":48456,"Ġ-->":48457,"Ġstreng":48458,"agascar":48459,"guyen":48460,"((":48461,")[":48462,"ĠNorn":48463,"Ġhippocamp":48464,"Ġ¯":48465,"îĢ":48466,"Connection":48467,"PATH":48468,"mbuds":48469,"ĠShards":48470,"Ġadvoc":48471,"Ġsimulac":48472,"âĸij":48473,"!?\"":48474,"ĠPotion":48475,"Ġamulet":48476,"ĠFnatic":48477,"Ġcryptoc":48478,"wav":48479,"radius":48480,"pkg":48481,"ĠMFT":48482,"æĢ":48483,"Ġtoile":48484,"Items":48485,"ifference":48486,"errors":48487,"ĠCelt":48488,"Ġunpop":48489,"ilogy":48490,"6666":48491,"hesda":48492,"Instruct":48493,"å·":48494,"Materials":48495,"ettings":48496,"Percent":48497,"Ġresistor":48498,"tymology":48499,"Ġdeprecated":48500,"Ġgrep":48501,"ĠWRITE":48502,"Ġtriv":48503,"Ġscrut":48504,"[/":48505,"anyl":48506,"skirts":48507,"MSN":48508,"ĠCodec":48509,"ecd":48510,"Anth":48511,"){":48512,"%]":48513,"veyard":48514,"aspberry":48515,"ãĢ":48516,"Reward":48517,"rha":48518,"Stretch":48519,"]-":48520,"Prev":48521,"Context":48522,"Ġlinux":48523,"HAHA":48524,"perties":48525,"ĠVIDE":48526,"Domain":48527,"Ġmurd":48528,"ĠLegions":48529,"apache":48530,"æŃ":48531,"Pause":48532,"Temperature":48533,"ufact":48534,"igslist":48535,"ĠRetrieved":48536,"èª":48537,"ãģĮ":48538,"Ingredients":48539,"ruary":48540,"dyl":48541,"Alias":48542,"ĠÎĶ":48543,"Ġinval":48544,"amsung":48545,"!--":48546,"olean":48547,"æī":48548,"ãģ¯":48549,"Ġcoefficients":48550,"ĠDHCP":48551,"âĨĴ":48552,"utonium":48553,":[":48554,"âĹ":48555,"cli":48556,"Container":48557,"å¼":48558,"nexus":48559,"SOURCE":48560,"Ò":48561,"=/":48562,"Ġmysql":48563,"ĠGained":48564,"Ġ/*":48565,"uncture":48566,"Ġstatically":48567,"âĸł":48568,"æĺ¯":48569,"æ°":48570,"estamp":48571,"Cache":48572,"ulkan":48573,"staking":48574,"apter":48575,"ãģ¾":48576,"Ġμg":48577,"Ġtremend":48578,"ĠPiercing":48579,"naissance":48580,"ĠHealer":48581,"Enabled":48582,"éģ":48583,"âĸ":48584,"ĠThumbnails":48585,"Ġhither":48586,"Format":48587,"utherland":48588,"íķ":48589,"Ġdestro":48590,"fff":48591,"execute":48592,"msg":48593,"romancer":48594,"ĠCanaver":48595,"ĠVaults":48596,"oided":48597,"iage":48598,"Ġimg":48599,"summary":48600,"]);":48601,"ĠABE":48602,"ĠGamergate":48603,"utherford":48604,"Ġoverwrite":48605,"enment":48606,"æķ":48607,"Ġsystemd":48608,"tif":48609,"]).":48610,"ãĤ¤":48611,"Widget":48612,"======":48613,"(-":48614,"Ġ\"+":48615,"ĠIncarnation":48616,"æĥ":48617,"���":48618,"GUI":48619,"èĥ":48620,"forums":48621,"Ġrunes":48622,"Ġâī¤":48623,"Ġdefic":48624,"Distance":48625,"directory":48626,"ĠHorus":48627,"iltr":48628,"ortium":48629,"Ġ./":48630,"bda":48631,"owship":48632,"ĠâĨij":48633,"}.":48634,"åĩ":48635,"1027":48636,"Weapons":48637,"lucent":48638,"Ġauth":48639,";;":48640,"Recommended":48641,"Ġsurv":48642,"Ġvm":48643,"ĠStronghold":48644,"Ġparan":48645,"ĠTrance":48646,"æĺ":48647,"Ġsovere":48648,"Ġcorrid":48649,"ĠPwr":48650,"Ġ[/":48651,"Ġseq":48652,"Population":48653,"Ġ[];":48654,"Ġreferen":48655,"ĠInstr":48656,"ĠStamina":48657,"kernel":48658,"Python":48659,"-+":48660,"Ġallele":48661,"éĽ":48662,"isode":48663,"ä¸į":48664,"otonin":48665,"modules":48666,"Notable":48667,"Spell":48668,"\\\\":48669,"Pref":48670,"Ġdatas":48671,"setup":48672,"Ġhapl":48673,"Height":48674,"åĭ":48675,"ãģ£":48676,"]),":48677,"Handle":48678,"umenthal":48679,"Package":48680,"Ġenthus":48681,"Ġunsus":48682,"Narr":48683,"Examples":48684,"FAQ":48685,"REDACTED":48686,"Ġnotor":48687,"Enable":48688,"Pattern":48689,"aeda":48690,">.":48691,"CHECK":48692,"Ġ����":48693,"Ġ'.":48694,"Ġãĥ":48695,"append":48696,"����":48697,"gemony":48698,"terness":48699,"ĠHaku":48700,"NVIDIA":48701,"queue":48702,"Bind":48703,"Ġneigh":48704,"armor":48705,"retty":48706,"LOD":48707,"plugins":48708,"Ġ/>":48709,"TYPE":48710,"Ġ4096":48711,"-------":48712,"Preview":48713,"FML":48714,"Ġproletarian":48715,"zees":48716,"enfranch":48717,"ãģĨ":48718,"Ctrl":48719,"Module":48720,"ĠSurviv":48721,"ĠStarcraft":48722,"rored":48723,"reddit":48724,"Ġrul":48725,"Ġtx":48726,"Ġmage":48727,"Sword":48728,"Ġ~/":48729,"Effects":48730,"éļ":48731,"ä¹":48732,"Sensor":48733,"Solution":48734,"ãģĻ":48735,"Arcade":48736,"Ġpredec":48737,"Values":48738,"Length":48739,"Ġfortun":48740,"ttp":48741,"\"[":48742,"tmp":48743,"ĠBerserker":48744,"åĨ":48745,"ositories":48746,"Ġcouncill":48747,"ffff":48748,"));":48749,"Recipe":48750,"ĠASCII":48751,"âĦ¢:":48752,"ä":48753,"Ġhorm":48754,"=>":48755,"sers":48756,"ãģĭ":48757,"Recommend":48758,"['":48759,"agame":48760,"Animation":48761,"aucuses":48762,"Discussion":48763,"Ġhelicop":48764,"å¿":48765,"Float":48766,"Component":48767,"instance":48768,"Ġfoo":48769,"localhost":48770,"=-":48771,"Offset":48772,"Psy":48773,"ĠGohan":48774,"buquerque":48775,"Ġdefe":48776,"chwitz":48777,"parse":48778,"Ġdors":48779,"Ġspons":48780,"Ġasync":48781,"agonists":48782,"Ġindo":48783,".>>":48784,"ĠDisciple":48785,"Ġfilename":48786,"rency":48787,"ĠDise":48788,"Ġ\"/":48789,"template":48790,"ãĤ¹":48791,"swers":48792,"Ġ++":48793,"Ġ[(":48794,"thora":48795,"ĠDepths":48796,"livious":48797,"Ġdisadvant":48798,"foundland":48799,"Upload":48800,"Ġ§§":48801,"Ġsophistic":48802,";}":48803,"izont":48804,"\"}":48805,"estial":48806,"Ranked":48807,"ĠOccupations":48808,"LEASE":48809,"ĠOgre":48810,"folder":48811,"Plot":48812,"farious":48813,"Ġsuscept":48814,"Types":48815,"Discuss":48816,"Ġ'/":48817,"æµ":48818,"earable":48819,"æ³":48820,"Tile":48821,"iatus":48822,"åŃ":48823,"Ġreperto":48824,"Helper":48825,"Returns":48826,"ä¸Ĭ":48827,"imaru":48828,"Ġreq":48829,"Ġdissatisf":48830,"multipl":48831,"}{":48832,"-[":48833,"itial":48834,"*/":48835,"Config":48836,"Example":48837,"ĠjQuery":48838,"Mods":48839,"ĠGPIO":48840,"Ġlaun":48841,"layout":48842,"cised":48843,"Ġ......":48844,"+++":48845,"prototype":48846,"Exception":48847,"Ġsubsections":48848,"Ġresemb":48849,"Ġâĩ":48850,"ĠPubMed":48851,"username":48852,"Ġaggro":48853,"éĥ":48854,"Ġ};":48855,"ĠMages":48856,"ryu":48857,"apons":48858,"Optional":48859,"ĠAncients":48860,"ãĤĬ":48861,"Quotes":48862,"oaded":48863,"Ġsuspic":48864,"inline":48865,"omial":48866,"ĠMahjong":48867,"auntlets":48868,"Ġanarchism":48869,"Ġsubclass":48870,"ĠMLG":48871,"...]":48872,"Dialog":48873,"uphem":48874,"Ġrecursive":48875,"7601":48876,"frac":48877,"Else":48878,"ĠSeverus":48879,"},{\"":48880,"ĠCLIENT":48881,"Ġjavascript":48882,"sama":48883,"ĠLearns":48884,"ãĤĤ":48885,"Upgrade":48886,"Listener":48887,"Ġsnipp":48888,"Ġrune":48889,"ĠTTL":48890,"ertation":48891,"olicy":48892,"=\"\"":48893,"«ĺ":48894,"Ġexpr":48895,"ovych":48896,"Ġãģ":48897,"_-_":48898,"munition":48899,"////":48900,"func":48901,">>>>":48902,"Provider":48903,"Ïī":48904,"BUG":48905,"Ġ[-":48906,"Ġarrang":48907,"merce":48908,"ãĥ":48909,"incarn":48910,"Valid":48911,"ĠAether":48912,"ãĤĵ":48913,"ĠUTF":48914,"ĠMonstrous":48915,"ãĤĮ":48916,"hedon":48917,"áµ":48918,":#":48919,"ĠFrieza":48920,"padding":48921,"Reviewer":48922,"Ġpsychiat":48923,"yrinth":48924,"ĠâĶĤ":48925,"hillary":48926,"Static":48927,"Newsletter":48928,"Avg":48929,"Ġfn":48930,"Topic":48931,"choes":48932,"Ġnewsp":48933,"á¸":48934,"Ġ[+":48935,"~~~~~~~~~~~~~~~~":48936,":]":48937,"apego":48938,"buf":48939,"Translation":48940,"ById":48941,"Ġmmol":48942,"ãĥ¼ãĥ":48943,"å½":48944,"ãĤī":48945,"Ġparser":48946,"ãĥª":48947,"`,":48948,"Lair":48949,")}":48950,"ypes":48951,"adobe":48952,"Ġancest":48953,"ernel":48954,"ĠNULL":48955,"ç«":48956,"anguages":48957,"Increases":48958,"æĦ":48959,"utorial":48960,"ithmetic":48961,"dll":48962,"ĠArcane":48963,"çī":48964,"Ġtc":48965,"urtles":48966,"èĪ":48967,"Bytes":48968,"Slot":48969,"ĠBahá":48970,"Weapon":48971,"widget":48972,"querque":48973,"Ġembodiments":48974,"å¥":48975,"WARN":48976,"swer":48977,"thumbnails":48978,"FFFF":48979,"inguishable":48980,"Ġâī":48981,"Ġ${":48982,"AAAAAAAA":48983,"Conclusion":48984,"ĻĤ":48985,"disable":48986,"Rect":48987,"Ġsubp":48988,"Ġ().":48989,"ĠDetected":48990,"èĢ":48991,"[]":48992,"Ġcoerc":48993,"ĠmM":48994,"recated":48995,"fusc":48996,"ĠSorce":48997,"çĶŁ":48998,").[":48999,"Ġ})":49000,"mobi":49001,"yip":49002,"Acknowled":49003,"ternity":49004,"iqueness":49005,"ython":49006,"><":49007,"Ġstd":49008,"Url":49009,"Ġnamespace":49010,"Ġtion":49011,"oother":49012,"Ó":49013,"Ġhemor":49014,"Ġrg":49015,"ventory":49016,"ãĤ¢":49017,"anamo":49018,"Socket":49019,"Topics":49020,"apeshifter":49021,"gnu":49022,"Ġdetrim":49023,"`.":49024,"romeda":49025,"çIJ":49026,"Ġlambda":49027,"Compan":49028,"Variable":49029,"Ġusb":49030,"ĠAdamant":49031,"ournal":49032,"Ġcovari":49033,"ãĥ©":49034,"éĸ":49035,"åİ":49036,"otaur":49037,"Ġ(),":49038,"Marginal":49039,"ãģı":49040,"Ġphysic":49041,"adeon":49042,"RESULTS":49043,"200000":49044,"ãģį":49045,"udeb":49046,"ãģĵ":49047,"COMPLE":49048,"Ġmsg":49049,"ghazi":49050,"/*":49051,"ĠDeity":49052,"Ġdisapp":49053,"Availability":49054,"Ġillum":49055,"à©":49056,"ptives":49057,",âĢĶ":49058,"chnology":49059,"Ġaccur":49060,"Ġapi":49061,"Obj":49062,"ãĤ«":49063,"ãĤ¸":49064,"ä¹ĭ":49065,"ËĪ":49066,"Ġtcp":49067,"Required":49068,".<":49069,"\".[":49070,"Ġ~/.":49071,"Ġobser":49072,"RFC":49073,"Ġintegers":49074,"åī":49075,"Installation":49076,"Ô":49077,"ó":49078,"csv":49079,"ãĥ«":49080,"ĠNoticed":49081,"âĸĵ":49082,"Tumblr":49083,"Reply":49084,"||":49085,"Ġconclud":49086,"Ġ))":49087,"ebin":49088,"sql":49089,"Closure":49090,"++++":49091,"],[":49092,"âĹı":49093,"Ġprolet":49094,"Ġ>=":49095,"estinal":49096,"Ġ[*":49097,"ĠInquisitor":49098,"Ġcmd":49099,"FINE":49100,"CRIP":49101,"Ġvertex":49102,"TeX":49103,"///":49104,"Ö¼":49105,"iscons":49106,"Ġmyster":49107,"Changed":49108,"timeout":49109,"irtual":49110,"Methods":49111,"Ġcerts":49112,"texture":49113,"Roaming":49114,"Proxy":49115,"Override":49116,"éĹ":49117,"utf":49118,"python":49119,"ĠRarity":49120,"ilitarian":49121,"çľ":49122,"().":49123,"æł":49124,"Ġbuf":49125,"åij":49126,"çķ":49127,"Ġ*.":49128,"umerable":49129,"~~~~":49130,"å¦":49131,"Ġsimultane":49132,"Ġjson":49133,"Requires":49134,"Ġperl":49135,"Interface":49136,"rupal":49137,":":49242,"itialized":49243,"HTTP":49244,"Trivia":49245,"Sov":49246,"wrapper":49247,"={":49248,"ĠAzerb":49249,"aeper":49250,"Ġneighb":49251,"initions":49252,"Ġsts":49253,"ĠSasuke":49254,"#$":49255,"uliffe":49256,"æĸ¹":49257,"++++++++++++++++":49258,"ĠElven":49259,"ãģĤ":49260,"Ġartif":49261,"Folder":49262,"Ġà¨":49263,"åĤ":49264,"Ġphyl":49265,"uggest":49266,"blance":49267,"ãģł":49268,"Requirements":49269,"Usage":49270,"Ġinitialized":49271,"ã쮿":49272,"conservancy":49273,"ĠReincarn":49274,")|":49275,"Ġantioxid":49276,"ĠClicker":49277,"Ġunlaw":49278,"Ġ\\(":49279,"ãĥĪ":49280,"Ġ[*]":49281,"Characters":49282,"////////":49283,"ãĢIJ":49284,"ãĤ·":49285,"webkit":49286,"ãĢij":49287,"Ġxp":49288,"alkyrie":49289,"Console":49290,"());":49291,"ĠKorra":49292,"\"))":49293,"oooooooooooooooo":49294,"Timer":49295,"////////////////":49296,"yout":49297,"engeance":49298,"emetery":49299,"Ġmages":49300,"mods":49301,"Null":49302,"Ġphilos":49303,"ascript":49304,"Ġaddon":49305,"ĠâĸĪ":49306,"emale":49307,"----------------------------------------------------------------":49308,"Ġ\\\\":49309,"=[":49310,"ĠParables":49311,"ãĥĨ":49312,"VALUE":49313,"Ġ@@":49314,"Ġuint":49315,"${":49316,"cpp":49317,"%%":49318,"Ġ(âĪĴ":49319,"utils":49320,"prefix":49321,"å°Ĩ":49322,"ãĥŃ":49323,"Completed":49324,"Ġgoto":49325,"ãĤ¯":49326,"Winged":49327,"perty":49328,"[\"":49329,"ãĥİ":49330,"ĠScythe":49331,"Ġæľ":49332,"Ġ!=":49333,"Buffer":49334,"docker":49335,"ĠWATCHED":49336,"èĢħ":49337,"())":49338,"Ġdst":49339,"SIZE":49340,"ĠDemonic":49341,"Ġresil":49342,"ãĤ¿":49343,"Ġpione":49344,"cpu":49345,"++)":49346,"TEXT":49347,"Ġdiscrep":49348,"debian":49349,"quished":49350,"Ġacknow":49351,"Ġtrave":49352,"Ġgcc":49353,"Catalog":49354,"ctrl":49355,"ĠMoroc":49356,"Ġcpu":49357,"Ġ];":49358,"ĠSorceress":49359,"Introduced":49360,"Frames":49361,"Ġcondem":49362,"¶æ":49363,"~~~~~~~~":49364,"ĠEmacs":49365,"][/":49366,"Ġglim":49367,"Init":49368,"ĠPrimordial":49369,"ãĥĥ":49370,"Ġ+=":49371,"Ġblat":49372,"à¼":49373,"------------------------------------------------":49374,"gpu":49375,"ãĥĥãĥĪ":49376,"Ġxml":49377,"Ġboolean":49378,"References":49379,"Ġ?)":49380,"Ġsatell":49381,"Queue":49382,"Ġpestic":49383,"Ġ}}":49384,"Attribute":49385,"Ġdx":49386,"ĠDefin":49387,"Synopsis":49388,"..................":49389,"ãĥ¬":49390,"plugin":49391,"Disable":49392,"0000000000000000":49393,")\\":49394,"ĠIchigo":49395,"println":49396,"rontal":49397,"Setup":49398,"Ġ��������":49399,"å§":49400,"âĸº":49401,"ĠPengu":49402,"ailability":49403,"Duration":49404,"Timeout":49405,"ãĢĮ":49406,"Ġbehav":49407,"Reviewed":49408,"Ġtoget":49409,"\\.":49410,"lished":49411,"Ġthous":49412,"Ġperpend":49413,"ecause":49414,"Layout":49415,"è»":49416,"ĠDexterity":49417,"unsigned":49418,"+=":49419,"[[":49420,"ĠRunes":49421,"ãĤ¦":49422,"};":49423,"})":49424,"FTWARE":49425,"ength":49426,"milo":49427,"duino":49428,"天":49429,"ĠClojure":49430,"ļé":49431,"ãĥ¥":49432,"gradient":49433,"Ġ\"\"\"":49434,"âĨij":49435,"@#":49436,"JSON":49437,"Ġproport":49438,"addr":49439,"});":49440,"ãĥIJ":49441,"ä¸ī":49442,"Ġtmp":49443,"å£":49444,"../":49445,"zsche":49446,"Ġâμ":49447,"Entity":49448,"æ©Ł":49449,"ĠâĶľâĶĢâĶĢ":49450,"filename":49451,"{{":49452,"@@":49453,"ĠSeym":49454,"Ġ/**":49455,"ĠSummoner":49456,"Quantity":49457,"ç·":49458,"Attach":49459,"Ġbool":49460,"Texture":49461,"Ġopio":49462,".}":49463,"ãĥĭ":49464,"integer":49465,"Ġregex":49466,"Ġnomine":49467,"ription":49468,"ãģ®ç":49469,"ãĥķ":49470,"Ġsubparagraph":49471,"GGGG":49472,"Ġexplan":49473,"Header":49474,"Spawn":49475,"toggle":49476,"²¾":49477,"Abyss":49478,"expr":49479,"ĠZerg":49480,"ĠGrimoire":49481,"Contents":49482,"Instance":49483,"cyclopedia":49484,"ãĥĹ":49485,"ĠTakeru":49486,"=(":49487,"代":49488,"\\)":49489,"Ġrgb":49490,"htt":49491,"bryce":49492,"Ġlivest":49493,"ĠAnnotations":49494,"âĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢ":49495,"berus":49496,"ntil":49497,"Ġskelet":49498,"callback":49499,"åħī":49500,"Joined":49501,"ãĤª":49502,"Ġargs":49503,"artifacts":49504,"Ġå¤":49505,"ÃĽ":49506,"ãĥŀ":49507,"Streamer":49508,"}\"":49509,"Ġunden":49510,"ãĥģ":49511,"Īè":49512,"ãĥ£":49513,"Ġ0004":49514,"Ġ\\'":49515,"ãĤ°":49516,"ĠCONFIG":49517,"Ġ#####":49518,"``":49519,"anguage":49520,"Ġ*)":49521,"Template":49522,"MODE":49523,"Ġ00000000":49524,"'';":49525,">":49625,"Ġlvl":49626,"Footnote":49627,"Iter":49628,"####":49629,"ãĥij":49630,"ĠCarbuncle":49631,"Ġ[+]":49632,"Ġmathemat":49633,"Allows":49634,"Ġ4090":49635,"Async":49636,"ģ«":49637,"Ͻ":49638,"))))":49639,"á½":49640,"Ġcx":49641,"Ġansw":49642,"{\"":49643,"ãĥŁ":49644,"addons":49645,"Filename":49646,"Appearances":49647,"ĠãĢĮ":49648,"Ġaddr":49649,"Ġcharact":49650,"glomer":49651,"Advertisements":49652,"Ġdracon":49653,"ĠFenrir":49654,"Ġ();":49655,"ĠCitiz":49656,"acebook":49657,"Ġparams":49658,"]=":49659,"Ġsubscript":49660,"Ġentreprene":49661,"tnc":49662,"iversal":49663,"Ġmillenn":49664,"ithub":49665,"/>":49666,"Ġ\"{":49667,"Frameworks":49668,"avorite":49669,"Ġ])":49670,"Constructed":49671,"fml":49672,"ãĥį":49673,"################################":49674,"-|":49675,"¥ŀ":49676,"Ġwithd":49677,"ĠCth":49678,"AppData":49679,"Msg":49680,":{":49681,"ãĤ¨":49682,"Ġtuple":49683,"ç¥ŀ":49684,"Ġintrins":49685,"ĠCooldown":49686,"ategory":49687,"^{":49688,"ãĥĬ":49689,"''''":49690,"çͰ":49691,"ĠDEBUG":49692,"Ġcannabin":49693,"ocobo":49694,"Invalid":49695,"ãĥĢ":49696,"Compat":49697,"Ġ({":49698,"Removed":49699,"Ġconvol":49700,"}:":49701,"interstitial":49702,"Ġ\"":49721,"initialized":49722,"Ġexting":49723,"Poké":49724,"Parameters":49725,"¶ħ":49726,"########":49727,"NULL":49728,"ãĥĩ":49729,"groupon":49730,"\\-":49731,"ãĥı":49732,"ãĤ±":49733,"Ġsubsequ":49734,"ccording":49735,"ĠMODULE":49736,"ĠProtoss":49737,"\"},{\"":49738,"Ġ..............":49739,"Integer":49740,"endif":49741,"ãĥĻ":49742,"parser":49743,"lambda":49744,"Ġcarbohyd":49745,"ĠUnloaded":49746,"_{":49747,"âĸ¬âĸ¬":49748,"Ġdebian":49749,"]}":49750,"ãĤ¶":49751,"Parameter":49752,"ãĤ£":49753,"ãĤ»":49754,"Ġ$_":49755,"İĭ":49756,"Ġiterator":49757,"ãĤ¬":49758,"WINDOWS":49759,"CONCLUS":49760,"Ġ\"\\":49761,"umbn":49762,"(&":49763,"ãĥ©ãĥ³":49764,"usercontent":49765,"ometimes":49766,"METHOD":49767,"ãĥ¢":49768,"potion":49769,"ãĥ¯":49770,"everal":49771,"Ġweap":49772,"minecraft":49773,"================================":49774,"printf":49775,"ĠShinra":49776,"Ġreluct":49777,"\\\",":49778,"Runtime":49779,"xff":49780,"ĠAbyssal":49781,"akeru":49782,"Ġ\\(\\":49783,"\"/>":49784,"efficients":49785,"Ü":49786,"avascript":49787,"Ġbehavi":49788,"++;":49789,"=#":49790,"Attributes":49791,"âĵĺ":49792,"lvl":49793,"¬¼":49794,"/**":49795,"Gameplay":49796,"ĠLeilan":49797,">)":49798,"=\"/":49799,"Ġ));":49800,"ãĥĨãĤ£":49801,"ġ":49802,".":49836,"DEBUG":49837,"âĶģ":49838,"ãĢı":49839,"WithNo":49840,"Redditor":49841,"ĠâĶľ":49842,"Ġfmt":49843,"ãĢİ":49844,"Ġmsec":49845,"ĪĴ":49846,"eatures":49847,"itially":49848,"\"\"\"":49849,"ãĥ¼ãĤ¯":49850,"Textures":49851,"\"},":49852,"\"><":49858,"||||":49859,"ß":49860,"iterator":49861,"è£ħ":49862,"Ĥª":49863,"ojure":49864,"ãħĭãħĭ":49865,"ãĥ¼ãĥ³":49866,"Ġprintln":49867,"Ġ][":49868,"âĸĪâĸĪ":49869,"âķIJ":49870,"\\\":":49871,"senal":49872,"é¾į":49873,"é¾":49874,"Ġcryst":49875,"ãĥķãĤ¡":49876,"ĠCosponsors":49877,"ãĤ·ãĥ£":49878,"Magikarp":49879,"ĠMagicka":49880,"âĸĪâĸĪâĸĪâĸĪ":49881,",,,,,,,,":49882,"vertisement":49883,"âĶĢâĶĢâĶĢâĶĢ":49884,"ãĥķãĤ©":49885,"luaj":49886,"CLASSIFIED":49887,".''.":49888,"byss":49889,"Ġ{:":49890,"ĠNanto":49891,"Ġptr":49892,"Ġ%%":49893,"Ġteasp":49894,"[_":49895,"ãĥ¤":49896,"ħĭ":49897,"ŃĶ":49898,"Ġpci":49899,"Ġ\"<":49900,"GGGGGGGG":49901,"æĪ¦":49902,"--+":49903,"ãĤ®":49904,"Ġ())":49905,"âĸ¬":49906,"Ġsizeof":49907,"}}}":49908,";;;;;;;;":49909,">]":49910,"âĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪ":49911,"Vaults":49912,"Ġistg":49913,"Ġnewcom":49914,"=]":49915,"¿½":49916,"ĵĺ":49917,"{\\":49918,"Args":49919,"Ġexha":49920,"(\\":49921,"Ġunnecess":49922,"\"}],\"":49923,"ĠUNCLASSIFIED":49924,">(":49925,"ãĤ¢ãĥ«":49926,"æ©":49927,"70710":49928,"Ń·":49929,"ãĥ¼ãĥĨãĤ£":49930,"ĠSakuya":49931,"ãĥĥãĥī":49932,"ĠPyrrha":49933,"escription":49934,"VIDIA":49935,"================================================================":49936,"Ġlooph":49937,"=~":49938,"Ġcumbers":49939,"Ġ)]":49940,"govtrack":49941,"ĠãĤµ":49942,"Ġsubur":49943,"Þ":49944,"Ġâī¡":49945,"Interstitial":49946,"ãĥ¼ãĥĨ":49947,"Ġgobl":49948,"ãĥīãĥ©":49949,"oldown":49950,"ģĸ":49951,"Depths":49952,"Ġ());":49953,"Ġ._":49954,"20439":49955,"Ġç¥ŀ":49956,"ãģ®å®":49957,"ãĤ¼":49958,"Ġ$\\":49959,"âĹ¼":49960,"Ġencount":49961,"Ġ": 48457, "Ġstreng": 48458, "agascar": 48459, "guyen": 48460, "((": 48461, ")[": 48462, "ĠNorn": 48463, "Ġhippocamp": 48464, "Ġ¯": 48465, "îĢ": 48466, "Connection": 48467, "PATH": 48468, "mbuds": 48469, "ĠShards": 48470, "Ġadvoc": 48471, "Ġsimulac": 48472, "âĸij": 48473, "!?\"": 48474, "ĠPotion": 48475, "Ġamulet": 48476, "ĠFnatic": 48477, "Ġcryptoc": 48478, "wav": 48479, "radius": 48480, "pkg": 48481, "ĠMFT": 48482, "æĢ": 48483, "Ġtoile": 48484, "Items": 48485, "ifference": 48486, "errors": 48487, "ĠCelt": 48488, "Ġunpop": 48489, "ilogy": 48490, "6666": 48491, "hesda": 48492, "Instruct": 48493, "å·": 48494, "Materials": 48495, "ettings": 48496, "Percent": 48497, "Ġresistor": 48498, "tymology": 48499, "Ġdeprecated": 48500, "Ġgrep": 48501, "ĠWRITE": 48502, "Ġtriv": 48503, "Ġscrut": 48504, "[/": 48505, "anyl": 48506, "skirts": 48507, "MSN": 48508, "ĠCodec": 48509, "ecd": 48510, "Anth": 48511, "){": 48512, "%]": 48513, "veyard": 48514, "aspberry": 48515, "ãĢ": 48516, "Reward": 48517, "rha": 48518, "Stretch": 48519, "]-": 48520, "Prev": 48521, "Context": 48522, "Ġlinux": 48523, "HAHA": 48524, "perties": 48525, "ĠVIDE": 48526, "Domain": 48527, "Ġmurd": 48528, "ĠLegions": 48529, "apache": 48530, "æŃ": 48531, "Pause": 48532, "Temperature": 48533, "ufact": 48534, "igslist": 48535, "ĠRetrieved": 48536, "èª": 48537, "ãģĮ": 48538, "Ingredients": 48539, "ruary": 48540, "dyl": 48541, "Alias": 48542, "ĠÎĶ": 48543, "Ġinval": 48544, "amsung": 48545, "!--": 48546, "olean": 48547, "æī": 48548, "ãģ¯": 48549, "Ġcoefficients": 48550, "ĠDHCP": 48551, "âĨĴ": 48552, "utonium": 48553, ":[": 48554, "âĹ": 48555, "cli": 48556, "Container": 48557, "å¼": 48558, "nexus": 48559, "SOURCE": 48560, "Ò": 48561, "=/": 48562, "Ġmysql": 48563, "ĠGained": 48564, "Ġ/*": 48565, "uncture": 48566, "Ġstatically": 48567, "âĸł": 48568, "æĺ¯": 48569, "æ°": 48570, "estamp": 48571, "Cache": 48572, "ulkan": 48573, "staking": 48574, "apter": 48575, "ãģ¾": 48576, "Ġμg": 48577, "Ġtremend": 48578, "ĠPiercing": 48579, "naissance": 48580, "ĠHealer": 48581, "Enabled": 48582, "éģ": 48583, "âĸ": 48584, "ĠThumbnails": 48585, "Ġhither": 48586, "Format": 48587, "utherland": 48588, "íķ": 48589, "Ġdestro": 48590, "fff": 48591, "execute": 48592, "msg": 48593, "romancer": 48594, "ĠCanaver": 48595, "ĠVaults": 48596, "oided": 48597, "iage": 48598, "Ġimg": 48599, "summary": 48600, "]);": 48601, "ĠABE": 48602, "ĠGamergate": 48603, "utherford": 48604, "Ġoverwrite": 48605, "enment": 48606, "æķ": 48607, "Ġsystemd": 48608, "tif": 48609, "]).": 48610, "ãĤ¤": 48611, "Widget": 48612, "======": 48613, "(-": 48614, "Ġ\"+": 48615, "ĠIncarnation": 48616, "æĥ": 48617, "���": 48618, "GUI": 48619, "èĥ": 48620, "forums": 48621, "Ġrunes": 48622, "Ġâī¤": 48623, "Ġdefic": 48624, "Distance": 48625, "directory": 48626, "ĠHorus": 48627, "iltr": 48628, "ortium": 48629, "Ġ./": 48630, "bda": 48631, "owship": 48632, "ĠâĨij": 48633, "}.": 48634, "åĩ": 48635, "1027": 48636, "Weapons": 48637, "lucent": 48638, "Ġauth": 48639, ";;": 48640, "Recommended": 48641, "Ġsurv": 48642, "Ġvm": 48643, "ĠStronghold": 48644, "Ġparan": 48645, "ĠTrance": 48646, "æĺ": 48647, "Ġsovere": 48648, "Ġcorrid": 48649, "ĠPwr": 48650, "Ġ[/": 48651, "Ġseq": 48652, "Population": 48653, "Ġ[];": 48654, "Ġreferen": 48655, "ĠInstr": 48656, "ĠStamina": 48657, "kernel": 48658, "Python": 48659, "-+": 48660, "Ġallele": 48661, "éĽ": 48662, "isode": 48663, "ä¸į": 48664, "otonin": 48665, "modules": 48666, "Notable": 48667, "Spell": 48668, "\\\\": 48669, "Pref": 48670, "Ġdatas": 48671, "setup": 48672, "Ġhapl": 48673, "Height": 48674, "åĭ": 48675, "ãģ£": 48676, "]),": 48677, "Handle": 48678, "umenthal": 48679, "Package": 48680, "Ġenthus": 48681, "Ġunsus": 48682, "Narr": 48683, "Examples": 48684, "FAQ": 48685, "REDACTED": 48686, "Ġnotor": 48687, "Enable": 48688, "Pattern": 48689, "aeda": 48690, ">.": 48691, "CHECK": 48692, "Ġ����": 48693, "Ġ'.": 48694, "Ġãĥ": 48695, "append": 48696, "����": 48697, "gemony": 48698, "terness": 48699, "ĠHaku": 48700, "NVIDIA": 48701, "queue": 48702, "Bind": 48703, "Ġneigh": 48704, "armor": 48705, "retty": 48706, "LOD": 48707, "plugins": 48708, "Ġ/>": 48709, "TYPE": 48710, "Ġ4096": 48711, "-------": 48712, "Preview": 48713, "FML": 48714, "Ġproletarian": 48715, "zees": 48716, "enfranch": 48717, "ãģĨ": 48718, "Ctrl": 48719, "Module": 48720, "ĠSurviv": 48721, "ĠStarcraft": 48722, "rored": 48723, "reddit": 48724, "Ġrul": 48725, "Ġtx": 48726, "Ġmage": 48727, "Sword": 48728, "Ġ~/": 48729, "Effects": 48730, "éļ": 48731, "ä¹": 48732, "Sensor": 48733, "Solution": 48734, "ãģĻ": 48735, "Arcade": 48736, "Ġpredec": 48737, "Values": 48738, "Length": 48739, "Ġfortun": 48740, "ttp": 48741, "\"[": 48742, "tmp": 48743, "ĠBerserker": 48744, "åĨ": 48745, "ositories": 48746, "Ġcouncill": 48747, "ffff": 48748, "));": 48749, "Recipe": 48750, "ĠASCII": 48751, "âĦ¢:": 48752, "ä": 48753, "Ġhorm": 48754, "=>": 48755, "sers": 48756, "ãģĭ": 48757, "Recommend": 48758, "['": 48759, "agame": 48760, "Animation": 48761, "aucuses": 48762, "Discussion": 48763, "Ġhelicop": 48764, "å¿": 48765, "Float": 48766, "Component": 48767, "instance": 48768, "Ġfoo": 48769, "localhost": 48770, "=-": 48771, "Offset": 48772, "Psy": 48773, "ĠGohan": 48774, "buquerque": 48775, "Ġdefe": 48776, "chwitz": 48777, "parse": 48778, "Ġdors": 48779, "Ġspons": 48780, "Ġasync": 48781, "agonists": 48782, "Ġindo": 48783, ".>>": 48784, "ĠDisciple": 48785, "Ġfilename": 48786, "rency": 48787, "ĠDise": 48788, "Ġ\"/": 48789, "template": 48790, "ãĤ¹": 48791, "swers": 48792, "Ġ++": 48793, "Ġ[(": 48794, "thora": 48795, "ĠDepths": 48796, "livious": 48797, "Ġdisadvant": 48798, "foundland": 48799, "Upload": 48800, "Ġ§§": 48801, "Ġsophistic": 48802, ";}": 48803, "izont": 48804, "\"}": 48805, "estial": 48806, "Ranked": 48807, "ĠOccupations": 48808, "LEASE": 48809, "ĠOgre": 48810, "folder": 48811, "Plot": 48812, "farious": 48813, "Ġsuscept": 48814, "Types": 48815, "Discuss": 48816, "Ġ'/": 48817, "æµ": 48818, "earable": 48819, "æ³": 48820, "Tile": 48821, "iatus": 48822, "åŃ": 48823, "Ġreperto": 48824, "Helper": 48825, "Returns": 48826, "ä¸Ĭ": 48827, "imaru": 48828, "Ġreq": 48829, "Ġdissatisf": 48830, "multipl": 48831, "}{": 48832, "-[": 48833, "itial": 48834, "*/": 48835, "Config": 48836, "Example": 48837, "ĠjQuery": 48838, "Mods": 48839, "ĠGPIO": 48840, "Ġlaun": 48841, "layout": 48842, "cised": 48843, "Ġ......": 48844, "+++": 48845, "prototype": 48846, "Exception": 48847, "Ġsubsections": 48848, "Ġresemb": 48849, "Ġâĩ": 48850, "ĠPubMed": 48851, "username": 48852, "Ġaggro": 48853, "éĥ": 48854, "Ġ};": 48855, "ĠMages": 48856, "ryu": 48857, "apons": 48858, "Optional": 48859, "ĠAncients": 48860, "ãĤĬ": 48861, "Quotes": 48862, "oaded": 48863, "Ġsuspic": 48864, "inline": 48865, "omial": 48866, "ĠMahjong": 48867, "auntlets": 48868, "Ġanarchism": 48869, "Ġsubclass": 48870, "ĠMLG": 48871, "...]": 48872, "Dialog": 48873, "uphem": 48874, "Ġrecursive": 48875, "7601": 48876, "frac": 48877, "Else": 48878, "ĠSeverus": 48879, "},{\"": 48880, "ĠCLIENT": 48881, "Ġjavascript": 48882, "sama": 48883, "ĠLearns": 48884, "ãĤĤ": 48885, "Upgrade": 48886, "Listener": 48887, "Ġsnipp": 48888, "Ġrune": 48889, "ĠTTL": 48890, "ertation": 48891, "olicy": 48892, "=\"\"": 48893, "«ĺ": 48894, "Ġexpr": 48895, "ovych": 48896, "Ġãģ": 48897, "_-_": 48898, "munition": 48899, "////": 48900, "func": 48901, ">>>>": 48902, "Provider": 48903, "Ïī": 48904, "BUG": 48905, "Ġ[-": 48906, "Ġarrang": 48907, "merce": 48908, "ãĥ": 48909, "incarn": 48910, "Valid": 48911, "ĠAether": 48912, "ãĤĵ": 48913, "ĠUTF": 48914, "ĠMonstrous": 48915, "ãĤĮ": 48916, "hedon": 48917, "áµ": 48918, ":#": 48919, "ĠFrieza": 48920, "padding": 48921, "Reviewer": 48922, "Ġpsychiat": 48923, "yrinth": 48924, "ĠâĶĤ": 48925, "hillary": 48926, "Static": 48927, "Newsletter": 48928, "Avg": 48929, "Ġfn": 48930, "Topic": 48931, "choes": 48932, "Ġnewsp": 48933, "á¸": 48934, "Ġ[+": 48935, "~~~~~~~~~~~~~~~~": 48936, ":]": 48937, "apego": 48938, "buf": 48939, "Translation": 48940, "ById": 48941, "Ġmmol": 48942, "ãĥ¼ãĥ": 48943, "å½": 48944, "ãĤī": 48945, "Ġparser": 48946, "ãĥª": 48947, "`,": 48948, "Lair": 48949, ")}": 48950, "ypes": 48951, "adobe": 48952, "Ġancest": 48953, "ernel": 48954, "ĠNULL": 48955, "ç«": 48956, "anguages": 48957, "Increases": 48958, "æĦ": 48959, "utorial": 48960, "ithmetic": 48961, "dll": 48962, "ĠArcane": 48963, "çī": 48964, "Ġtc": 48965, "urtles": 48966, "èĪ": 48967, "Bytes": 48968, "Slot": 48969, "ĠBahá": 48970, "Weapon": 48971, "widget": 48972, "querque": 48973, "Ġembodiments": 48974, "å¥": 48975, "WARN": 48976, "swer": 48977, "thumbnails": 48978, "FFFF": 48979, "inguishable": 48980, "Ġâī": 48981, "Ġ${": 48982, "AAAAAAAA": 48983, "Conclusion": 48984, "ĻĤ": 48985, "disable": 48986, "Rect": 48987, "Ġsubp": 48988, "Ġ().": 48989, "ĠDetected": 48990, "èĢ": 48991, "[]": 48992, "Ġcoerc": 48993, "ĠmM": 48994, "recated": 48995, "fusc": 48996, "ĠSorce": 48997, "çĶŁ": 48998, ").[": 48999, "Ġ})": 49000, "mobi": 49001, "yip": 49002, "Acknowled": 49003, "ternity": 49004, "iqueness": 49005, "ython": 49006, "><": 49007, "Ġstd": 49008, "Url": 49009, "Ġnamespace": 49010, "Ġtion": 49011, "oother": 49012, "Ó": 49013, "Ġhemor": 49014, "Ġrg": 49015, "ventory": 49016, "ãĤ¢": 49017, "anamo": 49018, "Socket": 49019, "Topics": 49020, "apeshifter": 49021, "gnu": 49022, "Ġdetrim": 49023, "`.": 49024, "romeda": 49025, "çIJ": 49026, "Ġlambda": 49027, "Compan": 49028, "Variable": 49029, "Ġusb": 49030, "ĠAdamant": 49031, "ournal": 49032, "Ġcovari": 49033, "ãĥ©": 49034, "éĸ": 49035, "åİ": 49036, "otaur": 49037, "Ġ(),": 49038, "Marginal": 49039, "ãģı": 49040, "Ġphysic": 49041, "adeon": 49042, "RESULTS": 49043, "200000": 49044, "ãģį": 49045, "udeb": 49046, "ãģĵ": 49047, "COMPLE": 49048, "Ġmsg": 49049, "ghazi": 49050, "/*": 49051, "ĠDeity": 49052, "Ġdisapp": 49053, "Availability": 49054, "Ġillum": 49055, "à©": 49056, "ptives": 49057, ",âĢĶ": 49058, "chnology": 49059, "Ġaccur": 49060, "Ġapi": 49061, "Obj": 49062, "ãĤ«": 49063, "ãĤ¸": 49064, "ä¹ĭ": 49065, "ËĪ": 49066, "Ġtcp": 49067, "Required": 49068, ".<": 49069, "\".[": 49070, "Ġ~/.": 49071, "Ġobser": 49072, "RFC": 49073, "Ġintegers": 49074, "åī": 49075, "Installation": 49076, "Ô": 49077, "ó": 49078, "csv": 49079, "ãĥ«": 49080, "ĠNoticed": 49081, "âĸĵ": 49082, "Tumblr": 49083, "Reply": 49084, "||": 49085, "Ġconclud": 49086, "Ġ))": 49087, "ebin": 49088, "sql": 49089, "Closure": 49090, "++++": 49091, "],[": 49092, "âĹı": 49093, "Ġprolet": 49094, "Ġ>=": 49095, "estinal": 49096, "Ġ[*": 49097, "ĠInquisitor": 49098, "Ġcmd": 49099, "FINE": 49100, "CRIP": 49101, "Ġvertex": 49102, "TeX": 49103, "///": 49104, "Ö¼": 49105, "iscons": 49106, "Ġmyster": 49107, "Changed": 49108, "timeout": 49109, "irtual": 49110, "Methods": 49111, "Ġcerts": 49112, "texture": 49113, "Roaming": 49114, "Proxy": 49115, "Override": 49116, "éĹ": 49117, "utf": 49118, "python": 49119, "ĠRarity": 49120, "ilitarian": 49121, "çľ": 49122, "().": 49123, "æł": 49124, "Ġbuf": 49125, "åij": 49126, "çķ": 49127, "Ġ*.": 49128, "umerable": 49129, "~~~~": 49130, "å¦": 49131, "Ġsimultane": 49132, "Ġjson": 49133, "Requires": 49134, "Ġperl": 49135, "Interface": 49136, "rupal": 49137, ":": 49242, "itialized": 49243, "HTTP": 49244, "Trivia": 49245, "Sov": 49246, "wrapper": 49247, "={": 49248, "ĠAzerb": 49249, "aeper": 49250, "Ġneighb": 49251, "initions": 49252, "Ġsts": 49253, "ĠSasuke": 49254, "#$": 49255, "uliffe": 49256, "æĸ¹": 49257, "++++++++++++++++": 49258, "ĠElven": 49259, "ãģĤ": 49260, "Ġartif": 49261, "Folder": 49262, "Ġà¨": 49263, "åĤ": 49264, "Ġphyl": 49265, "uggest": 49266, "blance": 49267, "ãģł": 49268, "Requirements": 49269, "Usage": 49270, "Ġinitialized": 49271, "ã쮿": 49272, "conservancy": 49273, "ĠReincarn": 49274, ")|": 49275, "Ġantioxid": 49276, "ĠClicker": 49277, "Ġunlaw": 49278, "Ġ\\(": 49279, "ãĥĪ": 49280, "Ġ[*]": 49281, "Characters": 49282, "////////": 49283, "ãĢIJ": 49284, "ãĤ·": 49285, "webkit": 49286, "ãĢij": 49287, "Ġxp": 49288, "alkyrie": 49289, "Console": 49290, "());": 49291, "ĠKorra": 49292, "\"))": 49293, "oooooooooooooooo": 49294, "Timer": 49295, "////////////////": 49296, "yout": 49297, "engeance": 49298, "emetery": 49299, "Ġmages": 49300, "mods": 49301, "Null": 49302, "Ġphilos": 49303, "ascript": 49304, "Ġaddon": 49305, "ĠâĸĪ": 49306, "emale": 49307, "----------------------------------------------------------------": 49308, "Ġ\\\\": 49309, "=[": 49310, "ĠParables": 49311, "ãĥĨ": 49312, "VALUE": 49313, "Ġ@@": 49314, "Ġuint": 49315, "${": 49316, "cpp": 49317, "%%": 49318, "Ġ(âĪĴ": 49319, "utils": 49320, "prefix": 49321, "å°Ĩ": 49322, "ãĥŃ": 49323, "Completed": 49324, "Ġgoto": 49325, "ãĤ¯": 49326, "Winged": 49327, "perty": 49328, "[\"": 49329, "ãĥİ": 49330, "ĠScythe": 49331, "Ġæľ": 49332, "Ġ!=": 49333, "Buffer": 49334, "docker": 49335, "ĠWATCHED": 49336, "èĢħ": 49337, "())": 49338, "Ġdst": 49339, "SIZE": 49340, "ĠDemonic": 49341, "Ġresil": 49342, "ãĤ¿": 49343, "Ġpione": 49344, "cpu": 49345, "++)": 49346, "TEXT": 49347, "Ġdiscrep": 49348, "debian": 49349, "quished": 49350, "Ġacknow": 49351, "Ġtrave": 49352, "Ġgcc": 49353, "Catalog": 49354, "ctrl": 49355, "ĠMoroc": 49356, "Ġcpu": 49357, "Ġ];": 49358, "ĠSorceress": 49359, "Introduced": 49360, "Frames": 49361, "Ġcondem": 49362, "¶æ": 49363, "~~~~~~~~": 49364, "ĠEmacs": 49365, "][/": 49366, "Ġglim": 49367, "Init": 49368, "ĠPrimordial": 49369, "ãĥĥ": 49370, "Ġ+=": 49371, "Ġblat": 49372, "à¼": 49373, "------------------------------------------------": 49374, "gpu": 49375, "ãĥĥãĥĪ": 49376, "Ġxml": 49377, "Ġboolean": 49378, "References": 49379, "Ġ?)": 49380, "Ġsatell": 49381, "Queue": 49382, "Ġpestic": 49383, "Ġ}}": 49384, "Attribute": 49385, "Ġdx": 49386, "ĠDefin": 49387, "Synopsis": 49388, "..................": 49389, "ãĥ¬": 49390, "plugin": 49391, "Disable": 49392, "0000000000000000": 49393, ")\\": 49394, "ĠIchigo": 49395, "println": 49396, "rontal": 49397, "Setup": 49398, "Ġ��������": 49399, "å§": 49400, "âĸº": 49401, "ĠPengu": 49402, "ailability": 49403, "Duration": 49404, "Timeout": 49405, "ãĢĮ": 49406, "Ġbehav": 49407, "Reviewed": 49408, "Ġtoget": 49409, "\\.": 49410, "lished": 49411, "Ġthous": 49412, "Ġperpend": 49413, "ecause": 49414, "Layout": 49415, "è»": 49416, "ĠDexterity": 49417, "unsigned": 49418, "+=": 49419, "[[": 49420, "ĠRunes": 49421, "ãĤ¦": 49422, "};": 49423, "})": 49424, "FTWARE": 49425, "ength": 49426, "milo": 49427, "duino": 49428, "天": 49429, "ĠClojure": 49430, "ļé": 49431, "ãĥ¥": 49432, "gradient": 49433, "Ġ\"\"\"": 49434, "âĨij": 49435, "@#": 49436, "JSON": 49437, "Ġproport": 49438, "addr": 49439, "});": 49440, "ãĥIJ": 49441, "ä¸ī": 49442, "Ġtmp": 49443, "å£": 49444, "../": 49445, "zsche": 49446, "Ġâμ": 49447, "Entity": 49448, "æ©Ł": 49449, "ĠâĶľâĶĢâĶĢ": 49450, "filename": 49451, "{{": 49452, "@@": 49453, "ĠSeym": 49454, "Ġ/**": 49455, "ĠSummoner": 49456, "Quantity": 49457, "ç·": 49458, "Attach": 49459, "Ġbool": 49460, "Texture": 49461, "Ġopio": 49462, ".}": 49463, "ãĥĭ": 49464, "integer": 49465, "Ġregex": 49466, "Ġnomine": 49467, "ription": 49468, "ãģ®ç": 49469, "ãĥķ": 49470, "Ġsubparagraph": 49471, "GGGG": 49472, "Ġexplan": 49473, "Header": 49474, "Spawn": 49475, "toggle": 49476, "²¾": 49477, "Abyss": 49478, "expr": 49479, "ĠZerg": 49480, "ĠGrimoire": 49481, "Contents": 49482, "Instance": 49483, "cyclopedia": 49484, "ãĥĹ": 49485, "ĠTakeru": 49486, "=(": 49487, "代": 49488, "\\)": 49489, "Ġrgb": 49490, "htt": 49491, "bryce": 49492, "Ġlivest": 49493, "ĠAnnotations": 49494, "âĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢ": 49495, "berus": 49496, "ntil": 49497, "Ġskelet": 49498, "callback": 49499, "åħī": 49500, "Joined": 49501, "ãĤª": 49502, "Ġargs": 49503, "artifacts": 49504, "Ġå¤": 49505, "ÃĽ": 49506, "ãĥŀ": 49507, "Streamer": 49508, "}\"": 49509, "Ġunden": 49510, "ãĥģ": 49511, "Īè": 49512, "ãĥ£": 49513, "Ġ0004": 49514, "Ġ\\'": 49515, "ãĤ°": 49516, "ĠCONFIG": 49517, "Ġ#####": 49518, "``": 49519, "anguage": 49520, "Ġ*)": 49521, "Template": 49522, "MODE": 49523, "Ġ00000000": 49524, "'';": 49525, ">": 49625, "Ġlvl": 49626, "Footnote": 49627, "Iter": 49628, "####": 49629, "ãĥij": 49630, "ĠCarbuncle": 49631, "Ġ[+]": 49632, "Ġmathemat": 49633, "Allows": 49634, "Ġ4090": 49635, "Async": 49636, "ģ«": 49637, "Ͻ": 49638, "))))": 49639, "á½": 49640, "Ġcx": 49641, "Ġansw": 49642, "{\"": 49643, "ãĥŁ": 49644, "addons": 49645, "Filename": 49646, "Appearances": 49647, "ĠãĢĮ": 49648, "Ġaddr": 49649, "Ġcharact": 49650, "glomer": 49651, "Advertisements": 49652, "Ġdracon": 49653, "ĠFenrir": 49654, "Ġ();": 49655, "ĠCitiz": 49656, "acebook": 49657, "Ġparams": 49658, "]=": 49659, "Ġsubscript": 49660, "Ġentreprene": 49661, "tnc": 49662, "iversal": 49663, "Ġmillenn": 49664, "ithub": 49665, "/>": 49666, "Ġ\"{": 49667, "Frameworks": 49668, "avorite": 49669, "Ġ])": 49670, "Constructed": 49671, "fml": 49672, "ãĥį": 49673, "################################": 49674, "-|": 49675, "¥ŀ": 49676, "Ġwithd": 49677, "ĠCth": 49678, "AppData": 49679, "Msg": 49680, ":{": 49681, "ãĤ¨": 49682, "Ġtuple": 49683, "ç¥ŀ": 49684, "Ġintrins": 49685, "ĠCooldown": 49686, "ategory": 49687, "^{": 49688, "ãĥĬ": 49689, "''''": 49690, "çͰ": 49691, "ĠDEBUG": 49692, "Ġcannabin": 49693, "ocobo": 49694, "Invalid": 49695, "ãĥĢ": 49696, "Compat": 49697, "Ġ({": 49698, "Removed": 49699, "Ġconvol": 49700, "}:": 49701, "interstitial": 49702, "Ġ\"": 49721, "initialized": 49722, "Ġexting": 49723, "Poké": 49724, "Parameters": 49725, "¶ħ": 49726, "########": 49727, "NULL": 49728, "ãĥĩ": 49729, "groupon": 49730, "\\-": 49731, "ãĥı": 49732, "ãĤ±": 49733, "Ġsubsequ": 49734, "ccording": 49735, "ĠMODULE": 49736, "ĠProtoss": 49737, "\"},{\"": 49738, "Ġ..............": 49739, "Integer": 49740, "endif": 49741, "ãĥĻ": 49742, "parser": 49743, "lambda": 49744, "Ġcarbohyd": 49745, "ĠUnloaded": 49746, "_{": 49747, "âĸ¬âĸ¬": 49748, "Ġdebian": 49749, "]}": 49750, "ãĤ¶": 49751, "Parameter": 49752, "ãĤ£": 49753, "ãĤ»": 49754, "Ġ$_": 49755, "İĭ": 49756, "Ġiterator": 49757, "ãĤ¬": 49758, "WINDOWS": 49759, "CONCLUS": 49760, "Ġ\"\\": 49761, "umbn": 49762, "(&": 49763, "ãĥ©ãĥ³": 49764, "usercontent": 49765, "ometimes": 49766, "METHOD": 49767, "ãĥ¢": 49768, "potion": 49769, "ãĥ¯": 49770, "everal": 49771, "Ġweap": 49772, "minecraft": 49773, "================================": 49774, "printf": 49775, "ĠShinra": 49776, "Ġreluct": 49777, "\\\",": 49778, "Runtime": 49779, "xff": 49780, "ĠAbyssal": 49781, "akeru": 49782, "Ġ\\(\\": 49783, "\"/>": 49784, "efficients": 49785, "Ü": 49786, "avascript": 49787, "Ġbehavi": 49788, "++;": 49789, "=#": 49790, "Attributes": 49791, "âĵĺ": 49792, "lvl": 49793, "¬¼": 49794, "/**": 49795, "Gameplay": 49796, "ĠLeilan": 49797, ">)": 49798, "=\"/": 49799, "Ġ));": 49800, "ãĥĨãĤ£": 49801, "ġ": 49802, ".": 49836, "DEBUG": 49837, "âĶģ": 49838, "ãĢı": 49839, "WithNo": 49840, "Redditor": 49841, "ĠâĶľ": 49842, "Ġfmt": 49843, "ãĢİ": 49844, "Ġmsec": 49845, "ĪĴ": 49846, "eatures": 49847, "itially": 49848, "\"\"\"": 49849, "ãĥ¼ãĤ¯": 49850, "Textures": 49851, "\"},": 49852, "\"><": 49858, "||||": 49859, "ß": 49860, "iterator": 49861, "è£ħ": 49862, "Ĥª": 49863, "ojure": 49864, "ãħĭãħĭ": 49865, "ãĥ¼ãĥ³": 49866, "Ġprintln": 49867, "Ġ][": 49868, "âĸĪâĸĪ": 49869, "âķIJ": 49870, "\\\":": 49871, "senal": 49872, "é¾į": 49873, "é¾": 49874, "Ġcryst": 49875, "ãĥķãĤ¡": 49876, "ĠCosponsors": 49877, "ãĤ·ãĥ£": 49878, "Magikarp": 49879, "ĠMagicka": 49880, "âĸĪâĸĪâĸĪâĸĪ": 49881, ",,,,,,,,": 49882, "vertisement": 49883, "âĶĢâĶĢâĶĢâĶĢ": 49884, "ãĥķãĤ©": 49885, "luaj": 49886, "CLASSIFIED": 49887, ".''.": 49888, "byss": 49889, "Ġ{:": 49890, "ĠNanto": 49891, "Ġptr": 49892, "Ġ%%": 49893, "Ġteasp": 49894, "[_": 49895, "ãĥ¤": 49896, "ħĭ": 49897, "ŃĶ": 49898, "Ġpci": 49899, "Ġ\"<": 49900, "GGGGGGGG": 49901, "æĪ¦": 49902, "--+": 49903, "ãĤ®": 49904, "Ġ())": 49905, "âĸ¬": 49906, "Ġsizeof": 49907, "}}}": 49908, ";;;;;;;;": 49909, ">]": 49910, "âĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪ": 49911, "Vaults": 49912, "Ġistg": 49913, "Ġnewcom": 49914, "=]": 49915, "¿½": 49916, "ĵĺ": 49917, "{\\": 49918, "Args": 49919, "Ġexha": 49920, "(\\": 49921, "Ġunnecess": 49922, "\"}],\"": 49923, "ĠUNCLASSIFIED": 49924, ">(": 49925, "ãĤ¢ãĥ«": 49926, "æ©": 49927, "70710": 49928, "Ń·": 49929, "ãĥ¼ãĥĨãĤ£": 49930, "ĠSakuya": 49931, "ãĥĥãĥī": 49932, "ĠPyrrha": 49933, "escription": 49934, "VIDIA": 49935, "================================================================": 49936, "Ġlooph": 49937, "=~": 49938, "Ġcumbers": 49939, "Ġ)]": 49940, "govtrack": 49941, "ĠãĤµ": 49942, "Ġsubur": 49943, "Þ": 49944, "Ġâī¡": 49945, "Interstitial": 49946, "ãĥ¼ãĥĨ": 49947, "Ġgobl": 49948, "ãĥīãĥ©": 49949, "oldown": 49950, "ģĸ": 49951, "Depths": 49952, "Ġ());": 49953, "Ġ._": 49954, "20439": 49955, "Ġç¥ŀ": 49956, "ãģ®å®": 49957, "ãĤ¼": 49958, "Ġ$\\": 49959, "âĹ¼": 49960, "Ġencount": 49961, "Ġ":48457,"Ġstreng":48458,"agascar":48459,"guyen":48460,"((":48461,")[":48462,"ĠNorn":48463,"Ġhippocamp":48464,"Ġ¯":48465,"îĢ":48466,"Connection":48467,"PATH":48468,"mbuds":48469,"ĠShards":48470,"Ġadvoc":48471,"Ġsimulac":48472,"âĸij":48473,"!?\"":48474,"ĠPotion":48475,"Ġamulet":48476,"ĠFnatic":48477,"Ġcryptoc":48478,"wav":48479,"radius":48480,"pkg":48481,"ĠMFT":48482,"æĢ":48483,"Ġtoile":48484,"Items":48485,"ifference":48486,"errors":48487,"ĠCelt":48488,"Ġunpop":48489,"ilogy":48490,"6666":48491,"hesda":48492,"Instruct":48493,"å·":48494,"Materials":48495,"ettings":48496,"Percent":48497,"Ġresistor":48498,"tymology":48499,"Ġdeprecated":48500,"Ġgrep":48501,"ĠWRITE":48502,"Ġtriv":48503,"Ġscrut":48504,"[/":48505,"anyl":48506,"skirts":48507,"MSN":48508,"ĠCodec":48509,"ecd":48510,"Anth":48511,"){":48512,"%]":48513,"veyard":48514,"aspberry":48515,"ãĢ":48516,"Reward":48517,"rha":48518,"Stretch":48519,"]-":48520,"Prev":48521,"Context":48522,"Ġlinux":48523,"HAHA":48524,"perties":48525,"ĠVIDE":48526,"Domain":48527,"Ġmurd":48528,"ĠLegions":48529,"apache":48530,"æŃ":48531,"Pause":48532,"Temperature":48533,"ufact":48534,"igslist":48535,"ĠRetrieved":48536,"èª":48537,"ãģĮ":48538,"Ingredients":48539,"ruary":48540,"dyl":48541,"Alias":48542,"ĠÎĶ":48543,"Ġinval":48544,"amsung":48545,"!--":48546,"olean":48547,"æī":48548,"ãģ¯":48549,"Ġcoefficients":48550,"ĠDHCP":48551,"âĨĴ":48552,"utonium":48553,":[":48554,"âĹ":48555,"cli":48556,"Container":48557,"å¼":48558,"nexus":48559,"SOURCE":48560,"Ò":48561,"=/":48562,"Ġmysql":48563,"ĠGained":48564,"Ġ/*":48565,"uncture":48566,"Ġstatically":48567,"âĸł":48568,"æĺ¯":48569,"æ°":48570,"estamp":48571,"Cache":48572,"ulkan":48573,"staking":48574,"apter":48575,"ãģ¾":48576,"Ġμg":48577,"Ġtremend":48578,"ĠPiercing":48579,"naissance":48580,"ĠHealer":48581,"Enabled":48582,"éģ":48583,"âĸ":48584,"ĠThumbnails":48585,"Ġhither":48586,"Format":48587,"utherland":48588,"íķ":48589,"Ġdestro":48590,"fff":48591,"execute":48592,"msg":48593,"romancer":48594,"ĠCanaver":48595,"ĠVaults":48596,"oided":48597,"iage":48598,"Ġimg":48599,"summary":48600,"]);":48601,"ĠABE":48602,"ĠGamergate":48603,"utherford":48604,"Ġoverwrite":48605,"enment":48606,"æķ":48607,"Ġsystemd":48608,"tif":48609,"]).":48610,"ãĤ¤":48611,"Widget":48612,"======":48613,"(-":48614,"Ġ\"+":48615,"ĠIncarnation":48616,"æĥ":48617,"���":48618,"GUI":48619,"èĥ":48620,"forums":48621,"Ġrunes":48622,"Ġâī¤":48623,"Ġdefic":48624,"Distance":48625,"directory":48626,"ĠHorus":48627,"iltr":48628,"ortium":48629,"Ġ./":48630,"bda":48631,"owship":48632,"ĠâĨij":48633,"}.":48634,"åĩ":48635,"1027":48636,"Weapons":48637,"lucent":48638,"Ġauth":48639,";;":48640,"Recommended":48641,"Ġsurv":48642,"Ġvm":48643,"ĠStronghold":48644,"Ġparan":48645,"ĠTrance":48646,"æĺ":48647,"Ġsovere":48648,"Ġcorrid":48649,"ĠPwr":48650,"Ġ[/":48651,"Ġseq":48652,"Population":48653,"Ġ[];":48654,"Ġreferen":48655,"ĠInstr":48656,"ĠStamina":48657,"kernel":48658,"Python":48659,"-+":48660,"Ġallele":48661,"éĽ":48662,"isode":48663,"ä¸į":48664,"otonin":48665,"modules":48666,"Notable":48667,"Spell":48668,"\\\\":48669,"Pref":48670,"Ġdatas":48671,"setup":48672,"Ġhapl":48673,"Height":48674,"åĭ":48675,"ãģ£":48676,"]),":48677,"Handle":48678,"umenthal":48679,"Package":48680,"Ġenthus":48681,"Ġunsus":48682,"Narr":48683,"Examples":48684,"FAQ":48685,"REDACTED":48686,"Ġnotor":48687,"Enable":48688,"Pattern":48689,"aeda":48690,">.":48691,"CHECK":48692,"Ġ����":48693,"Ġ'.":48694,"Ġãĥ":48695,"append":48696,"����":48697,"gemony":48698,"terness":48699,"ĠHaku":48700,"NVIDIA":48701,"queue":48702,"Bind":48703,"Ġneigh":48704,"armor":48705,"retty":48706,"LOD":48707,"plugins":48708,"Ġ/>":48709,"TYPE":48710,"Ġ4096":48711,"-------":48712,"Preview":48713,"FML":48714,"Ġproletarian":48715,"zees":48716,"enfranch":48717,"ãģĨ":48718,"Ctrl":48719,"Module":48720,"ĠSurviv":48721,"ĠStarcraft":48722,"rored":48723,"reddit":48724,"Ġrul":48725,"Ġtx":48726,"Ġmage":48727,"Sword":48728,"Ġ~/":48729,"Effects":48730,"éļ":48731,"ä¹":48732,"Sensor":48733,"Solution":48734,"ãģĻ":48735,"Arcade":48736,"Ġpredec":48737,"Values":48738,"Length":48739,"Ġfortun":48740,"ttp":48741,"\"[":48742,"tmp":48743,"ĠBerserker":48744,"åĨ":48745,"ositories":48746,"Ġcouncill":48747,"ffff":48748,"));":48749,"Recipe":48750,"ĠASCII":48751,"âĦ¢:":48752,"ä":48753,"Ġhorm":48754,"=>":48755,"sers":48756,"ãģĭ":48757,"Recommend":48758,"['":48759,"agame":48760,"Animation":48761,"aucuses":48762,"Discussion":48763,"Ġhelicop":48764,"å¿":48765,"Float":48766,"Component":48767,"instance":48768,"Ġfoo":48769,"localhost":48770,"=-":48771,"Offset":48772,"Psy":48773,"ĠGohan":48774,"buquerque":48775,"Ġdefe":48776,"chwitz":48777,"parse":48778,"Ġdors":48779,"Ġspons":48780,"Ġasync":48781,"agonists":48782,"Ġindo":48783,".>>":48784,"ĠDisciple":48785,"Ġfilename":48786,"rency":48787,"ĠDise":48788,"Ġ\"/":48789,"template":48790,"ãĤ¹":48791,"swers":48792,"Ġ++":48793,"Ġ[(":48794,"thora":48795,"ĠDepths":48796,"livious":48797,"Ġdisadvant":48798,"foundland":48799,"Upload":48800,"Ġ§§":48801,"Ġsophistic":48802,";}":48803,"izont":48804,"\"}":48805,"estial":48806,"Ranked":48807,"ĠOccupations":48808,"LEASE":48809,"ĠOgre":48810,"folder":48811,"Plot":48812,"farious":48813,"Ġsuscept":48814,"Types":48815,"Discuss":48816,"Ġ'/":48817,"æµ":48818,"earable":48819,"æ³":48820,"Tile":48821,"iatus":48822,"åŃ":48823,"Ġreperto":48824,"Helper":48825,"Returns":48826,"ä¸Ĭ":48827,"imaru":48828,"Ġreq":48829,"Ġdissatisf":48830,"multipl":48831,"}{":48832,"-[":48833,"itial":48834,"*/":48835,"Config":48836,"Example":48837,"ĠjQuery":48838,"Mods":48839,"ĠGPIO":48840,"Ġlaun":48841,"layout":48842,"cised":48843,"Ġ......":48844,"+++":48845,"prototype":48846,"Exception":48847,"Ġsubsections":48848,"Ġresemb":48849,"Ġâĩ":48850,"ĠPubMed":48851,"username":48852,"Ġaggro":48853,"éĥ":48854,"Ġ};":48855,"ĠMages":48856,"ryu":48857,"apons":48858,"Optional":48859,"ĠAncients":48860,"ãĤĬ":48861,"Quotes":48862,"oaded":48863,"Ġsuspic":48864,"inline":48865,"omial":48866,"ĠMahjong":48867,"auntlets":48868,"Ġanarchism":48869,"Ġsubclass":48870,"ĠMLG":48871,"...]":48872,"Dialog":48873,"uphem":48874,"Ġrecursive":48875,"7601":48876,"frac":48877,"Else":48878,"ĠSeverus":48879,"},{\"":48880,"ĠCLIENT":48881,"Ġjavascript":48882,"sama":48883,"ĠLearns":48884,"ãĤĤ":48885,"Upgrade":48886,"Listener":48887,"Ġsnipp":48888,"Ġrune":48889,"ĠTTL":48890,"ertation":48891,"olicy":48892,"=\"\"":48893,"«ĺ":48894,"Ġexpr":48895,"ovych":48896,"Ġãģ":48897,"_-_":48898,"munition":48899,"////":48900,"func":48901,">>>>":48902,"Provider":48903,"Ïī":48904,"BUG":48905,"Ġ[-":48906,"Ġarrang":48907,"merce":48908,"ãĥ":48909,"incarn":48910,"Valid":48911,"ĠAether":48912,"ãĤĵ":48913,"ĠUTF":48914,"ĠMonstrous":48915,"ãĤĮ":48916,"hedon":48917,"áµ":48918,":#":48919,"ĠFrieza":48920,"padding":48921,"Reviewer":48922,"Ġpsychiat":48923,"yrinth":48924,"ĠâĶĤ":48925,"hillary":48926,"Static":48927,"Newsletter":48928,"Avg":48929,"Ġfn":48930,"Topic":48931,"choes":48932,"Ġnewsp":48933,"á¸":48934,"Ġ[+":48935,"~~~~~~~~~~~~~~~~":48936,":]":48937,"apego":48938,"buf":48939,"Translation":48940,"ById":48941,"Ġmmol":48942,"ãĥ¼ãĥ":48943,"å½":48944,"ãĤī":48945,"Ġparser":48946,"ãĥª":48947,"`,":48948,"Lair":48949,")}":48950,"ypes":48951,"adobe":48952,"Ġancest":48953,"ernel":48954,"ĠNULL":48955,"ç«":48956,"anguages":48957,"Increases":48958,"æĦ":48959,"utorial":48960,"ithmetic":48961,"dll":48962,"ĠArcane":48963,"çī":48964,"Ġtc":48965,"urtles":48966,"èĪ":48967,"Bytes":48968,"Slot":48969,"ĠBahá":48970,"Weapon":48971,"widget":48972,"querque":48973,"Ġembodiments":48974,"å¥":48975,"WARN":48976,"swer":48977,"thumbnails":48978,"FFFF":48979,"inguishable":48980,"Ġâī":48981,"Ġ${":48982,"AAAAAAAA":48983,"Conclusion":48984,"ĻĤ":48985,"disable":48986,"Rect":48987,"Ġsubp":48988,"Ġ().":48989,"ĠDetected":48990,"èĢ":48991,"[]":48992,"Ġcoerc":48993,"ĠmM":48994,"recated":48995,"fusc":48996,"ĠSorce":48997,"çĶŁ":48998,").[":48999,"Ġ})":49000,"mobi":49001,"yip":49002,"Acknowled":49003,"ternity":49004,"iqueness":49005,"ython":49006,"><":49007,"Ġstd":49008,"Url":49009,"Ġnamespace":49010,"Ġtion":49011,"oother":49012,"Ó":49013,"Ġhemor":49014,"Ġrg":49015,"ventory":49016,"ãĤ¢":49017,"anamo":49018,"Socket":49019,"Topics":49020,"apeshifter":49021,"gnu":49022,"Ġdetrim":49023,"`.":49024,"romeda":49025,"çIJ":49026,"Ġlambda":49027,"Compan":49028,"Variable":49029,"Ġusb":49030,"ĠAdamant":49031,"ournal":49032,"Ġcovari":49033,"ãĥ©":49034,"éĸ":49035,"åİ":49036,"otaur":49037,"Ġ(),":49038,"Marginal":49039,"ãģı":49040,"Ġphysic":49041,"adeon":49042,"RESULTS":49043,"200000":49044,"ãģį":49045,"udeb":49046,"ãģĵ":49047,"COMPLE":49048,"Ġmsg":49049,"ghazi":49050,"/*":49051,"ĠDeity":49052,"Ġdisapp":49053,"Availability":49054,"Ġillum":49055,"à©":49056,"ptives":49057,",âĢĶ":49058,"chnology":49059,"Ġaccur":49060,"Ġapi":49061,"Obj":49062,"ãĤ«":49063,"ãĤ¸":49064,"ä¹ĭ":49065,"ËĪ":49066,"Ġtcp":49067,"Required":49068,".<":49069,"\".[":49070,"Ġ~/.":49071,"Ġobser":49072,"RFC":49073,"Ġintegers":49074,"åī":49075,"Installation":49076,"Ô":49077,"ó":49078,"csv":49079,"ãĥ«":49080,"ĠNoticed":49081,"âĸĵ":49082,"Tumblr":49083,"Reply":49084,"||":49085,"Ġconclud":49086,"Ġ))":49087,"ebin":49088,"sql":49089,"Closure":49090,"++++":49091,"],[":49092,"âĹı":49093,"Ġprolet":49094,"Ġ>=":49095,"estinal":49096,"Ġ[*":49097,"ĠInquisitor":49098,"Ġcmd":49099,"FINE":49100,"CRIP":49101,"Ġvertex":49102,"TeX":49103,"///":49104,"Ö¼":49105,"iscons":49106,"Ġmyster":49107,"Changed":49108,"timeout":49109,"irtual":49110,"Methods":49111,"Ġcerts":49112,"texture":49113,"Roaming":49114,"Proxy":49115,"Override":49116,"éĹ":49117,"utf":49118,"python":49119,"ĠRarity":49120,"ilitarian":49121,"çľ":49122,"().":49123,"æł":49124,"Ġbuf":49125,"åij":49126,"çķ":49127,"Ġ*.":49128,"umerable":49129,"~~~~":49130,"å¦":49131,"Ġsimultane":49132,"Ġjson":49133,"Requires":49134,"Ġperl":49135,"Interface":49136,"rupal":49137,":":49242,"itialized":49243,"HTTP":49244,"Trivia":49245,"Sov":49246,"wrapper":49247,"={":49248,"ĠAzerb":49249,"aeper":49250,"Ġneighb":49251,"initions":49252,"Ġsts":49253,"ĠSasuke":49254,"#$":49255,"uliffe":49256,"æĸ¹":49257,"++++++++++++++++":49258,"ĠElven":49259,"ãģĤ":49260,"Ġartif":49261,"Folder":49262,"Ġà¨":49263,"åĤ":49264,"Ġphyl":49265,"uggest":49266,"blance":49267,"ãģł":49268,"Requirements":49269,"Usage":49270,"Ġinitialized":49271,"ã쮿":49272,"conservancy":49273,"ĠReincarn":49274,")|":49275,"Ġantioxid":49276,"ĠClicker":49277,"Ġunlaw":49278,"Ġ\\(":49279,"ãĥĪ":49280,"Ġ[*]":49281,"Characters":49282,"////////":49283,"ãĢIJ":49284,"ãĤ·":49285,"webkit":49286,"ãĢij":49287,"Ġxp":49288,"alkyrie":49289,"Console":49290,"());":49291,"ĠKorra":49292,"\"))":49293,"oooooooooooooooo":49294,"Timer":49295,"////////////////":49296,"yout":49297,"engeance":49298,"emetery":49299,"Ġmages":49300,"mods":49301,"Null":49302,"Ġphilos":49303,"ascript":49304,"Ġaddon":49305,"ĠâĸĪ":49306,"emale":49307,"----------------------------------------------------------------":49308,"Ġ\\\\":49309,"=[":49310,"ĠParables":49311,"ãĥĨ":49312,"VALUE":49313,"Ġ@@":49314,"Ġuint":49315,"${":49316,"cpp":49317,"%%":49318,"Ġ(âĪĴ":49319,"utils":49320,"prefix":49321,"å°Ĩ":49322,"ãĥŃ":49323,"Completed":49324,"Ġgoto":49325,"ãĤ¯":49326,"Winged":49327,"perty":49328,"[\"":49329,"ãĥİ":49330,"ĠScythe":49331,"Ġæľ":49332,"Ġ!=":49333,"Buffer":49334,"docker":49335,"ĠWATCHED":49336,"èĢħ":49337,"())":49338,"Ġdst":49339,"SIZE":49340,"ĠDemonic":49341,"Ġresil":49342,"ãĤ¿":49343,"Ġpione":49344,"cpu":49345,"++)":49346,"TEXT":49347,"Ġdiscrep":49348,"debian":49349,"quished":49350,"Ġacknow":49351,"Ġtrave":49352,"Ġgcc":49353,"Catalog":49354,"ctrl":49355,"ĠMoroc":49356,"Ġcpu":49357,"Ġ];":49358,"ĠSorceress":49359,"Introduced":49360,"Frames":49361,"Ġcondem":49362,"¶æ":49363,"~~~~~~~~":49364,"ĠEmacs":49365,"][/":49366,"Ġglim":49367,"Init":49368,"ĠPrimordial":49369,"ãĥĥ":49370,"Ġ+=":49371,"Ġblat":49372,"à¼":49373,"------------------------------------------------":49374,"gpu":49375,"ãĥĥãĥĪ":49376,"Ġxml":49377,"Ġboolean":49378,"References":49379,"Ġ?)":49380,"Ġsatell":49381,"Queue":49382,"Ġpestic":49383,"Ġ}}":49384,"Attribute":49385,"Ġdx":49386,"ĠDefin":49387,"Synopsis":49388,"..................":49389,"ãĥ¬":49390,"plugin":49391,"Disable":49392,"0000000000000000":49393,")\\":49394,"ĠIchigo":49395,"println":49396,"rontal":49397,"Setup":49398,"Ġ��������":49399,"å§":49400,"âĸº":49401,"ĠPengu":49402,"ailability":49403,"Duration":49404,"Timeout":49405,"ãĢĮ":49406,"Ġbehav":49407,"Reviewed":49408,"Ġtoget":49409,"\\.":49410,"lished":49411,"Ġthous":49412,"Ġperpend":49413,"ecause":49414,"Layout":49415,"è»":49416,"ĠDexterity":49417,"unsigned":49418,"+=":49419,"[[":49420,"ĠRunes":49421,"ãĤ¦":49422,"};":49423,"})":49424,"FTWARE":49425,"ength":49426,"milo":49427,"duino":49428,"天":49429,"ĠClojure":49430,"ļé":49431,"ãĥ¥":49432,"gradient":49433,"Ġ\"\"\"":49434,"âĨij":49435,"@#":49436,"JSON":49437,"Ġproport":49438,"addr":49439,"});":49440,"ãĥIJ":49441,"ä¸ī":49442,"Ġtmp":49443,"å£":49444,"../":49445,"zsche":49446,"Ġâμ":49447,"Entity":49448,"æ©Ł":49449,"ĠâĶľâĶĢâĶĢ":49450,"filename":49451,"{{":49452,"@@":49453,"ĠSeym":49454,"Ġ/**":49455,"ĠSummoner":49456,"Quantity":49457,"ç·":49458,"Attach":49459,"Ġbool":49460,"Texture":49461,"Ġopio":49462,".}":49463,"ãĥĭ":49464,"integer":49465,"Ġregex":49466,"Ġnomine":49467,"ription":49468,"ãģ®ç":49469,"ãĥķ":49470,"Ġsubparagraph":49471,"GGGG":49472,"Ġexplan":49473,"Header":49474,"Spawn":49475,"toggle":49476,"²¾":49477,"Abyss":49478,"expr":49479,"ĠZerg":49480,"ĠGrimoire":49481,"Contents":49482,"Instance":49483,"cyclopedia":49484,"ãĥĹ":49485,"ĠTakeru":49486,"=(":49487,"代":49488,"\\)":49489,"Ġrgb":49490,"htt":49491,"bryce":49492,"Ġlivest":49493,"ĠAnnotations":49494,"âĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢ":49495,"berus":49496,"ntil":49497,"Ġskelet":49498,"callback":49499,"åħī":49500,"Joined":49501,"ãĤª":49502,"Ġargs":49503,"artifacts":49504,"Ġå¤":49505,"ÃĽ":49506,"ãĥŀ":49507,"Streamer":49508,"}\"":49509,"Ġunden":49510,"ãĥģ":49511,"Īè":49512,"ãĥ£":49513,"Ġ0004":49514,"Ġ\\'":49515,"ãĤ°":49516,"ĠCONFIG":49517,"Ġ#####":49518,"``":49519,"anguage":49520,"Ġ*)":49521,"Template":49522,"MODE":49523,"Ġ00000000":49524,"'';":49525,">":49625,"Ġlvl":49626,"Footnote":49627,"Iter":49628,"####":49629,"ãĥij":49630,"ĠCarbuncle":49631,"Ġ[+]":49632,"Ġmathemat":49633,"Allows":49634,"Ġ4090":49635,"Async":49636,"ģ«":49637,"Ͻ":49638,"))))":49639,"á½":49640,"Ġcx":49641,"Ġansw":49642,"{\"":49643,"ãĥŁ":49644,"addons":49645,"Filename":49646,"Appearances":49647,"ĠãĢĮ":49648,"Ġaddr":49649,"Ġcharact":49650,"glomer":49651,"Advertisements":49652,"Ġdracon":49653,"ĠFenrir":49654,"Ġ();":49655,"ĠCitiz":49656,"acebook":49657,"Ġparams":49658,"]=":49659,"Ġsubscript":49660,"Ġentreprene":49661,"tnc":49662,"iversal":49663,"Ġmillenn":49664,"ithub":49665,"/>":49666,"Ġ\"{":49667,"Frameworks":49668,"avorite":49669,"Ġ])":49670,"Constructed":49671,"fml":49672,"ãĥį":49673,"################################":49674,"-|":49675,"¥ŀ":49676,"Ġwithd":49677,"ĠCth":49678,"AppData":49679,"Msg":49680,":{":49681,"ãĤ¨":49682,"Ġtuple":49683,"ç¥ŀ":49684,"Ġintrins":49685,"ĠCooldown":49686,"ategory":49687,"^{":49688,"ãĥĬ":49689,"''''":49690,"çͰ":49691,"ĠDEBUG":49692,"Ġcannabin":49693,"ocobo":49694,"Invalid":49695,"ãĥĢ":49696,"Compat":49697,"Ġ({":49698,"Removed":49699,"Ġconvol":49700,"}:":49701,"interstitial":49702,"Ġ\"":49721,"initialized":49722,"Ġexting":49723,"Poké":49724,"Parameters":49725,"¶ħ":49726,"########":49727,"NULL":49728,"ãĥĩ":49729,"groupon":49730,"\\-":49731,"ãĥı":49732,"ãĤ±":49733,"Ġsubsequ":49734,"ccording":49735,"ĠMODULE":49736,"ĠProtoss":49737,"\"},{\"":49738,"Ġ..............":49739,"Integer":49740,"endif":49741,"ãĥĻ":49742,"parser":49743,"lambda":49744,"Ġcarbohyd":49745,"ĠUnloaded":49746,"_{":49747,"âĸ¬âĸ¬":49748,"Ġdebian":49749,"]}":49750,"ãĤ¶":49751,"Parameter":49752,"ãĤ£":49753,"ãĤ»":49754,"Ġ$_":49755,"İĭ":49756,"Ġiterator":49757,"ãĤ¬":49758,"WINDOWS":49759,"CONCLUS":49760,"Ġ\"\\":49761,"umbn":49762,"(&":49763,"ãĥ©ãĥ³":49764,"usercontent":49765,"ometimes":49766,"METHOD":49767,"ãĥ¢":49768,"potion":49769,"ãĥ¯":49770,"everal":49771,"Ġweap":49772,"minecraft":49773,"================================":49774,"printf":49775,"ĠShinra":49776,"Ġreluct":49777,"\\\",":49778,"Runtime":49779,"xff":49780,"ĠAbyssal":49781,"akeru":49782,"Ġ\\(\\":49783,"\"/>":49784,"efficients":49785,"Ü":49786,"avascript":49787,"Ġbehavi":49788,"++;":49789,"=#":49790,"Attributes":49791,"âĵĺ":49792,"lvl":49793,"¬¼":49794,"/**":49795,"Gameplay":49796,"ĠLeilan":49797,">)":49798,"=\"/":49799,"Ġ));":49800,"ãĥĨãĤ£":49801,"ġ":49802,".":49836,"DEBUG":49837,"âĶģ":49838,"ãĢı":49839,"WithNo":49840,"Redditor":49841,"ĠâĶľ":49842,"Ġfmt":49843,"ãĢİ":49844,"Ġmsec":49845,"ĪĴ":49846,"eatures":49847,"itially":49848,"\"\"\"":49849,"ãĥ¼ãĤ¯":49850,"Textures":49851,"\"},":49852,"\"><":49858,"||||":49859,"ß":49860,"iterator":49861,"è£ħ":49862,"Ĥª":49863,"ojure":49864,"ãħĭãħĭ":49865,"ãĥ¼ãĥ³":49866,"Ġprintln":49867,"Ġ][":49868,"âĸĪâĸĪ":49869,"âķIJ":49870,"\\\":":49871,"senal":49872,"é¾į":49873,"é¾":49874,"Ġcryst":49875,"ãĥķãĤ¡":49876,"ĠCosponsors":49877,"ãĤ·ãĥ£":49878,"Magikarp":49879,"ĠMagicka":49880,"âĸĪâĸĪâĸĪâĸĪ":49881,",,,,,,,,":49882,"vertisement":49883,"âĶĢâĶĢâĶĢâĶĢ":49884,"ãĥķãĤ©":49885,"luaj":49886,"CLASSIFIED":49887,".''.":49888,"byss":49889,"Ġ{:":49890,"ĠNanto":49891,"Ġptr":49892,"Ġ%%":49893,"Ġteasp":49894,"[_":49895,"ãĥ¤":49896,"ħĭ":49897,"ŃĶ":49898,"Ġpci":49899,"Ġ\"<":49900,"GGGGGGGG":49901,"æĪ¦":49902,"--+":49903,"ãĤ®":49904,"Ġ())":49905,"âĸ¬":49906,"Ġsizeof":49907,"}}}":49908,";;;;;;;;":49909,">]":49910,"âĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪ":49911,"Vaults":49912,"Ġistg":49913,"Ġnewcom":49914,"=]":49915,"¿½":49916,"ĵĺ":49917,"{\\":49918,"Args":49919,"Ġexha":49920,"(\\":49921,"Ġunnecess":49922,"\"}],\"":49923,"ĠUNCLASSIFIED":49924,">(":49925,"ãĤ¢ãĥ«":49926,"æ©":49927,"70710":49928,"Ń·":49929,"ãĥ¼ãĥĨãĤ£":49930,"ĠSakuya":49931,"ãĥĥãĥī":49932,"ĠPyrrha":49933,"escription":49934,"VIDIA":49935,"================================================================":49936,"Ġlooph":49937,"=~":49938,"Ġcumbers":49939,"Ġ)]":49940,"govtrack":49941,"ĠãĤµ":49942,"Ġsubur":49943,"Þ":49944,"Ġâī¡":49945,"Interstitial":49946,"ãĥ¼ãĥĨ":49947,"Ġgobl":49948,"ãĥīãĥ©":49949,"oldown":49950,"ģĸ":49951,"Depths":49952,"Ġ());":49953,"Ġ._":49954,"20439":49955,"Ġç¥ŀ":49956,"ãģ®å®":49957,"ãĤ¼":49958,"Ġ$\\":49959,"âĹ¼":49960,"Ġencount":49961,"Ġ":48457,"Ġstreng":48458,"agascar":48459,"guyen":48460,"((":48461,")[":48462,"ĠNorn":48463,"Ġhippocamp":48464,"Ġ¯":48465,"îĢ":48466,"Connection":48467,"PATH":48468,"mbuds":48469,"ĠShards":48470,"Ġadvoc":48471,"Ġsimulac":48472,"âĸij":48473,"!?\"":48474,"ĠPotion":48475,"Ġamulet":48476,"ĠFnatic":48477,"Ġcryptoc":48478,"wav":48479,"radius":48480,"pkg":48481,"ĠMFT":48482,"æĢ":48483,"Ġtoile":48484,"Items":48485,"ifference":48486,"errors":48487,"ĠCelt":48488,"Ġunpop":48489,"ilogy":48490,"6666":48491,"hesda":48492,"Instruct":48493,"å·":48494,"Materials":48495,"ettings":48496,"Percent":48497,"Ġresistor":48498,"tymology":48499,"Ġdeprecated":48500,"Ġgrep":48501,"ĠWRITE":48502,"Ġtriv":48503,"Ġscrut":48504,"[/":48505,"anyl":48506,"skirts":48507,"MSN":48508,"ĠCodec":48509,"ecd":48510,"Anth":48511,"){":48512,"%]":48513,"veyard":48514,"aspberry":48515,"ãĢ":48516,"Reward":48517,"rha":48518,"Stretch":48519,"]-":48520,"Prev":48521,"Context":48522,"Ġlinux":48523,"HAHA":48524,"perties":48525,"ĠVIDE":48526,"Domain":48527,"Ġmurd":48528,"ĠLegions":48529,"apache":48530,"æŃ":48531,"Pause":48532,"Temperature":48533,"ufact":48534,"igslist":48535,"ĠRetrieved":48536,"èª":48537,"ãģĮ":48538,"Ingredients":48539,"ruary":48540,"dyl":48541,"Alias":48542,"ĠÎĶ":48543,"Ġinval":48544,"amsung":48545,"!--":48546,"olean":48547,"æī":48548,"ãģ¯":48549,"Ġcoefficients":48550,"ĠDHCP":48551,"âĨĴ":48552,"utonium":48553,":[":48554,"âĹ":48555,"cli":48556,"Container":48557,"å¼":48558,"nexus":48559,"SOURCE":48560,"Ò":48561,"=/":48562,"Ġmysql":48563,"ĠGained":48564,"Ġ/*":48565,"uncture":48566,"Ġstatically":48567,"âĸł":48568,"æĺ¯":48569,"æ°":48570,"estamp":48571,"Cache":48572,"ulkan":48573,"staking":48574,"apter":48575,"ãģ¾":48576,"Ġμg":48577,"Ġtremend":48578,"ĠPiercing":48579,"naissance":48580,"ĠHealer":48581,"Enabled":48582,"éģ":48583,"âĸ":48584,"ĠThumbnails":48585,"Ġhither":48586,"Format":48587,"utherland":48588,"íķ":48589,"Ġdestro":48590,"fff":48591,"execute":48592,"msg":48593,"romancer":48594,"ĠCanaver":48595,"ĠVaults":48596,"oided":48597,"iage":48598,"Ġimg":48599,"summary":48600,"]);":48601,"ĠABE":48602,"ĠGamergate":48603,"utherford":48604,"Ġoverwrite":48605,"enment":48606,"æķ":48607,"Ġsystemd":48608,"tif":48609,"]).":48610,"ãĤ¤":48611,"Widget":48612,"======":48613,"(-":48614,"Ġ\"+":48615,"ĠIncarnation":48616,"æĥ":48617,"���":48618,"GUI":48619,"èĥ":48620,"forums":48621,"Ġrunes":48622,"Ġâī¤":48623,"Ġdefic":48624,"Distance":48625,"directory":48626,"ĠHorus":48627,"iltr":48628,"ortium":48629,"Ġ./":48630,"bda":48631,"owship":48632,"ĠâĨij":48633,"}.":48634,"åĩ":48635,"1027":48636,"Weapons":48637,"lucent":48638,"Ġauth":48639,";;":48640,"Recommended":48641,"Ġsurv":48642,"Ġvm":48643,"ĠStronghold":48644,"Ġparan":48645,"ĠTrance":48646,"æĺ":48647,"Ġsovere":48648,"Ġcorrid":48649,"ĠPwr":48650,"Ġ[/":48651,"Ġseq":48652,"Population":48653,"Ġ[];":48654,"Ġreferen":48655,"ĠInstr":48656,"ĠStamina":48657,"kernel":48658,"Python":48659,"-+":48660,"Ġallele":48661,"éĽ":48662,"isode":48663,"ä¸į":48664,"otonin":48665,"modules":48666,"Notable":48667,"Spell":48668,"\\\\":48669,"Pref":48670,"Ġdatas":48671,"setup":48672,"Ġhapl":48673,"Height":48674,"åĭ":48675,"ãģ£":48676,"]),":48677,"Handle":48678,"umenthal":48679,"Package":48680,"Ġenthus":48681,"Ġunsus":48682,"Narr":48683,"Examples":48684,"FAQ":48685,"REDACTED":48686,"Ġnotor":48687,"Enable":48688,"Pattern":48689,"aeda":48690,">.":48691,"CHECK":48692,"Ġ����":48693,"Ġ'.":48694,"Ġãĥ":48695,"append":48696,"����":48697,"gemony":48698,"terness":48699,"ĠHaku":48700,"NVIDIA":48701,"queue":48702,"Bind":48703,"Ġneigh":48704,"armor":48705,"retty":48706,"LOD":48707,"plugins":48708,"Ġ/>":48709,"TYPE":48710,"Ġ4096":48711,"-------":48712,"Preview":48713,"FML":48714,"Ġproletarian":48715,"zees":48716,"enfranch":48717,"ãģĨ":48718,"Ctrl":48719,"Module":48720,"ĠSurviv":48721,"ĠStarcraft":48722,"rored":48723,"reddit":48724,"Ġrul":48725,"Ġtx":48726,"Ġmage":48727,"Sword":48728,"Ġ~/":48729,"Effects":48730,"éļ":48731,"ä¹":48732,"Sensor":48733,"Solution":48734,"ãģĻ":48735,"Arcade":48736,"Ġpredec":48737,"Values":48738,"Length":48739,"Ġfortun":48740,"ttp":48741,"\"[":48742,"tmp":48743,"ĠBerserker":48744,"åĨ":48745,"ositories":48746,"Ġcouncill":48747,"ffff":48748,"));":48749,"Recipe":48750,"ĠASCII":48751,"âĦ¢:":48752,"ä":48753,"Ġhorm":48754,"=>":48755,"sers":48756,"ãģĭ":48757,"Recommend":48758,"['":48759,"agame":48760,"Animation":48761,"aucuses":48762,"Discussion":48763,"Ġhelicop":48764,"å¿":48765,"Float":48766,"Component":48767,"instance":48768,"Ġfoo":48769,"localhost":48770,"=-":48771,"Offset":48772,"Psy":48773,"ĠGohan":48774,"buquerque":48775,"Ġdefe":48776,"chwitz":48777,"parse":48778,"Ġdors":48779,"Ġspons":48780,"Ġasync":48781,"agonists":48782,"Ġindo":48783,".>>":48784,"ĠDisciple":48785,"Ġfilename":48786,"rency":48787,"ĠDise":48788,"Ġ\"/":48789,"template":48790,"ãĤ¹":48791,"swers":48792,"Ġ++":48793,"Ġ[(":48794,"thora":48795,"ĠDepths":48796,"livious":48797,"Ġdisadvant":48798,"foundland":48799,"Upload":48800,"Ġ§§":48801,"Ġsophistic":48802,";}":48803,"izont":48804,"\"}":48805,"estial":48806,"Ranked":48807,"ĠOccupations":48808,"LEASE":48809,"ĠOgre":48810,"folder":48811,"Plot":48812,"farious":48813,"Ġsuscept":48814,"Types":48815,"Discuss":48816,"Ġ'/":48817,"æµ":48818,"earable":48819,"æ³":48820,"Tile":48821,"iatus":48822,"åŃ":48823,"Ġreperto":48824,"Helper":48825,"Returns":48826,"ä¸Ĭ":48827,"imaru":48828,"Ġreq":48829,"Ġdissatisf":48830,"multipl":48831,"}{":48832,"-[":48833,"itial":48834,"*/":48835,"Config":48836,"Example":48837,"ĠjQuery":48838,"Mods":48839,"ĠGPIO":48840,"Ġlaun":48841,"layout":48842,"cised":48843,"Ġ......":48844,"+++":48845,"prototype":48846,"Exception":48847,"Ġsubsections":48848,"Ġresemb":48849,"Ġâĩ":48850,"ĠPubMed":48851,"username":48852,"Ġaggro":48853,"éĥ":48854,"Ġ};":48855,"ĠMages":48856,"ryu":48857,"apons":48858,"Optional":48859,"ĠAncients":48860,"ãĤĬ":48861,"Quotes":48862,"oaded":48863,"Ġsuspic":48864,"inline":48865,"omial":48866,"ĠMahjong":48867,"auntlets":48868,"Ġanarchism":48869,"Ġsubclass":48870,"ĠMLG":48871,"...]":48872,"Dialog":48873,"uphem":48874,"Ġrecursive":48875,"7601":48876,"frac":48877,"Else":48878,"ĠSeverus":48879,"},{\"":48880,"ĠCLIENT":48881,"Ġjavascript":48882,"sama":48883,"ĠLearns":48884,"ãĤĤ":48885,"Upgrade":48886,"Listener":48887,"Ġsnipp":48888,"Ġrune":48889,"ĠTTL":48890,"ertation":48891,"olicy":48892,"=\"\"":48893,"«ĺ":48894,"Ġexpr":48895,"ovych":48896,"Ġãģ":48897,"_-_":48898,"munition":48899,"////":48900,"func":48901,">>>>":48902,"Provider":48903,"Ïī":48904,"BUG":48905,"Ġ[-":48906,"Ġarrang":48907,"merce":48908,"ãĥ":48909,"incarn":48910,"Valid":48911,"ĠAether":48912,"ãĤĵ":48913,"ĠUTF":48914,"ĠMonstrous":48915,"ãĤĮ":48916,"hedon":48917,"áµ":48918,":#":48919,"ĠFrieza":48920,"padding":48921,"Reviewer":48922,"Ġpsychiat":48923,"yrinth":48924,"ĠâĶĤ":48925,"hillary":48926,"Static":48927,"Newsletter":48928,"Avg":48929,"Ġfn":48930,"Topic":48931,"choes":48932,"Ġnewsp":48933,"á¸":48934,"Ġ[+":48935,"~~~~~~~~~~~~~~~~":48936,":]":48937,"apego":48938,"buf":48939,"Translation":48940,"ById":48941,"Ġmmol":48942,"ãĥ¼ãĥ":48943,"å½":48944,"ãĤī":48945,"Ġparser":48946,"ãĥª":48947,"`,":48948,"Lair":48949,")}":48950,"ypes":48951,"adobe":48952,"Ġancest":48953,"ernel":48954,"ĠNULL":48955,"ç«":48956,"anguages":48957,"Increases":48958,"æĦ":48959,"utorial":48960,"ithmetic":48961,"dll":48962,"ĠArcane":48963,"çī":48964,"Ġtc":48965,"urtles":48966,"èĪ":48967,"Bytes":48968,"Slot":48969,"ĠBahá":48970,"Weapon":48971,"widget":48972,"querque":48973,"Ġembodiments":48974,"å¥":48975,"WARN":48976,"swer":48977,"thumbnails":48978,"FFFF":48979,"inguishable":48980,"Ġâī":48981,"Ġ${":48982,"AAAAAAAA":48983,"Conclusion":48984,"ĻĤ":48985,"disable":48986,"Rect":48987,"Ġsubp":48988,"Ġ().":48989,"ĠDetected":48990,"èĢ":48991,"[]":48992,"Ġcoerc":48993,"ĠmM":48994,"recated":48995,"fusc":48996,"ĠSorce":48997,"çĶŁ":48998,").[":48999,"Ġ})":49000,"mobi":49001,"yip":49002,"Acknowled":49003,"ternity":49004,"iqueness":49005,"ython":49006,"><":49007,"Ġstd":49008,"Url":49009,"Ġnamespace":49010,"Ġtion":49011,"oother":49012,"Ó":49013,"Ġhemor":49014,"Ġrg":49015,"ventory":49016,"ãĤ¢":49017,"anamo":49018,"Socket":49019,"Topics":49020,"apeshifter":49021,"gnu":49022,"Ġdetrim":49023,"`.":49024,"romeda":49025,"çIJ":49026,"Ġlambda":49027,"Compan":49028,"Variable":49029,"Ġusb":49030,"ĠAdamant":49031,"ournal":49032,"Ġcovari":49033,"ãĥ©":49034,"éĸ":49035,"åİ":49036,"otaur":49037,"Ġ(),":49038,"Marginal":49039,"ãģı":49040,"Ġphysic":49041,"adeon":49042,"RESULTS":49043,"200000":49044,"ãģį":49045,"udeb":49046,"ãģĵ":49047,"COMPLE":49048,"Ġmsg":49049,"ghazi":49050,"/*":49051,"ĠDeity":49052,"Ġdisapp":49053,"Availability":49054,"Ġillum":49055,"à©":49056,"ptives":49057,",âĢĶ":49058,"chnology":49059,"Ġaccur":49060,"Ġapi":49061,"Obj":49062,"ãĤ«":49063,"ãĤ¸":49064,"ä¹ĭ":49065,"ËĪ":49066,"Ġtcp":49067,"Required":49068,".<":49069,"\".[":49070,"Ġ~/.":49071,"Ġobser":49072,"RFC":49073,"Ġintegers":49074,"åī":49075,"Installation":49076,"Ô":49077,"ó":49078,"csv":49079,"ãĥ«":49080,"ĠNoticed":49081,"âĸĵ":49082,"Tumblr":49083,"Reply":49084,"||":49085,"Ġconclud":49086,"Ġ))":49087,"ebin":49088,"sql":49089,"Closure":49090,"++++":49091,"],[":49092,"âĹı":49093,"Ġprolet":49094,"Ġ>=":49095,"estinal":49096,"Ġ[*":49097,"ĠInquisitor":49098,"Ġcmd":49099,"FINE":49100,"CRIP":49101,"Ġvertex":49102,"TeX":49103,"///":49104,"Ö¼":49105,"iscons":49106,"Ġmyster":49107,"Changed":49108,"timeout":49109,"irtual":49110,"Methods":49111,"Ġcerts":49112,"texture":49113,"Roaming":49114,"Proxy":49115,"Override":49116,"éĹ":49117,"utf":49118,"python":49119,"ĠRarity":49120,"ilitarian":49121,"çľ":49122,"().":49123,"æł":49124,"Ġbuf":49125,"åij":49126,"çķ":49127,"Ġ*.":49128,"umerable":49129,"~~~~":49130,"å¦":49131,"Ġsimultane":49132,"Ġjson":49133,"Requires":49134,"Ġperl":49135,"Interface":49136,"rupal":49137,":":49242,"itialized":49243,"HTTP":49244,"Trivia":49245,"Sov":49246,"wrapper":49247,"={":49248,"ĠAzerb":49249,"aeper":49250,"Ġneighb":49251,"initions":49252,"Ġsts":49253,"ĠSasuke":49254,"#$":49255,"uliffe":49256,"æĸ¹":49257,"++++++++++++++++":49258,"ĠElven":49259,"ãģĤ":49260,"Ġartif":49261,"Folder":49262,"Ġà¨":49263,"åĤ":49264,"Ġphyl":49265,"uggest":49266,"blance":49267,"ãģł":49268,"Requirements":49269,"Usage":49270,"Ġinitialized":49271,"ã쮿":49272,"conservancy":49273,"ĠReincarn":49274,")|":49275,"Ġantioxid":49276,"ĠClicker":49277,"Ġunlaw":49278,"Ġ\\(":49279,"ãĥĪ":49280,"Ġ[*]":49281,"Characters":49282,"////////":49283,"ãĢIJ":49284,"ãĤ·":49285,"webkit":49286,"ãĢij":49287,"Ġxp":49288,"alkyrie":49289,"Console":49290,"());":49291,"ĠKorra":49292,"\"))":49293,"oooooooooooooooo":49294,"Timer":49295,"////////////////":49296,"yout":49297,"engeance":49298,"emetery":49299,"Ġmages":49300,"mods":49301,"Null":49302,"Ġphilos":49303,"ascript":49304,"Ġaddon":49305,"ĠâĸĪ":49306,"emale":49307,"----------------------------------------------------------------":49308,"Ġ\\\\":49309,"=[":49310,"ĠParables":49311,"ãĥĨ":49312,"VALUE":49313,"Ġ@@":49314,"Ġuint":49315,"${":49316,"cpp":49317,"%%":49318,"Ġ(âĪĴ":49319,"utils":49320,"prefix":49321,"å°Ĩ":49322,"ãĥŃ":49323,"Completed":49324,"Ġgoto":49325,"ãĤ¯":49326,"Winged":49327,"perty":49328,"[\"":49329,"ãĥİ":49330,"ĠScythe":49331,"Ġæľ":49332,"Ġ!=":49333,"Buffer":49334,"docker":49335,"ĠWATCHED":49336,"èĢħ":49337,"())":49338,"Ġdst":49339,"SIZE":49340,"ĠDemonic":49341,"Ġresil":49342,"ãĤ¿":49343,"Ġpione":49344,"cpu":49345,"++)":49346,"TEXT":49347,"Ġdiscrep":49348,"debian":49349,"quished":49350,"Ġacknow":49351,"Ġtrave":49352,"Ġgcc":49353,"Catalog":49354,"ctrl":49355,"ĠMoroc":49356,"Ġcpu":49357,"Ġ];":49358,"ĠSorceress":49359,"Introduced":49360,"Frames":49361,"Ġcondem":49362,"¶æ":49363,"~~~~~~~~":49364,"ĠEmacs":49365,"][/":49366,"Ġglim":49367,"Init":49368,"ĠPrimordial":49369,"ãĥĥ":49370,"Ġ+=":49371,"Ġblat":49372,"à¼":49373,"------------------------------------------------":49374,"gpu":49375,"ãĥĥãĥĪ":49376,"Ġxml":49377,"Ġboolean":49378,"References":49379,"Ġ?)":49380,"Ġsatell":49381,"Queue":49382,"Ġpestic":49383,"Ġ}}":49384,"Attribute":49385,"Ġdx":49386,"ĠDefin":49387,"Synopsis":49388,"..................":49389,"ãĥ¬":49390,"plugin":49391,"Disable":49392,"0000000000000000":49393,")\\":49394,"ĠIchigo":49395,"println":49396,"rontal":49397,"Setup":49398,"Ġ��������":49399,"å§":49400,"âĸº":49401,"ĠPengu":49402,"ailability":49403,"Duration":49404,"Timeout":49405,"ãĢĮ":49406,"Ġbehav":49407,"Reviewed":49408,"Ġtoget":49409,"\\.":49410,"lished":49411,"Ġthous":49412,"Ġperpend":49413,"ecause":49414,"Layout":49415,"è»":49416,"ĠDexterity":49417,"unsigned":49418,"+=":49419,"[[":49420,"ĠRunes":49421,"ãĤ¦":49422,"};":49423,"})":49424,"FTWARE":49425,"ength":49426,"milo":49427,"duino":49428,"天":49429,"ĠClojure":49430,"ļé":49431,"ãĥ¥":49432,"gradient":49433,"Ġ\"\"\"":49434,"âĨij":49435,"@#":49436,"JSON":49437,"Ġproport":49438,"addr":49439,"});":49440,"ãĥIJ":49441,"ä¸ī":49442,"Ġtmp":49443,"å£":49444,"../":49445,"zsche":49446,"Ġâμ":49447,"Entity":49448,"æ©Ł":49449,"ĠâĶľâĶĢâĶĢ":49450,"filename":49451,"{{":49452,"@@":49453,"ĠSeym":49454,"Ġ/**":49455,"ĠSummoner":49456,"Quantity":49457,"ç·":49458,"Attach":49459,"Ġbool":49460,"Texture":49461,"Ġopio":49462,".}":49463,"ãĥĭ":49464,"integer":49465,"Ġregex":49466,"Ġnomine":49467,"ription":49468,"ãģ®ç":49469,"ãĥķ":49470,"Ġsubparagraph":49471,"GGGG":49472,"Ġexplan":49473,"Header":49474,"Spawn":49475,"toggle":49476,"²¾":49477,"Abyss":49478,"expr":49479,"ĠZerg":49480,"ĠGrimoire":49481,"Contents":49482,"Instance":49483,"cyclopedia":49484,"ãĥĹ":49485,"ĠTakeru":49486,"=(":49487,"代":49488,"\\)":49489,"Ġrgb":49490,"htt":49491,"bryce":49492,"Ġlivest":49493,"ĠAnnotations":49494,"âĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢ":49495,"berus":49496,"ntil":49497,"Ġskelet":49498,"callback":49499,"åħī":49500,"Joined":49501,"ãĤª":49502,"Ġargs":49503,"artifacts":49504,"Ġå¤":49505,"ÃĽ":49506,"ãĥŀ":49507,"Streamer":49508,"}\"":49509,"Ġunden":49510,"ãĥģ":49511,"Īè":49512,"ãĥ£":49513,"Ġ0004":49514,"Ġ\\'":49515,"ãĤ°":49516,"ĠCONFIG":49517,"Ġ#####":49518,"``":49519,"anguage":49520,"Ġ*)":49521,"Template":49522,"MODE":49523,"Ġ00000000":49524,"'';":49525,">":49625,"Ġlvl":49626,"Footnote":49627,"Iter":49628,"####":49629,"ãĥij":49630,"ĠCarbuncle":49631,"Ġ[+]":49632,"Ġmathemat":49633,"Allows":49634,"Ġ4090":49635,"Async":49636,"ģ«":49637,"Ͻ":49638,"))))":49639,"á½":49640,"Ġcx":49641,"Ġansw":49642,"{\"":49643,"ãĥŁ":49644,"addons":49645,"Filename":49646,"Appearances":49647,"ĠãĢĮ":49648,"Ġaddr":49649,"Ġcharact":49650,"glomer":49651,"Advertisements":49652,"Ġdracon":49653,"ĠFenrir":49654,"Ġ();":49655,"ĠCitiz":49656,"acebook":49657,"Ġparams":49658,"]=":49659,"Ġsubscript":49660,"Ġentreprene":49661,"tnc":49662,"iversal":49663,"Ġmillenn":49664,"ithub":49665,"/>":49666,"Ġ\"{":49667,"Frameworks":49668,"avorite":49669,"Ġ])":49670,"Constructed":49671,"fml":49672,"ãĥį":49673,"################################":49674,"-|":49675,"¥ŀ":49676,"Ġwithd":49677,"ĠCth":49678,"AppData":49679,"Msg":49680,":{":49681,"ãĤ¨":49682,"Ġtuple":49683,"ç¥ŀ":49684,"Ġintrins":49685,"ĠCooldown":49686,"ategory":49687,"^{":49688,"ãĥĬ":49689,"''''":49690,"çͰ":49691,"ĠDEBUG":49692,"Ġcannabin":49693,"ocobo":49694,"Invalid":49695,"ãĥĢ":49696,"Compat":49697,"Ġ({":49698,"Removed":49699,"Ġconvol":49700,"}:":49701,"interstitial":49702,"Ġ\"":49721,"initialized":49722,"Ġexting":49723,"Poké":49724,"Parameters":49725,"¶ħ":49726,"########":49727,"NULL":49728,"ãĥĩ":49729,"groupon":49730,"\\-":49731,"ãĥı":49732,"ãĤ±":49733,"Ġsubsequ":49734,"ccording":49735,"ĠMODULE":49736,"ĠProtoss":49737,"\"},{\"":49738,"Ġ..............":49739,"Integer":49740,"endif":49741,"ãĥĻ":49742,"parser":49743,"lambda":49744,"Ġcarbohyd":49745,"ĠUnloaded":49746,"_{":49747,"âĸ¬âĸ¬":49748,"Ġdebian":49749,"]}":49750,"ãĤ¶":49751,"Parameter":49752,"ãĤ£":49753,"ãĤ»":49754,"Ġ$_":49755,"İĭ":49756,"Ġiterator":49757,"ãĤ¬":49758,"WINDOWS":49759,"CONCLUS":49760,"Ġ\"\\":49761,"umbn":49762,"(&":49763,"ãĥ©ãĥ³":49764,"usercontent":49765,"ometimes":49766,"METHOD":49767,"ãĥ¢":49768,"potion":49769,"ãĥ¯":49770,"everal":49771,"Ġweap":49772,"minecraft":49773,"================================":49774,"printf":49775,"ĠShinra":49776,"Ġreluct":49777,"\\\",":49778,"Runtime":49779,"xff":49780,"ĠAbyssal":49781,"akeru":49782,"Ġ\\(\\":49783,"\"/>":49784,"efficients":49785,"Ü":49786,"avascript":49787,"Ġbehavi":49788,"++;":49789,"=#":49790,"Attributes":49791,"âĵĺ":49792,"lvl":49793,"¬¼":49794,"/**":49795,"Gameplay":49796,"ĠLeilan":49797,">)":49798,"=\"/":49799,"Ġ));":49800,"ãĥĨãĤ£":49801,"ġ":49802,".":49836,"DEBUG":49837,"âĶģ":49838,"ãĢı":49839,"WithNo":49840,"Redditor":49841,"ĠâĶľ":49842,"Ġfmt":49843,"ãĢİ":49844,"Ġmsec":49845,"ĪĴ":49846,"eatures":49847,"itially":49848,"\"\"\"":49849,"ãĥ¼ãĤ¯":49850,"Textures":49851,"\"},":49852,"\"><":49858,"||||":49859,"ß":49860,"iterator":49861,"è£ħ":49862,"Ĥª":49863,"ojure":49864,"ãħĭãħĭ":49865,"ãĥ¼ãĥ³":49866,"Ġprintln":49867,"Ġ][":49868,"âĸĪâĸĪ":49869,"âķIJ":49870,"\\\":":49871,"senal":49872,"é¾į":49873,"é¾":49874,"Ġcryst":49875,"ãĥķãĤ¡":49876,"ĠCosponsors":49877,"ãĤ·ãĥ£":49878,"Magikarp":49879,"ĠMagicka":49880,"âĸĪâĸĪâĸĪâĸĪ":49881,",,,,,,,,":49882,"vertisement":49883,"âĶĢâĶĢâĶĢâĶĢ":49884,"ãĥķãĤ©":49885,"luaj":49886,"CLASSIFIED":49887,".''.":49888,"byss":49889,"Ġ{:":49890,"ĠNanto":49891,"Ġptr":49892,"Ġ%%":49893,"Ġteasp":49894,"[_":49895,"ãĥ¤":49896,"ħĭ":49897,"ŃĶ":49898,"Ġpci":49899,"Ġ\"<":49900,"GGGGGGGG":49901,"æĪ¦":49902,"--+":49903,"ãĤ®":49904,"Ġ())":49905,"âĸ¬":49906,"Ġsizeof":49907,"}}}":49908,";;;;;;;;":49909,">]":49910,"âĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪ":49911,"Vaults":49912,"Ġistg":49913,"Ġnewcom":49914,"=]":49915,"¿½":49916,"ĵĺ":49917,"{\\":49918,"Args":49919,"Ġexha":49920,"(\\":49921,"Ġunnecess":49922,"\"}],\"":49923,"ĠUNCLASSIFIED":49924,">(":49925,"ãĤ¢ãĥ«":49926,"æ©":49927,"70710":49928,"Ń·":49929,"ãĥ¼ãĥĨãĤ£":49930,"ĠSakuya":49931,"ãĥĥãĥī":49932,"ĠPyrrha":49933,"escription":49934,"VIDIA":49935,"================================================================":49936,"Ġlooph":49937,"=~":49938,"Ġcumbers":49939,"Ġ)]":49940,"govtrack":49941,"ĠãĤµ":49942,"Ġsubur":49943,"Þ":49944,"Ġâī¡":49945,"Interstitial":49946,"ãĥ¼ãĥĨ":49947,"Ġgobl":49948,"ãĥīãĥ©":49949,"oldown":49950,"ģĸ":49951,"Depths":49952,"Ġ());":49953,"Ġ._":49954,"20439":49955,"Ġç¥ŀ":49956,"ãģ®å®":49957,"ãĤ¼":49958,"Ġ$\\":49959,"âĹ¼":49960,"Ġencount":49961,"Ġ-- 2.1 1.22066 [1, 1, 0, 2, 4, 2, 4, 2, 3, 2] +@}-;-'--- 2.2 1.32665 [0, 1, 3, 2, 1, 4, 4, 1, 3, 3] +aas 2.5 0.80623 [2, 3, 3, 4, 1, 2, 3, 2, 2, 3] +aayf 2.7 0.78102 [2, 3, 2, 4, 3, 2, 2, 3, 4, 2] +afu -2.9 0.83066 [-3, -3, -3, -3, -3, -1, -4, -4, -2, -3] +alol 2.8 0.74833 [2, 2, 2, 3, 3, 2, 3, 4, 4, 3] +ambw 2.9 0.7 [2, 3, 4, 2, 3, 2, 3, 3, 4, 3] +aml 3.4 0.66332 [4, 3, 2, 4, 3, 3, 4, 4, 3, 4] +atab -1.9 1.22066 [-2, 0, -1, -2, -1, -1, -2, -4, -4, -2] +awol -1.3 0.78102 [0, -1, -1, -1, -1, -1, -2, -2, -3, -1] +ayc 0.2 0.9798 [0, 1, -1, 1, 0, 1, 0, -1, 2, -1] +ayor -1.2 0.6 [-1, -1, -2, -2, -1, -1, -1, 0, -2, -1] +aug-00 0.3 1.18743 [2, 0, -2, 0, 0, 1, -1, 2, 1, 0] +bfd -2.7 0.78102 [-3, -2, -4, -2, -3, -2, -3, -2, -4, -2] +bfe -2.6 1.35647 [-3, -3, -4, -2, -3, -2, 1, -3, -4, -3] +bff 2.9 0.83066 [3, 3, 4, 2, 4, 2, 2, 3, 4, 2] +bffn 1.0 0.89443 [2, 1, -1, 1, 0, 1, 2, 1, 2, 1] +bl 2.3 1.1 [2, 1, 4, 1, 2, 2, 4, 3, 1, 3] +bsod -2.2 1.07703 [-1, -4, -3, -3, 0, -2, -3, -2, -2, -2] +btd -2.1 0.83066 [-1, -2, -3, -3, -3, -1, -3, -2, -1, -2] +btdt -0.1 1.22066 [0, -1, 0, -1, 0, 3, 1, -1, -1, -1] +bz 0.4 1.35647 [-1, 0, 0, 0, 4, 1, -1, 1, 0, 0] +b^d 2.6 0.8 [3, 2, 2, 4, 3, 1, 3, 3, 3, 2] +cwot -2.3 0.45826 [-3, -2, -2, -2, -2, -3, -2, -3, -2, -2] +d-': -2.5 0.67082 [-3, -3, -2, -2, -2, -4, -2, -3, -2, -2] +d8 -3.2 0.6 [-3, -3, -3, -3, -4, -4, -2, -3, -3, -4] +d: -2.9 0.83066 [-3, -3, -3, -3, -2, -4, -1, -3, -3, -4] +d:< -3.2 0.9798 [-4, -4, -4, -1, -3, -3, -4, -2, -3, -4] +d; -2.9 0.83066 [-1, -3, -3, -3, -3, -4, -2, -3, -3, -4] +d= -3.0 0.89443 [-4, -3, -3, -3, -2, -4, -1, -3, -3, -4] +doa -2.3 1.00499 [-2, -3, -3, -2, -2, -2, -4, 0, -2, -3] +dx -3.0 0.63246 [-3, -2, -3, -3, -4, -3, -4, -2, -3, -3] +ez 1.5 0.67082 [3, 2, 2, 1, 1, 1, 2, 1, 1, 1] +fav 2.4 0.91652 [3, 1, 3, 2, 2, 3, 1, 2, 3, 4] +fcol -1.8 0.74833 [-2, -2, -1, -2, -1, -2, -1, -3, -3, -1] +ff 1.8 1.249 [4, 2, 1, 2, 1, 3, 3, 0, 2, 0] +ffs -2.8 0.9798 [-2, -2, -3, -3, -2, -4, -4, -4, -1, -3] +fkm -2.4 1.35647 [-4, -1, -4, -2, -2, -3, -1, 0, -3, -4] +foaf 1.8 1.249 [2, 1, 2, 0, 4, 1, 1, 1, 2, 4] +ftw 2.0 0.7746 [2, 1, 1, 2, 2, 2, 3, 3, 1, 3] +fu -3.7 0.45826 [-3, -4, -4, -3, -3, -4, -4, -4, -4, -4] +fubar -3.0 1.09545 [-4, -3, -3, -4, -3, -3, -3, -4, 0, -3] +fwb 2.5 1.43178 [2, 3, 4, 0, 1, 2, 4, 1, 4, 4] +fyi 0.8 1.66132 [0, 1, 0, -1, 0, 0, 4, 4, 0, 0] +fysa 0.4 0.91652 [0, 0, 0, 1, 0, 3, 0, 0, 0, 0] +g1 1.4 0.4899 [2, 1, 1, 1, 2, 1, 2, 1, 1, 2] +gg 1.2 0.74833 [0, 2, 2, 1, 0, 1, 2, 2, 1, 1] +gga 1.7 0.45826 [2, 2, 1, 2, 2, 1, 2, 2, 1, 2] +gigo -0.6 1.11355 [-2, -1, 1, 0, 0, 0, -1, -2, -2, 1] +gj 2.0 1.0 [2, 1, 2, 1, 1, 3, 4, 2, 3, 1] +gl 1.3 0.64031 [1, 1, 1, 1, 3, 1, 1, 2, 1, 1] +gla 2.5 0.92195 [1, 2, 2, 4, 2, 4, 2, 3, 3, 2] +gn 1.2 0.74833 [1, 1, 1, 1, 3, 1, 1, 2, 1, 0] +gr8 2.7 0.78102 [1, 3, 3, 4, 3, 2, 3, 2, 3, 3] +grrr -0.4 1.42829 [-2, -1, 0, 1, -2, -1, -1, 3, 0, -1] +gt 1.1 0.53852 [1, 1, 1, 1, 1, 1, 2, 1, 0, 2] +h&k 2.3 0.78102 [2, 2, 2, 3, 4, 2, 3, 2, 1, 2] +hagd 2.2 0.87178 [2, 2, 3, 2, 1, 3, 4, 1, 2, 2] +hagn 2.2 0.87178 [2, 2, 3, 2, 1, 3, 4, 1, 2, 2] +hago 1.2 0.4 [1, 2, 1, 1, 1, 2, 1, 1, 1, 1] +hak 1.9 0.7 [3, 1, 2, 2, 1, 2, 3, 2, 1, 2] +hand 2.2 0.87178 [2, 2, 1, 3, 2, 3, 4, 1, 2, 2] +hho1/2k 1.4 1.11355 [1, -1, 2, 3, 1, 1, 1, 2, 3, 1] +hhoj 2.0 1.09545 [4, 2, 1, 1, 2, 1, 1, 4, 2, 2] +hhok 0.9 0.9434 [1, 2, 1, 0, -1, 0, 2, 1, 1, 2] +hugz 2.0 0.7746 [2, 3, 1, 3, 1, 3, 1, 2, 2, 2] +hi5 1.9 0.53852 [2, 2, 2, 1, 3, 2, 1, 2, 2, 2] +idk -0.4 0.66332 [0, 0, 0, 0, -1, -2, 0, 0, 0, -1] +ijs 0.7 1.84662 [0, -1, 0, -1, 0, 4, 0, 4, -1, 2] +ilu 3.4 0.66332 [3, 4, 3, 4, 2, 3, 4, 3, 4, 4] +iluaaf 2.7 1.1 [3, 3, 3, 2, 3, 0, 4, 3, 2, 4] +ily 3.4 0.66332 [3, 4, 3, 4, 2, 3, 4, 3, 4, 4] +ily2 2.6 0.66332 [3, 2, 3, 2, 3, 2, 3, 4, 2, 2] +iou 0.7 1.34536 [0, 0, -1, 2, 0, 0, 0, 4, 1, 1] +iyq 2.3 1.18743 [3, 3, 1, 1, 2, 1, 4, 4, 3, 1] +j/j 2.0 1.34164 [4, 1, 1, 1, 1, 4, 4, 1, 2, 1] +j/k 1.6 1.2 [1, 2, 1, 3, 0, 0, 2, 2, 1, 4] +j/p 1.4 0.66332 [1, 1, 0, 2, 1, 2, 2, 2, 1, 2] +j/t -0.2 1.46969 [1, -1, -1, -2, 1, 1, 2, -2, 1, -2] +j/w 1.0 1.0 [1, 1, 1, 3, 0, 0, 0, 2, 0, 2] +j4f 1.4 0.8 [2, 1, 1, 0, 3, 1, 1, 1, 2, 2] +j4g 1.7 1.18743 [1, 4, 1, 1, 3, 1, 3, 0, 2, 1] +jho 0.8 0.4 [1, 1, 1, 1, 0, 1, 1, 1, 0, 1] +jhomf 1.0 0.63246 [1, 1, 1, 0, 1, 0, 2, 2, 1, 1] +jj 1.0 0.63246 [1, 1, 1, 1, 2, 0, 2, 1, 1, 0] +jk 0.9 1.22066 [1, 0, 0, 1, 0, 0, 2, 1, 4, 0] +jp 0.8 0.74833 [1, 1, 1, 0, 2, 0, 2, 0, 1, 0] +jt 0.9 0.83066 [1, 1, 0, 2, 2, 0, 2, 0, 1, 0] +jw 1.6 1.68523 [3, 0, 0, 0, 0, 0, 3, 4, 2, 4] +jealz -1.2 0.9798 [-1, -1, -1, 1, -2, -2, -1, -3, -1, -1] +k4y 2.3 1.00499 [2, 1, 1, 2, 4, 2, 3, 4, 2, 2] +kfy 2.3 0.64031 [2, 2, 2, 1, 3, 2, 3, 3, 2, 3] +kia -3.2 0.6 [-3, -3, -3, -4, -3, -2, -3, -3, -4, -4] +kk 1.5 1.0247 [2, 1, 0, 0, 1, 2, 3, 3, 2, 1] +kmuf 2.2 1.4 [2, 2, 2, 3, 4, 3, -1, 1, 4, 2] +l 2.0 0.7746 [2, 1, 2, 3, 2, 3, 1, 3, 2, 1] +l&r 2.2 0.74833 [3, 2, 2, 3, 1, 3, 1, 3, 2, 2] +laoj 1.3 1.73494 [1, -2, -1, 3, 3, 2, 4, 1, 1, 1] +lmao 2.0 1.18322 [3, 0, 3, 0, 3, 1, 3, 2, 3, 2] +lmbao 1.8 1.77764 [3, 2, 2, 2, 1, 3, -3, 2, 4, 2] +lmfao 2.5 1.28452 [3, 2, 3, 3, 3, -1, 4, 2, 3, 2] +lmso 2.7 0.78102 [3, 3, 4, 3, 3, 1, 3, 3, 2, 2] +lol 2.9 0.83066 [4, 2, 2, 2, 4, 2, 3, 3, 4, 3] +lolz 2.7 0.78102 [2, 3, 3, 2, 2, 4, 4, 3, 2, 2] +lts 1.6 0.66332 [1, 1, 2, 2, 1, 3, 1, 1, 2, 2] +ly 2.6 0.91652 [2, 2, 1, 3, 4, 4, 3, 2, 2, 3] +ly4e 2.7 0.78102 [3, 3, 3, 2, 1, 3, 3, 4, 2, 3] +lya 3.3 0.78102 [3, 4, 4, 4, 2, 2, 3, 4, 3, 4] +lyb 3.0 0.63246 [3, 3, 4, 3, 2, 3, 2, 4, 3, 3] +lyl 3.1 0.7 [4, 3, 4, 3, 2, 3, 3, 2, 4, 3] +lylab 2.7 0.78102 [3, 3, 3, 1, 3, 4, 2, 2, 3, 3] +lylas 2.6 0.8 [3, 3, 3, 1, 3, 4, 2, 2, 2, 3] +lylb 1.6 1.56205 [2, 2, 3, -2, 4, 1, 3, 1, 1, 1] +m8 1.4 1.0198 [3, 0, 1, 0, 1, 3, 2, 2, 1, 1] +mia -1.2 0.4 [-2, -1, -1, -2, -1, -1, -1, -1, -1, -1] +mml 2.0 1.0 [1, 1, 2, 3, 3, 2, 1, 2, 4, 1] +mofo -2.4 2.2 [-4, -4, -4, 0, -3, -2, -2, -4, 3, -4] +muah 2.8 1.07703 [1, 2, 4, 4, 4, 2, 4, 2, 2, 3] +mubar -1.0 2.36643 [-4, -2, -3, -2, -2, -2, 1, 4, 2, -2] +musm 0.9 2.07123 [-1, 1, 1, 1, 4, 3, 1, -4, 1, 2] +mwah 2.5 0.80623 [2, 2, 2, 4, 2, 3, 2, 2, 4, 2] +n1 1.9 1.04403 [1, 1, 3, 2, 2, 3, 4, 1, 1, 1] +nbd 1.3 1.34536 [2, 1, 0, 0, 0, 4, 2, 0, 3, 1] +nbif -0.5 0.67082 [-1, -2, 0, 0, 0, 0, -1, -1, 0, 0] +nfc -2.7 0.9 [-3, -2, -2, -3, -1, -2, -4, -3, -4, -3] +nfw -2.4 1.0198 [-2, -2, -1, -3, -1, -2, -4, -3, -4, -2] +nh 2.2 0.6 [2, 2, 2, 2, 1, 3, 3, 3, 2, 2] +nimby -0.8 0.6 [0, 0, -1, 0, -1, -2, -1, -1, -1, -1] +nimjd -0.7 0.78102 [0, -2, -1, -2, 0, -1, 0, 0, 0, -1] +nimq -0.2 0.6 [0, 0, 0, 0, 0, 0, 0, 0, -2, 0] +nimy -1.4 1.68523 [-1, -2, -3, -2, -1, 2, -3, 0, 0, -4] +nitl -1.5 0.92195 [-1, -1, -2, -3, -1, -3, -1, -2, 0, -1] +nme -2.1 1.13578 [-1, -2, -2, -1, -4, -2, -3, -3, 0, -3] +noyb -0.7 1.67631 [-1, -2, 0, -1, -1, -2, -2, -1, 4, -1] +np 1.4 1.0198 [0, 1, 1, 1, 1, 2, 2, 4, 1, 1] +ntmu 1.4 0.66332 [1, 1, 0, 1, 2, 2, 2, 2, 2, 1] +o-8 -0.5 1.5 [2, -1, 0, 0, -2, -2, 0, -2, 2, -2] +o-: -0.3 1.18743 [2, -1, 0, 0, -1, -2, 0, -2, 1, 0] +o-| -1.1 0.53852 [-1, -1, -1, 0, -1, -1, -1, -2, -2, -1] +o.o -0.6 0.8 [-1, -1, -2, 0, 1, 0, -1, 0, -1, -1] +O.o -0.6 0.8 [-1, -1, -2, 0, 1, 0, -1, 0, -1, -1] +o.O -0.6 0.8 [-1, -1, -2, 0, 1, 0, -1, 0, -1, -1] +o: -0.2 0.87178 [-1, 0, -1, -2, 0, 1, 0, 1, 0, 0] +o:) 1.5 0.67082 [3, 1, 1, 2, 2, 2, 1, 1, 1, 1] +o:-) 2.0 1.18322 [1, 4, 1, 2, 4, 1, 1, 2, 3, 1] +o:-3 2.2 0.9798 [1, 4, 2, 3, 3, 2, 1, 2, 3, 1] +o:3 2.3 0.78102 [3, 3, 2, 2, 1, 2, 4, 2, 2, 2] +o:< -0.3 1.1 [-1, -1, -2, 0, -1, 0, 1, 2, 0, -1] +o;^) 1.6 0.8 [1, 2, 1, 2, 1, 2, 2, 0, 3, 2] +ok 1.6 1.42829 [0, 0, 1, 1, 1, 4, 3, 4, 1, 1] +o_o -0.5 0.92195 [0, -1, 0, -2, -2, 0, -1, 1, 0, 0] +O_o -0.5 0.92195 [0, -1, 0, -2, -2, 0, -1, 1, 0, 0] +o_O -0.5 0.92195 [0, -1, 0, -2, -2, 0, -1, 1, 0, 0] +pita -2.4 1.2 [-2, -1, -1, -4, -4, -2, -4, -2, -3, -1] +pls 0.3 0.45826 [0, 1, 1, 1, 0, 0, 0, 0, 0, 0] +plz 0.3 0.45826 [0, 1, 1, 1, 0, 0, 0, 0, 0, 0] +pmbi 0.8 1.32665 [3, 0, 0, 1, 1, -2, 2, 2, 0, 1] +pmfji 0.3 0.78102 [0, 0, 1, 0, 2, -1, 0, 1, 0, 0] +pmji 0.7 1.00499 [1, 2, 0, -1, 0, 0, 2, 2, 1, 0] +po -2.6 0.91652 [-2, -3, -4, -3, -3, -3, -1, -3, -1, -3] +ptl 2.6 1.11355 [3, 4, 2, 4, 1, 2, 3, 1, 4, 2] +pu -1.1 1.3 [-3, -1, -3, -2, -1, -1, -1, -1, 1, 1] +qq -2.2 0.6 [-2, -2, -1, -3, -3, -2, -2, -3, -2, -2] +qt 1.8 0.6 [2, 2, 1, 2, 1, 3, 2, 1, 2, 2] +r&r 2.4 1.0198 [2, 4, 2, 3, 1, 4, 2, 2, 1, 3] +rofl 2.7 0.78102 [3, 2, 2, 2, 4, 4, 2, 3, 3, 2] +roflmao 2.5 1.11803 [4, 2, 2, 4, 1, 1, 2, 4, 3, 2] +rotfl 2.6 0.66332 [3, 2, 3, 3, 1, 3, 3, 3, 2, 3] +rotflmao 2.8 1.07703 [4, 3, 2, 4, 1, 1, 4, 3, 3, 3] +rotflmfao 2.5 1.11803 [3, 4, 1, 3, 3, 3, 0, 3, 2, 3] +rotflol 3.0 1.09545 [1, 4, 4, 4, 2, 2, 2, 3, 4, 4] +rotgl 2.9 0.7 [4, 3, 2, 2, 3, 3, 3, 2, 4, 3] +rotglmao 1.8 2.4 [3, 3, 4, 3, -1, 1, 4, -4, 2, 3] +s: -1.1 0.83066 [-1, -1, -2, -2, -1, -1, -2, -1, 1, -1] +sapfu -1.1 1.57797 [-2, 0, -3, -1, -1, 1, -2, 2, -2, -3] +sete 2.8 0.87178 [3, 3, 3, 2, 3, 3, 4, 4, 1, 2] +sfete 2.7 0.78102 [4, 3, 3, 3, 2, 4, 2, 2, 2, 2] +sgtm 2.4 1.0198 [2, 1, 1, 2, 3, 3, 2, 2, 4, 4] +slap 0.6 2.15407 [2, -1, 1, -1, 0, 4, -3, 4, 1, -1] +slaw 2.1 1.04403 [3, 2, 0, 2, 2, 2, 3, 1, 4, 2] +smh -1.3 0.64031 [-2, -1, 0, -1, -1, -2, -2, -1, -2, -1] +snafu -2.5 1.11803 [-3, -4, -3, -3, -1, 0, -2, -3, -3, -3] +sob -2.8 0.9798 [-3, -4, -3, -2, -2, -1, -2, -4, -4, -3] +swak 2.3 1.00499 [2, 2, 2, 1, 4, 2, 3, 2, 1, 4] +tgif 2.3 1.34536 [1, 3, 3, 3, -1, 2, 4, 2, 3, 3] +thks 1.4 0.4899 [1, 2, 1, 2, 1, 2, 1, 1, 2, 1] +thx 1.5 0.92195 [0, 1, 3, 2, 1, 2, 1, 1, 3, 1] +tia 2.3 0.9 [3, 1, 2, 1, 4, 3, 2, 3, 2, 2] +tmi -0.3 1.61555 [-1, -1, 2, -1, 1, -2, -2, -1, 3, -1] +tnx 1.1 0.53852 [2, 1, 1, 0, 1, 1, 2, 1, 1, 1] +true 1.8 1.32665 [2, 1, 1, 0, 1, 4, 3, 1, 4, 1] +tx 1.5 0.92195 [3, 2, 1, 0, 2, 1, 3, 1, 1, 1] +txs 1.1 0.7 [1, 2, 0, 1, 2, 0, 1, 2, 1, 1] +ty 1.6 0.66332 [1, 2, 3, 1, 2, 2, 1, 2, 1, 1] +tyvm 2.5 1.11803 [2, 2, 1, 3, 1, 4, 2, 4, 2, 4] +urw 1.9 1.13578 [1, 2, 1, 2, 4, 2, 4, 1, 1, 1] +vbg 2.1 1.75784 [2, 3, 3, 3, 3, -3, 3, 2, 2, 3] +vbs 3.1 0.53852 [2, 3, 3, 3, 4, 4, 3, 3, 3, 3] +vip 2.3 1.00499 [2, 1, 1, 3, 4, 2, 2, 4, 2, 2] +vwd 2.6 0.91652 [4, 2, 4, 2, 1, 3, 3, 2, 3, 2] +vwp 2.1 0.7 [3, 1, 2, 2, 3, 2, 2, 3, 1, 2] +wag -0.2 0.74833 [-1, 0, 0, 0, 0, 0, -2, 1, 0, 0] +wd 2.7 1.1 [3, 1, 4, 3, 4, 2, 1, 3, 2, 4] +wilco 0.9 0.9434 [1, 3, 1, 0, 1, 0, 2, 1, 0, 0] +wp 1.0 0.0 [1, 1, 1, 1, 1, 1, 1, 1, 1, 1] +wtf -2.8 0.74833 [-4, -3, -2, -3, -2, -2, -2, -4, -3, -3] +wtg 2.1 0.7 [1, 3, 2, 3, 2, 2, 2, 1, 2, 3] +wth -2.4 0.4899 [-2, -3, -2, -3, -2, -2, -2, -3, -3, -2] +x-d 2.7 0.78102 [1, 3, 4, 2, 3, 3, 3, 2, 3, 3] +x-p 1.8 0.87178 [2, 1, 3, 1, 3, 1, 3, 1, 2, 1] +xd 2.7 0.9 [1, 4, 4, 3, 2, 2, 3, 3, 2, 3] +xlnt 3.0 0.89443 [4, 3, 3, 1, 4, 4, 3, 3, 3, 2] +xoxo 3.0 0.7746 [2, 2, 4, 2, 3, 3, 4, 3, 3, 4] +xoxozzz 2.3 0.78102 [3, 1, 2, 2, 2, 2, 3, 2, 4, 2] +xp 1.2 0.4 [1, 1, 1, 1, 2, 1, 2, 1, 1, 1] +xqzt 1.6 1.42829 [0, 2, 1, 2, 4, -1, 3, 1, 1, 3] +xtc 0.8 1.93907 [2, 0, -3, 3, 3, -1, 3, 1, -1, 1] +yolo 1.1 0.83066 [0, 1, 1, 2, 1, 1, 1, 3, 0, 1] +yoyo 0.4 1.85472 [-1, 0, -1, -1, 4, 2, -2, 2, 2, -1] +yvw 1.6 0.4899 [1, 2, 1, 1, 2, 2, 2, 1, 2, 2] +yw 1.8 1.32665 [1, 1, 1, 4, 1, 1, 4, 0, 3, 2] +ywia 2.5 1.11803 [3, 2, 3, 4, 1, 1, 1, 3, 3, 4] +zzz -1.2 0.87178 [0, -1, 0, -1, -3, -1, -1, -2, -2, -1] +[-; 0.5 1.28452 [1, -1, -1, 1, 1, 1, 2, -2, 2, 1] +[: 1.3 0.45826 [1, 1, 2, 1, 2, 2, 1, 1, 1, 1] +[; 1.0 1.34164 [2, 1, 2, 2, 1, 2, 2, -2, -1, 1] +[= 1.7 0.64031 [2, 2, 1, 1, 1, 2, 2, 3, 2, 1] +\-: -1.0 1.18322 [-3, -1, -1, -1, -1, -1, 2, -2, -1, -1] +\: -1.0 0.0 [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1] +\:< -1.7 1.18743 [-1, -3, -2, -2, -3, -3, -2, -1, 1, -1] +\= -1.1 0.3 [-1, -1, -1, -1, -1, -1, -1, -2, -1, -1] +\^: -1.3 0.45826 [-1, -1, -1, -2, -1, -1, -1, -2, -2, -1] +\o/ 2.2 0.9798 [2, 1, 1, 2, 4, 2, 2, 4, 2, 2] +\o: -1.2 0.4 [-1, -1, -1, -1, -2, -1, -1, -2, -1, -1] +]-: -2.1 0.53852 [-2, -3, -3, -2, -2, -2, -1, -2, -2, -2] +]: -1.6 0.66332 [-1, -2, -1, -2, -3, -2, -1, -1, -1, -2] +]:< -2.5 0.80623 [-2, -2, -2, -3, -4, -2, -2, -2, -2, -4] +^<_< 1.4 1.11355 [3, 1, 3, 2, 1, 1, 1, -1, 2, 1] +^urs -2.8 0.6 [-2, -3, -3, -2, -3, -3, -2, -3, -4, -3] +abandon -1.9 0.53852 [-1, -2, -2, -2, -2, -3, -2, -2, -1, -2] +abandoned -2.0 1.09545 [-1, -1, -3, -2, -1, -4, -1, -3, -3, -1] +abandoner -1.9 0.83066 [-1, -1, -3, -2, -1, -3, -1, -2, -3, -2] +abandoners -1.9 0.83066 [-2, -3, -2, -3, -2, -1, -2, -2, 0, -2] +abandoning -1.6 0.8 [-3, -2, -3, -2, -1, -1, -1, -1, -1, -1] +abandonment -2.4 1.0198 [-4, -2, -1, -4, -2, -1, -2, -3, -3, -2] +abandonments -1.7 0.45826 [-2, -1, -2, -2, -1, -2, -1, -2, -2, -2] +abandons -1.3 0.9 [-2, -1, -1, -2, -1, -2, -1, -2, 1, -2] +abducted -2.3 1.18743 [-3, -1, 0, -3, -1, -3, -4, -2, -3, -3] +abduction -2.8 0.87178 [-4, -3, -3, -4, -1, -3, -2, -2, -3, -3] +abductions -2.0 1.41421 [-3, -4, -1, -3, -1, -3, 1, -2, -1, -3] +abhor -2.0 1.09545 [-3, -3, -1, -1, -2, -1, -3, -3, 0, -3] +abhorred -2.4 1.49666 [-4, -4, 0, -3, -2, -1, -4, -3, -3, 0] +abhorrent -3.1 1.3 [-4, -4, -4, -2, 0, -4, -2, -3, -4, -4] +abhors -2.9 1.51327 [0, -4, -3, -3, -4, -4, 0, -4, -3, -4] +abilities 1.0 0.63246 [1, 2, 0, 1, 0, 1, 1, 1, 1, 2] +ability 1.3 0.64031 [1, 1, 1, 0, 1, 2, 2, 2, 2, 1] +aboard 0.1 0.3 [0, 0, 0, 0, 1, 0, 0, 0, 0, 0] +absentee -1.1 0.53852 [-1, -1, 0, -2, -1, -1, -2, -1, -1, -1] +absentees -0.8 0.6 [-1, 0, 0, -1, -1, 0, -2, -1, -1, -1] +absolve 1.2 1.46969 [2, -3, 2, 2, 1, 1, 2, 1, 2, 2] +absolved 1.5 0.92195 [3, 1, 2, 1, 0, 2, 3, 1, 1, 1] +absolves 1.3 1.00499 [3, 1, 1, 0, 0, 2, 3, 1, 1, 1] +absolving 1.6 0.8 [3, 1, 2, 1, 1, 2, 3, 1, 1, 1] +abuse -3.2 0.6 [-4, -2, -3, -4, -3, -4, -3, -3, -3, -3] +abused -2.3 0.64031 [-2, -2, -3, -2, -2, -4, -2, -2, -2, -2] +abuser -2.6 0.4899 [-3, -2, -3, -3, -2, -3, -2, -2, -3, -3] +abusers -2.6 1.0198 [-2, -3, -3, -3, -3, -2, -3, -4, -3, 0] +abuses -2.6 0.66332 [-3, -2, -3, -3, -3, -3, -1, -2, -3, -3] +abusing -2.0 1.41421 [-1, -2, -2, -4, -4, -2, -3, -1, 1, -2] +abusive -3.2 0.74833 [-4, -3, -3, -4, -4, -3, -4, -2, -3, -2] +abusively -2.8 0.6 [-3, -4, -3, -2, -3, -2, -2, -3, -3, -3] +abusiveness -2.5 0.92195 [-2, -4, -2, -3, -2, -3, -4, -2, -1, -2] +abusivenesses -3.0 0.63246 [-3, -3, -4, -3, -4, -2, -2, -3, -3, -3] +accept 1.6 0.91652 [2, 1, 2, 1, 1, 2, 4, 1, 1, 1] +acceptabilities 1.6 0.66332 [0, 2, 2, 2, 1, 2, 2, 2, 1, 2] +acceptability 1.1 0.53852 [1, 0, 1, 2, 1, 2, 1, 1, 1, 1] +acceptable 1.3 0.45826 [1, 2, 1, 1, 1, 2, 1, 1, 2, 1] +acceptableness 1.3 0.9 [1, 0, 2, 1, 2, 1, 1, 0, 2, 3] +acceptably 1.5 0.67082 [3, 2, 1, 1, 1, 2, 1, 1, 2, 1] +acceptance 2.0 0.63246 [3, 1, 3, 2, 1, 2, 2, 2, 2, 2] +acceptances 1.7 0.78102 [3, 1, 1, 1, 2, 2, 1, 2, 3, 1] +acceptant 1.6 0.8 [0, 1, 2, 2, 2, 1, 2, 1, 3, 2] +acceptation 1.3 0.78102 [0, 1, 2, 1, 1, 1, 1, 3, 2, 1] +acceptations 0.9 0.83066 [1, 2, 0, 2, 0, 1, 0, 2, 1, 0] +accepted 1.1 0.3 [1, 1, 1, 1, 1, 2, 1, 1, 1, 1] +accepting 1.6 0.66332 [2, 2, 2, 1, 1, 2, 1, 3, 1, 1] +accepts 1.3 0.45826 [1, 2, 1, 1, 1, 2, 2, 1, 1, 1] +accident -2.1 0.83066 [-2, -2, -1, -3, -4, -2, -2, -1, -2, -2] +accidental -0.3 0.45826 [-1, -1, 0, 0, 0, 0, 0, 0, -1, 0] +accidentally -1.4 0.91652 [-2, 0, -2, 0, -3, -1, -1, -1, -2, -2] +accidents -1.3 0.78102 [-1, -1, -1, -1, -2, 0, -3, -1, -2, -1] +accomplish 1.8 0.6 [1, 2, 3, 2, 2, 2, 1, 1, 2, 2] +accomplished 1.9 0.53852 [2, 2, 2, 1, 2, 2, 3, 1, 2, 2] +accomplishes 1.7 0.9 [2, 2, 1, 0, 2, 3, 3, 1, 1, 2] +accusation -1.0 1.09545 [-1, -1, -2, -2, -2, -1, -1, -1, 2, -1] +accusations -1.3 1.26886 [-2, -2, -1, -3, -2, -1, -1, 2, -2, -1] +accuse -0.8 1.53623 [-3, -1, -1, -2, 1, -2, 1, -2, 2, -1] +accused -1.2 1.46969 [-2, -1, -2, 2, -2, -3, -2, -2, -1, 1] +accuses -1.4 1.0198 [-2, -1, -2, 1, -2, -3, -1, -2, -1, -1] +accusing -0.7 1.34536 [-2, -1, -1, 1, -3, -1, -1, 2, -1, 0] +ache -1.6 1.2 [-1, -2, -2, -2, -1, -4, -1, 1, -2, -2] +ached -1.6 0.8 [-2, -2, -1, -2, -1, -2, -3, 0, -1, -2] +aches -1.0 0.7746 [-1, -2, -1, -1, -1, 1, -2, -1, -1, -1] +achievable 1.3 0.45826 [2, 1, 1, 1, 1, 1, 1, 2, 2, 1] +aching -2.2 0.74833 [-2, -3, -2, -1, -3, -3, -2, -3, -1, -2] +acquit 0.8 1.72047 [-3, 3, -1, 3, 2, 1, 1, 1, 0, 1] +acquits 0.1 1.37477 [1, -3, -1, 0, 2, 0, -1, 1, 1, 1] +acquitted 1.0 0.89443 [2, 2, 1, 1, 2, 0, 1, 1, -1, 1] +acquitting 1.3 0.78102 [3, 2, 0, 1, 1, 1, 2, 1, 1, 1] +acrimonious -1.7 1.73494 [-1, -3, -2, -3, 3, -3, -1, -2, -2, -3] +active 1.7 1.26886 [1, 2, 1, 1, 1, 4, 2, 4, 0, 1] +actively 1.3 0.78102 [0, 1, 0, 2, 2, 1, 1, 2, 2, 2] +activeness 0.6 0.8 [0, 2, 0, 0, 1, 0, 1, 0, 2, 0] +activenesses 0.8 0.74833 [2, 0, 1, 0, 0, 0, 1, 2, 1, 1] +actives 1.1 0.7 [2, 1, 0, 1, 1, 0, 1, 1, 2, 2] +adequate 0.9 0.7 [0, 0, 1, 1, 0, 2, 1, 1, 2, 1] +admirability 2.4 0.4899 [2, 3, 3, 3, 3, 2, 2, 2, 2, 2] +admirable 2.6 0.66332 [2, 3, 3, 3, 4, 3, 2, 2, 2, 2] +admirableness 2.2 0.87178 [2, 2, 3, 3, 3, 1, 3, 1, 3, 1] +admirably 2.5 0.67082 [2, 3, 3, 3, 4, 2, 2, 2, 2, 2] +admiral 1.3 1.18743 [0, 0, 1, 3, 3, 2, 2, 0, 2, 0] +admirals 1.5 0.80623 [2, 2, 0, 2, 2, 0, 1, 2, 2, 2] +admiralties 1.6 0.66332 [2, 2, 2, 1, 0, 2, 2, 2, 1, 2] +admiralty 1.2 1.53623 [0, 4, 0, 0, 0, 2, 2, 3, 2, -1] +admiration 2.5 0.80623 [3, 1, 1, 3, 3, 2, 3, 3, 3, 3] +admirations 1.6 0.66332 [2, 2, 1, 1, 2, 2, 2, 2, 2, 0] +admire 2.1 0.83066 [3, 3, 1, 3, 3, 2, 1, 2, 1, 2] +admired 2.3 0.78102 [4, 2, 2, 2, 2, 2, 3, 3, 1, 2] +admirer 1.8 0.74833 [2, 1, 1, 2, 3, 2, 3, 1, 1, 2] +admirers 1.7 1.00499 [2, 3, 2, 2, 2, 1, -1, 2, 2, 2] +admires 1.5 0.67082 [3, 1, 1, 2, 1, 2, 2, 1, 1, 1] +admiring 1.6 0.8 [1, 2, 1, 1, 3, 3, 2, 1, 1, 1] +admiringly 2.3 0.64031 [1, 3, 3, 2, 2, 2, 2, 3, 3, 2] +admit 0.8 1.07703 [0, 0, 0, 0, 0, 1, 3, 2, 2, 0] +admits 1.2 0.87178 [1, 2, 2, 2, 0, 0, 1, 2, 0, 2] +admitted 0.4 0.66332 [0, 1, 0, 1, 0, 0, 2, 0, 0, 0] +admonished -1.9 0.9434 [-2, -2, -2, -1, -2, -3, -1, -1, -1, -4] +adopt 0.7 0.64031 [0, 0, 1, 1, 1, 0, 1, 0, 1, 2] +adopts 0.7 0.64031 [0, 0, 1, 2, 1, 0, 1, 1, 0, 1] +adorability 2.2 0.74833 [2, 2, 2, 2, 1, 2, 3, 2, 4, 2] +adorable 2.2 0.6 [3, 2, 2, 3, 2, 2, 1, 3, 2, 2] +adorableness 2.5 0.67082 [2, 3, 3, 2, 3, 2, 1, 3, 3, 3] +adorably 2.1 0.7 [3, 1, 2, 3, 2, 2, 1, 3, 2, 2] +adoration 2.9 0.7 [3, 3, 3, 2, 3, 3, 4, 2, 4, 2] +adorations 2.2 0.87178 [2, 2, 3, 1, 3, 1, 3, 3, 1, 3] +adore 2.6 0.91652 [3, 3, 1, 2, 3, 3, 3, 4, 1, 3] +adored 1.8 0.87178 [2, 3, 3, 2, 2, 1, 1, 0, 2, 2] +adorer 1.7 1.1 [2, 4, 3, 1, 2, 1, 1, 0, 2, 1] +adorers 2.1 0.7 [3, 2, 1, 2, 2, 2, 3, 2, 3, 1] +adores 1.6 0.66332 [2, 1, 3, 2, 2, 1, 1, 1, 2, 1] +adoring 2.6 0.66332 [2, 3, 3, 3, 1, 3, 3, 2, 3, 3] +adoringly 2.4 0.8 [2, 3, 2, 3, 3, 3, 3, 1, 1, 3] +adorn 0.9 0.53852 [1, 1, 1, 0, 2, 1, 1, 0, 1, 1] +adorned 0.8 1.249 [1, 1, 0, 2, -1, 3, -1, 2, 1, 0] +adorner 1.3 0.78102 [1, 1, 1, 2, 1, 3, 1, 2, 1, 0] +adorners 0.9 0.9434 [2, 2, 0, 1, -1, 2, 1, 1, 0, 1] +adorning 1.0 0.7746 [0, 0, 1, 1, 1, 2, 2, 1, 0, 2] +adornment 1.3 0.78102 [1, 3, 1, 0, 2, 2, 1, 1, 1, 1] +adornments 0.8 1.16619 [2, -1, 0, 0, 2, 1, 2, -1, 1, 2] +adorns 0.5 1.56525 [3, -1, 1, 0, 2, -1, 3, -1, 0, -1] +advanced 1.0 0.63246 [1, 0, 1, 1, 1, 0, 1, 2, 1, 2] +advantage 1.0 0.63246 [1, 2, 1, 1, 2, 0, 1, 0, 1, 1] +advantaged 1.4 0.91652 [1, 0, 3, 0, 1, 1, 2, 2, 2, 2] +advantageous 1.5 0.67082 [2, 0, 2, 2, 2, 1, 1, 1, 2, 2] +advantageously 1.9 0.53852 [2, 2, 2, 3, 2, 2, 2, 1, 1, 2] +advantageousness 1.6 1.28062 [-2, 2, 3, 1, 2, 2, 2, 2, 2, 2] +advantages 1.5 0.80623 [1, 0, 3, 1, 1, 1, 2, 2, 2, 2] +advantaging 1.6 0.66332 [3, 1, 1, 2, 1, 1, 2, 2, 2, 1] +adventure 1.3 0.45826 [1, 2, 1, 1, 2, 1, 1, 1, 1, 2] +adventured 1.3 0.45826 [1, 2, 1, 2, 1, 2, 1, 1, 1, 1] +adventurer 1.2 0.6 [1, 2, 0, 2, 1, 2, 1, 1, 1, 1] +adventurers 0.9 0.9434 [0, 1, 0, 1, 0, 1, 0, 1, 3, 2] +adventures 1.4 1.2 [2, 2, 1, 2, -2, 2, 2, 1, 2, 2] +adventuresome 1.7 1.1 [0, 3, 0, 1, 2, 2, 3, 1, 2, 3] +adventuresomeness 1.3 1.00499 [1, 0, 0, 2, 3, 2, 2, 0, 1, 2] +adventuress 0.8 1.72047 [3, -1, 2, 2, 0, 0, 1, 2, -3, 2] +adventuresses 1.4 1.11355 [1, 0, 0, 3, 2, 2, 3, 0, 1, 2] +adventuring 2.3 0.78102 [2, 3, 2, 3, 1, 3, 3, 1, 2, 3] +adventurism 1.5 0.67082 [1, 0, 2, 2, 2, 2, 1, 1, 2, 2] +adventurist 1.4 0.4899 [1, 1, 2, 1, 2, 2, 2, 1, 1, 1] +adventuristic 1.7 0.64031 [2, 1, 1, 2, 2, 1, 3, 2, 2, 1] +adventurists 1.2 0.9798 [3, 1, 0, 0, 1, 2, 1, 0, 2, 2] +adventurous 1.4 1.11355 [0, 1, 2, 1, 2, 0, 3, 2, 3, 0] +adventurously 1.3 0.9 [0, 1, 2, 2, 1, 2, 1, 1, 0, 3] +adventurousness 1.8 0.87178 [0, 1, 3, 2, 1, 3, 2, 2, 2, 2] +adversarial -1.5 0.92195 [-2, 0, -1, -3, -2, -2, 0, -1, -2, -2] +adversaries -1.0 0.63246 [-1, -1, -1, -1, 0, -2, -2, -1, -1, 0] +adversary -0.8 1.72047 [-3, -1, -2, -2, -2, 2, 1, -1, 2, -2] +adversative -1.2 0.74833 [-1, -1, -2, -1, -1, -1, -3, -1, 0, -1] +adversatively -0.1 1.37477 [0, -2, -1, 0, -1, -1, 1, 1, 3, -1] +adversatives -1.0 0.7746 [-1, -1, -2, -1, -2, 1, -1, -1, -1, -1] +adverse -1.5 0.80623 [-2, -2, -2, -1, -1, 0, -1, -3, -1, -2] +adversely -0.8 1.6 [-2, -2, 0, -2, -2, 2, -2, 2, -2, 0] +adverseness -0.6 1.35647 [-1, -2, -1, 2, -1, -2, -1, 2, -1, -1] +adversities -1.5 0.67082 [-2, -2, -1, -1, -2, 0, -2, -1, -2, -2] +adversity -1.8 0.6 [-3, -2, -1, -2, -2, -2, -1, -1, -2, -2] +affected -0.6 1.35647 [-1, -2, 0, -2, 0, 0, 2, -2, 1, -2] +affection 2.4 0.8 [3, 2, 2, 3, 4, 1, 3, 2, 2, 2] +affectional 1.9 1.04403 [3, 3, 2, 0, 2, 2, 2, 3, 2, 0] +affectionally 1.5 0.92195 [1, 1, 3, 1, 1, 0, 2, 2, 3, 1] +affectionate 1.9 1.13578 [1, 0, 3, 1, 3, 2, 2, 1, 2, 4] +affectionately 2.2 0.87178 [4, 1, 1, 2, 2, 2, 3, 3, 2, 2] +affectioned 1.8 0.4 [2, 2, 1, 2, 2, 1, 2, 2, 2, 2] +affectionless -2.0 0.44721 [-2, -1, -2, -2, -2, -2, -2, -2, -2, -3] +affections 1.5 1.11803 [-1, 3, 2, 2, 1, 1, 2, 1, 3, 1] +afflicted -1.5 1.0247 [-1, -2, -3, -2, 1, -1, -1, -2, -2, -2] +affronted 0.2 2.03961 [1, -2, 2, -2, -2, 4, 0, 2, 1, -2] +aggravate -2.5 0.80623 [-3, -3, -2, -3, -2, -4, -3, -2, -2, -1] +aggravated -1.9 1.04403 [-4, -3, -3, -1, -1, -1, -1, -2, -2, -1] +aggravates -1.9 0.83066 [-3, -2, -2, -2, -3, -1, -2, -2, 0, -2] +aggravating -1.2 0.9798 [-2, -2, -1, -2, -2, -1, 0, 1, -1, -2] +aggress -1.3 1.55242 [-2, -2, 2, -2, -1, -3, -3, -1, 1, -2] +aggressed -1.4 0.4899 [-1, -1, -1, -1, -2, -1, -2, -2, -2, -1] +aggresses -0.5 1.43178 [-1, -2, -1, -1, -3, 0, -1, 1, 2, 1] +aggressing -0.6 1.28062 [-1, -2, -1, 0, -1, -2, 2, -2, 1, 0] +aggression -1.2 1.77764 [-2, -2, 1, 1, -4, 2, -2, -2, -2, -2] +aggressions -1.3 1.48661 [-1, -2, -2, -2, -2, -3, 1, -2, 2, -2] +aggressive -0.6 1.28062 [-2, 1, -2, -2, 0, -2, -1, 1, 1, 0] +aggressively -1.3 1.55242 [-1, -2, 3, -2, -3, -2, -1, -1, -2, -2] +aggressiveness -1.8 0.74833 [-1, -2, -1, -2, -2, -1, -3, -1, -3, -2] +aggressivities -1.4 1.28062 [-1, -1, -1, -2, 2, -2, -2, -2, -3, -2] +aggressivity -0.6 1.35647 [-3, -1, 1, 0, 0, 0, -3, -1, 1, 0] +aggressor -0.8 1.32665 [-2, 0, -1, 2, -2, -2, -1, -1, -2, 1] +aggressors -0.9 1.13578 [-2, -2, -1, -1, -1, 1, 1, 0, -2, -2] +aghast -1.9 1.04403 [-2, -3, -1, 0, -2, -1, -4, -2, -2, -2] +agitate -1.7 0.64031 [-2, -2, -3, -1, -1, -1, -2, -1, -2, -2] +agitated -2.0 0.63246 [-2, -2, -2, -2, -1, -3, -3, -2, -2, -1] +agitatedly -1.6 0.8 [-1, -2, -1, -3, -1, -3, -1, -1, -2, -1] +agitates -1.4 0.8 [-2, 0, -1, -2, -1, -1, -3, -1, -2, -1] +agitating -1.8 0.87178 [-2, -1, -1, -1, -2, -3, -1, -3, -3, -1] +agitation -1.0 1.09545 [-2, -1, 1, -1, -2, -1, -2, -1, 1, -2] +agitational -1.2 1.66132 [-3, -3, -2, 1, -1, -2, 0, 2, -1, -3] +agitations -1.3 1.18743 [-1, -2, -1, -3, -2, -3, 0, -1, 1, -1] +agitative -1.3 1.26886 [-2, -2, -1, -2, -1, -3, 1, -2, 1, -2] +agitato -0.1 1.13578 [1, 2, 0, 0, 0, 0, -2, 0, -2, 0] +agitator -1.4 0.8 [-1, -1, -1, -2, -1, -1, -2, -3, -2, 0] +agitators -2.1 0.9434 [-2, -3, -3, -2, -2, -1, -3, -2, 0, -3] +agog 1.9 0.7 [2, 1, 3, 3, 2, 1, 2, 2, 1, 2] +agonise -2.1 0.9434 [-3, -3, -2, -3, -1, -3, -1, -3, -1, -1] +agonised -2.3 0.64031 [-2, -3, -3, -2, -2, -2, -2, -3, -1, -3] +agonises -2.4 0.91652 [-1, -4, -3, -3, -2, -2, -2, -3, -1, -3] +agonising -1.5 1.43178 [-3, -2, -3, -3, -1, 1, 0, 0, -1, -3] +agonize -2.3 0.9 [-2, -3, -1, -2, -2, -2, -4, -1, -3, -3] +agonized -2.2 1.249 [-2, -3, -3, -3, -3, -2, -1, -3, 1, -3] +agonizes -2.3 1.18743 [-1, -3, -4, -3, -3, -2, -1, -3, 0, -3] +agonizing -2.7 0.78102 [-3, -2, -2, -2, -4, -3, -3, -2, -4, -2] +agonizingly -2.3 1.48661 [-3, -1, -3, -4, -4, -2, -3, 1, -1, -3] +agony -1.8 1.16619 [-3, -1, -2, -4, -2, -1, 0, -3, -1, -1] +agree 1.5 1.11803 [1, 0, 3, 1, 2, 1, 4, 1, 1, 1] +agreeability 1.9 1.04403 [1, 1, 1, 3, 3, 2, 1, 2, 4, 1] +agreeable 1.8 0.4 [2, 1, 2, 1, 2, 2, 2, 2, 2, 2] +agreeableness 1.8 0.9798 [2, 3, 2, 1, 1, 1, 4, 1, 2, 1] +agreeablenesses 1.3 0.45826 [2, 1, 1, 2, 1, 2, 1, 1, 1, 1] +agreeably 1.6 0.4899 [1, 1, 2, 1, 1, 2, 2, 2, 2, 2] +agreed 1.1 0.53852 [1, 1, 2, 1, 1, 2, 1, 0, 1, 1] +agreeing 1.4 0.4899 [1, 1, 1, 1, 2, 1, 1, 2, 2, 2] +agreement 2.2 0.74833 [2, 1, 1, 3, 3, 3, 2, 2, 2, 3] +agreements 1.1 1.13578 [0, 1, 0, 1, 1, 2, 1, 0, 4, 1] +agrees 0.8 1.4 [1, 1, 1, 1, 3, 1, -3, 1, 1, 1] +alarm -1.4 0.91652 [-1, -1, -2, -2, -2, -2, -1, 1, -2, -2] +alarmed -1.4 0.4899 [-2, -1, -2, -2, -1, -1, -1, -2, -1, -1] +alarming -0.5 1.62788 [-1, 1, -1, 1, -3, 1, -2, -3, 1, 1] +alarmingly -2.6 0.91652 [-3, -3, -4, -3, -2, -1, -3, -3, -1, -3] +alarmism -0.3 1.26886 [-2, 0, -2, -1, 0, 1, 1, -1, 2, -1] +alarmists -1.1 1.3 [-1, -2, -3, -2, -1, -2, 1, 1, 0, -2] +alarms -1.1 1.04403 [-2, 0, -2, -1, 0, 0, 0, -1, -2, -3] +alas -1.1 1.22066 [-1, -2, -1, 0, -1, 0, 1, -3, -1, -3] +alert 1.2 0.87178 [1, 2, 0, 1, 0, 2, 2, 0, 2, 2] +alienation -1.1 1.51327 [-3, -2, -3, -1, -2, -1, 2, -1, 1, -1] +alive 1.6 0.8 [1, 1, 2, 3, 3, 2, 1, 1, 1, 1] +allergic -1.2 0.4 [-1, -2, -1, -2, -1, -1, -1, -1, -1, -1] +allow 0.9 0.83066 [0, 0, 0, 1, 2, 2, 1, 1, 2, 0] +alone -1.0 0.63246 [-2, -1, -1, -1, -2, -1, 0, -1, -1, 0] +alright 1.0 0.7746 [0, 1, 0, 3, 1, 1, 1, 1, 1, 1] +amaze 2.5 1.0247 [3, 2, 3, 4, 2, 3, 1, 4, 2, 1] +amazed 2.2 1.07703 [1, 0, 3, 2, 2, 4, 3, 3, 2, 2] +amazedly 2.1 0.53852 [2, 2, 2, 2, 3, 2, 2, 3, 1, 2] +amazement 2.5 0.80623 [3, 3, 2, 4, 1, 2, 2, 3, 2, 3] +amazements 2.2 0.87178 [3, 1, 1, 3, 3, 2, 1, 2, 3, 3] +amazes 2.2 0.9798 [1, 0, 3, 2, 2, 3, 3, 3, 2, 3] +amazing 2.8 0.87178 [1, 4, 3, 2, 4, 2, 3, 3, 3, 3] +amazon 0.7 0.64031 [0, 1, 1, 0, 1, 0, 1, 0, 1, 2] +amazonite 0.2 0.6 [0, 0, 2, 0, 0, 0, 0, 0, 0, 0] +amazons -0.1 0.3 [0, 0, 0, 0, 0, 0, 0, 0, -1, 0] +amazonstone 1.0 1.61245 [0, 0, 0, 0, 4, 4, 2, 0, 0, 0] +amazonstones 0.2 0.6 [0, 0, 0, 0, 0, 0, 0, 0, 2, 0] +ambitious 2.1 0.53852 [2, 3, 2, 2, 2, 2, 2, 2, 3, 1] +ambivalent 0.5 0.92195 [0, 0, -1, 2, 1, 1, 1, -1, 1, 1] +amor 3.0 0.63246 [3, 3, 2, 4, 3, 2, 4, 3, 3, 3] +amoral -1.6 0.66332 [-1, -2, 0, -2, -2, -2, -2, -2, -1, -2] +amoralism -0.7 1.34536 [-2, -1, -2, 0, 0, -3, 2, 0, -1, 0] +amoralisms -0.7 1.00499 [-2, 0, 1, -1, -2, -1, -1, 1, -1, -1] +amoralities -1.2 1.6 [-3, 0, 0, -2, 1, -1, 0, -4, -3, 0] +amorality -1.5 0.92195 [0, -1, -1, -2, -1, -3, -1, -3, -2, -1] +amorally -1.0 1.61245 [-2, 0, 1, -4, -1, 1, 1, -2, -2, -2] +amoretti 0.2 0.4 [0, 0, 0, 1, 0, 0, 0, 0, 0, 1] +amoretto 0.6 0.8 [0, 1, 0, 1, 0, 0, 2, 0, 0, 2] +amorettos 0.3 0.64031 [0, 1, 0, 1, 0, 0, 0, 1, 1, -1] +amorino 1.2 0.87178 [2, 1, 1, 0, 3, 1, 1, 0, 1, 2] +amorist 1.6 1.0198 [3, 0, 0, 2, 2, 1, 3, 1, 2, 2] +amoristic 1.0 1.67332 [1, 0, 2, 3, -1, 3, 1, 3, 0, -2] +amorists 0.1 0.9434 [0, 2, 0, 0, 1, 0, -2, 0, 0, 0] +amoroso 2.3 0.78102 [3, 1, 1, 2, 3, 3, 3, 3, 2, 2] +amorous 1.8 0.9798 [3, 1, 2, 2, 1, 1, 3, 0, 2, 3] +amorously 2.3 0.78102 [1, 1, 3, 2, 3, 3, 2, 3, 2, 3] +amorousness 2.0 0.89443 [2, 3, 1, 2, 0, 2, 2, 3, 3, 2] +amorphous -0.2 0.4 [0, 0, 0, 0, 0, 0, -1, 0, 0, -1] +amorphously 0.1 0.7 [-1, 0, 0, 0, 0, 0, 2, 0, 0, 0] +amorphousness 0.3 0.45826 [0, 0, 0, 0, 0, 1, 1, 1, 0, 0] +amort -2.1 0.83066 [-3, -1, -2, -2, -2, -2, -2, -4, -1, -2] +amortise 0.5 1.43178 [0, 1, 1, 0, -3, 2, 0, 0, 2, 2] +amortised -0.2 1.16619 [-1, -3, 0, 0, 0, 2, 0, 0, 0, 0] +amortises 0.1 0.83066 [-1, -1, 0, 0, 0, 2, 1, 0, 0, 0] +amortizable 0.5 1.0247 [2, 0, 1, 0, 1, 1, -2, 1, 0, 1] +amortization 0.6 1.0198 [0, 0, 0, 0, 1, 0, 0, 0, 3, 2] +amortizations 0.2 1.07703 [-1, 1, 0, 0, 1, 0, 2, 1, -2, 0] +amortize -0.1 1.04403 [0, 0, 0, 0, 2, -2, -1, 1, -1, 0] +amortized 0.8 0.74833 [0, 2, 0, 0, 1, 1, 1, 0, 1, 2] +amortizes 0.6 0.8 [0, 2, 0, 0, 1, 1, 0, 0, 0, 2] +amortizing 0.8 1.249 [0, 3, 0, 0, 0, 0, 0, 0, 3, 2] +amusable 0.7 1.18743 [2, 1, 1, 1, 1, 1, 2, -2, -1, 1] +amuse 1.7 0.78102 [1, 2, 1, 1, 2, 1, 1, 3, 3, 2] +amused 1.8 0.6 [1, 2, 2, 2, 2, 2, 1, 2, 3, 1] +amusedly 2.2 0.74833 [3, 3, 2, 2, 3, 2, 2, 3, 1, 1] +amusement 1.5 1.11803 [3, 2, 3, 1, 2, 2, -1, 1, 1, 1] +amusements 1.5 1.0247 [2, 1, 2, 1, 2, 2, 3, -1, 2, 1] +amuser 1.1 1.7 [2, 1, -3, 2, 2, 3, -1, 1, 2, 2] +amusers 1.3 0.45826 [1, 1, 2, 1, 2, 1, 2, 1, 1, 1] +amuses 1.7 0.64031 [1, 2, 1, 2, 2, 2, 1, 2, 3, 1] +amusia 0.3 1.48661 [0, -1, 1, -1, 2, 2, -1, -1, -1, 3] +amusias -0.4 0.66332 [-1, 0, 0, 1, 0, 0, -1, -1, -1, -1] +amusing 1.6 0.91652 [2, 2, 2, -1, 2, 2, 1, 2, 2, 2] +amusingly 0.8 1.249 [1, 2, 1, 1, 1, 2, 2, -2, -1, 1] +amusingness 1.8 0.6 [1, 2, 3, 2, 1, 2, 2, 1, 2, 2] +amusive 1.7 1.1 [3, 1, 3, 1, 2, 2, 2, 2, -1, 2] +anger -2.7 1.18743 [-1, -2, -3, -2, -4, -4, -2, -1, -4, -4] +angered -2.3 0.78102 [-2, -3, -2, -4, -2, -2, -3, -2, -2, -1] +angering -2.2 0.6 [-3, -2, -1, -3, -2, -2, -3, -2, -2, -2] +angerly -1.9 0.53852 [-2, -2, -1, -1, -3, -2, -2, -2, -2, -2] +angers -2.3 0.9 [-3, -1, -2, -3, -2, -2, -4, -1, -3, -2] +angrier -2.3 0.64031 [-2, -3, -2, -3, -1, -3, -2, -3, -2, -2] +angriest -3.1 0.83066 [-4, -3, -2, -2, -2, -4, -3, -4, -4, -3] +angrily -1.8 0.4 [-2, -1, -2, -2, -2, -1, -2, -2, -2, -2] +angriness -1.7 0.64031 [-2, 0, -2, -2, -1, -2, -2, -2, -2, -2] +angry -2.3 0.9 [-2, -2, -1, -3, -1, -2, -4, -2, -3, -3] +anguish -2.9 0.83066 [-3, -3, -2, -3, -4, -1, -3, -3, -4, -3] +anguished -1.8 1.4 [-3, -4, -1, -3, -2, -1, -1, 1, -1, -3] +anguishes -2.1 1.44568 [-4, -4, -2, -3, 1, -2, -1, -1, -2, -3] +anguishing -2.7 0.9 [-2, -2, -1, -3, -2, -4, -4, -3, -3, -3] +animosity -1.9 1.75784 [-2, -3, -3, -3, -2, 2, 1, -3, -3, -3] +annoy -1.9 0.53852 [-2, -2, -1, -2, -2, -1, -2, -2, -2, -3] +annoyance -1.3 1.55242 [-2, -3, -2, -2, -1, 1, -3, -2, 2, -1] +annoyances -1.8 0.6 [-2, -2, -2, -1, -1, -2, -3, -1, -2, -2] +annoyed -1.6 1.11355 [-3, -1, 1, -3, -1, -1, -2, -2, -2, -2] +annoyer -2.2 0.87178 [-3, -2, -1, -3, -2, -4, -2, -1, -2, -2] +annoyers -1.5 1.0247 [-2, -1, -2, -3, -2, -1, -1, -2, 1, -2] +annoying -1.7 0.64031 [-1, -2, -1, -2, -1, -1, -2, -2, -3, -2] +annoys -1.8 0.6 [-1, -2, -3, -2, -2, -2, -1, -2, -1, -2] +antagonism -1.9 1.04403 [-1, -1, -3, -2, -4, -2, -2, 0, -2, -2] +antagonisms -1.2 1.53623 [0, -2, -2, -2, -2, -2, 3, -2, -1, -2] +antagonist -1.9 0.7 [-3, -1, -2, -3, -2, -2, -1, -2, -2, -1] +antagonistic -1.7 0.9 [-2, -2, -2, 1, -2, -2, -2, -2, -2, -2] +antagonistically -2.2 0.87178 [-2, -3, -4, -2, -2, -3, -2, -2, -1, -1] +antagonists -1.7 0.64031 [-2, -1, -1, -2, -1, -2, -2, -3, -1, -2] +antagonize -2.0 0.44721 [-2, -2, -2, -3, -2, -1, -2, -2, -2, -2] +antagonized -1.4 0.66332 [-2, -1, -2, -2, -1, 0, -2, -1, -1, -2] +antagonizes -0.5 1.9105 [-2, 4, -2, -2, 1, 0, -2, 1, -1, -2] +antagonizing -2.7 0.64031 [-4, -2, -2, -3, -2, -3, -3, -2, -3, -3] +anti -1.3 0.78102 [0, -2, -3, -1, -1, -2, -1, -1, -1, -1] +anticipation 0.4 1.28062 [1, 1, -1, 0, -1, 1, 1, 2, -2, 2] +anxieties -0.6 1.85472 [-2, -3, -3, -2, -1, 2, -1, 1, 1, 2] +anxiety -0.7 2.1 [-2, -2, -2, -3, 3, -1, -3, 2, 2, -1] +anxious -1.0 0.44721 [-1, -2, -1, -1, 0, -1, -1, -1, -1, -1] +anxiously -0.9 0.83066 [-1, -1, -2, -1, -1, -1, -1, 0, 1, -2] +anxiousness -1.0 1.48324 [-2, -1, -1, -1, -1, -2, 3, -3, -1, -1] +aok 2.0 0.89443 [2, 3, 2, 1, 2, 1, 1, 4, 2, 2] +apathetic -1.2 0.87178 [-1, -1, 0, -2, -2, -1, -1, 0, -3, -1] +apathetically -0.4 1.28062 [-1, -1, 0, -1, -2, 2, -1, -1, 2, -1] +apathies -0.6 1.0198 [-1, -1, -1, -2, 0, 1, -1, -2, 1, 0] +apathy -1.2 1.32665 [-2, -2, -1, 1, -1, -3, -1, 1, -1, -3] +apeshit -0.9 2.21133 [-4, -3, 2, -3, -2, -3, 1, 0, 2, 1] +apocalyptic -3.4 0.66332 [-4, -2, -3, -4, -3, -4, -4, -3, -3, -4] +apologise 1.6 0.66332 [2, 3, 2, 2, 1, 1, 2, 1, 1, 1] +apologised 0.4 0.91652 [-1, 0, 2, 0, 0, 1, 0, 2, 0, 0] +apologises 0.8 1.07703 [2, 0, 2, 0, 0, 1, 0, 3, 0, 0] +apologising 0.2 1.6 [0, -1, -1, 2, 2, 1, -2, -1, 3, -1] +apologize 0.4 0.8 [1, -1, 0, 1, 1, 1, -1, 1, 0, 1] +apologized 1.3 0.64031 [1, 1, 1, 2, 0, 2, 1, 2, 2, 1] +apologizes 1.5 0.80623 [2, 1, 1, 2, 0, 2, 1, 2, 3, 1] +apologizing -0.3 1.34536 [1, 2, -1, 1, -1, 0, -3, 0, -1, -1] +apology 0.2 1.249 [1, 1, 1, 1, -1, 1, -1, -1, -2, 2] +appall -2.4 0.66332 [-3, -2, -2, -3, -2, -3, -1, -3, -2, -3] +appalled -2.0 0.63246 [-3, -2, -3, -2, -2, -1, -1, -2, -2, -2] +appalling -1.5 1.5 [-2, -4, 1, -1, 1, -1, -2, -3, -2, -2] +appallingly -2.0 1.67332 [-3, -2, 0, -2, 2, -3, -4, -3, -2, -3] +appalls -1.9 1.37477 [0, -3, -2, -3, -3, -2, -1, -3, 1, -3] +appease 1.1 0.9434 [1, 1, 1, -1, 2, 0, 1, 2, 2, 2] +appeased 0.9 0.53852 [0, 1, 1, 1, 1, 1, 0, 1, 2, 1] +appeases 0.9 0.53852 [0, 1, 1, 1, 1, 1, 0, 1, 2, 1] +appeasing 1.0 1.09545 [1, 2, -1, 1, 2, 1, 2, 2, 1, -1] +applaud 2.0 0.63246 [3, 2, 2, 2, 1, 2, 3, 1, 2, 2] +applauded 1.5 0.5 [2, 2, 1, 2, 2, 2, 1, 1, 1, 1] +applauding 2.1 0.83066 [2, 2, 4, 1, 2, 2, 2, 1, 2, 3] +applauds 1.4 0.66332 [1, 1, 2, 1, 3, 1, 1, 1, 2, 1] +applause 1.8 0.6 [2, 1, 1, 2, 3, 2, 1, 2, 2, 2] +appreciate 1.7 0.78102 [2, 1, 2, 1, 1, 3, 1, 2, 3, 1] +appreciated 2.3 0.78102 [2, 1, 3, 2, 3, 4, 2, 2, 2, 2] +appreciates 2.3 0.9 [3, 1, 3, 1, 2, 4, 2, 3, 2, 2] +appreciating 1.9 0.7 [1, 1, 2, 2, 2, 2, 1, 3, 2, 3] +appreciation 2.3 0.9 [3, 3, 2, 1, 1, 3, 3, 1, 3, 3] +appreciations 1.7 0.78102 [3, 2, 1, 2, 2, 1, 3, 1, 1, 1] +appreciative 2.6 0.8 [3, 3, 3, 2, 1, 3, 4, 2, 2, 3] +appreciatively 1.8 0.6 [2, 2, 2, 2, 2, 1, 3, 2, 1, 1] +appreciativeness 1.6 0.8 [2, 1, 1, 2, 1, 1, 3, 3, 1, 1] +appreciator 2.6 0.8 [2, 3, 2, 3, 3, 2, 1, 3, 4, 3] +appreciators 1.5 0.80623 [1, 3, 1, 3, 1, 1, 2, 1, 1, 1] +appreciatory 1.7 0.78102 [1, 2, 1, 3, 1, 3, 2, 2, 1, 1] +apprehensible 1.1 1.04403 [2, 0, -1, 3, 1, 2, 1, 1, 1, 1] +apprehensibly -0.2 1.16619 [0, 0, -1, 2, -1, 2, -1, -1, -1, -1] +apprehension -2.1 0.83066 [-1, -2, -2, -1, -2, -3, -3, -3, -1, -3] +apprehensions -0.9 1.04403 [-1, -1, -1, -1, -2, -2, -1, -1, -1, 2] +apprehensively -0.3 1.18743 [-1, -1, -1, 0, 1, -2, -1, 1, -1, 2] +apprehensiveness -0.7 0.9 [-1, 1, -1, -1, 1, -1, -2, -1, -1, -1] +approval 2.1 0.53852 [2, 2, 2, 2, 2, 1, 3, 3, 2, 2] +approved 1.8 0.6 [1, 1, 1, 2, 3, 2, 2, 2, 2, 2] +approves 1.7 0.64031 [1, 1, 1, 2, 3, 2, 2, 2, 2, 1] +ardent 2.1 0.7 [3, 3, 2, 2, 3, 1, 2, 2, 1, 2] +arguable -1.0 0.63246 [-1, -1, -2, -1, -1, -2, 0, 0, -1, -1] +arguably -1.0 1.09545 [0, -2, 0, -2, 0, 1, -1, -2, -2, -2] +argue -1.4 0.66332 [-1, -2, -1, -3, -2, -1, -1, -1, -1, -1] +argued -1.5 0.5 [-2, -2, -1, -1, -1, -1, -2, -2, -2, -1] +arguer -1.6 0.4899 [-2, -2, -1, -2, -1, -1, -2, -2, -2, -1] +arguers -1.4 0.4899 [-2, -1, -1, -2, -1, -1, -2, -2, -1, -1] +argues -1.6 0.4899 [-2, -2, -1, -2, -1, -1, -2, -2, -2, -1] +arguing -2.0 0.63246 [-3, -3, -1, -1, -2, -2, -2, -2, -2, -2] +argument -1.5 0.80623 [-3, -1, -1, -1, -1, -2, 0, -2, -2, -2] +argumentative -1.5 0.67082 [-3, -2, -1, -1, -1, -1, -1, -2, -2, -1] +argumentatively -1.8 0.9798 [-4, -2, -1, -1, -3, -1, -2, -2, -1, -1] +argumentive -1.5 0.80623 [-3, -2, -2, -1, 0, -1, -1, -1, -2, -2] +arguments -1.7 0.64031 [-1, -1, -2, -2, -2, -3, -2, -1, -1, -2] +arrest -1.4 1.42829 [-1, 0, -1, 0, -2, -3, 0, -4, -3, 0] +arrested -2.1 1.04403 [-2, -2, -2, -1, -1, -4, -1, -4, -2, -2] +arrests -1.9 0.83066 [-4, -2, -1, -1, -1, -2, -2, -2, -2, -2] +arrogance -2.4 0.66332 [-3, -2, -2, -3, -1, -2, -3, -3, -2, -3] +arrogances -1.9 0.53852 [-1, -2, -3, -2, -2, -2, -2, -1, -2, -2] +arrogant -2.2 0.6 [-2, -2, -2, -3, -2, -3, -3, -2, -1, -2] +arrogantly -1.8 1.4 [-3, -2, 2, -3, -1, -3, -2, -2, -2, -2] +ashamed -2.1 1.3 [-3, -3, -3, -2, -2, 1, -2, -4, -1, -2] +ashamedly -1.7 0.64031 [-2, -2, -2, -1, -2, -3, -1, -2, -1, -1] +ass -2.5 1.43178 [-4, -1, -2, -1, -3, 0, -2, -4, -4, -4] +assassination -2.9 0.9434 [-2, -4, -4, -3, -3, -4, -2, -3, -3, -1] +assassinations -2.7 1.34536 [-4, -2, -3, -2, -3, -1, -4, -4, 0, -4] +assault -2.8 0.9798 [-3, -4, -2, -2, -4, -3, -1, -3, -2, -4] +assaulted -2.4 1.28062 [-3, -3, 1, -3, -3, -3, -1, -3, -3, -3] +assaulting -2.3 1.1 [-4, -3, -2, -1, -2, -1, -1, -4, -3, -2] +assaultive -2.8 0.87178 [-3, -4, -2, -4, -3, -2, -3, -1, -3, -3] +assaults -2.5 0.92195 [-1, -3, -3, -3, -4, -3, -1, -2, -2, -3] +asset 1.5 0.80623 [2, 1, 1, 3, 2, 0, 2, 2, 1, 1] +assets 0.7 1.00499 [0, 0, 1, 3, 0, 1, 0, 0, 2, 0] +assfucking -2.5 1.43178 [-3, -3, 0, -3, 0, -2, -4, -4, -4, -2] +assholes -2.8 0.74833 [-3, -3, -3, -3, -4, -3, -2, -3, -1, -3] +assurance 1.4 0.4899 [1, 1, 2, 2, 1, 1, 1, 2, 2, 1] +assurances 1.4 0.4899 [2, 2, 1, 1, 1, 2, 2, 1, 1, 1] +assure 1.4 0.4899 [1, 1, 1, 1, 2, 1, 1, 2, 2, 2] +assured 1.5 0.67082 [1, 1, 2, 1, 1, 3, 2, 1, 2, 1] +assuredly 1.6 0.66332 [1, 1, 1, 3, 2, 2, 2, 1, 2, 1] +assuredness 1.4 0.8 [2, 2, 2, 1, 1, 0, 2, 0, 2, 2] +assurer 0.9 1.13578 [2, 1, 0, 1, -2, 2, 2, 1, 1, 1] +assurers 1.1 0.9434 [2, 0, 0, 1, 3, 2, 0, 1, 1, 1] +assures 1.3 0.45826 [2, 1, 1, 1, 2, 1, 2, 1, 1, 1] +assurgent 1.3 0.9 [2, 1, 0, 0, 1, 2, 1, 2, 3, 1] +assuring 1.6 0.66332 [1, 2, 2, 3, 1, 1, 1, 1, 2, 2] +assuror 0.5 0.67082 [0, 1, 0, 1, 2, 0, 0, 1, 0, 0] +assurors 0.7 1.34536 [2, -1, 0, 2, 0, -2, 2, 1, 1, 2] +astonished 1.6 0.8 [3, 1, 0, 2, 2, 1, 2, 2, 1, 2] +astound 1.7 1.26886 [2, 2, 2, 2, 0, 3, 4, 0, 0, 2] +astounded 1.8 0.9798 [1, 3, 0, 1, 2, 2, 3, 2, 1, 3] +astounding 1.8 1.4 [3, 4, 2, 0, 1, 2, -1, 3, 2, 2] +astoundingly 2.1 1.44568 [3, 0, 4, 1, 4, 3, 1, 3, 0, 2] +astounds 2.1 1.22066 [3, 3, 1, 0, 3, 2, 3, 3, 0, 3] +attachment 1.2 0.9798 [2, 0, 1, 2, 3, 1, 1, 2, 0, 0] +attachments 1.1 0.7 [1, 1, 2, 0, 2, 1, 2, 0, 1, 1] +attack -2.1 0.83066 [-1, -3, -2, -3, -3, -1, -2, -1, -2, -3] +attacked -2.0 1.78885 [-2, 3, -2, -2, -3, -3, -3, -4, -2, -2] +attacker -2.7 0.9 [-2, -3, -2, -1, -3, -3, -4, -4, -2, -3] +attackers -2.7 0.64031 [-3, -3, -3, -2, -3, -3, -4, -2, -2, -2] +attacking -2.0 0.89443 [-3, -1, -1, -3, -3, -1, -3, -1, -2, -2] +attacks -1.9 0.9434 [-2, -2, 0, -2, -2, -2, -1, -4, -2, -2] +attract 1.5 0.92195 [1, 3, 1, 1, 3, 1, 1, 2, 0, 2] +attractancy 0.9 0.7 [1, 0, 2, 1, 0, 2, 1, 1, 0, 1] +attractant 1.3 0.9 [0, 1, 0, 1, 1, 2, 3, 2, 1, 2] +attractants 1.4 0.8 [1, 1, 0, 2, 2, 2, 3, 1, 1, 1] +attracted 1.8 0.6 [1, 3, 1, 2, 2, 2, 2, 2, 2, 1] +attracting 2.1 0.83066 [3, 1, 2, 2, 3, 1, 1, 3, 2, 3] +attraction 2.0 0.7746 [2, 2, 1, 1, 2, 3, 3, 2, 3, 1] +attractions 1.8 0.87178 [1, 3, 0, 2, 2, 2, 2, 3, 1, 2] +attractive 1.9 0.53852 [2, 2, 2, 1, 3, 2, 1, 2, 2, 2] +attractively 2.2 0.6 [3, 2, 2, 3, 2, 2, 2, 3, 1, 2] +attractiveness 1.8 1.16619 [3, 2, 2, 1, 4, 2, 0, 0, 2, 2] +attractivenesses 2.1 0.7 [2, 1, 2, 3, 2, 3, 3, 1, 2, 2] +attractor 1.2 1.16619 [1, 1, 2, 2, 2, -2, 2, 1, 2, 1] +attractors 1.2 0.87178 [1, 1, 2, 2, 0, 1, 3, 1, 0, 1] +attracts 1.7 1.00499 [2, 1, 2, 0, 2, 4, 2, 1, 1, 2] +audacious 0.9 2.02237 [3, -1, -2, 2, 1, 2, -3, 2, 2, 3] +authority 0.3 0.64031 [0, 0, 0, 1, 0, 0, 2, 0, 0, 0] +aversion -1.9 1.04403 [-3, -3, -1, -2, 0, -3, -1, -2, -1, -3] +aversions -1.1 1.13578 [-2, -1, -2, -2, -2, 1, -1, -2, 1, -1] +aversive -1.6 0.66332 [-2, -1, -1, -1, -2, -2, -1, -2, -3, -1] +aversively -0.8 1.53623 [-3, -1, -2, -1, 1, -2, 2, -2, 1, -1] +avert -0.7 0.78102 [-1, 0, -2, -1, -1, 1, -1, 0, -1, -1] +averted -0.3 1.00499 [-1, 1, 0, 0, 1, 0, -2, 0, 0, -2] +averts -0.4 1.0198 [-2, -2, -1, -1, 0, 0, 1, 0, 1, 0] +avid 1.2 0.87178 [-1, 2, 2, 1, 1, 1, 2, 2, 1, 1] +avoid -1.2 0.6 [-1, -1, -1, -1, -2, -2, -1, -2, 0, -1] +avoidance -1.7 0.45826 [-2, -2, -1, -1, -1, -2, -2, -2, -2, -2] +avoidances -1.1 0.53852 [-1, -1, -1, -1, -2, 0, -1, -2, -1, -1] +avoided -1.4 0.4899 [-2, -1, -2, -1, -1, -1, -2, -1, -2, -1] +avoider -1.8 0.6 [-2, -1, -3, -1, -2, -2, -2, -1, -2, -2] +avoiders -1.4 0.66332 [-2, -2, -1, -2, -1, -1, 0, -1, -2, -2] +avoiding -1.4 0.91652 [-2, 1, -2, -2, -1, -2, -1, -1, -2, -2] +avoids -0.7 0.45826 [-1, -1, -1, -1, -1, -1, 0, 0, 0, -1] +await 0.4 0.4899 [0, 0, 0, 1, 0, 1, 0, 1, 1, 0] +awaited -0.1 0.83066 [1, 0, 0, 0, 1, -1, 0, 0, -2, 0] +awaits 0.3 0.78102 [0, 0, 0, 1, 2, 1, 0, 0, -1, 0] +award 2.5 0.92195 [2, 1, 1, 3, 3, 2, 4, 3, 3, 3] +awardable 2.4 0.8 [3, 3, 3, 1, 3, 1, 2, 3, 2, 3] +awarded 1.7 0.78102 [2, 0, 1, 3, 2, 2, 2, 1, 2, 2] +awardee 1.8 0.6 [2, 2, 1, 3, 2, 2, 1, 1, 2, 2] +awardees 1.2 0.74833 [1, 1, 1, 1, 0, 1, 1, 1, 3, 2] +awarder 0.9 1.04403 [2, 0, 1, 3, 0, 2, 1, 0, 0, 0] +awarders 1.3 1.18743 [2, 1, 0, 2, 2, 0, 0, 4, 1, 1] +awarding 1.9 0.7 [3, 2, 1, 2, 1, 2, 3, 1, 2, 2] +awards 2.0 0.44721 [2, 2, 2, 2, 1, 2, 2, 3, 2, 2] +awesome 3.1 0.83066 [3, 4, 2, 3, 2, 2, 4, 4, 4, 3] +awful -2.0 2.04939 [-2, -2, -3, -3, -2, -3, 4, -3, -3, -3] +awkward -0.6 1.56205 [-2, -1, -1, -1, -1, -1, -1, -1, 4, -1] +awkwardly -1.3 0.45826 [-1, -1, -2, -1, -1, -1, -1, -2, -2, -1] +awkwardness -0.7 1.41774 [-1, -2, -2, -1, -2, 2, -1, -1, 2, -1] +axe -0.4 0.8 [-2, 0, 0, 0, 0, 0, -1, -1, -1, 1] +axed -1.3 0.78102 [-1, -2, 0, -3, -1, -2, -1, -1, -1, -1] +backed 0.1 0.3 [0, 0, 1, 0, 0, 0, 0, 0, 0, 0] +backing 0.1 0.83066 [1, 1, -1, 0, 0, 0, -1, 1, -1, 1] +backs -0.2 0.4 [0, 0, -1, 0, 0, 0, 0, -1, 0, 0] +bad -2.5 0.67082 [-3, -2, -4, -3, -2, -2, -3, -2, -2, -2] +badass -0.6 1.85472 [-2, 3, 0, 0, -1, -3, -1, -3, 2, -1] +badly -2.1 0.7 [-2, -3, -2, -1, -3, -2, -3, -2, -1, -2] +bailout -0.4 1.35647 [-1, 0, 0, 2, -2, -1, -2, 2, -1, -1] +bamboozle -1.5 1.0247 [-3, -2, -2, -1, -2, -2, 1, -1, -1, -2] +bamboozled -1.5 1.11803 [-1, 0, -2, -4, -2, -1, -2, -1, 0, -2] +bamboozles -1.5 1.0247 [-1, 0, -2, -4, -2, -1, -2, -1, -1, -1] +ban -2.6 1.0198 [-4, -3, -4, -3, -2, -1, -3, -2, -1, -3] +banish -1.9 0.9434 [-2, -2, -2, -2, -1, -3, -1, -1, -1, -4] +bankrupt -2.6 1.0198 [-4, -4, -2, -2, -4, -3, -2, -2, -1, -2] +bankster -2.1 0.53852 [-3, -1, -2, -2, -2, -2, -2, -3, -2, -2] +banned -2.0 1.0 [-2, -1, -1, -1, -2, -2, -4, -3, -3, -1] +bargain 0.8 1.16619 [1, 1, 1, 1, 0, 1, 2, 3, -1, -1] +barrier -0.5 0.92195 [-2, 0, 0, -2, -1, -1, 1, 0, 0, 0] +bashful -0.1 1.13578 [-1, 2, -1, 0, -1, 2, 0, 0, -1, -1] +bashfully 0.2 0.9798 [0, 0, 0, -1, 1, 1, 1, 1, -2, 1] +bashfulness -0.8 0.9798 [-2, -1, 1, 1, -1, -2, -1, -1, -1, -1] +bastard -2.5 0.67082 [-2, -4, -2, -3, -2, -2, -3, -3, -2, -2] +bastardies -1.8 0.87178 [-2, -1, -3, -2, -2, -2, -1, 0, -2, -3] +bastardise -2.1 0.83066 [-2, -1, -4, -2, -2, -3, -2, -2, -2, -1] +bastardised -2.3 0.9 [-3, -2, -3, -1, -2, -3, -4, -1, -2, -2] +bastardises -2.3 1.18743 [-1, -4, -2, -3, -3, 0, -2, -4, -2, -2] +bastardising -2.6 0.8 [-3, -2, -3, -2, -2, -1, -3, -4, -3, -3] +bastardization -2.4 1.28062 [-1, -3, -4, -4, -2, -2, -2, 0, -2, -4] +bastardizations -2.1 0.7 [-2, -1, -3, -3, -2, -2, -3, -1, -2, -2] +bastardize -2.4 0.66332 [-2, -2, -3, -2, -2, -3, -4, -2, -2, -2] +bastardized -2.0 0.7746 [-2, -1, -1, -2, -3, -2, -3, -2, -1, -3] +bastardizes -1.8 0.87178 [-2, -1, -1, -2, -2, -2, -3, -3, 0, -2] +bastardizing -2.3 0.9 [-2, -2, -1, -4, -3, -2, -1, -2, -3, -3] +bastardly -2.7 0.64031 [-3, -3, -2, -2, -3, -2, -2, -4, -3, -3] +bastards -3.0 0.63246 [-4, -2, -3, -3, -4, -3, -3, -3, -3, -2] +bastardy -2.7 1.1 [-4, -3, -2, -2, -4, -3, -3, -3, -3, 0] +battle -1.6 1.28062 [-1, -3, 0, -3, -2, -3, -2, -2, 1, -1] +battled -1.2 0.87178 [0, 0, -2, 0, -2, -1, -2, -1, -2, -2] +battlefield -1.6 0.8 [-2, -2, 0, -1, -2, -1, -3, -2, -1, -2] +battlefields -0.9 1.22066 [-1, -1, 0, 0, -4, -1, 0, 0, 0, -2] +battlefront -1.2 0.87178 [-1, 0, -2, -1, 0, -3, -1, -2, -1, -1] +battlefronts -0.8 1.16619 [0, 0, -2, -1, 0, -3, -1, 1, -2, 0] +battleground -1.7 0.78102 [-2, 0, -2, -2, -1, -2, -2, -3, -1, -2] +battlegrounds -0.6 1.35647 [2, -2, 0, -1, 0, -2, -2, -2, 0, 1] +battlement -0.4 0.8 [0, -1, 0, -1, 0, -2, 0, 1, 0, -1] +battlements -0.4 0.66332 [0, 0, 0, 0, 0, -1, -2, 0, -1, 0] +battler -0.8 1.4 [2, 0, -2, 0, -2, 1, -2, -1, -2, -2] +battlers -0.2 0.9798 [-1, 0, 2, -2, 0, 0, 0, -1, 0, 0] +battles -1.6 0.4899 [-1, -1, -2, -1, -2, -2, -2, -1, -2, -2] +battleship -0.1 1.3 [2, -3, -1, -1, 0, 0, 1, 1, 0, 0] +battleships -0.5 0.80623 [-2, 0, 0, 0, 0, -1, -2, 0, 0, 0] +battlewagon -0.3 0.64031 [0, 0, -1, -2, 0, 0, 0, 0, 0, 0] +battlewagons -0.5 0.67082 [0, 0, 0, -1, -2, -1, 0, -1, 0, 0] +battling -1.1 1.04403 [0, -1, -2, -2, -1, 1, -2, 0, -2, -2] +beaten -1.8 0.6 [-1, -2, -2, -2, -3, -2, -2, -2, -1, -1] +beatific 1.8 1.6 [3, 0, 2, 4, -2, 2, 2, 2, 2, 3] +beating -2.0 0.63246 [-2, -3, -2, -2, -1, -1, -2, -3, -2, -2] +beaut 1.6 1.2 [2, 2, 2, 0, 1, -1, 2, 3, 3, 2] +beauteous 2.5 1.0247 [2, 1, 4, 3, 3, 2, 1, 4, 2, 3] +beauteously 2.6 0.8 [2, 3, 3, 3, 2, 1, 3, 4, 2, 3] +beauteousness 2.7 1.00499 [1, 3, 4, 3, 4, 1, 2, 3, 3, 3] +beautician 1.2 0.9798 [0, 0, 3, 2, 2, 0, 1, 1, 1, 2] +beauticians 0.4 0.66332 [0, 1, 0, 0, 0, 0, 1, 0, 2, 0] +beauties 2.4 0.8 [2, 3, 3, 3, 3, 1, 2, 1, 3, 3] +beautification 1.9 0.7 [2, 2, 2, 1, 2, 1, 3, 1, 2, 3] +beautifications 2.4 0.8 [3, 2, 3, 3, 1, 3, 2, 3, 1, 3] +beautified 2.1 0.7 [2, 2, 3, 1, 2, 2, 3, 1, 2, 3] +beautifier 1.7 0.64031 [2, 1, 2, 1, 2, 1, 3, 1, 2, 2] +beautifiers 1.7 0.78102 [3, 3, 1, 2, 1, 2, 2, 1, 1, 1] +beautifies 1.8 0.74833 [2, 1, 2, 1, 2, 1, 3, 1, 2, 3] +beautiful 2.9 0.7 [2, 3, 2, 3, 2, 3, 4, 4, 3, 3] +beautifuler 2.1 0.83066 [2, 0, 2, 2, 3, 2, 2, 2, 3, 3] +beautifulest 2.6 0.8 [3, 3, 3, 3, 2, 2, 4, 2, 1, 3] +beautifully 2.7 0.64031 [3, 3, 2, 2, 3, 3, 2, 2, 4, 3] +beautifulness 2.6 0.8 [3, 3, 3, 2, 3, 4, 3, 2, 2, 1] +beautify 2.3 0.45826 [2, 3, 3, 2, 2, 3, 2, 2, 2, 2] +beautifying 2.3 0.78102 [1, 2, 1, 3, 2, 2, 3, 3, 3, 3] +beauts 1.7 0.78102 [1, 2, 0, 3, 1, 2, 2, 2, 2, 2] +beauty 2.8 0.74833 [3, 3, 2, 3, 4, 4, 2, 2, 3, 2] +belittle -1.9 0.53852 [-2, -2, -2, -1, -2, -2, -1, -2, -3, -2] +belittled -2.0 1.0 [-3, -2, -3, -3, -2, -3, -1, -1, -2, 0] +beloved 2.3 0.45826 [2, 2, 3, 2, 2, 2, 2, 3, 3, 2] +benefic 1.4 0.4899 [2, 2, 1, 1, 1, 2, 2, 1, 1, 1] +benefice 0.4 0.66332 [0, 2, 0, 1, 0, 0, 1, 0, 0, 0] +beneficed 1.1 0.7 [1, 1, 1, 0, 2, 0, 1, 1, 2, 2] +beneficence 2.8 0.87178 [1, 4, 3, 4, 2, 2, 3, 3, 3, 3] +beneficences 1.5 0.67082 [1, 1, 2, 2, 1, 1, 1, 3, 2, 1] +beneficent 2.3 0.45826 [3, 2, 3, 2, 2, 2, 2, 3, 2, 2] +beneficently 2.2 0.6 [3, 2, 3, 3, 2, 2, 1, 2, 2, 2] +benefices 1.1 0.83066 [1, 1, 1, 0, 1, 0, 1, 1, 2, 3] +beneficial 1.9 0.53852 [2, 2, 1, 2, 2, 1, 3, 2, 2, 2] +beneficially 2.4 0.8 [3, 3, 2, 2, 2, 1, 3, 4, 2, 2] +beneficialness 1.7 0.64031 [2, 1, 2, 2, 1, 1, 2, 2, 1, 3] +beneficiaries 1.8 1.16619 [0, 1, 2, 1, 3, 4, 3, 1, 2, 1] +beneficiary 2.1 0.83066 [1, 3, 2, 2, 2, 1, 3, 3, 1, 3] +beneficiate 1.0 1.18322 [0, 0, 1, 3, 1, 0, 2, 0, 3, 0] +beneficiation 0.4 1.0198 [2, 2, 0, -1, 1, 0, -1, 0, 0, 1] +benefit 2.0 0.63246 [2, 3, 1, 2, 2, 3, 2, 1, 2, 2] +benefits 1.6 0.4899 [2, 2, 2, 1, 2, 1, 2, 2, 1, 1] +benefitted 1.7 0.64031 [2, 2, 1, 2, 2, 2, 2, 2, 0, 2] +benefitting 1.9 0.7 [1, 2, 2, 3, 1, 1, 2, 3, 2, 2] +benevolence 1.7 1.1 [2, 1, 3, 2, 2, 1, 2, 2, -1, 3] +benevolences 1.9 1.64012 [3, 2, -1, -1, 3, 1, 3, 4, 2, 3] +benevolent 2.7 0.78102 [2, 2, 3, 2, 4, 2, 3, 2, 4, 3] +benevolently 1.4 1.11355 [2, 1, 2, 2, 1, -1, 2, 3, 0, 2] +benevolentness 1.2 1.249 [2, 2, 1, -1, 2, 2, 3, -1, 1, 1] +benign 1.3 0.9 [1, 3, 2, 2, 1, 1, 2, 0, 0, 1] +benignancy 0.6 1.2 [2, -1, -2, 1, 0, 1, 1, 2, 1, 1] +benignant 2.2 0.9798 [2, 2, 2, 2, 2, 2, 4, 0, 3, 3] +benignantly 1.1 1.3 [3, 2, 3, 0, 1, 1, -1, 2, 0, 0] +benignities 0.9 0.9434 [-1, 2, 1, 0, 1, 1, 2, 2, 1, 0] +benignity 1.3 1.18743 [2, -2, 2, 2, 2, 1, 2, 1, 1, 2] +benignly 0.2 1.07703 [0, -1, 1, 1, 1, 0, 2, 0, -2, 0] +bereave -2.1 1.13578 [0, -2, -2, -3, -3, -4, -3, -2, -1, -1] +bereaved -2.1 0.9434 [-2, -2, -2, -1, -2, -1, -4, -1, -3, -3] +bereaves -1.9 1.22066 [0, -3, 0, -1, -3, -2, -3, -1, -3, -3] +bereaving -1.3 1.84662 [-3, -4, -3, 1, -2, 0, -3, -1, 1, 1] +best 3.2 0.6 [2, 4, 4, 3, 4, 3, 3, 3, 3, 3] +betray -3.2 0.6 [-3, -4, -4, -3, -2, -3, -4, -3, -3, -3] +betrayal -2.8 0.74833 [-3, -4, -4, -2, -3, -2, -3, -3, -2, -2] +betrayed -3.0 0.63246 [-2, -3, -3, -3, -4, -4, -3, -3, -2, -3] +betraying -2.5 0.67082 [-2, -2, -3, -2, -3, -2, -4, -2, -2, -3] +betrays -2.5 0.67082 [-2, -3, -3, -2, -2, -2, -4, -2, -3, -2] +better 1.9 0.7 [2, 1, 2, 1, 1, 3, 2, 2, 3, 2] +bias -0.4 1.11355 [-1, -2, 0, -2, -1, 1, -1, 1, 0, 1] +biased -1.1 0.83066 [-2, -2, -1, -1, -1, -1, -1, 1, -2, -1] +bitch -2.8 0.87178 [-1, -4, -2, -4, -3, -2, -3, -3, -3, -3] +bitched -2.6 1.0198 [-1, -3, -2, -3, -2, -1, -4, -3, -3, -4] +bitcheries -2.3 0.78102 [-2, -2, -2, -4, -2, -2, -3, -1, -3, -2] +bitchery -2.7 1.18743 [-2, -2, -4, -2, -4, -4, -1, -1, -3, -4] +bitches -2.9 0.9434 [-2, -1, -3, -3, -2, -4, -4, -3, -3, -4] +bitchier -2.0 0.63246 [-2, -3, -1, -2, -3, -1, -2, -2, -2, -2] +bitchiest -3.0 0.7746 [-2, -4, -2, -3, -4, -3, -3, -4, -2, -3] +bitchily -2.6 1.11355 [-4, -4, -2, -2, -1, -4, -1, -2, -3, -3] +bitchiness -2.6 0.66332 [-3, -3, -2, -2, -3, -3, -1, -3, -3, -3] +bitching -1.1 1.64012 [-2, 2, -2, -1, 2, -1, -2, -2, -3, -2] +bitchy -2.3 1.00499 [-4, -1, -2, -3, -3, -2, -1, -1, -3, -3] +bitter -1.8 0.4 [-2, -2, -2, -1, -2, -2, -1, -2, -2, -2] +bitterbrush -0.2 0.74833 [0, 0, 0, 0, -2, 1, 0, 0, -1, 0] +bitterbrushes -0.6 0.8 [-1, 0, -2, -1, -2, 0, 0, 0, 0, 0] +bittered -1.8 1.07703 [-1, -1, -3, -1, -2, -4, -2, 0, -2, -2] +bitterer -1.9 1.04403 [-1, -2, -3, -1, -1, -4, -3, -1, -2, -1] +bitterest -2.3 1.41774 [-4, -4, -2, -1, 1, -2, -3, -3, -2, -3] +bittering -1.2 0.87178 [0, 0, -1, -2, 0, -2, -1, -2, -2, -2] +bitterish -1.6 0.8 [0, -2, -1, -1, -2, -2, -2, -1, -3, -2] +bitterly -2.0 0.63246 [-2, -2, -1, -1, -2, -2, -3, -2, -2, -3] +bittern -0.2 0.6 [0, 0, -2, 0, 0, 0, 0, 0, 0, 0] +bitterness -1.7 0.45826 [-2, -2, -1, -2, -1, -2, -1, -2, -2, -2] +bitterns -0.4 1.11355 [0, 0, 0, -3, 0, 0, 0, 1, 0, -2] +bitterroots -0.2 0.4 [0, 0, 0, -1, -1, 0, 0, 0, 0, 0] +bitters -0.4 0.4899 [-1, -1, -1, 0, 0, 0, 0, -1, 0, 0] +bittersweet -0.3 0.64031 [0, -1, 0, 0, 0, 0, 0, 0, -2, 0] +bittersweetness -0.6 0.91652 [0, 0, 0, -2, 0, -2, 0, 0, -2, 0] +bittersweets -0.2 0.9798 [-2, 1, 0, 0, 0, -2, 0, 0, 0, 1] +bitterweeds -0.5 0.67082 [0, -2, 0, -1, -1, 0, 0, -1, 0, 0] +bizarre -1.3 1.00499 [-2, 0, 0, -2, 0, -1, -3, -2, -1, -2] +blah -0.4 1.49666 [-2, -1, -1, -1, -1, -1, -1, 3, 2, -1] +blam -0.2 1.16619 [-1, 0, 0, -1, -1, -2, -1, 1, 2, 1] +blamable -1.8 0.4 [-2, -2, -2, -2, -1, -1, -2, -2, -2, -2] +blamably -1.8 0.4 [-2, -2, -2, -2, -1, -1, -2, -2, -2, -2] +blame -1.4 1.42829 [-4, -2, -2, -1, -1, -1, -2, 2, -2, -1] +blamed -2.1 0.53852 [-2, -2, -2, -2, -3, -2, -2, -2, -3, -1] +blameful -1.7 0.45826 [-2, -2, -2, -2, -2, -2, -1, -1, -2, -1] +blamefully -1.6 0.66332 [-1, -2, -1, -1, -2, -1, -1, -2, -2, -3] +blameless 0.7 1.73494 [3, 1, 2, 3, -2, 1, -1, 1, 1, -2] +blamelessly 0.9 1.37477 [2, 0, 2, 0, 1, -1, 1, 4, 0, 0] +blamelessness 0.6 1.35647 [0, 2, 1, 2, 1, 0, 1, -3, 1, 1] +blamer -2.1 0.83066 [-2, -2, -1, -2, -3, -3, -3, -1, -1, -3] +blamers -2.0 0.63246 [-3, -2, -2, -3, -1, -2, -2, -1, -2, -2] +blames -1.7 0.45826 [-2, -2, -1, -2, -2, -2, -2, -1, -1, -2] +blameworthiness -1.6 0.66332 [-2, -2, -1, -2, -2, -1, -3, -1, -1, -1] +blameworthy -2.3 0.78102 [-3, -3, -2, -2, -2, -1, -1, -3, -3, -3] +blaming -2.2 0.6 [-2, -3, -1, -3, -2, -2, -3, -2, -2, -2] +bless 1.8 0.6 [3, 2, 2, 1, 2, 2, 1, 2, 2, 1] +blessed 2.9 0.3 [2, 3, 3, 3, 3, 3, 3, 3, 3, 3] +blesseder 2.0 0.63246 [3, 3, 2, 2, 1, 1, 2, 2, 2, 2] +blessedest 2.8 0.87178 [2, 4, 1, 4, 3, 3, 2, 3, 3, 3] +blessedly 1.7 1.1 [2, 2, 1, -1, 3, 2, 3, 1, 2, 2] +blessedness 1.6 1.35647 [2, 2, 2, 2, 2, 3, 3, -1, -1, 2] +blesser 2.6 0.66332 [1, 3, 2, 3, 3, 3, 2, 3, 3, 3] +blessers 1.9 0.7 [2, 2, 1, 2, 2, 2, 3, 1, 3, 1] +blesses 2.6 0.66332 [1, 3, 3, 3, 3, 3, 2, 3, 2, 3] +blessing 2.2 1.07703 [3, 1, 0, 3, 1, 3, 2, 3, 3, 3] +blessings 2.5 0.92195 [3, 3, 3, 2, 1, 3, 2, 3, 4, 1] +blind -1.7 1.00499 [-4, -1, -1, -2, -1, -1, -3, -2, -1, -1] +bliss 2.7 0.78102 [3, 3, 3, 2, 1, 2, 4, 3, 3, 3] +blissful 2.9 0.83066 [4, 4, 2, 3, 3, 3, 1, 3, 3, 3] +blithe 1.2 1.16619 [2, 2, -1, 1, 1, 2, 2, 2, -1, 2] +block -1.9 1.13578 [-3, -2, -1, -2, 0, 0, -3, -2, -3, -3] +blockbuster 2.9 0.9434 [3, 4, 3, 2, 3, 4, 3, 2, 1, 4] +blocked -1.1 1.13578 [-1, 0, 0, -1, -2, -1, -1, -4, -1, 0] +blocking -1.6 0.91652 [-1, -1, -1, -1, -2, -2, -4, -1, -2, -1] +blocks -0.9 1.13578 [-1, 0, -1, -2, -2, -2, -1, -1, 2, -1] +bloody -1.9 0.7 [-2, -2, -2, 0, -2, -2, -3, -2, -2, -2] +blurry -0.4 1.28062 [-1, -1, -1, -1, 2, -2, -1, 2, 0, -1] +bold 1.6 0.66332 [2, 2, 2, 2, 1, 2, 0, 2, 1, 2] +bolder 1.2 0.6 [2, 1, 1, 1, 1, 2, 1, 2, 0, 1] +boldest 1.6 1.11355 [1, 3, 2, 3, 0, 0, 2, 3, 1, 1] +boldface 0.3 0.64031 [1, 0, 0, 0, 0, 0, 0, 2, 0, 0] +boldfaced -0.1 1.22066 [0, 0, 0, 2, -1, -2, 2, -1, -1, 0] +boldfaces 0.1 1.3 [0, 0, 0, 2, -2, -2, 2, 1, 0, 0] +boldfacing 0.1 0.7 [0, 0, -1, 2, 0, 0, 0, 0, 0, 0] +boldly 1.5 1.62788 [3, -2, -1, 1, 2, 3, 2, 3, 2, 2] +boldness 1.5 1.0247 [0, 1, 3, 1, 2, 0, 3, 1, 2, 2] +boldnesses 0.9 0.83066 [0, 0, 1, 0, 2, 1, 1, 2, 0, 2] +bolds 1.3 0.78102 [2, 2, 1, 1, 0, 2, 0, 2, 1, 2] +bomb -2.2 0.87178 [-2, -2, -1, -3, -4, -3, -2, -1, -2, -2] +bonus 2.5 0.67082 [2, 2, 2, 3, 4, 3, 2, 2, 3, 2] +bonuses 2.6 0.91652 [2, 2, 3, 4, 3, 4, 3, 1, 2, 2] +boost 1.7 0.64031 [1, 1, 2, 2, 2, 3, 1, 1, 2, 2] +boosted 1.5 1.5 [-1, 1, 0, 2, 1, 2, 3, 3, 4, 0] +boosting 1.4 0.91652 [1, 1, 3, 0, 2, 2, 0, 2, 1, 2] +boosts 1.3 0.9 [1, 1, 1, 1, 3, 0, 1, 1, 3, 1] +bore -1.0 0.44721 [-1, -2, 0, -1, -1, -1, -1, -1, -1, -1] +boreal -0.3 0.9 [0, 0, 0, 0, 1, -2, 0, 0, -2, 0] +borecole -0.2 0.74833 [1, 0, 0, 0, -1, -2, 0, 0, 0, 0] +borecoles -0.3 0.45826 [-1, 0, 0, 0, 0, 0, -1, 0, -1, 0] +bored -1.1 0.9434 [-2, -1, -2, -1, 0, 0, -3, 0, -1, -1] +boredom -1.3 0.45826 [-1, -1, -1, -1, -2, -1, -1, -2, -2, -1] +boredoms -1.1 0.83066 [-1, -1, -1, -2, 1, -1, -2, -1, -1, -2] +boreen 0.1 0.3 [0, 0, 0, 0, 0, 1, 0, 0, 0, 0] +boreens 0.2 0.6 [0, 0, 0, 2, 0, 0, 0, 0, 0, 0] +boreholes -0.2 0.74833 [0, 0, 0, 0, 0, 1, -1, 0, -2, 0] +borer -0.4 0.4899 [0, -1, 0, 0, -1, -1, 0, 0, 0, -1] +borers -1.2 0.9798 [-1, 0, -2, -1, -1, -3, -2, 0, -2, 0] +bores -1.3 0.78102 [-2, -1, -2, -1, -1, -1, -3, 0, -1, -1] +borescopes -0.1 0.83066 [-1, 0, -1, 2, 0, 0, 0, 0, -1, 0] +boresome -1.3 0.45826 [-2, -1, -1, -1, -1, -1, -2, -1, -2, -1] +boring -1.3 0.45826 [-1, -1, -1, -1, -1, -2, -1, -1, -2, -2] +bother -1.4 0.91652 [-1, -1, -1, -2, -3, -3, -1, -1, -1, 0] +botheration -1.7 0.64031 [-1, -1, -1, -2, -2, -1, -2, -2, -2, -3] +botherations -1.3 0.64031 [-2, -2, -2, -1, -2, 0, -1, -1, -1, -1] +bothered -1.3 0.45826 [-1, -1, -2, -1, -2, -1, -1, -1, -1, -2] +bothering -1.6 0.4899 [-2, -1, -2, -2, -1, -1, -1, -2, -2, -2] +bothers -0.8 0.9798 [-1, -2, -1, -1, 2, -1, -1, -1, -1, -1] +bothersome -1.3 0.45826 [-2, -1, -1, -1, -1, -1, -2, -2, -1, -1] +boycott -1.3 0.45826 [-2, -1, -1, -1, -1, -2, -1, -1, -2, -1] +boycotted -1.7 0.64031 [-1, -2, -2, -3, -1, -1, -2, -2, -2, -1] +boycotting -1.7 0.64031 [-2, -2, -2, 0, -2, -1, -2, -2, -2, -2] +boycotts -1.4 0.91652 [-2, -2, -2, -2, -1, -2, -1, 1, -1, -2] +brainwashing -1.5 1.28452 [-2, -2, -2, -3, -1, -2, 2, -1, -2, -2] +brave 2.4 0.8 [2, 3, 4, 3, 1, 3, 2, 2, 2, 2] +braved 1.9 0.83066 [3, 1, 3, 1, 1, 2, 3, 2, 2, 1] +bravely 2.3 0.78102 [1, 3, 2, 2, 2, 4, 2, 2, 2, 3] +braver 2.4 0.8 [3, 2, 2, 1, 4, 2, 3, 3, 2, 2] +braveries 2.0 1.0 [2, 4, 2, 3, 1, 1, 2, 3, 1, 1] +bravery 2.2 0.74833 [1, 2, 2, 2, 3, 2, 3, 3, 1, 3] +braves 1.9 0.83066 [3, 1, 3, 1, 2, 2, 3, 2, 1, 1] +bravest 2.3 0.64031 [1, 3, 3, 2, 3, 2, 3, 2, 2, 2] +breathtaking 2.0 1.26491 [3, 1, 3, 2, -1, 1, 2, 3, 3, 3] +bribe -0.8 1.98997 [-3, 0, -1, -2, -1, -2, -4, 1, 3, 1] +bright 1.9 0.7 [2, 2, 1, 2, 1, 2, 1, 3, 3, 2] +brighten 1.9 0.7 [2, 1, 1, 2, 3, 2, 1, 2, 2, 3] +brightened 2.1 0.83066 [2, 3, 1, 1, 2, 2, 3, 1, 3, 3] +brightener 1.0 1.18322 [0, 0, 0, 1, 0, 1, 2, 0, 3, 3] +brighteners 1.0 0.89443 [0, 1, 0, 1, 1, 3, 0, 1, 2, 1] +brightening 2.5 0.92195 [2, 3, 2, 1, 2, 3, 4, 4, 2, 2] +brightens 1.5 0.5 [2, 1, 1, 2, 2, 1, 2, 2, 1, 1] +brighter 1.6 0.66332 [1, 1, 1, 2, 2, 2, 1, 2, 1, 3] +brightest 3.0 0.63246 [3, 3, 2, 3, 4, 3, 2, 3, 4, 3] +brightly 1.5 0.67082 [2, 3, 1, 2, 1, 1, 2, 1, 1, 1] +brightness 1.6 0.91652 [2, 2, 1, 1, 1, 3, 3, 0, 2, 1] +brightnesses 1.4 0.91652 [2, 3, 1, 2, 1, 1, 0, 0, 2, 2] +brights 0.4 0.66332 [0, 0, 2, 0, 0, 1, 0, 0, 1, 0] +brightwork 1.1 0.83066 [1, 0, 1, 2, 1, 0, 3, 1, 1, 1] +brilliance 2.9 0.83066 [4, 3, 2, 4, 4, 3, 2, 3, 2, 2] +brilliances 2.9 0.83066 [3, 4, 3, 4, 4, 2, 3, 2, 2, 2] +brilliancies 2.3 1.18743 [1, 4, 1, 3, 3, 2, 1, 3, 4, 1] +brilliancy 2.6 1.0198 [4, 3, 2, 4, 2, 3, 1, 3, 1, 3] +brilliant 2.8 0.6 [2, 3, 3, 2, 3, 3, 4, 2, 3, 3] +brilliantine 0.8 1.16619 [-1, 3, 1, 0, 1, 0, 2, 0, 2, 0] +brilliantines 2.0 1.34164 [0, 1, 4, 2, 3, 1, 3, 0, 3, 3] +brilliantly 3.0 0.44721 [3, 2, 3, 3, 3, 3, 3, 3, 4, 3] +brilliants 1.9 0.83066 [3, 1, 2, 1, 2, 1, 3, 2, 1, 3] +brisk 0.6 0.8 [0, 0, 0, 0, 1, 1, 0, 2, 0, 2] +broke -1.8 0.4 [-2, -2, -2, -2, -1, -2, -2, -1, -2, -2] +broken -2.1 0.53852 [-2, -2, -2, -2, -3, -2, -1, -3, -2, -2] +brooding 0.1 1.3 [3, 0, -1, -1, -1, 1, 1, -1, 1, -1] +brutal -3.1 0.7 [-3, -3, -4, -2, -3, -4, -3, -4, -3, -2] +brutalise -2.7 1.1 [-4, -3, -3, -4, -3, -2, -2, -3, 0, -3] +brutalised -2.9 0.83066 [-3, -3, -2, -3, -3, -4, -4, -1, -3, -3] +brutalises -3.2 0.4 [-3, -3, -3, -3, -3, -4, -4, -3, -3, -3] +brutalising -2.8 0.74833 [-3, -3, -4, -3, -2, -3, -3, -3, -1, -3] +brutalities -2.6 1.0198 [-4, -2, -2, -4, -2, -4, -2, -3, -1, -2] +brutality -3.0 0.63246 [-2, -3, -4, -2, -3, -3, -3, -4, -3, -3] +brutalization -2.1 2.16564 [-3, -2, -4, -2, -4, -4, 2, -3, 2, -3] +brutalizations -2.3 0.64031 [-2, -2, -3, -2, -1, -3, -3, -2, -2, -3] +brutalize -2.9 0.7 [-3, -4, -3, -3, -2, -2, -3, -4, -2, -3] +brutalized -2.4 0.4899 [-3, -2, -2, -3, -2, -2, -3, -3, -2, -2] +brutalizes -3.2 0.6 [-4, -4, -3, -2, -3, -4, -3, -3, -3, -3] +brutalizing -3.4 0.66332 [-4, -3, -4, -3, -4, -4, -3, -4, -2, -3] +brutally -3.0 0.44721 [-3, -3, -3, -3, -3, -3, -3, -2, -3, -4] +bullied -3.1 0.9434 [-4, -4, -4, -2, -2, -4, -4, -3, -2, -2] +bullshit -2.8 0.6 [-3, -3, -3, -3, -3, -4, -2, -3, -2, -2] +bully -2.2 1.6 [-2, -3, -3, -4, -2, -1, 2, -3, -3, -3] +bullying -2.9 0.7 [-3, -2, -3, -2, -4, -2, -3, -3, -4, -3] +bummer -1.6 0.8 [-3, -1, -1, -1, -3, -1, -1, -2, -2, -1] +buoyant 0.9 0.83066 [0, 1, 1, 2, 1, 0, 0, 2, 0, 2] +burden -1.9 0.53852 [-2, -2, -1, -2, -3, -2, -1, -2, -2, -2] +burdened -1.7 0.45826 [-2, -2, -2, -2, -1, -2, -1, -2, -2, -1] +burdener -1.3 0.45826 [-1, -1, -2, -1, -1, -1, -2, -1, -2, -1] +burdeners -1.7 1.00499 [-2, -2, -2, -1, -3, -2, 0, 0, -2, -3] +burdening -1.4 0.66332 [-2, -1, -2, -2, -1, -1, -1, 0, -2, -2] +burdens -1.5 0.5 [-2, -2, -1, -1, -2, -1, -1, -1, -2, -2] +burdensome -1.8 0.9798 [-1, -1, -3, -2, -1, -2, -2, -1, -4, -1] +bwahaha 0.4 1.0198 [0, 1, 0, 1, 0, 2, -1, -1, 2, 0] +bwahahah 2.5 0.92195 [3, 4, 2, 2, 2, 3, 1, 2, 2, 4] +calm 1.3 0.78102 [1, 1, 0, 1, 2, 3, 2, 1, 1, 1] +calmative 1.1 0.9434 [3, 2, -1, 1, 1, 1, 1, 1, 1, 1] +calmatives 0.5 0.80623 [-1, 1, 0, 1, 0, 0, 1, 2, 0, 1] +calmed 1.6 0.4899 [2, 2, 2, 1, 1, 1, 2, 1, 2, 2] +calmer 1.5 0.67082 [1, 2, 3, 1, 1, 1, 2, 1, 2, 1] +calmest 1.6 0.8 [3, 2, 2, 2, 1, 1, 0, 2, 1, 2] +calming 1.7 0.78102 [2, 1, 3, 2, 2, 1, 3, 1, 1, 1] +calmly 1.3 0.9 [0, 0, 1, 3, 2, 2, 1, 1, 2, 1] +calmness 1.7 0.9 [1, 1, 1, 2, 2, 2, 1, 4, 1, 2] +calmnesses 1.6 0.4899 [1, 2, 1, 2, 1, 2, 2, 2, 1, 2] +calmodulin 0.2 0.4 [0, 0, 0, 0, 0, 0, 1, 0, 0, 1] +calms 1.3 0.64031 [2, 1, 1, 2, 0, 1, 1, 2, 2, 1] +can't stand -2.0 0.63246 [-2, -2, -2, -1, -1, -2, -3, -2, -2, -3] +cancel -1.0 0.63246 [-2, -1, -1, -1, -1, 0, -1, 0, -2, -1] +cancelled -1.0 0.44721 [-1, -1, -1, -1, 0, -1, -1, -2, -1, -1] +cancelling -0.8 0.74833 [0, 0, -1, 0, -1, -1, 0, -2, -1, -2] +cancels -0.9 0.53852 [0, -1, 0, -1, -1, -1, -1, -1, -2, -1] +cancer -3.4 0.8 [-2, -4, -3, -4, -4, -2, -3, -4, -4, -4] +capable 1.6 0.4899 [1, 2, 2, 2, 1, 1, 2, 2, 1, 2] +captivated 1.6 0.4899 [2, 1, 2, 2, 2, 2, 1, 2, 1, 1] +care 2.2 0.74833 [2, 1, 2, 1, 2, 2, 3, 3, 3, 3] +cared 1.8 0.74833 [1, 2, 1, 3, 1, 2, 2, 2, 3, 1] +carefree 1.7 0.64031 [1, 1, 2, 2, 2, 2, 1, 1, 2, 3] +careful 0.6 1.11355 [3, 0, 0, 0, 1, 0, -1, 2, 1, 0] +carefully 0.5 0.67082 [1, 0, 1, 1, 0, 1, 0, 1, 1, -1] +carefulness 2.0 0.44721 [3, 2, 2, 1, 2, 2, 2, 2, 2, 2] +careless -1.5 0.5 [-2, -1, -1, -2, -2, -1, -2, -2, -1, -1] +carelessly -1.0 0.44721 [-1, -1, -1, -2, -1, 0, -1, -1, -1, -1] +carelessness -1.4 0.4899 [-2, -1, -1, -2, -1, -2, -1, -1, -2, -1] +carelessnesses -1.6 1.11355 [-4, -2, -2, -3, -1, 0, -1, -1, -1, -1] +cares 2.0 0.7746 [2, 3, 1, 3, 1, 2, 2, 2, 3, 1] +caring 2.2 0.4 [2, 3, 2, 2, 2, 2, 2, 3, 2, 2] +casual 0.8 0.74833 [1, 1, 0, 1, 0, 2, 0, 1, 2, 0] +casually 0.7 1.00499 [1, 0, 0, 0, 1, 0, 0, 3, 2, 0] +casualty -2.4 0.91652 [-4, -3, -3, -2, -1, -2, -3, -1, -2, -3] +catastrophe -3.4 0.4899 [-3, -3, -3, -4, -4, -3, -3, -3, -4, -4] +catastrophic -2.2 2.22711 [-3, -2, -4, -4, -4, -3, -2, -4, 2, 2] +cautious -0.4 0.66332 [0, 1, -1, 0, 0, 0, -1, -1, -1, -1] +celebrate 2.7 1.00499 [4, 4, 3, 2, 4, 2, 2, 2, 3, 1] +celebrated 2.7 0.78102 [2, 3, 3, 2, 3, 4, 3, 3, 1, 3] +celebrates 2.7 0.64031 [2, 3, 3, 2, 2, 3, 3, 3, 4, 2] +celebrating 2.7 0.64031 [3, 3, 4, 2, 2, 2, 3, 3, 2, 3] +censor -2.0 1.34164 [0, -3, -2, -3, -3, 0, -4, -1, -1, -3] +censored -0.6 1.68523 [-1, -1, -1, 2, -3, -2, -1, -1, -1, 3] +censors -1.2 1.07703 [-1, 0, -3, 0, -1, 0, -1, -2, -1, -3] +certain 1.1 0.7 [1, 0, 2, 0, 2, 2, 1, 1, 1, 1] +certainly 1.4 1.0198 [3, 2, 0, 1, 3, 1, 0, 1, 1, 2] +certainties 0.9 1.44568 [0, -2, 4, 0, 1, 1, 1, 1, 2, 1] +certainty 1.0 0.89443 [2, 1, 0, 1, 0, 0, 2, 2, 2, 0] +chagrin -1.9 0.53852 [-1, -2, -3, -2, -1, -2, -2, -2, -2, -2] +chagrined -1.4 1.2 [-1, -2, 2, -1, -2, -2, -2, -2, -2, -2] +challenge 0.3 1.00499 [1, 0, -1, 1, 1, -1, 1, 0, 2, -1] +challenged -0.4 1.62481 [0, -2, 1, -1, -3, -1, 3, -1, 1, -1] +challenger 0.5 1.43178 [0, 0, 2, -1, -2, 1, 3, 0, 2, 0] +challengers 0.4 1.56205 [0, -2, -1, 1, 1, 2, 3, 2, -1, -1] +challenges 0.3 1.48661 [0, -1, 2, -1, -2, 0, 3, 0, 2, 0] +challenging 0.6 0.91652 [0, 0, 0, 1, 1, -1, 0, 2, 2, 1] +challengingly -0.6 1.68523 [0, -1, -2, 1, -3, 2, -2, -1, 2, -2] +champ 2.1 0.83066 [2, 2, 2, 3, 2, 3, 2, 0, 3, 2] +champac -0.2 0.6 [0, 0, -2, 0, 0, 0, 0, 0, 0, 0] +champagne 1.2 1.07703 [1, 2, 2, 3, 0, 2, 0, 0, 2, 0] +champagnes 0.5 0.92195 [0, 0, 0, 0, 0, 1, 1, 3, 0, 0] +champaign 0.2 0.6 [0, 0, 0, 0, 2, 0, 0, 0, 0, 0] +champaigns 0.5 0.67082 [1, 0, 0, 0, 0, 0, 0, 1, 2, 1] +champaks -0.2 0.6 [0, 0, 0, 0, 0, 0, -2, 0, 0, 0] +champed 1.0 0.63246 [1, 1, 2, 1, 1, 2, 1, 0, 0, 1] +champer -0.1 0.53852 [0, -1, 1, 0, 0, 0, 0, -1, 0, 0] +champers 0.5 0.67082 [1, 0, 0, 0, 0, 0, 0, 1, 1, 2] +champerties -0.1 0.83066 [0, -1, 1, 1, 0, 0, 0, 0, -2, 0] +champertous 0.3 0.78102 [0, 0, 0, 1, -1, 2, 1, 0, 0, 0] +champerty -0.2 1.32665 [-2, -1, 0, -1, 0, 0, 0, -2, 2, 2] +champignon 0.4 0.8 [0, 0, 0, 0, 0, 2, 0, 2, 0, 0] +champignons 0.2 0.6 [0, 2, 0, 0, 0, 0, 0, 0, 0, 0] +champing 0.7 1.34536 [0, 2, 0, 3, 1, 1, 2, 0, -2, 0] +champion 2.9 0.83066 [3, 2, 3, 4, 4, 3, 2, 2, 4, 2] +championed 1.2 1.53623 [2, 1, 3, 1, 1, -3, 2, 2, 1, 2] +championing 1.8 0.9798 [1, 3, 2, 0, 3, 1, 2, 2, 1, 3] +champions 2.4 1.42829 [4, 0, 0, 3, 1, 3, 4, 3, 3, 3] +championship 1.9 1.04403 [3, 1, 1, 3, 2, 1, 3, 3, 0, 2] +championships 2.2 0.74833 [2, 2, 1, 2, 3, 2, 4, 2, 2, 2] +champs 1.8 0.4 [2, 2, 2, 2, 1, 2, 1, 2, 2, 2] +champy 1.0 1.0 [3, 0, 0, 0, 0, 2, 1, 2, 1, 1] +chance 1.0 0.7746 [1, 1, 0, 0, 0, 2, 1, 2, 1, 2] +chances 0.8 0.4 [0, 1, 1, 0, 1, 1, 1, 1, 1, 1] +chaos -2.7 0.9 [-2, -2, -3, -1, -4, -3, -3, -2, -3, -4] +chaotic -2.2 1.4 [-3, -2, -1, -2, -3, 1, -2, -2, -4, -4] +charged -0.8 0.87178 [-1, -2, -2, -1, -1, 0, -1, 1, 0, -1] +charges -1.1 0.7 [-2, -2, -2, -1, -1, 0, -1, -1, 0, -1] +charitable 1.7 0.64031 [1, 2, 1, 2, 2, 1, 2, 1, 3, 2] +charitableness 1.9 0.9434 [3, 1, 1, 3, 1, 3, 3, 2, 1, 1] +charitablenesses 1.6 1.74356 [2, 2, 3, 4, 1, -1, -2, 3, 2, 2] +charitably 1.4 0.66332 [1, 2, 1, 2, 2, 1, 0, 1, 2, 2] +charities 2.2 0.6 [3, 3, 2, 2, 1, 2, 2, 3, 2, 2] +charity 1.8 0.87178 [1, 3, 2, 2, 2, 1, 2, 0, 2, 3] +charm 1.7 0.78102 [3, 1, 1, 3, 2, 2, 1, 1, 1, 2] +charmed 2.0 0.63246 [3, 1, 2, 2, 2, 3, 1, 2, 2, 2] +charmer 1.9 0.53852 [3, 2, 2, 2, 2, 2, 1, 1, 2, 2] +charmers 2.1 0.83066 [2, 1, 2, 2, 4, 3, 2, 1, 2, 2] +charmeuse 0.3 0.78102 [0, 0, 0, 1, 0, 2, 1, 0, -1, 0] +charmeuses 0.4 0.66332 [0, 0, 1, 0, 1, 0, 0, 0, 0, 2] +charming 2.8 0.4 [3, 3, 3, 3, 3, 3, 2, 3, 2, 3] +charminger 1.5 0.67082 [2, 3, 1, 2, 1, 1, 2, 1, 1, 1] +charmingest 2.4 0.66332 [2, 3, 3, 1, 3, 2, 3, 3, 2, 2] +charmingly 2.2 0.87178 [2, 2, 2, 1, 2, 2, 3, 3, 4, 1] +charmless -1.8 0.87178 [-3, -1, -3, -1, -1, -1, -2, -1, -3, -2] +charms 1.9 0.7 [1, 2, 3, 2, 1, 2, 3, 1, 2, 2] +chastise -2.5 0.92195 [-4, -3, -2, -1, -4, -3, -2, -2, -2, -2] +chastised -2.2 1.16619 [-2, -3, -2, -4, -1, -1, -3, 0, -3, -3] +chastises -1.7 1.61555 [-3, -3, -3, -1, 1, -2, 1, -1, -2, -4] +chastising -1.7 0.78102 [-2, -3, -2, -2, -2, 0, -1, -1, -2, -2] +cheat -2.0 0.7746 [-2, -3, -3, -2, -2, -1, -1, -1, -2, -3] +cheated -2.3 0.64031 [-2, -4, -2, -2, -2, -2, -3, -2, -2, -2] +cheater -2.5 0.67082 [-2, -4, -2, -3, -2, -2, -3, -2, -3, -2] +cheaters -1.9 0.83066 [-2, -2, -2, -1, -1, -4, -2, -1, -2, -2] +cheating -2.6 0.91652 [-2, -3, -3, -2, -4, -4, -3, -2, -1, -2] +cheats -1.8 0.6 [-3, -1, -2, -1, -2, -1, -2, -2, -2, -2] +cheer 2.3 0.64031 [2, 1, 2, 2, 2, 3, 3, 3, 2, 3] +cheered 2.3 0.78102 [2, 3, 3, 4, 2, 1, 2, 2, 2, 2] +cheerer 1.7 0.45826 [1, 2, 2, 2, 1, 1, 2, 2, 2, 2] +cheerers 1.8 0.87178 [2, 2, 3, 2, 1, 2, 0, 1, 3, 2] +cheerful 2.5 0.67082 [3, 2, 3, 2, 2, 2, 4, 2, 3, 2] +cheerfuller 1.9 0.83066 [3, 3, 2, 3, 2, 1, 1, 2, 1, 1] +cheerfullest 3.2 0.87178 [4, 4, 4, 4, 3, 2, 2, 3, 2, 4] +cheerfully 2.1 0.83066 [3, 2, 2, 2, 1, 3, 1, 3, 1, 3] +cheerfulness 2.1 0.9434 [3, 2, 1, 2, 3, 4, 1, 2, 1, 2] +cheerier 2.6 0.4899 [2, 2, 3, 3, 2, 3, 3, 2, 3, 3] +cheeriest 2.2 0.6 [3, 2, 3, 1, 2, 2, 3, 2, 2, 2] +cheerily 2.5 0.67082 [3, 3, 2, 3, 2, 4, 2, 2, 2, 2] +cheeriness 2.5 0.67082 [3, 2, 4, 2, 3, 2, 3, 2, 2, 2] +cheering 2.3 0.64031 [3, 3, 2, 1, 3, 2, 2, 2, 3, 2] +cheerio 1.2 0.6 [2, 1, 1, 1, 2, 1, 1, 1, 2, 0] +cheerlead 1.7 0.78102 [1, 2, 0, 2, 2, 2, 2, 3, 1, 2] +cheerleader 0.9 0.9434 [1, 1, 0, 2, 1, 0, 0, 1, 0, 3] +cheerleaders 1.2 1.07703 [2, 0, 0, 1, 1, 0, 3, 3, 1, 1] +cheerleading 1.2 1.07703 [2, 2, 0, 0, 1, 0, 3, 2, 0, 2] +cheerleads 1.2 1.07703 [2, 3, 0, 3, 1, 0, 0, 1, 1, 1] +cheerled 1.5 1.11803 [0, 2, 1, 4, 2, 2, 2, 1, 1, 0] +cheerless -1.7 1.1 [-2, -3, -2, -2, -3, -2, -1, -1, 1, -2] +cheerlessly -0.8 1.98997 [-2, 4, -1, -2, -1, -2, -2, -2, 2, -2] +cheerlessness -1.7 1.48661 [-2, -1, -2, -3, -2, -4, -1, 2, -2, -2] +cheerly 2.4 0.66332 [2, 2, 3, 2, 2, 3, 4, 2, 2, 2] +cheers 2.1 1.3 [2, 2, 1, 3, 2, 3, 3, 4, -1, 2] +cheery 2.6 0.66332 [3, 2, 2, 3, 2, 3, 4, 2, 3, 2] +cherish 1.6 1.49666 [0, 3, 3, 3, 2, 2, 2, 1, -2, 2] +cherishable 2.0 1.41421 [-2, 2, 2, 2, 3, 2, 3, 3, 2, 3] +cherished 2.3 0.64031 [3, 2, 2, 3, 2, 2, 1, 3, 2, 3] +cherisher 2.2 0.4 [2, 2, 3, 2, 2, 2, 2, 3, 2, 2] +cherishers 1.9 0.7 [3, 3, 2, 2, 1, 1, 2, 2, 2, 1] +cherishes 2.2 0.74833 [2, 2, 3, 2, 2, 2, 2, 4, 2, 1] +cherishing 2.0 0.7746 [3, 3, 2, 2, 1, 2, 1, 3, 2, 1] +chic 1.1 1.3 [1, 2, 2, -2, 2, 0, 1, 1, 3, 1] +childish -1.2 0.74833 [-1, -1, -2, -3, -1, 0, -1, -1, -1, -1] +chilling -0.1 1.92094 [3, -2, 0, 1, -2, -2, -1, -2, 1, 3] +choke -2.5 0.92195 [-1, -2, -3, -3, -2, -4, -2, -4, -2, -2] +choked -2.1 1.3 [-4, -3, 0, -2, -1, -3, -3, -2, 0, -3] +chokes -2.0 0.89443 [-4, -3, -1, -2, -1, -2, -2, -2, -1, -2] +choking -2.0 1.26491 [-4, -2, -2, -3, -2, -2, -3, -1, 1, -2] +chuckle 1.7 0.45826 [2, 1, 2, 2, 2, 2, 1, 1, 2, 2] +chuckled 1.2 0.9798 [2, 2, 1, 1, 2, 0, 1, 2, -1, 2] +chucklehead -1.9 0.53852 [-2, -2, -1, -3, -2, -2, -2, -2, -1, -2] +chuckleheaded -1.3 1.84662 [-3, -4, -2, 0, 3, -1, -2, 0, -2, -2] +chuckleheads -1.1 0.9434 [-1, -2, 0, -1, -1, -3, 0, 0, -2, -1] +chuckler 0.8 1.07703 [2, 1, -1, 0, 2, 1, 1, 2, -1, 1] +chucklers 1.2 0.87178 [1, 1, 2, 3, 1, 0, 1, 0, 2, 1] +chuckles 1.1 1.13578 [2, 2, -1, 1, 2, 1, 1, 2, -1, 2] +chucklesome 1.1 0.53852 [1, 1, 2, 1, 1, 1, 0, 2, 1, 1] +chuckling 1.4 0.4899 [1, 2, 1, 2, 1, 1, 2, 2, 1, 1] +chucklingly 1.2 0.4 [1, 1, 1, 1, 2, 1, 1, 1, 2, 1] +clarifies 0.9 1.13578 [-2, 1, 0, 2, 1, 2, 2, 1, 1, 1] +clarity 1.7 0.78102 [2, 1, 2, 3, 3, 1, 1, 2, 1, 1] +classy 1.9 0.53852 [1, 2, 2, 1, 3, 2, 2, 2, 2, 2] +clean 1.7 0.78102 [3, 1, 2, 1, 2, 1, 3, 2, 1, 1] +cleaner 0.7 0.78102 [1, 0, 1, 0, 0, 0, 2, 1, 2, 0] +clear 1.6 1.2 [2, 1, 1, 0, 3, 1, 2, 4, 2, 0] +cleared 0.4 0.4899 [0, 0, 1, 1, 0, 0, 0, 0, 1, 1] +clearly 1.7 0.78102 [2, 2, 2, 2, 1, 2, 0, 2, 1, 3] +clears 0.3 0.78102 [0, 1, 0, 0, 0, -1, 1, 2, 0, 0] +clever 2.0 0.7746 [2, 1, 2, 2, 2, 1, 3, 1, 3, 3] +cleverer 2.0 0.44721 [2, 2, 2, 3, 2, 2, 1, 2, 2, 2] +cleverest 2.6 0.91652 [4, 3, 2, 2, 4, 3, 2, 1, 2, 3] +cleverish 1.0 1.18322 [1, 1, 1, 1, 1, 1, 2, 1, -2, 3] +cleverly 2.3 0.45826 [2, 3, 2, 2, 2, 3, 2, 2, 3, 2] +cleverness 2.3 0.9 [2, 4, 2, 2, 1, 3, 3, 3, 1, 2] +clevernesses 1.4 0.66332 [1, 1, 1, 2, 2, 2, 2, 0, 2, 1] +clouded -0.2 0.9798 [-2, 0, 2, 0, 0, -1, 0, -1, 0, 0] +clueless -1.5 0.5 [-1, -2, -1, -2, -2, -1, -1, -1, -2, -2] +cock -0.6 1.49666 [0, 0, -4, 0, 0, 1, 0, -3, 0, 0] +cocksucker -3.1 0.83066 [-3, -4, -2, -2, -4, -4, -4, -2, -3, -3] +cocksuckers -2.6 1.42829 [-4, -3, -4, -3, -3, 1, -3, -1, -3, -3] +cocky -0.5 1.0247 [2, 0, -1, 0, -1, -2, 0, -1, -1, -1] +coerced -1.5 0.67082 [-1, -2, -2, -2, -1, 0, -1, -2, -2, -2] +collapse -2.2 0.87178 [-3, -1, -2, -4, -3, -2, -2, -2, -1, -2] +collapsed -1.1 1.64012 [-1, -2, -2, -1, -2, -2, 2, 2, -3, -2] +collapses -1.2 0.87178 [-2, -1, -2, 0, -2, 0, 0, -2, -1, -2] +collapsing -1.2 0.6 [-1, -1, -2, -2, -2, -1, 0, -1, -1, -1] +collide -0.3 1.61555 [-3, 0, -1, 3, 0, -1, -1, 2, -1, -1] +collides -1.1 1.22066 [-2, -2, -1, -1, 0, -2, 2, -2, -1, -2] +colliding -0.5 1.36015 [-2, 2, -1, -1, 0, -1, -2, 2, -1, -1] +collision -1.5 0.67082 [-1, -1, -2, -1, -2, -1, -1, -3, -2, -1] +collisions -1.1 0.7 [0, -2, -1, 0, -1, -1, -2, -2, -1, -1] +colluding -1.2 1.32665 [-1, -1, -2, -2, 0, -3, 2, -2, -1, -2] +combat -1.4 1.0198 [0, -2, 0, -2, -2, -2, -1, -3, 0, -2] +combats -0.8 1.16619 [0, -2, -3, -1, 0, 0, 0, -1, 1, -2] +comedian 1.6 1.0198 [1, 0, 2, 3, 2, 0, 3, 1, 2, 2] +comedians 1.2 1.16619 [0, 0, 0, 2, 3, 1, 3, 2, 0, 1] +comedic 1.7 0.64031 [2, 1, 1, 3, 1, 2, 2, 2, 1, 2] +comedically 2.1 0.7 [3, 2, 2, 1, 2, 3, 3, 2, 1, 2] +comedienne 0.6 0.66332 [0, 2, 1, 0, 1, 1, 0, 1, 0, 0] +comediennes 1.6 1.11355 [2, 1, 3, 0, 0, 3, 1, 1, 2, 3] +comedies 1.7 1.00499 [0, 2, 1, 3, 3, 3, 1, 1, 2, 1] +comedo 0.3 0.9 [0, 0, 0, 0, -1, 0, 2, 0, 2, 0] +comedones -0.8 0.9798 [0, 0, 0, -1, 0, -3, 0, -1, -1, -2] +comedown -0.8 1.07703 [-1, -1, -1, 0, -2, -1, 2, -1, -2, -1] +comedowns -0.9 0.53852 [-1, -1, -1, -1, 0, -2, 0, -1, -1, -1] +comedy 1.5 0.67082 [1, 1, 2, 1, 3, 2, 1, 1, 2, 1] +comfort 1.5 0.67082 [1, 3, 1, 2, 1, 1, 2, 1, 1, 2] +comfortable 2.3 0.64031 [1, 2, 3, 2, 2, 3, 3, 3, 2, 2] +comfortableness 1.3 1.48661 [4, 2, 2, 3, 1, 1, 1, -1, -1, 1] +comfortably 1.8 0.74833 [1, 2, 2, 1, 3, 3, 1, 2, 1, 2] +comforted 1.8 0.6 [2, 2, 2, 0, 2, 2, 2, 2, 2, 2] +comforter 1.9 0.53852 [2, 3, 2, 2, 2, 1, 2, 2, 2, 1] +comforters 1.2 0.6 [2, 1, 0, 2, 1, 1, 2, 1, 1, 1] +comforting 1.7 0.64031 [1, 2, 1, 1, 2, 2, 2, 3, 2, 1] +comfortingly 1.7 0.45826 [1, 2, 1, 2, 2, 1, 2, 2, 2, 2] +comfortless -1.8 0.6 [-3, -2, -1, -2, -1, -2, -1, -2, -2, -2] +comforts 2.1 0.7 [3, 1, 3, 1, 2, 2, 3, 2, 2, 2] +commend 1.9 0.7 [1, 2, 2, 1, 2, 1, 2, 3, 2, 3] +commended 1.9 0.9434 [1, 3, 2, 3, 2, 2, 0, 1, 3, 2] +commit 1.2 0.87178 [1, 0, 2, 2, 0, 0, 2, 2, 1, 2] +commitment 1.6 0.91652 [3, 1, 2, 0, 3, 1, 2, 1, 2, 1] +commitments 0.5 0.92195 [1, 3, 0, 0, 0, 0, 0, 0, 0, 1] +commits 0.1 1.13578 [0, -1, 0, 2, 1, -1, 1, 1, -2, 0] +committed 1.1 0.7 [0, 1, 1, 2, 0, 2, 1, 1, 2, 1] +committing 0.3 1.18743 [0, 1, 0, 3, 0, -2, 1, 0, 0, 0] +compassion 2.0 0.7746 [3, 2, 1, 1, 2, 1, 3, 2, 2, 3] +compassionate 2.2 0.87178 [0, 3, 3, 2, 2, 3, 3, 2, 2, 2] +compassionated 1.6 0.66332 [3, 1, 2, 2, 1, 2, 2, 1, 1, 1] +compassionately 1.7 1.41774 [1, 3, 3, 2, 1, 2, 3, 2, -2, 2] +compassionateness 0.9 1.37477 [-3, 2, 2, 1, 1, 1, 2, 1, 1, 1] +compassionates 1.6 0.4899 [2, 1, 2, 2, 1, 2, 2, 1, 1, 2] +compassionating 1.6 0.91652 [3, 0, 2, 1, 3, 1, 2, 1, 2, 1] +compassionless -2.6 0.8 [-3, -2, -2, -3, -4, -3, -1, -2, -3, -3] +compelled 0.2 1.07703 [-1, 0, 0, 0, 1, 2, -1, -1, 2, 0] +compelling 0.9 0.94339 [1, 1, 1, 0, 1, 2, 2, -1, 2, 0] +competent 1.3 0.78102 [1, 3, 1, 1, 2, 1, 1, 0, 2, 1] +competitive 0.7 0.9 [0, 2, 0, 2, 0, 1, 0, 0, 0, 2] +complacent -0.3 1.1 [2, -1, -1, 1, -1, -1, -1, 1, -1, -1] +complain -1.5 0.67082 [-1, -1, -1, -2, -1, -2, -3, -2, -1, -1] +complainant -0.7 0.78102 [0, 0, -1, 0, 0, -2, 0, -1, -2, -1] +complainants -1.1 1.3 [-2, -1, 0, -2, -3, -2, -1, 1, -2, 1] +complained -1.7 0.64031 [-1, -3, -2, -2, -1, -1, -2, -2, -1, -2] +complainer -1.8 0.4 [-2, -2, -2, -2, -1, -2, -2, -2, -1, -2] +complainers -1.3 1.00499 [-2, -1, -1, -2, -3, 1, -1, -1, -2, -1] +complaining -0.8 1.249 [-2, -1, -1, -1, -2, -1, -1, 2, 1, -2] +complainingly -1.7 0.64031 [-1, -2, -1, -2, -1, -2, -1, -2, -3, -2] +complains -1.6 0.66332 [-1, -2, -1, -2, -2, -3, -1, -1, -1, -2] +complaint -1.2 1.249 [-1, -1, -2, -2, -1, -3, -1, -1, 2, -2] +complaints -1.7 0.45826 [-2, -2, -2, -1, -2, -2, -2, -1, -1, -2] +compliment 2.1 0.7 [2, 2, 3, 1, 2, 3, 3, 1, 2, 2] +complimentarily 1.7 0.45826 [2, 2, 2, 2, 1, 1, 2, 1, 2, 2] +complimentary 1.9 0.7 [1, 2, 2, 1, 2, 1, 2, 3, 3, 2] +complimented 1.8 1.4 [3, 2, 2, 2, 3, 2, -2, 3, 1, 2] +complimenting 2.3 0.64031 [2, 2, 1, 3, 3, 2, 2, 3, 3, 2] +compliments 1.7 0.45826 [2, 1, 2, 2, 1, 2, 2, 1, 2, 2] +comprehensive 1.0 0.63246 [1, 1, 1, 0, 2, 2, 1, 0, 1, 1] +conciliate 1.0 1.18322 [2, 1, 1, 0, 2, 2, -2, 2, 1, 1] +conciliated 1.1 0.9434 [1, 3, 0, 0, 2, 0, 2, 1, 1, 1] +conciliates 1.1 0.9434 [1, 3, 0, 0, 2, 0, 2, 1, 1, 1] +conciliating 1.3 0.78102 [2, 2, 1, 1, 2, 0, 2, 1, 2, 0] +condemn -1.6 1.0198 [-2, -2, -1, -2, -2, 1, -2, -3, -1, -2] +condemnation -2.8 0.9798 [-3, -4, -2, -4, -2, -4, -2, -1, -3, -3] +condemned -1.9 1.81384 [2, -2, -2, -3, -2, -3, -3, -4, 1, -3] +condemns -2.3 0.64031 [-2, -2, -3, -3, -3, -2, -2, -3, -1, -2] +confidence 2.3 0.64031 [3, 3, 3, 3, 1, 2, 2, 2, 2, 2] +confident 2.2 0.87178 [1, 3, 3, 2, 3, 1, 3, 2, 1, 3] +confidently 2.1 0.53852 [2, 2, 3, 1, 2, 2, 2, 2, 3, 2] +conflict -1.3 0.45826 [-2, -2, -1, -2, -1, -1, -1, -1, -1, -1] +conflicting -1.7 0.64031 [-1, -2, -3, -1, -2, -1, -2, -1, -2, -2] +conflictive -1.8 0.6 [-2, -2, -2, -2, -1, -1, -3, -2, -1, -2] +conflicts -1.6 0.8 [-1, -1, -1, -2, -1, -1, -3, -2, -1, -3] +confront -0.7 0.78102 [0, -1, -1, 0, 1, -1, -1, -2, -1, -1] +confrontation -1.3 1.55242 [-3, -2, -3, -2, -1, -2, 1, 2, -1, -2] +confrontational -1.6 0.66332 [-1, -2, -1, -2, -1, -2, -1, -2, -3, -1] +confrontationist -1.0 1.34164 [-1, -2, -2, 2, 1, -1, -2, -1, -2, -2] +confrontationists -1.2 1.46969 [-2, -3, -1, -2, 2, 1, -1, -2, -2, -2] +confrontations -1.5 1.0247 [-1, -3, -2, -1, -3, 0, -2, -2, 0, -1] +confronted -0.8 0.74833 [-1, -2, -1, -1, -1, -1, -1, -1, 1, 0] +confronter -0.3 1.1 [0, -2, 1, -2, 0, -1, -1, 0, 1, 1] +confronters -1.3 1.26886 [-3, -2, -2, -2, -1, -2, 1, 1, -1, -2] +confronting -0.6 1.11355 [-2, -1, -1, 0, -2, 2, -1, 0, 0, -1] +confronts -0.9 0.53852 [-1, -1, -1, -1, 0, -1, 0, -1, -2, -1] +confuse -0.9 0.3 [-1, -1, -1, -1, -1, -1, -1, -1, 0, -1] +confused -1.3 0.45826 [-1, -2, -1, -1, -1, -1, -1, -1, -2, -2] +confusedly -0.6 1.42829 [-3, -1, -1, 1, -1, -1, -2, 2, 1, -1] +confusedness -1.5 0.67082 [-3, -1, -1, -2, -1, -2, -2, -1, -1, -1] +confuses -1.3 0.45826 [-1, -2, -1, -1, -1, -1, -1, -1, -2, -2] +confusing -0.9 0.7 [-1, -1, -1, -2, -1, -1, 1, -1, -1, -1] +confusingly -1.4 0.66332 [-1, -1, -1, -1, -3, -1, -2, -1, -1, -2] +confusion -1.2 0.6 [-1, -1, -1, -1, -1, -2, 0, -1, -2, -2] +confusional -1.2 0.6 [-2, -2, 0, -1, -2, -1, -1, -1, -1, -1] +confusions -0.9 1.04403 [-1, -2, -1, -1, -1, 2, -2, -1, -1, -1] +congrats 2.4 0.91652 [1, 3, 3, 3, 2, 2, 4, 1, 2, 3] +congratulate 2.2 1.249 [3, 3, 2, 3, -1, 2, 1, 3, 3, 3] +congratulation 2.9 0.9434 [3, 3, 3, 2, 4, 2, 4, 3, 4, 1] +congratulations 2.9 0.53852 [2, 3, 3, 3, 3, 3, 3, 3, 4, 2] +consent 0.9 0.7 [0, 0, 1, 1, 1, 2, 1, 2, 0, 1] +consents 1.0 0.63246 [0, 2, 1, 0, 1, 1, 1, 2, 1, 1] +considerate 1.9 1.22066 [2, -1, 3, 2, 2, 2, 4, 1, 2, 2] +consolable 1.1 0.53852 [1, 1, 2, 1, 0, 1, 1, 1, 2, 1] +conspiracy -2.4 0.66332 [-2, -2, -3, -3, -2, -2, -4, -2, -2, -2] +constrained -0.4 1.0198 [-1, 0, -1, -1, -1, -1, 2, -1, 1, -1] +contagion -2.0 1.18322 [-1, 0, -2, -1, -2, -4, -2, -4, -2, -2] +contagions -1.5 0.92195 [-2, -2, -2, -2, 1, -2, -1, -1, -2, -2] +contagious -1.4 0.91652 [-2, -2, -2, 0, -1, -1, -2, 0, -1, -3] +contempt -2.8 0.6 [-3, -3, -4, -2, -3, -2, -3, -3, -2, -3] +contemptibilities -2.0 1.09545 [-2, 1, -2, -2, -3, -3, -3, -2, -2, -2] +contemptibility -0.9 1.51327 [-2, -1, -3, -1, 0, -3, -1, 1, 2, -1] +contemptible -1.6 1.68523 [-2, -2, -3, -3, -2, -3, -1, -3, 1, 2] +contemptibleness -1.9 0.7 [-2, -2, -1, -2, -2, -1, -1, -2, -3, -3] +contemptibly -1.4 1.49666 [-3, 0, -2, -3, -2, -2, -1, -3, 1, 1] +contempts -1.0 1.48324 [-2, -2, -1, 0, 1, -1, -2, -3, 2, -2] +contemptuous -2.2 1.83303 [-2, -3, -4, -2, -3, -3, 3, -2, -3, -3] +contemptuously -2.4 0.8 [-1, -3, -2, -3, -3, -2, -1, -3, -3, -3] +contemptuousness -1.1 1.57797 [-3, -1, -2, 3, -2, 0, -1, -1, -2, -2] +contend 0.2 1.07703 [0, 0, 1, 1, -2, 1, -1, 0, 2, 0] +contender 0.5 1.0247 [1, 3, -1, 0, 0, 1, 0, 1, 0, 0] +contented 1.4 1.56205 [1, 1, 3, 2, 2, 2, -3, 2, 2, 2] +contentedly 1.9 0.9434 [3, 1, 2, 3, 2, 3, 0, 2, 1, 2] +contentedness 1.4 0.4899 [1, 2, 1, 1, 2, 2, 2, 1, 1, 1] +contentious -1.2 1.4 [-2, -2, -2, -2, -2, -2, -1, 2, 1, -2] +contentment 1.5 1.74642 [2, 1, 3, 2, 2, 1, 2, 4, 1, -3] +contestable 0.6 1.0198 [2, -1, 1, 0, 1, -1, 1, 1, 2, 0] +contradict -1.3 0.78102 [-2, -1, -1, 0, -2, 0, -1, -2, -2, -2] +contradictable -1.0 0.63246 [-1, -1, -2, 0, -1, -1, 0, -1, -1, -2] +contradicted -1.3 0.45826 [-1, -1, -1, -1, -2, -1, -2, -1, -1, -2] +contradicting -1.3 0.9 [-2, -2, -2, -1, -2, -1, 1, -1, -1, -2] +contradiction -1.0 0.89443 [-1, 0, 0, -1, 0, -3, -2, -1, -1, -1] +contradictions -1.3 0.78102 [0, -2, -1, -2, -1, -2, -1, 0, -2, -2] +contradictious -1.9 1.04403 [-2, -3, 0, -3, -3, -1, -2, -1, -1, -3] +contradictor -1.0 0.63246 [-1, -1, -1, -2, -1, -2, 0, 0, -1, -1] +contradictories -0.5 1.11803 [-1, 0, -1, -2, 2, 1, -1, -1, -1, -1] +contradictorily -0.9 1.3 [0, -1, -1, -1, -3, -1, 1, 1, -3, -1] +contradictoriness -1.4 0.4899 [-2, -1, -1, -1, -2, -1, -1, -2, -2, -1] +contradictors -1.6 0.66332 [-1, -2, -1, -2, -1, -1, -3, -1, -2, -2] +contradictory -1.4 0.4899 [-1, -2, -1, -2, -1, -1, -1, -1, -2, -2] +contradicts -1.4 0.66332 [-1, -2, -1, -2, -2, -2, 0, -1, -1, -2] +controversial -0.8 0.87178 [0, 0, -1, 1, -2, -1, -1, -1, -1, -2] +controversially -1.1 1.04403 [0, -1, -1, -2, -1, -2, -1, 1, -3, -1] +convince 1.0 0.89443 [-1, 2, 2, 1, 1, 0, 1, 1, 2, 1] +convinced 1.7 0.64031 [2, 1, 1, 2, 1, 2, 2, 2, 1, 3] +convincer 0.6 0.66332 [2, 0, 1, 0, 1, 1, 0, 0, 0, 1] +convincers 0.3 0.64031 [0, 0, 0, 0, 0, 1, 0, 0, 0, 2] +convinces 0.7 0.78102 [1, 0, 2, 0, 1, 0, 0, 0, 1, 2] +convincing 1.7 0.9 [2, 2, 0, 3, 3, 1, 1, 2, 2, 1] +convincingly 1.6 0.66332 [3, 2, 1, 1, 1, 2, 2, 1, 2, 1] +convincingness 0.7 1.34536 [0, 0, 0, 1, -2, 2, 0, 3, 1, 2] +convivial 1.2 1.16619 [1, 2, -2, 2, 1, 2, 2, 1, 2, 1] +cool 1.3 0.64031 [1, 1, 2, 1, 1, 1, 2, 2, 2, 0] +cornered -1.1 0.83066 [-1, -1, -3, -1, 0, -1, 0, -1, -2, -1] +corpse -2.7 1.18743 [-3, -4, 0, -4, -3, -3, -3, -1, -3, -3] +costly -0.4 1.0198 [-1, 0, -1, -1, 2, -1, -1, 1, -1, -1] +courage 2.2 0.74833 [2, 3, 1, 2, 3, 2, 3, 3, 1, 2] +courageous 2.4 0.4899 [2, 3, 3, 3, 3, 2, 2, 2, 2, 2] +courageously 2.3 0.78102 [3, 3, 3, 1, 3, 3, 2, 2, 2, 1] +courageousness 2.1 0.7 [3, 3, 1, 2, 1, 2, 2, 2, 3, 2] +courteous 2.3 0.45826 [2, 2, 2, 3, 3, 2, 3, 2, 2, 2] +courtesy 1.5 0.67082 [1, 1, 2, 3, 1, 2, 1, 1, 2, 1] +cover-up -1.2 1.16619 [-1, -1, -4, -1, 0, 0, -2, 0, -1, -2] +coward -2.0 0.63246 [-3, -3, -1, -2, -2, -1, -2, -2, -2, -2] +cowardly -1.6 0.8 [-1, -1, -1, -3, -1, -2, -3, -2, -1, -1] +coziness 1.5 1.11803 [2, 3, 1, 3, 1, 2, 2, -1, 1, 1] +cramp -0.8 1.66132 [0, -1, -1, -3, -3, 1, -2, 1, -2, 2] +crap -1.6 0.66332 [-1, -1, -2, -2, -1, -2, -3, -1, -1, -2] +crappy -2.6 0.8 [-1, -3, -3, -2, -3, -4, -2, -2, -3, -3] +crash -1.7 1.18743 [-2, -3, -2, -1, -2, 0, 0, -1, -4, -2] +craze -0.6 1.49666 [0, -3, -1, -1, -2, 0, 0, -1, 3, -1] +crazed -0.5 2.24722 [-2, -1, 3, -3, -3, 1, 1, -1, 3, -3] +crazes 0.2 1.6 [-2, -1, 3, -1, -1, 1, 2, 0, 2, -1] +crazier -0.1 1.7 [2, -2, -2, 0, -1, 1, 3, 1, -1, -2] +craziest -0.2 2.13542 [2, -2, -3, 3, -2, 0, 2, 2, -2, -2] +crazily -1.5 0.67082 [-2, -1, -1, -2, -1, -3, -2, -1, -1, -1] +craziness -1.6 0.66332 [-2, 0, -2, -1, -2, -1, -2, -2, -2, -2] +crazinesses -1.0 1.48324 [1, -2, -2, 2, -1, 0, -2, -1, -3, -2] +crazing -0.5 0.80623 [0, 0, 0, 0, -2, -1, -2, 0, 0, 0] +crazy -1.4 1.35647 [-2, -1, -1, -2, -3, -2, -3, -1, 2, -1] +crazyweed 0.8 0.9798 [2, 0, 0, 0, 0, 2, 2, 0, 2, 0] +create 1.1 1.13578 [1, 1, 1, 2, 3, 0, 0, 0, 3, 0] +created 1.0 0.7746 [2, 0, 0, 1, 1, 2, 0, 1, 1, 2] +creates 1.1 0.83066 [2, 0, 0, 1, 1, 2, 0, 1, 2, 2] +creatin 0.1 0.53852 [0, 0, 0, 1, 0, 0, 0, 1, -1, 0] +creatine 0.2 0.6 [0, 0, 0, 0, 0, 0, 0, 0, 0, 2] +creating 1.2 1.249 [0, 0, 0, 0, 4, 1, 1, 2, 2, 2] +creatinine 0.4 1.2 [0, 0, 0, 4, 0, 0, 0, 0, 0, 0] +creation 1.1 0.83066 [2, 1, 1, 2, 0, 0, 0, 1, 2, 2] +creationism 0.7 0.9 [2, 0, 0, 0, 0, 0, 2, 0, 2, 1] +creationisms 1.1 1.37477 [2, 4, 0, 3, 0, 0, 1, 1, 0, 0] +creationist 0.8 0.9798 [2, 0, 0, 0, 0, 0, 2, 0, 2, 2] +creationists 0.5 0.67082 [0, 0, 0, 1, 1, 0, 2, 0, 1, 0] +creations 1.6 0.91652 [3, 2, 1, 1, 1, 3, 1, 2, 2, 0] +creative 1.9 0.53852 [2, 1, 2, 2, 2, 1, 3, 2, 2, 2] +creatively 1.5 0.80623 [2, 2, 1, 0, 2, 2, 2, 0, 2, 2] +creativeness 1.8 1.07703 [3, 2, 1, 0, 2, 2, 2, 0, 3, 3] +creativities 1.7 1.00499 [2, 2, 1, 0, 3, 2, 2, 0, 2, 3] +creativity 1.6 0.8 [2, 1, 2, 2, 3, 2, 0, 2, 1, 1] +credit 1.6 0.91652 [1, 1, 0, 2, 3, 3, 2, 2, 1, 1] +creditabilities 1.4 1.28062 [0, 3, -1, 2, 2, 2, 1, 2, 0, 3] +creditability 1.9 1.3 [3, 0, 4, 0, 1, 1, 3, 2, 2, 3] +creditable 1.8 0.6 [2, 1, 1, 1, 2, 2, 3, 2, 2, 2] +creditableness 1.2 0.74833 [1, 1, 1, 3, 2, 1, 0, 1, 1, 1] +creditably 1.7 0.78102 [3, 1, 1, 0, 2, 2, 2, 2, 2, 2] +credited 1.5 1.11803 [1, 1, 1, 0, 3, 2, 0, 3, 1, 3] +crediting 0.6 0.4899 [1, 0, 0, 0, 1, 1, 1, 0, 1, 1] +creditor -0.1 1.44568 [-2, -1, 1, -2, -1, 1, 2, -1, 2, 0] +credits 1.5 1.0247 [2, -1, 2, 0, 2, 2, 2, 2, 2, 2] +creditworthiness 1.9 1.3 [4, 0, 3, 1, 2, 1, 4, 2, 1, 1] +creditworthy 2.4 0.66332 [3, 3, 3, 1, 2, 3, 3, 2, 2, 2] +crestfallen -2.5 0.67082 [-2, -3, -3, -2, -3, -2, -4, -2, -2, -2] +cried -1.6 0.8 [-1, -3, -1, -2, -2, -2, 0, -2, -1, -2] +cries -1.7 0.64031 [-1, -3, -1, -2, -2, -2, -1, -2, -1, -2] +crime -2.5 0.80623 [-3, -3, -4, -2, -2, -1, -2, -2, -3, -3] +criminal -2.4 0.91652 [-3, -2, -4, -3, -1, -2, -3, -2, -1, -3] +criminals -2.7 0.9 [-2, -2, -1, -3, -3, -4, -4, -3, -2, -3] +crisis -3.1 0.7 [-3, -2, -4, -3, -3, -2, -4, -4, -3, -3] +critic -1.1 0.53852 [-1, 0, -2, -1, -1, -1, -1, -1, -2, -1] +critical -1.3 0.78102 [-2, 0, -1, -1, -1, -2, -1, -3, -1, -1] +criticise -1.9 0.53852 [-2, -1, -2, -2, -2, -2, -3, -1, -2, -2] +criticised -1.8 0.4 [-2, -2, -1, -2, -2, -2, -1, -2, -2, -2] +criticises -1.3 1.26886 [-2, -1, -1, -1, 2, -1, -3, -2, -2, -2] +criticising -1.7 0.78102 [-1, -1, -1, -3, -1, -2, -2, -2, -1, -3] +criticism -1.9 0.53852 [-2, -1, -2, -2, -2, -2, -3, -1, -2, -2] +criticisms -0.9 1.37477 [-1, -1, 1, -1, -2, -2, -1, -3, 2, -1] +criticizable -1.0 0.63246 [-1, -2, 0, -1, -2, -1, 0, -1, -1, -1] +criticize -1.6 1.0198 [-2, -1, 0, -2, -1, -3, 0, -3, -2, -2] +criticized -1.5 0.92195 [-1, -2, -3, -1, -1, -1, -3, -1, -2, 0] +criticizer -1.5 0.67082 [-1, -2, -2, -1, -1, -1, -3, -1, -2, -1] +criticizers -1.6 0.4899 [-1, -1, -1, -2, -2, -2, -1, -2, -2, -2] +criticizes -1.4 0.66332 [-1, -1, -2, -1, -1, -1, -3, -1, -2, -1] +criticizing -1.5 0.67082 [-1, -1, -1, -2, -2, -1, -2, -1, -3, -1] +critics -1.2 0.6 [-2, 0, -1, -1, -1, -1, -2, -1, -2, -1] +crude -2.7 0.64031 [-2, -2, -3, -4, -2, -3, -3, -2, -3, -3] +crudely -1.2 0.4 [-1, -2, -2, -1, -1, -1, -1, -1, -1, -1] +crudeness -2.0 0.7746 [-3, -1, -1, -1, -3, -2, -3, -2, -2, -2] +crudenesses -2.0 1.0 [-3, -1, -1, -2, -4, -1, -1, -2, -2, -3] +cruder -2.0 0.89443 [-3, -2, -2, -1, -1, -2, -2, -1, -4, -2] +crudes -1.1 0.83066 [-2, -1, -1, -1, 0, 0, -1, -1, -3, -1] +crudest -2.4 1.0198 [-2, -1, -3, -3, -2, -1, -4, -4, -2, -2] +cruel -2.8 1.16619 [-2, -4, -1, -4, -1, -4, -2, -3, -3, -4] +crueler -2.3 0.45826 [-2, -3, -2, -2, -2, -3, -2, -2, -3, -2] +cruelest -2.6 0.8 [-4, -3, -2, -4, -2, -2, -2, -2, -2, -3] +crueller -2.4 0.4899 [-2, -3, -3, -3, -2, -2, -3, -2, -2, -2] +cruellest -2.9 1.04403 [-2, -3, -4, -4, -4, -3, -1, -2, -2, -4] +cruelly -2.8 0.4 [-3, -3, -3, -3, -3, -3, -2, -2, -3, -3] +cruelness -2.9 0.3 [-3, -3, -3, -3, -3, -3, -3, -3, -2, -3] +cruelties -2.3 1.00499 [-4, -3, -2, -1, -2, -2, -1, -4, -2, -2] +cruelty -2.9 0.83066 [-3, -3, -3, -3, -4, -3, -1, -3, -4, -2] +crush -0.6 1.11355 [0, 0, 0, -1, 1, 0, -2, -3, -1, 0] +crushed -1.8 0.6 [-2, -2, -2, -1, -2, -1, -1, -3, -2, -2] +crushes -1.9 0.53852 [-2, -2, -2, -2, -2, -1, -1, -3, -2, -2] +crushing -1.5 1.85742 [-2, -3, -1, -3, 2, -2, -2, -3, 2, -3] +cry -2.1 0.53852 [-2, -2, -2, -1, -2, -2, -3, -3, -2, -2] +crying -2.1 0.7 [-3, -1, -2, -2, -3, -2, -3, -2, -1, -2] +cunt -2.2 2.08806 [-4, -1, -4, -2, 2, -4, -4, -3, 1, -3] +cunts -2.9 1.44568 [-3, -4, -3, -4, -4, -4, -3, 1, -3, -2] +curious 1.3 0.78102 [0, 1, 0, 2, 2, 2, 1, 1, 2, 2] +curse -2.5 0.67082 [-3, -3, -4, -2, -2, -3, -2, -2, -2, -2] +cut -1.1 0.53852 [-2, -1, -1, -1, 0, -1, -1, -1, -2, -1] +cute 2.0 0.63246 [1, 3, 1, 2, 2, 2, 2, 3, 2, 2] +cutely 1.3 1.00499 [3, 1, 1, 2, 2, 1, 1, 2, -1, 1] +cuteness 2.3 0.45826 [2, 2, 2, 3, 2, 3, 3, 2, 2, 2] +cutenesses 1.9 0.53852 [1, 2, 2, 1, 3, 2, 2, 2, 2, 2] +cuter 2.3 0.9 [1, 2, 3, 4, 1, 2, 2, 3, 3, 2] +cutes 1.8 0.87178 [1, 2, 3, 0, 1, 2, 2, 2, 3, 2] +cutesie 1.0 1.18322 [2, 2, 1, 1, 0, 2, 2, -1, 2, -1] +cutesier 1.5 1.20416 [3, -1, 2, 1, 1, 2, 2, 3, 0, 2] +cutesiest 2.2 1.4 [3, 3, 4, 2, 2, 4, 2, -1, 2, 1] +cutest 2.8 0.87178 [2, 3, 3, 4, 4, 3, 1, 3, 2, 3] +cutesy 2.1 0.83066 [2, 1, 2, 2, 4, 3, 1, 2, 2, 2] +cutey 2.1 1.04403 [1, 2, 3, 4, 1, 1, 3, 2, 3, 1] +cuteys 1.5 1.0247 [3, 2, 2, 0, 1, 2, 1, 1, 3, 0] +cutie 1.5 0.80623 [3, 1, 1, 2, 1, 1, 1, 3, 1, 1] +cutiepie 2.0 1.09545 [3, 1, 2, 4, 0, 2, 1, 3, 2, 2] +cuties 2.2 0.6 [3, 2, 2, 2, 3, 1, 2, 2, 3, 2] +cuts -1.2 0.6 [-1, -2, -1, 0, -1, -1, -2, -2, -1, -1] +cutting -0.5 0.67082 [0, -1, 0, 0, 0, -1, -1, -2, 0, 0] +cynic -1.4 0.8 [-1, -2, -1, 0, -2, -3, -1, -1, -1, -2] +cynical -1.6 0.66332 [-1, -1, -2, -2, -1, -1, -2, -2, -1, -3] +cynically -1.3 1.00499 [-2, -1, -1, -1, -3, -2, -1, -2, 1, -1] +cynicism -1.7 0.64031 [-2, -3, -1, -1, -2, -1, -2, -1, -2, -2] +cynicisms -1.7 0.78102 [-1, -1, -3, -1, -2, -3, -1, -2, -2, -1] +cynics -0.3 1.1 [-1, 0, -2, 0, 0, -1, 1, -1, 2, -1] +d-: 1.6 0.66332 [1, 1, 1, 2, 2, 3, 1, 1, 2, 2] +d: 1.2 0.87178 [1, 1, 1, 2, 1, 1, 2, 2, -1, 2] +d= 1.5 0.67082 [1, 1, 1, 2, 3, 2, 1, 1, 1, 2] +damage -2.2 0.4 [-2, -3, -2, -2, -3, -2, -2, -2, -2, -2] +damaged -1.9 0.53852 [-2, -2, -2, -1, -2, -1, -2, -2, -3, -2] +damager -1.9 0.53852 [-2, -2, -2, -2, -2, -1, -2, -2, -3, -1] +damagers -2.0 0.63246 [-2, -3, -1, -2, -2, -1, -3, -2, -2, -2] +damages -1.9 1.04403 [-1, 0, -2, -2, -2, -4, -2, -1, -3, -2] +damaging -2.3 0.9 [-4, -1, -2, -4, -2, -2, -2, -2, -2, -2] +damagingly -2.0 0.7746 [-2, -2, -2, -2, -1, -3, -3, -1, -3, -1] +damn -1.7 0.64031 [-2, -1, -2, -1, -1, -3, -1, -2, -2, -2] +damnable -1.7 0.45826 [-2, -1, -2, -2, -1, -2, -1, -2, -2, -2] +damnableness -1.8 0.74833 [-2, -2, -2, -2, -1, -2, -2, 0, -3, -2] +damnably -1.7 0.45826 [-2, -1, -2, -2, -1, -2, -1, -2, -2, -2] +damnation -2.6 1.0198 [-3, -2, -3, -4, -4, -3, -1, -2, -1, -3] +damnations -1.4 1.11355 [-2, -1, -2, -3, -2, 0, -1, 1, -2, -2] +damnatory -2.6 1.42829 [-4, -1, -4, -2, -1, -3, -3, 0, -4, -4] +damned -1.6 0.66332 [-1, -1, -3, -1, -2, -2, -1, -2, -1, -2] +damnedest -0.5 1.5 [1, 0, 0, 0, -1, -1, 0, 2, -3, -3] +damnified -2.8 0.9798 [-1, -3, -3, -2, -2, -3, -4, -4, -2, -4] +damnifies -1.8 0.87178 [-2, -2, -1, -2, -3, -2, -2, 0, -1, -3] +damnify -2.2 0.74833 [-2, -2, -4, -2, -3, -2, -1, -2, -2, -2] +damnifying -2.4 0.66332 [-3, -1, -2, -2, -2, -2, -3, -3, -3, -3] +damning -1.4 0.8 [-1, -3, -1, -1, -1, -1, -3, -1, -1, -1] +damningly -2.0 1.61245 [-3, -2, -1, -4, -3, -3, -3, -2, 2, -1] +damnit -2.4 1.0198 [-3, -3, -2, -2, -3, -2, -4, -2, 0, -3] +damns -2.2 0.74833 [-2, -3, -2, -1, -3, -2, -1, -2, -3, -3] +danger -2.4 0.91652 [-3, -1, -2, -3, -3, -3, -2, -1, -2, -4] +dangered -2.4 0.66332 [-3, -3, -2, -3, -3, -2, -1, -2, -3, -2] +dangering -2.5 0.80623 [-1, -2, -2, -3, -4, -3, -3, -2, -2, -3] +dangerous -2.1 0.3 [-2, -3, -2, -2, -2, -2, -2, -2, -2, -2] +dangerously -2.0 0.44721 [-2, -2, -2, -1, -2, -3, -2, -2, -2, -2] +dangerousness -2.0 0.44721 [-2, -3, -2, -1, -2, -2, -2, -2, -2, -2] +dangers -2.2 0.87178 [-1, -1, -2, -4, -2, -3, -3, -2, -2, -2] +daredevil 0.5 0.92195 [0, 1, -1, 2, 0, 0, 1, 0, 0, 2] +daring 1.5 1.5 [3, 0, 1, 1, 2, -2, 3, 2, 2, 3] +daringly 2.1 0.7 [3, 1, 2, 1, 3, 2, 2, 3, 2, 2] +daringness 1.4 0.8 [0, 2, 1, 3, 1, 2, 2, 1, 1, 1] +darings 0.4 0.91652 [0, 1, 1, 1, 0, 1, 0, 1, -2, 1] +darkest -2.2 0.6 [-3, -3, -2, -2, -3, -2, -1, -2, -2, -2] +darkness -1.0 0.44721 [-2, -1, -1, -1, -1, 0, -1, -1, -1, -1] +darling 2.8 0.6 [3, 3, 2, 2, 3, 3, 4, 2, 3, 3] +darlingly 1.6 0.66332 [1, 1, 2, 3, 1, 1, 2, 2, 2, 1] +darlingness 2.3 0.45826 [3, 3, 2, 2, 2, 2, 2, 2, 3, 2] +darlings 2.2 0.4 [3, 2, 2, 2, 2, 2, 2, 2, 3, 2] +dauntless 2.3 0.78102 [3, 3, 2, 1, 3, 3, 2, 1, 2, 3] +daze -0.7 0.78102 [-1, 0, -1, -1, 1, -1, -1, 0, -1, -2] +dazed -0.7 0.64031 [0, -1, -1, 0, -1, -1, 0, -1, 0, -2] +dazedly -0.4 1.0198 [-1, -1, -1, -1, -1, 2, -1, 1, 0, -1] +dazedness -0.5 1.11803 [-1, 2, 0, -1, -1, -1, 1, -2, -1, -1] +dazes -0.3 0.78102 [0, -1, 0, 0, 0, -1, 0, 1, 0, -2] +dead -3.3 1.00499 [-4, -4, -1, -4, -4, -3, -4, -2, -3, -4] +deadlock -1.4 0.8 [-2, -2, -1, -3, -1, 0, -2, -1, -1, -1] +deafening -1.2 1.6 [-4, -2, 0, -3, 1, -2, 1, -2, -1, 0] +dear 1.6 1.35647 [3, 3, 2, 2, 2, 2, 1, -2, 1, 2] +dearer 1.9 0.7 [2, 2, 1, 2, 1, 1, 2, 3, 2, 3] +dearest 2.6 0.8 [1, 2, 3, 3, 2, 2, 3, 3, 4, 3] +dearie 2.2 0.6 [2, 2, 2, 3, 2, 1, 3, 2, 3, 2] +dearies 1.0 1.0 [0, 1, 2, -1, 1, 1, 1, 1, 1, 3] +dearly 1.8 1.07703 [3, 4, 2, 1, 1, 0, 1, 2, 2, 2] +dearness 2.0 0.7746 [1, 1, 2, 3, 2, 2, 2, 3, 1, 3] +dears 1.9 0.83066 [3, 2, 2, 2, 1, 2, 2, 2, 0, 3] +dearth -2.3 1.00499 [-2, -2, -1, -4, -2, -1, -2, -4, -3, -2] +dearths -0.9 0.7 [0, -1, 0, -1, -2, -1, -2, 0, -1, -1] +deary 1.9 0.83066 [3, 2, 2, 1, 2, 2, 3, 2, 0, 2] +death -2.9 1.04403 [-3, -4, -4, -3, -3, -1, -1, -4, -3, -3] +debonair 0.8 1.72047 [1, -1, -1, -3, 2, 2, 2, 2, 2, 2] +debt -1.5 1.0247 [-2, -1, -2, -3, 1, -2, -2, -1, -1, -2] +decay -1.7 0.45826 [-2, -2, -2, -1, -2, -1, -1, -2, -2, -2] +decayed -1.6 0.91652 [-2, -2, -2, -2, -2, 1, -1, -2, -2, -2] +decayer -1.6 0.4899 [-2, -2, -2, -1, -2, -1, -1, -1, -2, -2] +decayers -1.6 0.4899 [-2, -1, -1, -2, -1, -2, -2, -2, -1, -2] +decaying -1.7 0.64031 [-1, -1, -2, -2, -1, -2, -3, -2, -2, -1] +decays -1.7 0.45826 [-2, -1, -2, -2, -1, -2, -1, -2, -2, -2] +deceit -2.0 1.34164 [-3, -2, -2, -3, -3, 0, 1, -2, -3, -3] +deceitful -1.9 1.22066 [-3, -2, -2, -3, -1, -3, -1, -3, -2, 1] +deceive -1.7 0.64031 [-1, -2, -2, -1, -2, -1, -1, -3, -2, -2] +deceived -1.9 1.3 [1, -3, -3, -1, -1, -2, -2, -2, -4, -2] +deceives -1.6 1.56205 [-1, 2, -2, -2, -3, -2, 0, -2, -4, -2] +deceiving -1.4 1.68523 [-3, -2, -2, -2, -1, -1, 1, -4, 2, -2] +deception -1.9 1.04403 [-1, -2, -2, -4, -2, 0, -2, -1, -3, -2] +decisive 0.9 0.83066 [2, 2, 0, 1, -1, 1, 1, 1, 1, 1] +dedicated 2.0 0.44721 [2, 2, 2, 2, 2, 2, 2, 1, 3, 2] +defeat -2.0 1.67332 [0, -4, -3, -4, -2, -1, -2, -1, 1, -4] +defeated -2.1 0.83066 [-1, -2, -1, -2, -3, -2, -2, -2, -2, -4] +defeater -1.4 0.8 [-2, -1, -1, -3, -2, -1, -2, -1, 0, -1] +defeaters -0.9 0.9434 [-2, 0, -1, -2, -2, -1, 0, -1, 1, -1] +defeating -1.6 0.66332 [-2, -2, -1, -1, -1, -1, -2, -2, -3, -1] +defeatism -1.3 1.00499 [-1, -2, -2, -1, -1, -3, 1, -2, -1, -1] +defeatist -1.7 0.9 [0, -1, -2, -3, -1, -2, -1, -3, -2, -2] +defeatists -2.1 0.9434 [-3, -2, -1, -2, -2, -1, -3, -4, -1, -2] +defeats -1.3 1.1 [-1, 0, -1, -2, -1, -2, -3, 1, -2, -2] +defeature -1.9 1.22066 [1, -2, -2, -2, -2, -1, -2, -3, -4, -2] +defeatures -1.5 1.20416 [-3, -2, -3, 0, -1, -1, -2, 0, -3, 0] +defect -1.4 0.8 [-2, -1, -2, -1, 0, -2, -3, -1, -1, -1] +defected -1.7 0.64031 [-3, -2, -2, -2, -1, -1, -1, -2, -1, -2] +defecting -1.8 0.6 [-2, -1, -2, -2, -2, -1, -3, -1, -2, -2] +defection -1.4 0.66332 [-1, -2, -1, -2, 0, -1, -2, -2, -2, -1] +defections -1.5 0.67082 [-2, -2, -2, -1, 0, -1, -2, -2, -1, -2] +defective -1.9 0.53852 [-2, -1, -2, -3, -2, -2, -2, -2, -1, -2] +defectively -2.1 0.83066 [-1, -3, -2, -1, -3, -2, -1, -3, -2, -3] +defectiveness -1.8 0.74833 [-1, -1, -2, -2, -2, -3, -1, -1, -2, -3] +defectives -1.8 0.74833 [-3, -3, -1, -2, -2, -1, -2, -1, -1, -2] +defector -1.9 0.53852 [-2, -3, -2, -2, -1, -2, -1, -2, -2, -2] +defectors -1.3 1.26886 [-2, -1, -2, 0, -1, -1, -2, -4, 1, -1] +defects -1.7 0.9 [-1, -2, -1, 0, -2, -3, -2, -2, -1, -3] +defence 0.4 0.91652 [0, 0, 0, 1, 0, 0, 0, 2, 2, -1] +defenceman 0.4 1.11355 [3, 0, 0, 0, 0, -1, 2, 0, 0, 0] +defencemen 0.6 0.91652 [0, 0, 0, 2, 0, 2, 0, 2, 0, 0] +defences -0.2 1.16619 [0, 0, 0, 1, -2, -1, 0, -2, 0, 2] +defender 0.4 1.0198 [0, 0, 2, 1, -1, 2, 0, 1, -1, 0] +defenders 0.3 0.78102 [0, 1, 1, 0, 0, 0, 0, -1, 2, 0] +defense 0.5 0.67082 [0, 1, 0, 1, 2, 1, 0, 0, 0, 0] +defenseless -1.4 0.8 [0, -1, -1, -2, -1, -1, -3, -1, -2, -2] +defenselessly -1.1 0.9434 [-2, -2, -2, -1, 0, -1, 1, -1, -1, -2] +defenselessness -1.3 1.18743 [-3, -1, -3, 0, -2, -1, -1, -2, 1, -1] +defenseman 0.1 1.13578 [2, 0, 0, 0, 0, 0, -1, 0, 2, -2] +defensemen -0.4 0.66332 [0, 0, -2, 0, -1, -1, 0, 0, 0, 0] +defenses 0.7 1.41774 [3, 0, 2, 0, -1, 1, -2, 1, 1, 2] +defensibility 0.4 1.56205 [1, -2, 1, 0, 4, 0, -1, 1, -1, 1] +defensible 0.8 0.87178 [0, 2, 0, 0, 1, 0, 2, 0, 2, 1] +defensibly 0.1 1.13578 [0, -1, 0, 0, -1, 0, 3, 0, -1, 1] +defensive 0.1 1.13578 [2, -1, 0, -1, 2, 0, -1, 1, 0, -1] +defensively -0.6 0.91652 [1, 1, -1, -1, -1, -1, -2, -1, 0, -1] +defensiveness -0.4 1.11355 [2, -1, -1, -1, -1, 0, 0, 1, -2, -1] +defensives -0.3 1.00499 [-1, 0, 0, -1, 0, -1, 0, -2, 2, 0] +defer -1.2 0.6 [-1, -2, -1, 0, -1, -2, -2, -1, -1, -1] +deferring -0.7 0.64031 [0, 0, -2, -1, -1, -1, -1, 0, -1, 0] +defiant -0.9 1.44568 [-1, -2, -1, 2, 1, -2, 0, -1, -3, -2] +deficit -1.7 0.78102 [-3, -3, -2, -1, -2, -2, -1, -1, -1, -1] +definite 1.1 0.7 [2, 1, 0, 1, 0, 1, 1, 2, 2, 1] +definitely 1.7 0.64031 [2, 2, 2, 2, 2, 1, 2, 2, 0, 2] +degradable -1.0 1.26491 [-1, -2, 0, -2, 0, -1, -2, -2, 2, -2] +degradation -2.4 1.0198 [-4, -3, -3, -3, -3, -2, -2, -2, 0, -2] +degradations -1.5 0.67082 [-2, -1, -3, -1, -2, -2, -1, -1, -1, -1] +degradative -2.0 0.63246 [-2, -1, -3, -2, -2, -2, -1, -2, -3, -2] +degrade -1.9 0.7 [-3, -2, -1, -3, -1, -2, -2, -2, -1, -2] +degraded -1.8 0.87178 [-2, -3, -1, 0, -2, -1, -2, -2, -3, -2] +degrader -2.0 0.63246 [-2, -3, -1, -1, -2, -2, -3, -2, -2, -2] +degraders -2.0 0.63246 [-2, -3, -1, -2, -2, -2, -3, -2, -1, -2] +degrades -2.1 0.83066 [-3, -1, -3, -3, -2, -3, -1, -1, -2, -2] +degrading -2.8 0.87178 [-3, -3, -2, -3, -4, -2, -3, -4, -3, -1] +degradingly -2.7 0.64031 [-3, -2, -3, -4, -2, -3, -3, -2, -3, -2] +dehumanize -1.8 2.18174 [-2, -4, -1, -3, 2, -4, -3, 2, -1, -4] +dehumanized -1.9 0.7 [-2, -2, -2, -2, -1, -3, -2, -1, -3, -1] +dehumanizes -1.5 0.67082 [-1, -1, -1, -2, -1, -3, -2, -1, -2, -1] +dehumanizing -2.4 0.91652 [-2, -3, -4, -2, -3, -2, -3, -1, -1, -3] +deject -2.2 0.6 [-2, -3, -2, -3, -2, -2, -3, -2, -1, -2] +dejected -2.2 0.74833 [-2, -1, -2, -3, -2, -2, -2, -2, -2, -4] +dejecting -2.3 0.64031 [-2, -2, -3, -2, -3, -2, -1, -2, -3, -3] +dejects -2.0 0.63246 [-2, -2, -3, -1, -2, -1, -3, -2, -2, -2] +delay -1.3 0.45826 [-1, -1, -1, -2, -1, -1, -2, -1, -2, -1] +delayed -0.9 0.3 [-1, -1, 0, -1, -1, -1, -1, -1, -1, -1] +delectable 2.9 0.83066 [3, 4, 3, 2, 3, 4, 3, 1, 3, 3] +delectables 1.4 1.35647 [1, 2, 0, 4, 2, 1, 3, -1, 1, 1] +delectably 2.8 0.74833 [3, 4, 3, 2, 3, 3, 3, 1, 3, 3] +delicate 0.2 0.74833 [2, 0, 0, 0, 0, 0, 1, 0, -1, 0] +delicately 1.0 1.26491 [1, 1, 2, 0, 1, 3, -1, 2, -1, 2] +delicates 0.6 1.35647 [3, 0, 2, 1, -1, -1, 2, 0, 1, -1] +delicatessen 0.4 0.8 [0, 0, 0, 0, 0, 0, 0, 2, 2, 0] +delicatessens 0.4 0.8 [0, 0, 2, 0, 0, 2, 0, 0, 0, 0] +delicious 2.7 0.64031 [3, 2, 3, 4, 2, 3, 3, 3, 2, 2] +deliciously 1.9 0.83066 [2, 2, 1, 3, 1, 3, 2, 3, 1, 1] +deliciousness 1.8 0.87178 [1, 2, 3, 3, 2, 2, 1, 2, 2, 0] +delight 2.9 0.7 [2, 3, 4, 4, 3, 2, 3, 3, 2, 3] +delighted 2.3 0.64031 [3, 3, 2, 3, 2, 1, 3, 2, 2, 2] +delightedly 2.4 0.4899 [2, 3, 3, 3, 2, 2, 3, 2, 2, 2] +delightedness 2.1 0.53852 [2, 2, 2, 2, 3, 2, 3, 2, 1, 2] +delighter 2.0 0.63246 [3, 2, 2, 3, 1, 2, 2, 1, 2, 2] +delighters 2.6 0.66332 [3, 2, 2, 2, 3, 2, 3, 2, 4, 3] +delightful 2.8 0.6 [4, 3, 2, 3, 3, 3, 2, 2, 3, 3] +delightfully 2.7 0.45826 [3, 2, 2, 2, 3, 3, 3, 3, 3, 3] +delightfulness 2.1 0.7 [3, 2, 3, 1, 2, 3, 2, 2, 2, 1] +delighting 1.6 1.90788 [3, 3, 3, 2, 3, 2, 3, -2, -2, 1] +delights 2.0 1.54919 [2, 3, 1, -2, 2, 4, 2, 3, 3, 2] +delightsome 2.3 0.45826 [3, 3, 2, 2, 2, 3, 2, 2, 2, 2] +demand -0.5 0.67082 [0, 0, 0, 0, 0, -1, -1, -1, 0, -2] +demanded -0.9 0.7 [-2, 0, 0, 0, -2, -1, -1, -1, -1, -1] +demanding -0.9 0.53852 [-1, -2, 0, -1, -1, -1, -1, -1, 0, -1] +demonstration 0.4 0.91652 [0, 0, 0, 0, 0, 0, 3, 1, 0, 0] +demoralized -1.6 1.62481 [-2, -2, -2, -2, -3, 2, -2, -3, 1, -3] +denied -1.9 0.53852 [-2, -3, -1, -2, -2, -1, -2, -2, -2, -2] +denier -1.5 0.67082 [-1, -1, -1, -1, -2, -3, -2, -2, -1, -1] +deniers -1.1 1.13578 [-2, 0, -2, -1, -3, 1, 0, -1, -2, -1] +denies -1.8 0.6 [-1, -2, -1, -1, -2, -3, -2, -2, -2, -2] +denounce -1.4 0.91652 [-2, -1, -2, -1, 1, -2, -2, -1, -2, -2] +denounces -1.9 0.7 [-1, -3, -2, -3, -2, -1, -2, -2, -2, -1] +deny -1.4 0.4899 [-1, -1, -1, -1, -2, -1, -2, -2, -1, -2] +denying -1.4 0.4899 [-1, -1, -1, -2, -2, -2, -1, -2, -1, -1] +depress -2.2 0.74833 [-2, -1, -3, -3, -2, -2, -3, -3, -1, -2] +depressant -1.6 1.11355 [-3, -1, 0, -1, 0, -2, -3, -1, -3, -2] +depressants -1.6 0.91652 [-1, -1, -3, -3, -2, 0, -1, -2, -2, -1] +depressed -2.3 0.45826 [-2, -2, -2, -2, -2, -3, -3, -3, -2, -2] +depresses -2.2 0.6 [-2, -2, -2, -2, -3, -3, -1, -2, -3, -2] +depressible -1.7 0.78102 [-2, -1, 0, -3, -2, -2, -2, -1, -2, -2] +depressing -1.6 1.28062 [-2, -2, -2, 2, -3, -1, -2, -2, -2, -2] +depressingly -2.3 0.45826 [-2, -3, -2, -2, -2, -3, -3, -2, -2, -2] +depression -2.7 0.64031 [-3, -2, -2, -2, -2, -3, -4, -3, -3, -3] +depressions -2.2 0.6 [-2, -3, -3, -2, -2, -2, -3, -2, -2, -1] +depressive -1.6 1.11355 [-2, -1, -1, -2, -1, -2, -3, 1, -3, -2] +depressively -2.1 0.53852 [-3, -2, -3, -2, -2, -2, -2, -1, -2, -2] +depressives -1.5 0.5 [-2, -1, -1, -2, -1, -1, -1, -2, -2, -2] +depressor -1.8 1.16619 [-2, -4, -3, 0, 0, -2, -2, -2, -1, -2] +depressors -1.7 0.9 [-1, -1, -1, -2, -1, -2, -4, -2, -2, -1] +depressurization -0.3 0.78102 [1, 0, 0, -1, -1, 0, -2, 0, 0, 0] +depressurizations -0.4 0.91652 [0, 0, 0, 0, 1, -2, -1, 0, -2, 0] +depressurize -0.5 0.80623 [0, 0, -2, 0, -2, 0, 0, 0, 0, -1] +depressurized -0.3 0.64031 [0, 0, 0, 0, 0, 0, -1, 0, -2, 0] +depressurizes -0.3 0.64031 [0, 0, 0, 0, 0, 0, -1, 0, -2, 0] +depressurizing -0.7 1.34536 [2, 0, -1, -1, -2, -2, 1, -2, 0, -2] +deprival -2.1 0.7 [-1, -2, -2, -2, -1, -3, -3, -3, -2, -2] +deprivals -1.2 0.87178 [0, -1, -2, -1, 0, -2, -1, -1, -3, -1] +deprivation -1.8 1.4 [-3, -2, -3, -2, -1, -2, -2, 2, -2, -3] +deprivations -1.8 0.74833 [-1, -2, -3, -1, -2, -1, -2, -2, -3, -1] +deprive -2.1 0.7 [-3, -2, -1, -3, -1, -2, -2, -3, -2, -2] +deprived -2.1 0.7 [-2, -2, -2, -2, -2, -4, -2, -2, -1, -2] +depriver -1.6 0.91652 [-1, -2, -1, -2, -1, -4, -2, -1, -1, -1] +deprivers -1.4 0.66332 [-2, -1, -1, -3, -1, -1, -1, -1, -2, -1] +deprives -1.7 0.64031 [-2, -2, -1, -2, -1, -3, -2, -1, -1, -2] +depriving -2.0 0.0 [-2, -2, -2, -2, -2, -2, -2, -2, -2, -2] +derail -1.2 1.07703 [-1, 1, -1, -2, -1, -2, -1, -3, -2, 0] +derailed -1.4 0.66332 [-1, -2, -2, 0, -1, -1, -2, -1, -2, -2] +derails -1.3 0.78102 [-2, -3, -1, -2, -1, -1, 0, -1, -1, -1] +deride -1.1 1.22066 [-3, -2, -2, -1, -1, -1, 1, -2, -1, 1] +derided -0.8 0.87178 [-2, -1, -2, 0, 0, -1, -1, -1, 1, -1] +derides -1.0 1.0 [-1, -2, -2, 0, 0, 1, -1, -2, -1, -2] +deriding -1.5 0.80623 [-2, -2, 0, 0, -2, -1, -2, -2, -2, -2] +derision -1.2 1.249 [-1, -2, -2, -2, -1, -1, 1, 1, -3, -2] +desirable 1.3 0.45826 [2, 1, 1, 1, 1, 1, 1, 2, 2, 1] +desire 1.7 0.78102 [1, 1, 2, 1, 3, 3, 1, 2, 2, 1] +desired 1.1 1.04403 [1, 1, 0, 3, 1, 0, 1, 1, 3, 0] +desirous 1.3 0.64031 [1, 2, 1, 2, 2, 1, 2, 1, 0, 1] +despair -1.3 1.9 [2, -1, -3, -1, -3, 1, -3, 1, -3, -3] +despaired -2.7 0.45826 [-2, -2, -3, -3, -3, -3, -3, -2, -3, -3] +despairer -1.3 1.1 [-2, -2, -1, -3, -2, 1, -1, -1, 0, -2] +despairers -1.3 1.00499 [-2, -1, -1, 1, -2, -1, -2, -1, -1, -3] +despairing -2.3 0.64031 [-2, -1, -3, -2, -3, -2, -2, -2, -3, -3] +despairingly -2.2 0.74833 [-2, -2, -2, -2, -4, -2, -3, -1, -2, -2] +despairs -2.7 1.00499 [-3, -4, -1, -3, -4, -2, -1, -3, -3, -3] +desperate -1.3 1.34536 [-2, -1, -2, 1, -1, -2, -3, -3, -1, 1] +desperately -1.6 1.11355 [-3, -3, -2, -1, -2, -1, -2, -2, -1, 1] +desperateness -1.5 1.36015 [-1, -2, -2, -2, -3, -3, 1, -2, 1, -2] +desperation -2.0 1.0 [-2, -1, -1, -2, -3, -3, -1, -4, -1, -2] +desperations -2.2 1.66132 [-1, -4, -2, -4, -4, -1, -1, -2, 1, -4] +despise -1.4 1.35647 [-2, -3, -1, -2, -1, 1, -3, 1, -2, -2] +despised -1.7 1.48661 [-2, -1, -3, -2, -3, 1, -3, 1, -2, -3] +despisement -2.4 0.91652 [-3, -3, -2, -1, -3, -1, -4, -2, -2, -3] +despisements -2.5 1.0247 [-2, -2, -3, -2, 0, -3, -4, -3, -3, -3] +despiser -1.8 1.07703 [-2, -1, -3, 1, -2, -2, -3, -2, -2, -2] +despisers -1.6 1.35647 [-3, -3, -1, -3, -2, -1, -1, 1, 0, -3] +despises -2.0 1.26491 [-3, -1, -3, 1, -2, -1, -3, -2, -3, -3] +despising -2.7 0.9 [-4, -3, -3, -4, -1, -2, -3, -2, -2, -3] +despondent -2.1 0.53852 [-2, -2, -2, -3, -2, -2, -1, -3, -2, -2] +destroy -2.5 0.67082 [-2, -3, -3, -1, -3, -3, -3, -2, -2, -3] +destroyed -2.2 0.87178 [-1, -3, -3, -2, -1, -2, -1, -3, -3, -3] +destroyer -2.0 0.89443 [-2, -3, -3, -3, -1, -2, -2, -2, 0, -2] +destroyers -2.3 0.78102 [-1, -3, -3, -3, -2, -2, -3, -3, -1, -2] +destroying -2.6 0.91652 [-2, -4, -4, -2, -1, -3, -2, -3, -2, -3] +destroys -2.6 0.4899 [-3, -3, -3, -2, -2, -2, -3, -3, -2, -3] +destruct -2.4 0.4899 [-3, -3, -3, -2, -2, -2, -3, -2, -2, -2] +destructed -1.9 1.04403 [-4, -1, -2, -2, -2, -1, -3, -2, 0, -2] +destructibility -1.8 1.07703 [-1, -2, -1, -1, -2, -3, -2, 0, -4, -2] +destructible -1.5 1.11803 [-2, -2, -2, -1, 1, -1, -3, -1, -3, -1] +destructing -2.5 0.67082 [-2, -3, -2, -3, -2, -2, -2, -3, -2, -4] +destruction -2.7 0.9 [-4, -3, -4, -3, -2, -2, -3, -1, -2, -3] +destructionist -2.6 0.8 [-3, -4, -2, -2, -2, -3, -3, -1, -3, -3] +destructionists -2.1 0.53852 [-3, -1, -2, -2, -3, -2, -2, -2, -2, -2] +destructions -2.3 0.78102 [-3, -2, -2, -2, -1, -3, -4, -2, -2, -2] +destructive -3.0 0.63246 [-3, -4, -3, -2, -3, -3, -3, -2, -4, -3] +destructively -2.4 0.91652 [-2, -3, -1, -4, -2, -3, -3, -3, -1, -2] +destructiveness -2.4 0.91652 [-3, -3, -2, -4, -1, -2, -3, -2, -1, -3] +destructivity -2.2 1.53623 [2, -3, -3, -4, -3, -2, -2, -2, -2, -3] +destructs -2.4 0.91652 [-2, -1, -2, -4, -4, -2, -3, -2, -2, -2] +detached -0.5 1.20416 [-1, 2, -1, -1, -2, 0, 1, -2, -1, 0] +detain -1.8 0.9798 [-3, -1, -2, -2, -4, -2, -1, -1, -1, -1] +detained -1.7 0.9 [-1, -1, -1, -1, -1, -2, -2, -2, -2, -4] +detention -1.5 0.67082 [-1, -2, -1, -2, -1, -1, -3, -2, -1, -1] +determinable 0.9 0.7 [2, 1, 1, 1, 0, 1, 2, 0, 0, 1] +determinableness 0.2 1.07703 [0, 0, 0, 1, 0, 1, -1, 2, -2, 1] +determinably 0.9 0.83066 [2, 0, 1, 1, 0, 1, 2, 2, 0, 0] +determinacy 1.0 1.0 [0, 0, 0, 3, 1, 1, 2, 1, 0, 2] +determinant 0.2 0.6 [0, 1, -1, 0, 1, 1, 0, 0, 0, 0] +determinantal -0.3 1.41774 [0, 0, 0, -4, 0, -1, 0, 0, 2, 0] +determinate 0.8 0.87178 [2, 1, 0, 0, 0, 2, 2, 0, 1, 0] +determinately 1.2 0.6 [1, 2, 0, 1, 1, 1, 2, 1, 2, 1] +determinateness 1.1 0.9434 [1, 1, 1, 0, 0, 2, 3, 1, 0, 2] +determination 1.7 0.78102 [2, 3, 1, 1, 1, 2, 1, 1, 2, 3] +determinations 0.8 1.16619 [0, 3, 1, 0, 1, 3, 0, 0, 0, 0] +determinative 1.1 1.04403 [2, 0, 3, 2, 1, 1, 0, 0, 2, 0] +determinatives 0.9 1.3 [2, 0, -2, 1, 2, 2, 2, 0, 0, 2] +determinator 1.1 1.04403 [3, 0, 1, 0, 1, 0, 2, 2, 0, 2] +determined 1.4 1.35647 [-2, 1, 3, 2, 2, 2, 3, 1, 1, 1] +devastate -3.1 0.9434 [-4, -4, -1, -4, -4, -3, -3, -3, -2, -3] +devastated -3.0 0.89443 [-4, -3, -3, -4, -3, -1, -3, -4, -3, -2] +devastates -2.8 0.9798 [-4, -3, -2, -4, -2, -1, -3, -4, -3, -2] +devastating -3.3 0.9 [-4, -3, -4, -4, -1, -4, -3, -3, -3, -4] +devastatingly -2.4 1.28062 [-3, -4, -3, 0, -3, 0, -2, -3, -3, -3] +devastation -1.8 2.13542 [-1, -1, -3, -3, -4, -3, -4, 2, 2, -3] +devastations -1.9 1.92094 [-3, -3, -2, -2, 1, -1, 2, -4, -4, -3] +devastative -3.2 1.16619 [-4, -3, 0, -4, -4, -3, -3, -4, -3, -4] +devastator -2.8 0.74833 [-3, -3, -2, -2, -3, -2, -3, -4, -2, -4] +devastators -2.9 1.22066 [-3, -2, -3, -4, -4, -4, 0, -3, -2, -4] +devil -3.4 0.8 [-4, -3, -4, -4, -4, -4, -2, -3, -2, -4] +deviled -1.6 1.0198 [-1, -2, 0, -4, -1, -2, -2, -2, -1, -1] +devilfish -0.8 1.07703 [-2, -3, -1, 0, 0, 0, 0, -2, 0, 0] +devilfishes -0.6 1.0198 [-3, 0, -2, 0, 0, 0, 0, -1, 0, 0] +deviling -2.2 0.87178 [-1, -3, -1, -2, -3, -2, -2, -4, -2, -2] +devilish -2.1 1.04403 [-1, -2, -4, -1, -1, -2, -2, -4, -2, -2] +devilishly -1.6 0.8 [-2, -2, -3, -1, -2, -2, 0, -2, -1, -1] +devilishness -2.3 0.9 [-4, -1, -4, -2, -2, -2, -2, -2, -2, -2] +devilkin -2.4 0.91652 [-3, -1, -2, -3, -2, -4, -2, -3, -3, -1] +devilled -2.3 1.1 [-3, -1, -2, -3, 0, -4, -2, -3, -2, -3] +devilling -1.8 1.249 [-3, -1, -1, -2, -2, -3, -4, -2, 0, 0] +devilment -1.9 0.9434 [-2, -1, -2, -1, -3, -2, -2, -1, -1, -4] +devilments -1.1 0.7 [-2, -1, -2, -2, -1, 0, 0, -1, -1, -1] +devilries -1.6 1.35647 [-1, -1, -2, -4, -3, 0, -2, 0, 0, -3] +devilry -2.8 1.249 [-4, -3, 0, -2, -2, -2, -3, -4, -4, -4] +devils -2.7 0.9 [-3, -1, -3, -2, -2, -3, -4, -3, -2, -4] +deviltries -1.5 1.11803 [-1, -2, 1, -2, 0, -2, -2, -3, -2, -2] +deviltry -2.8 1.32665 [-4, -4, -3, -3, -3, -3, 1, -3, -3, -3] +devilwood -0.8 1.07703 [0, -1, -2, 0, 0, 0, 0, -3, -2, 0] +devilwoods -1.0 0.7746 [-2, 0, -2, -1, -1, 0, -1, -2, 0, -1] +devote 1.4 1.28062 [3, 0, 2, -1, 0, 3, 2, 2, 1, 2] +devoted 1.7 1.34536 [2, -1, 3, 2, 1, 0, 1, 3, 3, 3] +devotedly 1.6 1.35647 [1, 1, 2, 2, 3, 2, 2, -2, 2, 3] +devotedness 2.0 1.0 [0, 3, 2, 1, 3, 2, 2, 3, 1, 3] +devotee 1.6 1.11355 [1, 3, 0, 2, 1, 2, 1, 1, 4, 1] +devotees 0.5 1.0247 [0, 0, 3, 0, 0, 0, 2, 0, 0, 0] +devotement 1.5 1.36015 [2, -1, 3, 2, -1, 1, 2, 3, 2, 2] +devotements 1.1 1.04403 [0, 1, 0, 0, 0, 2, 2, 2, 3, 1] +devotes 1.6 0.91652 [2, 3, 0, 2, 2, 3, 1, 1, 1, 1] +devoting 2.1 0.7 [2, 2, 3, 1, 2, 3, 2, 3, 1, 2] +devotion 2.0 1.0 [2, 0, 1, 2, 4, 3, 2, 2, 2, 2] +devotional 1.2 1.16619 [0, 1, 0, 2, 2, 1, 0, 0, 3, 3] +devotionally 2.2 0.4 [2, 2, 2, 3, 2, 3, 2, 2, 2, 2] +devotionals 1.2 1.07703 [3, 1, 1, 0, -1, 2, 2, 2, 1, 1] +devotions 1.8 0.74833 [2, 3, 1, 2, 1, 3, 1, 2, 1, 2] +diamond 1.4 1.42829 [0, 0, 2, 0, 1, 3, 1, 3, 0, 4] +dick -2.3 1.18743 [-2, -3, -4, -2, 0, -4, -2, -1, -3, -2] +dickhead -3.1 0.53852 [-4, -3, -3, -3, -4, -2, -3, -3, -3, -3] +die -2.9 0.9434 [-4, -3, -1, -2, -4, -3, -3, -3, -2, -4] +died -2.6 1.28062 [-3, -1, -3, -4, -2, -4, -3, -4, -2, 0] +difficult -1.5 0.5 [-2, -2, -1, -1, -2, -1, -1, -2, -1, -2] +difficulties -1.2 0.4 [-1, -2, -1, -1, -1, -2, -1, -1, -1, -1] +difficultly -1.7 0.45826 [-1, -2, -1, -2, -2, -1, -2, -2, -2, -2] +difficulty -1.4 0.66332 [-2, -2, -2, -2, 0, -1, -1, -2, -1, -1] +diffident -1.0 0.44721 [-1, -1, -1, -1, -1, 0, -2, -1, -1, -1] +dignified 2.2 0.6 [1, 2, 2, 2, 3, 3, 3, 2, 2, 2] +dignifies 2.0 0.7746 [1, 3, 2, 2, 3, 3, 2, 2, 1, 1] +dignify 1.8 0.74833 [1, 2, 2, 1, 3, 3, 1, 2, 2, 1] +dignifying 2.1 1.04403 [1, 1, 1, 3, 1, 4, 2, 3, 2, 3] +dignitaries 0.6 0.91652 [0, 0, 1, 0, 0, 0, 3, 0, 1, 1] +dignitary 1.9 1.3 [0, 3, 4, 2, 3, 1, 1, 3, 0, 2] +dignities 1.4 0.66332 [1, 2, 1, 1, 3, 2, 1, 1, 1, 1] +dignity 1.7 0.9 [0, 3, 2, 1, 2, 1, 2, 3, 1, 2] +dilemma -0.7 1.48661 [2, -1, -2, -2, -1, -1, 2, 0, -2, -2] +dipshit -2.1 0.7 [-1, -2, -2, -3, -2, -3, -3, -2, -2, -1] +dire -2.0 1.26491 [-2, -3, -3, -2, -3, -1, -1, 1, -3, -3] +direful -3.1 0.83066 [-3, -3, -3, -3, -4, -1, -4, -3, -4, -3] +dirt -1.4 0.91652 [-1, -1, -1, 0, -3, -1, -1, -2, -3, -1] +dirtier -1.4 0.4899 [-2, -1, -1, -2, -1, -2, -1, -1, -2, -1] +dirtiest -2.4 1.0198 [-4, -3, -2, -1, -2, -3, -1, -2, -4, -2] +dirty -1.9 0.83066 [-2, -1, -1, -1, -2, -2, -1, -3, -3, -3] +disabling -2.1 0.53852 [-2, -1, -3, -3, -2, -2, -2, -2, -2, -2] +disadvantage -1.8 0.4 [-2, -2, -1, -2, -2, -1, -2, -2, -2, -2] +disadvantaged -1.7 0.64031 [-2, -2, -3, -1, -2, -2, -2, -1, -1, -1] +disadvantageous -1.8 0.74833 [-1, -2, -2, -1, -3, -1, -1, -2, -3, -2] +disadvantageously -2.1 0.83066 [-2, -4, -1, -2, -1, -2, -2, -2, -3, -2] +disadvantageousness -1.6 0.66332 [-1, -1, -3, -2, -1, -1, -2, -1, -2, -2] +disadvantages -1.7 0.64031 [-2, -2, -3, -1, -2, -2, -2, -1, -1, -1] +disagree -1.6 0.4899 [-1, -2, -1, -1, -2, -2, -2, -2, -1, -2] +disagreeable -1.7 0.64031 [-1, -2, -1, -1, -1, -2, -2, -2, -3, -2] +disagreeableness -1.7 0.64031 [-1, -1, -2, -2, -1, -2, -3, -1, -2, -2] +disagreeablenesses -1.9 0.9434 [-2, 0, -3, -1, -2, -3, -2, -1, -3, -2] +disagreeably -1.5 0.67082 [-3, -2, -1, -1, -1, -2, -1, -2, -1, -1] +disagreed -1.3 0.64031 [-1, -2, -1, -1, -2, 0, -1, -2, -1, -2] +disagreeing -1.4 0.8 [-1, 0, -1, -2, -2, -1, -3, -1, -1, -2] +disagreement -1.5 0.67082 [-2, -1, -1, -1, -1, -1, -1, -3, -2, -2] +disagreements -1.8 0.6 [-2, -3, -1, -2, -2, -1, -2, -2, -1, -2] +disagrees -1.3 0.45826 [-1, -2, -1, -1, -1, -1, -1, -2, -1, -2] +disappear -0.9 0.7 [-2, -1, 0, 0, -2, -1, -1, -1, 0, -1] +disappeared -0.9 0.7 [-2, 0, -1, -1, 0, 0, -2, -1, -1, -1] +disappears -1.4 0.8 [-2, -2, 0, 0, -2, -1, -2, -1, -2, -2] +disappoint -1.7 0.64031 [-1, -1, -1, -3, -2, -2, -2, -1, -2, -2] +disappointed -2.1 0.83066 [-1, -3, -2, -2, -3, -1, -1, -2, -3, -3] +disappointedly -1.7 0.78102 [-3, -1, -3, -1, -2, -1, -1, -2, -2, -1] +disappointing -2.2 0.6 [-1, -2, -2, -3, -3, -2, -2, -2, -3, -2] +disappointingly -1.9 0.7 [-2, -1, -1, -3, -2, -3, -2, -2, -1, -2] +disappointment -2.3 1.00499 [-3, -1, -4, -1, -3, -1, -3, -2, -2, -3] +disappointments -2.0 1.09545 [-1, -2, -4, -3, -2, -2, -3, 0, -2, -1] +disappoints -1.6 0.4899 [-2, -1, -1, -1, -2, -1, -2, -2, -2, -2] +disaster -3.1 0.83066 [-2, -4, -4, -3, -3, -2, -4, -3, -2, -4] +disasters -2.6 0.8 [-2, -2, -3, -1, -3, -3, -2, -4, -3, -3] +disastrous -2.9 0.53852 [-2, -2, -3, -3, -3, -3, -4, -3, -3, -3] +disbelieve -1.2 0.87178 [-1, -2, -1, -2, -1, 0, 0, -1, -3, -1] +discard -1.0 0.44721 [-1, -1, -1, -1, 0, -1, -1, -1, -2, -1] +discarded -1.4 0.91652 [-1, -1, -1, -1, 0, -1, -2, -3, -3, -1] +discarding -0.7 0.45826 [-1, 0, -1, -1, -1, 0, -1, 0, -1, -1] +discards -1.0 0.63246 [0, -1, -1, -1, -2, 0, -2, -1, -1, -1] +discomfort -1.8 0.6 [-2, -2, -2, -1, -1, -3, -2, -2, -1, -2] +discomfortable -1.6 0.8 [-1, -1, -1, -2, -3, -1, -2, -1, -3, -1] +discomforted -1.6 0.8 [-1, -1, -1, -2, -3, -3, -1, -1, -1, -2] +discomforting -1.6 1.11355 [-1, -2, -1, -1, -2, 1, -3, -2, -3, -2] +discomforts -1.3 0.9 [-2, -1, -2, -1, -1, -2, -2, -1, 1, -2] +disconsolate -2.3 0.78102 [-1, -2, -2, -3, -2, -2, -2, -4, -3, -2] +disconsolation -1.7 0.45826 [-2, -2, -1, -2, -1, -1, -2, -2, -2, -2] +discontented -1.8 0.9798 [-1, -3, -1, -2, -4, -2, -1, -2, -1, -1] +discord -1.7 0.64031 [-3, -2, -2, -2, -2, -1, -1, -1, -1, -2] +discounted 0.2 1.249 [-1, 0, 3, -1, 0, 1, 1, 1, -1, -1] +discourage -1.8 0.6 [-2, -2, -1, -2, -1, -1, -2, -2, -3, -2] +discourageable -1.2 0.9798 [-1, -2, -1, 1, -1, -1, -1, -2, -3, -1] +discouraged -1.7 0.45826 [-2, -1, -2, -2, -2, -2, -1, -1, -2, -2] +discouragement -2.0 0.89443 [-4, -1, -2, -2, -1, -1, -3, -2, -2, -2] +discouragements -1.8 0.6 [-2, -2, -2, -1, -1, -3, -2, -1, -2, -2] +discourager -1.7 0.78102 [-2, -1, -3, -2, -1, -3, -1, -2, -1, -1] +discouragers -1.9 0.53852 [-2, -2, -2, -2, -1, -1, -3, -2, -2, -2] +discourages -1.9 0.53852 [-2, -1, -2, -2, -2, -2, -1, -3, -2, -2] +discouraging -1.9 0.7 [-2, -2, -2, -3, -1, -1, -2, -1, -2, -3] +discouragingly -1.8 0.87178 [-2, -1, -3, -1, -1, -3, -2, -1, -3, -1] +discredited -1.9 0.53852 [-2, -2, -2, -2, -1, -3, -1, -2, -2, -2] +disdain -2.1 0.3 [-3, -2, -2, -2, -2, -2, -2, -2, -2, -2] +disgrace -2.2 0.74833 [-2, -4, -1, -2, -2, -2, -2, -3, -2, -2] +disgraced -2.0 0.44721 [-3, -2, -2, -2, -1, -2, -2, -2, -2, -2] +disguise -1.0 1.09545 [-2, -1, 0, 0, 0, 0, -3, -2, -2, 0] +disguised -1.1 1.04403 [-3, 0, 0, -1, -1, 0, -3, -1, -1, -1] +disguises -1.0 0.63246 [-2, 0, 0, -1, -1, -1, -2, -1, -1, -1] +disguising -1.3 0.78102 [0, -2, -1, -1, -1, -2, -1, -1, -3, -1] +disgust -2.9 0.7 [-3, -3, -4, -2, -3, -3, -4, -2, -3, -2] +disgusted -2.4 0.91652 [-4, -3, -3, -1, -3, -1, -2, -2, -2, -3] +disgustedly -3.0 0.89443 [-2, -3, -4, -4, -2, -4, -4, -2, -3, -2] +disgustful -2.6 0.4899 [-3, -3, -2, -2, -2, -2, -3, -3, -3, -3] +disgusting -2.4 1.11355 [-3, -2, -3, -4, -1, -3, -1, -4, -1, -2] +disgustingly -2.9 0.7 [-3, -3, -4, -3, -3, -2, -2, -4, -2, -3] +disgusts -2.1 0.53852 [-2, -2, -3, -2, -2, -2, -2, -3, -1, -2] +dishearten -2.0 0.63246 [-3, -1, -2, -3, -2, -2, -1, -2, -2, -2] +disheartened -2.2 0.74833 [-2, -2, -2, -1, -2, -2, -4, -3, -2, -2] +disheartening -1.8 1.32665 [-2, -2, -2, -3, -2, 2, -2, -2, -3, -2] +dishearteningly -2.0 0.63246 [-2, -3, -2, -1, -2, -2, -2, -3, -2, -1] +disheartenment -2.3 0.45826 [-3, -2, -3, -2, -2, -2, -2, -3, -2, -2] +disheartenments -2.2 0.87178 [-2, -3, -3, -3, -3, -1, -1, -1, -2, -3] +disheartens -2.2 0.4 [-3, -2, -2, -2, -3, -2, -2, -2, -2, -2] +dishonest -2.7 0.9 [-3, -2, -1, -4, -3, -2, -4, -3, -3, -2] +disillusion -1.0 1.18322 [-2, 0, -2, -1, -2, 1, -2, -1, 1, -2] +disillusioned -1.9 0.7 [-2, -2, -3, -2, -3, -1, -1, -1, -2, -2] +disillusioning -1.3 1.00499 [-2, -2, 1, -2, 0, -2, -2, -1, -1, -2] +disillusionment -1.7 0.78102 [-1, -3, -2, -3, -1, -2, -2, -1, -1, -1] +disillusionments -1.5 1.0247 [-2, 1, -3, -2, -1, -1, -2, -1, -2, -2] +disillusions -1.6 0.4899 [-2, -2, -2, -1, -1, -1, -2, -2, -1, -2] +disinclined -1.1 0.53852 [0, -1, -1, -1, -1, -1, -1, -2, -2, -1] +disjointed -1.3 0.45826 [-1, -1, -2, -1, -1, -2, -1, -2, -1, -1] +dislike -1.6 0.4899 [-2, -1, -1, -2, -2, -1, -2, -1, -2, -2] +disliked -1.7 0.64031 [-2, -3, -2, -1, -1, -1, -2, -2, -1, -2] +dislikes -1.7 0.78102 [-2, -2, -1, -1, -2, -1, -3, -3, -1, -1] +disliking -1.3 0.45826 [-1, -1, -2, -2, -2, -1, -1, -1, -1, -1] +dismal -3.0 1.0 [-2, -1, -4, -4, -3, -2, -3, -4, -4, -3] +dismay -1.8 0.87178 [-3, -1, -1, -3, -1, -1, -3, -1, -2, -2] +dismayed -1.9 0.9434 [-1, -2, -1, -3, -4, -1, -2, -2, -1, -2] +dismaying -2.2 0.9798 [-2, -3, -2, -3, -3, 0, -2, -1, -3, -3] +dismayingly -1.9 0.83066 [-2, -3, -2, -3, -2, -1, -2, -2, 0, -2] +dismays -1.8 1.07703 [-1, -1, -4, -3, -2, -1, -2, 0, -2, -2] +disorder -1.7 0.64031 [-2, -1, -1, -2, -2, -1, -3, -1, -2, -2] +disorganized -1.2 0.4 [-1, -1, -1, -1, -1, -2, -1, -2, -1, -1] +disoriented -1.5 0.67082 [-2, -2, -1, 0, -1, -2, -2, -1, -2, -2] +disparage -2.0 0.44721 [-2, -2, -2, -1, -2, -2, -2, -3, -2, -2] +disparaged -1.4 0.8 [-1, -2, -2, -3, -1, -1, -1, -2, 0, -1] +disparages -1.6 0.8 [-1, -2, -3, -2, -1, -1, -2, -2, 0, -2] +disparaging -2.2 0.6 [-3, -1, -2, -2, -2, -3, -3, -2, -2, -2] +displeased -1.9 0.7 [-3, -2, -1, -1, -3, -2, -2, -1, -2, -2] +dispute -1.7 0.78102 [-1, -3, -1, -1, -2, -1, -2, -2, -3, -1] +disputed -1.4 0.66332 [-2, -2, -2, -2, 0, -1, -1, -1, -1, -2] +disputes -1.1 1.64012 [-2, -2, -2, 2, -3, -1, -2, 2, -1, -2] +disputing -1.7 0.64031 [-2, -2, -2, -2, -1, -1, -3, -1, -1, -2] +disqualified -1.8 0.6 [-1, -2, -1, -2, -1, -2, -2, -3, -2, -2] +disquiet -1.3 0.9 [-1, -2, -2, -1, -1, -1, 1, -2, -2, -2] +disregard -1.1 0.53852 [-1, -1, -2, -1, -1, -2, -1, -1, 0, -1] +disregarded -1.6 0.4899 [-1, -1, -2, -2, -2, -2, -1, -2, -1, -2] +disregarding -0.9 0.53852 [-1, 0, -1, 0, -2, -1, -1, -1, -1, -1] +disregards -1.4 0.4899 [-1, -1, -2, -1, -2, -2, -2, -1, -1, -1] +disrespect -1.8 0.6 [-2, -2, -2, -1, -2, -2, -1, -3, -1, -2] +disrespected -2.0 0.63246 [-2, -2, -2, -2, -2, -3, -3, -1, -1, -2] +disruption -1.5 0.67082 [-1, -1, -1, -2, -1, -3, -2, -2, -1, -1] +disruptions -1.4 0.4899 [-1, -2, -1, -1, -1, -2, -2, -2, -1, -1] +disruptive -1.3 1.00499 [-4, 0, -1, -1, -1, -1, -1, -1, -2, -1] +dissatisfaction -2.2 0.74833 [-4, -2, -2, -2, -1, -3, -2, -2, -2, -2] +dissatisfactions -1.9 0.83066 [-1, -3, -3, -1, -2, -1, -2, -2, -1, -3] +dissatisfactory -2.0 0.63246 [-2, -2, -3, -1, -2, -3, -2, -2, -1, -2] +dissatisfied -1.6 0.66332 [-2, -3, -1, -2, -1, -1, -2, -2, -1, -1] +dissatisfies -1.8 0.74833 [-3, -3, -1, -1, -2, -1, -2, -2, -2, -1] +dissatisfy -2.2 0.6 [-2, -3, -2, -2, -2, -2, -3, -3, -1, -2] +dissatisfying -2.4 0.91652 [-3, -1, -4, -3, -2, -1, -2, -2, -3, -3] +distort -1.3 0.45826 [-2, -1, -1, -1, -2, -1, -1, -1, -1, -2] +distorted -1.7 0.78102 [-3, -1, -3, -1, -2, -1, -2, -2, -1, -1] +distorting -1.1 0.53852 [0, -1, -1, -1, -2, -1, -1, -1, -2, -1] +distorts -1.4 0.4899 [-2, -1, -1, -1, -2, -2, -2, -1, -1, -1] +distract -1.2 0.6 [-1, -1, 0, -2, -1, -1, -1, -2, -1, -2] +distractable -1.3 1.00499 [-2, 0, 1, -2, -2, -1, -1, -2, -2, -2] +distracted -1.4 0.66332 [-1, -3, -1, -2, -2, -1, -1, -1, -1, -1] +distractedly -0.9 0.7 [-1, -1, 0, -2, -1, 0, -1, 0, -1, -2] +distractibility -1.3 1.1 [-1, -1, -3, -1, 0, -3, -2, 0, -2, 0] +distractible -1.5 0.92195 [-1, -2, -1, -1, -4, -1, -1, -1, -2, -1] +distracting -1.2 0.4 [-2, -1, -1, -1, -1, -1, -2, -1, -1, -1] +distractingly -1.4 1.0198 [-4, 0, -1, -1, -1, -2, -1, -1, -2, -1] +distraction -1.6 0.66332 [-1, -2, -2, -1, -1, -3, -1, -1, -2, -2] +distractions -1.0 0.0 [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1] +distractive -1.6 0.4899 [-2, -2, -1, -1, -1, -1, -2, -2, -2, -2] +distracts -1.3 0.45826 [-1, -1, -2, -1, -1, -2, -1, -2, -1, -1] +distraught -2.6 0.8 [-2, -3, -2, -3, -4, -2, -3, -3, -1, -3] +distress -2.4 0.8 [-1, -2, -2, -3, -3, -4, -3, -2, -2, -2] +distressed -1.8 0.6 [-2, -2, -2, -3, -2, -2, -1, -1, -2, -1] +distresses -1.6 0.66332 [-2, -1, -1, -2, -2, -2, -1, -1, -3, -1] +distressful -2.2 0.6 [-1, -3, -3, -2, -2, -3, -2, -2, -2, -2] +distressfully -1.7 1.1 [-1, -3, -2, 1, -3, -1, -2, -2, -2, -2] +distressfulness -2.4 0.66332 [-2, -3, -2, -3, -3, -3, -2, -1, -3, -2] +distressing -1.7 1.18743 [-3, -3, -1, -1, -2, -2, -3, -2, 1, -1] +distressingly -2.2 0.74833 [-3, -1, -2, -3, -3, -3, -2, -2, -2, -1] +distrust -1.8 0.87178 [-1, -2, -2, -2, -1, -1, -2, -4, -1, -2] +distrusted -2.4 0.66332 [-1, -3, -3, -3, -2, -2, -3, -2, -2, -3] +distrustful -2.1 0.83066 [-1, -3, -2, -2, -3, -1, -1, -3, -2, -3] +distrustfully -1.8 0.6 [-2, -1, -1, -2, -1, -2, -3, -2, -2, -2] +distrustfulness -1.6 0.66332 [-2, -1, -2, -1, -2, -1, -1, -3, -1, -2] +distrusting -2.1 0.83066 [-1, -2, -2, -2, -3, -3, -1, -3, -1, -3] +distrusts -1.3 0.45826 [-1, -1, -2, -1, -2, -1, -2, -1, -1, -1] +disturb -1.7 0.45826 [-2, -1, -1, -2, -2, -2, -1, -2, -2, -2] +disturbance -1.6 0.8 [-1, -2, -1, -2, -2, -3, -1, -2, 0, -2] +disturbances -1.4 0.66332 [-1, -1, -1, -2, -1, -1, -1, -1, -3, -2] +disturbed -1.6 0.4899 [-2, -2, -1, -1, -2, -2, -1, -2, -1, -2] +disturber -1.4 0.4899 [-2, -1, -1, -2, -2, -1, -1, -2, -1, -1] +disturbers -2.1 0.53852 [-2, -2, -2, -2, -2, -3, -3, -2, -1, -2] +disturbing -2.3 0.45826 [-2, -2, -3, -3, -2, -2, -3, -2, -2, -2] +disturbingly -2.3 0.78102 [-2, -2, -1, -3, -4, -3, -2, -2, -2, -2] +disturbs -1.9 0.53852 [-2, -2, -1, -2, -3, -2, -1, -2, -2, -2] +dithering -0.5 0.92195 [0, 0, 0, 0, 1, -1, -2, -2, -1, 0] +divination 1.7 1.1 [2, 3, 0, 1, 2, 1, 3, 3, 2, 0] +divinations 1.1 1.04403 [1, 0, 1, 2, 2, 0, 3, 2, 0, 0] +divinatory 1.6 1.42829 [4, 1, 0, 0, 1, 3, 3, 0, 1, 3] +divine 2.6 0.8 [3, 3, 3, 2, 1, 2, 3, 4, 2, 3] +divined 0.8 1.16619 [1, 0, 3, 0, 0, 1, 0, 3, 0, 0] +divinely 2.9 0.7 [3, 2, 3, 3, 2, 4, 3, 2, 4, 3] +diviner 0.3 0.9 [0, 0, 3, 0, 0, 0, 0, 0, 0, 0] +diviners 1.2 1.16619 [0, 1, 0, 2, 2, 0, 3, 1, 3, 0] +divines 0.8 1.249 [0, 0, 3, 0, 0, 0, 3, 2, 0, 0] +divinest 2.7 0.78102 [3, 4, 2, 4, 2, 2, 2, 3, 2, 3] +diving 0.3 0.45826 [1, 0, 0, 0, 0, 1, 0, 1, 0, 0] +divining 0.9 1.37477 [0, -1, 2, 0, 1, 0, 2, 4, 1, 0] +divinise 0.5 1.36015 [0, 2, 0, 0, 0, 0, 0, -2, 2, 3] +divinities 1.8 1.46969 [1, 3, 3, 4, 0, 0, 1, 0, 3, 3] +divinity 2.7 1.00499 [4, 4, 2, 3, 3, 1, 2, 4, 2, 2] +divinize 2.3 1.00499 [4, 2, 2, 3, 4, 1, 1, 2, 2, 2] +dizzy -0.9 0.3 [-1, -1, -1, -1, -1, -1, -1, -1, 0, -1] +dodging -0.4 0.8 [-1, -1, 0, 1, 0, -1, 0, 0, -2, 0] +dodgy -0.9 0.9434 [-1, -1, -1, -3, -1, 1, -1, -1, -1, 0] +dolorous -2.2 0.6 [-2, -2, -2, -3, -3, -3, -2, -2, -1, -2] +dominance 0.8 0.87178 [2, 0, 0, 2, 1, 0, 0, 1, 2, 0] +dominances -0.1 0.9434 [-1, 0, 1, 1, 0, -1, 0, 1, 0, -2] +dominantly 0.2 1.16619 [-2, 0, 0, -1, 2, 1, 2, 0, 0, 0] +dominants 0.2 1.16619 [0, 2, -1, 0, -1, -1, -1, 1, 1, 2] +dominate -0.5 0.92195 [0, -1, 1, -1, 1, -1, -2, 0, -1, -1] +dominates 0.2 1.249 [1, 0, -2, -1, 1, -1, 2, 0, 0, 2] +dominating -1.2 1.98997 [-4, -1, -4, -1, -3, -1, -1, 2, 2, -1] +domination -0.2 0.9798 [0, 1, 0, -1, -1, -1, 0, 2, -1, -1] +dominations -0.3 0.45826 [0, 0, 0, 0, 0, -1, 0, -1, -1, 0] +dominative -0.7 1.18743 [-1, -1, -2, -2, -1, -1, -1, 2, 1, -1] +dominators -0.4 1.8 [-1, -2, -2, -2, 0, 2, 2, -3, 2, 0] +dominatrices -0.2 1.6 [-3, 0, 2, 0, -2, -2, 0, 1, 2, 0] +dominatrix -0.5 0.92195 [0, 0, -1, 0, 0, 1, 0, -1, -2, -2] +dominatrixes 0.6 1.35647 [0, 4, 0, -1, 0, 2, 1, 0, 0, 0] +doom -1.7 1.26886 [-2, -1, -1, -4, -2, -2, 1, -3, -1, -2] +doomed -3.2 0.74833 [-3, -3, -4, -4, -4, -2, -4, -3, -3, -2] +doomful -2.1 0.7 [-3, -2, -3, -1, -2, -3, -2, -1, -2, -2] +dooming -2.8 0.4 [-2, -3, -2, -3, -3, -3, -3, -3, -3, -3] +dooms -1.1 1.57797 [1, -3, -1, -3, -2, -1, -3, 1, 1, -1] +doomsayer -0.7 1.41774 [2, -1, -2, -1, 1, -2, -2, -1, 1, -2] +doomsayers -1.7 0.78102 [-1, -2, -3, 0, -2, -2, -2, -1, -2, -2] +doomsaying -1.5 1.28452 [-3, -2, -2, 0, 1, 0, -3, -2, -2, -2] +doomsayings -1.5 0.92195 [-2, -1, -1, -2, -2, 0, 0, -2, -3, -2] +doomsday -2.8 1.249 [-3, -1, -3, -4, -3, -4, 0, -4, -3, -3] +doomsdayer -2.2 1.249 [-3, -1, -4, -3, -4, -3, -1, -1, -1, -1] +doomsdays -2.4 1.85472 [-3, -2, -4, 1, -4, -3, -2, -4, 1, -4] +doomster -2.2 0.87178 [-2, -1, -2, -3, -1, -3, -1, -3, -3, -3] +doomsters -1.6 0.8 [-3, -1, -2, -2, 0, -2, -2, -1, -1, -2] +doomy -1.1 1.37477 [2, -2, -1, -2, -2, -2, -2, 1, -1, -2] +dork -1.4 0.66332 [-1, -2, -2, -1, -1, -1, -3, -1, -1, -1] +dorkier -1.1 0.53852 [-1, -1, -1, -1, -2, 0, -1, -2, -1, -1] +dorkiest -1.2 0.74833 [-1, -2, -1, -3, -1, 0, -1, -1, -1, -1] +dorks -0.5 0.67082 [-1, 1, -1, -1, -1, -1, 0, 0, -1, 0] +dorky -1.1 1.04403 [-1, 0, -1, 1, -1, -1, -3, -2, -2, -1] +doubt -1.5 0.5 [-1, -1, -2, -2, -1, -1, -2, -1, -2, -2] +doubtable -1.5 0.5 [-1, -1, -2, -1, -2, -1, -2, -2, -1, -2] +doubted -1.1 1.22066 [-1, -2, -2, 2, -1, -1, -2, -2, -2, 0] +doubter -1.6 0.91652 [-1, -3, -2, -1, -1, -1, -2, -2, -3, 0] +doubters -1.3 0.45826 [-1, -1, -1, -1, -1, -2, -1, -2, -2, -1] +doubtful -1.4 0.4899 [-1, -1, -2, -1, -2, -2, -1, -1, -2, -1] +doubtfully -1.2 0.4 [-1, -1, -1, -1, -1, -1, -2, -1, -1, -2] +doubtfulness -1.2 0.4 [-2, -1, -1, -1, -1, -1, -1, -1, -1, -2] +doubting -1.4 0.4899 [-1, -1, -1, -2, -2, -1, -1, -1, -2, -2] +doubtingly -1.4 0.4899 [-2, -2, -1, -1, -1, -1, -1, -2, -2, -1] +doubtless 0.9 1.51327 [2, 2, 1, 2, -2, 2, -2, 1, 1, 2] +doubtlessly 1.2 0.9798 [2, 1, 1, 2, 0, -1, 2, 1, 2, 2] +doubtlessness 0.8 0.9798 [2, 1, 2, 0, 0, 0, 2, -1, 1, 1] +doubts -1.2 0.6 [-2, -1, -1, -1, -2, -2, -1, 0, -1, -1] +douche -1.5 1.68819 [-3, -2, -3, 1, 1, -2, -3, -2, 1, -3] +douchebag -3.0 0.44721 [-3, -3, -3, -3, -3, -3, -2, -3, -4, -3] +downcast -1.8 0.74833 [-1, -1, -1, -2, -2, -2, -1, -3, -3, -2] +downhearted -2.3 0.78102 [-1, -2, -2, -4, -2, -2, -2, -3, -3, -2] +downside -1.0 0.7746 [-1, -1, -1, -1, -1, -1, -2, 1, -2, -1] +drag -0.9 0.83066 [-1, -2, -1, -1, -2, -1, -1, 1, 0, -1] +dragged -0.2 1.07703 [-2, -1, 0, 0, -1, 0, 0, 1, 2, -1] +drags -0.7 0.64031 [0, -1, 0, -1, -1, -2, -1, 0, 0, -1] +drained -1.5 0.5 [-1, -1, -2, -2, -1, -2, -1, -2, -1, -2] +dread -2.0 0.63246 [-2, -3, -2, -2, -2, -2, -3, -1, -1, -2] +dreaded -2.7 0.64031 [-2, -3, -3, -3, -4, -3, -2, -2, -2, -3] +dreadful -1.9 1.86815 [-4, -2, -2, 2, -1, -4, -1, 0, -3, -4] +dreadfully -2.7 1.26886 [-4, -4, -3, -4, -3, -1, -2, -1, -1, -4] +dreadfulness -3.2 0.87178 [-3, -4, -2, -3, -4, -4, -2, -2, -4, -4] +dreadfuls -2.4 1.2 [-4, -3, -3, -2, -3, -2, -4, 0, -1, -2] +dreading -2.4 0.8 [-3, -2, -2, -2, -2, -2, -3, -4, -3, -1] +dreadlock -0.4 0.66332 [0, 0, 0, 0, 0, -1, -2, 0, -1, 0] +dreadlocks -0.2 0.9798 [0, 0, 0, 0, 0, -1, -2, 2, 0, -1] +dreadnought -0.6 1.35647 [-2, 0, 0, 0, -3, 0, -1, -2, 0, 2] +dreadnoughts -0.4 0.66332 [0, -1, -1, 0, 0, 0, 0, 0, -2, 0] +dreads -1.4 1.42829 [0, -1, 0, 0, -3, -3, 0, -4, -2, -1] +dream 1.0 1.18322 [0, 1, 2, 0, 0, 3, 0, 3, 1, 0] +dreams 1.7 1.1 [2, 2, 3, 0, 1, 1, 1, 4, 1, 2] +dreary -1.4 0.4899 [-1, -1, -2, -1, -1, -2, -2, -1, -2, -1] +droopy -0.8 0.74833 [-1, -1, 0, -1, -2, 0, 0, -1, 0, -2] +drop -1.1 0.53852 [0, -1, -1, -1, -2, -1, -2, -1, -1, -1] +drown -2.7 1.00499 [-4, -2, -2, -4, -4, -2, -3, -1, -3, -2] +drowned -2.9 0.7 [-2, -3, -3, -3, -2, -4, -4, -2, -3, -3] +drowns -2.2 1.6 [-3, -3, -3, -4, -2, -3, -1, -2, 2, -3] +drunk -1.4 0.91652 [-3, -1, 0, -2, 0, -1, -1, -2, -2, -2] +dubious -1.5 0.5 [-1, -2, -2, -1, -1, -2, -1, -1, -2, -2] +dud -1.0 0.89443 [-1, -1, -1, 0, -3, 0, -1, 0, -1, -2] +dull -1.7 0.45826 [-2, -2, -2, -1, -2, -2, -2, -1, -1, -2] +dullard -1.6 0.66332 [-2, -1, -1, -2, -2, -1, -1, -2, -1, -3] +dullards -1.8 0.87178 [-1, -3, -1, -1, -3, -1, -1, -2, -3, -2] +dulled -1.5 0.5 [-2, -1, -2, -1, -1, -1, -2, -2, -1, -2] +duller -1.7 0.64031 [-3, -1, -2, -2, -2, -1, -2, -1, -1, -2] +dullest -1.7 1.00499 [-1, -4, -1, -1, -2, -3, -2, -1, -1, -1] +dulling -1.1 0.7 [-1, -2, 0, -1, -2, -2, 0, -1, -1, -1] +dullish -1.1 0.53852 [-2, -1, -1, -1, -1, -1, -1, -1, 0, -2] +dullness -1.4 0.8 [-1, -1, -1, -1, -1, -1, -3, -1, -3, -1] +dullnesses -1.9 1.04403 [-3, -2, -1, -1, -3, -1, -4, -1, -2, -1] +dulls -1.0 0.44721 [-1, -1, -1, -1, -1, -1, 0, -1, -1, -2] +dullsville -2.4 0.8 [-2, -2, -4, -3, -2, -2, -3, -2, -3, -1] +dully -1.1 0.3 [-1, -1, -1, -1, -1, -1, -1, -1, -1, -2] +dumb -2.3 0.9 [-4, -2, -2, -2, -2, -2, -4, -2, -2, -1] +dumbass -2.6 1.0198 [-3, -3, -4, -4, -1, -2, -3, -3, -1, -2] +dumbbell -0.8 0.9798 [0, -1, -3, -2, 0, -1, 0, 0, -1, 0] +dumbbells -0.2 0.4 [0, -1, 0, 0, 0, 0, 0, -1, 0, 0] +dumbcane -0.3 0.45826 [0, 0, 0, 0, 0, -1, -1, 0, -1, 0] +dumbcanes -0.6 1.2 [0, 0, -1, -1, -1, 2, 0, -1, -3, -1] +dumbed -1.4 0.4899 [-2, -1, -2, -2, -2, -1, -1, -1, -1, -1] +dumber -1.5 0.5 [-2, -1, -2, -1, -2, -1, -1, -2, -2, -1] +dumbest -2.3 1.00499 [-3, -1, -3, -4, -2, -1, -2, -3, -1, -3] +dumbfound -0.1 1.92094 [3, -2, -1, -1, 1, 1, -3, 3, -1, -1] +dumbfounded -1.6 1.11355 [-2, 0, -2, 0, -2, -1, -4, -1, -2, -2] +dumbfounder -1.0 0.89443 [-2, 0, 0, 0, -2, -1, -2, 0, -2, -1] +dumbfounders -1.0 0.89443 [-1, -3, -1, 0, -2, 0, -1, 0, -1, -1] +dumbfounding -0.8 0.74833 [-1, -2, 0, -1, -1, 0, 0, -1, 0, -2] +dumbfounds -0.3 1.26886 [0, -1, -1, 0, 0, -1, -1, -2, 0, 3] +dumbhead -2.6 0.66332 [-3, -4, -3, -2, -2, -3, -3, -2, -2, -2] +dumbheads -1.9 0.83066 [-2, -2, -2, -1, -2, -1, -2, -4, -1, -2] +dumbing -0.5 1.0247 [-1, 2, -1, 0, -1, -2, -1, 0, 0, -1] +dumbly -1.3 1.00499 [-2, -1, -2, -3, 1, -2, -1, -1, -1, -1] +dumbness -1.9 0.53852 [-2, -2, -2, -2, -2, -3, -2, -2, -1, -1] +dumbs -1.5 0.67082 [-1, -1, -1, -3, -2, -1, -2, -1, -2, -1] +dumbstruck -1.0 1.34164 [-1, -2, 0, 0, -2, 1, -3, 1, -2, -2] +dumbwaiter 0.2 1.07703 [0, 0, 0, 0, 2, 0, 2, 0, -2, 0] +dumbwaiters -0.1 0.3 [0, 0, 0, 0, 0, 0, -1, 0, 0, 0] +dump -1.6 0.91652 [-3, -2, -1, -2, -1, -3, -2, -1, -1, 0] +dumpcart -0.6 0.8 [0, -2, -1, 0, 0, 0, -1, 0, -2, 0] +dumped -1.7 0.78102 [-2, -3, -2, -1, -1, -1, -3, -2, -1, -1] +dumper -1.2 0.87178 [-2, -3, -1, -1, -1, -2, 0, -1, 0, -1] +dumpers -0.8 0.6 [0, 0, -2, -1, -1, 0, -1, -1, -1, -1] +dumpier -1.4 0.66332 [-2, -1, -2, -1, -1, -2, 0, -2, -1, -2] +dumpiest -1.6 1.35647 [-1, -2, -2, -3, -2, -4, 1, 0, -1, -2] +dumpiness -1.2 0.6 [-2, -1, 0, -1, -1, -2, -1, -2, -1, -1] +dumping -1.3 1.1 [-3, -2, -2, 0, -2, -1, -1, 1, -1, -2] +dumpings -1.1 0.83066 [-2, 0, -1, -1, 0, -1, -2, -2, 0, -2] +dumpish -1.8 0.6 [-2, -1, -2, -3, -2, -2, -1, -2, -2, -1] +dumpling 0.4 0.91652 [0, 0, 1, 0, -1, 2, 2, 0, 0, 0] +dumplings -0.3 1.26886 [0, 0, 0, 0, 2, 0, 0, 0, -2, -3] +dumps -1.7 0.9 [-3, -2, -3, -1, -1, -3, -1, -1, -1, -1] +dumpster -0.6 0.91652 [0, -2, 0, -2, 0, 0, 0, -2, 0, 0] +dumpsters -1.0 0.89443 [0, -1, 0, -2, -2, -2, 0, 0, -1, -2] +dumpy -1.7 0.78102 [-3, -2, -3, -1, -1, -2, -2, -1, -1, -1] +dupe -1.5 0.5 [-2, -2, -1, -1, -2, -1, -2, -1, -2, -1] +duped -1.8 0.4 [-2, -2, -1, -2, -2, -2, -2, -1, -2, -2] +dwell 0.5 0.92195 [2, 1, -1, 0, -1, 1, 1, 1, 1, 0] +dwelled 0.4 0.66332 [2, 0, 0, 0, 0, 1, 1, 0, 0, 0] +dweller 0.3 0.64031 [2, 0, 0, 0, 0, 0, 1, 0, 0, 0] +dwellers -0.3 0.9 [-3, 0, 0, 0, 0, 0, 0, 0, 0, 0] +dwelling 0.1 0.53852 [0, 1, 0, 1, 0, 0, 0, -1, 0, 0] +dwells -0.1 0.53852 [0, 0, 0, 0, -1, 1, -1, 0, 0, 0] +dynamic 1.6 0.8 [1, 1, 1, 3, 1, 1, 2, 3, 2, 1] +dynamical 1.2 0.87178 [1, 2, 0, 1, 0, 2, 2, 2, 2, 0] +dynamically 1.5 1.0247 [2, 0, 3, 2, 0, 0, 2, 2, 2, 2] +dynamics 1.1 1.13578 [2, 3, 0, 0, 0, 2, 2, 0, 2, 0] +dynamism 1.6 1.11355 [0, 2, 0, 2, 0, 2, 3, 3, 2, 2] +dynamisms 1.2 0.9798 [2, 0, 2, 0, 0, 2, 2, 2, 0, 2] +dynamist 1.4 1.0198 [0, 2, 0, 2, 0, 1, 3, 2, 2, 2] +dynamistic 1.5 1.0247 [3, 1, 1, 2, 1, 3, 2, 0, 2, 0] +dynamists 0.9 0.83066 [1, 0, 0, 0, 0, 2, 2, 1, 2, 1] +dynamite 0.7 2.2383 [-3, 2, 3, 1, 2, 0, 2, 2, 2, -4] +dynamited -0.9 1.04403 [0, 0, 0, -1, -1, 0, -2, 0, -2, -3] +dynamiter -1.2 0.87178 [-1, 0, -1, -1, -2, 0, -1, -1, -2, -3] +dynamiters 0.4 1.42829 [0, 0, 0, -3, 1, 0, 2, 2, 2, 0] +dynamites -0.3 1.73494 [0, 0, 4, -1, -1, 0, 0, 0, -2, -3] +dynamitic 0.9 1.3 [2, 0, 1, -2, 2, 1, 1, 3, 0, 1] +dynamiting 0.2 1.32665 [-2, 0, 0, 2, -1, -1, 0, 2, 2, 0] +dynamometer 0.3 0.64031 [0, 0, 0, 0, 1, 0, 0, 2, 0, 0] +dynamometers 0.3 0.45826 [0, 0, 0, 0, 0, 1, 0, 1, 1, 0] +dynamometric 0.3 0.9 [0, 0, 0, 0, 0, 2, 0, 0, 2, -1] +dynamometry 0.6 1.28062 [-2, 0, 0, 0, 0, 2, 2, 2, 0, 2] +dynamos 0.3 0.64031 [1, 0, 0, 0, 0, 0, 0, 0, 2, 0] +dynamotor 0.6 0.91652 [0, 2, 0, 0, 0, 0, 2, 0, 2, 0] +dysfunction -1.8 0.6 [-2, -3, -2, -1, -2, -1, -2, -1, -2, -2] +eager 1.5 0.67082 [1, 3, 1, 2, 2, 2, 1, 1, 1, 1] +eagerly 1.6 0.66332 [0, 1, 2, 2, 2, 2, 2, 1, 2, 2] +eagerness 1.7 0.45826 [2, 2, 2, 2, 1, 1, 2, 2, 2, 1] +eagers 1.6 0.66332 [2, 2, 3, 1, 2, 1, 1, 1, 2, 1] +earnest 2.3 0.64031 [3, 2, 3, 1, 2, 2, 2, 3, 3, 2] +ease 1.5 0.92195 [1, 1, 1, 0, 2, 1, 2, 3, 3, 1] +eased 1.2 0.74833 [2, 0, 1, 0, 2, 2, 1, 1, 1, 2] +easeful 1.5 1.0247 [2, 1, 1, 2, 1, 0, 3, 2, 0, 3] +easefully 1.4 0.4899 [2, 2, 1, 1, 1, 1, 2, 2, 1, 1] +easel 0.3 0.45826 [0, 0, 0, 0, 1, 1, 0, 0, 0, 1] +easement 1.6 0.91652 [0, 1, 2, 3, 2, 1, 2, 1, 3, 1] +easements 0.4 1.11355 [0, 0, 0, 1, 2, -2, 1, 0, 2, 0] +eases 1.3 0.78102 [2, 0, 1, 0, 2, 2, 2, 1, 1, 2] +easier 1.8 0.9798 [1, 1, 2, 2, 4, 3, 2, 1, 1, 1] +easiest 1.8 1.07703 [2, 4, 1, 3, 2, 0, 2, 2, 1, 1] +easily 1.4 0.4899 [2, 1, 1, 2, 1, 2, 1, 2, 1, 1] +easiness 1.6 0.66332 [2, 1, 1, 2, 3, 2, 1, 1, 2, 1] +easing 1.0 0.63246 [0, 0, 2, 1, 1, 2, 1, 1, 1, 1] +easy 1.9 1.04403 [1, 4, 2, 1, 1, 3, 1, 3, 2, 1] +easygoing 1.3 0.45826 [1, 1, 1, 1, 1, 1, 2, 2, 2, 1] +easygoingness 1.5 0.67082 [1, 2, 1, 2, 1, 3, 1, 2, 1, 1] +ecstacy 3.3 1.18743 [4, 4, 3, 4, 4, 0, 3, 3, 4, 4] +ecstasies 2.3 1.34536 [3, 3, 2, 4, 3, 1, 3, -1, 2, 3] +ecstasy 2.9 1.75784 [4, 3, 3, 4, 4, 2, -2, 3, 4, 4] +ecstatic 2.3 1.34536 [3, 4, 3, 4, 1, 1, 1, 4, 1, 1] +ecstatically 2.8 1.93907 [3, 4, -1, 4, 4, 4, -1, 3, 4, 4] +ecstatics 2.9 0.83066 [1, 3, 4, 4, 3, 3, 3, 2, 3, 3] +eerie -1.5 0.67082 [-1, -1, -2, -2, -1, -1, -2, -1, -3, -1] +eery -0.9 1.04403 [-3, -1, -2, -1, -2, 0, 0, 0, 0, 0] +effective 2.1 0.83066 [2, 2, 2, 1, 3, 4, 2, 1, 2, 2] +effectively 1.9 0.7 [1, 2, 1, 2, 2, 1, 3, 3, 2, 2] +efficiencies 1.6 0.4899 [2, 1, 1, 2, 2, 2, 1, 2, 2, 1] +efficiency 1.5 0.5 [2, 1, 2, 2, 1, 2, 1, 1, 2, 1] +efficient 1.8 0.9798 [1, 2, 1, 1, 2, 3, 3, 0, 2, 3] +efficiently 1.7 0.78102 [1, 3, 2, 1, 3, 1, 1, 2, 2, 1] +effin -2.3 1.18743 [0, -3, -3, -3, -2, -1, -4, -1, -3, -3] +egotism -1.4 0.91652 [-2, -3, -1, -2, -2, 0, 0, -1, -2, -1] +egotisms -1.0 0.7746 [-1, -1, -1, -1, -1, 0, 0, -1, -3, -1] +egotist -2.3 0.9 [-2, -1, -2, -3, -4, -2, -3, -3, -1, -2] +egotistic -1.4 1.0198 [-2, -1, -1, -1, -2, 1, -3, -2, -1, -2] +egotistical -0.9 1.57797 [-1, -2, -2, -1, -2, 1, -3, 2, 1, -2] +egotistically -1.8 0.87178 [-2, -1, -1, -2, -1, -3, -3, -1, -1, -3] +egotists -1.7 0.78102 [-1, -2, 0, -2, -2, -2, -3, -1, -2, -2] +elated 3.2 0.74833 [2, 4, 4, 3, 4, 3, 3, 2, 3, 4] +elation 1.5 1.43178 [1, 2, -2, 2, 2, 3, 0, 3, 2, 2] +elegance 2.1 0.53852 [3, 2, 2, 1, 2, 2, 3, 2, 2, 2] +elegances 1.8 0.6 [2, 2, 1, 1, 2, 2, 2, 3, 2, 1] +elegancies 1.6 1.0198 [2, 1, 2, 1, 1, 0, 4, 1, 2, 2] +elegancy 2.1 0.53852 [3, 2, 2, 1, 2, 2, 3, 2, 2, 2] +elegant 2.1 0.83066 [2, 2, 2, 1, 4, 1, 2, 3, 2, 2] +elegantly 1.9 0.83066 [2, 1, 1, 3, 2, 2, 1, 3, 3, 1] +embarrass -1.2 1.66132 [-2, -2, -3, -1, -2, -2, 2, 2, -2, -2] +embarrassable -1.6 0.8 [-3, -2, -1, -3, -1, -1, -1, -2, -1, -1] +embarrassed -1.5 0.67082 [-2, -2, -1, -2, -1, -3, -1, -1, -1, -1] +embarrassedly -1.1 1.44568 [-2, -1, -2, -3, 1, -1, -1, -2, -2, 2] +embarrasses -1.7 0.78102 [-2, -3, -1, -2, -1, -3, -2, -1, -1, -1] +embarrassing -1.6 0.8 [-3, -1, -1, -1, -1, -2, -1, -2, -3, -1] +embarrassingly -1.7 0.64031 [-2, -1, -1, -2, -1, -2, -1, -3, -2, -2] +embarrassment -1.9 0.53852 [-2, -2, -1, -2, -2, -2, -2, -1, -3, -2] +embarrassments -1.7 0.64031 [-2, -1, -2, -1, -1, -2, -2, -1, -2, -3] +embittered -0.4 1.35647 [1, -2, -1, 1, -2, 2, 0, -1, 0, -2] +embrace 1.3 1.34536 [3, 2, 1, 3, 2, -1, 2, 1, -1, 1] +emergency -1.6 2.05913 [-3, -3, -3, -3, -4, 2, 1, -1, 1, -3] +emotional 0.6 1.0198 [1, -1, 0, 0, 0, 2, 0, 2, 2, 0] +empathetic 1.7 1.1 [-1, 3, 2, 2, 2, 1, 3, 1, 2, 2] +emptied -0.7 0.64031 [-1, 0, 0, 0, -1, -1, -1, -2, 0, -1] +emptier -0.7 0.64031 [-1, 0, 0, 0, -1, -1, -1, -2, 0, -1] +emptiers -0.7 0.78102 [0, 0, -1, 0, -1, -1, -2, 0, -2, 0] +empties -0.7 0.64031 [-1, 0, 0, 0, -1, -1, -1, -2, 0, -1] +emptiest -1.8 1.07703 [-1, -2, -2, -1, -1, -2, -3, 0, -4, -2] +emptily -1.0 1.41421 [-2, 2, -1, -1, -1, 0, -4, -1, -1, -1] +emptiness -1.9 0.7 [-2, -2, -3, -2, -2, -1, -1, -3, -1, -2] +emptinesses -1.5 1.11803 [-1, -1, -3, -1, -1, -1, -2, 0, -4, -1] +emptins -0.3 0.45826 [0, 0, 0, -1, 0, 0, 0, -1, -1, 0] +empty -0.8 0.74833 [-1, -1, -1, -1, -1, -1, -2, 0, -1, 1] +emptying -0.6 1.0198 [2, -1, -1, 0, -1, 0, -1, -1, -2, -1] +enchanted 1.6 0.8 [1, 3, 1, 2, 1, 3, 1, 2, 1, 1] +encourage 2.3 0.78102 [2, 1, 3, 2, 3, 4, 2, 2, 2, 2] +encouraged 1.5 0.5 [1, 2, 2, 2, 2, 2, 1, 1, 1, 1] +encouragement 1.8 0.9798 [2, 1, 2, 1, 1, 3, 1, 2, 4, 1] +encouragements 2.1 0.7 [3, 2, 3, 2, 1, 2, 3, 2, 2, 1] +encourager 1.5 0.5 [2, 1, 2, 1, 1, 2, 1, 1, 2, 2] +encouragers 1.5 0.5 [2, 2, 1, 1, 2, 2, 1, 1, 2, 1] +encourages 1.9 0.53852 [2, 2, 1, 2, 2, 1, 2, 2, 2, 3] +encouraging 2.4 0.66332 [2, 3, 2, 3, 3, 2, 3, 2, 1, 3] +encouragingly 2.0 0.7746 [1, 1, 1, 3, 2, 2, 2, 3, 2, 3] +endorse 1.3 0.9 [0, 1, 0, 1, 3, 2, 2, 2, 1, 1] +endorsed 1.0 0.89443 [1, 2, 0, 1, 1, 0, 1, 0, 3, 1] +endorsement 1.3 0.9 [0, 1, 2, 2, 1, 2, 0, 1, 3, 1] +endorses 1.4 0.4899 [1, 2, 1, 2, 1, 1, 1, 2, 2, 1] +enemies -2.2 0.6 [-2, -3, -1, -2, -2, -3, -2, -3, -2, -2] +enemy -2.5 0.92195 [-3, -2, -3, -3, -3, -4, -1, -3, -1, -2] +energetic 1.9 0.53852 [2, 1, 3, 2, 2, 2, 1, 2, 2, 2] +energetically 1.8 0.6 [2, 2, 1, 1, 2, 2, 3, 1, 2, 2] +energetics 0.3 0.64031 [1, 0, 0, 0, 0, 0, 2, 0, 0, 0] +energies 0.9 1.04403 [1, 0, 0, 2, 0, 1, 3, 2, 0, 0] +energise 2.2 0.4 [2, 2, 2, 2, 2, 2, 3, 2, 3, 2] +energised 2.1 0.53852 [2, 3, 1, 2, 2, 2, 3, 2, 2, 2] +energises 2.2 0.6 [3, 3, 2, 2, 1, 3, 2, 2, 2, 2] +energising 1.9 0.7 [2, 3, 1, 2, 2, 3, 2, 1, 1, 2] +energization 1.6 0.66332 [1, 2, 1, 3, 1, 1, 2, 2, 2, 1] +energizations 1.5 1.11803 [1, 0, 3, 1, 3, 0, 1, 1, 2, 3] +energize 2.1 0.7 [2, 2, 2, 1, 3, 2, 3, 2, 3, 1] +energized 2.3 0.64031 [3, 2, 3, 3, 3, 2, 2, 2, 1, 2] +energizer 2.1 0.53852 [3, 2, 2, 2, 2, 2, 2, 3, 1, 2] +energizers 1.7 0.9 [2, 0, 2, 3, 3, 1, 1, 2, 2, 1] +energizes 2.1 0.53852 [3, 2, 3, 2, 2, 2, 2, 2, 1, 2] +energizing 2.0 0.63246 [3, 3, 2, 1, 2, 2, 1, 2, 2, 2] +energy 1.1 0.83066 [0, 2, 0, 2, 1, 1, 2, 1, 2, 0] +engage 1.4 0.8 [1, 2, 3, 2, 1, 1, 0, 1, 2, 1] +engaged 1.7 1.1 [1, 1, 2, 2, 1, 0, 2, 3, 4, 1] +engagement 2.0 1.34164 [0, 0, 3, 4, 4, 2, 1, 2, 2, 2] +engagements 0.6 0.8 [1, 0, 0, 2, 0, 2, 0, 0, 1, 0] +engager 1.1 0.7 [1, 1, 0, 2, 1, 0, 2, 1, 2, 1] +engagers 1.0 0.7746 [1, 1, 1, 0, 2, 1, 0, 2, 2, 0] +engages 1.0 0.7746 [1, 1, 0, 2, 1, 0, 1, 2, 2, 0] +engaging 1.4 0.4899 [2, 2, 1, 1, 2, 1, 1, 1, 1, 2] +engagingly 1.5 0.67082 [1, 2, 3, 1, 1, 1, 1, 1, 2, 2] +engrossed 0.6 1.49666 [0, 2, 0, 2, -2, 2, 3, -1, 0, 0] +enjoy 2.2 0.6 [3, 2, 2, 2, 3, 2, 2, 3, 2, 1] +enjoyable 1.9 0.53852 [3, 2, 2, 1, 2, 1, 2, 2, 2, 2] +enjoyableness 1.9 1.13578 [2, 2, 2, 2, 1, 3, 3, 3, -1, 2] +enjoyably 1.8 0.4 [2, 2, 2, 1, 2, 1, 2, 2, 2, 2] +enjoyed 2.3 0.64031 [2, 2, 1, 3, 3, 3, 2, 2, 2, 3] +enjoyer 2.2 0.6 [2, 2, 1, 3, 3, 2, 2, 2, 2, 3] +enjoyers 2.2 0.74833 [2, 4, 2, 2, 2, 2, 2, 3, 2, 1] +enjoying 2.4 0.66332 [2, 2, 2, 3, 3, 3, 1, 3, 2, 3] +enjoyment 2.6 0.4899 [2, 3, 2, 3, 2, 3, 2, 3, 3, 3] +enjoyments 2.0 0.7746 [3, 1, 1, 3, 2, 1, 2, 2, 2, 3] +enjoys 2.3 0.45826 [2, 3, 2, 2, 2, 3, 2, 3, 2, 2] +enlighten 2.3 1.1 [2, 2, 1, 3, 2, 1, 1, 4, 3, 4] +enlightened 2.2 0.87178 [4, 2, 3, 1, 2, 2, 1, 3, 2, 2] +enlightening 2.3 0.64031 [3, 2, 2, 2, 2, 2, 2, 4, 2, 2] +enlightens 1.7 1.00499 [2, 1, 1, 1, 1, 2, 4, 1, 3, 1] +ennui -1.2 0.6 [-1, -1, -1, -2, -1, -1, -2, -1, 0, -2] +enrage -2.6 0.91652 [-3, -3, -3, -4, -1, -1, -3, -2, -3, -3] +enraged -1.7 1.79165 [-3, -3, -3, -3, 2, -1, -3, -1, 1, -3] +enrages -1.8 1.6 [-3, -3, -3, -3, 1, -1, -3, -1, 1, -3] +enraging -2.8 0.74833 [-4, -2, -3, -2, -2, -3, -3, -2, -4, -3] +enrapture 3.0 0.63246 [2, 4, 3, 3, 4, 3, 3, 2, 3, 3] +enslave -3.1 0.9434 [-3, -4, -2, -4, -4, -2, -4, -2, -4, -2] +enslaved -1.7 2.41039 [3, -3, -3, -3, -4, -4, -4, 1, -1, 1] +enslaves -1.6 2.15407 [2, -2, -3, -2, -4, -4, -4, 1, -1, 1] +ensure 1.6 0.91652 [2, 1, 3, 1, 1, 2, 3, 2, 0, 1] +ensuring 1.1 0.9434 [0, 1, 3, 1, 1, 2, 1, 0, 2, 0] +enterprising 2.3 0.78102 [3, 2, 1, 3, 3, 2, 1, 2, 3, 3] +entertain 1.3 0.64031 [1, 2, 1, 1, 2, 1, 2, 0, 1, 2] +entertained 1.7 0.64031 [1, 2, 2, 1, 2, 1, 1, 3, 2, 2] +entertainer 1.6 1.2 [1, 4, 2, 2, 0, 0, 1, 3, 1, 2] +entertainers 1.0 0.7746 [0, 1, 2, 2, 0, 0, 1, 1, 2, 1] +entertaining 1.9 0.83066 [1, 2, 1, 1, 3, 2, 3, 2, 3, 1] +entertainingly 1.9 0.53852 [2, 1, 2, 3, 2, 2, 1, 2, 2, 2] +entertainment 1.8 0.9798 [2, 0, 4, 2, 2, 1, 2, 2, 1, 2] +entertainments 2.3 1.18743 [3, 3, 3, 2, 1, 0, 3, 4, 1, 3] +entertains 2.4 0.66332 [2, 2, 2, 2, 2, 3, 4, 3, 2, 2] +enthral 0.4 1.42829 [2, 2, 0, 2, 0, -1, -2, 2, 0, -1] +enthuse 1.6 0.66332 [1, 2, 1, 1, 3, 1, 2, 2, 2, 1] +enthused 2.0 0.63246 [3, 3, 1, 2, 2, 2, 2, 1, 2, 2] +enthuses 1.7 0.78102 [2, 3, 1, 2, 1, 3, 1, 1, 1, 2] +enthusiasm 1.9 0.9434 [3, 3, 3, 2, 1, 0, 2, 1, 2, 2] +enthusiasms 2.0 0.89443 [1, 3, 2, 2, 3, 2, 0, 2, 3, 2] +enthusiast 1.5 0.67082 [1, 2, 2, 2, 0, 1, 1, 2, 2, 2] +enthusiastic 2.2 0.9798 [1, 2, 3, 4, 2, 3, 2, 1, 1, 3] +enthusiastically 2.6 0.66332 [3, 3, 3, 2, 3, 3, 3, 3, 2, 1] +enthusiasts 1.4 0.91652 [1, 1, 0, 3, 3, 2, 1, 1, 1, 1] +enthusing 1.9 0.7 [2, 1, 2, 1, 2, 3, 2, 1, 2, 3] +entitled 1.1 0.83066 [2, 2, 1, 1, 2, 1, 1, -1, 1, 1] +entrusted 0.8 1.46969 [3, 0, 2, 2, 1, 1, -1, 0, -2, 2] +envied -1.1 0.83066 [-1, -2, -2, 1, -2, -1, -1, -1, -1, -1] +envier -1.0 0.7746 [-1, -2, -2, -1, -1, 1, -1, -1, -1, -1] +enviers -1.1 1.13578 [-3, -1, 0, -3, -1, -1, -1, -1, 1, -1] +envies -0.8 0.9798 [-1, -2, -2, 1, -1, 1, -1, -1, -1, -1] +envious -1.1 0.83066 [-2, -1, -1, -1, -2, -1, -1, 1, -2, -1] +envy -1.1 0.83066 [-2, -1, -1, -2, -1, -1, -1, 1, -1, -2] +envying -0.8 1.32665 [-1, -1, -1, -1, -3, 2, -2, -1, 1, -1] +envyingly -1.3 1.55242 [-2, 3, -2, -2, -1, -3, -1, -1, -2, -2] +erroneous -1.8 0.6 [-2, -3, -2, -2, -2, -2, -1, -1, -1, -2] +error -1.7 0.64031 [-2, -1, -2, -1, -2, -1, -1, -2, -3, -2] +errors -1.4 0.66332 [-2, -1, -2, 0, -2, -2, -1, -1, -1, -2] +escape 0.7 1.00499 [2, 0, 0, 1, 0, 1, 0, 3, 0, 0] +escapes 0.5 1.36015 [4, 1, 1, 0, -1, 0, -1, 0, 1, 0] +escaping 0.2 1.46969 [-2, 2, -1, 0, 1, 0, 2, 2, -2, 0] +esteemed 1.9 0.83066 [3, 2, 1, 2, 3, 1, 1, 2, 3, 1] +ethical 2.3 0.78102 [3, 3, 3, 3, 2, 2, 1, 3, 2, 1] +euphoria 3.3 0.9 [4, 4, 3, 3, 3, 4, 4, 4, 1, 3] +euphoric 3.2 0.87178 [3, 4, 3, 3, 3, 4, 4, 4, 1, 3] +eviction -2.0 0.63246 [-2, -2, -3, -2, -3, -2, -1, -2, -1, -2] +evil -3.4 0.91652 [-4, -4, -4, -3, -3, -4, -1, -4, -3, -4] +evildoer -3.1 0.7 [-2, -3, -3, -3, -4, -4, -3, -2, -3, -4] +evildoers -2.4 0.4899 [-3, -3, -2, -2, -2, -2, -2, -2, -3, -3] +evildoing -3.1 0.7 [-4, -4, -3, -3, -3, -4, -2, -3, -2, -3] +evildoings -2.5 1.0247 [-3, -1, -1, -3, -4, -2, -4, -2, -2, -3] +eviler -2.1 1.13578 [-2, -1, -3, -2, -4, -3, -1, -2, 0, -3] +evilest -2.5 1.0247 [-3, -4, -1, -3, -2, -3, -1, -4, -2, -2] +eviller -2.9 0.83066 [-3, -3, -4, -2, -2, -3, -2, -4, -2, -4] +evillest -3.3 0.78102 [-3, -4, -2, -3, -4, -2, -4, -4, -3, -4] +evilly -3.4 0.8 [-2, -4, -4, -4, -3, -4, -4, -4, -3, -2] +evilness -3.1 1.04403 [-3, -4, -4, -4, -4, -2, -3, -2, -1, -4] +evils -2.7 0.78102 [-3, -2, -2, -4, -4, -2, -3, -2, -3, -2] +exaggerate -0.6 0.66332 [-1, -1, -1, 0, -1, 0, 1, -1, -1, -1] +exaggerated -0.4 1.2 [-1, -1, -1, -1, -1, 2, 1, 1, -2, -1] +exaggerates -0.6 1.28062 [-1, -1, -1, -1, -1, 1, 0, 2, -3, -1] +exaggerating -0.7 0.9 [-1, -2, 0, -1, 0, 0, -2, -1, 1, -1] +exasperated -1.8 1.53623 [-4, -3, -3, -1, -1, -1, 1, -1, -4, -1] +excel 2.0 1.0 [3, 0, 2, 3, 1, 1, 3, 3, 2, 2] +excelled 2.2 0.87178 [1, 2, 2, 2, 3, 2, 4, 3, 2, 1] +excellence 3.1 0.9434 [4, 3, 4, 3, 2, 3, 1, 4, 3, 4] +excellences 2.5 0.92195 [4, 2, 2, 2, 4, 3, 2, 2, 3, 1] +excellencies 2.4 0.4899 [3, 2, 3, 3, 2, 2, 2, 2, 3, 2] +excellency 2.5 0.80623 [4, 2, 3, 3, 2, 3, 1, 3, 2, 2] +excellent 2.7 0.64031 [2, 3, 3, 3, 3, 2, 3, 2, 2, 4] +excellently 3.1 0.7 [4, 3, 3, 3, 2, 3, 3, 4, 4, 2] +excelling 2.5 0.67082 [2, 2, 3, 3, 3, 2, 2, 4, 2, 2] +excels 2.5 0.92195 [4, 2, 4, 2, 2, 1, 2, 3, 3, 2] +excelsior 0.7 0.64031 [1, 0, 0, 2, 0, 1, 1, 1, 1, 0] +excitabilities 1.5 1.0247 [2, 0, 1, 1, 3, 1, 2, 3, 2, 0] +excitability 1.2 0.87178 [0, 1, 1, 0, 1, 2, 3, 1, 2, 1] +excitable 1.5 0.92195 [2, 3, 1, 0, 1, 2, 2, 0, 2, 2] +excitableness 1.0 1.09545 [0, 0, 2, 0, 2, 0, 2, 0, 1, 3] +excitant 1.8 1.16619 [1, 0, 1, 3, 2, 0, 3, 3, 2, 3] +excitants 1.2 0.9798 [1, 0, 1, 2, 2, 2, 1, -1, 2, 2] +excitation 1.8 0.87178 [2, 0, 3, 1, 3, 2, 2, 2, 1, 2] +excitations 1.8 1.16619 [3, 3, -1, 2, 2, 2, 1, 1, 3, 2] +excitative 0.3 0.78102 [0, 1, 1, 0, 0, 0, 2, 0, -1, 0] +excitatory 1.1 1.7 [-1, 2, 2, 1, 2, 2, 2, 3, -3, 1] +excite 2.1 1.22066 [1, 2, 2, 1, 2, 0, 4, 4, 3, 2] +excited 1.4 0.4899 [1, 1, 2, 1, 2, 1, 2, 1, 1, 2] +excitedly 2.3 0.9 [3, 3, 2, 3, 1, 3, 1, 3, 1, 3] +excitement 2.2 0.4 [2, 2, 2, 3, 3, 2, 2, 2, 2, 2] +excitements 1.9 0.53852 [2, 1, 2, 3, 2, 2, 2, 2, 2, 1] +exciter 1.9 0.9434 [3, 2, 3, 1, 0, 1, 2, 3, 2, 2] +exciters 1.4 1.42829 [1, 2, 0, 1, 2, 4, 0, -1, 3, 2] +excites 2.1 0.83066 [2, 3, 3, 2, 0, 2, 2, 3, 2, 2] +exciting 2.2 0.87178 [3, 2, 1, 1, 1, 3, 3, 3, 2, 3] +excitingly 1.9 0.9434 [3, 2, 3, 0, 1, 2, 1, 2, 2, 3] +exciton 0.3 0.64031 [2, 0, 0, 0, 0, 0, 1, 0, 0, 0] +excitonic 0.2 0.6 [0, 0, 0, 0, 2, 0, 0, 0, 0, 0] +excitons 0.8 0.6 [1, 2, 0, 1, 1, 0, 0, 1, 1, 1] +excitor 0.5 0.67082 [2, 0, 0, 0, 1, 1, 1, 0, 0, 0] +exclude -0.9 1.13578 [-1, -2, -1, -3, -1, 1, -1, -1, 1, -1] +excluded -1.4 1.62481 [-2, -1, -3, -3, -2, -3, -2, 1, -1, 2] +exclusion -1.2 1.249 [-2, -2, -3, -1, -2, -1, -1, -1, 2, -1] +exclusive 0.5 0.92195 [0, 0, 0, -1, 2, 0, 1, 2, 1, 0] +excruciate -2.7 0.64031 [-2, -3, -2, -3, -3, -2, -4, -3, -2, -3] +excruciated -1.3 1.9 [-4, -1, -4, 0, 2, -2, -1, -1, -3, 1] +excruciates -1.0 2.19089 [-4, 1, -4, 0, 1, -3, -1, 1, -3, 2] +excruciating -3.3 0.9 [-3, -4, -4, -4, -4, -4, -4, -2, -2, -2] +excruciatingly -2.9 1.04403 [-2, -4, -3, -2, -4, -1, -2, -3, -4, -4] +excruciation -3.4 0.66332 [-4, -3, -2, -4, -4, -3, -4, -3, -3, -4] +excruciations -1.9 1.51327 [-3, -3, -2, -4, -1, -1, 1, -4, -1, -1] +excuse 0.3 1.73494 [0, 0, 3, -1, 0, -1, -2, 0, 4, 0] +exempt 0.4 0.91652 [1, 0, 0, 0, 2, -1, 0, 0, 2, 0] +exhaust -1.2 0.87178 [0, -1, 0, -1, -1, -3, -2, -2, -1, -1] +exhausted -1.5 1.28452 [-2, -1, 2, -2, -3, -2, -2, -1, -2, -2] +exhauster -1.3 0.64031 [-1, -1, 0, -1, -2, -1, -1, -2, -2, -2] +exhausters -1.3 0.45826 [-2, -1, -2, -1, -1, -2, -1, -1, -1, -1] +exhaustibility -0.8 1.07703 [0, -2, -3, 0, 1, -1, -1, -1, 0, -1] +exhaustible -1.0 0.63246 [-1, -1, 0, -1, -2, -2, -1, 0, -1, -1] +exhausting -1.5 0.5 [-1, -2, -1, -1, -2, -1, -2, -2, -1, -2] +exhaustion -1.5 0.92195 [-2, -1, 1, -2, -2, -2, -2, -1, -2, -2] +exhaustions -1.1 0.9434 [-1, -3, -2, -1, -1, -1, -1, 1, -1, -1] +exhaustive -0.5 0.67082 [-1, -1, 0, -1, -2, 0, 0, 0, 0, 0] +exhaustively -0.7 0.78102 [-2, 0, -1, -1, -1, -2, 0, 0, 0, 0] +exhaustiveness -1.1 1.3 [-2, -2, 0, -1, -1, 1, -4, -1, 0, -1] +exhaustless 0.2 1.8868 [1, 1, 0, 2, 3, 0, -2, 2, -2, -3] +exhaustlessness 0.9 1.75784 [2, 2, 1, 1, -4, 2, 1, 2, 0, 2] +exhausts -1.1 0.53852 [-2, -1, 0, -1, -1, -2, -1, -1, -1, -1] +exhilarated 3.0 0.63246 [3, 3, 3, 3, 2, 2, 4, 4, 3, 3] +exhilarates 2.8 1.07703 [4, 3, 3, 3, 0, 2, 3, 4, 3, 3] +exhilarating 1.7 1.61555 [3, 4, 3, 2, -1, 1, 1, 3, -1, 2] +exonerate 1.8 0.74833 [2, 2, 2, 2, 3, 2, 1, 0, 2, 2] +exonerated 1.8 1.83303 [3, -2, 2, 3, 2, 4, 3, 1, -1, 3] +exonerates 1.6 1.90788 [3, -2, 1, 2, 3, 4, 0, 3, -1, 3] +exonerating 1.0 1.41421 [2, -2, 3, 0, 0, 2, 0, 2, 2, 1] +expand 1.3 0.64031 [0, 2, 2, 1, 1, 1, 2, 1, 2, 1] +expands 0.4 0.66332 [0, 1, 0, 0, 0, 0, 0, 0, 2, 1] +expel -1.9 1.44568 [0, -4, -3, -1, -3, -1, 0, -2, -4, -1] +expelled -1.0 1.94936 [-1, -2, 2, -2, -4, -3, -2, 1, 2, -1] +expelling -1.6 1.49666 [-2, -2, -2, -2, -2, -3, -4, -1, 1, 1] +expels -1.6 1.11355 [-4, -2, 0, -3, -1, -1, -1, -2, -1, -1] +exploit -0.4 1.62481 [-2, -1, -1, 2, -2, -2, 2, -1, 2, -1] +exploited -2.0 1.0 [-3, -3, -1, -1, -1, -4, -2, -2, -1, -2] +exploiting -1.9 1.22066 [0, -3, -3, 0, -2, -3, -1, -1, -3, -3] +exploits -1.4 0.8 [-2, -2, -2, -1, -1, 0, -2, 0, -2, -2] +exploration 0.9 0.7 [2, 2, 0, 1, 1, 0, 1, 0, 1, 1] +explorations 0.3 1.1 [1, 1, 0, 0, 1, 2, 1, -2, -1, 0] +expose -0.6 0.8 [-1, -1, 0, 0, -2, 1, -1, 0, -1, -1] +exposed -0.3 1.18743 [-2, -1, 0, 2, 0, 0, -1, 1, -2, 0] +exposes -0.5 0.92195 [-1, -1, 0, 2, -1, 0, -1, -1, -1, -1] +exposing -1.1 0.7 [-2, -2, -1, -1, 0, -2, -1, -1, 0, -1] +extend 0.7 0.78102 [2, 0, 0, 0, 1, 2, 1, 1, 0, 0] +extends 0.5 0.80623 [2, 0, 2, 0, 0, 0, 1, 0, 0, 0] +exuberant 2.8 0.6 [2, 3, 2, 3, 2, 4, 3, 3, 3, 3] +exultant 3.0 1.18322 [4, 4, 3, 0, 3, 4, 3, 3, 2, 4] +exultantly 1.4 1.49666 [3, 2, 4, 1, 1, 2, -2, 1, 1, 1] +fab 2.0 1.0 [2, 1, 1, 3, 1, 2, 2, 4, 3, 1] +fabulous 2.4 0.8 [2, 2, 3, 4, 3, 3, 1, 2, 2, 2] +fabulousness 2.8 1.07703 [4, 1, 4, 3, 1, 3, 3, 2, 4, 3] +fad 0.9 0.83066 [2, 0, 1, 1, 1, 0, 0, 2, 2, 0] +fag -2.1 0.83066 [-3, -1, -2, -4, -2, -2, -2, -1, -2, -2] +faggot -3.4 0.8 [-2, -4, -4, -3, -2, -4, -4, -4, -3, -4] +faggots -3.2 0.9798 [-2, -4, -4, -4, -3, -4, -4, -3, -1, -3] +fail -2.5 0.67082 [-2, -3, -3, -3, -4, -2, -2, -2, -2, -2] +failed -2.3 0.9 [-2, -3, -1, -2, -2, -1, -3, -3, -4, -2] +failing -2.3 1.1 [-2, -3, -3, -3, -4, -1, -2, -2, 0, -3] +failingly -1.4 0.8 [-1, -3, -2, -1, 0, -1, -2, -1, -2, -1] +failings -2.2 1.07703 [-2, -2, -3, -4, -1, -2, -1, -1, -4, -2] +faille 0.1 0.3 [0, 0, 0, 0, 0, 0, 1, 0, 0, 0] +fails -1.8 0.74833 [-2, -3, -2, -3, -2, -2, -1, -1, -1, -1] +failure -2.3 1.00499 [-3, -1, -3, -2, -1, -2, -3, -1, -4, -3] +failures -2.0 0.63246 [-1, -2, -1, -2, -3, -2, -2, -3, -2, -2] +fainthearted -0.3 1.34536 [3, -1, -1, -1, -2, -1, 0, 1, -1, 0] +fair 1.3 1.00499 [0, 1, 1, 2, 4, 1, 1, 1, 1, 1] +faith 1.8 0.6 [1, 3, 2, 2, 1, 2, 2, 2, 1, 2] +faithed 1.3 1.00499 [3, 2, 1, 2, 1, 2, -1, 1, 1, 1] +faithful 1.9 0.83066 [1, 3, 2, 2, 1, 1, 3, 3, 2, 1] +faithfully 1.8 1.07703 [3, 1, 2, 2, 4, 1, 0, 1, 2, 2] +faithfulness 1.9 0.53852 [1, 2, 2, 3, 2, 2, 2, 1, 2, 2] +faithless -1.0 0.89443 [-1, -1, -1, -2, -2, -1, -1, 0, 1, -2] +faithlessly -0.9 1.51327 [-1, -2, -1, -3, -2, -1, 3, 0, -1, -1] +faithlessness -1.8 1.249 [-3, -2, 1, -2, -2, -1, -2, -1, -4, -2] +faiths 1.8 0.9798 [2, 3, 1, 1, 3, 3, 0, 2, 2, 1] +fake -2.1 0.9434 [-2, -2, -1, -1, -1, -3, -3, -4, -2, -2] +fakes -1.8 1.07703 [-2, -3, -2, -2, -3, 1, -2, -2, -1, -2] +faking -1.8 0.87178 [-3, -1, -2, -1, -2, -2, -3, -2, 0, -2] +fallen -1.5 0.80623 [-1, -1, -2, -2, -1, -3, 0, -1, -2, -2] +falling -0.6 1.8 [-2, -2, -1, 0, -1, 3, -3, 2, 0, -2] +falsified -1.6 0.91652 [-4, -1, -1, -2, -1, -1, -2, -2, -1, -1] +falsify -2.0 0.7746 [-2, -1, -3, -3, -1, -2, -2, -2, -1, -3] +fame 1.9 1.13578 [0, 2, 1, 2, 2, 4, 1, 3, 3, 1] +fan 1.3 0.78102 [2, 0, 1, 1, 2, 1, 1, 3, 1, 1] +fantastic 2.6 0.91652 [1, 3, 3, 3, 2, 4, 4, 2, 2, 2] +fantastical 2.0 1.18322 [-1, 3, 2, 2, 2, 2, 3, 1, 3, 3] +fantasticalities 2.1 1.04403 [2, 4, 2, 2, 1, 1, 2, 4, 1, 2] +fantasticality 1.7 1.26886 [4, 1, 0, 2, 2, 1, 4, 1, 1, 1] +fantasticalness 1.3 1.9 [2, 3, -3, 0, 3, 2, 2, 3, -1, 2] +fantasticate 1.5 1.96214 [1, 2, -3, 1, 4, 1, 3, 4, 0, 2] +fantastico 0.4 1.49666 [0, 0, 2, 0, 2, -2, 1, -1, -1, 3] +farce -1.7 0.45826 [-2, -2, -1, -2, -2, -1, -1, -2, -2, -2] +fascinate 2.4 1.0198 [4, 2, 2, 3, 1, 2, 3, 4, 1, 2] +fascinated 2.1 0.83066 [2, 2, 2, 3, 1, 2, 4, 2, 1, 2] +fascinates 2.0 0.44721 [2, 3, 1, 2, 2, 2, 2, 2, 2, 2] +fascination 2.2 0.74833 [2, 1, 3, 3, 2, 3, 2, 2, 1, 3] +fascinating 2.5 0.92195 [3, 3, 3, 4, 2, 3, 2, 3, 1, 1] +fascist -2.6 0.8 [-3, -3, -2, -2, -2, -3, -1, -3, -4, -3] +fascists -0.8 1.6 [-2, -3, -1, 1, -1, 2, -3, 1, -1, -1] +fatal -2.5 1.62788 [-2, -3, -3, -4, -3, -3, 2, -4, -2, -3] +fatalism -0.6 1.8 [0, 0, -3, -4, -1, 1, 0, 2, -2, 1] +fatalisms -1.7 0.9 [-2, -4, -2, -2, -2, -1, -1, -1, -1, -1] +fatalist -0.5 1.56525 [0, 0, -1, -4, -1, 2, 0, 1, -2, 0] +fatalistic -1.0 1.34164 [-3, -1, -3, -1, 1, 0, 1, -2, -1, -1] +fatalists -1.2 0.87178 [0, -2, -1, -2, -1, 0, -1, -1, -3, -1] +fatalities -2.9 0.7 [-2, -3, -3, -4, -2, -2, -3, -4, -3, -3] +fatality -3.5 0.67082 [-2, -4, -4, -4, -3, -4, -4, -4, -3, -3] +fatally -3.2 0.74833 [-3, -2, -4, -2, -3, -4, -4, -3, -3, -4] +fatigue -1.0 0.7746 [-2, -1, -1, -1, 1, -1, -2, -1, -1, -1] +fatigued -1.4 0.4899 [-2, -1, -1, -2, -1, -1, -2, -2, -1, -1] +fatigues -1.3 1.00499 [-2, -1, -1, -2, -1, 1, -3, -2, -1, -1] +fatiguing -1.2 0.6 [-1, -2, -2, -1, 0, -2, -1, -1, -1, -1] +fatiguingly -1.5 0.80623 [-1, 0, -3, -2, -1, -1, -2, -1, -2, -2] +fault -1.7 0.64031 [-1, -2, -2, -2, -1, -1, -2, -2, -1, -3] +faulted -1.4 0.4899 [-2, -2, -1, -2, -1, -1, -1, -1, -2, -1] +faultfinder -0.8 1.32665 [-3, -2, -2, -1, 1, 1, 1, -1, -1, -1] +faultfinders -1.5 0.80623 [-2, -2, -1, -3, -2, -1, 0, -1, -1, -2] +faultfinding -2.1 0.83066 [-3, -2, -1, -2, -1, -3, -1, -3, -2, -3] +faultier -2.1 0.7 [-3, -3, -3, -1, -2, -2, -2, -1, -2, -2] +faultiest -2.1 0.53852 [-3, -1, -2, -2, -2, -2, -2, -2, -3, -2] +faultily -2.0 0.89443 [-2, -2, -2, -3, -2, -1, 0, -3, -2, -3] +faultiness -1.5 0.92195 [-1, -1, -3, -1, 0, -2, -3, -1, -2, -1] +faulting -1.4 0.4899 [-1, -2, -1, -1, -2, -1, -1, -2, -1, -2] +faultless 2.0 1.41421 [3, 2, 0, 1, 3, 1, 4, 0, 2, 4] +faultlessly 2.0 1.09545 [3, 3, 2, 2, 0, 3, 2, 3, 2, 0] +faultlessness 1.1 2.02237 [3, 2, 4, 2, 1, -1, -2, 1, -2, 3] +faults -2.1 0.3 [-2, -2, -2, -2, -2, -2, -3, -2, -2, -2] +faulty -1.3 0.45826 [-1, -1, -1, -1, -2, -2, -2, -1, -1, -1] +fav 2.0 0.63246 [2, 1, 2, 2, 2, 1, 3, 2, 3, 2] +fave 1.9 1.51327 [1, 3, -2, 3, 2, 3, 1, 3, 2, 3] +favor 1.7 0.64031 [2, 2, 2, 2, 2, 2, 0, 1, 2, 2] +favorable 2.1 0.7 [2, 1, 2, 3, 1, 2, 2, 3, 3, 2] +favorableness 2.2 0.87178 [1, 2, 1, 3, 2, 2, 2, 4, 2, 3] +favorably 1.6 0.66332 [2, 1, 1, 1, 1, 2, 2, 2, 3, 1] +favored 1.8 0.6 [2, 2, 1, 1, 3, 1, 2, 2, 2, 2] +favorer 1.3 1.18743 [2, 2, 1, 1, -2, 1, 2, 2, 2, 2] +favorers 1.4 0.4899 [2, 2, 1, 2, 1, 2, 1, 1, 1, 1] +favoring 1.8 0.6 [2, 1, 1, 3, 2, 2, 1, 2, 2, 2] +favorite 2.0 0.63246 [2, 1, 3, 1, 2, 2, 2, 3, 2, 2] +favorited 1.7 0.45826 [1, 2, 2, 1, 2, 2, 2, 1, 2, 2] +favorites 1.8 0.6 [1, 2, 1, 3, 2, 2, 1, 2, 2, 2] +favoritism 0.7 1.79165 [-1, 3, -1, -1, 2, -2, 2, 2, 3, 0] +favoritisms 0.7 0.9 [0, 2, -1, 1, 0, 0, 1, 1, 2, 1] +favors 1.0 0.7746 [2, 1, 1, 1, 2, 1, -1, 1, 1, 1] +favour 1.9 0.53852 [2, 1, 2, 3, 2, 2, 2, 1, 2, 2] +favoured 1.8 0.4 [1, 2, 2, 2, 1, 2, 2, 2, 2, 2] +favourer 1.6 0.4899 [1, 2, 2, 1, 1, 2, 2, 2, 1, 2] +favourers 1.6 0.66332 [2, 2, 1, 0, 2, 2, 1, 2, 2, 2] +favouring 1.3 0.45826 [1, 2, 1, 1, 2, 1, 1, 1, 1, 2] +favours 1.8 0.6 [3, 2, 1, 2, 1, 2, 2, 1, 2, 2] +fear -2.2 0.6 [-2, -3, -2, -3, -2, -1, -2, -3, -2, -2] +feared -2.2 0.6 [-2, -3, -2, -1, -3, -2, -3, -2, -2, -2] +fearful -2.2 0.87178 [-2, -2, -3, -1, -2, -3, -2, -2, -4, -1] +fearfuller -2.2 0.87178 [-1, -4, -2, -2, -1, -2, -3, -2, -3, -2] +fearfullest -2.5 1.0247 [-3, -3, -4, -4, -3, -2, -1, -2, -2, -1] +fearfully -2.2 0.87178 [-2, -2, -2, -1, -1, -3, -4, -2, -3, -2] +fearfulness -1.8 0.87178 [-1, -1, -1, -2, -2, -1, -4, -2, -2, -2] +fearing -2.7 0.9 [-3, -3, -3, -2, -4, -2, -1, -3, -2, -4] +fearless 1.9 0.83066 [3, 3, 3, 2, 2, 2, 1, 1, 1, 1] +fearlessly 1.1 1.22066 [2, -2, 1, 1, 2, 1, 3, 1, 1, 1] +fearlessness 1.1 1.13578 [3, 2, -1, 2, 0, 2, 1, 1, 1, 0] +fears -1.8 0.6 [-2, -2, -3, -2, -2, -1, -1, -2, -1, -2] +fearsome -1.7 0.64031 [-3, -1, -1, -2, -1, -2, -2, -2, -1, -2] +fed up -1.8 1.249 [-2, -2, -3, -4, -2, -2, -1, -2, -1, 1] +feeble -1.2 1.249 [-2, -2, -3, -1, -1, -2, -1, -1, 2, -1] +feeling 0.5 1.0247 [0, 0, 0, 3, 0, 2, 0, 0, 0, 0] +felonies -2.5 0.5 [-3, -3, -3, -2, -2, -2, -2, -3, -2, -3] +felony -2.5 1.36015 [-4, -3, -4, -2, -3, -3, -2, -3, -2, 1] +ferocious -0.4 1.56205 [1, 1, -2, -3, -1, 2, 1, -2, -1, 0] +ferociously -1.1 1.86815 [-3, -4, 2, -2, 0, -2, -1, -1, 2, -2] +ferociousness -1.0 1.89737 [2, -4, -2, 0, -2, -3, -1, 0, 2, -2] +ferocities -1.0 1.54919 [1, 0, -2, 0, 0, -3, 0, 0, -2, -4] +ferocity -0.7 1.67631 [-2, -1, -4, 0, 0, -3, 1, 1, 0, 1] +fervent 1.1 1.44568 [3, 0, 0, 1, -2, 2, 2, 3, 1, 1] +fervid 0.5 2.20227 [4, -2, 1, -2, 4, 0, -1, 2, 1, -2] +festival 2.2 0.6 [2, 2, 3, 2, 3, 2, 2, 2, 3, 1] +festivalgoer 1.3 1.1 [1, 3, 2, 3, 0, 0, 1, 2, 0, 1] +festivalgoers 1.2 0.9798 [2, 2, 0, 0, 0, 2, 2, 0, 2, 2] +festivals 1.5 1.11803 [2, 0, 2, 3, 0, 3, 2, 1, 2, 0] +festive 2.0 0.63246 [2, 3, 2, 3, 1, 2, 2, 2, 1, 2] +festively 2.2 0.6 [2, 2, 3, 1, 3, 2, 3, 2, 2, 2] +festiveness 2.4 0.8 [1, 3, 2, 1, 3, 3, 3, 3, 2, 3] +festivities 2.1 0.7 [1, 2, 1, 2, 3, 2, 3, 3, 2, 2] +festivity 2.2 1.07703 [3, 3, 3, 0, 2, 1, 3, 3, 1, 3] +feud -1.4 0.66332 [-3, -2, -1, -2, -1, -1, -1, -1, -1, -1] +feudal -0.8 0.87178 [-1, -2, -2, 0, 0, 0, -2, -1, 0, 0] +feudalism -0.9 1.37477 [-2, -3, -2, -3, 0, 0, 1, 0, 0, 0] +feudalisms -0.2 0.74833 [0, 0, 0, 0, 0, 0, -1, 0, -2, 1] +feudalist -0.9 1.13578 [-2, -2, -2, -2, 0, 0, 1, 0, 0, -2] +feudalistic -1.1 0.7 [0, -1, -1, 0, -2, -1, -2, -1, -2, -1] +feudalities -0.4 1.0198 [-1, 0, -1, -2, -1, 0, -1, 0, 0, 2] +feudality -0.5 1.28452 [1, -1, 0, -1, 1, 0, -3, -2, 1, -1] +feudalization -0.3 1.18743 [-2, -2, 0, 0, 2, 0, -1, -1, 1, 0] +feudalize -0.5 0.92195 [-1, 0, -1, 0, -2, 0, 1, 0, 0, -2] +feudalized -0.8 1.07703 [-1, -1, -3, 0, 0, 0, 1, -1, -2, -1] +feudalizes -0.1 0.53852 [0, 0, -1, 0, -1, 0, 0, 0, 1, 0] +feudalizing -0.7 1.34536 [2, -2, -1, 0, 0, -2, -1, -2, 1, -2] +feudally -0.6 0.66332 [0, 0, -1, -1, 0, -1, 0, -1, -2, 0] +feudaries -0.3 0.9 [0, 0, 0, -2, -2, 0, 0, 0, 0, 1] +feudary -0.8 0.74833 [0, 0, -1, -1, -2, 0, -1, 0, -2, -1] +feudatories -0.5 0.92195 [-3, 0, -1, 0, 0, 0, 0, -1, 0, 0] +feudatory -0.1 0.83066 [-2, 0, 0, 0, 1, 0, 1, -1, 0, 0] +feuded -2.2 0.6 [-2, -2, -2, -1, -3, -3, -2, -3, -2, -2] +feuding -1.6 0.66332 [-2, -1, -2, -2, -1, -1, -3, -1, -2, -1] +feudist -1.1 0.83066 [-2, 0, -3, -1, -1, -1, 0, -1, -1, -1] +feudists -0.7 0.9 [0, 0, -1, 0, 0, -2, -2, 0, -2, 0] +feuds -1.4 1.0198 [-2, -2, -2, -1, -1, -1, -3, -2, 1, -1] +fiasco -2.3 0.64031 [-2, -2, -3, -3, -2, -3, -1, -3, -2, -2] +fidgety -1.4 0.66332 [-1, -2, -2, 0, -1, -1, -2, -1, -2, -2] +fiery -1.4 0.91652 [0, -1, -1, -2, -2, 0, -3, -1, -2, -2] +fiesta 2.1 0.7 [3, 2, 1, 2, 2, 1, 3, 3, 2, 2] +fiestas 1.5 1.0247 [3, 0, 3, 1, 0, 2, 2, 1, 2, 1] +fight -1.6 1.56205 [-1, -2, -3, -3, -1, 2, -4, -1, -2, -1] +fighter 0.6 1.11355 [3, 0, 0, -1, 1, 0, 1, 0, 2, 0] +fighters -0.2 1.46969 [-1, 2, -2, 0, 2, 0, -2, -2, 0, 1] +fighting -1.5 1.11803 [-1, -2, -3, -2, -2, -2, 0, -3, 0, 0] +fightings -1.9 0.53852 [-2, -3, -1, -2, -2, -2, -2, -1, -2, -2] +fights -1.7 0.64031 [-2, -2, -1, -2, -2, -1, -3, -1, -1, -2] +fine 0.8 0.6 [1, 0, 1, 2, 1, 1, 1, 1, 0, 0] +fire -1.4 1.49666 [-2, 0, -4, 0, -2, -1, -1, 0, -4, 0] +fired -2.6 0.91652 [-2, -3, -4, -3, -3, -1, -3, -3, -1, -3] +firing -1.4 0.8 [0, -1, -1, -1, -1, -2, -2, -3, -2, -1] +fit 1.5 1.0247 [2, 1, 2, 0, 4, 2, 1, 1, 1, 1] +fitness 1.1 0.9434 [0, 2, 1, 0, 1, 3, 2, 1, 0, 1] +flagship 0.4 0.91652 [0, 0, 0, 0, 0, 0, 0, 1, 3, 0] +flatter 0.4 1.42829 [-2, -2, 1, 2, 1, -1, 1, 2, 1, 1] +flattered 1.6 2.00998 [2, 3, 3, 1, 2, 3, 3, 1, 2, -4] +flatterer -0.3 1.9 [-4, 2, -1, 1, 2, 2, -2, -1, -1, -1] +flatterers 0.3 1.84662 [2, 1, -2, 1, 0, -4, 2, 1, 2, 0] +flatteries 1.2 1.16619 [2, 2, 3, 1, -1, 0, 0, 1, 2, 2] +flattering 1.3 2.19317 [3, 2, 2, 3, -4, 4, -1, 2, 1, 1] +flatteringly 1.0 1.61245 [2, 2, 1, 2, 1, -3, -1, 2, 2, 2] +flatters 0.6 2.10713 [1, 1, 2, 2, 3, -1, -2, 2, -4, 2] +flattery 0.4 1.49666 [1, -1, -2, 1, 3, -2, 1, 1, 1, 1] +flawless 2.3 2.14709 [4, 3, 4, 4, 1, 2, 4, 4, -2, -1] +flawlessly 0.8 1.83303 [-2, 2, 3, 1, 0, -2, 2, 2, -1, 3] +flees -0.7 1.18743 [-3, 0, -2, 0, -1, -1, -1, 1, -1, 1] +flexibilities 1.0 1.09545 [1, 3, 1, 0, 1, -1, 2, 0, 2, 1] +flexibility 1.4 0.8 [2, 2, 0, 2, 1, 2, 1, 0, 2, 2] +flexible 0.9 0.83066 [2, 1, 0, 0, 1, 2, 0, 1, 2, 0] +flexibly 1.3 0.78102 [2, 1, 0, 0, 1, 2, 2, 1, 2, 2] +flirtation 1.7 0.64031 [3, 1, 1, 2, 2, 1, 2, 1, 2, 2] +flirtations -0.1 1.64012 [0, -4, 1, 0, 0, -2, 1, 1, 2, 0] +flirtatious 0.5 2.5 [-4, 1, 2, 1, 2, -3, 3, 4, -2, 1] +flirtatiously -0.1 1.86815 [2, -1, 1, 2, 1, 1, -3, -3, -2, 1] +flirtatiousness 0.6 1.85472 [1, 0, 2, 1, 1, 2, 1, -4, -1, 3] +flirted -0.2 1.98997 [1, 2, -1, 1, 1, 1, -3, -3, -3, 2] +flirter -0.4 1.85472 [1, 2, -1, 0, 1, 1, -3, -3, -3, 1] +flirters 0.6 2.10713 [1, 4, 0, 1, 2, 1, -4, 2, 1, -2] +flirtier -0.1 1.37477 [-2, 1, 1, 1, 1, -2, 1, -1, -2, 1] +flirtiest 0.4 1.74356 [3, 1, 2, 1, 1, -1, -3, -2, 1, 1] +flirting 0.8 1.83303 [1, 2, 2, 2, 2, -1, 1, 2, -4, 1] +flirts 0.7 1.18743 [2, -1, 2, 1, 1, -2, 1, 1, 1, 1] +flirty 0.6 1.35647 [2, -2, 2, 1, 1, -2, 1, 1, 1, 1] +flop -1.4 0.4899 [-1, -1, -2, -1, -2, -1, -2, -1, -2, -1] +flops -1.4 0.8 [-2, -2, -2, 0, -2, -1, -2, -1, 0, -2] +flu -1.6 0.8 [0, -2, -1, -2, -1, -2, -3, -1, -2, -2] +flunk -1.3 0.78102 [-2, -1, -1, -3, -1, -1, 0, -2, -1, -1] +flunked -2.1 0.9434 [-4, -1, -3, -2, -1, -1, -3, -2, -2, -2] +flunker -1.9 1.04403 [-4, -1, -3, -2, -1, -1, -3, -2, -1, -1] +flunkers -1.6 0.8 [-2, -1, -3, -2, 0, -1, -1, -2, -2, -2] +flunkey -1.8 0.9798 [-4, -1, -3, -2, -1, -1, -2, -2, -1, -1] +flunkeys -0.6 1.2 [-2, -1, -1, 2, -1, 0, -1, -2, 1, -1] +flunkies -1.4 1.11355 [-2, -2, 0, -3, 1, -2, -1, -2, -1, -2] +flunking -1.5 0.92195 [-2, -1, -1, -3, -1, -1, 0, -2, -3, -1] +flunks -1.8 1.32665 [0, -2, -3, -3, -2, -3, -2, -1, 1, -3] +flunky -1.8 1.4 [-2, -3, -3, -3, -2, -1, -2, -2, 2, -2] +flustered -1.0 1.18322 [-1, -1, -1, -1, -3, -2, 2, -1, -1, -1] +focused 1.6 0.91652 [2, 2, 1, 3, 0, 1, 1, 2, 3, 1] +foe -1.9 1.22066 [-1, -3, -2, -2, -2, -2, -4, 1, -2, -2] +foehns 0.2 0.4 [1, 0, 0, 0, 0, 0, 0, 0, 1, 0] +foeman -1.8 0.6 [-2, -3, -1, -2, -2, -2, -2, -1, -1, -2] +foemen -0.3 1.18743 [0, 0, -1, 0, 0, -2, -2, -1, 2, 1] +foes -2.0 0.89443 [-2, -1, -2, -2, -4, -3, -2, -1, -1, -2] +foetal -0.1 0.3 [0, -1, 0, 0, 0, 0, 0, 0, 0, 0] +foetid -2.3 1.41774 [-1, -3, 0, -2, -3, 0, -3, -3, -4, -4] +foetor -3.0 0.89443 [-3, -4, -2, -3, -3, -1, -4, -4, -3, -3] +foetors -2.1 1.04403 [-2, -3, -1, -3, -2, -2, 0, -4, -2, -2] +foetus 0.2 0.6 [0, 0, 0, 0, 0, 0, 0, 0, 2, 0] +foetuses 0.2 0.6 [2, 0, 0, 0, 0, 0, 0, 0, 0, 0] +fond 1.9 0.83066 [2, 3, 2, 3, 1, 1, 3, 2, 1, 1] +fondly 1.9 0.7 [1, 2, 3, 2, 2, 3, 2, 1, 1, 2] +fondness 2.5 0.67082 [3, 2, 2, 2, 2, 3, 4, 3, 2, 2] +fool -1.9 0.53852 [-2, -2, -2, -2, -1, -2, -2, -3, -1, -2] +fooled -1.6 0.4899 [-2, -1, -1, -2, -2, -1, -2, -1, -2, -2] +fooleries -1.8 1.07703 [-1, -2, 0, -2, -1, -2, -4, -2, -3, -1] +foolery -1.8 0.87178 [-2, -2, -3, 0, -3, -1, -2, -2, -2, -1] +foolfish -0.8 0.87178 [-1, 0, -1, -2, 0, 0, 0, -2, 0, -2] +foolfishes -0.4 0.4899 [-1, -1, -1, 0, 0, 0, 0, 0, 0, -1] +foolhardier -1.5 0.67082 [-2, -1, -2, -1, -2, -1, -2, -2, 0, -2] +foolhardiest -1.3 0.64031 [0, -2, -1, -1, -1, -1, -2, -1, -2, -2] +foolhardily -1.0 1.41421 [-1, -1, -2, -2, -2, -2, -1, -1, 3, -1] +foolhardiness -1.6 0.66332 [-3, -1, -1, -1, -2, -1, -2, -2, -2, -1] +foolhardy -1.4 0.4899 [-2, -2, -1, -1, -1, -2, -1, -1, -2, -1] +fooling -1.7 0.64031 [-2, -2, -1, -2, -2, -2, -1, -3, -1, -1] +foolish -1.1 0.83066 [-1, -1, -1, -2, -2, -1, -1, -2, 1, -1] +foolisher -1.7 0.64031 [-2, -1, -2, -1, -2, -1, -2, -3, -2, -1] +foolishest -1.4 1.28062 [-2, 1, -2, -3, -2, -2, -1, 1, -2, -2] +foolishly -1.8 0.6 [-2, -1, -2, -2, -3, -1, -1, -2, -2, -2] +foolishness -1.8 0.6 [-1, -1, -2, -2, -2, -1, -3, -2, -2, -2] +foolishnesses -2.0 0.89443 [-1, -1, -1, -2, -3, -1, -3, -3, -2, -3] +foolproof 1.6 0.91652 [2, 1, 3, 1, 1, 0, 1, 2, 2, 3] +fools -2.2 0.74833 [-2, -4, -2, -2, -1, -2, -2, -2, -2, -3] +foolscaps -0.8 0.6 [0, -1, -1, -1, 0, -1, -2, 0, -1, -1] +forbid -1.3 0.78102 [-2, -2, -1, -1, -1, -1, 0, -1, -1, -3] +forbiddance -1.4 1.35647 [-3, -1, -2, -3, -1, 2, -1, -2, -2, -1] +forbiddances -1.0 2.0 [-2, 3, 1, -2, -4, -2, -3, -1, -1, 1] +forbidden -1.8 0.74833 [-1, -2, -2, -2, -1, -1, -3, -3, -2, -1] +forbidder -1.6 0.66332 [-1, -2, -2, -2, -2, 0, -2, -2, -2, -1] +forbidders -1.5 0.80623 [-1, -2, -1, -3, -2, -2, 0, -2, -1, -1] +forbidding -1.9 0.7 [-3, -1, -1, -2, -2, -1, -3, -2, -2, -2] +forbiddingly -1.9 0.53852 [-2, -1, -2, -2, -2, -2, -3, -2, -1, -2] +forbids -1.3 0.45826 [-1, -1, -2, -1, -1, -2, -1, -2, -1, -1] +forced -2.0 0.63246 [-1, -2, -3, -3, -1, -2, -2, -2, -2, -2] +foreclosure -0.5 1.43178 [-1, -2, -3, 2, -1, 1, -1, 0, 1, -1] +foreclosures -2.4 0.66332 [-3, -2, -3, -2, -3, -3, -1, -2, -2, -3] +forgave 1.4 0.91652 [2, 2, 1, 2, 1, -1, 1, 2, 2, 2] +forget -0.9 0.53852 [-1, -1, -1, -1, 0, -1, -1, 0, -2, -1] +forgetful -1.1 1.3 [-3, -1, -2, 1, 0, -2, 1, -1, -2, -2] +forgivable 1.7 0.64031 [2, 1, 2, 1, 2, 2, 1, 2, 3, 1] +forgivably 1.6 0.66332 [1, 1, 2, 1, 2, 2, 1, 2, 3, 1] +forgive 1.1 1.22066 [2, 1, 1, 3, 1, 1, 1, 2, -2, 1] +forgiven 1.6 0.66332 [2, 1, 1, 3, 2, 2, 1, 2, 1, 1] +forgiveness 1.1 1.22066 [2, 1, 1, 1, 3, 2, -2, 1, 1, 1] +forgiver 1.7 0.78102 [3, 1, 1, 3, 1, 2, 1, 2, 2, 1] +forgivers 1.2 0.6 [2, 1, 2, 1, 0, 1, 1, 2, 1, 1] +forgives 1.7 0.78102 [2, 1, 3, 1, 1, 3, 2, 1, 1, 2] +forgiving 1.9 0.7 [2, 3, 2, 1, 2, 3, 1, 1, 2, 2] +forgivingly 1.4 0.4899 [2, 1, 2, 1, 1, 1, 2, 1, 2, 1] +forgivingness 1.8 0.6 [3, 1, 2, 1, 2, 2, 2, 2, 2, 1] +forgotten -0.9 0.53852 [-1, 0, -1, 0, -1, -1, -1, -1, -2, -1] +fortunate 1.9 0.53852 [2, 2, 1, 1, 2, 2, 2, 3, 2, 2] +fought -1.3 0.78102 [-2, -1, -2, -1, 0, -1, -1, -1, -1, -3] +foughten -1.9 1.3 [-1, -3, 0, -2, -4, -3, -2, 0, -1, -3] +frantic -1.9 0.7 [-3, -2, -2, -1, -2, -1, -2, -3, -1, -2] +frantically -1.4 0.4899 [-2, -1, -2, -1, -1, -1, -1, -1, -2, -2] +franticness -0.7 1.18743 [-1, -2, 2, -1, -1, -1, 1, -2, -1, -1] +fraud -2.8 0.6 [-3, -3, -2, -3, -2, -3, -3, -2, -4, -3] +frauds -2.3 0.45826 [-2, -2, -2, -3, -3, -2, -3, -2, -2, -2] +fraudster -2.5 0.92195 [-4, -1, -2, -2, -4, -2, -3, -2, -3, -2] +fraudsters -2.4 0.91652 [-4, -3, -3, -3, -1, -2, -2, -2, -1, -3] +fraudulence -2.3 0.78102 [-3, -2, -2, -3, -2, -1, -2, -4, -2, -2] +fraudulent -2.2 0.6 [-2, -3, -2, -2, -2, -1, -3, -3, -2, -2] +freak -1.9 0.9434 [-3, -2, -1, -2, -4, -1, -2, -1, -2, -1] +freaked -1.2 1.32665 [-2, -2, 1, 0, -1, -2, -3, 1, -2, -2] +freakier -1.3 1.1 [-3, -2, -2, 1, -2, -2, -1, 0, -1, -1] +freakiest -1.6 1.0198 [-2, -3, -3, -3, -1, -1, -1, 0, -1, -1] +freakiness -1.4 0.8 [-1, -1, -1, -2, -3, 0, -2, -1, -2, -1] +freaking -1.8 1.16619 [0, -4, -3, -2, -3, -1, -1, -1, -2, -1] +freakish -2.1 1.37477 [-1, -3, -2, -1, -2, -3, -4, -3, 1, -3] +freakishly -0.8 1.249 [-2, -2, 1, -2, -1, 1, -1, 1, -1, -2] +freakishness -1.4 1.68523 [-2, -4, -1, 0, -1, -2, 1, 1, -4, -2] +freakout -1.8 1.6 [-3, 1, -3, -2, -3, -1, -4, 1, -2, -2] +freakouts -1.5 0.92195 [-2, -2, -1, -1, -2, -2, -2, 1, -2, -2] +freaks -0.4 1.35647 [2, 0, -2, -1, 0, 1, -2, 1, -1, -2] +freaky -1.5 1.20416 [-2, -2, -2, -2, -1, -2, 2, -2, -2, -2] +free 2.3 0.9 [2, 4, 3, 3, 2, 1, 2, 3, 1, 2] +freebase -0.1 1.44568 [2, 0, -2, 1, -3, 0, -1, 0, 1, 1] +freebased 0.8 1.16619 [2, 0, -1, 0, 3, 0, 1, 2, 1, 0] +freebases 0.8 1.249 [2, 0, -1, 0, 2, 0, 0, 3, 2, 0] +freebasing -0.4 1.56205 [-4, -2, 0, 0, 1, 2, 0, -1, 0, 0] +freebee 1.3 0.78102 [1, 2, 1, 1, 1, 0, 3, 2, 1, 1] +freebees 1.3 1.26886 [2, 2, -2, 2, 2, 2, 0, 2, 1, 2] +freebie 1.8 0.9798 [2, 1, 3, 2, 2, 4, 1, 1, 1, 1] +freebies 1.8 0.9798 [2, 3, 1, 1, 2, 4, 1, 1, 2, 1] +freeboard 0.3 0.64031 [0, 0, 0, 0, 0, 1, 0, 0, 0, 2] +freeboards 0.7 0.9 [0, 0, 0, 1, 0, 0, 2, 2, 2, 0] +freeboot -0.7 1.67631 [1, -2, -3, -2, -1, -2, -1, 2, -1, 2] +freebooter -1.7 1.00499 [-2, -2, -3, -3, -2, -2, 0, -1, 0, -2] +freebooters -0.2 1.32665 [-1, -3, 1, 0, -2, 1, 0, 1, 0, 1] +freebooting -0.8 1.249 [-2, -2, -1, 2, -1, -1, -1, 1, -2, -1] +freeborn 1.2 0.74833 [1, 0, 3, 1, 1, 1, 1, 1, 2, 1] +freed 1.7 1.34536 [-2, 2, 3, 2, 2, 2, 3, 1, 2, 2] +freedman 1.1 0.9434 [1, 2, 0, 1, 2, 1, 3, 0, 0, 1] +freedmen 0.7 0.78102 [1, 2, 1, 2, 0, 1, 0, 0, 0, 0] +freedom 3.2 0.9798 [4, 4, 1, 3, 2, 4, 4, 3, 3, 4] +freedoms 1.2 1.07703 [2, 1, 1, 3, 2, 1, 2, 1, -1, 0] +freedwoman 1.6 1.74356 [3, 2, 0, 4, 4, 3, 1, -1, 0, 0] +freedwomen 1.3 0.78102 [2, 0, 2, 0, 2, 1, 1, 1, 2, 2] +freeform 0.9 0.83066 [0, 0, 0, 2, 1, 2, 1, 1, 2, 0] +freehand 0.5 0.80623 [0, 0, 0, 1, 0, 2, 0, 2, 0, 0] +freehanded 1.4 0.91652 [3, 0, 0, 2, 1, 2, 2, 1, 2, 1] +freehearted 1.5 0.67082 [2, 0, 1, 2, 2, 2, 2, 1, 1, 2] +freehold 0.7 0.78102 [1, 1, 0, 0, 2, 0, 2, 0, 1, 0] +freeholder 0.5 0.5 [1, 1, 0, 0, 0, 1, 1, 0, 1, 0] +freeholders 0.1 0.83066 [0, 0, 1, 0, 0, 1, 0, -2, 0, 1] +freeholds 1.0 0.63246 [1, 0, 2, 0, 1, 2, 1, 1, 1, 1] +freeing 2.1 1.04403 [2, 1, 1, 1, 4, 2, 2, 4, 2, 2] +freelance 1.2 1.66132 [3, 0, 0, 0, 0, 1, 4, 0, 4, 0] +freelanced 0.7 1.00499 [3, 0, 0, 0, 0, 2, 1, 0, 1, 0] +freelancer 1.1 1.04403 [2, 0, 3, 2, 1, 0, 0, 0, 2, 1] +freelancers 0.4 0.66332 [0, 0, 0, 2, 0, 0, 0, 1, 1, 0] +freelances 0.7 0.9 [1, 0, 0, 0, 0, 2, 2, 0, 2, 0] +freelancing 0.4 0.66332 [2, 0, 0, 0, 1, 0, 0, 0, 1, 0] +freeload -1.9 1.04403 [-2, -3, -1, -2, -1, 0, -1, -3, -3, -3] +freeloaded -1.6 0.8 [-2, 0, -3, -1, -1, -2, -2, -2, -2, -1] +freeloader -0.7 1.00499 [-2, 0, -1, -2, -1, 1, -1, 1, -1, -1] +freeloaders -0.1 1.57797 [-2, -2, -1, 0, 0, 2, -2, 0, 2, 2] +freeloading -1.3 2.0025 [1, -2, -4, -2, -3, -3, 1, 2, 0, -3] +freeloads -1.3 0.9 [-1, -1, -2, -2, -2, 0, 0, -1, -1, -3] +freely 1.9 0.53852 [2, 1, 2, 2, 2, 3, 2, 2, 1, 2] +freeman 1.7 0.78102 [2, 2, 2, 1, 2, 0, 3, 1, 2, 2] +freemartin -0.5 0.92195 [0, 0, 0, -1, 0, -1, 0, 0, -3, 0] +freemasonries 0.7 0.78102 [0, 1, 0, 0, 0, 1, 1, 0, 2, 2] +freemasonry 0.3 0.64031 [1, 0, 2, 0, 0, 0, 0, 0, 0, 0] +freemen 1.5 0.67082 [1, 1, 0, 2, 2, 2, 2, 2, 1, 2] +freeness 1.6 0.66332 [1, 2, 3, 2, 2, 1, 1, 1, 2, 1] +freenesses 1.7 0.78102 [1, 2, 1, 2, 2, 2, 3, 2, 2, 0] +freer 1.1 0.7 [2, 2, 0, 2, 1, 1, 1, 0, 1, 1] +freers 1.0 0.89443 [0, 1, 1, 2, 3, 1, 0, 1, 0, 1] +frees 1.2 0.6 [1, 2, 0, 1, 1, 1, 2, 1, 1, 2] +freesia 0.4 0.91652 [0, 0, 3, 0, 1, 0, 0, 0, 0, 0] +freesias 0.4 0.66332 [0, 0, 0, 1, 1, 2, 0, 0, 0, 0] +freest 1.6 1.28062 [3, 4, 0, 3, 0, 1, 1, 2, 1, 1] +freestanding 1.1 0.83066 [2, 1, 1, 2, 0, 0, 0, 2, 1, 2] +freestyle 0.7 0.9 [2, 0, 1, 0, 2, 0, 0, 2, 0, 0] +freestyler 0.4 0.91652 [0, 0, 0, 0, 1, 0, 0, 0, 0, 3] +freestylers 0.8 0.87178 [2, 1, 0, 0, 0, 1, 0, 2, 2, 0] +freestyles 0.3 0.64031 [0, 0, 0, 0, 1, 0, 0, 0, 0, 2] +freethinker 1.0 0.63246 [1, 2, 1, 1, 2, 1, 0, 0, 1, 1] +freethinkers 1.0 0.7746 [1, 0, 0, 1, 2, 2, 1, 2, 0, 1] +freethinking 1.1 0.7 [1, 0, 1, 1, 2, 2, 0, 2, 1, 1] +freeware 0.7 1.48661 [1, 0, 0, 2, 4, 0, 1, -2, 1, 0] +freeway 0.2 0.6 [0, 0, 0, 0, 0, 0, 2, 0, 0, 0] +freewheel 0.5 1.11803 [2, 0, 1, 2, 0, -2, 0, 0, 1, 1] +freewheeled 0.3 0.78102 [1, 0, 0, 0, 0, 1, 2, -1, 0, 0] +freewheeler 0.2 0.87178 [-2, 1, 0, 0, 0, 1, 1, 1, 0, 0] +freewheelers -0.3 1.00499 [-2, 0, 0, 0, 2, -1, -1, 0, -1, 0] +freewheeling 0.5 1.11803 [-1, 2, 0, -1, 1, 2, 2, 0, 0, 0] +freewheelingly 0.8 0.87178 [1, 2, 0, 0, 1, 2, 1, -1, 1, 1] +freewheels 0.6 0.91652 [0, 3, 1, 1, 1, 0, 0, 0, 0, 0] +freewill 1.0 0.7746 [1, 1, 1, -1, 1, 1, 1, 2, 2, 1] +freewriting 0.8 1.07703 [0, 2, 0, 0, 1, 0, 3, 0, 2, 0] +freeze 0.2 0.9798 [-1, 0, 1, 1, -1, 0, 0, -1, 2, 1] +freezers -0.1 0.3 [0, 0, 0, -1, 0, 0, 0, 0, 0, 0] +freezes -0.1 1.13578 [0, -2, -2, 1, 0, 0, 0, 0, 2, 0] +freezing -0.4 1.28062 [-2, -1, -2, -2, 0, 0, 0, 1, 2, 0] +freezingly -1.6 0.4899 [-1, -2, -2, -1, -2, -2, -2, -2, -1, -1] +frenzy -1.3 1.48661 [-1, -1, -2, -2, 2, -4, -1, -2, 0, -2] +fresh 1.3 0.45826 [2, 2, 1, 1, 1, 1, 2, 1, 1, 1] +friend 2.2 0.6 [2, 2, 3, 2, 3, 3, 1, 2, 2, 2] +friended 1.7 0.78102 [2, 2, 1, 3, 1, 1, 2, 3, 1, 1] +friending 1.8 1.07703 [1, 4, 2, 0, 1, 3, 2, 2, 1, 2] +friendless -1.5 0.67082 [-1, -2, -2, -1, 0, -2, -1, -2, -2, -2] +friendlessness -0.3 2.05183 [-2, -2, 2, 1, -4, -1, 2, 1, -2, 2] +friendlier 2.0 0.63246 [3, 2, 2, 1, 2, 2, 2, 1, 3, 2] +friendlies 2.2 0.74833 [3, 2, 2, 3, 2, 2, 1, 3, 1, 3] +friendliest 2.6 0.91652 [3, 3, 1, 3, 2, 1, 3, 3, 4, 3] +friendlily 1.8 0.74833 [1, 2, 2, 1, 3, 1, 1, 2, 3, 2] +friendliness 2.0 0.7746 [3, 1, 3, 2, 2, 3, 2, 1, 2, 1] +friendly 2.2 0.6 [2, 1, 3, 3, 2, 2, 3, 2, 2, 2] +friends 2.1 0.53852 [3, 3, 2, 2, 2, 1, 2, 2, 2, 2] +friendship 1.9 0.53852 [1, 2, 2, 1, 3, 2, 2, 2, 2, 2] +friendships 1.6 0.91652 [2, 1, 1, 0, 3, 2, 2, 3, 1, 1] +fright -1.6 1.35647 [-2, -1, 0, -3, -2, -4, 1, -1, -2, -2] +frighted -1.4 0.91652 [0, -1, -1, -1, -2, -1, -3, -1, -1, -3] +frighten -1.4 0.8 [0, -1, -1, -1, -2, -1, -3, -2, -1, -2] +frightened -1.9 0.7 [-2, -3, -1, -1, -2, -2, -3, -1, -2, -2] +frightening -2.2 0.9798 [-1, -1, -4, -3, -3, -3, -2, -2, -1, -2] +frighteningly -2.1 0.7 [-2, -2, -2, -2, -4, -2, -1, -2, -2, -2] +frightens -1.7 0.78102 [-2, -1, -2, -1, -1, -1, -2, -3, -3, -1] +frightful -2.3 0.78102 [-2, -2, -2, -2, -3, -2, -3, -1, -4, -2] +frightfully -1.7 0.78102 [-1, -1, -1, -2, -2, -1, -2, -3, -1, -3] +frightfulness -1.9 0.7 [-1, -1, -2, -3, -3, -2, -1, -2, -2, -2] +frighting -1.5 0.67082 [-1, -2, -2, -3, -1, -1, -1, -1, -2, -1] +frights -1.1 0.83066 [-2, 0, -2, 0, -2, -1, 0, -1, -1, -2] +frisky 1.0 1.48324 [1, -2, 1, 1, 1, 3, 3, 2, -1, 1] +frowning -1.4 1.42829 [-1, -1, -1, -3, -3, 1, -2, -3, 1, -2] +frustrate -2.0 0.63246 [-2, -3, -2, -1, -3, -2, -2, -1, -2, -2] +frustrated -2.4 0.66332 [-2, -1, -3, -3, -2, -2, -3, -2, -3, -3] +frustrates -1.9 0.7 [-1, -1, -3, -2, -1, -2, -2, -2, -3, -2] +frustrating -1.9 0.83066 [-2, -2, -1, -1, -1, -2, -2, -2, -4, -2] +frustratingly -2.0 0.63246 [-1, -3, -2, -2, -2, -2, -2, -3, -2, -1] +frustration -2.1 0.7 [-3, -2, -3, -2, -1, -2, -3, -2, -1, -2] +frustrations -2.0 0.7746 [-2, -1, -1, -3, -2, -2, -3, -3, -2, -1] +fuck -2.5 1.20416 [0, -3, -4, -3, -2, -3, -4, -1, -2, -3] +fucked -3.4 0.66332 [-2, -3, -4, -3, -4, -4, -3, -4, -3, -4] +fucker -3.3 0.78102 [-3, -4, -4, -2, -3, -4, -4, -2, -4, -3] +fuckers -2.9 0.9434 [-3, -3, -4, -3, -4, -4, -2, -1, -2, -3] +fuckface -3.2 1.07703 [-4, -2, -4, -1, -4, -4, -2, -4, -3, -4] +fuckhead -3.1 1.04403 [-1, -4, -2, -4, -3, -3, -2, -4, -4, -4] +fucks -2.1 1.13578 [-3, -2, -1, -1, -1, -2, -4, -2, -4, -1] +fucktard -3.1 0.9434 [-4, -4, -4, -3, -4, -2, -4, -2, -2, -2] +fud -1.1 1.37477 [-1, -3, -1, -1, -3, -2, 2, 0, -1, -1] +fuked -2.5 0.92195 [-2, -3, -3, -3, -3, -3, 0, -3, -3, -2] +fuking -3.2 0.9798 [-4, -1, -3, -4, -3, -2, -4, -3, -4, -4] +fulfill 1.9 1.04403 [1, 1, 2, 4, 1, 1, 2, 1, 3, 3] +fulfilled 1.8 0.87178 [1, 2, 1, 0, 2, 2, 3, 2, 2, 3] +fulfills 1.0 1.09545 [2, 1, 1, 1, 1, -2, 2, 2, 1, 1] +fume -1.2 1.16619 [0, 0, 0, -2, -3, -2, -1, -3, -1, 0] +fumed -1.8 0.87178 [-3, -2, -3, -2, -2, 0, -2, -1, -1, -2] +fumeless 0.3 0.64031 [0, 0, 0, 1, 0, 0, 0, 2, 0, 0] +fumelike -0.7 1.18743 [0, 0, -3, 0, 0, -2, -1, -2, 1, 0] +fumer 0.7 0.9 [2, 1, 0, 1, 0, 2, 0, -1, 1, 1] +fumers -0.8 0.6 [0, -1, -1, -2, -1, 0, 0, -1, -1, -1] +fumes -0.1 1.13578 [0, -2, 0, 0, -1, 1, -1, -1, 1, 2] +fumet 0.4 1.0198 [2, 0, 0, -1, 0, 1, -1, 0, 2, 1] +fumets -0.4 0.66332 [0, -1, 0, -1, 0, 0, -2, 0, 0, 0] +fumette -0.6 1.11355 [-2, -2, 0, -1, -1, 2, 0, 0, -1, -1] +fuming -2.7 0.64031 [-2, -3, -3, -2, -3, -4, -3, -2, -2, -3] +fun 2.3 0.45826 [2, 3, 2, 3, 2, 2, 3, 2, 2, 2] +funeral -1.5 1.74642 [-2, -3, -2, -1, -3, -1, -4, 1, 2, -2] +funerals -1.6 2.2891 [-3, -4, -1, -4, 2, -3, -3, 2, 1, -3] +funky -0.4 1.62481 [0, -1, 2, -1, 2, 0, -4, -1, 0, -1] +funned 2.3 0.9 [2, 3, 3, 4, 1, 2, 2, 2, 3, 1] +funnel 0.1 0.53852 [1, 0, 0, 0, 0, -1, 0, 0, 1, 0] +funneled 0.1 0.3 [0, 0, 0, 0, 0, 1, 0, 0, 0, 0] +funnelform 0.5 0.80623 [0, 0, 1, 0, 0, 0, 0, 2, 2, 0] +funneling -0.1 0.3 [0, 0, 0, 0, -1, 0, 0, 0, 0, 0] +funnelled -0.1 0.3 [0, 0, 0, 0, -1, 0, 0, 0, 0, 0] +funnelling 0.1 0.3 [0, 0, 0, 0, 1, 0, 0, 0, 0, 0] +funnels 0.4 0.66332 [0, 0, 0, 1, 0, 0, 0, 0, 2, 1] +funner 2.2 0.74833 [2, 2, 3, 4, 1, 2, 2, 2, 2, 2] +funnest 2.9 0.7 [4, 3, 4, 3, 2, 3, 2, 3, 2, 3] +funnier 1.7 1.00499 [2, 2, -1, 2, 2, 2, 3, 1, 2, 2] +funnies 1.3 1.00499 [2, 1, -1, 2, 1, 2, 3, 1, 1, 1] +funniest 2.6 0.8 [3, 3, 3, 3, 2, 2, 1, 2, 4, 3] +funnily 1.9 0.53852 [2, 3, 1, 2, 2, 2, 2, 1, 2, 2] +funniness 1.8 0.9798 [3, 2, 3, 2, 2, 1, 3, 0, 1, 1] +funninesses 1.6 0.91652 [1, 3, 0, 3, 1, 2, 1, 2, 2, 1] +funning 1.8 0.9798 [2, 2, 1, 2, 1, 4, 0, 2, 2, 2] +funny 1.9 0.53852 [3, 2, 2, 1, 2, 2, 1, 2, 2, 2] +funnyman 1.4 0.4899 [2, 2, 1, 2, 1, 1, 1, 1, 2, 1] +funnymen 1.3 1.1 [2, 1, 1, 0, 0, 3, 3, 1, 2, 0] +furious -2.7 1.41774 [-3, -3, -3, -4, -4, -4, 1, -2, -3, -2] +furiously -1.9 1.04403 [-2, -2, -4, -2, -1, -2, -1, -3, 0, -2] +fury -2.7 0.78102 [-4, -3, -2, -2, -2, -3, -4, -2, -3, -2] +futile -1.9 0.83066 [0, -3, -2, -2, -2, -2, -3, -1, -2, -2] +gag -1.4 1.0198 [-2, -2, -1, -2, 0, -2, -3, 0, 0, -2] +gagged -1.3 1.55242 [-2, -2, -1, -2, 2, -3, -1, -3, 1, -2] +gain 2.4 0.4899 [2, 3, 2, 2, 3, 2, 3, 2, 3, 2] +gained 1.6 0.66332 [2, 1, 2, 1, 1, 3, 2, 1, 2, 1] +gaining 1.8 0.4 [1, 2, 2, 2, 1, 2, 2, 2, 2, 2] +gains 1.4 0.4899 [1, 2, 1, 2, 2, 2, 1, 1, 1, 1] +gallant 1.7 1.1 [4, 0, 3, 1, 1, 2, 2, 2, 1, 1] +gallantly 1.9 0.53852 [2, 2, 3, 2, 2, 2, 2, 1, 2, 1] +gallantry 2.6 0.8 [3, 3, 1, 2, 2, 3, 4, 2, 3, 3] +geek -0.8 0.9798 [0, 0, 0, -2, -3, -1, -1, 0, 0, -1] +geekier 0.2 1.4 [0, 3, -1, -1, -1, 1, 2, 1, -1, -1] +geekiest -0.1 0.9434 [1, -1, -1, -1, -1, 1, 1, 1, 0, -1] +geeks -0.4 0.91652 [0, 0, -1, 0, 0, 0, 0, 0, -3, 0] +geeky -0.6 0.91652 [0, 0, -1, 0, -1, 0, -1, 0, -3, 0] +generosities 2.6 0.4899 [3, 3, 2, 3, 2, 3, 2, 3, 2, 3] +generosity 2.3 0.64031 [3, 1, 2, 2, 3, 2, 3, 3, 2, 2] +generous 2.3 0.78102 [3, 2, 4, 2, 2, 1, 2, 3, 2, 2] +generously 1.8 0.74833 [3, 3, 2, 1, 2, 1, 1, 2, 1, 2] +generousness 2.4 0.91652 [3, 2, 3, 1, 3, 4, 3, 2, 2, 1] +genial 1.8 0.6 [3, 1, 2, 1, 2, 2, 1, 2, 2, 2] +gentle 1.9 0.53852 [2, 2, 2, 1, 2, 3, 2, 2, 1, 2] +gentler 1.4 0.4899 [2, 1, 1, 1, 1, 2, 2, 1, 2, 1] +gentlest 1.8 0.4 [2, 1, 2, 2, 2, 1, 2, 2, 2, 2] +gently 2.0 0.7746 [2, 2, 2, 1, 1, 3, 3, 2, 1, 3] +ghost -1.3 1.34536 [-2, 0, 0, 0, 0, -3, -2, -3, 0, -3] +giddy -0.6 1.62481 [-2, -2, 3, -1, -1, -1, -1, -2, 2, -1] +gift 1.9 0.53852 [2, 1, 2, 2, 2, 1, 2, 3, 2, 2] +giggle 1.8 0.9798 [2, 2, 2, 2, 2, 3, 2, -1, 2, 2] +giggled 1.5 1.20416 [1, 3, 1, 3, 3, 1, 1, -1, 2, 1] +giggler 0.6 0.8 [1, 1, 1, 1, -1, 1, 1, 1, -1, 1] +gigglers 1.4 0.4899 [1, 2, 2, 1, 2, 1, 1, 1, 1, 2] +giggles 0.8 1.249 [1, 2, 2, 1, -1, 1, 1, 2, -2, 1] +gigglier 1.0 1.09545 [2, 1, 1, 2, 2, 1, -1, 2, 1, -1] +giggliest 1.7 1.26886 [4, 2, 1, 2, 1, 3, 2, 2, -1, 1] +giggling 1.5 0.5 [2, 2, 1, 2, 2, 1, 1, 1, 1, 2] +gigglingly 1.1 1.37477 [1, 2, 1, 1, -1, 2, 1, -1, 4, 1] +giggly 1.0 1.41421 [1, 2, -2, 1, 2, 3, 1, -1, 2, 1] +giver 1.4 0.66332 [1, 2, 2, 0, 1, 2, 1, 2, 1, 2] +givers 1.7 1.34536 [2, -1, 3, 3, 3, 1, 1, 2, 0, 3] +giving 1.4 1.0198 [1, 1, 3, 1, 1, 2, 3, 0, 2, 0] +glad 2.0 0.63246 [3, 2, 1, 2, 2, 2, 1, 3, 2, 2] +gladly 1.4 0.4899 [2, 2, 1, 2, 1, 1, 2, 1, 1, 1] +glamor 2.1 0.9434 [1, 2, 2, 2, 1, 3, 2, 4, 3, 1] +glamorise 1.3 1.1 [0, 1, 4, 1, 0, 2, 1, 2, 1, 1] +glamorised 1.8 0.74833 [1, 2, 2, 2, 2, 2, 0, 2, 3, 2] +glamorises 2.1 1.04403 [1, 3, 2, 4, 2, 2, 0, 2, 3, 2] +glamorising 1.2 1.16619 [3, 2, 0, 3, 1, 2, 0, 1, 0, 0] +glamorization 1.6 0.91652 [2, 2, 3, 0, 3, 1, 2, 1, 1, 1] +glamorize 1.7 1.1 [1, 2, 1, 4, 2, 0, 3, 1, 2, 1] +glamorized 2.1 1.04403 [3, 2, 1, 2, 4, 2, 2, 0, 3, 2] +glamorizer 2.4 1.0198 [3, 2, 2, 3, 4, 3, 2, 0, 3, 2] +glamorizers 1.6 1.11355 [4, 1, 1, 1, 1, 2, 0, 2, 3, 1] +glamorizes 2.4 1.2 [3, 2, 2, 4, 4, 1, 2, 0, 3, 3] +glamorizing 1.8 1.16619 [3, 0, 1, 2, 3, 2, 1, 0, 3, 3] +glamorous 2.3 0.78102 [3, 2, 4, 2, 2, 2, 3, 2, 2, 1] +glamorously 2.1 1.04403 [1, 3, 2, 1, 2, 1, 4, 1, 3, 3] +glamors 1.4 0.66332 [1, 1, 2, 2, 2, 1, 2, 2, 0, 1] +glamour 2.4 0.91652 [2, 4, 2, 1, 3, 2, 2, 2, 2, 4] +glamourize 0.8 1.32665 [2, 1, 0, 1, 0, 4, 0, 0, -1, 1] +glamourless -1.6 1.49666 [-4, -1, -1, -2, -2, -3, -2, -1, 2, -2] +glamourous 2.0 0.7746 [1, 3, 3, 2, 1, 2, 2, 2, 3, 1] +glamours 1.9 0.83066 [1, 3, 2, 2, 3, 2, 1, 1, 3, 1] +glee 3.2 0.4 [3, 4, 3, 3, 4, 3, 3, 3, 3, 3] +gleeful 2.9 0.53852 [3, 3, 3, 3, 3, 4, 2, 2, 3, 3] +gloom -2.6 0.66332 [-4, -2, -3, -3, -2, -3, -2, -2, -2, -3] +gloomed -1.9 0.7 [-1, -2, -3, -1, -2, -2, -1, -2, -3, -2] +gloomful -2.1 0.9434 [-3, -1, -4, -2, -1, -1, -2, -3, -2, -2] +gloomier -1.5 1.20416 [-3, -2, -2, -3, -1, -2, 0, 1, -1, -2] +gloomiest -1.8 2.03961 [-2, -2, 2, -4, -2, -3, -4, -3, 2, -2] +gloominess -1.8 0.6 [-2, -1, -2, -3, -2, -1, -2, -2, -2, -1] +gloominesses -1.0 1.09545 [-1, -2, -2, -1, -1, -2, 2, -1, -1, -1] +glooming -1.8 0.74833 [-1, -2, -2, -1, -2, -1, -3, -1, -3, -2] +glooms -0.9 1.57797 [3, -2, -1, -2, -2, -2, 1, -2, -1, -1] +gloomy -0.6 1.56205 [2, -1, -2, -2, -2, -1, 1, -2, 2, -1] +gloried 2.4 1.0198 [2, 3, 3, 4, 4, 1, 1, 2, 2, 2] +glories 2.1 1.3 [4, 1, 4, 1, 1, 4, 2, 2, 1, 1] +glorification 2.0 0.89443 [3, 1, 3, 2, 3, 1, 1, 3, 2, 1] +glorified 2.3 0.9 [1, 4, 2, 2, 4, 2, 2, 2, 2, 2] +glorifier 2.3 1.00499 [1, 4, 1, 2, 4, 2, 3, 2, 2, 2] +glorifiers 1.6 1.0198 [2, 1, 2, -1, 2, 2, 2, 1, 2, 3] +glorifies 2.2 0.9798 [1, 4, 2, 2, 4, 2, 1, 2, 2, 2] +glorify 2.7 0.78102 [3, 3, 4, 3, 1, 3, 2, 3, 2, 3] +glorifying 2.4 1.28062 [3, 4, 2, 2, 4, 4, 0, 1, 2, 2] +gloriole 1.5 1.36015 [2, 4, 1, 2, 0, -1, 1, 3, 2, 1] +glorioles 1.2 0.87178 [0, 2, 0, 2, 0, 1, 2, 2, 1, 2] +glorious 3.2 0.6 [4, 3, 3, 2, 3, 3, 3, 4, 3, 4] +gloriously 2.9 0.83066 [3, 4, 3, 2, 4, 2, 2, 2, 4, 3] +gloriousness 2.6 1.0198 [3, 2, 3, 4, 3, 2, 1, 4, 3, 1] +glory 2.5 0.80623 [1, 3, 3, 1, 3, 3, 3, 2, 3, 3] +glum -2.1 0.7 [-2, -1, -3, -3, -1, -2, -2, -3, -2, -2] +gn8 0.6 0.66332 [1, 1, 0, 0, 0, 0, 2, 1, 0, 1] +god 1.1 1.51327 [0, 0, 0, 1, 0, 3, 0, 3, 0, 4] +goddam -2.5 1.28452 [0, -3, -3, -4, -3, -1, -4, -1, -3, -3] +goddammed -2.4 0.91652 [-2, -3, -1, -1, -2, -2, -4, -3, -3, -3] +goddamn -2.1 1.75784 [-3, -3, -2, -4, -4, -3, -3, -1, 1, 1] +goddamned -1.8 2.03961 [-3, -3, -3, -4, -1, 2, -2, -3, 2, -3] +goddamns -2.1 1.51327 [-3, -2, -4, 2, -2, -3, -3, -2, -2, -2] +goddams -1.9 1.92094 [-3, -3, -2, -4, -4, -2, -3, -1, 2, 1] +godsend 2.8 0.87178 [2, 3, 3, 2, 4, 3, 3, 1, 4, 3] +good 1.9 0.9434 [2, 1, 1, 3, 2, 4, 2, 2, 1, 1] +goodness 2.0 1.54919 [2, 2, 2, 3, 1, 2, -2, 4, 3, 3] +gorgeous 3.0 0.63246 [3, 3, 2, 3, 3, 3, 4, 4, 3, 2] +gorgeously 2.3 0.78102 [2, 2, 2, 3, 1, 2, 4, 3, 2, 2] +gorgeousness 2.9 0.9434 [3, 4, 3, 1, 4, 4, 2, 2, 3, 3] +gorgeousnesses 2.1 0.7 [3, 2, 1, 3, 2, 2, 1, 2, 3, 2] +gossip -0.7 0.45826 [-1, -1, -1, 0, 0, -1, -1, 0, -1, -1] +gossiped -1.1 0.53852 [-1, -1, -1, -1, -1, -1, 0, -1, -2, -2] +gossiper -1.1 0.7 [-1, -1, -1, 0, -2, -1, -1, -2, 0, -2] +gossipers -1.1 0.53852 [-1, 0, -1, -1, -1, -1, -1, -1, -2, -2] +gossiping -1.6 0.4899 [-1, -2, -1, -2, -1, -2, -2, -1, -2, -2] +gossipmonger -1.0 1.41421 [-1, -2, 1, -3, -2, 1, -1, -2, -2, 1] +gossipmongers -1.4 0.66332 [-2, -1, -1, -1, -2, -2, -1, 0, -2, -2] +gossipped -1.3 0.9 [-2, -2, -1, -2, -1, -1, -2, -1, 1, -2] +gossipping -1.8 0.6 [-2, -1, -2, -2, -1, -2, -2, -1, -3, -2] +gossipries -0.8 0.6 [-1, -1, -1, 0, -1, 0, -1, 0, -2, -1] +gossipry -1.2 1.16619 [1, 0, -1, -2, -1, -1, -1, -3, -3, -1] +gossips -1.3 0.64031 [-1, -2, -1, -1, -2, -1, 0, -1, -2, -2] +gossipy -1.3 0.78102 [-1, -2, -2, -1, -2, -1, 0, 0, -2, -2] +grace 1.8 0.4 [2, 1, 2, 2, 1, 2, 2, 2, 2, 2] +graced 0.9 1.04403 [1, 1, 2, -2, 1, 1, 1, 2, 1, 1] +graceful 2.0 0.63246 [2, 1, 2, 2, 2, 3, 3, 2, 2, 1] +gracefuller 2.2 0.74833 [2, 3, 2, 2, 1, 2, 3, 1, 3, 3] +gracefullest 2.8 0.74833 [3, 3, 3, 3, 1, 3, 3, 3, 4, 2] +gracefully 2.4 0.66332 [3, 3, 2, 1, 3, 2, 2, 2, 3, 3] +gracefulness 2.2 0.6 [3, 2, 1, 2, 2, 2, 3, 2, 2, 3] +graces 1.6 0.4899 [2, 2, 2, 1, 1, 2, 1, 2, 1, 2] +gracile 1.7 0.78102 [1, 3, 2, 1, 2, 3, 2, 1, 1, 1] +graciles 0.6 0.8 [0, 0, 0, 0, 0, 0, 2, 1, 2, 1] +gracilis 0.4 0.66332 [0, 0, 0, 0, 0, 1, 0, 1, 0, 2] +gracility 1.2 0.87178 [1, 1, 0, 1, 1, 3, 2, 2, 0, 1] +gracing 1.3 0.9 [1, 0, 3, 2, 1, 2, 0, 1, 2, 1] +gracioso 1.0 0.63246 [2, 2, 1, 1, 1, 1, 0, 1, 0, 1] +gracious 2.6 0.8 [2, 2, 3, 3, 3, 3, 2, 4, 1, 3] +graciously 2.3 0.9 [2, 4, 1, 3, 3, 2, 1, 2, 3, 2] +graciousness 2.4 0.66332 [2, 2, 2, 2, 2, 3, 4, 3, 2, 2] +grand 2.0 0.63246 [2, 2, 3, 1, 2, 2, 2, 2, 3, 1] +grandee 1.1 0.83066 [0, 1, 1, 0, 1, 1, 2, 1, 3, 1] +grandees 1.2 0.87178 [0, 2, 2, 1, 0, 1, 0, 2, 2, 2] +grander 1.7 0.9 [3, 1, 1, 2, 2, 2, 0, 2, 3, 1] +grandest 2.4 1.2 [3, 3, 1, 2, 2, 0, 4, 2, 4, 3] +grandeur 2.4 1.11355 [3, 2, 3, 2, 4, 1, 1, 4, 1, 3] +grandeurs 2.1 1.3 [2, 2, 1, 0, 0, 4, 3, 3, 3, 3] +grant 1.5 0.80623 [2, 2, 1, 0, 3, 1, 1, 1, 2, 2] +granted 1.0 1.09545 [3, 0, 0, 0, 0, 1, 2, 2, 2, 0] +granting 1.3 0.45826 [2, 1, 1, 2, 1, 2, 1, 1, 1, 1] +grants 0.9 0.7 [2, 1, 2, 1, 0, 1, 0, 0, 1, 1] +grateful 2.0 0.63246 [2, 3, 1, 2, 2, 2, 3, 1, 2, 2] +gratefuller 1.8 0.87178 [2, 3, 0, 3, 2, 1, 1, 2, 2, 2] +gratefully 2.1 0.53852 [2, 3, 2, 2, 2, 2, 2, 3, 1, 2] +gratefulness 2.2 0.6 [2, 3, 2, 1, 2, 2, 3, 2, 3, 2] +graticule 0.1 0.3 [0, 0, 0, 1, 0, 0, 0, 0, 0, 0] +graticules 0.2 0.6 [0, 0, 0, 0, 2, 0, 0, 0, 0, 0] +gratification 1.6 0.8 [1, 2, 3, 2, 2, 1, 2, 0, 2, 1] +gratifications 1.8 0.4 [2, 2, 1, 2, 2, 1, 2, 2, 2, 2] +gratified 1.6 0.91652 [3, 1, 1, 1, 3, 1, 1, 1, 1, 3] +gratifies 1.5 0.80623 [3, 1, 1, 1, 2, 1, 1, 1, 1, 3] +gratify 1.3 1.00499 [2, -1, 1, 3, 1, 1, 1, 1, 2, 2] +gratifying 2.3 0.45826 [2, 3, 2, 2, 2, 2, 3, 2, 2, 3] +gratifyingly 2.0 0.63246 [2, 2, 2, 1, 3, 2, 1, 3, 2, 2] +gratin 0.4 0.91652 [0, 1, 0, 0, 0, 0, 2, 0, -1, 2] +grating -0.4 0.4899 [-1, -1, -1, 0, 0, -1, 0, 0, 0, 0] +gratingly -0.2 1.6 [1, -3, -2, -2, 0, 2, 1, -1, 1, 1] +gratings -0.8 0.9798 [0, -2, -1, -1, 0, 0, -3, 0, 0, -1] +gratins 0.2 0.6 [0, 0, 0, 0, 0, 0, 0, 0, 2, 0] +gratis 0.2 0.9798 [-2, 1, 1, 0, 0, 0, -1, 1, 1, 1] +gratitude 2.3 0.64031 [2, 2, 3, 1, 2, 3, 2, 3, 3, 2] +gratz 2.0 0.89443 [2, 3, 2, 1, 1, 1, 2, 2, 4, 2] +grave -1.6 1.62481 [-2, -2, 0, -2, -3, 2, -3, -1, -1, -4] +graved -0.9 1.13578 [0, 0, -1, 0, -1, -1, -1, -1, -4, 0] +gravel -0.5 0.5 [0, -1, 0, -1, -1, -1, -1, 0, 0, 0] +graveled -0.5 0.80623 [0, 0, 0, 0, -1, -2, 0, 0, -2, 0] +graveless -1.3 1.34536 [-2, -2, 0, -1, 0, -2, -4, 1, -1, -2] +graveling -0.4 1.28062 [-3, 0, -2, 0, 2, -1, 0, 0, 0, 0] +gravelled -0.9 0.53852 [0, -1, -1, -2, 0, -1, -1, -1, -1, -1] +gravelling -0.4 1.11355 [0, -1, -2, -2, 0, -1, 0, 0, 2, 0] +gravelly -0.9 0.7 [0, -2, -1, -1, 0, -1, -1, 0, -1, -2] +gravels -0.5 0.80623 [0, -1, 0, 0, 0, -2, 0, 0, 0, -2] +gravely -1.5 1.0247 [0, -3, -1, 0, -3, -2, -1, -1, -2, -2] +graven -0.9 1.22066 [0, 0, -1, 0, -2, -1, -1, 0, -4, 0] +graveness -1.5 0.67082 [-1, -2, -2, -3, -2, -1, -1, -1, -1, -1] +graver -1.1 1.22066 [0, -2, -1, 0, 0, -2, -1, 0, -4, -1] +gravers -1.2 1.6 [-4, 0, -2, 0, -2, -2, -2, 0, 2, -2] +graves -1.2 1.07703 [0, 0, -1, -1, -2, -1, -1, -1, -4, -1] +graveside -0.8 0.6 [-1, -1, -1, 0, 0, 0, -1, -2, -1, -1] +gravesides -1.6 1.2 [-2, -1, 0, -3, -1, 0, -1, -2, -2, -4] +gravest -1.3 1.9 [-3, -1, -2, -2, 1, 1, -2, 2, -3, -4] +gravestone -0.7 0.78102 [0, -1, 0, -1, -1, -2, 0, 0, -2, 0] +gravestones -0.5 0.5 [-1, -1, 0, -1, -1, -1, 0, 0, 0, 0] +graveyard -1.2 0.87178 [0, 0, -1, -2, -1, -1, -2, -1, -3, -1] +graveyards -1.2 0.87178 [0, -1, -3, -1, -1, -2, 0, -1, -2, -1] +great 3.1 0.7 [2, 4, 4, 4, 3, 3, 3, 3, 2, 3] +greater 1.5 0.67082 [2, 1, 2, 1, 2, 2, 2, 1, 0, 2] +greatest 3.2 0.74833 [3, 4, 3, 3, 3, 4, 4, 2, 2, 4] +greed -1.7 1.61555 [-2, -1, -2, -1, -2, -4, -1, 2, -4, -2] +greedier -2.0 0.63246 [-2, -2, -2, -2, -2, -3, -2, -1, -1, -3] +greediest -2.8 0.87178 [-3, -4, -3, -2, -2, -4, -4, -2, -2, -2] +greedily -1.9 1.22066 [-2, -1, -3, -3, -3, -2, -1, -2, 1, -3] +greediness -1.7 1.00499 [-2, -1, -2, -1, -2, -4, -1, 0, -2, -2] +greeds -1.0 1.18322 [-1, -2, -2, -2, -2, -2, 1, 0, -1, 1] +greedy -1.3 1.48661 [-2, -2, -2, -2, -3, -2, 2, -1, -2, 1] +greenwash -1.8 1.4 [-1, 0, -2, -2, -3, -4, 0, 0, -3, -3] +greenwashing -0.4 0.91652 [-1, 0, 0, 1, 1, -2, -1, -1, 0, -1] +greet 1.3 0.64031 [1, 1, 1, 1, 0, 2, 2, 2, 2, 1] +greeted 1.1 0.9434 [2, 0, 0, 1, 1, 1, 0, 2, 1, 3] +greeting 1.6 0.4899 [2, 1, 2, 2, 1, 2, 2, 1, 1, 2] +greetings 1.8 1.07703 [1, 2, 3, 3, 1, 1, 1, 4, 1, 1] +greets 0.6 0.66332 [0, 0, 2, 0, 1, 1, 0, 1, 1, 0] +grey 0.2 0.4 [0, 0, 1, 0, 0, 0, 1, 0, 0, 0] +grief -2.2 0.6 [-2, -1, -3, -2, -3, -3, -2, -2, -2, -2] +grievance -2.1 0.53852 [-2, -2, -3, -2, -2, -3, -2, -1, -2, -2] +grievances -1.5 0.5 [-2, -2, -1, -1, -2, -1, -1, -2, -2, -1] +grievant -0.8 1.249 [-2, 1, -1, -2, -1, 2, -2, -1, -1, -1] +grievants -1.1 0.83066 [-1, -1, -1, -1, -1, -1, 0, -2, 0, -3] +grieve -1.6 1.49666 [-2, -3, -1, -3, 1, -3, -1, -2, 1, -3] +grieved -2.0 0.89443 [-3, -3, -3, -2, -2, -3, -1, -1, -1, -1] +griever -1.9 0.83066 [-2, -2, -3, -2, -3, -3, -1, -1, -1, -1] +grievers -0.3 1.55242 [-1, 2, -2, -1, 1, -2, 2, -2, 1, -1] +grieves -2.1 0.9434 [-3, -3, -3, -2, -3, -3, -1, -1, -1, -1] +grieving -2.3 1.1 [-2, -4, -2, -3, -3, 0, -3, -2, -1, -3] +grievous -2.0 1.84391 [-3, -4, -2, -3, -1, 3, -2, -3, -2, -3] +grievously -1.7 1.55242 [-3, -1, -4, -2, -2, 1, -3, 1, -2, -2] +grievousness -2.7 0.78102 [-3, -3, -3, -2, -3, -4, -2, -1, -3, -3] +grim -2.7 0.64031 [-2, -4, -3, -3, -2, -2, -3, -3, -2, -3] +grimace -1.0 2.14476 [-4, -3, -2, -2, 2, -1, -1, -3, 2, 2] +grimaced -2.0 0.63246 [-2, -3, -2, -2, -2, -2, -1, -3, -1, -2] +grimaces -1.8 0.74833 [-1, -2, -1, -2, -2, -1, -3, -3, -1, -2] +grimacing -1.4 1.56205 [-3, -2, -3, -3, -1, -1, 1, 0, 1, -3] +grimalkin -0.9 1.04403 [-1, -2, -1, 1, -2, -2, -1, -1, 1, -1] +grimalkins -0.9 0.9434 [0, 0, 0, -2, -1, -1, -1, 0, -3, -1] +grime -1.5 0.92195 [-1, -2, -1, -1, -1, -3, 0, -2, -1, -3] +grimed -1.2 0.74833 [-2, -2, 0, -2, -1, -1, -1, -2, -1, 0] +grimes -1.0 0.7746 [-2, -2, 0, 0, -1, -1, -1, -2, -1, 0] +grimier -1.6 1.0198 [-1, -2, -2, -2, -1, 0, -4, -1, -1, -2] +grimiest -0.7 2.05183 [-2, -3, 1, -3, 2, -2, -2, -2, 2, 2] +grimily -0.7 1.61555 [-2, -1, -1, -2, -2, 2, -2, 2, 1, -2] +griminess -1.6 0.4899 [-1, -2, -2, -2, -1, -2, -2, -1, -1, -2] +griming -0.7 1.55242 [-3, -1, -1, -2, 0, 2, -1, -2, -1, 2] +grimly -1.3 1.55242 [-2, -1, 2, -2, -2, -1, -3, -3, 1, -2] +grimmer -1.5 1.36015 [1, -2, -3, 1, -2, -1, -2, -2, -3, -2] +grimmest -0.8 1.72047 [-2, -1, -3, 0, -2, -1, 0, 2, 2, -3] +grimness -0.8 1.98997 [2, -2, -3, -2, -3, 2, -1, 1, 1, -3] +grimy -1.8 0.87178 [-2, -2, -2, -1, -1, -3, 0, -2, -2, -3] +grin 2.1 0.83066 [2, 4, 2, 2, 2, 1, 2, 3, 1, 2] +grinned 1.1 0.9434 [1, 1, 2, 1, 3, 1, -1, 1, 1, 1] +grinner 1.1 0.83066 [1, 1, 2, 2, 2, 1, -1, 1, 1, 1] +grinners 1.6 0.8 [2, 2, 2, 3, 1, 0, 2, 2, 1, 1] +grinning 1.5 1.0247 [3, 2, 2, 1, 1, -1, 1, 2, 2, 2] +grins 0.9 1.92094 [1, 4, -3, 1, 2, 1, 2, -2, 2, 1] +gross -2.1 1.51327 [-1, -3, -2, -3, -3, -3, -3, 2, -2, -3] +grossed -0.4 1.11355 [-1, -2, -1, -2, 0, 0, 1, 1, 1, -1] +grosser -0.3 1.41774 [1, -2, -1, -2, 0, -1, 1, 2, 1, -2] +grosses -0.8 1.77764 [-2, -2, 3, -2, -3, -1, 1, -1, 1, -2] +grossest -2.1 0.83066 [-2, -1, -2, -3, -3, -1, -3, -3, -1, -2] +grossing -0.3 1.79165 [-1, -3, -1, 1, 0, -1, -3, 1, 1, 3] +grossly -0.9 1.44568 [1, -2, 0, -3, -1, -2, 1, 1, -2, -2] +grossness -1.8 0.6 [-2, -2, -1, -1, -1, -3, -2, -2, -2, -2] +grossular -0.3 1.34536 [0, -2, 0, -1, -2, -1, 0, 0, 0, 3] +grossularite -0.1 1.13578 [2, 0, 0, 0, 0, -3, 0, 0, 0, 0] +grossularites -0.7 1.26886 [0, -4, -1, -2, 0, 0, 0, 0, 0, 0] +grossulars -0.3 0.45826 [0, 0, 0, 0, -1, -1, 0, 0, 0, -1] +grouch -2.2 0.87178 [-2, -3, -3, -3, -2, -1, -3, -1, -1, -3] +grouched -0.8 0.9798 [-2, -1, -2, -2, 1, -1, 0, 0, 0, -1] +grouches -0.9 1.13578 [-2, -1, -2, -1, -1, -1, -1, 2, 0, -2] +grouchier -2.0 0.63246 [-2, -3, -3, -2, -2, -2, -2, -1, -2, -1] +grouchiest -2.3 0.78102 [-3, -3, -2, -2, -1, -3, -1, -3, -3, -2] +grouchily -1.4 1.56205 [-2, -1, -2, -3, -3, 2, -2, -2, 1, -2] +grouchiness -2.0 0.7746 [-2, -2, -3, -2, -3, -2, -2, 0, -2, -2] +grouching -1.7 1.1 [-1, -3, -2, 1, -2, -3, -2, -1, -2, -2] +grouchy -1.9 0.7 [-1, -3, -2, -2, -1, -3, -1, -2, -2, -2] +growing 0.7 0.64031 [0, 1, 1, 2, 1, 0, 0, 1, 1, 0] +growth 1.6 1.0198 [2, 0, 3, 0, 2, 3, 1, 1, 2, 2] +guarantee 1.0 1.0 [2, 3, 1, 0, 2, 0, 1, 0, 0, 1] +guilt -1.1 1.22066 [-1, -3, 2, -1, -1, -2, -1, -2, -1, -1] +guiltier -2.0 0.63246 [-2, -1, -3, -1, -3, -2, -2, -2, -2, -2] +guiltiest -1.7 1.79165 [-3, -2, -2, -4, -1, -2, 3, -1, -3, -2] +guiltily -1.1 1.57797 [-3, -1, -1, -2, 0, -2, 3, -2, -1, -2] +guiltiness -1.8 0.6 [-2, -2, -1, -2, -1, -1, -2, -2, -3, -2] +guiltless 0.8 1.53623 [3, 2, 1, 2, -2, 1, 1, -2, 1, 1] +guiltlessly 0.7 1.18743 [-1, 1, -2, 2, 1, 1, 1, 1, 2, 1] +guiltlessness 0.6 1.42829 [1, 1, -1, -1, -1, 1, 2, 3, -1, 2] +guilts -1.4 0.66332 [-1, -2, -1, -1, -3, -1, -1, -2, -1, -1] +guilty -1.8 0.6 [-1, -2, -2, -3, -2, -2, -1, -2, -2, -1] +gullibility -1.6 0.66332 [-1, -1, -2, -2, -1, -2, -1, -2, -1, -3] +gullible -1.5 0.67082 [-1, -2, -2, -1, -1, -3, -2, -1, -1, -1] +gun -1.4 1.49666 [0, -4, 0, -3, 0, -3, -2, 0, -2, 0] +h8 -2.7 1.00499 [-4, -3, -4, -1, -1, -3, -3, -3, -2, -3] +ha 1.4 0.8 [1, 0, 1, 1, 3, 2, 2, 1, 2, 1] +hacked -1.7 1.00499 [-2, -1, -2, -4, 0, -2, -2, -1, -1, -2] +haha 2.0 0.89443 [1, 1, 2, 3, 2, 1, 4, 2, 2, 2] +hahaha 2.6 1.0198 [2, 4, 2, 4, 1, 2, 3, 4, 2, 2] +hahas 1.8 0.9798 [1, 2, 2, 4, 3, 2, 1, 1, 1, 1] +hail 0.3 0.9 [0, 0, 0, 2, 0, 0, 2, 0, -1, 0] +hailed 0.9 0.83066 [1, 2, 1, 1, 0, 0, 0, 2, 2, 0] +hallelujah 3.0 0.7746 [3, 4, 3, 1, 3, 3, 3, 3, 3, 4] +handsome 2.2 0.74833 [2, 2, 2, 2, 2, 3, 4, 1, 2, 2] +handsomely 1.9 0.7 [1, 3, 1, 1, 2, 2, 2, 2, 2, 3] +handsomeness 2.4 1.28062 [2, 4, 1, 4, 0, 2, 4, 3, 2, 2] +handsomer 2.0 0.63246 [2, 3, 2, 2, 2, 2, 1, 3, 1, 2] +handsomest 2.6 0.91652 [3, 2, 1, 2, 3, 4, 4, 3, 2, 2] +hapless -1.4 1.11355 [-3, -1, -1, -1, -2, -1, 1, -2, -3, -1] +haplessness -1.4 1.0198 [-1, -2, 0, -1, -1, -1, -1, -2, -1, -4] +happier 2.4 0.66332 [3, 1, 2, 3, 2, 2, 3, 3, 3, 2] +happiest 3.2 0.74833 [4, 3, 2, 4, 4, 3, 3, 3, 2, 4] +happily 2.6 0.91652 [4, 1, 2, 4, 2, 3, 2, 2, 3, 3] +happiness 2.6 0.4899 [2, 3, 3, 3, 3, 2, 2, 3, 2, 3] +happing 1.1 0.83066 [1, 1, 1, 0, 2, 2, 0, 2, 0, 2] +happy 2.7 0.9 [2, 2, 2, 4, 2, 4, 3, 4, 2, 2] +harass -2.2 0.6 [-2, -3, -2, -2, -2, -3, -2, -3, -1, -2] +harassed -2.5 0.80623 [-4, -2, -3, -3, -2, -2, -3, -2, -3, -1] +harasser -2.4 0.8 [-3, -2, -2, -3, -2, -2, -4, -2, -3, -1] +harassers -2.8 0.6 [-3, -3, -2, -2, -3, -3, -3, -4, -2, -3] +harasses -2.5 0.80623 [-3, -3, -2, -3, -2, -2, -4, -2, -3, -1] +harassing -2.5 1.62788 [-2, -4, -3, -4, -3, -3, 2, -2, -3, -3] +harassment -2.5 0.67082 [-2, -3, -2, -2, -3, -2, -4, -3, -2, -2] +harassments -2.6 0.4899 [-3, -3, -2, -3, -2, -3, -3, -2, -2, -3] +hard -0.4 1.2 [0, -1, 0, -1, 0, 1, -2, -1, -2, 2] +hardier -0.6 1.68523 [-3, -2, -2, 1, 1, 2, 1, 0, -2, -2] +hardship -1.3 1.84662 [-2, 2, -4, -1, -2, -3, -1, -2, 2, -2] +hardy 1.7 1.00499 [1, 2, 1, 0, 2, 2, 4, 1, 2, 2] +harm -2.5 0.80623 [-2, -2, -2, -3, -2, -1, -3, -3, -3, -4] +harmed -2.1 0.83066 [-1, -4, -2, -2, -2, -2, -1, -2, -3, -2] +harmfully -2.6 0.91652 [-3, -4, -3, -1, -3, -3, -3, -3, -1, -2] +harmfulness -2.6 0.8 [-3, -1, -3, -3, -3, -2, -4, -2, -2, -3] +harming -2.6 0.66332 [-3, -3, -2, -2, -3, -3, -2, -2, -2, -4] +harmless 1.0 0.7746 [2, 1, 1, 1, 1, 0, 0, 2, 0, 2] +harmlessly 1.4 1.2 [4, 0, 1, 0, 1, 1, 1, 2, 3, 1] +harmlessness 0.8 1.16619 [1, 2, 0, 1, 0, 1, 2, 1, 2, -2] +harmonic 1.8 0.87178 [2, 1, 2, 3, 0, 1, 3, 2, 2, 2] +harmonica 0.6 0.8 [0, 1, 0, 0, 0, 2, 1, 0, 2, 0] +harmonically 2.1 1.13578 [3, 3, 4, 1, 0, 1, 2, 2, 2, 3] +harmonicas 0.1 0.3 [0, 0, 0, 0, 0, 0, 1, 0, 0, 0] +harmonicist 0.5 0.92195 [0, 0, 0, 0, 1, 0, 0, 0, 1, 3] +harmonicists 0.9 1.3 [2, 1, 0, 0, 2, 0, 0, 0, 4, 0] +harmonics 1.5 1.0247 [2, 2, 2, 0, 0, 2, 3, 2, 0, 2] +harmonies 1.3 0.9 [2, 0, 2, 1, 2, 2, 0, 2, 0, 2] +harmonious 2.0 1.09545 [3, 4, 2, 2, 2, 0, 2, 3, 1, 1] +harmoniously 1.9 0.9434 [4, 2, 2, 1, 2, 1, 1, 3, 2, 1] +harmoniousness 1.8 0.6 [1, 2, 2, 2, 2, 1, 2, 3, 2, 1] +harmonise 1.8 0.74833 [1, 1, 2, 3, 2, 1, 1, 3, 2, 2] +harmonised 1.3 0.9 [2, 3, 2, 0, 2, 1, 1, 1, 1, 0] +harmonising 1.4 0.66332 [1, 2, 1, 1, 2, 1, 1, 1, 1, 3] +harmonium 0.9 1.22066 [0, 3, 0, 2, 3, 0, 0, 0, 0, 1] +harmoniums 0.8 0.9798 [0, 0, 0, 2, 0, 2, 0, 2, 2, 0] +harmonization 1.9 0.83066 [3, 1, 2, 2, 2, 2, 3, 0, 2, 2] +harmonizations 0.9 0.9434 [0, 0, 2, 0, 2, 2, 0, 2, 1, 0] +harmonize 1.7 0.78102 [3, 2, 2, 1, 2, 2, 0, 1, 2, 2] +harmonized 1.6 0.91652 [1, 2, 1, 1, 2, 2, 3, 3, 0, 1] +harmonizer 1.6 0.8 [1, 2, 1, 1, 2, 2, 2, 3, 0, 2] +harmonizers 1.6 1.11355 [2, 2, 2, 1, 2, 0, 4, 0, 2, 1] +harmonizes 1.5 0.92195 [0, 2, 2, 2, 0, 1, 1, 2, 3, 2] +harmonizing 1.4 0.66332 [0, 1, 1, 2, 2, 1, 2, 2, 1, 2] +harmony 1.7 0.45826 [2, 2, 2, 2, 1, 2, 2, 2, 1, 1] +harms -2.2 1.6 [2, -3, -2, -2, -3, -2, -4, -4, -2, -2] +harried -1.4 0.4899 [-1, -1, -2, -1, -2, -2, -1, -1, -1, -2] +harsh -1.9 0.7 [-1, -1, -2, -2, -1, -3, -3, -2, -2, -2] +harsher -2.2 0.6 [-2, -3, -2, -3, -2, -2, -1, -3, -2, -2] +harshest -2.9 0.83066 [-4, -2, -2, -2, -2, -3, -3, -4, -4, -3] +hate -2.7 1.00499 [-4, -3, -4, -4, -2, -2, -2, -2, -1, -3] +hated -3.2 0.6 [-3, -3, -4, -3, -2, -3, -3, -4, -4, -3] +hateful -2.2 1.249 [-3, 1, -3, -3, -1, -2, -2, -3, -3, -3] +hatefully -2.3 0.78102 [-1, -3, -3, -3, -1, -2, -2, -2, -3, -3] +hatefulness -3.6 0.4899 [-4, -4, -3, -3, -3, -4, -4, -4, -4, -3] +hater -1.8 0.6 [-2, -1, -2, -2, -2, -1, -1, -2, -2, -3] +haters -2.2 0.6 [-2, -1, -3, -2, -3, -2, -3, -2, -2, -2] +hates -1.9 0.7 [-2, -1, -2, -2, -3, -1, -1, -2, -2, -3] +hating -2.3 1.1 [-4, -3, -4, -1, -2, -2, -1, -2, -1, -3] +hatred -3.2 0.9798 [-1, -3, -2, -4, -3, -3, -4, -4, -4, -4] +haunt -1.7 1.00499 [-1, -1, -3, -1, -2, -2, -1, -4, -1, -1] +haunted -2.1 0.7 [-2, -2, -1, -3, -3, -2, -2, -3, -1, -2] +haunting -1.1 0.83066 [-3, 0, -2, -1, 0, -1, -1, -1, -1, -1] +haunts -1.0 1.41421 [0, -2, -2, -2, -2, -1, 2, -2, 1, -2] +havoc -2.9 0.7 [-2, -4, -4, -3, -2, -3, -3, -3, -2, -3] +healthy 1.7 0.9 [1, 3, 1, 1, 3, 3, 1, 2, 1, 1] +heartbreak -2.7 0.78102 [-1, -3, -3, -3, -2, -4, -2, -3, -3, -3] +heartbreaker -2.2 1.07703 [-2, -3, 0, -3, -2, -1, -4, -3, -2, -2] +heartbreakers -2.1 0.9434 [-3, -2, -3, -2, -1, -1, -4, -1, -2, -2] +heartbreaking -2.0 1.73205 [-3, -1, -3, -3, -4, 2, -3, -2, 0, -3] +heartbreakingly -1.8 2.08806 [-3, 3, 1, -3, -3, -2, -3, -3, -4, -1] +heartbreaks -1.8 1.77764 [-2, 1, -3, -2, -3, -2, -3, 2, -4, -2] +heartbroken -3.3 0.45826 [-4, -3, -3, -4, -3, -3, -4, -3, -3, -3] +heartfelt 2.5 0.5 [3, 3, 2, 3, 2, 2, 3, 2, 2, 3] +heartless -2.2 0.74833 [-2, -2, -2, -4, -2, -1, -2, -3, -2, -2] +heartlessly -2.8 0.6 [-3, -2, -3, -3, -2, -3, -4, -2, -3, -3] +heartlessness -2.8 0.87178 [-3, -3, -2, -3, -4, -4, -1, -3, -2, -3] +heartwarming 2.1 1.22066 [3, 2, 3, 3, 2, 2, 3, 3, -1, 1] +heaven 2.3 1.18743 [1, 1, 2, 4, 3, 3, 3, 4, 1, 1] +heavenlier 3.0 0.63246 [3, 2, 3, 3, 4, 3, 3, 4, 2, 3] +heavenliest 2.7 1.1 [3, 2, 3, 4, 2, 4, 3, 0, 3, 3] +heavenliness 2.7 0.9 [3, 2, 1, 4, 3, 2, 3, 4, 3, 2] +heavenlinesses 2.3 2.2383 [4, 4, 4, 3, -2, 3, 3, 4, -2, 2] +heavenly 3.0 0.63246 [3, 3, 3, 3, 2, 3, 3, 4, 2, 4] +heavens 1.7 1.18743 [4, 0, 1, 2, 0, 3, 2, 2, 2, 1] +heavenward 1.4 1.35647 [0, 3, 0, 4, 1, 2, 2, 0, 2, 0] +heavenwards 1.2 1.32665 [1, 4, 0, 0, 2, 1, 1, 0, 3, 0] +heavyhearted -2.1 0.83066 [-2, -3, -3, -2, -3, -1, -1, -1, -2, -3] +heh -0.6 1.28062 [0, 1, -1, 1, -1, -2, -1, -3, 1, -1] +hell -3.6 0.66332 [-4, -4, -4, -4, -4, -2, -3, -4, -3, -4] +hellish -3.2 0.74833 [-3, -3, -2, -2, -4, -3, -4, -4, -3, -4] +help 1.7 0.78102 [3, 2, 1, 2, 1, 2, 3, 1, 1, 1] +helper 1.4 0.8 [1, 1, 0, 1, 1, 2, 1, 2, 3, 2] +helpers 1.1 0.83066 [1, 1, 0, 2, 1, 1, 1, 1, 3, 0] +helpful 1.8 0.87178 [2, 1, 3, 1, 1, 3, 1, 2, 3, 1] +helpfully 2.3 0.9 [1, 2, 2, 3, 2, 3, 3, 2, 4, 1] +helpfulness 1.9 1.13578 [1, 4, 1, 2, 2, 1, 1, 2, 4, 1] +helping 1.2 0.6 [2, 1, 1, 2, 0, 1, 1, 1, 2, 1] +helpless -2.0 0.63246 [-2, -3, -2, -2, -2, -3, -1, -2, -1, -2] +helplessly -1.4 0.4899 [-1, -1, -2, -2, -1, -1, -1, -2, -2, -1] +helplessness -2.1 0.9434 [-2, -4, -1, -2, -1, -3, -3, -2, -1, -2] +helplessnesses -1.7 0.64031 [-2, -1, -2, -1, -2, -1, -3, -2, -1, -2] +helps 1.6 0.4899 [1, 1, 1, 2, 2, 2, 1, 2, 2, 2] +hero 2.6 0.8 [2, 3, 2, 2, 4, 4, 2, 3, 2, 2] +heroes 2.3 0.9 [3, 4, 3, 1, 3, 2, 1, 2, 2, 2] +heroic 2.6 0.8 [3, 3, 1, 4, 2, 3, 2, 3, 2, 3] +heroical 2.9 1.04403 [4, 4, 2, 4, 2, 3, 1, 4, 2, 3] +heroically 2.4 0.8 [2, 2, 2, 3, 3, 3, 4, 1, 2, 2] +heroicomic 1.0 1.0 [1, 0, 1, 0, 2, 0, 3, 1, 2, 0] +heroicomical 1.1 0.83066 [2, 0, 0, 2, 1, 2, 1, 2, 1, 0] +heroics 2.4 0.8 [2, 1, 2, 2, 2, 3, 3, 3, 4, 2] +heroin -2.2 1.83303 [0, -2, -4, 2, -4, -2, -2, -3, -3, -4] +heroine 2.7 1.1 [0, 2, 4, 4, 3, 3, 3, 3, 2, 3] +heroines 1.8 1.32665 [2, 1, 1, 4, 3, 1, 0, 3, 3, 0] +heroinism -2.0 2.0 [-3, -4, 2, -2, -4, -3, -2, -1, 1, -4] +heroism 2.8 0.6 [3, 3, 4, 3, 2, 2, 3, 3, 2, 3] +heroisms 2.2 0.87178 [3, 1, 2, 4, 3, 2, 2, 2, 1, 2] +heroize 2.1 0.7 [3, 2, 3, 1, 2, 2, 2, 3, 1, 2] +heroized 2.0 1.18322 [1, 0, 3, 3, 2, 0, 3, 3, 2, 3] +heroizes 2.2 0.9798 [1, 3, 2, 3, 4, 3, 2, 1, 2, 1] +heroizing 1.9 1.64012 [2, 3, -2, 2, 4, 3, 2, 2, 3, 0] +heron 0.1 0.3 [0, 0, 0, 0, 0, 1, 0, 0, 0, 0] +heronries 0.7 1.1 [2, 0, 0, 0, 2, 0, 3, 0, 0, 0] +heronry 0.1 0.9434 [0, 0, 0, 0, 0, 2, 0, 1, -2, 0] +herons 0.5 1.0247 [0, 0, 0, 3, 0, 2, 0, 0, 0, 0] +heros 1.3 1.18743 [3, 0, 0, 2, 0, 2, 2, 3, 1, 0] +hesitance -0.9 0.3 [-1, -1, 0, -1, -1, -1, -1, -1, -1, -1] +hesitancies -1.0 0.63246 [-1, -1, -1, -2, -1, -1, -2, 0, 0, -1] +hesitancy -0.9 0.53852 [0, -1, 0, -2, -1, -1, -1, -1, -1, -1] +hesitant -1.0 0.7746 [0, -1, 0, -1, -2, 0, -1, -2, -1, -2] +hesitantly -1.2 0.4 [-1, -1, -2, -1, -1, -1, -1, -2, -1, -1] +hesitate -1.1 0.53852 [-2, -1, -1, -1, -2, -1, -1, 0, -1, -1] +hesitated -1.3 0.9 [-1, -2, -1, -2, -2, -2, -1, 1, -1, -2] +hesitater -1.4 0.66332 [-1, -1, -1, -1, -1, -2, -1, -3, -2, -1] +hesitaters -1.4 0.4899 [-1, -2, -1, -1, -1, -1, -2, -2, -2, -1] +hesitates -1.4 0.4899 [-1, -1, -1, -2, -1, -2, -1, -2, -2, -1] +hesitating -1.4 0.66332 [-1, -1, -2, -1, -1, -3, -2, -1, -1, -1] +hesitatingly -1.5 0.80623 [-1, -1, -1, -1, -3, -2, -3, -1, -1, -1] +hesitation -1.1 0.53852 [-2, 0, -1, -1, -1, -1, -1, -2, -1, -1] +hesitations -1.1 0.53852 [-1, -1, -1, 0, -2, -1, -1, -2, -1, -1] +hid -0.4 0.4899 [0, -1, 0, 0, -1, -1, -1, 0, 0, 0] +hide -0.7 0.64031 [0, -1, -1, -1, -1, 0, 0, -2, -1, 0] +hides -0.7 0.9 [-1, -2, -1, 0, -1, 0, 0, -2, 1, -1] +hiding -1.2 0.4 [-1, -1, -2, -1, -1, -1, -1, -1, -2, -1] +highlight 1.4 0.91652 [3, 0, 1, 1, 2, 1, 0, 2, 2, 2] +hilarious 1.7 1.41774 [2, 2, 2, 3, 3, 1, -2, 2, 3, 1] +hindrance -1.7 0.78102 [-2, -3, -2, -1, -1, -1, -3, -1, -2, -1] +hoax -1.1 1.04403 [-3, -1, -2, -1, 1, -2, -1, -1, -1, 0] +holiday 1.7 1.18743 [1, 3, 2, 2, 0, 0, 1, 2, 4, 2] +holidays 1.6 1.0198 [2, 0, 1, 2, 3, 0, 1, 2, 3, 2] +homesick -0.7 1.67631 [-2, -1, -1, -2, -1, -2, 2, -1, 3, -2] +homesickness -1.8 1.249 [-3, -2, -1, -1, -3, -2, -1, 1, -3, -3] +homesicknesses -1.8 0.6 [-1, -2, -2, -2, -1, -2, -1, -2, -3, -2] +honest 2.3 0.9 [3, 2, 1, 2, 3, 1, 2, 3, 2, 4] +honester 1.9 0.7 [2, 3, 2, 2, 1, 3, 1, 1, 2, 2] +honestest 3.0 0.7746 [1, 3, 3, 3, 3, 3, 4, 4, 3, 3] +honesties 1.8 1.07703 [4, 3, 1, 1, 1, 1, 3, 2, 1, 1] +honestly 2.0 0.63246 [2, 3, 2, 2, 1, 2, 2, 1, 3, 2] +honesty 2.2 0.6 [2, 3, 2, 2, 1, 2, 3, 2, 3, 2] +honor 2.2 1.16619 [3, 2, 1, 2, 0, 4, 3, 1, 3, 3] +honorability 2.2 0.4 [3, 3, 2, 2, 2, 2, 2, 2, 2, 2] +honorable 2.5 0.67082 [2, 2, 3, 2, 4, 3, 2, 2, 2, 3] +honorableness 2.2 0.87178 [2, 4, 1, 3, 3, 2, 1, 2, 2, 2] +honorably 2.4 0.66332 [2, 2, 3, 2, 3, 3, 3, 1, 2, 3] +honoraria 0.6 0.8 [1, 0, 1, 0, 0, 0, 2, 0, 2, 0] +honoraries 1.5 1.5 [2, 2, 1, 3, 3, 1, -2, 2, 3, 0] +honorarily 1.9 0.7 [2, 2, 3, 1, 2, 1, 2, 1, 3, 2] +honorarium 0.7 1.48661 [3, 2, -1, 2, 1, -2, 1, 1, -1, 1] +honorariums 1.0 1.0 [0, 0, 0, 0, 1, 2, 1, 3, 2, 1] +honorary 1.4 0.91652 [2, 2, 2, 3, 1, 1, 0, 1, 2, 0] +honored 2.8 0.87178 [3, 4, 4, 3, 1, 2, 2, 3, 3, 3] +honoree 2.1 0.7 [3, 2, 3, 3, 1, 2, 1, 2, 2, 2] +honorees 2.3 0.78102 [1, 3, 3, 4, 2, 2, 2, 2, 2, 2] +honorer 1.7 0.78102 [2, 1, 3, 3, 1, 2, 1, 2, 1, 1] +honorers 1.3 0.45826 [1, 1, 2, 2, 1, 1, 2, 1, 1, 1] +honorific 1.4 1.2 [2, 2, 2, 2, 2, 1, 2, 1, 2, -2] +honorifically 2.2 0.74833 [3, 4, 1, 2, 2, 2, 2, 2, 2, 2] +honorifics 1.7 0.78102 [1, 2, 0, 1, 2, 2, 2, 3, 2, 2] +honoring 2.3 0.64031 [3, 3, 1, 2, 2, 3, 3, 2, 2, 2] +honors 2.3 0.64031 [3, 2, 2, 2, 1, 3, 3, 2, 3, 2] +honour 2.7 0.78102 [2, 3, 2, 2, 2, 3, 4, 4, 3, 2] +honourable 2.1 0.53852 [2, 3, 2, 2, 2, 1, 3, 2, 2, 2] +honoured 2.2 1.249 [3, 3, 4, 3, -1, 2, 2, 2, 2, 2] +honourer 1.8 0.87178 [2, 3, 2, 1, 2, 3, 1, 0, 2, 2] +honourers 1.6 1.0198 [0, 2, 2, 1, 2, 2, 1, 3, 0, 3] +honouring 2.1 0.3 [2, 2, 2, 3, 2, 2, 2, 2, 2, 2] +honours 2.2 0.87178 [4, 3, 2, 2, 3, 2, 2, 1, 2, 1] +hooligan -1.5 0.5 [-1, -2, -1, -2, -2, -2, -1, -1, -2, -1] +hooliganism -2.1 0.83066 [-3, -2, -3, -3, -2, -2, -2, -2, 0, -2] +hooligans -1.1 1.22066 [-2, -1, -1, 2, -1, -1, -1, -3, -2, -1] +hooray 2.3 0.9 [3, 2, 3, 2, 1, 3, 1, 2, 2, 4] +hope 1.9 0.53852 [3, 2, 2, 1, 2, 2, 1, 2, 2, 2] +hoped 1.6 0.4899 [1, 2, 1, 1, 2, 2, 1, 2, 2, 2] +hopeful 2.3 0.78102 [2, 1, 1, 3, 3, 3, 2, 3, 2, 3] +hopefully 1.7 0.78102 [1, 3, 1, 3, 1, 2, 1, 1, 2, 2] +hopefulness 1.6 1.35647 [2, 1, -2, 2, 3, 2, 1, 3, 2, 2] +hopeless -2.0 1.78885 [-3, -3, -3, -3, 3, -1, -3, -3, -2, -2] +hopelessly -2.2 0.74833 [-3, -4, -2, -2, -1, -2, -2, -2, -2, -2] +hopelessness -3.1 0.7 [-3, -4, -4, -3, -3, -3, -4, -3, -2, -2] +hopes 1.8 0.6 [1, 3, 1, 2, 2, 2, 1, 2, 2, 2] +hoping 1.8 0.4 [2, 2, 2, 1, 2, 2, 2, 2, 2, 1] +horrendous -2.8 0.87178 [-3, -3, -4, -4, -3, -3, -2, -2, -1, -3] +horrendously -1.9 1.92094 [-3, -2, -4, -4, 2, -1, -3, -2, 1, -3] +horrent -0.9 1.04403 [0, -1, -2, 0, 0, -3, -1, 0, -2, 0] +horrible -2.5 0.67082 [-2, -2, -3, -2, -2, -4, -3, -3, -2, -2] +horribleness -2.4 0.4899 [-3, -3, -2, -2, -3, -2, -2, -3, -2, -2] +horribles -2.1 0.7 [-2, -4, -2, -2, -1, -2, -2, -2, -2, -2] +horribly -2.4 0.66332 [-2, -2, -2, -2, -2, -4, -3, -3, -2, -2] +horrid -2.5 1.0247 [-2, -3, -3, -4, -4, -1, -2, -2, -3, -1] +horridly -1.4 1.49666 [-2, 0, -3, -2, 0, -3, 2, -2, -2, -2] +horridness -2.3 1.26886 [-3, -3, -2, 1, -3, -3, -3, -3, -1, -3] +horridnesses -3.0 1.09545 [-2, -3, -4, -4, -4, -4, -2, -2, -1, -4] +horrific -3.4 0.91652 [-2, -4, -4, -4, -2, -4, -2, -4, -4, -4] +horrifically -2.9 0.7 [-2, -3, -2, -4, -2, -4, -3, -3, -3, -3] +horrified -2.5 0.92195 [-2, -3, -2, -2, -1, -4, -2, -2, -3, -4] +horrifies -2.9 1.22066 [-1, -3, -2, -1, -4, -4, -4, -4, -2, -4] +horrify -2.5 0.67082 [-2, -2, -3, -2, -2, -2, -4, -2, -3, -3] +horrifying -2.7 0.9 [-3, -4, -3, -2, -3, -3, -4, -2, -2, -1] +horrifyingly -3.3 0.9 [-3, -3, -4, -4, -1, -4, -3, -3, -4, -4] +horror -2.7 1.1 [-3, -1, -4, -4, -4, -3, -1, -2, -3, -2] +horrors -2.7 0.64031 [-3, -3, -4, -3, -2, -2, -2, -3, -2, -3] +hostile -1.6 1.74356 [-4, -3, -3, -1, 1, -2, 2, -2, -2, -2] +hostilely -2.2 0.6 [-1, -3, -3, -2, -2, -2, -2, -2, -2, -3] +hostiles -1.3 1.9 [-3, -3, -3, -3, -1, 2, -3, -1, 1, 1] +hostilities -2.1 0.53852 [-2, -3, -2, -2, -2, -2, -1, -2, -3, -2] +hostility -2.5 0.80623 [-2, -2, -3, -3, -3, -2, -4, -2, -3, -1] +huckster -0.9 0.7 [-1, 0, -1, 0, -1, -2, -2, 0, -1, -1] +hug 2.1 1.04403 [1, 3, 2, 1, 1, 2, 3, 3, 1, 4] +huge 1.3 0.9 [0, 2, 2, 0, 0, 2, 2, 2, 1, 2] +huggable 1.6 0.66332 [2, 2, 1, 1, 1, 3, 1, 2, 2, 1] +hugged 1.7 0.78102 [2, 2, 2, 2, 3, 1, 1, 2, 0, 2] +hugger 1.6 0.91652 [3, 2, 2, 2, 3, 1, 1, 1, 0, 1] +huggers 1.8 0.6 [1, 3, 1, 2, 1, 2, 2, 2, 2, 2] +hugging 1.8 0.74833 [2, 1, 1, 3, 3, 2, 2, 1, 2, 1] +hugs 2.2 0.74833 [3, 2, 1, 2, 2, 2, 3, 1, 3, 3] +humerous 1.4 1.11355 [-1, 2, 2, 3, 1, 1, 2, 0, 2, 2] +humiliate -2.5 1.28452 [-3, -3, -3, -3, -2, -2, -4, -3, 1, -3] +humiliated -1.4 2.498 [3, -3, -4, -3, -3, -4, -3, 0, 1, 2] +humiliates -1.0 2.09762 [1, -2, -3, -3, -3, -2, -3, 1, 2, 2] +humiliating -1.2 1.8868 [-4, -1, -3, -1, 2, -1, 2, -3, -2, -1] +humiliatingly -2.6 0.4899 [-3, -3, -2, -2, -3, -3, -3, -3, -2, -2] +humiliation -2.7 0.78102 [-2, -3, -4, -2, -2, -2, -3, -2, -4, -3] +humiliations -2.4 0.66332 [-3, -2, -2, -2, -2, -2, -2, -3, -2, -4] +humor 1.1 0.53852 [1, 0, 2, 2, 1, 1, 1, 1, 1, 1] +humoral 0.6 1.0198 [2, 0, 0, 0, 0, 0, 3, 1, 0, 0] +humored 1.2 0.87178 [1, 1, 2, 2, 1, 1, 2, 1, 2, -1] +humoresque 1.2 0.6 [1, 1, 1, 2, 1, 2, 2, 1, 1, 0] +humoresques 0.9 1.04403 [1, 0, 2, 0, 0, 1, 2, 0, 3, 0] +humoring 2.1 0.7 [3, 2, 2, 2, 1, 2, 2, 1, 3, 3] +humorist 1.2 0.74833 [1, 2, 1, 1, 2, 1, 2, 0, 0, 2] +humoristic 1.5 0.80623 [3, 0, 2, 1, 2, 1, 2, 2, 1, 1] +humorists 1.3 0.78102 [2, 1, 1, 1, 0, 1, 2, 3, 1, 1] +humorless -1.3 0.45826 [-1, -2, -1, -1, -1, -1, -2, -1, -1, -2] +humorlessness -1.4 1.11355 [1, -3, -3, -1, -1, -2, -1, -1, -2, -1] +humorous 1.6 0.4899 [1, 2, 1, 2, 2, 1, 2, 2, 1, 2] +humorously 2.3 0.78102 [3, 3, 2, 2, 1, 3, 3, 1, 2, 3] +humorousness 2.4 0.66332 [1, 2, 3, 2, 3, 2, 3, 3, 2, 3] +humors 1.6 0.4899 [2, 1, 2, 2, 2, 2, 1, 2, 1, 1] +humour 2.1 0.9434 [1, 2, 2, 4, 2, 1, 1, 3, 3, 2] +humoured 1.1 0.53852 [1, 0, 1, 2, 2, 1, 1, 1, 1, 1] +humouring 1.7 0.78102 [2, 3, 1, 2, 1, 0, 2, 2, 2, 2] +humourous 2.0 0.7746 [1, 2, 3, 2, 2, 3, 3, 2, 1, 1] +hunger -1.0 1.67332 [-4, 0, 2, -2, -1, -2, 1, -2, 0, -2] +hurrah 2.6 0.8 [3, 2, 3, 3, 1, 3, 4, 2, 2, 3] +hurrahed 1.9 0.53852 [2, 2, 1, 1, 2, 2, 3, 2, 2, 2] +hurrahing 2.4 0.4899 [3, 2, 2, 2, 3, 2, 3, 3, 2, 2] +hurrahs 2.1 1.44568 [2, 3, 0, 3, 2, 3, -1, 2, 3, 4] +hurray 2.7 0.78102 [3, 2, 3, 3, 1, 3, 4, 2, 3, 3] +hurrayed 1.8 1.32665 [3, 3, 2, 3, 3, 3, 0, 0, 1, 0] +hurraying 1.2 1.66132 [2, -3, 2, 3, 0, 2, 2, 2, 0, 2] +hurrays 2.4 1.11355 [2, 3, 2, 4, 0, 3, 2, 2, 2, 4] +hurt -2.4 0.8 [-3, -3, -2, -2, -4, -3, -2, -1, -2, -2] +hurter -2.3 0.78102 [-2, -4, -1, -2, -3, -3, -2, -2, -2, -2] +hurters -1.9 1.04403 [-2, -3, -1, -2, -1, 0, -3, -3, -3, -1] +hurtful -2.4 1.0198 [-2, -4, -2, -2, -1, -3, -2, -3, -1, -4] +hurtfully -2.6 0.66332 [-3, -2, -3, -2, -2, -3, -4, -3, -2, -2] +hurtfulness -1.9 1.51327 [2, -2, -2, -2, -3, -1, -2, -3, -4, -2] +hurting -1.7 0.78102 [-3, -1, -1, -2, -1, -1, -3, -2, -2, -1] +hurtle -0.3 1.1 [-2, 1, 0, -1, -1, -1, 0, 2, 0, -1] +hurtled -0.6 0.8 [0, -2, 0, 0, 0, 0, -1, -1, -2, 0] +hurtles -1.0 0.63246 [-1, -2, 0, 0, -1, -1, -1, -1, -2, -1] +hurtless 0.3 1.55242 [-1, -3, 2, 1, 2, 1, 0, 0, -1, 2] +hurtling -1.4 0.8 [-3, -2, -1, -1, -1, -1, -1, -2, 0, -2] +hurts -2.1 0.83066 [-4, -2, -2, -2, -3, -1, -2, -2, -2, -1] +hypocritical -2.0 0.89443 [-4, -2, -1, -3, -2, -1, -2, -1, -2, -2] +hysteria -1.9 0.7 [-1, -3, -1, -2, -2, -2, -2, -2, -1, -3] +hysterical -0.1 1.97231 [2, 0, 0, 3, -2, -2, 3, -1, -2, -2] +hysterics -1.8 1.77764 [-3, -3, -3, -1, -3, -1, -2, 3, -3, -2] +ideal 2.4 1.2 [4, 3, 4, 4, 2, 2, 1, 2, 1, 1] +idealess -1.9 1.3 [-4, -2, -3, -2, -1, 0, -4, -1, -1, -1] +idealise 1.4 0.91652 [2, 2, 1, 0, 1, 3, 2, 0, 1, 2] +idealised 2.1 0.83066 [1, 4, 1, 3, 2, 2, 2, 2, 2, 2] +idealises 2.0 0.89443 [1, 4, 1, 2, 2, 2, 2, 3, 1, 2] +idealising 0.6 0.4899 [0, 1, 1, 1, 1, 1, 1, 0, 0, 0] +idealism 1.7 1.1 [1, 2, 0, 3, 3, 2, 1, 2, 3, 0] +idealisms 0.8 0.9798 [0, 2, 3, 1, 0, 0, 1, 0, 0, 1] +idealist 1.6 1.56205 [2, 3, -2, 1, 3, 3, 1, 0, 2, 3] +idealistic 1.8 0.9798 [2, 1, 0, 2, 4, 2, 2, 2, 1, 2] +idealistically 1.7 1.1 [0, 3, 3, 1, 2, 3, 0, 2, 1, 2] +idealists 0.7 1.1 [0, -2, 1, 2, 1, 1, 2, 0, 1, 1] +idealities 1.5 0.67082 [2, 1, 1, 2, 1, 0, 2, 2, 2, 2] +ideality 1.9 0.9434 [0, 1, 2, 3, 2, 1, 2, 3, 3, 2] +idealization 1.8 0.9798 [2, 2, 2, 1, 4, 2, 2, 0, 1, 2] +idealizations 1.4 0.66332 [2, 1, 1, 2, 1, 2, 1, 0, 2, 2] +idealize 1.2 0.9798 [1, 2, 2, 0, 0, 1, 3, 0, 2, 1] +idealized 1.8 0.74833 [2, 3, 1, 1, 2, 1, 3, 1, 2, 2] +idealizer 1.3 0.9 [1, 1, 1, 1, 1, 3, 0, 1, 3, 1] +idealizers 1.9 1.37477 [1, 4, 1, 2, 0, 2, 3, 2, 4, 0] +idealizes 2.0 1.0 [3, 2, 2, 1, 4, 2, 2, 0, 2, 2] +idealizing 1.4 1.0198 [1, 1, 2, 3, 0, 1, 3, 0, 2, 1] +idealless -1.7 1.00499 [-2, -2, -2, -2, -4, -1, 0, -1, -2, -1] +ideally 1.8 1.16619 [1, 0, 2, 2, 3, 2, 4, 0, 2, 2] +idealogues 0.5 0.92195 [1, 0, -1, 2, 0, 0, 2, 0, 1, 0] +idealogy 0.8 1.16619 [0, 3, 1, 0, 2, 0, 0, 1, 2, -1] +ideals 0.8 0.6 [0, 1, 0, 2, 1, 1, 1, 0, 1, 1] +idiot -2.3 0.64031 [-2, -3, -1, -3, -2, -3, -3, -2, -2, -2] +idiotic -2.6 0.91652 [-3, -4, -2, -3, -2, -2, -4, -1, -3, -2] +ignorable -1.0 0.63246 [-1, -1, -1, -2, 0, -1, 0, -1, -2, -1] +ignorami -1.9 0.83066 [-2, -2, -3, -2, 0, -1, -2, -2, -3, -2] +ignoramus -1.9 0.83066 [-1, -2, -1, -3, -1, -3, -1, -3, -2, -2] +ignoramuses -2.3 1.1 [-2, -2, -3, -4, 0, -1, -3, -2, -3, -3] +ignorance -1.5 1.20416 [-2, -2, -3, -2, 0, -2, -1, -3, -1, 1] +ignorances -1.2 0.9798 [0, -1, -2, -1, -2, -2, -1, 1, -2, -2] +ignorant -1.1 0.83066 [-1, -1, -1, -2, 1, -2, -1, -2, -1, -1] +ignorantly -1.6 0.91652 [-1, -2, -2, -2, -2, -2, -2, 1, -2, -2] +ignorantness -1.1 1.44568 [3, -1, -2, -1, -1, -2, -2, -2, -1, -2] +ignore -1.5 0.67082 [-1, -2, -1, -1, -1, -1, -2, -3, -2, -1] +ignored -1.3 0.45826 [-2, -1, -2, -1, -1, -2, -1, -1, -1, -1] +ignorer -1.3 0.45826 [-1, -1, -2, -1, -2, -1, -1, -1, -2, -1] +ignorers -0.7 1.00499 [-1, -2, -1, -1, -1, 1, 0, -2, 1, -1] +ignores -1.1 0.3 [-1, -1, -2, -1, -1, -1, -1, -1, -1, -1] +ignoring -1.7 0.64031 [-1, -1, -1, -2, -2, -3, -2, -1, -2, -2] +ill -1.8 0.9798 [-2, 0, -2, -1, -4, -2, -2, -2, -1, -2] +illegal -2.6 0.8 [-3, -4, -3, -2, -1, -2, -3, -3, -2, -3] +illiteracy -1.9 0.7 [-2, -1, -2, -2, -3, -2, -1, -2, -1, -3] +illness -1.7 0.64031 [-2, -1, -2, -2, -3, -2, -1, -2, -1, -1] +illnesses -2.2 0.74833 [-2, -2, -2, -4, -2, -3, -2, -1, -2, -2] +imbecile -2.2 0.9798 [-3, -2, -3, -3, -3, -1, -3, 0, -2, -2] +immobilized -1.2 0.87178 [-1, -3, 0, -1, -1, 0, -2, -1, -2, -1] +immoral -2.0 1.09545 [-4, -1, -1, -3, -2, -3, -3, -1, -1, -1] +immoralism -1.6 0.91652 [-2, -2, -2, -2, 1, -2, -2, -2, -1, -2] +immoralist -2.1 0.3 [-2, -2, -3, -2, -2, -2, -2, -2, -2, -2] +immoralists -1.7 0.78102 [-2, -2, -2, -3, -1, -1, -1, -1, -3, -1] +immoralities -1.1 1.51327 [-2, -1, -4, -3, 1, 1, -1, 0, -1, -1] +immorality -0.6 2.2891 [3, -3, 1, 2, 2, -2, -4, -1, -2, -2] +immorally -2.1 0.7 [-1, -1, -2, -2, -3, -2, -3, -2, -2, -3] +immortal 1.0 1.73205 [3, 3, 2, 2, -2, -2, 2, 1, 1, 0] +immune 1.2 0.74833 [2, 2, 0, 1, 2, 1, 2, 1, 1, 0] +impatience -1.8 0.4 [-2, -2, -1, -2, -2, -2, -2, -1, -2, -2] +impatiens -0.2 0.6 [0, 0, -1, 0, 0, 0, 1, -1, -1, 0] +impatient -1.2 0.4 [-1, -1, -1, -1, -1, -1, -2, -1, -1, -2] +impatiently -1.7 0.64031 [-1, -1, -2, -3, -1, -2, -1, -2, -2, -2] +imperfect -1.3 0.64031 [-1, -1, -1, -1, -1, -2, -3, -1, -1, -1] +impersonal -1.3 0.45826 [-2, -2, -1, -1, -2, -1, -1, -1, -1, -1] +impolite -1.6 0.66332 [-2, -1, -3, -1, -1, -1, -1, -2, -2, -2] +impolitely -1.8 0.6 [-2, -2, -1, -1, -2, -1, -2, -2, -3, -2] +impoliteness -1.8 0.87178 [-1, -3, -2, -3, -2, -3, -1, -1, -1, -1] +impolitenesses -2.3 0.78102 [-3, -2, -2, -1, -1, -3, -3, -2, -3, -3] +importance 1.5 0.80623 [2, 1, 2, 3, 1, 2, 1, 0, 2, 1] +importancies 0.4 1.42829 [0, 0, 1, 2, 0, 0, 2, 2, 0, -3] +importancy 1.4 0.66332 [2, 1, 2, 2, 1, 2, 1, 0, 2, 1] +important 0.8 1.07703 [0, 0, 0, 2, 1, 0, 0, 3, 2, 0] +importantly 1.3 0.78102 [2, 1, 2, 1, 2, 2, 0, 0, 1, 2] +impose -1.2 0.4 [-1, -1, -1, -1, -2, -1, -2, -1, -1, -1] +imposed -0.3 1.41774 [2, -1, -1, -1, 1, 0, -2, 2, -2, -1] +imposes -0.4 1.42829 [-2, -1, 1, -2, -1, -1, -2, 1, 2, 1] +imposing -0.4 1.0198 [1, -1, -2, -1, 1, 1, 0, -1, -1, -1] +impotent -1.1 0.3 [-1, -1, -1, -2, -1, -1, -1, -1, -1, -1] +impress 1.9 0.53852 [2, 2, 1, 2, 2, 2, 2, 1, 2, 3] +impressed 2.1 0.3 [2, 2, 2, 2, 2, 2, 3, 2, 2, 2] +impresses 2.1 0.3 [2, 2, 2, 2, 2, 2, 3, 2, 2, 2] +impressibility 1.2 1.249 [-1, 2, 0, 2, 0, 2, 2, 3, 2, 0] +impressible 0.8 1.16619 [2, -1, 1, 0, -1, 2, 1, 0, 2, 2] +impressing 2.5 0.92195 [3, 4, 1, 2, 3, 2, 3, 1, 3, 3] +impression 0.9 0.9434 [0, 1, 0, 0, 2, 2, 0, 2, 0, 2] +impressionable 0.2 1.07703 [0, 0, -1, 1, -1, -1, 0, 2, 0, 2] +impressionism 0.8 1.07703 [0, 2, 3, 0, 0, 2, 0, 0, 1, 0] +impressionisms 0.5 0.80623 [0, 0, 0, 0, 0, 2, 0, 1, 0, 2] +impressionist 1.0 1.09545 [0, 2, 3, 0, 0, 2, 2, 0, 1, 0] +impressionistic 1.5 1.20416 [2, 2, 0, 0, 1, 0, 2, 2, 4, 2] +impressionistically 1.6 0.8 [2, 0, 1, 1, 2, 2, 3, 2, 2, 1] +impressionists 0.5 1.43178 [2, 0, 0, 1, 1, 2, -2, 2, 1, -2] +impressions 0.9 1.13578 [2, 0, 0, 3, 0, 2, 0, 2, 0, 0] +impressive 2.3 0.78102 [1, 2, 3, 2, 3, 2, 3, 3, 3, 1] +impressively 2.0 0.89443 [3, 1, 1, 2, 2, 2, 2, 4, 2, 1] +impressiveness 1.7 0.64031 [2, 1, 2, 3, 1, 2, 2, 2, 1, 1] +impressment -0.4 1.85472 [-2, 1, 3, -2, -1, -3, 0, 0, 2, -2] +impressments 0.5 1.20416 [2, 0, 0, 1, 2, 2, 0, -2, 0, 0] +impressure 0.6 1.0198 [-1, 0, 0, 0, 0, 2, 0, 2, 1, 2] +imprisoned -2.0 1.0 [-4, -2, -3, -1, -3, -2, -1, -2, -1, -1] +improve 1.9 0.7 [2, 3, 3, 2, 1, 1, 2, 2, 1, 2] +improved 2.1 0.7 [3, 1, 2, 3, 2, 3, 1, 2, 2, 2] +improvement 2.0 0.63246 [2, 3, 3, 2, 1, 1, 2, 2, 2, 2] +improvements 1.3 0.64031 [0, 2, 2, 1, 2, 2, 1, 1, 1, 1] +improver 1.8 0.6 [2, 1, 2, 1, 2, 3, 1, 2, 2, 2] +improvers 1.3 0.78102 [1, 2, 2, 1, 2, 2, 0, 0, 1, 2] +improves 1.8 1.07703 [3, -1, 2, 2, 2, 3, 1, 2, 2, 2] +improving 1.8 0.4 [2, 2, 1, 1, 2, 2, 2, 2, 2, 2] +inability -1.7 0.9 [-2, -2, -3, 0, -2, -3, -2, -1, -1, -1] +inaction -1.0 0.63246 [-2, -1, 0, -1, -1, 0, -1, -2, -1, -1] +inadequacies -1.7 0.64031 [-1, -3, -2, -1, -2, -1, -2, -2, -1, -2] +inadequacy -1.7 0.78102 [-1, -3, -1, -1, -3, -2, -2, -1, -2, -1] +inadequate -1.7 0.64031 [-2, -1, -1, -3, -1, -1, -2, -2, -2, -2] +inadequately -1.0 1.26491 [-3, -1, -1, -2, 2, -1, -2, -1, 0, -1] +inadequateness -1.7 0.45826 [-2, -2, -1, -1, -1, -2, -2, -2, -2, -2] +inadequatenesses -1.6 0.91652 [-1, -1, -2, -1, -2, -4, -2, -1, -1, -1] +incapable -1.6 0.4899 [-1, -2, -1, -1, -2, -1, -2, -2, -2, -2] +incapacitated -1.9 0.9434 [-2, -2, -1, -1, -2, -4, -1, -1, -2, -3] +incensed -2.0 1.0 [-2, -1, -4, 0, -2, -2, -2, -3, -2, -2] +incentive 1.5 1.0247 [1, 2, 1, 2, 1, 0, 4, 2, 1, 1] +incentives 1.3 1.34536 [2, 2, 1, 1, 3, 1, -2, 3, 1, 1] +incompetence -2.3 0.45826 [-3, -2, -2, -3, -2, -3, -2, -2, -2, -2] +incompetent -2.1 0.83066 [-1, -1, -2, -2, -3, -3, -2, -3, -1, -3] +inconsiderate -1.9 0.7 [-2, -1, -1, -1, -2, -2, -2, -3, -3, -2] +inconvenience -1.5 0.5 [-1, -2, -1, -1, -1, -2, -2, -1, -2, -2] +inconvenient -1.4 0.4899 [-2, -2, -1, -2, -1, -2, -1, -1, -1, -1] +increase 1.3 0.64031 [1, 2, 2, 1, 2, 0, 1, 1, 2, 1] +increased 1.1 1.04403 [2, 0, 3, 2, 2, 1, 0, 1, 0, 0] +indecision -0.8 0.6 [-1, 0, -1, 0, -1, -1, -2, 0, -1, -1] +indecisions -1.1 0.53852 [-1, -1, -1, -1, -2, -1, -2, -1, 0, -1] +indecisive -1.0 0.44721 [0, -1, -1, -1, -1, -2, -1, -1, -1, -1] +indecisively -0.7 1.18743 [-2, -1, -1, -1, -1, -1, -2, 2, 1, -1] +indecisiveness -1.3 0.64031 [-1, -3, -1, -2, -1, -1, -1, -1, -1, -1] +indecisivenesses -0.9 0.53852 [-1, -1, 0, -1, -1, 0, -1, -2, -1, -1] +indestructible 0.6 1.85472 [3, 4, -1, -2, 1, 1, 2, 0, -1, -1] +indifference -0.2 0.74833 [0, -1, 0, 0, 0, 1, -2, 0, 0, 0] +indifferent -0.8 0.6 [-1, 0, 0, -1, -2, -1, -1, 0, -1, -1] +indignant -1.8 0.74833 [-1, -3, -2, -2, -2, -1, -1, -1, -3, -2] +indignation -2.4 0.8 [-2, -1, -2, -3, -3, -3, -1, -3, -3, -3] +indoctrinate -1.4 0.91652 [-1, -3, -1, 0, -2, -1, -2, -2, 0, -2] +indoctrinated -0.4 1.35647 [1, -2, -3, 1, -1, 1, 1, -1, -1, 0] +indoctrinates -0.6 1.2 [1, -1, -3, 1, -1, 1, -1, -1, -1, -1] +indoctrinating -0.7 1.41774 [-1, 0, -3, -1, -2, -1, 2, -2, 0, 1] +ineffective -0.5 1.74642 [-2, -1, -1, -1, -2, 2, -2, 1, 3, -2] +ineffectively -1.3 0.9 [-2, -2, -2, 1, -1, -1, -1, -2, -1, -2] +ineffectiveness -1.3 0.45826 [-1, -1, -2, -1, -1, -2, -1, -1, -2, -1] +ineffectual -1.2 0.4 [-1, -1, -1, -1, -1, -1, -1, -2, -2, -1] +ineffectuality -1.6 0.66332 [-2, -1, -1, -1, -2, -1, -3, -2, -2, -1] +ineffectually -1.1 0.9434 [-1, -2, -2, -1, 0, -1, -2, -1, 1, -2] +ineffectualness -1.3 0.45826 [-2, -1, -1, -1, -1, -2, -1, -1, -2, -1] +infatuated 0.2 1.72047 [3, 2, 0, 3, -1, -1, -2, 0, -1, -1] +infatuation 0.6 1.74356 [1, -1, -1, 2, -1, 1, 4, 2, 1, -2] +infected -2.2 0.6 [-3, -2, -2, -2, -2, -2, -3, -1, -2, -3] +inferior -1.7 0.78102 [-1, -2, -2, -1, -1, -3, -2, -1, -1, -3] +inferiorities -1.9 0.7 [-2, -3, -1, -2, -2, -3, -1, -1, -2, -2] +inferiority -1.1 1.7 [-2, -3, -2, -2, -2, -3, 2, 1, -1, 1] +inferiorly -2.0 0.63246 [-3, -2, -2, -2, -2, -3, -1, -2, -1, -2] +inferiors -0.5 1.43178 [-1, -1, -1, -2, -1, 0, 3, -1, 1, -2] +inflamed -1.4 1.28062 [-2, -2, -1, -2, -2, -1, 2, -3, -2, -1] +influential 1.9 1.04403 [3, 1, 2, 3, 4, 1, 1, 2, 1, 1] +infringement -2.1 0.83066 [-3, -1, -2, -1, -2, -1, -3, -3, -2, -3] +infuriate -2.2 0.87178 [-2, -1, -3, -3, -2, -3, -3, -1, -1, -3] +infuriated -3.0 0.7746 [-1, -4, -3, -3, -3, -3, -3, -3, -3, -4] +infuriates -2.6 0.8 [-4, -2, -1, -3, -3, -3, -2, -3, -3, -2] +infuriating -2.4 1.42829 [-1, -3, -3, -3, -3, -4, 0, 0, -4, -3] +inhibin -0.2 0.4 [-1, 0, 0, 0, 0, 0, 0, 0, -1, 0] +inhibit -1.6 0.4899 [-1, -2, -1, -2, -1, -2, -2, -2, -1, -2] +inhibited -0.4 0.4899 [0, 0, -1, 0, -1, -1, 0, -1, 0, 0] +inhibiting -0.4 1.42829 [1, -1, -1, -1, -2, -1, 2, -2, 2, -1] +inhibition -1.5 0.67082 [-1, -1, -1, -1, -2, -1, -1, -2, -2, -3] +inhibitions -0.8 0.74833 [-2, -1, -2, 0, 0, 0, 0, -1, -1, -1] +inhibitive -1.4 0.4899 [-2, -2, -1, -1, -2, -1, -2, -1, -1, -1] +inhibitor -0.3 1.00499 [-2, 1, 1, -1, 1, 0, -1, -1, 0, -1] +inhibitors -1.0 0.7746 [-1, 0, -2, -1, -2, -2, 0, 0, -1, -1] +inhibitory -1.0 0.7746 [0, -1, -2, -2, -1, -2, 0, 0, -1, -1] +inhibits -0.9 0.53852 [-1, -1, -2, -1, -1, 0, -1, -1, -1, 0] +injured -1.7 0.64031 [-2, -1, -1, -1, -2, -1, -2, -2, -3, -2] +injury -1.8 0.6 [-2, -2, -1, -2, -1, -1, -2, -3, -2, -2] +injustice -2.7 0.64031 [-3, -2, -3, -4, -3, -3, -2, -2, -3, -2] +innocence 1.6 0.91652 [3, 1, 1, 1, 2, 2, 0, 3, 2, 1] +innocency 1.9 0.83066 [3, 1, 2, 0, 2, 2, 2, 3, 2, 2] +innocent 1.4 1.2 [1, -1, 2, 2, 2, 0, 1, 3, 3, 1] +innocenter 0.9 1.37477 [1, 1, 1, 2, 2, 1, 1, -3, 1, 2] +innocently 1.4 0.8 [0, 2, 1, 1, 1, 1, 3, 2, 2, 1] +innocents 1.1 1.04403 [0, 0, 2, 2, 2, -1, 1, 1, 2, 2] +innovate 2.2 0.74833 [2, 4, 3, 2, 2, 1, 2, 2, 2, 2] +innovates 2.0 0.89443 [2, 2, 2, 0, 1, 3, 3, 2, 3, 2] +innovation 1.6 0.91652 [1, 0, 3, 2, 1, 2, 3, 2, 1, 1] +innovative 1.9 0.83066 [1, 1, 2, 1, 2, 4, 2, 2, 2, 2] +inquisition -1.2 1.249 [-2, 1, -1, 0, 0, -3, -1, -3, -2, -1] +inquisitive 0.7 1.18743 [2, 1, 1, 2, -2, -1, 1, 1, 1, 1] +insane -1.7 0.78102 [-2, 0, -2, -1, -2, -3, -2, -2, -1, -2] +insanity -2.7 1.00499 [-2, -4, -1, -1, -3, -4, -3, -3, -3, -3] +insecure -1.8 0.74833 [-1, -2, -2, -1, -3, -2, -3, -2, -1, -1] +insecurely -1.4 0.66332 [-3, -1, -1, -1, -2, -1, -2, -1, -1, -1] +insecureness -1.8 0.87178 [-1, -1, -1, -3, -3, -3, -2, -2, -1, -1] +insecurities -1.8 0.6 [-3, -2, -2, -2, -1, -2, -1, -1, -2, -2] +insecurity -1.8 0.74833 [-2, -2, -2, -1, -3, -3, -2, -1, -1, -1] +insensitive -0.9 1.81384 [2, -3, -2, -1, 2, -3, -2, 1, -1, -2] +insensitivity -1.8 0.6 [-2, -2, -1, -3, -2, -2, -1, -2, -1, -2] +insignificant -1.4 0.8 [-3, -2, -1, -2, -1, -2, 0, -1, -1, -1] +insincere -1.8 0.6 [-2, -1, -2, -1, -2, -2, -2, -2, -1, -3] +insincerely -1.9 0.7 [-2, -1, -2, -2, -1, -3, -2, -3, -1, -2] +insincerity -1.4 1.35647 [-1, -1, -3, -2, -1, 2, -2, -1, -2, -3] +insipid -2.0 0.7746 [-1, -2, -2, -1, -3, -3, -3, -2, -2, -1] +inspiration 2.4 0.8 [3, 3, 3, 3, 1, 3, 1, 3, 2, 2] +inspirational 2.3 0.64031 [2, 3, 2, 3, 2, 3, 2, 3, 1, 2] +inspirationally 2.3 0.64031 [3, 2, 2, 3, 3, 1, 2, 2, 3, 2] +inspirations 2.1 0.53852 [2, 2, 2, 2, 1, 2, 2, 3, 3, 2] +inspirator 1.9 1.22066 [2, 2, 3, 0, 3, 4, 0, 2, 1, 2] +inspirators 1.2 0.74833 [3, 1, 1, 2, 1, 1, 1, 1, 0, 1] +inspiratory 1.5 0.67082 [2, 2, 3, 1, 1, 1, 1, 1, 2, 1] +inspire 2.7 0.78102 [2, 3, 3, 3, 3, 3, 3, 1, 4, 2] +inspired 2.2 0.87178 [3, 2, 1, 3, 1, 1, 3, 2, 3, 3] +inspirer 2.2 1.07703 [3, 2, 2, 4, 0, 2, 3, 1, 3, 2] +inspirers 2.0 0.63246 [2, 2, 3, 2, 3, 2, 1, 2, 1, 2] +inspires 1.9 1.04403 [2, 2, 2, 4, 0, 2, 3, 1, 1, 2] +inspiring 1.8 1.07703 [2, 2, 2, -1, 2, 3, 2, 2, 1, 3] +inspiringly 2.6 0.4899 [2, 3, 3, 2, 3, 3, 2, 3, 2, 3] +inspirit 1.9 0.7 [1, 3, 2, 1, 2, 1, 3, 2, 2, 2] +inspirited 1.3 1.18743 [2, 2, 0, 0, 3, 0, 2, 0, 3, 1] +inspiriting 1.8 0.4 [1, 2, 1, 2, 2, 2, 2, 2, 2, 2] +inspiritingly 2.1 1.44568 [3, 2, 2, 2, 4, 1, -1, 3, 4, 1] +inspirits 0.8 1.46969 [3, 0, 3, -2, 0, 1, 1, 0, 2, 0] +insult -2.3 1.00499 [-2, -1, -2, -3, -4, -1, -3, -1, -3, -3] +insulted -2.3 0.45826 [-2, -2, -2, -2, -3, -2, -2, -2, -3, -3] +insulter -2.0 0.63246 [-2, -1, -2, -2, -1, -3, -3, -2, -2, -2] +insulters -2.0 0.44721 [-2, -3, -2, -2, -2, -2, -2, -1, -2, -2] +insulting -2.2 0.74833 [-3, -2, -3, -3, -2, -3, -1, -2, -2, -1] +insultingly -2.3 0.78102 [-3, -3, -1, -2, -2, -3, -2, -1, -3, -3] +insults -1.8 0.6 [-2, -3, -2, -2, -1, -1, -1, -2, -2, -2] +intact 0.8 0.6 [1, 1, 0, 0, 1, 1, 0, 1, 1, 2] +integrity 1.6 0.66332 [2, 1, 1, 1, 2, 1, 3, 1, 2, 2] +intellect 2.0 1.09545 [2, 1, 4, 2, 1, 3, 2, 3, 0, 2] +intellection 0.6 1.0198 [0, 0, 0, 1, 0, 0, 0, 0, 2, 3] +intellections 0.8 0.87178 [1, 0, 1, 0, 1, 1, 1, 0, 0, 3] +intellective 1.7 0.78102 [3, 2, 1, 2, 2, 1, 0, 2, 2, 2] +intellectively 0.8 0.9798 [0, 0, 1, 1, 0, 3, 0, 1, 2, 0] +intellects 1.8 0.87178 [1, 0, 2, 1, 3, 2, 2, 2, 3, 2] +intellectual 2.3 0.9 [3, 3, 1, 2, 3, 4, 2, 2, 1, 2] +intellectualism 2.2 1.07703 [4, 0, 3, 1, 3, 2, 2, 3, 2, 2] +intellectualist 2.0 1.0 [4, 0, 2, 1, 3, 2, 2, 2, 2, 2] +intellectualistic 1.3 1.73494 [1, 4, 0, 3, -2, 0, 2, 3, 0, 2] +intellectualists 0.8 0.74833 [0, 1, 1, 1, 0, 2, 0, 1, 2, 0] +intellectualities 1.7 1.34536 [3, 3, 0, 2, 1, 0, 0, 4, 2, 2] +intellectuality 1.7 1.1 [3, 2, 2, 1, 2, 1, 0, 3, 0, 3] +intellectualization 1.5 1.11803 [2, 1, 2, 1, 4, 2, 0, 0, 2, 1] +intellectualize 1.5 0.92195 [1, 2, 1, 1, 3, 2, 3, 0, 1, 1] +intellectualized 1.2 0.74833 [1, 0, 1, 1, 2, 0, 1, 2, 2, 2] +intellectualizes 1.8 0.87178 [2, 3, 2, 0, 2, 3, 2, 2, 1, 1] +intellectualizing 0.8 1.77764 [0, 1, 2, 1, 0, 2, 2, -4, 2, 2] +intellectually 1.4 0.8 [2, 0, 0, 1, 2, 2, 2, 2, 2, 1] +intellectualness 1.5 0.80623 [2, 2, 2, 2, 0, 0, 1, 2, 2, 2] +intellectuals 1.6 0.8 [0, 1, 2, 1, 3, 2, 1, 2, 2, 2] +intelligence 2.1 0.9434 [3, 2, 2, 1, 3, 3, 3, 2, 2, 0] +intelligencer 1.5 0.80623 [2, 0, 0, 2, 2, 2, 2, 1, 2, 2] +intelligencers 1.6 0.91652 [2, 2, 0, 2, 2, 0, 3, 2, 2, 1] +intelligences 1.6 0.91652 [3, 0, 0, 2, 2, 2, 2, 1, 2, 2] +intelligent 2.0 0.7746 [1, 2, 2, 1, 4, 2, 2, 2, 2, 2] +intelligential 1.9 0.9434 [3, 2, 2, 1, 3, 2, 2, 3, 0, 1] +intelligently 2.0 0.63246 [2, 3, 2, 3, 1, 2, 2, 1, 2, 2] +intelligentsia 1.5 1.20416 [0, 1, 2, 0, 4, 3, 2, 1, 1, 1] +intelligibility 1.5 0.80623 [2, 2, 0, 2, 2, 1, 2, 0, 2, 2] +intelligible 1.4 0.8 [1, 2, 2, 1, 0, 2, 1, 1, 3, 1] +intelligibleness 1.5 1.20416 [2, 1, 3, -1, 2, 2, 2, 0, 1, 3] +intelligibly 1.2 0.87178 [1, 2, 1, 2, 1, -1, 2, 2, 1, 1] +intense 0.3 0.45826 [0, 1, 1, 0, 0, 0, 0, 0, 1, 0] +interest 2.0 1.18322 [2, 3, 3, 1, 1, 3, 4, 1, 2, 0] +interested 1.7 0.45826 [2, 1, 2, 2, 1, 2, 2, 2, 1, 2] +interestedly 1.5 0.67082 [2, 2, 2, 1, 2, 1, 2, 1, 0, 2] +interesting 1.7 0.78102 [1, 2, 1, 3, 1, 1, 1, 3, 2, 2] +interestingly 1.7 0.45826 [2, 2, 2, 1, 2, 1, 1, 2, 2, 2] +interestingness 1.8 0.87178 [2, 3, 1, 3, 1, 3, 2, 1, 1, 1] +interests 1.0 0.89443 [1, 0, 1, 2, 0, 0, 1, 1, 1, 3] +interrogated -1.6 1.0198 [-3, -1, -1, -1, -2, -1, -3, -1, -3, 0] +interrupt -1.4 0.4899 [-2, -1, -1, -1, -2, -2, -1, -1, -2, -1] +interrupted -1.2 0.6 [-1, -2, -1, 0, -1, -1, -2, -1, -2, -1] +interrupter -1.1 0.53852 [-1, -2, -1, 0, -1, -1, -1, -1, -2, -1] +interrupters -1.3 0.45826 [-1, -2, -1, -1, -1, -1, -2, -1, -2, -1] +interruptible -1.3 1.00499 [-2, -1, 0, -2, 0, -3, -2, -1, 0, -2] +interrupting -1.2 0.4 [-2, -1, -1, -1, -1, -2, -1, -1, -1, -1] +interruption -1.5 0.67082 [-1, -1, -2, -3, -2, -1, -1, -1, -2, -1] +interruptions -1.7 0.45826 [-2, -2, -2, -2, -2, -1, -1, -1, -2, -2] +interruptive -1.4 0.66332 [-2, -2, -1, -2, -2, 0, -1, -1, -1, -2] +interruptor -1.3 0.64031 [-2, -1, -1, -1, 0, -2, -2, -2, -1, -1] +interrupts -1.3 0.64031 [-1, -1, -2, -1, -1, -1, -1, -1, -3, -1] +intimidate -0.8 1.46969 [-1, -2, -2, -2, -2, -1, 2, 1, 1, -2] +intimidated -1.9 0.7 [-2, -1, -3, -3, -1, -2, -2, -1, -2, -2] +intimidates -1.3 0.78102 [-2, -1, -1, -1, -3, -2, -1, -1, -1, 0] +intimidating -1.9 1.04403 [0, -2, -1, -3, -2, -1, -1, -3, -3, -3] +intimidatingly -1.1 1.64012 [2, -2, -3, -1, -2, -2, 2, -2, -1, -2] +intimidation -1.8 1.249 [1, -2, -3, -1, -2, -3, -1, -3, -1, -3] +intimidations -1.4 1.49666 [1, -2, -2, -2, -1, -1, -1, -4, 1, -3] +intimidator -1.6 0.4899 [-1, -1, -2, -2, -1, -2, -2, -1, -2, -2] +intimidators -1.6 0.8 [-1, -1, -3, -2, -1, -1, -3, -1, -2, -1] +intimidatory -1.1 1.22066 [-1, -2, -3, -1, -1, -1, -2, 2, -1, -1] +intricate 0.6 0.66332 [1, 0, 2, 1, 0, 1, 1, 0, 0, 0] +intrigues 0.9 0.9434 [2, -1, 2, 1, 2, 0, 1, 1, 0, 1] +invigorate 1.9 0.83066 [2, 2, 2, 0, 2, 3, 3, 2, 1, 2] +invigorated 0.8 1.8868 [-2, 3, 2, 2, -2, -2, 2, 2, 1, 2] +invigorates 2.1 0.53852 [3, 2, 3, 2, 1, 2, 2, 2, 2, 2] +invigorating 2.1 0.7 [2, 1, 1, 3, 3, 3, 2, 2, 2, 2] +invigoratingly 2.0 0.63246 [2, 2, 1, 2, 1, 3, 2, 2, 2, 3] +invigoration 1.5 1.36015 [2, 2, 1, -2, 1, 3, 3, 2, 1, 2] +invigorations 1.2 0.87178 [1, -1, 2, 2, 1, 1, 2, 1, 2, 1] +invigorator 1.1 1.3 [3, 1, 0, 2, 2, -2, 1, 1, 2, 1] +invigorators 1.2 0.87178 [1, 1, 1, 1, 3, 2, 0, 0, 1, 2] +invincible 2.2 1.77764 [4, 1, 3, 2, 4, 1, 4, -1, 0, 4] +invite 0.6 0.66332 [2, 1, 1, 0, 0, 0, 0, 1, 1, 0] +inviting 1.3 0.45826 [1, 1, 1, 2, 1, 2, 2, 1, 1, 1] +invulnerable 1.3 1.73494 [2, 3, 4, 2, 0, 3, 0, 1, -2, 0] +irate -2.9 0.53852 [-3, -3, -3, -2, -3, -4, -3, -3, -2, -3] +ironic -0.5 1.28452 [1, 0, 0, 0, 0, 0, -4, -1, -1, 0] +irony -0.2 1.07703 [-1, 0, -3, 0, 0, 0, 1, 0, 1, 0] +irrational -1.4 0.4899 [-1, -1, -1, -2, -2, -2, -1, -1, -2, -1] +irrationalism -1.5 0.5 [-1, -2, -1, -1, -2, -1, -2, -2, -1, -2] +irrationalist -2.1 0.9434 [-1, -4, -2, -2, -3, -3, -2, -1, -1, -2] +irrationalists -1.5 0.92195 [-2, -2, -1, -2, -2, 1, -1, -2, -2, -2] +irrationalities -1.5 0.80623 [-2, -2, 0, -1, -1, -1, -2, -3, -1, -2] +irrationality -1.7 0.9 [-3, -3, -1, -2, -1, -1, -1, -1, -3, -1] +irrationally -1.6 0.4899 [-1, -2, -1, -2, -1, -2, -2, -2, -1, -2] +irrationals -1.1 0.83066 [-2, 0, -1, 0, -1, -1, -3, -1, -1, -1] +irresistible 1.4 2.2 [2, 3, 2, 3, 4, 4, 1, -1, -2, -2] +irresolute -1.4 0.66332 [-2, -2, -1, -2, -1, -1, -1, -2, -2, 0] +irresponsible -1.9 0.3 [-2, -2, -2, -2, -2, -2, -1, -2, -2, -2] +irreversible -0.8 0.87178 [-2, -2, 0, -1, 0, 0, 0, -1, -2, 0] +irritabilities -1.7 0.64031 [-2, -2, -2, -1, -1, -1, -1, -2, -3, -2] +irritability -1.4 1.28062 [-2, -1, -2, -1, 2, -2, -2, -2, -1, -3] +irritable -2.1 0.7 [-2, -2, -3, -1, -2, -1, -3, -2, -3, -2] +irritableness -1.7 0.64031 [-2, -2, -2, -1, -2, -1, -1, -3, -1, -2] +irritably -1.8 0.6 [-2, -2, -1, -1, -3, -2, -1, -2, -2, -2] +irritant -2.3 0.78102 [-3, -3, -3, -3, -3, -1, -2, -2, -2, -1] +irritants -2.1 0.83066 [-2, -3, -1, -4, -2, -1, -2, -2, -2, -2] +irritate -1.8 0.6 [-3, -2, -2, -2, -1, -2, -1, -2, -1, -2] +irritated -2.0 0.63246 [-1, -2, -2, -2, -3, -2, -2, -3, -1, -2] +irritates -1.7 0.78102 [-1, -2, -1, -1, -3, -2, -2, -3, -1, -1] +irritating -2.0 0.63246 [-2, -2, -2, -1, -1, -3, -2, -2, -3, -2] +irritatingly -2.0 0.44721 [-2, -2, -2, -3, -1, -2, -2, -2, -2, -2] +irritation -2.3 0.78102 [-3, -2, -2, -2, -1, -3, -3, -1, -3, -3] +irritations -1.5 0.67082 [-2, -2, -1, -1, -1, -1, -1, -2, -3, -1] +irritative -2.0 0.63246 [-3, -2, -3, -2, -1, -2, -2, -2, -1, -2] +isolatable 0.2 1.249 [1, 0, -2, 0, -1, -1, 2, 0, 2, 1] +isolate -0.8 0.74833 [-1, -1, -1, 0, 0, 0, 0, -2, -1, -2] +isolated -1.3 0.64031 [-1, -1, -1, -1, -1, -1, -2, -1, -3, -1] +isolates -1.3 0.64031 [-1, -1, -1, -1, -2, -1, -3, -1, -1, -1] +isolation -1.7 0.78102 [-1, -3, -1, -2, -2, -1, -3, -1, -2, -1] +isolationism 0.4 1.62481 [2, 0, -1, -2, -1, 3, 0, 2, -1, 2] +isolationist 0.7 1.55242 [2, 0, 0, -1, -1, 3, 0, 2, -1, 3] +isolations -0.5 1.11803 [-1, -2, -2, -1, 1, 1, -1, 0, 1, -1] +isolator -0.4 0.66332 [0, 0, -1, 0, -1, 0, -2, 0, 0, 0] +isolators -0.4 1.42829 [-2, -1, -1, -2, 2, 2, -1, 1, -1, -1] +itchy -1.1 0.53852 [-1, -1, -1, -1, -2, 0, -1, -1, -2, -1] +jackass -1.8 1.07703 [-1, 0, -3, -2, -2, -3, 0, -2, -2, -3] +jackasses -2.8 0.9798 [-2, -2, -4, -3, -4, -4, -3, -1, -2, -3] +jaded -1.6 0.66332 [-1, -1, -1, -2, -2, -1, -2, -2, -1, -3] +jailed -2.2 0.87178 [-4, -3, -2, -2, -1, -2, -2, -3, -1, -2] +jaunty 1.2 0.6 [2, 1, 0, 2, 1, 1, 1, 2, 1, 1] +jealous -2.0 0.63246 [-2, -2, -3, -2, -3, -2, -1, -1, -2, -2] +jealousies -2.0 0.63246 [-2, -3, -2, -1, -2, -3, -2, -1, -2, -2] +jealously -2.0 0.89443 [-1, -3, -1, -4, -2, -2, -1, -2, -2, -2] +jealousness -1.7 0.45826 [-1, -2, -2, -2, -2, -1, -1, -2, -2, -2] +jealousy -1.3 1.73494 [-2, -3, -2, -2, -2, 2, -3, -1, 2, -2] +jeopardy -2.1 0.9434 [-3, -3, -3, -1, -1, -3, -2, -1, -1, -3] +jerk -1.4 0.8 [-1, -1, -1, -2, -3, 0, -2, -1, -1, -2] +jerked -0.8 0.74833 [0, -1, -1, 0, -2, -1, 0, -1, 0, -2] +jerks -1.1 1.51327 [-2, -2, -1, -2, -1, 0, -2, 3, -2, -2] +jewel 1.5 1.20416 [1, 3, 2, 0, 2, 1, 3, 0, 3, 0] +jewels 2.0 1.34164 [3, 1, 0, 0, 4, 3, 3, 2, 3, 1] +jocular 1.2 1.249 [0, 1, 2, -2, 1, 2, 2, 2, 2, 2] +join 1.2 0.74833 [2, 2, 1, 2, 1, 0, 1, 2, 0, 1] +joke 1.2 0.74833 [1, 1, 1, 1, 1, 1, 0, 2, 1, 3] +joked 1.3 0.64031 [1, 1, 2, 2, 0, 2, 1, 1, 2, 1] +joker 0.5 0.92195 [1, 1, -1, 1, 2, -1, 1, 1, 0, 0] +jokes 1.0 0.7746 [1, 1, -1, 1, 1, 2, 1, 1, 2, 1] +jokester 1.5 0.67082 [2, 2, 2, 2, 1, 1, 0, 1, 2, 2] +jokesters 0.9 0.83066 [0, 0, 2, 1, 1, 2, 2, 0, 1, 0] +jokey 1.1 0.3 [1, 1, 2, 1, 1, 1, 1, 1, 1, 1] +joking 0.9 0.53852 [1, 2, 1, 1, 1, 0, 1, 1, 0, 1] +jollied 2.4 0.66332 [3, 3, 2, 2, 3, 3, 2, 2, 1, 3] +jollier 2.4 0.4899 [2, 2, 3, 3, 2, 2, 2, 3, 2, 3] +jollies 2.0 0.63246 [1, 2, 3, 2, 2, 2, 1, 2, 2, 3] +jolliest 2.9 0.7 [3, 3, 2, 4, 3, 2, 3, 4, 2, 3] +jollification 2.2 0.74833 [2, 3, 3, 1, 2, 1, 3, 2, 3, 2] +jollifications 2.0 0.7746 [2, 3, 2, 2, 2, 2, 3, 2, 0, 2] +jollify 2.1 0.53852 [2, 3, 2, 2, 2, 2, 2, 3, 1, 2] +jollily 2.7 0.64031 [3, 3, 3, 3, 3, 3, 3, 1, 3, 2] +jolliness 2.5 0.67082 [3, 1, 2, 3, 2, 3, 3, 3, 2, 3] +jollities 1.7 0.64031 [2, 1, 2, 2, 1, 2, 2, 3, 1, 1] +jollity 1.8 1.6 [3, 2, 1, 1, 4, 3, 1, 2, 3, -2] +jolly 2.3 1.00499 [4, 3, 3, 1, 1, 1, 3, 2, 3, 2] +jollying 2.3 0.64031 [2, 3, 3, 1, 3, 3, 2, 2, 2, 2] +jovial 1.9 0.53852 [2, 2, 1, 2, 1, 2, 3, 2, 2, 2] +joy 2.8 0.74833 [3, 2, 3, 4, 3, 3, 3, 1, 3, 3] +joyance 2.3 0.9 [1, 3, 4, 2, 2, 1, 2, 3, 2, 3] +joyed 2.9 0.3 [3, 3, 3, 3, 3, 3, 3, 2, 3, 3] +joyful 2.9 0.53852 [3, 2, 3, 3, 2, 3, 4, 3, 3, 3] +joyfuller 2.4 0.66332 [2, 4, 3, 2, 2, 2, 3, 2, 2, 2] +joyfully 2.5 0.67082 [2, 2, 3, 3, 2, 2, 3, 4, 2, 2] +joyfulness 2.7 1.00499 [4, 3, 1, 3, 3, 3, 4, 2, 1, 3] +joying 2.5 0.67082 [2, 2, 1, 3, 3, 3, 3, 3, 3, 2] +joyless -2.5 0.67082 [-1, -2, -3, -3, -3, -3, -2, -2, -3, -3] +joylessly -1.7 1.1 [-2, -2, -3, -3, -2, -1, 1, -2, -1, -2] +joylessness -2.7 0.9 [-4, -3, -3, -3, -3, -3, -3, -1, -1, -3] +joyous 3.1 0.7 [3, 4, 3, 2, 4, 3, 3, 4, 2, 3] +joyously 2.9 0.7 [2, 3, 4, 3, 4, 2, 2, 3, 3, 3] +joyousness 2.8 0.74833 [3, 3, 1, 3, 3, 3, 4, 2, 3, 3] +joypop -0.2 1.93907 [-3, 1, 2, 2, -3, -1, -2, -1, 1, 2] +joypoppers -0.1 1.22066 [2, -1, 1, -1, -1, 1, 1, 0, -2, -1] +joyridden 0.6 1.8 [-2, -1, 4, 0, 0, 2, 1, -1, 0, 3] +joyride 1.1 1.22066 [-1, 1, 2, 0, 2, 0, 2, 2, 3, 0] +joyrider 0.7 1.26886 [2, -2, 1, 2, 0, 2, -1, 1, 1, 1] +joyriders 1.3 1.18743 [1, 0, 0, 1, 4, 3, 1, 1, 1, 1] +joyrides 0.8 1.32665 [2, -2, 1, 2, 0, 2, -1, 1, 2, 1] +joyriding 0.9 1.04403 [1, -1, 1, 1, 0, 2, 0, 1, 3, 1] +joyrode 1.0 1.48324 [4, 0, -2, 0, 2, 1, 2, 1, 1, 1] +joys 2.2 0.4 [2, 2, 2, 2, 2, 3, 2, 3, 2, 2] +joystick 0.7 0.78102 [1, 0, 2, 2, 0, 0, 1, 1, 0, 0] +joysticks 0.2 0.4 [0, 0, 0, 0, 1, 0, 0, 1, 0, 0] +jubilant 3.0 0.63246 [3, 3, 4, 3, 3, 2, 3, 4, 2, 3] +jumpy -1.0 0.63246 [0, 0, -2, -1, -1, -1, -1, -1, -2, -1] +justice 2.4 1.0198 [3, 2, 1, 2, 3, 2, 4, 4, 2, 1] +justifiably 1.0 0.7746 [0, 1, 0, 1, 1, 1, 0, 2, 2, 2] +justified 1.7 0.64031 [1, 2, 2, 3, 1, 1, 1, 2, 2, 2] +keen 1.5 0.67082 [1, 1, 3, 1, 2, 1, 1, 2, 2, 1] +keened 0.3 1.00499 [-2, 0, 1, 0, 1, 1, 0, 2, 0, 0] +keener 0.5 1.20416 [-1, -1, 0, -1, 2, 1, 2, 2, 1, 0] +keeners 0.6 0.4899 [1, 0, 0, 1, 1, 0, 1, 1, 0, 1] +keenest 1.9 0.83066 [3, 3, 1, 1, 3, 2, 2, 1, 2, 1] +keening -0.7 1.41774 [0, -3, -1, -1, -3, 1, -1, 1, 1, -1] +keenly 1.0 0.7746 [2, 1, 1, 0, 1, 0, 2, 1, 2, 0] +keenness 1.4 0.4899 [1, 1, 2, 2, 1, 1, 1, 2, 2, 1] +keens 0.1 1.22066 [1, -3, 0, 0, 0, 2, 1, 0, 0, 0] +kewl 1.3 0.45826 [2, 1, 1, 1, 2, 1, 2, 1, 1, 1] +kidding 0.4 0.8 [0, 1, 0, -1, 1, 1, 1, 1, -1, 1] +kill -3.7 0.45826 [-4, -4, -4, -4, -3, -4, -4, -4, -3, -3] +killdeer -1.1 1.04403 [-3, 0, 0, -1, -2, 0, -1, -2, -2, 0] +killdeers -0.1 0.3 [0, 0, 0, 0, 0, 0, 0, 0, 0, -1] +killdees -0.6 0.66332 [-2, 0, 0, 0, -1, 0, -1, -1, -1, 0] +killed -3.5 0.67082 [-3, -3, -2, -4, -4, -4, -3, -4, -4, -4] +killer -3.3 0.64031 [-4, -4, -3, -3, -4, -4, -3, -3, -2, -3] +killers -3.3 0.45826 [-3, -3, -4, -3, -3, -3, -4, -3, -4, -3] +killick 0.1 0.3 [0, 1, 0, 0, 0, 0, 0, 0, 0, 0] +killie -0.1 0.3 [0, 0, 0, 0, 0, 0, 0, 0, 0, -1] +killifish -0.1 0.7 [0, 0, 0, 0, -2, 0, 0, 0, 1, 0] +killifishes -0.1 0.3 [0, -1, 0, 0, 0, 0, 0, 0, 0, 0] +killing -3.4 1.2 [-4, 0, -4, -4, -4, -3, -4, -3, -4, -4] +killingly -2.6 1.0198 [-3, -2, -4, -2, -1, -3, -4, -3, -3, -1] +killings -3.5 0.67082 [-4, -3, -4, -4, -2, -3, -4, -4, -3, -4] +killjoy -2.1 0.83066 [-1, -2, -3, -2, -1, -3, -2, -1, -3, -3] +killjoys -1.7 0.9 [-1, -3, -3, -1, -2, -1, -2, 0, -2, -2] +killock -0.3 0.64031 [0, 0, 0, 0, -2, 0, 0, 0, -1, 0] +killocks -0.4 0.66332 [0, 0, 0, -2, -1, 0, -1, 0, 0, 0] +kills -2.5 0.92195 [-2, -3, -2, -3, -4, -1, -3, -3, -1, -3] +kind 2.4 0.66332 [2, 2, 3, 3, 2, 3, 3, 2, 1, 3] +kinder 2.2 0.6 [3, 3, 3, 2, 2, 2, 2, 1, 2, 2] +kindly 2.2 0.4 [2, 2, 2, 3, 2, 2, 2, 2, 2, 3] +kindness 2.0 0.63246 [2, 1, 3, 3, 2, 1, 2, 2, 2, 2] +kindnesses 2.3 0.64031 [3, 1, 3, 2, 3, 2, 3, 2, 2, 2] +kiss 1.8 1.6 [4, 0, 3, 3, 2, 0, 4, 2, 0, 0] +kissable 2.0 0.89443 [2, 2, 2, 2, 4, 2, 3, 1, 1, 1] +kissably 1.9 1.04403 [1, 3, 4, 1, 2, 1, 3, 2, 1, 1] +kissed 1.6 1.11355 [2, 4, 1, 1, 1, 2, 3, 0, 1, 1] +kisser 1.7 1.34536 [2, 4, 1, 2, -1, 2, 3, 0, 2, 2] +kissers 1.5 0.80623 [1, 1, 1, 0, 2, 2, 3, 2, 1, 2] +kisses 2.3 0.9 [2, 4, 2, 2, 1, 2, 4, 2, 2, 2] +kissing 2.7 0.78102 [3, 3, 4, 1, 3, 2, 2, 3, 3, 3] +kissy 1.8 0.6 [2, 2, 2, 3, 1, 1, 2, 2, 1, 2] +kudos 2.3 0.64031 [2, 4, 2, 3, 2, 2, 2, 2, 2, 2] +lack -1.3 0.45826 [-1, -1, -1, -1, -2, -1, -2, -1, -1, -2] +lackadaisical -1.6 0.66332 [-1, -1, -2, -1, -2, -2, -3, -1, -2, -1] +lag -1.4 0.66332 [-1, -1, -1, -1, -1, -3, -1, -2, -2, -1] +lagged -1.2 0.6 [-2, -2, -1, -2, -1, -1, 0, -1, -1, -1] +lagging -1.1 0.83066 [-2, -2, -2, -1, 0, 0, -1, 0, -1, -2] +lags -1.5 0.67082 [-2, -1, -1, -2, -1, -3, -1, -2, -1, -1] +laidback 0.5 1.28452 [1, -1, 1, -2, -1, 1, 2, 1, 1, 2] +lame -1.8 0.74833 [-1, -3, -1, -2, -2, -1, -2, -3, -1, -2] +lamebrain -1.6 0.91652 [-3, -2, -1, 0, -3, -1, -1, -2, -2, -1] +lamebrained -2.5 0.67082 [-3, -3, -2, -2, -2, -2, -4, -3, -2, -2] +lamebrains -1.2 1.46969 [-2, -1, -3, -1, 2, -2, 1, -2, -2, -2] +lamedh 0.1 0.53852 [0, 0, 0, 0, 0, 1, 1, -1, 0, 0] +lamella -0.1 0.3 [0, -1, 0, 0, 0, 0, 0, 0, 0, 0] +lamellae -0.1 0.3 [0, 0, 0, 0, 0, 0, -1, 0, 0, 0] +lamellas 0.1 0.53852 [0, 0, 0, 0, 0, 1, 0, 1, 0, -1] +lamellibranch 0.2 0.4 [0, 0, 0, 0, 0, 1, 0, 1, 0, 0] +lamellibranchs -0.1 0.3 [0, 0, -1, 0, 0, 0, 0, 0, 0, 0] +lamely -2.0 0.89443 [-2, -3, 0, -1, -2, -3, -2, -3, -2, -2] +lameness -0.8 1.07703 [-2, -2, -1, -1, -1, 0, 2, -1, -1, -1] +lament -2.0 1.26491 [-3, -3, 1, -1, -2, -2, -1, -3, -3, -3] +lamentable -1.5 1.0247 [-2, 0, -2, -1, 0, -2, -3, -1, -1, -3] +lamentableness -1.3 0.64031 [-2, -1, -1, 0, -2, -1, -1, -1, -2, -2] +lamentably -1.5 0.80623 [-2, 0, -3, -1, -1, -2, -2, -1, -1, -2] +lamentation -1.4 1.49666 [-3, -2, 0, -3, -1, -1, 2, -2, -1, -3] +lamentations -1.9 1.44568 [-2, -2, -2, -3, 2, -1, -3, -3, -2, -3] +lamented -1.4 0.91652 [-1, 0, -1, -2, -2, -1, -2, -3, -2, 0] +lamenter -1.2 0.87178 [-1, 0, -1, -1, -1, -1, -2, -3, -2, 0] +lamenters -0.5 0.67082 [-1, 0, 0, -1, -1, 0, 0, 0, -2, 0] +lamenting -2.0 1.09545 [0, -2, -1, -4, -1, -3, -2, -2, -3, -2] +laments -1.5 0.80623 [-1, -3, 0, -1, -2, -1, -2, -2, -2, -1] +lamer -1.4 0.4899 [-2, -1, -1, -2, -1, -1, -1, -2, -2, -1] +lames -1.2 0.6 [-2, -1, -1, -2, 0, -1, -1, -2, -1, -1] +lamest -1.5 1.28452 [-3, -2, -1, -4, 1, -1, -1, -1, -1, -2] +landmark 0.3 0.64031 [2, 0, 0, 0, 0, 0, 0, 0, 1, 0] +laugh 2.6 0.66332 [3, 2, 3, 1, 3, 3, 3, 3, 2, 3] +laughable 0.2 1.72047 [-2, -1, 3, -1, 2, 2, -1, -1, -1, 2] +laughableness 1.2 1.6 [2, 0, 3, 2, 2, 1, 3, -2, 2, -1] +laughably 1.2 1.249 [2, 1, 2, 1, 1, 1, 2, 3, -2, 1] +laughed 2.0 0.63246 [2, 2, 3, 1, 2, 1, 2, 2, 3, 2] +laugher 1.7 0.45826 [2, 2, 1, 1, 2, 1, 2, 2, 2, 2] +laughers 1.7 0.9 [1, 2, 4, 1, 2, 1, 2, 1, 1, 2] +laughing 2.2 0.87178 [2, 4, 1, 1, 3, 2, 2, 2, 2, 3] +laughingly 2.3 1.1 [2, 4, 0, 2, 3, 1, 3, 2, 3, 3] +laughings 1.9 0.7 [2, 1, 1, 1, 2, 3, 2, 2, 3, 2] +laughingstocks -1.3 1.26886 [-3, -2, 1, -2, -1, -1, 1, -2, -2, -2] +laughs 2.2 0.6 [1, 2, 2, 3, 3, 2, 3, 2, 2, 2] +laughter 2.2 0.6 [2, 3, 2, 2, 2, 2, 3, 1, 3, 2] +laughters 2.2 0.6 [3, 1, 2, 2, 2, 3, 3, 2, 2, 2] +launched 0.5 0.80623 [2, 0, 0, 0, 0, 0, 0, 1, 2, 0] +lawl 1.4 1.42829 [0, 2, 2, 1, 3, -2, 3, 1, 2, 2] +lawsuit -0.9 1.22066 [-2, -2, -1, -3, -1, 1, 0, 1, -1, -1] +lawsuits -0.6 1.68523 [-2, -1, 0, 3, 2, -1, -1, -2, -2, -2] +lazier -2.3 0.64031 [-3, -2, -3, -2, -1, -2, -2, -3, -2, -3] +laziest -2.7 0.64031 [-2, -2, -3, -4, -3, -3, -2, -2, -3, -3] +lazy -1.5 1.36015 [-3, -1, -3, -2, 2, -1, -1, -2, -2, -2] +leak -1.4 0.66332 [-1, -2, -1, -1, -1, -1, -1, -2, -3, -1] +leaked -1.3 0.78102 [-2, -2, -1, -3, -1, 0, -1, -1, -1, -1] +leave -0.2 0.9798 [1, -1, -1, 0, 0, -1, 2, -1, 0, -1] +leet 1.3 1.48661 [2, 4, 2, 2, 0, 1, -2, 2, 1, 1] +legal 0.5 0.80623 [0, 0, 0, 2, 0, 1, 0, 0, 2, 0] +legally 0.4 0.8 [1, 0, 0, 0, 1, 0, 2, 1, 0, -1] +lenient 1.1 1.04403 [1, 3, 1, 2, 1, 1, 2, -1, 0, 1] +lethargic -1.2 0.74833 [-2, -1, -2, -2, 0, -1, -1, -2, 0, -1] +lethargy -1.4 0.91652 [-1, 0, -2, -1, -2, 0, -2, -1, -3, -2] +liabilities -0.8 0.9798 [-1, 2, -1, -1, -1, -1, -1, -1, -2, -1] +liability -0.8 1.83303 [-2, -3, -1, -1, 3, -3, -1, -1, 2, -1] +liar -2.3 0.78102 [-1, -2, -3, -3, -2, -2, -3, -1, -3, -3] +liards -0.4 0.91652 [-2, 0, -1, 0, 0, 1, 0, 0, -2, 0] +liars -2.4 0.66332 [-3, -2, -2, -3, -2, -1, -3, -3, -2, -3] +libelous -2.1 1.3 [-3, -1, -1, -2, 1, -3, -3, -3, -3, -3] +libertarian 0.9 0.9434 [1, 2, 0, 1, 0, 0, 0, 3, 1, 1] +libertarianism 0.4 0.8 [0, 0, 2, 0, 2, 0, 0, 0, 0, 0] +libertarianisms 0.1 1.13578 [0, 0, 0, 2, 2, 0, -2, 0, -1, 0] +libertarians 0.1 0.83066 [0, 0, 1, 0, 0, -1, -1, 0, 2, 0] +liberties 2.3 0.78102 [2, 4, 3, 2, 2, 1, 2, 3, 2, 2] +libertinage 0.2 1.53623 [-1, -1, 0, 0, 4, 0, -2, 1, 1, 0] +libertine -0.9 1.44568 [0, -1, 0, 0, -1, -3, 2, -2, -1, -3] +libertines 0.4 1.35647 [-1, 3, -1, -1, 1, 1, 1, 2, 0, -1] +libertinisms 1.2 1.249 [0, 0, 3, 1, 1, 1, 4, 0, 1, 1] +liberty 2.4 0.91652 [2, 2, 3, 3, 3, 3, 2, 4, 1, 1] +lied -1.6 1.2 [-3, 0, -3, 1, -2, -1, -2, -2, -2, -2] +lies -1.8 0.9798 [-1, -1, -1, 0, -2, -3, -3, -2, -3, -2] +lifesaver 2.8 0.74833 [3, 3, 4, 2, 3, 1, 3, 3, 3, 3] +lighthearted 1.8 0.4 [2, 2, 2, 2, 1, 2, 2, 1, 2, 2] +like 1.5 0.67082 [1, 2, 2, 2, 1, 3, 1, 1, 1, 1] +likeable 2.0 0.63246 [1, 3, 2, 2, 2, 3, 2, 1, 2, 2] +liked 1.8 0.6 [2, 2, 1, 2, 2, 1, 3, 1, 2, 2] +likes 1.8 0.6 [2, 2, 1, 2, 2, 2, 3, 1, 1, 2] +liking 1.7 0.78102 [3, 1, 2, 1, 1, 2, 3, 1, 2, 1] +limitation -1.2 0.6 [-2, -1, 0, -1, -1, -2, -1, -2, -1, -1] +limited -0.9 0.53852 [-1, -1, 0, -2, -1, 0, -1, -1, -1, -1] +litigation -0.8 0.6 [0, -2, -1, 0, -1, -1, -1, -1, 0, -1] +litigious -0.8 0.9798 [-2, -1, 0, -2, 0, -2, 1, -1, 0, -1] +livelier 1.7 0.78102 [2, 2, 1, 3, 1, 3, 2, 1, 1, 1] +liveliest 2.1 0.9434 [2, 1, 2, 3, 1, 1, 2, 4, 3, 2] +livelihood 0.8 1.07703 [0, 3, 1, 0, 2, 2, 0, 0, 0, 0] +livelihoods 0.9 1.13578 [0, 0, 0, 3, 2, 2, 0, 2, 0, 0] +livelily 1.8 0.6 [2, 2, 2, 3, 1, 2, 1, 2, 2, 1] +liveliness 1.6 0.8 [1, 3, 0, 2, 2, 2, 2, 2, 1, 1] +livelong 1.7 0.78102 [3, 0, 1, 1, 2, 2, 2, 2, 2, 2] +lively 1.9 0.7 [2, 2, 3, 1, 1, 2, 3, 1, 2, 2] +livid -2.5 0.92195 [-2, -3, -1, -2, -4, -3, -1, -3, -3, -3] +lmao 2.9 0.9434 [3, 4, 3, 1, 2, 4, 3, 3, 2, 4] +loathe -2.2 2.08806 [-1, -4, -3, -2, -4, 2, 1, -3, -4, -4] +loathed -2.1 1.44568 [-4, -3, -3, -3, -1, 1, -1, -1, -3, -3] +loathes -1.9 1.13578 [-1, -4, -1, -3, -3, -1, -1, -3, -1, -1] +loathing -2.7 0.78102 [-3, -3, -3, -1, -4, -2, -3, -3, -2, -3] +lobby 0.1 0.53852 [0, 0, 0, 1, 0, 1, 0, -1, 0, 0] +lobbying -0.3 0.45826 [0, -1, 0, 0, 0, 0, 0, -1, -1, 0] +lol 1.8 1.46969 [1, 3, 4, 1, 2, 4, 1, 2, -1, 1] +lone -1.1 0.3 [-1, -1, -1, -1, -1, -1, -2, -1, -1, -1] +lonelier -1.4 0.66332 [-2, -1, -2, -2, 0, -2, -1, -1, -1, -2] +loneliest -2.4 0.8 [-3, -1, -2, -4, -2, -2, -3, -3, -2, -2] +loneliness -1.8 0.6 [-2, -2, -1, -3, -2, -2, -1, -2, -1, -2] +lonelinesses -1.5 1.36015 [-2, -2, -1, -1, 2, -1, -3, -2, -3, -2] +lonely -1.5 0.5 [-1, -2, -2, -1, -1, -1, -1, -2, -2, -2] +loneness -1.1 0.83066 [-1, -2, -1, -2, -1, -1, -2, 1, -1, -1] +loner -1.3 0.45826 [-1, -2, -1, -1, -1, -1, -1, -2, -2, -1] +loners -0.9 0.53852 [-1, -1, -2, -1, -1, -1, 0, 0, -1, -1] +lonesome -1.5 0.67082 [-2, -1, -2, -1, -2, -1, -2, 0, -2, -2] +lonesomely -1.3 1.00499 [-2, -2, -2, -2, -1, -2, 0, -2, -1, 1] +lonesomeness -1.8 0.6 [-2, -2, -1, -3, -1, -2, -2, -2, -1, -2] +lonesomes -1.4 0.4899 [-2, -1, -1, -1, -1, -1, -2, -2, -2, -1] +longing -0.1 0.9434 [0, -1, 0, -1, -1, 0, 2, -1, 1, 0] +longingly 0.7 0.45826 [1, 0, 1, 0, 1, 1, 1, 0, 1, 1] +longings 0.4 1.2 [2, 0, -1, -1, 0, 1, 3, 0, 0, 0] +loom -0.9 0.53852 [-1, -1, -1, -1, -1, -2, 0, -1, -1, 0] +loomed -1.1 1.04403 [-2, -2, -1, -1, -1, -1, 0, -1, -3, 1] +looming -0.5 1.5 [-2, -1, -1, 0, -2, -2, 3, -1, 0, 1] +looms -0.6 1.0198 [-1, -2, -1, -1, 0, 0, 1, -2, 1, -1] +loose -1.3 1.18743 [-2, -1, 0, -2, 0, -1, 0, -2, -4, -1] +looses -0.6 0.91652 [0, -1, 0, -1, 0, 0, 0, 0, -3, -1] +lose -1.7 0.45826 [-1, -2, -1, -2, -1, -2, -2, -2, -2, -2] +loser -2.4 0.66332 [-3, -2, -2, -2, -2, -3, -3, -1, -3, -3] +losers -2.4 0.8 [-3, -1, -2, -2, -4, -2, -3, -3, -2, -2] +loses -1.3 1.00499 [0, -1, -1, -1, -1, -4, -1, -1, -2, -1] +losing -1.6 0.8 [-1, -1, -1, -2, -1, -2, -3, -3, -1, -1] +loss -1.3 0.45826 [-1, -2, -1, -1, -1, -2, -2, -1, -1, -1] +losses -1.7 0.9 [-2, -1, -2, -3, 0, -1, -3, -1, -2, -2] +lossy -1.2 0.87178 [-2, -2, -1, -2, 0, 0, 0, -1, -2, -2] +lost -1.3 0.45826 [-1, -1, -2, -1, -1, -2, -2, -1, -1, -1] +louse -1.6 1.2 [-1, -1, -3, -4, 0, -3, -1, -1, -1, -1] +loused -1.0 0.7746 [-1, -1, -1, -1, 0, 0, -2, 0, -2, -2] +louses -1.3 0.78102 [-2, -1, -2, -1, -1, 0, -2, 0, -2, -2] +lousewort 0.1 1.3 [-2, -2, 1, 0, 0, 0, 0, 2, 2, 0] +louseworts -0.6 0.66332 [0, 0, 0, -2, 0, -1, 0, -1, -1, -1] +lousier -2.2 0.4 [-2, -3, -2, -2, -3, -2, -2, -2, -2, -2] +lousiest -2.6 0.8 [-4, -2, -3, -3, -1, -2, -3, -3, -2, -3] +lousily -1.2 0.9798 [-1, -1, -2, -2, -2, -2, 0, -1, 1, -2] +lousiness -1.7 0.64031 [-2, -2, -1, -1, -2, -2, -3, -2, -1, -1] +lousing -1.1 0.9434 [-3, 0, 0, 0, -1, -2, -1, -2, -1, -1] +lousy -2.5 0.67082 [-2, -4, -2, -3, -2, -3, -2, -2, -3, -2] +lovable 3.0 0.63246 [3, 3, 3, 4, 3, 2, 3, 3, 2, 4] +love 3.2 0.4 [3, 3, 3, 3, 3, 3, 3, 4, 4, 3] +loved 2.9 0.7 [3, 3, 4, 2, 2, 4, 3, 2, 3, 3] +lovelies 2.2 0.74833 [3, 3, 3, 1, 2, 2, 3, 2, 1, 2] +lovely 2.8 0.6 [2, 3, 3, 3, 2, 3, 4, 3, 2, 3] +lover 2.8 0.87178 [3, 1, 2, 3, 4, 3, 2, 3, 4, 3] +loverly 2.8 0.74833 [3, 2, 4, 3, 3, 2, 3, 2, 2, 4] +lovers 2.4 1.11355 [2, 3, 2, 4, 4, 1, 1, 3, 3, 1] +loves 2.7 0.9 [3, 3, 3, 2, 2, 4, 4, 2, 1, 3] +loving 2.9 0.53852 [3, 2, 3, 3, 3, 2, 4, 3, 3, 3] +lovingly 3.2 0.6 [3, 3, 3, 4, 4, 4, 2, 3, 3, 3] +lovingness 2.7 1.67631 [4, 4, 3, 3, 2, 3, -2, 4, 3, 3] +low -1.1 0.53852 [-1, -1, -1, -1, -1, -2, -1, -2, 0, -1] +lowball -0.8 0.87178 [-1, -2, 0, -2, -1, -1, 0, 1, -1, -1] +lowballed -1.5 0.67082 [-2, 0, -1, -1, -2, -2, -1, -2, -2, -2] +lowballing -0.7 0.78102 [-2, -1, -1, 1, 0, -1, -1, 0, -1, -1] +lowballs -1.2 0.74833 [-1, -1, -1, -1, -3, -1, -2, 0, -1, -1] +lowborn -0.7 1.1 [-1, 0, -1, 0, -2, -1, -2, -1, -1, 2] +lowboys -0.6 1.0198 [-1, 0, 0, 0, -3, -1, 1, 0, -1, -1] +lowbred -2.6 1.0198 [-2, -1, -2, -4, -2, -2, -4, -4, -3, -2] +lowbrow -1.9 0.7 [-1, -3, -1, -2, -2, -2, -1, -3, -2, -2] +lowbrows -0.6 0.66332 [0, 0, -1, 0, -2, -1, -1, 0, 0, -1] +lowdown -0.8 0.9798 [-1, -1, 0, 0, 0, -2, -3, 0, -1, 0] +lowdowns -0.2 0.4 [0, 0, 0, -1, 0, 0, 0, 0, -1, 0] +lowe 0.5 0.80623 [0, 0, 0, 0, 0, 1, 0, 0, 2, 2] +lowed -0.8 0.6 [0, -1, -1, -2, -1, 0, -1, 0, -1, -1] +lower -1.2 0.87178 [0, -2, -1, -1, -2, 0, -2, 0, -2, -2] +lowercase 0.3 0.45826 [0, 0, 0, 0, 1, 0, 1, 0, 1, 0] +lowercased -0.2 0.4 [0, -1, 0, 0, 0, 0, -1, 0, 0, 0] +lowerclassman -0.4 0.4899 [0, -1, -1, -1, 0, 0, 0, 0, 0, -1] +lowered -0.5 1.11803 [-1, -1, -2, -1, -1, 2, -1, -1, 1, 0] +lowering -1.0 0.7746 [0, -1, -1, -1, -1, 0, -3, -1, -1, -1] +lowermost -1.4 1.11355 [-1, -1, -3, -1, -1, -1, -2, -3, 1, -2] +lowers -0.5 0.5 [-1, -1, 0, -1, 0, 0, 0, -1, -1, 0] +lowery -1.8 0.87178 [-1, -1, -2, -3, -1, -2, -3, -3, -1, -1] +lowest -1.6 0.4899 [-2, -2, -2, -2, -1, -2, -1, -1, -1, -2] +lowing -0.5 0.67082 [0, 0, 0, -1, 0, 0, -1, -2, -1, 0] +lowish -0.9 0.53852 [-2, -1, -1, 0, -1, 0, -1, -1, -1, -1] +lowland -0.1 0.3 [0, 0, -1, 0, 0, 0, 0, 0, 0, 0] +lowlander -0.4 0.66332 [0, 0, 0, 0, 0, 0, -1, -1, -2, 0] +lowlanders -0.3 0.64031 [0, 0, 0, -2, 0, -1, 0, 0, 0, 0] +lowlands -0.1 0.7 [0, -1, -1, 0, -1, 1, 0, 1, 0, 0] +lowlier -1.7 0.78102 [-2, -2, -2, -3, -1, -2, -2, -1, 0, -2] +lowliest -1.8 1.6 [-1, -3, -3, -4, -2, -1, -1, 0, 1, -4] +lowlife -1.5 0.67082 [-2, -2, -2, -1, -1, -2, -1, 0, -2, -2] +lowlifes -2.2 1.249 [-3, -2, -3, -4, -2, 1, -2, -3, -2, -2] +lowlight -2.0 1.26491 [-3, -2, -1, -3, 1, -2, -1, -3, -3, -3] +lowlights -0.3 0.78102 [0, 0, -1, 1, -2, -1, 0, 0, 0, 0] +lowlihead -0.3 1.34536 [-1, -1, 1, -3, 0, 0, 1, -1, 2, -1] +lowliness -1.1 0.53852 [-1, -2, -1, -2, -1, -1, -1, 0, -1, -1] +lowlinesses -1.2 1.07703 [-3, -1, -2, -2, 0, -1, -1, -1, -2, 1] +lowlives -2.1 0.7 [-2, -3, -3, -2, -1, -2, -3, -2, -1, -2] +lowly -1.0 1.34164 [-1, -2, -1, -2, 2, -2, -1, 1, -2, -2] +lown 0.9 1.13578 [2, 2, 1, -1, 0, 1, 2, -1, 1, 2] +lowness -1.3 0.45826 [-1, -2, -2, -1, -1, -2, -1, -1, -1, -1] +lowrider -0.2 0.4 [0, 0, 0, -1, -1, 0, 0, 0, 0, 0] +lowriders 0.1 0.53852 [0, 0, 0, 0, 1, 0, -1, 0, 1, 0] +lows -0.8 0.9798 [0, -1, -1, -1, 0, 1, -3, -1, -1, -1] +lowse -0.7 0.78102 [0, -1, 1, -1, -1, -1, 0, -1, -2, -1] +loyal 2.1 0.7 [3, 2, 1, 1, 2, 2, 3, 2, 3, 2] +loyalism 1.0 0.89443 [1, 2, 1, -1, 0, 1, 2, 1, 1, 2] +loyalisms 0.9 0.83066 [2, 0, 0, 1, 1, 0, 2, 2, 1, 0] +loyalist 1.5 0.92195 [1, 0, 2, 2, 3, 0, 2, 2, 1, 2] +loyalists 1.1 0.83066 [1, 1, 1, 3, 0, 2, 1, 0, 1, 1] +loyally 2.1 0.7 [3, 2, 2, 2, 1, 3, 1, 2, 3, 2] +loyalties 1.9 0.7 [3, 1, 2, 2, 2, 3, 2, 1, 1, 2] +loyalty 2.5 0.67082 [1, 3, 3, 3, 3, 2, 2, 2, 3, 3] +luck 2.0 0.63246 [2, 2, 1, 3, 3, 2, 1, 2, 2, 2] +lucked 1.9 0.7 [2, 2, 2, 1, 1, 2, 3, 3, 1, 2] +luckie 1.6 0.66332 [1, 1, 1, 2, 2, 1, 1, 2, 2, 3] +luckier 1.9 0.7 [1, 3, 1, 2, 2, 1, 2, 3, 2, 2] +luckiest 2.9 0.7 [3, 3, 4, 2, 2, 4, 3, 3, 2, 3] +luckily 2.3 0.45826 [2, 2, 3, 2, 2, 3, 2, 2, 2, 3] +luckiness 1.0 1.61245 [2, 2, 1, -2, 3, 1, 1, 2, 2, -2] +lucking 1.2 0.6 [2, 1, 1, 0, 1, 1, 1, 2, 2, 1] +luckless -1.3 0.45826 [-2, -1, -2, -1, -1, -1, -2, -1, -1, -1] +lucks 1.6 0.91652 [0, 3, 1, 1, 3, 2, 2, 1, 2, 1] +lucky 1.8 0.74833 [2, 1, 1, 1, 3, 2, 1, 2, 2, 3] +ludicrous -1.5 1.36015 [2, -2, -2, -1, -1, -1, -3, -3, -2, -2] +ludicrously -0.2 1.83303 [3, -1, 0, -2, -1, 0, 3, -3, -1, 0] +ludicrousness -1.9 1.57797 [-1, 2, -2, -3, -2, -2, -3, -4, -1, -3] +lugubrious -2.1 1.37477 [-3, -2, -3, -3, -3, 1, -2, -3, 0, -3] +lulz 2.0 1.0 [2, 2, 2, 3, 4, 1, 3, 1, 1, 1] +lunatic -2.2 1.32665 [-2, -3, -4, -2, -3, -2, -1, -3, 1, -3] +lunatics -1.6 1.95959 [-4, -2, -3, -4, -2, 2, -1, -3, 1, 0] +lurk -0.8 0.87178 [-1, -1, 0, -3, -1, 0, -1, 0, -1, 0] +lurking -0.5 1.11803 [1, -1, -1, 0, -1, -2, 1, -2, 1, -1] +lurks -0.9 1.04403 [-1, -1, -1, -2, -2, -1, -1, -1, 2, -1] +lying -2.4 0.8 [-2, -4, -3, -1, -2, -2, -3, -2, -2, -3] +mad -2.2 0.74833 [-3, -3, -1, -1, -2, -3, -2, -2, -3, -2] +maddening -2.2 0.74833 [-3, -3, -1, -1, -3, -2, -2, -3, -2, -2] +madder -1.2 1.16619 [-2, 0, -3, 0, 0, -1, -3, -1, -2, 0] +maddest -2.8 1.16619 [-4, -4, -4, -4, -1, -3, -2, -1, -2, -3] +madly -1.7 1.1 [-2, 0, -2, -2, -2, -1, -4, -2, 0, -2] +madness -1.9 0.53852 [-1, -2, -1, -3, -2, -2, -2, -2, -2, -2] +magnific 2.3 1.1 [2, 2, 0, 2, 4, 4, 2, 2, 3, 2] +magnifical 2.4 1.28062 [1, 4, 1, 2, 4, 3, 1, 1, 4, 3] +magnifically 2.4 1.2 [3, 3, 3, 2, 4, 0, 1, 2, 2, 4] +magnification 1.0 0.89443 [2, 3, 1, 0, 0, 1, 1, 1, 0, 1] +magnifications 1.2 1.249 [-1, 0, 0, 2, 2, 2, 0, 2, 3, 2] +magnificence 2.4 1.0198 [3, 2, 1, 3, 2, 1, 4, 4, 2, 2] +magnificences 2.3 0.9 [3, 4, 3, 1, 3, 2, 1, 2, 2, 2] +magnificent 2.9 0.7 [2, 4, 2, 4, 3, 3, 3, 3, 2, 3] +magnificently 3.4 0.66332 [3, 3, 3, 4, 4, 2, 4, 4, 3, 4] +magnifico 1.8 0.87178 [2, 1, 1, 2, 1, 1, 3, 3, 3, 1] +magnificoes 1.4 0.8 [2, 2, 0, 2, 1, 1, 3, 1, 1, 1] +mandatory 0.3 0.9 [1, 0, -1, 0, -1, 0, 1, 2, 0, 1] +maniac -2.1 0.7 [-1, -2, -2, -2, -3, -3, -1, -2, -2, -3] +maniacal -0.3 1.73494 [2, -1, -3, -3, 0, 2, -1, 1, 1, -1] +maniacally -1.7 0.78102 [-1, -2, -1, -2, -3, -2, -1, -3, -1, -1] +maniacs -1.2 1.8868 [-3, 1, -2, 1, -3, -2, 0, 2, -3, -3] +manipulated -1.6 0.4899 [-2, -1, -1, -2, -1, -2, -2, -1, -2, -2] +manipulating -1.5 0.80623 [-1, -1, -1, -2, -2, -1, -2, -2, -3, 0] +manipulation -1.2 1.72047 [2, -3, -2, -3, -1, -1, -2, 2, -2, -2] +marvel 1.8 0.6 [2, 1, 1, 2, 1, 2, 3, 2, 2, 2] +marvelous 2.9 0.7 [2, 2, 3, 2, 3, 3, 4, 3, 4, 3] +marvels 2.0 0.89443 [3, 1, 1, 3, 1, 2, 1, 2, 3, 3] +masochism -1.6 1.11355 [-1, 0, -2, -2, -2, -2, 0, -4, -1, -2] +masochisms -1.1 1.57797 [3, -3, -2, -2, -1, -1, -2, -1, 0, -2] +masochist -1.7 0.9 [-1, 0, -3, -1, -2, -2, -2, -2, -1, -3] +masochistic -2.2 1.16619 [-1, -1, -1, -2, -3, -2, -4, -3, -4, -1] +masochistically -1.6 1.35647 [-1, -1, -3, -3, -3, -3, 0, -2, 1, -1] +masochists -1.2 1.07703 [1, -2, 0, -2, -3, -1, -2, -1, -1, -1] +masterpiece 3.1 0.83066 [3, 4, 4, 4, 2, 2, 2, 4, 3, 3] +masterpieces 2.5 0.67082 [2, 2, 3, 2, 2, 2, 4, 3, 3, 2] +matter 0.1 0.3 [0, 0, 0, 0, 0, 0, 0, 1, 0, 0] +matters 0.1 0.3 [0, 0, 0, 0, 1, 0, 0, 0, 0, 0] +mature 1.8 0.4 [2, 2, 2, 2, 2, 1, 2, 2, 1, 2] +meaningful 1.3 0.9 [0, 0, 2, 1, 1, 3, 1, 2, 2, 1] +meaningless -1.9 0.7 [-1, -2, -2, -2, -1, -1, -2, -3, -3, -2] +medal 2.1 1.22066 [2, 4, 3, 1, 0, 2, 2, 2, 1, 4] +mediocrity -0.3 1.1 [-1, 0, -2, 0, -1, 2, -1, -1, 0, 1] +meditative 1.4 0.66332 [2, 0, 1, 2, 2, 1, 2, 1, 2, 1] +meh -0.3 0.78102 [-1, 0, -1, 0, -1, -1, 1, 0, 1, -1] +melancholia -0.5 1.28452 [0, -2, -2, 0, 1, -1, 2, -2, 0, -1] +melancholiac -2.0 0.63246 [-2, -2, -3, -2, -2, -3, -1, -1, -2, -2] +melancholias -1.6 0.8 [-1, -2, -3, -2, 0, -2, -1, -1, -2, -2] +melancholic -0.3 1.18743 [0, 2, -2, 0, 1, -1, 0, -2, 0, -1] +melancholics -1.0 1.0 [0, -1, -3, 1, -1, -2, -1, -1, -1, -1] +melancholies -1.1 0.83066 [-1, 0, -1, 0, -3, -1, -2, -1, -1, -1] +melancholy -1.9 1.13578 [-3, -2, -3, -2, -3, -2, -2, 1, -1, -2] +menace -2.2 0.87178 [-3, -3, -2, -1, -1, -2, -3, -1, -3, -3] +menaced -1.7 1.48661 [-3, -2, -2, -3, -3, -1, 1, -3, 1, -2] +mercy 1.5 0.67082 [1, 2, 1, 1, 1, 3, 2, 2, 1, 1] +merit 1.8 0.74833 [2, 2, 2, 2, 0, 2, 3, 2, 2, 1] +merited 1.4 0.4899 [1, 2, 2, 1, 1, 1, 2, 1, 2, 1] +meriting 1.1 1.13578 [1, 2, 1, -2, 1, 1, 2, 2, 1, 2] +meritocracy 0.6 1.35647 [2, 4, 0, 0, 1, -1, 0, 0, 0, 0] +meritocrat 0.4 0.8 [0, 0, 0, 1, -1, 0, 0, 1, 2, 1] +meritocrats 1.1 1.13578 [2, 1, 1, 0, 0, 1, 1, 4, 0, 1] +meritorious 2.1 0.53852 [3, 2, 2, 2, 2, 2, 2, 2, 3, 1] +meritoriously 1.3 1.95192 [3, -1, 3, -2, 2, 0, -1, 3, 3, 3] +meritoriousness 1.7 1.18743 [4, 1, 2, 1, 2, 0, 3, 2, 2, 0] +merits 1.7 0.78102 [1, 3, 1, 1, 2, 2, 1, 1, 3, 2] +merrier 1.7 1.41774 [3, 2, 2, 3, 2, 2, -1, -1, 3, 2] +merriest 2.7 1.41774 [3, 4, 4, 4, 2, 3, -1, 2, 3, 3] +merrily 2.4 0.66332 [3, 3, 2, 2, 2, 3, 2, 3, 1, 3] +merriment 2.4 1.35647 [1, 3, 3, 4, 2, -1, 3, 3, 3, 3] +merriments 2.0 0.89443 [2, 2, 3, 3, 0, 2, 2, 1, 2, 3] +merriness 2.2 0.74833 [2, 1, 2, 3, 2, 2, 3, 3, 1, 3] +merry 2.5 0.80623 [2, 4, 2, 2, 3, 3, 3, 3, 2, 1] +merrymaker 2.2 1.4 [3, 1, 3, 3, 3, -1, 2, 1, 3, 4] +merrymakers 1.7 1.34536 [1, 4, 1, 3, 1, 3, -1, 2, 1, 2] +merrymaking 2.2 0.6 [3, 2, 2, 2, 2, 1, 3, 3, 2, 2] +merrymakings 2.4 1.11355 [3, 3, 2, 3, 4, 2, 0, 3, 1, 3] +merrythought 1.1 0.9434 [1, 1, 3, 0, 2, 0, 0, 1, 2, 1] +merrythoughts 1.6 1.11355 [1, 3, 2, 1, 2, 1, 0, 3, 3, 0] +mess -1.5 0.92195 [-1, -3, -1, -1, -3, -1, -2, -1, 0, -2] +messed -1.4 0.8 [-2, -1, -1, -3, 0, -2, -2, -1, -1, -1] +messy -1.5 0.80623 [-1, -2, -2, -2, -1, -1, -2, 0, -1, -3] +methodical 0.6 0.8 [0, 0, 0, 2, 2, 0, 1, 1, 0, 0] +mindless -1.9 0.7 [-2, -1, -2, -1, -1, -2, -3, -3, -2, -2] +miracle 2.8 0.87178 [4, 4, 3, 2, 3, 4, 2, 2, 2, 2] +mirth 2.6 0.66332 [3, 3, 3, 2, 3, 3, 3, 2, 1, 3] +mirthful 2.7 0.45826 [3, 3, 3, 2, 3, 3, 3, 2, 3, 2] +mirthfully 2.0 1.48324 [2, 3, 4, 3, 0, -1, 2, 1, 3, 3] +misbehave -1.9 0.7 [-3, -3, -1, -2, -2, -1, -1, -2, -2, -2] +misbehaved -1.6 0.4899 [-1, -2, -1, -2, -2, -2, -1, -2, -1, -2] +misbehaves -1.6 0.4899 [-1, -2, -2, -1, -2, -2, -1, -2, -1, -2] +misbehaving -1.7 0.64031 [-1, -2, -1, -2, -3, -2, -1, -2, -1, -2] +mischief -1.5 0.67082 [-2, -1, -1, -1, -1, -2, -3, -2, -1, -1] +mischiefs -0.8 1.72047 [-2, -1, -2, -2, 3, -1, -2, 2, -1, -2] +miser -1.8 0.87178 [-1, -2, 0, -3, -2, -2, -3, -2, -2, -1] +miserable -2.2 1.32665 [-2, -2, -3, -3, -4, -3, -1, -2, 1, -3] +miserableness -2.8 0.6 [-3, -3, -3, -3, -2, -2, -3, -4, -2, -3] +miserably -2.1 1.37477 [-2, -1, -3, -3, -4, -3, -1, -2, 1, -3] +miserere -0.8 1.07703 [-1, -1, 0, -3, 0, -1, 0, 1, -2, -1] +misericorde 0.1 1.64012 [1, 1, -1, 2, 1, 2, -3, -1, -2, 1] +misericordes -0.5 1.36015 [0, 0, -1, 0, 0, 1, -3, 0, 1, -3] +miseries -2.7 0.78102 [-3, -4, -1, -2, -3, -3, -2, -3, -3, -3] +miserliness -2.6 1.0198 [-3, -1, -3, -2, -2, -1, -3, -4, -4, -3] +miserly -1.4 0.91652 [0, -2, -2, 0, -1, -2, -2, -1, -3, -1] +misers -1.5 0.92195 [0, -1, -1, -3, -1, -1, -2, -3, -2, -1] +misery -2.7 0.45826 [-2, -2, -3, -3, -2, -3, -3, -3, -3, -3] +misgiving -1.4 0.4899 [-2, -2, -2, -1, -1, -1, -2, -1, -1, -1] +misinformation -1.3 0.64031 [-1, -1, -1, -1, -1, -1, -2, -1, -1, -3] +misinformed -1.6 0.4899 [-1, -1, -1, -2, -2, -1, -2, -2, -2, -2] +misinterpreted -1.3 0.64031 [-1, -2, -1, 0, -2, -1, -1, -1, -2, -2] +misleading -1.7 0.64031 [-2, -1, -3, -1, -1, -2, -2, -2, -1, -2] +misread -1.1 0.3 [-1, -1, -1, -2, -1, -1, -1, -1, -1, -1] +misreporting -1.5 0.5 [-2, -1, -1, -1, -2, -1, -2, -2, -1, -2] +misrepresentation -2.0 0.63246 [-2, -3, -2, -1, -1, -3, -2, -2, -2, -2] +miss -0.6 1.35647 [-1, -1, -1, -1, -2, -1, 2, 2, -2, -1] +missed -1.2 0.74833 [-2, -1, 0, -1, -1, -1, -3, -1, -1, -1] +misses -0.9 0.3 [-1, -1, 0, -1, -1, -1, -1, -1, -1, -1] +missing -1.2 0.4 [-1, -2, -1, -1, -1, -1, -2, -1, -1, -1] +mistakable -0.8 0.4 [-1, -1, -1, -1, -1, -1, -1, 0, 0, -1] +mistake -1.4 0.4899 [-1, -2, -1, -1, -1, -1, -2, -2, -2, -1] +mistaken -1.5 0.67082 [-2, -1, -2, -2, -1, -1, -1, -3, -1, -1] +mistakenly -1.2 0.4 [-1, -1, -2, -1, -1, -1, -1, -2, -1, -1] +mistaker -1.6 0.4899 [-2, -1, -2, -1, -2, -2, -1, -2, -1, -2] +mistakers -1.6 0.8 [-3, -1, -1, -1, -3, -1, -1, -2, -2, -1] +mistakes -1.5 0.67082 [-2, -1, -2, -1, -3, -2, -1, -1, -1, -1] +mistaking -1.1 0.53852 [-1, -1, -1, -1, 0, -1, -1, -1, -2, -2] +misunderstand -1.5 0.67082 [-3, -2, -1, -1, -1, -1, -1, -2, -2, -1] +misunderstanding -1.8 0.6 [-1, -1, -1, -3, -2, -2, -2, -2, -2, -2] +misunderstands -1.3 0.45826 [-1, -2, -1, -2, -1, -1, -2, -1, -1, -1] +misunderstood -1.4 0.66332 [-1, -1, -1, -3, -1, -1, -2, -1, -2, -1] +mlm -1.4 1.68523 [0, -2, -2, -3, -4, -2, 0, 1, 1, -3] +mmk 0.6 1.0198 [0, 0, 0, 0, 0, 3, 1, 0, 0, 2] +moan -0.6 1.62481 [-2, -1, 0, -3, 2, -2, 0, 0, -2, 2] +moaned -0.4 1.35647 [-2, 0, -3, 0, -1, -1, 2, 1, 0, 0] +moaning -0.4 1.28062 [-1, -1, 1, -1, 0, 0, 2, 0, -3, -1] +moans -0.6 0.8 [-2, 0, 0, -2, 0, -1, 0, 0, 0, -1] +mock -1.8 0.74833 [-3, -1, -1, -2, -2, -1, -3, -1, -2, -2] +mocked -1.3 1.26886 [-2, -2, -1, -2, -2, -3, -2, 1, 1, -1] +mocker -0.8 1.46969 [-1, -2, 2, -2, -2, -2, -2, 1, 1, -1] +mockeries -1.6 0.8 [-3, -1, -2, -2, -2, 0, -1, -2, -1, -2] +mockers -1.3 0.78102 [-2, -3, 0, -1, -1, -1, -2, -1, -1, -1] +mockery -1.3 0.45826 [-2, -1, -1, -1, -1, -1, -2, -2, -1, -1] +mocking -1.7 0.64031 [-2, -1, -1, -2, -1, -1, -3, -2, -2, -2] +mocks -2.0 0.63246 [-1, -3, -2, -2, -2, -2, -2, -1, -3, -2] +molest -2.1 1.81384 [-4, -1, -2, -4, -3, 1, -3, 1, -2, -4] +molestation -1.9 1.57797 [-2, -2, -3, -2, -3, -2, -4, 1, 1, -3] +molestations -2.9 1.04403 [-3, -4, -4, -4, -3, -2, -2, -1, -2, -4] +molested -1.9 1.92094 [-4, 1, -1, -4, -2, -1, -4, -4, 1, -1] +molester -2.3 1.61555 [-4, -2, -1, -4, -2, -1, -4, -4, 1, -2] +molesters -2.2 1.66132 [-2, -4, -3, -3, -3, 1, 1, -3, -3, -3] +molesting -2.8 1.72047 [-4, -4, -4, -4, -3, -4, -1, -1, 1, -4] +molests -3.1 1.13578 [-3, -4, -4, -4, -3, -4, 0, -3, -3, -3] +mongering -0.8 1.16619 [-3, -2, 0, 0, -1, 1, -2, 0, -1, 0] +monopolize -0.8 1.6 [-1, -3, -2, -2, 0, -1, -1, -2, 2, 2] +monopolized -0.9 0.53852 [0, -2, -1, 0, -1, -1, -1, -1, -1, -1] +monopolizes -1.1 0.83066 [0, -3, -1, 0, -1, -1, -2, -1, -1, -1] +monopolizing -0.5 1.56525 [2, -1, -2, -1, -3, -1, -1, 2, 1, -1] +mooch -1.7 0.9 [-1, -1, -1, -3, -1, -3, -3, -2, -1, -1] +mooched -1.4 0.4899 [-2, -1, -2, -1, -1, -2, -1, -1, -2, -1] +moocher -1.5 0.67082 [-2, -1, -2, -1, -1, -2, -1, -1, -3, -1] +moochers -1.9 0.7 [-3, -2, -2, -3, -1, -1, -1, -2, -2, -2] +mooches -1.4 0.66332 [-2, -1, -2, -1, 0, -2, -1, -1, -2, -2] +mooching -1.7 0.64031 [-3, -2, -1, -1, -2, -2, -1, -2, -1, -2] +moodier -1.1 1.13578 [-2, -1, -1, -1, -2, -1, -2, 2, -1, -2] +moodiest -2.1 0.9434 [-1, -2, -2, -2, -1, -2, -4, -3, -1, -3] +moodily -1.3 0.45826 [-1, -1, -1, -1, -1, -2, -2, -1, -2, -1] +moodiness -1.4 0.66332 [-2, -1, -2, -2, -1, 0, -2, -1, -1, -2] +moodinesses -1.4 0.4899 [-2, -1, -1, -2, -1, -1, -1, -2, -2, -1] +moody -1.5 0.67082 [-1, -1, -1, -2, -2, -3, -1, -1, -1, -2] +mope -1.9 0.53852 [-2, -2, -1, -2, -2, -2, -2, -3, -1, -2] +moping -1.0 1.48324 [-2, -2, -1, -1, 1, 2, -3, -2, 0, -2] +moron -2.2 0.6 [-2, -1, -2, -3, -3, -2, -2, -3, -2, -2] +moronic -2.7 0.64031 [-3, -3, -3, -3, -2, -4, -2, -3, -2, -2] +moronically -1.4 1.8 [-4, -2, -1, 2, -2, -2, -3, -3, 0, 1] +moronity -1.1 1.22066 [-2, -1, -2, -1, 0, -2, 2, -2, -2, -1] +morons -1.3 1.1 [-1, -1, -1, 0, -3, -2, 0, 0, -2, -3] +motherfucker -3.6 0.66332 [-3, -4, -4, -4, -4, -2, -4, -3, -4, -4] +motherfucking -2.8 1.249 [-3, -1, -4, 0, -3, -3, -4, -4, -3, -3] +motivate 1.6 0.4899 [1, 1, 1, 1, 2, 2, 2, 2, 2, 2] +motivated 2.0 0.63246 [3, 3, 1, 2, 1, 2, 2, 2, 2, 2] +motivating 2.2 0.6 [2, 2, 3, 3, 3, 2, 2, 2, 1, 2] +motivation 1.4 0.66332 [1, 1, 2, 0, 2, 1, 2, 1, 2, 2] +mourn -1.8 0.6 [-2, -2, -2, -2, -2, -1, -2, -3, -1, -1] +mourned -1.3 1.55242 [-1, -2, -3, -3, -2, -1, 1, -2, 2, -2] +mourner -1.6 1.35647 [-3, 0, -2, -1, -1, 0, -2, 0, -3, -4] +mourners -1.8 0.74833 [-1, -2, -3, -1, -2, -1, -2, -1, -2, -3] +mournful -1.6 1.62481 [-2, -3, -3, 2, -2, -3, -2, 1, -2, -2] +mournfuller -1.9 0.9434 [-2, -3, -3, -3, 0, -2, -1, -2, -2, -1] +mournfully -1.7 1.55242 [-4, -3, -2, -3, 1, -2, -2, -2, 1, -1] +mournfulness -1.8 1.4 [-4, -3, 1, -3, -1, -2, 0, -2, -2, -2] +mourning -1.9 1.04403 [-1, -1, -1, -1, -2, -3, -4, -3, -2, -1] +mourningly -2.3 1.18743 [-3, -3, -3, -3, -2, -3, -2, 1, -2, -3] +mourns -2.4 0.66332 [-2, -2, -3, -2, -3, -3, -3, -1, -2, -3] +muah 2.3 1.26886 [0, 3, 1, 2, 3, 1, 4, 4, 3, 2] +mumpish -1.4 0.66332 [-1, -1, -2, -2, 0, -1, -2, -2, -1, -2] +murder -3.7 0.64031 [-4, -4, -4, -4, -2, -4, -4, -4, -3, -4] +murdered -3.4 0.66332 [-4, -3, -2, -3, -4, -4, -3, -3, -4, -4] +murderee -3.2 0.6 [-3, -3, -2, -3, -4, -4, -3, -3, -4, -3] +murderees -3.1 0.7 [-2, -4, -3, -4, -3, -2, -3, -3, -4, -3] +murderer -3.6 0.4899 [-4, -3, -3, -3, -4, -4, -4, -3, -4, -4] +murderers -3.3 0.78102 [-3, -4, -4, -4, -4, -2, -4, -3, -3, -2] +murderess -2.2 1.72047 [-2, -2, -3, -4, -3, -3, -4, 1, 1, -3] +murderesses -2.6 0.8 [-2, -4, -3, -4, -2, -2, -2, -2, -3, -2] +murdering -3.3 0.78102 [-4, -2, -4, -3, -4, -3, -2, -4, -4, -3] +murderous -3.2 0.74833 [-3, -3, -4, -3, -4, -4, -4, -2, -2, -3] +murderously -3.1 0.9434 [-3, -4, -4, -4, -3, -4, -1, -2, -3, -3] +murderousness -2.9 0.7 [-3, -3, -4, -2, -2, -2, -4, -3, -3, -3] +murders -3.0 1.84391 [-4, -4, -4, 2, -4, -2, -4, -4, -2, -4] +n00b -1.6 0.8 [-1, -3, -1, -2, -2, -2, -2, -2, -1, 0] +nag -1.5 0.80623 [-1, -1, -3, -1, -3, -2, -1, -1, -1, -1] +nagana -1.7 0.9 [-2, -2, 0, 0, -2, -3, -2, -2, -2, -2] +nagged -1.7 0.45826 [-2, -1, -2, -1, -2, -2, -1, -2, -2, -2] +nagger -1.8 0.4 [-2, -1, -2, -2, -2, -2, -1, -2, -2, -2] +naggers -1.5 0.67082 [-1, -1, -2, -2, -2, -1, -1, -3, -1, -1] +naggier -1.4 1.11355 [-2, -3, -2, -2, 1, -1, -2, -1, 0, -2] +naggiest -2.4 0.91652 [-3, -2, -2, -1, -4, -2, -3, -3, -3, -1] +nagging -1.7 0.64031 [-1, -1, -1, -1, -2, -2, -2, -2, -3, -2] +naggingly -0.9 1.37477 [-2, 2, -1, -1, -1, -3, 1, -1, -1, -2] +naggy -1.7 0.64031 [-2, -2, -1, -1, -3, -2, -1, -2, -1, -2] +nags -1.1 0.53852 [-1, -1, -2, -1, -1, -2, -1, -1, 0, -1] +nah -0.4 1.28062 [0, 0, 1, -1, -3, -1, 0, 2, -1, -1] +naive -1.1 1.22066 [-2, -2, -1, 2, -1, -1, -1, -3, -1, -1] +nastic 0.2 0.6 [2, 0, 0, 0, 0, 0, 0, 0, 0, 0] +nastier -2.3 0.45826 [-2, -2, -2, -3, -3, -2, -3, -2, -2, -2] +nasties -2.1 0.3 [-2, -2, -2, -2, -3, -2, -2, -2, -2, -2] +nastiest -2.4 1.85472 [-4, -4, -4, -2, -3, -2, 1, 1, -3, -4] +nastily -1.9 0.7 [-2, -3, -1, -2, -2, -3, -1, -1, -2, -2] +nastiness -1.1 1.44568 [-2, -2, -3, -2, 1, -1, -1, -1, 2, -2] +nastinesses -2.6 0.66332 [-2, -3, -3, -2, -3, -3, -3, -1, -3, -3] +nasturtium 0.4 0.66332 [0, 0, 0, 0, 0, 1, 1, 0, 2, 0] +nasturtiums 0.1 0.3 [0, 0, 0, 0, 0, 0, 1, 0, 0, 0] +nasty -2.6 1.0198 [-3, -1, -2, -4, -3, -3, -1, -2, -4, -3] +natural 1.5 1.0247 [2, 0, 0, 1, 1, 3, 2, 2, 3, 1] +neat 2.0 0.89443 [2, 1, 1, 2, 3, 1, 2, 2, 2, 4] +neaten 1.2 0.4 [1, 1, 1, 1, 1, 2, 2, 1, 1, 1] +neatened 2.0 1.09545 [0, 2, 1, 3, 1, 2, 4, 3, 2, 2] +neatening 1.3 0.45826 [1, 1, 1, 1, 2, 2, 2, 1, 1, 1] +neatens 1.1 0.83066 [0, 1, 0, 1, 1, 1, 1, 3, 2, 1] +neater 1.0 0.44721 [1, 1, 1, 1, 1, 1, 2, 0, 1, 1] +neatest 1.7 0.64031 [1, 2, 2, 1, 2, 2, 1, 2, 1, 3] +neath 0.2 0.9798 [0, 0, -2, 0, 0, 2, 0, 1, 1, 0] +neatherd -0.4 0.8 [0, 0, 0, -2, 0, -1, 1, -1, -1, 0] +neatly 1.4 0.66332 [2, 1, 1, 2, 2, 2, 0, 1, 1, 2] +neatness 1.3 0.64031 [2, 1, 1, 0, 1, 1, 2, 2, 2, 1] +neats 1.1 0.53852 [2, 1, 2, 1, 0, 1, 1, 1, 1, 1] +needy -1.4 0.4899 [-1, -2, -2, -2, -1, -1, -1, -1, -2, -1] +negative -2.7 0.9 [-1, -3, -3, -2, -4, -2, -2, -4, -3, -3] +negativity -2.3 0.45826 [-2, -2, -2, -2, -3, -2, -3, -3, -2, -2] +neglect -2.0 0.63246 [-2, -2, -1, -1, -3, -2, -3, -2, -2, -2] +neglected -2.4 1.0198 [-1, -2, -4, -3, -2, -2, -1, -4, -3, -2] +neglecter -1.7 0.64031 [-2, -2, -1, -1, -1, -3, -2, -2, -1, -2] +neglecters -1.5 0.67082 [-2, -1, -1, -1, -2, -1, -1, -2, -3, -1] +neglectful -2.0 0.63246 [-3, -3, -1, -2, -2, -2, -1, -2, -2, -2] +neglectfully -2.1 0.9434 [-1, -3, -3, -1, -1, -2, -2, -2, -4, -2] +neglectfulness -2.0 0.63246 [-2, -2, -2, -2, -1, -3, -2, -2, -1, -3] +neglecting -1.7 0.78102 [-2, -1, -3, -2, -1, -3, -1, -1, -2, -1] +neglects -2.2 0.4 [-2, -2, -2, -2, -2, -3, -2, -3, -2, -2] +nerd -1.2 0.6 [-1, -2, -1, -2, -1, 0, -1, -1, -2, -1] +nerdier -0.2 0.87178 [0, 0, -1, -1, 0, -1, 2, 0, 0, -1] +nerdiest 0.6 1.28062 [2, 3, 0, -1, 1, 0, 0, -1, 2, 0] +nerdish -0.1 1.04403 [-1, -1, 2, 0, -1, -1, 1, 0, 1, -1] +nerdy -0.2 1.249 [-1, -1, -1, 3, 0, 0, 0, 0, -2, 0] +nerves -0.4 0.8 [0, -1, 0, 1, -2, -1, 0, -1, 0, 0] +nervous -1.1 0.53852 [-1, -1, -1, -2, -2, -1, -1, 0, -1, -1] +nervously -0.6 1.56205 [-1, -1, -1, -1, -1, -2, 4, -1, -1, -1] +nervousness -1.2 0.4 [-1, -1, -1, -1, -1, -1, -1, -2, -2, -1] +neurotic -1.4 1.11355 [-3, -2, -2, -1, 1, -2, -2, -1, 0, -2] +neurotically -1.8 1.16619 [0, -2, -1, -3, -3, -1, 0, -2, -3, -3] +neuroticism -0.9 1.22066 [-2, -1, -1, -1, -2, 0, -3, 1, 1, -1] +neurotics -0.7 1.61555 [-2, 0, -1, -2, -1, -3, 0, 2, 2, -2] +nice 1.8 0.74833 [3, 1, 1, 2, 2, 1, 3, 1, 2, 2] +nicely 1.9 0.83066 [2, 1, 2, 2, 4, 2, 1, 1, 2, 2] +niceness 1.6 0.66332 [1, 1, 3, 2, 1, 1, 2, 2, 2, 1] +nicenesses 2.1 1.22066 [4, 0, 3, 1, 2, 1, 4, 2, 2, 2] +nicer 1.9 0.53852 [2, 2, 1, 2, 3, 2, 2, 2, 1, 2] +nicest 2.2 0.87178 [1, 4, 1, 2, 2, 2, 3, 3, 2, 2] +niceties 1.5 1.20416 [1, 4, 1, 1, 2, 1, 0, 3, 2, 0] +nicety 1.2 1.07703 [1, 0, 4, 1, 1, 0, 2, 1, 1, 1] +nifty 1.7 0.64031 [2, 2, 1, 1, 1, 2, 3, 2, 2, 1] +niggas -1.4 2.2 [-4, -3, 2, 1, -4, -2, 0, -1, 1, -4] +nigger -3.3 1.18743 [-4, -4, -4, -4, -4, -4, -1, -3, -1, -4] +no -1.2 0.74833 [-1, -1, -1, -1, -1, -1, 0, -1, -2, -3] +noble 2.0 0.89443 [2, 1, 2, 2, 3, 0, 2, 3, 2, 3] +noisy -0.7 0.64031 [-2, 0, -1, -1, 0, -1, -1, 0, 0, -1] +nonsense -1.7 0.64031 [-3, -1, -1, -1, -2, -1, -2, -2, -2, -2] +noob -0.2 1.16619 [-2, 0, -1, 0, -1, 2, 1, 1, -1, -1] +nosey -0.8 1.16619 [-2, -2, -2, 1, -1, -1, 0, 1, 0, -2] +notorious -1.9 1.3 [-2, -4, -3, -2, -2, -2, -1, -1, -3, 1] +novel 1.3 0.64031 [2, 0, 1, 1, 1, 1, 2, 2, 2, 1] +numb -1.4 0.66332 [-1, -1, -1, -1, -2, -1, -1, -3, -2, -1] +numbat 0.2 0.4 [0, 0, 0, 0, 1, 1, 0, 0, 0, 0] +numbed -0.9 0.53852 [-1, -1, -1, -1, 0, 0, -2, -1, -1, -1] +number 0.3 0.64031 [0, 0, 1, 0, 0, 2, 0, 0, 0, 0] +numberable 0.6 0.91652 [0, 2, 0, 0, 0, 2, 2, 0, 0, 0] +numbest -1.0 0.89443 [-2, -1, 0, 0, -3, -1, -1, -1, 0, -1] +numbfish -0.4 0.66332 [-1, 0, 0, 0, -2, 0, 0, -1, 0, 0] +numbfishes -0.7 0.9 [0, -1, 0, -1, -1, 0, -1, 0, 0, -3] +numbing -1.1 0.83066 [-1, 0, -1, -1, -2, -1, -3, -1, 0, -1] +numbingly -1.3 0.45826 [-1, -1, -2, -1, -1, -1, -2, -1, -2, -1] +numbles 0.4 0.66332 [0, 0, 0, 0, 1, 2, 0, 0, 1, 0] +numbly -1.4 1.0198 [-3, -2, 0, -1, -1, -3, -1, -2, -1, 0] +numbness -1.1 0.7 [-1, -1, -2, -1, -1, -2, -1, 0, -2, 0] +numbs -0.7 1.00499 [-1, 0, -1, 0, 1, 0, -3, -1, -1, -1] +numbskull -2.3 1.41774 [-2, -4, -3, 0, -2, -2, -4, -4, 0, -2] +numbskulls -2.2 1.07703 [-2, -2, -4, -2, -2, -1, -3, -3, 0, -3] +nurtural 1.5 0.80623 [2, 1, 2, 2, 1, 3, 0, 1, 2, 1] +nurturance 1.6 0.8 [1, 2, 1, 1, 3, 0, 2, 2, 2, 2] +nurturances 1.3 1.55242 [0, -2, 3, 1, 1, 2, 3, 0, 2, 3] +nurturant 1.7 0.78102 [2, 1, 3, 2, 2, 2, 2, 1, 0, 2] +nurture 1.4 0.8 [3, 1, 2, 2, 1, 2, 1, 0, 1, 1] +nurtured 1.9 0.9434 [2, 1, 3, 3, 3, 1, 2, 2, 0, 2] +nurturer 1.9 0.83066 [2, 1, 3, 3, 3, 1, 2, 2, 1, 1] +nurturers 0.8 1.66132 [2, -1, 2, 2, 1, -2, -2, 2, 2, 2] +nurtures 1.9 0.83066 [2, 1, 3, 3, 3, 1, 2, 2, 1, 1] +nurturing 2.0 0.63246 [3, 3, 2, 2, 1, 2, 2, 1, 2, 2] +nuts -1.3 1.26886 [-2, -1, -2, -3, 1, -1, 1, -2, -2, -2] +o.o -0.8 1.07703 [-1, -1, 0, -2, -1, -1, -2, 1, -2, 1] +o/\o 2.1 1.04403 [1, 2, 3, 1, 3, 4, 1, 2, 3, 1] +o_0 -0.1 0.53852 [-1, -1, 0, 0, 0, 0, 0, 0, 1, 0] +obliterate -2.9 0.83066 [-3, -4, -3, -3, -3, -3, -2, -1, -4, -3] +obliterated -2.1 1.3 [-3, 0, -1, -4, -3, -2, 0, -2, -3, -3] +obnoxious -2.0 0.44721 [-1, -2, -3, -2, -2, -2, -2, -2, -2, -2] +obnoxiously -2.3 0.64031 [-3, -2, -1, -2, -2, -3, -2, -3, -3, -2] +obnoxiousness -2.1 0.7 [-3, -1, -1, -2, -2, -3, -2, -2, -3, -2] +obscene -2.8 0.87178 [-3, -3, -2, -1, -3, -4, -3, -4, -2, -3] +obsess -1.0 0.89443 [-2, 0, -2, -1, 1, -1, -2, -1, -1, -1] +obsessed -0.7 0.78102 [0, 0, -1, 0, -1, 0, -1, -2, -2, 0] +obsesses -1.0 0.7746 [-2, -2, -1, -2, 0, -1, -1, -1, 0, 0] +obsessing -1.4 0.66332 [-1, -1, -1, -2, -1, -1, -1, -3, -2, -1] +obsession -1.4 0.8 [0, -2, -2, -1, -1, -1, -3, -1, -1, -2] +obsessional -1.5 0.92195 [0, -2, -1, -1, -3, -1, -2, -1, -3, -1] +obsessionally -1.3 0.9 [-1, -2, -2, -2, -2, -1, 1, -1, -1, -2] +obsessions -0.9 1.44568 [-1, -4, -2, -1, 1, -1, 0, 1, 0, -2] +obsessive -0.9 1.04403 [-2, 0, -1, 0, 1, -1, -3, -1, -1, -1] +obsessively -0.4 1.2 [-1, -1, -1, -1, -1, 1, 2, -2, 1, -1] +obsessiveness -1.2 1.32665 [0, -3, -1, -1, -1, 1, -4, -1, -1, -1] +obsessives -0.7 0.9 [-1, -1, -1, -1, -1, 1, -2, 1, -1, -1] +obsolete -1.2 0.74833 [-1, -1, -1, -1, -2, -1, -1, -3, -1, 0] +obstacle -1.5 1.0247 [-1, -3, -1, -2, -2, -2, 1, -1, -2, -2] +obstacles -1.6 0.8 [-3, -1, -2, -1, -2, -2, 0, -2, -1, -2] +obstinate -1.2 0.74833 [-2, -1, -1, -1, 0, 0, -2, -1, -2, -2] +odd -1.3 0.45826 [-1, -1, -2, -1, -1, -1, -2, -1, -2, -1] +offence -1.2 1.93907 [-2, -2, -3, 3, -2, -2, -3, 2, -1, -2] +offences -1.4 1.49666 [-2, -2, -4, -1, -2, -2, -1, 0, 2, -2] +offend -1.2 1.4 [-2, -2, -2, -2, -1, -2, -2, 1, 2, -2] +offended -1.0 1.41421 [-2, -2, -2, -2, -1, 0, -2, 2, 1, -2] +offender -1.5 1.28452 [-3, -2, -2, -2, -2, -2, -2, 1, 1, -2] +offenders -1.5 1.28452 [-2, -1, -2, -2, -2, -2, 2, -3, -2, -1] +offending -2.3 0.64031 [-2, -2, -3, -2, -2, -4, -2, -2, -2, -2] +offends -2.0 0.7746 [-3, -1, -1, -2, -2, -2, -3, -1, -2, -3] +offense -1.0 1.61245 [-2, 1, -1, -2, -2, -2, -3, 2, 1, -2] +offenseless 0.7 1.79165 [3, 1, 0, 2, 1, 2, 1, 0, -4, 1] +offenses -1.5 1.5 [-1, -2, -2, -4, -1, -2, 1, -3, 1, -2] +offensive -2.0 1.48324 [-3, -3, -3, -2, -1, -2, 2, -2, -3, -3] +offensively -2.8 0.87178 [-2, -4, -3, -3, -2, -4, -4, -2, -2, -2] +offensiveness -2.3 0.45826 [-2, -2, -2, -2, -2, -3, -2, -3, -3, -2] +offensives -0.8 1.249 [0, 0, -1, -2, 0, 2, -2, -1, -2, -2] +offline -0.5 0.92195 [0, 0, 0, 0, -3, 0, -1, 0, -1, 0] +ok 1.2 0.4 [1, 2, 1, 1, 1, 1, 2, 1, 1, 1] +okay 0.9 0.53852 [1, 1, 0, 0, 1, 1, 1, 2, 1, 1] +okays 2.1 1.13578 [1, 1, 1, 4, 3, 2, 2, 1, 2, 4] +ominous -1.4 1.49666 [-3, -2, -1, -2, -2, -1, -1, 1, 1, -4] +once-in-a-lifetime 1.8 1.4 [4, 2, 1, 0, 1, 1, 4, 3, 2, 0] +openness 1.4 0.8 [2, 1, 1, 2, 2, 1, 1, 1, 3, 0] +opportune 1.7 0.78102 [2, 2, 0, 1, 2, 3, 2, 2, 1, 2] +opportunely 1.5 1.0247 [1, 1, 4, 1, 2, 1, 1, 2, 2, 0] +opportuneness 1.2 1.249 [0, 1, 2, 2, 2, 2, 2, 2, -2, 1] +opportunism 0.4 1.11355 [-1, -1, 0, -1, 1, 2, 0, 1, 2, 1] +opportunisms 0.2 1.4 [2, -1, 0, -1, 1, -2, 2, 2, -1, 0] +opportunist 0.2 0.9798 [-1, -1, 0, -1, 0, 2, 0, 1, 1, 1] +opportunistic -0.1 2.11896 [-2, 1, -1, 0, -4, 2, -1, 4, 1, -1] +opportunistically 0.9 1.51327 [1, -3, 1, 3, 2, 2, 1, 0, 1, 1] +opportunists 0.3 1.34536 [0, -1, -1, 2, 1, 3, -1, -1, 1, 0] +opportunities 1.6 0.4899 [1, 1, 2, 2, 2, 1, 2, 2, 1, 2] +opportunity 1.8 0.6 [2, 2, 2, 2, 3, 1, 2, 1, 1, 2] +oppressed -2.1 0.53852 [-2, -2, -2, -1, -2, -2, -3, -2, -2, -3] +oppressive -1.7 1.34536 [-3, -2, -1, -2, -2, -2, -3, 2, -2, -2] +optimal 1.5 0.67082 [1, 2, 1, 3, 1, 1, 1, 2, 2, 1] +optimality 1.9 0.7 [3, 3, 2, 1, 2, 1, 2, 2, 1, 2] +optimally 1.3 0.9 [0, 3, 0, 1, 1, 2, 1, 1, 2, 2] +optimisation 1.6 0.8 [3, 1, 1, 1, 2, 1, 1, 3, 2, 1] +optimisations 1.8 0.6 [3, 1, 1, 2, 1, 2, 2, 2, 2, 2] +optimise 1.9 0.83066 [1, 2, 3, 2, 3, 3, 2, 1, 1, 1] +optimised 1.7 1.26886 [2, 4, 1, 2, 1, 2, 3, 2, 1, -1] +optimises 1.6 1.0198 [3, 1, 1, 1, 1, 3, 2, 0, 3, 1] +optimising 1.7 1.00499 [1, 2, 3, 3, 1, 2, 1, 3, 0, 1] +optimism 2.5 0.67082 [2, 2, 3, 3, 3, 4, 2, 2, 2, 2] +optimisms 2.0 0.63246 [2, 3, 1, 3, 1, 2, 2, 2, 2, 2] +optimist 2.4 0.4899 [3, 2, 3, 2, 3, 3, 2, 2, 2, 2] +optimistic 1.3 1.48661 [2, 2, -3, 2, 2, 2, 1, 2, 1, 2] +optimistically 2.1 0.53852 [3, 2, 2, 2, 3, 2, 1, 2, 2, 2] +optimists 1.6 0.66332 [3, 2, 2, 1, 2, 1, 2, 1, 1, 1] +optimization 1.6 0.8 [2, 3, 1, 1, 1, 2, 0, 2, 2, 2] +optimizations 0.9 1.04403 [0, 2, 0, 2, 1, 0, 3, 1, 0, 0] +optimize 2.2 0.87178 [2, 3, 3, 2, 1, 2, 4, 2, 2, 1] +optimized 2.0 0.44721 [1, 3, 2, 2, 2, 2, 2, 2, 2, 2] +optimizer 1.5 0.67082 [1, 3, 1, 1, 2, 2, 1, 2, 1, 1] +optimizers 2.1 0.7 [3, 3, 1, 3, 2, 2, 1, 2, 2, 2] +optimizes 1.8 0.6 [1, 3, 2, 1, 2, 2, 1, 2, 2, 2] +optimizing 2.0 0.7746 [1, 1, 2, 2, 1, 3, 3, 3, 2, 2] +optionless -1.7 0.64031 [-2, -1, -2, -3, -1, -2, -2, -2, -1, -1] +original 1.3 0.9 [0, 2, 0, 2, 2, 0, 2, 1, 2, 2] +outcry -2.3 0.64031 [-3, -2, -2, -3, -2, -1, -3, -2, -2, -3] +outgoing 1.2 1.16619 [1, 1, 1, 2, -1, 1, 3, 3, 0, 1] +outmaneuvered 0.5 1.36015 [-2, 2, 0, 0, 3, 1, 1, 0, 1, -1] +outrage -2.3 1.00499 [-2, -2, -4, -3, -1, -3, -3, -1, -1, -3] +outraged -2.5 0.92195 [-3, -2, -2, -1, -3, -3, -1, -4, -3, -3] +outrageous -2.0 1.34164 [-3, 0, -2, -1, -3, 0, -3, -3, -4, -1] +outrageously -1.2 1.32665 [-1, -1, -3, -3, -2, -1, 2, -1, -1, -1] +outrageousness -1.2 1.249 [-2, 0, 1, -2, -1, -1, -3, 0, -1, -3] +outrageousnesses -1.3 1.67631 [-1, -3, -2, 1, 0, 1, 0, -3, -2, -4] +outrages -2.3 1.00499 [-3, -2, -2, -1, -3, -3, -1, -4, -1, -3] +outraging -2.0 1.18322 [-4, -1, -2, -3, -1, 0, -1, -3, -3, -2] +outreach 1.1 0.7 [2, 1, 0, 0, 2, 1, 1, 1, 2, 1] +outstanding 3.0 0.89443 [3, 1, 3, 3, 4, 4, 2, 3, 4, 3] +overjoyed 2.7 0.78102 [4, 3, 3, 4, 2, 2, 2, 2, 3, 2] +overload -1.5 0.67082 [-2, 0, -1, -2, -2, -1, -1, -2, -2, -2] +overlooked -0.1 1.44568 [-1, -2, -1, -1, 2, 0, -1, 2, -1, 2] +overreact -1.0 1.73205 [-2, -2, -2, -2, 0, -3, 1, 3, -1, -2] +overreacted -1.7 0.64031 [-2, -2, -2, -1, -1, -1, -1, -3, -2, -2] +overreaction -0.7 1.34536 [-2, -1, 0, -1, -1, 3, -2, -1, -1, -1] +overreacts -2.2 0.87178 [-2, -2, -2, -3, -4, -1, -3, -1, -2, -2] +oversell -0.9 0.7 [0, -1, -1, 0, -2, -1, -1, -1, -2, 0] +overselling -0.8 1.16619 [0, -1, 0, -1, -2, -1, -1, -2, -2, 2] +oversells 0.3 1.26886 [-1, -1, 0, 0, 2, 2, 2, -1, 1, -1] +oversimplification 0.2 1.53623 [-1, 1, -1, -1, 1, -1, -2, 1, 2, 3] +oversimplifies 0.1 1.37477 [3, 0, 0, -1, 1, -1, 2, -1, -1, -1] +oversimplify -0.6 1.35647 [-3, -1, 0, -2, 0, 1, 2, -1, -1, -1] +overstatement -1.1 0.7 [-2, 0, -1, -2, -1, 0, -1, -1, -2, -1] +overstatements -0.7 1.34536 [-1, -1, -3, -1, 2, 0, -1, -1, -2, 1] +overweight -1.5 0.67082 [-3, -2, -1, -1, -1, -2, -1, -2, -1, -1] +overwhelm -0.7 1.26886 [-1, 2, -1, -1, -2, -2, 1, 0, -1, -2] +overwhelmed 0.2 1.53623 [-2, -1, 2, -2, 2, 1, -1, 2, 1, 0] +overwhelmingly -0.5 1.28452 [0, -2, -1, 0, -2, -1, -2, 0, 1, 2] +overwhelms -0.8 1.249 [-2, -2, -1, -1, -1, -2, 2, 1, -1, -1] +oxymoron -0.5 0.80623 [0, 0, -1, -1, -1, -2, 1, 0, 0, -1] +pain -2.3 0.64031 [-2, -3, -2, -2, -2, -2, -2, -2, -2, -4] +pained -1.8 0.6 [-1, -2, -3, -2, -2, -2, -2, -1, -1, -2] +painful -1.9 0.9434 [-2, -1, -1, -3, -4, -1, -1, -2, -2, -2] +painfuller -1.7 1.34536 [-2, -2, -2, 2, -1, -3, -2, -2, -3, -2] +painfully -2.4 0.4899 [-2, -3, -2, -3, -3, -2, -2, -2, -2, -3] +painfulness -2.7 0.64031 [-3, -4, -3, -2, -3, -3, -3, -2, -2, -2] +paining -1.7 0.45826 [-1, -2, -2, -2, -2, -2, -1, -2, -1, -2] +painless 1.2 0.87178 [1, 2, -1, 1, 2, 1, 2, 1, 2, 1] +painlessly 1.1 0.3 [1, 1, 1, 1, 1, 1, 1, 1, 1, 2] +painlessness 0.4 1.0198 [1, 1, 1, 1, -1, 1, -2, 0, 1, 1] +pains -1.8 0.6 [-2, -2, -1, -1, -1, -2, -2, -2, -3, -2] +palatable 1.6 0.8 [2, 1, 2, 1, 2, 1, 3, 0, 2, 2] +palatableness 0.8 0.87178 [2, 1, 1, 0, -1, 2, 0, 1, 1, 1] +palatably 1.1 0.83066 [2, 1, 2, 1, 1, 1, 2, -1, 1, 1] +panic -2.3 0.64031 [-3, -2, -1, -2, -2, -2, -3, -3, -2, -3] +panicked -2.0 1.61245 [-2, -4, -3, -3, -3, 1, -2, -2, 1, -3] +panicking -1.9 0.53852 [-2, -2, -3, -2, -2, -2, -2, -2, -1, -1] +panicky -1.5 0.67082 [-2, -2, -1, -1, -1, -1, -1, -2, -3, -1] +panicle 0.5 0.67082 [2, 0, 0, 0, 0, 0, 0, 1, 1, 1] +panicled 0.1 0.83066 [2, 0, 0, 0, 0, -1, 0, -1, 1, 0] +panicles -0.2 0.6 [1, 0, 0, 0, 0, -1, 0, -1, -1, 0] +panics -1.9 1.3 [-2, -3, -2, -3, -1, -2, 1, -4, -1, -2] +paniculate 0.1 0.3 [0, 0, 0, 1, 0, 0, 0, 0, 0, 0] +panicums -0.1 0.3 [0, 0, 0, 0, -1, 0, 0, 0, 0, 0] +paradise 3.2 0.9798 [4, 1, 4, 2, 4, 4, 3, 3, 3, 4] +paradox -0.4 0.66332 [-1, -1, 0, 0, -1, 0, -1, 0, 1, -1] +paranoia -1.0 1.48324 [1, -2, -2, -3, -1, 0, -2, -1, -2, 2] +paranoiac -1.3 1.61555 [-2, -3, -2, -2, 1, -3, 2, -2, 0, -2] +paranoiacs -0.7 1.18743 [-1, 0, -1, -1, -3, 1, -2, 0, 1, -1] +paranoias -1.5 1.0247 [-2, -3, -2, 0, -1, -3, 0, -1, -1, -2] +paranoid -1.0 1.41421 [0, -3, -3, -2, -1, -1, 0, 1, -2, 1] +paranoids -1.6 0.91652 [-2, -1, -1, -2, -2, -1, -1, -1, -4, -1] +pardon 1.3 0.45826 [1, 2, 1, 2, 1, 2, 1, 1, 1, 1] +pardoned 0.9 0.9434 [1, 1, 1, 1, 1, 1, 1, 0, 3, -1] +pardoning 1.7 0.78102 [3, 2, 2, 2, 1, 1, 2, 2, 0, 2] +pardons 1.2 0.6 [2, 1, 1, 1, 1, 2, 1, 2, 0, 1] +parley -0.4 0.66332 [0, -2, 0, 0, -1, -1, 0, 0, 0, 0] +partied 1.4 1.11355 [2, 3, 1, 1, 1, 2, 3, -1, 1, 1] +partier 1.4 0.8 [2, 2, 1, 1, 0, 2, 3, 1, 1, 1] +partiers 0.7 1.00499 [0, 0, 3, 0, 0, 0, 2, 1, 0, 1] +parties 1.7 0.78102 [2, 3, 1, 1, 1, 2, 3, 1, 2, 1] +party 1.7 0.78102 [3, 2, 2, 1, 3, 2, 1, 1, 1, 1] +partyer 1.2 1.07703 [1, 3, 1, 0, 1, 0, 2, 1, 3, 0] +partyers 1.1 0.83066 [1, 2, 0, 3, 1, 1, 1, 0, 1, 1] +partying 1.6 1.11355 [0, 3, 1, 0, 3, 2, 3, 1, 2, 1] +passion 2.0 0.44721 [2, 2, 1, 3, 2, 2, 2, 2, 2, 2] +passional 1.6 0.8 [2, 1, 3, 0, 2, 1, 1, 2, 2, 2] +passionate 2.4 1.35647 [0, 4, 3, 3, 4, 2, 0, 2, 3, 3] +passionately 2.4 0.91652 [3, 0, 3, 3, 2, 3, 2, 3, 2, 3] +passionateness 2.3 0.64031 [1, 3, 2, 3, 2, 3, 2, 3, 2, 2] +passionflower 0.3 0.45826 [0, 0, 0, 0, 1, 0, 1, 1, 0, 0] +passionflowers 0.4 0.66332 [0, 0, 0, 0, 2, 1, 1, 0, 0, 0] +passionless -1.9 0.7 [-3, -2, -2, -2, -1, -1, -1, -3, -2, -2] +passions 2.2 0.6 [3, 3, 3, 2, 2, 1, 2, 2, 2, 2] +passive 0.8 1.46969 [4, 1, 1, 0, -2, 0, 1, 1, 2, 0] +passively -0.7 0.64031 [0, -1, 0, 0, -1, -2, 0, -1, -1, -1] +pathetic -2.7 1.48661 [-3, -4, -3, -4, -2, 1, -2, -2, -4, -4] +pathetical -1.2 1.249 [-2, -1, -2, -1, -2, 1, -3, 1, -1, -2] +pathetically -1.8 1.72047 [-3, -4, -2, 0, -3, -2, -3, -3, 1, 1] +pay -0.4 0.91652 [0, 0, -3, 0, 0, 0, 0, 0, -1, 0] +peace 2.5 1.0247 [3, 2, 1, 4, 2, 3, 4, 1, 3, 2] +peaceable 1.7 0.45826 [2, 2, 1, 2, 1, 2, 2, 1, 2, 2] +peaceableness 1.8 1.16619 [2, 2, 4, 2, 2, 2, 2, 1, 2, -1] +peaceably 2.0 0.63246 [2, 3, 2, 2, 1, 2, 3, 1, 2, 2] +peaceful 2.2 0.74833 [4, 2, 1, 2, 2, 2, 3, 2, 2, 2] +peacefuller 1.9 0.7 [2, 2, 2, 1, 3, 3, 2, 2, 1, 1] +peacefullest 3.1 0.7 [3, 3, 2, 3, 4, 2, 4, 3, 4, 3] +peacefully 2.4 0.66332 [3, 2, 2, 2, 4, 2, 2, 3, 2, 2] +peacefulness 2.1 0.83066 [3, 2, 1, 2, 3, 1, 3, 3, 1, 2] +peacekeeper 1.6 1.11355 [1, 1, 0, 2, 1, 1, 4, 3, 2, 1] +peacekeepers 1.6 1.11355 [4, 1, 1, 2, 1, 1, 2, 3, 0, 1] +peacekeeping 2.0 0.63246 [2, 1, 1, 2, 3, 3, 2, 2, 2, 2] +peacekeepings 1.6 0.8 [0, 1, 1, 2, 2, 3, 2, 2, 2, 1] +peacemaker 2.0 0.89443 [2, 1, 2, 4, 2, 2, 1, 3, 1, 2] +peacemakers 2.4 1.0198 [0, 3, 4, 2, 3, 2, 3, 3, 2, 2] +peacemaking 1.7 0.78102 [1, 1, 1, 3, 3, 1, 2, 2, 2, 1] +peacenik 0.8 0.87178 [1, 1, 0, 1, 2, 0, 1, 1, -1, 2] +peaceniks 0.7 1.00499 [2, 0, 0, 1, 0, 2, 1, -1, 2, 0] +peaces 2.1 0.83066 [2, 2, 2, 2, 3, 0, 3, 3, 2, 2] +peacetime 2.2 1.16619 [3, 1, 4, 2, 4, 3, 1, 1, 2, 1] +peacetimes 2.1 0.83066 [3, 2, 2, 4, 1, 2, 2, 2, 1, 2] +peculiar 0.6 1.2 [-1, 0, -1, 1, 2, -1, 2, 1, 2, 1] +peculiarities 0.1 1.37477 [-1, -1, 0, -1, -1, 1, 3, 2, -1, 0] +peculiarity 0.6 1.2 [-1, 1, -1, 0, 2, -1, 1, 2, 2, 1] +peculiarly -0.4 1.2 [-1, 2, -2, -1, 0, 0, -2, 1, -1, 0] +penalty -2.0 0.63246 [-2, -3, -2, -2, -1, -2, -3, -2, -2, -1] +pensive 0.3 1.1 [1, 0, 0, 1, 0, -1, 3, 0, -1, 0] +perfect 2.7 0.78102 [2, 4, 2, 3, 4, 2, 3, 2, 3, 2] +perfecta 1.4 1.42829 [1, 0, 0, 3, 1, 0, 0, 4, 3, 2] +perfectas 0.6 1.11355 [0, 0, -1, 1, 0, 2, 3, 0, 1, 0] +perfected 2.7 0.78102 [1, 3, 3, 4, 2, 3, 3, 2, 3, 3] +perfecter 1.8 0.9798 [2, 1, 3, 1, 2, 1, 2, 4, 1, 1] +perfecters 1.4 1.11355 [2, 1, 3, 0, 0, 3, 2, 0, 1, 2] +perfectest 3.1 1.04403 [2, 4, 4, 4, 3, 2, 1, 3, 4, 4] +perfectibilities 2.1 1.04403 [3, 2, 2, 3, 4, 1, 2, 2, 0, 2] +perfectibility 1.8 1.249 [4, 3, 3, 0, 1, 0, 1, 2, 2, 2] +perfectible 1.5 0.67082 [1, 2, 1, 1, 2, 1, 1, 3, 2, 1] +perfecting 2.3 0.9 [1, 2, 3, 3, 1, 2, 2, 4, 2, 3] +perfection 2.7 1.1 [3, 3, 3, 1, 2, 4, 4, 1, 2, 4] +perfectionism 1.3 1.26886 [3, -1, 2, 1, 2, 2, 2, -1, 1, 2] +perfectionist 1.5 1.20416 [3, -1, 3, 1, 2, 2, 2, 0, 1, 2] +perfectionistic 0.7 1.67631 [-1, 0, 2, 0, 1, 0, 3, -1, 4, -1] +perfectionists 0.1 1.22066 [1, -1, 1, -1, 0, 0, -1, 0, 3, -1] +perfections 2.5 1.43178 [2, 4, 4, 3, 3, 4, -1, 2, 2, 2] +perfective 1.2 0.87178 [1, 0, 1, 1, 3, 2, 2, 0, 1, 1] +perfectively 2.1 1.13578 [3, 3, 1, 4, 0, 2, 1, 2, 2, 3] +perfectiveness 0.9 1.51327 [-2, 3, -1, 0, 2, 0, 2, 2, 2, 1] +perfectives 0.9 0.83066 [0, 2, 1, 1, 1, 0, 2, 0, 2, 0] +perfectivity 2.2 0.9798 [3, 2, 0, 3, 1, 2, 3, 3, 2, 3] +perfectly 3.2 0.4 [3, 4, 4, 3, 3, 3, 3, 3, 3, 3] +perfectness 3.0 0.63246 [4, 3, 3, 3, 3, 2, 4, 2, 3, 3] +perfecto 1.3 1.34536 [1, 0, 0, 2, 0, 0, 1, 4, 3, 2] +perfects 1.6 1.11355 [1, 1, 1, 2, 1, 0, 1, 4, 3, 2] +peril -1.7 1.67631 [-3, -2, -2, 3, -3, -2, -3, -2, -1, -2] +perjury -1.9 0.9434 [-3, -2, -3, -2, -2, 0, -1, -2, -3, -1] +perpetrator -2.2 0.74833 [-2, -3, -2, -2, -2, -2, -4, -2, -1, -2] +perpetrators -1.0 1.67332 [-1, -2, -2, -2, -2, 2, 0, -4, 1, 0] +perplexed -1.3 0.64031 [-1, -1, -2, -1, -1, -1, 0, -2, -2, -2] +persecute -2.1 1.37477 [-2, -3, -2, 1, -1, -4, -2, -2, -2, -4] +persecuted -1.3 1.61555 [-2, -1, -2, -1, -2, 2, -4, 1, -2, -2] +persecutes -1.2 1.4 [-2, -1, -2, 0, -2, 1, -3, 1, -1, -3] +persecuting -1.5 1.62788 [-3, -2, -2, 0, -4, -3, -2, -1, 1, 1] +perturbed -1.4 0.8 [-2, -1, -1, 0, -2, -2, -2, 0, -2, -2] +perverse -1.8 1.8868 [-2, -4, -3, 1, -2, -4, 1, 0, -1, -4] +perversely -2.2 0.87178 [-1, -2, -2, -2, -1, -3, -2, -3, -4, -2] +perverseness -2.1 1.22066 [-3, -3, 1, -2, -3, -2, -3, -2, -1, -3] +perversenesses -0.5 1.74642 [-2, 3, -1, -2, 1, 0, 1, 0, -2, -3] +perversion -1.3 1.34536 [-3, -2, -2, 1, 1, -3, -1, -2, -1, -1] +perversions -1.2 1.83303 [-2, 0, -4, -2, -3, -3, 0, 1, -1, 2] +perversities -1.1 1.22066 [-2, -1, -2, 0, -2, -2, -2, 1, 1, -2] +perversity -2.6 0.8 [-2, -3, -2, -2, -4, -3, -3, -1, -3, -3] +perversive -2.1 0.7 [-3, -1, -3, -2, -2, -2, -2, -1, -3, -2] +pervert -2.3 0.9 [-2, -2, -1, -3, -4, -2, -3, -1, -3, -2] +perverted -2.5 1.56525 [-2, -4, -2, -4, -3, -4, 1, -2, -1, -4] +pervertedly -1.2 1.77764 [-3, -2, -1, -2, 2, -3, 1, -3, 1, -2] +pervertedness -1.2 1.46969 [1, -2, -3, -2, 0, -2, -3, 1, 0, -2] +perverter -1.7 1.48661 [-3, -4, -2, -2, -1, -1, 2, -2, -2, -2] +perverters -0.6 1.68523 [-2, -2, -1, 0, -1, 2, -3, 1, 2, -2] +perverting -1.0 2.09762 [4, -2, -2, -4, -2, 1, 0, -1, -2, -2] +perverts -2.8 0.6 [-3, -3, -2, -3, -3, -2, -2, -4, -3, -3] +pesky -1.2 0.4 [-1, -2, -1, -1, -1, -1, -2, -1, -1, -1] +pessimism -1.5 1.36015 [-2, -3, 1, -2, -2, -1, 1, -3, -2, -2] +pessimisms -2.0 1.0 [-3, -1, -2, -2, -3, -1, 0, -2, -3, -3] +pessimist -1.5 1.36015 [-1, -3, 1, -2, -2, -2, 1, -3, -2, -2] +pessimistic -1.5 1.43178 [-3, -1, -1, 1, -3, -3, -2, -2, -2, 1] +pessimistically -2.0 1.0 [-1, -1, -3, -4, -2, -1, -1, -3, -2, -2] +pessimists -1.0 1.26491 [-1, 1, -1, 0, -2, -2, -2, -3, -1, 1] +petrifaction -1.9 1.3 [-3, -2, -1, -4, -3, 0, -1, 0, -2, -3] +petrifactions -0.3 1.00499 [0, -1, 0, 0, 0, 0, 0, 0, -3, 1] +petrification -0.1 1.44568 [-1, 2, -1, -1, 0, 2, 2, -2, -1, -1] +petrifications -0.4 0.8 [0, 0, -2, 0, 0, 0, 0, 0, -2, 0] +petrified -2.5 0.92195 [-4, -3, -2, -1, -2, -3, -2, -2, -2, -4] +petrifies -2.3 1.00499 [-4, -3, -2, -1, -2, -2, -1, -2, -2, -4] +petrify -1.7 0.9 [-2, -3, -1, -2, -1, -1, -2, -3, 0, -2] +petrifying -2.6 0.8 [-2, -3, -3, -2, -4, -2, -3, -1, -3, -3] +pettier -0.3 1.41774 [-1, -1, -1, -1, 2, 0, 2, -2, 1, -2] +pettiest -1.3 1.95192 [1, -3, -3, -3, -2, -1, 2, -1, 1, -4] +petty -0.8 1.32665 [1, -3, -2, -1, -1, -1, -1, -1, 2, -1] +phobia -1.6 1.0198 [-2, -2, 1, -2, -3, -1, -1, -2, -2, -2] +phobias -2.0 1.0 [-3, -2, -2, -3, -3, 0, -1, -2, -1, -3] +phobic -1.2 1.16619 [-2, -2, 1, -1, -2, -1, 1, -2, -2, -2] +phobics -1.3 0.64031 [-1, -1, -1, -2, -2, -1, 0, -2, -2, -1] +picturesque 1.6 1.11355 [4, 1, 1, 2, 1, 2, 1, 0, 3, 1] +pileup -1.1 1.13578 [-2, 1, 0, -1, 0, -1, -3, -2, -2, -1] +pique -1.1 1.13578 [-2, -2, -2, 0, 0, -1, 1, -1, -1, -3] +piqued 0.1 1.04403 [0, -2, 0, 1, 1, 1, -1, 1, -1, 1] +piss -1.7 0.9 [-2, -1, -1, -2, -1, -3, -3, 0, -2, -2] +pissant -1.5 1.5 [-1, -3, -3, 1, -3, -1, -1, -2, 1, -3] +pissants -2.5 0.80623 [-4, -3, -3, -2, -3, -1, -2, -3, -2, -2] +pissed -3.2 0.6 [-3, -3, -4, -3, -2, -4, -4, -3, -3, -3] +pisser -2.0 1.09545 [-2, -4, -1, -3, -2, -3, -1, -2, -2, 0] +pissers -1.4 2.00998 [-1, -1, -4, -2, -3, 4, -2, -1, -2, -2] +pisses -1.4 0.8 [-2, -2, -1, -3, -1, -1, -1, -2, -1, 0] +pissing -1.7 1.26886 [0, 0, -2, -2, -3, 0, -3, -1, -3, -3] +pissoir -0.8 1.4 [-2, 0, 0, -2, -1, -3, 0, -2, 0, 2] +piteous -1.2 1.46969 [-2, -1, -2, -2, -2, -1, 3, -1, -2, -2] +pitiable -1.1 1.22066 [-1, 0, -1, -1, 1, -2, -4, -1, -1, -1] +pitiableness -1.1 1.64012 [-2, -1, -1, -2, -4, 2, 1, 0, -2, -2] +pitiably -1.1 0.9434 [-1, 0, 0, -2, 0, -2, -3, -1, -1, -1] +pitied -1.3 1.1 [-2, -1, -3, -1, 1, 0, -2, -2, -1, -2] +pitier -1.2 1.32665 [-3, -1, -2, -3, -1, -1, 1, 1, -2, -1] +pitiers -1.3 0.9 [0, -1, -2, -2, -1, -1, -1, -3, -2, 0] +pities -1.2 1.249 [-2, -1, -2, -3, -1, -1, 1, 1, -2, -2] +pitiful -2.2 0.9798 [-3, -2, -1, -3, -2, -2, -3, -3, -3, 0] +pitifuller -1.8 1.07703 [-1, -1, -2, -3, -4, 0, -2, -2, -1, -2] +pitifullest -1.1 2.11896 [-2, 1, -1, -4, -4, -1, -3, -1, 2, 2] +pitifully -1.2 1.249 [-2, -1, -3, -2, -1, -1, -2, -1, 2, -1] +pitifulness -1.2 1.77764 [-3, -2, -1, -3, -2, -1, 3, 1, -2, -2] +pitiless -1.8 0.87178 [-2, 0, -2, -2, -2, -3, -1, -3, -1, -2] +pitilessly -2.1 0.7 [-2, -2, -1, -3, -3, -1, -3, -2, -2, -2] +pitilessness -0.5 1.62788 [1, 3, 1, -3, -2, -1, -1, -1, -1, -1] +pity -1.2 0.4 [-2, -2, -1, -1, -1, -1, -1, -1, -1, -1] +pitying -1.4 0.91652 [-1, -3, -1, -3, -2, -1, 0, -1, -1, -1] +pityingly -1.0 1.26491 [-2, -2, -1, -2, -2, 0, 0, -1, 2, -2] +pityriasis -0.8 0.87178 [-2, 0, 0, 0, -1, 0, -2, -1, -2, 0] +play 1.4 1.0198 [2, 0, 1, 1, 1, 2, 1, 4, 1, 1] +played 1.4 1.42829 [2, 1, 1, 1, 4, 0, 1, 0, 4, 0] +playful 1.9 0.83066 [4, 2, 2, 2, 1, 1, 1, 2, 2, 2] +playfully 1.6 0.4899 [2, 1, 1, 2, 1, 2, 2, 2, 1, 2] +playfulness 1.2 0.87178 [2, 1, 2, -1, 1, 2, 1, 2, 1, 1] +playing 0.8 0.87178 [0, 2, 2, 1, 0, 0, 2, 0, 0, 1] +plays 1.0 1.09545 [0, 2, 0, 2, 0, 1, 0, 2, 3, 0] +pleasant 2.3 0.64031 [2, 3, 3, 3, 2, 1, 2, 2, 3, 2] +pleasanter 1.5 0.67082 [2, 2, 2, 1, 0, 1, 1, 2, 2, 2] +pleasantest 2.6 0.8 [3, 3, 3, 1, 2, 4, 3, 2, 2, 3] +pleasantly 2.1 0.53852 [1, 2, 3, 2, 2, 2, 2, 2, 3, 2] +pleasantness 2.3 0.9 [3, 2, 3, 3, 3, 1, 1, 3, 1, 3] +pleasantnesses 2.3 0.78102 [3, 1, 2, 3, 1, 2, 3, 3, 2, 3] +pleasantries 1.3 0.45826 [1, 1, 1, 1, 1, 2, 1, 2, 2, 1] +pleasantry 2.0 0.7746 [2, 2, 1, 1, 4, 2, 2, 2, 2, 2] +please 1.3 0.78102 [2, 1, 2, 2, 2, 0, 2, 1, 0, 1] +pleased 1.9 0.53852 [2, 2, 2, 2, 1, 1, 2, 3, 2, 2] +pleaser 1.7 0.45826 [2, 2, 2, 2, 1, 1, 1, 2, 2, 2] +pleasers 1.0 1.0 [1, 1, 2, 0, 1, 3, 1, 1, -1, 1] +pleases 1.7 0.45826 [2, 1, 2, 2, 1, 1, 2, 2, 2, 2] +pleasing 2.4 0.91652 [2, 3, 2, 2, 2, 2, 4, 4, 1, 2] +pleasurability 1.9 0.83066 [1, 2, 2, 2, 2, 0, 2, 3, 3, 2] +pleasurable 2.4 0.4899 [2, 3, 3, 2, 3, 3, 2, 2, 2, 2] +pleasurableness 2.4 0.91652 [2, 3, 2, 1, 2, 3, 4, 3, 1, 3] +pleasurably 2.6 0.4899 [2, 2, 2, 3, 3, 3, 3, 2, 3, 3] +pleasure 2.7 0.9 [4, 4, 3, 2, 2, 3, 2, 1, 3, 3] +pleasured 2.3 0.64031 [3, 2, 3, 2, 3, 3, 1, 2, 2, 2] +pleasureless -1.6 0.8 [-1, -1, -1, -1, -2, -3, -3, -2, -1, -1] +pleasures 1.9 1.37477 [3, -2, 3, 2, 3, 2, 2, 2, 2, 2] +pleasuring 2.8 0.4 [3, 2, 3, 3, 3, 3, 3, 2, 3, 3] +poised 1.0 0.44721 [1, 1, 1, 1, 1, 1, 0, 1, 1, 2] +poison -2.5 0.92195 [-4, -3, -2, -4, -2, -2, -2, -3, -1, -2] +poisoned -2.2 0.9798 [-4, -1, -4, -1, -2, -2, -2, -2, -2, -2] +poisoner -2.7 0.78102 [-2, -3, -3, -4, -4, -2, -2, -2, -2, -3] +poisoners -3.1 0.83066 [-3, -4, -3, -4, -3, -4, -3, -3, -1, -3] +poisoning -2.8 1.249 [-4, -4, -2, 0, -2, -3, -4, -3, -2, -4] +poisonings -2.4 1.11355 [-2, 0, -2, -1, -4, -3, -3, -3, -3, -3] +poisonous -2.7 0.78102 [-3, -3, -4, -2, -1, -3, -3, -3, -3, -2] +poisonously -2.9 0.53852 [-3, -2, -3, -3, -2, -3, -3, -4, -3, -3] +poisons -2.7 0.9 [-3, -4, -3, -1, -2, -3, -3, -2, -2, -4] +poisonwood -1.0 0.89443 [0, -2, 0, 0, 0, -1, -2, -2, -2, -1] +pollute -2.3 0.64031 [-3, -2, -2, -2, -2, -3, -3, -1, -3, -2] +polluted -2.0 0.44721 [-2, -2, -1, -2, -2, -2, -2, -2, -3, -2] +polluter -1.8 0.6 [-2, -1, -2, -1, -2, -2, -3, -1, -2, -2] +polluters -2.0 0.44721 [-2, -2, -2, -2, -2, -3, -2, -1, -2, -2] +pollutes -2.2 0.87178 [-2, -1, -2, -1, -3, -1, -3, -3, -3, -3] +poor -2.1 1.13578 [-2, -2, -1, -4, -2, 0, -2, -4, -2, -2] +poorer -1.5 1.56525 [-2, -3, -2, -2, -2, -2, 3, -2, -1, -2] +poorest -2.5 0.80623 [-2, -3, -3, -1, -2, -3, -3, -4, -2, -2] +popular 1.8 0.74833 [2, 3, 1, 2, 2, 1, 3, 1, 2, 1] +popularise 1.6 0.66332 [1, 1, 2, 2, 3, 2, 1, 2, 1, 1] +popularised 1.1 0.9434 [1, 1, 0, 0, 3, 2, 1, 2, 1, 0] +popularises 0.5 0.67082 [1, 0, 0, 0, 0, 1, 1, 2, 0, 0] +popularising 1.2 0.6 [1, 0, 2, 2, 1, 1, 1, 2, 1, 1] +popularities 1.6 0.8 [2, 1, 1, 2, 0, 2, 1, 2, 3, 2] +popularity 2.1 1.04403 [2, 1, 1, 1, 3, 2, 3, 4, 3, 1] +popularization 1.3 0.78102 [1, 2, 1, 2, 1, 0, 1, 1, 3, 1] +popularizations 0.9 0.7 [1, 1, 1, 0, 2, 0, 1, 1, 2, 0] +popularize 1.3 0.64031 [2, 2, 0, 2, 1, 1, 1, 1, 2, 1] +popularized 1.9 0.83066 [3, 2, 3, 2, 1, 0, 2, 2, 2, 2] +popularizer 1.8 0.74833 [2, 2, 3, 2, 1, 0, 2, 2, 2, 2] +popularizers 1.0 0.89443 [0, 0, 1, 2, 1, 1, 1, 1, 3, 0] +popularizes 1.4 0.8 [2, 1, 3, 2, 1, 0, 1, 2, 1, 1] +popularizing 1.5 0.67082 [2, 2, 1, 1, 1, 2, 2, 0, 2, 2] +popularly 1.8 0.74833 [1, 3, 2, 1, 3, 1, 2, 1, 2, 2] +positive 2.6 0.91652 [2, 1, 2, 2, 3, 3, 4, 3, 4, 2] +positively 2.4 0.66332 [2, 2, 3, 3, 4, 2, 2, 2, 2, 2] +positiveness 2.3 1.18743 [2, 1, 4, 3, 4, 2, 0, 3, 2, 2] +positivenesses 2.2 0.74833 [3, 3, 2, 2, 2, 2, 1, 3, 1, 3] +positiver 2.3 0.78102 [1, 4, 2, 2, 2, 3, 2, 2, 2, 3] +positives 2.4 0.4899 [3, 3, 2, 2, 2, 2, 3, 2, 3, 2] +positivest 2.9 1.04403 [4, 3, 2, 1, 3, 4, 4, 4, 2, 2] +positivism 1.6 1.35647 [3, 0, 2, 1, 2, 0, 3, 4, 1, 0] +positivisms 1.8 0.9798 [4, 1, 2, 2, 2, 0, 2, 2, 1, 2] +positivist 2.0 1.0 [3, 1, 2, 2, 2, 0, 2, 4, 2, 2] +positivistic 1.9 0.83066 [2, 3, 1, 3, 1, 1, 3, 2, 1, 2] +positivists 1.7 1.1 [1, 2, 1, 4, 2, 1, 3, 0, 1, 2] +positivities 2.6 0.91652 [2, 2, 4, 3, 2, 3, 4, 3, 1, 2] +positivity 2.3 0.9 [2, 2, 2, 3, 3, 3, 3, 0, 3, 2] +possessive -0.9 1.22066 [-1, -1, -2, -2, 0, -1, 0, -2, 2, -2] +postpone -0.9 0.83066 [1, -1, -2, -1, -1, -2, -1, -1, 0, -1] +postponed -0.8 0.4 [-1, -1, 0, 0, -1, -1, -1, -1, -1, -1] +postpones -1.1 0.83066 [-1, -1, -1, 0, -1, 0, -2, -1, -3, -1] +postponing -0.5 0.5 [0, -1, 0, -1, 0, 0, 0, -1, -1, -1] +poverty -2.3 1.00499 [-2, -4, -2, -4, -3, -1, -2, -2, -1, -2] +powerful 1.8 0.9798 [4, 0, 2, 1, 2, 2, 2, 2, 1, 2] +powerless -2.2 0.6 [-2, -3, -2, -2, -3, -2, -3, -2, -1, -2] +praise 2.6 0.8 [2, 4, 3, 3, 2, 1, 3, 3, 2, 3] +praised 2.2 0.6 [3, 2, 2, 2, 2, 3, 1, 3, 2, 2] +praiser 2.0 0.89443 [3, 1, 3, 1, 1, 2, 1, 3, 2, 3] +praisers 2.0 0.63246 [2, 2, 1, 3, 3, 2, 1, 2, 2, 2] +praises 2.4 0.4899 [3, 2, 2, 3, 2, 3, 2, 3, 2, 2] +praiseworthily 1.9 0.7 [2, 1, 1, 3, 2, 2, 2, 3, 1, 2] +praiseworthiness 2.4 0.8 [1, 3, 2, 4, 2, 2, 3, 2, 3, 2] +praiseworthy 2.6 0.4899 [3, 3, 3, 3, 2, 2, 3, 2, 3, 2] +praising 2.5 0.67082 [2, 3, 3, 2, 2, 3, 3, 3, 1, 3] +pray 1.3 1.18743 [0, 3, 2, 1, 1, 1, -1, 3, 1, 2] +praying 1.5 0.92195 [2, 2, 0, 3, 1, 3, 1, 1, 1, 1] +prays 1.4 1.0198 [2, 0, 2, 0, 1, 1, 3, 1, 3, 1] +prblm -1.6 0.8 [-1, -1, -1, -1, -1, -3, -3, -2, -2, -1] +prblms -2.3 1.00499 [-2, -2, -2, -2, -4, -4, -3, -1, -2, -1] +precious 2.7 0.64031 [3, 3, 3, 3, 3, 1, 3, 3, 2, 3] +preciously 2.2 0.74833 [3, 3, 3, 2, 2, 1, 1, 3, 2, 2] +preciousness 1.9 0.83066 [2, 4, 2, 2, 2, 1, 1, 1, 2, 2] +prejudice -2.3 0.78102 [-2, -1, -2, -2, -3, -2, -2, -3, -4, -2] +prejudiced -1.9 0.53852 [-2, -3, -1, -2, -1, -2, -2, -2, -2, -2] +prejudices -1.8 0.74833 [-2, -3, -1, -2, -1, -3, -2, -1, -1, -2] +prejudicial -2.6 0.8 [-3, -3, -2, -2, -3, -4, -2, -1, -3, -3] +prejudicially -1.5 1.74642 [-3, -1, -1, -3, -3, -1, -3, 1, 2, -3] +prejudicialness -2.4 1.42829 [-2, -3, 1, -3, -2, -4, -4, -3, -1, -3] +prejudicing -1.8 1.07703 [-2, -2, -2, -3, -2, -1, 1, -3, -2, -2] +prepared 0.9 0.3 [1, 1, 1, 1, 1, 0, 1, 1, 1, 1] +pressure -1.2 0.6 [-1, -1, -1, -1, -2, -2, -1, -2, 0, -1] +pressured -0.9 1.04403 [-2, -1, -2, -1, 2, -1, -1, -1, -1, -1] +pressureless 1.0 1.26491 [2, 0, 1, -1, -1, 2, 1, 2, 1, 3] +pressures -1.3 0.64031 [-2, -1, -1, -1, -3, -1, -1, -1, -1, -1] +pressuring -1.4 0.91652 [-3, -1, -1, -1, -1, -1, -1, -3, -2, 0] +pressurise -0.6 1.0198 [0, -2, 0, 1, 0, -2, 0, -2, 0, -1] +pressurised -0.4 0.66332 [0, 0, 0, -1, 0, -1, 0, -2, 0, 0] +pressurises -0.8 0.6 [-1, -1, -1, 0, -1, -1, 0, -1, 0, -2] +pressurising -0.6 1.28062 [-1, 0, 0, 2, -1, -1, -3, 0, -2, 0] +pressurizations -0.3 1.00499 [0, 0, 1, -2, 0, 0, -1, -2, 0, 1] +pressurize -0.7 1.34536 [0, -2, -2, 0, 0, -1, -3, 2, -1, 0] +pressurized 0.1 0.83066 [0, 0, 0, 2, 0, 0, -1, -1, 0, 1] +pressurizer 0.1 0.83066 [0, 0, 0, 1, 0, 0, -1, -1, 0, 2] +pressurizers -0.7 0.9 [-1, 0, -2, -1, -2, -1, 0, 0, 1, -1] +pressurizes -0.2 0.87178 [0, 0, -1, 1, 0, 0, -1, -2, 0, 1] +pressurizing -0.2 0.9798 [1, 0, -1, -1, -1, 0, -1, 2, 0, -1] +pretend -0.4 0.91652 [0, 1, -1, -1, -2, 0, -1, -1, 1, 0] +pretending 0.4 1.49666 [2, 0, -1, -1, 0, 3, -2, 1, 0, 2] +pretends -0.4 0.66332 [0, -1, 0, -1, 1, 0, 0, -1, -1, -1] +prettied 1.6 0.66332 [2, 1, 1, 1, 1, 2, 3, 2, 1, 2] +prettier 2.1 0.53852 [2, 2, 2, 2, 2, 2, 3, 1, 2, 3] +pretties 1.7 0.78102 [2, 1, 1, 2, 1, 2, 3, 1, 1, 3] +prettiest 2.7 0.78102 [4, 3, 4, 2, 2, 2, 3, 2, 2, 3] +pretty 2.2 0.6 [3, 2, 2, 2, 3, 1, 2, 2, 2, 3] +prevent 0.1 1.22066 [-2, 1, 0, 0, -1, 2, -1, 2, 0, 0] +prevented 0.1 0.7 [0, -1, 0, 2, 0, 0, 0, 0, 0, 0] +preventing -0.1 1.51327 [-2, 0, -2, 3, 0, 0, -1, -1, 2, 0] +prevents 0.3 1.34536 [0, -2, 0, 0, 0, 2, 0, -1, 3, 1] +prick -1.4 1.42829 [-2, -2, -2, -1, 1, -1, -4, -2, 1, -2] +pricked -0.6 1.0198 [-1, -1, -2, 1, 0, -1, -2, -1, 1, 0] +pricker -0.3 0.9 [-1, -1, 0, 2, 0, -1, -1, -1, 0, 0] +prickers -0.2 0.87178 [1, -1, -1, 0, 1, -1, 0, 1, -1, -1] +pricket -0.5 0.67082 [0, -1, -1, -2, 0, 0, 0, 0, -1, 0] +prickets 0.3 0.64031 [0, 2, 0, 0, 0, 1, 0, 0, 0, 0] +pricking -0.9 1.22066 [-2, -1, -2, 2, -2, -2, -1, 0, -1, 0] +prickle -1.0 0.44721 [-1, -1, -1, -1, -1, -1, -2, 0, -1, -1] +prickled -0.2 1.53623 [-1, -1, 3, -1, -2, 2, 0, 0, 0, -2] +prickles -0.8 0.74833 [0, -1, -1, -1, -2, -1, 0, 0, 0, -2] +pricklier -1.6 0.8 [-1, -2, -2, -2, -2, -1, -2, -1, 0, -3] +prickliest -1.4 1.35647 [-4, -2, -1, 0, -3, -1, -1, 1, -2, -1] +prickliness -0.6 0.91652 [-2, -1, -1, -1, -1, 1, -1, 1, 0, -1] +prickling -0.8 0.6 [-2, -1, 0, -1, 0, 0, -1, -1, -1, -1] +prickly -0.9 1.04403 [-2, -1, -1, -2, -1, 1, -2, -1, 1, -1] +pricks -0.9 1.04403 [-2, 0, -1, -3, -1, 1, 0, -1, -1, -1] +pricky -0.6 1.2 [-2, 1, -1, -2, -1, 2, 0, -1, -1, -1] +pride 1.4 1.11355 [0, 2, 2, 2, 3, 1, -1, 2, 2, 1] +prison -2.3 0.64031 [-3, -3, -2, -2, -1, -2, -3, -3, -2, -2] +prisoner -2.5 1.0247 [-3, -1, -4, -4, -3, -2, -3, -2, -1, -2] +prisoners -2.3 0.78102 [-3, -2, -3, -3, -1, -3, -2, -1, -2, -3] +privilege 1.5 0.80623 [2, 1, 0, 1, 3, 1, 2, 2, 2, 1] +privileged 1.9 0.9434 [2, 3, 3, 2, 3, 1, 1, 2, 0, 2] +privileges 1.6 1.2 [2, 1, 3, 1, 2, 2, 0, 0, 4, 1] +privileging 0.7 1.1 [1, 1, 2, 2, -1, 2, 1, 0, 0, -1] +prize 2.3 1.1 [2, 2, 0, 4, 4, 3, 2, 2, 2, 2] +prized 2.4 0.8 [3, 3, 3, 2, 3, 2, 1, 3, 1, 3] +prizefight -0.1 1.13578 [-2, 2, 0, 0, 0, -2, 0, 1, 0, 0] +prizefighter 1.0 1.0 [0, 2, 0, 0, 0, 2, 0, 2, 2, 2] +prizefighters -0.1 1.04403 [0, 0, -3, 0, 0, 0, 0, 1, 1, 0] +prizefighting 0.4 0.91652 [0, 0, 0, 1, 0, 3, 0, 0, 0, 0] +prizefights 0.3 0.78102 [1, 2, 0, 0, -1, 0, 0, 1, 0, 0] +prizer 1.0 1.0 [0, 3, 0, 0, 2, 1, 2, 1, 0, 1] +prizers 0.8 0.9798 [2, 0, 0, 1, 3, 1, 0, 1, 0, 0] +prizes 2.0 1.09545 [3, 3, 2, 0, 2, 1, 2, 4, 1, 2] +prizewinner 2.3 1.00499 [3, 0, 3, 3, 2, 2, 2, 4, 2, 2] +prizewinners 2.4 1.11355 [4, 2, 2, 2, 0, 4, 2, 3, 3, 2] +prizewinning 3.0 0.7746 [3, 3, 3, 3, 3, 4, 3, 1, 3, 4] +proactive 1.8 0.87178 [2, 3, 3, 1, 1, 1, 1, 3, 1, 2] +problem -1.7 0.64031 [-2, -2, -1, -1, -1, -3, -1, -2, -2, -2] +problematic -1.9 0.53852 [-1, -2, -2, -2, -2, -3, -2, -1, -2, -2] +problematical -1.8 0.6 [-3, -1, -1, -2, -2, -2, -2, -2, -1, -2] +problematically -2.0 1.0 [-2, -1, -3, -1, -1, -2, -4, -3, -1, -2] +problematics -1.3 1.1 [0, -1, -1, 0, -2, -1, -4, -1, -2, -1] +problems -1.7 0.78102 [-2, -1, -1, -3, -2, -1, -3, -1, -1, -2] +profit 1.9 0.7 [2, 3, 2, 1, 2, 1, 3, 1, 2, 2] +profitabilities 1.1 0.7 [1, 1, 3, 1, 1, 1, 1, 0, 1, 1] +profitability 1.1 1.44568 [1, 1, -2, 2, 0, 3, 1, 3, 2, 0] +profitable 1.9 0.9434 [2, 3, 0, 3, 1, 2, 1, 3, 2, 2] +profitableness 2.4 1.11355 [1, 4, 2, 4, 2, 2, 4, 2, 1, 2] +profitably 1.6 0.91652 [1, 2, 0, 3, 1, 3, 1, 1, 2, 2] +profited 1.3 1.00499 [2, 2, 2, 1, 0, 0, 1, 3, 0, 2] +profiteer 0.8 1.6 [2, -2, -1, 3, -1, 2, 1, 2, 0, 2] +profiteered -0.5 1.9105 [0, 0, 2, -2, -3, -2, 3, 0, -3, 0] +profiteering -0.6 2.05913 [-1, 2, -2, -4, -2, 2, 1, -2, 2, -2] +profiteers 0.5 1.5 [-2, 1, -1, -1, 1, -1, 2, 2, 2, 2] +profiter 0.7 1.55242 [2, 2, 2, 1, -1, 1, -1, 3, 0, -2] +profiterole 0.4 0.66332 [0, 0, 0, 0, 0, 1, 0, 1, 2, 0] +profiteroles 0.5 0.92195 [0, 0, -1, 2, 2, 0, 0, 1, 0, 1] +profiting 1.6 0.91652 [1, 0, 3, 2, 1, 2, 3, 1, 1, 2] +profitless -1.5 0.92195 [-2, -2, -3, -1, -1, -1, 0, -1, -1, -3] +profits 1.9 1.04403 [2, 2, 1, 0, 2, 1, 2, 4, 3, 2] +profitwise 0.9 0.83066 [1, 2, 0, 0, 1, 2, 2, 0, 1, 0] +progress 1.8 0.74833 [3, 2, 1, 2, 3, 1, 1, 2, 2, 1] +prominent 1.3 0.45826 [2, 1, 1, 2, 1, 1, 1, 2, 1, 1] +promiscuities -0.8 1.32665 [-1, 0, -2, -2, -1, 2, -3, -1, 0, 0] +promiscuity -1.8 1.07703 [-1, -2, -4, -2, -3, -1, 0, -2, -1, -2] +promiscuous -0.3 1.34536 [2, -3, -1, -1, 0, -1, 0, -1, 1, 1] +promiscuously -1.5 1.28452 [-2, -1, -3, 2, -2, -2, -1, -2, -2, -2] +promiscuousness -0.9 1.37477 [-3, -1, 1, -2, -2, 1, 1, -1, -2, -1] +promise 1.3 0.64031 [1, 0, 1, 1, 2, 2, 1, 1, 2, 2] +promised 1.5 0.92195 [2, 1, 1, 0, 0, 2, 2, 3, 2, 2] +promisee 0.8 0.87178 [2, 1, 0, 0, 0, 2, 0, 2, 1, 0] +promisees 1.1 0.9434 [2, 0, 1, 0, 0, 0, 2, 2, 2, 2] +promiser 1.3 0.9 [2, 1, 1, 0, 0, 2, 2, 3, 1, 1] +promisers 1.6 0.4899 [2, 1, 2, 1, 2, 1, 2, 1, 2, 2] +promises 1.6 0.8 [2, 1, 1, 0, 2, 1, 3, 2, 2, 2] +promising 1.7 0.45826 [1, 2, 2, 1, 2, 2, 1, 2, 2, 2] +promisingly 1.2 0.6 [2, 2, 1, 1, 1, 2, 1, 0, 1, 1] +promisor 1.0 0.63246 [2, 2, 0, 1, 1, 1, 0, 1, 1, 1] +promisors 0.4 0.8 [0, 0, 0, 2, 0, 2, 0, 0, 0, 0] +promissory 0.9 1.13578 [2, 0, 0, 3, 0, 2, 2, 0, 0, 0] +promote 1.6 0.8 [2, 1, 2, 3, 0, 1, 2, 2, 1, 2] +promoted 1.8 0.74833 [2, 2, 1, 1, 1, 2, 2, 1, 3, 3] +promotes 1.4 0.91652 [1, 2, 0, 0, 1, 2, 2, 1, 3, 2] +promoting 1.5 0.67082 [1, 2, 2, 1, 2, 1, 2, 0, 2, 2] +propaganda -1.0 1.54919 [-2, -3, -2, -3, -2, 1, -1, 1, 0, 1] +prosecute -1.7 1.00499 [-2, -2, -2, -1, -1, -2, 0, -1, -4, -2] +prosecuted -1.6 1.95959 [-2, -2, -2, -3, -3, -3, -4, 2, 2, -1] +prosecutes -1.8 1.53623 [-2, -2, -2, -3, -2, -2, -4, 1, 1, -3] +prosecution -2.2 1.07703 [-4, -1, -2, -2, -3, -2, -1, -4, -1, -2] +prospect 1.2 0.87178 [1, 3, 1, 0, 2, 2, 1, 0, 1, 1] +prospects 1.2 0.6 [2, 1, 1, 1, 1, 0, 1, 2, 2, 1] +prosperous 2.1 1.86815 [-3, 3, 3, 2, 4, 2, 3, 3, 3, 1] +protect 1.6 0.8 [1, 3, 1, 1, 1, 1, 3, 2, 1, 2] +protected 1.9 0.7 [1, 1, 2, 3, 2, 2, 2, 1, 3, 2] +protects 1.3 0.78102 [2, 2, 0, 2, 1, 1, 0, 2, 2, 1] +protest -1.0 1.34164 [-2, -1, -1, -2, -1, -2, 1, -2, 2, -2] +protested -0.5 1.62788 [-2, -3, -1, -1, 0, 2, 2, -2, 1, -1] +protesters -0.9 0.7 [0, 0, 0, -1, -2, -2, -1, -1, -1, -1] +protesting -1.8 0.74833 [-2, -2, -1, -2, -1, -1, -2, -1, -3, -3] +protests -0.9 1.57797 [-2, -2, 2, 0, -1, -2, -2, -2, 2, -2] +proud 2.1 0.3 [2, 3, 2, 2, 2, 2, 2, 2, 2, 2] +prouder 2.2 1.16619 [2, 3, 3, 4, 0, 1, 1, 3, 2, 3] +proudest 2.6 0.66332 [4, 2, 2, 2, 2, 3, 2, 3, 3, 3] +proudful 1.9 1.51327 [3, 3, 0, 1, -1, 1, 4, 3, 2, 3] +proudhearted 1.4 0.91652 [2, -1, 1, 2, 2, 1, 2, 2, 2, 1] +proudly 2.6 0.4899 [2, 2, 3, 3, 2, 3, 3, 3, 2, 3] +provoke -1.7 0.64031 [-2, -2, -1, -1, -1, -2, -2, -1, -3, -2] +provoked -1.1 0.83066 [-1, -1, 0, -2, -2, -2, -2, 0, 0, -1] +provokes -1.3 0.78102 [-2, -2, -1, -2, -1, -2, -2, 0, 0, -1] +provoking -0.8 1.249 [-2, -2, -1, -2, 1, -1, 1, 1, -1, -2] +pseudoscience -1.2 1.32665 [-1, -1, -3, -4, 0, 0, -2, 0, 0, -1] +puke -2.4 1.0198 [-1, -3, -3, -2, -4, -4, -2, -1, -2, -2] +puked -1.8 0.6 [-1, -2, -2, -3, -1, -1, -2, -2, -2, -2] +pukes -1.9 0.7 [-1, -2, -3, -3, -1, -1, -2, -2, -2, -2] +puking -1.8 1.46969 [0, -2, -4, -3, -2, -3, 1, -1, -1, -3] +pukka 2.8 0.4 [3, 2, 3, 3, 3, 2, 3, 3, 3, 3] +punish -2.4 0.91652 [-1, -3, -3, -4, -3, -1, -2, -2, -2, -3] +punishabilities -1.7 0.78102 [0, -2, -3, -2, -1, -2, -2, -1, -2, -2] +punishability -1.6 1.49666 [-2, -2, -1, -1, -2, -2, -3, 2, -4, -1] +punishable -1.9 0.7 [-3, -1, -1, -2, -2, -1, -3, -2, -2, -2] +punished -2.0 0.44721 [-2, -2, -1, -2, -2, -2, -2, -2, -3, -2] +punisher -1.9 0.53852 [-3, -1, -2, -2, -2, -2, -2, -1, -2, -2] +punishers -2.6 0.8 [-3, -3, -3, -3, -2, -2, -4, -2, -1, -3] +punishes -2.1 0.7 [-3, -2, -3, -2, -1, -2, -2, -3, -1, -2] +punishing -2.6 0.8 [-2, -3, -3, -3, -4, -1, -3, -2, -2, -3] +punishment -2.2 0.6 [-2, -1, -2, -2, -3, -3, -2, -2, -2, -3] +punishments -1.8 0.6 [-2, -2, -2, -1, -1, -2, -2, -3, -1, -2] +punitive -2.3 0.78102 [-4, -2, -3, -1, -2, -2, -2, -2, -3, -2] +pushy -1.1 0.83066 [-2, -2, -1, -1, -1, 1, -1, -2, -1, -1] +puzzled -0.7 0.45826 [0, 0, -1, -1, 0, -1, -1, -1, -1, -1] +quaking -1.5 0.67082 [-1, -2, -2, -2, -1, 0, -2, -1, -2, -2] +questionable -1.2 0.4 [-1, -1, -1, -1, -1, -1, -1, -2, -2, -1] +questioned -0.4 1.0198 [-2, 0, 0, -1, -1, 2, 0, 0, -1, -1] +questioning -0.4 0.66332 [0, -1, -1, 0, 0, 0, -2, 0, 0, 0] +racism -3.1 0.9434 [-4, -4, -4, -2, -3, -4, -2, -2, -2, -4] +racist -3.0 0.89443 [-1, -3, -3, -4, -3, -4, -4, -2, -3, -3] +racists -2.5 0.92195 [-3, 0, -3, -2, -2, -3, -3, -3, -3, -3] +radian 0.4 0.66332 [0, 0, 0, 0, 0, 0, 1, 2, 0, 1] +radiance 1.4 1.11355 [3, 1, 2, 3, 1, 1, -1, 1, 2, 1] +radiances 1.1 0.53852 [1, 2, 2, 1, 1, 1, 0, 1, 1, 1] +radiancies 0.8 1.16619 [-1, 0, 3, 1, 1, 1, 1, 2, -1, 1] +radiancy 1.4 0.66332 [2, 1, 1, 3, 1, 1, 1, 1, 2, 1] +radians 0.2 0.6 [0, 2, 0, 0, 0, 0, 0, 0, 0, 0] +radiant 2.1 0.83066 [4, 2, 2, 2, 2, 1, 1, 3, 2, 2] +radiantly 1.3 0.78102 [3, 2, 1, 1, 1, 1, 1, 0, 1, 2] +radiants 1.2 0.6 [2, 1, 0, 2, 1, 1, 1, 2, 1, 1] +rage -2.6 0.8 [-3, -2, -2, -3, -3, -4, -1, -2, -3, -3] +raged -2.0 0.63246 [-2, -1, -1, -3, -3, -2, -2, -2, -2, -2] +ragee -0.4 1.42829 [-2, -1, 0, 3, 0, -2, -2, 0, 0, 0] +rageful -2.8 0.6 [-3, -3, -3, -3, -2, -4, -2, -3, -2, -3] +rages -2.1 0.7 [-3, -1, -1, -3, -3, -2, -2, -2, -2, -2] +raging -2.4 1.0198 [-1, -3, -3, -1, -3, -3, -1, -4, -2, -3] +rainy -0.3 0.64031 [-1, 0, 1, 0, 0, 0, -1, 0, -1, -1] +rancid -2.5 1.11803 [-3, -3, -3, -2, -3, 0, -3, -1, -4, -3] +rancidity -2.6 0.8 [-4, -3, -3, -2, -2, -2, -2, -2, -2, -4] +rancidly -2.5 1.20416 [-2, -1, -4, -3, -4, -1, -2, -3, -4, -1] +rancidness -2.6 0.91652 [-3, -4, -2, -3, -4, -2, -3, -1, -2, -2] +rancidnesses -1.6 0.4899 [-2, -1, -2, -1, -1, -2, -2, -2, -1, -2] +rant -1.4 0.66332 [-1, -2, -2, -1, -2, -2, -2, -1, 0, -1] +ranter -1.2 1.16619 [-1, -2, -2, -2, -1, -1, -1, -2, 2, -2] +ranters -1.2 0.87178 [-1, -1, -1, 0, -1, -1, -3, -2, 0, -2] +rants -1.3 0.45826 [-1, -1, -1, -2, -1, -1, -1, -2, -2, -1] +rape -3.7 0.64031 [-4, -2, -4, -4, -4, -4, -4, -4, -3, -4] +raped -3.6 0.4899 [-3, -3, -4, -4, -3, -4, -4, -4, -3, -4] +raper -3.4 0.66332 [-3, -3, -4, -4, -3, -3, -4, -4, -2, -4] +rapers -3.6 0.66332 [-2, -4, -4, -3, -4, -3, -4, -4, -4, -4] +rapes -3.5 0.67082 [-4, -3, -4, -4, -3, -4, -4, -3, -2, -4] +rapeseeds -0.5 1.20416 [0, 0, 0, 0, 0, -4, 0, 0, -1, 0] +raping -3.8 0.4 [-3, -4, -4, -4, -4, -4, -4, -4, -3, -4] +rapist -3.9 0.3 [-4, -4, -4, -4, -4, -4, -3, -4, -4, -4] +rapists -3.3 0.64031 [-3, -3, -4, -3, -4, -3, -4, -2, -4, -3] +rapture 0.6 2.2891 [-2, 2, -2, 3, 3, 4, -1, -1, 2, -2] +raptured 0.9 1.97231 [0, -2, 0, 2, 4, -1, 4, -1, 1, 2] +raptures 0.7 2.05183 [0, -2, 0, 2, 4, -2, 4, -1, 1, 1] +rapturous 1.7 1.95192 [3, 4, 0, 3, 2, 2, 4, -2, -1, 2] +rash -1.7 0.78102 [-2, -1, -1, -3, -2, -2, -1, -1, -1, -3] +ratified 0.6 0.4899 [1, 0, 0, 1, 1, 0, 1, 1, 0, 1] +reach 0.1 0.3 [0, 0, 0, 0, 0, 0, 0, 1, 0, 0] +reached 0.4 0.4899 [1, 0, 0, 0, 1, 1, 0, 1, 0, 0] +reaches 0.2 0.4 [0, 0, 0, 1, 0, 1, 0, 0, 0, 0] +reaching 0.8 0.6 [1, 0, 2, 0, 1, 0, 1, 1, 1, 1] +readiness 1.0 0.63246 [1, 1, 1, 1, 0, 1, 2, 1, 2, 0] +ready 1.5 1.0247 [2, 1, 1, 0, 2, 2, 1, 1, 1, 4] +reassurance 1.5 0.5 [1, 1, 1, 1, 2, 1, 2, 2, 2, 2] +reassurances 1.4 0.8 [0, 1, 1, 2, 1, 1, 1, 2, 3, 2] +reassure 1.4 0.4899 [2, 2, 1, 1, 2, 1, 2, 1, 1, 1] +reassured 1.7 0.45826 [2, 1, 1, 1, 2, 2, 2, 2, 2, 2] +reassures 1.5 0.92195 [2, 1, 1, 2, 2, 2, -1, 2, 2, 2] +reassuring 1.7 1.48661 [3, 3, 2, -2, 1, 3, 3, 2, 1, 1] +reassuringly 1.8 0.87178 [1, 3, 2, 1, 2, 3, 3, 1, 1, 1] +rebel -0.6 1.49666 [-2, -1, -1, 0, -2, -1, 2, 1, 1, -3] +rebeldom -1.5 1.0247 [-2, -2, -1, -3, -2, -2, -1, 1, -1, -2] +rebelled -1.0 1.26491 [-2, -2, 0, -2, 0, -2, -2, -1, -1, 2] +rebelling -1.1 1.51327 [-3, -1, -2, -1, -2, -1, -1, -3, 2, 1] +rebellion -0.5 1.80278 [-2, -2, -1, -1, 3, -1, 1, -3, 2, -1] +rebellions -1.1 1.57797 [-2, -4, -3, 0, 0, -1, 1, -2, -1, 1] +rebellious -1.2 1.249 [-2, -1, -3, -1, -2, -2, 1, -1, 1, -2] +rebelliously -1.8 0.87178 [-3, 0, -2, -2, -1, -2, -3, -1, -2, -2] +rebelliousness -1.2 1.16619 [0, -3, -1, -2, 1, -1, -2, 0, -2, -2] +rebels -0.8 1.07703 [-1, 0, 0, -2, 0, -3, 0, 0, 0, -2] +recession -1.8 1.07703 [-3, -1, -4, -2, -1, -1, -1, -1, -3, -1] +reckless -1.7 0.64031 [-2, -1, -1, -3, -1, -2, -1, -2, -2, -2] +recommend 1.5 0.67082 [1, 1, 1, 1, 2, 3, 2, 2, 1, 1] +recommended 0.8 1.07703 [1, 1, 0, -2, 1, 2, 1, 2, 1, 1] +recommends 0.9 0.9434 [1, 1, 2, 0, 0, 2, 1, -1, 2, 1] +redeemed 1.3 0.9 [2, 1, 2, 2, 1, -1, 2, 1, 2, 1] +reek -2.4 0.66332 [-3, -3, -2, -3, -3, -2, -2, -2, -1, -3] +reeked -2.0 1.09545 [-4, -3, -2, -3, -1, -2, 0, -1, -2, -2] +reeker -1.7 1.1 [0, -2, -1, 0, -3, -3, -2, -1, -3, -2] +reekers -1.5 1.0247 [-3, 0, 0, 0, -2, -2, -2, -2, -2, -2] +reeking -2.0 1.48324 [2, -2, -2, -3, -3, -3, -1, -3, -3, -2] +refuse -1.2 0.4 [-1, -1, -1, -1, -1, -1, -1, -2, -2, -1] +refused -1.2 0.74833 [0, -1, -1, -1, -1, -1, -2, -1, -3, -1] +refusing -1.7 0.64031 [-1, -1, -1, -2, -2, -2, -3, -1, -2, -2] +regret -1.8 0.6 [-2, -2, -2, -2, -1, -3, -1, -1, -2, -2] +regretful -1.9 0.83066 [-1, -2, -1, -2, -1, -2, -1, -3, -3, -3] +regretfully -1.9 0.83066 [-1, -1, -1, -3, -2, -3, -1, -3, -2, -2] +regretfulness -1.6 0.66332 [-1, -3, -1, -1, -1, -2, -1, -2, -2, -2] +regrets -1.5 0.5 [-2, -2, -2, -1, -2, -1, -1, -2, -1, -1] +regrettable -2.3 0.78102 [-3, -1, -2, -1, -3, -2, -3, -3, -2, -3] +regrettably -2.0 0.63246 [-2, -3, -1, -3, -2, -1, -2, -2, -2, -2] +regretted -1.6 0.4899 [-2, -1, -2, -2, -2, -2, -1, -1, -1, -2] +regretter -1.6 0.66332 [-2, -1, -2, -2, -3, -2, -1, -1, -1, -1] +regretters -2.0 0.89443 [-1, -2, -2, -2, -4, -3, -1, -1, -2, -2] +regretting -1.7 0.78102 [-3, -2, -2, -1, -3, -1, -1, -1, -2, -1] +reinvigorate 2.3 0.78102 [3, 3, 3, 2, 3, 1, 2, 1, 2, 3] +reinvigorated 1.9 1.13578 [2, 2, 3, 1, 2, 3, 3, -1, 2, 2] +reinvigorates 1.8 0.9798 [2, 2, 3, 0, 2, 2, 3, 0, 2, 2] +reinvigorating 1.7 0.64031 [1, 2, 1, 1, 2, 2, 2, 1, 3, 2] +reinvigoration 2.2 0.4 [2, 2, 2, 3, 2, 3, 2, 2, 2, 2] +reject -1.7 0.64031 [-1, -2, -2, -2, -1, -3, -1, -1, -2, -2] +rejected -2.3 0.45826 [-3, -2, -3, -3, -2, -2, -2, -2, -2, -2] +rejectee -2.3 0.45826 [-3, -2, -2, -3, -2, -3, -2, -2, -2, -2] +rejectees -1.8 0.4 [-2, -2, -1, -2, -2, -2, -2, -2, -2, -1] +rejecter -1.6 0.66332 [-2, -1, -1, -3, -2, -2, -1, -1, -1, -2] +rejecters -1.8 0.6 [-2, -3, -1, -1, -2, -1, -2, -2, -2, -2] +rejecting -2.0 0.7746 [-1, -2, -3, -1, -2, -3, -2, -1, -3, -2] +rejectingly -1.7 0.64031 [-1, -2, -2, -2, -1, -2, -2, -1, -3, -1] +rejection -2.5 0.67082 [-3, -3, -2, -4, -3, -2, -2, -2, -2, -2] +rejections -2.1 0.53852 [-3, -2, -2, -2, -1, -2, -3, -2, -2, -2] +rejective -1.8 0.6 [-3, -2, -2, -2, -1, -1, -2, -2, -1, -2] +rejector -1.8 0.74833 [-2, -1, -2, -3, -1, -2, -1, -2, -3, -1] +rejects -2.2 0.4 [-3, -2, -2, -2, -2, -3, -2, -2, -2, -2] +rejoice 1.9 0.9434 [2, 3, 1, 3, 1, 3, 1, 3, 1, 1] +rejoiced 2.0 0.63246 [2, 1, 2, 3, 2, 2, 3, 1, 2, 2] +rejoices 2.1 0.7 [2, 1, 2, 3, 2, 3, 3, 2, 2, 1] +rejoicing 2.8 0.4 [3, 3, 2, 3, 3, 3, 2, 3, 3, 3] +relax 1.9 1.13578 [2, 1, 1, 1, 4, 4, 2, 1, 1, 2] +relaxant 1.0 0.89443 [2, 1, 0, 0, 1, 0, 1, 3, 1, 1] +relaxants 0.7 0.9 [0, 1, 1, 0, -1, 2, 1, 2, 1, 0] +relaxation 2.4 0.4899 [3, 2, 3, 2, 2, 3, 3, 2, 2, 2] +relaxations 1.0 0.89443 [-1, 0, 2, 1, 1, 2, 1, 2, 1, 1] +relaxed 2.2 0.87178 [2, 3, 1, 3, 3, 3, 1, 2, 1, 3] +relaxedly 1.5 0.5 [2, 2, 1, 1, 2, 1, 2, 2, 1, 1] +relaxedness 2.0 0.63246 [2, 2, 3, 1, 3, 2, 2, 2, 1, 2] +relaxer 1.6 0.8 [0, 2, 1, 2, 1, 3, 1, 2, 2, 2] +relaxers 1.4 0.4899 [2, 1, 1, 1, 2, 2, 2, 1, 1, 1] +relaxes 1.5 0.5 [2, 1, 1, 1, 1, 2, 2, 2, 1, 2] +relaxin 1.7 0.64031 [2, 2, 1, 2, 0, 2, 2, 2, 2, 2] +relaxing 2.2 0.6 [1, 2, 2, 2, 2, 3, 3, 3, 2, 2] +relaxins 1.2 1.4 [1, 3, 2, 1, 0, 1, -2, 3, 2, 1] +relentless 0.2 1.07703 [3, -1, 0, -1, 0, 1, 0, 0, 0, 0] +reliant 0.5 1.20416 [0, 2, -1, 1, 0, 1, 2, -1, 2, -1] +relief 2.1 0.53852 [2, 2, 2, 3, 2, 3, 2, 1, 2, 2] +reliefs 1.3 0.78102 [1, 2, 2, 2, 2, 2, 0, 0, 1, 1] +relievable 1.1 1.22066 [1, -2, 1, 1, 1, 1, 3, 2, 1, 2] +relieve 1.5 0.5 [1, 2, 1, 2, 1, 1, 2, 2, 1, 2] +relieved 1.6 0.66332 [2, 1, 2, 1, 1, 3, 2, 1, 1, 2] +relievedly 1.4 0.4899 [1, 2, 1, 1, 1, 2, 2, 2, 1, 1] +reliever 1.5 0.80623 [2, 1, 2, 2, 1, 2, 0, 1, 1, 3] +relievers 1.0 0.63246 [1, 1, 1, 1, 2, 0, 2, 0, 1, 1] +relieves 1.5 0.80623 [2, 1, 2, 2, 1, 2, 0, 1, 1, 3] +relieving 1.5 1.0247 [2, 2, 1, 2, 3, -1, 2, 1, 1, 2] +relievo 1.3 1.00499 [0, 2, 1, 2, 2, -1, 2, 2, 2, 1] +relishing 1.6 0.8 [1, 2, 1, 3, 2, 3, 1, 1, 1, 1] +reluctance -1.4 0.4899 [-2, -2, -1, -1, -1, -1, -2, -1, -2, -1] +reluctancy -1.6 0.8 [-3, -2, -1, -1, -1, -1, -2, -1, -3, -1] +reluctant -1.0 0.7746 [0, -1, 0, -1, -1, 0, -1, -2, -2, -2] +reluctantly -0.4 1.42829 [-1, 2, -1, -2, -2, -1, 1, -1, 2, -1] +remarkable 2.6 1.0198 [3, 4, 3, 2, 2, 3, 3, 0, 3, 3] +remorse -1.1 1.51327 [-3, -1, -3, 1, 2, -2, -1, -1, -2, -1] +remorseful -0.9 2.07123 [-1, 1, -2, -3, 2, -1, -3, -2, 3, -3] +remorsefully -0.7 1.34536 [-1, -1, 0, -1, -2, -1, -1, 1, -3, 2] +remorsefulness -0.7 1.61555 [-1, -2, 2, -2, -2, -1, 0, -3, 2, 0] +remorseless -2.3 0.64031 [-4, -2, -2, -2, -3, -2, -2, -2, -2, -2] +remorselessly -2.0 1.09545 [-3, -3, -3, -2, -1, -1, -4, -1, -1, -1] +remorselessness -2.8 1.16619 [-3, -4, -2, -2, -3, -4, -1, -1, -4, -4] +repetitive -1.0 0.06325 [-1, -1, 0, -2, -1, -2, -1, -1, 0, -1] +repress -1.4 0.66332 [-1, -1, -3, -2, -1, -1, -2, -1, -1, -1] +repressed -1.3 0.78102 [-1, 0, -3, -1, -1, -2, -1, -1, -2, -1] +represses -1.3 1.00499 [-1, 0, -3, -1, 0, -3, -1, -1, -2, -1] +repressible -1.5 0.92195 [-1, -2, -3, -1, 0, -1, -3, -1, -2, -1] +repressing -1.8 0.6 [-1, -2, -2, -2, -1, -3, -2, -1, -2, -2] +repression -1.6 0.91652 [-2, -2, -1, -1, -1, -1, -4, -1, -2, -1] +repressions -1.7 1.00499 [-2, -3, -1, -2, -2, -3, -2, 0, 0, -2] +repressive -1.4 1.11355 [-3, -1, -1, -2, -1, -3, 1, -2, -1, -1] +repressively -1.7 0.45826 [-2, -1, -2, -2, -2, -2, -2, -2, -1, -1] +repressiveness -1.0 1.73205 [-2, -1, -2, -3, -1, -1, 1, -3, 3, -1] +repressor -1.4 1.28062 [-1, 0, -3, -1, -2, -4, 0, -1, 0, -2] +repressors -2.2 1.66132 [-2, -4, 0, -2, -1, -3, -4, -3, 1, -4] +repressurize -0.3 0.64031 [0, 0, 0, 0, 0, 0, -2, 0, -1, 0] +repressurized 0.1 0.3 [0, 0, 0, 0, 1, 0, 0, 0, 0, 0] +repressurizes 0.1 0.3 [0, 0, 0, 0, 1, 0, 0, 0, 0, 0] +repressurizing -0.1 0.3 [0, 0, 0, 0, -1, 0, 0, 0, 0, 0] +repulse -2.8 0.4 [-3, -3, -3, -3, -2, -3, -3, -3, -2, -3] +repulsed -2.2 0.9798 [0, -2, -2, -2, -3, -3, -1, -3, -3, -3] +rescue 2.3 0.78102 [1, 3, 1, 3, 2, 3, 3, 2, 2, 3] +rescued 1.8 1.53623 [3, 2, 2, -2, 3, 2, 1, 4, 1, 2] +rescues 1.3 0.78102 [3, 2, 0, 2, 1, 1, 1, 1, 1, 1] +resent -0.7 1.26886 [-2, -2, 0, -1, -1, -1, -2, 1, 2, -1] +resented -1.6 1.35647 [-2, -3, -2, -2, -1, -1, 2, -3, -2, -2] +resentence -1.0 0.7746 [-1, 0, -1, -1, 0, -2, -1, 0, -2, -2] +resentenced -0.8 0.9798 [0, -2, -1, 0, -1, 0, 0, 0, -3, -1] +resentences -0.6 0.8 [0, -2, -1, 0, -1, 0, 0, 0, -2, 0] +resentencing 0.2 0.87178 [-1, -1, 0, 1, 0, 0, 1, 2, 0, 0] +resentful -2.1 0.83066 [-3, -1, -2, -3, -1, -1, -3, -2, -2, -3] +resentfully -1.4 1.11355 [-1, -2, -1, -1, -3, 1, -1, -3, -1, -2] +resentfulness -2.0 0.7746 [-2, -2, -3, -3, -2, -3, -2, -1, -1, -1] +resenting -1.2 1.72047 [-2, -1, -2, -2, -1, -3, -3, 2, 2, -2] +resentment -1.9 0.83066 [-1, -3, -2, -3, -2, -3, -1, -1, -1, -2] +resentments -1.9 0.7 [-2, -1, -2, -3, -1, -2, -2, -2, -1, -3] +resents -1.2 1.32665 [-2, -1, -1, -3, 1, -1, 1, -3, -2, -1] +resign -1.4 0.66332 [-2, -1, -3, -1, -1, -1, -1, -2, -1, -1] +resignation -1.2 0.4 [-1, -1, -1, -2, -1, -1, -1, -1, -2, -1] +resignations -1.2 0.6 [0, -1, -1, -2, -2, -2, -1, -1, -1, -1] +resigned -1.0 0.63246 [-2, -1, 0, -1, -2, -1, -1, -1, 0, -1] +resignedly -0.7 1.26886 [-3, -1, -1, -1, -1, 1, 1, 1, -2, -1] +resignedness -0.8 1.07703 [-1, -2, 1, -2, -1, -1, 0, -2, -1, 1] +resigner -1.2 0.6 [-2, -1, 0, -1, -2, -2, -1, -1, -1, -1] +resigners -1.0 1.09545 [-1, 0, -1, -3, -1, 0, 0, -1, -3, 0] +resigning -0.9 1.22066 [-1, -1, -1, -1, -1, 0, -1, -3, -2, 2] +resigns -1.3 0.9 [0, -1, -1, 0, -2, -1, -3, -1, -2, -2] +resolute 1.1 0.53852 [2, 1, 0, 1, 1, 1, 2, 1, 1, 1] +resolvable 1.0 0.0 [1, 1, 1, 1, 1, 1, 1, 1, 1, 1] +resolve 1.6 0.66332 [2, 1, 1, 2, 2, 1, 3, 1, 1, 2] +resolved 0.7 0.78102 [1, 2, 0, 1, 1, 0, 2, 0, 0, 0] +resolvent 0.7 0.78102 [1, 0, 1, 2, 0, -1, 1, 1, 1, 1] +resolvents 0.4 0.66332 [2, 0, 0, 1, 0, 0, 1, 0, 0, 0] +resolver 0.7 0.78102 [1, 2, 0, 1, 1, 0, 2, 0, 0, 0] +resolvers 1.4 0.4899 [2, 1, 2, 1, 1, 1, 2, 1, 2, 1] +resolves 0.7 0.78102 [1, 2, 0, 1, 1, 0, 2, 0, 0, 0] +resolving 1.6 0.4899 [2, 2, 1, 2, 2, 1, 1, 1, 2, 2] +respect 2.1 0.53852 [2, 2, 2, 2, 3, 3, 2, 2, 1, 2] +respectabilities 1.8 0.4 [2, 2, 2, 1, 2, 2, 2, 1, 2, 2] +respectability 2.4 0.8 [4, 1, 3, 2, 3, 3, 2, 2, 2, 2] +respectable 1.9 0.7 [2, 2, 2, 2, 1, 3, 3, 1, 1, 2] +respectableness 1.2 1.32665 [2, 1, 1, 0, 3, 2, -2, 2, 2, 1] +respectably 1.7 0.78102 [2, 2, 1, 3, 1, 3, 2, 1, 1, 1] +respected 2.1 0.7 [2, 2, 1, 2, 3, 1, 2, 3, 3, 2] +respecter 2.1 0.53852 [3, 2, 2, 2, 2, 2, 1, 3, 2, 2] +respecters 1.6 0.8 [2, 1, 2, 2, 3, 1, 2, 2, 0, 1] +respectful 2.0 0.7746 [1, 1, 3, 2, 2, 3, 1, 2, 3, 2] +respectfully 1.7 0.64031 [1, 2, 1, 2, 2, 2, 1, 3, 1, 2] +respectfulness 1.9 1.37477 [4, 2, 2, 1, 2, 4, -1, 1, 2, 2] +respectfulnesses 1.3 1.18743 [1, 1, 2, 2, 2, 2, 2, 1, -2, 2] +respecting 2.2 0.6 [1, 3, 2, 3, 2, 2, 3, 2, 2, 2] +respective 1.8 1.16619 [2, 2, 3, 0, 1, 3, 3, 1, 0, 3] +respectively 1.4 0.91652 [0, 0, 2, 2, 0, 2, 2, 2, 2, 2] +respectiveness 1.1 1.04403 [0, 2, 1, 0, 1, 0, 2, 2, 0, 3] +respects 1.3 1.00499 [2, 0, 0, 0, 2, 1, 2, 1, 2, 3] +responsible 1.3 1.1 [1, 1, 0, 4, 2, 2, 1, 0, 1, 1] +responsive 1.5 0.92195 [3, 1, 1, 0, 1, 1, 2, 3, 2, 1] +restful 1.5 0.67082 [1, 1, 1, 1, 2, 1, 2, 1, 2, 3] +restless -1.1 0.3 [-1, -1, -1, -1, -1, -1, -2, -1, -1, -1] +restlessly -1.4 0.91652 [-1, -4, -1, -1, -1, -2, -1, -1, -1, -1] +restlessness -1.2 0.74833 [-3, -1, -1, 0, -1, -2, -1, -1, -1, -1] +restore 1.2 0.9798 [1, 1, 2, 2, 2, 2, 1, -1, 0, 2] +restored 1.4 0.91652 [2, 2, 1, 2, 1, 2, 2, 1, -1, 2] +restores 1.2 0.6 [2, 1, 1, 2, 1, 0, 1, 1, 2, 1] +restoring 1.2 0.4 [2, 1, 1, 1, 1, 2, 1, 1, 1, 1] +restrict -1.6 0.8 [-3, -1, -1, -1, -3, -1, -2, -1, -1, -2] +restricted -1.6 0.4899 [-1, -2, -1, -1, -1, -2, -2, -2, -2, -2] +restricting -1.6 0.4899 [-2, -2, -2, -2, -1, -2, -1, -1, -2, -1] +restriction -1.1 0.9434 [-1, -1, -1, -1, -3, 1, -2, -1, -1, -1] +restricts -1.3 1.1 [-2, -2, -3, -1, -1, -2, 1, -1, -2, 0] +retained 0.1 0.7 [-1, 1, 1, 1, 0, -1, 0, 0, 0, 0] +retard -2.4 0.8 [-2, -2, -2, -1, -3, -2, -4, -3, -3, -2] +retarded -2.7 1.26886 [-4, -1, -3, -3, -4, -4, -2, -1, -1, -4] +retreat 0.8 1.07703 [2, 2, 0, 0, -1, 1, 2, 0, 2, 0] +revenge -2.4 0.66332 [-2, -3, -2, -3, -3, -3, -2, -1, -2, -3] +revenged -0.9 1.37477 [-2, -3, -2, -1, -1, 2, -1, 1, -1, -1] +revengeful -2.4 0.4899 [-2, -2, -2, -3, -3, -2, -3, -3, -2, -2] +revengefully -1.4 2.00998 [-3, -2, -2, -2, 3, 2, -3, -3, -2, -2] +revengefulness -2.2 0.87178 [-2, -3, -3, -2, -2, -2, -1, -4, -1, -2] +revenger -2.1 0.83066 [-2, -3, -2, -1, -1, -2, -3, -3, -1, -3] +revengers -2.0 0.44721 [-2, -2, -3, -2, -2, -2, -1, -2, -2, -2] +revenges -1.9 0.7 [-2, -3, -2, -1, -1, -2, -3, -2, -1, -2] +revered 2.3 1.1 [3, 3, 1, 3, 3, 3, 0, 3, 3, 1] +revive 1.4 1.11355 [4, 0, 2, 1, 1, 0, 2, 2, 1, 1] +revives 1.6 0.4899 [1, 1, 2, 2, 1, 2, 2, 2, 1, 2] +reward 2.7 0.78102 [3, 4, 1, 2, 3, 3, 2, 3, 3, 3] +rewardable 2.0 1.0 [3, 1, 4, 3, 1, 2, 1, 2, 2, 1] +rewarded 2.2 0.74833 [1, 2, 3, 2, 2, 4, 2, 2, 2, 2] +rewarder 1.6 0.8 [1, 2, 3, 1, 1, 3, 2, 1, 1, 1] +rewarders 1.9 0.83066 [1, 2, 2, 1, 3, 3, 1, 2, 1, 3] +rewarding 2.4 0.8 [3, 4, 2, 2, 1, 3, 3, 2, 2, 2] +rewardingly 2.4 0.8 [3, 2, 3, 4, 3, 2, 2, 2, 1, 2] +rewards 2.1 0.83066 [2, 1, 3, 4, 2, 2, 2, 2, 1, 2] +rich 2.6 0.8 [2, 3, 2, 4, 4, 3, 2, 2, 2, 2] +richened 1.9 0.83066 [3, 2, 2, 1, 3, 1, 2, 3, 1, 1] +richening 1.0 1.34164 [2, 2, 0, 0, -1, 1, 2, 3, -1, 2] +richens 0.8 0.9798 [1, 0, 3, 0, 0, 0, 1, 2, 1, 0] +richer 2.4 1.2 [1, 4, 2, 1, 2, 4, 4, 1, 3, 2] +riches 2.4 1.0198 [2, 4, 1, 1, 2, 4, 3, 2, 3, 2] +richest 2.4 1.11355 [4, 4, 2, 2, 3, 0, 2, 2, 3, 2] +richly 1.9 0.53852 [2, 2, 2, 2, 3, 1, 2, 2, 1, 2] +richness 2.2 0.74833 [2, 3, 2, 2, 2, 2, 2, 1, 4, 2] +richnesses 2.1 0.9434 [2, 1, 2, 2, 3, 1, 3, 1, 4, 2] +richweed 0.1 0.3 [0, 0, 0, 0, 0, 0, 0, 1, 0, 0] +richweeds -0.1 0.3 [0, 0, 0, 0, 0, 0, 0, 0, 0, -1] +ridicule -2.0 0.63246 [-2, -2, -2, -2, -3, -2, -1, -2, -1, -3] +ridiculed -1.5 0.5 [-1, -1, -1, -2, -2, -2, -1, -2, -1, -2] +ridiculer -1.6 0.91652 [-1, -1, -1, -2, -2, 0, -1, -3, -2, -3] +ridiculers -1.6 0.66332 [-2, -1, -1, -2, -3, -2, -1, -2, -1, -1] +ridicules -1.8 0.6 [-1, -1, -2, -2, -2, -2, -1, -2, -2, -3] +ridiculing -1.8 0.6 [-2, -3, -2, -1, -1, -2, -2, -1, -2, -2] +ridiculous -1.5 0.67082 [-3, -2, -1, -1, -2, -1, -2, -1, -1, -1] +ridiculously -1.4 0.8 [-1, -2, -1, 0, -2, -1, -1, -3, -1, -2] +ridiculousness -1.1 1.51327 [-1, -1, -1, -2, -1, 3, -3, -2, -1, -2] +ridiculousnesses -1.6 1.11355 [-3, 0, -2, -2, -1, -1, -1, -4, -1, -1] +rig -0.5 1.0247 [0, 0, 0, 0, -2, 0, 0, 0, -3, 0] +rigged -1.5 1.0247 [-2, -3, -2, -1, -1, -2, 1, -1, -2, -2] +rigid -0.5 0.67082 [-2, -1, 0, 0, 0, 0, 0, -1, -1, 0] +rigidification -1.1 0.9434 [-1, -2, 0, 0, 0, -2, -2, -2, 0, -2] +rigidifications -0.8 0.9798 [-2, -1, 0, 0, -2, -1, 0, 1, -2, -1] +rigidified -0.7 1.00499 [0, -1, 0, 0, 0, 0, -2, 0, -1, -3] +rigidifies -0.6 0.8 [0, -1, 0, 0, 0, 0, -2, 0, -1, -2] +rigidify -0.3 0.64031 [0, 0, 0, 0, -1, 0, 0, 0, -2, 0] +rigidities -0.7 0.78102 [0, -1, 0, 0, 0, 0, -2, -1, -1, -2] +rigidity -0.7 0.64031 [-1, 0, -1, 0, -1, 0, -2, 0, -1, -1] +rigidly -0.7 0.45826 [-1, -1, -1, -1, 0, 0, -1, 0, -1, -1] +rigidness -0.3 1.00499 [0, -1, -1, 0, 2, -1, -1, -1, 1, -1] +rigorous -1.1 1.51327 [-2, -3, 1, 0, 1, 0, -1, -1, -3, -3] +rigorously -0.4 1.28062 [0, 2, 1, 0, -1, 0, -1, -1, -3, -1] +riot -2.6 1.0198 [-3, 0, -3, -2, -3, -3, -3, -4, -3, -2] +riots -2.3 0.78102 [-2, -3, -3, -2, -1, -1, -3, -2, -3, -3] +risk -1.1 0.7 [-1, -1, 0, -2, -1, 0, -2, -2, -1, -1] +risked -0.9 0.7 [-1, -2, 0, 0, -1, 0, -2, -1, -1, -1] +risker -0.8 0.4 [-1, -1, -1, 0, -1, 0, -1, -1, -1, -1] +riskier -1.4 0.91652 [0, -3, -1, 0, -1, -2, -1, -2, -2, -2] +riskiest -1.5 1.0247 [-2, -3, -1, -1, -3, 0, -1, -2, 0, -2] +riskily -0.7 1.34536 [-1, -2, -1, -1, 3, 0, -1, -1, -1, -2] +riskiness -1.3 1.00499 [-3, -1, -1, 0, -1, 0, -1, -3, -2, -1] +riskinesses -1.6 0.91652 [-2, -1, -1, 0, -3, -1, -2, -1, -3, -2] +risking -1.3 1.1 [0, 0, -2, 0, -1, -3, -3, -1, -2, -1] +riskless 1.3 0.9 [2, 1, 0, 1, 1, 1, 2, 3, 0, 2] +risks -1.1 0.9434 [-1, 0, -1, -1, 0, 0, -2, -1, -3, -2] +risky -0.8 0.9798 [-1, 1, -1, -1, -1, 0, 0, -1, -3, -1] +rob -2.6 0.8 [-2, -4, -3, -2, -3, -4, -2, -2, -2, -2] +robber -2.6 1.0198 [-4, -1, -2, -3, -2, -1, -4, -3, -3, -3] +robed -0.7 0.9 [-2, 0, 0, 0, 0, -2, 0, -2, -1, 0] +robing -1.5 1.56525 [0, 0, 0, 0, -2, -3, -3, -4, -3, 0] +robs -2.0 1.0 [-2, -1, -3, -2, -2, -1, -4, -3, -1, -1] +robust 1.4 1.42829 [1, 0, 0, 1, 4, 0, 2, 3, 3, 0] +roflcopter 2.1 0.53852 [2, 2, 2, 1, 3, 2, 3, 2, 2, 2] +romance 2.6 0.66332 [2, 3, 4, 2, 3, 2, 3, 2, 3, 2] +romanced 2.2 0.87178 [2, 3, 2, 4, 2, 1, 2, 3, 1, 2] +romancer 1.3 1.1 [0, 0, 2, 2, 2, 2, 3, 2, 0, 0] +romancers 1.7 1.00499 [0, 2, 2, 2, 2, 2, 1, 3, 0, 3] +romances 1.3 0.9 [0, 1, 2, 2, 2, 2, 2, 2, 0, 0] +romancing 2.0 0.89443 [4, 1, 1, 2, 2, 2, 2, 1, 3, 2] +romantic 1.7 0.78102 [2, 2, 2, 1, 2, 3, 2, 2, 0, 1] +romantically 1.8 0.87178 [3, 1, 2, 0, 1, 2, 2, 2, 3, 2] +romanticise 1.7 1.61555 [-1, 4, 2, 1, 3, 1, 3, 3, 2, -1] +romanticised 1.7 0.9 [2, 2, 2, 2, 2, 2, 3, 0, 2, 0] +romanticises 1.3 1.1 [2, 2, 1, 1, 1, 2, 3, -1, 2, 0] +romanticising 2.7 0.78102 [3, 3, 3, 2, 1, 3, 2, 3, 4, 3] +romanticism 2.2 1.32665 [1, 4, 2, 1, 3, 1, 3, 3, 4, 0] +romanticisms 2.1 0.9434 [2, 3, 2, 1, 2, 3, 3, 2, 3, 0] +romanticist 1.9 1.3 [1, 4, 2, 0, 3, 1, 2, 3, 3, 0] +romanticists 1.3 1.00499 [2, 0, 0, 1, 3, 3, 1, 1, 1, 1] +romanticization 1.5 1.36015 [1, 3, 2, 2, -1, 2, 0, 1, 4, 1] +romanticizations 2.0 1.0 [4, 1, 3, 1, 2, 3, 1, 2, 2, 1] +romanticize 1.8 0.9798 [2, 2, 1, 1, 2, 1, 3, 3, 3, 0] +romanticized 0.9 1.22066 [0, 1, 1, 3, -1, 0, 1, 1, 3, 0] +romanticizes 1.8 0.87178 [2, 3, 2, 1, 2, 3, 0, 1, 2, 2] +romanticizing 1.2 1.07703 [0, 1, 2, 1, 3, 0, 1, 1, 0, 3] +romantics 1.9 0.83066 [2, 3, 2, 1, 0, 2, 3, 2, 2, 2] +rotten -2.3 0.78102 [-2, -3, -1, -3, -3, -1, -3, -2, -3, -2] +rude -2.0 0.44721 [-2, -1, -3, -2, -2, -2, -2, -2, -2, -2] +rudely -2.2 0.87178 [-3, -2, -3, -1, -2, -4, -2, -2, -1, -2] +rudeness -1.5 0.67082 [-2, -1, -1, -1, -1, -3, -2, -2, -1, -1] +ruder -2.1 0.83066 [-2, -1, -4, -2, -3, -1, -2, -2, -2, -2] +ruderal -0.8 1.46969 [-3, 0, -1, -2, 0, -1, -3, 0, 2, 0] +ruderals -0.4 0.66332 [0, -1, 0, -2, 0, -1, 0, 0, 0, 0] +rudesby -2.0 0.7746 [-2, -3, -2, -2, -1, -3, -1, -1, -2, -3] +rudest -2.5 0.5 [-3, -2, -3, -3, -2, -2, -2, -3, -2, -3] +ruin -2.8 0.87178 [-3, -3, -1, -4, -4, -3, -3, -2, -2, -3] +ruinable -1.6 0.8 [-1, -2, -1, -3, -1, -3, -1, -1, -2, -1] +ruinate -2.8 0.87178 [-4, -4, -3, -3, -1, -3, -3, -3, -2, -2] +ruinated -1.5 1.56525 [0, -4, 0, -4, -1, -2, 0, -1, -3, 0] +ruinates -1.5 1.56525 [0, -4, 0, -4, -1, -2, 0, -1, -3, 0] +ruinating -1.5 1.20416 [-2, -2, -2, -3, 0, -1, 1, -3, -1, -2] +ruination -2.7 1.00499 [-4, -4, -3, -3, -2, -1, -3, -3, -3, -1] +ruinations -1.6 1.35647 [-2, -2, -3, -4, 0, -1, 1, -2, -1, -2] +ruined -2.1 0.7 [-3, -2, -2, -1, -2, -2, -3, -3, -1, -2] +ruiner -2.0 0.63246 [-1, -3, -2, -2, -1, -2, -3, -2, -2, -2] +ruing -1.6 0.91652 [-2, -1, -2, -1, -1, -1, -3, 0, -3, -2] +ruining -1.0 1.94936 [-3, -3, 0, -2, 1, -3, 2, -2, 2, -2] +ruinous -2.7 0.78102 [-2, -3, -3, -3, -3, -4, -2, -3, -1, -3] +ruinously -2.6 0.8 [-3, -2, -2, -3, -1, -3, -4, -2, -3, -3] +ruinousness -1.0 1.09545 [-1, -2, -3, -1, -1, -2, 1, 0, -1, 0] +ruins -1.9 0.9434 [-1, -2, -1, -2, -1, -2, -4, -1, -3, -2] +sabotage -2.4 0.91652 [-3, -3, -3, -2, -2, -4, -2, -3, -1, -1] +sad -2.1 0.9434 [-1, -1, -2, -2, -3, -2, -3, -2, -4, -1] +sadden -2.6 0.4899 [-2, -3, -2, -3, -2, -3, -2, -3, -3, -3] +saddened -2.4 0.4899 [-3, -2, -3, -2, -3, -3, -2, -2, -2, -2] +saddening -2.2 0.4 [-3, -2, -2, -2, -2, -2, -3, -2, -2, -2] +saddens -1.9 0.7 [-3, -1, -1, -1, -2, -2, -2, -2, -3, -2] +sadder -2.4 0.91652 [-2, -2, -3, -4, -3, -1, -3, -1, -2, -3] +saddest -3.0 0.63246 [-4, -3, -2, -3, -3, -2, -3, -4, -3, -3] +sadly -1.8 0.6 [-2, -2, -2, -1, -2, -3, -2, -1, -1, -2] +sadness -1.9 0.3 [-2, -1, -2, -2, -2, -2, -2, -2, -2, -2] +safe 1.9 0.3 [2, 1, 2, 2, 2, 2, 2, 2, 2, 2] +safecracker -0.7 1.61555 [-3, -2, 0, -3, 0, -2, 0, 1, 2, 0] +safecrackers -0.9 1.04403 [-1, 0, -2, 0, -1, 0, 0, -3, 0, -2] +safecracking -0.9 0.9434 [0, 0, 0, 0, -2, 0, -1, -2, -2, -2] +safecrackings -0.7 1.67631 [-2, -1, -2, -4, 2, -1, -1, 0, 1, 1] +safeguard 1.6 0.4899 [2, 2, 1, 1, 1, 2, 2, 2, 2, 1] +safeguarded 1.5 0.92195 [1, 2, 2, 0, 2, 0, 3, 1, 2, 2] +safeguarding 1.1 0.7 [2, 1, 1, 0, 1, 0, 2, 1, 1, 2] +safeguards 1.4 0.66332 [1, 2, 1, 1, 0, 2, 2, 2, 2, 1] +safekeeping 1.4 0.66332 [3, 1, 1, 2, 1, 1, 2, 1, 1, 1] +safelight 1.1 1.22066 [0, 3, 0, 2, 0, 3, 0, 2, 1, 0] +safelights 0.8 1.07703 [0, 3, 1, 0, 0, 2, 0, 2, 0, 0] +safely 2.2 0.74833 [2, 2, 2, 3, 4, 2, 2, 1, 2, 2] +safeness 1.5 0.67082 [1, 1, 1, 1, 3, 1, 2, 2, 2, 1] +safer 1.8 0.6 [2, 1, 2, 3, 2, 2, 1, 1, 2, 2] +safes 0.4 0.8 [0, 0, 2, 0, 0, 0, 0, 0, 2, 0] +safest 1.7 1.61555 [2, 2, 2, 2, -3, 3, 3, 2, 2, 2] +safeties 1.5 1.0247 [2, 0, 1, 3, 2, 1, 3, 1, 0, 2] +safety 1.8 0.6 [2, 2, 2, 2, 1, 1, 2, 3, 1, 2] +safetyman 0.3 0.64031 [0, 0, 0, 0, 2, 0, 1, 0, 0, 0] +salient 1.1 1.22066 [1, 3, 0, -1, 0, 1, 2, 1, 1, 3] +sappy -1.0 1.18322 [-2, -1, 2, -2, -2, 0, -1, -1, -2, -1] +sarcasm -0.9 0.7 [0, -2, -1, -1, 0, 0, -1, -1, -2, -1] +sarcasms -0.9 0.7 [0, -1, 0, -1, -1, -2, 0, -1, -1, -2] +sarcastic -1.0 0.7746 [-1, -1, -1, -1, -1, -1, -1, -2, 1, -2] +sarcastically -1.1 1.37477 [-1, -4, 1, -1, -1, -2, 1, -2, -1, -1] +satisfaction 1.9 0.9434 [1, 3, 2, 4, 2, 1, 1, 1, 2, 2] +satisfactions 2.1 0.7 [3, 3, 3, 1, 2, 2, 1, 2, 2, 2] +satisfactorily 1.6 1.11355 [1, 2, 2, -1, 2, 1, 3, 3, 1, 2] +satisfactoriness 1.5 0.5 [1, 2, 1, 2, 2, 1, 2, 1, 2, 1] +satisfactory 1.5 0.67082 [2, 3, 1, 1, 1, 2, 2, 1, 1, 1] +satisfiable 1.9 0.83066 [3, 1, 2, 1, 2, 3, 1, 2, 3, 1] +satisfied 1.8 0.6 [2, 2, 2, 1, 1, 2, 3, 1, 2, 2] +satisfies 1.8 0.6 [3, 1, 2, 1, 1, 2, 2, 2, 2, 2] +satisfy 2.0 0.63246 [3, 2, 2, 2, 2, 1, 1, 2, 3, 2] +satisfying 2.0 1.48324 [2, 3, 2, 1, 3, 3, 3, 2, -2, 3] +satisfyingly 1.9 0.9434 [1, 2, 2, 1, 2, 1, 4, 1, 3, 2] +savage -2.0 1.73205 [-3, -4, -3, 1, -2, -1, -3, -4, -2, 1] +savaged -2.0 1.34164 [-1, 0, -4, -3, -3, -3, -2, 0, -1, -3] +savagely -2.2 0.74833 [-2, -1, -3, -2, -2, -1, -2, -3, -3, -3] +savageness -2.6 1.0198 [-3, -1, -2, -3, -2, -1, -4, -4, -3, -3] +savagenesses -0.9 1.86815 [-2, 3, -1, -3, -2, 2, -3, -1, -1, -1] +savageries -1.9 1.75784 [-3, 1, -3, -4, -3, 1, -2, -3, 0, -3] +savagery -2.5 1.62788 [-2, -3, -3, -3, 2, -3, -3, -4, -4, -2] +savages -2.4 1.0198 [-2, -2, -3, -4, -3, -3, -2, 0, -2, -3] +save 2.2 1.16619 [1, 3, 3, 1, 2, 1, 2, 4, 1, 4] +saved 1.8 0.6 [1, 2, 2, 2, 1, 3, 2, 2, 1, 2] +scam -2.7 0.64031 [-2, -3, -3, -3, -2, -2, -4, -3, -3, -2] +scams -2.8 0.87178 [-3, -1, -3, -4, -4, -3, -2, -2, -3, -3] +scandal -1.9 1.81384 [-3, -2, -2, -4, 3, -3, -3, -1, -2, -2] +scandalous -2.4 0.8 [-2, -1, -3, -2, -4, -2, -3, -3, -2, -2] +scandals -2.2 0.9798 [-2, -3, -3, -2, -1, 0, -3, -3, -2, -3] +scapegoat -1.7 0.64031 [-3, -2, -2, -2, -1, -1, -1, -2, -1, -2] +scapegoats -1.4 0.8 [-1, -2, -2, -1, 0, -2, -2, 0, -2, -2] +scare -2.2 0.87178 [-2, -2, -4, -2, -3, -1, -2, -1, -2, -3] +scarecrow -0.8 0.9798 [-1, 0, -1, 0, 0, 0, -2, -3, -1, 0] +scarecrows -0.7 1.1 [2, 0, -1, -1, -1, -2, -1, -2, 0, -1] +scared -1.9 0.7 [-1, -1, -2, -3, -2, -3, -1, -2, -2, -2] +scaremonger -2.1 0.53852 [-1, -2, -2, -3, -2, -2, -3, -2, -2, -2] +scaremongers -2.0 1.0 [-2, -2, 0, -4, -2, -2, -1, -2, -3, -2] +scarer -1.7 0.78102 [-2, -1, -1, -2, -3, -1, -3, -1, -2, -1] +scarers -1.3 0.9 [-1, -2, -1, 0, 0, -1, -3, -2, -1, -2] +scares -1.4 0.4899 [-1, -1, -2, -1, -1, -2, -1, -2, -2, -1] +scarey -1.7 0.64031 [-1, -1, -2, -2, -1, -2, -1, -2, -3, -2] +scaring -1.9 1.22066 [-3, -2, -1, -3, -1, -3, -2, -2, 1, -3] +scary -2.2 0.87178 [-2, -1, -4, -3, -3, -2, -2, -2, -2, -1] +sceptic -1.0 0.89443 [-3, 0, -1, -1, -1, 0, 0, -2, -1, -1] +sceptical -1.2 0.4 [-1, -1, -1, -1, -1, -1, -1, -2, -2, -1] +scepticism -0.8 0.87178 [-1, -2, -2, 0, 0, -1, 1, -1, -1, -1] +sceptics -0.7 0.78102 [0, 0, 0, -1, -2, 0, -1, -1, 0, -2] +scold -1.7 0.78102 [-2, -1, -1, -1, -3, -3, -2, -2, -1, -1] +scoop 0.6 0.8 [0, 0, 1, 0, 2, 0, 2, 0, 1, 0] +scorn -1.7 0.64031 [-2, -3, -2, -1, -1, -1, -1, -2, -2, -2] +scornful -1.8 1.16619 [-3, -3, -2, -1, -4, 0, -2, -1, -1, -1] +scream -1.7 0.78102 [0, -3, -1, -1, -2, -2, -2, -2, -2, -2] +screamed -1.3 1.1 [-2, -3, -2, -1, -1, -2, -2, -1, 1, 0] +screamers -1.5 0.92195 [-2, -1, -2, -2, -2, -2, -1, -2, 1, -2] +screaming -1.6 0.8 [0, -1, -1, -2, -3, -1, -2, -2, -2, -2] +screams -1.2 0.9798 [-1, -2, -2, -1, -1, -2, 1, -2, 0, -2] +screw -0.4 0.91652 [-1, -2, -1, 0, 0, 1, 0, -1, 1, -1] +screwball -0.2 0.87178 [0, -1, 0, 0, 1, 1, -1, 0, -2, 0] +screwballs -0.3 1.00499 [-2, 0, -2, -1, 0, 1, 0, 1, 0, 0] +screwbean 0.3 0.64031 [0, 0, 0, 0, 0, 1, 0, 2, 0, 0] +screwdriver 0.3 0.45826 [1, 0, 0, 0, 0, 1, 0, 0, 1, 0] +screwdrivers 0.1 0.53852 [-1, 0, 0, 1, 0, 0, 0, 1, 0, 0] +screwed -2.2 0.4 [-2, -2, -2, -2, -2, -3, -3, -2, -2, -2] +screwed up -1.5 0.67082 [-2, -2, -2, -1, -1, 0, -2, -1, -2, -2] +screwer -1.2 0.87178 [-1, -2, -1, -2, 0, 0, -2, 0, -2, -2] +screwers -0.5 1.5 [-2, -2, 0, -2, 0, 2, 2, -1, 0, -2] +screwier -0.6 1.2 [0, -1, 2, -2, -1, -2, -1, -1, 1, -1] +screwiest -2.0 0.89443 [-3, -2, -2, -4, -1, -2, -1, -1, -2, -2] +screwiness -0.5 1.80278 [-2, 0, -2, 3, -2, -1, -2, 1, 2, -2] +screwing -0.9 0.9434 [-1, 0, 0, 0, -1, -1, -3, -2, 0, -1] +screwlike 0.1 1.04403 [2, -1, 0, 0, 0, 1, 0, 1, -2, 0] +screws -1.0 1.09545 [0, -3, 0, 0, -1, 0, -2, -2, -2, 0] +screwup -1.7 0.9 [-2, -2, -2, 1, -2, -2, -2, -2, -2, -2] +screwups -1.0 1.61245 [-2, -2, -2, -2, 0, 2, -2, -2, 2, -2] +screwworm -0.4 0.66332 [0, -1, 0, 0, 0, 0, -2, 0, -1, 0] +screwworms -0.1 1.22066 [-3, 0, -1, 0, 0, 0, 0, 2, 1, 0] +screwy -1.4 0.8 [-2, -2, -1, -1, -1, 0, -2, -1, -3, -1] +scrumptious 2.1 1.22066 [3, 3, 0, 3, 2, 3, 1, 3, 0, 3] +scrumptiously 1.5 1.43178 [2, 3, 3, -2, 1, 1, 2, 3, 1, 1] +scumbag -3.2 0.6 [-4, -3, -3, -2, -3, -4, -3, -3, -4, -3] +secure 1.4 0.4899 [1, 2, 1, 1, 2, 1, 1, 2, 2, 1] +secured 1.7 0.78102 [2, 2, 3, 1, 1, 2, 2, 0, 2, 2] +securely 1.4 0.8 [2, 0, 1, 2, 1, 1, 1, 3, 2, 1] +securement 1.1 0.7 [0, 2, 1, 1, 1, 0, 2, 2, 1, 1] +secureness 1.4 0.66332 [2, 1, 1, 3, 1, 1, 1, 1, 2, 1] +securer 1.5 0.67082 [1, 2, 2, 2, 1, 2, 1, 0, 2, 2] +securers 0.6 0.91652 [1, 3, 0, 0, 1, 0, 0, 0, 0, 1] +secures 1.3 0.64031 [1, 2, 2, 1, 1, 2, 1, 0, 2, 1] +securest 2.6 0.8 [3, 3, 2, 3, 1, 4, 3, 2, 2, 3] +securing 1.3 1.00499 [0, 3, 1, 1, 1, 3, 1, 1, 2, 0] +securities 1.2 0.6 [1, 2, 2, 2, 1, 1, 1, 0, 1, 1] +securitization 0.2 1.07703 [0, 0, 1, -1, 1, 0, -2, 0, 2, 1] +securitizations 0.1 0.9434 [0, 0, 0, 0, 2, 0, -2, 0, 1, 0] +securitize 0.3 1.34536 [2, 1, 0, 0, 2, 0, 1, 0, -3, 0] +securitized 1.4 1.0198 [3, 0, 2, 2, 0, 1, 2, 2, 0, 2] +securitizes 1.6 1.0198 [3, 0, 2, 2, 0, 1, 3, 2, 1, 2] +securitizing 0.7 0.9 [2, 0, 0, 1, 2, 0, 2, 0, 0, 0] +security 1.4 0.8 [1, 2, 3, 2, 1, 1, 2, 0, 1, 1] +sedition -1.8 1.249 [-3, -4, -2, -2, -2, -2, -1, -1, -2, 1] +seditious -1.7 0.64031 [-1, -2, -2, -1, -1, -1, -3, -2, -2, -2] +seduced -1.5 0.67082 [0, -1, -2, -2, -2, -2, -1, -1, -2, -2] +self-confident 2.5 0.80623 [1, 3, 3, 3, 2, 3, 1, 3, 3, 3] +selfish -2.1 0.7 [-1, -2, -2, -3, -1, -2, -2, -2, -3, -3] +selfishly -1.4 0.91652 [-3, 0, -1, -1, -1, -2, -3, -1, -1, -1] +selfishness -1.7 0.64031 [-1, -1, -1, -2, -2, -1, -2, -2, -3, -2] +selfishnesses -2.0 1.94936 [-4, -3, -1, -3, -2, -4, 2, 1, -3, -3] +sentence 0.3 0.64031 [0, 0, 0, 0, 1, 2, 0, 0, 0, 0] +sentenced -0.1 1.3 [0, -2, 2, -1, 0, -2, 2, 0, 0, 0] +sentences 0.2 1.07703 [0, 0, 2, 0, 0, -2, 2, 0, 0, 0] +sentencing -0.6 1.8 [-2, 0, -3, -2, 2, 3, 0, -1, -1, -2] +sentimental 1.3 0.64031 [2, 1, 1, 2, 1, 0, 1, 2, 2, 1] +sentimentalise 1.2 0.87178 [2, 1, 0, 3, 2, 1, 1, 0, 1, 1] +sentimentalised 0.8 1.16619 [2, 1, 1, 0, 0, 2, 3, -1, 0, 0] +sentimentalising 0.4 0.91652 [0, 2, 0, 0, 0, -1, 1, 0, 2, 0] +sentimentalism 1.0 0.63246 [2, 1, 0, 2, 1, 1, 1, 0, 1, 1] +sentimentalisms 0.4 0.8 [0, 1, 1, 0, 0, 2, 1, 0, 0, -1] +sentimentalist 0.8 0.87178 [2, 1, 0, 2, 0, 1, 2, 0, 0, 0] +sentimentalists 0.7 0.78102 [0, 0, 1, 0, 0, 1, 1, 2, 0, 2] +sentimentalities 0.9 0.83066 [2, 1, 1, 2, 1, 0, 0, 2, 0, 0] +sentimentality 1.2 1.46969 [-2, 1, 1, 2, 2, 0, 4, 2, 1, 1] +sentimentalization 1.2 0.87178 [0, 1, 2, 0, 1, 1, 3, 1, 2, 1] +sentimentalizations 0.4 0.8 [0, 1, 0, 1, 0, 0, 0, 2, -1, 1] +sentimentalize 0.8 1.07703 [2, 0, 0, 2, 0, 2, 1, -1, 2, 0] +sentimentalized 1.1 1.22066 [3, 0, 2, 0, 1, 3, 2, 0, 0, 0] +sentimentalizes 1.1 1.37477 [3, 0, 1, 0, 1, 4, 2, 0, 0, 0] +sentimentalizing 0.8 0.87178 [1, 1, 1, 1, 2, 0, -1, 1, 0, 2] +sentimentally 1.9 0.9434 [3, 2, 3, 1, 0, 2, 1, 2, 3, 2] +serene 2.0 1.0 [1, 1, 3, 2, 2, 4, 3, 2, 1, 1] +serious -0.3 0.45826 [0, -1, 0, -1, -1, 0, 0, 0, 0, 0] +seriously -0.7 1.34536 [-3, -2, 0, 0, -1, -2, 2, -1, 0, 0] +seriousness -0.2 1.16619 [0, 2, 0, 0, 0, 0, -3, -1, 0, 0] +severe -1.6 1.8 [-3, -2, -4, 1, -2, -3, 2, -1, -1, -3] +severed -1.5 0.5 [-1, -1, -2, -1, -2, -1, -1, -2, -2, -2] +severely -2.0 0.89443 [-2, -1, -1, -2, -2, -1, -3, -2, -4, -2] +severeness -1.0 1.73205 [0, 0, -1, -4, 1, -2, 0, 1, -1, -4] +severer -1.6 1.49666 [-2, -3, -2, -1, -2, 2, -4, -1, -1, -2] +severest -1.5 1.85742 [-4, -1, 2, -2, -2, -3, -4, -1, 1, -1] +sexy 2.4 0.8 [2, 3, 3, 4, 2, 2, 2, 2, 3, 1] +shake -0.7 0.9 [-2, 0, 0, -2, 1, -1, 0, -1, -1, -1] +shakeable -0.3 1.00499 [2, -1, 0, 0, -1, -2, 0, 0, -1, 0] +shakedown -1.2 0.4 [-2, -1, -1, -1, -2, -1, -1, -1, -1, -1] +shakedowns -1.4 0.8 [-2, -1, -1, -3, -1, -1, 0, -2, -2, -1] +shaken -0.3 0.9 [-1, -1, 1, -1, 1, 0, -1, 1, -1, -1] +shakeout -1.3 0.78102 [-1, -2, 0, -1, -1, -2, -2, -2, 0, -2] +shakeouts -0.8 1.16619 [-2, -1, 0, 0, -1, 2, -2, -1, -2, -1] +shakers 0.3 1.00499 [2, 0, 0, -1, 2, 0, 1, -1, 0, 0] +shakeup -0.6 0.4899 [-1, 0, -1, -1, -1, 0, 0, 0, -1, -1] +shakeups -0.5 0.92195 [2, -1, 0, 0, -1, -1, -1, -1, -1, -1] +shakier -0.9 0.3 [-1, -1, 0, -1, -1, -1, -1, -1, -1, -1] +shakiest -1.2 0.74833 [-1, 0, 0, -1, -1, -1, -2, -2, -2, -2] +shakily -0.7 0.45826 [-1, -1, -1, -1, -1, 0, 0, 0, -1, -1] +shakiness -0.7 1.1 [2, -1, -1, -1, -2, -1, -1, -2, 0, 0] +shaking -0.7 0.45826 [-1, -1, -1, 0, -1, -1, 0, 0, -1, -1] +shaky -0.9 0.3 [-1, -1, -1, 0, -1, -1, -1, -1, -1, -1] +shame -2.1 0.53852 [-2, -2, -2, -3, -3, -1, -2, -2, -2, -2] +shamed -2.6 0.4899 [-2, -3, -3, -2, -3, -3, -3, -2, -2, -3] +shamefaced -2.3 0.64031 [-2, -2, -2, -3, -3, -3, -3, -1, -2, -2] +shamefacedly -1.9 0.3 [-2, -2, -2, -2, -2, -2, -2, -1, -2, -2] +shamefacedness -2.0 0.89443 [-1, -1, -2, -2, -2, -1, -2, -4, -2, -3] +shamefast -1.0 0.44721 [-1, -1, 0, -1, -1, -1, -1, -2, -1, -1] +shameful -2.2 0.6 [-3, -3, -2, -2, -2, -3, -1, -2, -2, -2] +shamefully -1.9 0.7 [-2, -3, -1, -3, -1, -2, -2, -1, -2, -2] +shamefulness -2.4 0.4899 [-2, -3, -3, -2, -3, -2, -3, -2, -2, -2] +shamefulnesses -2.3 0.78102 [-4, -2, -2, -2, -3, -1, -2, -2, -3, -2] +shameless -1.4 1.0198 [-1, -1, 1, -2, -3, -1, -2, -2, -1, -2] +shamelessly -1.4 1.0198 [-1, 0, -1, -2, 0, -1, -3, -3, -1, -2] +shamelessness -1.4 1.0198 [-1, -3, -2, 1, -2, -1, -2, -2, -1, -1] +shamelessnesses -2.0 1.0 [-2, 0, -2, -4, -2, -1, -2, -3, -2, -2] +shames -1.7 0.9 [-3, -3, -3, -1, -1, -1, -1, -1, -1, -2] +share 1.2 0.74833 [0, 1, 1, 2, 2, 2, 1, 1, 0, 2] +shared 1.4 0.4899 [2, 2, 2, 1, 2, 1, 1, 1, 1, 1] +shares 1.2 0.87178 [0, 2, 1, 1, 0, 2, 2, 2, 2, 0] +sharing 1.8 0.6 [2, 2, 1, 2, 2, 3, 1, 1, 2, 2] +shattered -2.1 0.7 [-1, -3, -3, -2, -2, -2, -3, -2, -1, -2] +shit -2.6 1.0198 [-2, -1, -4, -3, -4, -4, -2, -2, -2, -2] +shitake -0.3 1.26886 [-4, 0, 0, 0, 0, 0, 0, 0, 1, 0] +shitakes -1.1 1.7 [0, -4, 0, 0, 0, 0, -3, 0, -4, 0] +shithead -3.1 0.83066 [-3, -4, -4, -3, -4, -3, -1, -3, -3, -3] +shitheads -2.6 1.35647 [-2, -3, -4, -3, -3, -3, -2, -4, 1, -3] +shits -2.1 1.22066 [-3, 0, -3, 0, -2, -4, -2, -2, -2, -3] +shittah 0.1 1.3 [-2, -2, 0, 2, 0, 0, 0, 0, 1, 2] +shitted -1.7 0.64031 [-2, -1, -2, -1, -2, -2, -3, -1, -2, -1] +shittier -2.1 0.83066 [-3, -3, -2, -1, -1, -1, -3, -2, -2, -3] +shittiest -3.4 0.66332 [-3, -4, -3, -4, -4, -4, -3, -3, -4, -2] +shittim -0.6 1.0198 [-3, 0, 0, 0, 0, -2, 0, 0, -1, 0] +shittimwood -0.3 0.9 [0, 0, -3, 0, 0, 0, 0, 0, 0, 0] +shitting -1.8 0.9798 [-1, -2, -2, -1, -3, -1, -1, -2, -4, -1] +shitty -2.6 0.8 [-3, -4, -2, -3, -3, -2, -3, -1, -2, -3] +shock -1.6 0.91652 [0, -3, -1, -2, -1, -2, -2, -1, -3, -1] +shockable -1.0 1.0 [-3, -1, -1, 0, 0, -2, -1, -2, 0, 0] +shocked -1.3 1.18743 [-2, -1, -1, 0, 0, -2, 0, -2, -1, -4] +shocker -0.6 1.49666 [-2, -1, 3, -1, 0, -3, -1, 0, -1, 0] +shockers -1.1 0.9434 [-1, -2, -2, -1, -1, 0, 0, -3, 0, -1] +shocking -1.7 1.34536 [-3, -3, 0, -1, 0, -3, 0, -1, -3, -3] +shockingly -0.7 1.48661 [-2, 0, -1, -3, -3, 0, 2, 0, 0, 0] +shockproof 1.3 0.64031 [1, 0, 1, 1, 2, 2, 1, 2, 1, 2] +shocks -1.6 0.91652 [-3, -1, 0, -1, -2, -2, -1, -3, -2, -1] +shook -0.4 0.66332 [-1, -2, 0, 0, 0, 0, 0, 0, 0, -1] +shoot -1.4 1.11355 [-1, -4, -1, -1, -2, 0, -2, 0, -1, -2] +short-sighted -1.2 0.6 [0, -1, -2, -2, -1, -1, -1, -2, -1, -1] +short-sightedness -1.1 1.37477 [-1, -2, -2, -2, -3, -1, 0, 2, 0, -2] +shortage -1.0 1.09545 [-2, -2, -1, -2, -1, -1, 2, -1, -1, -1] +shortages -0.6 1.0198 [0, -2, -1, -1, 0, -2, 1, 1, -1, -1] +shrew -0.9 1.04403 [-2, -1, -2, -2, 1, 0, 0, 0, -1, -2] +shy -1.0 0.0 [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1] +shyer -0.8 0.6 [-1, -1, -1, -1, 0, -1, 0, 0, -2, -1] +shying -0.9 0.83066 [-1, -2, -1, 0, -2, 0, 0, 0, -2, -1] +shylock -2.1 1.13578 [-2, -2, -2, 0, -3, -3, -3, -3, 0, -3] +shylocked -0.7 1.00499 [0, -3, -1, 0, 0, -2, 0, -1, 0, 0] +shylocking -1.5 1.11803 [0, -2, -3, 0, -1, -3, -2, 0, -2, -2] +shylocks -1.4 1.11355 [0, -2, -1, -2, -3, 0, -3, -1, -2, 0] +shyly -0.7 0.45826 [-1, -1, -1, -1, 0, 0, -1, 0, -1, -1] +shyness -1.3 1.00499 [-2, 0, -3, 0, -1, -2, -2, -1, -2, 0] +shynesses -1.2 0.6 [-2, -1, -1, -2, -1, -2, 0, -1, -1, -1] +shyster -1.6 0.66332 [-2, -1, -2, -3, -2, -1, -1, -1, -1, -2] +shysters -0.9 0.7 [0, -2, 0, 0, -2, -1, -1, -1, -1, -1] +sick -2.3 0.78102 [-1, -2, -3, -2, -2, -4, -3, -2, -2, -2] +sicken -1.9 0.7 [-2, -3, -1, -3, -1, -1, -2, -2, -2, -2] +sickened -2.5 0.92195 [-3, -2, -4, -3, -1, -1, -3, -3, -2, -3] +sickener -2.2 0.87178 [-3, -1, -2, -3, -1, -1, -3, -3, -2, -3] +sickeners -2.2 0.6 [-3, -1, -2, -3, -2, -3, -2, -2, -2, -2] +sickening -2.4 0.91652 [-3, -4, -1, -3, -2, -2, -1, -3, -2, -3] +sickeningly -2.1 0.7 [-3, -3, -1, -2, -2, -1, -3, -2, -2, -2] +sickens -2.0 0.63246 [-2, -1, -2, -2, -3, -2, -1, -2, -3, -2] +sigh 0.1 1.22066 [2, -1, -1, -1, 0, 2, 1, 1, -1, -1] +significance 1.1 1.22066 [0, 0, 0, 1, 3, 2, 3, 2, 0, 0] +significant 0.8 0.9798 [1, 0, 1, 3, 0, 1, 0, 0, 2, 0] +silencing -0.5 0.67082 [-2, -1, 0, 0, 0, 0, 0, -1, 0, -1] +sillibub -0.1 0.3 [0, 0, 0, 0, -1, 0, 0, 0, 0, 0] +sillier 1.0 0.7746 [1, 1, 0, 2, 0, 1, 1, 2, 2, 0] +sillies 0.8 0.74833 [2, 1, 0, 1, 0, 1, 0, 2, 1, 0] +silliest 0.8 0.9798 [0, 1, 1, 1, 1, 0, 3, 1, -1, 1] +sillily -0.1 1.04403 [1, -1, -1, -1, 2, 1, -1, 0, 0, -1] +sillimanite 0.1 0.3 [1, 0, 0, 0, 0, 0, 0, 0, 0, 0] +sillimanites 0.2 0.6 [0, 0, 0, 0, 2, 0, 0, 0, 0, 0] +silliness -0.9 1.22066 [1, -3, -1, 0, 1, -1, -2, -1, -2, -1] +sillinesses -1.2 1.46969 [-3, -2, -3, 0, -2, 0, 1, -2, -2, 1] +silly 0.1 1.04403 [1, 1, 0, 0, 0, 2, -1, -2, 0, 0] +sin -2.6 0.8 [-2, -4, -3, -2, -2, -2, -4, -3, -2, -2] +sincere 1.7 0.78102 [1, 2, 3, 0, 2, 2, 2, 2, 1, 2] +sincerely 2.1 1.04403 [1, 3, 2, 4, 2, 3, 1, 1, 3, 1] +sincereness 1.8 0.74833 [3, 1, 1, 2, 2, 3, 1, 2, 2, 1] +sincerer 2.0 1.0 [1, 3, 3, 2, 3, 2, 1, 3, 0, 2] +sincerest 2.0 1.34164 [0, 3, 1, 1, 4, 2, 1, 4, 1, 3] +sincerities 1.5 0.67082 [2, 1, 1, 1, 1, 1, 3, 2, 2, 1] +sinful -2.6 0.8 [-4, -3, -3, -2, -1, -2, -3, -2, -3, -3] +singleminded 1.2 0.87178 [1, 2, 0, 0, 3, 2, 1, 1, 1, 1] +sinister -2.9 1.13578 [-4, -4, -1, -3, -1, -4, -3, -3, -2, -4] +sins -2.0 1.0 [-2, -1, -2, -3, -1, -4, -3, -2, -1, -1] +skeptic -0.9 1.13578 [0, 0, -1, -1, -1, 0, -2, -2, 1, -3] +skeptical -1.3 0.9 [0, -3, -2, -2, -1, -2, 0, -1, -1, -1] +skeptically -1.2 0.4 [-1, -1, -1, -1, -1, -1, -2, -1, -1, -2] +skepticism -1.0 0.89443 [0, 0, -1, -1, -1, -1, 0, -1, -3, -2] +skepticisms -1.2 0.9798 [1, -2, 0, -1, -2, -1, -2, -2, -1, -2] +skeptics -0.4 0.91652 [-2, 0, 0, -1, -1, 1, -1, 0, 1, -1] +slam -1.6 1.11355 [-2, -1, -3, -1, -3, -2, -1, -2, 1, -2] +slash -1.1 1.22066 [-2, -3, -2, 0, -2, 0, -1, -2, 0, 1] +slashed -0.9 0.83066 [-2, -1, -2, -1, -1, 0, 1, -1, -1, -1] +slashes -0.8 0.6 [0, -1, -2, -1, 0, 0, -1, -1, -1, -1] +slashing -1.1 1.86815 [-3, -2, -3, -3, 3, 1, 0, -1, -2, -1] +slavery -3.8 0.4 [-4, -3, -4, -3, -4, -4, -4, -4, -4, -4] +sleeplessness -1.6 1.49666 [-3, -4, -2, -1, -2, -2, -2, 2, -1, -1] +slicker 0.4 1.28062 [-2, 1, -1, 2, 0, 0, 2, 2, 0, 0] +slickest 0.3 1.00499 [1, 0, -1, 0, -1, 0, 0, 0, 2, 2] +sluggish -1.7 0.64031 [-1, -2, -1, -3, -2, -2, -1, -2, -1, -2] +slut -2.8 0.87178 [-4, -2, -2, -1, -3, -3, -3, -3, -4, -3] +sluts -2.7 1.48661 [-3, -3, -4, -4, -3, -4, -1, -3, 1, -3] +sluttier -2.7 1.18743 [-2, -2, -4, -3, -4, -4, -1, -1, -2, -4] +sluttiest -3.1 0.83066 [-3, -4, -3, -4, -3, -4, -2, -2, -4, -2] +sluttish -2.2 0.87178 [-2, -3, -3, -2, -2, -4, -2, -1, -1, -2] +sluttishly -2.1 1.13578 [-2, 0, -2, -3, -1, -2, -3, -1, -3, -4] +sluttishness -2.5 0.92195 [-2, -1, -3, -4, -2, -1, -3, -3, -3, -3] +sluttishnesses -2.0 1.09545 [0, -2, -1, -3, -3, -1, -3, -1, -3, -3] +slutty -2.3 0.9 [-3, -1, -3, -3, -3, -2, -1, -3, -1, -3] +smart 1.7 0.78102 [2, 2, 1, 2, 1, 3, 2, 0, 2, 2] +smartass -2.1 0.83066 [-1, -1, -2, -3, -2, -1, -2, -3, -3, -3] +smartasses -1.7 2.05183 [-1, -2, -3, -3, -3, -1, -2, -3, 4, -3] +smarted 0.7 1.41774 [2, 1, -2, 1, 1, 2, 2, 2, -1, -1] +smarten 1.9 0.7 [3, 1, 2, 1, 2, 2, 2, 3, 1, 2] +smartened 1.5 0.67082 [2, 2, 1, 3, 1, 1, 1, 1, 2, 1] +smartening 1.7 0.9 [1, 3, 3, 1, 1, 1, 2, 1, 1, 3] +smartens 1.5 0.5 [2, 2, 1, 1, 1, 1, 2, 2, 2, 1] +smarter 2.0 0.7746 [2, 2, 1, 1, 2, 2, 2, 2, 4, 2] +smartest 3.0 1.0 [4, 3, 4, 3, 2, 2, 4, 3, 1, 4] +smartie 1.3 0.9 [1, 4, 1, 1, 1, 1, 1, 1, 1, 1] +smarties 1.7 0.9 [1, 1, 2, 4, 2, 2, 1, 2, 1, 1] +smarting -0.7 1.9 [2, 3, -1, -2, 1, -2, -1, -3, -2, -2] +smartly 1.5 0.67082 [2, 1, 1, 1, 1, 2, 1, 3, 1, 2] +smartness 2.0 0.89443 [1, 3, 3, 1, 2, 1, 2, 3, 1, 3] +smartnesses 1.5 0.92195 [1, 0, 1, 1, 1, 2, 1, 2, 3, 3] +smarts 1.6 0.66332 [2, 1, 3, 1, 2, 1, 2, 1, 2, 1] +smartweed 0.2 0.6 [0, 0, 0, 0, 0, 2, 0, 0, 0, 0] +smartweeds 0.1 0.53852 [0, 0, -1, 0, 0, 0, 1, 0, 0, 1] +smarty 1.1 0.53852 [0, 2, 1, 2, 1, 1, 1, 1, 1, 1] +smear -1.5 1.20416 [-2, -1, -1, -2, -3, 0, 0, -4, -1, -1] +smilax 0.6 0.66332 [0, 2, 1, 0, 0, 0, 1, 1, 1, 0] +smilaxes 0.3 0.78102 [0, 0, 0, 0, 1, 2, 1, -1, 0, 0] +smile 1.5 0.67082 [2, 1, 1, 1, 2, 2, 3, 1, 1, 1] +smiled 2.5 0.80623 [3, 2, 3, 2, 1, 2, 3, 4, 3, 2] +smileless -1.4 0.4899 [-1, -1, -1, -1, -2, -1, -2, -1, -2, -2] +smiler 1.7 0.78102 [1, 1, 3, 1, 3, 2, 2, 2, 1, 1] +smiles 2.1 1.04403 [2, 4, 2, 1, 3, 1, 1, 3, 1, 3] +smiley 1.7 0.78102 [1, 2, 1, 2, 2, 0, 2, 3, 2, 2] +smileys 1.5 0.92195 [1, 2, 1, 3, 1, 0, 1, 3, 1, 2] +smiling 2.0 1.18322 [2, 1, 1, 1, 2, 3, 4, 1, 4, 1] +smilingly 2.3 0.64031 [3, 2, 3, 2, 3, 1, 2, 2, 2, 3] +smog -1.2 0.6 [-1, -1, -2, -1, -1, -2, -2, -1, 0, -1] +smother -1.8 0.87178 [-2, -2, -3, -1, -2, -1, -2, -2, -3, 0] +smothered -0.9 1.7 [2, -4, 0, -1, -3, -2, 0, -1, 1, -1] +smothering -1.4 1.56205 [-2, -3, -1, -4, 0, -2, -1, 2, -1, -2] +smothers -1.9 1.04403 [-1, -1, -3, -1, -2, -3, 0, -2, -3, -3] +smothery -1.1 0.7 [-2, 0, -2, -1, -2, -1, 0, -1, -1, -1] +smug 0.8 1.16619 [-1, 2, 0, 2, 1, -1, 2, 1, 0, 2] +smugger -1.0 0.89443 [1, -2, -1, -2, -1, -1, -1, 0, -2, -1] +smuggest -1.5 1.28452 [-1, -1, -1, 1, -1, -3, -4, -2, -1, -2] +smuggle -1.6 1.11355 [-2, -1, -1, -1, -2, 0, -1, -1, -3, -4] +smuggled -1.5 0.92195 [-1, -1, -2, -1, -1, -1, -2, -1, -1, -4] +smuggler -2.1 1.22066 [-1, -3, -3, -1, -1, -1, -4, -1, -2, -4] +smugglers -1.4 1.56205 [-2, -3, -4, 1, -2, 0, -2, 1, -1, -2] +smuggles -1.7 1.00499 [-1, -2, -2, -1, -1, -1, -3, -1, -1, -4] +smuggling -2.1 0.83066 [-3, -2, -2, -1, -2, -2, -1, -2, -4, -2] +smugly 0.2 1.249 [-1, 2, -1, -1, 1, 1, -1, 1, 2, -1] +smugness -1.4 1.11355 [-1, -1, -1, -3, -3, -2, 1, -1, -2, -1] +smugnesses -1.7 0.78102 [-1, -1, -2, -1, -3, -1, -2, -2, -3, -1] +sneaky -0.9 0.7 [-1, -1, -1, -2, -1, -1, -1, 1, -1, -1] +snob -2.0 0.63246 [-2, -2, -2, -2, -2, -1, -3, -1, -3, -2] +snobbery -2.0 0.63246 [-1, -2, -2, -2, -2, -3, -2, -1, -3, -2] +snobbier -0.7 1.00499 [-1, 2, -1, -1, -1, -1, -1, 0, -2, -1] +snobbiest -0.5 1.11803 [-2, -2, 1, -1, 1, -1, 0, -1, 1, -1] +snobbily -1.6 1.11355 [-1, -2, -2, -2, -1, -3, -3, -1, 1, -2] +snobbish -0.9 1.37477 [-2, -1, 1, -1, 1, -2, -3, -2, 1, -1] +snobbishly -1.2 1.249 [-2, 1, -2, -1, -2, -3, -1, -2, -1, 1] +snobbishness -1.1 1.22066 [-1, -2, -2, -1, -3, -1, -1, -1, 2, -1] +snobbishnesses -1.7 0.78102 [-2, -1, -3, -2, -1, -1, -2, -1, -3, -1] +snobbism -1.0 1.41421 [-2, -1, 1, -1, 1, -2, -3, -2, 1, -2] +snobbisms -0.3 1.18743 [1, -1, -1, 0, -1, -1, 1, -2, 2, -1] +snobby -1.7 1.00499 [-1, -1, -1, -3, -2, -2, 0, -3, -3, -1] +snobs -1.4 1.0198 [-2, -1, -1, -2, -2, -3, -1, -2, 1, -1] +snub -1.8 0.4 [-2, -2, -1, -2, -2, -2, -2, -2, -1, -2] +snubbed -2.0 0.7746 [-2, -2, 0, -2, -3, -2, -2, -2, -3, -2] +snubbing -0.9 1.13578 [-2, -1, -1, -1, 1, -1, -3, 1, -1, -1] +snubs -2.1 0.9434 [-2, -1, -1, -1, -3, -2, -4, -3, -2, -2] +sob -1.0 1.34164 [-1, -2, -2, -2, -1, -1, 2, 1, -2, -2] +sobbed -1.9 1.3 [-2, -4, 1, -1, -3, -1, -3, -2, -2, -2] +sobbing -1.6 1.49666 [1, -2, -3, -1, -1, -3, 1, -2, -3, -3] +sobering -0.8 1.32665 [2, -2, 0, -2, -1, -1, -2, 1, -1, -2] +sobs -2.5 0.67082 [-3, -3, -2, -2, -3, -3, -3, -1, -2, -3] +sociabilities 1.2 0.9798 [1, 3, 1, 2, 0, 1, 0, 2, 2, 0] +sociability 1.1 0.9434 [0, 1, 1, 1, 0, 2, 1, 0, 2, 3] +sociable 1.9 0.7 [1, 1, 2, 3, 1, 2, 2, 2, 3, 2] +sociableness 1.5 0.5 [1, 1, 1, 2, 2, 2, 1, 2, 1, 2] +sociably 1.6 0.91652 [3, 2, 0, 1, 3, 2, 1, 1, 2, 1] +sok 1.3 1.1 [0, 1, 2, 1, 1, 0, 1, 4, 2, 1] +solemn -0.3 1.1 [-1, -2, -1, 0, -1, 2, 0, -1, 1, 0] +solemnified -0.5 0.67082 [0, 0, 0, 0, -1, -1, -1, 0, -2, 0] +solemnifies -0.5 0.67082 [0, 0, 0, 0, -1, -2, -1, 0, -1, 0] +solemnify 0.3 1.18743 [2, 1, 2, 1, 0, 0, -2, -1, 0, 0] +solemnifying 0.1 1.3 [2, -1, 0, -3, 0, 1, 1, 1, 0, 0] +solemnities 0.3 0.78102 [0, 1, -1, 0, 0, 0, 2, 1, 0, 0] +solemnity -1.1 0.9434 [0, -2, 0, -2, -2, -1, -2, 0, 0, -2] +solemnization 0.7 1.34536 [-1, -1, 0, 2, 2, 0, 3, 2, 0, 0] +solemnize 0.3 0.78102 [1, -1, 0, 2, 0, 0, 1, 0, 0, 0] +solemnized -0.7 0.9 [0, 0, 0, -1, -1, -1, -1, 0, 0, -3] +solemnizes 0.6 0.91652 [0, 0, 0, 0, 0, 0, 2, 2, 2, 0] +solemnizing -0.6 0.8 [0, 0, -1, -1, 0, 0, -2, -2, 0, 0] +solemnly 0.8 0.9798 [0, 2, 0, 1, 1, 2, -1, 2, 1, 0] +solid 0.6 0.8 [0, 2, 1, 2, 0, 1, 0, 0, 0, 0] +solidarity 1.2 0.6 [1, 1, 1, 1, 2, 0, 1, 2, 2, 1] +solution 1.3 0.64031 [1, 2, 1, 2, 1, 1, 2, 2, 0, 1] +solutions 0.7 0.78102 [1, 1, 2, 0, 1, 0, 2, 0, 0, 0] +solve 0.8 0.4 [0, 1, 1, 1, 1, 0, 1, 1, 1, 1] +solved 1.1 0.53852 [1, 2, 1, 0, 1, 1, 1, 2, 1, 1] +solves 1.1 0.7 [2, 0, 1, 0, 1, 2, 1, 2, 1, 1] +solving 1.4 0.8 [0, 3, 1, 2, 1, 1, 2, 1, 2, 1] +somber -1.8 0.6 [-1, -2, -2, -3, -2, -1, -2, -1, -2, -2] +son-of-a-bitch -2.7 0.64031 [-3, -3, -3, -1, -2, -3, -3, -3, -3, -3] +soothe 1.5 0.92195 [3, 2, 2, 1, 2, 0, 2, 0, 2, 1] +soothed 0.5 1.43178 [2, -3, 1, 1, 0, 1, 1, 1, 2, -1] +soothing 1.3 0.64031 [2, 1, 2, 1, 1, 1, 2, 0, 2, 1] +sophisticated 2.6 0.91652 [3, 4, 3, 3, 3, 1, 2, 1, 3, 3] +sore -1.5 0.5 [-2, -2, -2, -1, -1, -1, -2, -1, -1, -2] +sorrow -2.4 0.8 [-2, -2, -2, -1, -2, -3, -2, -4, -3, -3] +sorrowed -2.4 0.8 [-1, -2, -3, -3, -2, -3, -2, -4, -2, -2] +sorrower -2.3 0.78102 [-1, -2, -1, -3, -3, -2, -2, -3, -3, -3] +sorrowful -2.2 0.6 [-3, -3, -2, -2, -2, -2, -3, -1, -2, -2] +sorrowfully -2.3 0.64031 [-3, -3, -2, -1, -2, -2, -3, -2, -2, -3] +sorrowfulness -2.5 0.67082 [-4, -3, -2, -3, -2, -3, -2, -2, -2, -2] +sorrowing -1.7 1.26886 [-2, -2, 1, -1, -1, -2, -4, -3, -2, -1] +sorrows -1.6 0.66332 [-1, -1, -2, -1, -2, -2, -1, -2, -1, -3] +sorry -0.3 1.61555 [-1, 0, -1, -2, -1, -1, 4, 1, -1, -1] +soulmate 2.9 0.83066 [4, 2, 2, 2, 3, 4, 3, 3, 2, 4] +spam -1.5 1.0247 [-1, -1, -1, -2, 1, -2, -3, -2, -2, -2] +spammer -2.2 0.6 [-3, -2, -2, -1, -2, -3, -2, -2, -3, -2] +spammers -1.6 1.11355 [-2, -1, -2, -3, -2, -1, -2, -1, 1, -3] +spamming -2.1 0.83066 [-3, -3, -1, -3, -2, -1, -2, -2, -1, -3] +spark 0.9 1.04403 [0, 2, 1, 1, 0, 1, 3, -1, 1, 1] +sparkle 1.8 0.74833 [0, 2, 2, 2, 1, 2, 3, 2, 2, 2] +sparkles 1.3 1.18743 [3, 2, 0, 0, 3, 0, 2, 0, 1, 2] +sparkling 1.2 0.4 [1, 1, 1, 2, 1, 1, 1, 2, 1, 1] +special 1.7 0.78102 [3, 1, 3, 2, 2, 1, 1, 2, 1, 1] +speculative 0.4 1.11355 [1, -1, 1, 0, -1, -1, 1, 2, 2, 0] +spirit 0.7 1.00499 [0, 0, 1, 2, 3, 1, 0, 0, 0, 0] +spirited 1.3 1.00499 [1, 1, 0, 1, 1, 3, 2, 3, 0, 1] +spiritless -1.3 0.64031 [-2, -1, -1, -2, -2, -1, 0, -1, -2, -1] +spite -2.4 0.8 [-2, -2, -3, -2, -3, -2, -4, -1, -3, -2] +spited -2.4 0.91652 [-2, -3, -3, -4, -2, -1, -2, -1, -3, -3] +spiteful -1.9 1.75784 [-2, 3, -2, -3, -2, -3, -2, -2, -4, -2] +spitefully -2.3 0.78102 [-2, -2, -1, -3, -3, -2, -2, -2, -4, -2] +spitefulness -1.5 1.74642 [-3, -2, 1, -3, -3, -3, -2, 2, 0, -2] +spitefulnesses -2.3 0.9 [-1, -4, -2, -3, -3, -2, -2, -3, -1, -2] +spites -1.4 1.28062 [0, -2, -2, -3, -2, -1, 1, 0, -3, -2] +splendent 2.7 0.78102 [3, 2, 1, 3, 2, 3, 4, 3, 3, 3] +splendid 2.8 0.9798 [4, 2, 3, 4, 2, 2, 3, 1, 3, 4] +splendidly 2.1 1.22066 [1, 4, 1, 3, 3, 4, 1, 2, 1, 1] +splendidness 2.3 0.9 [2, 1, 3, 3, 4, 2, 1, 3, 2, 2] +splendiferous 2.6 1.95959 [4, 4, 3, -3, 3, 3, 4, 2, 3, 3] +splendiferously 1.9 1.3 [2, 4, 4, 3, 0, 1, 1, 1, 2, 1] +splendiferousness 1.7 1.18743 [1, 2, 3, 1, 2, 3, 3, 2, -1, 1] +splendor 3.0 0.63246 [3, 3, 3, 3, 3, 2, 4, 4, 3, 2] +splendorous 2.2 0.87178 [4, 2, 1, 2, 2, 3, 3, 1, 2, 2] +splendors 2.0 0.44721 [2, 2, 2, 2, 3, 2, 2, 2, 1, 2] +splendour 2.2 0.6 [2, 2, 2, 3, 3, 1, 2, 3, 2, 2] +splendours 2.2 1.249 [3, 0, 2, 1, 4, 3, 2, 4, 1, 2] +splendrous 2.2 1.16619 [4, 4, 3, 2, 1, 1, 3, 1, 2, 1] +sprightly 2.0 0.89443 [0, 2, 3, 2, 2, 1, 2, 3, 3, 2] +squelched -1.0 0.63246 [-1, -1, -1, -1, 0, -2, -1, 0, -1, -2] +stab -2.8 0.6 [-3, -2, -2, -3, -3, -3, -3, -2, -4, -3] +stabbed -1.9 1.22066 [-2, -1, -3, -2, -2, 1, -3, -3, -1, -3] +stable 1.2 0.74833 [1, 2, 2, 0, 1, 2, 1, 1, 2, 0] +stabs -1.9 1.13578 [-3, -3, -4, 0, -1, -2, -2, -2, -1, -1] +stall -0.8 0.74833 [-1, 0, -1, 0, -1, 0, -2, 0, -2, -1] +stalled -0.8 0.87178 [-2, -1, 0, -1, -1, 0, 1, -2, -1, -1] +stalling -0.8 1.4 [-3, -2, -1, -1, 0, 2, 1, -2, -1, -1] +stamina 1.2 0.9798 [1, 0, 3, 0, 1, 2, 2, 1, 2, 0] +stammer -0.9 0.3 [-1, 0, -1, -1, -1, -1, -1, -1, -1, -1] +stammered -0.9 0.7 [-2, -1, -1, -1, 1, -1, -1, -1, -1, -1] +stammerer -1.1 0.3 [-1, -2, -1, -1, -1, -1, -1, -1, -1, -1] +stammerers -0.8 0.4 [-1, -1, -1, -1, -1, 0, 0, -1, -1, -1] +stammering -1.0 0.63246 [-2, -1, 0, -1, -1, -2, 0, -1, -1, -1] +stammers -0.8 0.4 [-1, -1, -1, 0, -1, -1, -1, 0, -1, -1] +stampede -1.8 1.07703 [-2, -3, -2, -3, 0, 0, -2, -1, -2, -3] +stank -1.9 1.04403 [-2, -2, -2, -1, -2, -4, -3, 0, -1, -2] +startle -1.3 0.64031 [-1, -1, -1, -1, -1, -2, -1, -1, -3, -1] +startled -0.7 0.78102 [-2, -1, -1, 0, 1, -1, -1, 0, -1, -1] +startlement -0.5 1.20416 [-1, 0, 0, 1, -1, -1, 2, -2, -1, -2] +startlements 0.2 1.32665 [2, 2, 0, 0, -1, 2, 0, -2, -1, 0] +startler -0.8 0.74833 [-2, -1, -1, 0, 1, -1, -1, -1, -1, -1] +startlers -0.5 0.80623 [0, 0, 0, 0, -1, -1, -1, 1, -1, -2] +startles -0.5 1.36015 [-2, 2, -1, 0, 2, -1, -1, -2, -1, -1] +startling 0.3 1.41774 [-2, 2, -1, 0, -1, 2, -1, 1, 1, 2] +startlingly -0.3 0.9 [-1, -1, 0, -2, 1, 0, 1, 0, -1, 0] +starve -1.9 2.02237 [2, -3, -4, -1, -3, -4, -1, -2, 1, -4] +starved -2.6 1.11355 [-3, -4, -1, -3, -3, -4, -1, -1, -3, -3] +starves -2.3 0.78102 [-3, -2, -2, -3, -2, -3, -1, -1, -3, -3] +starving -1.8 2.03961 [-2, -2, -4, -4, -3, -3, 2, 2, -2, -2] +steadfast 1.0 1.0 [0, 0, 2, 1, 1, 2, 3, 0, 1, 0] +steal -2.2 0.6 [-2, -2, -2, -3, -3, -3, -1, -2, -2, -2] +stealable -1.7 1.00499 [-3, -1, -2, -1, -2, -1, -1, -1, -4, -1] +stealer -1.7 0.78102 [-2, -2, -1, -2, -3, -1, -2, -2, -2, 0] +stealers -2.2 0.74833 [-2, -2, -2, -4, -2, -2, -3, -1, -2, -2] +stealing -2.7 0.9 [-3, -2, -2, -4, -4, -3, -1, -3, -2, -3] +stealings -1.9 0.9434 [-2, -2, -1, -1, -1, -3, -4, -2, -1, -2] +steals -2.3 0.64031 [-4, -2, -2, -3, -2, -2, -2, -2, -2, -2] +stealth -0.3 1.34536 [-2, 1, 1, -1, 0, -3, 0, 1, -1, 1] +stealthier -0.3 1.00499 [0, 0, -3, 0, 0, 1, 0, -1, 0, 0] +stealthiest 0.4 2.10713 [-1, 2, 1, 1, 3, 4, -1, 0, -2, -3] +stealthily 0.1 1.37477 [2, 0, 0, -1, 1, 0, -3, 2, 0, 0] +stealthiness 0.2 0.74833 [1, 0, 0, -1, 1, 0, -1, 0, 1, 1] +stealths -0.3 0.78102 [-2, 0, 0, -1, 0, 1, -1, 0, 0, 0] +stealthy -0.1 0.7 [0, 0, 0, -1, 1, -1, -1, 0, 1, 0] +stench -2.3 0.64031 [-3, -2, -2, -3, -3, -1, -3, -2, -2, -2] +stenches -1.5 1.11803 [-2, -2, -1, -3, 0, 0, -3, -2, 0, -2] +stenchful -2.4 0.91652 [-3, -1, -3, -1, -2, -2, -3, -4, -2, -3] +stenchy -2.3 1.00499 [-4, -1, -2, -3, -1, -1, -2, -3, -3, -3] +stereotype -1.3 0.78102 [-1, -1, -2, 0, -2, 0, -2, -1, -2, -2] +stereotyped -1.2 0.4 [-1, -1, -2, -1, -2, -1, -1, -1, -1, -1] +stifled -1.4 0.66332 [-1, -1, -1, -1, -3, -1, -2, -2, -1, -1] +stimulate 0.9 0.83066 [1, 0, 1, 1, 1, 2, -1, 2, 1, 1] +stimulated 0.9 0.7 [1, 0, 0, 0, 1, 1, 2, 1, 2, 1] +stimulates 1.0 0.89443 [1, 0, 0, 0, 1, 1, 2, 1, 3, 1] +stimulating 1.9 0.7 [2, 3, 2, 1, 3, 2, 1, 2, 1, 2] +stingy -1.6 0.8 [-1, 0, -2, -2, -1, -1, -2, -2, -3, -2] +stink -1.7 0.64031 [-2, -2, -1, -3, -2, -1, -1, -2, -1, -2] +stinkard -2.3 0.9 [-2, -3, -3, -2, -3, -2, -3, -3, 0, -2] +stinkards -1.0 1.26491 [-2, -1, 2, -2, -1, -1, 0, -3, -1, -1] +stinkbug -0.2 0.4 [-1, 0, 0, 0, 0, 0, 0, 0, -1, 0] +stinkbugs -1.0 1.26491 [0, 0, 0, -4, -1, -2, -1, 0, -2, 0] +stinker -1.5 0.80623 [-3, -1, -3, -1, -1, -2, -1, -1, -1, -1] +stinkers -1.2 1.07703 [-3, 1, -1, -2, -2, -1, -1, -2, 0, -1] +stinkhorn -0.2 1.16619 [-2, -2, 0, 0, -1, 0, 1, 2, 0, 0] +stinkhorns -0.8 0.9798 [0, -3, 0, -2, 0, 0, -1, -1, -1, 0] +stinkier -1.5 1.0247 [-2, -1, -2, -2, -1, 1, -2, -1, -3, -2] +stinkiest -2.1 1.57797 [-1, -2, -3, -4, -2, -1, 1, -4, -1, -4] +stinking -2.4 0.91652 [-2, -4, -2, -3, -3, -1, -2, -1, -3, -3] +stinkingly -1.3 1.55242 [-2, -3, -3, -2, -2, 1, -2, 2, -1, -1] +stinko -1.5 0.80623 [-1, -2, -2, -2, 0, -1, -2, -1, -1, -3] +stinkpot -2.5 0.92195 [-4, -1, -3, -4, -2, -2, -3, -2, -2, -2] +stinkpots -0.7 1.26886 [-1, -3, -2, -1, 0, 2, 0, -1, 0, -1] +stinks -1.0 1.34164 [-2, -2, -1, -2, 2, -1, -2, 1, -1, -2] +stinkweed -0.4 1.0198 [-2, 0, -1, 0, 2, 0, -1, -1, 0, -1] +stinkwood -0.1 1.13578 [0, -2, 0, 0, 0, -2, 1, 0, 2, 0] +stinky -1.5 0.5 [-2, -1, -1, -2, -1, -1, -2, -2, -1, -2] +stolen -2.2 0.9798 [-3, -2, -2, -1, -3, -2, -3, 0, -3, -3] +stop -1.2 0.87178 [-1, 0, -2, -2, 0, -1, -2, -2, 0, -2] +stopped -0.9 0.53852 [-1, -1, -1, -1, -2, -1, -1, -1, 0, 0] +stopping -0.6 0.66332 [-1, 0, 0, -1, 0, 0, 0, -1, -2, -1] +stops -0.6 0.8 [-1, -1, 0, 0, -2, 0, -2, 0, 0, 0] +stout 0.7 1.34536 [2, 0, 3, 1, 2, 1, 0, 0, -2, 0] +straight 0.9 1.04403 [2, 0, 1, 0, 0, 0, 1, 2, 3, 0] +strain -0.2 0.9798 [0, 0, -2, 0, -1, 2, 0, -1, 0, 0] +strained -1.7 0.78102 [0, -2, -1, -1, -2, -2, -2, -3, -2, -2] +strainer -0.8 1.249 [2, -2, -1, 0, -1, 0, -2, 0, -2, -2] +strainers -0.3 0.45826 [0, 0, 0, 0, -1, -1, 0, -1, 0, 0] +straining -1.3 0.78102 [0, -3, -2, -1, -1, -1, -1, -1, -2, -1] +strains -1.2 0.4 [-1, -1, -1, -2, -1, -2, -1, -1, -1, -1] +strange -0.8 0.74833 [0, -1, -1, 0, -2, 0, -1, -2, 0, -1] +strangely -1.2 0.87178 [0, -1, -2, -2, 0, -3, -1, -1, -1, -1] +strangled -2.5 1.0247 [-1, -1, -3, -3, -3, -3, -1, -4, -3, -3] +strength 2.2 0.6 [1, 2, 2, 3, 2, 3, 3, 2, 2, 2] +strengthen 1.3 0.64031 [1, 1, 2, 1, 2, 1, 2, 0, 2, 1] +strengthened 1.8 0.4 [2, 2, 2, 2, 1, 2, 2, 1, 2, 2] +strengthener 1.8 0.6 [2, 0, 2, 2, 2, 2, 2, 2, 2, 2] +strengtheners 1.4 0.91652 [1, 2, 1, 2, 3, 0, 2, 0, 2, 1] +strengthening 2.2 0.74833 [3, 3, 1, 1, 2, 2, 2, 2, 3, 3] +strengthens 2.0 0.63246 [3, 2, 1, 2, 2, 3, 2, 1, 2, 2] +strengths 1.7 0.64031 [2, 1, 3, 1, 2, 1, 2, 1, 2, 2] +stress -1.8 0.6 [-1, -2, -2, -1, -2, -1, -2, -3, -2, -2] +stressed -1.4 0.4899 [-1, -1, -1, -2, -2, -1, -2, -2, -1, -1] +stresses -2.0 1.0 [-3, -3, -2, -1, -2, 0, -2, -1, -3, -3] +stressful -2.3 0.45826 [-2, -2, -2, -2, -3, -3, -2, -3, -2, -2] +stressfully -2.6 0.66332 [-2, -3, -1, -3, -3, -3, -3, -2, -3, -3] +stressing -1.5 0.67082 [-1, -2, -1, -1, -3, -1, -2, -2, -1, -1] +stressless 1.6 0.4899 [1, 2, 1, 2, 1, 2, 1, 2, 2, 2] +stresslessness 1.6 0.8 [1, 3, 1, 3, 2, 1, 2, 1, 1, 1] +stressor -1.8 0.74833 [-2, -1, -1, -2, -3, -2, -1, -2, -3, -1] +stressors -2.1 0.83066 [-3, -2, -2, -2, -3, -1, -3, -1, -1, -3] +stricken -2.3 0.9 [0, -2, -2, -2, -2, -3, -3, -3, -3, -3] +strike -0.5 1.11803 [0, 0, 0, -2, -2, 1, 1, -2, -1, 0] +strikers -0.6 1.0198 [0, 0, -2, -3, 0, 0, -1, 0, 0, 0] +strikes -1.5 0.92195 [0, -2, -2, -2, -3, -1, -2, -1, 0, -2] +strong 2.3 0.78102 [3, 2, 3, 3, 1, 1, 3, 2, 2, 3] +strongbox 0.7 0.78102 [2, 1, 0, 0, 0, 1, 2, 1, 0, 0] +strongboxes 0.3 0.64031 [0, 0, 0, 0, 0, 1, 0, 2, 0, 0] +stronger 1.6 0.66332 [2, 1, 1, 1, 2, 3, 2, 1, 2, 1] +strongest 1.9 0.9434 [2, 3, 2, 1, 2, 2, 0, 3, 1, 3] +stronghold 0.5 0.80623 [0, 2, 0, 0, 2, 0, 0, 0, 0, 1] +strongholds 1.0 0.89443 [2, 2, 0, 1, 2, 2, 1, 0, 0, 0] +strongish 1.7 0.78102 [1, 1, 2, 3, 1, 2, 1, 3, 2, 1] +strongly 1.1 0.83066 [0, 0, 2, 2, 0, 1, 2, 2, 1, 1] +strongman 0.7 1.00499 [0, 1, 3, 0, 1, -1, 1, 1, 0, 1] +strongmen 0.5 1.11803 [-1, 0, 0, 3, 0, 1, 0, 2, 0, 0] +strongyl 0.6 1.0198 [0, 1, 0, 0, 0, 0, 0, 2, 3, 0] +strongyles 0.2 1.07703 [0, -2, 1, 1, -1, 1, 0, 0, 2, 0] +strongyloidosis -0.8 1.66132 [-2, -3, 0, 0, -2, -2, 2, -2, 2, -1] +strongyls 0.1 0.3 [0, 0, 1, 0, 0, 0, 0, 0, 0, 0] +struck -1.0 0.89443 [-1, -2, -1, 0, -2, -2, -1, -1, 1, -1] +struggle -1.3 0.45826 [-2, -1, -2, -1, -2, -1, -1, -1, -1, -1] +struggled -1.4 0.66332 [-2, -2, -1, -1, -1, -1, -2, -2, 0, -2] +struggler -1.1 0.7 [-1, -1, -1, -1, 0, -1, -2, -2, 0, -2] +strugglers -1.4 0.4899 [-1, -2, -1, -1, -2, -1, -2, -2, -1, -1] +struggles -1.5 0.5 [-2, -2, -1, -1, -1, -1, -2, -2, -1, -2] +struggling -1.8 0.6 [-2, -2, -2, -2, -1, -1, -2, -2, -3, -1] +stubborn -1.7 1.00499 [0, -1, -2, -2, -2, -4, -1, -2, -1, -2] +stubborner -1.5 1.20416 [-2, -3, -1, -1, -2, 1, -3, -2, 0, -2] +stubbornest -0.6 1.62481 [-2, 4, -2, -1, -1, 0, -1, -1, -1, -1] +stubbornly -1.4 0.4899 [-2, -2, -1, -2, -1, -1, -2, -1, -1, -1] +stubbornness -1.1 0.53852 [-1, -1, 0, -2, -1, -1, -1, -2, -1, -1] +stubbornnesses -1.5 0.80623 [-1, -2, -3, -1, -1, -3, -1, -1, -1, -1] +stuck -1.0 0.44721 [-1, -1, -1, -1, 0, -1, -1, -1, -1, -2] +stunk -1.6 1.68523 [-2, -2, -3, 2, -2, -3, -3, 1, -1, -3] +stunned -0.4 1.28062 [-1, -3, -1, 0, -1, -1, 0, 2, 1, 0] +stunning 1.6 1.42829 [0, 0, 3, 2, 2, 4, 3, 0, 2, 0] +stuns 0.1 1.04403 [1, 0, -1, -2, 0, 1, 1, -1, 1, 1] +stupid -2.4 0.66332 [-2, -3, -3, -2, -3, -3, -2, -1, -2, -3] +stupider -2.5 0.5 [-3, -2, -3, -3, -2, -2, -3, -2, -3, -2] +stupidest -2.4 0.66332 [-2, -3, -2, -3, -1, -3, -3, -2, -2, -3] +stupidities -2.0 0.7746 [-2, -3, -2, -1, -3, -1, -3, -1, -2, -2] +stupidity -1.9 0.3 [-2, -2, -2, -2, -2, -2, -1, -2, -2, -2] +stupidly -2.0 0.7746 [-1, -2, -3, -3, -1, -3, -2, -1, -2, -2] +stupidness -1.7 0.64031 [-3, -1, -2, -1, -2, -1, -2, -2, -1, -2] +stupidnesses -2.6 0.8 [-2, -2, -2, -4, -4, -3, -3, -2, -2, -2] +stupids -2.3 0.64031 [-2, -3, -1, -3, -2, -3, -3, -2, -2, -2] +stutter -1.0 0.0 [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1] +stuttered -0.9 1.04403 [-1, -1, 2, -1, -1, -1, -2, -2, -1, -1] +stutterer -1.0 1.18322 [-1, -1, 2, -1, -1, -1, -3, -2, -1, -1] +stutterers -1.1 0.53852 [-1, -1, -1, 0, -1, -1, -2, -2, -1, -1] +stuttering -1.3 0.9 [-1, -1, -1, 0, -3, -1, -1, -1, -3, -1] +stutters -1.0 0.63246 [-1, -1, -1, -2, 0, -2, 0, -1, -1, -1] +suave 2.0 0.44721 [2, 3, 2, 2, 2, 1, 2, 2, 2, 2] +submissive -1.3 0.9 [-1, 0, -1, -3, -1, 0, -1, -2, -2, -2] +submissively -1.0 1.18322 [-1, -1, -1, -1, 2, -1, -1, -2, -3, -1] +submissiveness -0.7 0.78102 [-2, 0, -1, 0, -1, 0, -2, 0, -1, 0] +substantial 0.8 0.6 [2, 0, 1, 1, 0, 0, 1, 1, 1, 1] +subversive -0.9 1.81384 [-3, 0, -4, -1, -2, -1, 2, -1, 2, -1] +succeed 2.2 0.74833 [2, 3, 2, 2, 2, 1, 2, 4, 2, 2] +succeeded 1.8 0.87178 [2, 2, 1, 2, 2, 0, 2, 3, 3, 1] +succeeder 1.2 1.07703 [1, 0, 0, 2, 2, 0, 0, 3, 2, 2] +succeeders 1.3 0.64031 [2, 0, 2, 1, 2, 1, 1, 1, 1, 2] +succeeding 2.2 1.16619 [2, 3, 0, 3, 4, 3, 1, 1, 2, 3] +succeeds 2.2 0.9798 [4, 1, 4, 1, 2, 2, 2, 2, 2, 2] +success 2.7 0.64031 [4, 3, 2, 2, 3, 2, 3, 3, 2, 3] +successes 2.6 0.66332 [2, 4, 3, 3, 2, 3, 2, 2, 3, 2] +successful 2.8 0.6 [3, 3, 2, 3, 4, 3, 3, 3, 2, 2] +successfully 2.2 0.6 [2, 2, 1, 2, 2, 2, 3, 3, 2, 3] +successfulness 2.7 0.78102 [3, 3, 4, 3, 3, 2, 3, 2, 1, 3] +succession 0.8 0.87178 [2, 0, 1, 2, 0, 2, 1, 0, 0, 0] +successional 0.9 1.04403 [0, 1, 0, 2, 3, 0, 0, 1, 2, 0] +successionally 1.1 1.13578 [2, 2, 0, 0, 0, 0, 2, 3, 0, 2] +successions 0.1 0.3 [0, 0, 0, 0, 0, 0, 0, 1, 0, 0] +successive 1.1 1.13578 [3, 0, 0, 1, 3, 2, 1, 0, 1, 0] +successively 0.9 1.04403 [1, 0, 0, 1, 3, 0, 2, 0, 2, 0] +successiveness 1.0 1.0 [0, 1, 2, 0, 3, 1, 1, 2, 0, 0] +successor 0.9 0.83066 [0, 2, 0, 0, 1, 2, 2, 1, 1, 0] +successors 1.1 1.04403 [2, 0, 1, 2, 0, 1, 3, 0, 2, 0] +suck -1.9 1.04403 [-1, -1, -1, -2, -1, -1, -3, -4, -3, -2] +sucked -2.0 0.89443 [-2, -2, -1, -1, -1, -3, -4, -2, -2, -2] +sucker -2.4 1.2 [-3, -1, -1, -2, -1, -4, -4, -2, -4, -2] +suckered -2.0 1.0 [-2, -1, -1, -3, -3, -1, -1, -2, -2, -4] +suckering -2.1 0.7 [-2, -3, -2, -1, -2, -3, -3, -2, -1, -2] +suckers -2.3 1.00499 [-2, -1, -2, -4, -1, -2, -3, -2, -4, -2] +sucks -1.5 1.28452 [-1, -2, -2, -1, -3, -4, -1, 1, -1, -1] +sucky -1.9 0.9434 [-1, -2, -2, -1, -2, -4, -1, -1, -3, -2] +suffer -2.5 0.67082 [-3, -3, -2, -2, -3, -3, -3, -2, -1, -3] +suffered -2.2 0.74833 [-3, -2, -1, -3, -2, -3, -1, -3, -2, -2] +sufferer -2.0 0.63246 [-3, -2, -2, -2, -2, -3, -1, -2, -2, -1] +sufferers -2.4 0.8 [-1, -3, -3, -2, -1, -2, -3, -3, -3, -3] +suffering -2.1 0.83066 [-2, -1, -3, -2, -1, -2, -3, -3, -1, -3] +suffers -2.1 0.7 [-3, -2, -1, -2, -2, -2, -3, -1, -3, -2] +suicidal -3.5 0.67082 [-4, -4, -4, -4, -3, -4, -3, -3, -2, -4] +suicide -3.5 0.67082 [-4, -3, -4, -4, -4, -2, -3, -4, -4, -3] +suing -1.1 1.13578 [1, -1, -1, 0, -1, -3, -1, -1, -3, -1] +sulking -1.5 0.67082 [-2, -1, -3, -1, -1, -2, -1, -2, -1, -1] +sulky -0.8 1.77764 [-3, 3, -2, -3, 0, -2, 0, -1, 1, -1] +sullen -1.7 1.00499 [0, -2, -2, -1, -1, -4, -2, -1, -2, -2] +sunnier 2.3 0.64031 [3, 2, 3, 2, 3, 2, 2, 1, 3, 2] +sunniest 2.4 1.28062 [2, 0, 4, 2, 1, 3, 2, 4, 4, 2] +sunny 1.8 0.87178 [2, 2, 1, 2, 0, 2, 3, 3, 2, 1] +sunshine 2.2 0.6 [3, 1, 2, 2, 2, 2, 2, 3, 3, 2] +sunshiny 1.9 0.7 [2, 2, 3, 1, 2, 2, 1, 3, 1, 2] +super 2.9 0.7 [4, 2, 4, 3, 3, 3, 2, 3, 2, 3] +superb 3.1 0.9434 [3, 4, 2, 4, 3, 1, 3, 3, 4, 4] +superior 2.5 1.11803 [2, 3, 1, 3, 3, 0, 3, 3, 4, 3] +superiorities 0.8 1.6 [-1, 1, 3, -1, -1, 2, 2, 1, 3, -1] +superiority 1.4 1.2 [0, 1, -1, 3, 1, 2, 2, 2, 3, 1] +superiorly 2.2 1.4 [4, 3, 1, 2, 3, -1, 2, 4, 2, 2] +superiors 1.0 1.0 [3, 0, 0, 1, 2, 1, 1, 2, 0, 0] +support 1.7 0.9 [1, 1, 1, 2, 1, 3, 3, 3, 1, 1] +supported 1.3 0.45826 [2, 1, 2, 1, 1, 2, 1, 1, 1, 1] +supporter 1.1 0.3 [1, 1, 1, 1, 1, 2, 1, 1, 1, 1] +supporters 1.9 0.7 [1, 1, 1, 2, 2, 3, 2, 2, 3, 2] +supporting 1.9 0.9434 [3, 2, 1, 1, 3, 3, 1, 1, 3, 1] +supportive 1.2 0.4 [1, 1, 1, 1, 1, 2, 2, 1, 1, 1] +supportiveness 1.5 1.11803 [3, 1, 2, 1, 3, 2, 2, 1, -1, 1] +supports 1.5 0.67082 [2, 1, 2, 0, 2, 2, 2, 1, 1, 2] +supremacies 0.8 1.72047 [3, -2, 3, 0, 0, 2, -1, 3, 0, 0] +supremacist 0.5 2.15639 [3, 2, -3, 1, 2, 2, 2, -2, 1, -3] +supremacists -1.0 1.89737 [-4, -2, -1, -3, -2, 2, 2, 0, 0, -2] +supremacy 0.2 1.77764 [-1, -2, 0, 3, 2, 0, -3, 0, 1, 2] +suprematists 0.4 1.56205 [2, 1, 0, 0, 2, 2, 2, -2, -1, -2] +supreme 2.6 1.11355 [2, 3, 2, 1, 4, 2, 1, 3, 4, 4] +supremely 2.7 1.00499 [2, 4, 1, 4, 2, 4, 2, 3, 2, 3] +supremeness 2.3 0.64031 [1, 2, 2, 3, 3, 2, 2, 3, 3, 2] +supremer 2.3 1.1 [4, 3, 3, 0, 1, 2, 3, 2, 3, 2] +supremest 2.2 1.98997 [4, 3, 1, 0, 4, 4, -2, 3, 1, 4] +supremo 1.9 1.3 [1, 0, 3, 0, 4, 3, 1, 3, 2, 2] +supremos 1.3 0.78102 [0, 2, 2, 1, 0, 2, 2, 1, 2, 1] +sure 1.3 0.64031 [1, 1, 3, 1, 1, 2, 1, 1, 1, 1] +surefire 1.0 0.7746 [1, 1, 0, 2, 2, 1, 0, 1, 2, 0] +surefooted 1.9 0.83066 [0, 3, 2, 2, 2, 2, 1, 2, 3, 2] +surefootedly 1.6 0.91652 [1, 1, 2, 0, 2, 1, 3, 3, 1, 2] +surefootedness 1.5 1.20416 [2, 1, 4, 1, 0, 3, 2, 1, 1, 0] +surely 1.9 0.7 [2, 2, 2, 1, 1, 1, 3, 2, 3, 2] +sureness 2.0 0.7746 [2, 3, 2, 1, 2, 1, 3, 3, 2, 1] +surer 1.2 1.32665 [1, 1, 3, 1, 3, 2, 1, -2, 1, 1] +surest 1.3 0.78102 [2, 0, 2, 2, 2, 1, 0, 1, 1, 2] +sureties 1.3 0.9 [2, 0, 2, 0, 2, 2, 1, 2, 0, 2] +surety 1.0 0.44721 [1, 1, 1, 1, 1, 0, 1, 1, 2, 1] +suretyship -0.1 1.51327 [-1, 0, 0, -2, -1, 2, -2, 3, 0, 0] +suretyships 0.4 0.66332 [0, 0, 0, 1, 0, 0, 1, 0, 0, 2] +surprisal 1.5 0.80623 [3, 1, 1, 2, 1, 2, 2, 1, 2, 0] +surprisals 0.7 1.1 [0, 0, 0, 0, 0, 0, 0, 2, 2, 3] +surprise 1.1 1.04403 [0, 2, 0, 2, 3, 0, 1, 1, 2, 0] +surprised 0.9 0.9434 [2, 0, 0, 0, 0, 2, 2, 1, 2, 0] +surpriser 0.6 0.66332 [2, 0, 0, 0, 0, 1, 1, 1, 1, 0] +surprisers 0.3 1.00499 [2, 0, 1, 1, 0, 0, -2, 1, 0, 0] +surprises 0.9 0.7 [2, 0, 0, 0, 1, 1, 2, 1, 1, 1] +surprising 1.1 0.9434 [1, 1, 1, 0, 0, 2, 0, 1, 3, 2] +surprisingly 1.2 0.87178 [1, 0, 2, 0, 0, 2, 2, 1, 2, 2] +survived 2.3 0.78102 [3, 4, 2, 2, 2, 1, 2, 3, 2, 2] +surviving 1.2 0.87178 [1, 3, 1, 0, 2, 0, 1, 1, 1, 2] +survivor 1.5 1.0247 [1, 3, 2, 3, 1, 0, 0, 1, 2, 2] +suspect -1.2 0.9798 [0, -1, -1, -2, -2, -2, 1, -1, -2, -2] +suspected -0.9 1.13578 [-1, 0, -1, -2, -1, -1, -2, 2, -2, -1] +suspecting -0.7 1.34536 [-1, 2, -1, -1, -1, 1, -2, -1, -3, 0] +suspects -1.4 0.91652 [-2, -2, -2, -1, -2, -1, -2, -2, 1, -1] +suspend -1.3 0.64031 [0, -2, -1, -2, -1, -1, -2, -1, -2, -1] +suspended -2.1 0.83066 [-2, -1, -2, -3, -3, -1, -3, -1, -2, -3] +suspicion -1.6 0.91652 [-2, -2, -1, -2, 1, -2, -2, -2, -2, -2] +suspicions -1.5 0.67082 [-1, -2, -1, -2, -1, -1, -3, -1, -2, -1] +suspicious -1.5 0.67082 [-1, -2, -1, -1, -2, -1, -2, -1, -3, -1] +suspiciously -1.7 0.45826 [-2, -2, -1, -2, -1, -2, -2, -1, -2, -2] +suspiciousness -1.2 1.46969 [-2, -3, -2, -1, -1, 1, 2, -2, -2, -2] +sux -1.5 0.92195 [-1, -1, -2, -1, -2, -1, -3, 0, -3, -1] +swear -0.2 1.53623 [-2, 2, -1, 1, 1, 0, -1, -2, 2, -2] +swearing -1.0 1.09545 [0, -2, -1, -1, -2, 0, 1, -3, -1, -1] +swears 0.2 1.4 [1, -2, 2, 0, 1, -2, -1, 2, 1, 0] +sweet 2.0 0.63246 [1, 2, 2, 2, 3, 3, 2, 1, 2, 2] +sweet<3 3.0 0.44721 [3, 3, 3, 3, 4, 2, 3, 3, 3, 3] +sweetheart 3.3 1.00499 [4, 1, 3, 4, 4, 4, 2, 3, 4, 4] +sweethearts 2.8 0.87178 [2, 2, 2, 4, 3, 2, 4, 3, 4, 2] +sweetie 2.2 0.6 [2, 3, 3, 2, 1, 3, 2, 2, 2, 2] +sweeties 2.1 0.9434 [1, 2, 2, 3, 2, 1, 2, 4, 3, 1] +sweetly 2.1 0.7 [1, 2, 2, 2, 2, 2, 1, 3, 3, 3] +sweetness 2.2 0.74833 [3, 2, 3, 1, 2, 2, 3, 3, 2, 1] +sweets 2.2 0.6 [2, 1, 3, 2, 2, 2, 3, 2, 3, 2] +swift 0.8 0.6 [1, 0, 1, 1, 0, 2, 0, 1, 1, 1] +swiftly 1.2 0.9798 [0, 3, 1, 0, 1, 1, 1, 3, 1, 1] +swindle -2.4 1.0198 [-1, -4, -1, -3, -3, -2, -2, -2, -4, -2] +swindles -1.5 0.92195 [0, -2, -2, -3, -2, -1, -1, 0, -2, -2] +swindling -2.0 1.0 [-2, -2, -2, -4, -1, 0, -3, -2, -2, -2] +sympathetic 2.3 0.64031 [3, 3, 2, 2, 3, 3, 2, 2, 1, 2] +sympathy 1.5 1.11803 [-1, 2, 3, 2, 1, 1, 1, 2, 1, 3] +talent 1.8 1.07703 [3, 1, 2, 2, 0, 3, 3, 2, 2, 0] +talented 2.3 0.64031 [1, 2, 2, 3, 2, 3, 3, 2, 3, 2] +talentless -1.6 0.4899 [-2, -2, -2, -1, -2, -1, -1, -1, -2, -2] +talents 2.0 1.18322 [2, 4, 1, 2, 0, 2, 4, 2, 2, 1] +tantrum -1.8 1.16619 [-3, -2, -2, -3, -1, 0, -1, 0, -3, -3] +tantrums -1.5 1.36015 [-1, -2, -4, -2, -2, -1, -1, 0, 1, -3] +tard -2.5 0.92195 [-3, -3, -3, -2, -2, -3, -1, -4, -1, -3] +tears -0.9 1.13578 [0, -2, -2, -1, -1, -2, -2, 1, 1, -1] +teas 0.3 0.45826 [1, 0, 0, 0, 0, 1, 0, 1, 0, 0] +tease -1.3 0.9 [0, -1, -1, -2, -1, 0, -3, -2, -1, -2] +teased -1.2 0.87178 [0, -2, -2, -1, -1, -1, 0, -3, -1, -1] +teasel -0.1 0.3 [0, -1, 0, 0, 0, 0, 0, 0, 0, 0] +teaseled -0.8 0.74833 [-1, 0, -1, 0, 0, -1, -2, -1, -2, 0] +teaseler -0.8 0.87178 [0, 0, -2, 0, 0, -1, -2, -1, -2, 0] +teaselers -1.2 1.249 [0, -3, 0, 0, 0, -3, -2, -2, -2, 0] +teaseling -0.4 0.91652 [-1, 0, -3, 0, 0, 0, 0, 0, 0, 0] +teaselled -0.4 0.91652 [0, -3, 0, 0, 0, 0, -1, 0, 0, 0] +teaselling -0.2 0.4 [0, 0, 0, 0, -1, 0, -1, 0, 0, 0] +teasels -0.1 0.3 [0, 0, 0, 0, 0, 0, 0, 0, -1, 0] +teaser -1.0 1.18322 [0, -1, -3, -1, -1, -1, 0, -3, -1, 1] +teasers -0.7 1.1 [-1, -2, -3, -1, 0, 0, -1, 1, 0, 0] +teases -1.2 0.74833 [-1, -1, 0, -1, -2, -1, -3, -1, -1, -1] +teashops 0.2 0.4 [0, 1, 0, 1, 0, 0, 0, 0, 0, 0] +teasing -0.3 1.1 [0, 0, 1, 1, -1, 0, 0, 0, -1, -3] +teasingly -0.4 1.11355 [0, 1, 1, 0, -2, 0, -2, 0, -2, 0] +teaspoon 0.2 0.4 [0, 0, 0, 0, 0, 0, 1, 0, 1, 0] +teaspoonful 0.2 0.4 [0, 0, 0, 1, 0, 0, 1, 0, 0, 0] +teaspoonfuls 0.4 0.8 [2, 0, 0, 0, 0, 0, 0, 0, 2, 0] +teaspoons 0.5 0.80623 [0, 0, 0, 2, 0, 0, 1, 2, 0, 0] +teaspoonsful 0.3 0.9 [2, 0, 0, 0, 0, 2, 0, -1, 0, 0] +temper -1.8 0.4 [-1, -2, -2, -2, -2, -2, -2, -2, -1, -2] +tempers -1.3 0.64031 [-1, -1, 0, -1, -1, -2, -2, -2, -1, -2] +tendered 0.5 0.92195 [0, 0, 2, 1, -1, -1, 1, 1, 1, 1] +tenderer 0.6 0.66332 [0, 1, 1, 0, 0, 0, 2, 1, 1, 0] +tenderers 1.2 0.9798 [2, 0, 0, 1, 0, 2, 3, 1, 1, 2] +tenderest 1.4 1.56205 [2, 1, 3, -1, 0, 2, 2, 2, -1, 4] +tenderfeet -0.4 0.91652 [-1, -1, 0, 0, -1, 0, -1, -2, 1, 1] +tenderfoot -0.1 0.53852 [-1, 1, 0, 0, 0, 0, 0, -1, 0, 0] +tenderfoots -0.5 1.11803 [1, -1, 0, 0, 0, -1, -1, 1, -3, -1] +tenderhearted 1.5 1.0247 [2, 2, 1, 2, 3, 1, 1, -1, 2, 2] +tenderheartedly 2.7 0.64031 [2, 2, 2, 3, 3, 3, 3, 4, 3, 2] +tenderheartedness 0.7 1.48661 [1, 3, 2, 2, -1, -1, 1, -2, 1, 1] +tenderheartednesses 2.8 0.74833 [2, 3, 3, 2, 3, 3, 4, 4, 2, 2] +tendering 0.6 0.66332 [0, 0, 1, 1, 1, 0, 0, 1, 2, 0] +tenderization 0.2 0.74833 [-1, 2, 0, 0, 0, 1, 0, 0, 0, 0] +tenderize 0.1 0.53852 [0, 0, 0, 0, 0, -1, 0, 1, 0, 1] +tenderized 0.1 0.53852 [0, 1, 0, 1, 0, 0, -1, 0, 0, 0] +tenderizer 0.4 0.66332 [0, 1, 0, 1, 0, 0, 2, 0, 0, 0] +tenderizes 0.3 0.45826 [0, 1, 0, 1, 0, 0, 1, 0, 0, 0] +tenderizing 0.3 0.45826 [1, 1, 0, 0, 0, 1, 0, 0, 0, 0] +tenderloin -0.2 0.74833 [0, 0, 0, 0, -2, 0, 1, 0, -1, 0] +tenderloins 0.4 0.66332 [1, 0, 0, 0, 2, 0, 0, 1, 0, 0] +tenderly 1.8 0.74833 [2, 1, 2, 1, 3, 2, 1, 2, 3, 1] +tenderness 1.8 0.4 [2, 2, 1, 2, 2, 2, 2, 1, 2, 2] +tendernesses 0.9 1.44568 [1, 2, 1, 1, 3, -1, -2, 2, 2, 0] +tenderometer 0.2 0.4 [1, 0, 0, 0, 0, 1, 0, 0, 0, 0] +tenderometers 0.2 0.4 [0, 0, 1, 0, 0, 0, 0, 0, 1, 0] +tenders 0.6 0.8 [0, 2, 0, 1, 1, 1, -1, 0, 1, 1] +tense -1.4 0.4899 [-1, -1, -1, -1, -1, -2, -1, -2, -2, -2] +tensed -1.0 0.44721 [-1, 0, -1, -1, -1, -1, -2, -1, -1, -1] +tensely -1.2 0.6 [-1, -2, -2, -2, -1, 0, -1, -1, -1, -1] +tenseness -1.5 0.67082 [-1, -1, -1, -1, -1, -2, -2, -1, -2, -3] +tenser -1.5 0.67082 [-2, -2, -1, -2, -1, -1, -3, -1, -1, -1] +tenses -0.9 1.04403 [-1, -3, 0, 0, 0, -1, 0, -2, -2, 0] +tensest -1.2 1.07703 [-2, 0, -2, -2, -2, 0, 1, -1, -2, -2] +tensing -1.0 0.44721 [-1, -2, -1, 0, -1, -1, -1, -1, -1, -1] +tension -1.3 1.00499 [-2, -1, -1, -1, -1, -2, -2, -3, 1, -1] +tensional -0.8 0.74833 [-1, 0, -1, -1, -1, -2, 1, -1, -1, -1] +tensioned -0.4 1.11355 [-2, 0, -1, 2, -1, 0, -1, -1, -1, 1] +tensioner -1.6 0.8 [-1, -3, -2, -2, -2, 0, -1, -2, -1, -2] +tensioners -0.9 1.04403 [-1, 0, -2, -2, -1, 1, -2, 0, 0, -2] +tensioning -1.4 1.0198 [-1, -1, -1, -1, 0, -2, -3, -3, 0, -2] +tensionless 0.6 0.8 [1, 1, 1, -1, 0, 0, 0, 2, 1, 1] +tensions -1.7 0.78102 [-1, -3, -1, -1, -2, -2, -3, -1, -2, -1] +terrible -2.1 0.9434 [-1, -3, -2, -1, -3, -1, -2, -2, -4, -2] +terribleness -1.9 1.81384 [3, -3, -3, -3, -3, -1, -2, -1, -3, -3] +terriblenesses -2.6 0.4899 [-2, -3, -3, -2, -3, -2, -2, -3, -3, -3] +terribly -2.6 0.4899 [-3, -3, -3, -2, -2, -3, -3, -2, -2, -3] +terrific 2.1 1.81384 [4, 3, 4, 1, -1, -1, 4, 2, 2, 3] +terrifically 1.7 1.95192 [2, 2, 4, 2, 3, 3, -2, 3, -2, 2] +terrified -3.0 0.63246 [-2, -3, -3, -3, -4, -3, -4, -2, -3, -3] +terrifies -2.6 1.0198 [-2, -4, -3, -3, -4, -1, -2, -3, -1, -3] +terrify -2.3 0.78102 [-3, -3, -2, -2, -1, -4, -2, -2, -2, -2] +terrifying -2.7 0.78102 [-4, -3, -3, -2, -2, -2, -4, -2, -3, -2] +terror -2.4 1.2 [-3, -4, -2, -1, 0, -4, -3, -2, -2, -3] +terrorise -3.1 0.83066 [-2, -3, -4, -4, -3, -3, -2, -4, -2, -4] +terrorised -3.3 0.64031 [-3, -3, -4, -3, -2, -4, -4, -3, -4, -3] +terrorises -3.3 0.45826 [-3, -3, -4, -3, -3, -4, -4, -3, -3, -3] +terrorising -3.0 0.44721 [-3, -3, -3, -3, -2, -3, -4, -3, -3, -3] +terrorism -3.6 0.4899 [-4, -3, -4, -4, -4, -3, -3, -4, -3, -4] +terrorisms -3.2 0.6 [-4, -4, -4, -3, -3, -3, -2, -3, -3, -3] +terrorist -3.7 0.45826 [-4, -3, -4, -4, -4, -3, -4, -4, -3, -4] +terroristic -3.3 0.78102 [-4, -3, -2, -3, -4, -3, -4, -2, -4, -4] +terrorists -3.1 0.9434 [-3, -4, -2, -2, -4, -2, -2, -4, -4, -4] +terrorization -2.7 0.9 [-4, -4, -3, -2, -2, -4, -2, -2, -2, -2] +terrorize -3.3 0.78102 [-4, -4, -3, -3, -4, -2, -2, -4, -3, -4] +terrorized -3.1 0.7 [-2, -3, -2, -4, -4, -4, -3, -3, -3, -3] +terrorizes -3.1 0.53852 [-2, -3, -3, -4, -3, -4, -3, -3, -3, -3] +terrorizing -3.0 1.0 [-3, -1, -4, -4, -4, -3, -2, -3, -2, -4] +terrorless 0.9 1.04403 [-2, 2, 1, 2, 1, 1, 1, 1, 1, 1] +terrors -2.6 0.4899 [-2, -3, -3, -3, -2, -2, -3, -2, -3, -3] +thank 1.5 0.92195 [3, 1, 1, 0, 1, 1, 2, 3, 1, 2] +thanked 1.9 1.22066 [1, 3, 1, 1, 1, 1, 4, 4, 2, 1] +thankful 2.7 0.78102 [4, 2, 2, 3, 2, 4, 3, 3, 2, 2] +thankfuller 1.9 0.53852 [2, 2, 1, 2, 2, 2, 1, 2, 3, 2] +thankfullest 2.0 1.0 [3, 1, 1, 4, 1, 2, 2, 2, 3, 1] +thankfully 1.8 0.6 [2, 1, 2, 1, 2, 3, 2, 2, 1, 2] +thankfulness 2.1 1.44568 [3, 3, 4, 2, 2, 1, -1, 1, 2, 4] +thanks 1.9 1.04403 [1, 1, 1, 1, 3, 2, 1, 4, 3, 2] +thief -2.4 0.66332 [-3, -2, -2, -2, -2, -4, -2, -2, -3, -2] +thieve -2.2 0.4 [-2, -2, -2, -3, -2, -2, -3, -2, -2, -2] +thieved -1.4 1.28062 [-1, -2, -3, -1, -2, 2, -2, -1, -2, -2] +thieveries -2.1 0.53852 [-2, -3, -2, -3, -1, -2, -2, -2, -2, -2] +thievery -2.0 0.89443 [-2, -2, -2, -1, -1, -3, -1, -2, -4, -2] +thieves -2.3 0.78102 [-3, -2, -2, -4, -1, -2, -2, -2, -3, -2] +thorny -1.1 0.83066 [1, -1, -1, -1, -1, -1, -1, -2, -2, -2] +thoughtful 1.6 0.4899 [2, 2, 1, 1, 1, 1, 2, 2, 2, 2] +thoughtfully 1.7 0.64031 [2, 1, 1, 3, 1, 2, 1, 2, 2, 2] +thoughtfulness 1.9 0.53852 [1, 2, 1, 2, 2, 3, 2, 2, 2, 2] +thoughtless -2.0 0.63246 [-2, -1, -3, -3, -2, -1, -2, -2, -2, -2] +threat -2.4 0.66332 [-2, -3, -2, -2, -2, -4, -3, -2, -2, -2] +threaten -1.6 1.56205 [-4, -1, -3, -2, 1, -3, -1, 1, -2, -2] +threatened -2.0 0.63246 [-2, -2, -3, -2, -2, -1, -2, -3, -1, -2] +threatener -1.4 1.68523 [-2, -2, -3, -2, 3, 0, -2, -3, -1, -2] +threateners -1.8 0.74833 [-3, -1, -2, -1, -1, -3, -2, -2, -2, -1] +threatening -2.4 0.8 [-3, -3, -2, -3, -2, -1, -3, -1, -3, -3] +threateningly -2.2 0.6 [-2, -2, -2, -2, -2, -2, -2, -2, -4, -2] +threatens -1.6 1.56205 [-2, -2, -2, 1, -4, -3, -3, -1, 1, -1] +threating -2.0 0.44721 [-3, -2, -2, -2, -1, -2, -2, -2, -2, -2] +threats -1.8 0.74833 [-1, -1, -1, -2, -2, -2, -3, -3, -2, -1] +thrill 1.5 1.11803 [2, 2, 2, 0, 1, -1, 2, 3, 2, 2] +thrilled 1.9 1.81384 [3, -1, 3, 3, 1, -2, 3, 3, 3, 3] +thriller 0.4 1.2 [0, 0, 3, 1, 1, -2, 0, 1, 0, 0] +thrillers 0.1 0.83066 [0, 2, 0, 0, 0, -1, 0, -1, 0, 1] +thrilling 2.1 1.04403 [3, 0, 2, 3, 1, 3, 3, 2, 1, 3] +thrillingly 2.0 0.7746 [0, 2, 2, 3, 3, 2, 2, 2, 2, 2] +thrills 1.5 0.92195 [2, 3, 1, 2, 0, 2, 1, 0, 2, 2] +thwarted -0.1 1.75784 [1, -2, -3, 0, 2, 0, 2, -2, -1, 2] +thwarting -0.7 0.78102 [0, 0, -1, -1, -1, -2, 1, -1, -1, -1] +thwarts -0.4 1.28062 [-2, 0, 0, -2, 0, 1, 2, 0, -1, -2] +ticked -1.8 0.6 [-2, -1, -1, -2, -2, -1, -2, -2, -3, -2] +timid -1.0 0.44721 [-1, -1, -1, -1, 0, -1, -2, -1, -1, -1] +timider -1.0 0.44721 [-1, -2, -1, -1, -1, 0, -1, -1, -1, -1] +timidest -0.9 0.7 [0, -1, 0, -1, 0, -1, -1, -2, -1, -2] +timidities -0.7 0.64031 [-1, -1, -1, 0, -2, 0, -1, 0, 0, -1] +timidity -1.3 0.45826 [-1, -2, -1, -1, -1, -1, -2, -2, -1, -1] +timidly -0.7 0.78102 [0, -1, -1, -1, -1, 1, 0, -1, -2, -1] +timidness -1.0 0.89443 [-1, -2, -1, 0, -1, -2, 1, -2, -1, -1] +timorous -0.8 0.9798 [-2, -1, -1, -1, -1, -2, -1, 1, 1, -1] +tired -1.9 0.7 [-2, -1, -2, -3, -2, -3, -1, -1, -2, -2] +tits -0.9 0.53852 [-1, -1, -2, -1, -1, -1, 0, -1, 0, -1] +tolerance 1.2 1.53623 [2, 3, 2, 2, -2, 1, 1, 3, -1, 1] +tolerances 0.3 0.9 [-1, 1, 0, 0, 1, 2, 0, -1, 1, 0] +tolerant 1.1 0.53852 [1, 2, 1, 1, 1, 1, 1, 1, 0, 2] +tolerantly 0.4 1.2 [0, 1, 1, 1, 0, -3, 1, 1, 1, 1] +toothless -1.4 1.0198 [-1, -4, -1, -2, -1, 0, -1, -2, -1, -1] +top 0.8 0.87178 [1, 3, 1, 1, 1, 0, 0, 1, 0, 0] +tops 2.3 1.00499 [3, 3, 3, 0, 2, 2, 3, 3, 1, 3] +torn -1.0 1.0 [-1, -1, -1, 0, -1, -1, -3, -2, 1, -1] +torture -2.9 1.51327 [-4, -4, -3, -4, 1, -2, -3, -2, -4, -4] +tortured -2.6 1.0198 [-4, -1, -2, -2, -4, -3, -2, -2, -4, -2] +torturer -2.3 1.18743 [-4, -1, -1, -2, -4, -1, -2, -2, -4, -2] +torturers -3.5 0.67082 [-4, -4, -3, -3, -4, -4, -4, -2, -3, -4] +tortures -2.5 0.92195 [-2, -3, -2, -4, -1, -3, -2, -4, -2, -2] +torturing -3.0 0.89443 [-4, -4, -4, -2, -3, -2, -4, -2, -2, -3] +torturous -2.7 0.78102 [-3, -3, -1, -3, -4, -2, -2, -3, -3, -3] +torturously -2.2 1.6 [2, -3, -3, -2, -3, -2, -4, -3, -1, -3] +totalitarian -2.1 1.3 [0, -4, -3, 0, -3, -2, -3, -1, -2, -3] +totalitarianism -2.7 1.18743 [-2, -3, 0, -4, -2, -4, -4, -2, -3, -3] +tough -0.5 1.43178 [0, -2, 0, 0, 1, 2, -1, -2, -3, 0] +toughed 0.7 0.64031 [1, 1, 0, 1, 1, 0, 2, 1, 0, 0] +toughen 0.1 1.04403 [0, 0, 1, 0, 1, 0, 2, 0, -2, -1] +toughened 0.1 0.53852 [1, 0, 0, 0, 0, -1, 1, 0, 0, 0] +toughening 0.9 0.83066 [0, 2, 2, 1, 1, 0, 1, 0, 0, 2] +toughens -0.2 1.16619 [1, -1, 0, 1, 0, -2, -2, 1, -1, 1] +tougher 0.7 1.00499 [1, 1, -1, 0, 2, 0, 2, 2, 0, 0] +toughest -0.3 1.84662 [2, 1, -1, -3, 0, -2, 2, -2, 2, -2] +toughie -0.7 0.64031 [-1, 1, 0, -1, -1, -1, -1, -1, -1, -1] +toughies -0.6 0.66332 [-1, -1, -1, 0, 0, -1, 1, -1, -1, -1] +toughing -0.5 1.20416 [-1, 0, -2, 0, 0, -2, 2, 0, -2, 0] +toughish -1.0 1.0 [0, -1, 0, -2, -2, -1, 1, -2, -2, -1] +toughly -1.1 0.83066 [-1, 0, 0, -1, 0, -1, -2, -2, -2, -2] +toughness -0.2 1.07703 [0, 0, -1, -2, 0, 1, 1, 1, -2, 0] +toughnesses 0.3 1.18743 [1, 2, -1, 0, 1, 1, -2, 1, -1, 1] +toughs -0.8 1.16619 [0, 0, -1, 0, -1, -3, -2, 1, 0, -2] +toughy -0.5 1.11803 [-1, -2, -1, 0, -1, -1, 1, -1, 2, -1] +tout -0.5 0.67082 [-1, 0, -2, -1, 0, 0, -1, 0, 0, 0] +touted -0.2 0.9798 [-1, 2, 0, -2, -1, 0, 0, 0, 0, 0] +touting -0.7 0.64031 [0, 0, -1, -1, -1, -1, 0, -2, 0, -1] +touts -0.1 0.7 [1, 1, 0, -1, 0, -1, -1, 0, 0, 0] +tragedian -0.5 0.67082 [-2, 0, -1, 0, 0, -1, 0, -1, 0, 0] +tragedians -1.0 1.18322 [-1, 0, -2, -1, 0, -3, 0, 0, 0, -3] +tragedienne -0.4 0.4899 [0, 0, -1, -1, 0, 0, -1, -1, 0, 0] +tragediennes -1.4 1.28062 [0, -3, 0, -1, -3, 0, -2, -3, 0, -2] +tragedies -1.9 1.86815 [-3, -4, -2, 2, -3, -4, -2, 1, -2, -2] +tragedy -3.4 1.0198 [-4, -4, -4, -4, -2, -3, -1, -4, -4, -4] +tragic -2.0 1.94936 [-1, -3, -4, -3, -3, -4, -2, 1, 2, -3] +tragical -2.4 1.11355 [-3, -3, -3, -2, -1, -3, -4, -3, 0, -2] +tragically -2.7 1.48661 [-4, -4, -4, -2, -1, -4, -1, 0, -3, -4] +tragicomedy 0.2 0.9798 [0, -2, 0, 0, 0, 2, 1, 1, 0, 0] +tragicomic -0.2 0.74833 [0, -1, 1, 0, 0, 0, -2, 0, 0, 0] +tragics -2.2 0.74833 [-3, -2, -4, -1, -2, -2, -2, -2, -2, -2] +tranquil 0.2 1.77764 [2, 1, -1, 2, -3, 3, -1, 1, -1, -1] +tranquiler 1.9 0.7 [2, 1, 2, 2, 3, 3, 2, 2, 1, 1] +tranquilest 1.6 1.35647 [1, 2, 2, 2, 0, 2, -1, 4, 3, 1] +tranquilities 1.5 1.36015 [3, 2, 4, -1, 1, 0, 2, 2, 1, 1] +tranquility 1.8 1.16619 [3, 2, 1, 2, 3, 4, 1, 1, 1, 0] +tranquilize 0.3 1.00499 [0, -2, 1, -1, 1, 1, 1, 0, 1, 1] +tranquilized -0.2 1.32665 [-2, 0, 1, 0, 1, 2, 0, -2, -2, 0] +tranquilizer -0.1 0.9434 [0, 1, -1, 0, -1, 0, -2, 1, 1, 0] +tranquilizers -0.4 0.8 [0, 0, 0, -2, -1, -1, -1, 1, 0, 0] +tranquilizes -0.1 0.9434 [-2, 0, 1, 0, 1, 1, 0, -1, -1, 0] +tranquilizing -0.5 0.67082 [-1, 0, 0, -1, -1, -1, 1, 0, -1, -1] +tranquillest 0.8 1.4 [1, 1, 2, 3, 1, 1, 0, -1, -2, 2] +tranquillities 0.5 1.20416 [-2, 1, 2, 0, 2, 1, 0, -1, 1, 1] +tranquillity 1.8 1.07703 [1, 2, 2, 2, 3, 3, 2, -1, 2, 2] +tranquillized -0.2 1.07703 [0, 1, 0, 0, -3, 0, 1, 0, -1, 0] +tranquillizer -0.1 0.7 [0, 1, 0, 0, -1, 0, 1, 0, -1, -1] +tranquillizers -0.2 0.74833 [0, 0, 0, -2, 1, 0, 0, 0, -1, 0] +tranquillizes 0.1 0.7 [-1, -1, 0, 0, 1, 1, 1, 0, 0, 0] +tranquillizing 0.8 0.87178 [1, 2, 0, 2, 0, 0, 2, 0, 0, 1] +tranquilly 1.2 0.87178 [2, 2, 1, 2, -1, 2, 1, 1, 1, 1] +tranquilness 1.5 1.20416 [3, 3, 1, 2, 2, 2, 0, -1, 1, 2] +trap -1.3 0.78102 [-1, -1, -2, 0, -1, -1, -2, -1, -1, -3] +trapped -2.4 0.91652 [-3, -2, -3, -1, -3, -1, -2, -2, -4, -3] +trauma -1.8 1.249 [-2, -2, -3, -1, -2, 1, -2, -4, -1, -2] +traumas -2.2 1.6 [-3, -3, -2, -4, 0, -1, -4, -3, 1, -3] +traumata -1.7 1.34536 [-2, -3, -2, 0, -2, 1, -4, -2, -1, -2] +traumatic -2.7 1.00499 [-2, -4, -2, -1, -4, -3, -2, -3, -4, -2] +traumatically -2.8 0.6 [-4, -2, -3, -2, -2, -3, -3, -3, -3, -3] +traumatise -2.8 0.6 [-4, -3, -3, -2, -2, -3, -2, -3, -3, -3] +traumatised -2.4 0.91652 [-4, -4, -2, -2, -1, -2, -3, -2, -2, -2] +traumatises -2.2 0.87178 [-3, -4, -2, -2, -1, -2, -3, -1, -2, -2] +traumatising -1.9 1.86815 [-3, -3, -3, -1, -3, 1, -4, -2, 2, -3] +traumatism -2.4 0.4899 [-3, -2, -3, -2, -2, -2, -2, -3, -3, -2] +traumatization -3.0 1.0 [-4, -4, -4, -2, -2, -2, -4, -4, -2, -2] +traumatizations -2.2 1.16619 [-3, -2, -4, 0, -1, -2, -4, -2, -2, -2] +traumatize -2.4 0.66332 [-3, -3, -2, -4, -2, -2, -2, -2, -2, -2] +traumatized -1.7 1.41774 [-1, -2, -2, -2, 2, -4, -2, -2, -2, -2] +traumatizes -1.4 1.42829 [-2, -1, -2, -2, 2, -4, -1, -2, -1, -1] +traumatizing -2.3 1.61555 [-4, -2, -2, -3, -2, -4, -4, 1, 0, -3] +travesty -2.7 1.48661 [-3, -4, 0, -2, -4, -3, -4, 0, -3, -4] +treason -1.9 1.75784 [-3, -3, -2, -3, -3, 1, -2, -3, -3, 2] +treasonous -2.7 1.34536 [-3, -3, -3, -4, -3, -4, -2, 1, -3, -3] +treasurable 2.5 0.67082 [2, 3, 3, 3, 2, 4, 2, 2, 2, 2] +treasure 1.2 1.16619 [3, 1, 3, 2, 0, 2, 1, 0, 0, 0] +treasured 2.6 0.66332 [3, 3, 2, 3, 3, 2, 1, 3, 3, 3] +treasurer 0.5 0.67082 [1, 0, 0, 0, 1, 0, 0, 0, 1, 2] +treasurers 0.4 0.66332 [0, 0, 0, 0, 1, 1, 2, 0, 0, 0] +treasurership 0.4 0.66332 [0, 0, 2, 0, 1, 0, 1, 0, 0, 0] +treasurerships 1.2 0.87178 [2, 0, 2, 0, 2, 1, 2, 2, 1, 0] +treasures 1.8 1.32665 [3, 3, 0, 1, 1, 4, 0, 3, 2, 1] +treasuries 0.9 1.04403 [0, 0, 1, 3, 2, 2, 0, 1, 0, 0] +treasuring 2.1 0.7 [2, 1, 3, 1, 3, 2, 2, 2, 2, 3] +treasury 0.8 1.07703 [2, 3, 0, 0, 0, 0, 0, 1, 2, 0] +treat 1.7 0.78102 [2, 2, 2, 0, 2, 1, 3, 2, 1, 2] +tremble -1.1 1.3 [-2, 0, -1, -2, -2, -2, 2, 0, -2, -2] +trembled -1.1 1.22066 [-1, 1, -1, -2, -2, -1, -3, -2, 1, -1] +trembler -0.6 1.28062 [-2, -2, -1, 0, -1, 2, 1, -2, -1, 0] +tremblers -1.0 0.63246 [-2, 0, -1, -1, 0, -2, -1, -1, -1, -1] +trembles -0.1 1.51327 [-1, -2, -1, 0, -1, 2, 2, -2, 2, 0] +trembling -1.5 0.92195 [-3, 0, -1, -3, -1, -1, -1, -2, -1, -2] +trembly -1.2 0.87178 [-2, 0, -1, -2, -2, -1, 0, 0, -2, -2] +tremulous -1.0 1.09545 [-1, -2, -1, -1, -1, -1, 2, -2, -2, -1] +trick -0.2 1.32665 [-1, 1, -2, -2, -1, 2, 0, 1, 1, -1] +tricked -0.6 0.91652 [-1, -1, -1, -1, 2, 0, -1, -1, -1, -1] +tricker -0.9 0.83066 [-2, 0, -1, -1, 1, -2, -1, -1, -1, -1] +trickeries -1.2 1.46969 [-2, -2, -1, -2, -1, 2, 1, -2, -3, -2] +trickers -1.4 0.66332 [-1, -3, -1, -2, -2, -1, -1, -1, -1, -1] +trickery -1.1 1.51327 [1, -1, -1, -2, -3, -2, -3, 2, -1, -1] +trickie -0.4 1.0198 [1, -1, 0, -1, -1, 1, -2, -1, 1, -1] +trickier -0.7 0.78102 [-1, -1, -1, 0, 1, -1, -1, -1, 0, -2] +trickiest -1.2 0.6 [-2, -2, 0, -1, -2, -1, -1, -1, -1, -1] +trickily -0.8 0.74833 [0, 1, -1, -1, -1, -1, -1, -1, -2, -1] +trickiness -1.2 0.9798 [-2, -1, -1, -2, -1, -2, 1, 0, -2, -2] +trickinesses -0.4 1.0198 [0, 2, 0, -2, -1, -1, 0, 0, -1, -1] +tricking 0.1 1.37477 [0, -2, 2, -1, 2, -2, 0, 1, 1, 0] +trickish -1.0 0.44721 [-1, -2, 0, -1, -1, -1, -1, -1, -1, -1] +trickishly -0.7 1.55242 [-3, -2, -1, 2, -1, 2, -2, -1, 0, -1] +trickishness -0.4 1.28062 [-1, 1, -2, -1, -1, -1, 0, -2, 1, 2] +trickled 0.1 0.3 [0, 0, 0, 0, 0, 0, 0, 0, 1, 0] +trickledown -0.7 0.64031 [0, -1, 0, -1, -2, 0, 0, -1, -1, -1] +trickles 0.2 0.4 [0, 0, 0, 1, 0, 0, 0, 0, 1, 0] +trickling -0.2 0.9798 [0, 0, -1, -2, -1, 2, 0, 0, 0, 0] +trickly -0.3 0.45826 [0, 0, -1, 0, 0, 0, 0, -1, 0, -1] +tricks -0.5 0.67082 [0, 0, -1, -1, 1, -1, -1, 0, -1, -1] +tricksier -0.5 0.67082 [-1, -1, 1, 0, -1, 0, 0, -1, -1, -1] +tricksiness -1.0 0.89443 [0, 0, -1, -1, -1, 0, -1, -2, -3, -1] +trickster -0.9 0.83066 [-1, -2, 0, -1, -2, -1, -1, 1, -1, -1] +tricksters -1.3 0.9 [-1, -2, -1, -2, 1, -2, -2, -1, -1, -2] +tricksy -0.8 0.9798 [-1, -1, -2, -1, 2, -1, -1, -1, -1, -1] +tricky -0.6 0.66332 [0, 0, -1, -1, 1, -1, -1, -1, -1, -1] +trite -0.8 0.4 [-1, -1, 0, 0, -1, -1, -1, -1, -1, -1] +triumph 2.1 1.04403 [2, 4, 3, 3, 1, 3, 1, 2, 1, 1] +triumphal 2.0 0.63246 [2, 3, 3, 2, 1, 2, 1, 2, 2, 2] +triumphalisms 1.9 0.9434 [2, 1, 2, 2, 2, 0, 2, 2, 4, 2] +triumphalist 0.5 1.20416 [1, 1, 2, 2, -1, -2, 0, 1, 0, 1] +triumphalists 0.9 1.64012 [1, -1, 0, 0, 1, 3, -2, 3, 1, 3] +triumphant 2.4 0.91652 [2, 3, 3, 3, 4, 1, 2, 1, 3, 2] +triumphantly 2.3 1.00499 [3, 3, 3, 3, 1, 0, 3, 2, 2, 3] +triumphed 2.2 1.4 [2, 3, 3, 3, 4, 3, 1, 1, -1, 3] +triumphing 2.3 0.64031 [2, 2, 3, 2, 2, 3, 2, 3, 1, 3] +triumphs 2.0 1.41421 [3, 2, 3, 3, 3, 1, -1, 1, 1, 4] +trivial -0.1 0.83066 [0, -1, -1, 0, 1, 0, 1, -1, 1, -1] +trivialise -0.8 1.16619 [-3, -1, -2, 0, 1, -1, -1, 1, -1, -1] +trivialised -0.8 1.6 [-2, 0, -2, 1, -1, 0, 1, 1, -4, -2] +trivialises -1.1 0.53852 [-1, -1, -1, 0, -1, -1, -1, -2, -2, -1] +trivialising -1.4 0.66332 [-2, -1, -2, -1, 0, -1, -2, -1, -2, -2] +trivialities -1.0 0.63246 [-2, -2, -1, -1, -1, 0, 0, -1, -1, -1] +triviality -0.5 1.11803 [-1, -1, -2, 0, -1, -1, 2, -1, 1, -1] +trivialization -0.9 1.04403 [-1, 2, -1, -1, -2, -2, -1, -1, -1, -1] +trivializations -0.7 1.18743 [-2, -1, -1, -2, 1, -1, -1, -1, 2, -1] +trivialize -1.1 0.53852 [0, -2, -2, -1, -1, -1, -1, -1, -1, -1] +trivialized -0.6 0.8 [-1, -1, 0, 0, -1, -1, 1, -1, 0, -2] +trivializes -1.0 0.7746 [-1, -1, -1, 0, -1, 0, -1, -1, -1, -3] +trivializing -0.6 1.95959 [-1, -1, -2, -1, -1, 2, -2, -4, 1, 3] +trivially 0.4 1.56205 [-1, -1, -1, -1, 0, 3, 0, 2, 3, 0] +trivium -0.3 0.64031 [0, 0, -2, 0, 0, 0, 0, -1, 0, 0] +trouble -1.7 0.64031 [-2, -2, -1, -1, -3, -2, -1, -2, -1, -2] +troubled -2.0 0.44721 [-2, -2, -2, -1, -2, -3, -2, -2, -2, -2] +troublemaker -2.0 0.63246 [-3, -2, -3, -2, -2, -1, -1, -2, -2, -2] +troublemakers -2.2 0.74833 [-3, -3, -3, -1, -3, -1, -2, -2, -2, -2] +troublemaking -1.8 0.6 [-2, -1, -1, -2, -2, -2, -3, -2, -1, -2] +troubler -1.4 0.4899 [-1, -1, -2, -1, -1, -1, -2, -2, -2, -1] +troublers -1.9 0.3 [-2, -2, -2, -2, -1, -2, -2, -2, -2, -2] +troubles -2.0 0.44721 [-2, -2, -2, -1, -2, -3, -2, -2, -2, -2] +troubleshoot 0.8 0.9798 [0, 0, 0, 2, 2, 2, 2, 0, 0, 0] +troubleshooter 1.0 0.89443 [0, 0, 0, 1, 2, 2, 0, 1, 2, 2] +troubleshooters 0.8 0.87178 [0, 0, 1, 2, 0, 1, 0, 2, 2, 0] +troubleshooting 0.7 1.34536 [0, 2, 1, 1, -1, 2, 0, 2, -2, 2] +troubleshoots 0.5 0.92195 [1, -1, 0, 0, 0, 0, 1, 0, 2, 2] +troublesome -2.3 0.78102 [-3, -2, -3, -2, -3, -3, -1, -2, -1, -3] +troublesomely -1.8 0.6 [-3, -1, -2, -2, -1, -2, -2, -2, -2, -1] +troublesomeness -1.9 0.7 [-2, -1, -2, -3, -2, -3, -1, -2, -1, -2] +troubling -2.5 0.67082 [-3, -3, -3, -3, -1, -2, -3, -2, -3, -2] +troublous -2.1 0.53852 [-2, -2, -2, -2, -2, -3, -2, -3, -1, -2] +troublously -2.1 1.22066 [-2, -3, -3, -3, -2, -1, 1, -2, -3, -3] +trueness 2.1 0.9434 [2, 1, 1, 3, 3, 4, 2, 1, 2, 2] +truer 1.5 0.67082 [1, 2, 1, 2, 1, 1, 2, 1, 3, 1] +truest 1.9 0.83066 [2, 2, 2, 3, 3, 0, 2, 1, 2, 2] +truly 1.9 0.9434 [4, 3, 1, 2, 2, 1, 1, 1, 2, 2] +trust 2.3 1.26886 [0, 4, 3, 3, 4, 1, 2, 2, 1, 3] +trustability 2.1 0.7 [1, 3, 3, 2, 2, 2, 1, 3, 2, 2] +trustable 2.3 0.45826 [2, 2, 3, 2, 2, 3, 3, 2, 2, 2] +trustbuster -0.5 1.28452 [-3, -1, 0, 0, 0, 0, -2, 0, 2, -1] +trusted 2.1 0.9434 [3, 2, 2, 1, 4, 1, 2, 2, 3, 1] +trustee 1.0 0.89443 [2, 2, 0, 1, 1, 0, 2, 0, 2, 0] +trustees 0.3 0.64031 [0, 1, 0, 0, 2, 0, 0, 0, 0, 0] +trusteeship 0.5 0.67082 [0, 1, 1, 0, 0, 1, 0, 0, 2, 0] +trusteeships 0.6 1.0198 [3, 0, 0, 0, 0, 0, 0, 2, 1, 0] +truster 1.9 1.3 [2, 2, 1, 1, 4, 0, 3, 1, 4, 1] +trustful 2.1 0.9434 [1, 2, 2, 1, 2, 2, 1, 3, 3, 4] +trustfully 1.5 0.67082 [2, 1, 2, 1, 1, 3, 1, 2, 1, 1] +trustfulness 2.1 0.83066 [3, 2, 3, 2, 3, 2, 2, 2, 0, 2] +trustier 1.3 1.1 [1, 1, 1, 2, 0, 0, 3, 0, 3, 2] +trusties 1.0 0.7746 [1, 1, 0, 2, 1, 0, 2, 0, 1, 2] +trustiest 2.2 0.87178 [3, 2, 2, 3, 2, 2, 4, 1, 1, 2] +trustily 1.6 0.91652 [2, 0, 3, 1, 2, 1, 1, 1, 2, 3] +trustiness 1.6 0.91652 [2, 3, 0, 1, 2, 2, 2, 2, 0, 2] +trusting 1.7 1.00499 [3, 0, 1, 2, 3, 0, 2, 2, 2, 2] +trustingly 1.6 0.91652 [3, 1, 2, 3, 2, 2, 0, 1, 1, 1] +trustingness 1.6 1.2 [1, 2, 1, 3, 2, 1, 4, 2, 0, 0] +trustless -2.3 0.78102 [-2, -4, -3, -2, -2, -3, -2, -2, -1, -2] +trustor 0.4 0.66332 [2, 0, 0, 1, 0, 0, 0, 1, 0, 0] +trustors 1.2 0.87178 [0, 0, 2, 1, 1, 2, 2, 2, 0, 2] +trusts 2.1 0.53852 [2, 2, 2, 2, 1, 2, 2, 3, 2, 3] +trustworthily 2.3 0.9 [3, 1, 2, 2, 2, 1, 3, 4, 3, 2] +trustworthiness 1.8 0.74833 [2, 1, 3, 1, 2, 2, 1, 2, 3, 1] +trustworthy 2.6 0.91652 [3, 2, 3, 4, 2, 4, 2, 3, 1, 2] +trusty 2.2 0.74833 [3, 2, 3, 1, 2, 2, 3, 2, 1, 3] +truth 1.3 1.00499 [2, 1, 0, 1, 1, 0, 3, 3, 1, 1] +truthful 2.0 0.63246 [2, 2, 1, 3, 3, 2, 1, 2, 2, 2] +truthfully 1.9 1.04403 [3, 1, 3, 0, 2, 1, 3, 2, 1, 3] +truthfulness 1.7 1.1 [3, 2, 2, 2, 1, -1, 3, 2, 2, 1] +truths 1.8 0.87178 [0, 1, 1, 3, 2, 2, 3, 2, 2, 2] +tumor -1.6 1.49666 [-3, -2, -2, -1, -2, 1, -4, 1, -2, -2] +turmoil -1.5 0.92195 [-1, -1, -3, -3, -2, -2, -1, -1, 0, -1] +twat -3.4 0.91652 [-3, -4, -4, -4, -3, -1, -4, -4, -3, -4] +ugh -1.8 0.9798 [-1, -1, -1, -1, -1, -2, -4, -2, -3, -2] +uglier -2.2 0.87178 [-2, -2, -1, -3, -4, -1, -3, -2, -2, -2] +uglies -2.0 0.89443 [-2, -2, -1, -3, -4, -1, -2, -2, -1, -2] +ugliest -2.8 0.74833 [-3, -3, -4, -3, -3, -3, -3, -3, -1, -2] +uglification -2.2 0.87178 [-3, -1, -2, -2, -1, -2, -4, -3, -2, -2] +uglified -1.5 0.67082 [-1, -1, -3, -2, -2, -1, -1, -1, -2, -1] +uglifies -1.8 0.74833 [-1, -1, -3, -2, -3, -1, -2, -2, -2, -1] +uglify -2.1 0.9434 [-3, -3, -1, -4, -2, -2, -1, -2, -1, -2] +uglifying -2.2 0.4 [-3, -2, -2, -2, -2, -2, -2, -2, -3, -2] +uglily -2.1 0.3 [-3, -2, -2, -2, -2, -2, -2, -2, -2, -2] +ugliness -2.7 0.9 [-4, -2, -3, -2, -4, -2, -4, -2, -2, -2] +uglinesses -2.5 1.0247 [-3, -3, -2, -1, -1, -3, -2, -2, -4, -4] +ugly -2.3 0.9 [-3, -2, -1, -2, -4, -1, -3, -2, -2, -3] +unacceptable -2.0 0.44721 [-2, -2, -1, -2, -2, -2, -2, -3, -2, -2] +unappreciated -1.7 0.78102 [-1, -3, -2, -1, -1, -1, -2, -1, -2, -3] +unapproved -1.4 0.4899 [-1, -1, -1, -2, -2, -1, -2, -2, -1, -1] +unattractive -1.9 0.53852 [-1, -2, -3, -2, -1, -2, -2, -2, -2, -2] +unaware -0.8 0.4 [-1, -1, -1, 0, -1, -1, 0, -1, -1, -1] +unbelievable 0.8 1.6 [0, 0, 1, -2, 1, 3, 1, 0, 4, 0] +unbelieving -0.8 0.4 [0, -1, -1, -1, -1, -1, -1, 0, -1, -1] +unbiased -0.1 1.22066 [-2, -1, 2, 1, 0, -1, -1, 1, 1, -1] +uncertain -1.2 0.6 [-2, -1, -2, -1, -1, -1, 0, -1, -2, -1] +uncertainly -1.4 0.4899 [-2, -1, -1, -1, -2, -1, -1, -2, -2, -1] +uncertainness -1.3 0.45826 [-2, -2, -1, -1, -1, -1, -1, -2, -1, -1] +uncertainties -1.4 0.66332 [-3, -2, -1, -1, -1, -1, -1, -2, -1, -1] +uncertainty -1.4 0.4899 [-1, -1, -2, -1, -2, -1, -2, -1, -2, -1] +unclear -1.0 0.44721 [-2, -1, 0, -1, -1, -1, -1, -1, -1, -1] +uncomfortable -1.6 0.4899 [-2, -1, -2, -1, -1, -2, -2, -1, -2, -2] +uncomfortably -1.7 0.64031 [-2, -1, -3, -1, -1, -2, -2, -1, -2, -2] +uncompelling -0.9 0.7 [0, -2, -1, 0, -1, -1, -1, 0, -1, -2] +unconcerned -0.9 0.83066 [-2, -2, -1, 1, -1, -1, -1, 0, -1, -1] +unconfirmed -0.5 0.67082 [0, -1, 0, -1, 0, -1, 0, 0, -2, 0] +uncontrollability -1.7 0.45826 [-1, -1, -2, -2, -2, -2, -1, -2, -2, -2] +uncontrollable -1.5 1.11803 [-2, -1, -1, -2, -1, -1, 1, -2, -3, -3] +uncontrollably -1.5 0.67082 [-2, -1, 0, -2, -1, -1, -2, -2, -2, -2] +uncontrolled -1.0 0.7746 [-1, 0, -1, -2, -1, 0, -1, -2, -2, 0] +unconvinced -1.6 0.8 [-2, -3, -1, -2, -1, 0, -2, -2, -1, -2] +uncredited -1.0 1.09545 [-1, -2, -2, 2, -1, -2, -1, -1, -1, -1] +undecided -0.9 0.9434 [-1, 0, -1, 0, -1, -1, -2, 0, -3, 0] +underestimate -1.2 0.4 [-1, -2, -1, -1, -1, -1, -1, -1, -2, -1] +underestimated -1.1 0.53852 [-1, -1, -1, -2, 0, -1, -2, -1, -1, -1] +underestimates -1.1 1.64012 [-2, -4, -1, -1, -1, -1, 3, -1, -2, -1] +undermine -1.2 1.16619 [-2, -2, -1, -1, -1, -1, 2, -2, -2, -2] +undermined -1.5 0.67082 [-1, -2, -1, -3, -1, -1, -1, -2, -2, -1] +undermines -1.4 0.4899 [-1, -2, -1, -2, -1, -1, -1, -2, -2, -1] +undermining -1.5 0.67082 [-1, -3, -1, -2, -2, -1, -1, -1, -2, -1] +undeserving -1.9 0.3 [-2, -2, -1, -2, -2, -2, -2, -2, -2, -2] +undesirable -1.9 0.7 [-1, -2, -3, -1, -3, -2, -1, -2, -2, -2] +unease -1.7 0.64031 [-2, -2, -2, -1, -1, -2, -1, -3, -1, -2] +uneasier -1.4 0.4899 [-1, -1, -1, -2, -2, -1, -2, -2, -1, -1] +uneasiest -2.1 0.83066 [-1, -4, -3, -2, -2, -2, -2, -2, -1, -2] +uneasily -1.4 1.0198 [-2, -2, -1, -1, -2, 1, -3, -1, -2, -1] +uneasiness -1.6 0.4899 [-2, -2, -1, -2, -1, -1, -2, -2, -1, -2] +uneasinesses -1.8 0.87178 [-2, -1, -4, -1, -1, -2, -2, -2, -1, -2] +uneasy -1.6 0.4899 [-1, -2, -2, -1, -1, -2, -2, -1, -2, -2] +unemployment -1.9 0.7 [-2, -1, -2, -3, -1, -2, -1, -2, -2, -3] +unequal -1.4 0.66332 [-1, -2, -2, -2, -1, -1, -2, 0, -2, -1] +unequaled 0.5 1.80278 [-2, 3, 0, 3, 3, 0, 0, 0, -2, 0] +unethical -2.3 0.78102 [-3, -3, -1, -2, -2, -2, -3, -1, -3, -3] +unfair -2.1 0.83066 [-1, -3, -3, -2, -3, -1, -2, -3, -1, -2] +unfocused -1.7 0.64031 [-2, -1, -2, -1, -1, -2, -3, -2, -1, -2] +unfortunate -2.0 0.63246 [-2, -2, -2, -3, -3, -1, -2, -1, -2, -2] +unfortunately -1.4 0.91652 [-2, -1, -2, -2, 1, -2, -1, -1, -2, -2] +unfortunates -1.9 0.7 [-2, -3, -1, -1, -2, -2, -2, -1, -3, -2] +unfriendly -1.5 0.5 [-1, -2, -1, -2, -1, -2, -2, -2, -1, -1] +unfulfilled -1.8 0.4 [-2, -2, -2, -2, -1, -2, -2, -1, -2, -2] +ungrateful -2.0 0.0 [-2, -2, -2, -2, -2, -2, -2, -2, -2, -2] +ungratefully -1.8 0.6 [-2, -2, -1, -2, -2, -1, -3, -1, -2, -2] +ungratefulness -1.6 0.4899 [-2, -2, -2, -2, -1, -1, -1, -2, -2, -1] +unhappier -2.4 0.8 [-2, -2, -1, -4, -3, -3, -2, -2, -2, -3] +unhappiest -2.5 0.80623 [-3, -4, -3, -2, -1, -3, -2, -2, -2, -3] +unhappily -1.9 0.53852 [-2, -1, -2, -2, -3, -2, -1, -2, -2, -2] +unhappiness -2.4 0.66332 [-3, -2, -2, -3, -2, -2, -3, -1, -3, -3] +unhappinesses -2.2 0.87178 [-3, -4, -2, -2, -2, -2, -1, -2, -1, -3] +unhappy -1.8 0.6 [-2, -2, -1, -3, -2, -2, -2, -1, -2, -1] +unhealthy -2.4 0.66332 [-1, -2, -3, -3, -2, -3, -3, -2, -2, -3] +unified 1.6 0.66332 [1, 2, 2, 1, 2, 1, 2, 1, 3, 1] +unimportant -1.3 0.45826 [-1, -1, -2, -1, -1, -2, -1, -1, -2, -1] +unimpressed -1.4 0.66332 [-1, -1, -1, -2, -1, -2, -1, -1, -3, -1] +unimpressive -1.4 0.4899 [-1, -2, -2, -1, -1, -2, -2, -1, -1, -1] +unintelligent -2.0 1.18322 [-1, -2, -3, -1, -1, -4, -1, -1, -4, -2] +uninvolved -2.2 0.9798 [-2, -1, -3, -2, -1, -3, -1, -2, -4, -3] +uninvolving -2.0 1.18322 [-4, -1, -3, -2, -1, -4, -1, -1, -2, -1] +united 1.8 0.6 [1, 2, 2, 2, 1, 2, 2, 1, 2, 3] +unjust -2.3 0.45826 [-3, -3, -2, -2, -2, -2, -3, -2, -2, -2] +unkind -1.6 0.66332 [-2, -2, -1, -1, -1, -2, -3, -1, -1, -2] +unlovable -2.7 0.9 [-4, -2, -1, -3, -3, -3, -4, -2, -3, -2] +unloved -1.9 0.53852 [-1, -2, -2, -1, -2, -2, -3, -2, -2, -2] +unlovelier -1.9 0.7 [-2, -2, -1, -3, -1, -2, -1, -3, -2, -2] +unloveliest -1.9 0.83066 [-2, -4, -2, -2, -1, -1, -1, -2, -2, -2] +unloveliness -2.0 0.89443 [-2, -3, -1, -1, -3, -1, -3, -2, -3, -1] +unlovely -2.1 0.53852 [-2, -3, -2, -3, -1, -2, -2, -2, -2, -2] +unloving -2.3 0.45826 [-2, -3, -2, -3, -2, -2, -2, -3, -2, -2] +unmatched -0.3 2.0025 [0, -1, 2, 3, 0, -1, -3, 0, -4, 1] +unmotivated -1.4 0.4899 [-2, -2, -1, -1, -1, -2, -2, -1, -1, -1] +unpleasant -2.1 0.53852 [-2, -2, -3, -3, -2, -2, -2, -2, -1, -2] +unprofessional -2.3 0.78102 [-2, -1, -3, -3, -2, -1, -3, -2, -3, -3] +unprotected -1.5 0.67082 [-2, -2, -1, -1, -3, -1, -1, -2, -1, -1] +unresearched -1.1 0.7 [-2, -1, -1, -1, -1, -2, -2, 0, 0, -1] +unsatisfied -1.7 0.64031 [-2, -1, -2, -1, -1, -2, -3, -1, -2, -2] +unsavory -1.9 0.53852 [-2, -1, -2, -2, -2, -3, -1, -2, -2, -2] +unsecured -1.6 0.4899 [-1, -2, -2, -1, -1, -2, -1, -2, -2, -2] +unsettled -1.3 0.45826 [-1, -1, -1, -2, -2, -1, -2, -1, -1, -1] +unsophisticated -1.2 0.87178 [-1, -1, -1, -2, -2, -2, -1, -2, 1, -1] +unstable -1.5 0.5 [-2, -2, -1, -2, -1, -1, -1, -2, -2, -1] +unstoppable -0.8 1.77764 [0, -4, 2, 0, 1, -2, -2, 0, -3, 0] +unsuccessful -1.5 0.5 [-2, -1, -1, -2, -2, -1, -1, -1, -2, -2] +unsuccessfully -1.7 0.78102 [-2, -2, -1, -1, -1, -2, -3, -3, -1, -1] +unsupported -1.7 0.78102 [-2, 0, -3, -2, -2, -1, -2, -2, -1, -2] +unsure -1.0 0.44721 [-1, -1, -1, -1, 0, -2, -1, -1, -1, -1] +unsurely -1.3 0.78102 [-1, 0, -1, -1, -1, -3, -1, -2, -2, -1] +untarnished 1.6 1.35647 [3, 2, 2, 1, 1, 2, -2, 3, 2, 2] +unwanted -0.9 1.3 [-1, -2, -2, -1, -2, 1, 2, -1, -2, -1] +unwelcome -1.7 0.45826 [-2, -2, -2, -1, -1, -2, -2, -1, -2, -2] +unworthy -2.0 0.44721 [-3, -2, -2, -2, -2, -2, -1, -2, -2, -2] +upset -1.6 0.4899 [-1, -1, -2, -2, -1, -1, -2, -2, -2, -2] +upsets -1.5 0.67082 [-2, -3, -1, -1, -1, -1, -2, -2, -1, -1] +upsetter -1.9 0.7 [-2, -2, -1, -1, -3, -2, -3, -1, -2, -2] +upsetters -2.0 0.63246 [-3, -3, -1, -2, -2, -2, -2, -2, -1, -2] +upsetting -2.1 0.53852 [-2, -3, -2, -3, -2, -1, -2, -2, -2, -2] +uptight -1.6 0.4899 [-2, -1, -2, -1, -1, -2, -2, -1, -2, -2] +uptightness -1.2 0.4 [-1, -2, -1, -2, -1, -1, -1, -1, -1, -1] +urgent 0.8 1.16619 [3, -1, 0, 1, 1, 0, 0, 0, 2, 2] +useful 1.9 0.83066 [2, 1, 1, 2, 2, 4, 2, 1, 2, 2] +usefully 1.8 0.6 [2, 2, 1, 3, 1, 2, 1, 2, 2, 2] +usefulness 1.2 1.32665 [3, 1, 3, -1, 2, 2, 1, 1, -1, 1] +useless -1.8 0.4 [-2, -1, -2, -2, -1, -2, -2, -2, -2, -2] +uselessly -1.5 0.67082 [-2, -3, -1, -1, -1, -1, -2, -2, -1, -1] +uselessness -1.6 0.8 [-3, -2, -2, -2, -1, -2, 0, -1, -1, -2] +v.v -2.9 0.9434 [-3, -3, -4, -3, -1, -3, -4, -2, -4, -2] +vague -0.4 0.8 [0, -1, -1, -1, 0, -1, 1, -1, 1, -1] +vain -1.8 0.6 [-2, -1, -2, -3, -2, -1, -1, -2, -2, -2] +validate 1.5 0.92195 [1, 2, 1, 1, 1, 3, 1, 3, 0, 2] +validated 0.9 0.83066 [2, 1, 0, 1, 1, 0, 2, 0, 0, 2] +validates 1.4 0.66332 [1, 1, 1, 2, 3, 1, 2, 1, 1, 1] +validating 1.4 0.8 [2, 2, 1, 3, 0, 2, 1, 1, 1, 1] +valuable 2.1 0.83066 [3, 2, 4, 2, 2, 2, 2, 1, 1, 2] +valuableness 1.7 0.78102 [2, 2, 1, 3, 3, 2, 1, 1, 1, 1] +valuables 2.1 0.83066 [4, 1, 2, 2, 3, 2, 1, 2, 2, 2] +valuably 2.3 1.00499 [3, 4, 4, 1, 2, 2, 2, 2, 1, 2] +value 1.4 1.11355 [2, 3, 0, 1, 1, 3, 0, 2, 0, 2] +valued 1.9 0.7 [3, 1, 2, 1, 2, 2, 2, 3, 2, 1] +values 1.7 1.18743 [2, 2, 2, 4, 0, 1, 0, 1, 3, 2] +valuing 1.4 0.91652 [1, 0, 3, 2, 2, 2, 2, 0, 1, 1] +vanity -0.9 1.7 [-2, -3, -3, 0, -2, -1, 2, 2, -1, -1] +verdict 0.6 0.91652 [0, 0, 0, 0, 0, 0, 0, 2, 2, 2] +verdicts 0.3 1.1 [0, 0, 0, 0, 2, 2, 0, -2, 1, 0] +vested 0.6 1.28062 [2, -2, 1, 3, 1, 0, 0, 1, 0, 0] +vexation -1.9 1.04403 [0, -2, -3, -3, -2, -2, -2, -3, 0, -2] +vexing -2.0 0.44721 [-2, -2, -2, -1, -2, -2, -2, -3, -2, -2] +vibrant 2.4 0.8 [2, 3, 1, 1, 3, 3, 3, 2, 3, 3] +vicious -1.5 1.5 [1, -2, -3, -1, -1, -3, 1, -3, -1, -3] +viciously -1.3 1.26886 [-2, -3, -1, -2, -2, -1, -1, 2, -1, -2] +viciousness -2.4 1.35647 [-3, -1, -4, -2, -3, -3, 1, -3, -3, -3] +viciousnesses -0.6 1.62481 [0, -1, -1, -3, 0, -3, 2, 1, 1, -2] +victim -1.1 1.92094 [-1, -2, 2, -3, -3, -2, -3, 1, 2, -2] +victimhood -2.0 0.44721 [-2, -2, -2, -2, -2, -1, -3, -2, -2, -2] +victimhoods -0.9 1.37477 [-1, 0, -1, 1, -2, -1, -4, 1, -1, -1] +victimise -1.1 1.92094 [-3, -3, -2, -2, -1, 2, -2, 1, -3, 2] +victimised -1.5 1.56525 [-2, -2, -2, 1, -3, 2, -2, -3, -2, -2] +victimises -1.2 2.31517 [-3, -3, -4, 2, -2, -2, 1, 2, 1, -4] +victimising -2.5 0.67082 [-3, -1, -3, -2, -2, -3, -3, -2, -3, -3] +victimization -2.3 0.78102 [-1, -3, -3, -2, -3, -1, -3, -2, -3, -2] +victimizations -1.5 1.85742 [-2, -3, -3, -1, -2, 2, 2, -2, -3, -3] +victimize -2.5 0.67082 [-3, -2, -4, -2, -2, -2, -2, -3, -3, -2] +victimized -1.8 1.53623 [-2, -1, -3, -3, -3, 1, 1, -2, -3, -3] +victimizer -1.8 1.72047 [-3, -2, -3, -3, -2, 2, 1, -2, -3, -3] +victimizers -1.6 1.68523 [-3, -2, -3, 1, -3, -1, -2, 2, -2, -3] +victimizes -1.5 1.9105 [-2, -1, -4, -3, -2, 2, 2, -2, -3, -2] +victimizing -2.6 0.4899 [-2, -3, -3, -3, -2, -3, -2, -3, -2, -3] +victimless 0.6 0.4899 [0, 1, 0, 1, 1, 0, 0, 1, 1, 1] +victimologies -0.6 1.35647 [-2, 0, -2, -1, 0, 2, 1, 0, -2, -2] +victimologist -0.5 0.67082 [0, -1, -1, 0, 0, 0, 0, -1, -2, 0] +victimologists -0.4 0.91652 [0, 1, 0, -2, -2, 0, 0, 0, -1, 0] +victimology 0.3 1.00499 [0, 0, 0, -1, 0, 1, 0, 0, 3, 0] +victims -1.3 2.05183 [-3, -1, -3, -3, -3, 2, 1, -2, 2, -3] +vigilant 0.7 0.9 [0, 2, 0, 2, 0, -1, 1, 1, 1, 1] +vigor 1.1 1.37477 [0, 3, 2, 1, 2, 2, 0, 1, -2, 2] +vigorish -0.4 1.2 [0, -3, -1, -1, 0, -1, 0, 0, 2, 0] +vigorishes 0.4 1.56205 [0, 0, 2, 1, 2, 0, -2, -2, 0, 3] +vigoroso 1.5 0.67082 [2, 0, 1, 2, 2, 1, 2, 1, 2, 2] +vigorously 0.5 0.92195 [0, 0, 0, 1, 2, 0, 2, -1, 1, 0] +vigorousness 0.4 1.11355 [0, 3, 0, -1, -1, 0, 0, 1, 1, 1] +vigors 1.0 1.0 [0, 1, 0, 1, 0, 0, 1, 3, 2, 2] +vigour 0.9 0.9434 [0, 2, 2, 2, 1, 1, 0, 1, -1, 1] +vigours 0.4 1.68523 [-4, 1, 1, 1, -1, 1, 2, 2, 0, 1] +vile -3.1 0.83066 [-4, -2, -4, -4, -2, -3, -3, -3, -2, -4] +villain -2.6 0.4899 [-3, -2, -2, -3, -2, -2, -3, -3, -3, -3] +villainess -2.9 0.53852 [-3, -2, -3, -4, -3, -2, -3, -3, -3, -3] +villainesses -2.0 1.18322 [-2, -3, -2, -2, -2, -3, 1, -3, -1, -3] +villainies -2.3 1.00499 [-3, -2, -3, -3, -3, -1, -3, -2, -3, 0] +villainous -2.0 0.63246 [-3, -2, -1, -2, -2, -2, -2, -1, -2, -3] +villainously -2.9 0.53852 [-3, -3, -3, -3, -3, -4, -2, -3, -2, -3] +villainousness -2.7 0.9 [-4, -3, -4, -3, -1, -3, -2, -2, -2, -3] +villains -3.4 0.91652 [-4, -3, -4, -3, -4, -3, -4, -4, -1, -4] +villainy -2.6 0.4899 [-3, -2, -3, -3, -2, -2, -2, -3, -3, -3] +vindicate 0.3 1.95192 [2, -1, -2, -3, -1, 3, 0, 3, 1, 1] +vindicated 1.8 1.16619 [1, 3, -1, 2, 2, 1, 3, 2, 2, 3] +vindicates 1.6 0.66332 [2, 3, 2, 2, 2, 1, 1, 1, 1, 1] +vindicating -1.1 1.97231 [-3, -2, 2, -3, -2, 1, 1, 1, -3, -3] +violate -2.2 0.6 [-3, -3, -2, -3, -2, -2, -1, -2, -2, -2] +violated -2.4 0.66332 [-3, -3, -3, -3, -2, -3, -1, -2, -2, -2] +violater -2.6 0.91652 [-3, -3, -4, -4, -2, -3, -2, -2, -2, -1] +violaters -2.4 0.8 [-1, -3, -1, -2, -3, -3, -3, -2, -3, -3] +violates -2.3 0.9 [-3, -2, -4, -3, -2, -3, -2, -2, -1, -1] +violating -2.5 0.92195 [-2, -3, -3, -1, -3, -2, -4, -1, -3, -3] +violation -2.2 0.9798 [-3, -1, -1, -3, -3, -2, -1, -2, -2, -4] +violations -2.4 0.66332 [-2, -2, -2, -3, -2, -4, -2, -2, -2, -3] +violative -2.4 0.66332 [-2, -3, -3, -3, -1, -3, -2, -2, -2, -3] +violator -2.4 1.0198 [-1, -4, -3, -2, -3, -2, -2, -1, -4, -2] +violators -1.9 1.51327 [-2, 2, -3, -4, -1, -2, -3, -2, -2, -2] +violence -3.1 0.53852 [-2, -3, -3, -3, -3, -4, -4, -3, -3, -3] +violent -2.9 0.53852 [-3, -3, -3, -3, -3, -4, -3, -2, -2, -3] +violently -2.8 0.74833 [-3, -3, -2, -3, -3, -3, -4, -1, -3, -3] +virtue 1.8 0.74833 [1, 2, 3, 2, 2, 2, 3, 1, 1, 1] +virtueless -1.4 1.0198 [-2, 0, -2, -3, -1, -3, -1, -1, -1, 0] +virtues 1.5 0.80623 [2, 2, 2, 1, 0, 1, 3, 1, 2, 1] +virtuosa 1.7 1.48661 [0, 4, 2, 3, 2, 3, 0, 2, -1, 2] +virtuosas 1.8 0.87178 [2, 3, 1, 2, 1, 0, 3, 2, 2, 2] +virtuose 1.0 1.41421 [2, 1, 0, 2, 1, -1, 1, 1, -1, 4] +virtuosi 0.9 1.37477 [2, 0, 0, 2, 1, 0, 0, 1, -1, 4] +virtuosic 2.2 1.07703 [2, 2, 4, 1, 0, 3, 3, 2, 2, 3] +virtuosity 2.1 0.83066 [3, 3, 3, 2, 1, 3, 2, 2, 1, 1] +virtuoso 2.0 1.0 [2, 2, 3, 2, 1, 0, 3, 3, 3, 1] +virtuosos 1.8 1.16619 [2, 3, 1, -1, 2, 1, 3, 3, 2, 2] +virtuous 2.4 1.2 [0, 3, 2, 1, 3, 4, 2, 2, 4, 3] +virtuously 1.8 1.16619 [3, 2, 3, 1, 3, 1, -1, 2, 2, 2] +virtuousness 2.0 1.09545 [3, 4, 2, 2, 0, 1, 2, 3, 2, 1] +virulent -2.7 0.64031 [-3, -2, -4, -2, -3, -3, -2, -3, -2, -3] +vision 1.0 1.0 [0, 0, 0, 2, 1, 3, 2, 1, 1, 0] +visionary 2.4 1.0198 [1, 3, 1, 2, 4, 1, 3, 3, 3, 3] +visioning 1.1 0.9434 [1, 2, 0, 0, 3, 0, 1, 1, 2, 1] +visions 0.9 0.9434 [2, 0, 0, 0, 0, 1, 2, 2, 0, 2] +vital 1.2 1.46969 [-3, 2, 1, 1, 2, 2, 1, 2, 2, 2] +vitalise 1.1 0.9434 [1, 2, 0, 2, 2, 0, 2, 0, 2, 0] +vitalised 0.6 1.49666 [1, -2, 2, 0, 2, 1, -2, 2, 0, 2] +vitalises 1.1 1.3 [1, 2, 2, 0, 2, 2, -2, 2, 0, 2] +vitalising 2.1 0.53852 [2, 2, 3, 2, 3, 2, 2, 1, 2, 2] +vitalism 0.2 0.6 [0, 0, 0, 0, 0, 0, 0, 0, 2, 0] +vitalist 0.3 0.64031 [0, 0, 0, 0, 0, 0, 1, 0, 2, 0] +vitalists 0.3 1.34536 [2, -3, 1, 0, 0, 0, 1, 0, 2, 0] +vitalities 1.2 0.87178 [2, 1, 3, 1, 1, 0, 2, 1, 0, 1] +vitality 1.3 0.9 [3, 2, 0, 1, 1, 1, 2, 0, 2, 1] +vitalization 1.6 0.91652 [2, 3, 3, 1, 2, 1, 0, 2, 1, 1] +vitalizations 0.8 0.74833 [0, 1, 1, 2, 0, 0, 0, 2, 1, 1] +vitalize 1.6 0.66332 [3, 2, 2, 1, 2, 1, 1, 1, 2, 1] +vitalized 1.5 0.67082 [1, 1, 2, 2, 0, 2, 1, 2, 2, 2] +vitalizes 1.4 0.4899 [2, 1, 1, 2, 1, 2, 1, 2, 1, 1] +vitalizing 1.3 0.9 [3, 1, 0, 0, 1, 1, 2, 2, 2, 1] +vitally 1.1 0.53852 [0, 2, 1, 1, 1, 1, 2, 1, 1, 1] +vitals 1.1 0.7 [1, 0, 1, 2, 2, 0, 2, 1, 1, 1] +vitamin 1.2 0.87178 [3, 1, 0, 0, 1, 2, 1, 2, 1, 1] +vitriolic -2.1 0.83066 [-2, -2, -2, -4, -3, -2, -1, -1, -2, -2] +vivacious 1.8 0.9798 [0, 1, 3, 3, 3, 2, 2, 2, 1, 1] +vociferous -0.8 0.9798 [1, -2, -1, -2, -1, -1, 1, -1, -1, -1] +vulnerabilities -0.6 1.49666 [0, -3, -1, -1, -1, 2, -2, 2, -1, -1] +vulnerability -0.9 1.75784 [1, -1, -1, -2, 1, -3, -1, 2, -4, -1] +vulnerable -0.9 1.37477 [-2, -2, 2, -1, -3, -1, 1, -1, -1, -1] +vulnerableness -1.1 1.04403 [-1, -1, -2, -3, -1, 1, 0, -2, -1, -1] +vulnerably -1.2 1.46969 [-2, -2, 2, -1, -2, -3, 1, -1, -2, -2] +vulture -2.0 0.89443 [-2, -3, -1, -2, -1, -1, -1, -3, -3, -3] +vultures -1.3 1.55242 [-2, -3, -2, 2, -2, -2, -3, -1, -1, 1] +w00t 2.2 1.32665 [3, 2, 3, 2, 0, 4, 0, 4, 2, 2] +walkout -1.3 0.9 [-1, -2, -2, -1, -1, -2, -1, 1, -2, -2] +walkouts -0.7 1.00499 [-2, -2, -1, 0, -1, -1, -1, 1, -1, 1] +wanker -2.5 0.67082 [-2, -3, -3, -2, -3, -3, -2, -1, -3, -3] +want 0.3 1.18743 [0, -2, 0, 1, 2, -1, 2, 1, 0, 0] +war -2.9 1.13578 [-1, -3, -4, -4, -3, -1, -2, -3, -4, -4] +warfare -1.2 1.16619 [-2, 0, -1, -2, 0, -3, 1, -2, -2, -1] +warfares -1.8 0.87178 [-2, -1, -2, -2, -3, -1, -3, 0, -2, -2] +warm 0.9 0.7 [1, 0, 0, 1, 1, 2, 1, 2, 1, 0] +warmblooded 0.2 0.6 [0, 0, 2, 0, 0, 0, 0, 0, 0, 0] +warmed 1.1 0.53852 [2, 0, 1, 1, 1, 2, 1, 1, 1, 1] +warmer 1.2 0.9798 [2, 2, 2, 1, -1, 0, 2, 1, 1, 2] +warmers 1.0 0.44721 [1, 1, 1, 2, 1, 1, 1, 0, 1, 1] +warmest 1.7 1.34536 [3, 2, 1, 2, 3, 2, 2, 2, -2, 2] +warmhearted 1.8 0.6 [3, 2, 2, 2, 2, 1, 2, 1, 1, 2] +warmheartedness 2.7 0.64031 [2, 4, 3, 2, 3, 3, 3, 2, 2, 3] +warming 0.6 0.8 [0, 0, 2, 2, 1, 1, 0, 0, 0, 0] +warmish 1.4 0.66332 [1, 3, 2, 1, 1, 1, 1, 2, 1, 1] +warmly 1.7 0.64031 [2, 1, 2, 1, 2, 1, 2, 1, 2, 3] +warmness 1.5 0.92195 [3, 1, 2, 1, 0, 1, 3, 2, 1, 1] +warmonger -2.9 1.13578 [-3, 0, -4, -4, -2, -3, -4, -3, -3, -3] +warmongering -2.5 0.67082 [-2, -3, -3, -1, -2, -3, -3, -2, -3, -3] +warmongers -2.8 0.87178 [-2, -3, -4, -4, -3, -1, -2, -3, -3, -3] +warmouth 0.4 0.66332 [0, 0, 2, 0, 0, 0, 0, 1, 1, 0] +warmouths -0.8 1.32665 [-1, -1, -2, -1, -2, -2, 0, 2, 1, -2] +warms 1.1 0.7 [2, 2, 1, 2, 1, 0, 1, 1, 0, 1] +warmth 2.0 0.44721 [2, 2, 2, 2, 1, 2, 2, 3, 2, 2] +warmup 0.4 0.66332 [0, 2, 0, 1, 1, 0, 0, 0, 0, 0] +warmups 0.8 0.9798 [0, 2, 0, 0, 0, 2, 2, 0, 2, 0] +warn -0.4 1.35647 [0, -1, 0, -2, -1, 2, 1, -2, 1, -2] +warned -1.1 0.53852 [-1, -1, -2, 0, -1, -1, -1, -2, -1, -1] +warning -1.4 1.0198 [-2, -1, -1, -1, -2, 0, -4, -1, -1, -1] +warnings -1.2 0.9798 [-2, -1, 0, -1, -2, 0, 0, -1, -3, -2] +warns -0.4 1.0198 [1, -1, -1, 1, -1, -1, -2, 1, 0, -1] +warred -2.4 0.8 [-2, -2, -4, -1, -3, -2, -3, -2, -3, -2] +warring -1.9 1.04403 [-3, -3, 0, -1, -2, -2, -3, -1, -1, -3] +wars -2.6 0.8 [-2, -3, -1, -3, -2, -4, -3, -3, -2, -3] +warsaw -0.1 0.3 [0, -1, 0, 0, 0, 0, 0, 0, 0, 0] +warsaws -0.2 0.4 [0, 0, 0, -1, 0, 0, 0, 0, -1, 0] +warship -0.7 0.9 [0, 0, 0, 0, 0, -2, -1, 0, -2, -2] +warships -0.5 0.80623 [0, -1, 0, 0, -2, 0, 0, -2, 0, 0] +warstle 0.1 0.7 [0, 0, 0, 0, 0, 0, 0, 0, 2, -1] +waste -1.8 0.9798 [-2, -2, -1, -3, -2, -1, -1, -4, -1, -1] +wasted -2.2 0.6 [-2, -3, -2, -3, -1, -3, -2, -2, -2, -2] +wasting -1.7 0.9 [-3, -1, -2, -2, -1, -2, -3, 0, -1, -2] +wavering -0.6 1.0198 [-1, -1, 0, 0, -1, -1, -1, 2, -1, -2] +weak -1.9 0.7 [-1, -3, -2, -2, -3, -2, -2, -1, -2, -1] +weaken -1.8 0.6 [-2, -2, -2, -1, -1, -3, -2, -2, -1, -2] +weakened -1.3 0.9 [-2, -1, -1, -1, -1, -2, -2, -2, 1, -2] +weakener -1.6 1.11355 [-2, -1, -1, -1, -2, -2, -3, -3, 1, -2] +weakeners -1.3 0.45826 [-1, -2, -1, -2, -1, -1, -2, -1, -1, -1] +weakening -1.3 0.45826 [-2, -1, -1, -1, -1, -1, -1, -2, -2, -1] +weakens -1.3 0.45826 [-1, -1, -1, -1, -1, -2, -1, -2, -1, -2] +weaker -1.9 0.83066 [-2, -2, -2, -2, -2, -1, -4, -1, -1, -2] +weakest -2.3 0.64031 [-2, -4, -2, -3, -2, -2, -2, -2, -2, -2] +weakfish -0.2 1.07703 [0, -2, 0, 0, 0, 0, -2, 0, 2, 0] +weakfishes -0.6 0.8 [0, -1, 0, -2, 0, 0, -1, 0, -2, 0] +weakhearted -1.6 0.8 [-1, -3, -1, -1, -2, -1, -3, -2, -1, -1] +weakish -1.2 0.4 [-1, -2, -1, -1, -1, -1, -2, -1, -1, -1] +weaklier -1.5 0.67082 [-1, -2, -1, -3, -2, -1, -1, -2, -1, -1] +weakliest -2.1 0.83066 [-2, -2, -2, -2, -3, -1, -2, -1, -4, -2] +weakling -1.3 1.00499 [-1, -2, -1, -3, -2, -2, -1, -1, 1, -1] +weaklings -1.4 0.66332 [-2, -1, -1, -1, -1, -2, -2, 0, -2, -2] +weakly -1.8 0.87178 [-2, -2, -2, -2, -4, -1, -1, -1, -1, -2] +weakness -1.8 0.6 [-2, -2, -2, -1, -1, -2, -1, -3, -2, -2] +weaknesses -1.5 0.5 [-2, -2, -1, -1, -2, -1, -1, -2, -1, -2] +weakside -1.1 1.37477 [-3, -2, -3, -1, -2, -1, 1, 1, -1, 0] +wealth 2.2 0.4 [2, 3, 2, 2, 2, 3, 2, 2, 2, 2] +wealthier 2.2 0.6 [3, 2, 1, 3, 2, 2, 2, 3, 2, 2] +wealthiest 2.2 0.9798 [2, 4, 4, 1, 2, 1, 2, 2, 2, 2] +wealthily 2.0 0.89443 [2, 3, 1, 4, 2, 1, 1, 2, 2, 2] +wealthiness 2.4 1.11355 [2, 4, 2, 4, 1, 2, 4, 1, 2, 2] +wealthy 1.5 1.0247 [1, 2, 1, 4, 1, 0, 2, 1, 2, 1] +weapon -1.2 0.87178 [0, -2, -2, -1, 0, -2, -1, -2, 0, -2] +weaponed -1.4 0.91652 [-2, -2, -3, -1, -1, 0, 0, -2, -1, -2] +weaponless 0.1 1.13578 [2, -1, 0, 0, -1, 1, -1, 0, 2, -1] +weaponry -0.9 0.7 [-2, -2, 0, -1, 0, -1, -1, -1, 0, -1] +weapons -1.9 0.9434 [-2, -1, -2, -2, -1, -3, -3, -3, -2, 0] +weary -1.1 1.13578 [-2, -1, -2, -3, 0, -1, -1, -2, 0, 1] +weep -2.7 0.9 [-2, -4, -4, -3, -3, -3, -3, -2, -1, -2] +weeper -1.9 0.53852 [-2, -2, -2, -3, -1, -1, -2, -2, -2, -2] +weepers -1.1 1.13578 [-2, -2, -1, -2, -1, 1, -2, 1, -1, -2] +weepie -0.4 0.91652 [0, 1, -1, 0, -1, -2, 0, -1, -1, 1] +weepier -1.8 0.87178 [-3, -3, -2, -1, -2, -2, -2, 0, -1, -2] +weepies -1.6 0.8 [-2, -3, -2, -1, -1, -2, -2, 0, -1, -2] +weepiest -2.4 0.91652 [-4, -2, -2, -2, -2, -1, -2, -2, -4, -3] +weeping -1.9 0.9434 [-2, -2, -1, -1, -1, -1, -4, -2, -2, -3] +weepings -1.9 0.9434 [-2, -2, -3, 0, -1, -2, -2, -3, -1, -3] +weeps -1.4 1.35647 [-2, -3, -1, -2, -1, -3, 1, -2, 1, -2] +weepy -1.3 1.55242 [-2, -3, -1, -2, 2, -3, -1, -2, 1, -2] +weird -0.7 0.64031 [-1, 0, 0, -1, -1, -1, 0, 0, -2, -1] +weirder -0.5 0.80623 [1, -1, -1, -1, -1, 1, -1, -1, 0, -1] +weirdest -0.9 1.22066 [-2, 0, -2, -1, -1, -1, -3, 1, 1, -1] +weirdie -1.3 0.45826 [-1, -2, -1, -2, -1, -1, -2, -1, -1, -1] +weirdies -1.0 0.63246 [0, -1, -1, -1, -1, 0, -2, -2, -1, -1] +weirdly -1.2 0.74833 [0, -1, -1, -2, -3, -1, -1, -1, -1, -1] +weirdness -0.9 1.64012 [-3, -2, -1, -1, 2, -1, 1, -3, 1, -2] +weirdnesses -0.7 1.00499 [-1, -2, 0, -1, -2, 1, -1, -1, -1, 1] +weirdo -1.8 0.6 [-2, -2, -2, -2, -2, -2, -1, -1, -3, -1] +weirdoes -1.3 0.64031 [-2, -1, -2, -1, -1, -2, -1, 0, -1, -2] +weirdos -1.1 0.9434 [-1, -1, -1, -2, 1, -3, -1, -1, -1, -1] +weirds -0.6 0.4899 [-1, -1, -1, 0, -1, 0, 0, -1, 0, -1] +weirdy -0.9 0.83066 [-1, -1, 0, 0, -1, 0, -2, -2, 0, -2] +welcome 2.0 0.63246 [1, 3, 2, 1, 2, 2, 2, 2, 3, 2] +welcomed 1.4 0.4899 [1, 1, 2, 2, 1, 2, 1, 2, 1, 1] +welcomely 1.9 0.53852 [2, 2, 2, 2, 1, 3, 2, 1, 2, 2] +welcomeness 2.0 0.89443 [2, 3, 1, 2, 3, 0, 2, 3, 2, 2] +welcomer 1.4 0.4899 [1, 1, 2, 2, 2, 2, 1, 1, 1, 1] +welcomers 1.9 0.7 [2, 2, 3, 2, 2, 1, 1, 3, 1, 2] +welcomes 1.7 0.78102 [1, 1, 2, 2, 3, 3, 1, 2, 1, 1] +welcoming 1.9 0.7 [2, 2, 1, 1, 2, 2, 2, 3, 3, 1] +well 1.1 1.04403 [0, 0, 2, 0, 2, 0, 1, 1, 3, 2] +welladay 0.3 1.18743 [2, -2, 0, 0, -1, 1, 0, 1, 2, 0] +wellaway -0.8 1.98997 [3, -2, -3, -3, -1, -2, 1, -2, -1, 2] +wellborn 1.8 0.74833 [2, 1, 2, 1, 2, 2, 1, 3, 1, 3] +welldoer 2.5 0.67082 [2, 2, 2, 3, 2, 3, 4, 3, 2, 2] +welldoers 1.6 0.8 [3, 1, 1, 0, 2, 1, 2, 2, 2, 2] +welled 0.4 0.8 [0, 0, 2, 0, 0, 0, 0, 0, 2, 0] +wellhead 0.1 0.3 [0, 0, 1, 0, 0, 0, 0, 0, 0, 0] +wellheads 0.5 0.92195 [0, 2, 0, 2, -1, 0, 1, 1, 0, 0] +wellhole -0.1 0.3 [0, 0, 0, -1, 0, 0, 0, 0, 0, 0] +wellies 0.4 0.4899 [0, 1, 0, 0, 0, 1, 0, 0, 1, 1] +welling 1.6 0.8 [2, 0, 1, 2, 2, 1, 3, 2, 2, 1] +wellness 1.9 0.9434 [1, 2, 2, 1, 2, 1, 1, 3, 4, 2] +wells 1.0 1.0 [2, 0, 3, 0, 1, 0, 2, 1, 1, 0] +wellsite 0.5 0.67082 [0, 0, 1, 2, 0, 0, 0, 0, 1, 1] +wellspring 1.5 0.92195 [3, 1, 1, 1, 0, 2, 2, 3, 1, 1] +wellsprings 1.4 0.8 [1, 0, 0, 2, 2, 2, 1, 2, 2, 2] +welly 0.2 0.4 [0, 0, 0, 1, 0, 1, 0, 0, 0, 0] +wept -2.0 1.09545 [-3, -2, -3, -3, -1, -3, 0, -1, -1, -3] +whimsical 0.3 1.61555 [2, 1, 1, 2, -1, 1, -3, -2, 1, 1] +whine -1.5 1.11803 [-1, -4, -1, -1, -1, -3, 0, -2, -1, -1] +whined -0.9 1.04403 [-2, -1, -2, -1, -1, -1, -2, 1, 1, -1] +whiner -1.2 0.4 [-1, -2, -1, -1, -1, -2, -1, -1, -1, -1] +whiners -0.6 1.95959 [-2, 0, -2, -2, 4, 1, 1, -2, -2, -2] +whines -1.8 0.6 [-2, -2, -2, -1, -2, -2, -3, -1, -2, -1] +whiney -1.3 0.45826 [-1, -2, -1, -1, -1, -2, -2, -1, -1, -1] +whining -0.9 1.51327 [-3, 0, -1, -1, -3, -1, 1, 2, -2, -1] +whitewash 0.1 0.7 [-1, 0, 1, -1, 0, 0, 0, 1, 1, 0] +whore -3.3 0.64031 [-4, -4, -3, -2, -3, -4, -3, -3, -4, -3] +whored -2.8 0.87178 [-2, -3, -4, -2, -2, -3, -4, -4, -2, -2] +whoredom -2.1 2.02237 [-4, -2, -4, -3, -3, -3, -4, -1, 2, 1] +whoredoms -2.4 1.11355 [-1, -3, 0, -3, -2, -3, -3, -4, -2, -3] +whorehouse -1.1 2.11896 [-2, -2, -2, 3, 3, -3, -3, -2, -1, -2] +whorehouses -1.9 1.92094 [-4, -3, -4, -3, 0, 0, -3, 2, -1, -3] +whoremaster -1.9 1.22066 [-1, -3, -3, -2, -1, -3, 0, 0, -3, -3] +whoremasters -1.5 1.85742 [-3, -1, -1, -4, -2, 2, -1, 1, -2, -4] +whoremonger -2.6 0.91652 [-3, -1, -3, -3, -3, -3, -3, -1, -4, -2] +whoremongers -2.0 1.78885 [-4, -3, 0, -3, -3, -3, -3, 1, 1, -3] +whores -3.0 1.0 [-3, -3, -4, -2, -1, -3, -4, -4, -2, -4] +whoreson -2.2 1.46969 [-2, -3, -4, -4, -3, -1, -1, 1, -3, -2] +whoresons -2.5 1.20416 [-3, -3, -2, -2, 0, -4, -3, -1, -3, -4] +wicked -2.4 0.8 [-3, -4, -3, -3, -2, -2, -2, -1, -2, -2] +wickeder -2.2 1.32665 [-2, -3, -1, -4, 1, -3, -3, -3, -2, -2] +wickedest -2.9 1.04403 [-3, -1, -3, -3, -3, -3, -1, -4, -4, -4] +wickedly -2.1 0.83066 [-2, -2, -1, -3, -2, -3, -1, -3, -1, -3] +wickedness -2.1 0.83066 [-2, -1, -2, -2, -3, -1, -2, -4, -2, -2] +wickednesses -2.2 1.16619 [-1, -2, -4, -2, -3, -1, -3, -4, -1, -1] +widowed -2.1 1.22066 [0, -4, -2, -4, -3, -2, -2, -2, -1, -1] +willingness 1.1 0.7 [0, 2, 1, 1, 2, 2, 1, 0, 1, 1] +wimp -1.4 1.28062 [-2, -3, -1, -2, -1, -2, -2, -1, 2, -2] +wimpier -1.0 1.18322 [-1, -2, -2, -1, -2, 0, 1, -2, 1, -2] +wimpiest -0.9 1.22066 [-3, -1, -2, -1, -2, -1, 1, 1, 0, -1] +wimpiness -1.2 0.9798 [1, -1, -3, -1, -2, -1, -1, -1, -2, -1] +wimpish -1.6 0.4899 [-2, -1, -2, -1, -2, -2, -1, -2, -2, -1] +wimpishness -0.2 1.249 [-3, -1, 0, -1, -1, 1, 1, 1, 1, 0] +wimple -0.2 0.74833 [0, -1, 0, 0, 0, 0, -2, 0, 0, 1] +wimples -0.3 0.78102 [-2, 0, 0, 0, 0, -1, 0, -1, 1, 0] +wimps -1.0 1.18322 [-2, -2, -1, -1, 0, -2, -2, 1, -2, 1] +wimpy -0.9 1.04403 [-2, -1, -1, -1, -1, -2, -1, 1, -2, 1] +win 2.8 0.87178 [3, 2, 4, 3, 2, 4, 3, 1, 3, 3] +winnable 1.8 0.6 [3, 2, 2, 2, 2, 1, 1, 1, 2, 2] +winned 1.8 0.6 [2, 2, 2, 2, 1, 2, 1, 1, 3, 2] +winner 2.8 0.87178 [2, 2, 2, 3, 4, 2, 3, 4, 2, 4] +winners 2.1 1.44568 [3, 3, 2, 3, 3, 2, 2, -2, 3, 2] +winning 2.4 0.4899 [2, 3, 3, 2, 2, 2, 3, 3, 2, 2] +winningly 2.3 1.48661 [1, 3, 4, 3, 3, 1, 2, 3, -1, 4] +winnings 2.5 0.92195 [3, 4, 3, 2, 2, 3, 1, 1, 3, 3] +winnow -0.3 1.00499 [0, -1, 0, -2, 1, 1, -2, 0, 0, 0] +winnower -0.1 0.3 [0, 0, 0, 0, 0, -1, 0, 0, 0, 0] +winnowers -0.2 0.6 [0, 0, 0, 0, 0, 0, 0, 0, -2, 0] +winnowing -0.1 0.53852 [0, 0, -1, 0, 0, 0, 0, 1, -1, 0] +winnows -0.2 0.4 [0, 0, -1, -1, 0, 0, 0, 0, 0, 0] +wins 2.7 0.78102 [2, 2, 3, 3, 4, 4, 3, 2, 2, 2] +wisdom 2.4 0.66332 [2, 3, 4, 2, 3, 2, 2, 2, 2, 2] +wise 2.1 0.83066 [2, 3, 1, 4, 2, 2, 1, 2, 2, 2] +wiseacre -1.2 1.16619 [-2, -1, -2, -2, -2, -1, -2, 1, 1, -2] +wiseacres -0.1 0.9434 [-2, 1, 0, -1, 0, 1, 1, -1, 0, 0] +wiseass -1.8 0.6 [-2, -2, -1, -1, -2, -2, -3, -2, -1, -2] +wiseasses -1.5 1.36015 [-1, -2, 2, -2, -1, -3, -2, -3, -1, -2] +wisecrack -0.1 1.22066 [-1, -1, -1, -2, 2, 1, -1, 1, 1, 0] +wisecracked -0.5 0.92195 [1, 1, -1, -1, 0, -1, -2, 0, -1, -1] +wisecracker -0.1 0.7 [-1, 1, -1, -1, 0, 0, 0, 0, 1, 0] +wisecrackers 0.1 1.04403 [-1, 0, 1, 1, 0, 2, 1, -1, -1, -1] +wisecracking -0.6 0.4899 [0, 0, -1, 0, -1, 0, -1, -1, -1, -1] +wisecracks -0.3 1.55242 [1, 2, -1, 2, -3, 0, 0, -2, -1, -1] +wised 1.5 0.67082 [2, 2, 2, 1, 1, 2, 0, 1, 2, 2] +wiseguys 0.3 1.9 [4, -1, 1, -1, 1, 2, 2, -2, -2, -1] +wiselier 0.9 1.3 [1, 2, 2, -2, 0, 1, 3, 1, 0, 1] +wiseliest 1.6 1.49666 [1, 4, 2, 2, 1, 2, 2, 3, -2, 1] +wisely 1.8 0.6 [1, 2, 3, 2, 1, 2, 2, 1, 2, 2] +wiseness 1.9 0.7 [2, 3, 2, 2, 3, 1, 1, 1, 2, 2] +wisenheimer -1.0 1.18322 [-1, 1, -1, -1, -1, 0, -1, -3, 0, -3] +wisenheimers -1.4 0.91652 [-3, -3, -2, -1, -1, -1, 0, -1, -1, -1] +wisents 0.4 0.91652 [0, 0, 0, 0, 1, 0, 0, 0, 3, 0] +wiser 1.2 0.87178 [1, 3, 0, 1, 1, 2, 0, 2, 1, 1] +wises 1.3 1.48661 [3, 3, 2, -2, 2, 0, 0, 2, 2, 1] +wisest 2.1 1.51327 [1, 3, 3, 3, 3, 2, 2, 3, -2, 3] +wisewomen 1.3 0.9 [2, 2, 0, 0, 2, 0, 1, 2, 2, 2] +wish 1.7 1.1 [2, 1, 1, 0, 2, 1, 3, 2, 4, 1] +wishes 0.6 0.8 [0, 0, 1, 0, 1, 0, 2, 0, 2, 0] +wishing 0.9 0.7 [2, 1, 1, 0, 0, 0, 1, 1, 2, 1] +witch -1.5 0.80623 [-1, -2, -2, -1, -3, 0, -2, -2, -1, -1] +withdrawal 0.1 1.57797 [1, -1, 0, -2, -2, 2, -1, 1, 0, 3] +woe -1.8 0.6 [-3, -2, -2, -2, -1, -1, -2, -1, -2, -2] +woebegone -2.6 0.66332 [-3, -2, -3, -2, -2, -4, -3, -2, -2, -3] +woebegoneness -1.1 1.37477 [-3, 0, -1, 1, -1, -4, 0, -1, -1, -1] +woeful -1.9 0.83066 [-1, -2, -2, -1, -3, -3, -1, -2, -1, -3] +woefully -1.7 1.48661 [-1, -3, -2, 1, -3, -3, -2, -2, 1, -3] +woefulness -2.1 0.7 [-3, -2, -2, -1, -2, -3, -3, -1, -2, -2] +woes -1.9 0.83066 [-2, -2, -2, -1, -2, -3, -3, 0, -2, -2] +woesome -1.2 1.6 [-2, -3, -2, -1, 0, 3, -2, -2, -1, -2] +won 2.7 0.9 [3, 4, 2, 2, 2, 4, 4, 2, 2, 2] +wonderful 2.7 0.78102 [2, 3, 3, 2, 4, 2, 2, 3, 4, 2] +wonderfully 2.9 0.83066 [1, 3, 3, 4, 3, 2, 3, 3, 4, 3] +wonderfulness 2.9 0.53852 [3, 2, 3, 3, 3, 3, 3, 2, 4, 3] +woo 2.1 1.37477 [4, 2, 1, 3, 2, 2, -1, 2, 2, 4] +woohoo 2.3 1.1 [3, 3, 1, 4, 4, 2, 1, 1, 2, 2] +woot 1.8 1.07703 [2, 0, 2, 2, 2, 2, 0, 4, 2, 2] +worn -1.2 0.4 [-1, -1, -1, -1, -1, -1, -2, -1, -2, -1] +worried -1.2 0.74833 [-1, -1, -1, -1, -1, -2, -3, 0, -1, -1] +worriedly -2.0 0.44721 [-2, -2, -3, -2, -2, -2, -2, -1, -2, -2] +worrier -1.8 0.6 [-2, -2, -1, -2, -1, -3, -2, -2, -1, -2] +worriers -1.7 0.45826 [-2, -1, -2, -2, -2, -2, -1, -2, -1, -2] +worries -1.8 0.6 [-2, -2, -1, -2, -1, -2, -2, -3, -1, -2] +worriment -1.5 0.67082 [-1, -2, -1, -1, -1, -2, -1, -3, -1, -2] +worriments -1.9 0.7 [-2, -1, -2, -3, -1, -2, -3, -1, -2, -2] +worrisome -1.7 0.64031 [-1, -1, -1, -2, -1, -2, -3, -2, -2, -2] +worrisomely -2.0 0.63246 [-1, -2, -1, -2, -2, -3, -2, -2, -3, -2] +worrisomeness -1.9 0.53852 [-2, -2, -3, -1, -2, -2, -2, -1, -2, -2] +worrit -2.1 0.53852 [-2, -2, -1, -2, -2, -3, -3, -2, -2, -2] +worrits -1.2 0.9798 [-1, -2, -2, -1, 0, 0, -1, -3, 0, -2] +worry -1.9 0.7 [-2, -3, -1, -3, -1, -2, -1, -2, -2, -2] +worrying -1.4 0.66332 [-2, -1, -2, -2, -1, 0, -1, -1, -2, -2] +worrywart -1.8 0.9798 [-2, -2, -2, -1, -1, -1, -1, -3, -1, -4] +worrywarts -1.5 0.5 [-2, -1, -2, -2, -2, -1, -1, -1, -2, -1] +worse -2.1 0.83066 [-2, -2, -1, -3, -4, -2, -1, -2, -2, -2] +worsen -2.3 0.78102 [-4, -3, -1, -2, -2, -2, -2, -3, -2, -2] +worsened -1.9 1.22066 [-2, -2, -2, -1, -2, -2, -4, 1, -3, -2] +worsening -2.0 0.44721 [-2, -3, -2, -2, -2, -2, -1, -2, -2, -2] +worsens -2.1 0.53852 [-2, -2, -2, -2, -1, -2, -2, -3, -3, -2] +worser -2.0 0.89443 [-2, -2, -4, -1, -2, -2, -2, -3, -1, -1] +worship 1.2 1.07703 [1, 0, 0, 1, 3, 0, 2, 3, 1, 1] +worshiped 2.4 1.0198 [1, 2, 4, 3, 4, 1, 2, 3, 2, 2] +worshiper 1.0 1.0 [0, 0, 2, 3, 0, 2, 1, 1, 1, 0] +worshipers 0.9 0.83066 [0, 0, 0, 2, 1, 1, 1, 2, 2, 0] +worshipful 0.7 1.00499 [1, -1, 3, 1, 1, 1, 0, 0, 0, 1] +worshipfully 1.1 1.3 [0, 0, 0, 1, 3, 0, 3, 3, 1, 0] +worshipfulness 1.6 0.8 [3, 1, 2, 2, 1, 1, 3, 1, 1, 1] +worshiping 1.0 1.18322 [0, 3, 0, 3, 0, 1, 1, 2, 0, 0] +worshipless -0.6 1.0198 [0, -1, -3, -1, -1, -1, 0, 0, 0, 1] +worshipped 2.7 0.78102 [3, 2, 3, 3, 1, 4, 2, 3, 3, 3] +worshipper 0.6 0.66332 [1, 1, 0, 0, 1, 0, 0, 2, 1, 0] +worshippers 0.8 0.87178 [0, 1, 0, 0, 3, 1, 1, 1, 0, 1] +worshipping 1.6 1.28062 [1, 3, 3, 3, 0, 3, 1, 0, 2, 0] +worships 1.4 1.11355 [2, 0, 1, 3, 2, 1, 0, 3, 2, 0] +worst -3.1 1.04403 [-4, -4, -3, -1, -3, -4, -2, -2, -4, -4] +worth 0.9 0.9434 [0, 0, 1, 1, 2, 1, 1, 3, 0, 0] +worthless -1.9 1.13578 [-3, -1, -3, -4, -1, -3, -1, -1, -1, -1] +worthwhile 1.4 0.4899 [1, 1, 1, 2, 1, 1, 2, 1, 2, 2] +worthy 1.9 0.53852 [2, 2, 2, 1, 1, 2, 2, 2, 3, 2] +wow 2.8 0.9798 [2, 3, 2, 4, 4, 3, 3, 2, 1, 4] +wowed 2.6 0.8 [3, 3, 4, 3, 2, 1, 3, 3, 2, 2] +wowing 2.5 0.67082 [2, 2, 3, 3, 2, 3, 4, 2, 2, 2] +wows 2.0 1.61245 [2, 3, 3, 3, 2, 1, -2, 1, 4, 3] +wowser -1.1 2.02237 [-3, 3, 0, 2, -2, -1, -3, -2, -2, -3] +wowsers 1.0 2.14476 [0, -2, 4, 2, 3, 0, 1, 2, -3, 3] +wrathful -2.7 0.64031 [-3, -2, -2, -3, -3, -2, -4, -2, -3, -3] +wreck -1.9 0.7 [-1, -2, -3, -3, -2, -2, -2, -1, -1, -2] +wrong -2.1 1.04403 [-2, -2, -2, -2, -4, -4, -1, -1, -1, -2] +wronged -1.9 0.53852 [-2, -2, -2, -2, -2, -1, -3, -2, -2, -1] +x-d 2.6 0.91652 [2, 3, 3, 4, 1, 2, 3, 4, 2, 2] +x-p 1.7 0.45826 [2, 2, 1, 2, 2, 1, 1, 2, 2, 2] +xd 2.8 0.87178 [3, 3, 4, 2, 3, 3, 1, 2, 4, 3] +xp 1.6 0.4899 [2, 2, 2, 1, 1, 1, 2, 2, 1, 2] +yay 2.4 1.0198 [1, 3, 3, 2, 2, 1, 4, 4, 2, 2] +yeah 1.2 0.6 [1, 1, 1, 2, 1, 1, 0, 2, 1, 2] +yearning 0.5 1.0247 [0, 1, 0, 1, 0, 3, 0, 1, -1, 0] +yeees 1.7 1.00499 [1, 3, 1, 2, 1, 1, 4, 2, 1, 1] +yep 1.2 0.4 [1, 1, 1, 1, 1, 1, 2, 2, 1, 1] +yes 1.7 0.78102 [1, 2, 2, 1, 1, 1, 3, 3, 1, 2] +youthful 1.3 0.45826 [1, 2, 1, 2, 1, 1, 1, 1, 2, 1] +yucky -1.8 0.6 [-2, -1, -1, -2, -2, -1, -2, -2, -3, -2] +yummy 2.4 1.0198 [1, 2, 4, 3, 2, 2, 3, 1, 4, 2] +zealot -1.9 1.04403 [-2, -3, -1, -2, -1, -3, -4, -1, -1, -1] +zealots -0.8 1.83303 [-1, -2, -1, -2, -2, 1, -2, 4, -1, -2] +zealous 0.5 1.43178 [2, -1, 2, 1, 0, 0, 3, 0, -2, 0] +{: 1.8 0.9798 [1, 3, 2, 2, 1, 1, 4, 2, 1, 1] +|-0 -1.2 0.74833 [0, -2, -1, -1, -1, -1, -1, -1, -1, -3] +|-: -0.8 0.74833 [-1, -2, 0, -1, 0, -2, -1, -1, 0, 0] +|-:> -1.6 0.4899 [-1, -2, -2, -2, -2, -1, -1, -2, -2, -1] +|-o -1.2 0.9798 [-1, 0, -1, -1, -1, -1, -1, -4, -1, -1] +|: -0.5 1.68819 [2, -3, -1, 0, -1, -1, -1, -2, -1, 3] +|;-) 2.2 1.32665 [4, 1, 1, 1, 3, 2, 4, 1, 4, 1] +|= -0.4 1.56205 [2, -2, -1, 0, -1, -1, -1, -2, -1, 3] +|^: -1.1 0.7 [-2, 0, -1, -1, 0, -1, -1, -2, -2, -1] +|o: -0.9 0.53852 [-1, 0, -1, -2, -1, 0, -1, -1, -1, -1] +||-: -2.3 0.45826 [-2, -2, -2, -3, -3, -3, -2, -2, -2, -2] +}: -2.1 0.83066 [-1, -1, -3, -2, -3, -2, -2, -1, -3, -3] +}:( -2.0 0.63246 [-3, -1, -2, -1, -3, -2, -2, -2, -2, -2] +}:) 0.4 1.42829 [1, 1, -2, 1, 2, -2, 1, -1, 2, 1] +}:-( -2.1 0.7 [-2, -1, -2, -2, -2, -4, -2, -2, -2, -2] +}:-) 0.3 1.61555 [1, 1, -2, 1, -1, -3, 2, 2, 1, 1] \ No newline at end of file diff --git a/src/constants/__init__.py b/src/constants/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/constants/local_constants.py b/src/constants/local_constants.py new file mode 100644 index 0000000000000000000000000000000000000000..30e47d8cc8ddfacb48e96e306d95e075b7757b90 --- /dev/null +++ b/src/constants/local_constants.py @@ -0,0 +1,21 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +""" +fileName: local_constants.py +description: Local constants for usecase module +""" + +DELTED_SUCCESS_MESSAGE="Successfully deleted the usecase :" +USECASE_ALREADY_EXISTS= "Usecase with name PLACEHOLDER_TEXT already exists" +USECASE_NOT_FOUND_ERROR="Usecase id PLACEHOLDER_TEXT Not Found" +USECASE_NAME_VALIDATION_ERROR="Usecase name should not be empty" +SPACE_DELIMITER=" " +PLACEHOLDER_TEXT="PLACEHOLDER_TEXT" \ No newline at end of file diff --git a/src/dao/AdminDb.py b/src/dao/AdminDb.py new file mode 100644 index 0000000000000000000000000000000000000000..98c8453d2e9ef958722ca6b9d3171fc2ffbe8d44 --- /dev/null +++ b/src/dao/AdminDb.py @@ -0,0 +1,76 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import os +import pymongo + +from dotenv import load_dotenv +import sys +load_dotenv() +import json +import requests +import urllib.parse + +import requests +import json +import traceback +import os + +import logging + +class AttributeDict(dict): + __getattr__ = dict.__getitem__ + __setattr__ = dict.__setitem__ + __delattr__ = dict.__delitem__ + + +myclient = pymongo.MongoClient(os.getenv("MONGO_PATH")) +print(myclient) +# dbname = os.getenv("APP_MONGO_DBNAME") +dbname = os.getenv("DB_NAME") + +class DB: + def connect(): + try: + # myclient = pymongo.MongoClient(os.getenv("MONGO_PATH")) + # mydb = myclient[os.getenv("DB_NAME")] + mydb = myclient[dbname] + + return mydb + except Exception as e: + logging.error("error in DB connection") + logging.error(str(e)) + sys.exit() + +mydb=DB.connect() + + +class Results: + mycol = mydb["moderationtelemetrydata"] + logdb=mydb["Logdb"] + # mycol = mydb["Results"] + mycol2 = mydb["Results"] + # mycol2 = mydb["Resultswithfeedback"] + + + def createlog(value): + + try: + print(value) + PtrnRecogCreatedData = Results.logdb.insert_one(value) + print("PtrnRecogCreatedData.acknowledged",PtrnRecogCreatedData.acknowledged) + return PtrnRecogCreatedData.acknowledged + except Exception as e: + logging.error("Error occured in Results create") + logging.error(f"Exception: {e}") + + + + \ No newline at end of file diff --git a/src/dao/temp.txt b/src/dao/temp.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f8456b69f6fd7b4dd52813ef3a86098696e985d --- /dev/null +++ b/src/dao/temp.txt @@ -0,0 +1,24 @@ +fastapi +pydantic +uvicorn +certifi +FastAPI-SQLAlchemy +pip +PyYAML +pandas +python-multipart +pymongo +python-dotenv +requests +requests-file +setuptools +SQLAlchemy +starlette +typer +typing_extensions +urllib3 +wasabi +#https://huggingface.co/spacy/en_core_web_lg/resolve/main/en_core_web_lg-any-py3-none-any.whl +#../lib/presidio_analyzer-4.0.6-py3-none-any.whl +../lib/aicloudlibs-0.1.0-py3-none-any.whl +#../lib/en_core_web_lg-any-py3-none-any.whl diff --git a/src/exception/__init__.py b/src/exception/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/exception/exception.py b/src/exception/exception.py new file mode 100644 index 0000000000000000000000000000000000000000..bfdcfe39e36015364882c2c564d8cb8a50c3a237 --- /dev/null +++ b/src/exception/exception.py @@ -0,0 +1,50 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +""" +fileName: exception.py +description: handles usecase module specific exception +""" + +import sys, traceback + +from constants.local_constants import SPACE_DELIMITER,PLACEHOLDER_TEXT,USECASE_ALREADY_EXISTS,USECASE_NOT_FOUND_ERROR,USECASE_NAME_VALIDATION_ERROR + +from aicloudlibs.constants import constants as global_constants +from abc import ABC + + +class modeldeploymentException(Exception, ABC): + """ + description: Abstract base class of UsecaseException. + """ + + def __init__(self, detail: str) -> None: + self.status_code = global_constants.HTTP_STATUS_BAD_REQUEST + super().__init__(detail) + + +class modeldeploymentNotFoundError(modeldeploymentException): + """ + description: UsecaseNotFoundError thrown by usecase service + when the requested usecase details not found for a specific user. + """ + def __init__(self,name): + self.status_code = global_constants.HTTP_STATUS_NOT_FOUND + self.detail = USECASE_NOT_FOUND_ERROR.replace(PLACEHOLDER_TEXT,name) + +class modeldeploymentNameNotEmptyError(modeldeploymentException): + """ + description: UsecaseNameNotEmptyError thrown by create usecase service + when the requested usecase details not having usecase name. + """ + def __init__(self,name): + self.status_code = global_constants.HTTP_STATUS_409_CODE + self.detail = USECASE_NAME_VALIDATION_ERROR diff --git a/src/exestep.txt b/src/exestep.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc3220f8bc5274e457b9b7f1a245e1d293877cb0 --- /dev/null +++ b/src/exestep.txt @@ -0,0 +1,10 @@ +// MIT license https://opensource.org/licenses/MIT +// Copyright 2024 Infosys Ltd +// +// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +pyinstaller --onedir --add-data "C:\WORK\GIT\responsible-ai-mm-flask\myenv\Lib\site-packages;." --add-data "C:\WORK\GIT\responsible-ai-mm-flask\models;models" main.py \ No newline at end of file diff --git a/src/fileModelMapping.txt b/src/fileModelMapping.txt new file mode 100644 index 0000000000000000000000000000000000000000..8382b5a7b48edfa37e548039c504d86ba7f367d6 --- /dev/null +++ b/src/fileModelMapping.txt @@ -0,0 +1,19 @@ +// MIT license https://opensource.org/licenses/MIT +// Copyright 2024 Infosys Ltd +// +// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +Main File Requirement File Models + +main_detoxify.py detoxify_requirement.txt detoxify +main_embeding.py embending_requirement.txt multi-qa-mpnet-base-dot-v1 +main_injection.py injection_requirement.txt dbertaInjection +main_privacy.py privacy_requirement.txt NA +main_topic.py topic_requirement.txt restricted-dberta-base-zeroshot-v2,nli-MiniLM2-L6-H768 +main_MM.py requirement.txt ALL +main.py requirement.txt ALL diff --git a/src/logger.ini b/src/logger.ini new file mode 100644 index 0000000000000000000000000000000000000000..52431084a2b34155fa863d86cb4068324381baea --- /dev/null +++ b/src/logger.ini @@ -0,0 +1,5 @@ +[logDetails] +LOG_LEVEL=ERROR +FILE_NAME=responsible-ai-servicelogs +VERBOSE=False +LOG_DIR=/responsible-ai/logs \ No newline at end of file diff --git a/src/logs/rai/responsible-ai-servicelogs_20240221_174013.log b/src/logs/rai/responsible-ai-servicelogs_20240221_174013.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/logs/rai/responsible-ai-servicelogs_20240221_174501.log b/src/logs/rai/responsible-ai-servicelogs_20240221_174501.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000000000000000000000000000000000000..f38e7abd04f6c190402d2c146c517a01e50b3e59 --- /dev/null +++ b/src/main.py @@ -0,0 +1,60 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import os +from flask import Flask,request,jsonify +from flask_swagger_ui import get_swaggerui_blueprint +from routing.router import router +# from routing.safety_router import img_router +from config.logger import CustomLogger,request_id_var +from waitress import serve +from werkzeug.exceptions import HTTPException,UnsupportedMediaType,BadRequest +from mapper.mapper import * + +SWAGGER_URL = '/rai/v1/raimoderationmodels/docs' +API_URL = '/static/swagger.json' + +swaggerui_blueprint = get_swaggerui_blueprint( + SWAGGER_URL, + API_URL +) + +log=CustomLogger() +app = Flask(__name__) +app.register_blueprint(swaggerui_blueprint) +app.register_blueprint(router,url_prefix='/rai/v1/raimoderationmodels') +# app.register_blueprint(img_router,url_prefix='/rai/v1/raimoderationmodels') + + +def handle_http_exception(exc): + """Handles HTTP exceptions, returning a JSON response.""" + response = jsonify({"error": exc.description}) + response.status_code = exc.code + return response + +@app.errorhandler(HTTPException) +def handle_all_http_exceptions(exc): + """Global exception handler for HTTP errors.""" + return handle_http_exception(exc) + +def handle_unsupported_mediatype(exc): + """Handles unsupported media type exceptions.""" + return jsonify({"error": "Unsupported media type"}), 415 # 415 Unsupported Media Type + +@app.errorhandler(UnsupportedMediaType) +def handle_all_unsupported_mediatype_exceptions(exc): + """Global exception handler for unsupported media types.""" + return handle_unsupported_mediatype(exc) + + +if __name__ == "__main__": + serve(app, host='0.0.0.0', port=8000, threads=int(os.getenv('THREADS',1)),connection_limit=int(os.getenv('CONNECTION_LIMIT',500)), channel_timeout=int(os.getenv('CHANNEL_TIMEOUT',120))) + #app.run() + diff --git a/src/main_MM.py b/src/main_MM.py new file mode 100644 index 0000000000000000000000000000000000000000..cfff367e76532d962928650954cb2959fc810771 --- /dev/null +++ b/src/main_MM.py @@ -0,0 +1,77 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import os +from flask import Flask,request,jsonify +from flask_swagger_ui import get_swaggerui_blueprint + +from routing.injectionRouter import injection_router +from routing.detoxifyRouter import detoxify_router +from routing.embedingRouter import embed_router +from routing.privacyRouter import privacy_router +from routing.topicRouter import topic_router +from routing.sentimentRouter import sentiment_router +from routing.invisibletextRouter import invisibletext_router +from routing.gibberishRouter import gibberish_router +from routing.bancodeRouter import bancode_router +# from routing.safety_router import img_router +from config.logger import CustomLogger,request_id_var +from waitress import serve +from werkzeug.exceptions import HTTPException,UnsupportedMediaType,BadRequest +from mapper.mapper import * + +SWAGGER_URL = '/rai/v1/raimoderationmodels/docs' +API_URL = '/static/swagger.json' + +swaggerui_blueprint = get_swaggerui_blueprint( + SWAGGER_URL, + API_URL +) + +log=CustomLogger() +app = Flask(__name__) +app.register_blueprint(swaggerui_blueprint) +app.register_blueprint(injection_router,url_prefix='/rai/v1/raimoderationmodels') +app.register_blueprint(detoxify_router,url_prefix='/rai/v1/raimoderationmodels') +app.register_blueprint(embed_router,url_prefix='/rai/v1/raimoderationmodels') +app.register_blueprint(privacy_router,url_prefix='/rai/v1/raimoderationmodels') +app.register_blueprint(topic_router,url_prefix='/rai/v1/raimoderationmodels') +app.register_blueprint(sentiment_router,url_prefix='/rai/v1/raimoderationmodels') +app.register_blueprint(invisibletext_router,url_prefix='/rai/v1/raimoderationmodels') +app.register_blueprint(gibberish_router,url_prefix='/rai/v1/raimoderationmodels') +app.register_blueprint(bancode_router,url_prefix='/rai/v1/raimoderationmodels') +# app.register_blueprint(img_router,url_prefix='/rai/v1/raimoderationmodels') + + +def handle_http_exception(exc): + """Handles HTTP exceptions, returning a JSON response.""" + response = jsonify({"error": exc.description}) + response.status_code = exc.code + return response + +@app.errorhandler(HTTPException) +def handle_all_http_exceptions(exc): + """Global exception handler for HTTP errors.""" + return handle_http_exception(exc) + +def handle_unsupported_mediatype(exc): + """Handles unsupported media type exceptions.""" + return jsonify({"error": "Unsupported media type"}), 415 # 415 Unsupported Media Type + +@app.errorhandler(UnsupportedMediaType) +def handle_all_unsupported_mediatype_exceptions(exc): + """Global exception handler for unsupported media types.""" + return handle_unsupported_mediatype(exc) + + +if __name__ == "__main__": + serve(app, host='0.0.0.0', port=8000, threads=int(os.getenv('THREADS',1)),connection_limit=int(os.getenv('CONNECTION_LIMIT',500)), channel_timeout=int(os.getenv('CHANNEL_TIMEOUT',120))) + #app.run() + diff --git a/src/main_detoxify.py b/src/main_detoxify.py new file mode 100644 index 0000000000000000000000000000000000000000..de397943c676c9943410c42e4d5d6bba38a7a458 --- /dev/null +++ b/src/main_detoxify.py @@ -0,0 +1,60 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import os +from flask import Flask,request,jsonify +from flask_swagger_ui import get_swaggerui_blueprint +from routing.detoxifyRouter import detoxify_router as router +# from routing.safety_router import img_router +from config.logger import CustomLogger,request_id_var +from waitress import serve +from werkzeug.exceptions import HTTPException,UnsupportedMediaType,BadRequest +from mapper.mapper import * + +SWAGGER_URL = '/rai/v1/raimoderationmodels/detoxifymodel/docs' +API_URL = '/static/detoxify_swagger.json' + +swaggerui_blueprint = get_swaggerui_blueprint( + SWAGGER_URL, + API_URL +) + +log=CustomLogger() +app = Flask(__name__) +app.register_blueprint(swaggerui_blueprint) +app.register_blueprint(router,url_prefix='/rai/v1/raimoderationmodels') +# app.register_blueprint(img_router,url_prefix='/rai/v1/raimoderationmodels') + + +def handle_http_exception(exc): + """Handles HTTP exceptions, returning a JSON response.""" + response = jsonify({"error": exc.description}) + response.status_code = exc.code + return response + +@app.errorhandler(HTTPException) +def handle_all_http_exceptions(exc): + """Global exception handler for HTTP errors.""" + return handle_http_exception(exc) + +def handle_unsupported_mediatype(exc): + """Handles unsupported media type exceptions.""" + return jsonify({"error": "Unsupported media type"}), 415 # 415 Unsupported Media Type + +@app.errorhandler(UnsupportedMediaType) +def handle_all_unsupported_mediatype_exceptions(exc): + """Global exception handler for unsupported media types.""" + return handle_unsupported_mediatype(exc) + + +if __name__ == "__main__": + serve(app, host='0.0.0.0', port=8000, threads=int(os.getenv('THREADS',1)),connection_limit=int(os.getenv('CONNECTION_LIMIT',500)), channel_timeout=int(os.getenv('CHANNEL_TIMEOUT',120))) + #app.run() + diff --git a/src/main_embeding.py b/src/main_embeding.py new file mode 100644 index 0000000000000000000000000000000000000000..682f362807b18f3870fb9335b27e76d48f5bd31a --- /dev/null +++ b/src/main_embeding.py @@ -0,0 +1,60 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import os +from flask import Flask,request,jsonify +from flask_swagger_ui import get_swaggerui_blueprint +from routing.embedingRouter import embed_router as router +# from routing.safety_router import img_router +from config.logger import CustomLogger,request_id_var +from waitress import serve +from werkzeug.exceptions import HTTPException,UnsupportedMediaType,BadRequest +from mapper.mapper import * + +SWAGGER_URL = '/rai/v1/raimoderationmodels/embeding/docs' +API_URL = '/static/embeding_swagger.json' + +swaggerui_blueprint = get_swaggerui_blueprint( + SWAGGER_URL, + API_URL +) + +log=CustomLogger() +app = Flask(__name__) +app.register_blueprint(swaggerui_blueprint) +app.register_blueprint(router,url_prefix='/rai/v1/raimoderationmodels/embeding') +# app.register_blueprint(img_router,url_prefix='/rai/v1/raimoderationmodels') + + +def handle_http_exception(exc): + """Handles HTTP exceptions, returning a JSON response.""" + response = jsonify({"error": exc.description}) + response.status_code = exc.code + return response + +@app.errorhandler(HTTPException) +def handle_all_http_exceptions(exc): + """Global exception handler for HTTP errors.""" + return handle_http_exception(exc) + +def handle_unsupported_mediatype(exc): + """Handles unsupported media type exceptions.""" + return jsonify({"error": "Unsupported media type"}), 415 # 415 Unsupported Media Type + +@app.errorhandler(UnsupportedMediaType) +def handle_all_unsupported_mediatype_exceptions(exc): + """Global exception handler for unsupported media types.""" + return handle_unsupported_mediatype(exc) + + +if __name__ == "__main__": + serve(app, host='0.0.0.0', port=8000, threads=int(os.getenv('THREADS',1)),connection_limit=int(os.getenv('CONNECTION_LIMIT',500)), channel_timeout=int(os.getenv('CHANNEL_TIMEOUT',120))) + #app.run() + diff --git a/src/main_injection.py b/src/main_injection.py new file mode 100644 index 0000000000000000000000000000000000000000..74e16973e45e1fe778789591da2ac8e41ea66dae --- /dev/null +++ b/src/main_injection.py @@ -0,0 +1,60 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import os +from flask import Flask,request,jsonify +from flask_swagger_ui import get_swaggerui_blueprint +from routing.injectionRouter import injection_router as router +# from routing.safety_router import img_router +from config.logger import CustomLogger,request_id_var +from waitress import serve +from werkzeug.exceptions import HTTPException,UnsupportedMediaType,BadRequest +from mapper.mapper import * + +SWAGGER_URL = '/rai/v1/raimoderationmodels/promptinjectionmodel/docs' +API_URL = '/static/injection_swagger.json' + +swaggerui_blueprint = get_swaggerui_blueprint( + SWAGGER_URL, + API_URL +) + +log=CustomLogger() +app = Flask(__name__) +app.register_blueprint(swaggerui_blueprint) +app.register_blueprint(router,url_prefix='/rai/v1/raimoderationmodels') +# app.register_blueprint(img_router,url_prefix='/rai/v1/raimoderationmodels') + + +def handle_http_exception(exc): + """Handles HTTP exceptions, returning a JSON response.""" + response = jsonify({"error": exc.description}) + response.status_code = exc.code + return response + +@app.errorhandler(HTTPException) +def handle_all_http_exceptions(exc): + """Global exception handler for HTTP errors.""" + return handle_http_exception(exc) + +def handle_unsupported_mediatype(exc): + """Handles unsupported media type exceptions.""" + return jsonify({"error": "Unsupported media type"}), 415 # 415 Unsupported Media Type + +@app.errorhandler(UnsupportedMediaType) +def handle_all_unsupported_mediatype_exceptions(exc): + """Global exception handler for unsupported media types.""" + return handle_unsupported_mediatype(exc) + + +if __name__ == "__main__": + serve(app, host='0.0.0.0', port=8000, threads=int(os.getenv('THREADS',1)),connection_limit=int(os.getenv('CONNECTION_LIMIT',500)), channel_timeout=int(os.getenv('CHANNEL_TIMEOUT',120))) + #app.run() + diff --git a/src/main_privacy.py b/src/main_privacy.py new file mode 100644 index 0000000000000000000000000000000000000000..083c04c8ea90673d474cff815c0642cc8a9f4488 --- /dev/null +++ b/src/main_privacy.py @@ -0,0 +1,60 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import os +from flask import Flask,request,jsonify +from flask_swagger_ui import get_swaggerui_blueprint +from routing.privacyRouter import privacy_router as router +# from routing.safety_router import img_router +from config.logger import CustomLogger,request_id_var +from waitress import serve +from werkzeug.exceptions import HTTPException,UnsupportedMediaType,BadRequest +from mapper.mapper import * + +SWAGGER_URL = '/rai/v1/raimoderationmodels/privacy/docs' +API_URL = '/static/privacy_swagger.json' + +swaggerui_blueprint = get_swaggerui_blueprint( + SWAGGER_URL, + API_URL +) + +log=CustomLogger() +app = Flask(__name__) +app.register_blueprint(swaggerui_blueprint) +app.register_blueprint(router,url_prefix='/rai/v1/raimoderationmodels') +# app.register_blueprint(img_router,url_prefix='/rai/v1/raimoderationmodels') + + +def handle_http_exception(exc): + """Handles HTTP exceptions, returning a JSON response.""" + response = jsonify({"error": exc.description}) + response.status_code = exc.code + return response + +@app.errorhandler(HTTPException) +def handle_all_http_exceptions(exc): + """Global exception handler for HTTP errors.""" + return handle_http_exception(exc) + +def handle_unsupported_mediatype(exc): + """Handles unsupported media type exceptions.""" + return jsonify({"error": "Unsupported media type"}), 415 # 415 Unsupported Media Type + +@app.errorhandler(UnsupportedMediaType) +def handle_all_unsupported_mediatype_exceptions(exc): + """Global exception handler for unsupported media types.""" + return handle_unsupported_mediatype(exc) + + +if __name__ == "__main__": + serve(app, host='0.0.0.0', port=8000, threads=int(os.getenv('THREADS',1)),connection_limit=int(os.getenv('CONNECTION_LIMIT',500)), channel_timeout=int(os.getenv('CHANNEL_TIMEOUT',120))) + #app.run() + diff --git a/src/main_test.py b/src/main_test.py new file mode 100644 index 0000000000000000000000000000000000000000..e582f84b6e3378f27ff30e22767bfac0249086a6 --- /dev/null +++ b/src/main_test.py @@ -0,0 +1,494 @@ +''' +Copyright 2024-2025 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import pickle +import torch +import os +import time +import logging +from flask import Flask, render_template, request, jsonify +from flask import g +from datetime import datetime +import json +from transformers import AutoModelForSequenceClassification, AutoTokenizer +from sentence_transformers import SentenceTransformer,util +from detoxify import Detoxify +from presidio_analyzer import AnalyzerEngine, RecognizerRegistry +from transformers import AutoModelForSequenceClassification, AutoTokenizer, pipeline +from dao.AdminDb import Results +from werkzeug.exceptions import HTTPException,BadRequest,UnprocessableEntity,InternalServerError +from tqdm.auto import tqdm +from fastapi.encoders import jsonable_encoder + + +import numpy as np + +import traceback +import uuid +from waitress import serve +from mapper.mapper import * +import contextvars + +app = Flask(__name__) +print("before loading model") +request_id_var = contextvars.ContextVar("request_id_var") +#pipe = StableDiffusionPipeline.from_pretrained('/model/stablediffusion/fp32/model') +device = "cuda" +registry = RecognizerRegistry() +registry.load_predefined_recognizers() +analyzer_engine = AnalyzerEngine(registry=registry) + +device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") +gpu=0 if torch.cuda.is_available() else -1 +check_point = 'toxic_debiased-c7548aa0.ckpt' +toxicityModel = Detoxify(checkpoint='../models/detoxify/'+ check_point, + device=device, + huggingface_config_path='../models/detoxify') + +PromptModel_dberta = AutoModelForSequenceClassification.from_pretrained("../models/dbertaInjection").to(device) +Prompttokens_dberta = AutoTokenizer.from_pretrained("../models/dbertaInjection") + +topictokenizer_Facebook = AutoTokenizer.from_pretrained("../models/facebook") +topicmodel_Facebook = AutoModelForSequenceClassification.from_pretrained("../models/facebook").to(device) + +topictokenizer_dberta = AutoTokenizer.from_pretrained("../models/restricted-dberta-large-zeroshot") +topicmodel_dberta = AutoModelForSequenceClassification.from_pretrained("../models/restricted-dberta-large-zeroshot").to(device) + +# classifier = pipeline("zero-shot-classification",model="../models/facebook",device=device) +# classifier2 = pipeline("zero-shot-classification",model="../models/restricted-dberta-large-zeroshot",device=device) +encoder = SentenceTransformer("../models/multi-qa-mpnet-base-dot-v1").to(device) +jailbreakModel = encoder +similarity_model =encoder +request_id_var.set("Startup") +log_dict={} +print("model loaded") + +@app.errorhandler(HTTPException) +def handle_exception(e): + """Return JSON instead of HTML for HTTP errors.""" + # start with the correct headers and status code from the error + response = e.get_response() + # replace the body with JSON + response.data = json.dumps({ + "code": e.code, + "details": e.description, + }) + response.content_type = "application/json" + return response + +@app.errorhandler(UnprocessableEntity) +def validation_error_handler(exc): + """Return JSON instead of HTML for HTTP errors.""" + # start with the correct headers and status code from the error + response = exc.get_response() + print(response) + # replace the body with JSON + exc_code_desc=exc.description.split("-") + exc_code=int(exc_code_desc[0]) + exc_desc=exc_code_desc[1] + response.data = json.dumps({ + "code": exc_code, + "details": exc_desc, + }) + response.content_type = "application/json" + return response + +@app.errorhandler(InternalServerError) +def validation_error_handler(exc): + """Return JSON instead of HTML for HTTP errors.""" + # start with the correct headers and status code from the error + response = exc.get_response() + print(response) + # replace the body with JSON + response.data = json.dumps({ + "code": 500, + "details": "Some Error Occurred ,Please try Later", + }) + response.content_type = "application/json" + return response + +@app.route("/rai/v2test/raimoderationmodels/detoxifymodel",methods=[ 'POST']) +def toxic_model(): + st=time.time() + + try: + + id=uuid.uuid4().hex + payload=request.get_json() + request_id_var.set(id) + logging.info("before invoking toxic_model service ") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0): + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = toxicity_check(payload,id) + + logging.info("after invoking toxic_model service ") + + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + + + if len(er)!=0: + Results.createlog(logobj) + del log_dict[id] + logging.debug("response : " + str(response)) + logging.info("exit toxic_model routing method") + logging.info(f"Time taken by toxicity {time.time()-st}") + return jsonable_encoder(response) + except UnprocessableEntity as cie: + logging.error(cie.__dict__) + logging.info("exit toxic_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + logging.error(cie.__dict__) + logging.info("exit toxic_model routing method") + raise HTTPException() + +@app.route("/rai/v2test/raimoderationmodels/privacy",methods=[ 'POST']) +def pii_check(): + st=time.time() + logging.info("Entered pii_check routing method") + try: + + id=uuid.uuid4().hex + payload=request.get_json() + request_id_var.set(id) + logging.info("before invoking create usecase service ") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0) or payload['entitiesselected'] is None or (payload['entitiesselected'] is not None and len(payload['entitiesselected'])==0): + raise UnprocessableEntity("1021-invalid input!") + response = privacy(id,payload['text'],payload['entitiesselected']) + logging.info("after invoking create usecase service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + Results.createlog(logobj) + del log_dict[id] + logging.debug("response : " + str(response)) + # logging.debug("response : " + str(response)) + logging.info("exit pii_check routing method") + logging.info(f"Time taken by privacy {time.time()-st}") + return jsonable_encoder(response) + except Exception as cie: + logging.error(cie.__dict__) + logging.info("exit pii_check routing method") + raise HTTPException() + +@app.route("/rai/v2test/raimoderationmodels/promptinjectionmodel",methods=[ 'POST']) +def prompt_model(): + st=time.time() + logging.info("Entered prompt_model routing method") + try: + + id=uuid.uuid4().hex + payload=request.get_json() + request_id_var.set(id) + logging.info("before invoking prompt_model service") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0): + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = promptInjection_check(payload['text'],id) + logging.info("after invoking prompt_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + Results.createlog(logobj) + del log_dict[id] + logging.debug("response : " + str(response)) + # logging.debug("response : " + str(response)) + logging.info("exit prompt_model routing method") + logging.info(f"Time taken by promptinjection {time.time()-st}") + return jsonable_encoder(response) + except Exception as cie: + logging.error(cie.__dict__) + logging.info("exit prompt_model routing method") + raise HTTPException() + +@app.route("/rai/v2test/raimoderationmodels/restrictedtopicmodel",methods=[ 'POST']) +def restrictedTopic_model(): + st=time.time() + logging.info("Entered restrictedTopic_model routing method") + try: + id=uuid.uuid4().hex + payload=request.get_json() + request_id_var.set(id) + logging.info("before invoking restrictedTopic_model service ") + log_dict[request_id_var.get()]=[] + + label_cond = payload['labels'] is None or (payload['labels'] is not None and len(payload['labels'])==0) + model_cond=False + # print("--") + if("model" in payload): + model_cond = payload['model'] is None or (payload['model'] is not None and len(payload['model'])==0) + # print("==") + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0) or label_cond or model_cond: + raise UnprocessableEntity("1021-invalid input ") + response = restricttopic_check(payload,id) + logging.info("after invoking restrictedTopic_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + Results.createlog(logobj) + del log_dict[id] + logging.debug("response : " + str(response)) + # logging.debug("response : " + str(response)) + logging.info("exit restrictedTopic_model routing method") + logging.info(f"Time taken by RestrictedTopic{time.time()-st}") + # print(type(response)) + # print(type(jsonable_encoder(response))) + return jsonable_encoder(response) + except Exception as cie: + + logging.error(cie.__dict__) + logging.info("exit restrictedTopic_model routing method") + raise HTTPException() + +@app.route("/rai/v2test/raimoderationmodels/multi_q_net_embedding",methods=[ 'POST']) +def embedding_model(): + st=time.time() + logging.info("Entered embedding_model routing method") + try: + + id=uuid.uuid4().hex + payload=request.get_json() + request_id_var.set(id) + logging.info("before invoking embedding_model service ") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0): + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = multi_q_net_embedding(id,payload['text']) + logging.info("after invoking embedding_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + Results.createlog(logobj) + del log_dict[id] + logging.debug("response : " + str(response)) + # logging.debug("response : " + str(response)) + logging.info("exit embedding_model routing method") + logging.info(f"Time taken by Jailbreak {time.time()-st}") + return jsonable_encoder(response) + except Exception as cie: + logging.error(cie.__dict__) + logging.info("exit embedding_model routing method") + raise HTTPException() + +@app.route("/rai/v2test/raimoderationmodels/multi-qa-mpnet-model_similarity",methods=[ 'POST']) +def similarity_model(): + st=time.time() + logging.info("Entered similarity_model routing method") + try: + + id=uuid.uuid4().hex + request_id_var.set(id) + logging.info("before invoking similarity_model service ") + payload=request.get_json() + log_dict[request_id_var.get()]=[] + text1_cond = payload['text1'] is None or (payload['text1'] is not None and len(payload['text1'])==0) + text2_cond = payload['text2'] is None or (payload['text2'] is not None and len(payload['text2'])==0) + emb1_cond = payload['emb1'] is None or (payload['emb1'] is not None and len(payload['emb1'])==0) + emb2_cond = payload['emb2'] is None or (payload['emb2'] is not None and len(payload['emb2'])==0) + if text1_cond or text2_cond or emb1_cond or emb2_cond: + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = multi_q_net_similarity(id,payload['text1'],payload['text2'],payload['emb1'],payload['emb2']) + logging.info("after invoking similarity_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + Results.createlog(logobj) + del log_dict[id] + logging.debug("response : " + str(response)) + # logging.debug("response : " + str(response)) + logging.info("exit similarity_model routing method") + logging.info(f"Time taken by similary{time.time()-st}") + return jsonable_encoder(response) + except Exception as cie: + logging.error(cie.__dict__) + logging.info("exit similarity_model routing method") + raise HTTPException() + + +def privacy(id,text,PIIenities_selected=None): + try: + analyzer_results = analyzer_engine.analyze(text=text, language="en",entities=PIIenities_selected) + entityList= [] + anyz_res = jsonable_encoder(analyzer_results) + for i in anyz_res: + entityList.append(i['entity_type']) + return anyz_res,jsonable_encoder(entityList) + except Exception as e: + + logging.error("Error occured in privacy") + logging.error(f"Exception: {e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at privacy call"}) + raise InternalServerError() + + +def multi_q_net_similarity(id,text1=None,text2=None,emb1=None,emb2=None): + try: + if text1: + with torch.no_grad(): + emb1 = jailbreakModel.encode(text1, convert_to_tensor=True,device=device) + if text2: + with torch.no_grad(): + emb2 = jailbreakModel.encode(text2, convert_to_tensor=True,device=device) + + emb = util.pytorch_cos_sim(emb1, emb2).to("cpu").numpy().tolist() + del emb1 + del emb2 + #torch.cuda.empty_cache() + return emb + except Exception as e: + + logging.error("Error occured in multi_q_net_similarity") + logging.error(f"Exception: {e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at multi_q_net_similarity call"}) + raise InternalServerError() + + +def multi_q_net_embedding(id,lst): + try: + res = [] + for text in lst: + with torch.no_grad(): + text_embedding = jailbreakModel.encode(text, convert_to_tensor=True,device=device) + res.append(text_embedding.to("cpu").numpy().tolist()) + + del text_embedding + #torch.cuda.empty_cache() + return res + # return text_embedding.numpy().tolist() + except Exception as e: + + logging.error("Error occured in multi_q_net text embedding") + logging.error(f"Exception: {e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at multi_q_net text embedding call"}) + raise InternalServerError() + + +def restricttopic_check(payload,id): + try: + # topicmodel = topicmodel_Facebook + # topictokenizer = topictokenizer_Facebook + + # nlp = pipeline('zero-shot-classification', model=classifier, tokenizer=topictokenizer) + + text=payload['text'] + labels=payload['labels'] + + model =payload['model'] if hasattr(payload, 'model') else "facebook" + if model==None: + model="dberta" + + if model=="facebook": + # nlp = classifier + nlp = pipeline('zero-shot-classification', model=topicmodel_Facebook, tokenizer=topictokenizer_Facebook, device=gpu) + elif model=="dberta": + # nlp = classifier2 + nlp = pipeline('zero-shot-classification', model=topicmodel_dberta, tokenizer=topictokenizer_dberta,device=gpu) + with torch.no_grad(): + output=nlp(text, labels,multi_label=True) + for i in range(len(output["scores"])): + output["scores"][i] = round(output["scores"][i],4) + + del nlp + #torch.cuda.empty_cache() + return output + + except Exception as e: + + logging.error("Error occured in restricttopic_check") + logging.error(f"Exception: {e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at restricttopic_check call"}) + raise InternalServerError() + +def toxicity_check(payload,id) : + try: + text = payload['text'] + with torch.no_grad(): + output = toxicityModel.predict(text) + List_profanity_score = [] + obj_profanityScore_toxic = profanityScore(metricName='toxicity', + metricScore=output['toxicity']) + obj_profanityScore_severe_toxic = profanityScore(metricName='severe_toxicity', + metricScore=output['severe_toxicity']) + obj_profanityScore_obscene = profanityScore(metricName='obscene', + metricScore=output['obscene']) + obj_profanityScore_threat = profanityScore(metricName='threat', + metricScore=output['threat']) + obj_profanityScore_insult = profanityScore(metricName='insult', + metricScore=output['insult']) + obj_profanityScore_identity_attack = profanityScore(metricName='identity_attack', + metricScore=output['identity_attack']) + obj_profanityScore_sexual_explicit = profanityScore(metricName='sexual_explicit', + metricScore=output['sexual_explicit']) + + List_profanity_score.append(obj_profanityScore_toxic) + List_profanity_score.append(obj_profanityScore_severe_toxic) + List_profanity_score.append(obj_profanityScore_obscene) + List_profanity_score.append(obj_profanityScore_threat) + List_profanity_score.append(obj_profanityScore_insult) + List_profanity_score.append(obj_profanityScore_identity_attack) + List_profanity_score.append(obj_profanityScore_sexual_explicit) + + objProfanityAnalyzeResponse = {} + objProfanityAnalyzeResponse['toxicScore'] = List_profanity_score + + #torch.cuda.empty_cache() + return objProfanityAnalyzeResponse + + except Exception as e: + + logging.error("Error occured in toxicity_check") + logging.error(f"Exception: {e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at toxicity_check call"}) + raise InternalServerError() + + +def promptInjection_check(text,id): + try: + + Prompttokens = Prompttokens_dberta + PromptModel = PromptModel_dberta + + tokens = Prompttokens.encode_plus(text, truncation=True, padding=True, return_tensors="pt").to(device) + + with torch.no_grad(): + outputs = PromptModel(**tokens) + + predicted_label = outputs.logits.argmax().item() + label_names = PromptModel.config.id2label + predicted_label_name = label_names[predicted_label] + predicted_probabilities = outputs.logits.softmax(dim=1)[0, predicted_label].item() + + del tokens + #torch.cuda.empty_cache() + # #torch.cuda.empty_cache() + return predicted_label_name,predicted_probabilities + except Exception as e: + + logging.error("Error occured in promptInjection_check") + logging.error(f"Exception: {e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at promptInjection_check call"}) + raise InternalServerError() + +@app.route("/") +def hello_world(): + return "

Hello, world!

" + +if __name__ == "__main__": + serve(app, host='0.0.0.0', port=8000, threads=int(os.getenv('THREADS',1)),connection_limit=int(os.getenv('CONNECTION_LIMIT',500)), channel_timeout=int(os.getenv('CHANNEL_TIMEOUT',120))) + #app.run() diff --git a/src/main_topic.py b/src/main_topic.py new file mode 100644 index 0000000000000000000000000000000000000000..f51a8eb2c6a89241df406c33d743d85e8fa3b6e4 --- /dev/null +++ b/src/main_topic.py @@ -0,0 +1,60 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import os +from flask import Flask,request,jsonify +from flask_swagger_ui import get_swaggerui_blueprint +from routing.topicRouter import topic_router as router +# from routing.safety_router import img_router +from config.logger import CustomLogger,request_id_var +from waitress import serve +from werkzeug.exceptions import HTTPException,UnsupportedMediaType,BadRequest +from mapper.mapper import * + +SWAGGER_URL = '/rai/v1/raimoderationmodels/restrictedtopicmodel/docs' +API_URL = '/static/topic_swagger.json' + +swaggerui_blueprint = get_swaggerui_blueprint( + SWAGGER_URL, + API_URL +) + +log=CustomLogger() +app = Flask(__name__) +app.register_blueprint(swaggerui_blueprint) +app.register_blueprint(router,url_prefix='/rai/v1/raimoderationmodels') +# app.register_blueprint(img_router,url_prefix='/rai/v1/raimoderationmodels') + + +def handle_http_exception(exc): + """Handles HTTP exceptions, returning a JSON response.""" + response = jsonify({"error": exc.description}) + response.status_code = exc.code + return response + +@app.errorhandler(HTTPException) +def handle_all_http_exceptions(exc): + """Global exception handler for HTTP errors.""" + return handle_http_exception(exc) + +def handle_unsupported_mediatype(exc): + """Handles unsupported media type exceptions.""" + return jsonify({"error": "Unsupported media type"}), 415 # 415 Unsupported Media Type + +@app.errorhandler(UnsupportedMediaType) +def handle_all_unsupported_mediatype_exceptions(exc): + """Global exception handler for unsupported media types.""" + return handle_unsupported_mediatype(exc) + + +if __name__ == "__main__": + serve(app, host='0.0.0.0', port=8000, threads=int(os.getenv('THREADS',1)),connection_limit=int(os.getenv('CONNECTION_LIMIT',500)), channel_timeout=int(os.getenv('CHANNEL_TIMEOUT',120))) + #app.run() + diff --git a/src/mapper/__init__.py b/src/mapper/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/src/mapper/__init__.py @@ -0,0 +1 @@ + diff --git a/src/mapper/mapper.py b/src/mapper/mapper.py new file mode 100644 index 0000000000000000000000000000000000000000..ecec7b81f003a14953c271c6139d421bda8e585e --- /dev/null +++ b/src/mapper/mapper.py @@ -0,0 +1,31 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +from pydantic import BaseModel, Field,Extra,ValidationError +from typing import Optional, Union, List +from enum import Enum + + +class profanityScore(BaseModel): + metricName: str = Field(example="toxicity") + metricScore: float = Field(example=0.78326) + + class Config: + orm_mode = True + + + + + + + + + + diff --git a/src/project/__init__.py b/src/project/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/routing/__init__.py b/src/routing/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/routing/bancodeRouter.py b/src/routing/bancodeRouter.py new file mode 100644 index 0000000000000000000000000000000000000000..6ed9d5275a46c7b75dd573e0877a28fb45a769ba --- /dev/null +++ b/src/routing/bancodeRouter.py @@ -0,0 +1,47 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' +from flask import Blueprint +import time +from flask import request +from werkzeug.exceptions import HTTPException,UnprocessableEntity +from tqdm.auto import tqdm +from service.bancode_service import * +from config.logger import CustomLogger ,request_id_var +import uuid +from mapper.mapper import * +import psutil + +request_id_var.set('Startup') +bancode_router = Blueprint('router6', __name__,) +log=CustomLogger() + +@bancode_router.route("/bancodemodel",methods=[ 'POST']) +def bancodemodel(): + st=time.time() + log.info("Entered ban topic routing method") + try: + payload=request.get_json() + log.info("before invoking bantopicmodel service ") + ban = BanCode() + response = ban.scan(payload) + log.info("after invoking bantopicmodel service ") + log.debug("response : " + str(response)) + log.info("exit bantopicmodel routing method") + log.info(f"Time taken by Ban topic Check{time.time()-st}") + return response + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit bantopic_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie)) + log.error(str(cie.__dict__)) + log.info("exit bantopic_model routing method") + raise HTTPException() diff --git a/src/routing/detoxifyRouter.py b/src/routing/detoxifyRouter.py new file mode 100644 index 0000000000000000000000000000000000000000..0355f5a20aa5d13d66727965287c2c24c841decd --- /dev/null +++ b/src/routing/detoxifyRouter.py @@ -0,0 +1,69 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +from flask import Blueprint +import time +# import logging +from flask import request +# from dao.AdminDb import Results +from werkzeug.exceptions import HTTPException,UnprocessableEntity +from tqdm.auto import tqdm +# from fastapi.encoders import jsonable_encoder + +from service.detoxifyModel import * +from config.logger import CustomLogger ,request_id_var + +import uuid +from mapper.mapper import * +import psutil + +request_id_var.set('Startup') +detoxify_router = Blueprint('router1', __name__,) +log=CustomLogger() + +@detoxify_router.route("/detoxifymodel",methods=[ 'POST']) +def toxic_model(): + st=time.time() + stmem = psutil.Process().memory_info().rss + id=uuid.uuid4().hex + request_id_var.set(id) + try: + + # id=uuid.uuid4().hex + payload=request.get_json() + # request_id_var.set(id) + log.info("before invoking toxic_model service ") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0): + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = toxicity_check(payload,id) + + log.info("after invoking toxic_model service ") + + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + + + if len(er)!=0: + log.debug(str(logobj)) + # print("this is --> ",str(logobj) ) + del log_dict[id] + log.debug("response : " + str(response)) + log.info("exit toxic_model routing method") + log.info(f"Time taken by toxicity {time.time()-st}") + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit toxic_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie.__dict__)) + log.info("exit toxic_model routing method") + raise HTTPException() diff --git a/src/routing/embedingRouter.py b/src/routing/embedingRouter.py new file mode 100644 index 0000000000000000000000000000000000000000..e6e5808ae018569552cafec122bff52cba2a186e --- /dev/null +++ b/src/routing/embedingRouter.py @@ -0,0 +1,116 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +from flask import Blueprint +import time +# import logging +from flask import request +# from dao.AdminDb import Results +from werkzeug.exceptions import HTTPException,UnprocessableEntity +from tqdm.auto import tqdm +# from fastapi.encoders import jsonable_encoder + +from service.EmbedingModel import * +from config.logger import CustomLogger ,request_id_var + +import uuid +from mapper.mapper import * +import psutil + +request_id_var.set('Startup') +embed_router = Blueprint('router2', __name__,) +log=CustomLogger() + + +@embed_router.route("/multi_q_net_embedding",methods=[ 'POST']) +def embedding_model(): + st=time.time() + id=uuid.uuid4().hex + request_id_var.set(id) + log.info("Entered embedding_model routing method") + + try: + + # id=uuid.uuid4().hex + payload=request.get_json() + # request_id_var.set(id) + + log.info("before invoking embedding_model service ") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0): + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = multi_q_net_embedding(id,payload['text']) + log.info("after invoking embedding_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + # log.debug("response : " + str(response)) + # log.debug("response : " + str(response)) + log.info("exit embedding_model routing method") + log.info(f"Time taken by Jailbreak {time.time()-st}") + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit embedding_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie.__dict__)) + log.info("exit embedding_model routing method") + raise HTTPException() + +@embed_router.route("/multi-qa-mpnet-model_similarity",methods=[ 'POST']) +def similarity_model(): + st=time.time() + id=uuid.uuid4().hex + request_id_var.set(id) + log.info("Entered similarity_model routing method") + try: + log.info("before invoking similarity_model service ") + payload=request.get_json() + log_dict[request_id_var.get()]=[] + emb1_cond=None + emb2_cond=None + + text1_cond = payload['text1'] is None or (payload['text1'] is not None and len(payload['text1'])==0) + text2_cond = payload['text2'] is None or (payload['text2'] is not None and len(payload['text2'])==0) + if('emb1' in payload): + emb1_cond = payload['emb1'] is None or (payload['emb1'] is not None and len(payload['emb1'])==0) + else: + payload['emb1']=None + if('emb2' in payload): + emb2_cond = payload['emb2'] is None or (payload['emb2'] is not None and len(payload['emb2'])==0) + else: + payload['emb2']=None + + if text1_cond or text2_cond or emb1_cond or emb2_cond: + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = multi_q_net_similarity(id,payload['text1'],payload['text2'],payload['emb1'],payload['emb2']) + log.info("after invoking similarity_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + log.debug("response : " + str(response)) + # log.debug("response : " + str(response)) + log.info("exit similarity_model routing method") + log.info(f"Time taken by similary{time.time()-st}") + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit similarity_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie.__dict__)) + log.info("exit similarity_model routing method") + raise HTTPException() + diff --git a/src/routing/gibberishRouter.py b/src/routing/gibberishRouter.py new file mode 100644 index 0000000000000000000000000000000000000000..584c1adfa4a92c7246e352aa8d78c762fbdc5e42 --- /dev/null +++ b/src/routing/gibberishRouter.py @@ -0,0 +1,47 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' +from flask import Blueprint +import time +from flask import request +from werkzeug.exceptions import HTTPException,UnprocessableEntity +from tqdm.auto import tqdm +from service.gibberish_service import * +from config.logger import CustomLogger ,request_id_var +import uuid +from mapper.mapper import * +import psutil + +request_id_var.set('Startup') +gibberish_router = Blueprint('router9', __name__,) +log=CustomLogger() + +@gibberish_router.route("/gibberishmodel",methods=[ 'POST']) +def gibberishmodel(): + st=time.time() + log.info("Entered gibberish routing method") + try: + payload=request.get_json() + log.info("before invoking gibberish_model service ") + gib = Gibberish() + response = gib.scan(payload) + log.info("after invoking gibberish_model service ") + log.debug("response : " + str(response)) + log.info("exit gibberish_model routing method") + log.info(f"Time taken by Gibberish Check{time.time()-st}") + return response + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit gibberish_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie)) + log.error(str(cie.__dict__)) + log.info("exit gibberish_model routing method") + raise HTTPException() diff --git a/src/routing/injectionRouter.py b/src/routing/injectionRouter.py new file mode 100644 index 0000000000000000000000000000000000000000..7413b6cb0f24fd52b6b21c218d0fb4130fe373d0 --- /dev/null +++ b/src/routing/injectionRouter.py @@ -0,0 +1,65 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +from flask import Blueprint +import time +# import logging +from flask import request +# from dao.AdminDb import Results +from werkzeug.exceptions import HTTPException,UnprocessableEntity +from tqdm.auto import tqdm +# from fastapi.encoders import jsonable_encoder + +from service.injectionModel import * +from config.logger import CustomLogger ,request_id_var + +import uuid +from mapper.mapper import * +import psutil + +request_id_var.set('Startup') +injection_router = Blueprint('router3', __name__,) +log=CustomLogger() + +@injection_router.route("/promptinjectionmodel",methods=[ 'POST']) +def prompt_model(): + st=time.time() + id=uuid.uuid4().hex + request_id_var.set(id) + log.info("Entered prompt_model routing method") + try: + + # id=uuid.uuid4().hex + payload=request.get_json() + # request_id_var.set(id) + log.info("before invoking prompt_model service") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0): + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = promptInjection_check(payload['text'],id) + log.info("after invoking prompt_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + log.debug("response : " + str(response)) + # log.debug("response : " + str(response)) + log.info("exit prompt_model routing method") + log.info(f"Time taken by promptinjection {time.time()-st}") + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit prompt_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie.__dict__)) + log.info("exit prompt_model routing method") + raise HTTPException() diff --git a/src/routing/invisibletextRouter.py b/src/routing/invisibletextRouter.py new file mode 100644 index 0000000000000000000000000000000000000000..34c40f120c41d4f0668679034ee1ebdc88d8ec39 --- /dev/null +++ b/src/routing/invisibletextRouter.py @@ -0,0 +1,48 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' +from flask import Blueprint +import time +from flask import request +from werkzeug.exceptions import HTTPException,UnprocessableEntity +from tqdm.auto import tqdm +from service.invisibletext_service import * +from config.logger import CustomLogger ,request_id_var +import uuid +from mapper.mapper import * +import psutil + +request_id_var.set('Startup') +invisibletext_router = Blueprint('router8', __name__,) +log=CustomLogger() + + +@invisibletext_router.route("/invisibletextmodel",methods=[ 'POST']) +def invisibletextmodel(): + st=time.time() + log.info("Entered invisible_text routing method") + try: + payload=request.get_json() + log.info("before invoking invisible_text service ") + s = InvisibleText() + response = s.scan(payload['text'],payload['banned_categories']) + log.info("after invoking invisible_text service ") + log.debug("response : " + str(response)) + log.info("exit secret_model routing method") + log.info(f"Time taken by Invisible Text Check{time.time()-st}") + return response + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit invisibletext_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie)) + log.error(str(cie.__dict__)) + log.info("exit invisibletext_model routing method") + raise HTTPException() diff --git a/src/routing/privacyRouter.py b/src/routing/privacyRouter.py new file mode 100644 index 0000000000000000000000000000000000000000..36be9dfcfa1f4179d6e88e0c3f6b815a7de5995c --- /dev/null +++ b/src/routing/privacyRouter.py @@ -0,0 +1,66 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +from flask import Blueprint +import time +# import logging +from flask import request +# from dao.AdminDb import Results +from werkzeug.exceptions import HTTPException,UnprocessableEntity +from tqdm.auto import tqdm +# from fastapi.encoders import jsonable_encoder + +from service.privacyModel import * +from config.logger import CustomLogger ,request_id_var + +import uuid +from mapper.mapper import * +import psutil + +request_id_var.set('Startup') +privacy_router = Blueprint('router4', __name__,) +log=CustomLogger() + +@privacy_router.route("/privacy",methods=[ 'POST']) +def pii_check(): + st=time.time() + id=uuid.uuid4().hex + request_id_var.set(id) + log.info("Entered pii_check routing method") + try: + + # id=uuid.uuid4().hex + payload=request.get_json() + # request_id_var.set(id) + log.info("before invoking create usecase service ") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0): + raise UnprocessableEntity("1021-invalid input!") + response = privacy(id,payload['text']) + log.info("after invoking create usecase service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + log.debug("response : " + str(response)) + # log.debug("response : " + str(response)) + log.info("exit pii_check routing method") + log.info(f"Time taken by privacy {time.time()-st}") + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit pii_check routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie.__dict__)) + log.info("exit pii_check routing method") + raise HTTPException() + diff --git a/src/routing/router.py b/src/routing/router.py new file mode 100644 index 0000000000000000000000000000000000000000..2279931f46791ec3ca6846299186ce537b6833ae --- /dev/null +++ b/src/routing/router.py @@ -0,0 +1,353 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +from flask import Blueprint +import time +# import logging +from flask import request +# from dao.AdminDb import Results +from werkzeug.exceptions import HTTPException,UnprocessableEntity +from tqdm.auto import tqdm +# from fastapi.encoders import jsonable_encoder + +from service.injectionModel import * +from service.EmbedingModel import * +from service.topicModel import * +from service.privacyModel import * +from service.detoxifyModel import * +from service.sentiment_service import * +from service.invisibletext_service import * +from service.gibberish_service import * +from service.bancode_service import * +from config.logger import CustomLogger ,request_id_var + +import uuid +from mapper.mapper import * +import psutil + +request_id_var.set('Startup') +router = Blueprint('router', __name__,) +log=CustomLogger() + +@router.route("/detoxifymodel",methods=[ 'POST']) +def toxic_model(): + st=time.time() + stmem = psutil.Process().memory_info().rss + id=uuid.uuid4().hex + request_id_var.set(id) + try: + + # id=uuid.uuid4().hex + payload=request.get_json() + # request_id_var.set(id) + log.info("before invoking toxic_model service ") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0): + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = toxicity_check(payload,id) + + log.info("after invoking toxic_model service ") + + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + + + if len(er)!=0: + log.debug(str(logobj)) + # print("this is --> ",str(logobj) ) + del log_dict[id] + log.debug("response : " + str(response)) + log.info("exit toxic_model routing method") + log.info(f"Time taken by toxicity {time.time()-st}") + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit toxic_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie.__dict__)) + log.info("exit toxic_model routing method") + raise HTTPException() + +@router.route("/privacy",methods=[ 'POST']) +def pii_check(): + st=time.time() + id=uuid.uuid4().hex + request_id_var.set(id) + log.info("Entered pii_check routing method") + try: + + # id=uuid.uuid4().hex + payload=request.get_json() + # request_id_var.set(id) + log.info("before invoking create usecase service ") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0): + raise UnprocessableEntity("1021-invalid input!") + response = privacy(id,payload['text']) + log.info("after invoking create usecase service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + log.debug("response : " + str(response)) + # log.debug("response : " + str(response)) + log.info("exit pii_check routing method") + log.info(f"Time taken by privacy {time.time()-st}") + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit pii_check routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie.__dict__)) + log.info("exit pii_check routing method") + raise HTTPException() + +@router.route("/promptinjectionmodel",methods=[ 'POST']) +def prompt_model(): + st=time.time() + id=uuid.uuid4().hex + request_id_var.set(id) + log.info("Entered prompt_model routing method") + try: + + # id=uuid.uuid4().hex + payload=request.get_json() + # request_id_var.set(id) + log.info("before invoking prompt_model service") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0): + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = promptInjection_check(payload['text'],id) + log.info("after invoking prompt_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + log.debug("response : " + str(response)) + # log.debug("response : " + str(response)) + log.info("exit prompt_model routing method") + log.info(f"Time taken by promptinjection {time.time()-st}") + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit prompt_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie.__dict__)) + log.info("exit prompt_model routing method") + raise HTTPException() + +@router.route("/restrictedtopicmodel",methods=[ 'POST']) +def restrictedTopic_model(): + st=time.time() + id=uuid.uuid4().hex + request_id_var.set(id) + log.info("Entered restrictedTopic_model routing method") + try: + # id=uuid.uuid4().hex + payload=request.get_json() + # request_id_var.set(id) + log.info("before invoking restrictedTopic_model service ") + log_dict[request_id_var.get()]=[] + + label_cond = payload['labels'] is None or (payload['labels'] is not None and len(payload['labels'])==0) + #model_cond=False + # print("--") + # if("model" in payload): + # model_cond = payload['model'] is None or (payload['model'] is not None and len(payload['model'])==0) + # print("==") + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0) or label_cond: + raise UnprocessableEntity("1021-invalid input ") + response = restricttopic_check(payload,id) + log.info("after invoking restrictedTopic_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + log.debug("response : " + str(response)) + # log.debug("response : " + str(response)) + log.info("exit restrictedTopic_model routing method") + log.info(f"Time taken by RestrictedTopic{time.time()-st}") + # print(type(response)) + # print(type(jsonable_encoder(response))) + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit restrictedTopic_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie)) + log.error(str(cie.__dict__)) + log.info("exit restrictedTopic_model routing method") + raise HTTPException() + +@router.route("/multi_q_net_embedding",methods=[ 'POST']) +def embedding_model(): + st=time.time() + id=uuid.uuid4().hex + request_id_var.set(id) + log.info("Entered embedding_model routing method") + + try: + + # id=uuid.uuid4().hex + payload=request.get_json() + # request_id_var.set(id) + + log.info("before invoking embedding_model service ") + log_dict[request_id_var.get()]=[] + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0): + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = multi_q_net_embedding(id,payload['text']) + log.info("after invoking embedding_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + # log.debug("response : " + str(response)) + # log.debug("response : " + str(response)) + log.info("exit embedding_model routing method") + log.info(f"Time taken by Jailbreak {time.time()-st}") + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit embedding_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie.__dict__)) + log.info("exit embedding_model routing method") + raise HTTPException() + +@router.route("/multi-qa-mpnet-model_similarity",methods=[ 'POST']) +def similarity_model(): + st=time.time() + id=uuid.uuid4().hex + request_id_var.set(id) + log.info("Entered similarity_model routing method") + try: + log.info("before invoking similarity_model service ") + payload=request.get_json() + log_dict[request_id_var.get()]=[] + emb1_cond=None + emb2_cond=None + + text1_cond = payload['text1'] is None or (payload['text1'] is not None and len(payload['text1'])==0) + text2_cond = payload['text2'] is None or (payload['text2'] is not None and len(payload['text2'])==0) + if('emb1' in payload): + emb1_cond = payload['emb1'] is None or (payload['emb1'] is not None and len(payload['emb1'])==0) + else: + payload['emb1']=None + if('emb2' in payload): + emb2_cond = payload['emb2'] is None or (payload['emb2'] is not None and len(payload['emb2'])==0) + else: + payload['emb2']=None + + if text1_cond or text2_cond or emb1_cond or emb2_cond: + raise UnprocessableEntity("1021-Input Text should not be empty ") + response = multi_q_net_similarity(id,payload['text1'],payload['text2'],payload['emb1'],payload['emb2']) + log.info("after invoking similarity_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + log.debug("response : " + str(response)) + # log.debug("response : " + str(response)) + log.info("exit similarity_model routing method") + log.info(f"Time taken by similary{time.time()-st}") + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit similarity_model routing method") + raise UnprocessableEntity(**cie.__dict__) + +@router.route("/sentimentmodel",methods=[ 'POST']) +def sentimentmodel(): + st=time.time() + log.info("Entered sentiment routing method") + try: + payload=request.get_json() + log.info("before invoking sentiment_model service ") + s = Sentiment() + response = s.scan(payload['text']) + log.info("after invoking sentiment_model service ") + log.debug("response : " + str(response)) + log.info("exit sentiment_model routing method") + log.info(f"Time taken by Sentiment Check{time.time()-st}") + return jsonable_encoder(response) + except Exception as cie: + log.error(cie) + log.error(cie.__dict__) + log.info("exit sentiment_model routing method") + raise HTTPException() + +@router.route("/invisibletextmodel",methods=[ 'POST']) +def invisibletextmodel(): + st=time.time() + log.info("Entered invisible_text routing method") + try: + payload=request.get_json() + log.info("before invoking invisible_text service ") + s = InvisibleText() + response = s.scan(payload['text'],payload['banned_categories']) + log.info("after invoking invisible_text service ") + log.debug("response : " + str(response)) + log.info("exit secret_model routing method") + log.info(f"Time taken by Invisible Text Check{time.time()-st}") + return jsonable_encoder(response) + except Exception as cie: + log.error(cie) + log.error(cie.__dict__) + log.info("exit secret_model routing method") + raise HTTPException() + +@router.route("/gibberishmodel",methods=[ 'POST']) +def gibberishmodel(): + st=time.time() + log.info("Entered gibberish routing method") + try: + payload=request.get_json() + log.info("before invoking gibberish_model service ") + gib = Gibberish() + response = gib.scan(payload) + log.info("after invoking gibberish_model service ") + log.debug("response : " + str(response)) + log.info("exit gibberish_model routing method") + log.info(f"Time taken by Gibberish Check{time.time()-st}") + return jsonable_encoder(response) + except Exception as cie: + log.error(str(cie.__dict__)) + log.info("exit gibberish_model routing method") + raise HTTPException() + +@router.route("/bancodemodel",methods=[ 'POST']) +def bancodemodel(): + st=time.time() + log.info("Entered ban topic routing method") + try: + payload=request.get_json() + log.info("before invoking bantopicmodel service ") + ban = BanCode() + response = ban.scan(payload) + log.info("after invoking bantopicmodel service ") + log.debug("response : " + str(response)) + log.info("exit bantopicmodel routing method") + log.info(f"Time taken by Ban topic Check{time.time()-st}") + return jsonable_encoder(response) + except Exception as cie: + log.error(str(cie.__dict__)) + log.info("exit bantopic_model routing method") + raise HTTPException() \ No newline at end of file diff --git a/src/routing/safety_router.py b/src/routing/safety_router.py new file mode 100644 index 0000000000000000000000000000000000000000..6cb7f50969cbea16a73cec6bc23bf21d8db1bdbf --- /dev/null +++ b/src/routing/safety_router.py @@ -0,0 +1,53 @@ +''' +Copyright 2024-2025 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +from flask import Blueprint +import time +from flask import request +from werkzeug.exceptions import HTTPException +# from service.safety_service import ImageGen +import uuid +from exception.exception import modeldeploymentException +from config.logger import CustomLogger, request_id_var +from io import BytesIO +import base64 + + +img_router = Blueprint('img_router', __name__,) +log=CustomLogger() + +request_id_var.set('startup') +@img_router.post("/ImageGenerate") +def img(): + prompt = request.form.get("prompt") + st=time.time() + id=uuid.uuid4().hex + request_id_var.set(id) + log.info("Entered create usecase routing method") + try: + # log.info("before invoking create usecase service") + + # response = ImageGen.generate(prompt) + # log.info("after invoking create usecase service ") + + # log.debug("response : " + str(response)) + log.info("exit create usecase routing method") + log.info(f"Time taken by toxicity {time.time()-st}") + imageByte=BytesIO() + response.save(imageByte, format="png") + imageByte=imageByte.getvalue() + + return base64.b64encode(imageByte).decode('utf-8') + except modeldeploymentException as cie: + log.error(cie.__dict__) + log.info("exit create usecase routing method") + raise HTTPException(**cie.__dict__) + + diff --git a/src/routing/sentimentRouter.py b/src/routing/sentimentRouter.py new file mode 100644 index 0000000000000000000000000000000000000000..371fdcb6a82fb820e081454a456f1dc68c651324 --- /dev/null +++ b/src/routing/sentimentRouter.py @@ -0,0 +1,48 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' +from flask import Blueprint +import time +from flask import request +from werkzeug.exceptions import HTTPException,UnprocessableEntity +from tqdm.auto import tqdm +from service.sentiment_service import * +from config.logger import CustomLogger ,request_id_var +import uuid +from mapper.mapper import * +import psutil + +request_id_var.set('Startup') +sentiment_router = Blueprint('router7', __name__,) +log=CustomLogger() + +@sentiment_router.route("/sentimentmodel",methods=[ 'POST']) +def sentimentmodel(): + st=time.time() + log.info("Entered sentiment routing method") + try: + payload=request.get_json() + log.info("before invoking sentiment_model service ") + s = Sentiment() + response = s.scan(payload['text']) + log.info("after invoking sentiment_model service ") + log.debug("response : " + str(response)) + log.info("exit sentiment_model routing method") + log.info(f"Time taken by Sentiment Check{time.time()-st}") + return response + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit sentiment_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie)) + log.error(str(cie.__dict__)) + log.info("exit sentiment_model routing method") + raise HTTPException() + diff --git a/src/routing/topicRouter.py b/src/routing/topicRouter.py new file mode 100644 index 0000000000000000000000000000000000000000..a580f3fc5baee70a0cc2594b47384253374b24a6 --- /dev/null +++ b/src/routing/topicRouter.py @@ -0,0 +1,75 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +from flask import Blueprint +import time +# import logging +from flask import request +# from dao.AdminDb import Results +from werkzeug.exceptions import HTTPException,UnprocessableEntity +from tqdm.auto import tqdm +# from fastapi.encoders import jsonable_encoder + +from service.topicModel import * +from config.logger import CustomLogger ,request_id_var + +import uuid +from mapper.mapper import * +import psutil + +request_id_var.set('Startup') +topic_router = Blueprint('router5', __name__,) +log=CustomLogger() + +@topic_router.route("/restrictedtopicmodel",methods=[ 'POST']) +def restrictedTopic_model(): + st=time.time() + id=uuid.uuid4().hex + request_id_var.set(id) + log.info("Entered restrictedTopic_model routing method") + try: + # id=uuid.uuid4().hex + payload=request.get_json() + # request_id_var.set(id) + log.info("before invoking restrictedTopic_model service ") + log_dict[request_id_var.get()]=[] + + label_cond = payload['labels'] is None or (payload['labels'] is not None and len(payload['labels'])==0) + #model_cond=False + # print("--") + # if("model" in payload): + # model_cond = payload['model'] is None or (payload['model'] is not None and len(payload['model'])==0) + # print("==") + if payload['text'] is None or (payload['text'] is not None and len(payload['text'])==0) or label_cond: + raise UnprocessableEntity("1021-invalid input ") + response = restricttopic_check(payload,id) + log.info("after invoking restrictedTopic_model service ") + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + log.debug("response : " + str(response)) + # log.debug("response : " + str(response)) + log.info("exit restrictedTopic_model routing method") + log.info(f"Time taken by RestrictedTopic{time.time()-st}") + # print(type(response)) + # print(type(jsonable_encoder(response))) + return jsonable_encoder(response) + except UnprocessableEntity as cie: + log.error(str(cie.__dict__)) + log.info("exit restrictedTopic_model routing method") + raise UnprocessableEntity(**cie.__dict__) + except Exception as cie: + log.error(str(cie)) + log.error(str(cie.__dict__)) + log.info("exit restrictedTopic_model routing method") + raise HTTPException() + diff --git a/src/service/EmbedingModel.py b/src/service/EmbedingModel.py new file mode 100644 index 0000000000000000000000000000000000000000..813baee35aae07bde68e734efc01374c5718d78a --- /dev/null +++ b/src/service/EmbedingModel.py @@ -0,0 +1,110 @@ +import os +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import torch +from sentence_transformers import SentenceTransformer,util +from werkzeug.exceptions import InternalServerError +from fastapi.encoders import jsonable_encoder +import traceback +from mapper.mapper import * +import time +import contextvars +from config.logger import CustomLogger,request_id_var + +log = CustomLogger() + +import sys +import os + +try: + if getattr(sys, 'frozen', False): + application_path = sys._MEIPASS + else: + application_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..') + + log=CustomLogger() + log.info("before loading embeding model") + request_id_var = contextvars.ContextVar("request_id_var") + #pipe = StableDiffusionPipeline.from_pretrained('/model/stablediffusion/fp32/model') + device = "cuda" +# registry = RecognizerRegistry() +# registry.load_predefined_recognizers() +# analyzer_engine = AnalyzerEngine(registry=registry) + + device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") + print("device",device) + gpu=0 if torch.cuda.is_available() else -1 + encoder = SentenceTransformer(os.path.join(application_path, "models/multi-qa-mpnet-base-dot-v1")).to(device) + + jailbreakModel = encoder + similarity_model =encoder + request_id_var.set("Startup") + log_dict={} + log.info("embeding model loaded") + +except Exception as e: + log.error(f"Exception: {e}") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + + +def multi_q_net_similarity(id,text1=None,text2=None,emb1=None,emb2=None): + + try: + st = time.time() + if text1: + with torch.no_grad(): + emb1 = jailbreakModel.encode(text1, convert_to_tensor=True,device=device) + if text2: + with torch.no_grad(): + emb2 = jailbreakModel.encode(text2, convert_to_tensor=True,device=device) + + emb = util.pytorch_cos_sim(emb1, emb2).to("cpu").numpy().tolist() + del emb1 + del emb2 + et = time.time() + rt =et-st + return emb,{'time_taken': str(round(rt,3))+"s"} + except Exception as e: + + log.error("Error occured in multi_q_net_similarity") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at multi_q_net_similarity call"}) + raise InternalServerError() + +def multi_q_net_embedding(id,lst): + log.info("inside multi_q_net_embedding") + + try: + st = time.time() + # print("start time JB===========",lst,st) + + res = [] + for text in lst: + with torch.no_grad(): + text_embedding = jailbreakModel.encode(text, convert_to_tensor=True,device=device) + res.append(text_embedding.to("cpu").numpy().tolist()) + + del text_embedding + et = time.time() + rt = et-st + # output['multi_q_net_embedding'] =(res,{'time_taken': str(round(rt,3))+"s"}) + return res,{'time_taken': str(round(rt,3))+"s"} + # return output + # return text_embedding.numpy().tolist() + except Exception as e: + + log.error("Error occured in multi_q_net text embedding") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at multi_q_net text embedding call"}) + raise InternalServerError() + diff --git a/src/service/__init__.py b/src/service/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/service/bancode_service.py b/src/service/bancode_service.py new file mode 100644 index 0000000000000000000000000000000000000000..80de943c510b40bfc24ead03cd64f2e085662cf6 --- /dev/null +++ b/src/service/bancode_service.py @@ -0,0 +1,108 @@ +from __future__ import annotations + +import re +from enum import Enum +import time +import traceback +import uuid +from werkzeug.exceptions import InternalServerError +from config.logger import CustomLogger,request_id_var +import torch +from transformers import pipeline, AutoModelForSequenceClassification, AutoTokenizer +import os +import sys +import nltk +from nltk.tokenize.punkt import PunktSentenceTokenizer + + + +try: + if getattr(sys, 'frozen', False): + application_path = sys._MEIPASS + else: + application_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..') + log=CustomLogger() + log.info(f"application_path : {application_path}") + log.info("before loading model") + + device = "cuda" + device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") + log.info(f"device : {device}") + gpu=0 if torch.cuda.is_available() else -1 + + # Loading model and tokenizer + pipeline_kwargs={"max_length": 128, "truncation": True, "return_token_type_ids": True} + bancodeModel = AutoModelForSequenceClassification.from_pretrained(os.path.join(application_path, "models/bancode")).to(device) + bancodeTokenizer = AutoTokenizer.from_pretrained(os.path.join(application_path, "models/bancode")) + + request_id_var.set("Startup") + log_dict={} + log.info("model loaded") + +except Exception as e: + log.error(f"Exception: {e}") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + +def remove_markdown(text): + # Patterns to remove Markdown elements but keep text inside ** and * + patterns = [ + r"\*\*([^\*]+)\*\*", # Bold, preserves text inside + r"\*([^\*]+)\*", # Italic, preserves text inside + r"\!\[[^\]]+\]\([^\)]+\)", # Images + r"\[[^\]]+\]\([^\)]+\)", # Links + r"\#{1,6}\s", # Headers + r"\>+", # Blockquotes + r"`{1,3}[^`]+`{1,3}", # Inline code and code blocks + r"\n{2,}", # Multiple newlines + ] + + clean_text = text + for pattern in patterns: + # Use substitution to preserve the text inside ** and * + if "([^\*]+)" in pattern: + clean_text = re.sub(pattern, r"\1", clean_text) + else: + clean_text = re.sub(pattern, "", clean_text) + + # Extra cleanup for simpler elements + clean_text = re.sub(r"\*|\_|\`", "", clean_text) + + return clean_text.strip() + + +class BanCode: + """ + A scanner that detects if input is code and blocks it. + """ + def scan(self, payload): + log.info("inside bancode_check") + id=uuid.uuid4().hex + request_id_var.set(id) + log_dict[request_id_var.get()]=[] + + try: + st = time.time() + prompt=payload['text'] + nlp = pipeline(task="text-classification",model=bancodeModel,tokenizer=bancodeTokenizer,**pipeline_kwargs) + + # Hack: Improve accuracy + new_prompt = remove_markdown(prompt) # Remove markdown + new_prompt = re.sub(r"\d+\.\s+|[-*•]\s+", "", new_prompt) # Remove list markers + new_prompt = re.sub(r"\d+", "", new_prompt) # Remove numbers + new_prompt = re.sub(r'\.(?!\d)(?=[\s\'"“”‘’)\]}]|$)', "", new_prompt) # Remove periods + + result =nlp(new_prompt)[0] + log.debug(f"Ban code finished :{result}") + del nlp + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + return {"result":result,"time_taken":str(round(time.time()-st,3))+"s"} + except Exception as e: + log.error("Error occured in bancode_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at bancode_check call"}) + raise InternalServerError() \ No newline at end of file diff --git a/src/service/detoxifyModel.py b/src/service/detoxifyModel.py new file mode 100644 index 0000000000000000000000000000000000000000..24fff6a92dfec10cd02735d2495a2a989674b2fc --- /dev/null +++ b/src/service/detoxifyModel.py @@ -0,0 +1,143 @@ +import os +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import math +import torch +from detoxify import Detoxify +#from presidio_analyzer import AnalyzerEngine, RecognizerRegistry +from transformers import AutoTokenizer +from werkzeug.exceptions import InternalServerError +from fastapi.encoders import jsonable_encoder +import traceback +from mapper.mapper import * +import time +import contextvars +from config.logger import CustomLogger,request_id_var + + +log = CustomLogger() + +import sys +import os + +try: + if getattr(sys, 'frozen', False): + application_path = sys._MEIPASS + else: + application_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..') + + log=CustomLogger() + log.info("before loading detoxify model") + request_id_var = contextvars.ContextVar("request_id_var") + device = "cuda" + device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") + print("device",device) + gpu=0 if torch.cuda.is_available() else -1 + check_point = 'toxic_debiased-c7548aa0.ckpt' + toxicityModel = Detoxify(checkpoint=os.path.join(application_path, 'models/detoxify/'+ check_point), + device=device, + huggingface_config_path=os.path.join(application_path, 'models/detoxify')) + tokenizer = AutoTokenizer.from_pretrained(os.path.join(application_path, "models/detoxify")) + + request_id_var.set("Startup") + log_dict={} + log.info("detoxify model loaded") + +except Exception as e: + log.error(f"Exception: {e}") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + + +def toxicity_check(payload,id) : + log.info("inside toxicity_check") + + try: + st = time.time() + text = payload['text'] + + #to check number of tokens + input_ids_val = tokenizer.encode(text) + input_ids=input_ids_val[1:-1] + result_list=[] + #to send max 450 tokens to the model at a time and at end find avg result for each token set + token_limit=450 + if len(input_ids)>token_limit: + val=math.ceil(len(input_ids)/token_limit) + j=0 + k=token_limit + for i in range(0,val): + text="".join(tokenizer.decode(input_ids[j:k])) + j+=token_limit + k+=token_limit + with torch.no_grad(): + result = toxicityModel.predict(text) + result_list.append(result) + output = { + 'toxicity': 0, + 'severe_toxicity': 0, + 'obscene': 0, + 'threat': 0, + 'insult': 0, + 'identity_attack': 0, + 'sexual_explicit': 0 + } + for j in result_list: + output['toxicity']+=j['toxicity'] + output['severe_toxicity']+=j['severe_toxicity'] + output['obscene']+=j['obscene'] + output['identity_attack']+=j['identity_attack'] + output['insult']+=j['insult'] + output['threat']+=j['threat'] + output['sexual_explicit']+=j['sexual_explicit'] + output = {k: v / len(result_list) for k, v in output.items()} + else: + with torch.no_grad(): + output = toxicityModel.predict(text) + List_profanity_score = [] + obj_profanityScore_toxic = profanityScore(metricName='toxicity', + metricScore=output['toxicity']) + obj_profanityScore_severe_toxic = profanityScore(metricName='severe_toxicity', + metricScore=output['severe_toxicity']) + obj_profanityScore_obscene = profanityScore(metricName='obscene', + metricScore=output['obscene']) + obj_profanityScore_threat = profanityScore(metricName='threat', + metricScore=output['threat']) + obj_profanityScore_insult = profanityScore(metricName='insult', + metricScore=output['insult']) + obj_profanityScore_identity_attack = profanityScore(metricName='identity_attack', + metricScore=output['identity_attack']) + obj_profanityScore_sexual_explicit = profanityScore(metricName='sexual_explicit', + metricScore=output['sexual_explicit']) + + List_profanity_score.append(obj_profanityScore_toxic) + List_profanity_score.append(obj_profanityScore_severe_toxic) + List_profanity_score.append(obj_profanityScore_obscene) + List_profanity_score.append(obj_profanityScore_threat) + List_profanity_score.append(obj_profanityScore_insult) + List_profanity_score.append(obj_profanityScore_identity_attack) + List_profanity_score.append(obj_profanityScore_sexual_explicit) + + objProfanityAnalyzeResponse = {} + objProfanityAnalyzeResponse['toxicScore'] = List_profanity_score + et = time.time() + rt = et-st + objProfanityAnalyzeResponse['time_taken'] = str(round(rt,3))+"s" + # output1['toxicity'] = objProfanityAnalyzeResponse + return objProfanityAnalyzeResponse + + except Exception as e: + + log.error("Error occured in toxicity_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at toxicity_check call"}) + raise InternalServerError() + diff --git a/src/service/gibberish_service.py b/src/service/gibberish_service.py new file mode 100644 index 0000000000000000000000000000000000000000..b7f30670be8ee6093bcd0b4891c50905557f42f3 --- /dev/null +++ b/src/service/gibberish_service.py @@ -0,0 +1,94 @@ +from enum import Enum +import time +import traceback +import uuid +from werkzeug.exceptions import InternalServerError +from config.logger import CustomLogger,request_id_var +import torch +from transformers import pipeline, AutoModelForSequenceClassification, AutoTokenizer +import os +import sys +import nltk +from nltk.tokenize.punkt import PunktSentenceTokenizer + +try: + if getattr(sys, 'frozen', False): + application_path = sys._MEIPASS + else: + application_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..') + log=CustomLogger() + log.info(f"application_path : {application_path}") + log.info("before loading model") + + device = "cuda" + device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") + log.info(f"device : {device}") + gpu=0 if torch.cuda.is_available() else -1 + + # Loading model and tokenizer + pipeline_kwargs={"return_token_type_ids": False,"max_length": 512,"truncation": True,"batch_size": 1} + gibberishModel = AutoModelForSequenceClassification.from_pretrained(os.path.join(application_path, "models/gibberish")).to(device) + gibberishTokenizer = AutoTokenizer.from_pretrained(os.path.join(application_path, "models/gibberish")) + + request_id_var.set("Startup") + log_dict={} + log.info("model loaded") + +except Exception as e: + log.error(f"Exception: {e}") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + + + +class MatchType(Enum): + SENTENCE = "sentence" + FULL = "full" + + def get_inputs(self, prompt: str) -> list[str]: + if self == MatchType.SENTENCE: + pk = PunktSentenceTokenizer() + return pk.sentences_from_text(text=prompt) + return [prompt] + + +class Gibberish: + + def scan(self,payload): + log.info("inside gibberish_check") + id=uuid.uuid4().hex + request_id_var.set(id) + log_dict[request_id_var.get()]=[] + try: + st = time.time() + text=payload['text'] + gibberish_labels = payload['labels'] + nlp = pipeline(task="text-classification", model=gibberishModel, tokenizer=gibberishTokenizer, device=device,model_kwargs=pipeline_kwargs) + match_type = MatchType(MatchType.FULL) + results_all = nlp(match_type.get_inputs(text)) + log.debug(f"Gibberish detection finished :{results_all}") + output={} + res=[] + for result in results_all: + score = round( + result["score"] if result["label"] in gibberish_labels else 1 - result["score"], + 2, + ) + output['gibberish_label'] = result["label"] + output['gibberish_score'] = score + + res.append(output) + + del nlp + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + return {"result":res,"time_taken":str(round(time.time()-st,3))+"s"} + + except Exception as e: + log.error("Error occured in gibberish_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at gibberish_check call"}) + raise InternalServerError() \ No newline at end of file diff --git a/src/service/injectionModel.py b/src/service/injectionModel.py new file mode 100644 index 0000000000000000000000000000000000000000..fdbde5411ee55418e56a86f16ac8788e72f074b7 --- /dev/null +++ b/src/service/injectionModel.py @@ -0,0 +1,79 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import torch +from transformers import AutoModelForSequenceClassification, AutoTokenizer + + +#from presidio_analyzer import AnalyzerEngine, RecognizerRegistry +from transformers import AutoModelForSequenceClassification, AutoTokenizer, pipeline +from werkzeug.exceptions import InternalServerError +from fastapi.encoders import jsonable_encoder +import traceback +from mapper.mapper import * +import time +import contextvars +from config.logger import CustomLogger,request_id_var + + +log = CustomLogger() + +import sys +import os + +try: + if getattr(sys, 'frozen', False): + application_path = sys._MEIPASS + else: + application_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..') + + log=CustomLogger() + log.info("before loading injection model") + request_id_var = contextvars.ContextVar("request_id_var") + #pipe = StableDiffusionPipeline.from_pretrained('/model/stablediffusion/fp32/model') + device = "cuda" + device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") + print("device",device) + gpu=0 if torch.cuda.is_available() else -1 + PromptModel_dberta = AutoModelForSequenceClassification.from_pretrained(os.path.join(application_path, "models/dbertaInjection")).to(device) + Prompttokens_dberta = AutoTokenizer.from_pretrained(os.path.join(application_path, "models/dbertaInjection")) + promtModel = pipeline("text-classification", model=PromptModel_dberta, tokenizer=Prompttokens_dberta, device=device) + + request_id_var.set("Startup") + log_dict={} + log.info("injection model loaded") + +except Exception as e: + log.error(f"Exception: {e}") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + +def promptInjection_check(text,id): + + log.info("inside promptInjection_check") + try: + st = time.time() + result = promtModel(text) + # print("============:",result) + predicted_label_name = result[0]["label"] + predicted_probabilities = result[0]["score"] + # del tokens + et = time.time() + rt = et-st + # output['promptInjection'] = (predicted_label_name,predicted_probabilities, {'time_taken':str(round(rt,3))+"s"}) + + return predicted_label_name,predicted_probabilities, {'time_taken':str(round(rt,3))+"s"} + except Exception as e: + + log.error("Error occured in promptInjection_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at promptInjection_check call"}) + raise InternalServerError() + \ No newline at end of file diff --git a/src/service/invisibletext_service.py b/src/service/invisibletext_service.py new file mode 100644 index 0000000000000000000000000000000000000000..7e9c9077748422acb561d64fef41da3771abe01e --- /dev/null +++ b/src/service/invisibletext_service.py @@ -0,0 +1,57 @@ +import unicodedata +import time +import traceback +import uuid +from werkzeug.exceptions import InternalServerError +from config.logger import CustomLogger,request_id_var + +log = CustomLogger() +log_dict={} + +class InvisibleText: + ''' + A class for scanning if the prompt includes invisible characters. + This class uses the unicodedata library to detect invisible characters in the output of the language model. + It detects and removes characters in categories : + 'Cf' (Format characters), + 'Cc' (Control characters), + 'Co' (Private use characters), and + 'Cn' (Unassigned characters), which are typically non-printable. + ''' + def scan(self, prompt: str,banned_categories: list): + log.info("inside invisible_text check") + id=uuid.uuid4().hex + request_id_var.set(id) + log_dict[request_id_var.get()]=[] + try: + st = time.time() + chars = [] + output={} + contains_unicode = any(ord(char) > 127 for char in prompt) + log.info(f"contains_unicode: {contains_unicode}") + if not contains_unicode: + output['result']=[] + output['time_taken']=str(round(time.time()-st,3))+"s" + else: + for char in prompt: + if unicodedata.category(char) not in banned_categories: + continue + chars.append(char) + output['result']=chars + output['time_taken']=str(round(time.time()-st,3))+"s" + + log.info(f"output: {output}") + return output + + except Exception as e: + log.error("Error occured in invisibletext_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at invisibletext_check call"}) + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + raise InternalServerError() + diff --git a/src/service/privacyModel.py b/src/service/privacyModel.py new file mode 100644 index 0000000000000000000000000000000000000000..351fd30475db8e4e93df05df244a5825de388a10 --- /dev/null +++ b/src/service/privacyModel.py @@ -0,0 +1,69 @@ +import os +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +from werkzeug.exceptions import InternalServerError +from fastapi.encoders import jsonable_encoder +import traceback +from mapper.mapper import * +import time +import contextvars +from config.logger import CustomLogger,request_id_var +from privacy.privacy import Privacy as ps + +log = CustomLogger() + +import sys +import os + +try: + if getattr(sys, 'frozen', False): + application_path = sys._MEIPASS + else: + application_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..') + + log=CustomLogger() + log.info("before loading model") + request_id_var = contextvars.ContextVar("request_id_var") + + request_id_var.set("Startup") + log_dict={} + log.info("privacy model loaded") + +except Exception as e: + log.error(f"Exception: {e}") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + +def privacy(id,text): + log.info("inside privacy") + + try: + st = time.time() + res=ps.textAnalyze({"inputText":text, + "account": None, + "portfolio":None, + "exclusionList": None, + "fakeData": "false", + "piiEntitiesToBeRedacted":None, + "nlp":None}) + et = time.time() + rt = et-st + #print("result start",res.PIIEntities,"result end", "time",rt) + + # output['PIIresult'] = {"PIIresult":res.PIIEntities,"modelcalltime":round(rt,3)} + return {"PIIresult":res.PIIEntities,"modelcalltime":round(rt,3)} + except Exception as e: + + log.error("Error occured in privacy") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at privacy call"}) + raise InternalServerError() + diff --git a/src/service/safety_service.py b/src/service/safety_service.py new file mode 100644 index 0000000000000000000000000000000000000000..7ca51b43a668bc8ab47bffcaeaba7289e4efc386 --- /dev/null +++ b/src/service/safety_service.py @@ -0,0 +1,35 @@ +''' +Copyright 2024-2025 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +from diffusers import StableDiffusionPipeline +import torch + + +# model_name = "../models/stable_diffusion_v_1_5" +if(torch.cuda.is_available()): + pipe = StableDiffusionPipeline.from_pretrained(model_name,torch_dtype=torch.float16,safety_checker=None) + inference=50 + device = torch.device("cuda") + pipe=pipe.to(device) + +else: + pipe = StableDiffusionPipeline.from_pretrained(model_name,safety_checker=None) + inference=2 + +class ImageGen: + def generate(prompt): + try: + image = pipe(prompt,num_inference_steps=inference).images[0] + # image.show() + return image + except Exception as e: + + raise Exception("Error in generating image") + diff --git a/src/service/sentiment_service.py b/src/service/sentiment_service.py new file mode 100644 index 0000000000000000000000000000000000000000..cd21e0af90e893150dc7c62575c1c34231e322a9 --- /dev/null +++ b/src/service/sentiment_service.py @@ -0,0 +1,46 @@ +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' +from config.vader import SentimentIntensityAnalyzer +import time +import traceback +import uuid +from werkzeug.exceptions import InternalServerError +from config.logger import CustomLogger,request_id_var + +log = CustomLogger() +log_dict={} + + +class Sentiment: + def scan(self, prompt: str): + log.info("inside sentiment_check") + id=uuid.uuid4().hex + request_id_var.set(id) + log_dict[request_id_var.get()]=[] + try: + st = time.time() + output={} + sentiment_analyzer = SentimentIntensityAnalyzer() + sentiment_score = sentiment_analyzer.polarity_scores(prompt) + log.debug(f"sentiment_score : {sentiment_score}") + output['score'] = sentiment_score + output['time_taken'] = str(round(time.time()-st,3))+"s" + er=log_dict[request_id_var.get()] + logobj = {"_id":id,"error":er} + if len(er)!=0: + log.debug(str(logobj)) + del log_dict[id] + return output + except Exception as e: + log.error("Error occured in sentiment_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at sentiment_check call"}) + raise InternalServerError() diff --git a/src/service/service.py b/src/service/service.py new file mode 100644 index 0000000000000000000000000000000000000000..2e94cf1fac430e0f4c0bdb9fcd5a65a8cb092ac1 --- /dev/null +++ b/src/service/service.py @@ -0,0 +1,364 @@ +import os +''' +Copyright 2024-2025 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' +import multiprocessing +import threading + +import math +import torch +from transformers import AutoModelForSequenceClassification, AutoTokenizer +from sentence_transformers import SentenceTransformer,util +from detoxify import Detoxify +#from presidio_analyzer import AnalyzerEngine, RecognizerRegistry +from transformers import AutoModelForSequenceClassification, AutoTokenizer, pipeline +from werkzeug.exceptions import InternalServerError +from fastapi.encoders import jsonable_encoder +import traceback +from mapper.mapper import * +import time +import contextvars +from config.logger import CustomLogger,request_id_var +from privacy.privacy import Privacy as ps + +log = CustomLogger() + +import sys +import os + +try: + if getattr(sys, 'frozen', False): + application_path = sys._MEIPASS + else: + application_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..') + + log=CustomLogger() + log.info("before loading model") + request_id_var = contextvars.ContextVar("request_id_var") + #pipe = StableDiffusionPipeline.from_pretrained('/model/stablediffusion/fp32/model') + device = "cuda" +# registry = RecognizerRegistry() +# registry.load_predefined_recognizers() +# analyzer_engine = AnalyzerEngine(registry=registry) + + device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") + print("device",device) + gpu=0 if torch.cuda.is_available() else -1 + # BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + # # for i in os.walk(BASE_DIR) + # print(BASE_DIR) + # print(os.listdir(BASE_DIR)) + # print(os.listdir()) + check_point = 'toxic_debiased-c7548aa0.ckpt' + toxicityModel = Detoxify(checkpoint=os.path.join(application_path, 'models/detoxify/'+ check_point), + device=device, + huggingface_config_path=os.path.join(application_path, 'models/detoxify')) + tokenizer = AutoTokenizer.from_pretrained(os.path.join(application_path, "models/detoxify")) + + + PromptModel_dberta = AutoModelForSequenceClassification.from_pretrained(os.path.join(application_path, "models/dbertaInjection")).to(device) + Prompttokens_dberta = AutoTokenizer.from_pretrained(os.path.join(application_path, "models/dbertaInjection")) + promtModel = pipeline("text-classification", model=PromptModel_dberta, tokenizer=Prompttokens_dberta, device=device) + + #topictokenizer_Facebook = AutoTokenizer.from_pretrained("../models/facebook") + #topicmodel_Facebook = AutoModelForSequenceClassification.from_pretrained("../models/facebook").to(device) + + topictokenizer_dberta = AutoTokenizer.from_pretrained(os.path.join(application_path,"models/restricted-dberta-base-zeroshot-v2")) + topicmodel_dberta = AutoModelForSequenceClassification.from_pretrained(os.path.join(application_path,"models/restricted-dberta-base-zeroshot-v2")).to(device) + nlp = pipeline('zero-shot-classification', model=topicmodel_dberta, tokenizer=topictokenizer_dberta,device=gpu) + # classifier = pipeline("zero-shot-classification",model="../../models/facebook",device=device) + # classifier2 = pipeline("zero-shot-classification",model="../../models/restricted-dberta-large-zeroshot",device=device) + encoder = SentenceTransformer(os.path.join(application_path, "models/multi-qa-mpnet-base-dot-v1")).to(device) + + jailbreakModel = encoder + similarity_model =encoder + request_id_var.set("Startup") + log_dict={} + log.info("model loaded") + +except Exception as e: + log.error(f"Exception: {e}") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + +def privacy(id,text): + log.info("inside privacy") + + try: + st = time.time() + res=ps.textAnalyze({"inputText":text, + "account": None, + "portfolio":None, + "exclusionList": None, + "piiEntitiesToBeRedacted":None, + "nlp":None, + "fakeData": "false"}) + et = time.time() + rt = et-st + #print("result start",res.PIIEntities,"result end", "time",rt) + + # output['PIIresult'] = {"PIIresult":res.PIIEntities,"modelcalltime":round(rt,3)} + return {"PIIresult":res.PIIEntities,"modelcalltime":round(rt,3)} + except Exception as e: + + log.error("Error occured in privacy") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at privacy call"}) + raise InternalServerError() + +def multi_q_net_similarity(id,text1=None,text2=None,emb1=None,emb2=None): + + try: + st = time.time() + if text1: + with torch.no_grad(): + emb1 = jailbreakModel.encode(text1, convert_to_tensor=True,device=device) + if text2: + with torch.no_grad(): + emb2 = jailbreakModel.encode(text2, convert_to_tensor=True,device=device) + + emb = util.pytorch_cos_sim(emb1, emb2).to("cpu").numpy().tolist() + del emb1 + del emb2 + et = time.time() + rt =et-st + return emb,{'time_taken': str(round(rt,3))+"s"} + except Exception as e: + + log.error("Error occured in multi_q_net_similarity") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at multi_q_net_similarity call"}) + raise InternalServerError() + +def multi_q_net_embedding(id,lst): + log.info("inside multi_q_net_embedding") + + try: + st = time.time() + # print("start time JB===========",lst,st) + + res = [] + for text in lst: + with torch.no_grad(): + text_embedding = jailbreakModel.encode(text, convert_to_tensor=True,device=device) + res.append(text_embedding.to("cpu").numpy().tolist()) + + del text_embedding + et = time.time() + rt = et-st + # output['multi_q_net_embedding'] =(res,{'time_taken': str(round(rt,3))+"s"}) + return res,{'time_taken': str(round(rt,3))+"s"} + # return output + # return text_embedding.numpy().tolist() + except Exception as e: + + log.error("Error occured in multi_q_net text embedding") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at multi_q_net text embedding call"}) + raise InternalServerError() + +def restricttopic_check(payload,id): + log.info("inside restricttopic_check") + + try: + st = time.time() + # topicmodel = topicmodel_Facebook + # topictokenizer = topictokenizer_Facebook + + # nlp = pipeline('zero-shot-classification', model=classifier, tokenizer=topictokenizer) + + text=payload['text'] + labels=payload['labels'] + hypothesis_template = "The topic of this text is {}" + #commented to use just dberta model + #model =payload['model'] if hasattr(payload, 'model') else "facebook" + #if model==None: + # model="dberta" + + # if model=="facebook": + # # nlp = classifier + # nlp = pipeline('zero-shot-classification', model=topicmodel_Facebook, tokenizer=topictokenizer_Facebook, device=gpu) + # elif model=="dberta": + # # nlp = classifier2 + # nlp = pipeline('zero-shot-classification', model=topicmodel_dberta, tokenizer=topictokenizer_dberta,device=gpu) + nlp = pipeline('zero-shot-classification', model=topicmodel_dberta, tokenizer=topictokenizer_dberta,device=gpu) + with torch.no_grad(): + output=nlp(text, labels,hypothesis_template=hypothesis_template,multi_label=True) + + for i in range(len(output["scores"])): + output["scores"][i] = round(output["scores"][i],4) + + del nlp + et = time.time() + rt = et-st + output['time_taken'] = str(round(rt,3))+"s" + # output1['restricttopic'] = output + return output + + except Exception as e: + + log.error("Error occured in restricttopic_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at restricttopic_check call"}) + raise InternalServerError() + +def toxicity_check(payload,id) : + log.info("inside toxicity_check") + + try: + st = time.time() + text = payload['text'] + + #to check number of tokens + input_ids_val = tokenizer.encode(text) + input_ids=input_ids_val[1:-1] + result_list=[] + #to send max 510 tokens to the model at a time and at end find avg result for each token set + if len(input_ids)>510: + val=math.ceil(len(input_ids)/510) + j=0 + k=510 + for i in range(0,val): + text="".join(tokenizer.decode(input_ids[j:k])) + j+=510 + k+=510 + with torch.no_grad(): + result = toxicityModel.predict(text) + result_list.append(result) + output = { + 'toxicity': 0, + 'severe_toxicity': 0, + 'obscene': 0, + 'threat': 0, + 'insult': 0, + 'identity_attack': 0, + 'sexual_explicit': 0 + } + for j in result_list: + output['toxicity']+=j['toxicity'] + output['severe_toxicity']+=j['severe_toxicity'] + output['obscene']+=j['obscene'] + output['identity_attack']+=j['identity_attack'] + output['insult']+=j['insult'] + output['threat']+=j['threat'] + output['sexual_explicit']+=j['sexual_explicit'] + output = {k: v / len(result_list) for k, v in output.items()} + else: + with torch.no_grad(): + output = toxicityModel.predict(text) + List_profanity_score = [] + obj_profanityScore_toxic = profanityScore(metricName='toxicity', + metricScore=output['toxicity']) + obj_profanityScore_severe_toxic = profanityScore(metricName='severe_toxicity', + metricScore=output['severe_toxicity']) + obj_profanityScore_obscene = profanityScore(metricName='obscene', + metricScore=output['obscene']) + obj_profanityScore_threat = profanityScore(metricName='threat', + metricScore=output['threat']) + obj_profanityScore_insult = profanityScore(metricName='insult', + metricScore=output['insult']) + obj_profanityScore_identity_attack = profanityScore(metricName='identity_attack', + metricScore=output['identity_attack']) + obj_profanityScore_sexual_explicit = profanityScore(metricName='sexual_explicit', + metricScore=output['sexual_explicit']) + + List_profanity_score.append(obj_profanityScore_toxic) + List_profanity_score.append(obj_profanityScore_severe_toxic) + List_profanity_score.append(obj_profanityScore_obscene) + List_profanity_score.append(obj_profanityScore_threat) + List_profanity_score.append(obj_profanityScore_insult) + List_profanity_score.append(obj_profanityScore_identity_attack) + List_profanity_score.append(obj_profanityScore_sexual_explicit) + + objProfanityAnalyzeResponse = {} + objProfanityAnalyzeResponse['toxicScore'] = List_profanity_score + et = time.time() + rt = et-st + objProfanityAnalyzeResponse['time_taken'] = str(round(rt,3))+"s" + # output1['toxicity'] = objProfanityAnalyzeResponse + return objProfanityAnalyzeResponse + + except Exception as e: + + log.error("Error occured in toxicity_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at toxicity_check call"}) + raise InternalServerError() + +def promptInjection_check(text,id): + + log.info("inside promptInjection_check") + try: + st = time.time() + result = promtModel(text) + # print("============:",result) + predicted_label_name = result[0]["label"] + predicted_probabilities = result[0]["score"] + # del tokens + et = time.time() + rt = et-st + # output['promptInjection'] = (predicted_label_name,predicted_probabilities, {'time_taken':str(round(rt,3))+"s"}) + + return predicted_label_name,predicted_probabilities, {'time_taken':str(round(rt,3))+"s"} + except Exception as e: + + log.error("Error occured in promptInjection_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at promptInjection_check call"}) + raise InternalServerError() + +# def checkall(id,payload): +# try: +# st = time.time() +# output = {} +# x=[] +# threads = [] +# results = [] +# thread = threading.Thread(target=toxicity_check, args=(payload['text'],id,output)) +# threads.append(thread) +# thread.start() +# thread1 = threading.Thread(target=promptInjection_check, args=(payload['text']['text'],id,output)) +# threads.append(thread1) +# thread1.start() +# thread2 = threading.Thread(target=restricttopic_check, args=(payload["restric"],id,output)) +# threads.append(thread2) +# thread2.start() +# thread3 = threading.Thread(target=multi_q_net_embedding, args=(id,payload['embed']["text"],output)) +# threads.append(thread3) +# thread3.start() +# thread4 = threading.Thread(target=privacy, args=(id,payload['text']['text'],output)) +# threads.append(thread4) +# thread4.start() +# for thread in threads: +# thread.join() +# # print("=======================:",result) +# # results.append(thread.result) +# # with multiprocessing.Pool() as pool: +# # output['toxicity'] =pool.starmap(toxicity_check, [(payload["text"],id)]) +# # output['promptInjection'] = pool.starmap(promptInjection_check, [(payload['text'],id)]) +# # output['restricttopic'] = pool.starmap(restricttopic_check, [(payload["restric"],id)]) +# # output['multi_q_net_embedding'] = pool.starmap(multi_q_net_embedding, [(id,payload['embed']["text"])]) +# # output['privacy'] = pool.starmap(privacy, [(id,payload['text'])]) +# # print("output",output) +# et = time.time() +# rt = et-st +# output['time_taken'] = str(round(rt,3))+"s" +# return output +# except Exception as e: + +# log.error("Error occured in checkall") +# log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") +# log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), +# "Error Module":"Failed at checkall call"}) +# raise InternalServerError() diff --git a/src/service/test service.py b/src/service/test service.py new file mode 100644 index 0000000000000000000000000000000000000000..4c9172bb471d1af6ea53bd7c28edb00e9ecdfa8f --- /dev/null +++ b/src/service/test service.py @@ -0,0 +1,386 @@ +import os +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' +import multiprocessing +import threading + +import math +import torch +from transformers import AutoModelForSequenceClassification, AutoTokenizer +from sentence_transformers import SentenceTransformer,util +from detoxify import Detoxify +#from presidio_analyzer import AnalyzerEngine, RecognizerRegistry +from transformers import AutoModelForSequenceClassification, AutoTokenizer, pipeline +from werkzeug.exceptions import InternalServerError +from fastapi.encoders import jsonable_encoder +import traceback +from mapper.mapper import * +import time +import contextvars +from config.logger import CustomLogger,request_id_var +from privacy.privacy import Privacy as ps + +log = CustomLogger() + +import sys +import os + +try: + if getattr(sys, 'frozen', False): + application_path = sys._MEIPASS + else: + application_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..') + + log=CustomLogger() + log.info("before loading model") + request_id_var = contextvars.ContextVar("request_id_var") + #pipe = StableDiffusionPipeline.from_pretrained('/model/stablediffusion/fp32/model') + device = "cuda" +# registry = RecognizerRegistry() +# registry.load_predefined_recognizers() +# analyzer_engine = AnalyzerEngine(registry=registry) + + device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") + print("device",device) + gpu=0 if torch.cuda.is_available() else -1 + # BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + # # for i in os.walk(BASE_DIR) + # print(BASE_DIR) + # print(os.listdir(BASE_DIR)) + # print(os.listdir()) + check_point = 'toxic_debiased-c7548aa0.ckpt' + toxicityModel = Detoxify(checkpoint=os.path.join(application_path, 'models/detoxify/'+ check_point), + device=device, + huggingface_config_path=os.path.join(application_path, 'models/detoxify')) + tokenizer = AutoTokenizer.from_pretrained(os.path.join(application_path, "models/detoxify")) + + + PromptModel_dberta = AutoModelForSequenceClassification.from_pretrained(os.path.join(application_path, "models/dbertaInjection")).to(device) + Prompttokens_dberta = AutoTokenizer.from_pretrained(os.path.join(application_path, "models/dbertaInjection")) + promtModel = pipeline("text-classification", model=PromptModel_dberta, tokenizer=Prompttokens_dberta, device=device) + + #topictokenizer_Facebook = AutoTokenizer.from_pretrained("../models/facebook") + #topicmodel_Facebook = AutoModelForSequenceClassification.from_pretrained("../models/facebook").to(device) + + topictokenizer_dberta = AutoTokenizer.from_pretrained(os.path.join(application_path,"models/restricted-dberta-base-zeroshot-v2")) + topicmodel_dberta = AutoModelForSequenceClassification.from_pretrained(os.path.join(application_path,"models/restricted-dberta-base-zeroshot-v2")).to(device) + nlp = pipeline('zero-shot-classification', model=topicmodel_dberta, tokenizer=topictokenizer_dberta,device=gpu) + # nlidist = pipeline('zero-shot-classification', model="../models/nli-distilroberta-base",device=gpu) + # bartlarge = pipeline('zero-shot-classification', model="../models/bart-large-mnli",device=gpu) + # nildeberta = pipeline('zero-shot-classification', model="../models/nli-deberta-v3-small",device=gpu) + # debertasmall = pipeline('zero-shot-classification', model="../models/deberta-small-long-nli",device=gpu) + nlimini = pipeline('zero-shot-classification', model="../models/nli-MiniLM2-L6-H768",device=gpu) + # nlimini = pipeline('zero-shot-classification', model=r"C:\Users\amitumamaheshwar.h\Downloads\nli-MiniLM2-L6-H768",device=gpu) + # distilbart = pipeline('zero-shot-classification', model="../models/distilbart-mnli-12-6",device=gpu) + # classifier = pipeline("zero-shot-classification",model="../../../models/facebook",device=device) + # classifier2 = pipeline("zero-shot-classification",model="../../../models/restricted-dberta-large-zeroshot",device=device) + # encoder = SentenceTransformer("../models/multi-qa-mpnet-base-dot-v1").to(device) + # classifier = pipeline("zero-shot-classification",model="../../models/facebook",device=device) + # classifier2 = pipeline("zero-shot-classification",model="../../models/restricted-dberta-large-zeroshot",device=device) + encoder = SentenceTransformer(os.path.join(application_path, "models/multi-qa-mpnet-base-dot-v1")).to(device) + + jailbreakModel = encoder + similarity_model =encoder + request_id_var.set("Startup") + log_dict={} + log.info("model loaded") + +except Exception as e: + log.error(f"Exception: {e}") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + +def privacy(id,text): + log.info("inside privacy") + + try: + st = time.time() + res=ps.textAnalyze({"inputText":text, + "account": None, + "portfolio":None, + "exclusionList": None, + "fakeData": "false"}) + et = time.time() + rt = et-st + #print("result start",res.PIIEntities,"result end", "time",rt) + + # output['PIIresult'] = {"PIIresult":res.PIIEntities,"modelcalltime":round(rt,3)} + return {"PIIresult":res.PIIEntities,"modelcalltime":round(rt,3)} + except Exception as e: + + log.error("Error occured in privacy") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at privacy call"}) + raise InternalServerError() + +def multi_q_net_similarity(id,text1=None,text2=None,emb1=None,emb2=None): + + try: + st = time.time() + if text1: + with torch.no_grad(): + emb1 = jailbreakModel.encode(text1, convert_to_tensor=True,device=device) + if text2: + with torch.no_grad(): + emb2 = jailbreakModel.encode(text2, convert_to_tensor=True,device=device) + + emb = util.pytorch_cos_sim(emb1, emb2).to("cpu").numpy().tolist() + del emb1 + del emb2 + et = time.time() + rt =et-st + return emb,{'time_taken': str(round(rt,3))+"s"} + except Exception as e: + + log.error("Error occured in multi_q_net_similarity") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at multi_q_net_similarity call"}) + raise InternalServerError() + +def multi_q_net_embedding(id,lst): + log.info("inside multi_q_net_embedding") + + try: + st = time.time() + # print("start time JB===========",lst,st) + + res = [] + for text in lst: + with torch.no_grad(): + text_embedding = jailbreakModel.encode(text, convert_to_tensor=True,device=device) + res.append(text_embedding.to("cpu").numpy().tolist()) + + del text_embedding + et = time.time() + rt = et-st + # output['multi_q_net_embedding'] =(res,{'time_taken': str(round(rt,3))+"s"}) + return res,{'time_taken': str(round(rt,3))+"s"} + # return output + # return text_embedding.numpy().tolist() + except Exception as e: + + log.error("Error occured in multi_q_net text embedding") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at multi_q_net text embedding call"}) + raise InternalServerError() + +def restricttopic_check(payload,id): + log.info("inside restricttopic_check") + + try: + st = time.time() + # topicmodel = topicmodel_Facebook + # topictokenizer = topictokenizer_Facebook + + # nlp = pipeline('zero-shot-classification', model=classifier, tokenizer=topictokenizer) + + text=payload['text'] + if('model' in payload): + model=payload['model'] + else: + model="nliMini" + labels=payload['labels'] + #hypothesis_template = "The topic of this text is {}" + hypothesis_template="This text falls under and is strictly related to topic {}" + + + if(model=="nliMini"): + cls=nlimini + else: + cls=nlp + # print(model,cls) + #commented to use just dberta model + #model =payload['model'] if hasattr(payload, 'model') else "facebook" + #if model==None: + # model="dberta" + + # if model=="facebook": + # # nlp = classifier + # nlp = pipeline('zero-shot-classification', model=topicmodel_Facebook, tokenizer=topictokenizer_Facebook, device=gpu) + # elif model=="dberta": + # # nlp = classifier2 + # nlp = pipeline('zero-shot-classification', model=topicmodel_dberta, tokenizer=topictokenizer_dberta,device=gpu) + # nlp = pipeline('zero-shot-classification', model=topicmodel_dberta, tokenizer=topictokenizer_dberta,device=gpu) + with torch.no_grad(): + output=cls(text, labels,hypothesis_template=hypothesis_template,multi_label=True) + # print("=================",output) + for i in range(len(output["scores"])): + output["scores"][i] = round(output["scores"][i],4) + + # del nlp + del cls + et = time.time() + rt = et-st + output['time_taken'] = str(round(rt,3))+"s" + # output1['restricttopic'] = output + return output + + except Exception as e: + + log.error("Error occured in restricttopic_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at restricttopic_check call"}) + raise InternalServerError() + +def toxicity_check(payload,id) : + log.info("inside toxicity_check") + + try: + st = time.time() + text = payload['text'] + + #to check number of tokens + input_ids_val = tokenizer.encode(text) + input_ids=input_ids_val[1:-1] + result_list=[] + #to send max 450 tokens to the model at a time and at end find avg result for each token set + token_limit=450 + if len(input_ids)>token_limit: + val=math.ceil(len(input_ids)/token_limit) + j=0 + k=token_limit + for i in range(0,val): + text="".join(tokenizer.decode(input_ids[j:k])) + j+=token_limit + k+=token_limit + with torch.no_grad(): + result = toxicityModel.predict(text) + result_list.append(result) + output = { + 'toxicity': 0, + 'severe_toxicity': 0, + 'obscene': 0, + 'threat': 0, + 'insult': 0, + 'identity_attack': 0, + 'sexual_explicit': 0 + } + for j in result_list: + output['toxicity']+=j['toxicity'] + output['severe_toxicity']+=j['severe_toxicity'] + output['obscene']+=j['obscene'] + output['identity_attack']+=j['identity_attack'] + output['insult']+=j['insult'] + output['threat']+=j['threat'] + output['sexual_explicit']+=j['sexual_explicit'] + output = {k: v / len(result_list) for k, v in output.items()} + else: + with torch.no_grad(): + output = toxicityModel.predict(text) + List_profanity_score = [] + obj_profanityScore_toxic = profanityScore(metricName='toxicity', + metricScore=output['toxicity']) + obj_profanityScore_severe_toxic = profanityScore(metricName='severe_toxicity', + metricScore=output['severe_toxicity']) + obj_profanityScore_obscene = profanityScore(metricName='obscene', + metricScore=output['obscene']) + obj_profanityScore_threat = profanityScore(metricName='threat', + metricScore=output['threat']) + obj_profanityScore_insult = profanityScore(metricName='insult', + metricScore=output['insult']) + obj_profanityScore_identity_attack = profanityScore(metricName='identity_attack', + metricScore=output['identity_attack']) + obj_profanityScore_sexual_explicit = profanityScore(metricName='sexual_explicit', + metricScore=output['sexual_explicit']) + + List_profanity_score.append(obj_profanityScore_toxic) + List_profanity_score.append(obj_profanityScore_severe_toxic) + List_profanity_score.append(obj_profanityScore_obscene) + List_profanity_score.append(obj_profanityScore_threat) + List_profanity_score.append(obj_profanityScore_insult) + List_profanity_score.append(obj_profanityScore_identity_attack) + List_profanity_score.append(obj_profanityScore_sexual_explicit) + + objProfanityAnalyzeResponse = {} + objProfanityAnalyzeResponse['toxicScore'] = List_profanity_score + et = time.time() + rt = et-st + objProfanityAnalyzeResponse['time_taken'] = str(round(rt,3))+"s" + # output1['toxicity'] = objProfanityAnalyzeResponse + return objProfanityAnalyzeResponse + + except Exception as e: + + log.error("Error occured in toxicity_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at toxicity_check call"}) + raise InternalServerError() + +def promptInjection_check(text,id): + + log.info("inside promptInjection_check") + try: + st = time.time() + result = promtModel(text) + # print("============:",result) + predicted_label_name = result[0]["label"] + predicted_probabilities = result[0]["score"] + # del tokens + et = time.time() + rt = et-st + # output['promptInjection'] = (predicted_label_name,predicted_probabilities, {'time_taken':str(round(rt,3))+"s"}) + + return predicted_label_name,predicted_probabilities, {'time_taken':str(round(rt,3))+"s"} + except Exception as e: + + log.error("Error occured in promptInjection_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at promptInjection_check call"}) + raise InternalServerError() + +# def checkall(id,payload): +# try: +# st = time.time() +# output = {} +# x=[] +# threads = [] +# results = [] +# thread = threading.Thread(target=toxicity_check, args=(payload['text'],id,output)) +# threads.append(thread) +# thread.start() +# thread1 = threading.Thread(target=promptInjection_check, args=(payload['text']['text'],id,output)) +# threads.append(thread1) +# thread1.start() +# thread2 = threading.Thread(target=restricttopic_check, args=(payload["restric"],id,output)) +# threads.append(thread2) +# thread2.start() +# thread3 = threading.Thread(target=multi_q_net_embedding, args=(id,payload['embed']["text"],output)) +# threads.append(thread3) +# thread3.start() +# thread4 = threading.Thread(target=privacy, args=(id,payload['text']['text'],output)) +# threads.append(thread4) +# thread4.start() +# for thread in threads: +# thread.join() +# # print("=======================:",result) +# # results.append(thread.result) +# # with multiprocessing.Pool() as pool: +# # output['toxicity'] =pool.starmap(toxicity_check, [(payload["text"],id)]) +# # output['promptInjection'] = pool.starmap(promptInjection_check, [(payload['text'],id)]) +# # output['restricttopic'] = pool.starmap(restricttopic_check, [(payload["restric"],id)]) +# # output['multi_q_net_embedding'] = pool.starmap(multi_q_net_embedding, [(id,payload['embed']["text"])]) +# # output['privacy'] = pool.starmap(privacy, [(id,payload['text'])]) +# # print("output",output) +# et = time.time() +# rt = et-st +# output['time_taken'] = str(round(rt,3))+"s" +# return output +# except Exception as e: + +# log.error("Error occured in checkall") +# log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") +# log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), +# "Error Module":"Failed at checkall call"}) +# raise InternalServerError() diff --git a/src/service/topicModel.py b/src/service/topicModel.py new file mode 100644 index 0000000000000000000000000000000000000000..0ee849bbe45d9ebe29e23ab5cdf9141092371437 --- /dev/null +++ b/src/service/topicModel.py @@ -0,0 +1,106 @@ +import os +''' +Copyright 2024 Infosys Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +''' + +import torch +from transformers import AutoModelForSequenceClassification, AutoTokenizer + +from transformers import AutoModelForSequenceClassification, AutoTokenizer, pipeline +from werkzeug.exceptions import InternalServerError +from fastapi.encoders import jsonable_encoder +import traceback +from mapper.mapper import * +import time +import contextvars +from config.logger import CustomLogger,request_id_var + + +log = CustomLogger() + +import sys +import os + +try: + if getattr(sys, 'frozen', False): + application_path = sys._MEIPASS + else: + application_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..') + + log=CustomLogger() + log.info("before loading topic model") + request_id_var = contextvars.ContextVar("request_id_var") + #pipe = StableDiffusionPipeline.from_pretrained('/model/stablediffusion/fp32/model') + device = "cuda" +# + device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") + print("device",device) + gpu=0 if torch.cuda.is_available() else -1 + + topictokenizer_dberta = AutoTokenizer.from_pretrained(os.path.join(application_path,"models/restricted-dberta-base-zeroshot-v2")) + topicmodel_dberta = AutoModelForSequenceClassification.from_pretrained(os.path.join(application_path,"models/restricted-dberta-base-zeroshot-v2")).to(device) + nlp = pipeline('zero-shot-classification', model=topicmodel_dberta, tokenizer=topictokenizer_dberta,device=gpu) + nlimini = pipeline('zero-shot-classification', model="../models/nli-MiniLM2-L6-H768",device=gpu) + + request_id_var.set("Startup") + log_dict={} + log.info("topic model loaded") + +except Exception as e: + log.error(f"Exception: {e}") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + + +def restricttopic_check(payload,id): + log.info("inside restricttopic_check") + + try: + st = time.time() + # topicmodel = topicmodel_Facebook + # topictokenizer = topictokenizer_Facebook + + # nlp = pipeline('zero-shot-classification', model=classifier, tokenizer=topictokenizer) + + text=payload['text'] + if('model' in payload): + model=payload['model'] + else: + model="nliMini" + labels=payload['labels'] + #hypothesis_template = "The topic of this text is {}" + hypothesis_template="This text falls under and is strictly related to topic {}" + + + if(model=="nliMini"): + cls=nlimini + else: + cls=nlp + + with torch.no_grad(): + output=cls(text, labels,hypothesis_template=hypothesis_template,multi_label=True) + # print("=================",output) + for i in range(len(output["scores"])): + output["scores"][i] = round(output["scores"][i],4) + + # del nlp + del cls + et = time.time() + rt = et-st + output['time_taken'] = str(round(rt,3))+"s" + # output1['restricttopic'] = output + return output + + except Exception as e: + + log.error("Error occured in restricttopic_check") + log.error(f"Exception: {str(traceback.extract_tb(e.__traceback__)[0].lineno),e}") + log_dict[request_id_var.get()].append({"Line number":str(traceback.extract_tb(e.__traceback__)[0].lineno),"Error":str(e), + "Error Module":"Failed at restricttopic_check call"}) + raise InternalServerError() + diff --git a/src/static/detoxify_swagger.json b/src/static/detoxify_swagger.json new file mode 100644 index 0000000000000000000000000000000000000000..429436e336685d5c66a45e1335b9ce4cccac73e5 --- /dev/null +++ b/src/static/detoxify_swagger.json @@ -0,0 +1,397 @@ +{ + "openapi": "3.0.3", + "info": { + "title": "Infosys Responsible AI - LLM Moderation Models - OpenAPI 3.0", + "description": "API specs for Infosys Responsible AI LLM Moderation layer Models in OpenAPI 3.0 format", + "contact": { + "email": "aina@infosys.com" + }, + "license": { + "name": "Infosys", + "url": "https://www.infosys.com" + }, + "version": "0.0.1" + }, + "security" : [ { + "oauth_auth" : [ "write:users", "read:users" ] + } + ], + "paths": { + "/rai/v1/raimoderationmodels/detoxifymodel": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Toxic Model", + "operationId": "toxic_model_rai_v1_models_detoxifymodel_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/detoxifyRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/detoxifyResponse" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "Body_img_rai_v1_models_ImageGenerate_post": { + "properties": { + "prompt": { + "type": "string", + "title": "Prompt" + } + }, + "type": "object", + "required": [ + "prompt" + ], + "title": "Body_img_rai_v1_models_ImageGenerate_post" + }, + "HTTPValidationError": { + "properties": { + "detail": { + "items": { + "$ref": "#/components/schemas/ValidationError" + }, + "type": "array", + "title": "Detail" + } + }, + "type": "object", + "title": "HTTPValidationError" + }, + "HTTPUnauthorizedAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/UnauthorizedAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPUnauthorizedAccessError" + }, + "HTTPForbiddenAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/ForbiddenAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPForbiddenAccessError" + }, + "JailbreakRequest": { + "properties": { + "text": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Text" + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "JailbreakRequest" + }, + "RestrictedTopicRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + }, + "model": { + "type": "string", + "title": "Model", + "example": "distilroberta" + }, + "labels": { + "items": {}, + "type": "array", + "title": "Labels", + "default": [ + "Terrorism", + "Explosives" + ] + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "RestrictedTopicRequest" + }, + "SimilarityRequest": { + "properties": { + "text1": { + "type": "string", + "title": "Text1", + "example": "Russia is the biggest country by area." + }, + "text2": { + "type": "string", + "title": "Text2", + "example": "Russia is the biggest country by area." + }, + "emb1": { + "items": {}, + "type": "array", + "title": "Emb1" + }, + "emb2": { + "items": {}, + "type": "array", + "title": "Emb2" + } + }, + "type": "object", + "title": "SimilarityRequest" + }, + "ValidationError": { + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ValidationError" + }, + "UnauthorizedAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "UnauthorizedAccessError" + }, + "ForbiddenAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ForbiddenAccessError" + }, + "detoxifyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "detoxifyRequest" + }, + "detoxifyResponse": { + "properties": { + "toxicScore": { + "items": { + "$ref": "#/components/schemas/profanityScore" + }, + "type": "array", + "title": "Toxicscore" + } + }, + "type": "object", + "required": [ + "toxicScore" + ], + "title": "detoxifyResponse" + }, + "privacyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "privacyRequest" + }, + "profanityScore": { + "properties": { + "metricName": { + "type": "string", + "title": "Metricname", + "example": "toxicity" + }, + "metricScore": { + "type": "number", + "title": "Metricscore", + "example": 0.78326 + } + }, + "type": "object", + "required": [ + "metricName", + "metricScore" + ], + "title": "profanityScore" + } + }, + "securitySchemes": { + "type": "oauth2", + "flows": { + "authorizationCode": { + "authorizationUrl": "http://tes.org/api/oauth/dialog", + "scopes": { + "read:users": "read user profiles" + } + } + } + } + }, + "tags": [ + { + "name": "LLM Moderation", + "description": "Operations required for LLM moderation proxy.", + "externalDocs": { + "description": "Find out more", + "url": "https://www.infosys.com" + } + } + ] +} diff --git a/src/static/embeding_swagger.json b/src/static/embeding_swagger.json new file mode 100644 index 0000000000000000000000000000000000000000..0bfb0427e3f5872a904162791110be6f850cfab6 --- /dev/null +++ b/src/static/embeding_swagger.json @@ -0,0 +1,471 @@ +{ + "openapi": "3.0.3", + "info": { + "title": "Infosys Responsible AI - LLM Moderation Models - OpenAPI 3.0", + "description": "API specs for Infosys Responsible AI LLM Moderation layer Models in OpenAPI 3.0 format", + "contact": { + "email": "aina@infosys.com" + }, + "license": { + "name": "Infosys", + "url": "https://www.infosys.com" + }, + "version": "0.0.1" + }, + "security" : [ { + "oauth_auth" : [ "write:users", "read:users" ] + } + ], + "paths": { + + "/rai/v1/raimoderationmodels/embeding/multi_q_net_embedding": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Embedding Model", + "operationId": "embedding_model_rai_v1_models_multi_q_net_embedding_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/JailbreakRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + }, + "/rai/v1/raimoderationmodels/embeding/multi-qa-mpnet-model_similarity": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Similarity Model", + "operationId": "similarity_model_rai_v1_models_multi_qa_mpnet_model_similarity_post", + "parameters": [ + { + "required": false, + "schema": { + "type": "string", + "title": "Authorization" + }, + "name": "authorization", + "in": "header" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SimilarityRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "Body_img_rai_v1_models_ImageGenerate_post": { + "properties": { + "prompt": { + "type": "string", + "title": "Prompt" + } + }, + "type": "object", + "required": [ + "prompt" + ], + "title": "Body_img_rai_v1_models_ImageGenerate_post" + }, + "HTTPValidationError": { + "properties": { + "detail": { + "items": { + "$ref": "#/components/schemas/ValidationError" + }, + "type": "array", + "title": "Detail" + } + }, + "type": "object", + "title": "HTTPValidationError" + }, + "HTTPUnauthorizedAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/UnauthorizedAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPUnauthorizedAccessError" + }, + "HTTPForbiddenAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/ForbiddenAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPForbiddenAccessError" + }, + "JailbreakRequest": { + "properties": { + "text": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Text" + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "JailbreakRequest" + }, + "RestrictedTopicRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + }, + "model": { + "type": "string", + "title": "Model", + "example": "distilroberta" + }, + "labels": { + "items": {}, + "type": "array", + "title": "Labels", + "default": [ + "Terrorism", + "Explosives" + ] + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "RestrictedTopicRequest" + }, + "SimilarityRequest": { + "properties": { + "text1": { + "type": "string", + "title": "Text1", + "example": "Russia is the biggest country by area." + }, + "text2": { + "type": "string", + "title": "Text2", + "example": "Russia is the biggest country by area." + }, + "emb1": { + "items": {}, + "type": "array", + "title": "Emb1" + }, + "emb2": { + "items": {}, + "type": "array", + "title": "Emb2" + } + }, + "type": "object", + "title": "SimilarityRequest" + }, + "ValidationError": { + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ValidationError" + }, + "UnauthorizedAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "UnauthorizedAccessError" + }, + "ForbiddenAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ForbiddenAccessError" + }, + "detoxifyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "detoxifyRequest" + }, + "detoxifyResponse": { + "properties": { + "toxicScore": { + "items": { + "$ref": "#/components/schemas/profanityScore" + }, + "type": "array", + "title": "Toxicscore" + } + }, + "type": "object", + "required": [ + "toxicScore" + ], + "title": "detoxifyResponse" + }, + "privacyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "privacyRequest" + }, + "profanityScore": { + "properties": { + "metricName": { + "type": "string", + "title": "Metricname", + "example": "toxicity" + }, + "metricScore": { + "type": "number", + "title": "Metricscore", + "example": 0.78326 + } + }, + "type": "object", + "required": [ + "metricName", + "metricScore" + ], + "title": "profanityScore" + } + }, + "securitySchemes": { + "type": "oauth2", + "flows": { + "authorizationCode": { + "authorizationUrl": "http://tes.org/api/oauth/dialog", + "scopes": { + "read:users": "read user profiles" + } + } + } + } + }, + "tags": [ + { + "name": "LLM Moderation", + "description": "Operations required for LLM moderation proxy.", + "externalDocs": { + "description": "Find out more", + "url": "https://www.infosys.com" + } + } + ] +} diff --git a/src/static/injection_swagger.json b/src/static/injection_swagger.json new file mode 100644 index 0000000000000000000000000000000000000000..2076e3f7bc8a5269de47916659be87e2f2c0c9c1 --- /dev/null +++ b/src/static/injection_swagger.json @@ -0,0 +1,396 @@ +{ + "openapi": "3.0.3", + "info": { + "title": "Infosys Responsible AI - LLM Moderation Models - OpenAPI 3.0", + "description": "API specs for Infosys Responsible AI LLM Moderation layer Models in OpenAPI 3.0 format", + "contact": { + "email": "aina@infosys.com" + }, + "license": { + "name": "Infosys", + "url": "https://www.infosys.com" + }, + "version": "0.0.1" + }, + "security" : [ { + "oauth_auth" : [ "write:users", "read:users" ] + } + ], + "paths": { + + "/rai/v1/raimoderationmodels/promptinjectionmodel": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Prompt Model", + "operationId": "prompt_model_rai_v1_models_promptinjectionmodel_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/detoxifyRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "Body_img_rai_v1_models_ImageGenerate_post": { + "properties": { + "prompt": { + "type": "string", + "title": "Prompt" + } + }, + "type": "object", + "required": [ + "prompt" + ], + "title": "Body_img_rai_v1_models_ImageGenerate_post" + }, + "HTTPValidationError": { + "properties": { + "detail": { + "items": { + "$ref": "#/components/schemas/ValidationError" + }, + "type": "array", + "title": "Detail" + } + }, + "type": "object", + "title": "HTTPValidationError" + }, + "HTTPUnauthorizedAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/UnauthorizedAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPUnauthorizedAccessError" + }, + "HTTPForbiddenAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/ForbiddenAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPForbiddenAccessError" + }, + "JailbreakRequest": { + "properties": { + "text": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Text" + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "JailbreakRequest" + }, + "RestrictedTopicRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + }, + "model": { + "type": "string", + "title": "Model", + "example": "distilroberta" + }, + "labels": { + "items": {}, + "type": "array", + "title": "Labels", + "default": [ + "Terrorism", + "Explosives" + ] + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "RestrictedTopicRequest" + }, + "SimilarityRequest": { + "properties": { + "text1": { + "type": "string", + "title": "Text1", + "example": "Russia is the biggest country by area." + }, + "text2": { + "type": "string", + "title": "Text2", + "example": "Russia is the biggest country by area." + }, + "emb1": { + "items": {}, + "type": "array", + "title": "Emb1" + }, + "emb2": { + "items": {}, + "type": "array", + "title": "Emb2" + } + }, + "type": "object", + "title": "SimilarityRequest" + }, + "ValidationError": { + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ValidationError" + }, + "UnauthorizedAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "UnauthorizedAccessError" + }, + "ForbiddenAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ForbiddenAccessError" + }, + "detoxifyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "detoxifyRequest" + }, + "detoxifyResponse": { + "properties": { + "toxicScore": { + "items": { + "$ref": "#/components/schemas/profanityScore" + }, + "type": "array", + "title": "Toxicscore" + } + }, + "type": "object", + "required": [ + "toxicScore" + ], + "title": "detoxifyResponse" + }, + "privacyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "privacyRequest" + }, + "profanityScore": { + "properties": { + "metricName": { + "type": "string", + "title": "Metricname", + "example": "toxicity" + }, + "metricScore": { + "type": "number", + "title": "Metricscore", + "example": 0.78326 + } + }, + "type": "object", + "required": [ + "metricName", + "metricScore" + ], + "title": "profanityScore" + } + }, + "securitySchemes": { + "type": "oauth2", + "flows": { + "authorizationCode": { + "authorizationUrl": "http://tes.org/api/oauth/dialog", + "scopes": { + "read:users": "read user profiles" + } + } + } + } + }, + "tags": [ + { + "name": "LLM Moderation", + "description": "Operations required for LLM moderation proxy.", + "externalDocs": { + "description": "Find out more", + "url": "https://www.infosys.com" + } + } + ] +} diff --git a/src/static/privacy_swagger.json b/src/static/privacy_swagger.json new file mode 100644 index 0000000000000000000000000000000000000000..02291a6351ccf5bd665d4097109b65e5a9858e9b --- /dev/null +++ b/src/static/privacy_swagger.json @@ -0,0 +1,396 @@ +{ + "openapi": "3.0.3", + "info": { + "title": "Infosys Responsible AI - LLM Moderation Models - OpenAPI 3.0", + "description": "API specs for Infosys Responsible AI LLM Moderation layer Models in OpenAPI 3.0 format", + "contact": { + "email": "aina@infosys.com" + }, + "license": { + "name": "Infosys", + "url": "https://www.infosys.com" + }, + "version": "0.0.1" + }, + "security" : [ { + "oauth_auth" : [ "write:users", "read:users" ] + } + ], + "paths": { + + "/rai/v1/raimoderationmodels/privacy": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Pii Check", + "operationId": "pii_check_rai_v1_models_privacy_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/privacyRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "Body_img_rai_v1_models_ImageGenerate_post": { + "properties": { + "prompt": { + "type": "string", + "title": "Prompt" + } + }, + "type": "object", + "required": [ + "prompt" + ], + "title": "Body_img_rai_v1_models_ImageGenerate_post" + }, + "HTTPValidationError": { + "properties": { + "detail": { + "items": { + "$ref": "#/components/schemas/ValidationError" + }, + "type": "array", + "title": "Detail" + } + }, + "type": "object", + "title": "HTTPValidationError" + }, + "HTTPUnauthorizedAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/UnauthorizedAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPUnauthorizedAccessError" + }, + "HTTPForbiddenAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/ForbiddenAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPForbiddenAccessError" + }, + "JailbreakRequest": { + "properties": { + "text": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Text" + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "JailbreakRequest" + }, + "RestrictedTopicRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + }, + "model": { + "type": "string", + "title": "Model", + "example": "distilroberta" + }, + "labels": { + "items": {}, + "type": "array", + "title": "Labels", + "default": [ + "Terrorism", + "Explosives" + ] + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "RestrictedTopicRequest" + }, + "SimilarityRequest": { + "properties": { + "text1": { + "type": "string", + "title": "Text1", + "example": "Russia is the biggest country by area." + }, + "text2": { + "type": "string", + "title": "Text2", + "example": "Russia is the biggest country by area." + }, + "emb1": { + "items": {}, + "type": "array", + "title": "Emb1" + }, + "emb2": { + "items": {}, + "type": "array", + "title": "Emb2" + } + }, + "type": "object", + "title": "SimilarityRequest" + }, + "ValidationError": { + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ValidationError" + }, + "UnauthorizedAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "UnauthorizedAccessError" + }, + "ForbiddenAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ForbiddenAccessError" + }, + "detoxifyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "detoxifyRequest" + }, + "detoxifyResponse": { + "properties": { + "toxicScore": { + "items": { + "$ref": "#/components/schemas/profanityScore" + }, + "type": "array", + "title": "Toxicscore" + } + }, + "type": "object", + "required": [ + "toxicScore" + ], + "title": "detoxifyResponse" + }, + "privacyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "privacyRequest" + }, + "profanityScore": { + "properties": { + "metricName": { + "type": "string", + "title": "Metricname", + "example": "toxicity" + }, + "metricScore": { + "type": "number", + "title": "Metricscore", + "example": 0.78326 + } + }, + "type": "object", + "required": [ + "metricName", + "metricScore" + ], + "title": "profanityScore" + } + }, + "securitySchemes": { + "type": "oauth2", + "flows": { + "authorizationCode": { + "authorizationUrl": "http://tes.org/api/oauth/dialog", + "scopes": { + "read:users": "read user profiles" + } + } + } + } + }, + "tags": [ + { + "name": "LLM Moderation", + "description": "Operations required for LLM moderation proxy.", + "externalDocs": { + "description": "Find out more", + "url": "https://www.infosys.com" + } + } + ] +} diff --git a/src/static/swagger.json b/src/static/swagger.json new file mode 100644 index 0000000000000000000000000000000000000000..c9034e3815c37f4748810aa0424021a3362c1ecc --- /dev/null +++ b/src/static/swagger.json @@ -0,0 +1,1032 @@ +{ + "openapi": "3.0.3", + "info": { + "title": "Infosys Responsible AI - LLM Moderation Models - OpenAPI 3.0", + "description": "API specs for Infosys Responsible AI LLM Moderation layer Models in OpenAPI 3.0 format", + "contact": { + "email": "aina@infosys.com" + }, + "license": { + "name": "Infosys", + "url": "https://www.infosys.com" + }, + "version": "0.0.1" + }, + "security" : [ { + "oauth_auth" : [ "write:users", "read:users" ] + } + ], + "paths": { + "/rai/v1/raimoderationmodels/detoxifymodel": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Toxic Model", + "operationId": "toxic_model_rai_v1_models_detoxifymodel_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/detoxifyRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/detoxifyResponse" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + }, + "/rai/v1/raimoderationmodels/privacy": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Pii Check", + "operationId": "pii_check_rai_v1_models_privacy_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/privacyRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + }, + "/rai/v1/raimoderationmodels/promptinjectionmodel": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Prompt Model", + "operationId": "prompt_model_rai_v1_models_promptinjectionmodel_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/detoxifyRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + }, + "/rai/v1/raimoderationmodels/restrictedtopicmodel": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Restrictedtopic Model", + "operationId": "restrictedTopic_model_rai_v1_models_restrictedtopicmodel_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RestrictedTopicRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + }, + "/rai/v1/raimoderationmodels/multi_q_net_embedding": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Embedding Model", + "operationId": "embedding_model_rai_v1_models_multi_q_net_embedding_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/JailbreakRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + }, + "/rai/v1/raimoderationmodels/multi-qa-mpnet-model_similarity": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Similarity Model", + "operationId": "similarity_model_rai_v1_models_multi_qa_mpnet_model_similarity_post", + "parameters": [ + { + "required": false, + "schema": { + "type": "string", + "title": "Authorization" + }, + "name": "authorization", + "in": "header" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SimilarityRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + }, + "/rai/v1/raimoderationmodels/sentimentmodel": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Sentiment Model", + "operationId": "sentiment_model_rai_v1_models_sentimentmodel_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SentimentRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + }, + "/rai/v1/raimoderationmodels/invisibletextmodel": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Sentiment Model", + "operationId": "sentiment_model_rai_v1_models_invisibletextmodel_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/InvisibleTextRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + }, + "/rai/v1/raimoderationmodels/gibberishmodel": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Gibberish Model", + "operationId": "sentiment_model_rai_v1_models_gibberishmodel_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GibberishTextRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + }, + "/rai/v1/raimoderationmodels/bancodemodel": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Ban Code Model", + "operationId": "sentiment_model_rai_v1_models_bancodemodel_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SentimentRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "HTTPValidationError": { + "properties": { + "detail": { + "items": { + "$ref": "#/components/schemas/ValidationError" + }, + "type": "array", + "title": "Detail" + } + }, + "type": "object", + "title": "HTTPValidationError" + }, + "HTTPUnauthorizedAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/UnauthorizedAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPUnauthorizedAccessError" + }, + "HTTPForbiddenAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/ForbiddenAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPForbiddenAccessError" + }, + "JailbreakRequest": { + "properties": { + "text": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Text" + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "JailbreakRequest" + }, + "RestrictedTopicRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + }, + "model": { + "type": "string", + "title": "Model", + "example": "distilroberta" + }, + "labels": { + "items": {}, + "type": "array", + "title": "Labels", + "default": [ + "Terrorism", + "Explosives" + ] + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "RestrictedTopicRequest" + }, + "SimilarityRequest": { + "properties": { + "text1": { + "type": "string", + "title": "Text1", + "example": "Russia is the biggest country by area." + }, + "text2": { + "type": "string", + "title": "Text2", + "example": "Russia is the biggest country by area." + }, + "emb1": { + "items": {}, + "type": "array", + "title": "Emb1" + }, + "emb2": { + "items": {}, + "type": "array", + "title": "Emb2" + } + }, + "type": "object", + "title": "SimilarityRequest" + }, + "SentimentRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text" + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "SentimentRequest" + }, + "InvisibleTextRequest":{ + "properties": { + "text": { + "type": "string", + "title": "Text" + }, + "banned_categories": { + "items": {}, + "type": "array", + "title": "Banned Categories", + "default": [ + "Cf", + "Co", + "Cn", + "So", + "Sc" + ] + } + }, + "type": "object", + "required": [ + "text", + "banned_categories" + ], + "title": "InvisibleTextRequest" + }, + "GibberishTextRequest":{ + "properties": { + "text": { + "type": "string", + "title": "Text" + }, + "labels": { + "items": {}, + "type": "array", + "title": "Labels", + "default": [ + "word salad", "noise", "mild gibberish","clean" + ] + } + }, + "type": "object", + "required": [ + "text", + "labels" + ], + "title": "GibberishTextRequest" + }, + "detoxifyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "detoxifyRequest" + }, + "detoxifyResponse": { + "properties": { + "toxicScore": { + "items": { + "$ref": "#/components/schemas/profanityScore" + }, + "type": "array", + "title": "Toxicscore" + } + }, + "type": "object", + "required": [ + "toxicScore" + ], + "title": "detoxifyResponse" + }, + "privacyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "privacyRequest" + }, + "profanityScore": { + "properties": { + "metricName": { + "type": "string", + "title": "Metricname", + "example": "toxicity" + }, + "metricScore": { + "type": "number", + "title": "Metricscore", + "example": 0.78326 + } + }, + "type": "object", + "required": [ + "metricName", + "metricScore" + ], + "title": "profanityScore" + }, + "ValidationError": { + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ValidationError" + }, + "UnauthorizedAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "UnauthorizedAccessError" + }, + "ForbiddenAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ForbiddenAccessError" + } + }, + "securitySchemes": { + "type": "oauth2", + "flows": { + "authorizationCode": { + "authorizationUrl": "http://tes.org/api/oauth/dialog", + "scopes": { + "read:users": "read user profiles" + } + } + } + } + }, + "tags": [ + { + "name": "LLM Moderation", + "description": "Operations required for LLM moderation proxy.", + "externalDocs": { + "description": "Find out more", + "url": "https://www.infosys.com" + } + } + ] +} diff --git a/src/static/topic_swagger.json b/src/static/topic_swagger.json new file mode 100644 index 0000000000000000000000000000000000000000..6bce1bd16a1c162e7d4d79ae827e0c6cc4111d28 --- /dev/null +++ b/src/static/topic_swagger.json @@ -0,0 +1,396 @@ +{ + "openapi": "3.0.3", + "info": { + "title": "Infosys Responsible AI - LLM Moderation Models - OpenAPI 3.0", + "description": "API specs for Infosys Responsible AI LLM Moderation layer Models in OpenAPI 3.0 format", + "contact": { + "email": "aina@infosys.com" + }, + "license": { + "name": "Infosys", + "url": "https://www.infosys.com" + }, + "version": "0.0.1" + }, + "security" : [ { + "oauth_auth" : [ "write:users", "read:users" ] + } + ], + "paths": { + + "/rai/v1/raimoderationmodels/restrictedtopicmodel": { + "post": { + "security": [{ + "my_auth": ["write:users"] + }], + "tags": [ + "Infosys Responsible AI - LLM Moderation" + ], + "summary": "Restrictedtopic Model", + "operationId": "restrictedTopic_model_rai_v1_models_restrictedtopicmodel_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RestrictedTopicRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "401": + { + "description":"Unauthorized Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPUnauthorizedAccessError" + } + } + } + }, + "403": + { + "description":"Forbidden Access Error", + "content":{ + "application/json":{ + "schema":{ + "$ref":"#/components/schemas/HTTPForbiddenAccessError" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "Body_img_rai_v1_models_ImageGenerate_post": { + "properties": { + "prompt": { + "type": "string", + "title": "Prompt" + } + }, + "type": "object", + "required": [ + "prompt" + ], + "title": "Body_img_rai_v1_models_ImageGenerate_post" + }, + "HTTPValidationError": { + "properties": { + "detail": { + "items": { + "$ref": "#/components/schemas/ValidationError" + }, + "type": "array", + "title": "Detail" + } + }, + "type": "object", + "title": "HTTPValidationError" + }, + "HTTPUnauthorizedAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/UnauthorizedAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPUnauthorizedAccessError" + }, + "HTTPForbiddenAccessError":{ + "properties":{ + "detail":{ + "items":{ + "$ref":"#/components/schemas/ForbiddenAccessError" + }, + "type":"array", + "title":"Detail" + } + }, + "type":"object", + "title":"HTTPForbiddenAccessError" + }, + "JailbreakRequest": { + "properties": { + "text": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Text" + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "JailbreakRequest" + }, + "RestrictedTopicRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + }, + "model": { + "type": "string", + "title": "Model", + "example": "distilroberta" + }, + "labels": { + "items": {}, + "type": "array", + "title": "Labels", + "default": [ + "Terrorism", + "Explosives" + ] + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "RestrictedTopicRequest" + }, + "SimilarityRequest": { + "properties": { + "text1": { + "type": "string", + "title": "Text1", + "example": "Russia is the biggest country by area." + }, + "text2": { + "type": "string", + "title": "Text2", + "example": "Russia is the biggest country by area." + }, + "emb1": { + "items": {}, + "type": "array", + "title": "Emb1" + }, + "emb2": { + "items": {}, + "type": "array", + "title": "Emb2" + } + }, + "type": "object", + "title": "SimilarityRequest" + }, + "ValidationError": { + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ValidationError" + }, + "UnauthorizedAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "UnauthorizedAccessError" + }, + "ForbiddenAccessError":{ + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ForbiddenAccessError" + }, + "detoxifyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "detoxifyRequest" + }, + "detoxifyResponse": { + "properties": { + "toxicScore": { + "items": { + "$ref": "#/components/schemas/profanityScore" + }, + "type": "array", + "title": "Toxicscore" + } + }, + "type": "object", + "required": [ + "toxicScore" + ], + "title": "detoxifyResponse" + }, + "privacyRequest": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "example": "Russia is the biggest country by area." + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "privacyRequest" + }, + "profanityScore": { + "properties": { + "metricName": { + "type": "string", + "title": "Metricname", + "example": "toxicity" + }, + "metricScore": { + "type": "number", + "title": "Metricscore", + "example": 0.78326 + } + }, + "type": "object", + "required": [ + "metricName", + "metricScore" + ], + "title": "profanityScore" + } + }, + "securitySchemes": { + "type": "oauth2", + "flows": { + "authorizationCode": { + "authorizationUrl": "http://tes.org/api/oauth/dialog", + "scopes": { + "read:users": "read user profiles" + } + } + } + } + }, + "tags": [ + { + "name": "LLM Moderation", + "description": "Operations required for LLM moderation proxy.", + "externalDocs": { + "description": "Find out more", + "url": "https://www.infosys.com" + } + } + ] +}